1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #ifndef SCP_MMAP_H
9 #define SCP_MMAP_H
10 
11 #define SCP_BOOT_ROM_BASE 0x00000000
12 #define SCP_RAM_BASE 0x10000000
13 
14 #define SCP_SOC_EXPANSION3_BASE UINT32_C(0x40000000)
15 #define SCP_PERIPHERAL_BASE UINT32_C(0x44000000)
16 #define SCP_ELEMENT_MANAGEMENT_PERIPHERAL_BASE UINT32_C(0x50000000)
17 #define SCP_SYSTEM_ACCESS_PORT0_BASE UINT32_C(0x60000000)
18 #define SCP_SYSTEM_ACCESS_PORT1_BASE UINT32_C(0xA0000000)
19 
20 #endif /* SCP_MMAP_H */
21