mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 01:54:22 +00:00

Add tool support for creating bootparam and cert_header images for RZ/G2 SoC based platforms. Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Change-Id: Iab8ba6eda442c8d75f23c5633b8178f86339e4c9
28 lines
797 B
ArmAsm
28 lines
797 B
ArmAsm
/*
|
|
* Copyright (c) 2020, Renesas Electronics Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x00000000;
|
|
.rodata : {
|
|
KEEP(*(.sa0_bootrom))
|
|
/* Map Type 3 for eMMC Boot */
|
|
/* A-side IPL content cert "Start Address" */
|
|
. = 0x000001D4; /* H'00000080 + H'00000154 */
|
|
KEEP(*(.sa0_bl2dst_addr3))
|
|
/* A-side IPL content cert "Size" */
|
|
. = 0x000002E4; /* H'00000080 + H'00000264 */
|
|
KEEP(*(.sa0_bl2dst_size3))
|
|
/* Map Type 1 for HyperFlash/QSPI Flash Boot */
|
|
/* A-side IPL content cert "Start Address" */
|
|
. = 0x00000D54; /* H'00000C00 + H'00000154 */
|
|
KEEP(*(.sa0_bl2dst_addr1))
|
|
/* A-side IPL content cert "Size" */
|
|
. = 0x00000E64; /* H'00000C00 + H'00000264 */
|
|
KEEP(*(.sa0_bl2dst_size1))
|
|
}
|
|
|
|
}
|