1 /*
2  * Renesas SCP/MCP Software
3  * Copyright (c) 2020-2021, Renesas Electronics Corporation. All rights
4  * reserved.
5  *
6  * SPDX-License-Identifier: BSD-3-Clause
7  */
8 
9 #ifndef SYSTEM_MMAP_H
10 #define SYSTEM_MMAP_H
11 
12 #include <rcar_mmap.h>
13 
14 #define BOARD_UART1_BASE (PERIPHERAL_BASE + 0xe68000)
15 #define BOARD_UART2_BASE (PERIPHERAL_BASE + 0xe88000)
16 
17 #define SENSOR_SOC_TEMP1 (PERIPHERAL_BASE + 0x198000)
18 #define SENSOR_SOC_TEMP2 (PERIPHERAL_BASE + 0x1a0000)
19 #define SENSOR_SOC_TEMP3 (PERIPHERAL_BASE + 0x1a8000)
20 #define SENSOR_SOC_TEMP (SENSOR_SOC_TEMP1)
21 
22 #endif /* SYSTEM_MMAP_H */
23