1 /* 2 * Arm SCP/MCP Software 3 * Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 */ 7 8 #ifndef MCP_MMAP_H 9 #define MCP_MMAP_H 10 11 #define MCP_BOOT_ROM_BASE 0x00000000 12 #define MCP_ITC_RAM_BASE 0x00800000 13 #define MCP_SOC_EXPANSION1_BASE 0x01000000 14 #define MCP_DTC_RAM_BASE 0x20000000 15 #define MCP_UART1_BASE 0x4C002000 16 #define MCP_UART2_BASE 0x4C003000 17 #define MCP_PERIPHERAL_BASE 0x4C000000 18 #define MCP_SYSTEM_ACCESS_PORT1_BASE 0xA0000000 19 20 #endif /* MCP_MMAP_H */ 21