blob: 1ee602d35f61827d1327078bfdfe64d824c70ab6 [file] [log] [blame]
John Powell7454e822022-04-07 15:43:35 -05001/*
2 * Copyright (c) 2020, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <platform.h>
8
9#define N1SDP_DRAM1_NS_START (TFTF_BASE + 0x4000000)
10#define N1SDP_DRAM1_NS_SIZE 0x10000000
11
12static const mem_region_t n1sdp_ram_ranges[] = {
13 { N1SDP_DRAM1_NS_START, N1SDP_DRAM1_NS_SIZE }
14};
15
16const mem_region_t *plat_get_prot_regions(int *nelem)
17{
18 *nelem = ARRAY_SIZE(n1sdp_ram_ranges);
19 return n1sdp_ram_ranges;
20}