1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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>
36
37#include <asm/pgtable.h>
38#include <asm/io_apic.h>
39#include <asm/apic.h>
40#include <asm/genapic.h>
41#include <asm/io.h>
42#include <asm/mpspec.h>
43#include <asm/smp.h>
44
45#ifdef CONFIG_X86_LOCAL_APIC
46# include <mach_apic.h>
47#endif
48
49static int __initdata acpi_force = 0;
50
51#ifdef CONFIG_ACPI
52int acpi_disabled = 0;
53#else
54int acpi_disabled = 1;
55#endif
56EXPORT_SYMBOL(acpi_disabled);
57
58#ifdef CONFIG_X86_64
59
60#include <asm/proto.h>
61
62#else
63
64#ifdef CONFIG_X86_LOCAL_APIC
65#include <mach_apic.h>
66#include <mach_mpparse.h>
67#endif
68
69#endif
70
71#define BAD_MADT_ENTRY(entry, end) ( \
72 (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
73 ((struct acpi_subtable_header *)entry)->length < sizeof(*entry))
74
75#define PREFIX "ACPI: "
76
77int acpi_noirq;
78int acpi_pci_disabled;
79EXPORT_SYMBOL(acpi_pci_disabled);
80int acpi_ht __initdata = 1;
81
82int acpi_lapic;
83int acpi_ioapic;
84int acpi_strict;
85
86u8 acpi_sci_flags __initdata;
87int acpi_sci_override_gsi __initdata;
88int acpi_skip_timer_override __initdata;
89int acpi_use_timer_override __initdata;
90
91#ifdef CONFIG_X86_LOCAL_APIC
92static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
93#endif
94
95#ifndef __HAVE_ARCH_CMPXCHG
96#warning ACPI uses CMPXCHG, i486 and later hardware
97#endif
98
99
100
101
102
103
104
105
106
107enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC;
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122char *__init __acpi_map_table(unsigned long phys, unsigned long size)
123{
124 unsigned long base, offset, mapped_size;
125 int idx;
126
127 if (!phys || !size)
128 return NULL;
129
130 if (phys+size <= (max_low_pfn_mapped << PAGE_SHIFT))
131 return __va(phys);
132
133 offset = phys & (PAGE_SIZE - 1);
134 mapped_size = PAGE_SIZE - offset;
135 clear_fixmap(FIX_ACPI_END);
136 set_fixmap(FIX_ACPI_END, phys);
137 base = fix_to_virt(FIX_ACPI_END);
138
139
140
141
142 idx = FIX_ACPI_END;
143 while (mapped_size < size) {
144 if (--idx < FIX_ACPI_BEGIN)
145 return NULL;
146 phys += PAGE_SIZE;
147 clear_fixmap(idx);
148 set_fixmap(idx, phys);
149 mapped_size += PAGE_SIZE;
150 }
151
152 return ((unsigned char *)base + offset);
153}
154
155#ifdef CONFIG_PCI_MMCONFIG
156
157static int acpi_mcfg_64bit_base_addr __initdata = FALSE;
158
159
160struct acpi_mcfg_allocation *pci_mmcfg_config;
161int pci_mmcfg_config_num;
162
163static int __init acpi_mcfg_oem_check(struct acpi_table_mcfg *mcfg)
164{
165 if (!strcmp(mcfg->header.oem_id, "SGI"))
166 acpi_mcfg_64bit_base_addr = TRUE;
167
168 return 0;
169}
170
171int __init acpi_parse_mcfg(struct acpi_table_header *header)
172{
173 struct acpi_table_mcfg *mcfg;
174 unsigned long i;
175 int config_size;
176
177 if (!header)
178 return -EINVAL;
179
180 mcfg = (struct acpi_table_mcfg *)header;
181
182
183 pci_mmcfg_config_num = 0;
184 i = header->length - sizeof(struct acpi_table_mcfg);
185 while (i >= sizeof(struct acpi_mcfg_allocation)) {
186 ++pci_mmcfg_config_num;
187 i -= sizeof(struct acpi_mcfg_allocation);
188 };
189 if (pci_mmcfg_config_num == 0) {
190 printk(KERN_ERR PREFIX "MMCONFIG has no entries\n");
191 return -ENODEV;
192 }
193
194 config_size = pci_mmcfg_config_num * sizeof(*pci_mmcfg_config);
195 pci_mmcfg_config = kmalloc(config_size, GFP_KERNEL);
196 if (!pci_mmcfg_config) {
197 printk(KERN_WARNING PREFIX
198 "No memory for MCFG config tables\n");
199 return -ENOMEM;
200 }
201
202 memcpy(pci_mmcfg_config, &mcfg[1], config_size);
203
204 acpi_mcfg_oem_check(mcfg);
205
206 for (i = 0; i < pci_mmcfg_config_num; ++i) {
207 if ((pci_mmcfg_config[i].address > 0xFFFFFFFF) &&
208 !acpi_mcfg_64bit_base_addr) {
209 printk(KERN_ERR PREFIX
210 "MMCONFIG not in low 4GB of memory\n");
211 kfree(pci_mmcfg_config);
212 pci_mmcfg_config_num = 0;
213 return -ENODEV;
214 }
215 }
216
217 return 0;
218}
219#endif
220
221#ifdef CONFIG_X86_LOCAL_APIC
222static int __init acpi_parse_madt(struct acpi_table_header *table)
223{
224 struct acpi_table_madt *madt = NULL;
225
226 if (!cpu_has_apic)
227 return -EINVAL;
228
229 madt = (struct acpi_table_madt *)table;
230 if (!madt) {
231 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
232 return -ENODEV;
233 }
234
235 if (madt->address) {
236 acpi_lapic_addr = (u64) madt->address;
237
238 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
239 madt->address);
240 }
241
242 acpi_madt_oem_check(madt->header.oem_id, madt->header.oem_table_id);
243
244 return 0;
245}
246
247static void __cpuinit acpi_register_lapic(int id, u8 enabled)
248{
249 unsigned int ver = 0;
250
251 if (!enabled) {
252 ++disabled_cpus;
253 return;
254 }
255
256 if (boot_cpu_physical_apicid != -1U)
257 ver = apic_version[boot_cpu_physical_apicid];
258
259 generic_processor_info(id, ver);
260}
261
262static int __init
263acpi_parse_lapic(struct acpi_subtable_header * header, const unsigned long end)
264{
265 struct acpi_madt_local_apic *processor = NULL;
266
267 processor = (struct acpi_madt_local_apic *)header;
268
269 if (BAD_MADT_ENTRY(processor, end))
270 return -EINVAL;
271
272 acpi_table_print_madt_entry(header);
273
274
275
276
277
278
279
280
281 acpi_register_lapic(processor->id,
282 processor->lapic_flags & ACPI_MADT_ENABLED);
283
284 return 0;
285}
286
287static int __init
288acpi_parse_sapic(struct acpi_subtable_header *header, const unsigned long end)
289{
290 struct acpi_madt_local_sapic *processor = NULL;
291
292 processor = (struct acpi_madt_local_sapic *)header;
293
294 if (BAD_MADT_ENTRY(processor, end))
295 return -EINVAL;
296
297 acpi_table_print_madt_entry(header);
298
299 acpi_register_lapic((processor->id << 8) | processor->eid,
300 processor->lapic_flags & ACPI_MADT_ENABLED);
301
302 return 0;
303}
304
305static int __init
306acpi_parse_lapic_addr_ovr(struct acpi_subtable_header * header,
307 const unsigned long end)
308{
309 struct acpi_madt_local_apic_override *lapic_addr_ovr = NULL;
310
311 lapic_addr_ovr = (struct acpi_madt_local_apic_override *)header;
312
313 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
314 return -EINVAL;
315
316 acpi_lapic_addr = lapic_addr_ovr->address;
317
318 return 0;
319}
320
321static int __init
322acpi_parse_lapic_nmi(struct acpi_subtable_header * header, const unsigned long end)
323{
324 struct acpi_madt_local_apic_nmi *lapic_nmi = NULL;
325
326 lapic_nmi = (struct acpi_madt_local_apic_nmi *)header;
327
328 if (BAD_MADT_ENTRY(lapic_nmi, end))
329 return -EINVAL;
330
331 acpi_table_print_madt_entry(header);
332
333 if (lapic_nmi->lint != 1)
334 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
335
336 return 0;
337}
338
339#endif
340
341#ifdef CONFIG_X86_IO_APIC
342
343static int __init
344acpi_parse_ioapic(struct acpi_subtable_header * header, const unsigned long end)
345{
346 struct acpi_madt_io_apic *ioapic = NULL;
347
348 ioapic = (struct acpi_madt_io_apic *)header;
349
350 if (BAD_MADT_ENTRY(ioapic, end))
351 return -EINVAL;
352
353 acpi_table_print_madt_entry(header);
354
355 mp_register_ioapic(ioapic->id,
356 ioapic->address, ioapic->global_irq_base);
357
358 return 0;
359}
360
361
362
363
364static void __init acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
365{
366 if (trigger == 0)
367 trigger = 3;
368
369 if (polarity == 0)
370 polarity = 3;
371
372
373 if (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)
374 trigger = (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2;
375
376 if (acpi_sci_flags & ACPI_MADT_POLARITY_MASK)
377 polarity = acpi_sci_flags & ACPI_MADT_POLARITY_MASK;
378
379
380
381
382
383
384 mp_override_legacy_irq(gsi, polarity, trigger, gsi);
385
386
387
388
389
390 acpi_sci_override_gsi = gsi;
391 return;
392}
393
394static int __init
395acpi_parse_int_src_ovr(struct acpi_subtable_header * header,
396 const unsigned long end)
397{
398 struct acpi_madt_interrupt_override *intsrc = NULL;
399
400 intsrc = (struct acpi_madt_interrupt_override *)header;
401
402 if (BAD_MADT_ENTRY(intsrc, end))
403 return -EINVAL;
404
405 acpi_table_print_madt_entry(header);
406
407 if (intsrc->source_irq == acpi_gbl_FADT.sci_interrupt) {
408 acpi_sci_ioapic_setup(intsrc->global_irq,
409 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
410 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
411 return 0;
412 }
413
414 if (acpi_skip_timer_override &&
415 intsrc->source_irq == 0 && intsrc->global_irq == 2) {
416 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
417 return 0;
418 }
419
420 mp_override_legacy_irq(intsrc->source_irq,
421 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
422 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2,
423 intsrc->global_irq);
424
425 return 0;
426}
427
428static int __init
429acpi_parse_nmi_src(struct acpi_subtable_header * header, const unsigned long end)
430{
431 struct acpi_madt_nmi_source *nmi_src = NULL;
432
433 nmi_src = (struct acpi_madt_nmi_source *)header;
434
435 if (BAD_MADT_ENTRY(nmi_src, end))
436 return -EINVAL;
437
438 acpi_table_print_madt_entry(header);
439
440
441
442 return 0;
443}
444
445#endif
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
462{
463 unsigned int mask = 1 << irq;
464 unsigned int old, new;
465
466
467 old = inb(0x4d0) | (inb(0x4d1) << 8);
468
469
470
471
472
473
474 new = acpi_noirq ? old : 0;
475
476
477
478
479
480 switch (trigger) {
481 case 1:
482 new &= ~mask;
483 break;
484 case 3:
485 new |= mask;
486 break;
487 }
488
489 if (old == new)
490 return;
491
492 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
493 outb(new, 0x4d0);
494 outb(new >> 8, 0x4d1);
495}
496
497int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
498{
499 *irq = gsi;
500 return 0;
501}
502
503
504
505
506
507int acpi_register_gsi(u32 gsi, int triggering, int polarity)
508{
509 unsigned int irq;
510 unsigned int plat_gsi = gsi;
511
512#ifdef CONFIG_PCI
513
514
515
516 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
517 if (triggering == ACPI_LEVEL_SENSITIVE)
518 eisa_set_level_irq(gsi);
519 }
520#endif
521
522#ifdef CONFIG_X86_IO_APIC
523 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
524 plat_gsi = mp_register_gsi(gsi, triggering, polarity);
525 }
526#endif
527 acpi_gsi_to_irq(plat_gsi, &irq);
528 return irq;
529}
530
531
532
533
534#ifdef CONFIG_ACPI_HOTPLUG_CPU
535
536static int __cpuinit _acpi_map_lsapic(acpi_handle handle, int *pcpu)
537{
538 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
539 union acpi_object *obj;
540 struct acpi_madt_local_apic *lapic;
541 cpumask_t tmp_map, new_map;
542 u8 physid;
543 int cpu;
544
545 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
546 return -EINVAL;
547
548 if (!buffer.length || !buffer.pointer)
549 return -EINVAL;
550
551 obj = buffer.pointer;
552 if (obj->type != ACPI_TYPE_BUFFER ||
553 obj->buffer.length < sizeof(*lapic)) {
554 kfree(buffer.pointer);
555 return -EINVAL;
556 }
557
558 lapic = (struct acpi_madt_local_apic *)obj->buffer.pointer;
559
560 if (lapic->header.type != ACPI_MADT_TYPE_LOCAL_APIC ||
561 !(lapic->lapic_flags & ACPI_MADT_ENABLED)) {
562 kfree(buffer.pointer);
563 return -EINVAL;
564 }
565
566 physid = lapic->id;
567
568 kfree(buffer.pointer);
569 buffer.length = ACPI_ALLOCATE_BUFFER;
570 buffer.pointer = NULL;
571
572 tmp_map = cpu_present_map;
573 acpi_register_lapic(physid, lapic->lapic_flags & ACPI_MADT_ENABLED);
574
575
576
577
578
579 cpus_andnot(new_map, cpu_present_map, tmp_map);
580 if (cpus_empty(new_map)) {
581 printk ("Unable to map lapic to logical cpu number\n");
582 return -EINVAL;
583 }
584
585 cpu = first_cpu(new_map);
586
587 *pcpu = cpu;
588 return 0;
589}
590
591
592int __ref acpi_map_lsapic(acpi_handle handle, int *pcpu)
593{
594 return _acpi_map_lsapic(handle, pcpu);
595}
596EXPORT_SYMBOL(acpi_map_lsapic);
597
598int acpi_unmap_lsapic(int cpu)
599{
600 per_cpu(x86_cpu_to_apicid, cpu) = -1;
601 cpu_clear(cpu, cpu_present_map);
602 num_processors--;
603
604 return (0);
605}
606
607EXPORT_SYMBOL(acpi_unmap_lsapic);
608#endif
609
610int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
611{
612
613 return -EINVAL;
614}
615
616EXPORT_SYMBOL(acpi_register_ioapic);
617
618int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
619{
620
621 return -EINVAL;
622}
623
624EXPORT_SYMBOL(acpi_unregister_ioapic);
625
626static int __init acpi_parse_sbf(struct acpi_table_header *table)
627{
628 struct acpi_table_boot *sb;
629
630 sb = (struct acpi_table_boot *)table;
631 if (!sb) {
632 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
633 return -ENODEV;
634 }
635
636 sbf_port = sb->cmos_index;
637
638 return 0;
639}
640
641#ifdef CONFIG_HPET_TIMER
642#include <asm/hpet.h>
643
644static struct __initdata resource *hpet_res;
645
646static int __init acpi_parse_hpet(struct acpi_table_header *table)
647{
648 struct acpi_table_hpet *hpet_tbl;
649
650 hpet_tbl = (struct acpi_table_hpet *)table;
651 if (!hpet_tbl) {
652 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
653 return -ENODEV;
654 }
655
656 if (hpet_tbl->address.space_id != ACPI_SPACE_MEM) {
657 printk(KERN_WARNING PREFIX "HPET timers must be located in "
658 "memory.\n");
659 return -1;
660 }
661
662 hpet_address = hpet_tbl->address.address;
663
664
665
666
667
668 if (!hpet_address) {
669 printk(KERN_WARNING PREFIX
670 "HPET id: %#x base: %#lx is invalid\n",
671 hpet_tbl->id, hpet_address);
672 return 0;
673 }
674#ifdef CONFIG_X86_64
675
676
677
678
679
680 if (hpet_address == 0xfed0000000000000UL) {
681 if (!hpet_force_user) {
682 printk(KERN_WARNING PREFIX "HPET id: %#x "
683 "base: 0xfed0000000000000 is bogus\n "
684 "try hpet=force on the kernel command line to "
685 "fix it up to 0xfed00000.\n", hpet_tbl->id);
686 hpet_address = 0;
687 return 0;
688 }
689 printk(KERN_WARNING PREFIX
690 "HPET id: %#x base: 0xfed0000000000000 fixed up "
691 "to 0xfed00000.\n", hpet_tbl->id);
692 hpet_address >>= 32;
693 }
694#endif
695 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
696 hpet_tbl->id, hpet_address);
697
698
699
700
701
702#define HPET_RESOURCE_NAME_SIZE 9
703 hpet_res = alloc_bootmem(sizeof(*hpet_res) + HPET_RESOURCE_NAME_SIZE);
704
705 hpet_res->name = (void *)&hpet_res[1];
706 hpet_res->flags = IORESOURCE_MEM;
707 snprintf((char *)hpet_res->name, HPET_RESOURCE_NAME_SIZE, "HPET %u",
708 hpet_tbl->sequence);
709
710 hpet_res->start = hpet_address;
711 hpet_res->end = hpet_address + (1 * 1024) - 1;
712
713 return 0;
714}
715
716
717
718
719
720static __init int hpet_insert_resource(void)
721{
722 if (!hpet_res)
723 return 1;
724
725 return insert_resource(&iomem_resource, hpet_res);
726}
727
728late_initcall(hpet_insert_resource);
729
730#else
731#define acpi_parse_hpet NULL
732#endif
733
734static int __init acpi_parse_fadt(struct acpi_table_header *table)
735{
736
737#ifdef CONFIG_X86_PM_TIMER
738
739 if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) {
740
741 if (acpi_gbl_FADT.xpm_timer_block.space_id !=
742 ACPI_ADR_SPACE_SYSTEM_IO)
743 return 0;
744
745 pmtmr_ioport = acpi_gbl_FADT.xpm_timer_block.address;
746
747
748
749
750
751 if (!pmtmr_ioport)
752 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
753 } else {
754
755 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
756 }
757 if (pmtmr_ioport)
758 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
759 pmtmr_ioport);
760#endif
761 return 0;
762}
763
764#ifdef CONFIG_X86_LOCAL_APIC
765
766
767
768
769
770static void __init acpi_register_lapic_address(unsigned long address)
771{
772 mp_lapic_addr = address;
773
774 set_fixmap_nocache(FIX_APIC_BASE, address);
775 if (boot_cpu_physical_apicid == -1U) {
776 boot_cpu_physical_apicid = read_apic_id();
777 apic_version[boot_cpu_physical_apicid] =
778 GET_APIC_VERSION(apic_read(APIC_LVR));
779 }
780}
781
782static int __init early_acpi_parse_madt_lapic_addr_ovr(void)
783{
784 int count;
785
786 if (!cpu_has_apic)
787 return -ENODEV;
788
789
790
791
792
793
794 count =
795 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
796 acpi_parse_lapic_addr_ovr, 0);
797 if (count < 0) {
798 printk(KERN_ERR PREFIX
799 "Error parsing LAPIC address override entry\n");
800 return count;
801 }
802
803 acpi_register_lapic_address(acpi_lapic_addr);
804
805 return count;
806}
807
808static int __init acpi_parse_madt_lapic_entries(void)
809{
810 int count;
811
812 if (!cpu_has_apic)
813 return -ENODEV;
814
815
816
817
818
819
820 count =
821 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
822 acpi_parse_lapic_addr_ovr, 0);
823 if (count < 0) {
824 printk(KERN_ERR PREFIX
825 "Error parsing LAPIC address override entry\n");
826 return count;
827 }
828
829 acpi_register_lapic_address(acpi_lapic_addr);
830
831 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_SAPIC,
832 acpi_parse_sapic, MAX_APICS);
833
834 if (!count)
835 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC,
836 acpi_parse_lapic, MAX_APICS);
837 if (!count) {
838 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
839
840 return -ENODEV;
841 } else if (count < 0) {
842 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
843
844 return count;
845 }
846
847 count =
848 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_NMI, acpi_parse_lapic_nmi, 0);
849 if (count < 0) {
850 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
851
852 return count;
853 }
854 return 0;
855}
856#endif
857
858#ifdef CONFIG_X86_IO_APIC
859#define MP_ISA_BUS 0
860
861#ifdef CONFIG_X86_ES7000
862extern int es7000_plat;
863#endif
864
865static struct {
866 int apic_id;
867 int gsi_base;
868 int gsi_end;
869 DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1);
870} mp_ioapic_routing[MAX_IO_APICS];
871
872static int mp_find_ioapic(int gsi)
873{
874 int i = 0;
875
876
877 for (i = 0; i < nr_ioapics; i++) {
878 if ((gsi >= mp_ioapic_routing[i].gsi_base)
879 && (gsi <= mp_ioapic_routing[i].gsi_end))
880 return i;
881 }
882
883 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
884 return -1;
885}
886
887static u8 __init uniq_ioapic_id(u8 id)
888{
889#ifdef CONFIG_X86_32
890 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
891 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
892 return io_apic_get_unique_id(nr_ioapics, id);
893 else
894 return id;
895#else
896 int i;
897 DECLARE_BITMAP(used, 256);
898 bitmap_zero(used, 256);
899 for (i = 0; i < nr_ioapics; i++) {
900 struct mp_config_ioapic *ia = &mp_ioapics[i];
901 __set_bit(ia->mp_apicid, used);
902 }
903 if (!test_bit(id, used))
904 return id;
905 return find_first_zero_bit(used, 256);
906#endif
907}
908
909static int bad_ioapic(unsigned long address)
910{
911 if (nr_ioapics >= MAX_IO_APICS) {
912 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
913 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
914 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
915 }
916 if (!address) {
917 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
918 " found in table, skipping!\n");
919 return 1;
920 }
921 return 0;
922}
923
924void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
925{
926 int idx = 0;
927
928 if (bad_ioapic(address))
929 return;
930
931 idx = nr_ioapics;
932
933 mp_ioapics[idx].mp_type = MP_IOAPIC;
934 mp_ioapics[idx].mp_flags = MPC_APIC_USABLE;
935 mp_ioapics[idx].mp_apicaddr = address;
936
937 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
938 mp_ioapics[idx].mp_apicid = uniq_ioapic_id(id);
939#ifdef CONFIG_X86_32
940 mp_ioapics[idx].mp_apicver = io_apic_get_version(idx);
941#else
942 mp_ioapics[idx].mp_apicver = 0;
943#endif
944
945
946
947
948 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mp_apicid;
949 mp_ioapic_routing[idx].gsi_base = gsi_base;
950 mp_ioapic_routing[idx].gsi_end = gsi_base +
951 io_apic_get_redir_entries(idx);
952
953 printk(KERN_INFO "IOAPIC[%d]: apic_id %d, version %d, address 0x%lx, "
954 "GSI %d-%d\n", idx, mp_ioapics[idx].mp_apicid,
955 mp_ioapics[idx].mp_apicver, mp_ioapics[idx].mp_apicaddr,
956 mp_ioapic_routing[idx].gsi_base, mp_ioapic_routing[idx].gsi_end);
957
958 nr_ioapics++;
959}
960
961static void assign_to_mp_irq(struct mp_config_intsrc *m,
962 struct mp_config_intsrc *mp_irq)
963{
964 memcpy(mp_irq, m, sizeof(struct mp_config_intsrc));
965}
966
967static int mp_irq_cmp(struct mp_config_intsrc *mp_irq,
968 struct mp_config_intsrc *m)
969{
970 return memcmp(mp_irq, m, sizeof(struct mp_config_intsrc));
971}
972
973static void save_mp_irq(struct mp_config_intsrc *m)
974{
975 int i;
976
977 for (i = 0; i < mp_irq_entries; i++) {
978 if (!mp_irq_cmp(&mp_irqs[i], m))
979 return;
980 }
981
982 assign_to_mp_irq(m, &mp_irqs[mp_irq_entries]);
983 if (++mp_irq_entries == MAX_IRQ_SOURCES)
984 panic("Max # of irq sources exceeded!!\n");
985}
986
987void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
988{
989 int ioapic;
990 int pin;
991 struct mp_config_intsrc mp_irq;
992
993
994
995
996 ioapic = mp_find_ioapic(gsi);
997 if (ioapic < 0)
998 return;
999 pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
1000
1001
1002
1003
1004
1005
1006 if ((bus_irq == 0) && (trigger == 3))
1007 trigger = 1;
1008
1009 mp_irq.mp_type = MP_INTSRC;
1010 mp_irq.mp_irqtype = mp_INT;
1011 mp_irq.mp_irqflag = (trigger << 2) | polarity;
1012 mp_irq.mp_srcbus = MP_ISA_BUS;
1013 mp_irq.mp_srcbusirq = bus_irq;
1014 mp_irq.mp_dstapic = mp_ioapics[ioapic].mp_apicid;
1015 mp_irq.mp_dstirq = pin;
1016
1017 save_mp_irq(&mp_irq);
1018}
1019
1020void __init mp_config_acpi_legacy_irqs(void)
1021{
1022 int i;
1023 int ioapic;
1024 unsigned int dstapic;
1025 struct mp_config_intsrc mp_irq;
1026
1027#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
1028
1029
1030
1031 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
1032#endif
1033 set_bit(MP_ISA_BUS, mp_bus_not_pci);
1034 pr_debug("Bus #%d is ISA\n", MP_ISA_BUS);
1035
1036#ifdef CONFIG_X86_ES7000
1037
1038
1039
1040 if (es7000_plat == 1)
1041 return;
1042#endif
1043
1044
1045
1046
1047 ioapic = mp_find_ioapic(0);
1048 if (ioapic < 0)
1049 return;
1050 dstapic = mp_ioapics[ioapic].mp_apicid;
1051
1052
1053
1054
1055
1056 for (i = 0; i < 16; i++) {
1057 int idx;
1058
1059 for (idx = 0; idx < mp_irq_entries; idx++) {
1060 struct mp_config_intsrc *irq = mp_irqs + idx;
1061
1062
1063 if (irq->mp_srcbus == MP_ISA_BUS
1064 && irq->mp_srcbusirq == i)
1065 break;
1066
1067
1068 if (irq->mp_dstapic == dstapic &&
1069 irq->mp_dstirq == i)
1070 break;
1071 }
1072
1073 if (idx != mp_irq_entries) {
1074 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
1075 continue;
1076 }
1077
1078 mp_irq.mp_type = MP_INTSRC;
1079 mp_irq.mp_irqflag = 0;
1080 mp_irq.mp_srcbus = MP_ISA_BUS;
1081 mp_irq.mp_dstapic = dstapic;
1082 mp_irq.mp_irqtype = mp_INT;
1083 mp_irq.mp_srcbusirq = i;
1084 mp_irq.mp_dstirq = i;
1085
1086 save_mp_irq(&mp_irq);
1087 }
1088}
1089
1090int mp_register_gsi(u32 gsi, int triggering, int polarity)
1091{
1092 int ioapic;
1093 int ioapic_pin;
1094#ifdef CONFIG_X86_32
1095#define MAX_GSI_NUM 4096
1096#define IRQ_COMPRESSION_START 64
1097
1098 static int pci_irq = IRQ_COMPRESSION_START;
1099
1100
1101
1102
1103
1104 static int gsi_to_irq[MAX_GSI_NUM];
1105#else
1106
1107 if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
1108 return gsi;
1109#endif
1110
1111
1112 if (acpi_gbl_FADT.sci_interrupt == gsi)
1113 return gsi;
1114
1115 ioapic = mp_find_ioapic(gsi);
1116 if (ioapic < 0) {
1117 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1118 return gsi;
1119 }
1120
1121 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
1122
1123#ifdef CONFIG_X86_32
1124 if (ioapic_renumber_irq)
1125 gsi = ioapic_renumber_irq(ioapic, gsi);
1126#endif
1127
1128
1129
1130
1131
1132
1133 if (ioapic_pin > MP_MAX_IOAPIC_PIN) {
1134 printk(KERN_ERR "Invalid reference to IOAPIC pin "
1135 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1136 ioapic_pin);
1137 return gsi;
1138 }
1139 if (test_bit(ioapic_pin, mp_ioapic_routing[ioapic].pin_programmed)) {
1140 pr_debug("Pin %d-%d already programmed\n",
1141 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
1142#ifdef CONFIG_X86_32
1143 return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]);
1144#else
1145 return gsi;
1146#endif
1147 }
1148
1149 set_bit(ioapic_pin, mp_ioapic_routing[ioapic].pin_programmed);
1150#ifdef CONFIG_X86_32
1151
1152
1153
1154 if ((gsi >= IRQ_COMPRESSION_START)
1155 && (triggering == ACPI_LEVEL_SENSITIVE)) {
1156
1157
1158
1159
1160 int irq = gsi;
1161 if (gsi < MAX_GSI_NUM) {
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172 gsi = pci_irq++;
1173
1174
1175
1176 if (gsi == acpi_gbl_FADT.sci_interrupt)
1177 gsi = pci_irq++;
1178 gsi_to_irq[irq] = gsi;
1179 } else {
1180 printk(KERN_ERR "GSI %u is too high\n", gsi);
1181 return gsi;
1182 }
1183 }
1184#endif
1185 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
1186 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
1187 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
1188 return gsi;
1189}
1190
1191int mp_config_acpi_gsi(unsigned char number, unsigned int devfn, u8 pin,
1192 u32 gsi, int triggering, int polarity)
1193{
1194#ifdef CONFIG_X86_MPPARSE
1195 struct mp_config_intsrc mp_irq;
1196 int ioapic;
1197
1198 if (!acpi_ioapic)
1199 return 0;
1200
1201
1202 mp_irq.mp_type = MP_INTSRC;
1203 mp_irq.mp_irqtype = mp_INT;
1204 mp_irq.mp_irqflag = (triggering == ACPI_EDGE_SENSITIVE ? 4 : 0x0c) |
1205 (polarity == ACPI_ACTIVE_HIGH ? 1 : 3);
1206 mp_irq.mp_srcbus = number;
1207 mp_irq.mp_srcbusirq = (((devfn >> 3) & 0x1f) << 2) | ((pin - 1) & 3);
1208 ioapic = mp_find_ioapic(gsi);
1209 mp_irq.mp_dstapic = mp_ioapic_routing[ioapic].apic_id;
1210 mp_irq.mp_dstirq = gsi - mp_ioapic_routing[ioapic].gsi_base;
1211
1212 save_mp_irq(&mp_irq);
1213#endif
1214 return 0;
1215}
1216
1217
1218
1219
1220
1221static int __init acpi_parse_madt_ioapic_entries(void)
1222{
1223 int count;
1224
1225
1226
1227
1228
1229
1230
1231 if (acpi_disabled || acpi_noirq) {
1232 return -ENODEV;
1233 }
1234
1235 if (!cpu_has_apic)
1236 return -ENODEV;
1237
1238
1239
1240
1241 if (skip_ioapic_setup) {
1242 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
1243 "due to 'noapic' option.\n");
1244 return -ENODEV;
1245 }
1246
1247 count =
1248 acpi_table_parse_madt(ACPI_MADT_TYPE_IO_APIC, acpi_parse_ioapic,
1249 MAX_IO_APICS);
1250 if (!count) {
1251 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
1252 return -ENODEV;
1253 } else if (count < 0) {
1254 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
1255 return count;
1256 }
1257
1258 count =
1259 acpi_table_parse_madt(ACPI_MADT_TYPE_INTERRUPT_OVERRIDE, acpi_parse_int_src_ovr,
1260 nr_irqs);
1261 if (count < 0) {
1262 printk(KERN_ERR PREFIX
1263 "Error parsing interrupt source overrides entry\n");
1264
1265 return count;
1266 }
1267
1268
1269
1270
1271
1272 if (!acpi_sci_override_gsi)
1273 acpi_sci_ioapic_setup(acpi_gbl_FADT.sci_interrupt, 0, 0);
1274
1275
1276 mp_config_acpi_legacy_irqs();
1277
1278 count =
1279 acpi_table_parse_madt(ACPI_MADT_TYPE_NMI_SOURCE, acpi_parse_nmi_src,
1280 nr_irqs);
1281 if (count < 0) {
1282 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
1283
1284 return count;
1285 }
1286
1287 return 0;
1288}
1289#else
1290static inline int acpi_parse_madt_ioapic_entries(void)
1291{
1292 return -1;
1293}
1294#endif
1295
1296static void __init early_acpi_process_madt(void)
1297{
1298#ifdef CONFIG_X86_LOCAL_APIC
1299 int error;
1300
1301 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
1302
1303
1304
1305
1306 error = early_acpi_parse_madt_lapic_addr_ovr();
1307 if (!error) {
1308 acpi_lapic = 1;
1309 smp_found_config = 1;
1310 }
1311 if (error == -EINVAL) {
1312
1313
1314
1315 printk(KERN_ERR PREFIX
1316 "Invalid BIOS MADT, disabling ACPI\n");
1317 disable_acpi();
1318 }
1319 }
1320#endif
1321}
1322
1323static void __init acpi_process_madt(void)
1324{
1325#ifdef CONFIG_X86_LOCAL_APIC
1326 int error;
1327
1328 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
1329
1330
1331
1332
1333 error = acpi_parse_madt_lapic_entries();
1334 if (!error) {
1335 acpi_lapic = 1;
1336
1337#ifdef CONFIG_X86_GENERICARCH
1338 generic_bigsmp_probe();
1339#endif
1340
1341
1342
1343 error = acpi_parse_madt_ioapic_entries();
1344 if (!error) {
1345 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
1346 acpi_ioapic = 1;
1347
1348 smp_found_config = 1;
1349#ifdef CONFIG_X86_32
1350 setup_apic_routing();
1351#endif
1352 }
1353 }
1354 if (error == -EINVAL) {
1355
1356
1357
1358 printk(KERN_ERR PREFIX
1359 "Invalid BIOS MADT, disabling ACPI\n");
1360 disable_acpi();
1361 }
1362 }
1363#endif
1364 return;
1365}
1366
1367static int __init disable_acpi_irq(const struct dmi_system_id *d)
1368{
1369 if (!acpi_force) {
1370 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
1371 d->ident);
1372 acpi_noirq_set();
1373 }
1374 return 0;
1375}
1376
1377static int __init disable_acpi_pci(const struct dmi_system_id *d)
1378{
1379 if (!acpi_force) {
1380 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
1381 d->ident);
1382 acpi_disable_pci();
1383 }
1384 return 0;
1385}
1386
1387static int __init dmi_disable_acpi(const struct dmi_system_id *d)
1388{
1389 if (!acpi_force) {
1390 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
1391 disable_acpi();
1392 } else {
1393 printk(KERN_NOTICE
1394 "Warning: DMI blacklist says broken, but acpi forced\n");
1395 }
1396 return 0;
1397}
1398
1399
1400
1401
1402static int __init force_acpi_ht(const struct dmi_system_id *d)
1403{
1404 if (!acpi_force) {
1405 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n",
1406 d->ident);
1407 disable_acpi();
1408 acpi_ht = 1;
1409 } else {
1410 printk(KERN_NOTICE
1411 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
1412 }
1413 return 0;
1414}
1415
1416
1417
1418
1419static int __init dmi_ignore_irq0_timer_override(const struct dmi_system_id *d)
1420{
1421
1422
1423
1424
1425 if (!acpi_skip_timer_override) {
1426 WARN(1, KERN_ERR "ati_ixp4x0 quirk not complete.\n");
1427 pr_notice("%s detected: Ignoring BIOS IRQ0 pin2 override\n",
1428 d->ident);
1429 acpi_skip_timer_override = 1;
1430 }
1431 return 0;
1432}
1433
1434
1435
1436
1437
1438static struct dmi_system_id __initdata acpi_dmi_table[] = {
1439
1440
1441
1442 {
1443 .callback = dmi_disable_acpi,
1444 .ident = "IBM Thinkpad",
1445 .matches = {
1446 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1447 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
1448 },
1449 },
1450
1451
1452
1453
1454 {
1455 .callback = force_acpi_ht,
1456 .ident = "FSC Primergy T850",
1457 .matches = {
1458 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
1459 DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
1460 },
1461 },
1462 {
1463 .callback = force_acpi_ht,
1464 .ident = "HP VISUALIZE NT Workstation",
1465 .matches = {
1466 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
1467 DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
1468 },
1469 },
1470 {
1471 .callback = force_acpi_ht,
1472 .ident = "Compaq Workstation W8000",
1473 .matches = {
1474 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
1475 DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
1476 },
1477 },
1478 {
1479 .callback = force_acpi_ht,
1480 .ident = "ASUS P4B266",
1481 .matches = {
1482 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1483 DMI_MATCH(DMI_BOARD_NAME, "P4B266"),
1484 },
1485 },
1486 {
1487 .callback = force_acpi_ht,
1488 .ident = "ASUS P2B-DS",
1489 .matches = {
1490 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1491 DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
1492 },
1493 },
1494 {
1495 .callback = force_acpi_ht,
1496 .ident = "ASUS CUR-DLS",
1497 .matches = {
1498 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1499 DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
1500 },
1501 },
1502 {
1503 .callback = force_acpi_ht,
1504 .ident = "ABIT i440BX-W83977",
1505 .matches = {
1506 DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
1507 DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
1508 },
1509 },
1510 {
1511 .callback = force_acpi_ht,
1512 .ident = "IBM Bladecenter",
1513 .matches = {
1514 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1515 DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
1516 },
1517 },
1518 {
1519 .callback = force_acpi_ht,
1520 .ident = "IBM eServer xSeries 360",
1521 .matches = {
1522 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1523 DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
1524 },
1525 },
1526 {
1527 .callback = force_acpi_ht,
1528 .ident = "IBM eserver xSeries 330",
1529 .matches = {
1530 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1531 DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1532 },
1533 },
1534 {
1535 .callback = force_acpi_ht,
1536 .ident = "IBM eserver xSeries 440",
1537 .matches = {
1538 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1539 DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1540 },
1541 },
1542
1543
1544
1545
1546 {
1547 .callback = disable_acpi_irq,
1548 .ident = "ASUS A7V",
1549 .matches = {
1550 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1551 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1552
1553 DMI_MATCH(DMI_BIOS_VERSION,
1554 "ASUS A7V ACPI BIOS Revision 1007"),
1555 },
1556 },
1557 {
1558
1559
1560
1561
1562
1563
1564 .callback = disable_acpi_irq,
1565 .ident = "IBM Thinkpad 600 Series 2645",
1566 .matches = {
1567 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1568 DMI_MATCH(DMI_BOARD_NAME, "2645"),
1569 },
1570 },
1571 {
1572 .callback = disable_acpi_irq,
1573 .ident = "IBM Thinkpad 600 Series 2646",
1574 .matches = {
1575 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1576 DMI_MATCH(DMI_BOARD_NAME, "2646"),
1577 },
1578 },
1579
1580
1581
1582 {
1583 .callback = disable_acpi_pci,
1584 .ident = "ASUS PR-DLS",
1585 .matches = {
1586 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1587 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1588 DMI_MATCH(DMI_BIOS_VERSION,
1589 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1590 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1591 },
1592 },
1593 {
1594 .callback = disable_acpi_pci,
1595 .ident = "Acer TravelMate 36x Laptop",
1596 .matches = {
1597 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1598 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1599 },
1600 },
1601 {}
1602};
1603
1604
1605static struct dmi_system_id __initdata acpi_dmi_table_late[] = {
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616 {
1617 .callback = dmi_ignore_irq0_timer_override,
1618 .ident = "HP nx6115 laptop",
1619 .matches = {
1620 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1621 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6115"),
1622 },
1623 },
1624 {
1625 .callback = dmi_ignore_irq0_timer_override,
1626 .ident = "HP NX6125 laptop",
1627 .matches = {
1628 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1629 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6125"),
1630 },
1631 },
1632 {
1633 .callback = dmi_ignore_irq0_timer_override,
1634 .ident = "HP NX6325 laptop",
1635 .matches = {
1636 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1637 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6325"),
1638 },
1639 },
1640 {
1641 .callback = dmi_ignore_irq0_timer_override,
1642 .ident = "HP 6715b laptop",
1643 .matches = {
1644 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1645 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 6715b"),
1646 },
1647 },
1648 {}
1649};
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674int __init acpi_boot_table_init(void)
1675{
1676 int error;
1677
1678 dmi_check_system(acpi_dmi_table);
1679
1680
1681
1682
1683
1684 if (acpi_disabled && !acpi_ht)
1685 return 1;
1686
1687
1688
1689
1690 error = acpi_table_init();
1691 if (error) {
1692 disable_acpi();
1693 return error;
1694 }
1695
1696 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
1697
1698
1699
1700
1701 error = acpi_blacklisted();
1702 if (error) {
1703 if (acpi_force) {
1704 printk(KERN_WARNING PREFIX "acpi=force override\n");
1705 } else {
1706 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1707 disable_acpi();
1708 return error;
1709 }
1710 }
1711
1712 return 0;
1713}
1714
1715int __init early_acpi_boot_init(void)
1716{
1717
1718
1719
1720
1721 if (acpi_disabled && !acpi_ht)
1722 return 1;
1723
1724
1725
1726
1727 early_acpi_process_madt();
1728
1729 return 0;
1730}
1731
1732int __init acpi_boot_init(void)
1733{
1734
1735 dmi_check_system(acpi_dmi_table_late);
1736
1737
1738
1739
1740
1741 if (acpi_disabled && !acpi_ht)
1742 return 1;
1743
1744 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
1745
1746
1747
1748
1749 acpi_table_parse(ACPI_SIG_FADT, acpi_parse_fadt);
1750
1751
1752
1753
1754 acpi_process_madt();
1755
1756 acpi_table_parse(ACPI_SIG_HPET, acpi_parse_hpet);
1757
1758 return 0;
1759}
1760
1761static int __init parse_acpi(char *arg)
1762{
1763 if (!arg)
1764 return -EINVAL;
1765
1766
1767 if (strcmp(arg, "off") == 0) {
1768 disable_acpi();
1769 }
1770
1771 else if (strcmp(arg, "force") == 0) {
1772 acpi_force = 1;
1773 acpi_ht = 1;
1774 acpi_disabled = 0;
1775 }
1776
1777 else if (strcmp(arg, "strict") == 0) {
1778 acpi_strict = 1;
1779 }
1780
1781 else if (strcmp(arg, "ht") == 0) {
1782 if (!acpi_force)
1783 disable_acpi();
1784 acpi_ht = 1;
1785 }
1786
1787 else if (strcmp(arg, "noirq") == 0) {
1788 acpi_noirq_set();
1789 } else {
1790
1791 return -EINVAL;
1792 }
1793 return 0;
1794}
1795early_param("acpi", parse_acpi);
1796
1797
1798static int __init parse_pci(char *arg)
1799{
1800 if (arg && strcmp(arg, "noacpi") == 0)
1801 acpi_disable_pci();
1802 return 0;
1803}
1804early_param("pci", parse_pci);
1805
1806int __init acpi_mps_check(void)
1807{
1808#if defined(CONFIG_X86_LOCAL_APIC) && !defined(CONFIG_X86_MPPARSE)
1809
1810 if (acpi_disabled || acpi_noirq) {
1811 printk(KERN_WARNING "MPS support code is not built-in.\n"
1812 "Using acpi=off or acpi=noirq or pci=noacpi "
1813 "may have problem\n");
1814 return 1;
1815 }
1816#endif
1817 return 0;
1818}
1819
1820#ifdef CONFIG_X86_IO_APIC
1821static int __init parse_acpi_skip_timer_override(char *arg)
1822{
1823 acpi_skip_timer_override = 1;
1824 return 0;
1825}
1826early_param("acpi_skip_timer_override", parse_acpi_skip_timer_override);
1827
1828static int __init parse_acpi_use_timer_override(char *arg)
1829{
1830 acpi_use_timer_override = 1;
1831 return 0;
1832}
1833early_param("acpi_use_timer_override", parse_acpi_use_timer_override);
1834#endif
1835
1836static int __init setup_acpi_sci(char *s)
1837{
1838 if (!s)
1839 return -EINVAL;
1840 if (!strcmp(s, "edge"))
1841 acpi_sci_flags = ACPI_MADT_TRIGGER_EDGE |
1842 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
1843 else if (!strcmp(s, "level"))
1844 acpi_sci_flags = ACPI_MADT_TRIGGER_LEVEL |
1845 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
1846 else if (!strcmp(s, "high"))
1847 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_HIGH |
1848 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
1849 else if (!strcmp(s, "low"))
1850 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_LOW |
1851 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
1852 else
1853 return -EINVAL;
1854 return 0;
1855}
1856early_param("acpi_sci", setup_acpi_sci);
1857
1858int __acpi_acquire_global_lock(unsigned int *lock)
1859{
1860 unsigned int old, new, val;
1861 do {
1862 old = *lock;
1863 new = (((old & ~0x3) + 2) + ((old >> 1) & 0x1));
1864 val = cmpxchg(lock, old, new);
1865 } while (unlikely (val != old));
1866 return (new < 3) ? -1 : 0;
1867}
1868
1869int __acpi_release_global_lock(unsigned int *lock)
1870{
1871 unsigned int old, new, val;
1872 do {
1873 old = *lock;
1874 new = old & ~0x3;
1875 val = cmpxchg(lock, old, new);
1876 } while (unlikely (val != old));
1877 return old & 0x1;
1878}
1879