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 * Description: 8 * SCP ROM and RAM memory sizes. These definitions are kept isolated without 9 * the UINT32_C() or UL decorators allowing them to be used in the linker 10 * script. 11 */ 12 13 #ifndef SYSTEM_MMAP_SCP_H 14 #define SYSTEM_MMAP_SCP_H 15 16 #include "sgm775_mmap_scp.h" 17 18 #define SCP_ROM_SIZE (64 * 1024) 19 #define SCP_RAM_SIZE (128 * 1024) 20 21 #endif /* SYSTEM_MMAP_SCP_H */ 22