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