Merge "fix(spmd): fix build error with spmd" into integration

This commit is contained in:
Madhukar Pappireddy 2023-05-11 00:44:49 +02:00 committed by TrustedFirmware Code Review
commit e1eef33572
5 changed files with 9 additions and 9 deletions

View file

@ -6,7 +6,7 @@
#include <stdint.h>
#if defined(SPD_spmd)
#if defined(SPD_spmd) && (SPMC_AT_EL3 == 0)
/*
* A dummy implementation of the platform handler for Group0 secure interrupt.
*/
@ -15,4 +15,4 @@ int plat_spmd_handle_group0_interrupt(uint32_t intid)
(void)intid;
return -1;
}
#endif /*defined(SPD_spmd)*/
#endif /*defined(SPD_spmd) && (SPMC_AT_EL3 == 0)*/

View file

@ -160,7 +160,7 @@ void bl31_platform_setup(void)
remote_dmc_ecc_setup(plat_info.remote_ddr_size);
}
#if defined(SPD_spmd)
#if defined(SPD_spmd) && (SPMC_AT_EL3 == 0)
/*
* A dummy implementation of the platform handler for Group0 secure interrupt.
*/
@ -169,4 +169,4 @@ int plat_spmd_handle_group0_interrupt(uint32_t intid)
(void)intid;
return -1;
}
#endif /*defined(SPD_spmd)*/
#endif /*defined(SPD_spmd) && (SPMC_AT_EL3 == 0)*/

View file

@ -83,7 +83,7 @@ void __init bl31_plat_arch_setup(void)
fconf_populate("HW_CONFIG", hw_config_info->config_addr);
}
#if defined(SPD_spmd) && (SPMD_SPM_AT_SEL2 == 1)
#if defined(SPD_spmd) && (SPMC_AT_EL3 == 0)
void tc_bl31_plat_runtime_setup(void)
{
arm_bl31_plat_runtime_setup();
@ -115,4 +115,4 @@ int plat_spmd_handle_group0_interrupt(uint32_t intid)
return -1;
}
#endif /*defined(SPD_spmd) && (SPMD_SPM_AT_SEL2 == 1)*/
#endif /*defined(SPD_spmd) && (SPMC_AT_EL3 == 0)*/

View file

@ -245,7 +245,7 @@ static uint64_t hikey_debug_fiq_handler(uint32_t id,
return 0;
}
#elif defined(SPD_spmd) && (SPMD_SPM_AT_SEL2 == 1)
#elif defined(SPD_spmd) && (SPMC_AT_EL3 == 0)
/*
* A dummy implementation of the platform handler for Group0 secure interrupt.
*/

View file

@ -163,7 +163,7 @@ int plat_spmc_shmem_reclaim(struct ffa_mtd *desc)
}
#endif
#if defined(SPD_spmd) && (SPMD_SPM_AT_SEL2 == 1)
#if defined(SPD_spmd) && (SPMC_AT_EL3 == 0)
/*
* A dummy implementation of the platform handler for Group0 secure interrupt.
*/
@ -172,4 +172,4 @@ int plat_spmd_handle_group0_interrupt(uint32_t intid)
(void)intid;
return -1;
}
#endif /*defined(SPD_spmd) && (SPMD_SPM_AT_SEL2 == 1)*/
#endif /*defined(SPD_spmd) && (SPMC_AT_EL3 == 0)*/