[PATCH] ACPI based I/O APIC hot-plug: add interfaces
[linux-2.6/libata-dev.git] / arch / i386 / kernel / acpi / boot.c
blobf5360d88bcf42d9652e2c8583fb535707f1deea7
1 /*
2 * boot.c - Architecture-Specific Low-Level ACPI Boot Support
4 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
5 * Copyright (C) 2001 Jun Nakajima <jun.nakajima@intel.com>
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
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
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
26 #include <linux/init.h>
27 #include <linux/config.h>
28 #include <linux/acpi.h>
29 #include <linux/efi.h>
30 #include <linux/irq.h>
31 #include <linux/module.h>
32 #include <linux/dmi.h>
34 #include <asm/pgtable.h>
35 #include <asm/io_apic.h>
36 #include <asm/apic.h>
37 #include <asm/io.h>
38 #include <asm/irq.h>
39 #include <asm/mpspec.h>
41 #ifdef CONFIG_X86_64
43 static inline void acpi_madt_oem_check(char *oem_id, char *oem_table_id) { }
44 extern void __init clustered_apic_check(void);
45 static inline int ioapic_setup_disabled(void) { return 0; }
46 #include <asm/proto.h>
48 #else /* X86 */
50 #ifdef CONFIG_X86_LOCAL_APIC
51 #include <mach_apic.h>
52 #include <mach_mpparse.h>
53 #endif /* CONFIG_X86_LOCAL_APIC */
55 #endif /* X86 */
57 #define BAD_MADT_ENTRY(entry, end) ( \
58 (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
59 ((acpi_table_entry_header *)entry)->length != sizeof(*entry))
61 #define PREFIX "ACPI: "
63 #ifdef CONFIG_ACPI_PCI
64 int acpi_noirq __initdata; /* skip ACPI IRQ initialization */
65 int acpi_pci_disabled __initdata; /* skip ACPI PCI scan and IRQ initialization */
66 #else
67 int acpi_noirq __initdata = 1;
68 int acpi_pci_disabled __initdata = 1;
69 #endif
70 int acpi_ht __initdata = 1; /* enable HT */
72 int acpi_lapic;
73 int acpi_ioapic;
74 int acpi_strict;
75 EXPORT_SYMBOL(acpi_strict);
77 acpi_interrupt_flags acpi_sci_flags __initdata;
78 int acpi_sci_override_gsi __initdata;
79 int acpi_skip_timer_override __initdata;
81 #ifdef CONFIG_X86_LOCAL_APIC
82 static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
83 #endif
85 #ifndef __HAVE_ARCH_CMPXCHG
86 #warning ACPI uses CMPXCHG, i486 and later hardware
87 #endif
89 #define MAX_MADT_ENTRIES 256
90 u8 x86_acpiid_to_apicid[MAX_MADT_ENTRIES] =
91 { [0 ... MAX_MADT_ENTRIES-1] = 0xff };
92 EXPORT_SYMBOL(x86_acpiid_to_apicid);
94 /* --------------------------------------------------------------------------
95 Boot-time Configuration
96 -------------------------------------------------------------------------- */
99 * The default interrupt routing model is PIC (8259). This gets
100 * overriden if IOAPICs are enumerated (below).
102 enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC;
104 #ifdef CONFIG_X86_64
106 /* rely on all ACPI tables being in the direct mapping */
107 char *__acpi_map_table(unsigned long phys_addr, unsigned long size)
109 if (!phys_addr || !size)
110 return NULL;
112 if (phys_addr < (end_pfn_map << PAGE_SHIFT))
113 return __va(phys_addr);
115 return NULL;
118 #else
121 * Temporarily use the virtual area starting from FIX_IO_APIC_BASE_END,
122 * to map the target physical address. The problem is that set_fixmap()
123 * provides a single page, and it is possible that the page is not
124 * sufficient.
125 * By using this area, we can map up to MAX_IO_APICS pages temporarily,
126 * i.e. until the next __va_range() call.
128 * Important Safety Note: The fixed I/O APIC page numbers are *subtracted*
129 * from the fixed base. That's why we start at FIX_IO_APIC_BASE_END and
130 * count idx down while incrementing the phys address.
132 char *__acpi_map_table(unsigned long phys, unsigned long size)
134 unsigned long base, offset, mapped_size;
135 int idx;
137 if (phys + size < 8*1024*1024)
138 return __va(phys);
140 offset = phys & (PAGE_SIZE - 1);
141 mapped_size = PAGE_SIZE - offset;
142 set_fixmap(FIX_ACPI_END, phys);
143 base = fix_to_virt(FIX_ACPI_END);
146 * Most cases can be covered by the below.
148 idx = FIX_ACPI_END;
149 while (mapped_size < size) {
150 if (--idx < FIX_ACPI_BEGIN)
151 return NULL; /* cannot handle this */
152 phys += PAGE_SIZE;
153 set_fixmap(idx, phys);
154 mapped_size += PAGE_SIZE;
157 return ((unsigned char *) base + offset);
159 #endif
161 #ifdef CONFIG_PCI_MMCONFIG
162 static int __init acpi_parse_mcfg(unsigned long phys_addr, unsigned long size)
164 struct acpi_table_mcfg *mcfg;
166 if (!phys_addr || !size)
167 return -EINVAL;
169 mcfg = (struct acpi_table_mcfg *) __acpi_map_table(phys_addr, size);
170 if (!mcfg) {
171 printk(KERN_WARNING PREFIX "Unable to map MCFG\n");
172 return -ENODEV;
175 if (mcfg->base_reserved) {
176 printk(KERN_ERR PREFIX "MMCONFIG not in low 4GB of memory\n");
177 return -ENODEV;
180 pci_mmcfg_base_addr = mcfg->base_address;
182 return 0;
184 #else
185 #define acpi_parse_mcfg NULL
186 #endif /* !CONFIG_PCI_MMCONFIG */
188 #ifdef CONFIG_X86_LOCAL_APIC
189 static int __init
190 acpi_parse_madt (
191 unsigned long phys_addr,
192 unsigned long size)
194 struct acpi_table_madt *madt = NULL;
196 if (!phys_addr || !size)
197 return -EINVAL;
199 madt = (struct acpi_table_madt *) __acpi_map_table(phys_addr, size);
200 if (!madt) {
201 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
202 return -ENODEV;
205 if (madt->lapic_address) {
206 acpi_lapic_addr = (u64) madt->lapic_address;
208 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
209 madt->lapic_address);
212 acpi_madt_oem_check(madt->header.oem_id, madt->header.oem_table_id);
214 return 0;
218 static int __init
219 acpi_parse_lapic (
220 acpi_table_entry_header *header, const unsigned long end)
222 struct acpi_table_lapic *processor = NULL;
224 processor = (struct acpi_table_lapic*) header;
226 if (BAD_MADT_ENTRY(processor, end))
227 return -EINVAL;
229 acpi_table_print_madt_entry(header);
231 /* no utility in registering a disabled processor */
232 if (processor->flags.enabled == 0)
233 return 0;
235 x86_acpiid_to_apicid[processor->acpi_id] = processor->id;
237 mp_register_lapic (
238 processor->id, /* APIC ID */
239 processor->flags.enabled); /* Enabled? */
241 return 0;
244 static int __init
245 acpi_parse_lapic_addr_ovr (
246 acpi_table_entry_header *header, const unsigned long end)
248 struct acpi_table_lapic_addr_ovr *lapic_addr_ovr = NULL;
250 lapic_addr_ovr = (struct acpi_table_lapic_addr_ovr*) header;
252 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
253 return -EINVAL;
255 acpi_lapic_addr = lapic_addr_ovr->address;
257 return 0;
260 static int __init
261 acpi_parse_lapic_nmi (
262 acpi_table_entry_header *header, const unsigned long end)
264 struct acpi_table_lapic_nmi *lapic_nmi = NULL;
266 lapic_nmi = (struct acpi_table_lapic_nmi*) header;
268 if (BAD_MADT_ENTRY(lapic_nmi, end))
269 return -EINVAL;
271 acpi_table_print_madt_entry(header);
273 if (lapic_nmi->lint != 1)
274 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
276 return 0;
280 #endif /*CONFIG_X86_LOCAL_APIC*/
282 #if defined(CONFIG_X86_IO_APIC) && defined(CONFIG_ACPI_INTERPRETER)
284 static int __init
285 acpi_parse_ioapic (
286 acpi_table_entry_header *header, const unsigned long end)
288 struct acpi_table_ioapic *ioapic = NULL;
290 ioapic = (struct acpi_table_ioapic*) header;
292 if (BAD_MADT_ENTRY(ioapic, end))
293 return -EINVAL;
295 acpi_table_print_madt_entry(header);
297 mp_register_ioapic (
298 ioapic->id,
299 ioapic->address,
300 ioapic->global_irq_base);
302 return 0;
306 * Parse Interrupt Source Override for the ACPI SCI
308 static void
309 acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
311 if (trigger == 0) /* compatible SCI trigger is level */
312 trigger = 3;
314 if (polarity == 0) /* compatible SCI polarity is low */
315 polarity = 3;
317 /* Command-line over-ride via acpi_sci= */
318 if (acpi_sci_flags.trigger)
319 trigger = acpi_sci_flags.trigger;
321 if (acpi_sci_flags.polarity)
322 polarity = acpi_sci_flags.polarity;
325 * mp_config_acpi_legacy_irqs() already setup IRQs < 16
326 * If GSI is < 16, this will update its flags,
327 * else it will create a new mp_irqs[] entry.
329 mp_override_legacy_irq(gsi, polarity, trigger, gsi);
332 * stash over-ride to indicate we've been here
333 * and for later update of acpi_fadt
335 acpi_sci_override_gsi = gsi;
336 return;
339 static int __init
340 acpi_parse_int_src_ovr (
341 acpi_table_entry_header *header, const unsigned long end)
343 struct acpi_table_int_src_ovr *intsrc = NULL;
345 intsrc = (struct acpi_table_int_src_ovr*) header;
347 if (BAD_MADT_ENTRY(intsrc, end))
348 return -EINVAL;
350 acpi_table_print_madt_entry(header);
352 if (intsrc->bus_irq == acpi_fadt.sci_int) {
353 acpi_sci_ioapic_setup(intsrc->global_irq,
354 intsrc->flags.polarity, intsrc->flags.trigger);
355 return 0;
358 if (acpi_skip_timer_override &&
359 intsrc->bus_irq == 0 && intsrc->global_irq == 2) {
360 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
361 return 0;
364 mp_override_legacy_irq (
365 intsrc->bus_irq,
366 intsrc->flags.polarity,
367 intsrc->flags.trigger,
368 intsrc->global_irq);
370 return 0;
374 static int __init
375 acpi_parse_nmi_src (
376 acpi_table_entry_header *header, const unsigned long end)
378 struct acpi_table_nmi_src *nmi_src = NULL;
380 nmi_src = (struct acpi_table_nmi_src*) header;
382 if (BAD_MADT_ENTRY(nmi_src, end))
383 return -EINVAL;
385 acpi_table_print_madt_entry(header);
387 /* TBD: Support nimsrc entries? */
389 return 0;
392 #endif /* CONFIG_X86_IO_APIC */
394 #ifdef CONFIG_ACPI_BUS
397 * acpi_pic_sci_set_trigger()
399 * use ELCR to set PIC-mode trigger type for SCI
401 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
402 * it may require Edge Trigger -- use "acpi_sci=edge"
404 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
405 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
406 * ECLR1 is IRQ's 0-7 (IRQ 0, 1, 2 must be 0)
407 * ECLR2 is IRQ's 8-15 (IRQ 8, 13 must be 0)
410 void __init
411 acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
413 unsigned int mask = 1 << irq;
414 unsigned int old, new;
416 /* Real old ELCR mask */
417 old = inb(0x4d0) | (inb(0x4d1) << 8);
420 * If we use ACPI to set PCI irq's, then we should clear ELCR
421 * since we will set it correctly as we enable the PCI irq
422 * routing.
424 new = acpi_noirq ? old : 0;
427 * Update SCI information in the ELCR, it isn't in the PCI
428 * routing tables..
430 switch (trigger) {
431 case 1: /* Edge - clear */
432 new &= ~mask;
433 break;
434 case 3: /* Level - set */
435 new |= mask;
436 break;
439 if (old == new)
440 return;
442 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
443 outb(new, 0x4d0);
444 outb(new >> 8, 0x4d1);
448 #endif /* CONFIG_ACPI_BUS */
450 int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
452 #ifdef CONFIG_X86_IO_APIC
453 if (use_pci_vector() && !platform_legacy_irq(gsi))
454 *irq = IO_APIC_VECTOR(gsi);
455 else
456 #endif
457 *irq = gsi;
458 return 0;
461 unsigned int acpi_register_gsi(u32 gsi, int edge_level, int active_high_low)
463 unsigned int irq;
464 unsigned int plat_gsi = gsi;
466 #ifdef CONFIG_PCI
468 * Make sure all (legacy) PCI IRQs are set as level-triggered.
470 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
471 extern void eisa_set_level_irq(unsigned int irq);
473 if (edge_level == ACPI_LEVEL_SENSITIVE)
474 eisa_set_level_irq(gsi);
476 #endif
478 #ifdef CONFIG_X86_IO_APIC
479 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
480 plat_gsi = mp_register_gsi(gsi, edge_level, active_high_low);
482 #endif
483 acpi_gsi_to_irq(plat_gsi, &irq);
484 return irq;
486 EXPORT_SYMBOL(acpi_register_gsi);
489 * ACPI based hotplug support for CPU
491 #ifdef CONFIG_ACPI_HOTPLUG_CPU
493 acpi_map_lsapic(acpi_handle handle, int *pcpu)
495 /* TBD */
496 return -EINVAL;
498 EXPORT_SYMBOL(acpi_map_lsapic);
502 acpi_unmap_lsapic(int cpu)
504 /* TBD */
505 return -EINVAL;
507 EXPORT_SYMBOL(acpi_unmap_lsapic);
508 #endif /* CONFIG_ACPI_HOTPLUG_CPU */
511 acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
513 /* TBD */
514 return -EINVAL;
516 EXPORT_SYMBOL(acpi_register_ioapic);
519 acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
521 /* TBD */
522 return -EINVAL;
524 EXPORT_SYMBOL(acpi_unregister_ioapic);
526 static unsigned long __init
527 acpi_scan_rsdp (
528 unsigned long start,
529 unsigned long length)
531 unsigned long offset = 0;
532 unsigned long sig_len = sizeof("RSD PTR ") - 1;
535 * Scan all 16-byte boundaries of the physical memory region for the
536 * RSDP signature.
538 for (offset = 0; offset < length; offset += 16) {
539 if (strncmp((char *) (start + offset), "RSD PTR ", sig_len))
540 continue;
541 return (start + offset);
544 return 0;
547 static int __init acpi_parse_sbf(unsigned long phys_addr, unsigned long size)
549 struct acpi_table_sbf *sb;
551 if (!phys_addr || !size)
552 return -EINVAL;
554 sb = (struct acpi_table_sbf *) __acpi_map_table(phys_addr, size);
555 if (!sb) {
556 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
557 return -ENODEV;
560 sbf_port = sb->sbf_cmos; /* Save CMOS port */
562 return 0;
566 #ifdef CONFIG_HPET_TIMER
568 static int __init acpi_parse_hpet(unsigned long phys, unsigned long size)
570 struct acpi_table_hpet *hpet_tbl;
572 if (!phys || !size)
573 return -EINVAL;
575 hpet_tbl = (struct acpi_table_hpet *) __acpi_map_table(phys, size);
576 if (!hpet_tbl) {
577 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
578 return -ENODEV;
581 if (hpet_tbl->addr.space_id != ACPI_SPACE_MEM) {
582 printk(KERN_WARNING PREFIX "HPET timers must be located in "
583 "memory.\n");
584 return -1;
587 #ifdef CONFIG_X86_64
588 vxtime.hpet_address = hpet_tbl->addr.addrl |
589 ((long) hpet_tbl->addr.addrh << 32);
591 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
592 hpet_tbl->id, vxtime.hpet_address);
593 #else /* X86 */
595 extern unsigned long hpet_address;
597 hpet_address = hpet_tbl->addr.addrl;
598 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
599 hpet_tbl->id, hpet_address);
601 #endif /* X86 */
603 return 0;
605 #else
606 #define acpi_parse_hpet NULL
607 #endif
609 #ifdef CONFIG_X86_PM_TIMER
610 extern u32 pmtmr_ioport;
611 #endif
613 static int __init acpi_parse_fadt(unsigned long phys, unsigned long size)
615 struct fadt_descriptor_rev2 *fadt = NULL;
617 fadt = (struct fadt_descriptor_rev2*) __acpi_map_table(phys,size);
618 if(!fadt) {
619 printk(KERN_WARNING PREFIX "Unable to map FADT\n");
620 return 0;
623 #ifdef CONFIG_ACPI_INTERPRETER
624 /* initialize sci_int early for INT_SRC_OVR MADT parsing */
625 acpi_fadt.sci_int = fadt->sci_int;
626 #endif
628 #ifdef CONFIG_ACPI_BUS
629 /* initialize rev and apic_phys_dest_mode for x86_64 genapic */
630 acpi_fadt.revision = fadt->revision;
631 acpi_fadt.force_apic_physical_destination_mode = fadt->force_apic_physical_destination_mode;
632 #endif
634 #ifdef CONFIG_X86_PM_TIMER
635 /* detect the location of the ACPI PM Timer */
636 if (fadt->revision >= FADT2_REVISION_ID) {
637 /* FADT rev. 2 */
638 if (fadt->xpm_tmr_blk.address_space_id != ACPI_ADR_SPACE_SYSTEM_IO)
639 return 0;
641 pmtmr_ioport = fadt->xpm_tmr_blk.address;
642 } else {
643 /* FADT rev. 1 */
644 pmtmr_ioport = fadt->V1_pm_tmr_blk;
646 if (pmtmr_ioport)
647 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n", pmtmr_ioport);
648 #endif
649 return 0;
653 unsigned long __init
654 acpi_find_rsdp (void)
656 unsigned long rsdp_phys = 0;
658 if (efi_enabled) {
659 if (efi.acpi20)
660 return __pa(efi.acpi20);
661 else if (efi.acpi)
662 return __pa(efi.acpi);
665 * Scan memory looking for the RSDP signature. First search EBDA (low
666 * memory) paragraphs and then search upper memory (E0000-FFFFF).
668 rsdp_phys = acpi_scan_rsdp (0, 0x400);
669 if (!rsdp_phys)
670 rsdp_phys = acpi_scan_rsdp (0xE0000, 0x20000);
672 return rsdp_phys;
675 #ifdef CONFIG_X86_LOCAL_APIC
677 * Parse LAPIC entries in MADT
678 * returns 0 on success, < 0 on error
680 static int __init
681 acpi_parse_madt_lapic_entries(void)
683 int count;
686 * Note that the LAPIC address is obtained from the MADT (32-bit value)
687 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
690 count = acpi_table_parse_madt(ACPI_MADT_LAPIC_ADDR_OVR, acpi_parse_lapic_addr_ovr, 0);
691 if (count < 0) {
692 printk(KERN_ERR PREFIX "Error parsing LAPIC address override entry\n");
693 return count;
696 mp_register_lapic_address(acpi_lapic_addr);
698 count = acpi_table_parse_madt(ACPI_MADT_LAPIC, acpi_parse_lapic,
699 MAX_APICS);
700 if (!count) {
701 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
702 /* TBD: Cleanup to allow fallback to MPS */
703 return -ENODEV;
705 else if (count < 0) {
706 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
707 /* TBD: Cleanup to allow fallback to MPS */
708 return count;
711 count = acpi_table_parse_madt(ACPI_MADT_LAPIC_NMI, acpi_parse_lapic_nmi, 0);
712 if (count < 0) {
713 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
714 /* TBD: Cleanup to allow fallback to MPS */
715 return count;
717 return 0;
719 #endif /* CONFIG_X86_LOCAL_APIC */
721 #if defined(CONFIG_X86_IO_APIC) && defined(CONFIG_ACPI_INTERPRETER)
723 * Parse IOAPIC related entries in MADT
724 * returns 0 on success, < 0 on error
726 static int __init
727 acpi_parse_madt_ioapic_entries(void)
729 int count;
732 * ACPI interpreter is required to complete interrupt setup,
733 * so if it is off, don't enumerate the io-apics with ACPI.
734 * If MPS is present, it will handle them,
735 * otherwise the system will stay in PIC mode
737 if (acpi_disabled || acpi_noirq) {
738 return -ENODEV;
742 * if "noapic" boot option, don't look for IO-APICs
744 if (skip_ioapic_setup) {
745 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
746 "due to 'noapic' option.\n");
747 return -ENODEV;
750 count = acpi_table_parse_madt(ACPI_MADT_IOAPIC, acpi_parse_ioapic, MAX_IO_APICS);
751 if (!count) {
752 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
753 return -ENODEV;
755 else if (count < 0) {
756 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
757 return count;
760 count = acpi_table_parse_madt(ACPI_MADT_INT_SRC_OVR, acpi_parse_int_src_ovr, NR_IRQ_VECTORS);
761 if (count < 0) {
762 printk(KERN_ERR PREFIX "Error parsing interrupt source overrides entry\n");
763 /* TBD: Cleanup to allow fallback to MPS */
764 return count;
768 * If BIOS did not supply an INT_SRC_OVR for the SCI
769 * pretend we got one so we can set the SCI flags.
771 if (!acpi_sci_override_gsi)
772 acpi_sci_ioapic_setup(acpi_fadt.sci_int, 0, 0);
774 /* Fill in identity legacy mapings where no override */
775 mp_config_acpi_legacy_irqs();
777 count = acpi_table_parse_madt(ACPI_MADT_NMI_SRC, acpi_parse_nmi_src, NR_IRQ_VECTORS);
778 if (count < 0) {
779 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
780 /* TBD: Cleanup to allow fallback to MPS */
781 return count;
784 return 0;
786 #else
787 static inline int acpi_parse_madt_ioapic_entries(void)
789 return -1;
791 #endif /* !(CONFIG_X86_IO_APIC && CONFIG_ACPI_INTERPRETER) */
794 static void __init
795 acpi_process_madt(void)
797 #ifdef CONFIG_X86_LOCAL_APIC
798 int count, error;
800 count = acpi_table_parse(ACPI_APIC, acpi_parse_madt);
801 if (count >= 1) {
804 * Parse MADT LAPIC entries
806 error = acpi_parse_madt_lapic_entries();
807 if (!error) {
808 acpi_lapic = 1;
811 * Parse MADT IO-APIC entries
813 error = acpi_parse_madt_ioapic_entries();
814 if (!error) {
815 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
816 acpi_irq_balance_set(NULL);
817 acpi_ioapic = 1;
819 smp_found_config = 1;
820 clustered_apic_check();
823 if (error == -EINVAL) {
825 * Dell Precision Workstation 410, 610 come here.
827 printk(KERN_ERR PREFIX "Invalid BIOS MADT, disabling ACPI\n");
828 disable_acpi();
831 #endif
832 return;
835 extern int acpi_force;
837 #ifdef __i386__
839 #ifdef CONFIG_ACPI_PCI
840 static int __init disable_acpi_irq(struct dmi_system_id *d)
842 if (!acpi_force) {
843 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
844 d->ident);
845 acpi_noirq_set();
847 return 0;
850 static int __init disable_acpi_pci(struct dmi_system_id *d)
852 if (!acpi_force) {
853 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
854 d->ident);
855 acpi_disable_pci();
857 return 0;
859 #endif
861 static int __init dmi_disable_acpi(struct dmi_system_id *d)
863 if (!acpi_force) {
864 printk(KERN_NOTICE "%s detected: acpi off\n",d->ident);
865 disable_acpi();
866 } else {
867 printk(KERN_NOTICE
868 "Warning: DMI blacklist says broken, but acpi forced\n");
870 return 0;
874 * Limit ACPI to CPU enumeration for HT
876 static int __init force_acpi_ht(struct dmi_system_id *d)
878 if (!acpi_force) {
879 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n", d->ident);
880 disable_acpi();
881 acpi_ht = 1;
882 } else {
883 printk(KERN_NOTICE
884 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
886 return 0;
890 * If your system is blacklisted here, but you find that acpi=force
891 * works for you, please contact acpi-devel@sourceforge.net
893 static struct dmi_system_id __initdata acpi_dmi_table[] = {
895 * Boxes that need ACPI disabled
898 .callback = dmi_disable_acpi,
899 .ident = "IBM Thinkpad",
900 .matches = {
901 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
902 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
907 * Boxes that need acpi=ht
910 .callback = force_acpi_ht,
911 .ident = "FSC Primergy T850",
912 .matches = {
913 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
914 DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
918 .callback = force_acpi_ht,
919 .ident = "DELL GX240",
920 .matches = {
921 DMI_MATCH(DMI_BOARD_VENDOR, "Dell Computer Corporation"),
922 DMI_MATCH(DMI_BOARD_NAME, "OptiPlex GX240"),
926 .callback = force_acpi_ht,
927 .ident = "HP VISUALIZE NT Workstation",
928 .matches = {
929 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
930 DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
934 .callback = force_acpi_ht,
935 .ident = "Compaq Workstation W8000",
936 .matches = {
937 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
938 DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
942 .callback = force_acpi_ht,
943 .ident = "ASUS P4B266",
944 .matches = {
945 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
946 DMI_MATCH(DMI_BOARD_NAME, "P4B266"),
950 .callback = force_acpi_ht,
951 .ident = "ASUS P2B-DS",
952 .matches = {
953 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
954 DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
958 .callback = force_acpi_ht,
959 .ident = "ASUS CUR-DLS",
960 .matches = {
961 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
962 DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
966 .callback = force_acpi_ht,
967 .ident = "ABIT i440BX-W83977",
968 .matches = {
969 DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
970 DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
974 .callback = force_acpi_ht,
975 .ident = "IBM Bladecenter",
976 .matches = {
977 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
978 DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
982 .callback = force_acpi_ht,
983 .ident = "IBM eServer xSeries 360",
984 .matches = {
985 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
986 DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
990 .callback = force_acpi_ht,
991 .ident = "IBM eserver xSeries 330",
992 .matches = {
993 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
994 DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
998 .callback = force_acpi_ht,
999 .ident = "IBM eserver xSeries 440",
1000 .matches = {
1001 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1002 DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1006 #ifdef CONFIG_ACPI_PCI
1008 * Boxes that need ACPI PCI IRQ routing disabled
1011 .callback = disable_acpi_irq,
1012 .ident = "ASUS A7V",
1013 .matches = {
1014 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1015 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1016 /* newer BIOS, Revision 1011, does work */
1017 DMI_MATCH(DMI_BIOS_VERSION, "ASUS A7V ACPI BIOS Revision 1007"),
1022 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1024 { /* _BBN 0 bug */
1025 .callback = disable_acpi_pci,
1026 .ident = "ASUS PR-DLS",
1027 .matches = {
1028 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1029 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1030 DMI_MATCH(DMI_BIOS_VERSION, "ASUS PR-DLS ACPI BIOS Revision 1010"),
1031 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1035 .callback = disable_acpi_pci,
1036 .ident = "Acer TravelMate 36x Laptop",
1037 .matches = {
1038 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1039 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1042 #endif
1046 #endif /* __i386__ */
1049 * acpi_boot_table_init() and acpi_boot_init()
1050 * called from setup_arch(), always.
1051 * 1. checksums all tables
1052 * 2. enumerates lapics
1053 * 3. enumerates io-apics
1055 * acpi_table_init() is separate to allow reading SRAT without
1056 * other side effects.
1058 * side effects of acpi_boot_init:
1059 * acpi_lapic = 1 if LAPIC found
1060 * acpi_ioapic = 1 if IOAPIC found
1061 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1062 * if acpi_blacklisted() acpi_disabled = 1;
1063 * acpi_irq_model=...
1064 * ...
1066 * return value: (currently ignored)
1067 * 0: success
1068 * !0: failure
1071 int __init
1072 acpi_boot_table_init(void)
1074 int error;
1076 #ifdef __i386__
1077 dmi_check_system(acpi_dmi_table);
1078 #endif
1081 * If acpi_disabled, bail out
1082 * One exception: acpi=ht continues far enough to enumerate LAPICs
1084 if (acpi_disabled && !acpi_ht)
1085 return 1;
1088 * Initialize the ACPI boot-time table parser.
1090 error = acpi_table_init();
1091 if (error) {
1092 disable_acpi();
1093 return error;
1096 #ifdef __i386__
1097 check_acpi_pci();
1098 #endif
1100 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1103 * blacklist may disable ACPI entirely
1105 error = acpi_blacklisted();
1106 if (error) {
1107 if (acpi_force) {
1108 printk(KERN_WARNING PREFIX "acpi=force override\n");
1109 } else {
1110 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1111 disable_acpi();
1112 return error;
1116 return 0;
1120 int __init acpi_boot_init(void)
1123 * If acpi_disabled, bail out
1124 * One exception: acpi=ht continues far enough to enumerate LAPICs
1126 if (acpi_disabled && !acpi_ht)
1127 return 1;
1129 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1132 * set sci_int and PM timer address
1134 acpi_table_parse(ACPI_FADT, acpi_parse_fadt);
1137 * Process the Multiple APIC Description Table (MADT), if present
1139 acpi_process_madt();
1141 acpi_table_parse(ACPI_HPET, acpi_parse_hpet);
1142 acpi_table_parse(ACPI_MCFG, acpi_parse_mcfg);
1144 return 0;