mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-05-05 02:18:40 +00:00

This patch adds support for Morello platform. It is an initial port which includes only BL31 support as the System Control Processor (SCP) is expected to take the role of primary bootloader. Change-Id: I1ecbe5a14a2d487b2ecea3c1ca227f08473ed2dd Co-authored-by: Chandni Cherukuri <chandni.cherukuri@arm.com> Signed-off-by: Chandni Cherukuri <chandni.cherukuri@arm.com> Signed-off-by: Anurag Koul <anurag.koul@arm.com>
22 lines
403 B
C
22 lines
403 B
C
/*
|
|
* Copyright (c) 2020, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <plat/arm/common/plat_arm.h>
|
|
|
|
#include "morello_def.h"
|
|
|
|
/*
|
|
* Table of regions to map using the MMU.
|
|
* Replace or extend the below regions as required
|
|
*/
|
|
|
|
const mmap_region_t plat_arm_mmap[] = {
|
|
ARM_MAP_SHARED_RAM,
|
|
MORELLO_MAP_DEVICE,
|
|
MORELLO_MAP_NS_SRAM,
|
|
ARM_MAP_DRAM1,
|
|
{0}
|
|
};
|