1 /* 2 * Copyright (c) 2024, Arm Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 * 6 * This file contains the RoS specific definitions for the third generation of 7 * platforms. 8 */ 9 10 #ifndef NRD_ROS_DEF3_H 11 #define NRD_ROS_DEF3_H 12 13 /******************************************************************************* 14 * RoS memory map related defines 15 ******************************************************************************/ 16 17 /* System peripherals */ 18 #define NRD_ROS_SYSTEM_PERIPH_BASE UL(0x0C000000) 19 #define NRD_ROS_SYSTEM_PERIPH_SIZE UL(0x02000000) 20 21 /* Platform peripherals */ 22 #define NRD_ROS_PLATFORM_PERIPH_BASE UL(0x0E000000) 23 #define NRD_ROS_PLATFORM_PERIPH_SIZE UL(0x02000000) 24 25 /* SMC0 */ 26 #define NRD_ROS_SMC0_BASE UL(0x08000000) 27 #define NRD_ROS_SMC0_SIZE UL(0x04000000) 28 29 #endif /* NRD_ROS_DEF3_H */ 30