1
2
3
4
5
6
7
8
9
10
11
12
13#define pr_fmt(fmt) "ACPI: " fmt
14
15#include <linux/acpi.h>
16#include <linux/cpumask.h>
17#include <linux/efi.h>
18#include <linux/efi-bgrt.h>
19#include <linux/init.h>
20#include <linux/irq.h>
21#include <linux/irqdomain.h>
22#include <linux/irq_work.h>
23#include <linux/memblock.h>
24#include <linux/of_fdt.h>
25#include <linux/smp.h>
26#include <linux/serial_core.h>
27#include <linux/pgtable.h>
28
29#include <acpi/ghes.h>
30#include <asm/cputype.h>
31#include <asm/cpu_ops.h>
32#include <asm/daifflags.h>
33#include <asm/smp_plat.h>
34
35int acpi_noirq = 1;
36int acpi_disabled = 1;
37EXPORT_SYMBOL(acpi_disabled);
38
39int acpi_pci_disabled = 1;
40EXPORT_SYMBOL(acpi_pci_disabled);
41
42static bool param_acpi_off __initdata;
43static bool param_acpi_on __initdata;
44static bool param_acpi_force __initdata;
45
46static int __init parse_acpi(char *arg)
47{
48 if (!arg)
49 return -EINVAL;
50
51
52 if (strcmp(arg, "off") == 0)
53 param_acpi_off = true;
54 else if (strcmp(arg, "on") == 0)
55 param_acpi_on = true;
56 else if (strcmp(arg, "force") == 0)
57 param_acpi_force = true;
58 else
59 return -EINVAL;
60
61 return 0;
62}
63early_param("acpi", parse_acpi);
64
65static int __init dt_scan_depth1_nodes(unsigned long node,
66 const char *uname, int depth,
67 void *data)
68{
69
70
71
72
73 if (depth != 1)
74 return 0;
75
76 if (strcmp(uname, "chosen") == 0)
77 return 0;
78
79 if (strcmp(uname, "hypervisor") == 0 &&
80 of_flat_dt_is_compatible(node, "xen,xen"))
81 return 0;
82
83
84
85
86
87 return 1;
88}
89
90
91
92
93
94void __init __iomem *__acpi_map_table(unsigned long phys, unsigned long size)
95{
96 if (!size)
97 return NULL;
98
99 return early_memremap(phys, size);
100}
101
102void __init __acpi_unmap_table(void __iomem *map, unsigned long size)
103{
104 if (!map || !size)
105 return;
106
107 early_memunmap(map, size);
108}
109
110bool __init acpi_psci_present(void)
111{
112 return acpi_gbl_FADT.arm_boot_flags & ACPI_FADT_PSCI_COMPLIANT;
113}
114
115
116bool acpi_psci_use_hvc(void)
117{
118 return acpi_gbl_FADT.arm_boot_flags & ACPI_FADT_PSCI_USE_HVC;
119}
120
121
122
123
124
125
126
127static int __init acpi_fadt_sanity_check(void)
128{
129 struct acpi_table_header *table;
130 struct acpi_table_fadt *fadt;
131 acpi_status status;
132 int ret = 0;
133
134
135
136
137
138 status = acpi_get_table(ACPI_SIG_FADT, 0, &table);
139 if (ACPI_FAILURE(status)) {
140 const char *msg = acpi_format_exception(status);
141
142 pr_err("Failed to get FADT table, %s\n", msg);
143 return -ENODEV;
144 }
145
146 fadt = (struct acpi_table_fadt *)table;
147
148
149
150
151
152
153
154 if (table->revision < 5 ||
155 (table->revision == 5 && fadt->minor_revision < 1)) {
156 pr_err(FW_BUG "Unsupported FADT revision %d.%d, should be 5.1+\n",
157 table->revision, fadt->minor_revision);
158
159 if (!fadt->arm_boot_flags) {
160 ret = -EINVAL;
161 goto out;
162 }
163 pr_err("FADT has ARM boot flags set, assuming 5.1\n");
164 }
165
166 if (!(fadt->flags & ACPI_FADT_HW_REDUCED)) {
167 pr_err("FADT not ACPI hardware reduced compliant\n");
168 ret = -EINVAL;
169 }
170
171out:
172
173
174
175
176 acpi_put_table(table);
177 return ret;
178}
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198void __init acpi_boot_table_init(void)
199{
200
201
202
203
204
205
206
207 if (param_acpi_off ||
208 (!param_acpi_on && !param_acpi_force &&
209 of_scan_flat_dt(dt_scan_depth1_nodes, NULL)))
210 goto done;
211
212
213
214
215
216 enable_acpi();
217
218
219
220
221
222
223
224
225 if (acpi_table_init() || acpi_fadt_sanity_check()) {
226 pr_err("Failed to init ACPI tables\n");
227 if (!param_acpi_force)
228 disable_acpi();
229 }
230
231done:
232 if (acpi_disabled) {
233 if (earlycon_acpi_spcr_enable)
234 early_init_dt_scan_chosen_stdout();
235 } else {
236 acpi_parse_spcr(earlycon_acpi_spcr_enable, true);
237 if (IS_ENABLED(CONFIG_ACPI_BGRT))
238 acpi_table_parse(ACPI_SIG_BGRT, acpi_parse_bgrt);
239 }
240}
241
242pgprot_t __acpi_get_mem_attribute(phys_addr_t addr)
243{
244
245
246
247
248
249
250
251
252 u64 attr;
253
254 attr = efi_mem_attributes(addr);
255 if (attr & EFI_MEMORY_WB)
256 return PAGE_KERNEL;
257 if (attr & EFI_MEMORY_WT)
258 return __pgprot(PROT_NORMAL_WT);
259 if (attr & EFI_MEMORY_WC)
260 return __pgprot(PROT_NORMAL_NC);
261 return __pgprot(PROT_DEVICE_nGnRnE);
262}
263
264void __iomem *acpi_os_ioremap(acpi_physical_address phys, acpi_size size)
265{
266 efi_memory_desc_t *md, *region = NULL;
267 pgprot_t prot;
268
269 if (WARN_ON_ONCE(!efi_enabled(EFI_MEMMAP)))
270 return NULL;
271
272 for_each_efi_memory_desc(md) {
273 u64 end = md->phys_addr + (md->num_pages << EFI_PAGE_SHIFT);
274
275 if (phys < md->phys_addr || phys >= end)
276 continue;
277
278 if (phys + size > end) {
279 pr_warn(FW_BUG "requested region covers multiple EFI memory regions\n");
280 return NULL;
281 }
282 region = md;
283 break;
284 }
285
286
287
288
289
290
291
292 prot = __pgprot(PROT_DEVICE_nGnRnE);
293 if (region) {
294 switch (region->type) {
295 case EFI_LOADER_CODE:
296 case EFI_LOADER_DATA:
297 case EFI_BOOT_SERVICES_CODE:
298 case EFI_BOOT_SERVICES_DATA:
299 case EFI_CONVENTIONAL_MEMORY:
300 case EFI_PERSISTENT_MEMORY:
301 if (memblock_is_map_memory(phys) ||
302 !memblock_is_region_memory(phys, size)) {
303 pr_warn(FW_BUG "requested region covers kernel memory @ %pa\n", &phys);
304 return NULL;
305 }
306
307
308
309
310
311
312
313
314
315 fallthrough;
316
317 case EFI_RUNTIME_SERVICES_CODE:
318
319
320
321
322
323 prot = PAGE_KERNEL_RO;
324 break;
325
326 case EFI_ACPI_RECLAIM_MEMORY:
327
328
329
330
331
332
333
334
335
336 if (memblock_is_map_memory(phys))
337 return (void __iomem *)__phys_to_virt(phys);
338 fallthrough;
339
340 default:
341 if (region->attribute & EFI_MEMORY_WB)
342 prot = PAGE_KERNEL;
343 else if (region->attribute & EFI_MEMORY_WT)
344 prot = __pgprot(PROT_NORMAL_WT);
345 else if (region->attribute & EFI_MEMORY_WC)
346 prot = __pgprot(PROT_NORMAL_NC);
347 }
348 }
349 return __ioremap(phys, size, prot);
350}
351
352
353
354
355
356
357
358int apei_claim_sea(struct pt_regs *regs)
359{
360 int err = -ENOENT;
361 bool return_to_irqs_enabled;
362 unsigned long current_flags;
363
364 if (!IS_ENABLED(CONFIG_ACPI_APEI_GHES))
365 return err;
366
367 current_flags = local_daif_save_flags();
368
369
370 return_to_irqs_enabled = !irqs_disabled_flags(arch_local_save_flags());
371
372 if (regs)
373 return_to_irqs_enabled = interrupts_enabled(regs);
374
375
376
377
378
379 local_daif_restore(DAIF_ERRCTX);
380 nmi_enter();
381 err = ghes_notify_sea();
382 nmi_exit();
383
384
385
386
387
388 if (!err) {
389 if (return_to_irqs_enabled) {
390 local_daif_restore(DAIF_PROCCTX_NOIRQ);
391 __irq_enter();
392 irq_work_run();
393 __irq_exit();
394 } else {
395 pr_warn_ratelimited("APEI work queued but not completed");
396 err = -EINPROGRESS;
397 }
398 }
399
400 local_daif_restore(current_flags);
401
402 return err;
403}
404
405void arch_reserve_mem_area(acpi_physical_address addr, size_t size)
406{
407 memblock_mark_nomap(addr, size);
408}
409