1 /*
2  * Copyright (c) 2024, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  * This file is limited to include the RoS specific definitions for the first
7  * generation platforms based on the A75, N1 and V1 CPUs. RoS (Rest Of System)
8  * is used to refer to the part of the reference design platform that excludes
9  * CSS.
10  */
11 
12 #ifndef NRD_ROS_DEF1_H
13 #define NRD_ROS_DEF1_H
14 
15 /*******************************************************************************
16  * ROS configs
17  ******************************************************************************/
18 
19 /* RoS Peripherals */
20 #define NRD_ROS_PERIPH_BASE		UL(0x60000000)
21 #define NRD_ROS_PERIPH_SIZE		UL(0x20000000)
22 
23 /* System Reg */
24 #define NRD_ROS_SYSTEMREG_BASE		UL(0x1C010000)
25 #define NRD_ROS_SYSTEMREG_SIZE		UL(0x00010000)
26 
27 /* NOR Flash 2 */
28 #define NRD_ROS_NOR2_FLASH_BASE		UL(0x10000000)
29 #define NRD_ROS_NOR2_FLASH_SIZE		UL(0x04000000)
30 
31 /* RoS Platform */
32 #define NRD_ROS_PLATFORM_BASE		UL(0x7F000000)
33 #define NRD_ROS_PLATFORM_SIZE		UL(0x20000000)
34 
35 #endif /* NRD_ROS_DEF1_H */
36