34f4d603a0f0d832f2353278f644ab9f22a19ff0
[platform/kernel/u-boot.git] / arch / arm / mach-stm32mp / cpu.c
1 /*
2  * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
3  *
4  * SPDX-License-Identifier:     GPL-2.0+        BSD-3-Clause
5  */
6 #include <common.h>
7 #include <clk.h>
8 #include <asm/io.h>
9 #include <asm/arch/stm32.h>
10
11 /* RCC register */
12 #define RCC_TZCR                (STM32_RCC_BASE + 0x00)
13 #define RCC_DBGCFGR             (STM32_RCC_BASE + 0x080C)
14 #define RCC_BDCR                (STM32_RCC_BASE + 0x0140)
15 #define RCC_MP_APB5ENSETR       (STM32_RCC_BASE + 0x0208)
16 #define RCC_BDCR_VSWRST         BIT(31)
17 #define RCC_BDCR_RTCSRC         GENMASK(17, 16)
18 #define RCC_DBGCFGR_DBGCKEN     BIT(8)
19
20 /* Security register */
21 #define ETZPC_TZMA1_SIZE        (STM32_ETZPC_BASE + 0x04)
22 #define ETZPC_DECPROT0          (STM32_ETZPC_BASE + 0x10)
23
24 #define TZC_GATE_KEEPER         (STM32_TZC_BASE + 0x008)
25 #define TZC_REGION_ATTRIBUTE0   (STM32_TZC_BASE + 0x110)
26 #define TZC_REGION_ID_ACCESS0   (STM32_TZC_BASE + 0x114)
27
28 #define TAMP_CR1                (STM32_TAMP_BASE + 0x00)
29
30 #define PWR_CR1                 (STM32_PWR_BASE + 0x00)
31 #define PWR_CR1_DBP             BIT(8)
32
33 /* DBGMCU register */
34 #define DBGMCU_APB4FZ1          (STM32_DBGMCU_BASE + 0x2C)
35 #define DBGMCU_APB4FZ1_IWDG2    BIT(2)
36
37 #if !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD)
38 static void security_init(void)
39 {
40         /* Disable the backup domain write protection */
41         /* the protection is enable at each reset by hardware */
42         /* And must be disable by software */
43         setbits_le32(PWR_CR1, PWR_CR1_DBP);
44
45         while (!(readl(PWR_CR1) & PWR_CR1_DBP))
46                 ;
47
48         /* If RTC clock isn't enable so this is a cold boot then we need
49          * to reset the backup domain
50          */
51         if (!(readl(RCC_BDCR) & RCC_BDCR_RTCSRC)) {
52                 setbits_le32(RCC_BDCR, RCC_BDCR_VSWRST);
53                 while (!(readl(RCC_BDCR) & RCC_BDCR_VSWRST))
54                         ;
55                 clrbits_le32(RCC_BDCR, RCC_BDCR_VSWRST);
56         }
57
58         /* allow non secure access in Write/Read for all peripheral */
59         writel(GENMASK(25, 0), ETZPC_DECPROT0);
60
61         /* Open SYSRAM for no secure access */
62         writel(0x0, ETZPC_TZMA1_SIZE);
63
64         /* enable TZC1 TZC2 clock */
65         writel(BIT(11) | BIT(12), RCC_MP_APB5ENSETR);
66
67         /* Region 0 set to no access by default */
68         /* bit 0 / 16 => nsaid0 read/write Enable
69          * bit 1 / 17 => nsaid1 read/write Enable
70          * ...
71          * bit 15 / 31 => nsaid15 read/write Enable
72          */
73         writel(0xFFFFFFFF, TZC_REGION_ID_ACCESS0);
74         /* bit 30 / 31 => Secure Global Enable : write/read */
75         /* bit 0 / 1 => Region Enable for filter 0/1 */
76         writel(BIT(0) | BIT(1) | BIT(30) | BIT(31), TZC_REGION_ATTRIBUTE0);
77
78         /* Enable Filter 0 and 1 */
79         setbits_le32(TZC_GATE_KEEPER, BIT(0) | BIT(1));
80
81         /* RCC trust zone deactivated */
82         writel(0x0, RCC_TZCR);
83
84         /* TAMP: deactivate the internal tamper
85          * Bit 23 ITAMP8E: monotonic counter overflow
86          * Bit 20 ITAMP5E: RTC calendar overflow
87          * Bit 19 ITAMP4E: HSE monitoring
88          * Bit 18 ITAMP3E: LSE monitoring
89          * Bit 16 ITAMP1E: RTC power domain supply monitoring
90          */
91         writel(0x0, TAMP_CR1);
92 }
93
94 /*
95  * Debug init
96  */
97 static void dbgmcu_init(void)
98 {
99         setbits_le32(RCC_DBGCFGR, RCC_DBGCFGR_DBGCKEN);
100
101         /* Freeze IWDG2 if Cortex-A7 is in debug mode */
102         setbits_le32(DBGMCU_APB4FZ1, DBGMCU_APB4FZ1_IWDG2);
103 }
104 #endif /* !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD) */
105
106 int arch_cpu_init(void)
107 {
108         /* early armv7 timer init: needed for polling */
109         timer_init();
110
111 #if !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD)
112         dbgmcu_init();
113
114         security_init();
115 #endif
116
117         return 0;
118 }
119
120 void enable_caches(void)
121 {
122         /* Enable D-cache. I-cache is already enabled in start.S */
123         dcache_enable();
124 }
125
126 #if defined(CONFIG_DISPLAY_CPUINFO)
127 int print_cpuinfo(void)
128 {
129         printf("CPU: STM32MP15x\n");
130
131         return 0;
132 }
133 #endif /* CONFIG_DISPLAY_CPUINFO */
134
135 void reset_cpu(ulong addr)
136 {
137 }