blob: 67953520448572814c91b22d8d80d8afe4198790 [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
9/*
10 * Peripheral memory map
11 * only address used before device tree parsing
12 */
13#define STM32_RCC_BASE 0x50000000
14#define STM32_PWR_BASE 0x50001000
15#define STM32_DBGMCU_BASE 0x50081000
16#define STM32_TZC_BASE 0x5C006000
17#define STM32_ETZPC_BASE 0x5C007000
18#define STM32_TAMP_BASE 0x5C00A000
19
Patrick Delaunay82168e82018-05-17 14:50:46 +020020#define STM32_USART1_BASE 0x5C000000
21#define STM32_USART2_BASE 0x4000E000
22#define STM32_USART3_BASE 0x4000F000
23#define STM32_UART4_BASE 0x40010000
24#define STM32_UART5_BASE 0x40011000
25#define STM32_USART6_BASE 0x44003000
26#define STM32_UART7_BASE 0x40018000
27#define STM32_UART8_BASE 0x40019000
Patrick Delaunay82168e82018-05-17 14:50:46 +020028
Patrick Delaunay85b53972018-03-12 10:46:10 +010029#define STM32_SYSRAM_BASE 0x2FFC0000
30#define STM32_SYSRAM_SIZE SZ_256K
31
32#define STM32_DDR_BASE 0xC0000000
33#define STM32_DDR_SIZE SZ_1G
34
Patrick Delaunayc5d15652018-03-20 10:54:53 +010035#ifndef __ASSEMBLY__
Patrick Delaunay089d4352018-03-20 11:45:14 +010036/* enumerated used to identify the SYSCON driver instance */
37enum {
38 STM32MP_SYSCON_UNKNOWN,
Patrick Delaunay63ae49e2019-02-27 17:01:23 +010039 STM32MP_SYSCON_ETZPC,
Patrick Delaunayaa785312018-04-26 16:45:18 +020040 STM32MP_SYSCON_PWR,
Patrick Delaunay63ae49e2019-02-27 17:01:23 +010041 STM32MP_SYSCON_STGEN,
42 STM32MP_SYSCON_SYSCFG,
Patrick Delaunay089d4352018-03-20 11:45:14 +010043};
Patrick Delaunayc5d15652018-03-20 10:54:53 +010044
45/*
46 * enumerated for boot interface from Bootrom, used in TAMP_BOOT_CONTEXT
47 * - boot device = bit 8:4
48 * - boot instance = bit 3:0
49 */
50#define BOOT_TYPE_MASK 0xF0
51#define BOOT_TYPE_SHIFT 4
52#define BOOT_INSTANCE_MASK 0x0F
53#define BOOT_INSTANCE_SHIFT 0
54
55enum boot_device {
56 BOOT_FLASH_SD = 0x10,
57 BOOT_FLASH_SD_1 = 0x11,
58 BOOT_FLASH_SD_2 = 0x12,
59 BOOT_FLASH_SD_3 = 0x13,
60
61 BOOT_FLASH_EMMC = 0x20,
62 BOOT_FLASH_EMMC_1 = 0x21,
63 BOOT_FLASH_EMMC_2 = 0x22,
64 BOOT_FLASH_EMMC_3 = 0x23,
65
66 BOOT_FLASH_NAND = 0x30,
67 BOOT_FLASH_NAND_FMC = 0x31,
68
69 BOOT_FLASH_NOR = 0x40,
70 BOOT_FLASH_NOR_QSPI = 0x41,
71
72 BOOT_SERIAL_UART = 0x50,
73 BOOT_SERIAL_UART_1 = 0x51,
74 BOOT_SERIAL_UART_2 = 0x52,
75 BOOT_SERIAL_UART_3 = 0x53,
76 BOOT_SERIAL_UART_4 = 0x54,
77 BOOT_SERIAL_UART_5 = 0x55,
78 BOOT_SERIAL_UART_6 = 0x56,
79 BOOT_SERIAL_UART_7 = 0x57,
80 BOOT_SERIAL_UART_8 = 0x58,
81
82 BOOT_SERIAL_USB = 0x60,
83 BOOT_SERIAL_USB_OTG = 0x62,
84};
85
86/* TAMP registers */
87#define TAMP_BACKUP_REGISTER(x) (STM32_TAMP_BASE + 0x100 + 4 * x)
Patrick Delaunaye0207372018-04-16 10:13:24 +020088#define TAMP_BACKUP_MAGIC_NUMBER TAMP_BACKUP_REGISTER(4)
89#define TAMP_BACKUP_BRANCH_ADDRESS TAMP_BACKUP_REGISTER(5)
Patrick Delaunayc5d15652018-03-20 10:54:53 +010090#define TAMP_BOOT_CONTEXT TAMP_BACKUP_REGISTER(20)
Patrick Delaunay9c07f4a2019-04-18 17:32:45 +020091#define TAMP_BOOTCOUNT TAMP_BACKUP_REGISTER(21)
Patrick Delaunayc5d15652018-03-20 10:54:53 +010092
93#define TAMP_BOOT_MODE_MASK GENMASK(15, 8)
94#define TAMP_BOOT_MODE_SHIFT 8
95#define TAMP_BOOT_DEVICE_MASK GENMASK(7, 4)
96#define TAMP_BOOT_INSTANCE_MASK GENMASK(3, 0)
Patrick Delaunay008d3c32019-02-27 17:01:20 +010097#define TAMP_BOOT_FORCED_MASK GENMASK(7, 0)
98
99enum forced_boot_mode {
100 BOOT_NORMAL = 0x00,
101 BOOT_FASTBOOT = 0x01,
102 BOOT_RECOVERY = 0x02,
103 BOOT_STM32PROG = 0x03,
104 BOOT_UMS_MMC0 = 0x10,
105 BOOT_UMS_MMC1 = 0x11,
106 BOOT_UMS_MMC2 = 0x12,
107};
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100108
Patrick Delaunay14d6a242018-05-17 15:24:05 +0200109/* offset used for BSEC driver: misc_read and misc_write */
110#define STM32_BSEC_SHADOW_OFFSET 0x0
Patrick Delaunay92dc1022019-02-12 11:44:41 +0100111#define STM32_BSEC_SHADOW(id) (STM32_BSEC_SHADOW_OFFSET + (id) * 4)
Patrick Delaunay14d6a242018-05-17 15:24:05 +0200112#define STM32_BSEC_OTP_OFFSET 0x80000000
Patrick Delaunay92dc1022019-02-12 11:44:41 +0100113#define STM32_BSEC_OTP(id) (STM32_BSEC_OTP_OFFSET + (id) * 4)
114
115#define BSEC_OTP_BOARD 59
Patrick Delaunay14d6a242018-05-17 15:24:05 +0200116
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100117#endif /* __ASSEMBLY__*/
Patrick Delaunay85b53972018-03-12 10:46:10 +0100118#endif /* _MACH_STM32_H_ */