1 /* 2 * Arm SCP/MCP Software 3 * Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 */ 7 8 #ifndef MCP_PLATFORM_MMAP_H 9 #define MCP_PLATFORM_MMAP_H 10 11 #include <stdint.h> 12 13 /* 14 * Top-level base addresses 15 */ 16 #define MCP_PERIPH_BASE UINT32_C(0x4C000000) 17 18 /* 19 * Peripherals 20 */ 21 #define MCP_UART0_BASE (MCP_PERIPH_BASE + 0x2000) 22 23 #endif /* MCP_PLATFORM_MMAP_H */ 24