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 FMW_MEMORY_H
9 #define FMW_MEMORY_H
10 
11 #include "scp_mmap.h"
12 
13 #define FMW_MEM_MODE ARCH_MEM_MODE_DUAL_REGION_RELOCATION
14 
15 /* ROM */
16 #define FMW_MEM0_SIZE SCP_ROM_SIZE
17 #define FMW_MEM0_BASE SCP_ROM_BASE
18 
19 /* RAM */
20 #define FMW_MEM1_SIZE (16 * 1024)
21 #define FMW_MEM1_BASE (SCP_RAM_BASE + SCP_RAM_SIZE - FMW_MEM1_SIZE)
22 
23 #endif /* FMW_MEMORY_H */
24