blob: 34ee500c26e59a4a992dd6c89dbb5cd68ae3bd92 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * boot.c - Architecture-Specific Low-Level ACPI Boot Support
3 *
4 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
5 * Copyright (C) 2001 Jun Nakajima <jun.nakajima@intel.com>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 */
25
26#include <linux/init.h>
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>
Andrey Paninaea00142005-06-25 14:54:42 -070032#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
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>
40
41#ifdef CONFIG_X86_64
42
43static inline void acpi_madt_oem_check(char *oem_id, char *oem_table_id) { }
44extern void __init clustered_apic_check(void);
45static inline int ioapic_setup_disabled(void) { return 0; }
46#include <asm/proto.h>
47
48#else /* X86 */
49
50#ifdef CONFIG_X86_LOCAL_APIC
51#include <mach_apic.h>
52#include <mach_mpparse.h>
53#endif /* CONFIG_X86_LOCAL_APIC */
54
55#endif /* X86 */
56
57#define BAD_MADT_ENTRY(entry, end) ( \
58 (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
59 ((acpi_table_entry_header *)entry)->length != sizeof(*entry))
60
61#define PREFIX "ACPI: "
62
63#ifdef CONFIG_ACPI_PCI
64int acpi_noirq __initdata; /* skip ACPI IRQ initialization */
65int acpi_pci_disabled __initdata; /* skip ACPI PCI scan and IRQ initialization */
66#else
67int acpi_noirq __initdata = 1;
68int acpi_pci_disabled __initdata = 1;
69#endif
70int acpi_ht __initdata = 1; /* enable HT */
71
72int acpi_lapic;
73int acpi_ioapic;
74int acpi_strict;
75EXPORT_SYMBOL(acpi_strict);
76
77acpi_interrupt_flags acpi_sci_flags __initdata;
78int acpi_sci_override_gsi __initdata;
79int acpi_skip_timer_override __initdata;
80
81#ifdef CONFIG_X86_LOCAL_APIC
82static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
83#endif
84
85#ifndef __HAVE_ARCH_CMPXCHG
86#warning ACPI uses CMPXCHG, i486 and later hardware
87#endif
88
89#define MAX_MADT_ENTRIES 256
90u8 x86_acpiid_to_apicid[MAX_MADT_ENTRIES] =
91 { [0 ... MAX_MADT_ENTRIES-1] = 0xff };
92EXPORT_SYMBOL(x86_acpiid_to_apicid);
93
94/* --------------------------------------------------------------------------
95 Boot-time Configuration
96 -------------------------------------------------------------------------- */
97
98/*
99 * The default interrupt routing model is PIC (8259). This gets
100 * overriden if IOAPICs are enumerated (below).
101 */
102enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC;
103
104#ifdef CONFIG_X86_64
105
106/* rely on all ACPI tables being in the direct mapping */
107char *__acpi_map_table(unsigned long phys_addr, unsigned long size)
108{
109 if (!phys_addr || !size)
110 return NULL;
111
112 if (phys_addr < (end_pfn_map << PAGE_SHIFT))
113 return __va(phys_addr);
114
115 return NULL;
116}
117
118#else
119
120/*
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.
127 *
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.
131 */
132char *__acpi_map_table(unsigned long phys, unsigned long size)
133{
134 unsigned long base, offset, mapped_size;
135 int idx;
136
137 if (phys + size < 8*1024*1024)
138 return __va(phys);
139
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);
144
145 /*
146 * Most cases can be covered by the below.
147 */
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;
155 }
156
157 return ((unsigned char *) base + offset);
158}
159#endif
160
161#ifdef CONFIG_PCI_MMCONFIG
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700162/* The physical address of the MMCONFIG aperture. Set from ACPI tables. */
163struct acpi_table_mcfg_config *pci_mmcfg_config;
164int pci_mmcfg_config_num;
165
166int __init acpi_parse_mcfg(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
168 struct acpi_table_mcfg *mcfg;
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700169 unsigned long i;
170 int config_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 if (!phys_addr || !size)
173 return -EINVAL;
174
175 mcfg = (struct acpi_table_mcfg *) __acpi_map_table(phys_addr, size);
176 if (!mcfg) {
177 printk(KERN_WARNING PREFIX "Unable to map MCFG\n");
178 return -ENODEV;
179 }
180
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700181 /* 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);
187 };
188 if (pci_mmcfg_config_num == 0) {
189 printk(KERN_ERR PREFIX "MMCONFIG has no entries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return -ENODEV;
191 }
192
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700193 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");
198 return -ENOMEM;
199 }
200
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");
206 return -ENODEV;
207 }
208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 return 0;
211}
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700212#endif /* CONFIG_PCI_MMCONFIG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214#ifdef CONFIG_X86_LOCAL_APIC
215static int __init
216acpi_parse_madt (
217 unsigned long phys_addr,
218 unsigned long size)
219{
220 struct acpi_table_madt *madt = NULL;
221
222 if (!phys_addr || !size)
223 return -EINVAL;
224
225 madt = (struct acpi_table_madt *) __acpi_map_table(phys_addr, size);
226 if (!madt) {
227 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
228 return -ENODEV;
229 }
230
231 if (madt->lapic_address) {
232 acpi_lapic_addr = (u64) madt->lapic_address;
233
234 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
235 madt->lapic_address);
236 }
237
238 acpi_madt_oem_check(madt->header.oem_id, madt->header.oem_table_id);
239
240 return 0;
241}
242
243
244static int __init
245acpi_parse_lapic (
246 acpi_table_entry_header *header, const unsigned long end)
247{
248 struct acpi_table_lapic *processor = NULL;
249
250 processor = (struct acpi_table_lapic*) header;
251
252 if (BAD_MADT_ENTRY(processor, end))
253 return -EINVAL;
254
255 acpi_table_print_madt_entry(header);
256
257 /* no utility in registering a disabled processor */
258 if (processor->flags.enabled == 0)
259 return 0;
260
261 x86_acpiid_to_apicid[processor->acpi_id] = processor->id;
262
263 mp_register_lapic (
264 processor->id, /* APIC ID */
265 processor->flags.enabled); /* Enabled? */
266
267 return 0;
268}
269
270static int __init
271acpi_parse_lapic_addr_ovr (
272 acpi_table_entry_header *header, const unsigned long end)
273{
274 struct acpi_table_lapic_addr_ovr *lapic_addr_ovr = NULL;
275
276 lapic_addr_ovr = (struct acpi_table_lapic_addr_ovr*) header;
277
278 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
279 return -EINVAL;
280
281 acpi_lapic_addr = lapic_addr_ovr->address;
282
283 return 0;
284}
285
286static int __init
287acpi_parse_lapic_nmi (
288 acpi_table_entry_header *header, const unsigned long end)
289{
290 struct acpi_table_lapic_nmi *lapic_nmi = NULL;
291
292 lapic_nmi = (struct acpi_table_lapic_nmi*) header;
293
294 if (BAD_MADT_ENTRY(lapic_nmi, end))
295 return -EINVAL;
296
297 acpi_table_print_madt_entry(header);
298
299 if (lapic_nmi->lint != 1)
300 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
301
302 return 0;
303}
304
305
306#endif /*CONFIG_X86_LOCAL_APIC*/
307
308#if defined(CONFIG_X86_IO_APIC) && defined(CONFIG_ACPI_INTERPRETER)
309
310static int __init
311acpi_parse_ioapic (
312 acpi_table_entry_header *header, const unsigned long end)
313{
314 struct acpi_table_ioapic *ioapic = NULL;
315
316 ioapic = (struct acpi_table_ioapic*) header;
317
318 if (BAD_MADT_ENTRY(ioapic, end))
319 return -EINVAL;
320
321 acpi_table_print_madt_entry(header);
322
323 mp_register_ioapic (
324 ioapic->id,
325 ioapic->address,
326 ioapic->global_irq_base);
327
328 return 0;
329}
330
331/*
332 * Parse Interrupt Source Override for the ACPI SCI
333 */
334static void
335acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
336{
337 if (trigger == 0) /* compatible SCI trigger is level */
338 trigger = 3;
339
340 if (polarity == 0) /* compatible SCI polarity is low */
341 polarity = 3;
342
343 /* Command-line over-ride via acpi_sci= */
344 if (acpi_sci_flags.trigger)
345 trigger = acpi_sci_flags.trigger;
346
347 if (acpi_sci_flags.polarity)
348 polarity = acpi_sci_flags.polarity;
349
350 /*
351 * mp_config_acpi_legacy_irqs() already setup IRQs < 16
352 * If GSI is < 16, this will update its flags,
353 * else it will create a new mp_irqs[] entry.
354 */
355 mp_override_legacy_irq(gsi, polarity, trigger, gsi);
356
357 /*
358 * stash over-ride to indicate we've been here
359 * and for later update of acpi_fadt
360 */
361 acpi_sci_override_gsi = gsi;
362 return;
363}
364
365static int __init
366acpi_parse_int_src_ovr (
367 acpi_table_entry_header *header, const unsigned long end)
368{
369 struct acpi_table_int_src_ovr *intsrc = NULL;
370
371 intsrc = (struct acpi_table_int_src_ovr*) header;
372
373 if (BAD_MADT_ENTRY(intsrc, end))
374 return -EINVAL;
375
376 acpi_table_print_madt_entry(header);
377
378 if (intsrc->bus_irq == acpi_fadt.sci_int) {
379 acpi_sci_ioapic_setup(intsrc->global_irq,
380 intsrc->flags.polarity, intsrc->flags.trigger);
381 return 0;
382 }
383
384 if (acpi_skip_timer_override &&
385 intsrc->bus_irq == 0 && intsrc->global_irq == 2) {
386 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
387 return 0;
388 }
389
390 mp_override_legacy_irq (
391 intsrc->bus_irq,
392 intsrc->flags.polarity,
393 intsrc->flags.trigger,
394 intsrc->global_irq);
395
396 return 0;
397}
398
399
400static int __init
401acpi_parse_nmi_src (
402 acpi_table_entry_header *header, const unsigned long end)
403{
404 struct acpi_table_nmi_src *nmi_src = NULL;
405
406 nmi_src = (struct acpi_table_nmi_src*) header;
407
408 if (BAD_MADT_ENTRY(nmi_src, end))
409 return -EINVAL;
410
411 acpi_table_print_madt_entry(header);
412
413 /* TBD: Support nimsrc entries? */
414
415 return 0;
416}
417
418#endif /* CONFIG_X86_IO_APIC */
419
420#ifdef CONFIG_ACPI_BUS
421
422/*
423 * acpi_pic_sci_set_trigger()
424 *
425 * use ELCR to set PIC-mode trigger type for SCI
426 *
427 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
428 * it may require Edge Trigger -- use "acpi_sci=edge"
429 *
430 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
431 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
432 * ECLR1 is IRQ's 0-7 (IRQ 0, 1, 2 must be 0)
433 * ECLR2 is IRQ's 8-15 (IRQ 8, 13 must be 0)
434 */
435
436void __init
437acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
438{
439 unsigned int mask = 1 << irq;
440 unsigned int old, new;
441
442 /* Real old ELCR mask */
443 old = inb(0x4d0) | (inb(0x4d1) << 8);
444
445 /*
446 * If we use ACPI to set PCI irq's, then we should clear ELCR
447 * since we will set it correctly as we enable the PCI irq
448 * routing.
449 */
450 new = acpi_noirq ? old : 0;
451
452 /*
453 * Update SCI information in the ELCR, it isn't in the PCI
454 * routing tables..
455 */
456 switch (trigger) {
457 case 1: /* Edge - clear */
458 new &= ~mask;
459 break;
460 case 3: /* Level - set */
461 new |= mask;
462 break;
463 }
464
465 if (old == new)
466 return;
467
468 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
469 outb(new, 0x4d0);
470 outb(new >> 8, 0x4d1);
471}
472
473
474#endif /* CONFIG_ACPI_BUS */
475
476int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
477{
478#ifdef CONFIG_X86_IO_APIC
479 if (use_pci_vector() && !platform_legacy_irq(gsi))
480 *irq = IO_APIC_VECTOR(gsi);
481 else
482#endif
483 *irq = gsi;
484 return 0;
485}
486
487unsigned int acpi_register_gsi(u32 gsi, int edge_level, int active_high_low)
488{
489 unsigned int irq;
490 unsigned int plat_gsi = gsi;
491
492#ifdef CONFIG_PCI
493 /*
494 * Make sure all (legacy) PCI IRQs are set as level-triggered.
495 */
496 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
497 extern void eisa_set_level_irq(unsigned int irq);
498
499 if (edge_level == ACPI_LEVEL_SENSITIVE)
500 eisa_set_level_irq(gsi);
501 }
502#endif
503
504#ifdef CONFIG_X86_IO_APIC
505 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
506 plat_gsi = mp_register_gsi(gsi, edge_level, active_high_low);
507 }
508#endif
509 acpi_gsi_to_irq(plat_gsi, &irq);
510 return irq;
511}
512EXPORT_SYMBOL(acpi_register_gsi);
513
514/*
515 * ACPI based hotplug support for CPU
516 */
517#ifdef CONFIG_ACPI_HOTPLUG_CPU
518int
519acpi_map_lsapic(acpi_handle handle, int *pcpu)
520{
521 /* TBD */
522 return -EINVAL;
523}
524EXPORT_SYMBOL(acpi_map_lsapic);
525
526
527int
528acpi_unmap_lsapic(int cpu)
529{
530 /* TBD */
531 return -EINVAL;
532}
533EXPORT_SYMBOL(acpi_unmap_lsapic);
534#endif /* CONFIG_ACPI_HOTPLUG_CPU */
535
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700536int
537acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
538{
539 /* TBD */
540 return -EINVAL;
541}
542EXPORT_SYMBOL(acpi_register_ioapic);
543
544int
545acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
546{
547 /* TBD */
548 return -EINVAL;
549}
550EXPORT_SYMBOL(acpi_unregister_ioapic);
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552static unsigned long __init
553acpi_scan_rsdp (
554 unsigned long start,
555 unsigned long length)
556{
557 unsigned long offset = 0;
558 unsigned long sig_len = sizeof("RSD PTR ") - 1;
559
560 /*
561 * Scan all 16-byte boundaries of the physical memory region for the
562 * RSDP signature.
563 */
564 for (offset = 0; offset < length; offset += 16) {
565 if (strncmp((char *) (start + offset), "RSD PTR ", sig_len))
566 continue;
567 return (start + offset);
568 }
569
570 return 0;
571}
572
573static int __init acpi_parse_sbf(unsigned long phys_addr, unsigned long size)
574{
575 struct acpi_table_sbf *sb;
576
577 if (!phys_addr || !size)
578 return -EINVAL;
579
580 sb = (struct acpi_table_sbf *) __acpi_map_table(phys_addr, size);
581 if (!sb) {
582 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
583 return -ENODEV;
584 }
585
586 sbf_port = sb->sbf_cmos; /* Save CMOS port */
587
588 return 0;
589}
590
591
592#ifdef CONFIG_HPET_TIMER
593
594static int __init acpi_parse_hpet(unsigned long phys, unsigned long size)
595{
596 struct acpi_table_hpet *hpet_tbl;
597
598 if (!phys || !size)
599 return -EINVAL;
600
601 hpet_tbl = (struct acpi_table_hpet *) __acpi_map_table(phys, size);
602 if (!hpet_tbl) {
603 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
604 return -ENODEV;
605 }
606
607 if (hpet_tbl->addr.space_id != ACPI_SPACE_MEM) {
608 printk(KERN_WARNING PREFIX "HPET timers must be located in "
609 "memory.\n");
610 return -1;
611 }
612
613#ifdef CONFIG_X86_64
614 vxtime.hpet_address = hpet_tbl->addr.addrl |
615 ((long) hpet_tbl->addr.addrh << 32);
616
617 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
618 hpet_tbl->id, vxtime.hpet_address);
619#else /* X86 */
620 {
621 extern unsigned long hpet_address;
622
623 hpet_address = hpet_tbl->addr.addrl;
624 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
625 hpet_tbl->id, hpet_address);
626 }
627#endif /* X86 */
628
629 return 0;
630}
631#else
632#define acpi_parse_hpet NULL
633#endif
634
635#ifdef CONFIG_X86_PM_TIMER
636extern u32 pmtmr_ioport;
637#endif
638
639static int __init acpi_parse_fadt(unsigned long phys, unsigned long size)
640{
641 struct fadt_descriptor_rev2 *fadt = NULL;
642
643 fadt = (struct fadt_descriptor_rev2*) __acpi_map_table(phys,size);
644 if(!fadt) {
645 printk(KERN_WARNING PREFIX "Unable to map FADT\n");
646 return 0;
647 }
648
649#ifdef CONFIG_ACPI_INTERPRETER
650 /* initialize sci_int early for INT_SRC_OVR MADT parsing */
651 acpi_fadt.sci_int = fadt->sci_int;
652#endif
653
Chris Wedgwood15e88692005-04-18 08:01:30 -0700654#ifdef CONFIG_ACPI_BUS
Jason Davis90660ec2005-04-16 15:24:53 -0700655 /* initialize rev and apic_phys_dest_mode for x86_64 genapic */
656 acpi_fadt.revision = fadt->revision;
657 acpi_fadt.force_apic_physical_destination_mode = fadt->force_apic_physical_destination_mode;
Chris Wedgwood15e88692005-04-18 08:01:30 -0700658#endif
Jason Davis90660ec2005-04-16 15:24:53 -0700659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660#ifdef CONFIG_X86_PM_TIMER
661 /* detect the location of the ACPI PM Timer */
662 if (fadt->revision >= FADT2_REVISION_ID) {
663 /* FADT rev. 2 */
664 if (fadt->xpm_tmr_blk.address_space_id != ACPI_ADR_SPACE_SYSTEM_IO)
665 return 0;
666
667 pmtmr_ioport = fadt->xpm_tmr_blk.address;
668 } else {
669 /* FADT rev. 1 */
670 pmtmr_ioport = fadt->V1_pm_tmr_blk;
671 }
672 if (pmtmr_ioport)
673 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n", pmtmr_ioport);
674#endif
675 return 0;
676}
677
678
679unsigned long __init
680acpi_find_rsdp (void)
681{
682 unsigned long rsdp_phys = 0;
683
684 if (efi_enabled) {
685 if (efi.acpi20)
686 return __pa(efi.acpi20);
687 else if (efi.acpi)
688 return __pa(efi.acpi);
689 }
690 /*
691 * Scan memory looking for the RSDP signature. First search EBDA (low
692 * memory) paragraphs and then search upper memory (E0000-FFFFF).
693 */
694 rsdp_phys = acpi_scan_rsdp (0, 0x400);
695 if (!rsdp_phys)
Linus Torvalds22490eb2005-05-06 15:39:23 -0700696 rsdp_phys = acpi_scan_rsdp (0xE0000, 0x20000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 return rsdp_phys;
699}
700
701#ifdef CONFIG_X86_LOCAL_APIC
702/*
703 * Parse LAPIC entries in MADT
704 * returns 0 on success, < 0 on error
705 */
706static int __init
707acpi_parse_madt_lapic_entries(void)
708{
709 int count;
710
711 /*
712 * Note that the LAPIC address is obtained from the MADT (32-bit value)
713 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
714 */
715
716 count = acpi_table_parse_madt(ACPI_MADT_LAPIC_ADDR_OVR, acpi_parse_lapic_addr_ovr, 0);
717 if (count < 0) {
718 printk(KERN_ERR PREFIX "Error parsing LAPIC address override entry\n");
719 return count;
720 }
721
722 mp_register_lapic_address(acpi_lapic_addr);
723
724 count = acpi_table_parse_madt(ACPI_MADT_LAPIC, acpi_parse_lapic,
725 MAX_APICS);
726 if (!count) {
727 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
728 /* TBD: Cleanup to allow fallback to MPS */
729 return -ENODEV;
730 }
731 else if (count < 0) {
732 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
733 /* TBD: Cleanup to allow fallback to MPS */
734 return count;
735 }
736
737 count = acpi_table_parse_madt(ACPI_MADT_LAPIC_NMI, acpi_parse_lapic_nmi, 0);
738 if (count < 0) {
739 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
740 /* TBD: Cleanup to allow fallback to MPS */
741 return count;
742 }
743 return 0;
744}
745#endif /* CONFIG_X86_LOCAL_APIC */
746
747#if defined(CONFIG_X86_IO_APIC) && defined(CONFIG_ACPI_INTERPRETER)
748/*
749 * Parse IOAPIC related entries in MADT
750 * returns 0 on success, < 0 on error
751 */
752static int __init
753acpi_parse_madt_ioapic_entries(void)
754{
755 int count;
756
757 /*
758 * ACPI interpreter is required to complete interrupt setup,
759 * so if it is off, don't enumerate the io-apics with ACPI.
760 * If MPS is present, it will handle them,
761 * otherwise the system will stay in PIC mode
762 */
763 if (acpi_disabled || acpi_noirq) {
764 return -ENODEV;
765 }
766
767 /*
768 * if "noapic" boot option, don't look for IO-APICs
769 */
770 if (skip_ioapic_setup) {
771 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
772 "due to 'noapic' option.\n");
773 return -ENODEV;
774 }
775
776 count = acpi_table_parse_madt(ACPI_MADT_IOAPIC, acpi_parse_ioapic, MAX_IO_APICS);
777 if (!count) {
778 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
779 return -ENODEV;
780 }
781 else if (count < 0) {
782 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
783 return count;
784 }
785
786 count = acpi_table_parse_madt(ACPI_MADT_INT_SRC_OVR, acpi_parse_int_src_ovr, NR_IRQ_VECTORS);
787 if (count < 0) {
788 printk(KERN_ERR PREFIX "Error parsing interrupt source overrides entry\n");
789 /* TBD: Cleanup to allow fallback to MPS */
790 return count;
791 }
792
793 /*
794 * If BIOS did not supply an INT_SRC_OVR for the SCI
795 * pretend we got one so we can set the SCI flags.
796 */
797 if (!acpi_sci_override_gsi)
798 acpi_sci_ioapic_setup(acpi_fadt.sci_int, 0, 0);
799
800 /* Fill in identity legacy mapings where no override */
801 mp_config_acpi_legacy_irqs();
802
803 count = acpi_table_parse_madt(ACPI_MADT_NMI_SRC, acpi_parse_nmi_src, NR_IRQ_VECTORS);
804 if (count < 0) {
805 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
806 /* TBD: Cleanup to allow fallback to MPS */
807 return count;
808 }
809
810 return 0;
811}
812#else
813static inline int acpi_parse_madt_ioapic_entries(void)
814{
815 return -1;
816}
817#endif /* !(CONFIG_X86_IO_APIC && CONFIG_ACPI_INTERPRETER) */
818
819
820static void __init
821acpi_process_madt(void)
822{
823#ifdef CONFIG_X86_LOCAL_APIC
824 int count, error;
825
826 count = acpi_table_parse(ACPI_APIC, acpi_parse_madt);
827 if (count >= 1) {
828
829 /*
830 * Parse MADT LAPIC entries
831 */
832 error = acpi_parse_madt_lapic_entries();
833 if (!error) {
834 acpi_lapic = 1;
835
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -0700836#ifdef CONFIG_X86_GENERICARCH
837 generic_bigsmp_probe();
838#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 /*
840 * Parse MADT IO-APIC entries
841 */
842 error = acpi_parse_madt_ioapic_entries();
843 if (!error) {
844 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
845 acpi_irq_balance_set(NULL);
846 acpi_ioapic = 1;
847
848 smp_found_config = 1;
849 clustered_apic_check();
850 }
851 }
852 if (error == -EINVAL) {
853 /*
854 * Dell Precision Workstation 410, 610 come here.
855 */
856 printk(KERN_ERR PREFIX "Invalid BIOS MADT, disabling ACPI\n");
857 disable_acpi();
858 }
859 }
860#endif
861 return;
862}
863
Andrey Paninaea00142005-06-25 14:54:42 -0700864extern int acpi_force;
865
866#ifdef __i386__
867
868#ifdef CONFIG_ACPI_PCI
869static int __init disable_acpi_irq(struct dmi_system_id *d)
870{
871 if (!acpi_force) {
872 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
873 d->ident);
874 acpi_noirq_set();
875 }
876 return 0;
877}
878
879static int __init disable_acpi_pci(struct dmi_system_id *d)
880{
881 if (!acpi_force) {
882 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
883 d->ident);
884 acpi_disable_pci();
885 }
886 return 0;
887}
888#endif
889
890static int __init dmi_disable_acpi(struct dmi_system_id *d)
891{
892 if (!acpi_force) {
893 printk(KERN_NOTICE "%s detected: acpi off\n",d->ident);
894 disable_acpi();
895 } else {
896 printk(KERN_NOTICE
897 "Warning: DMI blacklist says broken, but acpi forced\n");
898 }
899 return 0;
900}
901
902/*
903 * Limit ACPI to CPU enumeration for HT
904 */
905static int __init force_acpi_ht(struct dmi_system_id *d)
906{
907 if (!acpi_force) {
908 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n", d->ident);
909 disable_acpi();
910 acpi_ht = 1;
911 } else {
912 printk(KERN_NOTICE
913 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
914 }
915 return 0;
916}
917
918/*
919 * If your system is blacklisted here, but you find that acpi=force
920 * works for you, please contact acpi-devel@sourceforge.net
921 */
922static struct dmi_system_id __initdata acpi_dmi_table[] = {
923 /*
924 * Boxes that need ACPI disabled
925 */
926 {
927 .callback = dmi_disable_acpi,
928 .ident = "IBM Thinkpad",
929 .matches = {
930 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
931 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
932 },
933 },
934
935 /*
936 * Boxes that need acpi=ht
937 */
938 {
939 .callback = force_acpi_ht,
940 .ident = "FSC Primergy T850",
941 .matches = {
942 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
943 DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
944 },
945 },
946 {
947 .callback = force_acpi_ht,
948 .ident = "DELL GX240",
949 .matches = {
950 DMI_MATCH(DMI_BOARD_VENDOR, "Dell Computer Corporation"),
951 DMI_MATCH(DMI_BOARD_NAME, "OptiPlex GX240"),
952 },
953 },
954 {
955 .callback = force_acpi_ht,
956 .ident = "HP VISUALIZE NT Workstation",
957 .matches = {
958 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
959 DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
960 },
961 },
962 {
963 .callback = force_acpi_ht,
964 .ident = "Compaq Workstation W8000",
965 .matches = {
966 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
967 DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
968 },
969 },
970 {
971 .callback = force_acpi_ht,
972 .ident = "ASUS P4B266",
973 .matches = {
974 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
975 DMI_MATCH(DMI_BOARD_NAME, "P4B266"),
976 },
977 },
978 {
979 .callback = force_acpi_ht,
980 .ident = "ASUS P2B-DS",
981 .matches = {
982 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
983 DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
984 },
985 },
986 {
987 .callback = force_acpi_ht,
988 .ident = "ASUS CUR-DLS",
989 .matches = {
990 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
991 DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
992 },
993 },
994 {
995 .callback = force_acpi_ht,
996 .ident = "ABIT i440BX-W83977",
997 .matches = {
998 DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
999 DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
1000 },
1001 },
1002 {
1003 .callback = force_acpi_ht,
1004 .ident = "IBM Bladecenter",
1005 .matches = {
1006 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1007 DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
1008 },
1009 },
1010 {
1011 .callback = force_acpi_ht,
1012 .ident = "IBM eServer xSeries 360",
1013 .matches = {
1014 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1015 DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
1016 },
1017 },
1018 {
1019 .callback = force_acpi_ht,
1020 .ident = "IBM eserver xSeries 330",
1021 .matches = {
1022 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1023 DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1024 },
1025 },
1026 {
1027 .callback = force_acpi_ht,
1028 .ident = "IBM eserver xSeries 440",
1029 .matches = {
1030 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1031 DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1032 },
1033 },
1034
1035#ifdef CONFIG_ACPI_PCI
1036 /*
1037 * Boxes that need ACPI PCI IRQ routing disabled
1038 */
1039 {
1040 .callback = disable_acpi_irq,
1041 .ident = "ASUS A7V",
1042 .matches = {
1043 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1044 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1045 /* newer BIOS, Revision 1011, does work */
1046 DMI_MATCH(DMI_BIOS_VERSION, "ASUS A7V ACPI BIOS Revision 1007"),
1047 },
1048 },
1049
1050 /*
1051 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1052 */
1053 { /* _BBN 0 bug */
1054 .callback = disable_acpi_pci,
1055 .ident = "ASUS PR-DLS",
1056 .matches = {
1057 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1058 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1059 DMI_MATCH(DMI_BIOS_VERSION, "ASUS PR-DLS ACPI BIOS Revision 1010"),
1060 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1061 },
1062 },
1063 {
1064 .callback = disable_acpi_pci,
1065 .ident = "Acer TravelMate 36x Laptop",
1066 .matches = {
1067 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1068 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1069 },
1070 },
1071#endif
Andrey Panin0f8133a2005-06-25 14:54:45 -07001072 { }
Andrey Paninaea00142005-06-25 14:54:42 -07001073};
1074
1075#endif /* __i386__ */
1076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077/*
1078 * acpi_boot_table_init() and acpi_boot_init()
1079 * called from setup_arch(), always.
1080 * 1. checksums all tables
1081 * 2. enumerates lapics
1082 * 3. enumerates io-apics
1083 *
1084 * acpi_table_init() is separate to allow reading SRAT without
1085 * other side effects.
1086 *
1087 * side effects of acpi_boot_init:
1088 * acpi_lapic = 1 if LAPIC found
1089 * acpi_ioapic = 1 if IOAPIC found
1090 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1091 * if acpi_blacklisted() acpi_disabled = 1;
1092 * acpi_irq_model=...
1093 * ...
1094 *
1095 * return value: (currently ignored)
1096 * 0: success
1097 * !0: failure
1098 */
1099
1100int __init
1101acpi_boot_table_init(void)
1102{
1103 int error;
1104
Andrey Paninaea00142005-06-25 14:54:42 -07001105#ifdef __i386__
1106 dmi_check_system(acpi_dmi_table);
1107#endif
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 /*
1110 * If acpi_disabled, bail out
1111 * One exception: acpi=ht continues far enough to enumerate LAPICs
1112 */
1113 if (acpi_disabled && !acpi_ht)
1114 return 1;
1115
1116 /*
1117 * Initialize the ACPI boot-time table parser.
1118 */
1119 error = acpi_table_init();
1120 if (error) {
1121 disable_acpi();
1122 return error;
1123 }
1124
1125#ifdef __i386__
1126 check_acpi_pci();
1127#endif
1128
1129 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1130
1131 /*
1132 * blacklist may disable ACPI entirely
1133 */
1134 error = acpi_blacklisted();
1135 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 if (acpi_force) {
1137 printk(KERN_WARNING PREFIX "acpi=force override\n");
1138 } else {
1139 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1140 disable_acpi();
1141 return error;
1142 }
1143 }
1144
1145 return 0;
1146}
1147
1148
1149int __init acpi_boot_init(void)
1150{
1151 /*
1152 * If acpi_disabled, bail out
1153 * One exception: acpi=ht continues far enough to enumerate LAPICs
1154 */
1155 if (acpi_disabled && !acpi_ht)
1156 return 1;
1157
1158 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1159
1160 /*
1161 * set sci_int and PM timer address
1162 */
1163 acpi_table_parse(ACPI_FADT, acpi_parse_fadt);
1164
1165 /*
1166 * Process the Multiple APIC Description Table (MADT), if present
1167 */
1168 acpi_process_madt();
1169
1170 acpi_table_parse(ACPI_HPET, acpi_parse_hpet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 return 0;
1173}
1174