• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2020, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <plat/arm/common/plat_arm.h>
8 
9 #include "morello_def.h"
10 
11 /*
12  * Table of regions to map using the MMU.
13  * Replace or extend the below regions as required
14  */
15 
16 const mmap_region_t plat_arm_mmap[] = {
17 	ARM_MAP_SHARED_RAM,
18 	MORELLO_MAP_DEVICE,
19 	MORELLO_MAP_NS_SRAM,
20 	ARM_MAP_DRAM1,
21 	{0}
22 };
23