]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/x86/kernel/acpi/boot.c
iwlwifi: don't include iwl-dev.h from iwl-devtrace.h
[net-next-2.6.git] / arch / x86 / kernel / acpi / boot.c
CommitLineData
1da177e4
LT
1/*
2 * boot.c - Architecture-Specific Low-Level ACPI Boot Support
3 *
4 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
5 * Copyright (C) 2001 Jun Nakajima <jun.nakajima@intel.com>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 */
25
26#include <linux/init.h>
1da177e4 27#include <linux/acpi.h>
d66bea57 28#include <linux/acpi_pmtmr.h>
1da177e4 29#include <linux/efi.h>
73fea175 30#include <linux/cpumask.h>
1da177e4 31#include <linux/module.h>
aea00143 32#include <linux/dmi.h>
b33fa1f3 33#include <linux/irq.h>
f0f4c343
AD
34#include <linux/bootmem.h>
35#include <linux/ioport.h>
a31f8205 36#include <linux/pci.h>
1da177e4 37
b72d0db9 38#include <asm/pci_x86.h>
1da177e4
LT
39#include <asm/pgtable.h>
40#include <asm/io_apic.h>
41#include <asm/apic.h>
42#include <asm/io.h>
1da177e4 43#include <asm/mpspec.h>
dfac2189 44#include <asm/smp.h>
1da177e4 45
e8924acb 46static int __initdata acpi_force = 0;
237889bf 47u32 acpi_rsdt_forced;
c636f753 48int acpi_disabled;
df3bb57d
AK
49EXPORT_SYMBOL(acpi_disabled);
50
1da177e4 51#ifdef CONFIG_X86_64
1dcdd3d1 52# include <asm/proto.h>
0271f910 53# include <asm/numa_64.h>
4be44fcd 54#endif /* X86 */
1da177e4
LT
55
56#define BAD_MADT_ENTRY(entry, end) ( \
57 (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
5f3b1a8b 58 ((struct acpi_subtable_header *)entry)->length < sizeof(*entry))
1da177e4
LT
59
60#define PREFIX "ACPI: "
61
90d53909 62int acpi_noirq; /* skip ACPI IRQ initialization */
6e4be1ff
YL
63int acpi_pci_disabled; /* skip ACPI PCI scan and IRQ initialization */
64EXPORT_SYMBOL(acpi_pci_disabled);
1da177e4
LT
65int acpi_ht __initdata = 1; /* enable HT */
66
67int acpi_lapic;
68int acpi_ioapic;
69int acpi_strict;
1da177e4 70
5f3b1a8b 71u8 acpi_sci_flags __initdata;
1da177e4
LT
72int acpi_sci_override_gsi __initdata;
73int acpi_skip_timer_override __initdata;
fa18f477 74int acpi_use_timer_override __initdata;
1da177e4
LT
75
76#ifdef CONFIG_X86_LOCAL_APIC
77static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
78#endif
79
80#ifndef __HAVE_ARCH_CMPXCHG
81#warning ACPI uses CMPXCHG, i486 and later hardware
82#endif
83
1da177e4
LT
84/* --------------------------------------------------------------------------
85 Boot-time Configuration
86 -------------------------------------------------------------------------- */
87
88/*
89 * The default interrupt routing model is PIC (8259). This gets
27b46d76 90 * overridden if IOAPICs are enumerated (below).
1da177e4 91 */
4be44fcd 92enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC;
1da177e4 93
1da177e4
LT
94
95/*
96 * Temporarily use the virtual area starting from FIX_IO_APIC_BASE_END,
97 * to map the target physical address. The problem is that set_fixmap()
98 * provides a single page, and it is possible that the page is not
99 * sufficient.
100 * By using this area, we can map up to MAX_IO_APICS pages temporarily,
101 * i.e. until the next __va_range() call.
102 *
103 * Important Safety Note: The fixed I/O APIC page numbers are *subtracted*
104 * from the fixed base. That's why we start at FIX_IO_APIC_BASE_END and
105 * count idx down while incrementing the phys address.
106 */
2fdf0741 107char *__init __acpi_map_table(unsigned long phys, unsigned long size)
1da177e4 108{
1da177e4 109
f34fa82b
YL
110 if (!phys || !size)
111 return NULL;
112
7d97277b
YL
113 return early_ioremap(phys, size);
114}
115void __init __acpi_unmap_table(char *map, unsigned long size)
116{
117 if (!map || !size)
118 return;
1da177e4 119
7d97277b 120 early_iounmap(map, size);
1da177e4 121}
1da177e4 122
1da177e4 123#ifdef CONFIG_X86_LOCAL_APIC
15a58ed1 124static int __init acpi_parse_madt(struct acpi_table_header *table)
1da177e4 125{
4be44fcd 126 struct acpi_table_madt *madt = NULL;
1da177e4 127
15a58ed1 128 if (!cpu_has_apic)
1da177e4
LT
129 return -EINVAL;
130
15a58ed1 131 madt = (struct acpi_table_madt *)table;
1da177e4
LT
132 if (!madt) {
133 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
134 return -ENODEV;
135 }
136
ad363f80
AS
137 if (madt->address) {
138 acpi_lapic_addr = (u64) madt->address;
1da177e4
LT
139
140 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
ad363f80 141 madt->address);
1da177e4
LT
142 }
143
306db03b
IM
144 default_acpi_madt_oem_check(madt->header.oem_id,
145 madt->header.oem_table_id);
4be44fcd 146
1da177e4
LT
147 return 0;
148}
149
dfac2189
AS
150static void __cpuinit acpi_register_lapic(int id, u8 enabled)
151{
fb3bbd6a
YL
152 unsigned int ver = 0;
153
dfac2189
AS
154 if (!enabled) {
155 ++disabled_cpus;
156 return;
157 }
158
fb3bbd6a
YL
159 if (boot_cpu_physical_apicid != -1U)
160 ver = apic_version[boot_cpu_physical_apicid];
fb3bbd6a
YL
161
162 generic_processor_info(id, ver);
dfac2189
AS
163}
164
7237d3de
SS
165static int __init
166acpi_parse_x2apic(struct acpi_subtable_header *header, const unsigned long end)
167{
168 struct acpi_madt_local_x2apic *processor = NULL;
169
170 processor = (struct acpi_madt_local_x2apic *)header;
171
172 if (BAD_MADT_ENTRY(processor, end))
173 return -EINVAL;
174
175 acpi_table_print_madt_entry(header);
176
177#ifdef CONFIG_X86_X2APIC
178 /*
179 * We need to register disabled CPU as well to permit
180 * counting disabled CPUs. This allows us to size
181 * cpus_possible_map more accurately, to permit
182 * to not preallocating memory for all NR_CPUS
183 * when we use CPU hotplug.
184 */
185 acpi_register_lapic(processor->local_apic_id, /* APIC ID */
186 processor->lapic_flags & ACPI_MADT_ENABLED);
187#else
188 printk(KERN_WARNING PREFIX "x2apic entry ignored\n");
189#endif
190
191 return 0;
192}
193
1da177e4 194static int __init
5f3b1a8b 195acpi_parse_lapic(struct acpi_subtable_header * header, const unsigned long end)
1da177e4 196{
5f3b1a8b 197 struct acpi_madt_local_apic *processor = NULL;
1da177e4 198
5f3b1a8b 199 processor = (struct acpi_madt_local_apic *)header;
1da177e4
LT
200
201 if (BAD_MADT_ENTRY(processor, end))
202 return -EINVAL;
203
204 acpi_table_print_madt_entry(header);
205
7f66ae48
AR
206 /*
207 * We need to register disabled CPU as well to permit
208 * counting disabled CPUs. This allows us to size
209 * cpus_possible_map more accurately, to permit
210 * to not preallocating memory for all NR_CPUS
211 * when we use CPU hotplug.
212 */
dfac2189
AS
213 acpi_register_lapic(processor->id, /* APIC ID */
214 processor->lapic_flags & ACPI_MADT_ENABLED);
1da177e4
LT
215
216 return 0;
217}
218
ac049c1d
JS
219static int __init
220acpi_parse_sapic(struct acpi_subtable_header *header, const unsigned long end)
221{
222 struct acpi_madt_local_sapic *processor = NULL;
223
224 processor = (struct acpi_madt_local_sapic *)header;
225
226 if (BAD_MADT_ENTRY(processor, end))
227 return -EINVAL;
228
229 acpi_table_print_madt_entry(header);
230
dfac2189
AS
231 acpi_register_lapic((processor->id << 8) | processor->eid,/* APIC ID */
232 processor->lapic_flags & ACPI_MADT_ENABLED);
ac049c1d
JS
233
234 return 0;
235}
236
1da177e4 237static int __init
5f3b1a8b 238acpi_parse_lapic_addr_ovr(struct acpi_subtable_header * header,
4be44fcd 239 const unsigned long end)
1da177e4 240{
5f3b1a8b 241 struct acpi_madt_local_apic_override *lapic_addr_ovr = NULL;
1da177e4 242
5f3b1a8b 243 lapic_addr_ovr = (struct acpi_madt_local_apic_override *)header;
1da177e4
LT
244
245 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
246 return -EINVAL;
247
248 acpi_lapic_addr = lapic_addr_ovr->address;
249
250 return 0;
251}
252
7237d3de
SS
253static int __init
254acpi_parse_x2apic_nmi(struct acpi_subtable_header *header,
255 const unsigned long end)
256{
257 struct acpi_madt_local_x2apic_nmi *x2apic_nmi = NULL;
258
259 x2apic_nmi = (struct acpi_madt_local_x2apic_nmi *)header;
260
261 if (BAD_MADT_ENTRY(x2apic_nmi, end))
262 return -EINVAL;
263
264 acpi_table_print_madt_entry(header);
265
266 if (x2apic_nmi->lint != 1)
267 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
268
269 return 0;
270}
271
1da177e4 272static int __init
5f3b1a8b 273acpi_parse_lapic_nmi(struct acpi_subtable_header * header, const unsigned long end)
1da177e4 274{
5f3b1a8b 275 struct acpi_madt_local_apic_nmi *lapic_nmi = NULL;
1da177e4 276
5f3b1a8b 277 lapic_nmi = (struct acpi_madt_local_apic_nmi *)header;
1da177e4
LT
278
279 if (BAD_MADT_ENTRY(lapic_nmi, end))
280 return -EINVAL;
281
282 acpi_table_print_madt_entry(header);
283
284 if (lapic_nmi->lint != 1)
285 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
286
287 return 0;
288}
289
4be44fcd 290#endif /*CONFIG_X86_LOCAL_APIC */
1da177e4 291
8466361a 292#ifdef CONFIG_X86_IO_APIC
1da177e4
LT
293
294static int __init
5f3b1a8b 295acpi_parse_ioapic(struct acpi_subtable_header * header, const unsigned long end)
1da177e4 296{
5f3b1a8b 297 struct acpi_madt_io_apic *ioapic = NULL;
1da177e4 298
5f3b1a8b 299 ioapic = (struct acpi_madt_io_apic *)header;
1da177e4
LT
300
301 if (BAD_MADT_ENTRY(ioapic, end))
302 return -EINVAL;
4be44fcd 303
1da177e4
LT
304 acpi_table_print_madt_entry(header);
305
4be44fcd
LB
306 mp_register_ioapic(ioapic->id,
307 ioapic->address, ioapic->global_irq_base);
308
1da177e4
LT
309 return 0;
310}
311
312/*
313 * Parse Interrupt Source Override for the ACPI SCI
314 */
e82c354b 315static void __init acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
1da177e4
LT
316{
317 if (trigger == 0) /* compatible SCI trigger is level */
318 trigger = 3;
319
320 if (polarity == 0) /* compatible SCI polarity is low */
321 polarity = 3;
322
323 /* Command-line over-ride via acpi_sci= */
5f3b1a8b
AS
324 if (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)
325 trigger = (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2;
1da177e4 326
5f3b1a8b
AS
327 if (acpi_sci_flags & ACPI_MADT_POLARITY_MASK)
328 polarity = acpi_sci_flags & ACPI_MADT_POLARITY_MASK;
1da177e4
LT
329
330 /*
4be44fcd 331 * mp_config_acpi_legacy_irqs() already setup IRQs < 16
1da177e4
LT
332 * If GSI is < 16, this will update its flags,
333 * else it will create a new mp_irqs[] entry.
334 */
7bdd21ce 335 mp_override_legacy_irq(gsi, polarity, trigger, gsi);
1da177e4
LT
336
337 /*
338 * stash over-ride to indicate we've been here
cee324b1 339 * and for later update of acpi_gbl_FADT
1da177e4 340 */
7bdd21ce 341 acpi_sci_override_gsi = gsi;
1da177e4
LT
342 return;
343}
344
345static int __init
5f3b1a8b 346acpi_parse_int_src_ovr(struct acpi_subtable_header * header,
4be44fcd 347 const unsigned long end)
1da177e4 348{
5f3b1a8b 349 struct acpi_madt_interrupt_override *intsrc = NULL;
1da177e4 350
5f3b1a8b 351 intsrc = (struct acpi_madt_interrupt_override *)header;
1da177e4
LT
352
353 if (BAD_MADT_ENTRY(intsrc, end))
354 return -EINVAL;
355
356 acpi_table_print_madt_entry(header);
357
5f3b1a8b 358 if (intsrc->source_irq == acpi_gbl_FADT.sci_interrupt) {
7bdd21ce 359 acpi_sci_ioapic_setup(intsrc->global_irq,
5f3b1a8b
AS
360 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
361 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
1da177e4
LT
362 return 0;
363 }
364
365 if (acpi_skip_timer_override &&
5f3b1a8b 366 intsrc->source_irq == 0 && intsrc->global_irq == 2) {
4be44fcd
LB
367 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
368 return 0;
1da177e4
LT
369 }
370
5f3b1a8b
AS
371 mp_override_legacy_irq(intsrc->source_irq,
372 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
373 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2,
374 intsrc->global_irq);
1da177e4
LT
375
376 return 0;
377}
378
1da177e4 379static int __init
5f3b1a8b 380acpi_parse_nmi_src(struct acpi_subtable_header * header, const unsigned long end)
1da177e4 381{
5f3b1a8b 382 struct acpi_madt_nmi_source *nmi_src = NULL;
1da177e4 383
5f3b1a8b 384 nmi_src = (struct acpi_madt_nmi_source *)header;
1da177e4
LT
385
386 if (BAD_MADT_ENTRY(nmi_src, end))
387 return -EINVAL;
388
389 acpi_table_print_madt_entry(header);
390
391 /* TBD: Support nimsrc entries? */
392
393 return 0;
394}
395
4be44fcd 396#endif /* CONFIG_X86_IO_APIC */
1da177e4 397
1da177e4
LT
398/*
399 * acpi_pic_sci_set_trigger()
5f3b1a8b 400 *
1da177e4
LT
401 * use ELCR to set PIC-mode trigger type for SCI
402 *
403 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
404 * it may require Edge Trigger -- use "acpi_sci=edge"
405 *
406 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
407 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
27b46d76
SA
408 * ECLR1 is IRQs 0-7 (IRQ 0, 1, 2 must be 0)
409 * ECLR2 is IRQs 8-15 (IRQ 8, 13 must be 0)
1da177e4
LT
410 */
411
4be44fcd 412void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
1da177e4
LT
413{
414 unsigned int mask = 1 << irq;
415 unsigned int old, new;
416
417 /* Real old ELCR mask */
418 old = inb(0x4d0) | (inb(0x4d1) << 8);
419
420 /*
27b46d76 421 * If we use ACPI to set PCI IRQs, then we should clear ELCR
1da177e4
LT
422 * since we will set it correctly as we enable the PCI irq
423 * routing.
424 */
425 new = acpi_noirq ? old : 0;
426
427 /*
428 * Update SCI information in the ELCR, it isn't in the PCI
429 * routing tables..
430 */
431 switch (trigger) {
4be44fcd 432 case 1: /* Edge - clear */
1da177e4
LT
433 new &= ~mask;
434 break;
4be44fcd 435 case 3: /* Level - set */
1da177e4
LT
436 new |= mask;
437 break;
438 }
439
440 if (old == new)
441 return;
442
443 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
444 outb(new, 0x4d0);
445 outb(new >> 8, 0x4d1);
446}
447
1da177e4
LT
448int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
449{
f023d764 450 *irq = gsi;
18dce6ba
YL
451
452#ifdef CONFIG_X86_IO_APIC
453 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC)
454 setup_IO_APIC_irq_extra(gsi);
455#endif
456
1da177e4
LT
457 return 0;
458}
459
1f3a6a15
KK
460/*
461 * success: return IRQ number (>=0)
462 * failure: return < 0
463 */
e5198075 464int acpi_register_gsi(struct device *dev, u32 gsi, int trigger, int polarity)
1da177e4
LT
465{
466 unsigned int irq;
467 unsigned int plat_gsi = gsi;
468
469#ifdef CONFIG_PCI
470 /*
471 * Make sure all (legacy) PCI IRQs are set as level-triggered.
472 */
473 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
e5198075 474 if (trigger == ACPI_LEVEL_SENSITIVE)
4be44fcd 475 eisa_set_level_irq(gsi);
1da177e4
LT
476 }
477#endif
478
479#ifdef CONFIG_X86_IO_APIC
480 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
e5198075 481 plat_gsi = mp_register_gsi(dev, gsi, trigger, polarity);
1da177e4
LT
482 }
483#endif
18dce6ba
YL
484 irq = plat_gsi;
485
1da177e4
LT
486 return irq;
487}
4be44fcd 488
1da177e4
LT
489/*
490 * ACPI based hotplug support for CPU
491 */
492#ifdef CONFIG_ACPI_HOTPLUG_CPU
d8191fa4 493#include <acpi/processor.h>
009cbadb 494
0271f910
HL
495static void acpi_map_cpu2node(acpi_handle handle, int cpu, int physid)
496{
497#ifdef CONFIG_ACPI_NUMA
498 int nid;
499
500 nid = acpi_get_node(handle);
501 if (nid == -1 || !node_online(nid))
502 return;
503#ifdef CONFIG_X86_64
504 apicid_to_node[physid] = nid;
505 numa_set_node(cpu, nid);
506#else /* CONFIG_X86_32 */
507 apicid_2_node[physid] = nid;
508 cpu_to_node_map[cpu] = nid;
509#endif
510
511#endif
512}
009cbadb
SR
513
514static int __cpuinit _acpi_map_lsapic(acpi_handle handle, int *pcpu)
1da177e4 515{
73fea175
AR
516 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
517 union acpi_object *obj;
5f3b1a8b 518 struct acpi_madt_local_apic *lapic;
ee943a82 519 cpumask_var_t tmp_map, new_map;
73fea175
AR
520 u8 physid;
521 int cpu;
ee943a82 522 int retval = -ENOMEM;
73fea175
AR
523
524 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
525 return -EINVAL;
526
527 if (!buffer.length || !buffer.pointer)
528 return -EINVAL;
529
530 obj = buffer.pointer;
531 if (obj->type != ACPI_TYPE_BUFFER ||
532 obj->buffer.length < sizeof(*lapic)) {
533 kfree(buffer.pointer);
534 return -EINVAL;
535 }
536
5f3b1a8b 537 lapic = (struct acpi_madt_local_apic *)obj->buffer.pointer;
73fea175 538
5f3b1a8b
AS
539 if (lapic->header.type != ACPI_MADT_TYPE_LOCAL_APIC ||
540 !(lapic->lapic_flags & ACPI_MADT_ENABLED)) {
73fea175
AR
541 kfree(buffer.pointer);
542 return -EINVAL;
543 }
544
545 physid = lapic->id;
546
547 kfree(buffer.pointer);
548 buffer.length = ACPI_ALLOCATE_BUFFER;
549 buffer.pointer = NULL;
550
ee943a82
RR
551 if (!alloc_cpumask_var(&tmp_map, GFP_KERNEL))
552 goto out;
553
554 if (!alloc_cpumask_var(&new_map, GFP_KERNEL))
555 goto free_tmp_map;
556
557 cpumask_copy(tmp_map, cpu_present_mask);
dfac2189 558 acpi_register_lapic(physid, lapic->lapic_flags & ACPI_MADT_ENABLED);
73fea175
AR
559
560 /*
561 * If mp_register_lapic successfully generates a new logical cpu
562 * number, then the following will get us exactly what was mapped
563 */
ee943a82
RR
564 cpumask_andnot(new_map, cpu_present_mask, tmp_map);
565 if (cpumask_empty(new_map)) {
73fea175 566 printk ("Unable to map lapic to logical cpu number\n");
ee943a82
RR
567 retval = -EINVAL;
568 goto free_new_map;
73fea175
AR
569 }
570
d8191fa4
AC
571 acpi_processor_set_pdc(handle);
572
ee943a82 573 cpu = cpumask_first(new_map);
0271f910 574 acpi_map_cpu2node(handle, cpu, physid);
73fea175
AR
575
576 *pcpu = cpu;
ee943a82
RR
577 retval = 0;
578
579free_new_map:
580 free_cpumask_var(new_map);
581free_tmp_map:
582 free_cpumask_var(tmp_map);
583out:
584 return retval;
1da177e4 585}
1da177e4 586
009cbadb
SR
587/* wrapper to silence section mismatch warning */
588int __ref acpi_map_lsapic(acpi_handle handle, int *pcpu)
589{
590 return _acpi_map_lsapic(handle, pcpu);
591}
4be44fcd 592EXPORT_SYMBOL(acpi_map_lsapic);
1da177e4 593
4be44fcd 594int acpi_unmap_lsapic(int cpu)
1da177e4 595{
71fff5e6 596 per_cpu(x86_cpu_to_apicid, cpu) = -1;
9628937d 597 set_cpu_present(cpu, false);
73fea175
AR
598 num_processors--;
599
600 return (0);
1da177e4 601}
4be44fcd 602
1da177e4 603EXPORT_SYMBOL(acpi_unmap_lsapic);
4be44fcd 604#endif /* CONFIG_ACPI_HOTPLUG_CPU */
1da177e4 605
4be44fcd 606int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
b1bb248a
KK
607{
608 /* TBD */
609 return -EINVAL;
610}
4be44fcd 611
b1bb248a
KK
612EXPORT_SYMBOL(acpi_register_ioapic);
613
4be44fcd 614int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
b1bb248a
KK
615{
616 /* TBD */
617 return -EINVAL;
618}
4be44fcd 619
b1bb248a
KK
620EXPORT_SYMBOL(acpi_unregister_ioapic);
621
5f3b1a8b 622static int __init acpi_parse_sbf(struct acpi_table_header *table)
1da177e4 623{
5f3b1a8b 624 struct acpi_table_boot *sb;
1da177e4 625
5f3b1a8b 626 sb = (struct acpi_table_boot *)table;
1da177e4
LT
627 if (!sb) {
628 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
629 return -ENODEV;
630 }
631
5f3b1a8b 632 sbf_port = sb->cmos_index; /* Save CMOS port */
1da177e4
LT
633
634 return 0;
635}
636
1da177e4 637#ifdef CONFIG_HPET_TIMER
2d0c87c3 638#include <asm/hpet.h>
1da177e4 639
a1dfd851
AD
640static struct __initdata resource *hpet_res;
641
5f3b1a8b 642static int __init acpi_parse_hpet(struct acpi_table_header *table)
1da177e4
LT
643{
644 struct acpi_table_hpet *hpet_tbl;
645
5f3b1a8b 646 hpet_tbl = (struct acpi_table_hpet *)table;
1da177e4
LT
647 if (!hpet_tbl) {
648 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
649 return -ENODEV;
650 }
651
ad363f80 652 if (hpet_tbl->address.space_id != ACPI_SPACE_MEM) {
1da177e4
LT
653 printk(KERN_WARNING PREFIX "HPET timers must be located in "
654 "memory.\n");
655 return -1;
656 }
f0f4c343 657
2d0c87c3 658 hpet_address = hpet_tbl->address.address;
c8bc6f3c 659 hpet_blockid = hpet_tbl->sequence;
f4df73c2
TG
660
661 /*
662 * Some broken BIOSes advertise HPET at 0x0. We really do not
663 * want to allocate a resource there.
664 */
665 if (!hpet_address) {
666 printk(KERN_WARNING PREFIX
667 "HPET id: %#x base: %#lx is invalid\n",
668 hpet_tbl->id, hpet_address);
669 return 0;
670 }
671#ifdef CONFIG_X86_64
672 /*
673 * Some even more broken BIOSes advertise HPET at
674 * 0xfed0000000000000 instead of 0xfed00000. Fix it up and add
675 * some noise:
676 */
677 if (hpet_address == 0xfed0000000000000UL) {
678 if (!hpet_force_user) {
679 printk(KERN_WARNING PREFIX "HPET id: %#x "
680 "base: 0xfed0000000000000 is bogus\n "
681 "try hpet=force on the kernel command line to "
682 "fix it up to 0xfed00000.\n", hpet_tbl->id);
683 hpet_address = 0;
684 return 0;
685 }
686 printk(KERN_WARNING PREFIX
687 "HPET id: %#x base: 0xfed0000000000000 fixed up "
688 "to 0xfed00000.\n", hpet_tbl->id);
689 hpet_address >>= 32;
690 }
691#endif
4be44fcd 692 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
2d0c87c3 693 hpet_tbl->id, hpet_address);
1da177e4 694
a1dfd851
AD
695 /*
696 * Allocate and initialize the HPET firmware resource for adding into
697 * the resource tree during the lateinit timeframe.
698 */
699#define HPET_RESOURCE_NAME_SIZE 9
700 hpet_res = alloc_bootmem(sizeof(*hpet_res) + HPET_RESOURCE_NAME_SIZE);
701
a1dfd851
AD
702 hpet_res->name = (void *)&hpet_res[1];
703 hpet_res->flags = IORESOURCE_MEM;
704 snprintf((char *)hpet_res->name, HPET_RESOURCE_NAME_SIZE, "HPET %u",
705 hpet_tbl->sequence);
706
707 hpet_res->start = hpet_address;
708 hpet_res->end = hpet_address + (1 * 1024) - 1;
709
1da177e4
LT
710 return 0;
711}
a1dfd851
AD
712
713/*
714 * hpet_insert_resource inserts the HPET resources used into the resource
715 * tree.
716 */
717static __init int hpet_insert_resource(void)
718{
719 if (!hpet_res)
720 return 1;
721
722 return insert_resource(&iomem_resource, hpet_res);
723}
724
725late_initcall(hpet_insert_resource);
726
1da177e4
LT
727#else
728#define acpi_parse_hpet NULL
729#endif
730
5f3b1a8b 731static int __init acpi_parse_fadt(struct acpi_table_header *table)
1da177e4 732{
90660ec3 733
1da177e4
LT
734#ifdef CONFIG_X86_PM_TIMER
735 /* detect the location of the ACPI PM Timer */
5f3b1a8b 736 if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) {
1da177e4 737 /* FADT rev. 2 */
5f3b1a8b 738 if (acpi_gbl_FADT.xpm_timer_block.space_id !=
4be44fcd 739 ACPI_ADR_SPACE_SYSTEM_IO)
1da177e4
LT
740 return 0;
741
5f3b1a8b 742 pmtmr_ioport = acpi_gbl_FADT.xpm_timer_block.address;
e6e87b4b
DSL
743 /*
744 * "X" fields are optional extensions to the original V1.0
745 * fields, so we must selectively expand V1.0 fields if the
746 * corresponding X field is zero.
747 */
748 if (!pmtmr_ioport)
5f3b1a8b 749 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
1da177e4
LT
750 } else {
751 /* FADT rev. 1 */
5f3b1a8b 752 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
1da177e4
LT
753 }
754 if (pmtmr_ioport)
4be44fcd
LB
755 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
756 pmtmr_ioport);
1da177e4
LT
757#endif
758 return 0;
759}
760
1da177e4
LT
761#ifdef CONFIG_X86_LOCAL_APIC
762/*
763 * Parse LAPIC entries in MADT
764 * returns 0 on success, < 0 on error
765 */
31d2092e
AS
766
767static void __init acpi_register_lapic_address(unsigned long address)
768{
769 mp_lapic_addr = address;
770
771 set_fixmap_nocache(FIX_APIC_BASE, address);
fb3bbd6a 772 if (boot_cpu_physical_apicid == -1U) {
4c9961d5 773 boot_cpu_physical_apicid = read_apic_id();
fb3bbd6a
YL
774 apic_version[boot_cpu_physical_apicid] =
775 GET_APIC_VERSION(apic_read(APIC_LVR));
fb3bbd6a 776 }
31d2092e
AS
777}
778
cbf9bd60
YL
779static int __init early_acpi_parse_madt_lapic_addr_ovr(void)
780{
781 int count;
782
783 if (!cpu_has_apic)
784 return -ENODEV;
785
786 /*
787 * Note that the LAPIC address is obtained from the MADT (32-bit value)
788 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
789 */
790
791 count =
792 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
793 acpi_parse_lapic_addr_ovr, 0);
794 if (count < 0) {
795 printk(KERN_ERR PREFIX
796 "Error parsing LAPIC address override entry\n");
797 return count;
798 }
799
800 acpi_register_lapic_address(acpi_lapic_addr);
801
802 return count;
803}
804
4be44fcd 805static int __init acpi_parse_madt_lapic_entries(void)
1da177e4
LT
806{
807 int count;
7237d3de 808 int x2count = 0;
1da177e4 809
0fcd2709
AK
810 if (!cpu_has_apic)
811 return -ENODEV;
812
5f3b1a8b 813 /*
1da177e4
LT
814 * Note that the LAPIC address is obtained from the MADT (32-bit value)
815 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
816 */
817
4be44fcd 818 count =
5f3b1a8b 819 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
4be44fcd 820 acpi_parse_lapic_addr_ovr, 0);
1da177e4 821 if (count < 0) {
4be44fcd
LB
822 printk(KERN_ERR PREFIX
823 "Error parsing LAPIC address override entry\n");
1da177e4
LT
824 return count;
825 }
826
31d2092e 827 acpi_register_lapic_address(acpi_lapic_addr);
1da177e4 828
ac049c1d
JS
829 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_SAPIC,
830 acpi_parse_sapic, MAX_APICS);
831
7237d3de
SS
832 if (!count) {
833 x2count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_X2APIC,
834 acpi_parse_x2apic, MAX_APICS);
ac049c1d
JS
835 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC,
836 acpi_parse_lapic, MAX_APICS);
7237d3de
SS
837 }
838 if (!count && !x2count) {
1da177e4
LT
839 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
840 /* TBD: Cleanup to allow fallback to MPS */
841 return -ENODEV;
7237d3de 842 } else if (count < 0 || x2count < 0) {
1da177e4
LT
843 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
844 /* TBD: Cleanup to allow fallback to MPS */
845 return count;
846 }
847
7237d3de
SS
848 x2count =
849 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_X2APIC_NMI,
850 acpi_parse_x2apic_nmi, 0);
4be44fcd 851 count =
5f3b1a8b 852 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_NMI, acpi_parse_lapic_nmi, 0);
7237d3de 853 if (count < 0 || x2count < 0) {
1da177e4
LT
854 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
855 /* TBD: Cleanup to allow fallback to MPS */
856 return count;
857 }
858 return 0;
859}
4be44fcd 860#endif /* CONFIG_X86_LOCAL_APIC */
1da177e4 861
8466361a 862#ifdef CONFIG_X86_IO_APIC
11113f84
AS
863#define MP_ISA_BUS 0
864
d49c4288 865#ifdef CONFIG_X86_ES7000
11113f84
AS
866extern int es7000_plat;
867#endif
868
3f4a739c
YL
869int __init acpi_probe_gsi(void)
870{
871 int idx;
872 int gsi;
873 int max_gsi = 0;
874
875 if (acpi_disabled)
876 return 0;
877
878 if (!acpi_ioapic)
879 return 0;
880
881 max_gsi = 0;
882 for (idx = 0; idx < nr_ioapics; idx++) {
2a4ab640 883 gsi = mp_gsi_routing[idx].gsi_end;
3f4a739c
YL
884
885 if (gsi > max_gsi)
886 max_gsi = gsi;
887 }
888
889 return max_gsi + 1;
890}
891
c2c21745
JSR
892static void assign_to_mp_irq(struct mpc_intsrc *m,
893 struct mpc_intsrc *mp_irq)
fcfa146e 894{
c2c21745 895 memcpy(mp_irq, m, sizeof(struct mpc_intsrc));
fcfa146e
YL
896}
897
c2c21745
JSR
898static int mp_irq_cmp(struct mpc_intsrc *mp_irq,
899 struct mpc_intsrc *m)
fcfa146e 900{
c2c21745 901 return memcmp(mp_irq, m, sizeof(struct mpc_intsrc));
fcfa146e
YL
902}
903
c2c21745 904static void save_mp_irq(struct mpc_intsrc *m)
fcfa146e
YL
905{
906 int i;
907
908 for (i = 0; i < mp_irq_entries; i++) {
909 if (!mp_irq_cmp(&mp_irqs[i], m))
910 return;
911 }
912
913 assign_to_mp_irq(m, &mp_irqs[mp_irq_entries]);
914 if (++mp_irq_entries == MAX_IRQ_SOURCES)
915 panic("Max # of irq sources exceeded!!\n");
916}
917
11113f84
AS
918void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
919{
6df8809b
YL
920 int ioapic;
921 int pin;
c2c21745 922 struct mpc_intsrc mp_irq;
11113f84
AS
923
924 /*
925 * Convert 'gsi' to 'ioapic.pin'.
926 */
927 ioapic = mp_find_ioapic(gsi);
928 if (ioapic < 0)
929 return;
c3e137d1 930 pin = mp_find_ioapic_pin(ioapic, gsi);
11113f84
AS
931
932 /*
933 * TBD: This check is for faulty timer entries, where the override
934 * erroneously sets the trigger to level, resulting in a HUGE
935 * increase of timer interrupts!
936 */
937 if ((bus_irq == 0) && (trigger == 3))
938 trigger = 1;
939
c2c21745
JSR
940 mp_irq.type = MP_INTSRC;
941 mp_irq.irqtype = mp_INT;
942 mp_irq.irqflag = (trigger << 2) | polarity;
943 mp_irq.srcbus = MP_ISA_BUS;
944 mp_irq.srcbusirq = bus_irq; /* IRQ */
945 mp_irq.dstapic = mp_ioapics[ioapic].apicid; /* APIC ID */
946 mp_irq.dstirq = pin; /* INTIN# */
11113f84 947
fcfa146e 948 save_mp_irq(&mp_irq);
11113f84
AS
949}
950
951void __init mp_config_acpi_legacy_irqs(void)
952{
6df8809b
YL
953 int i;
954 int ioapic;
955 unsigned int dstapic;
c2c21745 956 struct mpc_intsrc mp_irq;
11113f84
AS
957
958#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
959 /*
960 * Fabricate the legacy ISA bus (bus #31).
961 */
962 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
963#endif
964 set_bit(MP_ISA_BUS, mp_bus_not_pci);
cfc1b9a6 965 pr_debug("Bus #%d is ISA\n", MP_ISA_BUS);
11113f84 966
d49c4288 967#ifdef CONFIG_X86_ES7000
11113f84
AS
968 /*
969 * Older generations of ES7000 have no legacy identity mappings
970 */
971 if (es7000_plat == 1)
972 return;
973#endif
974
975 /*
976 * Locate the IOAPIC that manages the ISA IRQs (0-15).
977 */
978 ioapic = mp_find_ioapic(0);
979 if (ioapic < 0)
980 return;
b5ba7e6d 981 dstapic = mp_ioapics[ioapic].apicid;
11113f84 982
11113f84
AS
983 /*
984 * Use the default configuration for the IRQs 0-15. Unless
985 * overridden by (MADT) interrupt source override entries.
986 */
987 for (i = 0; i < 16; i++) {
988 int idx;
989
990 for (idx = 0; idx < mp_irq_entries; idx++) {
c2c21745 991 struct mpc_intsrc *irq = mp_irqs + idx;
11113f84
AS
992
993 /* Do we already have a mapping for this ISA IRQ? */
c2c21745 994 if (irq->srcbus == MP_ISA_BUS && irq->srcbusirq == i)
11113f84
AS
995 break;
996
997 /* Do we already have a mapping for this IOAPIC pin */
c2c21745 998 if (irq->dstapic == dstapic && irq->dstirq == i)
11113f84
AS
999 break;
1000 }
1001
1002 if (idx != mp_irq_entries) {
1003 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
1004 continue; /* IRQ already used */
1005 }
1006
c2c21745
JSR
1007 mp_irq.type = MP_INTSRC;
1008 mp_irq.irqflag = 0; /* Conforming */
1009 mp_irq.srcbus = MP_ISA_BUS;
1010 mp_irq.dstapic = dstapic;
1011 mp_irq.irqtype = mp_INT;
1012 mp_irq.srcbusirq = i; /* Identity mapped */
1013 mp_irq.dstirq = i;
11113f84 1014
fcfa146e 1015 save_mp_irq(&mp_irq);
11113f84
AS
1016 }
1017}
1018
e5198075 1019static int mp_config_acpi_gsi(struct device *dev, u32 gsi, int trigger,
a31f8205
YL
1020 int polarity)
1021{
1022#ifdef CONFIG_X86_MPPARSE
1023 struct mpc_intsrc mp_irq;
1024 struct pci_dev *pdev;
1025 unsigned char number;
1026 unsigned int devfn;
1027 int ioapic;
1028 u8 pin;
1029
1030 if (!acpi_ioapic)
1031 return 0;
1032 if (!dev)
1033 return 0;
1034 if (dev->bus != &pci_bus_type)
1035 return 0;
1036
1037 pdev = to_pci_dev(dev);
1038 number = pdev->bus->number;
1039 devfn = pdev->devfn;
1040 pin = pdev->pin;
1041 /* print the entry should happen on mptable identically */
1042 mp_irq.type = MP_INTSRC;
1043 mp_irq.irqtype = mp_INT;
e5198075 1044 mp_irq.irqflag = (trigger == ACPI_EDGE_SENSITIVE ? 4 : 0x0c) |
a31f8205
YL
1045 (polarity == ACPI_ACTIVE_HIGH ? 1 : 3);
1046 mp_irq.srcbus = number;
1047 mp_irq.srcbusirq = (((devfn >> 3) & 0x1f) << 2) | ((pin - 1) & 3);
1048 ioapic = mp_find_ioapic(gsi);
bdfe8ac1 1049 mp_irq.dstapic = mp_ioapics[ioapic].apicid;
a31f8205
YL
1050 mp_irq.dstirq = mp_find_ioapic_pin(ioapic, gsi);
1051
1052 save_mp_irq(&mp_irq);
1053#endif
1054 return 0;
1055}
1056
e5198075 1057int mp_register_gsi(struct device *dev, u32 gsi, int trigger, int polarity)
11113f84
AS
1058{
1059 int ioapic;
1060 int ioapic_pin;
e5198075 1061 struct io_apic_irq_attr irq_attr;
11113f84
AS
1062
1063 if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
1064 return gsi;
11113f84
AS
1065
1066 /* Don't set up the ACPI SCI because it's already set up */
1067 if (acpi_gbl_FADT.sci_interrupt == gsi)
1068 return gsi;
1069
1070 ioapic = mp_find_ioapic(gsi);
1071 if (ioapic < 0) {
1072 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1073 return gsi;
1074 }
1075
c3e137d1 1076 ioapic_pin = mp_find_ioapic_pin(ioapic, gsi);
11113f84
AS
1077
1078#ifdef CONFIG_X86_32
1079 if (ioapic_renumber_irq)
1080 gsi = ioapic_renumber_irq(ioapic, gsi);
1081#endif
1082
11113f84
AS
1083 if (ioapic_pin > MP_MAX_IOAPIC_PIN) {
1084 printk(KERN_ERR "Invalid reference to IOAPIC pin "
bdfe8ac1 1085 "%d-%d\n", mp_ioapics[ioapic].apicid,
11113f84
AS
1086 ioapic_pin);
1087 return gsi;
1088 }
f1bdb523
YL
1089
1090 if (enable_update_mptable)
1091 mp_config_acpi_gsi(dev, gsi, trigger, polarity);
b9e0353f 1092
e5198075
YL
1093 set_io_apic_irq_attr(&irq_attr, ioapic, ioapic_pin,
1094 trigger == ACPI_EDGE_SENSITIVE ? 0 : 1,
1095 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
1096 io_apic_set_pci_routing(dev, gsi, &irq_attr);
b9e0353f 1097
11113f84
AS
1098 return gsi;
1099}
1100
1da177e4
LT
1101/*
1102 * Parse IOAPIC related entries in MADT
1103 * returns 0 on success, < 0 on error
1104 */
4be44fcd 1105static int __init acpi_parse_madt_ioapic_entries(void)
1da177e4
LT
1106{
1107 int count;
1108
1109 /*
1110 * ACPI interpreter is required to complete interrupt setup,
1111 * so if it is off, don't enumerate the io-apics with ACPI.
1112 * If MPS is present, it will handle them,
1113 * otherwise the system will stay in PIC mode
1114 */
6b2b171a 1115 if (acpi_disabled || acpi_noirq)
1da177e4 1116 return -ENODEV;
1da177e4 1117
5f3b1a8b 1118 if (!cpu_has_apic)
d3b6a349
AK
1119 return -ENODEV;
1120
1da177e4 1121 /*
4be44fcd 1122 * if "noapic" boot option, don't look for IO-APICs
1da177e4
LT
1123 */
1124 if (skip_ioapic_setup) {
1125 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
4be44fcd 1126 "due to 'noapic' option.\n");
1da177e4
LT
1127 return -ENODEV;
1128 }
1129
4be44fcd 1130 count =
5f3b1a8b 1131 acpi_table_parse_madt(ACPI_MADT_TYPE_IO_APIC, acpi_parse_ioapic,
4be44fcd 1132 MAX_IO_APICS);
1da177e4
LT
1133 if (!count) {
1134 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
1135 return -ENODEV;
4be44fcd 1136 } else if (count < 0) {
1da177e4
LT
1137 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
1138 return count;
1139 }
1140
4be44fcd 1141 count =
5f3b1a8b 1142 acpi_table_parse_madt(ACPI_MADT_TYPE_INTERRUPT_OVERRIDE, acpi_parse_int_src_ovr,
71f521bb 1143 nr_irqs);
1da177e4 1144 if (count < 0) {
4be44fcd
LB
1145 printk(KERN_ERR PREFIX
1146 "Error parsing interrupt source overrides entry\n");
1da177e4
LT
1147 /* TBD: Cleanup to allow fallback to MPS */
1148 return count;
1149 }
1150
1151 /*
1152 * If BIOS did not supply an INT_SRC_OVR for the SCI
1153 * pretend we got one so we can set the SCI flags.
1154 */
1155 if (!acpi_sci_override_gsi)
cee324b1 1156 acpi_sci_ioapic_setup(acpi_gbl_FADT.sci_interrupt, 0, 0);
1da177e4 1157
af901ca1 1158 /* Fill in identity legacy mappings where no override */
1da177e4
LT
1159 mp_config_acpi_legacy_irqs();
1160
4be44fcd 1161 count =
5f3b1a8b 1162 acpi_table_parse_madt(ACPI_MADT_TYPE_NMI_SOURCE, acpi_parse_nmi_src,
71f521bb 1163 nr_irqs);
1da177e4
LT
1164 if (count < 0) {
1165 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
1166 /* TBD: Cleanup to allow fallback to MPS */
1167 return count;
1168 }
1169
1170 return 0;
1171}
1172#else
1173static inline int acpi_parse_madt_ioapic_entries(void)
1174{
1175 return -1;
1176}
8466361a 1177#endif /* !CONFIG_X86_IO_APIC */
1da177e4 1178
cbf9bd60
YL
1179static void __init early_acpi_process_madt(void)
1180{
1181#ifdef CONFIG_X86_LOCAL_APIC
1182 int error;
1183
1184 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
1185
1186 /*
1187 * Parse MADT LAPIC entries
1188 */
1189 error = early_acpi_parse_madt_lapic_addr_ovr();
1190 if (!error) {
1191 acpi_lapic = 1;
1192 smp_found_config = 1;
1193 }
1194 if (error == -EINVAL) {
1195 /*
1196 * Dell Precision Workstation 410, 610 come here.
1197 */
1198 printk(KERN_ERR PREFIX
1199 "Invalid BIOS MADT, disabling ACPI\n");
1200 disable_acpi();
1201 }
1202 }
1203#endif
1204}
1205
4be44fcd 1206static void __init acpi_process_madt(void)
1da177e4
LT
1207{
1208#ifdef CONFIG_X86_LOCAL_APIC
7f8f97c3 1209 int error;
1da177e4 1210
7f8f97c3 1211 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
1da177e4
LT
1212
1213 /*
1214 * Parse MADT LAPIC entries
1215 */
1216 error = acpi_parse_madt_lapic_entries();
1217 if (!error) {
1218 acpi_lapic = 1;
1219
1220 /*
1221 * Parse MADT IO-APIC entries
1222 */
1223 error = acpi_parse_madt_ioapic_entries();
1224 if (!error) {
1225 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
1da177e4
LT
1226 acpi_ioapic = 1;
1227
1228 smp_found_config = 1;
1da177e4
LT
1229 }
1230 }
1231 if (error == -EINVAL) {
1232 /*
1233 * Dell Precision Workstation 410, 610 come here.
1234 */
4be44fcd
LB
1235 printk(KERN_ERR PREFIX
1236 "Invalid BIOS MADT, disabling ACPI\n");
1da177e4
LT
1237 disable_acpi();
1238 }
7b37b5fd
LB
1239 } else {
1240 /*
1241 * ACPI found no MADT, and so ACPI wants UP PIC mode.
1242 * In the event an MPS table was found, forget it.
1243 * Boot with "acpi=off" to use MPS on such a system.
1244 */
1245 if (smp_found_config) {
1246 printk(KERN_WARNING PREFIX
1247 "No APIC-table, disabling MPS\n");
1248 smp_found_config = 0;
1249 }
1da177e4 1250 }
69b88afa
YL
1251
1252 /*
1253 * ACPI supports both logical (e.g. Hyper-Threading) and physical
1254 * processors, where MPS only supports physical.
1255 */
1256 if (acpi_lapic && acpi_ioapic)
1257 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration "
1258 "information\n");
1259 else if (acpi_lapic)
1260 printk(KERN_INFO "Using ACPI for processor (LAPIC) "
1261 "configuration information\n");
1da177e4
LT
1262#endif
1263 return;
1264}
1265
1855256c 1266static int __init disable_acpi_irq(const struct dmi_system_id *d)
aea00143
AP
1267{
1268 if (!acpi_force) {
1269 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
1270 d->ident);
1271 acpi_noirq_set();
1272 }
1273 return 0;
1274}
1275
1855256c 1276static int __init disable_acpi_pci(const struct dmi_system_id *d)
aea00143
AP
1277{
1278 if (!acpi_force) {
1279 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
1280 d->ident);
1281 acpi_disable_pci();
1282 }
1283 return 0;
1284}
aea00143 1285
1855256c 1286static int __init dmi_disable_acpi(const struct dmi_system_id *d)
aea00143
AP
1287{
1288 if (!acpi_force) {
4be44fcd 1289 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
aea00143
AP
1290 disable_acpi();
1291 } else {
1292 printk(KERN_NOTICE
1293 "Warning: DMI blacklist says broken, but acpi forced\n");
1294 }
1295 return 0;
1296}
1297
e2079c43
RW
1298/*
1299 * Force ignoring BIOS IRQ0 pin2 override
1300 */
1301static int __init dmi_ignore_irq0_timer_override(const struct dmi_system_id *d)
1302{
8d89adf4
IM
1303 /*
1304 * The ati_ixp4x0_rev() early PCI quirk should have set
1305 * the acpi_skip_timer_override flag already:
1306 */
1307 if (!acpi_skip_timer_override) {
1308 WARN(1, KERN_ERR "ati_ixp4x0 quirk not complete.\n");
1309 pr_notice("%s detected: Ignoring BIOS IRQ0 pin2 override\n",
1310 d->ident);
1311 acpi_skip_timer_override = 1;
1312 }
e2079c43
RW
1313 return 0;
1314}
1315
aea00143
AP
1316/*
1317 * If your system is blacklisted here, but you find that acpi=force
5b4c0b6f 1318 * works for you, please contact linux-acpi@vger.kernel.org
aea00143
AP
1319 */
1320static struct dmi_system_id __initdata acpi_dmi_table[] = {
1321 /*
1322 * Boxes that need ACPI disabled
1323 */
1324 {
4be44fcd
LB
1325 .callback = dmi_disable_acpi,
1326 .ident = "IBM Thinkpad",
1327 .matches = {
1328 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1329 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
1330 },
1331 },
aea00143 1332
aea00143
AP
1333 /*
1334 * Boxes that need ACPI PCI IRQ routing disabled
1335 */
1336 {
4be44fcd
LB
1337 .callback = disable_acpi_irq,
1338 .ident = "ASUS A7V",
1339 .matches = {
1340 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1341 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1342 /* newer BIOS, Revision 1011, does work */
1343 DMI_MATCH(DMI_BIOS_VERSION,
1344 "ASUS A7V ACPI BIOS Revision 1007"),
1345 },
1346 },
74586fca
LB
1347 {
1348 /*
1349 * Latest BIOS for IBM 600E (1.16) has bad pcinum
1350 * for LPC bridge, which is needed for the PCI
1351 * interrupt links to work. DSDT fix is in bug 5966.
1352 * 2645, 2646 model numbers are shared with 600/600E/600X
1353 */
1354 .callback = disable_acpi_irq,
1355 .ident = "IBM Thinkpad 600 Series 2645",
1356 .matches = {
1357 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1358 DMI_MATCH(DMI_BOARD_NAME, "2645"),
1359 },
1360 },
1361 {
1362 .callback = disable_acpi_irq,
1363 .ident = "IBM Thinkpad 600 Series 2646",
1364 .matches = {
1365 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1366 DMI_MATCH(DMI_BOARD_NAME, "2646"),
1367 },
1368 },
aea00143
AP
1369 /*
1370 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1371 */
4be44fcd
LB
1372 { /* _BBN 0 bug */
1373 .callback = disable_acpi_pci,
1374 .ident = "ASUS PR-DLS",
1375 .matches = {
1376 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1377 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1378 DMI_MATCH(DMI_BIOS_VERSION,
1379 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1380 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1381 },
1382 },
aea00143 1383 {
4be44fcd
LB
1384 .callback = disable_acpi_pci,
1385 .ident = "Acer TravelMate 36x Laptop",
1386 .matches = {
1387 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1388 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1389 },
1390 },
35af2821
AH
1391 {}
1392};
1393
1394/* second table for DMI checks that should run after early-quirks */
1395static struct dmi_system_id __initdata acpi_dmi_table_late[] = {
e2079c43
RW
1396 /*
1397 * HP laptops which use a DSDT reporting as HP/SB400/10000,
1398 * which includes some code which overrides all temperature
1399 * trip points to 16C if the INTIN2 input of the I/O APIC
1400 * is enabled. This input is incorrectly designated the
1401 * ISA IRQ 0 via an interrupt source override even though
1402 * it is wired to the output of the master 8259A and INTIN0
1403 * is not connected at all. Force ignoring BIOS IRQ0 pin2
1404 * override in that cases.
1405 */
e84956f9
RW
1406 {
1407 .callback = dmi_ignore_irq0_timer_override,
1408 .ident = "HP nx6115 laptop",
1409 .matches = {
1410 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1411 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6115"),
1412 },
1413 },
e2079c43
RW
1414 {
1415 .callback = dmi_ignore_irq0_timer_override,
1416 .ident = "HP NX6125 laptop",
1417 .matches = {
1418 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1419 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6125"),
1420 },
1421 },
1422 {
1423 .callback = dmi_ignore_irq0_timer_override,
1424 .ident = "HP NX6325 laptop",
1425 .matches = {
1426 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1427 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6325"),
1428 },
1429 },
e84956f9
RW
1430 {
1431 .callback = dmi_ignore_irq0_timer_override,
1432 .ident = "HP 6715b laptop",
1433 .matches = {
1434 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1435 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 6715b"),
1436 },
1437 },
4be44fcd 1438 {}
aea00143
AP
1439};
1440
1da177e4
LT
1441/*
1442 * acpi_boot_table_init() and acpi_boot_init()
1443 * called from setup_arch(), always.
1444 * 1. checksums all tables
1445 * 2. enumerates lapics
1446 * 3. enumerates io-apics
1447 *
1448 * acpi_table_init() is separate to allow reading SRAT without
1449 * other side effects.
1450 *
1451 * side effects of acpi_boot_init:
1452 * acpi_lapic = 1 if LAPIC found
1453 * acpi_ioapic = 1 if IOAPIC found
1454 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1455 * if acpi_blacklisted() acpi_disabled = 1;
1456 * acpi_irq_model=...
1457 * ...
1da177e4
LT
1458 */
1459
8558e394 1460void __init acpi_boot_table_init(void)
1da177e4 1461{
aea00143 1462 dmi_check_system(acpi_dmi_table);
aea00143 1463
1da177e4
LT
1464 /*
1465 * If acpi_disabled, bail out
1466 * One exception: acpi=ht continues far enough to enumerate LAPICs
1467 */
1468 if (acpi_disabled && !acpi_ht)
8558e394 1469 return;
1da177e4 1470
5f3b1a8b 1471 /*
1da177e4
LT
1472 * Initialize the ACPI boot-time table parser.
1473 */
8558e394 1474 if (acpi_table_init()) {
1da177e4 1475 disable_acpi();
8558e394 1476 return;
1da177e4 1477 }
1da177e4 1478
5f3b1a8b 1479 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
1da177e4
LT
1480
1481 /*
1482 * blacklist may disable ACPI entirely
1483 */
8558e394 1484 if (acpi_blacklisted()) {
1da177e4
LT
1485 if (acpi_force) {
1486 printk(KERN_WARNING PREFIX "acpi=force override\n");
1487 } else {
1488 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1489 disable_acpi();
8558e394 1490 return;
1da177e4
LT
1491 }
1492 }
cbf9bd60
YL
1493}
1494
1495int __init early_acpi_boot_init(void)
1496{
1497 /*
1498 * If acpi_disabled, bail out
1499 * One exception: acpi=ht continues far enough to enumerate LAPICs
1500 */
1501 if (acpi_disabled && !acpi_ht)
1502 return 1;
1503
1504 /*
1505 * Process the Multiple APIC Description Table (MADT), if present
1506 */
1507 early_acpi_process_madt();
1da177e4
LT
1508
1509 return 0;
1510}
1511
1da177e4
LT
1512int __init acpi_boot_init(void)
1513{
35af2821
AH
1514 /* those are executed after early-quirks are executed */
1515 dmi_check_system(acpi_dmi_table_late);
1516
1da177e4
LT
1517 /*
1518 * If acpi_disabled, bail out
1519 * One exception: acpi=ht continues far enough to enumerate LAPICs
1520 */
1521 if (acpi_disabled && !acpi_ht)
4be44fcd 1522 return 1;
1da177e4 1523
5f3b1a8b 1524 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
1da177e4
LT
1525
1526 /*
1527 * set sci_int and PM timer address
1528 */
ceb6c468 1529 acpi_table_parse(ACPI_SIG_FADT, acpi_parse_fadt);
1da177e4
LT
1530
1531 /*
1532 * Process the Multiple APIC Description Table (MADT), if present
1533 */
1534 acpi_process_madt();
1535
5f3b1a8b 1536 acpi_table_parse(ACPI_SIG_HPET, acpi_parse_hpet);
1da177e4 1537
b72d0db9
TG
1538 if (!acpi_noirq)
1539 x86_init.pci.init = pci_acpi_init;
1540
1da177e4
LT
1541 return 0;
1542}
1a3f239d
RR
1543
1544static int __init parse_acpi(char *arg)
1545{
1546 if (!arg)
1547 return -EINVAL;
1548
1549 /* "acpi=off" disables both ACPI table parsing and interpreter */
1550 if (strcmp(arg, "off") == 0) {
1551 disable_acpi();
1552 }
1553 /* acpi=force to over-ride black-list */
1554 else if (strcmp(arg, "force") == 0) {
1555 acpi_force = 1;
1556 acpi_ht = 1;
1557 acpi_disabled = 0;
1558 }
1559 /* acpi=strict disables out-of-spec workarounds */
1560 else if (strcmp(arg, "strict") == 0) {
1561 acpi_strict = 1;
1562 }
1563 /* Limit ACPI just to boot-time to enable HT */
1564 else if (strcmp(arg, "ht") == 0) {
4c81ba49
LB
1565 if (!acpi_force) {
1566 printk(KERN_WARNING "acpi=ht will be removed in Linux-2.6.35\n");
1a3f239d 1567 disable_acpi();
4c81ba49 1568 }
1a3f239d
RR
1569 acpi_ht = 1;
1570 }
237889bf
ZY
1571 /* acpi=rsdt use RSDT instead of XSDT */
1572 else if (strcmp(arg, "rsdt") == 0) {
1573 acpi_rsdt_forced = 1;
1574 }
1a3f239d
RR
1575 /* "acpi=noirq" disables ACPI interrupt routing */
1576 else if (strcmp(arg, "noirq") == 0) {
1577 acpi_noirq_set();
1578 } else {
1579 /* Core will printk when we return error. */
1580 return -EINVAL;
1581 }
1582 return 0;
1583}
1584early_param("acpi", parse_acpi);
1585
1586/* FIXME: Using pci= for an ACPI parameter is a travesty. */
1587static int __init parse_pci(char *arg)
1588{
1589 if (arg && strcmp(arg, "noacpi") == 0)
1590 acpi_disable_pci();
1591 return 0;
1592}
1593early_param("pci", parse_pci);
1594
3c999f14
YL
1595int __init acpi_mps_check(void)
1596{
1597#if defined(CONFIG_X86_LOCAL_APIC) && !defined(CONFIG_X86_MPPARSE)
1598/* mptable code is not built-in*/
1599 if (acpi_disabled || acpi_noirq) {
1600 printk(KERN_WARNING "MPS support code is not built-in.\n"
1601 "Using acpi=off or acpi=noirq or pci=noacpi "
1602 "may have problem\n");
1603 return 1;
1604 }
1605#endif
1606 return 0;
1607}
1608
1a3f239d
RR
1609#ifdef CONFIG_X86_IO_APIC
1610static int __init parse_acpi_skip_timer_override(char *arg)
1611{
1612 acpi_skip_timer_override = 1;
1613 return 0;
1614}
1615early_param("acpi_skip_timer_override", parse_acpi_skip_timer_override);
fa18f477
AK
1616
1617static int __init parse_acpi_use_timer_override(char *arg)
1618{
1619 acpi_use_timer_override = 1;
1620 return 0;
1621}
1622early_param("acpi_use_timer_override", parse_acpi_use_timer_override);
1a3f239d
RR
1623#endif /* CONFIG_X86_IO_APIC */
1624
1625static int __init setup_acpi_sci(char *s)
1626{
1627 if (!s)
1628 return -EINVAL;
1629 if (!strcmp(s, "edge"))
5f3b1a8b
AS
1630 acpi_sci_flags = ACPI_MADT_TRIGGER_EDGE |
1631 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
1a3f239d 1632 else if (!strcmp(s, "level"))
5f3b1a8b
AS
1633 acpi_sci_flags = ACPI_MADT_TRIGGER_LEVEL |
1634 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
1a3f239d 1635 else if (!strcmp(s, "high"))
5f3b1a8b
AS
1636 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_HIGH |
1637 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
1a3f239d 1638 else if (!strcmp(s, "low"))
5f3b1a8b
AS
1639 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_LOW |
1640 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
1a3f239d
RR
1641 else
1642 return -EINVAL;
1643 return 0;
1644}
1645early_param("acpi_sci", setup_acpi_sci);
d0a9081b
AM
1646
1647int __acpi_acquire_global_lock(unsigned int *lock)
1648{
1649 unsigned int old, new, val;
1650 do {
1651 old = *lock;
1652 new = (((old & ~0x3) + 2) + ((old >> 1) & 0x1));
1653 val = cmpxchg(lock, old, new);
1654 } while (unlikely (val != old));
1655 return (new < 3) ? -1 : 0;
1656}
1657
1658int __acpi_release_global_lock(unsigned int *lock)
1659{
1660 unsigned int old, new, val;
1661 do {
1662 old = *lock;
1663 new = old & ~0x3;
1664 val = cmpxchg(lock, old, new);
1665 } while (unlikely (val != old));
1666 return old & 0x1;
1667}