blob: 3fb038d3e77b6e15d41d3a844351ea4fed494810 [file] [log] [blame]
Patrick Delaunay41c79772018-04-16 10:13:24 +02001// 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
29u8 psci_state[STM32MP1_PSCI_NR_CPUS] __secure_data = {
30 PSCI_AFFINITY_LEVEL_ON,
31 PSCI_AFFINITY_LEVEL_OFF};
32
Ludovic Barre40e70ab2020-03-02 11:27:02 +010033static u32 __secure_data cntfrq;
34
35static 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
44static void __secure cp15_write_cntfrq(u32 frq)
45{
46 asm volatile ("mcr p15, 0, %0, c14, c0, 0" : : "r" (frq));
47}
48
Patrick Delaunaye21e3ff2019-07-22 14:19:20 +020049static inline void psci_set_state(int cpu, u8 state)
Patrick Delaunay41c79772018-04-16 10:13:24 +020050{
51 psci_state[cpu] = state;
52 dsb();
53 isb();
54}
55
56static 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
Patrick Delaunaybb7288e2019-04-18 17:32:40 +020066static void __secure stm32mp_raise_sgi0(int cpu)
Patrick Delaunay41c79772018-04-16 10:13:24 +020067{
68 u32 gic_dist_addr;
69
70 gic_dist_addr = stm32mp_get_gicd_base_address();
71
Patrick Delaunaybb7288e2019-04-18 17:32:40 +020072 /* ask cpu with SGI0 */
73 writel((BIT(cpu) << 16), gic_dist_addr + GICD_SGIR);
Patrick Delaunay41c79772018-04-16 10:13:24 +020074}
75
76void __secure psci_arch_cpu_entry(void)
77{
78 u32 cpu = psci_get_cpu_id();
79
80 psci_set_state(cpu, PSCI_AFFINITY_LEVEL_ON);
Patrick Delaunaybb7288e2019-04-18 17:32:40 +020081
Ludovic Barre40e70ab2020-03-02 11:27:02 +010082 /* write the saved cntfrq */
83 cp15_write_cntfrq(cntfrq);
84
Patrick Delaunaybb7288e2019-04-18 17:32:40 +020085 /* reset magic in TAMP register */
86 writel(0xFFFFFFFF, TAMP_BACKUP_MAGIC_NUMBER);
Patrick Delaunay41c79772018-04-16 10:13:24 +020087}
88
Patrick Delaunaye21e3ff2019-07-22 14:19:20 +020089s32 __secure psci_features(u32 function_id, u32 psci_fid)
Patrick Delaunay41c79772018-04-16 10:13:24 +020090{
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
Patrick Delaunaye21e3ff2019-07-22 14:19:20 +0200104u32 __secure psci_version(void)
Patrick Delaunay41c79772018-04-16 10:13:24 +0200105{
106 return ARM_PSCI_VER_1_0;
107}
108
Patrick Delaunaye21e3ff2019-07-22 14:19:20 +0200109s32 __secure psci_affinity_info(u32 function_id, u32 target_affinity,
Patrick Delaunay41c79772018-04-16 10:13:24 +0200110 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
Patrick Delaunaye21e3ff2019-07-22 14:19:20 +0200126u32 __secure psci_migrate_info_type(void)
Patrick Delaunay41c79772018-04-16 10:13:24 +0200127{
Patrick Delaunayb496eec2019-02-27 17:01:16 +0100128 /*
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 */
Patrick Delaunay41c79772018-04-16 10:13:24 +0200135 return 2;
136}
137
Patrick Delaunaye21e3ff2019-07-22 14:19:20 +0200138s32 __secure psci_cpu_on(u32 function_id, u32 target_cpu, u32 pc,
Patrick Delaunay41c79772018-04-16 10:13:24 +0200139 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
Ludovic Barre40e70ab2020-03-02 11:27:02 +0100152 /* read and save cntfrq of current cpu to write on target cpu */
153 cntfrq = cp15_read_cntfrq();
154
Patrick Delaunaybb7288e2019-04-18 17:32:40 +0200155 /* 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
Patrick Delaunay41c79772018-04-16 10:13:24 +0200165 /* 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
Patrick Delaunaybb7288e2019-04-18 17:32:40 +0200180 /* Generate an IT to start the core */
181 stm32mp_raise_sgi0(cpu);
Patrick Delaunay41c79772018-04-16 10:13:24 +0200182
183 return ARM_PSCI_RET_SUCCESS;
184}
185
Patrick Delaunaye21e3ff2019-07-22 14:19:20 +0200186s32 __secure psci_cpu_off(void)
Patrick Delaunay41c79772018-04-16 10:13:24 +0200187{
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
Patrick Delaunaye21e3ff2019-07-22 14:19:20 +0200206void __secure psci_system_reset(void)
Patrick Delaunay41c79772018-04-16 10:13:24 +0200207{
208 /* System reset */
209 writel(RCC_MP_GRSTCSETR_MPSYSRST, RCC_MP_GRSTCSETR);
210 /* just waiting reset */
211 while (1)
212 wfi();
213}
214
Patrick Delaunaye21e3ff2019-07-22 14:19:20 +0200215void __secure psci_system_off(void)
Patrick Delaunay41c79772018-04-16 10:13:24 +0200216{
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}