blob: c32c3f5c6a54fc8cea0a55ba5bc08675d4347ce4 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Masahiro Yamada836c55d2017-04-14 11:10:24 +09002/*
3 * Copyright (C) 2017 Masahiro Yamada <yamada.masahiro@socionext.com>
4 *
5 * Based on drivers/firmware/psci.c from Linux:
6 * Copyright (C) 2015 ARM Limited
Masahiro Yamada836c55d2017-04-14 11:10:24 +09007 */
8
Simon Glassed38aef2020-05-10 11:40:03 -06009#include <command.h>
Simon Glass11c89f32017-05-17 17:18:03 -060010#include <dm.h>
Etienne Carrierefe243802022-06-01 10:27:32 +020011#include <efi_loader.h>
Simon Glass8f3f7612019-11-14 12:57:42 -070012#include <irq_func.h>
Etienne Carriere73b4eaf2022-06-01 10:27:33 +020013#include <linker_lists.h>
Simon Glass0f2af882020-05-10 11:40:05 -060014#include <log.h>
Igor Opaniuk3696c092021-04-01 02:01:53 +030015#include <sysreset.h>
Etienne Carrierefe243802022-06-01 10:27:32 +020016#include <asm/system.h>
Etienne Carriere73b4eaf2022-06-01 10:27:33 +020017#include <dm/device-internal.h>
Etienne Carrierefe243802022-06-01 10:27:32 +020018#include <dm/lists.h>
Masahiro Yamada836c55d2017-04-14 11:10:24 +090019#include <linux/arm-smccc.h>
Etienne Carrierefe243802022-06-01 10:27:32 +020020#include <linux/delay.h>
Masahiro Yamada836c55d2017-04-14 11:10:24 +090021#include <linux/errno.h>
Etienne Carrierefe243802022-06-01 10:27:32 +020022#include <linux/libfdt.h>
Masahiro Yamada8fa57ed2017-11-29 15:04:40 +090023#include <linux/printk.h>
Masahiro Yamada836c55d2017-04-14 11:10:24 +090024#include <linux/psci.h>
25
Heinrich Schuchardt26f09d02018-10-18 12:29:40 +020026#define DRIVER_NAME "psci"
Masahiro Yamada836c55d2017-04-14 11:10:24 +090027
Heinrich Schuchardt26f09d02018-10-18 12:29:40 +020028#define PSCI_METHOD_HVC 1
29#define PSCI_METHOD_SMC 2
Masahiro Yamada836c55d2017-04-14 11:10:24 +090030
Igor Opaniuk3696c092021-04-01 02:01:53 +030031/*
32 * While a 64-bit OS can make calls with SMC32 calling conventions, for some
33 * calls it is necessary to use SMC64 to pass or return 64-bit values.
34 * For such calls PSCI_FN_NATIVE(version, name) will choose the appropriate
35 * (native-width) function ID.
36 */
37#if defined(CONFIG_ARM64)
38#define PSCI_FN_NATIVE(version, name) PSCI_##version##_FN64_##name
39#else
40#define PSCI_FN_NATIVE(version, name) PSCI_##version##_FN_##name
41#endif
42
Yann Gautier2aa7fc62020-07-17 14:20:15 +020043#if CONFIG_IS_ENABLED(EFI_LOADER)
Heinrich Schuchardt26f09d02018-10-18 12:29:40 +020044int __efi_runtime_data psci_method;
Yann Gautier2aa7fc62020-07-17 14:20:15 +020045#else
Marek BehĂșn4bebdd32021-05-20 13:23:52 +020046int psci_method __section(".data");
Yann Gautier2aa7fc62020-07-17 14:20:15 +020047#endif
Masahiro Yamada836c55d2017-04-14 11:10:24 +090048
Heinrich Schuchardt26f09d02018-10-18 12:29:40 +020049unsigned long __efi_runtime invoke_psci_fn
50 (unsigned long function_id, unsigned long arg0,
51 unsigned long arg1, unsigned long arg2)
Masahiro Yamada836c55d2017-04-14 11:10:24 +090052{
53 struct arm_smccc_res res;
54
Heinrich Schuchardt26f09d02018-10-18 12:29:40 +020055 /*
56 * In the __efi_runtime we need to avoid the switch statement. In some
57 * cases the compiler creates lookup tables to implement switch. These
58 * tables are not correctly relocated when SetVirtualAddressMap is
59 * called.
60 */
61 if (psci_method == PSCI_METHOD_SMC)
62 arm_smccc_smc(function_id, arg0, arg1, arg2, 0, 0, 0, 0, &res);
63 else if (psci_method == PSCI_METHOD_HVC)
64 arm_smccc_hvc(function_id, arg0, arg1, arg2, 0, 0, 0, 0, &res);
65 else
66 res.a0 = PSCI_RET_DISABLED;
Masahiro Yamada836c55d2017-04-14 11:10:24 +090067 return res.a0;
68}
69
Igor Opaniukecb99d02021-05-06 17:34:27 +030070static int request_psci_features(u32 psci_func_id)
Igor Opaniuk3696c092021-04-01 02:01:53 +030071{
72 return invoke_psci_fn(PSCI_1_0_FN_PSCI_FEATURES,
73 psci_func_id, 0, 0);
74}
75
76static u32 psci_0_2_get_version(void)
77{
78 return invoke_psci_fn(PSCI_0_2_FN_PSCI_VERSION, 0, 0, 0);
79}
80
81static bool psci_is_system_reset2_supported(void)
82{
83 int ret;
84 u32 ver;
85
86 ver = psci_0_2_get_version();
87
88 if (PSCI_VERSION_MAJOR(ver) >= 1) {
Igor Opaniukecb99d02021-05-06 17:34:27 +030089 ret = request_psci_features(PSCI_FN_NATIVE(1_1,
90 SYSTEM_RESET2));
Igor Opaniuk3696c092021-04-01 02:01:53 +030091
92 if (ret != PSCI_RET_NOT_SUPPORTED)
93 return true;
94 }
95
96 return false;
97}
98
Etienne Carriere73b4eaf2022-06-01 10:27:33 +020099static void smccc_invoke_hvc(unsigned long a0, unsigned long a1,
100 unsigned long a2, unsigned long a3,
101 unsigned long a4, unsigned long a5,
102 unsigned long a6, unsigned long a7,
103 struct arm_smccc_res *res)
104{
105 arm_smccc_hvc(a0, a1, a2, a3, a4, a5, a6, a7, res);
106}
107
108static void smccc_invoke_smc(unsigned long a0, unsigned long a1,
109 unsigned long a2, unsigned long a3,
110 unsigned long a4, unsigned long a5,
111 unsigned long a6, unsigned long a7,
112 struct arm_smccc_res *res)
113{
114 arm_smccc_smc(a0, a1, a2, a3, a4, a5, a6, a7, res);
115}
116
117static int bind_smccc_features(struct udevice *dev, int psci_method)
118{
119 struct psci_plat_data *pdata = dev_get_plat(dev);
120 struct arm_smccc_feature *feature;
121 size_t feature_cnt, n;
122
123 if (!IS_ENABLED(CONFIG_ARM_SMCCC_FEATURES))
124 return 0;
125
126 /*
127 * SMCCC features discovery invoke SMCCC standard function ID
128 * ARM_SMCCC_ARCH_FEATURES but this sequence requires that this
129 * standard ARM_SMCCC_ARCH_FEATURES function ID itself is supported.
130 * It is queried here with invoking PSCI_FEATURES known available
131 * from PSCI 1.0.
132 */
133 if (!device_is_compatible(dev, "arm,psci-1.0") ||
134 PSCI_VERSION_MAJOR(psci_0_2_get_version()) == 0)
135 return 0;
136
Weizhao Ouyang7f734c02024-03-04 14:42:40 +0000137 if (request_psci_features(ARM_SMCCC_VERSION) ==
Etienne Carriere73b4eaf2022-06-01 10:27:33 +0200138 PSCI_RET_NOT_SUPPORTED)
139 return 0;
140
Weizhao Ouyang7f734c02024-03-04 14:42:40 +0000141 if (invoke_psci_fn(ARM_SMCCC_VERSION, 0, 0, 0) < ARM_SMCCC_VERSION_1_1)
142 return 0;
143
Etienne Carriere73b4eaf2022-06-01 10:27:33 +0200144 if (psci_method == PSCI_METHOD_HVC)
145 pdata->invoke_fn = smccc_invoke_hvc;
146 else
147 pdata->invoke_fn = smccc_invoke_smc;
148
149 feature_cnt = ll_entry_count(struct arm_smccc_feature, arm_smccc_feature);
150 feature = ll_entry_start(struct arm_smccc_feature, arm_smccc_feature);
151
152 for (n = 0; n < feature_cnt; n++, feature++) {
153 const char *drv_name = feature->driver_name;
154 struct udevice *dev2;
155 int ret;
156
157 if (!feature->is_supported || !feature->is_supported(pdata->invoke_fn))
158 continue;
159
160 ret = device_bind_driver(dev, drv_name, drv_name, &dev2);
161 if (ret) {
162 pr_warn("%s was not bound: %d, ignore\n", drv_name, ret);
163 continue;
164 }
165
166 dev_set_parent_plat(dev2, dev_get_plat(dev));
167 }
168
169 return 0;
170}
171
Masahiro Yamada836c55d2017-04-14 11:10:24 +0900172static int psci_bind(struct udevice *dev)
173{
174 /* No SYSTEM_RESET support for PSCI 0.1 */
Simon Glass54cbcc82017-05-18 20:08:57 -0600175 if (device_is_compatible(dev, "arm,psci-0.2") ||
176 device_is_compatible(dev, "arm,psci-1.0")) {
Masahiro Yamada836c55d2017-04-14 11:10:24 +0900177 int ret;
178
179 /* bind psci-sysreset optionally */
180 ret = device_bind_driver(dev, "psci-sysreset", "psci-sysreset",
181 NULL);
182 if (ret)
Masahiro Yamada8fa57ed2017-11-29 15:04:40 +0900183 pr_debug("PSCI System Reset was not bound.\n");
Masahiro Yamada836c55d2017-04-14 11:10:24 +0900184 }
185
Etienne Carriere73b4eaf2022-06-01 10:27:33 +0200186 /* From PSCI v1.0 onward we can discover services through ARM_SMCCC_FEATURE */
187 if (IS_ENABLED(CONFIG_ARM_SMCCC_FEATURES) && device_is_compatible(dev, "arm,psci-1.0"))
188 dev_or_flags(dev, DM_FLAG_PROBE_AFTER_BIND);
189
Masahiro Yamada836c55d2017-04-14 11:10:24 +0900190 return 0;
191}
192
193static int psci_probe(struct udevice *dev)
194{
Masahiro Yamada836c55d2017-04-14 11:10:24 +0900195 const char *method;
196
Michal Simekd1803532020-08-13 12:43:22 +0200197#if defined(CONFIG_ARM64)
198 if (current_el() == 3)
199 return -EINVAL;
200#endif
201
Jon Hunter52b72c12020-06-18 12:54:38 +0100202 method = ofnode_read_string(dev_ofnode(dev), "method");
Masahiro Yamada836c55d2017-04-14 11:10:24 +0900203 if (!method) {
Masahiro Yamada8fa57ed2017-11-29 15:04:40 +0900204 pr_warn("missing \"method\" property\n");
Masahiro Yamada836c55d2017-04-14 11:10:24 +0900205 return -ENXIO;
206 }
207
208 if (!strcmp("hvc", method)) {
Heinrich Schuchardt26f09d02018-10-18 12:29:40 +0200209 psci_method = PSCI_METHOD_HVC;
Masahiro Yamada836c55d2017-04-14 11:10:24 +0900210 } else if (!strcmp("smc", method)) {
Heinrich Schuchardt26f09d02018-10-18 12:29:40 +0200211 psci_method = PSCI_METHOD_SMC;
Masahiro Yamada836c55d2017-04-14 11:10:24 +0900212 } else {
Masahiro Yamada8fa57ed2017-11-29 15:04:40 +0900213 pr_warn("invalid \"method\" property: %s\n", method);
Masahiro Yamada836c55d2017-04-14 11:10:24 +0900214 return -EINVAL;
215 }
216
Etienne Carriere73b4eaf2022-06-01 10:27:33 +0200217 return bind_smccc_features(dev, psci_method);
Masahiro Yamada836c55d2017-04-14 11:10:24 +0900218}
Heinrich Schuchardt26f09d02018-10-18 12:29:40 +0200219
220/**
221 * void do_psci_probe() - probe PSCI firmware driver
222 *
223 * Ensure that psci_method is initialized.
224 */
225static void __maybe_unused do_psci_probe(void)
226{
227 struct udevice *dev;
228
229 uclass_get_device_by_name(UCLASS_FIRMWARE, DRIVER_NAME, &dev);
230}
231
232#if IS_ENABLED(CONFIG_EFI_LOADER) && IS_ENABLED(CONFIG_PSCI_RESET)
233efi_status_t efi_reset_system_init(void)
234{
235 do_psci_probe();
236 return EFI_SUCCESS;
237}
238
239void __efi_runtime EFIAPI efi_reset_system(enum efi_reset_type reset_type,
240 efi_status_t reset_status,
241 unsigned long data_size,
242 void *reset_data)
243{
244 if (reset_type == EFI_RESET_COLD ||
245 reset_type == EFI_RESET_WARM ||
246 reset_type == EFI_RESET_PLATFORM_SPECIFIC) {
247 invoke_psci_fn(PSCI_0_2_FN_SYSTEM_RESET, 0, 0, 0);
248 } else if (reset_type == EFI_RESET_SHUTDOWN) {
249 invoke_psci_fn(PSCI_0_2_FN_SYSTEM_OFF, 0, 0, 0);
250 }
251 while (1)
252 ;
253}
254#endif /* IS_ENABLED(CONFIG_EFI_LOADER) && IS_ENABLED(CONFIG_PSCI_RESET) */
255
256#ifdef CONFIG_PSCI_RESET
257void reset_misc(void)
258{
259 do_psci_probe();
260 invoke_psci_fn(PSCI_0_2_FN_SYSTEM_RESET, 0, 0, 0);
261}
262#endif /* CONFIG_PSCI_RESET */
263
Igor Opaniuk3696c092021-04-01 02:01:53 +0300264void psci_sys_reset(u32 type)
265{
266 bool reset2_supported;
267
268 do_psci_probe();
269
270 reset2_supported = psci_is_system_reset2_supported();
271
272 if (type == SYSRESET_WARM && reset2_supported) {
273 /*
274 * reset_type[31] = 0 (architectural)
275 * reset_type[30:0] = 0 (SYSTEM_WARM_RESET)
276 * cookie = 0 (ignored by the implementation)
277 */
278 invoke_psci_fn(PSCI_FN_NATIVE(1_1, SYSTEM_RESET2), 0, 0, 0);
279 } else {
280 invoke_psci_fn(PSCI_0_2_FN_SYSTEM_RESET, 0, 0, 0);
281 }
282}
283
284void psci_sys_poweroff(void)
285{
286 do_psci_probe();
287
288 invoke_psci_fn(PSCI_0_2_FN_SYSTEM_OFF, 0, 0, 0);
289}
290
Michal Simekf92175c2021-07-13 16:53:46 +0200291#if IS_ENABLED(CONFIG_CMD_POWEROFF) && !IS_ENABLED(CONFIG_SYSRESET_CMD_POWEROFF)
Simon Glassed38aef2020-05-10 11:40:03 -0600292int do_poweroff(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Heinrich Schuchardt26f09d02018-10-18 12:29:40 +0200293{
294 do_psci_probe();
295
296 puts("poweroff ...\n");
297 udelay(50000); /* wait 50 ms */
298
299 disable_interrupts();
300 invoke_psci_fn(PSCI_0_2_FN_SYSTEM_OFF, 0, 0, 0);
301 enable_interrupts();
302
303 log_err("Power off not supported on this platform\n");
304 return CMD_RET_FAILURE;
305}
306#endif
Masahiro Yamada836c55d2017-04-14 11:10:24 +0900307
308static const struct udevice_id psci_of_match[] = {
309 { .compatible = "arm,psci" },
310 { .compatible = "arm,psci-0.2" },
311 { .compatible = "arm,psci-1.0" },
312 {},
313};
314
315U_BOOT_DRIVER(psci) = {
Heinrich Schuchardt26f09d02018-10-18 12:29:40 +0200316 .name = DRIVER_NAME,
Masahiro Yamada836c55d2017-04-14 11:10:24 +0900317 .id = UCLASS_FIRMWARE,
318 .of_match = psci_of_match,
319 .bind = psci_bind,
320 .probe = psci_probe,
Etienne Carriere73b4eaf2022-06-01 10:27:33 +0200321#ifdef CONFIG_ARM_SMCCC_FEATURES
322 .plat_auto = sizeof(struct psci_plat_data),
323#endif
Peng Fana6fb3e82023-04-06 18:23:17 +0800324 .flags = DM_FLAG_PRE_RELOC,
Masahiro Yamada836c55d2017-04-14 11:10:24 +0900325};