Lukas Hanel | 5258be1 | 2022-03-01 17:02:31 +0100 | [diff] [blame] | 1 | /* |
Chris Kay | 33bfc5e | 2023-02-14 11:30:04 +0000 | [diff] [blame] | 2 | * Copyright (c) 2022-2023, ARM Limited and Contributors. All rights reserved. |
Lukas Hanel | 5258be1 | 2022-03-01 17:02:31 +0100 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | #ifndef PLAT_LD_S |
| 7 | #define PLAT_LD_S |
| 8 | |
| 9 | #include <lib/xlat_tables/xlat_tables_defs.h> |
| 10 | |
| 11 | MEMORY { |
| 12 | RAM2 (rw): ORIGIN = DDR2_SEC_BASE, LENGTH = DDR2_SEC_SIZE |
| 13 | } |
| 14 | |
| 15 | SECTIONS |
| 16 | { |
Chris Kay | 33bfc5e | 2023-02-14 11:30:04 +0000 | [diff] [blame] | 17 | .ram2_region (NOLOAD) : { |
| 18 | *(.ram2_region) |
Lukas Hanel | 5258be1 | 2022-03-01 17:02:31 +0100 | [diff] [blame] | 19 | }>RAM2 |
| 20 | } |
| 21 | |
| 22 | #endif /* PLAT_LD_S */ |