1/*
2 * Copyright (c) 2020, Renesas Electronics Corporation. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7SECTIONS
8{
9	. = 0x00000000;
10	.rodata : {
11		KEEP(*(.sa0_bootrom))
12		/* Map Type 3 for eMMC Boot */
13                /* A-side IPL content cert "Start Address" */
14		. = 0x000001D4;		/* H'00000080 + H'00000154 */
15		KEEP(*(.sa0_bl2dst_addr3))
16                /* A-side IPL content cert "Size" */
17		. = 0x000002E4;		/* H'00000080 + H'00000264 */
18		KEEP(*(.sa0_bl2dst_size3))
19		/* Map Type 1 for HyperFlash/QSPI Flash Boot */
20		/* A-side IPL content cert "Start Address" */
21		. = 0x00000D54;		/* H'00000C00 + H'00000154 */
22		KEEP(*(.sa0_bl2dst_addr1))
23		/* A-side IPL content cert "Size" */
24		. = 0x00000E64;		/* H'00000C00 + H'00000264 */
25		KEEP(*(.sa0_bl2dst_size1))
26	}
27
28}
29