summaryrefslogtreecommitdiffstats
path: root/plat/hisilicon/hikey960/include/plat.ld.S
blob: 0cc25cdacd330e09b719576c92fead74f785fe56 (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, 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 */