mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-19 02:54:24 +00:00
plat/arm: fvp: Do not map GIC region in BL1 and BL2
GIC memory region is not getting used in BL1 and BL2. Hence avoid its mapping in BL1 and BL2 that freed some page table entries to map other memory regions in the future. Retains mapping of CCN interconnect region in BL1 and BL2 overlapped with the GIC memory region. Change-Id: I880dd0690f94b140e59e4ff0c0d436961b9cb0a7 Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
This commit is contained in:
parent
8098d54409
commit
e0cea7831f
1 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved.
|
* Copyright (c) 2013-2021, ARM Limited and Contributors. All rights reserved.
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: BSD-3-Clause
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
*/
|
*/
|
||||||
|
@ -70,7 +70,9 @@ const mmap_region_t plat_arm_mmap[] = {
|
||||||
V2M_MAP_FLASH0_RW,
|
V2M_MAP_FLASH0_RW,
|
||||||
V2M_MAP_IOFPGA,
|
V2M_MAP_IOFPGA,
|
||||||
MAP_DEVICE0,
|
MAP_DEVICE0,
|
||||||
|
#if FVP_INTERCONNECT_DRIVER == FVP_CCN
|
||||||
MAP_DEVICE1,
|
MAP_DEVICE1,
|
||||||
|
#endif
|
||||||
#if TRUSTED_BOARD_BOOT
|
#if TRUSTED_BOARD_BOOT
|
||||||
/* To access the Root of Trust Public Key registers. */
|
/* To access the Root of Trust Public Key registers. */
|
||||||
MAP_DEVICE2,
|
MAP_DEVICE2,
|
||||||
|
@ -86,7 +88,9 @@ const mmap_region_t plat_arm_mmap[] = {
|
||||||
V2M_MAP_FLASH0_RW,
|
V2M_MAP_FLASH0_RW,
|
||||||
V2M_MAP_IOFPGA,
|
V2M_MAP_IOFPGA,
|
||||||
MAP_DEVICE0,
|
MAP_DEVICE0,
|
||||||
|
#if FVP_INTERCONNECT_DRIVER == FVP_CCN
|
||||||
MAP_DEVICE1,
|
MAP_DEVICE1,
|
||||||
|
#endif
|
||||||
ARM_MAP_NS_DRAM1,
|
ARM_MAP_NS_DRAM1,
|
||||||
#ifdef __aarch64__
|
#ifdef __aarch64__
|
||||||
ARM_MAP_DRAM2,
|
ARM_MAP_DRAM2,
|
||||||
|
|
Loading…
Add table
Reference in a new issue