blob: f8bd37611901968b4fa3ad4f64734493539a1f61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* Copyright (c) 2022-2023, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef PLAT_LD_S
#define PLAT_LD_S
#include <lib/xlat_tables/xlat_tables_defs.h>
MEMORY {
RAM2 (rw): ORIGIN = DDR2_SEC_BASE, LENGTH = DDR2_SEC_SIZE
}
SECTIONS
{
.ram2_region (NOLOAD) : {
*(.ram2_region)
}>RAM2
}
#endif /* PLAT_LD_S */
|