1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2019-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_ROM_SIZE  (64 * 1024)
12 #define SCP_RAM_SIZE  (128 * 1024)
13 
14 #if SCP_ROM_BYPASS
15 #define SCP_ROM_BASE  0xABE40000
16 #else
17 #define SCP_ROM_BASE  0x00000000
18 #endif
19 
20 #define SCP_RAM_BASE  0x10000000
21 
22 #endif /* SCP_MMAP_H */
23