blob: 6eb85ba7233a2a2b9a0b42954b2c51adec66a90e [file] [log] [blame]
Tom Rini8b0c8a12018-05-06 18:27:01 -04001/* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */
Patrick Delaunay85b53972018-03-12 10:46:10 +01002/*
3 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
Patrick Delaunay85b53972018-03-12 10:46:10 +01004 */
5
6#ifndef _MACH_STM32_H_
7#define _MACH_STM32_H_
8
Tom Rini34d4a822023-11-13 09:07:23 -05009#include <linux/sizes.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060010#ifndef __ASSEMBLY__
11#include <linux/bitops.h>
Patrice Chotardd29531c2023-10-27 16:43:04 +020012
13enum boot_device {
14 BOOT_FLASH_SD = 0x10,
15 BOOT_FLASH_SD_1 = 0x11,
16 BOOT_FLASH_SD_2 = 0x12,
17 BOOT_FLASH_SD_3 = 0x13,
18
19 BOOT_FLASH_EMMC = 0x20,
20 BOOT_FLASH_EMMC_1 = 0x21,
21 BOOT_FLASH_EMMC_2 = 0x22,
22 BOOT_FLASH_EMMC_3 = 0x23,
23
24 BOOT_FLASH_NAND = 0x30,
25 BOOT_FLASH_NAND_FMC = 0x31,
26
27 BOOT_FLASH_NOR = 0x40,
28 BOOT_FLASH_NOR_QSPI = 0x41,
29
30 BOOT_SERIAL_UART = 0x50,
31 BOOT_SERIAL_UART_1 = 0x51,
32 BOOT_SERIAL_UART_2 = 0x52,
33 BOOT_SERIAL_UART_3 = 0x53,
34 BOOT_SERIAL_UART_4 = 0x54,
35 BOOT_SERIAL_UART_5 = 0x55,
36 BOOT_SERIAL_UART_6 = 0x56,
37 BOOT_SERIAL_UART_7 = 0x57,
38 BOOT_SERIAL_UART_8 = 0x58,
39
40 BOOT_SERIAL_USB = 0x60,
41 BOOT_SERIAL_USB_OTG = 0x62,
42
43 BOOT_FLASH_SPINAND = 0x70,
44 BOOT_FLASH_SPINAND_1 = 0x71,
45};
46
47#define TAMP_BOOT_MODE_MASK GENMASK(15, 8)
48#define TAMP_BOOT_MODE_SHIFT 8
Tom Riniee20d662023-11-20 09:19:50 -050049#define TAMP_BOOT_AUTH_MASK GENMASK(23, 16)
50#define TAMP_BOOT_AUTH_SHIFT 16
Patrice Chotardd29531c2023-10-27 16:43:04 +020051#define TAMP_BOOT_DEVICE_MASK GENMASK(7, 4)
52#define TAMP_BOOT_INSTANCE_MASK GENMASK(3, 0)
Tom Riniee20d662023-11-20 09:19:50 -050053#define TAMP_BOOT_AUTH_ST_MASK GENMASK(7, 4)
54#define TAMP_BOOT_PARTITION_MASK GENMASK(3, 0)
Patrice Chotardd29531c2023-10-27 16:43:04 +020055#define TAMP_BOOT_FORCED_MASK GENMASK(7, 0)
Patrice Chotardd29531c2023-10-27 16:43:04 +020056
57enum forced_boot_mode {
58 BOOT_NORMAL = 0x00,
59 BOOT_FASTBOOT = 0x01,
60 BOOT_RECOVERY = 0x02,
61 BOOT_STM32PROG = 0x03,
62 BOOT_UMS_MMC0 = 0x10,
63 BOOT_UMS_MMC1 = 0x11,
64 BOOT_UMS_MMC2 = 0x12,
65};
66
Simon Glass4dcacfc2020-05-10 11:40:13 -060067#endif
68
Patrick Delaunay85b53972018-03-12 10:46:10 +010069/*
70 * Peripheral memory map
71 * only address used before device tree parsing
72 */
Patrice Chotardd29531c2023-10-27 16:43:04 +020073
Patrick Delaunay4c6fcbc2024-01-15 15:05:57 +010074#if defined(CONFIG_STM32MP15X) || defined(CONFIG_STM32MP13X)
Patrick Delaunay85b53972018-03-12 10:46:10 +010075#define STM32_RCC_BASE 0x50000000
76#define STM32_PWR_BASE 0x50001000
Marek Vasut83ec9582022-02-25 02:15:59 +010077#define STM32_SYSCFG_BASE 0x50020000
Patrick Delaunay4c6fcbc2024-01-15 15:05:57 +010078#ifdef CONFIG_STM32MP15X
Patrick Delaunay85b53972018-03-12 10:46:10 +010079#define STM32_DBGMCU_BASE 0x50081000
Patrick Delaunay123687c2022-05-20 18:24:46 +020080#endif
Marek Vasut93865c62020-03-26 16:57:26 +010081#define STM32_FMC2_BASE 0x58002000
Marek Vasutc49678e2023-05-11 21:55:45 +020082#define STM32_IWDG2_BASE 0x5A002000
Marek Vasut83ec9582022-02-25 02:15:59 +010083#define STM32_DDRCTRL_BASE 0x5A003000
84#define STM32_DDRPHYC_BASE 0x5A004000
Marek Vasutc49678e2023-05-11 21:55:45 +020085#define STM32_IWDG1_BASE 0x5C003000
Patrick Delaunay85b53972018-03-12 10:46:10 +010086#define STM32_TZC_BASE 0x5C006000
87#define STM32_ETZPC_BASE 0x5C007000
Patrick Delaunay82b88ef2019-07-05 17:20:11 +020088#define STM32_STGEN_BASE 0x5C008000
Patrick Delaunay85b53972018-03-12 10:46:10 +010089#define STM32_TAMP_BASE 0x5C00A000
90
Patrick Delaunay4c6fcbc2024-01-15 15:05:57 +010091#ifdef CONFIG_STM32MP15X
Patrick Delaunay82168e82018-05-17 14:50:46 +020092#define STM32_USART1_BASE 0x5C000000
93#define STM32_USART2_BASE 0x4000E000
Patrick Delaunay123687c2022-05-20 18:24:46 +020094#endif
Patrick Delaunay990e0572024-01-15 15:05:56 +010095#ifdef CONFIG_STM32MP13X
Patrick Delaunay123687c2022-05-20 18:24:46 +020096#define STM32_USART1_BASE 0x4c000000
97#define STM32_USART2_BASE 0x4c001000
98#endif
Patrick Delaunay82168e82018-05-17 14:50:46 +020099#define STM32_USART3_BASE 0x4000F000
100#define STM32_UART4_BASE 0x40010000
101#define STM32_UART5_BASE 0x40011000
102#define STM32_USART6_BASE 0x44003000
103#define STM32_UART7_BASE 0x40018000
104#define STM32_UART8_BASE 0x40019000
Patrick Delaunay82168e82018-05-17 14:50:46 +0200105
Patrick Delaunay5c2f6d72021-07-06 17:19:45 +0200106#define STM32_SDMMC1_BASE 0x58005000
107#define STM32_SDMMC2_BASE 0x58007000
108#define STM32_SDMMC3_BASE 0x48004000
109
Patrick Delaunay4c6fcbc2024-01-15 15:05:57 +0100110#ifdef CONFIG_STM32MP15X
Patrick Delaunay85b53972018-03-12 10:46:10 +0100111#define STM32_SYSRAM_BASE 0x2FFC0000
112#define STM32_SYSRAM_SIZE SZ_256K
Patrick Delaunay123687c2022-05-20 18:24:46 +0200113#endif
Patrick Delaunay85b53972018-03-12 10:46:10 +0100114
115#define STM32_DDR_BASE 0xC0000000
116#define STM32_DDR_SIZE SZ_1G
117
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100118#ifndef __ASSEMBLY__
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100119/*
120 * enumerated for boot interface from Bootrom, used in TAMP_BOOT_CONTEXT
121 * - boot device = bit 8:4
122 * - boot instance = bit 3:0
123 */
124#define BOOT_TYPE_MASK 0xF0
125#define BOOT_TYPE_SHIFT 4
126#define BOOT_INSTANCE_MASK 0x0F
127#define BOOT_INSTANCE_SHIFT 0
128
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100129/* TAMP registers */
130#define TAMP_BACKUP_REGISTER(x) (STM32_TAMP_BASE + 0x100 + 4 * x)
Patrick Delaunay123687c2022-05-20 18:24:46 +0200131
Patrick Delaunay4c6fcbc2024-01-15 15:05:57 +0100132#ifdef CONFIG_STM32MP15X
Patrick Delaunaye0207372018-04-16 10:13:24 +0200133#define TAMP_BACKUP_MAGIC_NUMBER TAMP_BACKUP_REGISTER(4)
134#define TAMP_BACKUP_BRANCH_ADDRESS TAMP_BACKUP_REGISTER(5)
Sughosh Ganu73abe8e2022-10-21 18:16:00 +0530135#define TAMP_FWU_BOOT_INFO_REG TAMP_BACKUP_REGISTER(10)
Fabien Dessenned7700d12019-10-30 14:38:29 +0100136#define TAMP_COPRO_RSC_TBL_ADDRESS TAMP_BACKUP_REGISTER(17)
137#define TAMP_COPRO_STATE TAMP_BACKUP_REGISTER(18)
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100138#define TAMP_BOOT_CONTEXT TAMP_BACKUP_REGISTER(20)
Patrick Delaunay9c07f4a2019-04-18 17:32:45 +0200139#define TAMP_BOOTCOUNT TAMP_BACKUP_REGISTER(21)
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100140
Sughosh Ganu73abe8e2022-10-21 18:16:00 +0530141#define TAMP_FWU_BOOT_IDX_MASK GENMASK(3, 0)
142
143#define TAMP_FWU_BOOT_IDX_OFFSET 0
Fabien Dessenned7700d12019-10-30 14:38:29 +0100144#define TAMP_COPRO_STATE_OFF 0
145#define TAMP_COPRO_STATE_INIT 1
146#define TAMP_COPRO_STATE_CRUN 2
147#define TAMP_COPRO_STATE_CSTOP 3
148#define TAMP_COPRO_STATE_STANDBY 4
149#define TAMP_COPRO_STATE_CRASH 5
Patrick Delaunay123687c2022-05-20 18:24:46 +0200150#endif
151
Patrick Delaunay990e0572024-01-15 15:05:56 +0100152#ifdef CONFIG_STM32MP13X
Patrick Delaunay123687c2022-05-20 18:24:46 +0200153#define TAMP_BOOTCOUNT TAMP_BACKUP_REGISTER(31)
154#define TAMP_BOOT_CONTEXT TAMP_BACKUP_REGISTER(30)
155#endif
Fabien Dessenned7700d12019-10-30 14:38:29 +0100156
Patrice Chotardd29531c2023-10-27 16:43:04 +0200157#endif /* __ASSEMBLY__ */
158#endif /* CONFIG_STM32MP15X || CONFIG_STM32MP13X */
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100159
Patrice Chotardf952d702024-01-09 15:00:17 +0100160#ifdef CONFIG_STM32MP25X
Patrice Chotardd29531c2023-10-27 16:43:04 +0200161#define STM32_RCC_BASE 0x44200000
162#define STM32_TAMP_BASE 0x46010000
163
164#define STM32_DDR_BASE 0x80000000
165
166#define STM32_DDR_SIZE SZ_4G
167
168/* TAMP registers x = 0 to 127 : hardcoded description, waiting NVMEM node in DT */
169#define TAMP_BACKUP_REGISTER(x) (STM32_TAMP_BASE + 0x100 + 4 * (x))
170
171/* TAMP registers zone 3 RIF 1 (RW) at 96*/
172#define TAMP_BOOT_CONTEXT TAMP_BACKUP_REGISTER(96)
173#endif /* STM32MP25X */
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100174
Patrick Delaunay14d6a242018-05-17 15:24:05 +0200175/* offset used for BSEC driver: misc_read and misc_write */
176#define STM32_BSEC_SHADOW_OFFSET 0x0
Patrick Delaunay92dc1022019-02-12 11:44:41 +0100177#define STM32_BSEC_SHADOW(id) (STM32_BSEC_SHADOW_OFFSET + (id) * 4)
Patrick Delaunay14d6a242018-05-17 15:24:05 +0200178#define STM32_BSEC_OTP_OFFSET 0x80000000
Patrick Delaunay92dc1022019-02-12 11:44:41 +0100179#define STM32_BSEC_OTP(id) (STM32_BSEC_OTP_OFFSET + (id) * 4)
Patrick Delaunayb10cddf2020-02-12 19:37:38 +0100180#define STM32_BSEC_LOCK_OFFSET 0xC0000000
181#define STM32_BSEC_LOCK(id) (STM32_BSEC_LOCK_OFFSET + (id) * 4)
Patrick Delaunay92dc1022019-02-12 11:44:41 +0100182
Patrick Delaunayb10cddf2020-02-12 19:37:38 +0100183/* BSEC OTP index */
Patrick Delaunay4c6fcbc2024-01-15 15:05:57 +0100184#ifdef CONFIG_STM32MP15X
Patrick Delaunayb10cddf2020-02-12 19:37:38 +0100185#define BSEC_OTP_RPN 1
186#define BSEC_OTP_SERIAL 13
187#define BSEC_OTP_PKG 16
188#define BSEC_OTP_MAC 57
Patrick Delaunay92dc1022019-02-12 11:44:41 +0100189#define BSEC_OTP_BOARD 59
Patrick Delaunay123687c2022-05-20 18:24:46 +0200190#endif
Patrick Delaunay990e0572024-01-15 15:05:56 +0100191#ifdef CONFIG_STM32MP13X
Patrick Delaunay123687c2022-05-20 18:24:46 +0200192#define BSEC_OTP_RPN 1
193#define BSEC_OTP_SERIAL 13
194#define BSEC_OTP_MAC 57
195#define BSEC_OTP_BOARD 60
196#endif
Patrice Chotardd29531c2023-10-27 16:43:04 +0200197#ifdef CONFIG_STM32MP25X
198#define BSEC_OTP_SERIAL 5
199#define BSEC_OTP_RPN 9
Patrick Delaunaydb9d93c2024-01-15 15:05:47 +0100200#define BSEC_OTP_PKG 122
Patrick Delaunaya6c078c2024-01-15 15:05:53 +0100201#define BSEC_OTP_BOARD 246
Patrick Delaunaydb9d93c2024-01-15 15:05:47 +0100202#define BSEC_OTP_MAC 247
Patrice Chotardd29531c2023-10-27 16:43:04 +0200203#endif
Patrick Delaunay14d6a242018-05-17 15:24:05 +0200204
Patrice Chotardd29531c2023-10-27 16:43:04 +0200205#ifndef __ASSEMBLY__
206#include <asm/types.h>
207
208/* enumerated used to identify the SYSCON driver instance */
209enum {
210 STM32MP_SYSCON_UNKNOWN,
211 STM32MP_SYSCON_SYSCFG,
212};
213#endif /* __ASSEMBLY__*/
214
Patrick Delaunay85b53972018-03-12 10:46:10 +0100215#endif /* _MACH_STM32_H_ */