stm32mp: psci: set cntfrq register of cpu on
[oweals/u-boot.git] / arch / arm / mach-stm32mp / psci.c
1 // SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
2 /*
3  * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
4  */
5
6 #include <config.h>
7 #include <common.h>
8 #include <asm/armv7.h>
9 #include <asm/gic.h>
10 #include <asm/io.h>
11 #include <asm/psci.h>
12 #include <asm/secure.h>
13
14 #define BOOT_API_A7_CORE0_MAGIC_NUMBER  0xCA7FACE0
15 #define BOOT_API_A7_CORE1_MAGIC_NUMBER  0xCA7FACE1
16
17 #define MPIDR_AFF0                      GENMASK(7, 0)
18
19 #define RCC_MP_GRSTCSETR                (STM32_RCC_BASE + 0x0404)
20 #define RCC_MP_GRSTCSETR_MPUP1RST       BIT(5)
21 #define RCC_MP_GRSTCSETR_MPUP0RST       BIT(4)
22 #define RCC_MP_GRSTCSETR_MPSYSRST       BIT(0)
23
24 #define STM32MP1_PSCI_NR_CPUS           2
25 #if STM32MP1_PSCI_NR_CPUS > CONFIG_ARMV7_PSCI_NR_CPUS
26 #error "invalid value for CONFIG_ARMV7_PSCI_NR_CPUS"
27 #endif
28
29 u8 psci_state[STM32MP1_PSCI_NR_CPUS] __secure_data = {
30          PSCI_AFFINITY_LEVEL_ON,
31          PSCI_AFFINITY_LEVEL_OFF};
32
33 static u32 __secure_data cntfrq;
34
35 static u32 __secure cp15_read_cntfrq(void)
36 {
37         u32 frq;
38
39         asm volatile("mrc p15, 0, %0, c14, c0, 0" : "=r" (frq));
40
41         return frq;
42 }
43
44 static void __secure cp15_write_cntfrq(u32 frq)
45 {
46         asm volatile ("mcr p15, 0, %0, c14, c0, 0" : : "r" (frq));
47 }
48
49 static inline void psci_set_state(int cpu, u8 state)
50 {
51         psci_state[cpu] = state;
52         dsb();
53         isb();
54 }
55
56 static u32 __secure stm32mp_get_gicd_base_address(void)
57 {
58         u32 periphbase;
59
60         /* get the GIC base address from the CBAR register */
61         asm("mrc p15, 4, %0, c15, c0, 0\n" : "=r" (periphbase));
62
63         return (periphbase & CBAR_MASK) + GIC_DIST_OFFSET;
64 }
65
66 static void __secure stm32mp_raise_sgi0(int cpu)
67 {
68         u32 gic_dist_addr;
69
70         gic_dist_addr = stm32mp_get_gicd_base_address();
71
72         /* ask cpu with SGI0 */
73         writel((BIT(cpu) << 16), gic_dist_addr + GICD_SGIR);
74 }
75
76 void __secure psci_arch_cpu_entry(void)
77 {
78         u32 cpu = psci_get_cpu_id();
79
80         psci_set_state(cpu, PSCI_AFFINITY_LEVEL_ON);
81
82         /* write the saved cntfrq */
83         cp15_write_cntfrq(cntfrq);
84
85         /* reset magic in TAMP register */
86         writel(0xFFFFFFFF, TAMP_BACKUP_MAGIC_NUMBER);
87 }
88
89 s32 __secure psci_features(u32 function_id, u32 psci_fid)
90 {
91         switch (psci_fid) {
92         case ARM_PSCI_0_2_FN_PSCI_VERSION:
93         case ARM_PSCI_0_2_FN_CPU_OFF:
94         case ARM_PSCI_0_2_FN_CPU_ON:
95         case ARM_PSCI_0_2_FN_AFFINITY_INFO:
96         case ARM_PSCI_0_2_FN_MIGRATE_INFO_TYPE:
97         case ARM_PSCI_0_2_FN_SYSTEM_OFF:
98         case ARM_PSCI_0_2_FN_SYSTEM_RESET:
99                 return 0x0;
100         }
101         return ARM_PSCI_RET_NI;
102 }
103
104 u32 __secure psci_version(void)
105 {
106         return ARM_PSCI_VER_1_0;
107 }
108
109 s32 __secure psci_affinity_info(u32 function_id, u32 target_affinity,
110                                 u32  lowest_affinity_level)
111 {
112         u32 cpu = target_affinity & MPIDR_AFF0;
113
114         if (lowest_affinity_level > 0)
115                 return ARM_PSCI_RET_INVAL;
116
117         if (target_affinity & ~MPIDR_AFF0)
118                 return ARM_PSCI_RET_INVAL;
119
120         if (cpu >= STM32MP1_PSCI_NR_CPUS)
121                 return ARM_PSCI_RET_INVAL;
122
123         return psci_state[cpu];
124 }
125
126 u32 __secure psci_migrate_info_type(void)
127 {
128         /*
129          * in Power_State_Coordination_Interface_PDD_v1_1_DEN0022D.pdf
130          * return 2 = Trusted OS is either not present or does not require
131          * migration, system of this type does not require the caller
132          * to use the MIGRATE function.
133          * MIGRATE function calls return NOT_SUPPORTED.
134          */
135         return 2;
136 }
137
138 s32 __secure psci_cpu_on(u32 function_id, u32 target_cpu, u32 pc,
139                          u32 context_id)
140 {
141         u32 cpu = target_cpu & MPIDR_AFF0;
142
143         if (target_cpu & ~MPIDR_AFF0)
144                 return ARM_PSCI_RET_INVAL;
145
146         if (cpu >= STM32MP1_PSCI_NR_CPUS)
147                 return ARM_PSCI_RET_INVAL;
148
149         if (psci_state[cpu] == PSCI_AFFINITY_LEVEL_ON)
150                 return ARM_PSCI_RET_ALREADY_ON;
151
152         /* read and save cntfrq of current cpu to write on target cpu  */
153         cntfrq = cp15_read_cntfrq();
154
155         /* reset magic in TAMP register */
156         if (readl(TAMP_BACKUP_MAGIC_NUMBER))
157                 writel(0xFFFFFFFF, TAMP_BACKUP_MAGIC_NUMBER);
158         /*
159          * ROM code need a first SGI0 after core reset
160          * core is ready when magic is set to 0 in ROM code
161          */
162         while (readl(TAMP_BACKUP_MAGIC_NUMBER))
163                 stm32mp_raise_sgi0(cpu);
164
165         /* store target PC and context id*/
166         psci_save(cpu, pc, context_id);
167
168         /* write entrypoint in backup RAM register */
169         writel((u32)&psci_cpu_entry, TAMP_BACKUP_BRANCH_ADDRESS);
170         psci_set_state(cpu, PSCI_AFFINITY_LEVEL_ON_PENDING);
171
172         /* write magic number in backup register */
173         if (cpu == 0x01)
174                 writel(BOOT_API_A7_CORE1_MAGIC_NUMBER,
175                        TAMP_BACKUP_MAGIC_NUMBER);
176         else
177                 writel(BOOT_API_A7_CORE0_MAGIC_NUMBER,
178                        TAMP_BACKUP_MAGIC_NUMBER);
179
180         /* Generate an IT to start the core */
181         stm32mp_raise_sgi0(cpu);
182
183         return ARM_PSCI_RET_SUCCESS;
184 }
185
186 s32 __secure psci_cpu_off(void)
187 {
188         u32 cpu;
189
190         cpu = psci_get_cpu_id();
191
192         psci_cpu_off_common();
193         psci_set_state(cpu, PSCI_AFFINITY_LEVEL_OFF);
194
195         /* reset core: wfi is managed by BootRom */
196         if (cpu == 0x01)
197                 writel(RCC_MP_GRSTCSETR_MPUP1RST, RCC_MP_GRSTCSETR);
198         else
199                 writel(RCC_MP_GRSTCSETR_MPUP0RST, RCC_MP_GRSTCSETR);
200
201         /* just waiting reset */
202         while (1)
203                 wfi();
204 }
205
206 void __secure psci_system_reset(void)
207 {
208         /* System reset */
209         writel(RCC_MP_GRSTCSETR_MPSYSRST, RCC_MP_GRSTCSETR);
210         /* just waiting reset */
211         while (1)
212                 wfi();
213 }
214
215 void __secure psci_system_off(void)
216 {
217         /* System Off is not managed, waiting user power off
218          * TODO: handle I2C write in PMIC Main Control register bit 0 = SWOFF
219          */
220         while (1)
221                 wfi();
222 }