blob: 9ba8533b2021ec3c452465f6daedca4894cce141 [file] [log] [blame]
Kshitij Sisodia8c61c0a2022-05-17 11:16:22 +01001/*
2 * Copyright (c) 2022 Arm Limited. All rights reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#ifndef PERIPHERAL_MEMMAP_H
19#define PERIPHERAL_MEMMAP_H
20
21#define DESIGN_NAME "Arm Corstone-310 - AN555"
22
23/******************************************************************************/
24/* Peripheral memory map */
25/******************************************************************************/
26
27#define CMSDK_GPIO0_BASE (0x41100000) /* User GPIO 0 Base Address */
28#define CMSDK_GPIO1_BASE (0x41101000) /* User GPIO 1 Base Address */
29#define CMSDK_GPIO2_BASE (0x41102000) /* User GPIO 2 Base Address */
30#define CMSDK_GPIO3_BASE (0x41103000) /* User GPIO 3 Base Address */
31
32#define FMC_CMDSK_GPIO_BASE0 (0x41104000) /* FMC_CMDSK_GPIO_BASE 0 Base Address (4KB) */
33#define FMC_CMDSK_GPIO_BASE1 (0x41105000) /* FMC_CMDSK_GPIO_BASE 1 Base Address (4KB)*/
34#define FMC_CMDSK_GPIO_BASE2 (0x41106000) /* FMC_CMDSK_GPIO_BASE 2 Base Address (4KB)*/
35#define FMC_USER_AHB_BASE (0x41107000) /* FMC_USER_AHB_BASE Base Address (4KB)*/
36
37#define DMA0_BASE (0x41200000) /* DMA0 (4KB) */
38#define DMA1_BASE (0x41201000) /* DMA1 (4KB) */
39#define DMA2_BASE (0x41202000) /* DMA2 (4KB) */
40#define DMA3_BASE (0x41203000) /* DMA3 (4KB) */
41
42#define USER_APB0_BASE (0x41700000) /* User APB0 */
43#define USER_APB1_BASE (0x41701000) /* User APB1 */
44#define USER_APB2_BASE (0x41702000) /* User APB2 */
45#define USER_APB3_BASE (0x41703000) /* User APB3 */
46
47#define MPS3_I2C0_BASE (0x49200000) /* Touch Screen I2C Base Address */
48#define MPS3_I2C1_BASE (0x49201000) /* Audio Interface I2C Base Address */
49#define MPS3_SSP2_BASE (0x49202000) /* ADC SPI PL022 Base Address */
50#define MPS3_SSP3_BASE (0x49203000) /* Shield 0 SPI PL022 Base Address */
51
52#define MPS3_SSP4_BASE (0x49204000) /* Shield 1 SPI PL022 Base Address */
53#define MPS3_I2C2_BASE (0x49205000) /* Shield 0 SBCon Base Address */
54#define MPS3_I2C3_BASE (0x49206000) /* Shield 1 SBCon Base Address */
55
56#define USER_APB_BASE (0x49207000) /* User APB Base Address */
57/* #undef MPS3_I2C4_BASE */
58#define MPS3_I2C5_BASE (0x49208000) /* DDR EPROM I2C SBCon Base Address */
59#define MPS3_SCC_BASE (0x49300000) /* SCC Base Address */
60#define MPS3_AAIC_I2S_BASE (0x49301000) /* Audio Interface I2S Base Address */
61#define MPS3_FPGAIO_BASE (0x49302000) /* FPGA IO Base Address */
62/* #undef PL011_UART0_BASE */
63#define CMSDK_UART0_BASE (0x49303000) /* UART 0 Base Address */
64#define CMSDK_UART1_BASE (0x49304000) /* UART 1 Base Address */
65#define CMSDK_UART2_BASE (0x49305000) /* UART 2 Base Address */
66#define CMSDK_UART3_BASE (0x49306000) /* UART 3 Base Address Shield 0*/
67
68#define ETHOS_U_NPU_BASE (0x40004000) /* Ethos-U NPU base address*/
69#define ETHOS_U_NPU_TA0_BASE (0x48103000) /* Ethos-U NPU's timing adapter 0 base address */
70#define ETHOS_U_NPU_TA1_BASE (0x48103200) /* Ethos-U NPU's timing adapter 1 base address */
71
72#define CMSDK_UART4_BASE (0x49307000) /* UART 4 Base Address Shield 1*/
73#define CMSDK_UART5_BASE (0x49308000) /* UART 5 Base Address */
74/* #undef HDMI_AUDIO_BASE */
75#define CLCD_CONFIG_BASE (0x4930A000) /* CLCD CONFIG Base Address */
76#define RTC_BASE (0x4930B000) /* RTC Base address */
77#define SMSC9220_BASE (0x41400000) /* Ethernet SMSC9220 Base Address */
78#define USB_BASE (0x41500000) /* USB Base Address */
79/* #undef CMSDK_SDIO_BASE */
80/* #undef MPS3_CLCD_BASE */
81/* #undef MPS3_eMMC_BASE */
82/* #undef USER_BASE */
83
84#define QSPI_XIP_BASE (0x41800000) /* QSPI XIP config Base Address */
85#define QSPI_WRITE_BASE (0x41801000) /* QSPI write config Base Address */
86
87/******************************************************************************/
88/* Secure Peripheral memory map */
89/******************************************************************************/
90
91#define MPC_ISRAM0_BASE_S (0x50083000) /* ISRAM0 Memory Protection Controller Secure base address */
92#define MPC_ISRAM1_BASE_S (0x50084000) /* ISRAM1 Memory Protection Controller Secure base address */
93
94#define SEC_CMSDK_GPIO0_BASE (0x51100000) /* User GPIO 0 Base Address */
95#define SEC_CMSDK_GPIO1_BASE (0x51101000) /* User GPIO 0 Base Address */
96#define SEC_CMSDK_GPIO2_BASE (0x51102000) /* User GPIO 0 Base Address */
97#define SEC_CMSDK_GPIO3_BASE (0x51103000) /* User GPIO 0 Base Address */
98
99#define SEC_AHB_USER0_BASE (0x51104000) /* AHB USER 0 Base Address (4KB) */
100#define SEC_AHB_USER1_BASE (0x51105000) /* AHB USER 1 Base Address (4KB)*/
101#define SEC_AHB_USER2_BASE (0x51106000) /* AHB USER 2 Base Address (4KB)*/
102#define SEC_AHB_USER3_BASE (0x51107000) /* AHB USER 3 Base Address (4KB)*/
103
104#define SEC_DMA0_BASE (0x51200000) /* DMA0 (4KB) */
105#define SEC_DMA1_BASE (0x51201000) /* DMA1 (4KB) */
106#define SEC_DMA2_BASE (0x51202000) /* DMA2 (4KB) */
107#define SEC_DMA3_BASE (0x51203000) /* DMA3 (4KB) */
108
109#define SEC_USER_APB0_BASE (0x51700000) /* User APB0 */
110#define SEC_USER_APB1_BASE (0x51701000) /* User APB1 */
111#define SEC_USER_APB2_BASE (0x51702000) /* User APB2 */
112#define SEC_USER_APB3_BASE (0x51703000) /* User APB3 */
113
114#define SEC_MPS3_I2C0_BASE (0x59200000) /* Touch Screen I2C Base Address */
115#define SEC_MPS3_I2C1_BASE (0x59201000) /* Audio Interface I2C Base Address */
116#define SEC_MPS3_SSP2_BASE (0x59202000) /* ADC SPI PL022 Base Address */
117#define SEC_MPS3_SSP3_BASE (0x59203000) /* Shield 0 SPI PL022 Base Address */
118
119#define SEC_MPS3_SSP4_BASE (0x59204000) /* Shield 1 SPI PL022 Base Address */
120#define SEC_MPS3_I2C2_BASE (0x59205000) /* Shield 0 SBCon Base Address */
121#define SEC_MPS3_I2C3_BASE (0x59206000) /* Shield 1 SBCon Base Address */
122
123/* #undef SEC_MPS3_I2C4_BASE */
124#define SEC_MPS3_I2C5_BASE (0x59208000) /* DDR EPROM I2C SBCon Base Address */
125#define SEC_MPS3_SCC_BASE (0x59300000) /* SCC Base Address */
126#define SEC_MPS3_AAIC_I2S_BASE (0x59301000) /* Audio Interface I2S Base Address */
127#define SEC_MPS3_FPGAIO_BASE (0x59302000) /* FPGA IO Base Address */
128#define SEC_CMSDK_UART0_BASE (0x59303000) /* UART 0 Base Address */
129#define SEC_CMSDK_UART1_BASE (0x59304000) /* UART 1 Base Address */
130#define SEC_CMSDK_UART2_BASE (0x59305000) /* UART 2 Base Address */
131#define SEC_CMSDK_UART3_BASE (0x59306000) /* UART 3 Base Address Shield 0*/
132
133#define SEC_CMSDK_UART4_BASE (0x59307000) /* UART 4 Base Address Shield 1*/
134#define SEC_CMSDK_UART5_BASE (0x59308000) /* UART 5 Base Address */
135/* #undef SEC_HDMI_AUDIO_BASE */
136#define SEC_CLCD_CONFIG_BASE (0x5930A000) /* CLCD CONFIG Base Address */
137#define SEC_RTC_BASE (0x5930B000) /* RTC Base address */
138
139
140
141
142#define SEC_SMSC9220_BASE (0x51400000) /* Ethernet SMSC91C111 Base Address */
143#define SEC_USB_BASE (0x51500000) /* USB Base Address */
144
145#define SEC_ETHOS_U_NPU_BASE (0x50004000) /* Ethos-U NPU base address*/
146#define SEC_ETHOS_U_NPU_TA0_BASE (0x58103000) /* Ethos-U NPU's timing adapter 0 base address */
147#define SEC_ETHOS_U_NPU_TA1_BASE (0x58103200) /* Ethos-U NPU's timing adapter 1 base address */
148
149/* #undef SEC_USER_BASE */
150
151#define SEC_QSPI_XIP_BASE (0x51800000) /* QSPI XIP config Base Address */
152#define SEC_QSPI_WRITE_BASE (0x51801000) /* QSPI write config Base Address */
153
154/******************************************************************************/
155/* MPCs */
156/******************************************************************************/
157
158#define MPC_ISRAM0_BASE_S (0x50083000) /* Internal SRAM 0 MPC */
159#define MPC_ISRAM1_BASE_S (0x50084000) /* Internal SRAM 1 MPC */
160#define MPC_BRAM_BASE_S (0x57000000) /* SRAM Memory Protection Controller Secure base address */
161#define MPC_QSPI_BASE_S (0x57001000) /* QSPI Memory Protection Controller Secure base address */
162#define MPC_DDR4_BASE_S (0x57002000) /* DDR4 Memory Protection Controller Secure base address */
163
164#endif /* PERIPHERAL_MEMMAP_H */