staging: erofs: fix warning Comparison to bool
[linux/fpc-iii.git] / arch / arm64 / kernel / cpu_ops.c
blob00f8b8612b69f87bd3b9dbaa4f7c9a08254d2bca
1 /*
2 * CPU kernel entry/exit control
4 * Copyright (C) 2013 ARM Ltd.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #include <linux/acpi.h>
20 #include <linux/cache.h>
21 #include <linux/errno.h>
22 #include <linux/of.h>
23 #include <linux/string.h>
24 #include <asm/acpi.h>
25 #include <asm/cpu_ops.h>
26 #include <asm/smp_plat.h>
28 extern const struct cpu_operations smp_spin_table_ops;
29 extern const struct cpu_operations acpi_parking_protocol_ops;
30 extern const struct cpu_operations cpu_psci_ops;
32 const struct cpu_operations *cpu_ops[NR_CPUS] __ro_after_init;
34 static const struct cpu_operations *const dt_supported_cpu_ops[] __initconst = {
35 &smp_spin_table_ops,
36 &cpu_psci_ops,
37 NULL,
40 static const struct cpu_operations *const acpi_supported_cpu_ops[] __initconst = {
41 #ifdef CONFIG_ARM64_ACPI_PARKING_PROTOCOL
42 &acpi_parking_protocol_ops,
43 #endif
44 &cpu_psci_ops,
45 NULL,
48 static const struct cpu_operations * __init cpu_get_ops(const char *name)
50 const struct cpu_operations *const *ops;
52 ops = acpi_disabled ? dt_supported_cpu_ops : acpi_supported_cpu_ops;
54 while (*ops) {
55 if (!strcmp(name, (*ops)->name))
56 return *ops;
58 ops++;
61 return NULL;
64 static const char *__init cpu_read_enable_method(int cpu)
66 const char *enable_method;
68 if (acpi_disabled) {
69 struct device_node *dn = of_get_cpu_node(cpu, NULL);
71 if (!dn) {
72 if (!cpu)
73 pr_err("Failed to find device node for boot cpu\n");
74 return NULL;
77 enable_method = of_get_property(dn, "enable-method", NULL);
78 if (!enable_method) {
80 * The boot CPU may not have an enable method (e.g.
81 * when spin-table is used for secondaries).
82 * Don't warn spuriously.
84 if (cpu != 0)
85 pr_err("%pOF: missing enable-method property\n",
86 dn);
88 of_node_put(dn);
89 } else {
90 enable_method = acpi_get_enable_method(cpu);
91 if (!enable_method) {
93 * In ACPI systems the boot CPU does not require
94 * checking the enable method since for some
95 * boot protocol (ie parking protocol) it need not
96 * be initialized. Don't warn spuriously.
98 if (cpu != 0)
99 pr_err("Unsupported ACPI enable-method\n");
103 return enable_method;
106 * Read a cpu's enable method and record it in cpu_ops.
108 int __init cpu_read_ops(int cpu)
110 const char *enable_method = cpu_read_enable_method(cpu);
112 if (!enable_method)
113 return -ENODEV;
115 cpu_ops[cpu] = cpu_get_ops(enable_method);
116 if (!cpu_ops[cpu]) {
117 pr_warn("Unsupported enable-method: %s\n", enable_method);
118 return -EOPNOTSUPP;
121 return 0;