Commit 1649a5ae authored by Sandrine Bailleux's avatar Sandrine Bailleux
Browse files

juno: Use the correct firmware image names in comments and messages

parent 772b6e27
...@@ -63,7 +63,7 @@ extern unsigned long __COHERENT_RAM_END__; ...@@ -63,7 +63,7 @@ extern unsigned long __COHERENT_RAM_END__;
#define BL2_COHERENT_RAM_BASE (unsigned long)(&__COHERENT_RAM_START__) #define BL2_COHERENT_RAM_BASE (unsigned long)(&__COHERENT_RAM_START__)
#define BL2_COHERENT_RAM_LIMIT (unsigned long)(&__COHERENT_RAM_END__) #define BL2_COHERENT_RAM_LIMIT (unsigned long)(&__COHERENT_RAM_END__)
/* Pointer to memory visible to both BL2 and BL31 for passing data */ /* Pointer to memory visible to both BL2 and BL3-1 for passing data */
extern unsigned char **bl2_el_change_mem_ptr; extern unsigned char **bl2_el_change_mem_ptr;
/* Data structure which holds the extents of the trusted SRAM for BL2 */ /* Data structure which holds the extents of the trusted SRAM for BL2 */
...@@ -106,21 +106,20 @@ void bl2_early_platform_setup(meminfo *mem_layout, ...@@ -106,21 +106,20 @@ void bl2_early_platform_setup(meminfo *mem_layout,
/******************************************************************************* /*******************************************************************************
* Perform platform specific setup. For now just initialize the memory location * Perform platform specific setup. For now just initialize the memory location
* to use for passing arguments to BL31. * to use for passing arguments to BL3-1.
******************************************************************************/ ******************************************************************************/
void bl2_platform_setup() void bl2_platform_setup()
{ {
/* Initialise the IO layer and register platform IO devices */ /* Initialise the IO layer and register platform IO devices */
io_setup(); io_setup();
/* Populate the extents of memory available for loading BL33 */ /* Populate the extents of memory available for loading BL3-3 */
bl2_to_bl31_args.bl33_meminfo.total_base = DRAM_BASE; bl2_to_bl31_args.bl33_meminfo.total_base = DRAM_BASE;
bl2_to_bl31_args.bl33_meminfo.total_size = DRAM_SIZE; bl2_to_bl31_args.bl33_meminfo.total_size = DRAM_SIZE;
bl2_to_bl31_args.bl33_meminfo.free_base = DRAM_BASE; bl2_to_bl31_args.bl33_meminfo.free_base = DRAM_BASE;
bl2_to_bl31_args.bl33_meminfo.free_size = DRAM_SIZE; bl2_to_bl31_args.bl33_meminfo.free_size = DRAM_SIZE;
bl2_to_bl31_args.bl33_meminfo.attr = 0; bl2_to_bl31_args.bl33_meminfo.attr = 0;
bl2_to_bl31_args.bl33_meminfo.next = 0; bl2_to_bl31_args.bl33_meminfo.next = 0;
} }
/******************************************************************************* /*******************************************************************************
......
...@@ -75,8 +75,8 @@ meminfo *bl31_plat_get_bl32_mem_layout(void) ...@@ -75,8 +75,8 @@ meminfo *bl31_plat_get_bl32_mem_layout(void)
/******************************************************************************* /*******************************************************************************
* Return a pointer to the 'el_change_info' structure of the next image for the * Return a pointer to the 'el_change_info' structure of the next image for the
* security state specified. BL33 corresponds to the non-secure image type * security state specified. BL3-3 corresponds to the non-secure image type
* while BL32 corresponds to the secure image type. A NULL pointer is returned * while BL3-2 corresponds to the secure image type. A NULL pointer is returned
* if the image does not exist. * if the image does not exist.
******************************************************************************/ ******************************************************************************/
el_change_info *bl31_get_next_image_info(uint32_t type) el_change_info *bl31_get_next_image_info(uint32_t type)
...@@ -95,7 +95,7 @@ el_change_info *bl31_get_next_image_info(uint32_t type) ...@@ -95,7 +95,7 @@ el_change_info *bl31_get_next_image_info(uint32_t type)
} }
/******************************************************************************* /*******************************************************************************
* Perform any BL31 specific platform actions. Here is an opportunity to copy * Perform any BL3-1 specific platform actions. Here is an opportunity to copy
* parameters passed by the calling EL (S-EL1 in BL2 & S-EL3 in BL1) before they * parameters passed by the calling EL (S-EL1 in BL2 & S-EL3 in BL1) before they
* are lost (potentially). This needs to be done before the MMU is initialized * are lost (potentially). This needs to be done before the MMU is initialized
* so that the memory layout can be used while creating page tables. On the FVP * so that the memory layout can be used while creating page tables. On the FVP
......
...@@ -54,13 +54,13 @@ ...@@ -54,13 +54,13 @@
/* Trusted Boot Firmware BL2 */ /* Trusted Boot Firmware BL2 */
#define BL2_IMAGE_NAME "bl2.bin" #define BL2_IMAGE_NAME "bl2.bin"
/* EL3 Runtime Firmware BL31 */ /* EL3 Runtime Firmware BL3-1 */
#define BL31_IMAGE_NAME "bl31.bin" #define BL31_IMAGE_NAME "bl31.bin"
/* Secure Payload BL32 (Trusted OS) */ /* Secure Payload BL3-2 (Trusted OS) */
#define BL32_IMAGE_NAME "bl32.bin" #define BL32_IMAGE_NAME "bl32.bin"
/* Non-Trusted Firmware BL33 and its load address */ /* Non-Trusted Firmware BL3-3 and its load address */
#define BL33_IMAGE_NAME "bl33.bin" /* e.g. UEFI */ #define BL33_IMAGE_NAME "bl33.bin" /* e.g. UEFI */
#define NS_IMAGE_OFFSET (DRAM_BASE + 0x8000000) /* DRAM + 128MB */ #define NS_IMAGE_OFFSET (DRAM_BASE + 0x8000000) /* DRAM + 128MB */
...@@ -145,7 +145,7 @@ ...@@ -145,7 +145,7 @@
#define BL2_BASE 0x0402D000 #define BL2_BASE 0x0402D000
/******************************************************************************* /*******************************************************************************
* BL31 specific defines. * BL3-1 specific defines.
******************************************************************************/ ******************************************************************************/
#define BL31_BASE 0x0400C000 #define BL31_BASE 0x0400C000
......
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