Commit 3d8256b2 authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

Use #ifdef for IMAGE_BL* instead of #if



One nasty part of ATF is some of boolean macros are always defined
as 1 or 0, and the rest of them are only defined under certain
conditions.

For the former group, "#if FOO" or "#if !FOO" must be used because
"#ifdef FOO" is always true.  (Options passed by $(call add_define,)
are the cases.)

For the latter, "#ifdef FOO" or "#ifndef FOO" should be used because
checking the value of an undefined macro is strange.

Here, IMAGE_BL* is handled by make_helpers/build_macro.mk like
follows:

  $(eval IMAGE := IMAGE_BL$(call uppercase,$(3)))

  $(OBJ): $(2)
          @echo "  CC      $$<"
          $$(Q)$$(CC) $$(TF_CFLAGS) $$(CFLAGS) -D$(IMAGE) -c $$< -o $$@

This means, IMAGE_BL* is defined when building the corresponding
image, but *undefined* for the other images.

So, IMAGE_BL* belongs to the latter group where we should use #ifdef
or #ifndef.
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent f38d93fd
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
#include "ccn_private.h" #include "ccn_private.h"
static const ccn_desc_t *ccn_plat_desc; static const ccn_desc_t *ccn_plat_desc;
#if IMAGE_BL31 #ifdef IMAGE_BL31
DEFINE_BAKERY_LOCK(ccn_lock); DEFINE_BAKERY_LOCK(ccn_lock);
#endif #endif
...@@ -285,7 +285,7 @@ static void ccn_snoop_dvm_do_op(unsigned long long rn_id_map, ...@@ -285,7 +285,7 @@ static void ccn_snoop_dvm_do_op(unsigned long long rn_id_map,
assert(ccn_plat_desc); assert(ccn_plat_desc);
assert(ccn_plat_desc->periphbase); assert(ccn_plat_desc->periphbase);
#if IMAGE_BL31 #ifdef IMAGE_BL31
bakery_lock_get(&ccn_lock); bakery_lock_get(&ccn_lock);
#endif #endif
start_region_id = region_id; start_region_id = region_id;
...@@ -305,7 +305,7 @@ static void ccn_snoop_dvm_do_op(unsigned long long rn_id_map, ...@@ -305,7 +305,7 @@ static void ccn_snoop_dvm_do_op(unsigned long long rn_id_map,
rn_id_map); rn_id_map);
} }
#if IMAGE_BL31 #ifdef IMAGE_BL31
bakery_lock_release(&ccn_lock); bakery_lock_release(&ccn_lock);
#endif #endif
} }
......
...@@ -228,7 +228,7 @@ ...@@ -228,7 +228,7 @@
* --------------------------------------------------------------------- * ---------------------------------------------------------------------
*/ */
.if \_init_c_runtime .if \_init_c_runtime
#if IMAGE_BL32 #ifdef IMAGE_BL32
/* ----------------------------------------------------------------- /* -----------------------------------------------------------------
* Invalidate the RW memory used by the BL32 (SP_MIN) image. This * Invalidate the RW memory used by the BL32 (SP_MIN) image. This
* includes the data and NOBITS sections. This is done to * includes the data and NOBITS sections. This is done to
...@@ -253,7 +253,7 @@ ...@@ -253,7 +253,7 @@
bl zeromem bl zeromem
#endif #endif
#if IMAGE_BL1 #ifdef IMAGE_BL1
/* ----------------------------------------------------- /* -----------------------------------------------------
* Copy data from ROM to RAM. * Copy data from ROM to RAM.
* ----------------------------------------------------- * -----------------------------------------------------
......
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
msr sctlr_el3, x0 msr sctlr_el3, x0
isb isb
#if IMAGE_BL31 #ifdef IMAGE_BL31
/* --------------------------------------------------------------------- /* ---------------------------------------------------------------------
* Initialise the per-cpu cache pointer to the CPU. * Initialise the per-cpu cache pointer to the CPU.
* This is done early to enable crash reporting to have access to crash * This is done early to enable crash reporting to have access to crash
...@@ -235,7 +235,7 @@ ...@@ -235,7 +235,7 @@
* --------------------------------------------------------------------- * ---------------------------------------------------------------------
*/ */
.if \_init_c_runtime .if \_init_c_runtime
#if IMAGE_BL31 #ifdef IMAGE_BL31
/* ------------------------------------------------------------- /* -------------------------------------------------------------
* Invalidate the RW memory used by the BL31 image. This * Invalidate the RW memory used by the BL31 image. This
* includes the data and NOBITS sections. This is done to * includes the data and NOBITS sections. This is done to
...@@ -260,7 +260,7 @@ ...@@ -260,7 +260,7 @@
bl zeromem16 bl zeromem16
#endif #endif
#if IMAGE_BL1 #ifdef IMAGE_BL1
ldr x0, =__DATA_RAM_START__ ldr x0, =__DATA_RAM_START__
ldr x1, =__DATA_ROM_START__ ldr x1, =__DATA_ROM_START__
ldr x2, =__DATA_SIZE__ ldr x2, =__DATA_SIZE__
......
...@@ -170,13 +170,13 @@ extern uintptr_t __RO_START__; ...@@ -170,13 +170,13 @@ extern uintptr_t __RO_START__;
extern uintptr_t __RO_END__; extern uintptr_t __RO_END__;
#endif #endif
#if IMAGE_BL2 #if defined(IMAGE_BL2)
extern uintptr_t __BL2_END__; extern uintptr_t __BL2_END__;
#elif IMAGE_BL2U #elif defined(IMAGE_BL2U)
extern uintptr_t __BL2U_END__; extern uintptr_t __BL2U_END__;
#elif IMAGE_BL31 #elif defined(IMAGE_BL31)
extern uintptr_t __BL31_END__; extern uintptr_t __BL31_END__;
#elif IMAGE_BL32 #elif defined(IMAGE_BL32)
extern uintptr_t __BL32_END__; extern uintptr_t __BL32_END__;
#endif /* IMAGE_BLX */ #endif /* IMAGE_BLX */
......
...@@ -51,11 +51,11 @@ ...@@ -51,11 +51,11 @@
CPU_MIDR: /* cpu_ops midr */ CPU_MIDR: /* cpu_ops midr */
.space 4 .space 4
/* Reset fn is needed during reset */ /* Reset fn is needed during reset */
#if IMAGE_BL1 || IMAGE_BL32 #if defined(IMAGE_BL1) || defined(IMAGE_BL32)
CPU_RESET_FUNC: /* cpu_ops reset_func */ CPU_RESET_FUNC: /* cpu_ops reset_func */
.space 4 .space 4
#endif #endif
#if IMAGE_BL32 /* The power down core and cluster is needed only in BL32 */ #ifdef IMAGE_BL32 /* The power down core and cluster is needed only in BL32 */
CPU_PWR_DWN_OPS: /* cpu_ops power down functions */ CPU_PWR_DWN_OPS: /* cpu_ops power down functions */
.space (4 * CPU_MAX_PWR_DWN_OPS) .space (4 * CPU_MAX_PWR_DWN_OPS)
#endif #endif
...@@ -117,10 +117,10 @@ CPU_OPS_SIZE = . ...@@ -117,10 +117,10 @@ CPU_OPS_SIZE = .
.align 2 .align 2
.type cpu_ops_\_name, %object .type cpu_ops_\_name, %object
.word \_midr .word \_midr
#if IMAGE_BL1 || IMAGE_BL32 #if defined(IMAGE_BL1) || defined(IMAGE_BL32)
.word \_resetfunc .word \_resetfunc
#endif #endif
#if IMAGE_BL32 #ifdef IMAGE_BL32
1: 1:
/* Insert list of functions */ /* Insert list of functions */
fill_constants CPU_MAX_PWR_DWN_OPS, \_power_down_ops fill_constants CPU_MAX_PWR_DWN_OPS, \_power_down_ops
......
...@@ -51,15 +51,15 @@ ...@@ -51,15 +51,15 @@
CPU_MIDR: /* cpu_ops midr */ CPU_MIDR: /* cpu_ops midr */
.space 8 .space 8
/* Reset fn is needed in BL at reset vector */ /* Reset fn is needed in BL at reset vector */
#if IMAGE_BL1 || IMAGE_BL31 #if defined(IMAGE_BL1) || defined(IMAGE_BL31)
CPU_RESET_FUNC: /* cpu_ops reset_func */ CPU_RESET_FUNC: /* cpu_ops reset_func */
.space 8 .space 8
#endif #endif
#if IMAGE_BL31 /* The power down core and cluster is needed only in BL31 */ #ifdef IMAGE_BL31 /* The power down core and cluster is needed only in BL31 */
CPU_PWR_DWN_OPS: /* cpu_ops power down functions */ CPU_PWR_DWN_OPS: /* cpu_ops power down functions */
.space (8 * CPU_MAX_PWR_DWN_OPS) .space (8 * CPU_MAX_PWR_DWN_OPS)
#endif #endif
#if (IMAGE_BL31 && CRASH_REPORTING) #if defined(IMAGE_BL31) && CRASH_REPORTING
CPU_REG_DUMP: /* cpu specific register dump for crash reporting */ CPU_REG_DUMP: /* cpu specific register dump for crash reporting */
.space 8 .space 8
#endif #endif
...@@ -121,10 +121,10 @@ CPU_OPS_SIZE = . ...@@ -121,10 +121,10 @@ CPU_OPS_SIZE = .
.align 3 .align 3
.type cpu_ops_\_name, %object .type cpu_ops_\_name, %object
.quad \_midr .quad \_midr
#if IMAGE_BL1 || IMAGE_BL31 #if defined(IMAGE_BL1) || defined(IMAGE_BL31)
.quad \_resetfunc .quad \_resetfunc
#endif #endif
#if IMAGE_BL31 #ifdef IMAGE_BL31
1: 1:
/* Insert list of functions */ /* Insert list of functions */
fill_constants CPU_MAX_PWR_DWN_OPS, \_power_down_ops fill_constants CPU_MAX_PWR_DWN_OPS, \_power_down_ops
...@@ -141,7 +141,7 @@ CPU_OPS_SIZE = . ...@@ -141,7 +141,7 @@ CPU_OPS_SIZE = .
.endif .endif
.endif .endif
#endif #endif
#if (IMAGE_BL31 && CRASH_REPORTING) #if defined(IMAGE_BL31) && CRASH_REPORTING
.quad \_name\()_cpu_reg_dump .quad \_name\()_cpu_reg_dump
#endif #endif
.endm .endm
......
...@@ -39,23 +39,23 @@ ...@@ -39,23 +39,23 @@
*/ */
/* Size of cacheable stacks */ /* Size of cacheable stacks */
#if IMAGE_BL1 #if defined(IMAGE_BL1)
#if TRUSTED_BOARD_BOOT #if TRUSTED_BOARD_BOOT
# define PLATFORM_STACK_SIZE 0x1000 # define PLATFORM_STACK_SIZE 0x1000
#else #else
# define PLATFORM_STACK_SIZE 0x440 # define PLATFORM_STACK_SIZE 0x440
#endif #endif
#elif IMAGE_BL2 #elif defined(IMAGE_BL2)
# if TRUSTED_BOARD_BOOT # if TRUSTED_BOARD_BOOT
# define PLATFORM_STACK_SIZE 0x1000 # define PLATFORM_STACK_SIZE 0x1000
# else # else
# define PLATFORM_STACK_SIZE 0x400 # define PLATFORM_STACK_SIZE 0x400
# endif # endif
#elif IMAGE_BL2U #elif defined(IMAGE_BL2U)
# define PLATFORM_STACK_SIZE 0x200 # define PLATFORM_STACK_SIZE 0x200
#elif IMAGE_BL31 #elif defined(IMAGE_BL31)
# define PLATFORM_STACK_SIZE 0x400 # define PLATFORM_STACK_SIZE 0x400
#elif IMAGE_BL32 #elif defined(IMAGE_BL32)
# define PLATFORM_STACK_SIZE 0x440 # define PLATFORM_STACK_SIZE 0x440
#endif #endif
...@@ -73,7 +73,7 @@ ...@@ -73,7 +73,7 @@
* Optimisation is less important for the other, transient boot images so a * Optimisation is less important for the other, transient boot images so a
* common, maximum value is used across these images. * common, maximum value is used across these images.
*/ */
#if IMAGE_BL31 || IMAGE_BL32 #if defined(IMAGE_BL31) || defined(IMAGE_BL32)
# define PLAT_ARM_MMAP_ENTRIES 6 # define PLAT_ARM_MMAP_ENTRIES 6
# define MAX_XLAT_TABLES 4 # define MAX_XLAT_TABLES 4
#else #else
......
...@@ -64,7 +64,7 @@ void arm_setup_page_tables(uintptr_t total_base, ...@@ -64,7 +64,7 @@ void arm_setup_page_tables(uintptr_t total_base,
#endif #endif
); );
#if IMAGE_BL31 #ifdef IMAGE_BL31
/* /*
* Use this macro to instantiate lock before it is used in below * Use this macro to instantiate lock before it is used in below
* arm_lock_xxx() macros * arm_lock_xxx() macros
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
#include <cpu_data.h> #include <cpu_data.h>
#include <cpu_macros.S> #include <cpu_macros.S>
#if IMAGE_BL1 || IMAGE_BL32 #if defined(IMAGE_BL1) || defined(IMAGE_BL32)
/* /*
* The reset handler common to all platforms. After a matching * The reset handler common to all platforms. After a matching
* cpu_ops structure entry is found, the correponding reset_handler * cpu_ops structure entry is found, the correponding reset_handler
...@@ -68,7 +68,7 @@ endfunc reset_handler ...@@ -68,7 +68,7 @@ endfunc reset_handler
#endif /* IMAGE_BL1 || IMAGE_BL32 */ #endif /* IMAGE_BL1 || IMAGE_BL32 */
#if IMAGE_BL32 /* The power down core and cluster is needed only in BL32 */ #ifdef IMAGE_BL32 /* The power down core and cluster is needed only in BL32 */
/* /*
* void prepare_cpu_pwr_dwn(unsigned int power_level) * void prepare_cpu_pwr_dwn(unsigned int power_level)
* *
......
...@@ -31,14 +31,14 @@ ...@@ -31,14 +31,14 @@
#include <arch.h> #include <arch.h>
#include <asm_macros.S> #include <asm_macros.S>
#include <assert_macros.S> #include <assert_macros.S>
#if IMAGE_BL31 #ifdef IMAGE_BL31
#include <cpu_data.h> #include <cpu_data.h>
#endif #endif
#include <cpu_macros.S> #include <cpu_macros.S>
#include <debug.h> #include <debug.h>
/* Reset fn is needed in BL at reset vector */ /* Reset fn is needed in BL at reset vector */
#if IMAGE_BL1 || IMAGE_BL31 #if defined(IMAGE_BL1) || defined(IMAGE_BL31)
/* /*
* The reset handler common to all platforms. After a matching * The reset handler common to all platforms. After a matching
* cpu_ops structure entry is found, the correponding reset_handler * cpu_ops structure entry is found, the correponding reset_handler
...@@ -72,7 +72,7 @@ endfunc reset_handler ...@@ -72,7 +72,7 @@ endfunc reset_handler
#endif /* IMAGE_BL1 || IMAGE_BL31 */ #endif /* IMAGE_BL1 || IMAGE_BL31 */
#if IMAGE_BL31 /* The power down core and cluster is needed only in BL31 */ #ifdef IMAGE_BL31 /* The power down core and cluster is needed only in BL31 */
/* /*
* void prepare_cpu_pwr_dwn(unsigned int power_level) * void prepare_cpu_pwr_dwn(unsigned int power_level)
* *
...@@ -130,7 +130,7 @@ func init_cpu_ops ...@@ -130,7 +130,7 @@ func init_cpu_ops
endfunc init_cpu_ops endfunc init_cpu_ops
#endif /* IMAGE_BL31 */ #endif /* IMAGE_BL31 */
#if IMAGE_BL31 && CRASH_REPORTING #if defined(IMAGE_BL31) && CRASH_REPORTING
/* /*
* The cpu specific registers which need to be reported in a crash * The cpu specific registers which need to be reported in a crash
* are reported via cpu_ops cpu_reg_dump function. After a matching * are reported via cpu_ops cpu_reg_dump function. After a matching
......
...@@ -116,7 +116,7 @@ static void cm_init_context_common(cpu_context_t *ctx, const entry_point_info_t ...@@ -116,7 +116,7 @@ static void cm_init_context_common(cpu_context_t *ctx, const entry_point_info_t
scr_el3 &= ~SCR_EA_BIT; scr_el3 &= ~SCR_EA_BIT;
#endif #endif
#if IMAGE_BL31 #ifdef IMAGE_BL31
/* /*
* IRQ/FIQ bits only need setting if interrupt routing * IRQ/FIQ bits only need setting if interrupt routing
* model has been set up for BL31. * model has been set up for BL31.
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
* This doesn't include Trusted SRAM as arm_setup_page_tables() already * This doesn't include Trusted SRAM as arm_setup_page_tables() already
* takes care of mapping it. * takes care of mapping it.
*/ */
#if IMAGE_BL1 #ifdef IMAGE_BL1
const mmap_region_t plat_arm_mmap[] = { const mmap_region_t plat_arm_mmap[] = {
ARM_MAP_SHARED_RAM, ARM_MAP_SHARED_RAM,
V2M_MAP_FLASH0_RO, V2M_MAP_FLASH0_RO,
...@@ -48,7 +48,7 @@ const mmap_region_t plat_arm_mmap[] = { ...@@ -48,7 +48,7 @@ const mmap_region_t plat_arm_mmap[] = {
{0} {0}
}; };
#endif #endif
#if IMAGE_BL2 #ifdef IMAGE_BL2
const mmap_region_t plat_arm_mmap[] = { const mmap_region_t plat_arm_mmap[] = {
ARM_MAP_SHARED_RAM, ARM_MAP_SHARED_RAM,
V2M_MAP_FLASH0_RO, V2M_MAP_FLASH0_RO,
...@@ -60,7 +60,7 @@ const mmap_region_t plat_arm_mmap[] = { ...@@ -60,7 +60,7 @@ const mmap_region_t plat_arm_mmap[] = {
{0} {0}
}; };
#endif #endif
#if IMAGE_BL2U #ifdef IMAGE_BL2U
const mmap_region_t plat_arm_mmap[] = { const mmap_region_t plat_arm_mmap[] = {
ARM_MAP_SHARED_RAM, ARM_MAP_SHARED_RAM,
CSS_MAP_DEVICE, CSS_MAP_DEVICE,
...@@ -68,7 +68,7 @@ const mmap_region_t plat_arm_mmap[] = { ...@@ -68,7 +68,7 @@ const mmap_region_t plat_arm_mmap[] = {
{0} {0}
}; };
#endif #endif
#if IMAGE_BL31 #ifdef IMAGE_BL31
const mmap_region_t plat_arm_mmap[] = { const mmap_region_t plat_arm_mmap[] = {
ARM_MAP_SHARED_RAM, ARM_MAP_SHARED_RAM,
V2M_MAP_IOFPGA, V2M_MAP_IOFPGA,
...@@ -77,7 +77,7 @@ const mmap_region_t plat_arm_mmap[] = { ...@@ -77,7 +77,7 @@ const mmap_region_t plat_arm_mmap[] = {
{0} {0}
}; };
#endif #endif
#if IMAGE_BL32 #ifdef IMAGE_BL32
const mmap_region_t plat_arm_mmap[] = { const mmap_region_t plat_arm_mmap[] = {
V2M_MAP_IOFPGA, V2M_MAP_IOFPGA,
CSS_MAP_DEVICE, CSS_MAP_DEVICE,
......
...@@ -73,7 +73,7 @@ arm_config_t arm_config; ...@@ -73,7 +73,7 @@ arm_config_t arm_config;
* The flash needs to be mapped as writable in order to erase the FIP's Table of * The flash needs to be mapped as writable in order to erase the FIP's Table of
* Contents in case of unrecoverable error (see plat_error_handler()). * Contents in case of unrecoverable error (see plat_error_handler()).
*/ */
#if IMAGE_BL1 #ifdef IMAGE_BL1
const mmap_region_t plat_arm_mmap[] = { const mmap_region_t plat_arm_mmap[] = {
ARM_MAP_SHARED_RAM, ARM_MAP_SHARED_RAM,
V2M_MAP_FLASH0_RW, V2M_MAP_FLASH0_RW,
...@@ -87,7 +87,7 @@ const mmap_region_t plat_arm_mmap[] = { ...@@ -87,7 +87,7 @@ const mmap_region_t plat_arm_mmap[] = {
{0} {0}
}; };
#endif #endif
#if IMAGE_BL2 #ifdef IMAGE_BL2
const mmap_region_t plat_arm_mmap[] = { const mmap_region_t plat_arm_mmap[] = {
ARM_MAP_SHARED_RAM, ARM_MAP_SHARED_RAM,
V2M_MAP_FLASH0_RW, V2M_MAP_FLASH0_RW,
...@@ -103,14 +103,14 @@ const mmap_region_t plat_arm_mmap[] = { ...@@ -103,14 +103,14 @@ const mmap_region_t plat_arm_mmap[] = {
{0} {0}
}; };
#endif #endif
#if IMAGE_BL2U #ifdef IMAGE_BL2U
const mmap_region_t plat_arm_mmap[] = { const mmap_region_t plat_arm_mmap[] = {
MAP_DEVICE0, MAP_DEVICE0,
V2M_MAP_IOFPGA, V2M_MAP_IOFPGA,
{0} {0}
}; };
#endif #endif
#if IMAGE_BL31 #ifdef IMAGE_BL31
const mmap_region_t plat_arm_mmap[] = { const mmap_region_t plat_arm_mmap[] = {
ARM_MAP_SHARED_RAM, ARM_MAP_SHARED_RAM,
V2M_MAP_IOFPGA, V2M_MAP_IOFPGA,
...@@ -119,7 +119,7 @@ const mmap_region_t plat_arm_mmap[] = { ...@@ -119,7 +119,7 @@ const mmap_region_t plat_arm_mmap[] = {
{0} {0}
}; };
#endif #endif
#if IMAGE_BL32 #ifdef IMAGE_BL32
const mmap_region_t plat_arm_mmap[] = { const mmap_region_t plat_arm_mmap[] = {
#ifdef AARCH32 #ifdef AARCH32
ARM_MAP_SHARED_RAM, ARM_MAP_SHARED_RAM,
......
...@@ -82,27 +82,27 @@ ...@@ -82,27 +82,27 @@
* PLAT_ARM_MMAP_ENTRIES depends on the number of entries in the * PLAT_ARM_MMAP_ENTRIES depends on the number of entries in the
* plat_arm_mmap array defined for each BL stage. * plat_arm_mmap array defined for each BL stage.
*/ */
#if IMAGE_BL1 #ifdef IMAGE_BL1
# define PLAT_ARM_MMAP_ENTRIES 7 # define PLAT_ARM_MMAP_ENTRIES 7
# define MAX_XLAT_TABLES 4 # define MAX_XLAT_TABLES 4
#endif #endif
#if IMAGE_BL2 #ifdef IMAGE_BL2
# define PLAT_ARM_MMAP_ENTRIES 8 # define PLAT_ARM_MMAP_ENTRIES 8
# define MAX_XLAT_TABLES 3 # define MAX_XLAT_TABLES 3
#endif #endif
#if IMAGE_BL2U #ifdef IMAGE_BL2U
# define PLAT_ARM_MMAP_ENTRIES 4 # define PLAT_ARM_MMAP_ENTRIES 4
# define MAX_XLAT_TABLES 3 # define MAX_XLAT_TABLES 3
#endif #endif
#if IMAGE_BL31 #ifdef IMAGE_BL31
# define PLAT_ARM_MMAP_ENTRIES 5 # define PLAT_ARM_MMAP_ENTRIES 5
# define MAX_XLAT_TABLES 2 # define MAX_XLAT_TABLES 2
#endif #endif
#if IMAGE_BL32 #ifdef IMAGE_BL32
# define PLAT_ARM_MMAP_ENTRIES 4 # define PLAT_ARM_MMAP_ENTRIES 4
# define MAX_XLAT_TABLES 3 # define MAX_XLAT_TABLES 3
#endif #endif
......
...@@ -79,7 +79,7 @@ void plat_arm_gic_driver_init(void) ...@@ -79,7 +79,7 @@ void plat_arm_gic_driver_init(void)
* can use GIC system registers to manage interrupts and does * can use GIC system registers to manage interrupts and does
* not need GIC interface base addresses to be configured. * not need GIC interface base addresses to be configured.
*/ */
#if (AARCH32 && IMAGE_BL32) || (IMAGE_BL31 && !AARCH32) #if (AARCH32 && defined(IMAGE_BL32)) || (defined(IMAGE_BL31) && !AARCH32)
gicv3_driver_init(&arm_gic_data); gicv3_driver_init(&arm_gic_data);
#endif #endif
} }
......
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
#include <interrupt_mgmt.h> #include <interrupt_mgmt.h>
#include <platform.h> #include <platform.h>
#if IMAGE_BL31 #ifdef IMAGE_BL31
/* /*
* The following platform GIC functions are weakly defined. They * The following platform GIC functions are weakly defined. They
...@@ -180,7 +180,7 @@ uint32_t plat_interrupt_type_to_line(uint32_t type, ...@@ -180,7 +180,7 @@ uint32_t plat_interrupt_type_to_line(uint32_t type,
} }
} }
#endif #endif
#if IMAGE_BL32 #ifdef IMAGE_BL32
#pragma weak plat_ic_get_pending_interrupt_id #pragma weak plat_ic_get_pending_interrupt_id
#pragma weak plat_ic_acknowledge_interrupt #pragma weak plat_ic_acknowledge_interrupt
......
...@@ -156,13 +156,13 @@ ...@@ -156,13 +156,13 @@
/* Size of cacheable stacks */ /* Size of cacheable stacks */
#if DEBUG_XLAT_TABLE #if DEBUG_XLAT_TABLE
#define PLATFORM_STACK_SIZE 0x800 #define PLATFORM_STACK_SIZE 0x800
#elif IMAGE_BL1 #elif defined(IMAGE_BL1)
#define PLATFORM_STACK_SIZE 0x440 #define PLATFORM_STACK_SIZE 0x440
#elif IMAGE_BL2 #elif defined(IMAGE_BL2)
#define PLATFORM_STACK_SIZE 0x400 #define PLATFORM_STACK_SIZE 0x400
#elif IMAGE_BL31 #elif defined(IMAGE_BL31)
#define PLATFORM_STACK_SIZE 0x800 #define PLATFORM_STACK_SIZE 0x800
#elif IMAGE_BL32 #elif defined(IMAGE_BL32)
#define PLATFORM_STACK_SIZE 0x440 #define PLATFORM_STACK_SIZE 0x440
#endif #endif
......
...@@ -43,13 +43,13 @@ ...@@ -43,13 +43,13 @@
******************************************************************************/ ******************************************************************************/
/* Size of cacheable stacks */ /* Size of cacheable stacks */
#if IMAGE_BL1 #if defined(IMAGE_BL1)
#define PLATFORM_STACK_SIZE 0x440 #define PLATFORM_STACK_SIZE 0x440
#elif IMAGE_BL2 #elif defined(IMAGE_BL2)
#define PLATFORM_STACK_SIZE 0x400 #define PLATFORM_STACK_SIZE 0x400
#elif IMAGE_BL31 #elif defined(IMAGE_BL31)
#define PLATFORM_STACK_SIZE 0x800 #define PLATFORM_STACK_SIZE 0x800
#elif IMAGE_BL32 #elif defined(IMAGE_BL32)
#define PLATFORM_STACK_SIZE 0x440 #define PLATFORM_STACK_SIZE 0x440
#endif #endif
......
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
******************************************************************************/ ******************************************************************************/
/* Size of cacheable stacks */ /* Size of cacheable stacks */
#if IMAGE_BL31 #ifdef IMAGE_BL31
#define PLATFORM_STACK_SIZE 0x400 #define PLATFORM_STACK_SIZE 0x400
#endif #endif
......
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
* This doesn't include TZRAM as the 'mem_layout' argument passed to * This doesn't include TZRAM as the 'mem_layout' argument passed to
* arm_configure_mmu_elx() will give the available subset of that, * arm_configure_mmu_elx() will give the available subset of that,
*/ */
#if IMAGE_BL1 #ifdef IMAGE_BL1
static const mmap_region_t plat_qemu_mmap[] = { static const mmap_region_t plat_qemu_mmap[] = {
MAP_FLASH0, MAP_FLASH0,
MAP_SHARED_RAM, MAP_SHARED_RAM,
...@@ -82,7 +82,7 @@ static const mmap_region_t plat_qemu_mmap[] = { ...@@ -82,7 +82,7 @@ static const mmap_region_t plat_qemu_mmap[] = {
{0} {0}
}; };
#endif #endif
#if IMAGE_BL2 #ifdef IMAGE_BL2
static const mmap_region_t plat_qemu_mmap[] = { static const mmap_region_t plat_qemu_mmap[] = {
MAP_FLASH0, MAP_FLASH0,
MAP_SHARED_RAM, MAP_SHARED_RAM,
...@@ -98,7 +98,7 @@ static const mmap_region_t plat_qemu_mmap[] = { ...@@ -98,7 +98,7 @@ static const mmap_region_t plat_qemu_mmap[] = {
{0} {0}
}; };
#endif #endif
#if IMAGE_BL31 #ifdef IMAGE_BL31
static const mmap_region_t plat_qemu_mmap[] = { static const mmap_region_t plat_qemu_mmap[] = {
MAP_SHARED_RAM, MAP_SHARED_RAM,
MAP_DEVICE0, MAP_DEVICE0,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment