xref: /rk3399_ARM-atf/plat/arm/board/n1sdp/n1sdp_plat.c (revision 09d40e0e08283a249e7dce0e106c07c5141f9b7e)
1 /*
2  * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <platform_def.h>
8 
9 #include <common/bl_common.h>
10 #include <common/debug.h>
11 #include <plat/common/platform.h>
12 
13 #include <arm_def.h>
14 #include <plat_arm.h>
15 
16 /*
17  * Table of regions to map using the MMU.
18  * Replace or extend the below regions as required
19  */
20 
21 const mmap_region_t plat_arm_mmap[] = {
22 	ARM_MAP_SHARED_RAM,
23 	N1SDP_MAP_DEVICE,
24 	SOC_CSS_MAP_DEVICE,
25 	{0}
26 };
27 
28