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/acpi.h>
28 #include <linux/acpi_pmtmr.h>
29 #include <linux/efi.h>
30 #include <linux/cpumask.h>
31 #include <linux/module.h>
32 #include <linux/dmi.h>
33 #include <linux/irq.h>
34 #include <linux/bootmem.h>
35 #include <linux/ioport.h>
37 #include <asm/pgtable.h>
38 #include <asm/io_apic.h>
40 #include <asm/genapic.h>
42 #include <asm/mpspec.h>
45 static int __initdata acpi_force
= 0;
48 int acpi_disabled
= 0;
50 int acpi_disabled
= 1;
52 EXPORT_SYMBOL(acpi_disabled
);
55 # include <asm/proto.h>
58 #define BAD_MADT_ENTRY(entry, end) ( \
59 (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
60 ((struct acpi_subtable_header *)entry)->length < sizeof(*entry))
62 #define PREFIX "ACPI: "
64 int acpi_noirq
; /* skip ACPI IRQ initialization */
65 int acpi_pci_disabled
; /* skip ACPI PCI scan and IRQ initialization */
66 EXPORT_SYMBOL(acpi_pci_disabled
);
67 int acpi_ht __initdata
= 1; /* enable HT */
73 u8 acpi_sci_flags __initdata
;
74 int acpi_sci_override_gsi __initdata
;
75 int acpi_skip_timer_override __initdata
;
76 int acpi_use_timer_override __initdata
;
78 #ifdef CONFIG_X86_LOCAL_APIC
79 static u64 acpi_lapic_addr __initdata
= APIC_DEFAULT_PHYS_BASE
;
82 #ifndef __HAVE_ARCH_CMPXCHG
83 #warning ACPI uses CMPXCHG, i486 and later hardware
86 /* --------------------------------------------------------------------------
87 Boot-time Configuration
88 -------------------------------------------------------------------------- */
91 * The default interrupt routing model is PIC (8259). This gets
92 * overridden if IOAPICs are enumerated (below).
94 enum acpi_irq_model_id acpi_irq_model
= ACPI_IRQ_MODEL_PIC
;
98 * Temporarily use the virtual area starting from FIX_IO_APIC_BASE_END,
99 * to map the target physical address. The problem is that set_fixmap()
100 * provides a single page, and it is possible that the page is not
102 * By using this area, we can map up to MAX_IO_APICS pages temporarily,
103 * i.e. until the next __va_range() call.
105 * Important Safety Note: The fixed I/O APIC page numbers are *subtracted*
106 * from the fixed base. That's why we start at FIX_IO_APIC_BASE_END and
107 * count idx down while incrementing the phys address.
109 char *__init
__acpi_map_table(unsigned long phys
, unsigned long size
)
111 unsigned long base
, offset
, mapped_size
;
117 if (phys
+size
<= (max_low_pfn_mapped
<< PAGE_SHIFT
))
120 offset
= phys
& (PAGE_SIZE
- 1);
121 mapped_size
= PAGE_SIZE
- offset
;
122 clear_fixmap(FIX_ACPI_END
);
123 set_fixmap(FIX_ACPI_END
, phys
);
124 base
= fix_to_virt(FIX_ACPI_END
);
127 * Most cases can be covered by the below.
130 while (mapped_size
< size
) {
131 if (--idx
< FIX_ACPI_BEGIN
)
132 return NULL
; /* cannot handle this */
135 set_fixmap(idx
, phys
);
136 mapped_size
+= PAGE_SIZE
;
139 return ((unsigned char *)base
+ offset
);
142 #ifdef CONFIG_PCI_MMCONFIG
144 static int acpi_mcfg_64bit_base_addr __initdata
= FALSE
;
146 /* The physical address of the MMCONFIG aperture. Set from ACPI tables. */
147 struct acpi_mcfg_allocation
*pci_mmcfg_config
;
148 int pci_mmcfg_config_num
;
150 static int __init
acpi_mcfg_oem_check(struct acpi_table_mcfg
*mcfg
)
152 if (!strcmp(mcfg
->header
.oem_id
, "SGI"))
153 acpi_mcfg_64bit_base_addr
= TRUE
;
158 int __init
acpi_parse_mcfg(struct acpi_table_header
*header
)
160 struct acpi_table_mcfg
*mcfg
;
167 mcfg
= (struct acpi_table_mcfg
*)header
;
169 /* how many config structures do we have */
170 pci_mmcfg_config_num
= 0;
171 i
= header
->length
- sizeof(struct acpi_table_mcfg
);
172 while (i
>= sizeof(struct acpi_mcfg_allocation
)) {
173 ++pci_mmcfg_config_num
;
174 i
-= sizeof(struct acpi_mcfg_allocation
);
176 if (pci_mmcfg_config_num
== 0) {
177 printk(KERN_ERR PREFIX
"MMCONFIG has no entries\n");
181 config_size
= pci_mmcfg_config_num
* sizeof(*pci_mmcfg_config
);
182 pci_mmcfg_config
= kmalloc(config_size
, GFP_KERNEL
);
183 if (!pci_mmcfg_config
) {
184 printk(KERN_WARNING PREFIX
185 "No memory for MCFG config tables\n");
189 memcpy(pci_mmcfg_config
, &mcfg
[1], config_size
);
191 acpi_mcfg_oem_check(mcfg
);
193 for (i
= 0; i
< pci_mmcfg_config_num
; ++i
) {
194 if ((pci_mmcfg_config
[i
].address
> 0xFFFFFFFF) &&
195 !acpi_mcfg_64bit_base_addr
) {
196 printk(KERN_ERR PREFIX
197 "MMCONFIG not in low 4GB of memory\n");
198 kfree(pci_mmcfg_config
);
199 pci_mmcfg_config_num
= 0;
206 #endif /* CONFIG_PCI_MMCONFIG */
208 #ifdef CONFIG_X86_LOCAL_APIC
209 static int __init
acpi_parse_madt(struct acpi_table_header
*table
)
211 struct acpi_table_madt
*madt
= NULL
;
216 madt
= (struct acpi_table_madt
*)table
;
218 printk(KERN_WARNING PREFIX
"Unable to map MADT\n");
223 acpi_lapic_addr
= (u64
) madt
->address
;
225 printk(KERN_DEBUG PREFIX
"Local APIC address 0x%08x\n",
229 default_acpi_madt_oem_check(madt
->header
.oem_id
,
230 madt
->header
.oem_table_id
);
235 static void __cpuinit
acpi_register_lapic(int id
, u8 enabled
)
237 unsigned int ver
= 0;
244 if (boot_cpu_physical_apicid
!= -1U)
245 ver
= apic_version
[boot_cpu_physical_apicid
];
247 generic_processor_info(id
, ver
);
251 acpi_parse_lapic(struct acpi_subtable_header
* header
, const unsigned long end
)
253 struct acpi_madt_local_apic
*processor
= NULL
;
255 processor
= (struct acpi_madt_local_apic
*)header
;
257 if (BAD_MADT_ENTRY(processor
, end
))
260 acpi_table_print_madt_entry(header
);
263 * We need to register disabled CPU as well to permit
264 * counting disabled CPUs. This allows us to size
265 * cpus_possible_map more accurately, to permit
266 * to not preallocating memory for all NR_CPUS
267 * when we use CPU hotplug.
269 acpi_register_lapic(processor
->id
, /* APIC ID */
270 processor
->lapic_flags
& ACPI_MADT_ENABLED
);
276 acpi_parse_sapic(struct acpi_subtable_header
*header
, const unsigned long end
)
278 struct acpi_madt_local_sapic
*processor
= NULL
;
280 processor
= (struct acpi_madt_local_sapic
*)header
;
282 if (BAD_MADT_ENTRY(processor
, end
))
285 acpi_table_print_madt_entry(header
);
287 acpi_register_lapic((processor
->id
<< 8) | processor
->eid
,/* APIC ID */
288 processor
->lapic_flags
& ACPI_MADT_ENABLED
);
294 acpi_parse_lapic_addr_ovr(struct acpi_subtable_header
* header
,
295 const unsigned long end
)
297 struct acpi_madt_local_apic_override
*lapic_addr_ovr
= NULL
;
299 lapic_addr_ovr
= (struct acpi_madt_local_apic_override
*)header
;
301 if (BAD_MADT_ENTRY(lapic_addr_ovr
, end
))
304 acpi_lapic_addr
= lapic_addr_ovr
->address
;
310 acpi_parse_lapic_nmi(struct acpi_subtable_header
* header
, const unsigned long end
)
312 struct acpi_madt_local_apic_nmi
*lapic_nmi
= NULL
;
314 lapic_nmi
= (struct acpi_madt_local_apic_nmi
*)header
;
316 if (BAD_MADT_ENTRY(lapic_nmi
, end
))
319 acpi_table_print_madt_entry(header
);
321 if (lapic_nmi
->lint
!= 1)
322 printk(KERN_WARNING PREFIX
"NMI not connected to LINT 1!\n");
327 #endif /*CONFIG_X86_LOCAL_APIC */
329 #ifdef CONFIG_X86_IO_APIC
332 acpi_parse_ioapic(struct acpi_subtable_header
* header
, const unsigned long end
)
334 struct acpi_madt_io_apic
*ioapic
= NULL
;
336 ioapic
= (struct acpi_madt_io_apic
*)header
;
338 if (BAD_MADT_ENTRY(ioapic
, end
))
341 acpi_table_print_madt_entry(header
);
343 mp_register_ioapic(ioapic
->id
,
344 ioapic
->address
, ioapic
->global_irq_base
);
350 * Parse Interrupt Source Override for the ACPI SCI
352 static void __init
acpi_sci_ioapic_setup(u32 gsi
, u16 polarity
, u16 trigger
)
354 if (trigger
== 0) /* compatible SCI trigger is level */
357 if (polarity
== 0) /* compatible SCI polarity is low */
360 /* Command-line over-ride via acpi_sci= */
361 if (acpi_sci_flags
& ACPI_MADT_TRIGGER_MASK
)
362 trigger
= (acpi_sci_flags
& ACPI_MADT_TRIGGER_MASK
) >> 2;
364 if (acpi_sci_flags
& ACPI_MADT_POLARITY_MASK
)
365 polarity
= acpi_sci_flags
& ACPI_MADT_POLARITY_MASK
;
368 * mp_config_acpi_legacy_irqs() already setup IRQs < 16
369 * If GSI is < 16, this will update its flags,
370 * else it will create a new mp_irqs[] entry.
372 mp_override_legacy_irq(gsi
, polarity
, trigger
, gsi
);
375 * stash over-ride to indicate we've been here
376 * and for later update of acpi_gbl_FADT
378 acpi_sci_override_gsi
= gsi
;
383 acpi_parse_int_src_ovr(struct acpi_subtable_header
* header
,
384 const unsigned long end
)
386 struct acpi_madt_interrupt_override
*intsrc
= NULL
;
388 intsrc
= (struct acpi_madt_interrupt_override
*)header
;
390 if (BAD_MADT_ENTRY(intsrc
, end
))
393 acpi_table_print_madt_entry(header
);
395 if (intsrc
->source_irq
== acpi_gbl_FADT
.sci_interrupt
) {
396 acpi_sci_ioapic_setup(intsrc
->global_irq
,
397 intsrc
->inti_flags
& ACPI_MADT_POLARITY_MASK
,
398 (intsrc
->inti_flags
& ACPI_MADT_TRIGGER_MASK
) >> 2);
402 if (acpi_skip_timer_override
&&
403 intsrc
->source_irq
== 0 && intsrc
->global_irq
== 2) {
404 printk(PREFIX
"BIOS IRQ0 pin2 override ignored.\n");
408 mp_override_legacy_irq(intsrc
->source_irq
,
409 intsrc
->inti_flags
& ACPI_MADT_POLARITY_MASK
,
410 (intsrc
->inti_flags
& ACPI_MADT_TRIGGER_MASK
) >> 2,
417 acpi_parse_nmi_src(struct acpi_subtable_header
* header
, const unsigned long end
)
419 struct acpi_madt_nmi_source
*nmi_src
= NULL
;
421 nmi_src
= (struct acpi_madt_nmi_source
*)header
;
423 if (BAD_MADT_ENTRY(nmi_src
, end
))
426 acpi_table_print_madt_entry(header
);
428 /* TBD: Support nimsrc entries? */
433 #endif /* CONFIG_X86_IO_APIC */
436 * acpi_pic_sci_set_trigger()
438 * use ELCR to set PIC-mode trigger type for SCI
440 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
441 * it may require Edge Trigger -- use "acpi_sci=edge"
443 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
444 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
445 * ECLR1 is IRQs 0-7 (IRQ 0, 1, 2 must be 0)
446 * ECLR2 is IRQs 8-15 (IRQ 8, 13 must be 0)
449 void __init
acpi_pic_sci_set_trigger(unsigned int irq
, u16 trigger
)
451 unsigned int mask
= 1 << irq
;
452 unsigned int old
, new;
454 /* Real old ELCR mask */
455 old
= inb(0x4d0) | (inb(0x4d1) << 8);
458 * If we use ACPI to set PCI IRQs, then we should clear ELCR
459 * since we will set it correctly as we enable the PCI irq
462 new = acpi_noirq
? old
: 0;
465 * Update SCI information in the ELCR, it isn't in the PCI
469 case 1: /* Edge - clear */
472 case 3: /* Level - set */
480 printk(PREFIX
"setting ELCR to %04x (from %04x)\n", new, old
);
482 outb(new >> 8, 0x4d1);
485 int acpi_gsi_to_irq(u32 gsi
, unsigned int *irq
)
492 * success: return IRQ number (>=0)
493 * failure: return < 0
495 int acpi_register_gsi(u32 gsi
, int triggering
, int polarity
)
498 unsigned int plat_gsi
= gsi
;
502 * Make sure all (legacy) PCI IRQs are set as level-triggered.
504 if (acpi_irq_model
== ACPI_IRQ_MODEL_PIC
) {
505 if (triggering
== ACPI_LEVEL_SENSITIVE
)
506 eisa_set_level_irq(gsi
);
510 #ifdef CONFIG_X86_IO_APIC
511 if (acpi_irq_model
== ACPI_IRQ_MODEL_IOAPIC
) {
512 plat_gsi
= mp_register_gsi(gsi
, triggering
, polarity
);
515 acpi_gsi_to_irq(plat_gsi
, &irq
);
520 * ACPI based hotplug support for CPU
522 #ifdef CONFIG_ACPI_HOTPLUG_CPU
524 static int __cpuinit
_acpi_map_lsapic(acpi_handle handle
, int *pcpu
)
526 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
527 union acpi_object
*obj
;
528 struct acpi_madt_local_apic
*lapic
;
529 cpumask_var_t tmp_map
, new_map
;
532 int retval
= -ENOMEM
;
534 if (ACPI_FAILURE(acpi_evaluate_object(handle
, "_MAT", NULL
, &buffer
)))
537 if (!buffer
.length
|| !buffer
.pointer
)
540 obj
= buffer
.pointer
;
541 if (obj
->type
!= ACPI_TYPE_BUFFER
||
542 obj
->buffer
.length
< sizeof(*lapic
)) {
543 kfree(buffer
.pointer
);
547 lapic
= (struct acpi_madt_local_apic
*)obj
->buffer
.pointer
;
549 if (lapic
->header
.type
!= ACPI_MADT_TYPE_LOCAL_APIC
||
550 !(lapic
->lapic_flags
& ACPI_MADT_ENABLED
)) {
551 kfree(buffer
.pointer
);
557 kfree(buffer
.pointer
);
558 buffer
.length
= ACPI_ALLOCATE_BUFFER
;
559 buffer
.pointer
= NULL
;
561 if (!alloc_cpumask_var(&tmp_map
, GFP_KERNEL
))
564 if (!alloc_cpumask_var(&new_map
, GFP_KERNEL
))
567 cpumask_copy(tmp_map
, cpu_present_mask
);
568 acpi_register_lapic(physid
, lapic
->lapic_flags
& ACPI_MADT_ENABLED
);
571 * If mp_register_lapic successfully generates a new logical cpu
572 * number, then the following will get us exactly what was mapped
574 cpumask_andnot(new_map
, cpu_present_mask
, tmp_map
);
575 if (cpumask_empty(new_map
)) {
576 printk ("Unable to map lapic to logical cpu number\n");
581 cpu
= cpumask_first(new_map
);
587 free_cpumask_var(new_map
);
589 free_cpumask_var(tmp_map
);
594 /* wrapper to silence section mismatch warning */
595 int __ref
acpi_map_lsapic(acpi_handle handle
, int *pcpu
)
597 return _acpi_map_lsapic(handle
, pcpu
);
599 EXPORT_SYMBOL(acpi_map_lsapic
);
601 int acpi_unmap_lsapic(int cpu
)
603 per_cpu(x86_cpu_to_apicid
, cpu
) = -1;
604 set_cpu_present(cpu
, false);
610 EXPORT_SYMBOL(acpi_unmap_lsapic
);
611 #endif /* CONFIG_ACPI_HOTPLUG_CPU */
613 int acpi_register_ioapic(acpi_handle handle
, u64 phys_addr
, u32 gsi_base
)
619 EXPORT_SYMBOL(acpi_register_ioapic
);
621 int acpi_unregister_ioapic(acpi_handle handle
, u32 gsi_base
)
627 EXPORT_SYMBOL(acpi_unregister_ioapic
);
629 static int __init
acpi_parse_sbf(struct acpi_table_header
*table
)
631 struct acpi_table_boot
*sb
;
633 sb
= (struct acpi_table_boot
*)table
;
635 printk(KERN_WARNING PREFIX
"Unable to map SBF\n");
639 sbf_port
= sb
->cmos_index
; /* Save CMOS port */
644 #ifdef CONFIG_HPET_TIMER
645 #include <asm/hpet.h>
647 static struct __initdata resource
*hpet_res
;
649 static int __init
acpi_parse_hpet(struct acpi_table_header
*table
)
651 struct acpi_table_hpet
*hpet_tbl
;
653 hpet_tbl
= (struct acpi_table_hpet
*)table
;
655 printk(KERN_WARNING PREFIX
"Unable to map HPET\n");
659 if (hpet_tbl
->address
.space_id
!= ACPI_SPACE_MEM
) {
660 printk(KERN_WARNING PREFIX
"HPET timers must be located in "
665 hpet_address
= hpet_tbl
->address
.address
;
668 * Some broken BIOSes advertise HPET at 0x0. We really do not
669 * want to allocate a resource there.
672 printk(KERN_WARNING PREFIX
673 "HPET id: %#x base: %#lx is invalid\n",
674 hpet_tbl
->id
, hpet_address
);
679 * Some even more broken BIOSes advertise HPET at
680 * 0xfed0000000000000 instead of 0xfed00000. Fix it up and add
683 if (hpet_address
== 0xfed0000000000000UL
) {
684 if (!hpet_force_user
) {
685 printk(KERN_WARNING PREFIX
"HPET id: %#x "
686 "base: 0xfed0000000000000 is bogus\n "
687 "try hpet=force on the kernel command line to "
688 "fix it up to 0xfed00000.\n", hpet_tbl
->id
);
692 printk(KERN_WARNING PREFIX
693 "HPET id: %#x base: 0xfed0000000000000 fixed up "
694 "to 0xfed00000.\n", hpet_tbl
->id
);
698 printk(KERN_INFO PREFIX
"HPET id: %#x base: %#lx\n",
699 hpet_tbl
->id
, hpet_address
);
702 * Allocate and initialize the HPET firmware resource for adding into
703 * the resource tree during the lateinit timeframe.
705 #define HPET_RESOURCE_NAME_SIZE 9
706 hpet_res
= alloc_bootmem(sizeof(*hpet_res
) + HPET_RESOURCE_NAME_SIZE
);
708 hpet_res
->name
= (void *)&hpet_res
[1];
709 hpet_res
->flags
= IORESOURCE_MEM
;
710 snprintf((char *)hpet_res
->name
, HPET_RESOURCE_NAME_SIZE
, "HPET %u",
713 hpet_res
->start
= hpet_address
;
714 hpet_res
->end
= hpet_address
+ (1 * 1024) - 1;
720 * hpet_insert_resource inserts the HPET resources used into the resource
723 static __init
int hpet_insert_resource(void)
728 return insert_resource(&iomem_resource
, hpet_res
);
731 late_initcall(hpet_insert_resource
);
734 #define acpi_parse_hpet NULL
737 static int __init
acpi_parse_fadt(struct acpi_table_header
*table
)
740 #ifdef CONFIG_X86_PM_TIMER
741 /* detect the location of the ACPI PM Timer */
742 if (acpi_gbl_FADT
.header
.revision
>= FADT2_REVISION_ID
) {
744 if (acpi_gbl_FADT
.xpm_timer_block
.space_id
!=
745 ACPI_ADR_SPACE_SYSTEM_IO
)
748 pmtmr_ioport
= acpi_gbl_FADT
.xpm_timer_block
.address
;
750 * "X" fields are optional extensions to the original V1.0
751 * fields, so we must selectively expand V1.0 fields if the
752 * corresponding X field is zero.
755 pmtmr_ioport
= acpi_gbl_FADT
.pm_timer_block
;
758 pmtmr_ioport
= acpi_gbl_FADT
.pm_timer_block
;
761 printk(KERN_INFO PREFIX
"PM-Timer IO Port: %#x\n",
767 #ifdef CONFIG_X86_LOCAL_APIC
769 * Parse LAPIC entries in MADT
770 * returns 0 on success, < 0 on error
773 static void __init
acpi_register_lapic_address(unsigned long address
)
775 mp_lapic_addr
= address
;
777 set_fixmap_nocache(FIX_APIC_BASE
, address
);
778 if (boot_cpu_physical_apicid
== -1U) {
779 boot_cpu_physical_apicid
= read_apic_id();
780 apic_version
[boot_cpu_physical_apicid
] =
781 GET_APIC_VERSION(apic_read(APIC_LVR
));
785 static int __init
early_acpi_parse_madt_lapic_addr_ovr(void)
793 * Note that the LAPIC address is obtained from the MADT (32-bit value)
794 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
798 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE
,
799 acpi_parse_lapic_addr_ovr
, 0);
801 printk(KERN_ERR PREFIX
802 "Error parsing LAPIC address override entry\n");
806 acpi_register_lapic_address(acpi_lapic_addr
);
811 static int __init
acpi_parse_madt_lapic_entries(void)
819 * Note that the LAPIC address is obtained from the MADT (32-bit value)
820 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
824 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE
,
825 acpi_parse_lapic_addr_ovr
, 0);
827 printk(KERN_ERR PREFIX
828 "Error parsing LAPIC address override entry\n");
832 acpi_register_lapic_address(acpi_lapic_addr
);
834 count
= acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_SAPIC
,
835 acpi_parse_sapic
, MAX_APICS
);
838 count
= acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC
,
839 acpi_parse_lapic
, MAX_APICS
);
841 printk(KERN_ERR PREFIX
"No LAPIC entries present\n");
842 /* TBD: Cleanup to allow fallback to MPS */
844 } else if (count
< 0) {
845 printk(KERN_ERR PREFIX
"Error parsing LAPIC entry\n");
846 /* TBD: Cleanup to allow fallback to MPS */
851 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_NMI
, acpi_parse_lapic_nmi
, 0);
853 printk(KERN_ERR PREFIX
"Error parsing LAPIC NMI entry\n");
854 /* TBD: Cleanup to allow fallback to MPS */
859 #endif /* CONFIG_X86_LOCAL_APIC */
861 #ifdef CONFIG_X86_IO_APIC
864 #ifdef CONFIG_X86_ES7000
865 extern int es7000_plat
;
872 DECLARE_BITMAP(pin_programmed
, MP_MAX_IOAPIC_PIN
+ 1);
873 } mp_ioapic_routing
[MAX_IO_APICS
];
875 int mp_find_ioapic(int gsi
)
879 /* Find the IOAPIC that manages this GSI. */
880 for (i
= 0; i
< nr_ioapics
; i
++) {
881 if ((gsi
>= mp_ioapic_routing
[i
].gsi_base
)
882 && (gsi
<= mp_ioapic_routing
[i
].gsi_end
))
886 printk(KERN_ERR
"ERROR: Unable to locate IOAPIC for GSI %d\n", gsi
);
890 static u8 __init
uniq_ioapic_id(u8 id
)
893 if ((boot_cpu_data
.x86_vendor
== X86_VENDOR_INTEL
) &&
894 !APIC_XAPIC(apic_version
[boot_cpu_physical_apicid
]))
895 return io_apic_get_unique_id(nr_ioapics
, id
);
900 DECLARE_BITMAP(used
, 256);
901 bitmap_zero(used
, 256);
902 for (i
= 0; i
< nr_ioapics
; i
++) {
903 struct mpc_ioapic
*ia
= &mp_ioapics
[i
];
904 __set_bit(ia
->apicid
, used
);
906 if (!test_bit(id
, used
))
908 return find_first_zero_bit(used
, 256);
912 static int bad_ioapic(unsigned long address
)
914 if (nr_ioapics
>= MAX_IO_APICS
) {
915 printk(KERN_ERR
"ERROR: Max # of I/O APICs (%d) exceeded "
916 "(found %d)\n", MAX_IO_APICS
, nr_ioapics
);
917 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
920 printk(KERN_ERR
"WARNING: Bogus (zero) I/O APIC address"
921 " found in table, skipping!\n");
927 void __init
mp_register_ioapic(int id
, u32 address
, u32 gsi_base
)
931 if (bad_ioapic(address
))
936 mp_ioapics
[idx
].type
= MP_IOAPIC
;
937 mp_ioapics
[idx
].flags
= MPC_APIC_USABLE
;
938 mp_ioapics
[idx
].apicaddr
= address
;
940 set_fixmap_nocache(FIX_IO_APIC_BASE_0
+ idx
, address
);
941 mp_ioapics
[idx
].apicid
= uniq_ioapic_id(id
);
943 mp_ioapics
[idx
].apicver
= io_apic_get_version(idx
);
945 mp_ioapics
[idx
].apicver
= 0;
948 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
949 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
951 mp_ioapic_routing
[idx
].apic_id
= mp_ioapics
[idx
].apicid
;
952 mp_ioapic_routing
[idx
].gsi_base
= gsi_base
;
953 mp_ioapic_routing
[idx
].gsi_end
= gsi_base
+
954 io_apic_get_redir_entries(idx
);
956 printk(KERN_INFO
"IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
957 "GSI %d-%d\n", idx
, mp_ioapics
[idx
].apicid
,
958 mp_ioapics
[idx
].apicver
, mp_ioapics
[idx
].apicaddr
,
959 mp_ioapic_routing
[idx
].gsi_base
, mp_ioapic_routing
[idx
].gsi_end
);
964 int __init
acpi_probe_gsi(void)
977 for (idx
= 0; idx
< nr_ioapics
; idx
++) {
978 gsi
= mp_ioapic_routing
[idx
].gsi_end
;
987 static void assign_to_mp_irq(struct mpc_intsrc
*m
,
988 struct mpc_intsrc
*mp_irq
)
990 memcpy(mp_irq
, m
, sizeof(struct mpc_intsrc
));
993 static int mp_irq_cmp(struct mpc_intsrc
*mp_irq
,
994 struct mpc_intsrc
*m
)
996 return memcmp(mp_irq
, m
, sizeof(struct mpc_intsrc
));
999 static void save_mp_irq(struct mpc_intsrc
*m
)
1003 for (i
= 0; i
< mp_irq_entries
; i
++) {
1004 if (!mp_irq_cmp(&mp_irqs
[i
], m
))
1008 assign_to_mp_irq(m
, &mp_irqs
[mp_irq_entries
]);
1009 if (++mp_irq_entries
== MAX_IRQ_SOURCES
)
1010 panic("Max # of irq sources exceeded!!\n");
1013 void __init
mp_override_legacy_irq(u8 bus_irq
, u8 polarity
, u8 trigger
, u32 gsi
)
1017 struct mpc_intsrc mp_irq
;
1020 * Convert 'gsi' to 'ioapic.pin'.
1022 ioapic
= mp_find_ioapic(gsi
);
1025 pin
= gsi
- mp_ioapic_routing
[ioapic
].gsi_base
;
1028 * TBD: This check is for faulty timer entries, where the override
1029 * erroneously sets the trigger to level, resulting in a HUGE
1030 * increase of timer interrupts!
1032 if ((bus_irq
== 0) && (trigger
== 3))
1035 mp_irq
.type
= MP_INTSRC
;
1036 mp_irq
.irqtype
= mp_INT
;
1037 mp_irq
.irqflag
= (trigger
<< 2) | polarity
;
1038 mp_irq
.srcbus
= MP_ISA_BUS
;
1039 mp_irq
.srcbusirq
= bus_irq
; /* IRQ */
1040 mp_irq
.dstapic
= mp_ioapics
[ioapic
].apicid
; /* APIC ID */
1041 mp_irq
.dstirq
= pin
; /* INTIN# */
1043 save_mp_irq(&mp_irq
);
1046 void __init
mp_config_acpi_legacy_irqs(void)
1050 unsigned int dstapic
;
1051 struct mpc_intsrc mp_irq
;
1053 #if defined (CONFIG_MCA) || defined (CONFIG_EISA)
1055 * Fabricate the legacy ISA bus (bus #31).
1057 mp_bus_id_to_type
[MP_ISA_BUS
] = MP_BUS_ISA
;
1059 set_bit(MP_ISA_BUS
, mp_bus_not_pci
);
1060 pr_debug("Bus #%d is ISA\n", MP_ISA_BUS
);
1062 #ifdef CONFIG_X86_ES7000
1064 * Older generations of ES7000 have no legacy identity mappings
1066 if (es7000_plat
== 1)
1071 * Locate the IOAPIC that manages the ISA IRQs (0-15).
1073 ioapic
= mp_find_ioapic(0);
1076 dstapic
= mp_ioapics
[ioapic
].apicid
;
1079 * Use the default configuration for the IRQs 0-15. Unless
1080 * overridden by (MADT) interrupt source override entries.
1082 for (i
= 0; i
< 16; i
++) {
1085 for (idx
= 0; idx
< mp_irq_entries
; idx
++) {
1086 struct mpc_intsrc
*irq
= mp_irqs
+ idx
;
1088 /* Do we already have a mapping for this ISA IRQ? */
1089 if (irq
->srcbus
== MP_ISA_BUS
&& irq
->srcbusirq
== i
)
1092 /* Do we already have a mapping for this IOAPIC pin */
1093 if (irq
->dstapic
== dstapic
&& irq
->dstirq
== i
)
1097 if (idx
!= mp_irq_entries
) {
1098 printk(KERN_DEBUG
"ACPI: IRQ%d used by override.\n", i
);
1099 continue; /* IRQ already used */
1102 mp_irq
.type
= MP_INTSRC
;
1103 mp_irq
.irqflag
= 0; /* Conforming */
1104 mp_irq
.srcbus
= MP_ISA_BUS
;
1105 mp_irq
.dstapic
= dstapic
;
1106 mp_irq
.irqtype
= mp_INT
;
1107 mp_irq
.srcbusirq
= i
; /* Identity mapped */
1110 save_mp_irq(&mp_irq
);
1114 int mp_register_gsi(u32 gsi
, int triggering
, int polarity
)
1118 #ifdef CONFIG_X86_32
1119 #define MAX_GSI_NUM 4096
1120 #define IRQ_COMPRESSION_START 64
1122 static int pci_irq
= IRQ_COMPRESSION_START
;
1124 * Mapping between Global System Interrupts, which
1125 * represent all possible interrupts, and IRQs
1126 * assigned to actual devices.
1128 static int gsi_to_irq
[MAX_GSI_NUM
];
1131 if (acpi_irq_model
!= ACPI_IRQ_MODEL_IOAPIC
)
1135 /* Don't set up the ACPI SCI because it's already set up */
1136 if (acpi_gbl_FADT
.sci_interrupt
== gsi
)
1139 ioapic
= mp_find_ioapic(gsi
);
1141 printk(KERN_WARNING
"No IOAPIC for GSI %u\n", gsi
);
1145 ioapic_pin
= gsi
- mp_ioapic_routing
[ioapic
].gsi_base
;
1147 #ifdef CONFIG_X86_32
1148 if (ioapic_renumber_irq
)
1149 gsi
= ioapic_renumber_irq(ioapic
, gsi
);
1153 * Avoid pin reprogramming. PRTs typically include entries
1154 * with redundant pin->gsi mappings (but unique PCI devices);
1155 * we only program the IOAPIC on the first.
1157 if (ioapic_pin
> MP_MAX_IOAPIC_PIN
) {
1158 printk(KERN_ERR
"Invalid reference to IOAPIC pin "
1159 "%d-%d\n", mp_ioapic_routing
[ioapic
].apic_id
,
1163 if (test_bit(ioapic_pin
, mp_ioapic_routing
[ioapic
].pin_programmed
)) {
1164 pr_debug("Pin %d-%d already programmed\n",
1165 mp_ioapic_routing
[ioapic
].apic_id
, ioapic_pin
);
1166 #ifdef CONFIG_X86_32
1167 return (gsi
< IRQ_COMPRESSION_START
? gsi
: gsi_to_irq
[gsi
]);
1173 set_bit(ioapic_pin
, mp_ioapic_routing
[ioapic
].pin_programmed
);
1174 #ifdef CONFIG_X86_32
1176 * For GSI >= 64, use IRQ compression
1178 if ((gsi
>= IRQ_COMPRESSION_START
)
1179 && (triggering
== ACPI_LEVEL_SENSITIVE
)) {
1181 * For PCI devices assign IRQs in order, avoiding gaps
1182 * due to unused I/O APIC pins.
1185 if (gsi
< MAX_GSI_NUM
) {
1187 * Retain the VIA chipset work-around (gsi > 15), but
1188 * avoid a problem where the 8254 timer (IRQ0) is setup
1189 * via an override (so it's not on pin 0 of the ioapic),
1190 * and at the same time, the pin 0 interrupt is a PCI
1191 * type. The gsi > 15 test could cause these two pins
1192 * to be shared as IRQ0, and they are not shareable.
1193 * So test for this condition, and if necessary, avoid
1194 * the pin collision.
1198 * Don't assign IRQ used by ACPI SCI
1200 if (gsi
== acpi_gbl_FADT
.sci_interrupt
)
1202 gsi_to_irq
[irq
] = gsi
;
1204 printk(KERN_ERR
"GSI %u is too high\n", gsi
);
1209 io_apic_set_pci_routing(ioapic
, ioapic_pin
, gsi
,
1210 triggering
== ACPI_EDGE_SENSITIVE
? 0 : 1,
1211 polarity
== ACPI_ACTIVE_HIGH
? 0 : 1);
1215 int mp_config_acpi_gsi(unsigned char number
, unsigned int devfn
, u8 pin
,
1216 u32 gsi
, int triggering
, int polarity
)
1218 #ifdef CONFIG_X86_MPPARSE
1219 struct mpc_intsrc mp_irq
;
1225 /* print the entry should happen on mptable identically */
1226 mp_irq
.type
= MP_INTSRC
;
1227 mp_irq
.irqtype
= mp_INT
;
1228 mp_irq
.irqflag
= (triggering
== ACPI_EDGE_SENSITIVE
? 4 : 0x0c) |
1229 (polarity
== ACPI_ACTIVE_HIGH
? 1 : 3);
1230 mp_irq
.srcbus
= number
;
1231 mp_irq
.srcbusirq
= (((devfn
>> 3) & 0x1f) << 2) | ((pin
- 1) & 3);
1232 ioapic
= mp_find_ioapic(gsi
);
1233 mp_irq
.dstapic
= mp_ioapic_routing
[ioapic
].apic_id
;
1234 mp_irq
.dstirq
= gsi
- mp_ioapic_routing
[ioapic
].gsi_base
;
1236 save_mp_irq(&mp_irq
);
1242 * Parse IOAPIC related entries in MADT
1243 * returns 0 on success, < 0 on error
1245 static int __init
acpi_parse_madt_ioapic_entries(void)
1250 * ACPI interpreter is required to complete interrupt setup,
1251 * so if it is off, don't enumerate the io-apics with ACPI.
1252 * If MPS is present, it will handle them,
1253 * otherwise the system will stay in PIC mode
1255 if (acpi_disabled
|| acpi_noirq
) {
1263 * if "noapic" boot option, don't look for IO-APICs
1265 if (skip_ioapic_setup
) {
1266 printk(KERN_INFO PREFIX
"Skipping IOAPIC probe "
1267 "due to 'noapic' option.\n");
1272 acpi_table_parse_madt(ACPI_MADT_TYPE_IO_APIC
, acpi_parse_ioapic
,
1275 printk(KERN_ERR PREFIX
"No IOAPIC entries present\n");
1277 } else if (count
< 0) {
1278 printk(KERN_ERR PREFIX
"Error parsing IOAPIC entry\n");
1283 acpi_table_parse_madt(ACPI_MADT_TYPE_INTERRUPT_OVERRIDE
, acpi_parse_int_src_ovr
,
1286 printk(KERN_ERR PREFIX
1287 "Error parsing interrupt source overrides entry\n");
1288 /* TBD: Cleanup to allow fallback to MPS */
1293 * If BIOS did not supply an INT_SRC_OVR for the SCI
1294 * pretend we got one so we can set the SCI flags.
1296 if (!acpi_sci_override_gsi
)
1297 acpi_sci_ioapic_setup(acpi_gbl_FADT
.sci_interrupt
, 0, 0);
1299 /* Fill in identity legacy mapings where no override */
1300 mp_config_acpi_legacy_irqs();
1303 acpi_table_parse_madt(ACPI_MADT_TYPE_NMI_SOURCE
, acpi_parse_nmi_src
,
1306 printk(KERN_ERR PREFIX
"Error parsing NMI SRC entry\n");
1307 /* TBD: Cleanup to allow fallback to MPS */
1314 static inline int acpi_parse_madt_ioapic_entries(void)
1318 #endif /* !CONFIG_X86_IO_APIC */
1320 static void __init
early_acpi_process_madt(void)
1322 #ifdef CONFIG_X86_LOCAL_APIC
1325 if (!acpi_table_parse(ACPI_SIG_MADT
, acpi_parse_madt
)) {
1328 * Parse MADT LAPIC entries
1330 error
= early_acpi_parse_madt_lapic_addr_ovr();
1333 smp_found_config
= 1;
1335 if (error
== -EINVAL
) {
1337 * Dell Precision Workstation 410, 610 come here.
1339 printk(KERN_ERR PREFIX
1340 "Invalid BIOS MADT, disabling ACPI\n");
1347 static void __init
acpi_process_madt(void)
1349 #ifdef CONFIG_X86_LOCAL_APIC
1352 if (!acpi_table_parse(ACPI_SIG_MADT
, acpi_parse_madt
)) {
1355 * Parse MADT LAPIC entries
1357 error
= acpi_parse_madt_lapic_entries();
1361 #ifdef CONFIG_X86_BIGSMP
1362 generic_bigsmp_probe();
1365 * Parse MADT IO-APIC entries
1367 error
= acpi_parse_madt_ioapic_entries();
1369 acpi_irq_model
= ACPI_IRQ_MODEL_IOAPIC
;
1372 smp_found_config
= 1;
1373 if (apic
->setup_apic_routing
)
1374 apic
->setup_apic_routing();
1377 if (error
== -EINVAL
) {
1379 * Dell Precision Workstation 410, 610 come here.
1381 printk(KERN_ERR PREFIX
1382 "Invalid BIOS MADT, disabling ACPI\n");
1387 * ACPI found no MADT, and so ACPI wants UP PIC mode.
1388 * In the event an MPS table was found, forget it.
1389 * Boot with "acpi=off" to use MPS on such a system.
1391 if (smp_found_config
) {
1392 printk(KERN_WARNING PREFIX
1393 "No APIC-table, disabling MPS\n");
1394 smp_found_config
= 0;
1399 * ACPI supports both logical (e.g. Hyper-Threading) and physical
1400 * processors, where MPS only supports physical.
1402 if (acpi_lapic
&& acpi_ioapic
)
1403 printk(KERN_INFO
"Using ACPI (MADT) for SMP configuration "
1405 else if (acpi_lapic
)
1406 printk(KERN_INFO
"Using ACPI for processor (LAPIC) "
1407 "configuration information\n");
1412 static int __init
disable_acpi_irq(const struct dmi_system_id
*d
)
1415 printk(KERN_NOTICE
"%s detected: force use of acpi=noirq\n",
1422 static int __init
disable_acpi_pci(const struct dmi_system_id
*d
)
1425 printk(KERN_NOTICE
"%s detected: force use of pci=noacpi\n",
1432 static int __init
dmi_disable_acpi(const struct dmi_system_id
*d
)
1435 printk(KERN_NOTICE
"%s detected: acpi off\n", d
->ident
);
1439 "Warning: DMI blacklist says broken, but acpi forced\n");
1445 * Limit ACPI to CPU enumeration for HT
1447 static int __init
force_acpi_ht(const struct dmi_system_id
*d
)
1450 printk(KERN_NOTICE
"%s detected: force use of acpi=ht\n",
1456 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
1462 * Force ignoring BIOS IRQ0 pin2 override
1464 static int __init
dmi_ignore_irq0_timer_override(const struct dmi_system_id
*d
)
1467 * The ati_ixp4x0_rev() early PCI quirk should have set
1468 * the acpi_skip_timer_override flag already:
1470 if (!acpi_skip_timer_override
) {
1471 WARN(1, KERN_ERR
"ati_ixp4x0 quirk not complete.\n");
1472 pr_notice("%s detected: Ignoring BIOS IRQ0 pin2 override\n",
1474 acpi_skip_timer_override
= 1;
1480 * If your system is blacklisted here, but you find that acpi=force
1481 * works for you, please contact acpi-devel@sourceforge.net
1483 static struct dmi_system_id __initdata acpi_dmi_table
[] = {
1485 * Boxes that need ACPI disabled
1488 .callback
= dmi_disable_acpi
,
1489 .ident
= "IBM Thinkpad",
1491 DMI_MATCH(DMI_BOARD_VENDOR
, "IBM"),
1492 DMI_MATCH(DMI_BOARD_NAME
, "2629H1G"),
1497 * Boxes that need acpi=ht
1500 .callback
= force_acpi_ht
,
1501 .ident
= "FSC Primergy T850",
1503 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU SIEMENS"),
1504 DMI_MATCH(DMI_PRODUCT_NAME
, "PRIMERGY T850"),
1508 .callback
= force_acpi_ht
,
1509 .ident
= "HP VISUALIZE NT Workstation",
1511 DMI_MATCH(DMI_BOARD_VENDOR
, "Hewlett-Packard"),
1512 DMI_MATCH(DMI_PRODUCT_NAME
, "HP VISUALIZE NT Workstation"),
1516 .callback
= force_acpi_ht
,
1517 .ident
= "Compaq Workstation W8000",
1519 DMI_MATCH(DMI_SYS_VENDOR
, "Compaq"),
1520 DMI_MATCH(DMI_PRODUCT_NAME
, "Workstation W8000"),
1524 .callback
= force_acpi_ht
,
1525 .ident
= "ASUS P4B266",
1527 DMI_MATCH(DMI_BOARD_VENDOR
, "ASUSTeK Computer INC."),
1528 DMI_MATCH(DMI_BOARD_NAME
, "P4B266"),
1532 .callback
= force_acpi_ht
,
1533 .ident
= "ASUS P2B-DS",
1535 DMI_MATCH(DMI_BOARD_VENDOR
, "ASUSTeK Computer INC."),
1536 DMI_MATCH(DMI_BOARD_NAME
, "P2B-DS"),
1540 .callback
= force_acpi_ht
,
1541 .ident
= "ASUS CUR-DLS",
1543 DMI_MATCH(DMI_BOARD_VENDOR
, "ASUSTeK Computer INC."),
1544 DMI_MATCH(DMI_BOARD_NAME
, "CUR-DLS"),
1548 .callback
= force_acpi_ht
,
1549 .ident
= "ABIT i440BX-W83977",
1551 DMI_MATCH(DMI_BOARD_VENDOR
, "ABIT <http://www.abit.com>"),
1552 DMI_MATCH(DMI_BOARD_NAME
, "i440BX-W83977 (BP6)"),
1556 .callback
= force_acpi_ht
,
1557 .ident
= "IBM Bladecenter",
1559 DMI_MATCH(DMI_BOARD_VENDOR
, "IBM"),
1560 DMI_MATCH(DMI_BOARD_NAME
, "IBM eServer BladeCenter HS20"),
1564 .callback
= force_acpi_ht
,
1565 .ident
= "IBM eServer xSeries 360",
1567 DMI_MATCH(DMI_BOARD_VENDOR
, "IBM"),
1568 DMI_MATCH(DMI_BOARD_NAME
, "eServer xSeries 360"),
1572 .callback
= force_acpi_ht
,
1573 .ident
= "IBM eserver xSeries 330",
1575 DMI_MATCH(DMI_BOARD_VENDOR
, "IBM"),
1576 DMI_MATCH(DMI_BOARD_NAME
, "eserver xSeries 330"),
1580 .callback
= force_acpi_ht
,
1581 .ident
= "IBM eserver xSeries 440",
1583 DMI_MATCH(DMI_BOARD_VENDOR
, "IBM"),
1584 DMI_MATCH(DMI_PRODUCT_NAME
, "eserver xSeries 440"),
1589 * Boxes that need ACPI PCI IRQ routing disabled
1592 .callback
= disable_acpi_irq
,
1593 .ident
= "ASUS A7V",
1595 DMI_MATCH(DMI_BOARD_VENDOR
, "ASUSTeK Computer INC"),
1596 DMI_MATCH(DMI_BOARD_NAME
, "<A7V>"),
1597 /* newer BIOS, Revision 1011, does work */
1598 DMI_MATCH(DMI_BIOS_VERSION
,
1599 "ASUS A7V ACPI BIOS Revision 1007"),
1604 * Latest BIOS for IBM 600E (1.16) has bad pcinum
1605 * for LPC bridge, which is needed for the PCI
1606 * interrupt links to work. DSDT fix is in bug 5966.
1607 * 2645, 2646 model numbers are shared with 600/600E/600X
1609 .callback
= disable_acpi_irq
,
1610 .ident
= "IBM Thinkpad 600 Series 2645",
1612 DMI_MATCH(DMI_BOARD_VENDOR
, "IBM"),
1613 DMI_MATCH(DMI_BOARD_NAME
, "2645"),
1617 .callback
= disable_acpi_irq
,
1618 .ident
= "IBM Thinkpad 600 Series 2646",
1620 DMI_MATCH(DMI_BOARD_VENDOR
, "IBM"),
1621 DMI_MATCH(DMI_BOARD_NAME
, "2646"),
1625 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1628 .callback
= disable_acpi_pci
,
1629 .ident
= "ASUS PR-DLS",
1631 DMI_MATCH(DMI_BOARD_VENDOR
, "ASUSTeK Computer INC."),
1632 DMI_MATCH(DMI_BOARD_NAME
, "PR-DLS"),
1633 DMI_MATCH(DMI_BIOS_VERSION
,
1634 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1635 DMI_MATCH(DMI_BIOS_DATE
, "03/21/2003")
1639 .callback
= disable_acpi_pci
,
1640 .ident
= "Acer TravelMate 36x Laptop",
1642 DMI_MATCH(DMI_SYS_VENDOR
, "Acer"),
1643 DMI_MATCH(DMI_PRODUCT_NAME
, "TravelMate 360"),
1649 /* second table for DMI checks that should run after early-quirks */
1650 static struct dmi_system_id __initdata acpi_dmi_table_late
[] = {
1652 * HP laptops which use a DSDT reporting as HP/SB400/10000,
1653 * which includes some code which overrides all temperature
1654 * trip points to 16C if the INTIN2 input of the I/O APIC
1655 * is enabled. This input is incorrectly designated the
1656 * ISA IRQ 0 via an interrupt source override even though
1657 * it is wired to the output of the master 8259A and INTIN0
1658 * is not connected at all. Force ignoring BIOS IRQ0 pin2
1659 * override in that cases.
1662 .callback
= dmi_ignore_irq0_timer_override
,
1663 .ident
= "HP nx6115 laptop",
1665 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
1666 DMI_MATCH(DMI_PRODUCT_NAME
, "HP Compaq nx6115"),
1670 .callback
= dmi_ignore_irq0_timer_override
,
1671 .ident
= "HP NX6125 laptop",
1673 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
1674 DMI_MATCH(DMI_PRODUCT_NAME
, "HP Compaq nx6125"),
1678 .callback
= dmi_ignore_irq0_timer_override
,
1679 .ident
= "HP NX6325 laptop",
1681 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
1682 DMI_MATCH(DMI_PRODUCT_NAME
, "HP Compaq nx6325"),
1686 .callback
= dmi_ignore_irq0_timer_override
,
1687 .ident
= "HP 6715b laptop",
1689 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
1690 DMI_MATCH(DMI_PRODUCT_NAME
, "HP Compaq 6715b"),
1697 * acpi_boot_table_init() and acpi_boot_init()
1698 * called from setup_arch(), always.
1699 * 1. checksums all tables
1700 * 2. enumerates lapics
1701 * 3. enumerates io-apics
1703 * acpi_table_init() is separate to allow reading SRAT without
1704 * other side effects.
1706 * side effects of acpi_boot_init:
1707 * acpi_lapic = 1 if LAPIC found
1708 * acpi_ioapic = 1 if IOAPIC found
1709 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1710 * if acpi_blacklisted() acpi_disabled = 1;
1711 * acpi_irq_model=...
1714 * return value: (currently ignored)
1719 int __init
acpi_boot_table_init(void)
1723 dmi_check_system(acpi_dmi_table
);
1726 * If acpi_disabled, bail out
1727 * One exception: acpi=ht continues far enough to enumerate LAPICs
1729 if (acpi_disabled
&& !acpi_ht
)
1733 * Initialize the ACPI boot-time table parser.
1735 error
= acpi_table_init();
1741 acpi_table_parse(ACPI_SIG_BOOT
, acpi_parse_sbf
);
1744 * blacklist may disable ACPI entirely
1746 error
= acpi_blacklisted();
1749 printk(KERN_WARNING PREFIX
"acpi=force override\n");
1751 printk(KERN_WARNING PREFIX
"Disabling ACPI support\n");
1760 int __init
early_acpi_boot_init(void)
1763 * If acpi_disabled, bail out
1764 * One exception: acpi=ht continues far enough to enumerate LAPICs
1766 if (acpi_disabled
&& !acpi_ht
)
1770 * Process the Multiple APIC Description Table (MADT), if present
1772 early_acpi_process_madt();
1777 int __init
acpi_boot_init(void)
1779 /* those are executed after early-quirks are executed */
1780 dmi_check_system(acpi_dmi_table_late
);
1783 * If acpi_disabled, bail out
1784 * One exception: acpi=ht continues far enough to enumerate LAPICs
1786 if (acpi_disabled
&& !acpi_ht
)
1789 acpi_table_parse(ACPI_SIG_BOOT
, acpi_parse_sbf
);
1792 * set sci_int and PM timer address
1794 acpi_table_parse(ACPI_SIG_FADT
, acpi_parse_fadt
);
1797 * Process the Multiple APIC Description Table (MADT), if present
1799 acpi_process_madt();
1801 acpi_table_parse(ACPI_SIG_HPET
, acpi_parse_hpet
);
1806 static int __init
parse_acpi(char *arg
)
1811 /* "acpi=off" disables both ACPI table parsing and interpreter */
1812 if (strcmp(arg
, "off") == 0) {
1815 /* acpi=force to over-ride black-list */
1816 else if (strcmp(arg
, "force") == 0) {
1821 /* acpi=strict disables out-of-spec workarounds */
1822 else if (strcmp(arg
, "strict") == 0) {
1825 /* Limit ACPI just to boot-time to enable HT */
1826 else if (strcmp(arg
, "ht") == 0) {
1831 /* acpi=rsdt use RSDT instead of XSDT */
1832 else if (strcmp(arg
, "rsdt") == 0) {
1833 acpi_rsdt_forced
= 1;
1835 /* "acpi=noirq" disables ACPI interrupt routing */
1836 else if (strcmp(arg
, "noirq") == 0) {
1839 /* Core will printk when we return error. */
1844 early_param("acpi", parse_acpi
);
1846 /* FIXME: Using pci= for an ACPI parameter is a travesty. */
1847 static int __init
parse_pci(char *arg
)
1849 if (arg
&& strcmp(arg
, "noacpi") == 0)
1853 early_param("pci", parse_pci
);
1855 int __init
acpi_mps_check(void)
1857 #if defined(CONFIG_X86_LOCAL_APIC) && !defined(CONFIG_X86_MPPARSE)
1858 /* mptable code is not built-in*/
1859 if (acpi_disabled
|| acpi_noirq
) {
1860 printk(KERN_WARNING
"MPS support code is not built-in.\n"
1861 "Using acpi=off or acpi=noirq or pci=noacpi "
1862 "may have problem\n");
1869 #ifdef CONFIG_X86_IO_APIC
1870 static int __init
parse_acpi_skip_timer_override(char *arg
)
1872 acpi_skip_timer_override
= 1;
1875 early_param("acpi_skip_timer_override", parse_acpi_skip_timer_override
);
1877 static int __init
parse_acpi_use_timer_override(char *arg
)
1879 acpi_use_timer_override
= 1;
1882 early_param("acpi_use_timer_override", parse_acpi_use_timer_override
);
1883 #endif /* CONFIG_X86_IO_APIC */
1885 static int __init
setup_acpi_sci(char *s
)
1889 if (!strcmp(s
, "edge"))
1890 acpi_sci_flags
= ACPI_MADT_TRIGGER_EDGE
|
1891 (acpi_sci_flags
& ~ACPI_MADT_TRIGGER_MASK
);
1892 else if (!strcmp(s
, "level"))
1893 acpi_sci_flags
= ACPI_MADT_TRIGGER_LEVEL
|
1894 (acpi_sci_flags
& ~ACPI_MADT_TRIGGER_MASK
);
1895 else if (!strcmp(s
, "high"))
1896 acpi_sci_flags
= ACPI_MADT_POLARITY_ACTIVE_HIGH
|
1897 (acpi_sci_flags
& ~ACPI_MADT_POLARITY_MASK
);
1898 else if (!strcmp(s
, "low"))
1899 acpi_sci_flags
= ACPI_MADT_POLARITY_ACTIVE_LOW
|
1900 (acpi_sci_flags
& ~ACPI_MADT_POLARITY_MASK
);
1905 early_param("acpi_sci", setup_acpi_sci
);
1907 int __acpi_acquire_global_lock(unsigned int *lock
)
1909 unsigned int old
, new, val
;
1912 new = (((old
& ~0x3) + 2) + ((old
>> 1) & 0x1));
1913 val
= cmpxchg(lock
, old
, new);
1914 } while (unlikely (val
!= old
));
1915 return (new < 3) ? -1 : 0;
1918 int __acpi_release_global_lock(unsigned int *lock
)
1920 unsigned int old
, new, val
;
1924 val
= cmpxchg(lock
, old
, new);
1925 } while (unlikely (val
!= old
));