blob: 8fe8805721ac747d0576c6c56899cfb31ae02b5d [file] [log] [blame]
Mark Rutlandbff60792015-07-31 15:46:16 +01001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License version 2 as
4 * published by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * Copyright (C) 2015 ARM Limited
12 */
13
14#define pr_fmt(fmt) "psci: " fmt
15
Sudeep Hollac2a25c12016-07-19 18:52:57 +010016#include <linux/acpi.h>
Jens Wiklandere6796602016-01-04 15:46:47 +010017#include <linux/arm-smccc.h>
Lorenzo Pieralisi8b6f2492016-02-01 18:01:30 +010018#include <linux/cpuidle.h>
Mark Rutlandbff60792015-07-31 15:46:16 +010019#include <linux/errno.h>
20#include <linux/linkage.h>
21#include <linux/of.h>
22#include <linux/pm.h>
23#include <linux/printk.h>
24#include <linux/psci.h>
25#include <linux/reboot.h>
Lorenzo Pieralisi8b6f2492016-02-01 18:01:30 +010026#include <linux/slab.h>
Sudeep Hollafaf7ec42015-06-18 15:41:34 +010027#include <linux/suspend.h>
Mark Rutlandbff60792015-07-31 15:46:16 +010028
29#include <uapi/linux/psci.h>
30
Lorenzo Pieralisi8b6f2492016-02-01 18:01:30 +010031#include <asm/cpuidle.h>
Mark Rutlandbff60792015-07-31 15:46:16 +010032#include <asm/cputype.h>
33#include <asm/system_misc.h>
34#include <asm/smp_plat.h>
Sudeep Hollafaf7ec42015-06-18 15:41:34 +010035#include <asm/suspend.h>
Mark Rutlandbff60792015-07-31 15:46:16 +010036
37/*
Mark Rutland5211df02015-07-31 15:46:17 +010038 * While a 64-bit OS can make calls with SMC32 calling conventions, for some
Sudeep Holla029180b2015-06-18 15:41:33 +010039 * calls it is necessary to use SMC64 to pass or return 64-bit values.
40 * For such calls PSCI_FN_NATIVE(version, name) will choose the appropriate
41 * (native-width) function ID.
Mark Rutland5211df02015-07-31 15:46:17 +010042 */
43#ifdef CONFIG_64BIT
Sudeep Holla029180b2015-06-18 15:41:33 +010044#define PSCI_FN_NATIVE(version, name) PSCI_##version##_FN64_##name
Mark Rutland5211df02015-07-31 15:46:17 +010045#else
Sudeep Holla029180b2015-06-18 15:41:33 +010046#define PSCI_FN_NATIVE(version, name) PSCI_##version##_FN_##name
Mark Rutland5211df02015-07-31 15:46:17 +010047#endif
48
49/*
Mark Rutlandbff60792015-07-31 15:46:16 +010050 * The CPU any Trusted OS is resident on. The trusted OS may reject CPU_OFF
51 * calls to its resident CPU, so we must avoid issuing those. We never migrate
52 * a Trusted OS even if it claims to be capable of migration -- doing so will
53 * require cooperation with a Trusted OS driver.
54 */
55static int resident_cpu = -1;
56
57bool psci_tos_resident_on(int cpu)
58{
59 return cpu == resident_cpu;
60}
61
62struct psci_operations psci_ops;
63
64typedef unsigned long (psci_fn)(unsigned long, unsigned long,
65 unsigned long, unsigned long);
Mark Rutlandbff60792015-07-31 15:46:16 +010066static psci_fn *invoke_psci_fn;
67
68enum psci_function {
69 PSCI_FN_CPU_SUSPEND,
70 PSCI_FN_CPU_ON,
71 PSCI_FN_CPU_OFF,
72 PSCI_FN_MIGRATE,
73 PSCI_FN_MAX,
74};
75
76static u32 psci_function_id[PSCI_FN_MAX];
77
Lorenzo Pieralisi068654c2015-05-26 16:49:01 +010078#define PSCI_0_2_POWER_STATE_MASK \
79 (PSCI_0_2_POWER_STATE_ID_MASK | \
80 PSCI_0_2_POWER_STATE_TYPE_MASK | \
81 PSCI_0_2_POWER_STATE_AFFL_MASK)
82
Lorenzo Pieralisia5c00bb2015-05-26 17:10:32 +010083#define PSCI_1_0_EXT_POWER_STATE_MASK \
84 (PSCI_1_0_EXT_POWER_STATE_ID_MASK | \
85 PSCI_1_0_EXT_POWER_STATE_TYPE_MASK)
86
87static u32 psci_cpu_suspend_feature;
88
89static inline bool psci_has_ext_power_state(void)
90{
91 return psci_cpu_suspend_feature &
92 PSCI_1_0_FEATURES_CPU_SUSPEND_PF_MASK;
93}
94
Arnd Bergmann2b9cf182016-04-26 02:13:30 +020095static inline bool psci_power_state_loses_context(u32 state)
Lorenzo Pieralisi068654c2015-05-26 16:49:01 +010096{
Lorenzo Pieralisia5c00bb2015-05-26 17:10:32 +010097 const u32 mask = psci_has_ext_power_state() ?
98 PSCI_1_0_EXT_POWER_STATE_TYPE_MASK :
99 PSCI_0_2_POWER_STATE_TYPE_MASK;
100
101 return state & mask;
Lorenzo Pieralisi068654c2015-05-26 16:49:01 +0100102}
103
Arnd Bergmann2b9cf182016-04-26 02:13:30 +0200104static inline bool psci_power_state_is_valid(u32 state)
Lorenzo Pieralisi068654c2015-05-26 16:49:01 +0100105{
Lorenzo Pieralisia5c00bb2015-05-26 17:10:32 +0100106 const u32 valid_mask = psci_has_ext_power_state() ?
107 PSCI_1_0_EXT_POWER_STATE_MASK :
108 PSCI_0_2_POWER_STATE_MASK;
109
110 return !(state & ~valid_mask);
Lorenzo Pieralisi068654c2015-05-26 16:49:01 +0100111}
112
Jens Wiklandere6796602016-01-04 15:46:47 +0100113static unsigned long __invoke_psci_fn_hvc(unsigned long function_id,
114 unsigned long arg0, unsigned long arg1,
115 unsigned long arg2)
116{
117 struct arm_smccc_res res;
118
119 arm_smccc_hvc(function_id, arg0, arg1, arg2, 0, 0, 0, 0, &res);
120 return res.a0;
121}
122
123static unsigned long __invoke_psci_fn_smc(unsigned long function_id,
124 unsigned long arg0, unsigned long arg1,
125 unsigned long arg2)
126{
127 struct arm_smccc_res res;
128
129 arm_smccc_smc(function_id, arg0, arg1, arg2, 0, 0, 0, 0, &res);
130 return res.a0;
131}
132
Mark Rutlandbff60792015-07-31 15:46:16 +0100133static int psci_to_linux_errno(int errno)
134{
135 switch (errno) {
136 case PSCI_RET_SUCCESS:
137 return 0;
138 case PSCI_RET_NOT_SUPPORTED:
139 return -EOPNOTSUPP;
140 case PSCI_RET_INVALID_PARAMS:
Lorenzo Pieralisi2217d7c2015-05-22 14:31:37 +0100141 case PSCI_RET_INVALID_ADDRESS:
Mark Rutlandbff60792015-07-31 15:46:16 +0100142 return -EINVAL;
143 case PSCI_RET_DENIED:
144 return -EPERM;
145 };
146
147 return -EINVAL;
148}
149
150static u32 psci_get_version(void)
151{
152 return invoke_psci_fn(PSCI_0_2_FN_PSCI_VERSION, 0, 0, 0);
153}
154
155static int psci_cpu_suspend(u32 state, unsigned long entry_point)
156{
157 int err;
158 u32 fn;
159
160 fn = psci_function_id[PSCI_FN_CPU_SUSPEND];
161 err = invoke_psci_fn(fn, state, entry_point, 0);
162 return psci_to_linux_errno(err);
163}
164
165static int psci_cpu_off(u32 state)
166{
167 int err;
168 u32 fn;
169
170 fn = psci_function_id[PSCI_FN_CPU_OFF];
171 err = invoke_psci_fn(fn, state, 0, 0);
172 return psci_to_linux_errno(err);
173}
174
175static int psci_cpu_on(unsigned long cpuid, unsigned long entry_point)
176{
177 int err;
178 u32 fn;
179
180 fn = psci_function_id[PSCI_FN_CPU_ON];
181 err = invoke_psci_fn(fn, cpuid, entry_point, 0);
182 return psci_to_linux_errno(err);
183}
184
185static int psci_migrate(unsigned long cpuid)
186{
187 int err;
188 u32 fn;
189
190 fn = psci_function_id[PSCI_FN_MIGRATE];
191 err = invoke_psci_fn(fn, cpuid, 0, 0);
192 return psci_to_linux_errno(err);
193}
194
195static int psci_affinity_info(unsigned long target_affinity,
196 unsigned long lowest_affinity_level)
197{
Sudeep Holla029180b2015-06-18 15:41:33 +0100198 return invoke_psci_fn(PSCI_FN_NATIVE(0_2, AFFINITY_INFO),
Mark Rutland5211df02015-07-31 15:46:17 +0100199 target_affinity, lowest_affinity_level, 0);
Mark Rutlandbff60792015-07-31 15:46:16 +0100200}
201
202static int psci_migrate_info_type(void)
203{
204 return invoke_psci_fn(PSCI_0_2_FN_MIGRATE_INFO_TYPE, 0, 0, 0);
205}
206
207static unsigned long psci_migrate_info_up_cpu(void)
208{
Sudeep Holla029180b2015-06-18 15:41:33 +0100209 return invoke_psci_fn(PSCI_FN_NATIVE(0_2, MIGRATE_INFO_UP_CPU),
Mark Rutland5211df02015-07-31 15:46:17 +0100210 0, 0, 0);
Mark Rutlandbff60792015-07-31 15:46:16 +0100211}
212
213static int get_set_conduit_method(struct device_node *np)
214{
215 const char *method;
216
217 pr_info("probing for conduit method from DT.\n");
218
219 if (of_property_read_string(np, "method", &method)) {
220 pr_warn("missing \"method\" property\n");
221 return -ENXIO;
222 }
223
224 if (!strcmp("hvc", method)) {
225 invoke_psci_fn = __invoke_psci_fn_hvc;
226 } else if (!strcmp("smc", method)) {
227 invoke_psci_fn = __invoke_psci_fn_smc;
228 } else {
229 pr_warn("invalid \"method\" property: %s\n", method);
230 return -EINVAL;
231 }
232 return 0;
233}
234
235static void psci_sys_reset(enum reboot_mode reboot_mode, const char *cmd)
236{
237 invoke_psci_fn(PSCI_0_2_FN_SYSTEM_RESET, 0, 0, 0);
238}
239
240static void psci_sys_poweroff(void)
241{
242 invoke_psci_fn(PSCI_0_2_FN_SYSTEM_OFF, 0, 0, 0);
243}
244
Lorenzo Pieralisi5f004e02015-05-26 17:06:21 +0100245static int __init psci_features(u32 psci_func_id)
246{
247 return invoke_psci_fn(PSCI_1_0_FN_PSCI_FEATURES,
248 psci_func_id, 0, 0);
249}
250
Lorenzo Pieralisi8b6f2492016-02-01 18:01:30 +0100251#ifdef CONFIG_CPU_IDLE
252static DEFINE_PER_CPU_READ_MOSTLY(u32 *, psci_power_state);
253
254static int psci_dt_cpu_init_idle(struct device_node *cpu_node, int cpu)
255{
256 int i, ret, count = 0;
257 u32 *psci_states;
258 struct device_node *state_node;
259
Lorenzo Pieralisi8b6f2492016-02-01 18:01:30 +0100260 /* Count idle states */
261 while ((state_node = of_parse_phandle(cpu_node, "cpu-idle-states",
262 count))) {
263 count++;
264 of_node_put(state_node);
265 }
266
267 if (!count)
268 return -ENODEV;
269
270 psci_states = kcalloc(count, sizeof(*psci_states), GFP_KERNEL);
271 if (!psci_states)
272 return -ENOMEM;
273
274 for (i = 0; i < count; i++) {
275 u32 state;
276
277 state_node = of_parse_phandle(cpu_node, "cpu-idle-states", i);
278
279 ret = of_property_read_u32(state_node,
280 "arm,psci-suspend-param",
281 &state);
282 if (ret) {
283 pr_warn(" * %s missing arm,psci-suspend-param property\n",
284 state_node->full_name);
285 of_node_put(state_node);
286 goto free_mem;
287 }
288
289 of_node_put(state_node);
290 pr_debug("psci-power-state %#x index %d\n", state, i);
291 if (!psci_power_state_is_valid(state)) {
292 pr_warn("Invalid PSCI power state %#x\n", state);
293 ret = -EINVAL;
294 goto free_mem;
295 }
296 psci_states[i] = state;
297 }
298 /* Idle states parsed correctly, initialize per-cpu pointer */
299 per_cpu(psci_power_state, cpu) = psci_states;
300 return 0;
301
302free_mem:
303 kfree(psci_states);
304 return ret;
305}
306
Sudeep Hollac2a25c12016-07-19 18:52:57 +0100307#ifdef CONFIG_ACPI
308#include <acpi/processor.h>
309
310static int __maybe_unused psci_acpi_cpu_init_idle(unsigned int cpu)
311{
312 int i, count;
313 u32 *psci_states;
314 struct acpi_lpi_state *lpi;
315 struct acpi_processor *pr = per_cpu(processors, cpu);
316
317 if (unlikely(!pr || !pr->flags.has_lpi))
318 return -EINVAL;
319
320 count = pr->power.count - 1;
321 if (count <= 0)
322 return -ENODEV;
323
324 psci_states = kcalloc(count, sizeof(*psci_states), GFP_KERNEL);
325 if (!psci_states)
326 return -ENOMEM;
327
328 for (i = 0; i < count; i++) {
329 u32 state;
330
331 lpi = &pr->power.lpi_states[i + 1];
332 /*
333 * Only bits[31:0] represent a PSCI power_state while
334 * bits[63:32] must be 0x0 as per ARM ACPI FFH Specification
335 */
336 state = lpi->address;
337 if (!psci_power_state_is_valid(state)) {
338 pr_warn("Invalid PSCI power state %#x\n", state);
339 kfree(psci_states);
340 return -EINVAL;
341 }
342 psci_states[i] = state;
343 }
344 /* Idle states parsed correctly, initialize per-cpu pointer */
345 per_cpu(psci_power_state, cpu) = psci_states;
346 return 0;
347}
348#else
349static int __maybe_unused psci_acpi_cpu_init_idle(unsigned int cpu)
350{
351 return -EINVAL;
352}
353#endif
354
Lorenzo Pieralisi8b6f2492016-02-01 18:01:30 +0100355int psci_cpu_init_idle(unsigned int cpu)
356{
357 struct device_node *cpu_node;
358 int ret;
359
Sudeep Hollac2a25c12016-07-19 18:52:57 +0100360 /*
361 * If the PSCI cpu_suspend function hook has not been initialized
362 * idle states must not be enabled, so bail out
363 */
364 if (!psci_ops.cpu_suspend)
365 return -EOPNOTSUPP;
366
367 if (!acpi_disabled)
368 return psci_acpi_cpu_init_idle(cpu);
369
Lorenzo Pieralisi8b6f2492016-02-01 18:01:30 +0100370 cpu_node = of_get_cpu_node(cpu, NULL);
371 if (!cpu_node)
372 return -ENODEV;
373
374 ret = psci_dt_cpu_init_idle(cpu_node, cpu);
375
376 of_node_put(cpu_node);
377
378 return ret;
379}
380
Mahesh Sivasubramanian851db022015-04-23 16:20:05 -0600381static int psci_suspend_finisher(unsigned long state_id)
Lorenzo Pieralisi8b6f2492016-02-01 18:01:30 +0100382{
Mahesh Sivasubramanian851db022015-04-23 16:20:05 -0600383 return psci_ops.cpu_suspend(state_id,
Lorenzo Pieralisi8b6f2492016-02-01 18:01:30 +0100384 virt_to_phys(cpu_resume));
385}
Mahesh Sivasubramanian851db022015-04-23 16:20:05 -0600386int psci_cpu_suspend_enter(unsigned long state_id)
Lorenzo Pieralisi8b6f2492016-02-01 18:01:30 +0100387{
388 int ret;
Mahesh Sivasubramanian851db022015-04-23 16:20:05 -0600389
Lorenzo Pieralisi8b6f2492016-02-01 18:01:30 +0100390 /*
391 * idle state index 0 corresponds to wfi, should never be called
392 * from the cpu_suspend operations
393 */
Mahesh Sivasubramanian851db022015-04-23 16:20:05 -0600394 if (WARN_ON_ONCE(!state_id))
Lorenzo Pieralisi8b6f2492016-02-01 18:01:30 +0100395 return -EINVAL;
396
Mahesh Sivasubramanian851db022015-04-23 16:20:05 -0600397 if (!psci_power_state_loses_context(state_id))
398 ret = psci_ops.cpu_suspend(state_id, 0);
Lorenzo Pieralisi8b6f2492016-02-01 18:01:30 +0100399 else
Mahesh Sivasubramanian851db022015-04-23 16:20:05 -0600400 ret = cpu_suspend(state_id, psci_suspend_finisher);
Lorenzo Pieralisi8b6f2492016-02-01 18:01:30 +0100401
402 return ret;
403}
404
405/* ARM specific CPU idle operations */
406#ifdef CONFIG_ARM
Jisheng Zhang5e7c17d2016-03-22 22:42:43 +0800407static const struct cpuidle_ops psci_cpuidle_ops __initconst = {
Lorenzo Pieralisi8b6f2492016-02-01 18:01:30 +0100408 .suspend = psci_cpu_suspend_enter,
409 .init = psci_dt_cpu_init_idle,
410};
411
Sudeep Holla978fa432016-04-22 16:18:02 +0100412CPUIDLE_METHOD_OF_DECLARE(psci, "psci", &psci_cpuidle_ops);
Lorenzo Pieralisi8b6f2492016-02-01 18:01:30 +0100413#endif
414#endif
415
Sudeep Hollafaf7ec42015-06-18 15:41:34 +0100416static int psci_system_suspend(unsigned long unused)
417{
418 return invoke_psci_fn(PSCI_FN_NATIVE(1_0, SYSTEM_SUSPEND),
419 virt_to_phys(cpu_resume), 0, 0);
420}
421
422static int psci_system_suspend_enter(suspend_state_t state)
423{
424 return cpu_suspend(0, psci_system_suspend);
425}
426
427static const struct platform_suspend_ops psci_suspend_ops = {
428 .valid = suspend_valid_only_mem,
429 .enter = psci_system_suspend_enter,
430};
431
432static void __init psci_init_system_suspend(void)
433{
434 int ret;
435
436 if (!IS_ENABLED(CONFIG_SUSPEND))
437 return;
438
439 ret = psci_features(PSCI_FN_NATIVE(1_0, SYSTEM_SUSPEND));
440
441 if (ret != PSCI_RET_NOT_SUPPORTED)
442 suspend_set_ops(&psci_suspend_ops);
443}
444
Lorenzo Pieralisia5c00bb2015-05-26 17:10:32 +0100445static void __init psci_init_cpu_suspend(void)
446{
447 int feature = psci_features(psci_function_id[PSCI_FN_CPU_SUSPEND]);
448
449 if (feature != PSCI_RET_NOT_SUPPORTED)
450 psci_cpu_suspend_feature = feature;
451}
452
Mark Rutlandbff60792015-07-31 15:46:16 +0100453/*
454 * Detect the presence of a resident Trusted OS which may cause CPU_OFF to
455 * return DENIED (which would be fatal).
456 */
457static void __init psci_init_migrate(void)
458{
459 unsigned long cpuid;
460 int type, cpu = -1;
461
462 type = psci_ops.migrate_info_type();
463
464 if (type == PSCI_0_2_TOS_MP) {
465 pr_info("Trusted OS migration not required\n");
466 return;
467 }
468
469 if (type == PSCI_RET_NOT_SUPPORTED) {
470 pr_info("MIGRATE_INFO_TYPE not supported.\n");
471 return;
472 }
473
474 if (type != PSCI_0_2_TOS_UP_MIGRATE &&
475 type != PSCI_0_2_TOS_UP_NO_MIGRATE) {
476 pr_err("MIGRATE_INFO_TYPE returned unknown type (%d)\n", type);
477 return;
478 }
479
480 cpuid = psci_migrate_info_up_cpu();
481 if (cpuid & ~MPIDR_HWID_BITMASK) {
482 pr_warn("MIGRATE_INFO_UP_CPU reported invalid physical ID (0x%lx)\n",
483 cpuid);
484 return;
485 }
486
487 cpu = get_logical_index(cpuid);
488 resident_cpu = cpu >= 0 ? cpu : -1;
489
490 pr_info("Trusted OS resident on physical CPU 0x%lx\n", cpuid);
491}
492
493static void __init psci_0_2_set_functions(void)
494{
495 pr_info("Using standard PSCI v0.2 function IDs\n");
Sudeep Holla029180b2015-06-18 15:41:33 +0100496 psci_function_id[PSCI_FN_CPU_SUSPEND] =
497 PSCI_FN_NATIVE(0_2, CPU_SUSPEND);
Mark Rutlandbff60792015-07-31 15:46:16 +0100498 psci_ops.cpu_suspend = psci_cpu_suspend;
499
500 psci_function_id[PSCI_FN_CPU_OFF] = PSCI_0_2_FN_CPU_OFF;
501 psci_ops.cpu_off = psci_cpu_off;
502
Sudeep Holla029180b2015-06-18 15:41:33 +0100503 psci_function_id[PSCI_FN_CPU_ON] = PSCI_FN_NATIVE(0_2, CPU_ON);
Mark Rutlandbff60792015-07-31 15:46:16 +0100504 psci_ops.cpu_on = psci_cpu_on;
505
Sudeep Holla029180b2015-06-18 15:41:33 +0100506 psci_function_id[PSCI_FN_MIGRATE] = PSCI_FN_NATIVE(0_2, MIGRATE);
Mark Rutlandbff60792015-07-31 15:46:16 +0100507 psci_ops.migrate = psci_migrate;
508
509 psci_ops.affinity_info = psci_affinity_info;
510
511 psci_ops.migrate_info_type = psci_migrate_info_type;
512
513 arm_pm_restart = psci_sys_reset;
514
515 pm_power_off = psci_sys_poweroff;
516}
517
518/*
519 * Probe function for PSCI firmware versions >= 0.2
520 */
521static int __init psci_probe(void)
522{
523 u32 ver = psci_get_version();
524
525 pr_info("PSCIv%d.%d detected in firmware.\n",
526 PSCI_VERSION_MAJOR(ver),
527 PSCI_VERSION_MINOR(ver));
528
529 if (PSCI_VERSION_MAJOR(ver) == 0 && PSCI_VERSION_MINOR(ver) < 2) {
530 pr_err("Conflicting PSCI version detected.\n");
531 return -EINVAL;
532 }
533
534 psci_0_2_set_functions();
535
536 psci_init_migrate();
537
Lorenzo Pieralisi79b04be2015-10-23 15:46:50 +0100538 if (PSCI_VERSION_MAJOR(ver) >= 1) {
539 psci_init_cpu_suspend();
540 psci_init_system_suspend();
541 }
Sudeep Hollafaf7ec42015-06-18 15:41:34 +0100542
Mark Rutlandbff60792015-07-31 15:46:16 +0100543 return 0;
544}
545
546typedef int (*psci_initcall_t)(const struct device_node *);
547
548/*
549 * PSCI init function for PSCI versions >=0.2
550 *
551 * Probe based on PSCI PSCI_VERSION function
552 */
553static int __init psci_0_2_init(struct device_node *np)
554{
555 int err;
556
557 err = get_set_conduit_method(np);
558
559 if (err)
560 goto out_put_node;
561 /*
562 * Starting with v0.2, the PSCI specification introduced a call
563 * (PSCI_VERSION) that allows probing the firmware version, so
564 * that PSCI function IDs and version specific initialization
565 * can be carried out according to the specific version reported
566 * by firmware
567 */
568 err = psci_probe();
569
570out_put_node:
571 of_node_put(np);
572 return err;
573}
574
575/*
576 * PSCI < v0.2 get PSCI Function IDs via DT.
577 */
578static int __init psci_0_1_init(struct device_node *np)
579{
580 u32 id;
581 int err;
582
583 err = get_set_conduit_method(np);
584
585 if (err)
586 goto out_put_node;
587
588 pr_info("Using PSCI v0.1 Function IDs from DT\n");
589
590 if (!of_property_read_u32(np, "cpu_suspend", &id)) {
591 psci_function_id[PSCI_FN_CPU_SUSPEND] = id;
592 psci_ops.cpu_suspend = psci_cpu_suspend;
593 }
594
595 if (!of_property_read_u32(np, "cpu_off", &id)) {
596 psci_function_id[PSCI_FN_CPU_OFF] = id;
597 psci_ops.cpu_off = psci_cpu_off;
598 }
599
600 if (!of_property_read_u32(np, "cpu_on", &id)) {
601 psci_function_id[PSCI_FN_CPU_ON] = id;
602 psci_ops.cpu_on = psci_cpu_on;
603 }
604
605 if (!of_property_read_u32(np, "migrate", &id)) {
606 psci_function_id[PSCI_FN_MIGRATE] = id;
607 psci_ops.migrate = psci_migrate;
608 }
609
610out_put_node:
611 of_node_put(np);
612 return err;
613}
614
Jisheng Zhang1d2d8de2016-04-20 11:20:27 +0100615static const struct of_device_id psci_of_match[] __initconst = {
Mark Rutlandbff60792015-07-31 15:46:16 +0100616 { .compatible = "arm,psci", .data = psci_0_1_init},
617 { .compatible = "arm,psci-0.2", .data = psci_0_2_init},
Lorenzo Pieralisi0fc197c2015-05-26 13:06:57 +0100618 { .compatible = "arm,psci-1.0", .data = psci_0_2_init},
Mark Rutlandbff60792015-07-31 15:46:16 +0100619 {},
620};
621
622int __init psci_dt_init(void)
623{
624 struct device_node *np;
625 const struct of_device_id *matched_np;
626 psci_initcall_t init_fn;
627
628 np = of_find_matching_node_and_match(NULL, psci_of_match, &matched_np);
629
630 if (!np)
631 return -ENODEV;
632
633 init_fn = (psci_initcall_t)matched_np->data;
634 return init_fn(np);
635}
636
637#ifdef CONFIG_ACPI
638/*
639 * We use PSCI 0.2+ when ACPI is deployed on ARM64 and it's
640 * explicitly clarified in SBBR
641 */
642int __init psci_acpi_init(void)
643{
644 if (!acpi_psci_present()) {
645 pr_info("is not implemented in ACPI.\n");
646 return -EOPNOTSUPP;
647 }
648
649 pr_info("probing for conduit method from ACPI.\n");
650
651 if (acpi_psci_use_hvc())
652 invoke_psci_fn = __invoke_psci_fn_hvc;
653 else
654 invoke_psci_fn = __invoke_psci_fn_smc;
655
656 return psci_probe();
657}
658#endif