blob: 8c057c55ebac347c17a1cf3ea944411efda75b98 [file] [log] [blame]
Deepak Pandey9cbacf62018-08-08 10:32:51 +05301/*
2 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arm_def.h>
8#include <bl_common.h>
9#include <debug.h>
10#include <plat_arm.h>
11#include <platform.h>
12#include <platform_def.h>
13
14/*
15 * Table of regions to map using the MMU.
16 * Replace or extend the below regions as required
17 */
18
19const mmap_region_t plat_arm_mmap[] = {
20 ARM_MAP_SHARED_RAM,
21 N1SDP_MAP_DEVICE,
22 SOC_CSS_MAP_DEVICE,
23 {0}
24};
25