]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/kernel/acpi/boot.c
Merge tag 'for-linus-20170825' of git://git.infradead.org/linux-mtd
[mirror_ubuntu-artful-kernel.git] / arch / x86 / kernel / acpi / boot.c
CommitLineData
1da177e4
LT
1/*
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>
1da177e4 27#include <linux/acpi.h>
d66bea57 28#include <linux/acpi_pmtmr.h>
1da177e4 29#include <linux/efi.h>
73fea175 30#include <linux/cpumask.h>
186f4360 31#include <linux/export.h>
aea00143 32#include <linux/dmi.h>
b33fa1f3 33#include <linux/irq.h>
5a0e3ad6 34#include <linux/slab.h>
f0f4c343
AD
35#include <linux/bootmem.h>
36#include <linux/ioport.h>
a31f8205 37#include <linux/pci.h>
7b0a9114 38#include <linux/efi-bgrt.h>
1da177e4 39
5520b7e7 40#include <asm/e820/api.h>
f7a0c786 41#include <asm/irqdomain.h>
b72d0db9 42#include <asm/pci_x86.h>
1da177e4
LT
43#include <asm/pgtable.h>
44#include <asm/io_apic.h>
45#include <asm/apic.h>
46#include <asm/io.h>
1da177e4 47#include <asm/mpspec.h>
dfac2189 48#include <asm/smp.h>
95d76acc 49#include <asm/i8259.h>
1da177e4 50
d6a77ead 51#include "sleep.h" /* To include x86_acpi_suspend_lowlevel */
e8924acb 52static int __initdata acpi_force = 0;
c636f753 53int acpi_disabled;
df3bb57d
AK
54EXPORT_SYMBOL(acpi_disabled);
55
1da177e4 56#ifdef CONFIG_X86_64
1dcdd3d1 57# include <asm/proto.h>
4be44fcd 58#endif /* X86 */
1da177e4 59
1da177e4
LT
60#define PREFIX "ACPI: "
61
90d53909 62int acpi_noirq; /* skip ACPI IRQ initialization */
6e4be1ff
YL
63int acpi_pci_disabled; /* skip ACPI PCI scan and IRQ initialization */
64EXPORT_SYMBOL(acpi_pci_disabled);
1da177e4
LT
65
66int acpi_lapic;
67int acpi_ioapic;
68int acpi_strict;
9ad95879 69int acpi_disable_cmcff;
1da177e4 70
5f3b1a8b 71u8 acpi_sci_flags __initdata;
1da177e4
LT
72int acpi_sci_override_gsi __initdata;
73int acpi_skip_timer_override __initdata;
fa18f477 74int acpi_use_timer_override __initdata;
7f74f8f2 75int acpi_fix_pin2_polarity __initdata;
1da177e4
LT
76
77#ifdef CONFIG_X86_LOCAL_APIC
78static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
79#endif
80
d2d9c4a3 81#ifdef CONFIG_X86_IO_APIC
5da2fd26
JL
82/*
83 * Locks related to IOAPIC hotplug
84 * Hotplug side:
85 * ->device_hotplug_lock
86 * ->acpi_ioapic_lock
87 * ->ioapic_lock
88 * Interrupt mapping side:
89 * ->acpi_ioapic_lock
90 * ->ioapic_mutex
91 * ->ioapic_lock
92 */
93static DEFINE_MUTEX(acpi_ioapic_lock);
d2d9c4a3 94#endif
5da2fd26 95
1da177e4
LT
96/* --------------------------------------------------------------------------
97 Boot-time Configuration
98 -------------------------------------------------------------------------- */
99
100/*
101 * The default interrupt routing model is PIC (8259). This gets
27b46d76 102 * overridden if IOAPICs are enumerated (below).
1da177e4 103 */
4be44fcd 104enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC;
1da177e4 105
1da177e4 106
988856ee
EB
107/*
108 * ISA irqs by default are the first 16 gsis but can be
109 * any gsi as specified by an interrupt source override.
110 */
111static u32 isa_irq_to_gsi[NR_IRQS_LEGACY] __read_mostly = {
112 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15
113};
114
2c0a6894 115#define ACPI_INVALID_GSI INT_MIN
988856ee 116
1da177e4 117/*
45f1330a
ZY
118 * This is just a simple wrapper around early_ioremap(),
119 * with sanity checks for phys == 0 and size == 0.
1da177e4 120 */
2fdf0741 121char *__init __acpi_map_table(unsigned long phys, unsigned long size)
1da177e4 122{
1da177e4 123
f34fa82b
YL
124 if (!phys || !size)
125 return NULL;
126
7d97277b
YL
127 return early_ioremap(phys, size);
128}
45f1330a 129
7d97277b
YL
130void __init __acpi_unmap_table(char *map, unsigned long size)
131{
132 if (!map || !size)
133 return;
1da177e4 134
7d97277b 135 early_iounmap(map, size);
1da177e4 136}
1da177e4 137
1da177e4 138#ifdef CONFIG_X86_LOCAL_APIC
15a58ed1 139static int __init acpi_parse_madt(struct acpi_table_header *table)
1da177e4 140{
4be44fcd 141 struct acpi_table_madt *madt = NULL;
1da177e4 142
93984fbd 143 if (!boot_cpu_has(X86_FEATURE_APIC))
1da177e4
LT
144 return -EINVAL;
145
15a58ed1 146 madt = (struct acpi_table_madt *)table;
1da177e4
LT
147 if (!madt) {
148 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
149 return -ENODEV;
150 }
151
ad363f80
AS
152 if (madt->address) {
153 acpi_lapic_addr = (u64) madt->address;
1da177e4
LT
154
155 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
ad363f80 156 madt->address);
1da177e4
LT
157 }
158
306db03b
IM
159 default_acpi_madt_oem_check(madt->header.oem_id,
160 madt->header.oem_table_id);
4be44fcd 161
1da177e4
LT
162 return 0;
163}
164
7e1f85f9
JL
165/**
166 * acpi_register_lapic - register a local apic and generates a logic cpu number
167 * @id: local apic id to register
3e9e57fa 168 * @acpiid: ACPI id to register
7e1f85f9
JL
169 * @enabled: this cpu is enabled or not
170 *
171 * Returns the logic cpu number which maps to the local apic
172 */
3e9e57fa 173static int acpi_register_lapic(int id, u32 acpiid, u8 enabled)
dfac2189 174{
fb3bbd6a 175 unsigned int ver = 0;
3e9e57fa 176 int cpu;
fb3bbd6a 177
82982d72 178 if (id >= MAX_LOCAL_APIC) {
d3bd0588 179 printk(KERN_INFO PREFIX "skipped apicid that is too big\n");
7e1f85f9 180 return -EINVAL;
d3bd0588
YL
181 }
182
2b85b3d2
DL
183 if (!enabled) {
184 ++disabled_cpus;
185 return -EINVAL;
186 }
187
fb3bbd6a 188 if (boot_cpu_physical_apicid != -1U)
cff9ab2b 189 ver = boot_cpu_apic_version;
fb3bbd6a 190
2b85b3d2 191 cpu = generic_processor_info(id, ver);
3e9e57fa
VK
192 if (cpu >= 0)
193 early_per_cpu(x86_cpu_to_acpiid, cpu) = acpiid;
194
195 return cpu;
dfac2189
AS
196}
197
7237d3de
SS
198static int __init
199acpi_parse_x2apic(struct acpi_subtable_header *header, const unsigned long end)
200{
201 struct acpi_madt_local_x2apic *processor = NULL;
a35fd282
YL
202 int apic_id;
203 u8 enabled;
7237d3de
SS
204
205 processor = (struct acpi_madt_local_x2apic *)header;
206
207 if (BAD_MADT_ENTRY(processor, end))
208 return -EINVAL;
209
210 acpi_table_print_madt_entry(header);
211
a35fd282
YL
212 apic_id = processor->local_apic_id;
213 enabled = processor->lapic_flags & ACPI_MADT_ENABLED;
7237d3de
SS
214#ifdef CONFIG_X86_X2APIC
215 /*
216 * We need to register disabled CPU as well to permit
217 * counting disabled CPUs. This allows us to size
218 * cpus_possible_map more accurately, to permit
219 * to not preallocating memory for all NR_CPUS
220 * when we use CPU hotplug.
221 */
b7157acf 222 if (!apic->apic_id_valid(apic_id) && enabled)
a35fd282
YL
223 printk(KERN_WARNING PREFIX "x2apic entry ignored\n");
224 else
3e9e57fa 225 acpi_register_lapic(apic_id, processor->uid, enabled);
7237d3de
SS
226#else
227 printk(KERN_WARNING PREFIX "x2apic entry ignored\n");
228#endif
229
230 return 0;
231}
232
1da177e4 233static int __init
5f3b1a8b 234acpi_parse_lapic(struct acpi_subtable_header * header, const unsigned long end)
1da177e4 235{
5f3b1a8b 236 struct acpi_madt_local_apic *processor = NULL;
1da177e4 237
5f3b1a8b 238 processor = (struct acpi_madt_local_apic *)header;
1da177e4
LT
239
240 if (BAD_MADT_ENTRY(processor, end))
241 return -EINVAL;
242
243 acpi_table_print_madt_entry(header);
244
f3bf1dbe
TG
245 /* Ignore invalid ID */
246 if (processor->id == 0xff)
247 return 0;
248
7f66ae48
AR
249 /*
250 * We need to register disabled CPU as well to permit
251 * counting disabled CPUs. This allows us to size
252 * cpus_possible_map more accurately, to permit
253 * to not preallocating memory for all NR_CPUS
254 * when we use CPU hotplug.
255 */
dfac2189 256 acpi_register_lapic(processor->id, /* APIC ID */
3e9e57fa 257 processor->processor_id, /* ACPI ID */
dfac2189 258 processor->lapic_flags & ACPI_MADT_ENABLED);
1da177e4
LT
259
260 return 0;
261}
262
ac049c1d
JS
263static int __init
264acpi_parse_sapic(struct acpi_subtable_header *header, const unsigned long end)
265{
266 struct acpi_madt_local_sapic *processor = NULL;
267
268 processor = (struct acpi_madt_local_sapic *)header;
269
270 if (BAD_MADT_ENTRY(processor, end))
271 return -EINVAL;
272
273 acpi_table_print_madt_entry(header);
274
dfac2189 275 acpi_register_lapic((processor->id << 8) | processor->eid,/* APIC ID */
3e9e57fa 276 processor->processor_id, /* ACPI ID */
dfac2189 277 processor->lapic_flags & ACPI_MADT_ENABLED);
ac049c1d
JS
278
279 return 0;
280}
281
1da177e4 282static int __init
5f3b1a8b 283acpi_parse_lapic_addr_ovr(struct acpi_subtable_header * header,
4be44fcd 284 const unsigned long end)
1da177e4 285{
5f3b1a8b 286 struct acpi_madt_local_apic_override *lapic_addr_ovr = NULL;
1da177e4 287
5f3b1a8b 288 lapic_addr_ovr = (struct acpi_madt_local_apic_override *)header;
1da177e4
LT
289
290 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
291 return -EINVAL;
292
6de42119
BH
293 acpi_table_print_madt_entry(header);
294
1da177e4
LT
295 acpi_lapic_addr = lapic_addr_ovr->address;
296
297 return 0;
298}
299
7237d3de
SS
300static int __init
301acpi_parse_x2apic_nmi(struct acpi_subtable_header *header,
302 const unsigned long end)
303{
304 struct acpi_madt_local_x2apic_nmi *x2apic_nmi = NULL;
305
306 x2apic_nmi = (struct acpi_madt_local_x2apic_nmi *)header;
307
308 if (BAD_MADT_ENTRY(x2apic_nmi, end))
309 return -EINVAL;
310
311 acpi_table_print_madt_entry(header);
312
313 if (x2apic_nmi->lint != 1)
314 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
315
316 return 0;
317}
318
1da177e4 319static int __init
5f3b1a8b 320acpi_parse_lapic_nmi(struct acpi_subtable_header * header, const unsigned long end)
1da177e4 321{
5f3b1a8b 322 struct acpi_madt_local_apic_nmi *lapic_nmi = NULL;
1da177e4 323
5f3b1a8b 324 lapic_nmi = (struct acpi_madt_local_apic_nmi *)header;
1da177e4
LT
325
326 if (BAD_MADT_ENTRY(lapic_nmi, end))
327 return -EINVAL;
328
329 acpi_table_print_madt_entry(header);
330
331 if (lapic_nmi->lint != 1)
332 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
333
334 return 0;
335}
336
4be44fcd 337#endif /*CONFIG_X86_LOCAL_APIC */
1da177e4 338
8466361a 339#ifdef CONFIG_X86_IO_APIC
8d7cdcb9
JL
340#define MP_ISA_BUS 0
341
342static void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger,
343 u32 gsi)
344{
345 int ioapic;
346 int pin;
347 struct mpc_intsrc mp_irq;
348
dad5ab0d
SH
349 /*
350 * Check bus_irq boundary.
351 */
352 if (bus_irq >= NR_IRQS_LEGACY) {
353 pr_warn("Invalid bus_irq %u for legacy override\n", bus_irq);
354 return;
355 }
356
8d7cdcb9
JL
357 /*
358 * Convert 'gsi' to 'ioapic.pin'.
359 */
360 ioapic = mp_find_ioapic(gsi);
361 if (ioapic < 0)
362 return;
363 pin = mp_find_ioapic_pin(ioapic, gsi);
364
365 /*
366 * TBD: This check is for faulty timer entries, where the override
367 * erroneously sets the trigger to level, resulting in a HUGE
368 * increase of timer interrupts!
369 */
370 if ((bus_irq == 0) && (trigger == 3))
371 trigger = 1;
372
373 mp_irq.type = MP_INTSRC;
374 mp_irq.irqtype = mp_INT;
375 mp_irq.irqflag = (trigger << 2) | polarity;
376 mp_irq.srcbus = MP_ISA_BUS;
377 mp_irq.srcbusirq = bus_irq; /* IRQ */
378 mp_irq.dstapic = mpc_ioapic_id(ioapic); /* APIC ID */
379 mp_irq.dstirq = pin; /* INTIN# */
380
381 mp_save_irq(&mp_irq);
382
2e0ad0e2
JL
383 /*
384 * Reset default identity mapping if gsi is also an legacy IRQ,
385 * otherwise there will be more than one entry with the same GSI
386 * and acpi_isa_irq_to_gsi() may give wrong result.
387 */
95d76acc 388 if (gsi < nr_legacy_irqs() && isa_irq_to_gsi[gsi] == gsi)
2e0ad0e2 389 isa_irq_to_gsi[gsi] = ACPI_INVALID_GSI;
8d7cdcb9
JL
390 isa_irq_to_gsi[bus_irq] = gsi;
391}
392
393static int mp_config_acpi_gsi(struct device *dev, u32 gsi, int trigger,
394 int polarity)
395{
396#ifdef CONFIG_X86_MPPARSE
397 struct mpc_intsrc mp_irq;
398 struct pci_dev *pdev;
399 unsigned char number;
400 unsigned int devfn;
401 int ioapic;
402 u8 pin;
403
404 if (!acpi_ioapic)
405 return 0;
406 if (!dev || !dev_is_pci(dev))
407 return 0;
408
409 pdev = to_pci_dev(dev);
410 number = pdev->bus->number;
411 devfn = pdev->devfn;
412 pin = pdev->pin;
413 /* print the entry should happen on mptable identically */
414 mp_irq.type = MP_INTSRC;
415 mp_irq.irqtype = mp_INT;
416 mp_irq.irqflag = (trigger == ACPI_EDGE_SENSITIVE ? 4 : 0x0c) |
417 (polarity == ACPI_ACTIVE_HIGH ? 1 : 3);
418 mp_irq.srcbus = number;
419 mp_irq.srcbusirq = (((devfn >> 3) & 0x1f) << 2) | ((pin - 1) & 3);
420 ioapic = mp_find_ioapic(gsi);
421 mp_irq.dstapic = mpc_ioapic_id(ioapic);
422 mp_irq.dstirq = mp_find_ioapic_pin(ioapic, gsi);
423
424 mp_save_irq(&mp_irq);
425#endif
426 return 0;
427}
428
1da177e4 429static int __init
5f3b1a8b 430acpi_parse_ioapic(struct acpi_subtable_header * header, const unsigned long end)
1da177e4 431{
5f3b1a8b 432 struct acpi_madt_io_apic *ioapic = NULL;
ca7e28aa
JL
433 struct ioapic_domain_cfg cfg = {
434 .type = IOAPIC_DOMAIN_DYNAMIC,
f7a0c786 435 .ops = &mp_ioapic_irqdomain_ops,
ca7e28aa 436 };
1da177e4 437
5f3b1a8b 438 ioapic = (struct acpi_madt_io_apic *)header;
1da177e4
LT
439
440 if (BAD_MADT_ENTRY(ioapic, end))
441 return -EINVAL;
4be44fcd 442
1da177e4
LT
443 acpi_table_print_madt_entry(header);
444
ca7e28aa
JL
445 /* Statically assign IRQ numbers for IOAPICs hosting legacy IRQs */
446 if (ioapic->global_irq_base < nr_legacy_irqs())
447 cfg.type = IOAPIC_DOMAIN_LEGACY;
448
449 mp_register_ioapic(ioapic->id, ioapic->address, ioapic->global_irq_base,
450 &cfg);
4be44fcd 451
1da177e4
LT
452 return 0;
453}
454
455/*
456 * Parse Interrupt Source Override for the ACPI SCI
457 */
9d2062b8 458static void __init acpi_sci_ioapic_setup(u8 bus_irq, u16 polarity, u16 trigger, u32 gsi)
1da177e4
LT
459{
460 if (trigger == 0) /* compatible SCI trigger is level */
461 trigger = 3;
462
463 if (polarity == 0) /* compatible SCI polarity is low */
464 polarity = 3;
465
466 /* Command-line over-ride via acpi_sci= */
5f3b1a8b
AS
467 if (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)
468 trigger = (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2;
1da177e4 469
5f3b1a8b
AS
470 if (acpi_sci_flags & ACPI_MADT_POLARITY_MASK)
471 polarity = acpi_sci_flags & ACPI_MADT_POLARITY_MASK;
1da177e4 472
9d2062b8 473 mp_override_legacy_irq(bus_irq, polarity, trigger, gsi);
f1caa61d 474 acpi_penalize_sci_irq(bus_irq, trigger, polarity);
1da177e4
LT
475
476 /*
477 * stash over-ride to indicate we've been here
cee324b1 478 * and for later update of acpi_gbl_FADT
1da177e4 479 */
7bdd21ce 480 acpi_sci_override_gsi = gsi;
1da177e4
LT
481 return;
482}
483
484static int __init
5f3b1a8b 485acpi_parse_int_src_ovr(struct acpi_subtable_header * header,
4be44fcd 486 const unsigned long end)
1da177e4 487{
5f3b1a8b 488 struct acpi_madt_interrupt_override *intsrc = NULL;
1da177e4 489
5f3b1a8b 490 intsrc = (struct acpi_madt_interrupt_override *)header;
1da177e4
LT
491
492 if (BAD_MADT_ENTRY(intsrc, end))
493 return -EINVAL;
494
495 acpi_table_print_madt_entry(header);
496
5f3b1a8b 497 if (intsrc->source_irq == acpi_gbl_FADT.sci_interrupt) {
9d2062b8 498 acpi_sci_ioapic_setup(intsrc->source_irq,
5f3b1a8b 499 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
9d2062b8
EB
500 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2,
501 intsrc->global_irq);
1da177e4
LT
502 return 0;
503 }
504
ae10ccdc 505 if (intsrc->source_irq == 0) {
7f74f8f2 506 if (acpi_skip_timer_override) {
ae10ccdc 507 printk(PREFIX "BIOS IRQ0 override ignored.\n");
7f74f8f2
AH
508 return 0;
509 }
ae10ccdc
FT
510
511 if ((intsrc->global_irq == 2) && acpi_fix_pin2_polarity
512 && (intsrc->inti_flags & ACPI_MADT_POLARITY_MASK)) {
7f74f8f2
AH
513 intsrc->inti_flags &= ~ACPI_MADT_POLARITY_MASK;
514 printk(PREFIX "BIOS IRQ0 pin2 override: forcing polarity to high active.\n");
515 }
1da177e4
LT
516 }
517
5f3b1a8b
AS
518 mp_override_legacy_irq(intsrc->source_irq,
519 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
520 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2,
521 intsrc->global_irq);
1da177e4
LT
522
523 return 0;
524}
525
1da177e4 526static int __init
5f3b1a8b 527acpi_parse_nmi_src(struct acpi_subtable_header * header, const unsigned long end)
1da177e4 528{
5f3b1a8b 529 struct acpi_madt_nmi_source *nmi_src = NULL;
1da177e4 530
5f3b1a8b 531 nmi_src = (struct acpi_madt_nmi_source *)header;
1da177e4
LT
532
533 if (BAD_MADT_ENTRY(nmi_src, end))
534 return -EINVAL;
535
536 acpi_table_print_madt_entry(header);
537
538 /* TBD: Support nimsrc entries? */
539
540 return 0;
541}
542
4be44fcd 543#endif /* CONFIG_X86_IO_APIC */
1da177e4 544
1da177e4
LT
545/*
546 * acpi_pic_sci_set_trigger()
5f3b1a8b 547 *
1da177e4
LT
548 * use ELCR to set PIC-mode trigger type for SCI
549 *
550 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
551 * it may require Edge Trigger -- use "acpi_sci=edge"
552 *
553 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
554 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
27b46d76
SA
555 * ECLR1 is IRQs 0-7 (IRQ 0, 1, 2 must be 0)
556 * ECLR2 is IRQs 8-15 (IRQ 8, 13 must be 0)
1da177e4
LT
557 */
558
4be44fcd 559void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
1da177e4
LT
560{
561 unsigned int mask = 1 << irq;
562 unsigned int old, new;
563
564 /* Real old ELCR mask */
565 old = inb(0x4d0) | (inb(0x4d1) << 8);
566
567 /*
27b46d76 568 * If we use ACPI to set PCI IRQs, then we should clear ELCR
1da177e4
LT
569 * since we will set it correctly as we enable the PCI irq
570 * routing.
571 */
572 new = acpi_noirq ? old : 0;
573
574 /*
575 * Update SCI information in the ELCR, it isn't in the PCI
576 * routing tables..
577 */
578 switch (trigger) {
4be44fcd 579 case 1: /* Edge - clear */
1da177e4
LT
580 new &= ~mask;
581 break;
4be44fcd 582 case 3: /* Level - set */
1da177e4
LT
583 new |= mask;
584 break;
585 }
586
587 if (old == new)
588 return;
589
590 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
591 outb(new, 0x4d0);
592 outb(new >> 8, 0x4d1);
593}
594
6b9fb708 595int acpi_gsi_to_irq(u32 gsi, unsigned int *irqp)
1da177e4 596{
b568b860
JL
597 int rc, irq, trigger, polarity;
598
1ea76fba
JL
599 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
600 *irqp = gsi;
601 return 0;
602 }
603
b568b860
JL
604 rc = acpi_get_override_irq(gsi, &trigger, &polarity);
605 if (rc == 0) {
606 trigger = trigger ? ACPI_LEVEL_SENSITIVE : ACPI_EDGE_SENSITIVE;
607 polarity = polarity ? ACPI_ACTIVE_LOW : ACPI_ACTIVE_HIGH;
608 irq = acpi_register_gsi(NULL, gsi, trigger, polarity);
609 if (irq >= 0) {
610 *irqp = irq;
611 return 0;
612 }
6b9fb708 613 }
b568b860
JL
614
615 return -1;
1da177e4 616}
81e88fdc 617EXPORT_SYMBOL_GPL(acpi_gsi_to_irq);
1da177e4 618
2c2df841
EB
619int acpi_isa_irq_to_gsi(unsigned isa_irq, u32 *gsi)
620{
95d76acc 621 if (isa_irq < nr_legacy_irqs() &&
2e0ad0e2 622 isa_irq_to_gsi[isa_irq] != ACPI_INVALID_GSI) {
032329ee
JL
623 *gsi = isa_irq_to_gsi[isa_irq];
624 return 0;
625 }
626
627 return -1;
2c2df841
EB
628}
629
2f065aef
JF
630static int acpi_register_gsi_pic(struct device *dev, u32 gsi,
631 int trigger, int polarity)
1da177e4 632{
1da177e4
LT
633#ifdef CONFIG_PCI
634 /*
635 * Make sure all (legacy) PCI IRQs are set as level-triggered.
636 */
2f065aef 637 if (trigger == ACPI_LEVEL_SENSITIVE)
ea6cd250 638 elcr_set_level_irq(gsi);
1da177e4
LT
639#endif
640
2f065aef
JF
641 return gsi;
642}
643
2f82c9dc 644#ifdef CONFIG_X86_LOCAL_APIC
2f065aef
JF
645static int acpi_register_gsi_ioapic(struct device *dev, u32 gsi,
646 int trigger, int polarity)
647{
84245af7 648 int irq = gsi;
1da177e4 649#ifdef CONFIG_X86_IO_APIC
46176f39
JL
650 int node;
651 struct irq_alloc_info info;
652
653 node = dev ? dev_to_node(dev) : NUMA_NO_NODE;
654 trigger = trigger == ACPI_EDGE_SENSITIVE ? 0 : 1;
655 polarity = polarity == ACPI_ACTIVE_HIGH ? 0 : 1;
656 ioapic_set_alloc_attr(&info, node, trigger, polarity);
657
5da2fd26 658 mutex_lock(&acpi_ioapic_lock);
46176f39
JL
659 irq = mp_map_gsi_to_irq(gsi, IOAPIC_MAP_ALLOC, &info);
660 /* Don't set up the ACPI SCI because it's already set up */
661 if (irq >= 0 && enable_update_mptable &&
662 acpi_gbl_FADT.sci_interrupt != gsi)
663 mp_config_acpi_gsi(dev, gsi, trigger, polarity);
5da2fd26 664 mutex_unlock(&acpi_ioapic_lock);
1da177e4 665#endif
2f065aef 666
84245af7 667 return irq;
2f065aef
JF
668}
669
6a38fa0e
JL
670static void acpi_unregister_gsi_ioapic(u32 gsi)
671{
672#ifdef CONFIG_X86_IO_APIC
46176f39
JL
673 int irq;
674
5da2fd26 675 mutex_lock(&acpi_ioapic_lock);
46176f39
JL
676 irq = mp_map_gsi_to_irq(gsi, 0, NULL);
677 if (irq > 0)
678 mp_unmap_irq(irq);
5da2fd26 679 mutex_unlock(&acpi_ioapic_lock);
6a38fa0e 680#endif
2f065aef 681}
2f82c9dc 682#endif
2f065aef 683
90f6881e
JF
684int (*__acpi_register_gsi)(struct device *dev, u32 gsi,
685 int trigger, int polarity) = acpi_register_gsi_pic;
6a38fa0e 686void (*__acpi_unregister_gsi)(u32 gsi) = NULL;
2f065aef 687
d6a77ead
KRW
688#ifdef CONFIG_ACPI_SLEEP
689int (*acpi_suspend_lowlevel)(void) = x86_acpi_suspend_lowlevel;
690#else
691int (*acpi_suspend_lowlevel)(void);
692#endif
693
2f065aef
JF
694/*
695 * success: return IRQ number (>=0)
696 * failure: return < 0
697 */
698int acpi_register_gsi(struct device *dev, u32 gsi, int trigger, int polarity)
699{
84245af7 700 return __acpi_register_gsi(dev, gsi, trigger, polarity);
1da177e4 701}
35e92b78
AS
702EXPORT_SYMBOL_GPL(acpi_register_gsi);
703
704void acpi_unregister_gsi(u32 gsi)
705{
6a38fa0e
JL
706 if (__acpi_unregister_gsi)
707 __acpi_unregister_gsi(gsi);
35e92b78
AS
708}
709EXPORT_SYMBOL_GPL(acpi_unregister_gsi);
4be44fcd 710
9f50c6ea 711#ifdef CONFIG_X86_LOCAL_APIC
e819813f 712static void __init acpi_set_irq_model_ioapic(void)
2f065aef
JF
713{
714 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
715 __acpi_register_gsi = acpi_register_gsi_ioapic;
6a38fa0e 716 __acpi_unregister_gsi = acpi_unregister_gsi_ioapic;
2f065aef
JF
717 acpi_ioapic = 1;
718}
9f50c6ea 719#endif
2f065aef 720
1da177e4
LT
721/*
722 * ACPI based hotplug support for CPU
723 */
724#ifdef CONFIG_ACPI_HOTPLUG_CPU
d8191fa4 725#include <acpi/processor.h>
009cbadb 726
c962cff1 727static int acpi_map_cpu2node(acpi_handle handle, int cpu, int physid)
0271f910
HL
728{
729#ifdef CONFIG_ACPI_NUMA
730 int nid;
731
732 nid = acpi_get_node(handle);
4370a3ef 733 if (nid != NUMA_NO_NODE) {
896dc506
JL
734 set_apicid_to_node(physid, nid);
735 numa_set_node(cpu, nid);
736 }
0271f910 737#endif
dc6db24d 738 return 0;
0271f910 739}
009cbadb 740
febf2407
VK
741int acpi_map_cpu(acpi_handle handle, phys_cpuid_t physid, u32 acpi_id,
742 int *pcpu)
1da177e4 743{
73fea175 744 int cpu;
ee943a82 745
febf2407 746 cpu = acpi_register_lapic(physid, acpi_id, ACPI_MADT_ENABLED);
7e1f85f9
JL
747 if (cpu < 0) {
748 pr_info(PREFIX "Unable to map lapic to logical cpu number\n");
749 return cpu;
73fea175
AR
750 }
751
d8191fa4 752 acpi_processor_set_pdc(handle);
0271f910 753 acpi_map_cpu2node(handle, cpu, physid);
73fea175
AR
754
755 *pcpu = cpu;
7e1f85f9 756 return 0;
1da177e4 757}
d02dc27d 758EXPORT_SYMBOL(acpi_map_cpu);
1da177e4 759
d02dc27d 760int acpi_unmap_cpu(int cpu)
1da177e4 761{
c4c60524
WC
762#ifdef CONFIG_ACPI_NUMA
763 set_apicid_to_node(per_cpu(x86_cpu_to_apicid, cpu), NUMA_NO_NODE);
764#endif
765
71fff5e6 766 per_cpu(x86_cpu_to_apicid, cpu) = -1;
9628937d 767 set_cpu_present(cpu, false);
73fea175
AR
768 num_processors--;
769
770 return (0);
1da177e4 771}
d02dc27d 772EXPORT_SYMBOL(acpi_unmap_cpu);
4be44fcd 773#endif /* CONFIG_ACPI_HOTPLUG_CPU */
1da177e4 774
4be44fcd 775int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
b1bb248a 776{
7db298cb
JL
777 int ret = -ENOSYS;
778#ifdef CONFIG_ACPI_HOTPLUG_IOAPIC
779 int ioapic_id;
780 u64 addr;
781 struct ioapic_domain_cfg cfg = {
782 .type = IOAPIC_DOMAIN_DYNAMIC,
f7a0c786 783 .ops = &mp_ioapic_irqdomain_ops,
7db298cb
JL
784 };
785
786 ioapic_id = acpi_get_ioapic_id(handle, gsi_base, &addr);
787 if (ioapic_id < 0) {
788 unsigned long long uid;
789 acpi_status status;
790
791 status = acpi_evaluate_integer(handle, METHOD_NAME__UID,
792 NULL, &uid);
793 if (ACPI_FAILURE(status)) {
794 acpi_handle_warn(handle, "failed to get IOAPIC ID.\n");
795 return -EINVAL;
796 }
797 ioapic_id = (int)uid;
798 }
799
800 mutex_lock(&acpi_ioapic_lock);
801 ret = mp_register_ioapic(ioapic_id, phys_addr, gsi_base, &cfg);
802 mutex_unlock(&acpi_ioapic_lock);
803#endif
804
805 return ret;
b1bb248a
KK
806}
807EXPORT_SYMBOL(acpi_register_ioapic);
808
4be44fcd 809int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
b1bb248a 810{
15516a3b
JL
811 int ret = -ENOSYS;
812
813#ifdef CONFIG_ACPI_HOTPLUG_IOAPIC
814 mutex_lock(&acpi_ioapic_lock);
815 ret = mp_unregister_ioapic(gsi_base);
816 mutex_unlock(&acpi_ioapic_lock);
817#endif
4be44fcd 818
15516a3b
JL
819 return ret;
820}
b1bb248a
KK
821EXPORT_SYMBOL(acpi_unregister_ioapic);
822
e89900c9
JL
823/**
824 * acpi_ioapic_registered - Check whether IOAPIC assoicatied with @gsi_base
825 * has been registered
826 * @handle: ACPI handle of the IOAPIC deivce
827 * @gsi_base: GSI base associated with the IOAPIC
828 *
829 * Assume caller holds some type of lock to serialize acpi_ioapic_registered()
830 * with acpi_register_ioapic()/acpi_unregister_ioapic().
831 */
832int acpi_ioapic_registered(acpi_handle handle, u32 gsi_base)
833{
834 int ret = 0;
835
836#ifdef CONFIG_ACPI_HOTPLUG_IOAPIC
837 mutex_lock(&acpi_ioapic_lock);
838 ret = mp_ioapic_registered(gsi_base);
839 mutex_unlock(&acpi_ioapic_lock);
840#endif
841
842 return ret;
843}
844
5f3b1a8b 845static int __init acpi_parse_sbf(struct acpi_table_header *table)
1da177e4 846{
2fad9308 847 struct acpi_table_boot *sb = (struct acpi_table_boot *)table;
1da177e4 848
5f3b1a8b 849 sbf_port = sb->cmos_index; /* Save CMOS port */
1da177e4
LT
850
851 return 0;
852}
853
1da177e4 854#ifdef CONFIG_HPET_TIMER
2d0c87c3 855#include <asm/hpet.h>
1da177e4 856
dd96dc32 857static struct resource *hpet_res __initdata;
a1dfd851 858
5f3b1a8b 859static int __init acpi_parse_hpet(struct acpi_table_header *table)
1da177e4 860{
2fad9308 861 struct acpi_table_hpet *hpet_tbl = (struct acpi_table_hpet *)table;
1da177e4 862
ad363f80 863 if (hpet_tbl->address.space_id != ACPI_SPACE_MEM) {
1da177e4
LT
864 printk(KERN_WARNING PREFIX "HPET timers must be located in "
865 "memory.\n");
866 return -1;
867 }
f0f4c343 868
2d0c87c3 869 hpet_address = hpet_tbl->address.address;
c8bc6f3c 870 hpet_blockid = hpet_tbl->sequence;
f4df73c2
TG
871
872 /*
873 * Some broken BIOSes advertise HPET at 0x0. We really do not
874 * want to allocate a resource there.
875 */
876 if (!hpet_address) {
877 printk(KERN_WARNING PREFIX
878 "HPET id: %#x base: %#lx is invalid\n",
879 hpet_tbl->id, hpet_address);
880 return 0;
881 }
882#ifdef CONFIG_X86_64
883 /*
884 * Some even more broken BIOSes advertise HPET at
885 * 0xfed0000000000000 instead of 0xfed00000. Fix it up and add
886 * some noise:
887 */
888 if (hpet_address == 0xfed0000000000000UL) {
889 if (!hpet_force_user) {
890 printk(KERN_WARNING PREFIX "HPET id: %#x "
891 "base: 0xfed0000000000000 is bogus\n "
892 "try hpet=force on the kernel command line to "
893 "fix it up to 0xfed00000.\n", hpet_tbl->id);
894 hpet_address = 0;
895 return 0;
896 }
897 printk(KERN_WARNING PREFIX
898 "HPET id: %#x base: 0xfed0000000000000 fixed up "
899 "to 0xfed00000.\n", hpet_tbl->id);
900 hpet_address >>= 32;
901 }
902#endif
4be44fcd 903 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
2d0c87c3 904 hpet_tbl->id, hpet_address);
1da177e4 905
a1dfd851
AD
906 /*
907 * Allocate and initialize the HPET firmware resource for adding into
908 * the resource tree during the lateinit timeframe.
909 */
910#define HPET_RESOURCE_NAME_SIZE 9
911 hpet_res = alloc_bootmem(sizeof(*hpet_res) + HPET_RESOURCE_NAME_SIZE);
912
a1dfd851
AD
913 hpet_res->name = (void *)&hpet_res[1];
914 hpet_res->flags = IORESOURCE_MEM;
915 snprintf((char *)hpet_res->name, HPET_RESOURCE_NAME_SIZE, "HPET %u",
916 hpet_tbl->sequence);
917
918 hpet_res->start = hpet_address;
919 hpet_res->end = hpet_address + (1 * 1024) - 1;
920
1da177e4
LT
921 return 0;
922}
a1dfd851
AD
923
924/*
925 * hpet_insert_resource inserts the HPET resources used into the resource
926 * tree.
927 */
928static __init int hpet_insert_resource(void)
929{
930 if (!hpet_res)
931 return 1;
932
933 return insert_resource(&iomem_resource, hpet_res);
934}
935
936late_initcall(hpet_insert_resource);
937
1da177e4
LT
938#else
939#define acpi_parse_hpet NULL
940#endif
941
5f3b1a8b 942static int __init acpi_parse_fadt(struct acpi_table_header *table)
1da177e4 943{
7a17b82c
LR
944 if (!(acpi_gbl_FADT.boot_flags & ACPI_FADT_LEGACY_DEVICES)) {
945 pr_debug("ACPI: no legacy devices present\n");
946 x86_platform.legacy.devices.pnpbios = 0;
947 }
948
93ffa9a4
DT
949 if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID &&
950 !(acpi_gbl_FADT.boot_flags & ACPI_FADT_8042) &&
951 x86_platform.legacy.i8042 != X86_LEGACY_I8042_PLATFORM_ABSENT) {
952 pr_debug("ACPI: i8042 controller is absent\n");
953 x86_platform.legacy.i8042 = X86_LEGACY_I8042_FIRMWARE_ABSENT;
954 }
955
088a8ef8
LR
956 if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_CMOS_RTC) {
957 pr_debug("ACPI: not registering RTC platform device\n");
958 x86_platform.legacy.rtc = 0;
959 }
90660ec3 960
1da177e4
LT
961#ifdef CONFIG_X86_PM_TIMER
962 /* detect the location of the ACPI PM Timer */
5f3b1a8b 963 if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) {
1da177e4 964 /* FADT rev. 2 */
5f3b1a8b 965 if (acpi_gbl_FADT.xpm_timer_block.space_id !=
4be44fcd 966 ACPI_ADR_SPACE_SYSTEM_IO)
1da177e4
LT
967 return 0;
968
5f3b1a8b 969 pmtmr_ioport = acpi_gbl_FADT.xpm_timer_block.address;
e6e87b4b
DSL
970 /*
971 * "X" fields are optional extensions to the original V1.0
972 * fields, so we must selectively expand V1.0 fields if the
973 * corresponding X field is zero.
974 */
975 if (!pmtmr_ioport)
5f3b1a8b 976 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
1da177e4
LT
977 } else {
978 /* FADT rev. 1 */
5f3b1a8b 979 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
1da177e4
LT
980 }
981 if (pmtmr_ioport)
4be44fcd
LB
982 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
983 pmtmr_ioport);
1da177e4
LT
984#endif
985 return 0;
986}
987
1da177e4
LT
988#ifdef CONFIG_X86_LOCAL_APIC
989/*
990 * Parse LAPIC entries in MADT
991 * returns 0 on success, < 0 on error
992 */
31d2092e 993
cbf9bd60
YL
994static int __init early_acpi_parse_madt_lapic_addr_ovr(void)
995{
996 int count;
997
93984fbd 998 if (!boot_cpu_has(X86_FEATURE_APIC))
cbf9bd60
YL
999 return -ENODEV;
1000
1001 /*
1002 * Note that the LAPIC address is obtained from the MADT (32-bit value)
6a6256f9 1003 * and (optionally) overridden by a LAPIC_ADDR_OVR entry (64-bit value).
cbf9bd60
YL
1004 */
1005
e819813f
JL
1006 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
1007 acpi_parse_lapic_addr_ovr, 0);
cbf9bd60
YL
1008 if (count < 0) {
1009 printk(KERN_ERR PREFIX
1010 "Error parsing LAPIC address override entry\n");
1011 return count;
1012 }
1013
c0104d38 1014 register_lapic_address(acpi_lapic_addr);
cbf9bd60
YL
1015
1016 return count;
1017}
1018
4be44fcd 1019static int __init acpi_parse_madt_lapic_entries(void)
1da177e4
LT
1020{
1021 int count;
7237d3de 1022 int x2count = 0;
d81056b5
LA
1023 int ret;
1024 struct acpi_subtable_proc madt_proc[2];
1da177e4 1025
93984fbd 1026 if (!boot_cpu_has(X86_FEATURE_APIC))
0fcd2709
AK
1027 return -ENODEV;
1028
ac049c1d 1029 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_SAPIC,
cb2ded37 1030 acpi_parse_sapic, MAX_LOCAL_APIC);
ac049c1d 1031
7237d3de 1032 if (!count) {
d81056b5
LA
1033 memset(madt_proc, 0, sizeof(madt_proc));
1034 madt_proc[0].id = ACPI_MADT_TYPE_LOCAL_APIC;
1035 madt_proc[0].handler = acpi_parse_lapic;
1036 madt_proc[1].id = ACPI_MADT_TYPE_LOCAL_X2APIC;
1037 madt_proc[1].handler = acpi_parse_x2apic;
1038 ret = acpi_table_parse_entries_array(ACPI_SIG_MADT,
1039 sizeof(struct acpi_table_madt),
1040 madt_proc, ARRAY_SIZE(madt_proc), MAX_LOCAL_APIC);
1041 if (ret < 0) {
1042 printk(KERN_ERR PREFIX
1043 "Error parsing LAPIC/X2APIC entries\n");
1044 return ret;
1045 }
1046
c12f29a5
AS
1047 count = madt_proc[0].count;
1048 x2count = madt_proc[1].count;
7237d3de
SS
1049 }
1050 if (!count && !x2count) {
1da177e4
LT
1051 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
1052 /* TBD: Cleanup to allow fallback to MPS */
1053 return -ENODEV;
7237d3de 1054 } else if (count < 0 || x2count < 0) {
1da177e4
LT
1055 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
1056 /* TBD: Cleanup to allow fallback to MPS */
1057 return count;
1058 }
1059
e819813f
JL
1060 x2count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_X2APIC_NMI,
1061 acpi_parse_x2apic_nmi, 0);
1062 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_NMI,
1063 acpi_parse_lapic_nmi, 0);
7237d3de 1064 if (count < 0 || x2count < 0) {
1da177e4
LT
1065 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
1066 /* TBD: Cleanup to allow fallback to MPS */
1067 return count;
1068 }
1069 return 0;
1070}
4be44fcd 1071#endif /* CONFIG_X86_LOCAL_APIC */
1da177e4 1072
8466361a 1073#ifdef CONFIG_X86_IO_APIC
a491cc90 1074static void __init mp_config_acpi_legacy_irqs(void)
11113f84 1075{
6df8809b 1076 int i;
c2c21745 1077 struct mpc_intsrc mp_irq;
11113f84 1078
bb8187d3 1079#ifdef CONFIG_EISA
11113f84
AS
1080 /*
1081 * Fabricate the legacy ISA bus (bus #31).
1082 */
1083 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
1084#endif
1085 set_bit(MP_ISA_BUS, mp_bus_not_pci);
cfc1b9a6 1086 pr_debug("Bus #%d is ISA\n", MP_ISA_BUS);
11113f84 1087
11113f84
AS
1088 /*
1089 * Use the default configuration for the IRQs 0-15. Unless
1090 * overridden by (MADT) interrupt source override entries.
1091 */
95d76acc 1092 for (i = 0; i < nr_legacy_irqs(); i++) {
0fd52670
EB
1093 int ioapic, pin;
1094 unsigned int dstapic;
11113f84 1095 int idx;
0fd52670
EB
1096 u32 gsi;
1097
1098 /* Locate the gsi that irq i maps to. */
1099 if (acpi_isa_irq_to_gsi(i, &gsi))
1100 continue;
1101
1102 /*
1103 * Locate the IOAPIC that manages the ISA IRQ.
1104 */
1105 ioapic = mp_find_ioapic(gsi);
1106 if (ioapic < 0)
1107 continue;
1108 pin = mp_find_ioapic_pin(ioapic, gsi);
d5371430 1109 dstapic = mpc_ioapic_id(ioapic);
11113f84
AS
1110
1111 for (idx = 0; idx < mp_irq_entries; idx++) {
c2c21745 1112 struct mpc_intsrc *irq = mp_irqs + idx;
11113f84
AS
1113
1114 /* Do we already have a mapping for this ISA IRQ? */
c2c21745 1115 if (irq->srcbus == MP_ISA_BUS && irq->srcbusirq == i)
11113f84
AS
1116 break;
1117
1118 /* Do we already have a mapping for this IOAPIC pin */
0fd52670 1119 if (irq->dstapic == dstapic && irq->dstirq == pin)
11113f84
AS
1120 break;
1121 }
1122
1123 if (idx != mp_irq_entries) {
1124 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
1125 continue; /* IRQ already used */
1126 }
1127
c2c21745
JSR
1128 mp_irq.type = MP_INTSRC;
1129 mp_irq.irqflag = 0; /* Conforming */
1130 mp_irq.srcbus = MP_ISA_BUS;
1131 mp_irq.dstapic = dstapic;
1132 mp_irq.irqtype = mp_INT;
1133 mp_irq.srcbusirq = i; /* Identity mapped */
0fd52670 1134 mp_irq.dstirq = pin;
11113f84 1135
2d8009ba 1136 mp_save_irq(&mp_irq);
11113f84
AS
1137 }
1138}
1139
1da177e4
LT
1140/*
1141 * Parse IOAPIC related entries in MADT
1142 * returns 0 on success, < 0 on error
1143 */
4be44fcd 1144static int __init acpi_parse_madt_ioapic_entries(void)
1da177e4
LT
1145{
1146 int count;
1147
1148 /*
1149 * ACPI interpreter is required to complete interrupt setup,
1150 * so if it is off, don't enumerate the io-apics with ACPI.
1151 * If MPS is present, it will handle them,
1152 * otherwise the system will stay in PIC mode
1153 */
6b2b171a 1154 if (acpi_disabled || acpi_noirq)
1da177e4 1155 return -ENODEV;
1da177e4 1156
93984fbd 1157 if (!boot_cpu_has(X86_FEATURE_APIC))
d3b6a349
AK
1158 return -ENODEV;
1159
1da177e4 1160 /*
4be44fcd 1161 * if "noapic" boot option, don't look for IO-APICs
1da177e4
LT
1162 */
1163 if (skip_ioapic_setup) {
1164 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
4be44fcd 1165 "due to 'noapic' option.\n");
1da177e4
LT
1166 return -ENODEV;
1167 }
1168
e819813f
JL
1169 count = acpi_table_parse_madt(ACPI_MADT_TYPE_IO_APIC, acpi_parse_ioapic,
1170 MAX_IO_APICS);
1da177e4
LT
1171 if (!count) {
1172 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
1173 return -ENODEV;
4be44fcd 1174 } else if (count < 0) {
1da177e4
LT
1175 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
1176 return count;
1177 }
1178
e819813f
JL
1179 count = acpi_table_parse_madt(ACPI_MADT_TYPE_INTERRUPT_OVERRIDE,
1180 acpi_parse_int_src_ovr, nr_irqs);
1da177e4 1181 if (count < 0) {
4be44fcd
LB
1182 printk(KERN_ERR PREFIX
1183 "Error parsing interrupt source overrides entry\n");
1da177e4
LT
1184 /* TBD: Cleanup to allow fallback to MPS */
1185 return count;
1186 }
1187
1188 /*
1189 * If BIOS did not supply an INT_SRC_OVR for the SCI
1190 * pretend we got one so we can set the SCI flags.
1191 */
1192 if (!acpi_sci_override_gsi)
9d2062b8
EB
1193 acpi_sci_ioapic_setup(acpi_gbl_FADT.sci_interrupt, 0, 0,
1194 acpi_gbl_FADT.sci_interrupt);
1da177e4 1195
af901ca1 1196 /* Fill in identity legacy mappings where no override */
1da177e4
LT
1197 mp_config_acpi_legacy_irqs();
1198
e819813f
JL
1199 count = acpi_table_parse_madt(ACPI_MADT_TYPE_NMI_SOURCE,
1200 acpi_parse_nmi_src, nr_irqs);
1da177e4
LT
1201 if (count < 0) {
1202 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
1203 /* TBD: Cleanup to allow fallback to MPS */
1204 return count;
1205 }
1206
1207 return 0;
1208}
1209#else
1210static inline int acpi_parse_madt_ioapic_entries(void)
1211{
1212 return -1;
1213}
8466361a 1214#endif /* !CONFIG_X86_IO_APIC */
1da177e4 1215
cbf9bd60
YL
1216static void __init early_acpi_process_madt(void)
1217{
1218#ifdef CONFIG_X86_LOCAL_APIC
1219 int error;
1220
1221 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
1222
1223 /*
1224 * Parse MADT LAPIC entries
1225 */
1226 error = early_acpi_parse_madt_lapic_addr_ovr();
1227 if (!error) {
1228 acpi_lapic = 1;
1229 smp_found_config = 1;
1230 }
1231 if (error == -EINVAL) {
1232 /*
1233 * Dell Precision Workstation 410, 610 come here.
1234 */
1235 printk(KERN_ERR PREFIX
1236 "Invalid BIOS MADT, disabling ACPI\n");
1237 disable_acpi();
1238 }
1239 }
1240#endif
1241}
1242
4be44fcd 1243static void __init acpi_process_madt(void)
1da177e4
LT
1244{
1245#ifdef CONFIG_X86_LOCAL_APIC
7f8f97c3 1246 int error;
1da177e4 1247
7f8f97c3 1248 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
1da177e4
LT
1249
1250 /*
1251 * Parse MADT LAPIC entries
1252 */
1253 error = acpi_parse_madt_lapic_entries();
1254 if (!error) {
1255 acpi_lapic = 1;
1256
1257 /*
1258 * Parse MADT IO-APIC entries
1259 */
5da2fd26 1260 mutex_lock(&acpi_ioapic_lock);
1da177e4 1261 error = acpi_parse_madt_ioapic_entries();
5da2fd26 1262 mutex_unlock(&acpi_ioapic_lock);
1da177e4 1263 if (!error) {
2f065aef 1264 acpi_set_irq_model_ioapic();
1da177e4
LT
1265
1266 smp_found_config = 1;
1da177e4
LT
1267 }
1268 }
1269 if (error == -EINVAL) {
1270 /*
1271 * Dell Precision Workstation 410, 610 come here.
1272 */
4be44fcd
LB
1273 printk(KERN_ERR PREFIX
1274 "Invalid BIOS MADT, disabling ACPI\n");
1da177e4
LT
1275 disable_acpi();
1276 }
7b37b5fd
LB
1277 } else {
1278 /*
1279 * ACPI found no MADT, and so ACPI wants UP PIC mode.
1280 * In the event an MPS table was found, forget it.
1281 * Boot with "acpi=off" to use MPS on such a system.
1282 */
1283 if (smp_found_config) {
1284 printk(KERN_WARNING PREFIX
1285 "No APIC-table, disabling MPS\n");
1286 smp_found_config = 0;
1287 }
1da177e4 1288 }
69b88afa
YL
1289
1290 /*
1291 * ACPI supports both logical (e.g. Hyper-Threading) and physical
1292 * processors, where MPS only supports physical.
1293 */
1294 if (acpi_lapic && acpi_ioapic)
1295 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration "
1296 "information\n");
1297 else if (acpi_lapic)
1298 printk(KERN_INFO "Using ACPI for processor (LAPIC) "
1299 "configuration information\n");
1da177e4
LT
1300#endif
1301 return;
1302}
1303
1855256c 1304static int __init disable_acpi_irq(const struct dmi_system_id *d)
aea00143
AP
1305{
1306 if (!acpi_force) {
1307 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
1308 d->ident);
1309 acpi_noirq_set();
1310 }
1311 return 0;
1312}
1313
1855256c 1314static int __init disable_acpi_pci(const struct dmi_system_id *d)
aea00143
AP
1315{
1316 if (!acpi_force) {
1317 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
1318 d->ident);
1319 acpi_disable_pci();
1320 }
1321 return 0;
1322}
aea00143 1323
1855256c 1324static int __init dmi_disable_acpi(const struct dmi_system_id *d)
aea00143
AP
1325{
1326 if (!acpi_force) {
4be44fcd 1327 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
aea00143
AP
1328 disable_acpi();
1329 } else {
1330 printk(KERN_NOTICE
1331 "Warning: DMI blacklist says broken, but acpi forced\n");
1332 }
1333 return 0;
1334}
1335
e2079c43 1336/*
ae10ccdc 1337 * Force ignoring BIOS IRQ0 override
e2079c43
RW
1338 */
1339static int __init dmi_ignore_irq0_timer_override(const struct dmi_system_id *d)
1340{
8d89adf4 1341 if (!acpi_skip_timer_override) {
ae10ccdc 1342 pr_notice("%s detected: Ignoring BIOS IRQ0 override\n",
8d89adf4
IM
1343 d->ident);
1344 acpi_skip_timer_override = 1;
1345 }
e2079c43
RW
1346 return 0;
1347}
1348
7486341a
LA
1349/*
1350 * ACPI offers an alternative platform interface model that removes
1351 * ACPI hardware requirements for platforms that do not implement
1352 * the PC Architecture.
1353 *
1354 * We initialize the Hardware-reduced ACPI model here:
1355 */
1356static void __init acpi_reduced_hw_init(void)
1357{
1358 if (acpi_gbl_reduced_hardware) {
1359 /*
1360 * Override x86_init functions and bypass legacy pic
1361 * in Hardware-reduced ACPI mode
1362 */
1363 x86_init.timers.timer_init = x86_init_noop;
1364 x86_init.irqs.pre_vector_init = x86_init_noop;
1365 legacy_pic = &null_legacy_pic;
1366 }
1367}
1368
aea00143
AP
1369/*
1370 * If your system is blacklisted here, but you find that acpi=force
5b4c0b6f 1371 * works for you, please contact linux-acpi@vger.kernel.org
aea00143
AP
1372 */
1373static struct dmi_system_id __initdata acpi_dmi_table[] = {
1374 /*
1375 * Boxes that need ACPI disabled
1376 */
1377 {
4be44fcd
LB
1378 .callback = dmi_disable_acpi,
1379 .ident = "IBM Thinkpad",
1380 .matches = {
1381 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1382 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
1383 },
1384 },
aea00143 1385
aea00143
AP
1386 /*
1387 * Boxes that need ACPI PCI IRQ routing disabled
1388 */
1389 {
4be44fcd
LB
1390 .callback = disable_acpi_irq,
1391 .ident = "ASUS A7V",
1392 .matches = {
1393 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1394 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1395 /* newer BIOS, Revision 1011, does work */
1396 DMI_MATCH(DMI_BIOS_VERSION,
1397 "ASUS A7V ACPI BIOS Revision 1007"),
1398 },
1399 },
74586fca
LB
1400 {
1401 /*
1402 * Latest BIOS for IBM 600E (1.16) has bad pcinum
1403 * for LPC bridge, which is needed for the PCI
1404 * interrupt links to work. DSDT fix is in bug 5966.
1405 * 2645, 2646 model numbers are shared with 600/600E/600X
1406 */
1407 .callback = disable_acpi_irq,
1408 .ident = "IBM Thinkpad 600 Series 2645",
1409 .matches = {
1410 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1411 DMI_MATCH(DMI_BOARD_NAME, "2645"),
1412 },
1413 },
1414 {
1415 .callback = disable_acpi_irq,
1416 .ident = "IBM Thinkpad 600 Series 2646",
1417 .matches = {
1418 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1419 DMI_MATCH(DMI_BOARD_NAME, "2646"),
1420 },
1421 },
aea00143
AP
1422 /*
1423 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1424 */
4be44fcd
LB
1425 { /* _BBN 0 bug */
1426 .callback = disable_acpi_pci,
1427 .ident = "ASUS PR-DLS",
1428 .matches = {
1429 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1430 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1431 DMI_MATCH(DMI_BIOS_VERSION,
1432 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1433 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1434 },
1435 },
aea00143 1436 {
4be44fcd
LB
1437 .callback = disable_acpi_pci,
1438 .ident = "Acer TravelMate 36x Laptop",
1439 .matches = {
1440 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1441 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1442 },
1443 },
35af2821
AH
1444 {}
1445};
1446
1447/* second table for DMI checks that should run after early-quirks */
1448static struct dmi_system_id __initdata acpi_dmi_table_late[] = {
e2079c43
RW
1449 /*
1450 * HP laptops which use a DSDT reporting as HP/SB400/10000,
1451 * which includes some code which overrides all temperature
1452 * trip points to 16C if the INTIN2 input of the I/O APIC
1453 * is enabled. This input is incorrectly designated the
1454 * ISA IRQ 0 via an interrupt source override even though
1455 * it is wired to the output of the master 8259A and INTIN0
ae10ccdc 1456 * is not connected at all. Force ignoring BIOS IRQ0
e2079c43
RW
1457 * override in that cases.
1458 */
e84956f9
RW
1459 {
1460 .callback = dmi_ignore_irq0_timer_override,
1461 .ident = "HP nx6115 laptop",
1462 .matches = {
1463 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1464 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6115"),
1465 },
1466 },
e2079c43
RW
1467 {
1468 .callback = dmi_ignore_irq0_timer_override,
1469 .ident = "HP NX6125 laptop",
1470 .matches = {
1471 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1472 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6125"),
1473 },
1474 },
1475 {
1476 .callback = dmi_ignore_irq0_timer_override,
1477 .ident = "HP NX6325 laptop",
1478 .matches = {
1479 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1480 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6325"),
1481 },
1482 },
e84956f9
RW
1483 {
1484 .callback = dmi_ignore_irq0_timer_override,
1485 .ident = "HP 6715b laptop",
1486 .matches = {
1487 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1488 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 6715b"),
1489 },
1490 },
f6b54f08
FT
1491 {
1492 .callback = dmi_ignore_irq0_timer_override,
1493 .ident = "FUJITSU SIEMENS",
1494 .matches = {
1495 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
1496 DMI_MATCH(DMI_PRODUCT_NAME, "AMILO PRO V2030"),
1497 },
1498 },
4be44fcd 1499 {}
aea00143
AP
1500};
1501
1da177e4
LT
1502/*
1503 * acpi_boot_table_init() and acpi_boot_init()
1504 * called from setup_arch(), always.
1505 * 1. checksums all tables
1506 * 2. enumerates lapics
1507 * 3. enumerates io-apics
1508 *
1509 * acpi_table_init() is separate to allow reading SRAT without
1510 * other side effects.
1511 *
1512 * side effects of acpi_boot_init:
1513 * acpi_lapic = 1 if LAPIC found
1514 * acpi_ioapic = 1 if IOAPIC found
1515 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1516 * if acpi_blacklisted() acpi_disabled = 1;
1517 * acpi_irq_model=...
1518 * ...
1da177e4
LT
1519 */
1520
8558e394 1521void __init acpi_boot_table_init(void)
1da177e4 1522{
aea00143 1523 dmi_check_system(acpi_dmi_table);
aea00143 1524
1da177e4
LT
1525 /*
1526 * If acpi_disabled, bail out
1da177e4 1527 */
68ca4069 1528 if (acpi_disabled)
0f61aaa4 1529 return;
1da177e4 1530
5f3b1a8b 1531 /*
1da177e4
LT
1532 * Initialize the ACPI boot-time table parser.
1533 */
8558e394 1534 if (acpi_table_init()) {
1da177e4 1535 disable_acpi();
8558e394 1536 return;
1da177e4 1537 }
1da177e4 1538
5f3b1a8b 1539 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
1da177e4
LT
1540
1541 /*
1542 * blacklist may disable ACPI entirely
1543 */
8558e394 1544 if (acpi_blacklisted()) {
1da177e4
LT
1545 if (acpi_force) {
1546 printk(KERN_WARNING PREFIX "acpi=force override\n");
1547 } else {
1548 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1549 disable_acpi();
8558e394 1550 return;
1da177e4
LT
1551 }
1552 }
cbf9bd60
YL
1553}
1554
1555int __init early_acpi_boot_init(void)
1556{
1557 /*
1558 * If acpi_disabled, bail out
cbf9bd60 1559 */
68ca4069 1560 if (acpi_disabled)
cbf9bd60
YL
1561 return 1;
1562
1563 /*
1564 * Process the Multiple APIC Description Table (MADT), if present
1565 */
1566 early_acpi_process_madt();
1da177e4 1567
7486341a
LA
1568 /*
1569 * Hardware-reduced ACPI mode initialization:
1570 */
1571 acpi_reduced_hw_init();
1572
1da177e4
LT
1573 return 0;
1574}
1575
1da177e4
LT
1576int __init acpi_boot_init(void)
1577{
35af2821
AH
1578 /* those are executed after early-quirks are executed */
1579 dmi_check_system(acpi_dmi_table_late);
1580
1da177e4
LT
1581 /*
1582 * If acpi_disabled, bail out
1da177e4 1583 */
68ca4069 1584 if (acpi_disabled)
4be44fcd 1585 return 1;
1da177e4 1586
5f3b1a8b 1587 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
1da177e4
LT
1588
1589 /*
1590 * set sci_int and PM timer address
1591 */
ceb6c468 1592 acpi_table_parse(ACPI_SIG_FADT, acpi_parse_fadt);
1da177e4
LT
1593
1594 /*
1595 * Process the Multiple APIC Description Table (MADT), if present
1596 */
1597 acpi_process_madt();
1598
5f3b1a8b 1599 acpi_table_parse(ACPI_SIG_HPET, acpi_parse_hpet);
7b0a9114
DY
1600 if (IS_ENABLED(CONFIG_ACPI_BGRT))
1601 acpi_table_parse(ACPI_SIG_BGRT, acpi_parse_bgrt);
1da177e4 1602
b72d0db9
TG
1603 if (!acpi_noirq)
1604 x86_init.pci.init = pci_acpi_init;
1605
1da177e4
LT
1606 return 0;
1607}
1a3f239d
RR
1608
1609static int __init parse_acpi(char *arg)
1610{
1611 if (!arg)
1612 return -EINVAL;
1613
1614 /* "acpi=off" disables both ACPI table parsing and interpreter */
1615 if (strcmp(arg, "off") == 0) {
1616 disable_acpi();
1617 }
1618 /* acpi=force to over-ride black-list */
1619 else if (strcmp(arg, "force") == 0) {
1620 acpi_force = 1;
1a3f239d
RR
1621 acpi_disabled = 0;
1622 }
1623 /* acpi=strict disables out-of-spec workarounds */
1624 else if (strcmp(arg, "strict") == 0) {
1625 acpi_strict = 1;
1626 }
237889bf
ZY
1627 /* acpi=rsdt use RSDT instead of XSDT */
1628 else if (strcmp(arg, "rsdt") == 0) {
fab46105 1629 acpi_gbl_do_not_use_xsdt = TRUE;
237889bf 1630 }
1a3f239d
RR
1631 /* "acpi=noirq" disables ACPI interrupt routing */
1632 else if (strcmp(arg, "noirq") == 0) {
1633 acpi_noirq_set();
aa2110cb
LM
1634 }
1635 /* "acpi=copy_dsdt" copys DSDT */
1636 else if (strcmp(arg, "copy_dsdt") == 0) {
1637 acpi_gbl_copy_dsdt_locally = 1;
9ad95879
NR
1638 }
1639 /* "acpi=nocmcff" disables FF mode for corrected errors */
1640 else if (strcmp(arg, "nocmcff") == 0) {
1641 acpi_disable_cmcff = 1;
1a3f239d
RR
1642 } else {
1643 /* Core will printk when we return error. */
1644 return -EINVAL;
1645 }
1646 return 0;
1647}
1648early_param("acpi", parse_acpi);
1649
1650/* FIXME: Using pci= for an ACPI parameter is a travesty. */
1651static int __init parse_pci(char *arg)
1652{
1653 if (arg && strcmp(arg, "noacpi") == 0)
1654 acpi_disable_pci();
1655 return 0;
1656}
1657early_param("pci", parse_pci);
1658
3c999f14
YL
1659int __init acpi_mps_check(void)
1660{
1661#if defined(CONFIG_X86_LOCAL_APIC) && !defined(CONFIG_X86_MPPARSE)
1662/* mptable code is not built-in*/
1663 if (acpi_disabled || acpi_noirq) {
1664 printk(KERN_WARNING "MPS support code is not built-in.\n"
1665 "Using acpi=off or acpi=noirq or pci=noacpi "
1666 "may have problem\n");
1667 return 1;
1668 }
1669#endif
1670 return 0;
1671}
1672
1a3f239d
RR
1673#ifdef CONFIG_X86_IO_APIC
1674static int __init parse_acpi_skip_timer_override(char *arg)
1675{
1676 acpi_skip_timer_override = 1;
1677 return 0;
1678}
1679early_param("acpi_skip_timer_override", parse_acpi_skip_timer_override);
fa18f477
AK
1680
1681static int __init parse_acpi_use_timer_override(char *arg)
1682{
1683 acpi_use_timer_override = 1;
1684 return 0;
1685}
1686early_param("acpi_use_timer_override", parse_acpi_use_timer_override);
1a3f239d
RR
1687#endif /* CONFIG_X86_IO_APIC */
1688
1689static int __init setup_acpi_sci(char *s)
1690{
1691 if (!s)
1692 return -EINVAL;
1693 if (!strcmp(s, "edge"))
5f3b1a8b
AS
1694 acpi_sci_flags = ACPI_MADT_TRIGGER_EDGE |
1695 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
1a3f239d 1696 else if (!strcmp(s, "level"))
5f3b1a8b
AS
1697 acpi_sci_flags = ACPI_MADT_TRIGGER_LEVEL |
1698 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
1a3f239d 1699 else if (!strcmp(s, "high"))
5f3b1a8b
AS
1700 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_HIGH |
1701 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
1a3f239d 1702 else if (!strcmp(s, "low"))
5f3b1a8b
AS
1703 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_LOW |
1704 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
1a3f239d
RR
1705 else
1706 return -EINVAL;
1707 return 0;
1708}
1709early_param("acpi_sci", setup_acpi_sci);
d0a9081b
AM
1710
1711int __acpi_acquire_global_lock(unsigned int *lock)
1712{
1713 unsigned int old, new, val;
1714 do {
1715 old = *lock;
1716 new = (((old & ~0x3) + 2) + ((old >> 1) & 0x1));
1717 val = cmpxchg(lock, old, new);
1718 } while (unlikely (val != old));
1719 return (new < 3) ? -1 : 0;
1720}
1721
1722int __acpi_release_global_lock(unsigned int *lock)
1723{
1724 unsigned int old, new, val;
1725 do {
1726 old = *lock;
1727 new = old & ~0x3;
1728 val = cmpxchg(lock, old, new);
1729 } while (unlikely (val != old));
1730 return old & 0x1;
1731}
8e30524d
TR
1732
1733void __init arch_reserve_mem_area(acpi_physical_address addr, size_t size)
1734{
09821ff1 1735 e820__range_add(addr, size, E820_TYPE_ACPI);
6464d294 1736 e820__update_table_print();
8e30524d 1737}