2 * acpi_tables.c - ACPI Boot-Time Table Parsing
4 * Copyright (C) 2001 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
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
22 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
26 #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>
37 #define PREFIX "ACPI: "
39 #define ACPI_MAX_TABLES 128
41 static char *acpi_table_signatures
[ACPI_TABLE_COUNT
] = {
42 [ACPI_TABLE_UNKNOWN
] = "????",
63 static char *mps_inti_flags_polarity
[] = { "dfl", "high", "res", "low" };
64 static char *mps_inti_flags_trigger
[] = { "dfl", "edge", "res", "level" };
66 /* System Description Table (RSDT/XSDT) */
67 struct acpi_table_sdt
{
69 enum acpi_table_id id
;
71 } __attribute__ ((packed
));
73 static unsigned long sdt_pa
; /* Physical Address */
74 static unsigned long sdt_count
; /* Table count */
76 static struct acpi_table_sdt sdt_entry
[ACPI_MAX_TABLES
] __initdata
;
78 void acpi_table_print(struct acpi_table_header
*header
, unsigned long phys_addr
)
85 /* Some table signatures aren't good table names */
87 if (!strncmp((char *)&header
->signature
,
88 acpi_table_signatures
[ACPI_APIC
],
89 sizeof(header
->signature
))) {
91 } else if (!strncmp((char *)&header
->signature
,
92 acpi_table_signatures
[ACPI_FADT
],
93 sizeof(header
->signature
))) {
96 name
= header
->signature
;
98 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
);
105 void acpi_table_print_madt_entry(acpi_table_entry_header
* header
)
110 switch (header
->type
) {
112 case ACPI_MADT_LAPIC
:
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",
119 p
->flags
.enabled
? "enabled" : "disabled");
123 case ACPI_MADT_IOAPIC
:
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
);
133 case ACPI_MADT_INT_SRC_OVR
:
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",
150 case ACPI_MADT_NMI_SRC
:
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
],
162 case ACPI_MADT_LAPIC_NMI
:
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",
169 mps_inti_flags_polarity
[p
->flags
.polarity
],
170 mps_inti_flags_trigger
[p
->flags
.trigger
],
175 case ACPI_MADT_LAPIC_ADDR_OVR
:
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
);
185 case ACPI_MADT_IOSAPIC
:
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
,
196 case ACPI_MADT_LSAPIC
:
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");
207 case ACPI_MADT_PLAT_INT_SRC
:
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
,
221 printk(KERN_WARNING PREFIX
222 "Found unsupported MADT entry (type = 0x%x)\n",
229 acpi_table_compute_checksum(void *table_pointer
, unsigned long length
)
231 u8
*p
= (u8
*) table_pointer
;
232 unsigned long remains
= length
;
233 unsigned long sum
= 0;
245 * acpi_get_table_header_early()
246 * for acpi_blacklisted(), acpi_table_get_sdt()
249 acpi_get_table_header_early(enum acpi_table_id id
,
250 struct acpi_table_header
**header
)
253 enum acpi_table_id temp_id
;
255 /* DSDT is different from the rest */
261 /* Locate the table. */
263 for (i
= 0; i
< sdt_count
; i
++) {
264 if (sdt_entry
[i
].id
!= temp_id
)
267 __acpi_map_table(sdt_entry
[i
].pa
, sdt_entry
[i
].size
);
269 printk(KERN_WARNING PREFIX
"Unable to map %s\n",
270 acpi_table_signatures
[temp_id
]);
277 printk(KERN_WARNING PREFIX
"%s not present\n",
278 acpi_table_signatures
[id
]);
282 /* Map the DSDT header via the pointer in the FADT */
283 if (id
== ACPI_DSDT
) {
284 struct fadt_descriptor
*fadt
=
285 (struct fadt_descriptor
*)*header
;
287 if (fadt
->revision
== 3 && fadt
->Xdsdt
) {
288 *header
= (void *)__acpi_map_table(fadt
->Xdsdt
,
291 } else if (fadt
->V1_dsdt
) {
292 *header
= (void *)__acpi_map_table(fadt
->V1_dsdt
,
299 printk(KERN_WARNING PREFIX
"Unable to map DSDT\n");
308 acpi_table_parse_madt_family(enum acpi_table_id id
,
309 unsigned long madt_size
,
311 acpi_madt_entry_handler handler
,
312 unsigned int max_entries
)
315 acpi_table_entry_header
*entry
;
316 unsigned int count
= 0;
317 unsigned long madt_end
;
323 /* Locate the MADT (if exists). There should only be one. */
325 for (i
= 0; i
< sdt_count
; i
++) {
326 if (sdt_entry
[i
].id
!= id
)
329 __acpi_map_table(sdt_entry
[i
].pa
, sdt_entry
[i
].size
);
331 printk(KERN_WARNING PREFIX
"Unable to map %s\n",
332 acpi_table_signatures
[id
]);
339 printk(KERN_WARNING PREFIX
"%s not present\n",
340 acpi_table_signatures
[id
]);
344 madt_end
= (unsigned long)madt
+ sdt_entry
[i
].size
;
346 /* Parse all entries looking for a match. */
348 entry
= (acpi_table_entry_header
*)
349 ((unsigned long)madt
+ madt_size
);
351 while (((unsigned long)entry
) + sizeof(acpi_table_entry_header
) <
353 if (entry
->type
== entry_id
354 && (!max_entries
|| count
++ < max_entries
))
355 if (handler(entry
, madt_end
))
358 entry
= (acpi_table_entry_header
*)
359 ((unsigned long)entry
+ entry
->length
);
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
);
371 acpi_table_parse_madt(enum acpi_madt_entry_id id
,
372 acpi_madt_entry_handler handler
, unsigned int max_entries
)
374 return acpi_table_parse_madt_family(ACPI_APIC
,
375 sizeof(struct acpi_table_madt
), id
,
376 handler
, max_entries
);
379 int __init
acpi_table_parse(enum acpi_table_id id
, acpi_table_handler handler
)
387 for (i
= 0; i
< sdt_count
; i
++) {
388 if (sdt_entry
[i
].id
!= id
)
392 handler(sdt_entry
[i
].pa
, sdt_entry
[i
].size
);
395 printk(KERN_WARNING PREFIX
396 "%d duplicate %s table ignored.\n", count
,
397 acpi_table_signatures
[id
]);
403 static int __init
acpi_table_get_sdt(struct acpi_table_rsdp
*rsdp
)
405 struct acpi_table_header
*header
= NULL
;
406 unsigned int i
, id
= 0;
411 /* First check XSDT (but only on ACPI 2.0-compatible systems) */
413 if ((rsdp
->revision
>= 2) &&
414 (((struct acpi20_table_rsdp
*)rsdp
)->xsdt_address
)) {
416 struct acpi_table_xsdt
*mapped_xsdt
= NULL
;
418 sdt_pa
= ((struct acpi20_table_rsdp
*)rsdp
)->xsdt_address
;
420 /* map in just the header */
421 header
= (struct acpi_table_header
*)
422 __acpi_map_table(sdt_pa
, sizeof(struct acpi_table_header
));
425 printk(KERN_WARNING PREFIX
426 "Unable to map XSDT header\n");
430 /* remap in the entire table before processing */
431 mapped_xsdt
= (struct acpi_table_xsdt
*)
432 __acpi_map_table(sdt_pa
, header
->length
);
434 printk(KERN_WARNING PREFIX
"Unable to map XSDT\n");
437 header
= &mapped_xsdt
->header
;
439 if (strncmp(header
->signature
, "XSDT", 4)) {
440 printk(KERN_WARNING PREFIX
441 "XSDT signature incorrect\n");
445 if (acpi_table_compute_checksum(header
, header
->length
)) {
446 printk(KERN_WARNING PREFIX
"Invalid XSDT checksum\n");
451 (header
->length
- sizeof(struct acpi_table_header
)) >> 3;
452 if (sdt_count
> ACPI_MAX_TABLES
) {
453 printk(KERN_WARNING PREFIX
454 "Truncated %lu XSDT entries\n",
455 (sdt_count
- ACPI_MAX_TABLES
));
456 sdt_count
= ACPI_MAX_TABLES
;
459 for (i
= 0; i
< sdt_count
; i
++)
460 sdt_entry
[i
].pa
= (unsigned long)mapped_xsdt
->entry
[i
];
463 /* Then check RSDT */
465 else if (rsdp
->rsdt_address
) {
467 struct acpi_table_rsdt
*mapped_rsdt
= NULL
;
469 sdt_pa
= rsdp
->rsdt_address
;
471 /* map in just the header */
472 header
= (struct acpi_table_header
*)
473 __acpi_map_table(sdt_pa
, sizeof(struct acpi_table_header
));
475 printk(KERN_WARNING PREFIX
476 "Unable to map RSDT header\n");
480 /* remap in the entire table before processing */
481 mapped_rsdt
= (struct acpi_table_rsdt
*)
482 __acpi_map_table(sdt_pa
, header
->length
);
484 printk(KERN_WARNING PREFIX
"Unable to map RSDT\n");
487 header
= &mapped_rsdt
->header
;
489 if (strncmp(header
->signature
, "RSDT", 4)) {
490 printk(KERN_WARNING PREFIX
491 "RSDT signature incorrect\n");
495 if (acpi_table_compute_checksum(header
, header
->length
)) {
496 printk(KERN_WARNING PREFIX
"Invalid RSDT checksum\n");
501 (header
->length
- sizeof(struct acpi_table_header
)) >> 2;
502 if (sdt_count
> ACPI_MAX_TABLES
) {
503 printk(KERN_WARNING PREFIX
504 "Truncated %lu RSDT entries\n",
505 (sdt_count
- ACPI_MAX_TABLES
));
506 sdt_count
= ACPI_MAX_TABLES
;
509 for (i
= 0; i
< sdt_count
; i
++)
510 sdt_entry
[i
].pa
= (unsigned long)mapped_rsdt
->entry
[i
];
514 printk(KERN_WARNING PREFIX
515 "No System Description Table (RSDT/XSDT) specified in RSDP\n");
519 acpi_table_print(header
, sdt_pa
);
521 for (i
= 0; i
< sdt_count
; i
++) {
523 /* map in just the header */
524 header
= (struct acpi_table_header
*)
525 __acpi_map_table(sdt_entry
[i
].pa
,
526 sizeof(struct acpi_table_header
));
530 /* remap in the entire table before processing */
531 header
= (struct acpi_table_header
*)
532 __acpi_map_table(sdt_entry
[i
].pa
, header
->length
);
536 acpi_table_print(header
, sdt_entry
[i
].pa
);
538 if (acpi_table_compute_checksum(header
, header
->length
)) {
539 printk(KERN_WARNING
" >>> ERROR: Invalid checksum\n");
543 sdt_entry
[i
].size
= header
->length
;
545 for (id
= 0; id
< ACPI_TABLE_COUNT
; id
++) {
546 if (!strncmp((char *)&header
->signature
,
547 acpi_table_signatures
[id
],
548 sizeof(header
->signature
))) {
549 sdt_entry
[i
].id
= id
;
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.
560 if (!acpi_get_table_header_early(ACPI_DSDT
, &header
))
561 acpi_table_print(header
, 0);
569 * find RSDP, find and checksum SDT/XSDT.
570 * checksum all tables, print SDT/XSDT
572 * result: sdt_entry[] is initialized
575 int __init
acpi_table_init(void)
577 struct acpi_table_rsdp
*rsdp
= NULL
;
578 unsigned long rsdp_phys
= 0;
581 /* Locate and map the Root System Description Table (RSDP) */
583 rsdp_phys
= acpi_find_rsdp();
585 printk(KERN_ERR PREFIX
"Unable to locate RSDP\n");
589 rsdp
= (struct acpi_table_rsdp
*)__acpi_map_table(rsdp_phys
,
590 sizeof(struct acpi_table_rsdp
));
592 printk(KERN_WARNING PREFIX
"Unable to map RSDP\n");
596 printk(KERN_DEBUG PREFIX
597 "RSDP (v%3.3d %6.6s ) @ 0x%p\n",
598 rsdp
->revision
, rsdp
->oem_id
, (void *)rsdp_phys
);
600 if (rsdp
->revision
< 2)
602 acpi_table_compute_checksum(rsdp
,
603 sizeof(struct acpi_table_rsdp
));
606 acpi_table_compute_checksum(rsdp
,
607 ((struct acpi20_table_rsdp
*)
611 printk(KERN_WARNING
" >>> ERROR: Invalid checksum\n");
615 /* Locate and map the System Description table (RSDT/XSDT) */
617 if (acpi_table_get_sdt(rsdp
))