blob: bfb3bfcf9e91017a4d35ec51b073076c7f724829 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
27#include <linux/kernel.h>
28#include <linux/sched.h>
29#include <linux/smp.h>
30#include <linux/string.h>
31#include <linux/types.h>
32#include <linux/irq.h>
33#include <linux/errno.h>
34#include <linux/acpi.h>
35#include <linux/bootmem.h>
36
37#define PREFIX "ACPI: "
38
Len Brown04348e62005-12-30 02:44:59 -050039#define ACPI_MAX_TABLES 128
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41static char *acpi_table_signatures[ACPI_TABLE_COUNT] = {
Len Brown4be44fc2005-08-05 00:44:28 -040042 [ACPI_TABLE_UNKNOWN] = "????",
43 [ACPI_APIC] = "APIC",
44 [ACPI_BOOT] = "BOOT",
45 [ACPI_DBGP] = "DBGP",
46 [ACPI_DSDT] = "DSDT",
47 [ACPI_ECDT] = "ECDT",
48 [ACPI_ETDT] = "ETDT",
49 [ACPI_FADT] = "FACP",
50 [ACPI_FACS] = "FACS",
51 [ACPI_OEMX] = "OEM",
52 [ACPI_PSDT] = "PSDT",
53 [ACPI_SBST] = "SBST",
54 [ACPI_SLIT] = "SLIT",
55 [ACPI_SPCR] = "SPCR",
56 [ACPI_SRAT] = "SRAT",
57 [ACPI_SSDT] = "SSDT",
58 [ACPI_SPMI] = "SPMI",
59 [ACPI_HPET] = "HPET",
60 [ACPI_MCFG] = "MCFG",
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
63static char *mps_inti_flags_polarity[] = { "dfl", "high", "res", "low" };
64static char *mps_inti_flags_trigger[] = { "dfl", "edge", "res", "level" };
65
66/* System Description Table (RSDT/XSDT) */
67struct acpi_table_sdt {
Len Brown4be44fc2005-08-05 00:44:28 -040068 unsigned long pa;
69 enum acpi_table_id id;
70 unsigned long size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071} __attribute__ ((packed));
72
Len Brown4be44fc2005-08-05 00:44:28 -040073static unsigned long sdt_pa; /* Physical Address */
74static unsigned long sdt_count; /* Table count */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Len Brown04348e62005-12-30 02:44:59 -050076static struct acpi_table_sdt sdt_entry[ACPI_MAX_TABLES] __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Len Brown4be44fc2005-08-05 00:44:28 -040078void acpi_table_print(struct acpi_table_header *header, unsigned long phys_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Len Brown4be44fc2005-08-05 00:44:28 -040080 char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 if (!header)
83 return;
84
85 /* Some table signatures aren't good table names */
86
Len Brown4be44fc2005-08-05 00:44:28 -040087 if (!strncmp((char *)&header->signature,
88 acpi_table_signatures[ACPI_APIC],
89 sizeof(header->signature))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 name = "MADT";
Len Brown4be44fc2005-08-05 00:44:28 -040091 } else if (!strncmp((char *)&header->signature,
92 acpi_table_signatures[ACPI_FADT],
93 sizeof(header->signature))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 name = "FADT";
Len Brown4be44fc2005-08-05 00:44:28 -040095 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 name = header->signature;
97
Len Brown4be44fc2005-08-05 00:44:28 -040098 printk(KERN_DEBUG PREFIX
99 "%.4s (v%3.3d %6.6s %8.8s 0x%08x %.4s 0x%08x) @ 0x%p\n", name,
100 header->revision, header->oem_id, header->oem_table_id,
101 header->oem_revision, header->asl_compiler_id,
102 header->asl_compiler_revision, (void *)phys_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
Len Brown4be44fc2005-08-05 00:44:28 -0400105void acpi_table_print_madt_entry(acpi_table_entry_header * header)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 if (!header)
108 return;
109
110 switch (header->type) {
111
112 case ACPI_MADT_LAPIC:
Len Brown4be44fc2005-08-05 00:44:28 -0400113 {
114 struct acpi_table_lapic *p =
115 (struct acpi_table_lapic *)header;
116 printk(KERN_INFO PREFIX
117 "LAPIC (acpi_id[0x%02x] lapic_id[0x%02x] %s)\n",
118 p->acpi_id, p->id,
119 p->flags.enabled ? "enabled" : "disabled");
120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 break;
122
123 case ACPI_MADT_IOAPIC:
Len Brown4be44fc2005-08-05 00:44:28 -0400124 {
125 struct acpi_table_ioapic *p =
126 (struct acpi_table_ioapic *)header;
127 printk(KERN_INFO PREFIX
128 "IOAPIC (id[0x%02x] address[0x%08x] gsi_base[%d])\n",
129 p->id, p->address, p->global_irq_base);
130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 break;
132
133 case ACPI_MADT_INT_SRC_OVR:
Len Brown4be44fc2005-08-05 00:44:28 -0400134 {
135 struct acpi_table_int_src_ovr *p =
136 (struct acpi_table_int_src_ovr *)header;
137 printk(KERN_INFO PREFIX
138 "INT_SRC_OVR (bus %d bus_irq %d global_irq %d %s %s)\n",
139 p->bus, p->bus_irq, p->global_irq,
140 mps_inti_flags_polarity[p->flags.polarity],
141 mps_inti_flags_trigger[p->flags.trigger]);
142 if (p->flags.reserved)
143 printk(KERN_INFO PREFIX
144 "INT_SRC_OVR unexpected reserved flags: 0x%x\n",
145 p->flags.reserved);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Len Brown4be44fc2005-08-05 00:44:28 -0400147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 break;
149
150 case ACPI_MADT_NMI_SRC:
Len Brown4be44fc2005-08-05 00:44:28 -0400151 {
152 struct acpi_table_nmi_src *p =
153 (struct acpi_table_nmi_src *)header;
154 printk(KERN_INFO PREFIX
155 "NMI_SRC (%s %s global_irq %d)\n",
156 mps_inti_flags_polarity[p->flags.polarity],
157 mps_inti_flags_trigger[p->flags.trigger],
158 p->global_irq);
159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 break;
161
162 case ACPI_MADT_LAPIC_NMI:
Len Brown4be44fc2005-08-05 00:44:28 -0400163 {
164 struct acpi_table_lapic_nmi *p =
165 (struct acpi_table_lapic_nmi *)header;
166 printk(KERN_INFO PREFIX
167 "LAPIC_NMI (acpi_id[0x%02x] %s %s lint[0x%x])\n",
168 p->acpi_id,
169 mps_inti_flags_polarity[p->flags.polarity],
170 mps_inti_flags_trigger[p->flags.trigger],
171 p->lint);
172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 break;
174
175 case ACPI_MADT_LAPIC_ADDR_OVR:
Len Brown4be44fc2005-08-05 00:44:28 -0400176 {
177 struct acpi_table_lapic_addr_ovr *p =
178 (struct acpi_table_lapic_addr_ovr *)header;
179 printk(KERN_INFO PREFIX
180 "LAPIC_ADDR_OVR (address[%p])\n",
181 (void *)(unsigned long)p->address);
182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 break;
184
185 case ACPI_MADT_IOSAPIC:
Len Brown4be44fc2005-08-05 00:44:28 -0400186 {
187 struct acpi_table_iosapic *p =
188 (struct acpi_table_iosapic *)header;
189 printk(KERN_INFO PREFIX
190 "IOSAPIC (id[0x%x] address[%p] gsi_base[%d])\n",
191 p->id, (void *)(unsigned long)p->address,
192 p->global_irq_base);
193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 break;
195
196 case ACPI_MADT_LSAPIC:
Len Brown4be44fc2005-08-05 00:44:28 -0400197 {
198 struct acpi_table_lsapic *p =
199 (struct acpi_table_lsapic *)header;
200 printk(KERN_INFO PREFIX
201 "LSAPIC (acpi_id[0x%02x] lsapic_id[0x%02x] lsapic_eid[0x%02x] %s)\n",
202 p->acpi_id, p->id, p->eid,
203 p->flags.enabled ? "enabled" : "disabled");
204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 break;
206
207 case ACPI_MADT_PLAT_INT_SRC:
Len Brown4be44fc2005-08-05 00:44:28 -0400208 {
209 struct acpi_table_plat_int_src *p =
210 (struct acpi_table_plat_int_src *)header;
211 printk(KERN_INFO PREFIX
212 "PLAT_INT_SRC (%s %s type[0x%x] id[0x%04x] eid[0x%x] iosapic_vector[0x%x] global_irq[0x%x]\n",
213 mps_inti_flags_polarity[p->flags.polarity],
214 mps_inti_flags_trigger[p->flags.trigger],
215 p->type, p->id, p->eid, p->iosapic_vector,
216 p->global_irq);
217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 break;
219
220 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400221 printk(KERN_WARNING PREFIX
222 "Found unsupported MADT entry (type = 0x%x)\n",
223 header->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 break;
225 }
226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228static int
Len Brown4be44fc2005-08-05 00:44:28 -0400229acpi_table_compute_checksum(void *table_pointer, unsigned long length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Len Brown4be44fc2005-08-05 00:44:28 -0400231 u8 *p = (u8 *) table_pointer;
232 unsigned long remains = length;
233 unsigned long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 if (!p || !length)
236 return -EINVAL;
237
238 while (remains--)
239 sum += *p++;
240
241 return (sum & 0xFF);
242}
243
244/*
245 * acpi_get_table_header_early()
246 * for acpi_blacklisted(), acpi_table_get_sdt()
247 */
248int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400249acpi_get_table_header_early(enum acpi_table_id id,
250 struct acpi_table_header **header)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
252 unsigned int i;
253 enum acpi_table_id temp_id;
254
255 /* DSDT is different from the rest */
256 if (id == ACPI_DSDT)
257 temp_id = ACPI_FADT;
258 else
259 temp_id = id;
260
261 /* Locate the table. */
262
263 for (i = 0; i < sdt_count; i++) {
264 if (sdt_entry[i].id != temp_id)
265 continue;
266 *header = (void *)
Len Brown4be44fc2005-08-05 00:44:28 -0400267 __acpi_map_table(sdt_entry[i].pa, sdt_entry[i].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 if (!*header) {
269 printk(KERN_WARNING PREFIX "Unable to map %s\n",
270 acpi_table_signatures[temp_id]);
271 return -ENODEV;
272 }
273 break;
274 }
275
276 if (!*header) {
277 printk(KERN_WARNING PREFIX "%s not present\n",
278 acpi_table_signatures[id]);
279 return -ENODEV;
280 }
281
282 /* Map the DSDT header via the pointer in the FADT */
283 if (id == ACPI_DSDT) {
Bob Moore793c2382006-03-31 00:00:00 -0500284 struct fadt_descriptor *fadt =
285 (struct fadt_descriptor *)*header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 if (fadt->revision == 3 && fadt->Xdsdt) {
Len Brown4be44fc2005-08-05 00:44:28 -0400288 *header = (void *)__acpi_map_table(fadt->Xdsdt,
289 sizeof(struct
290 acpi_table_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 } else if (fadt->V1_dsdt) {
Len Brown4be44fc2005-08-05 00:44:28 -0400292 *header = (void *)__acpi_map_table(fadt->V1_dsdt,
293 sizeof(struct
294 acpi_table_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 } else
296 *header = NULL;
297
298 if (!*header) {
299 printk(KERN_WARNING PREFIX "Unable to map DSDT\n");
300 return -ENODEV;
301 }
302 }
303
304 return 0;
305}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400308acpi_table_parse_madt_family(enum acpi_table_id id,
309 unsigned long madt_size,
310 int entry_id,
311 acpi_madt_entry_handler handler,
312 unsigned int max_entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Len Brown4be44fc2005-08-05 00:44:28 -0400314 void *madt = NULL;
315 acpi_table_entry_header *entry;
316 unsigned int count = 0;
317 unsigned long madt_end;
318 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 if (!handler)
321 return -EINVAL;
322
323 /* Locate the MADT (if exists). There should only be one. */
324
325 for (i = 0; i < sdt_count; i++) {
326 if (sdt_entry[i].id != id)
327 continue;
328 madt = (void *)
Len Brown4be44fc2005-08-05 00:44:28 -0400329 __acpi_map_table(sdt_entry[i].pa, sdt_entry[i].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 if (!madt) {
331 printk(KERN_WARNING PREFIX "Unable to map %s\n",
332 acpi_table_signatures[id]);
333 return -ENODEV;
334 }
335 break;
336 }
337
338 if (!madt) {
339 printk(KERN_WARNING PREFIX "%s not present\n",
340 acpi_table_signatures[id]);
341 return -ENODEV;
342 }
343
Len Brown4be44fc2005-08-05 00:44:28 -0400344 madt_end = (unsigned long)madt + sdt_entry[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 /* Parse all entries looking for a match. */
347
348 entry = (acpi_table_entry_header *)
Len Brown4be44fc2005-08-05 00:44:28 -0400349 ((unsigned long)madt + madt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Len Brown4be44fc2005-08-05 00:44:28 -0400351 while (((unsigned long)entry) + sizeof(acpi_table_entry_header) <
352 madt_end) {
353 if (entry->type == entry_id
354 && (!max_entries || count++ < max_entries))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (handler(entry, madt_end))
356 return -EINVAL;
357
358 entry = (acpi_table_entry_header *)
Len Brown4be44fc2005-08-05 00:44:28 -0400359 ((unsigned long)entry + entry->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
361 if (max_entries && count > max_entries) {
362 printk(KERN_WARNING PREFIX "[%s:0x%02x] ignored %i entries of "
363 "%i found\n", acpi_table_signatures[id], entry_id,
364 count - max_entries, count);
365 }
366
367 return count;
368}
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400371acpi_table_parse_madt(enum acpi_madt_entry_id id,
372 acpi_madt_entry_handler handler, unsigned int max_entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Len Brown4be44fc2005-08-05 00:44:28 -0400374 return acpi_table_parse_madt_family(ACPI_APIC,
375 sizeof(struct acpi_table_madt), id,
376 handler, max_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Len Brown4be44fc2005-08-05 00:44:28 -0400379int __init acpi_table_parse(enum acpi_table_id id, acpi_table_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Len Brown4be44fc2005-08-05 00:44:28 -0400381 int count = 0;
382 unsigned int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 if (!handler)
385 return -EINVAL;
386
387 for (i = 0; i < sdt_count; i++) {
388 if (sdt_entry[i].id != id)
389 continue;
390 count++;
391 if (count == 1)
392 handler(sdt_entry[i].pa, sdt_entry[i].size);
393
394 else
Len Brown4be44fc2005-08-05 00:44:28 -0400395 printk(KERN_WARNING PREFIX
396 "%d duplicate %s table ignored.\n", count,
397 acpi_table_signatures[id]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
399
400 return count;
401}
402
Len Brown4be44fc2005-08-05 00:44:28 -0400403static int __init acpi_table_get_sdt(struct acpi_table_rsdp *rsdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
405 struct acpi_table_header *header = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400406 unsigned int i, id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 if (!rsdp)
409 return -EINVAL;
410
411 /* First check XSDT (but only on ACPI 2.0-compatible systems) */
412
413 if ((rsdp->revision >= 2) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400414 (((struct acpi20_table_rsdp *)rsdp)->xsdt_address)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Len Brown4be44fc2005-08-05 00:44:28 -0400416 struct acpi_table_xsdt *mapped_xsdt = NULL;
417
418 sdt_pa = ((struct acpi20_table_rsdp *)rsdp)->xsdt_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 /* map in just the header */
421 header = (struct acpi_table_header *)
Len Brown4be44fc2005-08-05 00:44:28 -0400422 __acpi_map_table(sdt_pa, sizeof(struct acpi_table_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 if (!header) {
Len Brown4be44fc2005-08-05 00:44:28 -0400425 printk(KERN_WARNING PREFIX
426 "Unable to map XSDT header\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return -ENODEV;
428 }
429
430 /* remap in the entire table before processing */
431 mapped_xsdt = (struct acpi_table_xsdt *)
Len Brown4be44fc2005-08-05 00:44:28 -0400432 __acpi_map_table(sdt_pa, header->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (!mapped_xsdt) {
434 printk(KERN_WARNING PREFIX "Unable to map XSDT\n");
435 return -ENODEV;
436 }
437 header = &mapped_xsdt->header;
438
439 if (strncmp(header->signature, "XSDT", 4)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400440 printk(KERN_WARNING PREFIX
441 "XSDT signature incorrect\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return -ENODEV;
443 }
444
445 if (acpi_table_compute_checksum(header, header->length)) {
446 printk(KERN_WARNING PREFIX "Invalid XSDT checksum\n");
447 return -ENODEV;
448 }
449
Len Brown4be44fc2005-08-05 00:44:28 -0400450 sdt_count =
451 (header->length - sizeof(struct acpi_table_header)) >> 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (sdt_count > ACPI_MAX_TABLES) {
Len Brown4be44fc2005-08-05 00:44:28 -0400453 printk(KERN_WARNING PREFIX
454 "Truncated %lu XSDT entries\n",
455 (sdt_count - ACPI_MAX_TABLES));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 sdt_count = ACPI_MAX_TABLES;
457 }
458
459 for (i = 0; i < sdt_count; i++)
Len Brown4be44fc2005-08-05 00:44:28 -0400460 sdt_entry[i].pa = (unsigned long)mapped_xsdt->entry[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462
463 /* Then check RSDT */
464
465 else if (rsdp->rsdt_address) {
466
Len Brown4be44fc2005-08-05 00:44:28 -0400467 struct acpi_table_rsdt *mapped_rsdt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 sdt_pa = rsdp->rsdt_address;
470
471 /* map in just the header */
472 header = (struct acpi_table_header *)
Len Brown4be44fc2005-08-05 00:44:28 -0400473 __acpi_map_table(sdt_pa, sizeof(struct acpi_table_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (!header) {
Len Brown4be44fc2005-08-05 00:44:28 -0400475 printk(KERN_WARNING PREFIX
476 "Unable to map RSDT header\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return -ENODEV;
478 }
479
480 /* remap in the entire table before processing */
481 mapped_rsdt = (struct acpi_table_rsdt *)
Len Brown4be44fc2005-08-05 00:44:28 -0400482 __acpi_map_table(sdt_pa, header->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (!mapped_rsdt) {
484 printk(KERN_WARNING PREFIX "Unable to map RSDT\n");
485 return -ENODEV;
486 }
487 header = &mapped_rsdt->header;
488
489 if (strncmp(header->signature, "RSDT", 4)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400490 printk(KERN_WARNING PREFIX
491 "RSDT signature incorrect\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return -ENODEV;
493 }
494
495 if (acpi_table_compute_checksum(header, header->length)) {
496 printk(KERN_WARNING PREFIX "Invalid RSDT checksum\n");
497 return -ENODEV;
498 }
499
Len Brown4be44fc2005-08-05 00:44:28 -0400500 sdt_count =
501 (header->length - sizeof(struct acpi_table_header)) >> 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (sdt_count > ACPI_MAX_TABLES) {
Len Brown4be44fc2005-08-05 00:44:28 -0400503 printk(KERN_WARNING PREFIX
504 "Truncated %lu RSDT entries\n",
505 (sdt_count - ACPI_MAX_TABLES));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 sdt_count = ACPI_MAX_TABLES;
507 }
508
509 for (i = 0; i < sdt_count; i++)
Len Brown4be44fc2005-08-05 00:44:28 -0400510 sdt_entry[i].pa = (unsigned long)mapped_rsdt->entry[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512
513 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400514 printk(KERN_WARNING PREFIX
515 "No System Description Table (RSDT/XSDT) specified in RSDP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return -ENODEV;
517 }
518
519 acpi_table_print(header, sdt_pa);
520
521 for (i = 0; i < sdt_count; i++) {
522
523 /* map in just the header */
524 header = (struct acpi_table_header *)
Len Brown4be44fc2005-08-05 00:44:28 -0400525 __acpi_map_table(sdt_entry[i].pa,
526 sizeof(struct acpi_table_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (!header)
528 continue;
529
530 /* remap in the entire table before processing */
531 header = (struct acpi_table_header *)
Len Brown4be44fc2005-08-05 00:44:28 -0400532 __acpi_map_table(sdt_entry[i].pa, header->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (!header)
534 continue;
Len Brown4be44fc2005-08-05 00:44:28 -0400535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 acpi_table_print(header, sdt_entry[i].pa);
537
538 if (acpi_table_compute_checksum(header, header->length)) {
539 printk(KERN_WARNING " >>> ERROR: Invalid checksum\n");
540 continue;
541 }
542
543 sdt_entry[i].size = header->length;
544
545 for (id = 0; id < ACPI_TABLE_COUNT; id++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400546 if (!strncmp((char *)&header->signature,
547 acpi_table_signatures[id],
548 sizeof(header->signature))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 sdt_entry[i].id = id;
550 }
551 }
552 }
553
554 /*
555 * The DSDT is *not* in the RSDT (why not? no idea.) but we want
556 * to print its info, because this is what people usually blacklist
557 * against. Unfortunately, we don't know the phys_addr, so just
558 * print 0. Maybe no one will notice.
559 */
Len Brown4be44fc2005-08-05 00:44:28 -0400560 if (!acpi_get_table_header_early(ACPI_DSDT, &header))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 acpi_table_print(header, 0);
562
563 return 0;
564}
565
566/*
567 * acpi_table_init()
568 *
569 * find RSDP, find and checksum SDT/XSDT.
570 * checksum all tables, print SDT/XSDT
571 *
572 * result: sdt_entry[] is initialized
573 */
574
Len Brown4be44fc2005-08-05 00:44:28 -0400575int __init acpi_table_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Len Brown4be44fc2005-08-05 00:44:28 -0400577 struct acpi_table_rsdp *rsdp = NULL;
578 unsigned long rsdp_phys = 0;
579 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 /* Locate and map the Root System Description Table (RSDP) */
582
583 rsdp_phys = acpi_find_rsdp();
584 if (!rsdp_phys) {
585 printk(KERN_ERR PREFIX "Unable to locate RSDP\n");
586 return -ENODEV;
587 }
588
Tolentino, Matthew E23dd8422006-03-26 01:37:09 -0800589 rsdp = (struct acpi_table_rsdp *)__acpi_map_table(rsdp_phys,
590 sizeof(struct acpi_table_rsdp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (!rsdp) {
592 printk(KERN_WARNING PREFIX "Unable to map RSDP\n");
593 return -ENODEV;
594 }
595
Len Brown4be44fc2005-08-05 00:44:28 -0400596 printk(KERN_DEBUG PREFIX
597 "RSDP (v%3.3d %6.6s ) @ 0x%p\n",
598 rsdp->revision, rsdp->oem_id, (void *)rsdp_phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 if (rsdp->revision < 2)
Len Brown4be44fc2005-08-05 00:44:28 -0400601 result =
602 acpi_table_compute_checksum(rsdp,
603 sizeof(struct acpi_table_rsdp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 else
Len Brown4be44fc2005-08-05 00:44:28 -0400605 result =
606 acpi_table_compute_checksum(rsdp,
607 ((struct acpi20_table_rsdp *)
608 rsdp)->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 if (result) {
611 printk(KERN_WARNING " >>> ERROR: Invalid checksum\n");
612 return -ENODEV;
613 }
614
615 /* Locate and map the System Description table (RSDT/XSDT) */
616
617 if (acpi_table_get_sdt(rsdp))
618 return -ENODEV;
619
620 return 0;
621}