1 /* 2 * Arm SCP/MCP Software 3 * Copyright (c) 2018-2021, Arm Limited and Contributors. All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 */ 7 8 #ifndef SCP_SYSTEM_MMAP_SCP_H 9 #define SCP_SYSTEM_MMAP_SCP_H 10 11 #define SCP_ROM_SIZE (512 * 1024) 12 #define SCP_RAM0_SIZE (128 * 1024) 13 #define SCP_RAM1_SIZE (64 * 1024) 14 #define SCP_RAM2_SIZE (128 * 1024) 15 16 #define SCP_ROM_BASE (0x08100000) 17 #define SCP_RAM0_BASE (0x00800000) 18 #define SCP_RAM1_BASE (0x00900000) 19 #define SCP_RAM2_BASE (0x1C020000) 20 21 #define SCP_RAMFW_ROM_BASE (0x08110000) 22 #define SCP_RAMFW_IMAGE_SIZE (128 * 1024) 23 24 #endif /* SCP_SYSTEM_MMAP_SCP_H */ 25