blob: 3e4f1a45b125f61821ca579f4c7569d1977de99d [file] [log] [blame]
Al Stone37655162015-03-24 14:02:37 +00001/*
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/bootmem.h>
20#include <linux/cpumask.h>
21#include <linux/init.h>
22#include <linux/irq.h>
23#include <linux/irqdomain.h>
24#include <linux/memblock.h>
Al Stoneb10d79f2015-03-24 14:02:41 +000025#include <linux/of_fdt.h>
Al Stone37655162015-03-24 14:02:37 +000026#include <linux/smp.h>
27
Hanjun Guofccb9a82015-03-24 22:02:45 +080028#include <asm/cputype.h>
29#include <asm/cpu_ops.h>
30#include <asm/smp_plat.h>
31
Jonathan (Zhixiong) Zhang89e44b52015-09-04 14:11:41 +010032#ifdef CONFIG_ACPI_APEI
33# include <linux/efi.h>
34# include <asm/pgtable.h>
35#endif
36
Al Stoneb10d79f2015-03-24 14:02:41 +000037int acpi_noirq = 1; /* skip ACPI IRQ initialization */
38int acpi_disabled = 1;
Al Stone37655162015-03-24 14:02:37 +000039EXPORT_SYMBOL(acpi_disabled);
40
Al Stoneb10d79f2015-03-24 14:02:41 +000041int acpi_pci_disabled = 1; /* skip ACPI PCI scan and IRQ initialization */
Al Stone37655162015-03-24 14:02:37 +000042EXPORT_SYMBOL(acpi_pci_disabled);
43
Al Stoneb10d79f2015-03-24 14:02:41 +000044static bool param_acpi_off __initdata;
Ard Biesheuvel6a1f5472016-04-12 16:09:11 +020045static bool param_acpi_on __initdata;
Lorenzo Pieralisifb094eb2015-03-25 15:22:13 +000046static bool param_acpi_force __initdata;
Al Stoneb10d79f2015-03-24 14:02:41 +000047
48static 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;
Ard Biesheuvel6a1f5472016-04-12 16:09:11 +020056 else if (strcmp(arg, "on") == 0) /* prefer ACPI over DT */
57 param_acpi_on = true;
Al Stoneb10d79f2015-03-24 14:02:41 +000058 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}
65early_param("acpi", parse_acpi);
66
67static int __init dt_scan_depth1_nodes(unsigned long node,
68 const char *uname, int depth,
69 void *data)
70{
71 /*
Mark Rutland99812932016-04-25 11:25:11 +010072 * Ignore anything not directly under the root node; we'll
73 * catch its parent instead.
Al Stoneb10d79f2015-03-24 14:02:41 +000074 */
Mark Rutland99812932016-04-25 11:25:11 +010075 if (depth != 1)
76 return 0;
Shannon Zhao2366c7f2016-04-07 20:03:29 +080077
Mark Rutland99812932016-04-25 11:25:11 +010078 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;
Al Stoneb10d79f2015-03-24 14:02:41 +000090}
91
Al Stone37655162015-03-24 14:02:37 +000092/*
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 */
96char *__init __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
104void __init __acpi_unmap_table(char *map, unsigned long size)
105{
106 if (!map || !size)
107 return;
108
109 early_memunmap(map, size);
110}
111
Mark Rutlandc5a13302015-04-30 14:22:04 +0100112bool __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 */
118bool __init acpi_psci_use_hvc(void)
119{
120 return acpi_gbl_FADT.arm_boot_flags & ACPI_FADT_PSCI_USE_HVC;
121}
122
Lorenzo Pieralisi54971e42015-03-25 15:13:56 +0000123/*
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 */
129static int __init acpi_fadt_sanity_check(void)
Al Stone37655162015-03-24 14:02:37 +0000130{
Lorenzo Pieralisi54971e42015-03-25 15:13:56 +0000131 struct acpi_table_header *table;
132 struct acpi_table_fadt *fadt;
133 acpi_status status;
134 acpi_size tbl_size;
135 int ret = 0;
136
137 /*
138 * FADT is required on arm64; retrieve it to check its presence
139 * and carry out revision and ACPI HW reduced compliancy tests
140 */
141 status = acpi_get_table_with_size(ACPI_SIG_FADT, 0, &table, &tbl_size);
142 if (ACPI_FAILURE(status)) {
143 const char *msg = acpi_format_exception(status);
144
145 pr_err("Failed to get FADT table, %s\n", msg);
146 return -ENODEV;
147 }
148
149 fadt = (struct acpi_table_fadt *)table;
Al Stone37655162015-03-24 14:02:37 +0000150
151 /*
152 * Revision in table header is the FADT Major revision, and there
153 * is a minor revision of FADT which was introduced by ACPI 5.1,
154 * we only deal with ACPI 5.1 or newer revision to get GIC and SMP
Lorenzo Pieralisi54971e42015-03-25 15:13:56 +0000155 * boot protocol configuration data.
Al Stone37655162015-03-24 14:02:37 +0000156 */
Lorenzo Pieralisi54971e42015-03-25 15:13:56 +0000157 if (table->revision < 5 ||
158 (table->revision == 5 && fadt->minor_revision < 1)) {
159 pr_err("Unsupported FADT revision %d.%d, should be 5.1+\n",
160 table->revision, fadt->minor_revision);
161 ret = -EINVAL;
162 goto out;
Hanjun Guofccb9a82015-03-24 22:02:45 +0800163 }
Al Stone37655162015-03-24 14:02:37 +0000164
Lorenzo Pieralisi54971e42015-03-25 15:13:56 +0000165 if (!(fadt->flags & ACPI_FADT_HW_REDUCED)) {
166 pr_err("FADT not ACPI hardware reduced compliant\n");
167 ret = -EINVAL;
168 }
Al Stone37655162015-03-24 14:02:37 +0000169
Lorenzo Pieralisi54971e42015-03-25 15:13:56 +0000170out:
171 /*
172 * acpi_get_table_with_size() creates FADT table mapping that
173 * should be released after parsing and before resuming boot
174 */
175 early_acpi_os_unmap_memory(table, tbl_size);
176 return ret;
Al Stone37655162015-03-24 14:02:37 +0000177}
178
179/*
180 * acpi_boot_table_init() called from setup_arch(), always.
181 * 1. find RSDP and get its address, and then find XSDT
182 * 2. extract all tables and checksums them all
183 * 3. check ACPI FADT revision
Lorenzo Pieralisi54971e42015-03-25 15:13:56 +0000184 * 4. check ACPI FADT HW reduced flag
Al Stone37655162015-03-24 14:02:37 +0000185 *
186 * We can parse ACPI boot-time tables such as MADT after
187 * this function is called.
Lorenzo Pieralisi54971e42015-03-25 15:13:56 +0000188 *
Lorenzo Pieralisifb094eb2015-03-25 15:22:13 +0000189 * On return ACPI is enabled if either:
190 *
191 * - ACPI tables are initialized and sanity checks passed
192 * - acpi=force was passed in the command line and ACPI was not disabled
193 * explicitly through acpi=off command line parameter
194 *
195 * ACPI is disabled on function return otherwise
Al Stone37655162015-03-24 14:02:37 +0000196 */
197void __init acpi_boot_table_init(void)
198{
Al Stoneb10d79f2015-03-24 14:02:41 +0000199 /*
200 * Enable ACPI instead of device tree unless
201 * - ACPI has been disabled explicitly (acpi=off), or
Shannon Zhao2366c7f2016-04-07 20:03:29 +0800202 * - the device tree is not empty (it has more than just a /chosen node,
203 * and a /hypervisor node when running on Xen)
Ard Biesheuvel6a1f5472016-04-12 16:09:11 +0200204 * and ACPI has not been [force] enabled (acpi=on|force)
Al Stoneb10d79f2015-03-24 14:02:41 +0000205 */
206 if (param_acpi_off ||
Ard Biesheuvel6a1f5472016-04-12 16:09:11 +0200207 (!param_acpi_on && !param_acpi_force &&
208 of_scan_flat_dt(dt_scan_depth1_nodes, NULL)))
Al Stone37655162015-03-24 14:02:37 +0000209 return;
210
Lorenzo Pieralisi54971e42015-03-25 15:13:56 +0000211 /*
212 * ACPI is disabled at this point. Enable it in order to parse
213 * the ACPI tables and carry out sanity checks
214 */
Al Stoneb10d79f2015-03-24 14:02:41 +0000215 enable_acpi();
216
Lorenzo Pieralisi54971e42015-03-25 15:13:56 +0000217 /*
218 * If ACPI tables are initialized and FADT sanity checks passed,
219 * leave ACPI enabled and carry on booting; otherwise disable ACPI
220 * on initialization error.
Lorenzo Pieralisifb094eb2015-03-25 15:22:13 +0000221 * If acpi=force was passed on the command line it forces ACPI
222 * to be enabled even if its initialization failed.
Lorenzo Pieralisi54971e42015-03-25 15:13:56 +0000223 */
224 if (acpi_table_init() || acpi_fadt_sanity_check()) {
225 pr_err("Failed to init ACPI tables\n");
Lorenzo Pieralisifb094eb2015-03-25 15:22:13 +0000226 if (!param_acpi_force)
227 disable_acpi();
Al Stone37655162015-03-24 14:02:37 +0000228 }
229}
Tomasz Nowickid60fc382015-03-24 14:02:49 +0000230
Jonathan (Zhixiong) Zhang89e44b52015-09-04 14:11:41 +0100231#ifdef CONFIG_ACPI_APEI
232pgprot_t arch_apei_get_mem_attribute(phys_addr_t addr)
233{
234 /*
235 * According to "Table 8 Map: EFI memory types to AArch64 memory
236 * types" of UEFI 2.5 section 2.3.6.1, each EFI memory type is
237 * mapped to a corresponding MAIR attribute encoding.
238 * The EFI memory attribute advises all possible capabilities
239 * of a memory region. We use the most efficient capability.
240 */
241
242 u64 attr;
243
244 attr = efi_mem_attributes(addr);
245 if (attr & EFI_MEMORY_WB)
246 return PAGE_KERNEL;
247 if (attr & EFI_MEMORY_WT)
248 return __pgprot(PROT_NORMAL_WT);
249 if (attr & EFI_MEMORY_WC)
250 return __pgprot(PROT_NORMAL_NC);
251 return __pgprot(PROT_DEVICE_nGnRnE);
252}
253#endif