blob: f4e5b888b98e271765cb8e513d56322ea4bb9a4c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * acpi_tables.c - ACPI Boot-Time Table Parsing
3 *
4 * Copyright (C) 2001 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
5 *
6 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
23 *
24 */
25
Hanjun Guo07f438d2015-03-24 14:02:34 +000026/* Uncomment next line to get verbose printout */
27/* #define DEBUG */
Hanjun Guo730bf5e2014-02-20 15:45:33 +080028#define pr_fmt(fmt) "ACPI: " fmt
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/init.h>
31#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/smp.h>
33#include <linux/string.h>
34#include <linux/types.h>
35#include <linux/irq.h>
36#include <linux/errno.h>
37#include <linux/acpi.h>
38#include <linux/bootmem.h>
39
Len Brown04348e62005-12-30 02:44:59 -050040#define ACPI_MAX_TABLES 128
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static char *mps_inti_flags_polarity[] = { "dfl", "high", "res", "low" };
43static char *mps_inti_flags_trigger[] = { "dfl", "edge", "res", "level" };
44
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +030045static struct acpi_table_desc initial_tables[ACPI_MAX_TABLES] __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Len Brown4e381a42007-03-30 14:16:10 -040047static int acpi_apic_instance __initdata;
Len Browna1fdcc02007-03-11 03:26:14 -040048
Lv Zheng4fc0a7e2014-05-31 08:15:02 +080049/*
50 * Disable table checksum verification for the early stage due to the size
51 * limitation of the current x86 early mapping implementation.
52 */
53static bool acpi_verify_table_checksum __initdata = false;
54
Len Browna1fdcc02007-03-11 03:26:14 -040055void acpi_table_print_madt_entry(struct acpi_subtable_header *header)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 if (!header)
58 return;
59
60 switch (header->type) {
61
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030062 case ACPI_MADT_TYPE_LOCAL_APIC:
Len Brown4be44fc2005-08-05 00:44:28 -040063 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030064 struct acpi_madt_local_apic *p =
65 (struct acpi_madt_local_apic *)header;
Hanjun Guo07f438d2015-03-24 14:02:34 +000066 pr_debug("LAPIC (acpi_id[0x%02x] lapic_id[0x%02x] %s)\n",
67 p->processor_id, p->id,
68 (p->lapic_flags & ACPI_MADT_ENABLED) ? "enabled" : "disabled");
Len Brown4be44fc2005-08-05 00:44:28 -040069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 break;
71
Suresh Siddha7237d3d2009-03-30 13:55:30 -080072 case ACPI_MADT_TYPE_LOCAL_X2APIC:
73 {
74 struct acpi_madt_local_x2apic *p =
75 (struct acpi_madt_local_x2apic *)header;
Hanjun Guo07f438d2015-03-24 14:02:34 +000076 pr_debug("X2APIC (apic_id[0x%02x] uid[0x%02x] %s)\n",
77 p->local_apic_id, p->uid,
78 (p->lapic_flags & ACPI_MADT_ENABLED) ? "enabled" : "disabled");
Suresh Siddha7237d3d2009-03-30 13:55:30 -080079 }
80 break;
81
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030082 case ACPI_MADT_TYPE_IO_APIC:
Len Brown4be44fc2005-08-05 00:44:28 -040083 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030084 struct acpi_madt_io_apic *p =
85 (struct acpi_madt_io_apic *)header;
Hanjun Guo07f438d2015-03-24 14:02:34 +000086 pr_debug("IOAPIC (id[0x%02x] address[0x%08x] gsi_base[%d])\n",
87 p->id, p->address, p->global_irq_base);
Len Brown4be44fc2005-08-05 00:44:28 -040088 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 break;
90
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030091 case ACPI_MADT_TYPE_INTERRUPT_OVERRIDE:
Len Brown4be44fc2005-08-05 00:44:28 -040092 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030093 struct acpi_madt_interrupt_override *p =
94 (struct acpi_madt_interrupt_override *)header;
Hanjun Guo730bf5e2014-02-20 15:45:33 +080095 pr_info("INT_SRC_OVR (bus %d bus_irq %d global_irq %d %s %s)\n",
96 p->bus, p->source_irq, p->global_irq,
97 mps_inti_flags_polarity[p->inti_flags & ACPI_MADT_POLARITY_MASK],
98 mps_inti_flags_trigger[(p->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2]);
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030099 if (p->inti_flags &
100 ~(ACPI_MADT_POLARITY_MASK | ACPI_MADT_TRIGGER_MASK))
Hanjun Guo730bf5e2014-02-20 15:45:33 +0800101 pr_info("INT_SRC_OVR unexpected reserved flags: 0x%x\n",
102 p->inti_flags &
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300103 ~(ACPI_MADT_POLARITY_MASK | ACPI_MADT_TRIGGER_MASK));
Len Brown4be44fc2005-08-05 00:44:28 -0400104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 break;
106
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300107 case ACPI_MADT_TYPE_NMI_SOURCE:
Len Brown4be44fc2005-08-05 00:44:28 -0400108 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300109 struct acpi_madt_nmi_source *p =
110 (struct acpi_madt_nmi_source *)header;
Hanjun Guo730bf5e2014-02-20 15:45:33 +0800111 pr_info("NMI_SRC (%s %s global_irq %d)\n",
112 mps_inti_flags_polarity[p->inti_flags & ACPI_MADT_POLARITY_MASK],
113 mps_inti_flags_trigger[(p->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2],
114 p->global_irq);
Len Brown4be44fc2005-08-05 00:44:28 -0400115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 break;
117
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300118 case ACPI_MADT_TYPE_LOCAL_APIC_NMI:
Len Brown4be44fc2005-08-05 00:44:28 -0400119 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300120 struct acpi_madt_local_apic_nmi *p =
121 (struct acpi_madt_local_apic_nmi *)header;
Hanjun Guo730bf5e2014-02-20 15:45:33 +0800122 pr_info("LAPIC_NMI (acpi_id[0x%02x] %s %s lint[0x%x])\n",
123 p->processor_id,
124 mps_inti_flags_polarity[p->inti_flags & ACPI_MADT_POLARITY_MASK ],
125 mps_inti_flags_trigger[(p->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2],
126 p->lint);
Len Brown4be44fc2005-08-05 00:44:28 -0400127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 break;
129
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800130 case ACPI_MADT_TYPE_LOCAL_X2APIC_NMI:
131 {
132 u16 polarity, trigger;
133 struct acpi_madt_local_x2apic_nmi *p =
134 (struct acpi_madt_local_x2apic_nmi *)header;
135
136 polarity = p->inti_flags & ACPI_MADT_POLARITY_MASK;
137 trigger = (p->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2;
138
Hanjun Guo730bf5e2014-02-20 15:45:33 +0800139 pr_info("X2APIC_NMI (uid[0x%02x] %s %s lint[0x%x])\n",
140 p->uid,
141 mps_inti_flags_polarity[polarity],
142 mps_inti_flags_trigger[trigger],
143 p->lint);
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800144 }
145 break;
146
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300147 case ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE:
Len Brown4be44fc2005-08-05 00:44:28 -0400148 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300149 struct acpi_madt_local_apic_override *p =
150 (struct acpi_madt_local_apic_override *)header;
Hanjun Guo730bf5e2014-02-20 15:45:33 +0800151 pr_info("LAPIC_ADDR_OVR (address[%p])\n",
152 (void *)(unsigned long)p->address);
Len Brown4be44fc2005-08-05 00:44:28 -0400153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 break;
155
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300156 case ACPI_MADT_TYPE_IO_SAPIC:
Len Brown4be44fc2005-08-05 00:44:28 -0400157 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300158 struct acpi_madt_io_sapic *p =
159 (struct acpi_madt_io_sapic *)header;
Hanjun Guo07f438d2015-03-24 14:02:34 +0000160 pr_debug("IOSAPIC (id[0x%x] address[%p] gsi_base[%d])\n",
161 p->id, (void *)(unsigned long)p->address,
162 p->global_irq_base);
Len Brown4be44fc2005-08-05 00:44:28 -0400163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 break;
165
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300166 case ACPI_MADT_TYPE_LOCAL_SAPIC:
Len Brown4be44fc2005-08-05 00:44:28 -0400167 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300168 struct acpi_madt_local_sapic *p =
169 (struct acpi_madt_local_sapic *)header;
Hanjun Guo07f438d2015-03-24 14:02:34 +0000170 pr_debug("LSAPIC (acpi_id[0x%02x] lsapic_id[0x%02x] lsapic_eid[0x%02x] %s)\n",
171 p->processor_id, p->id, p->eid,
172 (p->lapic_flags & ACPI_MADT_ENABLED) ? "enabled" : "disabled");
Len Brown4be44fc2005-08-05 00:44:28 -0400173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 break;
175
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300176 case ACPI_MADT_TYPE_INTERRUPT_SOURCE:
Len Brown4be44fc2005-08-05 00:44:28 -0400177 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300178 struct acpi_madt_interrupt_source *p =
179 (struct acpi_madt_interrupt_source *)header;
Hanjun Guo730bf5e2014-02-20 15:45:33 +0800180 pr_info("PLAT_INT_SRC (%s %s type[0x%x] id[0x%04x] eid[0x%x] iosapic_vector[0x%x] global_irq[0x%x]\n",
181 mps_inti_flags_polarity[p->inti_flags & ACPI_MADT_POLARITY_MASK],
182 mps_inti_flags_trigger[(p->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2],
183 p->type, p->id, p->eid, p->io_sapic_vector,
184 p->global_irq);
Len Brown4be44fc2005-08-05 00:44:28 -0400185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 break;
187
188 default:
Hanjun Guo730bf5e2014-02-20 15:45:33 +0800189 pr_warn("Found unsupported MADT entry (type = 0x%x)\n",
190 header->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 break;
192 }
193}
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195int __init
Ashwin Chaugulef08bb472014-11-26 22:01:13 +0800196acpi_parse_entries(char *id, unsigned long table_size,
197 acpi_tbl_entry_handler handler,
198 struct acpi_table_header *table_header,
199 int entry_id, unsigned int max_entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300201 struct acpi_subtable_header *entry;
Ashwin Chaugulef08bb472014-11-26 22:01:13 +0800202 int count = 0;
Len Brown6eb87fe2007-02-10 22:17:07 -0500203 unsigned long table_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Len Brown68ca4062010-02-19 00:09:22 -0500205 if (acpi_disabled)
Len Browne5b8fc62009-07-07 23:22:58 -0400206 return -ENODEV;
207
Ashwin Chaugulef08bb472014-11-26 22:01:13 +0800208 if (!id || !handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return -EINVAL;
210
Ashwin Chaugulef08bb472014-11-26 22:01:13 +0800211 if (!table_size)
212 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Len Brown6eb87fe2007-02-10 22:17:07 -0500214 if (!table_header) {
Hanjun Guo730bf5e2014-02-20 15:45:33 +0800215 pr_warn("%4.4s not present\n", id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return -ENODEV;
217 }
218
Len Brown6eb87fe2007-02-10 22:17:07 -0500219 table_end = (unsigned long)table_header + table_header->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 /* Parse all entries looking for a match. */
222
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300223 entry = (struct acpi_subtable_header *)
Len Brown6eb87fe2007-02-10 22:17:07 -0500224 ((unsigned long)table_header + table_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300226 while (((unsigned long)entry) + sizeof(struct acpi_subtable_header) <
Len Brown6eb87fe2007-02-10 22:17:07 -0500227 table_end) {
Len Brown4be44fc2005-08-05 00:44:28 -0400228 if (entry->type == entry_id
Tomasz Nowicki4ceacd02014-11-26 22:01:14 +0800229 && (!max_entries || count < max_entries)) {
Fenghua Yu369d9132012-09-25 11:11:43 -0700230 if (handler(entry, table_end))
Ashwin Chaugulef08bb472014-11-26 22:01:13 +0800231 return -EINVAL;
Fenghua Yu369d9132012-09-25 11:11:43 -0700232
Tomasz Nowicki4ceacd02014-11-26 22:01:14 +0800233 count++;
234 }
235
Fenghua Yu369d9132012-09-25 11:11:43 -0700236 /*
237 * If entry->length is 0, break from this loop to avoid
238 * infinite loop.
239 */
240 if (entry->length == 0) {
Hanjun Guo730bf5e2014-02-20 15:45:33 +0800241 pr_err("[%4.4s:0x%02x] Invalid zero length\n", id, entry_id);
Ashwin Chaugulef08bb472014-11-26 22:01:13 +0800242 return -EINVAL;
Fenghua Yu369d9132012-09-25 11:11:43 -0700243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300245 entry = (struct acpi_subtable_header *)
Len Brown4be44fc2005-08-05 00:44:28 -0400246 ((unsigned long)entry + entry->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
Ashwin Chaugulef08bb472014-11-26 22:01:13 +0800248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (max_entries && count > max_entries) {
Hanjun Guo730bf5e2014-02-20 15:45:33 +0800250 pr_warn("[%4.4s:0x%02x] ignored %i entries of %i found\n",
251 id, entry_id, count - max_entries, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253
Ashwin Chaugulef08bb472014-11-26 22:01:13 +0800254 return count;
255}
256
257int __init
258acpi_table_parse_entries(char *id,
259 unsigned long table_size,
260 int entry_id,
261 acpi_tbl_entry_handler handler,
262 unsigned int max_entries)
263{
264 struct acpi_table_header *table_header = NULL;
265 acpi_size tbl_size;
266 int count;
267 u32 instance = 0;
268
269 if (acpi_disabled)
270 return -ENODEV;
271
272 if (!id || !handler)
273 return -EINVAL;
274
275 if (!strncmp(id, ACPI_SIG_MADT, 4))
276 instance = acpi_apic_instance;
277
278 acpi_get_table_with_size(id, instance, &table_header, &tbl_size);
279 if (!table_header) {
280 pr_warn("%4.4s not present\n", id);
281 return -ENODEV;
282 }
283
284 count = acpi_parse_entries(id, table_size, handler, table_header,
285 entry_id, max_entries);
286
Yinghai Lu7d972772009-02-07 15:39:41 -0800287 early_acpi_os_unmap_memory((char *)table_header, tbl_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return count;
289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300292acpi_table_parse_madt(enum acpi_madt_type id,
Lv Zhengb43e1062013-01-12 15:29:38 +0000293 acpi_tbl_entry_handler handler, unsigned int max_entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Len Brown6eb87fe2007-02-10 22:17:07 -0500295 return acpi_table_parse_entries(ACPI_SIG_MADT,
Len Brown4be44fc2005-08-05 00:44:28 -0400296 sizeof(struct acpi_table_madt), id,
297 handler, max_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
Len Brown7f8f97c2007-02-10 21:28:03 -0500300/**
301 * acpi_table_parse - find table with @id, run @handler on it
Len Brown7f8f97c2007-02-10 21:28:03 -0500302 * @id: table id to find
303 * @handler: handler to run
304 *
305 * Scan the ACPI System Descriptor Table (STD) for a table matching @id,
tangchenf8a571b2014-01-06 16:47:59 +0800306 * run @handler on it.
307 *
308 * Return 0 if table found, -errno if not.
Len Brown7f8f97c2007-02-10 21:28:03 -0500309 */
Lv Zhengb43e1062013-01-12 15:29:38 +0000310int __init acpi_table_parse(char *id, acpi_tbl_table_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300312 struct acpi_table_header *table = NULL;
Yinghai Lu7d972772009-02-07 15:39:41 -0800313 acpi_size tbl_size;
Len Browna1fdcc02007-03-11 03:26:14 -0400314
Len Brown68ca4062010-02-19 00:09:22 -0500315 if (acpi_disabled)
Len Browne5b8fc62009-07-07 23:22:58 -0400316 return -ENODEV;
317
tangchende2d1a72014-01-06 16:43:54 +0800318 if (!id || !handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return -EINVAL;
320
Len Browna1fdcc02007-03-11 03:26:14 -0400321 if (strncmp(id, ACPI_SIG_MADT, 4) == 0)
Yinghai Lu7d972772009-02-07 15:39:41 -0800322 acpi_get_table_with_size(id, acpi_apic_instance, &table, &tbl_size);
Len Browna1fdcc02007-03-11 03:26:14 -0400323 else
Yinghai Lu7d972772009-02-07 15:39:41 -0800324 acpi_get_table_with_size(id, 0, &table, &tbl_size);
Len Browna1fdcc02007-03-11 03:26:14 -0400325
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300326 if (table) {
327 handler(table);
Yinghai Lu7d972772009-02-07 15:39:41 -0800328 early_acpi_os_unmap_memory(table, tbl_size);
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300329 return 0;
Len Brown7f8f97c2007-02-10 21:28:03 -0500330 } else
Hanjun Guo95df8122013-12-05 23:42:38 +0800331 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
Len Browna1fdcc02007-03-11 03:26:14 -0400334/*
335 * The BIOS is supposed to supply a single APIC/MADT,
336 * but some report two. Provide a knob to use either.
337 * (don't you wish instance 0 and 1 were not the same?)
338 */
339static void __init check_multiple_madt(void)
340{
341 struct acpi_table_header *table = NULL;
Yinghai Lu7d972772009-02-07 15:39:41 -0800342 acpi_size tbl_size;
Len Browna1fdcc02007-03-11 03:26:14 -0400343
Yinghai Lu7d972772009-02-07 15:39:41 -0800344 acpi_get_table_with_size(ACPI_SIG_MADT, 2, &table, &tbl_size);
Len Browna1fdcc02007-03-11 03:26:14 -0400345 if (table) {
Hanjun Guo730bf5e2014-02-20 15:45:33 +0800346 pr_warn("BIOS bug: multiple APIC/MADT found, using %d\n",
347 acpi_apic_instance);
348 pr_warn("If \"acpi_apic_instance=%d\" works better, "
349 "notify linux-acpi@vger.kernel.org\n",
350 acpi_apic_instance ? 0 : 2);
Yinghai Lu7d972772009-02-07 15:39:41 -0800351 early_acpi_os_unmap_memory(table, tbl_size);
Len Browna1fdcc02007-03-11 03:26:14 -0400352
353 } else
354 acpi_apic_instance = 0;
355
356 return;
357}
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359/*
360 * acpi_table_init()
361 *
362 * find RSDP, find and checksum SDT/XSDT.
363 * checksum all tables, print SDT/XSDT
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300364 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 * result: sdt_entry[] is initialized
366 */
367
Len Brown4be44fc2005-08-05 00:44:28 -0400368int __init acpi_table_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
Len Brown9e3a9d12009-02-06 14:00:56 -0500370 acpi_status status;
371
Lv Zheng4fc0a7e2014-05-31 08:15:02 +0800372 if (acpi_verify_table_checksum) {
373 pr_info("Early table checksum verification enabled\n");
374 acpi_gbl_verify_table_checksum = TRUE;
375 } else {
376 pr_info("Early table checksum verification disabled\n");
377 acpi_gbl_verify_table_checksum = FALSE;
378 }
379
Len Brown9e3a9d12009-02-06 14:00:56 -0500380 status = acpi_initialize_tables(initial_tables, ACPI_MAX_TABLES, 0);
381 if (ACPI_FAILURE(status))
Hanjun Guo95df8122013-12-05 23:42:38 +0800382 return -EINVAL;
Len Brown9e3a9d12009-02-06 14:00:56 -0500383
Len Browna1fdcc02007-03-11 03:26:14 -0400384 check_multiple_madt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return 0;
386}
Len Browna1fdcc02007-03-11 03:26:14 -0400387
388static int __init acpi_parse_apic_instance(char *str)
389{
Cyrill Gorcunovf0df2d62008-08-20 16:41:45 -0700390 if (!str)
391 return -EINVAL;
Len Browna1fdcc02007-03-11 03:26:14 -0400392
Christoph Jaeger3d915892014-06-13 21:49:58 +0200393 if (kstrtoint(str, 0, &acpi_apic_instance))
394 return -EINVAL;
Len Browna1fdcc02007-03-11 03:26:14 -0400395
Hanjun Guo730bf5e2014-02-20 15:45:33 +0800396 pr_notice("Shall use APIC/MADT table %d\n", acpi_apic_instance);
Len Browna1fdcc02007-03-11 03:26:14 -0400397
398 return 0;
399}
400
401early_param("acpi_apic_instance", acpi_parse_apic_instance);
Lv Zheng4fc0a7e2014-05-31 08:15:02 +0800402
403static int __init acpi_force_table_verification_setup(char *s)
404{
405 acpi_verify_table_checksum = true;
406
407 return 0;
408}
409
410early_param("acpi_force_table_verification", acpi_force_table_verification_setup);