1 // SPDX-License-Identifier: GPL-2.0-only
4 * Copyright (C) 2015 ARM Limited
7 #define pr_fmt(fmt) "psci: " fmt
9 #include <linux/acpi.h>
10 #include <linux/arm-smccc.h>
11 #include <linux/cpuidle.h>
12 #include <linux/debugfs.h>
13 #include <linux/errno.h>
14 #include <linux/linkage.h>
17 #include <linux/printk.h>
18 #include <linux/psci.h>
19 #include <linux/reboot.h>
20 #include <linux/slab.h>
21 #include <linux/suspend.h>
23 #include <uapi/linux/psci.h>
25 #include <asm/cpuidle.h>
26 #include <asm/cputype.h>
27 #include <asm/hypervisor.h>
28 #include <asm/system_misc.h>
29 #include <asm/smp_plat.h>
30 #include <asm/suspend.h>
33 * While a 64-bit OS can make calls with SMC32 calling conventions, for some
34 * calls it is necessary to use SMC64 to pass or return 64-bit values.
35 * For such calls PSCI_FN_NATIVE(version, name) will choose the appropriate
36 * (native-width) function ID.
39 #define PSCI_FN_NATIVE(version, name) PSCI_##version##_FN64_##name
41 #define PSCI_FN_NATIVE(version, name) PSCI_##version##_FN_##name
45 * The CPU any Trusted OS is resident on. The trusted OS may reject CPU_OFF
46 * calls to its resident CPU, so we must avoid issuing those. We never migrate
47 * a Trusted OS even if it claims to be capable of migration -- doing so will
48 * require cooperation with a Trusted OS driver.
50 static int resident_cpu
= -1;
51 struct psci_operations psci_ops
;
52 static enum arm_smccc_conduit psci_conduit
= SMCCC_CONDUIT_NONE
;
54 bool psci_tos_resident_on(int cpu
)
56 return cpu
== resident_cpu
;
59 typedef unsigned long (psci_fn
)(unsigned long, unsigned long,
60 unsigned long, unsigned long);
61 static psci_fn
*invoke_psci_fn
;
63 static struct psci_0_1_function_ids psci_0_1_function_ids
;
65 struct psci_0_1_function_ids
get_psci_0_1_function_ids(void)
67 return psci_0_1_function_ids
;
70 #define PSCI_0_2_POWER_STATE_MASK \
71 (PSCI_0_2_POWER_STATE_ID_MASK | \
72 PSCI_0_2_POWER_STATE_TYPE_MASK | \
73 PSCI_0_2_POWER_STATE_AFFL_MASK)
75 #define PSCI_1_0_EXT_POWER_STATE_MASK \
76 (PSCI_1_0_EXT_POWER_STATE_ID_MASK | \
77 PSCI_1_0_EXT_POWER_STATE_TYPE_MASK)
79 static u32 psci_cpu_suspend_feature
;
80 static bool psci_system_reset2_supported
;
81 static bool psci_system_off2_hibernate_supported
;
83 static inline bool psci_has_ext_power_state(void)
85 return psci_cpu_suspend_feature
&
86 PSCI_1_0_FEATURES_CPU_SUSPEND_PF_MASK
;
89 bool psci_has_osi_support(void)
91 return psci_cpu_suspend_feature
& PSCI_1_0_OS_INITIATED
;
94 static inline bool psci_power_state_loses_context(u32 state
)
96 const u32 mask
= psci_has_ext_power_state() ?
97 PSCI_1_0_EXT_POWER_STATE_TYPE_MASK
:
98 PSCI_0_2_POWER_STATE_TYPE_MASK
;
103 bool psci_power_state_is_valid(u32 state
)
105 const u32 valid_mask
= psci_has_ext_power_state() ?
106 PSCI_1_0_EXT_POWER_STATE_MASK
:
107 PSCI_0_2_POWER_STATE_MASK
;
109 return !(state
& ~valid_mask
);
112 static __always_inline
unsigned long
113 __invoke_psci_fn_hvc(unsigned long function_id
,
114 unsigned long arg0
, unsigned long arg1
,
117 struct arm_smccc_res res
;
119 arm_smccc_hvc(function_id
, arg0
, arg1
, arg2
, 0, 0, 0, 0, &res
);
123 static __always_inline
unsigned long
124 __invoke_psci_fn_smc(unsigned long function_id
,
125 unsigned long arg0
, unsigned long arg1
,
128 struct arm_smccc_res res
;
130 arm_smccc_smc(function_id
, arg0
, arg1
, arg2
, 0, 0, 0, 0, &res
);
134 static __always_inline
int psci_to_linux_errno(int errno
)
137 case PSCI_RET_SUCCESS
:
139 case PSCI_RET_NOT_SUPPORTED
:
141 case PSCI_RET_INVALID_PARAMS
:
142 case PSCI_RET_INVALID_ADDRESS
:
144 case PSCI_RET_DENIED
:
151 static u32
psci_0_1_get_version(void)
153 return PSCI_VERSION(0, 1);
156 static u32
psci_0_2_get_version(void)
158 return invoke_psci_fn(PSCI_0_2_FN_PSCI_VERSION
, 0, 0, 0);
161 int psci_set_osi_mode(bool enable
)
163 unsigned long suspend_mode
;
166 suspend_mode
= enable
? PSCI_1_0_SUSPEND_MODE_OSI
:
167 PSCI_1_0_SUSPEND_MODE_PC
;
169 err
= invoke_psci_fn(PSCI_1_0_FN_SET_SUSPEND_MODE
, suspend_mode
, 0, 0);
171 pr_info(FW_BUG
"failed to set %s mode: %d\n",
172 enable
? "OSI" : "PC", err
);
173 return psci_to_linux_errno(err
);
176 static __always_inline
int
177 __psci_cpu_suspend(u32 fn
, u32 state
, unsigned long entry_point
)
181 err
= invoke_psci_fn(fn
, state
, entry_point
, 0);
182 return psci_to_linux_errno(err
);
185 static __always_inline
int
186 psci_0_1_cpu_suspend(u32 state
, unsigned long entry_point
)
188 return __psci_cpu_suspend(psci_0_1_function_ids
.cpu_suspend
,
192 static __always_inline
int
193 psci_0_2_cpu_suspend(u32 state
, unsigned long entry_point
)
195 return __psci_cpu_suspend(PSCI_FN_NATIVE(0_2
, CPU_SUSPEND
),
199 static int __psci_cpu_off(u32 fn
, u32 state
)
203 err
= invoke_psci_fn(fn
, state
, 0, 0);
204 return psci_to_linux_errno(err
);
207 static int psci_0_1_cpu_off(u32 state
)
209 return __psci_cpu_off(psci_0_1_function_ids
.cpu_off
, state
);
212 static int psci_0_2_cpu_off(u32 state
)
214 return __psci_cpu_off(PSCI_0_2_FN_CPU_OFF
, state
);
217 static int __psci_cpu_on(u32 fn
, unsigned long cpuid
, unsigned long entry_point
)
221 err
= invoke_psci_fn(fn
, cpuid
, entry_point
, 0);
222 return psci_to_linux_errno(err
);
225 static int psci_0_1_cpu_on(unsigned long cpuid
, unsigned long entry_point
)
227 return __psci_cpu_on(psci_0_1_function_ids
.cpu_on
, cpuid
, entry_point
);
230 static int psci_0_2_cpu_on(unsigned long cpuid
, unsigned long entry_point
)
232 return __psci_cpu_on(PSCI_FN_NATIVE(0_2
, CPU_ON
), cpuid
, entry_point
);
235 static int __psci_migrate(u32 fn
, unsigned long cpuid
)
239 err
= invoke_psci_fn(fn
, cpuid
, 0, 0);
240 return psci_to_linux_errno(err
);
243 static int psci_0_1_migrate(unsigned long cpuid
)
245 return __psci_migrate(psci_0_1_function_ids
.migrate
, cpuid
);
248 static int psci_0_2_migrate(unsigned long cpuid
)
250 return __psci_migrate(PSCI_FN_NATIVE(0_2
, MIGRATE
), cpuid
);
253 static int psci_affinity_info(unsigned long target_affinity
,
254 unsigned long lowest_affinity_level
)
256 return invoke_psci_fn(PSCI_FN_NATIVE(0_2
, AFFINITY_INFO
),
257 target_affinity
, lowest_affinity_level
, 0);
260 static int psci_migrate_info_type(void)
262 return invoke_psci_fn(PSCI_0_2_FN_MIGRATE_INFO_TYPE
, 0, 0, 0);
265 static unsigned long psci_migrate_info_up_cpu(void)
267 return invoke_psci_fn(PSCI_FN_NATIVE(0_2
, MIGRATE_INFO_UP_CPU
),
271 static void set_conduit(enum arm_smccc_conduit conduit
)
274 case SMCCC_CONDUIT_HVC
:
275 invoke_psci_fn
= __invoke_psci_fn_hvc
;
277 case SMCCC_CONDUIT_SMC
:
278 invoke_psci_fn
= __invoke_psci_fn_smc
;
281 WARN(1, "Unexpected PSCI conduit %d\n", conduit
);
284 psci_conduit
= conduit
;
287 static int get_set_conduit_method(const struct device_node
*np
)
291 pr_info("probing for conduit method from DT.\n");
293 if (of_property_read_string(np
, "method", &method
)) {
294 pr_warn("missing \"method\" property\n");
298 if (!strcmp("hvc", method
)) {
299 set_conduit(SMCCC_CONDUIT_HVC
);
300 } else if (!strcmp("smc", method
)) {
301 set_conduit(SMCCC_CONDUIT_SMC
);
303 pr_warn("invalid \"method\" property: %s\n", method
);
309 static int psci_sys_reset(struct notifier_block
*nb
, unsigned long action
,
312 if ((reboot_mode
== REBOOT_WARM
|| reboot_mode
== REBOOT_SOFT
) &&
313 psci_system_reset2_supported
) {
315 * reset_type[31] = 0 (architectural)
316 * reset_type[30:0] = 0 (SYSTEM_WARM_RESET)
317 * cookie = 0 (ignored by the implementation)
319 invoke_psci_fn(PSCI_FN_NATIVE(1_1
, SYSTEM_RESET2
), 0, 0, 0);
321 invoke_psci_fn(PSCI_0_2_FN_SYSTEM_RESET
, 0, 0, 0);
327 static struct notifier_block psci_sys_reset_nb
= {
328 .notifier_call
= psci_sys_reset
,
332 static void psci_sys_poweroff(void)
334 invoke_psci_fn(PSCI_0_2_FN_SYSTEM_OFF
, 0, 0, 0);
337 #ifdef CONFIG_HIBERNATION
338 static int psci_sys_hibernate(struct sys_off_data
*data
)
341 * If no hibernate type is specified SYSTEM_OFF2 defaults to selecting
344 * There are hypervisors in the wild that do not align with the spec and
345 * reject calls that explicitly provide a hibernate type. For
346 * compatibility with these nonstandard implementations, pass 0 as the
349 if (system_entering_hibernation())
350 invoke_psci_fn(PSCI_FN_NATIVE(1_3
, SYSTEM_OFF2
), 0, 0, 0);
354 static int __init
psci_hibernate_init(void)
356 if (psci_system_off2_hibernate_supported
) {
357 /* Higher priority than EFI shutdown, but only for hibernate */
358 register_sys_off_handler(SYS_OFF_MODE_POWER_OFF
,
359 SYS_OFF_PRIO_FIRMWARE
+ 2,
360 psci_sys_hibernate
, NULL
);
364 subsys_initcall(psci_hibernate_init
);
367 static int psci_features(u32 psci_func_id
)
369 return invoke_psci_fn(PSCI_1_0_FN_PSCI_FEATURES
,
373 #ifdef CONFIG_DEBUG_FS
375 #define PSCI_ID(ver, _name) \
376 { .fn = PSCI_##ver##_FN_##_name, .name = #_name, }
377 #define PSCI_ID_NATIVE(ver, _name) \
378 { .fn = PSCI_FN_NATIVE(ver, _name), .name = #_name, }
380 /* A table of all optional functions */
381 static const struct {
385 PSCI_ID_NATIVE(0_2
, MIGRATE
),
386 PSCI_ID(0_2
, MIGRATE_INFO_TYPE
),
387 PSCI_ID_NATIVE(0_2
, MIGRATE_INFO_UP_CPU
),
388 PSCI_ID(1_0
, CPU_FREEZE
),
389 PSCI_ID_NATIVE(1_0
, CPU_DEFAULT_SUSPEND
),
390 PSCI_ID_NATIVE(1_0
, NODE_HW_STATE
),
391 PSCI_ID_NATIVE(1_0
, SYSTEM_SUSPEND
),
392 PSCI_ID(1_0
, SET_SUSPEND_MODE
),
393 PSCI_ID_NATIVE(1_0
, STAT_RESIDENCY
),
394 PSCI_ID_NATIVE(1_0
, STAT_COUNT
),
395 PSCI_ID_NATIVE(1_1
, SYSTEM_RESET2
),
396 PSCI_ID(1_1
, MEM_PROTECT
),
397 PSCI_ID_NATIVE(1_1
, MEM_PROTECT_CHECK_RANGE
),
398 PSCI_ID_NATIVE(1_3
, SYSTEM_OFF2
),
401 static int psci_debugfs_read(struct seq_file
*s
, void *data
)
403 int feature
, type
, i
;
406 ver
= psci_ops
.get_version();
407 seq_printf(s
, "PSCIv%d.%d\n",
408 PSCI_VERSION_MAJOR(ver
),
409 PSCI_VERSION_MINOR(ver
));
411 /* PSCI_FEATURES is available only starting from 1.0 */
412 if (PSCI_VERSION_MAJOR(ver
) < 1)
415 feature
= psci_features(ARM_SMCCC_VERSION_FUNC_ID
);
416 if (feature
!= PSCI_RET_NOT_SUPPORTED
) {
417 ver
= invoke_psci_fn(ARM_SMCCC_VERSION_FUNC_ID
, 0, 0, 0);
418 seq_printf(s
, "SMC Calling Convention v%d.%d\n",
419 PSCI_VERSION_MAJOR(ver
),
420 PSCI_VERSION_MINOR(ver
));
422 seq_puts(s
, "SMC Calling Convention v1.0 is assumed\n");
425 feature
= psci_features(PSCI_FN_NATIVE(0_2
, CPU_SUSPEND
));
427 seq_printf(s
, "PSCI_FEATURES(CPU_SUSPEND) error (%d)\n", feature
);
429 seq_printf(s
, "OSI is %ssupported\n",
430 (feature
& BIT(0)) ? "" : "not ");
431 seq_printf(s
, "%s StateID format is used\n",
432 (feature
& BIT(1)) ? "Extended" : "Original");
435 type
= psci_ops
.migrate_info_type();
436 if (type
== PSCI_0_2_TOS_UP_MIGRATE
||
437 type
== PSCI_0_2_TOS_UP_NO_MIGRATE
) {
440 seq_printf(s
, "Trusted OS %smigrate capable\n",
441 type
== PSCI_0_2_TOS_UP_NO_MIGRATE
? "not " : "");
442 cpuid
= psci_migrate_info_up_cpu();
443 seq_printf(s
, "Trusted OS resident on physical CPU 0x%lx (#%d)\n",
444 cpuid
, resident_cpu
);
445 } else if (type
== PSCI_0_2_TOS_MP
) {
446 seq_puts(s
, "Trusted OS migration not required\n");
448 if (type
!= PSCI_RET_NOT_SUPPORTED
)
449 seq_printf(s
, "MIGRATE_INFO_TYPE returned unknown type (%d)\n", type
);
452 for (i
= 0; i
< ARRAY_SIZE(psci_fn_ids
); i
++) {
453 feature
= psci_features(psci_fn_ids
[i
].fn
);
454 if (feature
== PSCI_RET_NOT_SUPPORTED
)
457 seq_printf(s
, "PSCI_FEATURES(%s) error (%d)\n",
458 psci_fn_ids
[i
].name
, feature
);
460 seq_printf(s
, "%s is supported\n", psci_fn_ids
[i
].name
);
466 static int psci_debugfs_open(struct inode
*inode
, struct file
*f
)
468 return single_open(f
, psci_debugfs_read
, NULL
);
471 static const struct file_operations psci_debugfs_ops
= {
472 .owner
= THIS_MODULE
,
473 .open
= psci_debugfs_open
,
474 .release
= single_release
,
479 static int __init
psci_debugfs_init(void)
481 if (!invoke_psci_fn
|| !psci_ops
.get_version
)
484 return PTR_ERR_OR_ZERO(debugfs_create_file("psci", 0444, NULL
, NULL
,
487 late_initcall(psci_debugfs_init
)
490 #ifdef CONFIG_CPU_IDLE
491 static noinstr
int psci_suspend_finisher(unsigned long state
)
493 u32 power_state
= state
;
494 phys_addr_t pa_cpu_resume
;
496 pa_cpu_resume
= __pa_symbol_nodebug((unsigned long)cpu_resume
);
498 return psci_ops
.cpu_suspend(power_state
, pa_cpu_resume
);
501 int psci_cpu_suspend_enter(u32 state
)
505 if (!psci_power_state_loses_context(state
)) {
506 struct arm_cpuidle_irq_context context
;
509 arm_cpuidle_save_irq_context(&context
);
510 ret
= psci_ops
.cpu_suspend(state
, 0);
511 arm_cpuidle_restore_irq_context(&context
);
515 * ARM64 cpu_suspend() wants to do ct_cpuidle_*() itself.
517 if (!IS_ENABLED(CONFIG_ARM64
))
520 ret
= cpu_suspend(state
, psci_suspend_finisher
);
522 if (!IS_ENABLED(CONFIG_ARM64
))
530 static int psci_system_suspend(unsigned long unused
)
533 phys_addr_t pa_cpu_resume
= __pa_symbol(cpu_resume
);
535 err
= invoke_psci_fn(PSCI_FN_NATIVE(1_0
, SYSTEM_SUSPEND
),
536 pa_cpu_resume
, 0, 0);
537 return psci_to_linux_errno(err
);
540 static int psci_system_suspend_enter(suspend_state_t state
)
542 return cpu_suspend(0, psci_system_suspend
);
545 static const struct platform_suspend_ops psci_suspend_ops
= {
546 .valid
= suspend_valid_only_mem
,
547 .enter
= psci_system_suspend_enter
,
550 static void __init
psci_init_system_reset2(void)
554 ret
= psci_features(PSCI_FN_NATIVE(1_1
, SYSTEM_RESET2
));
556 if (ret
!= PSCI_RET_NOT_SUPPORTED
)
557 psci_system_reset2_supported
= true;
560 static void __init
psci_init_system_off2(void)
564 ret
= psci_features(PSCI_FN_NATIVE(1_3
, SYSTEM_OFF2
));
568 if (ret
& PSCI_1_3_OFF_TYPE_HIBERNATE_OFF
)
569 psci_system_off2_hibernate_supported
= true;
572 static void __init
psci_init_system_suspend(void)
576 if (!IS_ENABLED(CONFIG_SUSPEND
))
579 ret
= psci_features(PSCI_FN_NATIVE(1_0
, SYSTEM_SUSPEND
));
581 if (ret
!= PSCI_RET_NOT_SUPPORTED
)
582 suspend_set_ops(&psci_suspend_ops
);
585 static void __init
psci_init_cpu_suspend(void)
587 int feature
= psci_features(PSCI_FN_NATIVE(0_2
, CPU_SUSPEND
));
589 if (feature
!= PSCI_RET_NOT_SUPPORTED
)
590 psci_cpu_suspend_feature
= feature
;
594 * Detect the presence of a resident Trusted OS which may cause CPU_OFF to
595 * return DENIED (which would be fatal).
597 static void __init
psci_init_migrate(void)
602 type
= psci_ops
.migrate_info_type();
604 if (type
== PSCI_0_2_TOS_MP
) {
605 pr_info("Trusted OS migration not required\n");
609 if (type
== PSCI_RET_NOT_SUPPORTED
) {
610 pr_info("MIGRATE_INFO_TYPE not supported.\n");
614 if (type
!= PSCI_0_2_TOS_UP_MIGRATE
&&
615 type
!= PSCI_0_2_TOS_UP_NO_MIGRATE
) {
616 pr_err("MIGRATE_INFO_TYPE returned unknown type (%d)\n", type
);
620 cpuid
= psci_migrate_info_up_cpu();
621 if (cpuid
& ~MPIDR_HWID_BITMASK
) {
622 pr_warn("MIGRATE_INFO_UP_CPU reported invalid physical ID (0x%lx)\n",
627 cpu
= get_logical_index(cpuid
);
628 resident_cpu
= cpu
>= 0 ? cpu
: -1;
630 pr_info("Trusted OS resident on physical CPU 0x%lx\n", cpuid
);
633 static void __init
psci_init_smccc(void)
635 u32 ver
= ARM_SMCCC_VERSION_1_0
;
638 feature
= psci_features(ARM_SMCCC_VERSION_FUNC_ID
);
640 if (feature
!= PSCI_RET_NOT_SUPPORTED
) {
642 ret
= invoke_psci_fn(ARM_SMCCC_VERSION_FUNC_ID
, 0, 0, 0);
643 if (ret
>= ARM_SMCCC_VERSION_1_1
) {
644 arm_smccc_version_init(ret
, psci_conduit
);
650 * Conveniently, the SMCCC and PSCI versions are encoded the
651 * same way. No, this isn't accidental.
653 pr_info("SMC Calling Convention v%d.%d\n",
654 PSCI_VERSION_MAJOR(ver
), PSCI_VERSION_MINOR(ver
));
658 static void __init
psci_0_2_set_functions(void)
660 pr_info("Using standard PSCI v0.2 function IDs\n");
662 psci_ops
= (struct psci_operations
){
663 .get_version
= psci_0_2_get_version
,
664 .cpu_suspend
= psci_0_2_cpu_suspend
,
665 .cpu_off
= psci_0_2_cpu_off
,
666 .cpu_on
= psci_0_2_cpu_on
,
667 .migrate
= psci_0_2_migrate
,
668 .affinity_info
= psci_affinity_info
,
669 .migrate_info_type
= psci_migrate_info_type
,
672 register_restart_handler(&psci_sys_reset_nb
);
674 pm_power_off
= psci_sys_poweroff
;
678 * Probe function for PSCI firmware versions >= 0.2
680 static int __init
psci_probe(void)
682 u32 ver
= psci_0_2_get_version();
684 pr_info("PSCIv%d.%d detected in firmware.\n",
685 PSCI_VERSION_MAJOR(ver
),
686 PSCI_VERSION_MINOR(ver
));
688 if (PSCI_VERSION_MAJOR(ver
) == 0 && PSCI_VERSION_MINOR(ver
) < 2) {
689 pr_err("Conflicting PSCI version detected.\n");
693 psci_0_2_set_functions();
697 if (PSCI_VERSION_MAJOR(ver
) >= 1) {
699 psci_init_cpu_suspend();
700 psci_init_system_suspend();
701 psci_init_system_reset2();
702 psci_init_system_off2();
703 kvm_init_hyp_services();
709 typedef int (*psci_initcall_t
)(const struct device_node
*);
712 * PSCI init function for PSCI versions >=0.2
714 * Probe based on PSCI PSCI_VERSION function
716 static int __init
psci_0_2_init(const struct device_node
*np
)
720 err
= get_set_conduit_method(np
);
725 * Starting with v0.2, the PSCI specification introduced a call
726 * (PSCI_VERSION) that allows probing the firmware version, so
727 * that PSCI function IDs and version specific initialization
728 * can be carried out according to the specific version reported
735 * PSCI < v0.2 get PSCI Function IDs via DT.
737 static int __init
psci_0_1_init(const struct device_node
*np
)
742 err
= get_set_conduit_method(np
);
746 pr_info("Using PSCI v0.1 Function IDs from DT\n");
748 psci_ops
.get_version
= psci_0_1_get_version
;
750 if (!of_property_read_u32(np
, "cpu_suspend", &id
)) {
751 psci_0_1_function_ids
.cpu_suspend
= id
;
752 psci_ops
.cpu_suspend
= psci_0_1_cpu_suspend
;
755 if (!of_property_read_u32(np
, "cpu_off", &id
)) {
756 psci_0_1_function_ids
.cpu_off
= id
;
757 psci_ops
.cpu_off
= psci_0_1_cpu_off
;
760 if (!of_property_read_u32(np
, "cpu_on", &id
)) {
761 psci_0_1_function_ids
.cpu_on
= id
;
762 psci_ops
.cpu_on
= psci_0_1_cpu_on
;
765 if (!of_property_read_u32(np
, "migrate", &id
)) {
766 psci_0_1_function_ids
.migrate
= id
;
767 psci_ops
.migrate
= psci_0_1_migrate
;
773 static int __init
psci_1_0_init(const struct device_node
*np
)
777 err
= psci_0_2_init(np
);
781 if (psci_has_osi_support()) {
782 pr_info("OSI mode supported.\n");
784 /* Default to PC mode. */
785 psci_set_osi_mode(false);
791 static const struct of_device_id psci_of_match
[] __initconst
= {
792 { .compatible
= "arm,psci", .data
= psci_0_1_init
},
793 { .compatible
= "arm,psci-0.2", .data
= psci_0_2_init
},
794 { .compatible
= "arm,psci-1.0", .data
= psci_1_0_init
},
798 int __init
psci_dt_init(void)
800 struct device_node
*np
;
801 const struct of_device_id
*matched_np
;
802 psci_initcall_t init_fn
;
805 np
= of_find_matching_node_and_match(NULL
, psci_of_match
, &matched_np
);
807 if (!np
|| !of_device_is_available(np
))
810 init_fn
= (psci_initcall_t
)matched_np
->data
;
819 * We use PSCI 0.2+ when ACPI is deployed on ARM64 and it's
820 * explicitly clarified in SBBR
822 int __init
psci_acpi_init(void)
824 if (!acpi_psci_present()) {
825 pr_info("is not implemented in ACPI.\n");
829 pr_info("probing for conduit method from ACPI.\n");
831 if (acpi_psci_use_hvc())
832 set_conduit(SMCCC_CONDUIT_HVC
);
834 set_conduit(SMCCC_CONDUIT_SMC
);