blob: 0eba8a6451cc1334ac294a2518ad016cd1f97226 [file] [log] [blame]
Yann Gautier4b0c72a2018-07-16 10:54:09 +02001/*
Yann Gautierf9d40d52019-01-17 14:41:46 +01002 * Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved.
Yann Gautier4b0c72a2018-07-16 10:54:09 +02003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef STM32MP1_DEF_H
8#define STM32MP1_DEF_H
9
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <common/tbbr/tbbr_img_def.h>
Yann Gautierb5d2ed42019-02-14 11:13:50 +010011#include <drivers/st/stm32mp1_rcc.h>
12#include <dt-bindings/clock/stm32mp1-clks.h>
13#include <dt-bindings/reset/stm32mp1-resets.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000014#include <lib/utils_def.h>
15#include <lib/xlat_tables/xlat_tables_defs.h>
Yann Gautier4b0c72a2018-07-16 10:54:09 +020016
Julius Werner53456fc2019-07-09 13:49:11 -070017#ifndef __ASSEMBLER__
Yann Gautier091eab52019-06-04 18:06:34 +020018#include <drivers/st/bsec.h>
Yann Gautierb5d2ed42019-02-14 11:13:50 +010019#include <drivers/st/stm32mp1_clk.h>
20
Yann Gautier57e282b2019-01-07 11:17:24 +010021#include <boot_api.h>
Yann Gautieree8f5422019-02-14 11:13:25 +010022#include <stm32mp_common.h>
23#include <stm32mp_dt.h>
Yann Gautiere4a3c352019-02-14 10:53:33 +010024#include <stm32mp_shres_helpers.h>
Yann Gautierc7374052019-06-04 18:02:37 +020025#include <stm32mp1_dbgmcu.h>
Yann Gautier57e282b2019-01-07 11:17:24 +010026#include <stm32mp1_private.h>
27#endif
28
Yann Gautier4b0c72a2018-07-16 10:54:09 +020029/*******************************************************************************
Yann Gautierc7374052019-06-04 18:02:37 +020030 * CHIP ID
31 ******************************************************************************/
32#define STM32MP157C_PART_NB U(0x05000000)
33#define STM32MP157A_PART_NB U(0x05000001)
34#define STM32MP153C_PART_NB U(0x05000024)
35#define STM32MP153A_PART_NB U(0x05000025)
36#define STM32MP151C_PART_NB U(0x0500002E)
37#define STM32MP151A_PART_NB U(0x0500002F)
38
39#define STM32MP1_REV_B U(0x2000)
40
41/*******************************************************************************
42 * PACKAGE ID
43 ******************************************************************************/
44#define PKG_AA_LFBGA448 U(4)
45#define PKG_AB_LFBGA354 U(3)
46#define PKG_AC_TFBGA361 U(2)
47#define PKG_AD_TFBGA257 U(1)
48
49/*******************************************************************************
Yann Gautier4b0c72a2018-07-16 10:54:09 +020050 * STM32MP1 memory map related constants
51 ******************************************************************************/
52
Yann Gautiera2e2a302019-02-14 11:13:39 +010053#define STM32MP_SYSRAM_BASE U(0x2FFC0000)
54#define STM32MP_SYSRAM_SIZE U(0x00040000)
Yann Gautier4b0c72a2018-07-16 10:54:09 +020055
56/* DDR configuration */
Yann Gautiera2e2a302019-02-14 11:13:39 +010057#define STM32MP_DDR_BASE U(0xC0000000)
58#define STM32MP_DDR_MAX_SIZE U(0x40000000) /* Max 1GB */
Yann Gautierb3386f72019-04-19 09:41:01 +020059#ifdef AARCH32_SP_OPTEE
60#define STM32MP_DDR_S_SIZE U(0x01E00000) /* 30 MB */
61#define STM32MP_DDR_SHMEM_SIZE U(0x00200000) /* 2 MB */
62#endif
Yann Gautier4b0c72a2018-07-16 10:54:09 +020063
64/* DDR power initializations */
Julius Werner53456fc2019-07-09 13:49:11 -070065#ifndef __ASSEMBLER__
Yann Gautier4b0c72a2018-07-16 10:54:09 +020066enum ddr_type {
67 STM32MP_DDR3,
68 STM32MP_LPDDR2,
Yann Gautier917a00c2019-04-16 16:20:58 +020069 STM32MP_LPDDR3
Yann Gautier4b0c72a2018-07-16 10:54:09 +020070};
71#endif
72
73/* Section used inside TF binaries */
Yann Gautiera2e2a302019-02-14 11:13:39 +010074#define STM32MP_PARAM_LOAD_SIZE U(0x00002400) /* 9 Ko for param */
Yann Gautier4b0c72a2018-07-16 10:54:09 +020075/* 256 Octets reserved for header */
Yann Gautiera2e2a302019-02-14 11:13:39 +010076#define STM32MP_HEADER_SIZE U(0x00000100)
Yann Gautier4b0c72a2018-07-16 10:54:09 +020077
Yann Gautiera2e2a302019-02-14 11:13:39 +010078#define STM32MP_BINARY_BASE (STM32MP_SYSRAM_BASE + \
79 STM32MP_PARAM_LOAD_SIZE + \
80 STM32MP_HEADER_SIZE)
Yann Gautier4b0c72a2018-07-16 10:54:09 +020081
Yann Gautiera2e2a302019-02-14 11:13:39 +010082#define STM32MP_BINARY_SIZE (STM32MP_SYSRAM_SIZE - \
83 (STM32MP_PARAM_LOAD_SIZE + \
84 STM32MP_HEADER_SIZE))
Yann Gautier4b0c72a2018-07-16 10:54:09 +020085
Yann Gautierb3386f72019-04-19 09:41:01 +020086#ifdef AARCH32_SP_OPTEE
87#define STM32MP_BL32_SIZE U(0)
88
89#define STM32MP_OPTEE_BASE STM32MP_SYSRAM_BASE
90
91#define STM32MP_OPTEE_SIZE (STM32MP_DTB_BASE - \
92 STM32MP_OPTEE_BASE)
93#else
Yann Gautier4b0c72a2018-07-16 10:54:09 +020094#if STACK_PROTECTOR_ENABLED
Yann Gautiera2e2a302019-02-14 11:13:39 +010095#define STM32MP_BL32_SIZE U(0x00012000) /* 72 Ko for BL32 */
Yann Gautier4b0c72a2018-07-16 10:54:09 +020096#else
Yann Gautiera2e2a302019-02-14 11:13:39 +010097#define STM32MP_BL32_SIZE U(0x00011000) /* 68 Ko for BL32 */
Yann Gautier4b0c72a2018-07-16 10:54:09 +020098#endif
Yann Gautierb3386f72019-04-19 09:41:01 +020099#endif
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200100
Yann Gautiera2e2a302019-02-14 11:13:39 +0100101#define STM32MP_BL32_BASE (STM32MP_SYSRAM_BASE + \
102 STM32MP_SYSRAM_SIZE - \
103 STM32MP_BL32_SIZE)
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200104
Yann Gautierb3386f72019-04-19 09:41:01 +0200105#ifdef AARCH32_SP_OPTEE
106#if STACK_PROTECTOR_ENABLED
107#define STM32MP_BL2_SIZE U(0x00019000) /* 100 Ko for BL2 */
108#else
109#define STM32MP_BL2_SIZE U(0x00017000) /* 92 Ko for BL2 */
110#endif
111#else
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200112#if STACK_PROTECTOR_ENABLED
Yann Gautier091eab52019-06-04 18:06:34 +0200113#define STM32MP_BL2_SIZE U(0x00018000) /* 96 Ko for BL2 */
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200114#else
Yann Gautier091eab52019-06-04 18:06:34 +0200115#define STM32MP_BL2_SIZE U(0x00016000) /* 88 Ko for BL2 */
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200116#endif
Yann Gautierb3386f72019-04-19 09:41:01 +0200117#endif
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200118
Yann Gautiera2e2a302019-02-14 11:13:39 +0100119#define STM32MP_BL2_BASE (STM32MP_BL32_BASE - \
120 STM32MP_BL2_SIZE)
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200121
122/* BL2 and BL32/sp_min require 5 tables */
123#define MAX_XLAT_TABLES 5
124
125/*
126 * MAX_MMAP_REGIONS is usually:
127 * BL stm32mp1_mmap size + mmap regions in *_plat_arch_setup
128 */
Yann Gautier9d135e42018-07-16 19:36:06 +0200129#if defined(IMAGE_BL2)
130 #define MAX_MMAP_REGIONS 11
131#endif
132#if defined(IMAGE_BL32)
133 #define MAX_MMAP_REGIONS 6
134#endif
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200135
136/* DTB initialization value */
Yann Gautier33b96fc2019-04-19 10:55:03 +0200137#define STM32MP_DTB_SIZE U(0x00005000) /* 20Ko for DTB */
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200138
Yann Gautiera2e2a302019-02-14 11:13:39 +0100139#define STM32MP_DTB_BASE (STM32MP_BL2_BASE - \
140 STM32MP_DTB_SIZE)
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200141
Yann Gautiera2e2a302019-02-14 11:13:39 +0100142#define STM32MP_BL33_BASE (STM32MP_DDR_BASE + U(0x100000))
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200143
144/*******************************************************************************
145 * STM32MP1 device/io map related constants (used for MMU)
146 ******************************************************************************/
147#define STM32MP1_DEVICE1_BASE U(0x40000000)
148#define STM32MP1_DEVICE1_SIZE U(0x40000000)
149
150#define STM32MP1_DEVICE2_BASE U(0x80000000)
151#define STM32MP1_DEVICE2_SIZE U(0x40000000)
152
153/*******************************************************************************
154 * STM32MP1 RCC
155 ******************************************************************************/
156#define RCC_BASE U(0x50000000)
157
158/*******************************************************************************
159 * STM32MP1 PWR
160 ******************************************************************************/
161#define PWR_BASE U(0x50001000)
162
163/*******************************************************************************
Yann Gautier038bff22019-01-17 19:17:47 +0100164 * STM32MP1 GPIO
165 ******************************************************************************/
166#define GPIOA_BASE U(0x50002000)
167#define GPIOB_BASE U(0x50003000)
168#define GPIOC_BASE U(0x50004000)
169#define GPIOD_BASE U(0x50005000)
170#define GPIOE_BASE U(0x50006000)
171#define GPIOF_BASE U(0x50007000)
172#define GPIOG_BASE U(0x50008000)
173#define GPIOH_BASE U(0x50009000)
174#define GPIOI_BASE U(0x5000A000)
175#define GPIOJ_BASE U(0x5000B000)
176#define GPIOK_BASE U(0x5000C000)
177#define GPIOZ_BASE U(0x54004000)
178#define GPIO_BANK_OFFSET U(0x1000)
179
180/* Bank IDs used in GPIO driver API */
181#define GPIO_BANK_A U(0)
182#define GPIO_BANK_B U(1)
183#define GPIO_BANK_C U(2)
184#define GPIO_BANK_D U(3)
185#define GPIO_BANK_E U(4)
186#define GPIO_BANK_F U(5)
187#define GPIO_BANK_G U(6)
188#define GPIO_BANK_H U(7)
189#define GPIO_BANK_I U(8)
190#define GPIO_BANK_J U(9)
191#define GPIO_BANK_K U(10)
192#define GPIO_BANK_Z U(25)
193
194#define STM32MP_GPIOZ_PIN_MAX_COUNT 8
195
196/*******************************************************************************
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200197 * STM32MP1 UART
198 ******************************************************************************/
199#define USART1_BASE U(0x5C000000)
200#define USART2_BASE U(0x4000E000)
201#define USART3_BASE U(0x4000F000)
202#define UART4_BASE U(0x40010000)
203#define UART5_BASE U(0x40011000)
204#define USART6_BASE U(0x44003000)
205#define UART7_BASE U(0x40018000)
206#define UART8_BASE U(0x40019000)
Yann Gautiera2e2a302019-02-14 11:13:39 +0100207#define STM32MP_UART_BAUDRATE U(115200)
Yann Gautier038bff22019-01-17 19:17:47 +0100208
209/* For UART crash console */
Yann Gautiera2e2a302019-02-14 11:13:39 +0100210#define STM32MP_DEBUG_USART_BASE UART4_BASE
Yann Gautier038bff22019-01-17 19:17:47 +0100211/* UART4 on HSI@64MHz, TX on GPIOG11 Alternate 6 */
Yann Gautiera2e2a302019-02-14 11:13:39 +0100212#define STM32MP_DEBUG_USART_CLK_FRQ 64000000
Yann Gautier038bff22019-01-17 19:17:47 +0100213#define DEBUG_UART_TX_GPIO_BANK_ADDRESS GPIOG_BASE
214#define DEBUG_UART_TX_GPIO_BANK_CLK_REG RCC_MP_AHB4ENSETR
215#define DEBUG_UART_TX_GPIO_BANK_CLK_EN RCC_MP_AHB4ENSETR_GPIOGEN
216#define DEBUG_UART_TX_GPIO_PORT 11
217#define DEBUG_UART_TX_GPIO_ALTERNATE 6
218#define DEBUG_UART_TX_CLKSRC_REG RCC_UART24CKSELR
219#define DEBUG_UART_TX_CLKSRC RCC_UART24CKSELR_HSI
220#define DEBUG_UART_TX_EN_REG RCC_MP_APB1ENSETR
221#define DEBUG_UART_TX_EN RCC_MP_APB1ENSETR_UART4EN
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200222
223/*******************************************************************************
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200224 * STM32MP1 TZC (TZ400)
225 ******************************************************************************/
226#define STM32MP1_TZC_BASE U(0x5C006000)
227
228#define STM32MP1_TZC_A7_ID U(0)
Yann Gautiered342322019-02-15 17:33:27 +0100229#define STM32MP1_TZC_M4_ID U(1)
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200230#define STM32MP1_TZC_LCD_ID U(3)
231#define STM32MP1_TZC_GPU_ID U(4)
232#define STM32MP1_TZC_MDMA_ID U(5)
233#define STM32MP1_TZC_DMA_ID U(6)
234#define STM32MP1_TZC_USB_HOST_ID U(7)
235#define STM32MP1_TZC_USB_OTG_ID U(8)
236#define STM32MP1_TZC_SDMMC_ID U(9)
237#define STM32MP1_TZC_ETH_ID U(10)
238#define STM32MP1_TZC_DAP_ID U(15)
239
Yann Gautierf9d40d52019-01-17 14:41:46 +0100240#define STM32MP1_FILTER_BIT_ALL U(3)
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200241
242/*******************************************************************************
243 * STM32MP1 SDMMC
244 ******************************************************************************/
Yann Gautiera2e2a302019-02-14 11:13:39 +0100245#define STM32MP_SDMMC1_BASE U(0x58005000)
246#define STM32MP_SDMMC2_BASE U(0x58007000)
247#define STM32MP_SDMMC3_BASE U(0x48004000)
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200248
Yann Gautier4baf5822019-05-09 13:25:52 +0200249#define STM32MP_MMC_INIT_FREQ U(400000) /*400 KHz*/
250#define STM32MP_SD_NORMAL_SPEED_MAX_FREQ U(25000000) /*25 MHz*/
251#define STM32MP_SD_HIGH_SPEED_MAX_FREQ U(50000000) /*50 MHz*/
252#define STM32MP_EMMC_NORMAL_SPEED_MAX_FREQ U(26000000) /*26 MHz*/
253#define STM32MP_EMMC_HIGH_SPEED_MAX_FREQ U(52000000) /*52 MHz*/
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200254
255/*******************************************************************************
Yann Gautier36a1e4b2019-01-17 14:52:47 +0100256 * STM32MP1 BSEC / OTP
257 ******************************************************************************/
258#define STM32MP1_OTP_MAX_ID 0x5FU
259#define STM32MP1_UPPER_OTP_START 0x20U
260
261#define OTP_MAX_SIZE (STM32MP1_OTP_MAX_ID + 1U)
262
263/* OTP offsets */
264#define DATA0_OTP U(0)
Yann Gautierc7374052019-06-04 18:02:37 +0200265#define PART_NUMBER_OTP U(1)
266#define PACKAGE_OTP U(16)
Yann Gautier3edc7c32019-05-20 19:17:08 +0200267#define HW2_OTP U(18)
Yann Gautier36a1e4b2019-01-17 14:52:47 +0100268
269/* OTP mask */
270/* DATA0 */
271#define DATA0_OTP_SECURED BIT(6)
272
Yann Gautierc7374052019-06-04 18:02:37 +0200273/* PART NUMBER */
274#define PART_NUMBER_OTP_PART_MASK GENMASK_32(7, 0)
275#define PART_NUMBER_OTP_PART_SHIFT 0
276
277/* PACKAGE */
278#define PACKAGE_OTP_PKG_MASK GENMASK_32(29, 27)
279#define PACKAGE_OTP_PKG_SHIFT 27
280
Yann Gautier091eab52019-06-04 18:06:34 +0200281/* IWDG OTP */
282#define HW2_OTP_IWDG_HW_POS U(3)
283#define HW2_OTP_IWDG_FZ_STOP_POS U(5)
284#define HW2_OTP_IWDG_FZ_STANDBY_POS U(7)
285
Yann Gautier3edc7c32019-05-20 19:17:08 +0200286/* HW2 OTP */
287#define HW2_OTP_PRODUCT_BELOW_2V5 BIT(13)
288
Yann Gautier36a1e4b2019-01-17 14:52:47 +0100289/*******************************************************************************
Yann Gautier41934662018-07-20 11:36:05 +0200290 * STM32MP1 TAMP
291 ******************************************************************************/
292#define TAMP_BASE U(0x5C00A000)
293#define TAMP_BKP_REGISTER_BASE (TAMP_BASE + U(0x100))
294
Julius Werner53456fc2019-07-09 13:49:11 -0700295#if !(defined(__LINKER__) || defined(__ASSEMBLER__))
Yann Gautier41934662018-07-20 11:36:05 +0200296static inline uint32_t tamp_bkpr(uint32_t idx)
297{
298 return TAMP_BKP_REGISTER_BASE + (idx << 2);
299}
300#endif
301
302/*******************************************************************************
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200303 * STM32MP1 DDRCTRL
304 ******************************************************************************/
305#define DDRCTRL_BASE U(0x5A003000)
306
307/*******************************************************************************
308 * STM32MP1 DDRPHYC
309 ******************************************************************************/
310#define DDRPHYC_BASE U(0x5A004000)
311
312/*******************************************************************************
Yann Gautier091eab52019-06-04 18:06:34 +0200313 * STM32MP1 IWDG
314 ******************************************************************************/
315#define IWDG_MAX_INSTANCE U(2)
316#define IWDG1_INST U(0)
317#define IWDG2_INST U(1)
318
319#define IWDG1_BASE U(0x5C003000)
320#define IWDG2_BASE U(0x5A002000)
321
322/*******************************************************************************
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200323 * STM32MP1 I2C4
324 ******************************************************************************/
325#define I2C4_BASE U(0x5C002000)
326
Yann Gautier4d429472019-02-14 11:15:20 +0100327/*******************************************************************************
Yann Gautier091eab52019-06-04 18:06:34 +0200328 * STM32MP1 DBGMCU
329 ******************************************************************************/
330#define DBGMCU_BASE U(0x50081000)
331
332/*******************************************************************************
Yann Gautier4d429472019-02-14 11:15:20 +0100333 * Device Tree defines
334 ******************************************************************************/
Yann Gautier35dc0772019-05-13 18:34:48 +0200335#define DT_BSEC_COMPAT "st,stm32mp15-bsec"
Yann Gautier091eab52019-06-04 18:06:34 +0200336#define DT_IWDG_COMPAT "st,stm32mp1-iwdg"
Yann Gautier3d78a2e2019-02-14 11:01:20 +0100337#define DT_PWR_COMPAT "st,stm32mp1-pwr"
Yann Gautier4d429472019-02-14 11:15:20 +0100338#define DT_RCC_CLK_COMPAT "st,stm32mp1-rcc"
Yann Gautier3edc7c32019-05-20 19:17:08 +0200339#define DT_SYSCFG_COMPAT "st,stm32mp157-syscfg"
Yann Gautier4d429472019-02-14 11:15:20 +0100340
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200341#endif /* STM32MP1_DEF_H */