acpi/arm64: ignore 5.1 FADTs that are reported as 5.0
[linux-2.6-microblaze.git] / arch / arm64 / kernel / acpi.c
1 /*
2  *  ARM64 Specific Low-Level ACPI Boot Support
3  *
4  *  Copyright (C) 2013-2014, Linaro Ltd.
5  *      Author: Al Stone <al.stone@linaro.org>
6  *      Author: Graeme Gregory <graeme.gregory@linaro.org>
7  *      Author: Hanjun Guo <hanjun.guo@linaro.org>
8  *      Author: Tomasz Nowicki <tomasz.nowicki@linaro.org>
9  *      Author: Naresh Bhat <naresh.bhat@linaro.org>
10  *
11  *  This program is free software; you can redistribute it and/or modify
12  *  it under the terms of the GNU General Public License version 2 as
13  *  published by the Free Software Foundation.
14  */
15
16 #define pr_fmt(fmt) "ACPI: " fmt
17
18 #include <linux/acpi.h>
19 #include <linux/cpumask.h>
20 #include <linux/efi.h>
21 #include <linux/efi-bgrt.h>
22 #include <linux/init.h>
23 #include <linux/irq.h>
24 #include <linux/irqdomain.h>
25 #include <linux/memblock.h>
26 #include <linux/of_fdt.h>
27 #include <linux/smp.h>
28 #include <linux/serial_core.h>
29
30 #include <acpi/ghes.h>
31 #include <asm/cputype.h>
32 #include <asm/cpu_ops.h>
33 #include <asm/daifflags.h>
34 #include <asm/pgtable.h>
35 #include <asm/smp_plat.h>
36
37 int acpi_noirq = 1;             /* skip ACPI IRQ initialization */
38 int acpi_disabled = 1;
39 EXPORT_SYMBOL(acpi_disabled);
40
41 int acpi_pci_disabled = 1;      /* skip ACPI PCI scan and IRQ initialization */
42 EXPORT_SYMBOL(acpi_pci_disabled);
43
44 static bool param_acpi_off __initdata;
45 static bool param_acpi_on __initdata;
46 static bool param_acpi_force __initdata;
47
48 static int __init parse_acpi(char *arg)
49 {
50         if (!arg)
51                 return -EINVAL;
52
53         /* "acpi=off" disables both ACPI table parsing and interpreter */
54         if (strcmp(arg, "off") == 0)
55                 param_acpi_off = true;
56         else if (strcmp(arg, "on") == 0) /* prefer ACPI over DT */
57                 param_acpi_on = true;
58         else if (strcmp(arg, "force") == 0) /* force ACPI to be enabled */
59                 param_acpi_force = true;
60         else
61                 return -EINVAL; /* Core will print when we return error */
62
63         return 0;
64 }
65 early_param("acpi", parse_acpi);
66
67 static int __init dt_scan_depth1_nodes(unsigned long node,
68                                        const char *uname, int depth,
69                                        void *data)
70 {
71         /*
72          * Ignore anything not directly under the root node; we'll
73          * catch its parent instead.
74          */
75         if (depth != 1)
76                 return 0;
77
78         if (strcmp(uname, "chosen") == 0)
79                 return 0;
80
81         if (strcmp(uname, "hypervisor") == 0 &&
82             of_flat_dt_is_compatible(node, "xen,xen"))
83                 return 0;
84
85         /*
86          * This node at depth 1 is neither a chosen node nor a xen node,
87          * which we do not expect.
88          */
89         return 1;
90 }
91
92 /*
93  * __acpi_map_table() will be called before page_init(), so early_ioremap()
94  * or early_memremap() should be called here to for ACPI table mapping.
95  */
96 void __init __iomem *__acpi_map_table(unsigned long phys, unsigned long size)
97 {
98         if (!size)
99                 return NULL;
100
101         return early_memremap(phys, size);
102 }
103
104 void __init __acpi_unmap_table(void __iomem *map, unsigned long size)
105 {
106         if (!map || !size)
107                 return;
108
109         early_memunmap(map, size);
110 }
111
112 bool __init acpi_psci_present(void)
113 {
114         return acpi_gbl_FADT.arm_boot_flags & ACPI_FADT_PSCI_COMPLIANT;
115 }
116
117 /* Whether HVC must be used instead of SMC as the PSCI conduit */
118 bool acpi_psci_use_hvc(void)
119 {
120         return acpi_gbl_FADT.arm_boot_flags & ACPI_FADT_PSCI_USE_HVC;
121 }
122
123 /*
124  * acpi_fadt_sanity_check() - Check FADT presence and carry out sanity
125  *                            checks on it
126  *
127  * Return 0 on success,  <0 on failure
128  */
129 static int __init acpi_fadt_sanity_check(void)
130 {
131         struct acpi_table_header *table;
132         struct acpi_table_fadt *fadt;
133         acpi_status status;
134         int ret = 0;
135
136         /*
137          * FADT is required on arm64; retrieve it to check its presence
138          * and carry out revision and ACPI HW reduced compliancy tests
139          */
140         status = acpi_get_table(ACPI_SIG_FADT, 0, &table);
141         if (ACPI_FAILURE(status)) {
142                 const char *msg = acpi_format_exception(status);
143
144                 pr_err("Failed to get FADT table, %s\n", msg);
145                 return -ENODEV;
146         }
147
148         fadt = (struct acpi_table_fadt *)table;
149
150         /*
151          * Revision in table header is the FADT Major revision, and there
152          * is a minor revision of FADT which was introduced by ACPI 5.1,
153          * we only deal with ACPI 5.1 or newer revision to get GIC and SMP
154          * boot protocol configuration data.
155          */
156         if (table->revision < 5 ||
157            (table->revision == 5 && fadt->minor_revision < 1)) {
158                 pr_err(FW_BUG "Unsupported FADT revision %d.%d, should be 5.1+\n",
159                        table->revision, fadt->minor_revision);
160
161                 if (!fadt->arm_boot_flags) {
162                         ret = -EINVAL;
163                         goto out;
164                 }
165                 pr_err("FADT has ARM boot flags set, assuming 5.1\n");
166         }
167
168         if (!(fadt->flags & ACPI_FADT_HW_REDUCED)) {
169                 pr_err("FADT not ACPI hardware reduced compliant\n");
170                 ret = -EINVAL;
171         }
172
173 out:
174         /*
175          * acpi_get_table() creates FADT table mapping that
176          * should be released after parsing and before resuming boot
177          */
178         acpi_put_table(table);
179         return ret;
180 }
181
182 /*
183  * acpi_boot_table_init() called from setup_arch(), always.
184  *      1. find RSDP and get its address, and then find XSDT
185  *      2. extract all tables and checksums them all
186  *      3. check ACPI FADT revision
187  *      4. check ACPI FADT HW reduced flag
188  *
189  * We can parse ACPI boot-time tables such as MADT after
190  * this function is called.
191  *
192  * On return ACPI is enabled if either:
193  *
194  * - ACPI tables are initialized and sanity checks passed
195  * - acpi=force was passed in the command line and ACPI was not disabled
196  *   explicitly through acpi=off command line parameter
197  *
198  * ACPI is disabled on function return otherwise
199  */
200 void __init acpi_boot_table_init(void)
201 {
202         /*
203          * Enable ACPI instead of device tree unless
204          * - ACPI has been disabled explicitly (acpi=off), or
205          * - the device tree is not empty (it has more than just a /chosen node,
206          *   and a /hypervisor node when running on Xen)
207          *   and ACPI has not been [force] enabled (acpi=on|force)
208          */
209         if (param_acpi_off ||
210             (!param_acpi_on && !param_acpi_force &&
211              of_scan_flat_dt(dt_scan_depth1_nodes, NULL)))
212                 goto done;
213
214         /*
215          * ACPI is disabled at this point. Enable it in order to parse
216          * the ACPI tables and carry out sanity checks
217          */
218         enable_acpi();
219
220         /*
221          * If ACPI tables are initialized and FADT sanity checks passed,
222          * leave ACPI enabled and carry on booting; otherwise disable ACPI
223          * on initialization error.
224          * If acpi=force was passed on the command line it forces ACPI
225          * to be enabled even if its initialization failed.
226          */
227         if (acpi_table_init() || acpi_fadt_sanity_check()) {
228                 pr_err("Failed to init ACPI tables\n");
229                 if (!param_acpi_force)
230                         disable_acpi();
231         }
232
233 done:
234         if (acpi_disabled) {
235                 if (earlycon_acpi_spcr_enable)
236                         early_init_dt_scan_chosen_stdout();
237         } else {
238                 acpi_parse_spcr(earlycon_acpi_spcr_enable, true);
239                 if (IS_ENABLED(CONFIG_ACPI_BGRT))
240                         acpi_table_parse(ACPI_SIG_BGRT, acpi_parse_bgrt);
241         }
242 }
243
244 pgprot_t __acpi_get_mem_attribute(phys_addr_t addr)
245 {
246         /*
247          * According to "Table 8 Map: EFI memory types to AArch64 memory
248          * types" of UEFI 2.5 section 2.3.6.1, each EFI memory type is
249          * mapped to a corresponding MAIR attribute encoding.
250          * The EFI memory attribute advises all possible capabilities
251          * of a memory region. We use the most efficient capability.
252          */
253
254         u64 attr;
255
256         attr = efi_mem_attributes(addr);
257         if (attr & EFI_MEMORY_WB)
258                 return PAGE_KERNEL;
259         if (attr & EFI_MEMORY_WT)
260                 return __pgprot(PROT_NORMAL_WT);
261         if (attr & EFI_MEMORY_WC)
262                 return __pgprot(PROT_NORMAL_NC);
263         return __pgprot(PROT_DEVICE_nGnRnE);
264 }
265
266 /*
267  * Claim Synchronous External Aborts as a firmware first notification.
268  *
269  * Used by KVM and the arch do_sea handler.
270  * @regs may be NULL when called from process context.
271  */
272 int apei_claim_sea(struct pt_regs *regs)
273 {
274         int err = -ENOENT;
275         unsigned long current_flags;
276
277         if (!IS_ENABLED(CONFIG_ACPI_APEI_GHES))
278                 return err;
279
280         current_flags = arch_local_save_flags();
281
282         /*
283          * SEA can interrupt SError, mask it and describe this as an NMI so
284          * that APEI defers the handling.
285          */
286         local_daif_restore(DAIF_ERRCTX);
287         nmi_enter();
288         err = ghes_notify_sea();
289         nmi_exit();
290         local_daif_restore(current_flags);
291
292         return err;
293 }