1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  *
7  * Description:
8  *     Software defined memory map shared between MCP and AP cores.
9  */
10 
11 #ifndef MCP_SOFTWARE_MMAP_H
12 #define MCP_SOFTWARE_MMAP_H
13 
14 #include "mcp_sgi575_mmap.h"
15 
16 #include <fwk_macros.h>
17 
18 #define MCP_NOR_FLASH_BASE 0x08000000
19 #define MCP_NOR_BASE       (MCP_NOR_FLASH_BASE + 0x03F80000)
20 #define MCP_IMAGE_SIZE     (256 * FWK_KIB)
21 
22 #endif /* MCP_SOFTWARE_MMAP_H */
23