stm32mp1_def.h 9.12 KB
Newer Older
1
/*
Yann Gautier's avatar
Yann Gautier committed
2
 * Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved.
3
4
5
6
7
8
9
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef STM32MP1_DEF_H
#define STM32MP1_DEF_H

10
#include <common/tbbr/tbbr_img_def.h>
11
12
13
#include <drivers/st/stm32mp1_rcc.h>
#include <dt-bindings/clock/stm32mp1-clks.h>
#include <dt-bindings/reset/stm32mp1-resets.h>
14
15
#include <lib/utils_def.h>
#include <lib/xlat_tables/xlat_tables_defs.h>
16

17
#ifndef __ASSEMBLY__
18
19
#include <drivers/st/stm32mp1_clk.h>

20
#include <boot_api.h>
21
22
#include <stm32mp_common.h>
#include <stm32mp_dt.h>
Yann Gautier's avatar
Yann Gautier committed
23
#include <stm32mp_shres_helpers.h>
24
25
26
#include <stm32mp1_private.h>
#endif

27
28
29
30
/*******************************************************************************
 * STM32MP1 memory map related constants
 ******************************************************************************/

31
32
#define STM32MP_SYSRAM_BASE		U(0x2FFC0000)
#define STM32MP_SYSRAM_SIZE		U(0x00040000)
33
34

/* DDR configuration */
35
36
#define STM32MP_DDR_BASE		U(0xC0000000)
#define STM32MP_DDR_MAX_SIZE		U(0x40000000)	/* Max 1GB */
Yann Gautier's avatar
Yann Gautier committed
37
38
39
40
#ifdef AARCH32_SP_OPTEE
#define STM32MP_DDR_S_SIZE		U(0x01E00000)	/* 30 MB */
#define STM32MP_DDR_SHMEM_SIZE		U(0x00200000)	/* 2 MB */
#endif
41
42
43
44
45
46
47
48
49
50

/* DDR power initializations */
#ifndef __ASSEMBLY__
enum ddr_type {
	STM32MP_DDR3,
	STM32MP_LPDDR2,
};
#endif

/* Section used inside TF binaries */
51
#define STM32MP_PARAM_LOAD_SIZE		U(0x00002400)	/* 9 Ko for param */
52
/* 256 Octets reserved for header */
53
#define STM32MP_HEADER_SIZE		U(0x00000100)
54

55
56
57
#define STM32MP_BINARY_BASE		(STM32MP_SYSRAM_BASE +		\
					 STM32MP_PARAM_LOAD_SIZE +	\
					 STM32MP_HEADER_SIZE)
58

59
60
61
#define STM32MP_BINARY_SIZE		(STM32MP_SYSRAM_SIZE -		\
					 (STM32MP_PARAM_LOAD_SIZE +	\
					  STM32MP_HEADER_SIZE))
62

Yann Gautier's avatar
Yann Gautier committed
63
64
65
66
67
68
69
70
#ifdef AARCH32_SP_OPTEE
#define STM32MP_BL32_SIZE		U(0)

#define STM32MP_OPTEE_BASE		STM32MP_SYSRAM_BASE

#define STM32MP_OPTEE_SIZE		(STM32MP_DTB_BASE -  \
					 STM32MP_OPTEE_BASE)
#else
71
#if STACK_PROTECTOR_ENABLED
72
#define STM32MP_BL32_SIZE		U(0x00012000)	/* 72 Ko for BL32 */
73
#else
74
#define STM32MP_BL32_SIZE		U(0x00011000)	/* 68 Ko for BL32 */
75
#endif
Yann Gautier's avatar
Yann Gautier committed
76
#endif
77

78
79
80
#define STM32MP_BL32_BASE		(STM32MP_SYSRAM_BASE + \
					 STM32MP_SYSRAM_SIZE - \
					 STM32MP_BL32_SIZE)
81

Yann Gautier's avatar
Yann Gautier committed
82
83
84
85
86
87
88
#ifdef AARCH32_SP_OPTEE
#if STACK_PROTECTOR_ENABLED
#define STM32MP_BL2_SIZE		U(0x00019000)	/* 100 Ko for BL2 */
#else
#define STM32MP_BL2_SIZE		U(0x00017000)	/* 92 Ko for BL2 */
#endif
#else
89
#if STACK_PROTECTOR_ENABLED
90
#define STM32MP_BL2_SIZE		U(0x00015000)	/* 84 Ko for BL2 */
91
#else
92
#define STM32MP_BL2_SIZE		U(0x00013000)	/* 76 Ko for BL2 */
93
#endif
Yann Gautier's avatar
Yann Gautier committed
94
#endif
95

96
97
#define STM32MP_BL2_BASE		(STM32MP_BL32_BASE - \
					 STM32MP_BL2_SIZE)
98
99
100
101
102
103
104
105

/* BL2 and BL32/sp_min require 5 tables */
#define MAX_XLAT_TABLES			5

/*
 * MAX_MMAP_REGIONS is usually:
 * BL stm32mp1_mmap size + mmap regions in *_plat_arch_setup
 */
106
107
108
109
110
111
#if defined(IMAGE_BL2)
  #define MAX_MMAP_REGIONS		11
#endif
#if defined(IMAGE_BL32)
  #define MAX_MMAP_REGIONS		6
#endif
112
113

/* DTB initialization value */
114
#define STM32MP_DTB_SIZE		U(0x00004000)	/* 16Ko for DTB */
115

116
117
#define STM32MP_DTB_BASE		(STM32MP_BL2_BASE - \
					 STM32MP_DTB_SIZE)
118

119
#define STM32MP_BL33_BASE		(STM32MP_DDR_BASE + U(0x100000))
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139

/*******************************************************************************
 * STM32MP1 device/io map related constants (used for MMU)
 ******************************************************************************/
#define STM32MP1_DEVICE1_BASE		U(0x40000000)
#define STM32MP1_DEVICE1_SIZE		U(0x40000000)

#define STM32MP1_DEVICE2_BASE		U(0x80000000)
#define STM32MP1_DEVICE2_SIZE		U(0x40000000)

/*******************************************************************************
 * STM32MP1 RCC
 ******************************************************************************/
#define RCC_BASE			U(0x50000000)

/*******************************************************************************
 * STM32MP1 PWR
 ******************************************************************************/
#define PWR_BASE			U(0x50001000)

140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/*******************************************************************************
 * STM32MP1 GPIO
 ******************************************************************************/
#define GPIOA_BASE			U(0x50002000)
#define GPIOB_BASE			U(0x50003000)
#define GPIOC_BASE			U(0x50004000)
#define GPIOD_BASE			U(0x50005000)
#define GPIOE_BASE			U(0x50006000)
#define GPIOF_BASE			U(0x50007000)
#define GPIOG_BASE			U(0x50008000)
#define GPIOH_BASE			U(0x50009000)
#define GPIOI_BASE			U(0x5000A000)
#define GPIOJ_BASE			U(0x5000B000)
#define GPIOK_BASE			U(0x5000C000)
#define GPIOZ_BASE			U(0x54004000)
#define GPIO_BANK_OFFSET		U(0x1000)

/* Bank IDs used in GPIO driver API */
#define GPIO_BANK_A			U(0)
#define GPIO_BANK_B			U(1)
#define GPIO_BANK_C			U(2)
#define GPIO_BANK_D			U(3)
#define GPIO_BANK_E			U(4)
#define GPIO_BANK_F			U(5)
#define GPIO_BANK_G			U(6)
#define GPIO_BANK_H			U(7)
#define GPIO_BANK_I			U(8)
#define GPIO_BANK_J			U(9)
#define GPIO_BANK_K			U(10)
#define GPIO_BANK_Z			U(25)

#define STM32MP_GPIOZ_PIN_MAX_COUNT	8

173
174
175
176
177
178
179
180
181
182
183
/*******************************************************************************
 * STM32MP1 UART
 ******************************************************************************/
#define USART1_BASE			U(0x5C000000)
#define USART2_BASE			U(0x4000E000)
#define USART3_BASE			U(0x4000F000)
#define UART4_BASE			U(0x40010000)
#define UART5_BASE			U(0x40011000)
#define USART6_BASE			U(0x44003000)
#define UART7_BASE			U(0x40018000)
#define UART8_BASE			U(0x40019000)
184
#define STM32MP_UART_BAUDRATE		U(115200)
185
186

/* For UART crash console */
187
#define STM32MP_DEBUG_USART_BASE	UART4_BASE
188
/* UART4 on HSI@64MHz, TX on GPIOG11 Alternate 6 */
189
#define STM32MP_DEBUG_USART_CLK_FRQ	64000000
190
191
192
193
194
195
196
197
198
#define DEBUG_UART_TX_GPIO_BANK_ADDRESS	GPIOG_BASE
#define DEBUG_UART_TX_GPIO_BANK_CLK_REG	RCC_MP_AHB4ENSETR
#define DEBUG_UART_TX_GPIO_BANK_CLK_EN	RCC_MP_AHB4ENSETR_GPIOGEN
#define DEBUG_UART_TX_GPIO_PORT		11
#define DEBUG_UART_TX_GPIO_ALTERNATE	6
#define DEBUG_UART_TX_CLKSRC_REG	RCC_UART24CKSELR
#define DEBUG_UART_TX_CLKSRC		RCC_UART24CKSELR_HSI
#define DEBUG_UART_TX_EN_REG		RCC_MP_APB1ENSETR
#define DEBUG_UART_TX_EN		RCC_MP_APB1ENSETR_UART4EN
199
200
201
202
203
204
205

/*******************************************************************************
 * STM32MP1 TZC (TZ400)
 ******************************************************************************/
#define STM32MP1_TZC_BASE		U(0x5C006000)

#define STM32MP1_TZC_A7_ID		U(0)
206
#define STM32MP1_TZC_M4_ID		U(1)
207
208
209
210
211
212
213
214
215
216
#define STM32MP1_TZC_LCD_ID		U(3)
#define STM32MP1_TZC_GPU_ID		U(4)
#define STM32MP1_TZC_MDMA_ID		U(5)
#define STM32MP1_TZC_DMA_ID		U(6)
#define STM32MP1_TZC_USB_HOST_ID	U(7)
#define STM32MP1_TZC_USB_OTG_ID		U(8)
#define STM32MP1_TZC_SDMMC_ID		U(9)
#define STM32MP1_TZC_ETH_ID		U(10)
#define STM32MP1_TZC_DAP_ID		U(15)

Yann Gautier's avatar
Yann Gautier committed
217
#define STM32MP1_FILTER_BIT_ALL		U(3)
218
219
220
221

/*******************************************************************************
 * STM32MP1 SDMMC
 ******************************************************************************/
222
223
224
225
#define STM32MP_SDMMC1_BASE		U(0x58005000)
#define STM32MP_SDMMC2_BASE		U(0x58007000)
#define STM32MP_SDMMC3_BASE		U(0x48004000)

226
227
228
229
230
#define STM32MP_MMC_INIT_FREQ			U(400000)	/*400 KHz*/
#define STM32MP_SD_NORMAL_SPEED_MAX_FREQ	U(25000000)	/*25 MHz*/
#define STM32MP_SD_HIGH_SPEED_MAX_FREQ		U(50000000)	/*50 MHz*/
#define STM32MP_EMMC_NORMAL_SPEED_MAX_FREQ	U(26000000)	/*26 MHz*/
#define STM32MP_EMMC_HIGH_SPEED_MAX_FREQ	U(52000000)	/*52 MHz*/
231

Yann Gautier's avatar
Yann Gautier committed
232
233
234
235
236
237
238
239
240
241
/*******************************************************************************
 * STM32MP1 BSEC / OTP
 ******************************************************************************/
#define STM32MP1_OTP_MAX_ID		0x5FU
#define STM32MP1_UPPER_OTP_START	0x20U

#define OTP_MAX_SIZE			(STM32MP1_OTP_MAX_ID + 1U)

/* OTP offsets */
#define DATA0_OTP			U(0)
242
#define HW2_OTP				U(18)
Yann Gautier's avatar
Yann Gautier committed
243
244
245
246
247

/* OTP mask */
/* DATA0 */
#define DATA0_OTP_SECURED		BIT(6)

248
249
250
/* HW2 OTP */
#define HW2_OTP_PRODUCT_BELOW_2V5	BIT(13)

251
252
253
254
255
256
257
258
259
260
261
262
263
/*******************************************************************************
 * STM32MP1 TAMP
 ******************************************************************************/
#define TAMP_BASE			U(0x5C00A000)
#define TAMP_BKP_REGISTER_BASE		(TAMP_BASE + U(0x100))

#if !(defined(__LINKER__) || defined(__ASSEMBLY__))
static inline uint32_t tamp_bkpr(uint32_t idx)
{
	return TAMP_BKP_REGISTER_BASE + (idx << 2);
}
#endif

264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/*******************************************************************************
 * STM32MP1 DDRCTRL
 ******************************************************************************/
#define DDRCTRL_BASE			U(0x5A003000)

/*******************************************************************************
 * STM32MP1 DDRPHYC
 ******************************************************************************/
#define DDRPHYC_BASE			U(0x5A004000)

/*******************************************************************************
 * STM32MP1 I2C4
 ******************************************************************************/
#define I2C4_BASE			U(0x5C002000)

Yann Gautier's avatar
Yann Gautier committed
279
280
281
/*******************************************************************************
 * Device Tree defines
 ******************************************************************************/
282
#define DT_PWR_COMPAT			"st,stm32mp1-pwr"
Yann Gautier's avatar
Yann Gautier committed
283
#define DT_RCC_CLK_COMPAT		"st,stm32mp1-rcc"
284
#define DT_SYSCFG_COMPAT		"st,stm32mp157-syscfg"
Yann Gautier's avatar
Yann Gautier committed
285

286
#endif /* STM32MP1_DEF_H */