blob: 5aaa7376a42794c6fcfab7b8939778e51e84baeb [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
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00007#include <platform_def.h>
8
9#include <common/bl_common.h>
10#include <common/debug.h>
11#include <plat/common/platform.h>
12
Deepak Pandey9cbacf62018-08-08 10:32:51 +053013#include <arm_def.h>
Deepak Pandey9cbacf62018-08-08 10:32:51 +053014#include <plat_arm.h>
Deepak Pandey9cbacf62018-08-08 10:32:51 +053015
16/*
17 * Table of regions to map using the MMU.
18 * Replace or extend the below regions as required
19 */
20
21const mmap_region_t plat_arm_mmap[] = {
22 ARM_MAP_SHARED_RAM,
23 N1SDP_MAP_DEVICE,
24 SOC_CSS_MAP_DEVICE,
25 {0}
26};
27