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 bases. 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 SGM775_MMAP_SCP_H
14 #define SGM775_MMAP_SCP_H
15 
16 #define SCP_ROM_BASE  0x00000000
17 #define SCP_RAM_BASE  0x10000000
18 
19 #endif /* SGM775_MMAP_SCP_H */
20