1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2015-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 "system_mmap_scp.h"
12 
13 #define FMW_MEM_MODE ARCH_MEM_MODE_SINGLE_REGION
14 
15 /* RAM */
16 #define FMW_MEM0_BASE SCP_RAM_BASE
17 #define FMW_MEM0_SIZE SCP_RAM_SIZE
18 
19 #endif /* FMW_MEMORY_H */
20