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/module.h>
31 #include <linux/dmi.h>
32 #include <linux/irq.h>
34 #include <asm/pgtable.h>
35 #include <asm/io_apic.h>
38 #include <asm/mpspec.h>
42 static inline void acpi_madt_oem_check(char *oem_id, char *oem_table_id)
45 extern void __init clustered_apic_check(void);
46 static inline int ioapic_setup_disabled(void)
51 #include <asm/proto.h>
55 #ifdef CONFIG_X86_LOCAL_APIC
56 #include <mach_apic.h>
57 #include <mach_mpparse.h>
58 #endif /* CONFIG_X86_LOCAL_APIC */
62 #define BAD_MADT_ENTRY(entry, end) ( \
63 (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
64 ((acpi_table_entry_header *)entry)->length != sizeof(*entry))
66 #define PREFIX "ACPI: "
68 int acpi_noirq __initdata; /* skip ACPI IRQ initialization */
69 int acpi_pci_disabled __initdata; /* skip ACPI PCI scan and IRQ initialization */
70 int acpi_ht __initdata = 1; /* enable HT */
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;
85 #ifndef __HAVE_ARCH_CMPXCHG
86 #warning ACPI uses CMPXCHG, i486 and later hardware
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;
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)
112 if (phys_addr < (end_pfn_map << PAGE_SHIFT))
113 return __va(phys_addr);
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
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;
137 if (phys + size < 8 * 1024 * 1024)
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.
149 while (mapped_size < size) {
150 if (--idx < FIX_ACPI_BEGIN)
151 return NULL; /* cannot handle this */
153 set_fixmap(idx, phys);
154 mapped_size += PAGE_SIZE;
157 return ((unsigned char *)base + offset);
161 #ifdef CONFIG_PCI_MMCONFIG
162 /* The physical address of the MMCONFIG aperture. Set from ACPI tables. */
163 struct acpi_table_mcfg_config *pci_mmcfg_config;
164 int pci_mmcfg_config_num;
166 int __init acpi_parse_mcfg(unsigned long phys_addr, unsigned long size)
168 struct acpi_table_mcfg *mcfg;
172 if (!phys_addr || !size)
175 mcfg = (struct acpi_table_mcfg *)__acpi_map_table(phys_addr, size);
177 printk(KERN_WARNING PREFIX "Unable to map MCFG\n");
181 /* how many config structures do we have */
182 pci_mmcfg_config_num = 0;
183 i = size - sizeof(struct acpi_table_mcfg);
184 while (i >= sizeof(struct acpi_table_mcfg_config)) {
185 ++pci_mmcfg_config_num;
186 i -= sizeof(struct acpi_table_mcfg_config);
188 if (pci_mmcfg_config_num == 0) {
189 printk(KERN_ERR PREFIX "MMCONFIG has no entries\n");
193 config_size = pci_mmcfg_config_num * sizeof(*pci_mmcfg_config);
194 pci_mmcfg_config = kmalloc(config_size, GFP_KERNEL);
195 if (!pci_mmcfg_config) {
196 printk(KERN_WARNING PREFIX
197 "No memory for MCFG config tables\n");
201 memcpy(pci_mmcfg_config, &mcfg->config, config_size);
202 for (i = 0; i < pci_mmcfg_config_num; ++i) {
203 if (mcfg->config[i].base_reserved) {
204 printk(KERN_ERR PREFIX
205 "MMCONFIG not in low 4GB of memory\n");
212 #endif /* CONFIG_PCI_MMCONFIG */
214 #ifdef CONFIG_X86_LOCAL_APIC
215 static int __init acpi_parse_madt(unsigned long phys_addr, unsigned long size)
217 struct acpi_table_madt *madt = NULL;
219 if (!phys_addr || !size)
222 madt = (struct acpi_table_madt *)__acpi_map_table(phys_addr, size);
224 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
228 if (madt->lapic_address) {
229 acpi_lapic_addr = (u64) madt->lapic_address;
231 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
232 madt->lapic_address);
235 acpi_madt_oem_check(madt->header.oem_id, madt->header.oem_table_id);
241 acpi_parse_lapic(acpi_table_entry_header * header, const unsigned long end)
243 struct acpi_table_lapic *processor = NULL;
245 processor = (struct acpi_table_lapic *)header;
247 if (BAD_MADT_ENTRY(processor, end))
250 acpi_table_print_madt_entry(header);
252 /* no utility in registering a disabled processor */
253 if (processor->flags.enabled == 0)
256 x86_acpiid_to_apicid[processor->acpi_id] = processor->id;
258 mp_register_lapic(processor->id, /* APIC ID */
259 processor->flags.enabled); /* Enabled? */
265 acpi_parse_lapic_addr_ovr(acpi_table_entry_header * header,
266 const unsigned long end)
268 struct acpi_table_lapic_addr_ovr *lapic_addr_ovr = NULL;
270 lapic_addr_ovr = (struct acpi_table_lapic_addr_ovr *)header;
272 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
275 acpi_lapic_addr = lapic_addr_ovr->address;
281 acpi_parse_lapic_nmi(acpi_table_entry_header * header, const unsigned long end)
283 struct acpi_table_lapic_nmi *lapic_nmi = NULL;
285 lapic_nmi = (struct acpi_table_lapic_nmi *)header;
287 if (BAD_MADT_ENTRY(lapic_nmi, end))
290 acpi_table_print_madt_entry(header);
292 if (lapic_nmi->lint != 1)
293 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
298 #endif /*CONFIG_X86_LOCAL_APIC */
300 #ifdef CONFIG_X86_IO_APIC
303 acpi_parse_ioapic(acpi_table_entry_header * header, const unsigned long end)
305 struct acpi_table_ioapic *ioapic = NULL;
307 ioapic = (struct acpi_table_ioapic *)header;
309 if (BAD_MADT_ENTRY(ioapic, end))
312 acpi_table_print_madt_entry(header);
314 mp_register_ioapic(ioapic->id,
315 ioapic->address, ioapic->global_irq_base);
321 * Parse Interrupt Source Override for the ACPI SCI
323 static void acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
325 if (trigger == 0) /* compatible SCI trigger is level */
328 if (polarity == 0) /* compatible SCI polarity is low */
331 /* Command-line over-ride via acpi_sci= */
332 if (acpi_sci_flags.trigger)
333 trigger = acpi_sci_flags.trigger;
335 if (acpi_sci_flags.polarity)
336 polarity = acpi_sci_flags.polarity;
339 * mp_config_acpi_legacy_irqs() already setup IRQs < 16
340 * If GSI is < 16, this will update its flags,
341 * else it will create a new mp_irqs[] entry.
343 mp_override_legacy_irq(gsi, polarity, trigger, gsi);
346 * stash over-ride to indicate we've been here
347 * and for later update of acpi_fadt
349 acpi_sci_override_gsi = gsi;
354 acpi_parse_int_src_ovr(acpi_table_entry_header * header,
355 const unsigned long end)
357 struct acpi_table_int_src_ovr *intsrc = NULL;
359 intsrc = (struct acpi_table_int_src_ovr *)header;
361 if (BAD_MADT_ENTRY(intsrc, end))
364 acpi_table_print_madt_entry(header);
366 if (intsrc->bus_irq == acpi_fadt.sci_int) {
367 acpi_sci_ioapic_setup(intsrc->global_irq,
368 intsrc->flags.polarity,
369 intsrc->flags.trigger);
373 if (acpi_skip_timer_override &&
374 intsrc->bus_irq == 0 && intsrc->global_irq == 2) {
375 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
379 mp_override_legacy_irq(intsrc->bus_irq,
380 intsrc->flags.polarity,
381 intsrc->flags.trigger, intsrc->global_irq);
387 acpi_parse_nmi_src(acpi_table_entry_header * header, const unsigned long end)
389 struct acpi_table_nmi_src *nmi_src = NULL;
391 nmi_src = (struct acpi_table_nmi_src *)header;
393 if (BAD_MADT_ENTRY(nmi_src, end))
396 acpi_table_print_madt_entry(header);
398 /* TBD: Support nimsrc entries? */
403 #endif /* CONFIG_X86_IO_APIC */
406 * acpi_pic_sci_set_trigger()
408 * use ELCR to set PIC-mode trigger type for SCI
410 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
411 * it may require Edge Trigger -- use "acpi_sci=edge"
413 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
414 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
415 * ECLR1 is IRQ's 0-7 (IRQ 0, 1, 2 must be 0)
416 * ECLR2 is IRQ's 8-15 (IRQ 8, 13 must be 0)
419 void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
421 unsigned int mask = 1 << irq;
422 unsigned int old, new;
424 /* Real old ELCR mask */
425 old = inb(0x4d0) | (inb(0x4d1) << 8);
428 * If we use ACPI to set PCI irq's, then we should clear ELCR
429 * since we will set it correctly as we enable the PCI irq
432 new = acpi_noirq ? old : 0;
435 * Update SCI information in the ELCR, it isn't in the PCI
439 case 1: /* Edge - clear */
442 case 3: /* Level - set */
450 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
452 outb(new >> 8, 0x4d1);
455 int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
457 #ifdef CONFIG_X86_IO_APIC
458 if (use_pci_vector() && !platform_legacy_irq(gsi))
459 *irq = IO_APIC_VECTOR(gsi);
467 * success: return IRQ number (>=0)
468 * failure: return < 0
470 int acpi_register_gsi(u32 gsi, int edge_level, int active_high_low)
473 unsigned int plat_gsi = gsi;
477 * Make sure all (legacy) PCI IRQs are set as level-triggered.
479 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
480 extern void eisa_set_level_irq(unsigned int irq);
482 if (edge_level == ACPI_LEVEL_SENSITIVE)
483 eisa_set_level_irq(gsi);
487 #ifdef CONFIG_X86_IO_APIC
488 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
489 plat_gsi = mp_register_gsi(gsi, edge_level, active_high_low);
492 acpi_gsi_to_irq(plat_gsi, &irq);
496 EXPORT_SYMBOL(acpi_register_gsi);
499 * ACPI based hotplug support for CPU
501 #ifdef CONFIG_ACPI_HOTPLUG_CPU
502 int acpi_map_lsapic(acpi_handle handle, int *pcpu)
508 EXPORT_SYMBOL(acpi_map_lsapic);
510 int acpi_unmap_lsapic(int cpu)
516 EXPORT_SYMBOL(acpi_unmap_lsapic);
517 #endif /* CONFIG_ACPI_HOTPLUG_CPU */
519 int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
525 EXPORT_SYMBOL(acpi_register_ioapic);
527 int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
533 EXPORT_SYMBOL(acpi_unregister_ioapic);
535 static unsigned long __init
536 acpi_scan_rsdp(unsigned long start, unsigned long length)
538 unsigned long offset = 0;
539 unsigned long sig_len = sizeof("RSD PTR ") - 1;
542 * Scan all 16-byte boundaries of the physical memory region for the
545 for (offset = 0; offset < length; offset += 16) {
546 if (strncmp((char *)(start + offset), "RSD PTR ", sig_len))
548 return (start + offset);
554 static int __init acpi_parse_sbf(unsigned long phys_addr, unsigned long size)
556 struct acpi_table_sbf *sb;
558 if (!phys_addr || !size)
561 sb = (struct acpi_table_sbf *)__acpi_map_table(phys_addr, size);
563 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
567 sbf_port = sb->sbf_cmos; /* Save CMOS port */
572 #ifdef CONFIG_HPET_TIMER
574 static int __init acpi_parse_hpet(unsigned long phys, unsigned long size)
576 struct acpi_table_hpet *hpet_tbl;
581 hpet_tbl = (struct acpi_table_hpet *)__acpi_map_table(phys, size);
583 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
587 if (hpet_tbl->addr.space_id != ACPI_SPACE_MEM) {
588 printk(KERN_WARNING PREFIX "HPET timers must be located in "
593 vxtime.hpet_address = hpet_tbl->addr.addrl |
594 ((long)hpet_tbl->addr.addrh << 32);
596 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
597 hpet_tbl->id, vxtime.hpet_address);
600 extern unsigned long hpet_address;
602 hpet_address = hpet_tbl->addr.addrl;
603 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
604 hpet_tbl->id, hpet_address);
611 #define acpi_parse_hpet NULL
614 #ifdef CONFIG_X86_PM_TIMER
615 extern u32 pmtmr_ioport;
618 static int __init acpi_parse_fadt(unsigned long phys, unsigned long size)
620 struct fadt_descriptor_rev2 *fadt = NULL;
622 fadt = (struct fadt_descriptor_rev2 *)__acpi_map_table(phys, size);
624 printk(KERN_WARNING PREFIX "Unable to map FADT\n");
627 /* initialize sci_int early for INT_SRC_OVR MADT parsing */
628 acpi_fadt.sci_int = fadt->sci_int;
630 /* initialize rev and apic_phys_dest_mode for x86_64 genapic */
631 acpi_fadt.revision = fadt->revision;
632 acpi_fadt.force_apic_physical_destination_mode =
633 fadt->force_apic_physical_destination_mode;
635 #ifdef CONFIG_X86_PM_TIMER
636 /* detect the location of the ACPI PM Timer */
637 if (fadt->revision >= FADT2_REVISION_ID) {
639 if (fadt->xpm_tmr_blk.address_space_id !=
640 ACPI_ADR_SPACE_SYSTEM_IO)
643 pmtmr_ioport = fadt->xpm_tmr_blk.address;
646 pmtmr_ioport = fadt->V1_pm_tmr_blk;
649 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
655 unsigned long __init acpi_find_rsdp(void)
657 unsigned long rsdp_phys = 0;
661 return __pa(efi.acpi20);
663 return __pa(efi.acpi);
666 * Scan memory looking for the RSDP signature. First search EBDA (low
667 * memory) paragraphs and then search upper memory (E0000-FFFFF).
669 rsdp_phys = acpi_scan_rsdp(0, 0x400);
671 rsdp_phys = acpi_scan_rsdp(0xE0000, 0x20000);
676 #ifdef CONFIG_X86_LOCAL_APIC
678 * Parse LAPIC entries in MADT
679 * returns 0 on success, < 0 on error
681 static int __init acpi_parse_madt_lapic_entries(void)
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).
691 acpi_table_parse_madt(ACPI_MADT_LAPIC_ADDR_OVR,
692 acpi_parse_lapic_addr_ovr, 0);
694 printk(KERN_ERR PREFIX
695 "Error parsing LAPIC address override entry\n");
699 mp_register_lapic_address(acpi_lapic_addr);
701 count = acpi_table_parse_madt(ACPI_MADT_LAPIC, acpi_parse_lapic,
704 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
705 /* TBD: Cleanup to allow fallback to MPS */
707 } else if (count < 0) {
708 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
709 /* TBD: Cleanup to allow fallback to MPS */
714 acpi_table_parse_madt(ACPI_MADT_LAPIC_NMI, acpi_parse_lapic_nmi, 0);
716 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
717 /* TBD: Cleanup to allow fallback to MPS */
722 #endif /* CONFIG_X86_LOCAL_APIC */
724 #ifdef CONFIG_X86_IO_APIC
726 * Parse IOAPIC related entries in MADT
727 * returns 0 on success, < 0 on error
729 static int __init acpi_parse_madt_ioapic_entries(void)
734 * ACPI interpreter is required to complete interrupt setup,
735 * so if it is off, don't enumerate the io-apics with ACPI.
736 * If MPS is present, it will handle them,
737 * otherwise the system will stay in PIC mode
739 if (acpi_disabled || acpi_noirq) {
744 * if "noapic" boot option, don't look for IO-APICs
746 if (skip_ioapic_setup) {
747 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
748 "due to 'noapic' option.\n");
753 acpi_table_parse_madt(ACPI_MADT_IOAPIC, acpi_parse_ioapic,
756 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
758 } else if (count < 0) {
759 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
764 acpi_table_parse_madt(ACPI_MADT_INT_SRC_OVR, acpi_parse_int_src_ovr,
767 printk(KERN_ERR PREFIX
768 "Error parsing interrupt source overrides entry\n");
769 /* TBD: Cleanup to allow fallback to MPS */
774 * If BIOS did not supply an INT_SRC_OVR for the SCI
775 * pretend we got one so we can set the SCI flags.
777 if (!acpi_sci_override_gsi)
778 acpi_sci_ioapic_setup(acpi_fadt.sci_int, 0, 0);
780 /* Fill in identity legacy mapings where no override */
781 mp_config_acpi_legacy_irqs();
784 acpi_table_parse_madt(ACPI_MADT_NMI_SRC, acpi_parse_nmi_src,
787 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
788 /* TBD: Cleanup to allow fallback to MPS */
795 static inline int acpi_parse_madt_ioapic_entries(void)
799 #endif /* !CONFIG_X86_IO_APIC */
801 static void __init acpi_process_madt(void)
803 #ifdef CONFIG_X86_LOCAL_APIC
806 count = acpi_table_parse(ACPI_APIC, acpi_parse_madt);
810 * Parse MADT LAPIC entries
812 error = acpi_parse_madt_lapic_entries();
816 #ifdef CONFIG_X86_GENERICARCH
817 generic_bigsmp_probe();
820 * Parse MADT IO-APIC entries
822 error = acpi_parse_madt_ioapic_entries();
824 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
825 acpi_irq_balance_set(NULL);
828 smp_found_config = 1;
829 clustered_apic_check();
832 if (error == -EINVAL) {
834 * Dell Precision Workstation 410, 610 come here.
836 printk(KERN_ERR PREFIX
837 "Invalid BIOS MADT, disabling ACPI\n");
845 extern int acpi_force;
849 static int __init disable_acpi_irq(struct dmi_system_id *d)
852 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
859 static int __init disable_acpi_pci(struct dmi_system_id *d)
862 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
869 static int __init dmi_disable_acpi(struct dmi_system_id *d)
872 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
876 "Warning: DMI blacklist says broken, but acpi forced\n");
882 * Limit ACPI to CPU enumeration for HT
884 static int __init force_acpi_ht(struct dmi_system_id *d)
887 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n",
893 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
899 * If your system is blacklisted here, but you find that acpi=force
900 * works for you, please contact acpi-devel@sourceforge.net
902 static struct dmi_system_id __initdata acpi_dmi_table[] = {
904 * Boxes that need ACPI disabled
907 .callback = dmi_disable_acpi,
908 .ident = "IBM Thinkpad",
910 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
911 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
916 * Boxes that need acpi=ht
919 .callback = force_acpi_ht,
920 .ident = "FSC Primergy T850",
922 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
923 DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
927 .callback = force_acpi_ht,
928 .ident = "DELL GX240",
930 DMI_MATCH(DMI_BOARD_VENDOR, "Dell Computer Corporation"),
931 DMI_MATCH(DMI_BOARD_NAME, "OptiPlex GX240"),
935 .callback = force_acpi_ht,
936 .ident = "HP VISUALIZE NT Workstation",
938 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
939 DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
943 .callback = force_acpi_ht,
944 .ident = "Compaq Workstation W8000",
946 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
947 DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
951 .callback = force_acpi_ht,
952 .ident = "ASUS P4B266",
954 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
955 DMI_MATCH(DMI_BOARD_NAME, "P4B266"),
959 .callback = force_acpi_ht,
960 .ident = "ASUS P2B-DS",
962 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
963 DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
967 .callback = force_acpi_ht,
968 .ident = "ASUS CUR-DLS",
970 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
971 DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
975 .callback = force_acpi_ht,
976 .ident = "ABIT i440BX-W83977",
978 DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
979 DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
983 .callback = force_acpi_ht,
984 .ident = "IBM Bladecenter",
986 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
987 DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
991 .callback = force_acpi_ht,
992 .ident = "IBM eServer xSeries 360",
994 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
995 DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
999 .callback = force_acpi_ht,
1000 .ident = "IBM eserver xSeries 330",
1002 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1003 DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1007 .callback = force_acpi_ht,
1008 .ident = "IBM eserver xSeries 440",
1010 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1011 DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1016 * Boxes that need ACPI PCI IRQ routing disabled
1019 .callback = disable_acpi_irq,
1020 .ident = "ASUS A7V",
1022 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1023 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1024 /* newer BIOS, Revision 1011, does work */
1025 DMI_MATCH(DMI_BIOS_VERSION,
1026 "ASUS A7V ACPI BIOS Revision 1007"),
1031 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1034 .callback = disable_acpi_pci,
1035 .ident = "ASUS PR-DLS",
1037 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1038 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1039 DMI_MATCH(DMI_BIOS_VERSION,
1040 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1041 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1045 .callback = disable_acpi_pci,
1046 .ident = "Acer TravelMate 36x Laptop",
1048 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1049 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1055 #endif /* __i386__ */
1058 * acpi_boot_table_init() and acpi_boot_init()
1059 * called from setup_arch(), always.
1060 * 1. checksums all tables
1061 * 2. enumerates lapics
1062 * 3. enumerates io-apics
1064 * acpi_table_init() is separate to allow reading SRAT without
1065 * other side effects.
1067 * side effects of acpi_boot_init:
1068 * acpi_lapic = 1 if LAPIC found
1069 * acpi_ioapic = 1 if IOAPIC found
1070 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1071 * if acpi_blacklisted() acpi_disabled = 1;
1072 * acpi_irq_model=...
1075 * return value: (currently ignored)
1080 int __init acpi_boot_table_init(void)
1085 dmi_check_system(acpi_dmi_table);
1089 * If acpi_disabled, bail out
1090 * One exception: acpi=ht continues far enough to enumerate LAPICs
1092 if (acpi_disabled && !acpi_ht)
1096 * Initialize the ACPI boot-time table parser.
1098 error = acpi_table_init();
1107 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1110 * blacklist may disable ACPI entirely
1112 error = acpi_blacklisted();
1115 printk(KERN_WARNING PREFIX "acpi=force override\n");
1117 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1126 int __init acpi_boot_init(void)
1129 * If acpi_disabled, bail out
1130 * One exception: acpi=ht continues far enough to enumerate LAPICs
1132 if (acpi_disabled && !acpi_ht)
1135 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1138 * set sci_int and PM timer address
1140 acpi_table_parse(ACPI_FADT, acpi_parse_fadt);
1143 * Process the Multiple APIC Description Table (MADT), if present
1145 acpi_process_madt();
1147 acpi_table_parse(ACPI_HPET, acpi_parse_hpet);