blob: 45bd17313c4a8a9cc92a274cc5fbaa88cdee328e [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/smp.h>
29#include <linux/string.h>
30#include <linux/types.h>
31#include <linux/irq.h>
32#include <linux/errno.h>
33#include <linux/acpi.h>
34#include <linux/bootmem.h>
35
36#define PREFIX "ACPI: "
37
Len Brown04348e62005-12-30 02:44:59 -050038#define ACPI_MAX_TABLES 128
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040static char *mps_inti_flags_polarity[] = { "dfl", "high", "res", "low" };
41static char *mps_inti_flags_trigger[] = { "dfl", "edge", "res", "level" };
42
Alexey Starikovskiyad718602007-02-02 19:48:19 +030043static struct acpi_table_desc initial_tables[ACPI_MAX_TABLES] __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030045void acpi_table_print_madt_entry(struct acpi_subtable_header * header)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
47 if (!header)
48 return;
49
50 switch (header->type) {
51
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030052 case ACPI_MADT_TYPE_LOCAL_APIC:
Len Brown4be44fc2005-08-05 00:44:28 -040053 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030054 struct acpi_madt_local_apic *p =
55 (struct acpi_madt_local_apic *)header;
Len Brown4be44fc2005-08-05 00:44:28 -040056 printk(KERN_INFO PREFIX
57 "LAPIC (acpi_id[0x%02x] lapic_id[0x%02x] %s)\n",
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030058 p->processor_id, p->id,
59 (p->lapic_flags & ACPI_MADT_ENABLED) ? "enabled" : "disabled");
Len Brown4be44fc2005-08-05 00:44:28 -040060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 break;
62
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030063 case ACPI_MADT_TYPE_IO_APIC:
Len Brown4be44fc2005-08-05 00:44:28 -040064 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030065 struct acpi_madt_io_apic *p =
66 (struct acpi_madt_io_apic *)header;
Len Brown4be44fc2005-08-05 00:44:28 -040067 printk(KERN_INFO PREFIX
68 "IOAPIC (id[0x%02x] address[0x%08x] gsi_base[%d])\n",
69 p->id, p->address, p->global_irq_base);
70 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 break;
72
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030073 case ACPI_MADT_TYPE_INTERRUPT_OVERRIDE:
Len Brown4be44fc2005-08-05 00:44:28 -040074 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030075 struct acpi_madt_interrupt_override *p =
76 (struct acpi_madt_interrupt_override *)header;
Len Brown4be44fc2005-08-05 00:44:28 -040077 printk(KERN_INFO PREFIX
78 "INT_SRC_OVR (bus %d bus_irq %d global_irq %d %s %s)\n",
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030079 p->bus, p->source_irq, p->global_irq,
80 mps_inti_flags_polarity[p->inti_flags & ACPI_MADT_POLARITY_MASK],
81 mps_inti_flags_trigger[(p->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2]);
82 if (p->inti_flags &
83 ~(ACPI_MADT_POLARITY_MASK | ACPI_MADT_TRIGGER_MASK))
Len Brown4be44fc2005-08-05 00:44:28 -040084 printk(KERN_INFO PREFIX
85 "INT_SRC_OVR unexpected reserved flags: 0x%x\n",
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030086 p->inti_flags &
87 ~(ACPI_MADT_POLARITY_MASK | ACPI_MADT_TRIGGER_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Len Brown4be44fc2005-08-05 00:44:28 -040089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 break;
91
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030092 case ACPI_MADT_TYPE_NMI_SOURCE:
Len Brown4be44fc2005-08-05 00:44:28 -040093 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030094 struct acpi_madt_nmi_source *p =
95 (struct acpi_madt_nmi_source *)header;
Len Brown4be44fc2005-08-05 00:44:28 -040096 printk(KERN_INFO PREFIX
97 "NMI_SRC (%s %s global_irq %d)\n",
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030098 mps_inti_flags_polarity[p->inti_flags & ACPI_MADT_POLARITY_MASK],
99 mps_inti_flags_trigger[(p->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2],
Len Brown4be44fc2005-08-05 00:44:28 -0400100 p->global_irq);
101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 break;
103
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300104 case ACPI_MADT_TYPE_LOCAL_APIC_NMI:
Len Brown4be44fc2005-08-05 00:44:28 -0400105 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300106 struct acpi_madt_local_apic_nmi *p =
107 (struct acpi_madt_local_apic_nmi *)header;
Len Brown4be44fc2005-08-05 00:44:28 -0400108 printk(KERN_INFO PREFIX
109 "LAPIC_NMI (acpi_id[0x%02x] %s %s lint[0x%x])\n",
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300110 p->processor_id,
111 mps_inti_flags_polarity[p->inti_flags & ACPI_MADT_POLARITY_MASK ],
112 mps_inti_flags_trigger[(p->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2],
Len Brown4be44fc2005-08-05 00:44:28 -0400113 p->lint);
114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 break;
116
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300117 case ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE:
Len Brown4be44fc2005-08-05 00:44:28 -0400118 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300119 struct acpi_madt_local_apic_override *p =
120 (struct acpi_madt_local_apic_override *)header;
Len Brown4be44fc2005-08-05 00:44:28 -0400121 printk(KERN_INFO PREFIX
122 "LAPIC_ADDR_OVR (address[%p])\n",
123 (void *)(unsigned long)p->address);
124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 break;
126
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300127 case ACPI_MADT_TYPE_IO_SAPIC:
Len Brown4be44fc2005-08-05 00:44:28 -0400128 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300129 struct acpi_madt_io_sapic *p =
130 (struct acpi_madt_io_sapic *)header;
Len Brown4be44fc2005-08-05 00:44:28 -0400131 printk(KERN_INFO PREFIX
132 "IOSAPIC (id[0x%x] address[%p] gsi_base[%d])\n",
133 p->id, (void *)(unsigned long)p->address,
134 p->global_irq_base);
135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 break;
137
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300138 case ACPI_MADT_TYPE_LOCAL_SAPIC:
Len Brown4be44fc2005-08-05 00:44:28 -0400139 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300140 struct acpi_madt_local_sapic *p =
141 (struct acpi_madt_local_sapic *)header;
Len Brown4be44fc2005-08-05 00:44:28 -0400142 printk(KERN_INFO PREFIX
143 "LSAPIC (acpi_id[0x%02x] lsapic_id[0x%02x] lsapic_eid[0x%02x] %s)\n",
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300144 p->processor_id, p->id, p->eid,
145 (p->lapic_flags & ACPI_MADT_ENABLED) ? "enabled" : "disabled");
Len Brown4be44fc2005-08-05 00:44:28 -0400146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 break;
148
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300149 case ACPI_MADT_TYPE_INTERRUPT_SOURCE:
Len Brown4be44fc2005-08-05 00:44:28 -0400150 {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300151 struct acpi_madt_interrupt_source *p =
152 (struct acpi_madt_interrupt_source *)header;
Len Brown4be44fc2005-08-05 00:44:28 -0400153 printk(KERN_INFO PREFIX
154 "PLAT_INT_SRC (%s %s type[0x%x] id[0x%04x] eid[0x%x] iosapic_vector[0x%x] global_irq[0x%x]\n",
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300155 mps_inti_flags_polarity[p->inti_flags & ACPI_MADT_POLARITY_MASK],
156 mps_inti_flags_trigger[(p->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2],
157 p->type, p->id, p->eid, p->io_sapic_vector,
Len Brown4be44fc2005-08-05 00:44:28 -0400158 p->global_irq);
159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 break;
161
162 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400163 printk(KERN_WARNING PREFIX
164 "Found unsupported MADT entry (type = 0x%x)\n",
165 header->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 break;
167 }
168}
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171int __init
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300172acpi_table_parse_madt_family(char *id,
Len Brown4be44fc2005-08-05 00:44:28 -0400173 unsigned long madt_size,
174 int entry_id,
175 acpi_madt_entry_handler handler,
176 unsigned int max_entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300178 struct acpi_table_header *madt = NULL;
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300179 struct acpi_subtable_header *entry;
Len Brown4be44fc2005-08-05 00:44:28 -0400180 unsigned int count = 0;
181 unsigned long madt_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 if (!handler)
184 return -EINVAL;
185
186 /* Locate the MADT (if exists). There should only be one. */
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300187 acpi_get_table(id, 0, &madt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 if (!madt) {
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300190 printk(KERN_WARNING PREFIX "%4.4s not present\n", id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return -ENODEV;
192 }
193
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300194 madt_end = (unsigned long)madt + madt->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 /* Parse all entries looking for a match. */
197
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300198 entry = (struct acpi_subtable_header *)
Len Brown4be44fc2005-08-05 00:44:28 -0400199 ((unsigned long)madt + madt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300201 while (((unsigned long)entry) + sizeof(struct acpi_subtable_header) <
Len Brown4be44fc2005-08-05 00:44:28 -0400202 madt_end) {
203 if (entry->type == entry_id
204 && (!max_entries || count++ < max_entries))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (handler(entry, madt_end))
206 return -EINVAL;
207
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300208 entry = (struct acpi_subtable_header *)
Len Brown4be44fc2005-08-05 00:44:28 -0400209 ((unsigned long)entry + entry->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
211 if (max_entries && count > max_entries) {
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300212 printk(KERN_WARNING PREFIX "[%4.4s:0x%02x] ignored %i entries of "
213 "%i found\n", id, entry_id, count - max_entries, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 }
215
216 return count;
217}
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300220acpi_table_parse_madt(enum acpi_madt_type id,
Len Brown4be44fc2005-08-05 00:44:28 -0400221 acpi_madt_entry_handler handler, unsigned int max_entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300223 return acpi_table_parse_madt_family(ACPI_SIG_MADT,
Len Brown4be44fc2005-08-05 00:44:28 -0400224 sizeof(struct acpi_table_madt), id,
225 handler, max_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300228int __init acpi_table_parse(char *id, acpi_table_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300230 struct acpi_table_header *table = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (!handler)
232 return -EINVAL;
233
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300234 acpi_get_table(id, 0, &table);
235 if (table) {
236 handler(table);
237 return 1;
238 } else
239 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
242/*
243 * acpi_table_init()
244 *
245 * find RSDP, find and checksum SDT/XSDT.
246 * checksum all tables, print SDT/XSDT
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300247 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 * result: sdt_entry[] is initialized
249 */
250
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300251
Len Brown4be44fc2005-08-05 00:44:28 -0400252int __init acpi_table_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300254 acpi_initialize_tables(initial_tables, ACPI_MAX_TABLES, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 return 0;
256}