xref: /rk3399_ARM-atf/plat/hisilicon/hikey960/include/plat.ld.S (revision 236ca5667e8ac82aa53d4e933a78e6ca1ebf456e)
1/*
2 * Copyright (c) 2022, ARM Limited and Contributors. All rights reserved.
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
11MEMORY {
12    RAM2 (rw): ORIGIN = DDR2_SEC_BASE, LENGTH = DDR2_SEC_SIZE
13}
14
15SECTIONS
16{
17	ram2_region (NOLOAD) : {
18	*(ram2_region)
19	}>RAM2
20}
21
22#endif /* PLAT_LD_S */
23