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_BOOT_ROM_SIZE            (64 * 1024)
13 #define SCP_ITC_RAM_BASE             0x00800000
14 #define SCP_SOC_EXPANSION1_BASE      0x01000000
15 #define SCP_DTC_RAM_BASE             0x20000000
16 #define SCP_DTC_RAM_SIZE             (256 * 1024)
17 #define SCP_ITC_RAM_SIZE             (256 * 1024)
18 #define SCP_SOC_EXPANSION3_BASE      0x40000000
19 #define SCP_PERIPHERAL_BASE          0x44000000
20 #define SCP_PIK_BASE                 0x50000000
21 #define SCP_SYSTEM_ACCESS_PORT0_BASE 0x60000000
22 #define SCP_SYSTEM_ACCESS_PORT1_BASE 0xA0000000
23 
24 #endif /* SCP_MMAP_H */
25