Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * acpi_osl.c - OS-dependent functions ($Revision: 83 $) |
| 3 | * |
| 4 | * Copyright (C) 2000 Andrew Henroid |
| 5 | * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com> |
| 6 | * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> |
Matthew Wilcox | f1241c8 | 2008-03-14 13:43:13 -0400 | [diff] [blame] | 7 | * Copyright (c) 2008 Intel Corporation |
| 8 | * Author: Matthew Wilcox <willy@linux.intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * |
| 10 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License as published by |
| 14 | * the Free Software Foundation; either version 2 of the License, or |
| 15 | * (at your option) any later version. |
| 16 | * |
| 17 | * This program is distributed in the hope that it will be useful, |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | * GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License |
| 23 | * along with this program; if not, write to the Free Software |
| 24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 25 | * |
| 26 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 27 | * |
| 28 | */ |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/module.h> |
| 31 | #include <linux/kernel.h> |
| 32 | #include <linux/slab.h> |
| 33 | #include <linux/mm.h> |
| 34 | #include <linux/pci.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/interrupt.h> |
| 36 | #include <linux/kmod.h> |
| 37 | #include <linux/delay.h> |
| 38 | #include <linux/workqueue.h> |
| 39 | #include <linux/nmi.h> |
Alexey Starikovskiy | ad71860a | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 40 | #include <linux/acpi.h> |
Rafael J. Wysocki | 2d6d9fd | 2011-01-19 22:27:14 +0100 | [diff] [blame] | 41 | #include <linux/acpi_io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/efi.h> |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 43 | #include <linux/ioport.h> |
| 44 | #include <linux/list.h> |
Matthew Wilcox | f1241c8 | 2008-03-14 13:43:13 -0400 | [diff] [blame] | 45 | #include <linux/jiffies.h> |
| 46 | #include <linux/semaphore.h> |
| 47 | |
| 48 | #include <asm/io.h> |
| 49 | #include <asm/uaccess.h> |
| 50 | |
| 51 | #include <acpi/acpi.h> |
| 52 | #include <acpi/acpi_bus.h> |
| 53 | #include <acpi/processor.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #define _COMPONENT ACPI_OS_SERVICES |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 56 | ACPI_MODULE_NAME("osl"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #define PREFIX "ACPI: " |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 58 | struct acpi_os_dpc { |
| 59 | acpi_osd_exec_callback function; |
| 60 | void *context; |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 61 | struct work_struct work; |
Bjorn Helgaas | 9ac6185 | 2009-08-31 22:32:10 +0000 | [diff] [blame] | 62 | int wait; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | }; |
| 64 | |
| 65 | #ifdef CONFIG_ACPI_CUSTOM_DSDT |
| 66 | #include CONFIG_ACPI_CUSTOM_DSDT_FILE |
| 67 | #endif |
| 68 | |
| 69 | #ifdef ENABLE_DEBUGGER |
| 70 | #include <linux/kdb.h> |
| 71 | |
| 72 | /* stuff for debugger support */ |
| 73 | int acpi_in_debugger; |
| 74 | EXPORT_SYMBOL(acpi_in_debugger); |
| 75 | |
| 76 | extern char line_buf[80]; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 77 | #endif /*ENABLE_DEBUGGER */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | static acpi_osd_handler acpi_irq_handler; |
| 80 | static void *acpi_irq_context; |
| 81 | static struct workqueue_struct *kacpid_wq; |
Alexey Starikovskiy | 88db5e1 | 2007-05-09 23:31:03 -0400 | [diff] [blame] | 82 | static struct workqueue_struct *kacpi_notify_wq; |
Prarit Bhargava | 6af8bef | 2011-09-28 19:40:53 -0400 | [diff] [blame] | 83 | struct workqueue_struct *kacpi_hotplug_wq; |
| 84 | EXPORT_SYMBOL(kacpi_hotplug_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 86 | struct acpi_res_list { |
| 87 | resource_size_t start; |
| 88 | resource_size_t end; |
| 89 | acpi_adr_space_type resource_type; /* IO port, System memory, ...*/ |
| 90 | char name[5]; /* only can have a length of 4 chars, make use of this |
| 91 | one instead of res->name, no need to kalloc then */ |
| 92 | struct list_head resource_list; |
Lin Ming | a5fe1a0 | 2009-08-13 10:43:27 +0800 | [diff] [blame] | 93 | int count; |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 94 | }; |
| 95 | |
| 96 | static LIST_HEAD(resource_list_head); |
| 97 | static DEFINE_SPINLOCK(acpi_res_lock); |
| 98 | |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 99 | /* |
| 100 | * This list of permanent mappings is for memory that may be accessed from |
| 101 | * interrupt context, where we can't do the ioremap(). |
| 102 | */ |
| 103 | struct acpi_ioremap { |
| 104 | struct list_head list; |
| 105 | void __iomem *virt; |
| 106 | acpi_physical_address phys; |
| 107 | acpi_size size; |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 108 | unsigned long refcount; |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 109 | }; |
| 110 | |
| 111 | static LIST_HEAD(acpi_ioremaps); |
Rafael J. Wysocki | 7bbb890 | 2011-02-08 23:37:42 +0100 | [diff] [blame] | 112 | static DEFINE_MUTEX(acpi_ioremap_lock); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 113 | |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 114 | static void __init acpi_osi_setup_late(void); |
Len Brown | ae00d81 | 2007-05-29 18:43:33 -0400 | [diff] [blame] | 115 | |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 116 | /* |
Len Brown | a6e0887 | 2008-11-08 01:21:10 -0500 | [diff] [blame] | 117 | * The story of _OSI(Linux) |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 118 | * |
Len Brown | a6e0887 | 2008-11-08 01:21:10 -0500 | [diff] [blame] | 119 | * From pre-history through Linux-2.6.22, |
| 120 | * Linux responded TRUE upon a BIOS OSI(Linux) query. |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 121 | * |
Len Brown | a6e0887 | 2008-11-08 01:21:10 -0500 | [diff] [blame] | 122 | * Unfortunately, reference BIOS writers got wind of this |
| 123 | * and put OSI(Linux) in their example code, quickly exposing |
| 124 | * this string as ill-conceived and opening the door to |
| 125 | * an un-bounded number of BIOS incompatibilities. |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 126 | * |
Len Brown | a6e0887 | 2008-11-08 01:21:10 -0500 | [diff] [blame] | 127 | * For example, OSI(Linux) was used on resume to re-POST a |
| 128 | * video card on one system, because Linux at that time |
| 129 | * could not do a speedy restore in its native driver. |
| 130 | * But then upon gaining quick native restore capability, |
| 131 | * Linux has no way to tell the BIOS to skip the time-consuming |
| 132 | * POST -- putting Linux at a permanent performance disadvantage. |
| 133 | * On another system, the BIOS writer used OSI(Linux) |
| 134 | * to infer native OS support for IPMI! On other systems, |
| 135 | * OSI(Linux) simply got in the way of Linux claiming to |
| 136 | * be compatible with other operating systems, exposing |
| 137 | * BIOS issues such as skipped device initialization. |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 138 | * |
Len Brown | a6e0887 | 2008-11-08 01:21:10 -0500 | [diff] [blame] | 139 | * So "Linux" turned out to be a really poor chose of |
| 140 | * OSI string, and from Linux-2.6.23 onward we respond FALSE. |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 141 | * |
| 142 | * BIOS writers should NOT query _OSI(Linux) on future systems. |
Len Brown | a6e0887 | 2008-11-08 01:21:10 -0500 | [diff] [blame] | 143 | * Linux will complain on the console when it sees it, and return FALSE. |
| 144 | * To get Linux to return TRUE for your system will require |
| 145 | * a kernel source update to add a DMI entry, |
| 146 | * or boot with "acpi_osi=Linux" |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 147 | */ |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 148 | |
Adrian Bunk | 1d15d84 | 2008-01-29 00:10:15 +0200 | [diff] [blame] | 149 | static struct osi_linux { |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 150 | unsigned int enable:1; |
| 151 | unsigned int dmi:1; |
| 152 | unsigned int cmdline:1; |
Lin Ming | d90aa92 | 2010-12-09 16:50:52 +0800 | [diff] [blame] | 153 | } osi_linux = {0, 0, 0}; |
Len Brown | f507654 | 2007-05-30 00:10:38 -0400 | [diff] [blame] | 154 | |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 155 | static u32 acpi_osi_handler(acpi_string interface, u32 supported) |
| 156 | { |
| 157 | if (!strcmp("Linux", interface)) { |
| 158 | |
Len Brown | 8997621 | 2011-08-02 00:45:48 -0400 | [diff] [blame] | 159 | printk_once(KERN_NOTICE FW_BUG PREFIX |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 160 | "BIOS _OSI(Linux) query %s%s\n", |
| 161 | osi_linux.enable ? "honored" : "ignored", |
| 162 | osi_linux.cmdline ? " via cmdline" : |
| 163 | osi_linux.dmi ? " via DMI" : ""); |
| 164 | } |
| 165 | |
| 166 | return supported; |
| 167 | } |
| 168 | |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 169 | static void __init acpi_request_region (struct acpi_generic_address *addr, |
| 170 | unsigned int length, char *desc) |
| 171 | { |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 172 | if (!addr->address || !length) |
| 173 | return; |
| 174 | |
Andi Kleen | cfa806f | 2010-07-20 15:18:36 -0700 | [diff] [blame] | 175 | /* Resources are never freed */ |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 176 | if (addr->space_id == ACPI_ADR_SPACE_SYSTEM_IO) |
Andi Kleen | cfa806f | 2010-07-20 15:18:36 -0700 | [diff] [blame] | 177 | request_region(addr->address, length, desc); |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 178 | else if (addr->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) |
Andi Kleen | cfa806f | 2010-07-20 15:18:36 -0700 | [diff] [blame] | 179 | request_mem_region(addr->address, length, desc); |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | static int __init acpi_reserve_resources(void) |
| 183 | { |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 184 | acpi_request_region(&acpi_gbl_FADT.xpm1a_event_block, acpi_gbl_FADT.pm1_event_length, |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 185 | "ACPI PM1a_EVT_BLK"); |
| 186 | |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 187 | acpi_request_region(&acpi_gbl_FADT.xpm1b_event_block, acpi_gbl_FADT.pm1_event_length, |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 188 | "ACPI PM1b_EVT_BLK"); |
| 189 | |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 190 | acpi_request_region(&acpi_gbl_FADT.xpm1a_control_block, acpi_gbl_FADT.pm1_control_length, |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 191 | "ACPI PM1a_CNT_BLK"); |
| 192 | |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 193 | acpi_request_region(&acpi_gbl_FADT.xpm1b_control_block, acpi_gbl_FADT.pm1_control_length, |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 194 | "ACPI PM1b_CNT_BLK"); |
| 195 | |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 196 | if (acpi_gbl_FADT.pm_timer_length == 4) |
| 197 | acpi_request_region(&acpi_gbl_FADT.xpm_timer_block, 4, "ACPI PM_TMR"); |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 198 | |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 199 | acpi_request_region(&acpi_gbl_FADT.xpm2_control_block, acpi_gbl_FADT.pm2_control_length, |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 200 | "ACPI PM2_CNT_BLK"); |
| 201 | |
| 202 | /* Length of GPE blocks must be a non-negative multiple of 2 */ |
| 203 | |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 204 | if (!(acpi_gbl_FADT.gpe0_block_length & 0x1)) |
| 205 | acpi_request_region(&acpi_gbl_FADT.xgpe0_block, |
| 206 | acpi_gbl_FADT.gpe0_block_length, "ACPI GPE0_BLK"); |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 207 | |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 208 | if (!(acpi_gbl_FADT.gpe1_block_length & 0x1)) |
| 209 | acpi_request_region(&acpi_gbl_FADT.xgpe1_block, |
| 210 | acpi_gbl_FADT.gpe1_block_length, "ACPI GPE1_BLK"); |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 211 | |
| 212 | return 0; |
| 213 | } |
| 214 | device_initcall(acpi_reserve_resources); |
| 215 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 216 | void acpi_os_printf(const char *fmt, ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | { |
| 218 | va_list args; |
| 219 | va_start(args, fmt); |
| 220 | acpi_os_vprintf(fmt, args); |
| 221 | va_end(args); |
| 222 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 223 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 224 | void acpi_os_vprintf(const char *fmt, va_list args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | { |
| 226 | static char buffer[512]; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 227 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | vsprintf(buffer, fmt, args); |
| 229 | |
| 230 | #ifdef ENABLE_DEBUGGER |
| 231 | if (acpi_in_debugger) { |
| 232 | kdb_printf("%s", buffer); |
| 233 | } else { |
Frank Seidel | 4d93915 | 2009-02-04 17:03:07 +0100 | [diff] [blame] | 234 | printk(KERN_CONT "%s", buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | } |
| 236 | #else |
Frank Seidel | 4d93915 | 2009-02-04 17:03:07 +0100 | [diff] [blame] | 237 | printk(KERN_CONT "%s", buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | #endif |
| 239 | } |
| 240 | |
Takao Indoh | 4996c02 | 2011-07-14 18:05:21 -0400 | [diff] [blame] | 241 | #ifdef CONFIG_KEXEC |
| 242 | static unsigned long acpi_rsdp; |
| 243 | static int __init setup_acpi_rsdp(char *arg) |
| 244 | { |
| 245 | acpi_rsdp = simple_strtoul(arg, NULL, 16); |
| 246 | return 0; |
| 247 | } |
| 248 | early_param("acpi_rsdp", setup_acpi_rsdp); |
| 249 | #endif |
| 250 | |
Alexey Starikovskiy | ad71860a | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 251 | acpi_physical_address __init acpi_os_get_root_pointer(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | { |
Takao Indoh | 4996c02 | 2011-07-14 18:05:21 -0400 | [diff] [blame] | 253 | #ifdef CONFIG_KEXEC |
| 254 | if (acpi_rsdp) |
| 255 | return acpi_rsdp; |
| 256 | #endif |
| 257 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | if (efi_enabled) { |
Bjorn Helgaas | b2c99e3 | 2006-03-26 01:37:08 -0800 | [diff] [blame] | 259 | if (efi.acpi20 != EFI_INVALID_TABLE_ADDR) |
Alexey Starikovskiy | ad71860a | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 260 | return efi.acpi20; |
Bjorn Helgaas | b2c99e3 | 2006-03-26 01:37:08 -0800 | [diff] [blame] | 261 | else if (efi.acpi != EFI_INVALID_TABLE_ADDR) |
Alexey Starikovskiy | ad71860a | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 262 | return efi.acpi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | else { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 264 | printk(KERN_ERR PREFIX |
| 265 | "System description tables not found\n"); |
Alexey Starikovskiy | ad71860a | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 266 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | } |
Len Brown | 239665a | 2007-11-23 20:08:02 -0500 | [diff] [blame] | 268 | } else { |
| 269 | acpi_physical_address pa = 0; |
| 270 | |
| 271 | acpi_find_root_pointer(&pa); |
| 272 | return pa; |
| 273 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | } |
| 275 | |
Myron Stowe | 78cdb3e | 2010-10-21 14:24:09 -0600 | [diff] [blame] | 276 | /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */ |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 277 | static struct acpi_ioremap * |
| 278 | acpi_map_lookup(acpi_physical_address phys, acpi_size size) |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 279 | { |
| 280 | struct acpi_ioremap *map; |
| 281 | |
Myron Stowe | 78cdb3e | 2010-10-21 14:24:09 -0600 | [diff] [blame] | 282 | list_for_each_entry_rcu(map, &acpi_ioremaps, list) |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 283 | if (map->phys <= phys && |
| 284 | phys + size <= map->phys + map->size) |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 285 | return map; |
| 286 | |
| 287 | return NULL; |
| 288 | } |
| 289 | |
| 290 | /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */ |
| 291 | static void __iomem * |
| 292 | acpi_map_vaddr_lookup(acpi_physical_address phys, unsigned int size) |
| 293 | { |
| 294 | struct acpi_ioremap *map; |
| 295 | |
| 296 | map = acpi_map_lookup(phys, size); |
| 297 | if (map) |
| 298 | return map->virt + (phys - map->phys); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 299 | |
| 300 | return NULL; |
| 301 | } |
| 302 | |
Rafael J. Wysocki | 13606a2 | 2011-02-08 23:38:25 +0100 | [diff] [blame] | 303 | void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size) |
| 304 | { |
| 305 | struct acpi_ioremap *map; |
| 306 | void __iomem *virt = NULL; |
| 307 | |
| 308 | mutex_lock(&acpi_ioremap_lock); |
| 309 | map = acpi_map_lookup(phys, size); |
| 310 | if (map) { |
| 311 | virt = map->virt + (phys - map->phys); |
| 312 | map->refcount++; |
| 313 | } |
| 314 | mutex_unlock(&acpi_ioremap_lock); |
| 315 | return virt; |
| 316 | } |
| 317 | EXPORT_SYMBOL_GPL(acpi_os_get_iomem); |
| 318 | |
Myron Stowe | 78cdb3e | 2010-10-21 14:24:09 -0600 | [diff] [blame] | 319 | /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */ |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 320 | static struct acpi_ioremap * |
| 321 | acpi_map_lookup_virt(void __iomem *virt, acpi_size size) |
| 322 | { |
| 323 | struct acpi_ioremap *map; |
| 324 | |
Myron Stowe | 78cdb3e | 2010-10-21 14:24:09 -0600 | [diff] [blame] | 325 | list_for_each_entry_rcu(map, &acpi_ioremaps, list) |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 326 | if (map->virt <= virt && |
| 327 | virt + size <= map->virt + map->size) |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 328 | return map; |
| 329 | |
| 330 | return NULL; |
| 331 | } |
| 332 | |
Jan Beulich | 2fdf074 | 2007-12-13 08:33:59 +0000 | [diff] [blame] | 333 | void __iomem *__init_refok |
| 334 | acpi_os_map_memory(acpi_physical_address phys, acpi_size size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | { |
Rafael J. Wysocki | 7ffd044 | 2011-02-08 23:38:05 +0100 | [diff] [blame] | 336 | struct acpi_ioremap *map; |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 337 | void __iomem *virt; |
Rafael J. Wysocki | 2d6d9fd | 2011-01-19 22:27:14 +0100 | [diff] [blame] | 338 | acpi_physical_address pg_off; |
| 339 | acpi_size pg_sz; |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 340 | |
Bjorn Helgaas | 9f4fd61 | 2006-03-26 01:37:10 -0800 | [diff] [blame] | 341 | if (phys > ULONG_MAX) { |
| 342 | printk(KERN_ERR PREFIX "Cannot map memory that high\n"); |
Randy Dunlap | 70c0846 | 2007-02-13 16:11:36 -0800 | [diff] [blame] | 343 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | } |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 345 | |
| 346 | if (!acpi_gbl_permanent_mmap) |
Alexey Starikovskiy | ad71860a | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 347 | return __acpi_map_table((unsigned long)phys, size); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 348 | |
Rafael J. Wysocki | 7ffd044 | 2011-02-08 23:38:05 +0100 | [diff] [blame] | 349 | mutex_lock(&acpi_ioremap_lock); |
| 350 | /* Check if there's a suitable mapping already. */ |
| 351 | map = acpi_map_lookup(phys, size); |
| 352 | if (map) { |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 353 | map->refcount++; |
Rafael J. Wysocki | 7ffd044 | 2011-02-08 23:38:05 +0100 | [diff] [blame] | 354 | goto out; |
| 355 | } |
| 356 | |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 357 | map = kzalloc(sizeof(*map), GFP_KERNEL); |
Rafael J. Wysocki | 7ffd044 | 2011-02-08 23:38:05 +0100 | [diff] [blame] | 358 | if (!map) { |
| 359 | mutex_unlock(&acpi_ioremap_lock); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 360 | return NULL; |
Rafael J. Wysocki | 7ffd044 | 2011-02-08 23:38:05 +0100 | [diff] [blame] | 361 | } |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 362 | |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 363 | pg_off = round_down(phys, PAGE_SIZE); |
| 364 | pg_sz = round_up(phys + size, PAGE_SIZE) - pg_off; |
Rafael J. Wysocki | 2d6d9fd | 2011-01-19 22:27:14 +0100 | [diff] [blame] | 365 | virt = acpi_os_ioremap(pg_off, pg_sz); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 366 | if (!virt) { |
Rafael J. Wysocki | 7ffd044 | 2011-02-08 23:38:05 +0100 | [diff] [blame] | 367 | mutex_unlock(&acpi_ioremap_lock); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 368 | kfree(map); |
| 369 | return NULL; |
| 370 | } |
| 371 | |
| 372 | INIT_LIST_HEAD(&map->list); |
| 373 | map->virt = virt; |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 374 | map->phys = pg_off; |
| 375 | map->size = pg_sz; |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 376 | map->refcount = 1; |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 377 | |
Myron Stowe | 78cdb3e | 2010-10-21 14:24:09 -0600 | [diff] [blame] | 378 | list_add_tail_rcu(&map->list, &acpi_ioremaps); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 379 | |
Rafael J. Wysocki | 7ffd044 | 2011-02-08 23:38:05 +0100 | [diff] [blame] | 380 | out: |
| 381 | mutex_unlock(&acpi_ioremap_lock); |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 382 | return map->virt + (phys - map->phys); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | } |
Kylene Jo Hall | 55a82ab | 2006-01-08 01:03:15 -0800 | [diff] [blame] | 384 | EXPORT_SYMBOL_GPL(acpi_os_map_memory); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 386 | static void acpi_os_drop_map_ref(struct acpi_ioremap *map) |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 387 | { |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 388 | if (!--map->refcount) |
| 389 | list_del_rcu(&map->list); |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 390 | } |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 391 | |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 392 | static void acpi_os_map_cleanup(struct acpi_ioremap *map) |
Rafael J. Wysocki | 7fe135d | 2011-02-08 23:37:53 +0100 | [diff] [blame] | 393 | { |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 394 | if (!map->refcount) { |
| 395 | synchronize_rcu(); |
| 396 | iounmap(map->virt); |
| 397 | kfree(map); |
| 398 | } |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 399 | } |
| 400 | |
Jeremy Fitzhardinge | 0d3a9cf | 2009-02-22 14:58:56 -0800 | [diff] [blame] | 401 | void __ref acpi_os_unmap_memory(void __iomem *virt, acpi_size size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | { |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 403 | struct acpi_ioremap *map; |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 404 | |
| 405 | if (!acpi_gbl_permanent_mmap) { |
Yinghai Lu | 7d97277 | 2009-02-07 15:39:41 -0800 | [diff] [blame] | 406 | __acpi_unmap_table(virt, size); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 407 | return; |
| 408 | } |
| 409 | |
Rafael J. Wysocki | 7bbb890 | 2011-02-08 23:37:42 +0100 | [diff] [blame] | 410 | mutex_lock(&acpi_ioremap_lock); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 411 | map = acpi_map_lookup_virt(virt, size); |
| 412 | if (!map) { |
Rafael J. Wysocki | 7bbb890 | 2011-02-08 23:37:42 +0100 | [diff] [blame] | 413 | mutex_unlock(&acpi_ioremap_lock); |
Rafael J. Wysocki | 7fe135d | 2011-02-08 23:37:53 +0100 | [diff] [blame] | 414 | WARN(true, PREFIX "%s: bad address %p\n", __func__, virt); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 415 | return; |
| 416 | } |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 417 | acpi_os_drop_map_ref(map); |
Rafael J. Wysocki | 7bbb890 | 2011-02-08 23:37:42 +0100 | [diff] [blame] | 418 | mutex_unlock(&acpi_ioremap_lock); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 419 | |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 420 | acpi_os_map_cleanup(map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | } |
Kylene Jo Hall | 55a82ab | 2006-01-08 01:03:15 -0800 | [diff] [blame] | 422 | EXPORT_SYMBOL_GPL(acpi_os_unmap_memory); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | |
Jeremy Fitzhardinge | 0d3a9cf | 2009-02-22 14:58:56 -0800 | [diff] [blame] | 424 | void __init early_acpi_os_unmap_memory(void __iomem *virt, acpi_size size) |
Yinghai Lu | 7d97277 | 2009-02-07 15:39:41 -0800 | [diff] [blame] | 425 | { |
| 426 | if (!acpi_gbl_permanent_mmap) |
| 427 | __acpi_unmap_table(virt, size); |
| 428 | } |
| 429 | |
Rafael J. Wysocki | 073b496 | 2011-02-08 23:37:31 +0100 | [diff] [blame] | 430 | static int acpi_os_map_generic_address(struct acpi_generic_address *addr) |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 431 | { |
| 432 | void __iomem *virt; |
| 433 | |
| 434 | if (addr->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY) |
| 435 | return 0; |
| 436 | |
| 437 | if (!addr->address || !addr->bit_width) |
| 438 | return -EINVAL; |
| 439 | |
| 440 | virt = acpi_os_map_memory(addr->address, addr->bit_width / 8); |
| 441 | if (!virt) |
| 442 | return -EIO; |
| 443 | |
| 444 | return 0; |
| 445 | } |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 446 | |
Rafael J. Wysocki | 073b496 | 2011-02-08 23:37:31 +0100 | [diff] [blame] | 447 | static void acpi_os_unmap_generic_address(struct acpi_generic_address *addr) |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 448 | { |
Rafael J. Wysocki | 7fe135d | 2011-02-08 23:37:53 +0100 | [diff] [blame] | 449 | struct acpi_ioremap *map; |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 450 | |
| 451 | if (addr->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY) |
| 452 | return; |
| 453 | |
| 454 | if (!addr->address || !addr->bit_width) |
| 455 | return; |
| 456 | |
Rafael J. Wysocki | 7bbb890 | 2011-02-08 23:37:42 +0100 | [diff] [blame] | 457 | mutex_lock(&acpi_ioremap_lock); |
Rafael J. Wysocki | 7fe135d | 2011-02-08 23:37:53 +0100 | [diff] [blame] | 458 | map = acpi_map_lookup(addr->address, addr->bit_width / 8); |
| 459 | if (!map) { |
| 460 | mutex_unlock(&acpi_ioremap_lock); |
| 461 | return; |
| 462 | } |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 463 | acpi_os_drop_map_ref(map); |
Rafael J. Wysocki | 7bbb890 | 2011-02-08 23:37:42 +0100 | [diff] [blame] | 464 | mutex_unlock(&acpi_ioremap_lock); |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 465 | |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 466 | acpi_os_map_cleanup(map); |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 467 | } |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 468 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | #ifdef ACPI_FUTURE_USAGE |
| 470 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 471 | acpi_os_get_physical_address(void *virt, acpi_physical_address * phys) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 473 | if (!phys || !virt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | return AE_BAD_PARAMETER; |
| 475 | |
| 476 | *phys = virt_to_phys(virt); |
| 477 | |
| 478 | return AE_OK; |
| 479 | } |
| 480 | #endif |
| 481 | |
| 482 | #define ACPI_MAX_OVERRIDE_LEN 100 |
| 483 | |
| 484 | static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN]; |
| 485 | |
| 486 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 487 | acpi_os_predefined_override(const struct acpi_predefined_names *init_val, |
| 488 | acpi_string * new_val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | { |
| 490 | if (!init_val || !new_val) |
| 491 | return AE_BAD_PARAMETER; |
| 492 | |
| 493 | *new_val = NULL; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 494 | if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 496 | acpi_os_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | *new_val = acpi_os_name; |
| 498 | } |
| 499 | |
| 500 | return AE_OK; |
| 501 | } |
| 502 | |
| 503 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 504 | acpi_os_table_override(struct acpi_table_header * existing_table, |
| 505 | struct acpi_table_header ** new_table) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | { |
| 507 | if (!existing_table || !new_table) |
| 508 | return AE_BAD_PARAMETER; |
| 509 | |
Markus Gaugusch | 71fc47a | 2008-02-05 00:04:06 +0100 | [diff] [blame] | 510 | *new_table = NULL; |
| 511 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | #ifdef CONFIG_ACPI_CUSTOM_DSDT |
| 513 | if (strncmp(existing_table->signature, "DSDT", 4) == 0) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 514 | *new_table = (struct acpi_table_header *)AmlCode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | #endif |
Éric Piel | 6ed31e9 | 2008-02-05 00:04:50 +0100 | [diff] [blame] | 516 | if (*new_table != NULL) { |
| 517 | printk(KERN_WARNING PREFIX "Override [%4.4s-%8.8s], " |
| 518 | "this is unsafe: tainting kernel\n", |
| 519 | existing_table->signature, |
| 520 | existing_table->oem_table_id); |
| 521 | add_taint(TAINT_OVERRIDDEN_ACPI_TABLE); |
| 522 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | return AE_OK; |
| 524 | } |
| 525 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 526 | static irqreturn_t acpi_irq(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | { |
Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 528 | u32 handled; |
| 529 | |
| 530 | handled = (*acpi_irq_handler) (acpi_irq_context); |
| 531 | |
| 532 | if (handled) { |
| 533 | acpi_irq_handled++; |
| 534 | return IRQ_HANDLED; |
Len Brown | 88bea18 | 2009-04-21 00:35:47 -0400 | [diff] [blame] | 535 | } else { |
| 536 | acpi_irq_not_handled++; |
Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 537 | return IRQ_NONE; |
Len Brown | 88bea18 | 2009-04-21 00:35:47 -0400 | [diff] [blame] | 538 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | } |
| 540 | |
| 541 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 542 | acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler, |
| 543 | void *context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | { |
| 545 | unsigned int irq; |
| 546 | |
Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 547 | acpi_irq_stats_init(); |
| 548 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | /* |
Rafael J. Wysocki | 23fe363 | 2011-02-08 23:48:16 +0100 | [diff] [blame] | 550 | * ACPI interrupts different from the SCI in our copy of the FADT are |
| 551 | * not supported. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | */ |
Rafael J. Wysocki | 23fe363 | 2011-02-08 23:48:16 +0100 | [diff] [blame] | 553 | if (gsi != acpi_gbl_FADT.sci_interrupt) |
| 554 | return AE_BAD_PARAMETER; |
| 555 | |
| 556 | if (acpi_irq_handler) |
| 557 | return AE_ALREADY_ACQUIRED; |
| 558 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | if (acpi_gsi_to_irq(gsi, &irq) < 0) { |
| 560 | printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n", |
| 561 | gsi); |
| 562 | return AE_OK; |
| 563 | } |
| 564 | |
| 565 | acpi_irq_handler = handler; |
| 566 | acpi_irq_context = context; |
Thomas Gleixner | dace145 | 2006-07-01 19:29:38 -0700 | [diff] [blame] | 567 | if (request_irq(irq, acpi_irq, IRQF_SHARED, "acpi", acpi_irq)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq); |
Rafael J. Wysocki | 23fe363 | 2011-02-08 23:48:16 +0100 | [diff] [blame] | 569 | acpi_irq_handler = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | return AE_NOT_ACQUIRED; |
| 571 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | |
| 573 | return AE_OK; |
| 574 | } |
| 575 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 576 | acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | { |
Rafael J. Wysocki | 23fe363 | 2011-02-08 23:48:16 +0100 | [diff] [blame] | 578 | if (irq != acpi_gbl_FADT.sci_interrupt) |
| 579 | return AE_BAD_PARAMETER; |
| 580 | |
| 581 | free_irq(irq, acpi_irq); |
| 582 | acpi_irq_handler = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | |
| 584 | return AE_OK; |
| 585 | } |
| 586 | |
| 587 | /* |
| 588 | * Running in interpreter thread context, safe to sleep |
| 589 | */ |
| 590 | |
Lin Ming | 439913f | 2010-01-28 10:53:19 +0800 | [diff] [blame] | 591 | void acpi_os_sleep(u64 ms) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | { |
Nishanth Aravamudan | 01a527e | 2005-11-07 01:01:14 -0800 | [diff] [blame] | 593 | schedule_timeout_interruptible(msecs_to_jiffies(ms)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 595 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 596 | void acpi_os_stall(u32 us) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | { |
| 598 | while (us) { |
| 599 | u32 delay = 1000; |
| 600 | |
| 601 | if (delay > us) |
| 602 | delay = us; |
| 603 | udelay(delay); |
| 604 | touch_nmi_watchdog(); |
| 605 | us -= delay; |
| 606 | } |
| 607 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 608 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | /* |
| 610 | * Support ACPI 3.0 AML Timer operand |
| 611 | * Returns 64-bit free-running, monotonically increasing timer |
| 612 | * with 100ns granularity |
| 613 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 614 | u64 acpi_os_get_timer(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | { |
| 616 | static u64 t; |
| 617 | |
| 618 | #ifdef CONFIG_HPET |
| 619 | /* TBD: use HPET if available */ |
| 620 | #endif |
| 621 | |
| 622 | #ifdef CONFIG_X86_PM_TIMER |
| 623 | /* TBD: default to PM timer if HPET was not available */ |
| 624 | #endif |
| 625 | if (!t) |
| 626 | printk(KERN_ERR PREFIX "acpi_os_get_timer() TBD\n"); |
| 627 | |
| 628 | return ++t; |
| 629 | } |
| 630 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 631 | acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | { |
| 633 | u32 dummy; |
| 634 | |
| 635 | if (!value) |
| 636 | value = &dummy; |
| 637 | |
Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 638 | *value = 0; |
| 639 | if (width <= 8) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 640 | *(u8 *) value = inb(port); |
Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 641 | } else if (width <= 16) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 642 | *(u16 *) value = inw(port); |
Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 643 | } else if (width <= 32) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 644 | *(u32 *) value = inl(port); |
Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 645 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | BUG(); |
| 647 | } |
| 648 | |
| 649 | return AE_OK; |
| 650 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 651 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | EXPORT_SYMBOL(acpi_os_read_port); |
| 653 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 654 | acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | { |
Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 656 | if (width <= 8) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | outb(value, port); |
Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 658 | } else if (width <= 16) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | outw(value, port); |
Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 660 | } else if (width <= 32) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | outl(value, port); |
Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 662 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | BUG(); |
| 664 | } |
| 665 | |
| 666 | return AE_OK; |
| 667 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 668 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | EXPORT_SYMBOL(acpi_os_write_port); |
| 670 | |
| 671 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 672 | acpi_os_read_memory(acpi_physical_address phys_addr, u32 * value, u32 width) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 674 | void __iomem *virt_addr; |
Rafael J. Wysocki | 884b821 | 2011-02-08 23:37:16 +0100 | [diff] [blame] | 675 | unsigned int size = width / 8; |
| 676 | bool unmap = false; |
| 677 | u32 dummy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | |
Myron Stowe | 78cdb3e | 2010-10-21 14:24:09 -0600 | [diff] [blame] | 679 | rcu_read_lock(); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 680 | virt_addr = acpi_map_vaddr_lookup(phys_addr, size); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 681 | if (!virt_addr) { |
Rafael J. Wysocki | 884b821 | 2011-02-08 23:37:16 +0100 | [diff] [blame] | 682 | rcu_read_unlock(); |
Rafael J. Wysocki | 2d6d9fd | 2011-01-19 22:27:14 +0100 | [diff] [blame] | 683 | virt_addr = acpi_os_ioremap(phys_addr, size); |
Rafael J. Wysocki | 884b821 | 2011-02-08 23:37:16 +0100 | [diff] [blame] | 684 | if (!virt_addr) |
| 685 | return AE_BAD_ADDRESS; |
| 686 | unmap = true; |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 687 | } |
Rafael J. Wysocki | 884b821 | 2011-02-08 23:37:16 +0100 | [diff] [blame] | 688 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | if (!value) |
| 690 | value = &dummy; |
| 691 | |
| 692 | switch (width) { |
| 693 | case 8: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 694 | *(u8 *) value = readb(virt_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | break; |
| 696 | case 16: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 697 | *(u16 *) value = readw(virt_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | break; |
| 699 | case 32: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 700 | *(u32 *) value = readl(virt_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | break; |
| 702 | default: |
| 703 | BUG(); |
| 704 | } |
| 705 | |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 706 | if (unmap) |
| 707 | iounmap(virt_addr); |
Rafael J. Wysocki | 884b821 | 2011-02-08 23:37:16 +0100 | [diff] [blame] | 708 | else |
| 709 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | |
| 711 | return AE_OK; |
| 712 | } |
| 713 | |
| 714 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 715 | acpi_os_write_memory(acpi_physical_address phys_addr, u32 value, u32 width) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 717 | void __iomem *virt_addr; |
Rafael J. Wysocki | 884b821 | 2011-02-08 23:37:16 +0100 | [diff] [blame] | 718 | unsigned int size = width / 8; |
| 719 | bool unmap = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | |
Myron Stowe | 78cdb3e | 2010-10-21 14:24:09 -0600 | [diff] [blame] | 721 | rcu_read_lock(); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 722 | virt_addr = acpi_map_vaddr_lookup(phys_addr, size); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 723 | if (!virt_addr) { |
Rafael J. Wysocki | 884b821 | 2011-02-08 23:37:16 +0100 | [diff] [blame] | 724 | rcu_read_unlock(); |
Rafael J. Wysocki | 2d6d9fd | 2011-01-19 22:27:14 +0100 | [diff] [blame] | 725 | virt_addr = acpi_os_ioremap(phys_addr, size); |
Rafael J. Wysocki | 884b821 | 2011-02-08 23:37:16 +0100 | [diff] [blame] | 726 | if (!virt_addr) |
| 727 | return AE_BAD_ADDRESS; |
| 728 | unmap = true; |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 729 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | |
| 731 | switch (width) { |
| 732 | case 8: |
| 733 | writeb(value, virt_addr); |
| 734 | break; |
| 735 | case 16: |
| 736 | writew(value, virt_addr); |
| 737 | break; |
| 738 | case 32: |
| 739 | writel(value, virt_addr); |
| 740 | break; |
| 741 | default: |
| 742 | BUG(); |
| 743 | } |
| 744 | |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 745 | if (unmap) |
| 746 | iounmap(virt_addr); |
Rafael J. Wysocki | 884b821 | 2011-02-08 23:37:16 +0100 | [diff] [blame] | 747 | else |
| 748 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | |
| 750 | return AE_OK; |
| 751 | } |
| 752 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 754 | acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg, |
Bob Moore | c5f0231 | 2010-08-06 08:57:53 +0800 | [diff] [blame] | 755 | u64 *value, u32 width) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | { |
| 757 | int result, size; |
Bob Moore | c5f0231 | 2010-08-06 08:57:53 +0800 | [diff] [blame] | 758 | u32 value32; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | |
| 760 | if (!value) |
| 761 | return AE_BAD_PARAMETER; |
| 762 | |
| 763 | switch (width) { |
| 764 | case 8: |
| 765 | size = 1; |
| 766 | break; |
| 767 | case 16: |
| 768 | size = 2; |
| 769 | break; |
| 770 | case 32: |
| 771 | size = 4; |
| 772 | break; |
| 773 | default: |
| 774 | return AE_ERROR; |
| 775 | } |
| 776 | |
Matthew Wilcox | b6ce068 | 2008-02-10 09:45:28 -0500 | [diff] [blame] | 777 | result = raw_pci_read(pci_id->segment, pci_id->bus, |
| 778 | PCI_DEVFN(pci_id->device, pci_id->function), |
Bob Moore | c5f0231 | 2010-08-06 08:57:53 +0800 | [diff] [blame] | 779 | reg, size, &value32); |
| 780 | *value = value32; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | |
| 782 | return (result ? AE_ERROR : AE_OK); |
| 783 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 784 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 786 | acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg, |
Lin Ming | 439913f | 2010-01-28 10:53:19 +0800 | [diff] [blame] | 787 | u64 value, u32 width) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | { |
| 789 | int result, size; |
| 790 | |
| 791 | switch (width) { |
| 792 | case 8: |
| 793 | size = 1; |
| 794 | break; |
| 795 | case 16: |
| 796 | size = 2; |
| 797 | break; |
| 798 | case 32: |
| 799 | size = 4; |
| 800 | break; |
| 801 | default: |
| 802 | return AE_ERROR; |
| 803 | } |
| 804 | |
Matthew Wilcox | b6ce068 | 2008-02-10 09:45:28 -0500 | [diff] [blame] | 805 | result = raw_pci_write(pci_id->segment, pci_id->bus, |
| 806 | PCI_DEVFN(pci_id->device, pci_id->function), |
| 807 | reg, size, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | |
| 809 | return (result ? AE_ERROR : AE_OK); |
| 810 | } |
| 811 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 812 | static void acpi_os_execute_deferred(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 814 | struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work); |
Alexey Starikovskiy | 88db5e1 | 2007-05-09 23:31:03 -0400 | [diff] [blame] | 815 | |
Bjorn Helgaas | 9ac6185 | 2009-08-31 22:32:10 +0000 | [diff] [blame] | 816 | if (dpc->wait) |
| 817 | acpi_os_wait_events_complete(NULL); |
Zhang Rui | 19cd847 | 2008-08-28 10:05:06 +0800 | [diff] [blame] | 818 | |
| 819 | dpc->function(dpc->context); |
| 820 | kfree(dpc); |
Zhang Rui | 19cd847 | 2008-08-28 10:05:06 +0800 | [diff] [blame] | 821 | } |
| 822 | |
Alexey Starikovskiy | b8d3519 | 2006-05-05 03:23:00 -0400 | [diff] [blame] | 823 | /******************************************************************************* |
| 824 | * |
| 825 | * FUNCTION: acpi_os_execute |
| 826 | * |
| 827 | * PARAMETERS: Type - Type of the callback |
| 828 | * Function - Function to be executed |
| 829 | * Context - Function parameters |
| 830 | * |
| 831 | * RETURN: Status |
| 832 | * |
| 833 | * DESCRIPTION: Depending on type, either queues function for deferred execution or |
| 834 | * immediately executes function on a separate thread. |
| 835 | * |
| 836 | ******************************************************************************/ |
| 837 | |
Zhang Rui | 19cd847 | 2008-08-28 10:05:06 +0800 | [diff] [blame] | 838 | static acpi_status __acpi_os_execute(acpi_execute_type type, |
| 839 | acpi_osd_exec_callback function, void *context, int hp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 841 | acpi_status status = AE_OK; |
| 842 | struct acpi_os_dpc *dpc; |
Alexey Starikovskiy | 17bc54e | 2007-11-13 13:05:45 +0300 | [diff] [blame] | 843 | struct workqueue_struct *queue; |
Zhang Rui | 19cd847 | 2008-08-28 10:05:06 +0800 | [diff] [blame] | 844 | int ret; |
Len Brown | 72945b2 | 2006-07-12 22:46:42 -0400 | [diff] [blame] | 845 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, |
| 846 | "Scheduling function [%p(%p)] for deferred execution.\n", |
| 847 | function, context)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | /* |
| 850 | * Allocate/initialize DPC structure. Note that this memory will be |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 851 | * freed by the callee. The kernel handles the work_struct list in a |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | * way that allows us to also free its memory inside the callee. |
| 853 | * Because we may want to schedule several tasks with different |
| 854 | * parameters we can't use the approach some kernel code uses of |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 855 | * having a static work_struct. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | */ |
Len Brown | 72945b2 | 2006-07-12 22:46:42 -0400 | [diff] [blame] | 857 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 858 | dpc = kmalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | if (!dpc) |
Lin Ming | 889c78b | 2008-12-31 09:23:57 +0800 | [diff] [blame] | 860 | return AE_NO_MEMORY; |
Linus Torvalds | b976fe1 | 2006-11-17 19:31:09 -0800 | [diff] [blame] | 861 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | dpc->function = function; |
| 863 | dpc->context = context; |
Linus Torvalds | b976fe1 | 2006-11-17 19:31:09 -0800 | [diff] [blame] | 864 | |
Zhang Rui | c02256b | 2009-06-23 10:20:29 +0800 | [diff] [blame] | 865 | /* |
| 866 | * We can't run hotplug code in keventd_wq/kacpid_wq/kacpid_notify_wq |
| 867 | * because the hotplug code may call driver .remove() functions, |
| 868 | * which invoke flush_scheduled_work/acpi_os_wait_events_complete |
| 869 | * to flush these workqueues. |
| 870 | */ |
| 871 | queue = hp ? kacpi_hotplug_wq : |
| 872 | (type == OSL_NOTIFY_HANDLER ? kacpi_notify_wq : kacpid_wq); |
Bjorn Helgaas | 9ac6185 | 2009-08-31 22:32:10 +0000 | [diff] [blame] | 873 | dpc->wait = hp ? 1 : 0; |
Zhang Rui | bc73675 | 2010-03-22 15:48:54 +0800 | [diff] [blame] | 874 | |
| 875 | if (queue == kacpi_hotplug_wq) |
| 876 | INIT_WORK(&dpc->work, acpi_os_execute_deferred); |
| 877 | else if (queue == kacpi_notify_wq) |
| 878 | INIT_WORK(&dpc->work, acpi_os_execute_deferred); |
| 879 | else |
| 880 | INIT_WORK(&dpc->work, acpi_os_execute_deferred); |
| 881 | |
Tejun Heo | 8fec62b | 2010-06-29 10:07:09 +0200 | [diff] [blame] | 882 | /* |
| 883 | * On some machines, a software-initiated SMI causes corruption unless |
| 884 | * the SMI runs on CPU 0. An SMI can be initiated by any AML, but |
| 885 | * typically it's done in GPE-related methods that are run via |
| 886 | * workqueues, so we can avoid the known corruption cases by always |
| 887 | * queueing on CPU 0. |
| 888 | */ |
| 889 | ret = queue_work_on(0, queue, &dpc->work); |
Zhang Rui | 19cd847 | 2008-08-28 10:05:06 +0800 | [diff] [blame] | 890 | |
| 891 | if (!ret) { |
Lin Ming | 55ac9a0 | 2008-09-28 14:51:56 +0800 | [diff] [blame] | 892 | printk(KERN_ERR PREFIX |
| 893 | "Call to queue_work() failed.\n"); |
Alexey Starikovskiy | 17bc54e | 2007-11-13 13:05:45 +0300 | [diff] [blame] | 894 | status = AE_ERROR; |
| 895 | kfree(dpc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | } |
Lin Ming | 889c78b | 2008-12-31 09:23:57 +0800 | [diff] [blame] | 897 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 899 | |
Zhang Rui | 19cd847 | 2008-08-28 10:05:06 +0800 | [diff] [blame] | 900 | acpi_status acpi_os_execute(acpi_execute_type type, |
| 901 | acpi_osd_exec_callback function, void *context) |
| 902 | { |
| 903 | return __acpi_os_execute(type, function, context, 0); |
| 904 | } |
Alexey Starikovskiy | b8d3519 | 2006-05-05 03:23:00 -0400 | [diff] [blame] | 905 | EXPORT_SYMBOL(acpi_os_execute); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | |
Zhang Rui | 19cd847 | 2008-08-28 10:05:06 +0800 | [diff] [blame] | 907 | acpi_status acpi_os_hotplug_execute(acpi_osd_exec_callback function, |
| 908 | void *context) |
| 909 | { |
| 910 | return __acpi_os_execute(0, function, context, 1); |
| 911 | } |
| 912 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 913 | void acpi_os_wait_events_complete(void *context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | { |
| 915 | flush_workqueue(kacpid_wq); |
Zhang Rui | 2f67a06 | 2008-04-29 02:34:42 -0400 | [diff] [blame] | 916 | flush_workqueue(kacpi_notify_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 918 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | EXPORT_SYMBOL(acpi_os_wait_events_complete); |
| 920 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 922 | acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 924 | struct semaphore *sem = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | sem = acpi_os_allocate(sizeof(struct semaphore)); |
| 927 | if (!sem) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 928 | return AE_NO_MEMORY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | memset(sem, 0, sizeof(struct semaphore)); |
| 930 | |
| 931 | sema_init(sem, initial_units); |
| 932 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 933 | *handle = (acpi_handle *) sem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 935 | ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n", |
| 936 | *handle, initial_units)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 938 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | /* |
| 942 | * TODO: A better way to delete semaphores? Linux doesn't have a |
| 943 | * 'delete_semaphore()' function -- may result in an invalid |
| 944 | * pointer dereference for non-synchronized consumers. Should |
| 945 | * we at least check for blocked threads and signal/cancel them? |
| 946 | */ |
| 947 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 948 | acpi_status acpi_os_delete_semaphore(acpi_handle handle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 950 | struct semaphore *sem = (struct semaphore *)handle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | if (!sem) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 953 | return AE_BAD_PARAMETER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 955 | ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | |
Matthew Wilcox | f1241c8 | 2008-03-14 13:43:13 -0400 | [diff] [blame] | 957 | BUG_ON(!list_empty(&sem->wait_list)); |
Len Brown | 02438d8 | 2006-06-30 03:19:10 -0400 | [diff] [blame] | 958 | kfree(sem); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 959 | sem = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 961 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | * TODO: Support for units > 1? |
| 966 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 967 | acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 969 | acpi_status status = AE_OK; |
| 970 | struct semaphore *sem = (struct semaphore *)handle; |
Matthew Wilcox | f1241c8 | 2008-03-14 13:43:13 -0400 | [diff] [blame] | 971 | long jiffies; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 972 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | if (!sem || (units < 1)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 975 | return AE_BAD_PARAMETER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | |
| 977 | if (units > 1) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 978 | return AE_SUPPORT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 980 | ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n", |
| 981 | handle, units, timeout)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | |
Matthew Wilcox | f1241c8 | 2008-03-14 13:43:13 -0400 | [diff] [blame] | 983 | if (timeout == ACPI_WAIT_FOREVER) |
| 984 | jiffies = MAX_SCHEDULE_TIMEOUT; |
| 985 | else |
| 986 | jiffies = msecs_to_jiffies(timeout); |
| 987 | |
| 988 | ret = down_timeout(sem, jiffies); |
| 989 | if (ret) |
| 990 | status = AE_TIME; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | |
| 992 | if (ACPI_FAILURE(status)) { |
Bjorn Helgaas | 9e7e2c0 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 993 | ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 994 | "Failed to acquire semaphore[%p|%d|%d], %s", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 995 | handle, units, timeout, |
| 996 | acpi_format_exception(status))); |
| 997 | } else { |
| 998 | ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 999 | "Acquired semaphore[%p|%d|%d]", handle, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1000 | units, timeout)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | } |
| 1002 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1003 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | /* |
| 1007 | * TODO: Support for units > 1? |
| 1008 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1009 | acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1011 | struct semaphore *sem = (struct semaphore *)handle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | if (!sem || (units < 1)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1014 | return AE_BAD_PARAMETER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | |
| 1016 | if (units > 1) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1017 | return AE_SUPPORT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1019 | ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle, |
| 1020 | units)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | |
| 1022 | up(sem); |
| 1023 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1024 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1026 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | #ifdef ACPI_FUTURE_USAGE |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1028 | u32 acpi_os_get_line(char *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | { |
| 1030 | |
| 1031 | #ifdef ENABLE_DEBUGGER |
| 1032 | if (acpi_in_debugger) { |
| 1033 | u32 chars; |
| 1034 | |
| 1035 | kdb_read(buffer, sizeof(line_buf)); |
| 1036 | |
| 1037 | /* remove the CR kdb includes */ |
| 1038 | chars = strlen(buffer) - 1; |
| 1039 | buffer[chars] = '\0'; |
| 1040 | } |
| 1041 | #endif |
| 1042 | |
| 1043 | return 0; |
| 1044 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1045 | #endif /* ACPI_FUTURE_USAGE */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1047 | acpi_status acpi_os_signal(u32 function, void *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1049 | switch (function) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | case ACPI_SIGNAL_FATAL: |
| 1051 | printk(KERN_ERR PREFIX "Fatal opcode executed\n"); |
| 1052 | break; |
| 1053 | case ACPI_SIGNAL_BREAKPOINT: |
| 1054 | /* |
| 1055 | * AML Breakpoint |
| 1056 | * ACPI spec. says to treat it as a NOP unless |
| 1057 | * you are debugging. So if/when we integrate |
| 1058 | * AML debugger into the kernel debugger its |
| 1059 | * hook will go here. But until then it is |
| 1060 | * not useful to print anything on breakpoints. |
| 1061 | */ |
| 1062 | break; |
| 1063 | default: |
| 1064 | break; |
| 1065 | } |
| 1066 | |
| 1067 | return AE_OK; |
| 1068 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1069 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1070 | static int __init acpi_os_name_setup(char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | { |
| 1072 | char *p = acpi_os_name; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1073 | int count = ACPI_MAX_OVERRIDE_LEN - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | |
| 1075 | if (!str || !*str) |
| 1076 | return 0; |
| 1077 | |
| 1078 | for (; count-- && str && *str; str++) { |
| 1079 | if (isalnum(*str) || *str == ' ' || *str == ':') |
| 1080 | *p++ = *str; |
| 1081 | else if (*str == '\'' || *str == '"') |
| 1082 | continue; |
| 1083 | else |
| 1084 | break; |
| 1085 | } |
| 1086 | *p = 0; |
| 1087 | |
| 1088 | return 1; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1089 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | } |
| 1091 | |
| 1092 | __setup("acpi_os_name=", acpi_os_name_setup); |
| 1093 | |
Lin Ming | 12d3206 | 2010-12-09 16:51:06 +0800 | [diff] [blame] | 1094 | #define OSI_STRING_LENGTH_MAX 64 /* arbitrary */ |
| 1095 | #define OSI_STRING_ENTRIES_MAX 16 /* arbitrary */ |
| 1096 | |
| 1097 | struct osi_setup_entry { |
| 1098 | char string[OSI_STRING_LENGTH_MAX]; |
| 1099 | bool enable; |
| 1100 | }; |
| 1101 | |
Shaohua Li | aa16597 | 2011-07-28 13:48:43 -0700 | [diff] [blame] | 1102 | static struct osi_setup_entry __initdata |
| 1103 | osi_setup_entries[OSI_STRING_ENTRIES_MAX] = { |
| 1104 | {"Module Device", true}, |
| 1105 | {"Processor Device", true}, |
| 1106 | {"3.0 _SCP Extensions", true}, |
| 1107 | {"Processor Aggregator Device", true}, |
| 1108 | }; |
Lin Ming | 12d3206 | 2010-12-09 16:51:06 +0800 | [diff] [blame] | 1109 | |
Lin Ming | d90aa92 | 2010-12-09 16:50:52 +0800 | [diff] [blame] | 1110 | void __init acpi_osi_setup(char *str) |
| 1111 | { |
Lin Ming | 12d3206 | 2010-12-09 16:51:06 +0800 | [diff] [blame] | 1112 | struct osi_setup_entry *osi; |
| 1113 | bool enable = true; |
| 1114 | int i; |
| 1115 | |
Lin Ming | d90aa92 | 2010-12-09 16:50:52 +0800 | [diff] [blame] | 1116 | if (!acpi_gbl_create_osi_method) |
| 1117 | return; |
| 1118 | |
| 1119 | if (str == NULL || *str == '\0') { |
| 1120 | printk(KERN_INFO PREFIX "_OSI method disabled\n"); |
| 1121 | acpi_gbl_create_osi_method = FALSE; |
Lin Ming | 12d3206 | 2010-12-09 16:51:06 +0800 | [diff] [blame] | 1122 | return; |
| 1123 | } |
| 1124 | |
| 1125 | if (*str == '!') { |
| 1126 | str++; |
| 1127 | enable = false; |
| 1128 | } |
| 1129 | |
| 1130 | for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) { |
| 1131 | osi = &osi_setup_entries[i]; |
| 1132 | if (!strcmp(osi->string, str)) { |
| 1133 | osi->enable = enable; |
| 1134 | break; |
| 1135 | } else if (osi->string[0] == '\0') { |
| 1136 | osi->enable = enable; |
| 1137 | strncpy(osi->string, str, OSI_STRING_LENGTH_MAX); |
| 1138 | break; |
| 1139 | } |
| 1140 | } |
Lin Ming | d90aa92 | 2010-12-09 16:50:52 +0800 | [diff] [blame] | 1141 | } |
| 1142 | |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 1143 | static void __init set_osi_linux(unsigned int enable) |
| 1144 | { |
Lin Ming | d90aa92 | 2010-12-09 16:50:52 +0800 | [diff] [blame] | 1145 | if (osi_linux.enable != enable) |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 1146 | osi_linux.enable = enable; |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 1147 | |
| 1148 | if (osi_linux.enable) |
| 1149 | acpi_osi_setup("Linux"); |
| 1150 | else |
| 1151 | acpi_osi_setup("!Linux"); |
| 1152 | |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 1153 | return; |
| 1154 | } |
Len Brown | f507654 | 2007-05-30 00:10:38 -0400 | [diff] [blame] | 1155 | |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 1156 | static void __init acpi_cmdline_osi_linux(unsigned int enable) |
| 1157 | { |
Lin Ming | d90aa92 | 2010-12-09 16:50:52 +0800 | [diff] [blame] | 1158 | osi_linux.cmdline = 1; /* cmdline set the default and override DMI */ |
| 1159 | osi_linux.dmi = 0; |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 1160 | set_osi_linux(enable); |
Len Brown | f507654 | 2007-05-30 00:10:38 -0400 | [diff] [blame] | 1161 | |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 1162 | return; |
| 1163 | } |
| 1164 | |
| 1165 | void __init acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d) |
| 1166 | { |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 1167 | printk(KERN_NOTICE PREFIX "DMI detected: %s\n", d->ident); |
| 1168 | |
| 1169 | if (enable == -1) |
| 1170 | return; |
| 1171 | |
Lin Ming | d90aa92 | 2010-12-09 16:50:52 +0800 | [diff] [blame] | 1172 | osi_linux.dmi = 1; /* DMI knows that this box asks OSI(Linux) */ |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 1173 | set_osi_linux(enable); |
| 1174 | |
Len Brown | f507654 | 2007-05-30 00:10:38 -0400 | [diff] [blame] | 1175 | return; |
| 1176 | } |
| 1177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | /* |
Len Brown | ae00d81 | 2007-05-29 18:43:33 -0400 | [diff] [blame] | 1179 | * Modify the list of "OS Interfaces" reported to BIOS via _OSI |
| 1180 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | * empty string disables _OSI |
Len Brown | ae00d81 | 2007-05-29 18:43:33 -0400 | [diff] [blame] | 1182 | * string starting with '!' disables that string |
| 1183 | * otherwise string is added to list, augmenting built-in strings |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | */ |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 1185 | static void __init acpi_osi_setup_late(void) |
| 1186 | { |
Lin Ming | 12d3206 | 2010-12-09 16:51:06 +0800 | [diff] [blame] | 1187 | struct osi_setup_entry *osi; |
| 1188 | char *str; |
| 1189 | int i; |
Lin Ming | d90aa92 | 2010-12-09 16:50:52 +0800 | [diff] [blame] | 1190 | acpi_status status; |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 1191 | |
Lin Ming | 12d3206 | 2010-12-09 16:51:06 +0800 | [diff] [blame] | 1192 | for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) { |
| 1193 | osi = &osi_setup_entries[i]; |
| 1194 | str = osi->string; |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 1195 | |
Lin Ming | 12d3206 | 2010-12-09 16:51:06 +0800 | [diff] [blame] | 1196 | if (*str == '\0') |
| 1197 | break; |
| 1198 | if (osi->enable) { |
| 1199 | status = acpi_install_interface(str); |
Lin Ming | d90aa92 | 2010-12-09 16:50:52 +0800 | [diff] [blame] | 1200 | |
Lin Ming | 12d3206 | 2010-12-09 16:51:06 +0800 | [diff] [blame] | 1201 | if (ACPI_SUCCESS(status)) |
| 1202 | printk(KERN_INFO PREFIX "Added _OSI(%s)\n", str); |
| 1203 | } else { |
| 1204 | status = acpi_remove_interface(str); |
Lin Ming | d90aa92 | 2010-12-09 16:50:52 +0800 | [diff] [blame] | 1205 | |
Lin Ming | 12d3206 | 2010-12-09 16:51:06 +0800 | [diff] [blame] | 1206 | if (ACPI_SUCCESS(status)) |
| 1207 | printk(KERN_INFO PREFIX "Deleted _OSI(%s)\n", str); |
| 1208 | } |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 1209 | } |
| 1210 | } |
| 1211 | |
Lin Ming | d90aa92 | 2010-12-09 16:50:52 +0800 | [diff] [blame] | 1212 | static int __init osi_setup(char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | { |
Lin Ming | d90aa92 | 2010-12-09 16:50:52 +0800 | [diff] [blame] | 1214 | if (str && !strcmp("Linux", str)) |
| 1215 | acpi_cmdline_osi_linux(1); |
| 1216 | else if (str && !strcmp("!Linux", str)) |
| 1217 | acpi_cmdline_osi_linux(0); |
| 1218 | else |
| 1219 | acpi_osi_setup(str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | |
| 1221 | return 1; |
| 1222 | } |
| 1223 | |
Lin Ming | d90aa92 | 2010-12-09 16:50:52 +0800 | [diff] [blame] | 1224 | __setup("acpi_osi=", osi_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | |
| 1226 | /* enable serialization to combat AE_ALREADY_EXISTS errors */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1227 | static int __init acpi_serialize_setup(char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | { |
| 1229 | printk(KERN_INFO PREFIX "serialize enabled\n"); |
| 1230 | |
| 1231 | acpi_gbl_all_methods_serialized = TRUE; |
| 1232 | |
| 1233 | return 1; |
| 1234 | } |
| 1235 | |
| 1236 | __setup("acpi_serialize", acpi_serialize_setup); |
| 1237 | |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1238 | /* Check of resource interference between native drivers and ACPI |
| 1239 | * OperationRegions (SystemIO and System Memory only). |
| 1240 | * IO ports and memory declared in ACPI might be used by the ACPI subsystem |
| 1241 | * in arbitrary AML code and can interfere with legacy drivers. |
| 1242 | * acpi_enforce_resources= can be set to: |
| 1243 | * |
Luca Tettamanti | 7e90560 | 2009-03-30 00:01:27 +0200 | [diff] [blame] | 1244 | * - strict (default) (2) |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1245 | * -> further driver trying to access the resources will not load |
Luca Tettamanti | 7e90560 | 2009-03-30 00:01:27 +0200 | [diff] [blame] | 1246 | * - lax (1) |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1247 | * -> further driver trying to access the resources will load, but you |
| 1248 | * get a system message that something might go wrong... |
| 1249 | * |
| 1250 | * - no (0) |
| 1251 | * -> ACPI Operation Region resources will not be registered |
| 1252 | * |
| 1253 | */ |
| 1254 | #define ENFORCE_RESOURCES_STRICT 2 |
| 1255 | #define ENFORCE_RESOURCES_LAX 1 |
| 1256 | #define ENFORCE_RESOURCES_NO 0 |
| 1257 | |
Luca Tettamanti | 7e90560 | 2009-03-30 00:01:27 +0200 | [diff] [blame] | 1258 | static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT; |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1259 | |
| 1260 | static int __init acpi_enforce_resources_setup(char *str) |
| 1261 | { |
| 1262 | if (str == NULL || *str == '\0') |
| 1263 | return 0; |
| 1264 | |
| 1265 | if (!strcmp("strict", str)) |
| 1266 | acpi_enforce_resources = ENFORCE_RESOURCES_STRICT; |
| 1267 | else if (!strcmp("lax", str)) |
| 1268 | acpi_enforce_resources = ENFORCE_RESOURCES_LAX; |
| 1269 | else if (!strcmp("no", str)) |
| 1270 | acpi_enforce_resources = ENFORCE_RESOURCES_NO; |
| 1271 | |
| 1272 | return 1; |
| 1273 | } |
| 1274 | |
| 1275 | __setup("acpi_enforce_resources=", acpi_enforce_resources_setup); |
| 1276 | |
| 1277 | /* Check for resource conflicts between ACPI OperationRegions and native |
| 1278 | * drivers */ |
Jean Delvare | 876fba4 | 2009-11-11 15:22:15 +0100 | [diff] [blame] | 1279 | int acpi_check_resource_conflict(const struct resource *res) |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1280 | { |
| 1281 | struct acpi_res_list *res_list_elem; |
Thomas Renninger | 106d1a0 | 2010-12-20 12:11:45 +0100 | [diff] [blame] | 1282 | int ioport = 0, clash = 0; |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1283 | |
| 1284 | if (acpi_enforce_resources == ENFORCE_RESOURCES_NO) |
| 1285 | return 0; |
| 1286 | if (!(res->flags & IORESOURCE_IO) && !(res->flags & IORESOURCE_MEM)) |
| 1287 | return 0; |
| 1288 | |
| 1289 | ioport = res->flags & IORESOURCE_IO; |
| 1290 | |
| 1291 | spin_lock(&acpi_res_lock); |
| 1292 | list_for_each_entry(res_list_elem, &resource_list_head, |
| 1293 | resource_list) { |
| 1294 | if (ioport && (res_list_elem->resource_type |
| 1295 | != ACPI_ADR_SPACE_SYSTEM_IO)) |
| 1296 | continue; |
| 1297 | if (!ioport && (res_list_elem->resource_type |
| 1298 | != ACPI_ADR_SPACE_SYSTEM_MEMORY)) |
| 1299 | continue; |
| 1300 | |
| 1301 | if (res->end < res_list_elem->start |
| 1302 | || res_list_elem->end < res->start) |
| 1303 | continue; |
| 1304 | clash = 1; |
| 1305 | break; |
| 1306 | } |
| 1307 | spin_unlock(&acpi_res_lock); |
| 1308 | |
| 1309 | if (clash) { |
| 1310 | if (acpi_enforce_resources != ENFORCE_RESOURCES_NO) { |
Chase Douglas | 1638bca | 2010-03-22 15:08:09 -0400 | [diff] [blame] | 1311 | printk(KERN_WARNING "ACPI: resource %s %pR" |
Thomas Renninger | 106d1a0 | 2010-12-20 12:11:45 +0100 | [diff] [blame] | 1312 | " conflicts with ACPI region %s " |
| 1313 | "[%s 0x%zx-0x%zx]\n", |
Chase Douglas | 1638bca | 2010-03-22 15:08:09 -0400 | [diff] [blame] | 1314 | res->name, res, res_list_elem->name, |
Thomas Renninger | 106d1a0 | 2010-12-20 12:11:45 +0100 | [diff] [blame] | 1315 | (res_list_elem->resource_type == |
| 1316 | ACPI_ADR_SPACE_SYSTEM_IO) ? "io" : "mem", |
| 1317 | (size_t) res_list_elem->start, |
| 1318 | (size_t) res_list_elem->end); |
Jean Delvare | 14f0334 | 2009-09-08 15:31:46 +0200 | [diff] [blame] | 1319 | if (acpi_enforce_resources == ENFORCE_RESOURCES_LAX) |
| 1320 | printk(KERN_NOTICE "ACPI: This conflict may" |
| 1321 | " cause random problems and system" |
| 1322 | " instability\n"); |
| 1323 | printk(KERN_INFO "ACPI: If an ACPI driver is available" |
| 1324 | " for this device, you should use it instead of" |
| 1325 | " the native driver\n"); |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1326 | } |
| 1327 | if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT) |
| 1328 | return -EBUSY; |
| 1329 | } |
| 1330 | return 0; |
| 1331 | } |
Thomas Renninger | 443dea7 | 2008-02-04 23:31:23 -0800 | [diff] [blame] | 1332 | EXPORT_SYMBOL(acpi_check_resource_conflict); |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1333 | |
| 1334 | int acpi_check_region(resource_size_t start, resource_size_t n, |
| 1335 | const char *name) |
| 1336 | { |
| 1337 | struct resource res = { |
| 1338 | .start = start, |
| 1339 | .end = start + n - 1, |
| 1340 | .name = name, |
| 1341 | .flags = IORESOURCE_IO, |
| 1342 | }; |
| 1343 | |
| 1344 | return acpi_check_resource_conflict(&res); |
| 1345 | } |
| 1346 | EXPORT_SYMBOL(acpi_check_region); |
| 1347 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | /* |
Jean Delvare | 70dd6be | 2010-05-27 19:58:37 +0200 | [diff] [blame] | 1349 | * Let drivers know whether the resource checks are effective |
| 1350 | */ |
| 1351 | int acpi_resources_are_enforced(void) |
| 1352 | { |
| 1353 | return acpi_enforce_resources == ENFORCE_RESOURCES_STRICT; |
| 1354 | } |
| 1355 | EXPORT_SYMBOL(acpi_resources_are_enforced); |
| 1356 | |
| 1357 | /* |
Lin Ming | 9f63b88 | 2011-03-23 17:26:34 +0800 | [diff] [blame] | 1358 | * Deallocate the memory for a spinlock. |
| 1359 | */ |
| 1360 | void acpi_os_delete_lock(acpi_spinlock handle) |
| 1361 | { |
| 1362 | ACPI_FREE(handle); |
| 1363 | } |
| 1364 | |
| 1365 | /* |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1366 | * Acquire a spinlock. |
| 1367 | * |
| 1368 | * handle is a pointer to the spinlock_t. |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1369 | */ |
| 1370 | |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 1371 | acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp) |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1372 | { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 1373 | acpi_cpu_flags flags; |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 1374 | spin_lock_irqsave(lockp, flags); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1375 | return flags; |
| 1376 | } |
| 1377 | |
| 1378 | /* |
| 1379 | * Release a spinlock. See above. |
| 1380 | */ |
| 1381 | |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 1382 | void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags) |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1383 | { |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 1384 | spin_unlock_irqrestore(lockp, flags); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1385 | } |
| 1386 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1387 | #ifndef ACPI_USE_LOCAL_CACHE |
| 1388 | |
| 1389 | /******************************************************************************* |
| 1390 | * |
| 1391 | * FUNCTION: acpi_os_create_cache |
| 1392 | * |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 1393 | * PARAMETERS: name - Ascii name for the cache |
| 1394 | * size - Size of each cached object |
| 1395 | * depth - Maximum depth of the cache (in objects) <ignored> |
| 1396 | * cache - Where the new cache object is returned |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1397 | * |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 1398 | * RETURN: status |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1399 | * |
| 1400 | * DESCRIPTION: Create a cache object |
| 1401 | * |
| 1402 | ******************************************************************************/ |
| 1403 | |
| 1404 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1405 | acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache) |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1406 | { |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1407 | *cache = kmem_cache_create(name, size, 0, 0, NULL); |
Adrian Bunk | a6fdbf9 | 2006-12-19 12:56:13 -0800 | [diff] [blame] | 1408 | if (*cache == NULL) |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 1409 | return AE_ERROR; |
| 1410 | else |
| 1411 | return AE_OK; |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1412 | } |
| 1413 | |
| 1414 | /******************************************************************************* |
| 1415 | * |
| 1416 | * FUNCTION: acpi_os_purge_cache |
| 1417 | * |
| 1418 | * PARAMETERS: Cache - Handle to cache object |
| 1419 | * |
| 1420 | * RETURN: Status |
| 1421 | * |
| 1422 | * DESCRIPTION: Free all objects within the requested cache. |
| 1423 | * |
| 1424 | ******************************************************************************/ |
| 1425 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1426 | acpi_status acpi_os_purge_cache(acpi_cache_t * cache) |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1427 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1428 | kmem_cache_shrink(cache); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1429 | return (AE_OK); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1430 | } |
| 1431 | |
| 1432 | /******************************************************************************* |
| 1433 | * |
| 1434 | * FUNCTION: acpi_os_delete_cache |
| 1435 | * |
| 1436 | * PARAMETERS: Cache - Handle to cache object |
| 1437 | * |
| 1438 | * RETURN: Status |
| 1439 | * |
| 1440 | * DESCRIPTION: Free all objects within the requested cache and delete the |
| 1441 | * cache object. |
| 1442 | * |
| 1443 | ******************************************************************************/ |
| 1444 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1445 | acpi_status acpi_os_delete_cache(acpi_cache_t * cache) |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1446 | { |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 1447 | kmem_cache_destroy(cache); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1448 | return (AE_OK); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1449 | } |
| 1450 | |
| 1451 | /******************************************************************************* |
| 1452 | * |
| 1453 | * FUNCTION: acpi_os_release_object |
| 1454 | * |
| 1455 | * PARAMETERS: Cache - Handle to cache object |
| 1456 | * Object - The object to be released |
| 1457 | * |
| 1458 | * RETURN: None |
| 1459 | * |
| 1460 | * DESCRIPTION: Release an object to the specified cache. If cache is full, |
| 1461 | * the object is deleted. |
| 1462 | * |
| 1463 | ******************************************************************************/ |
| 1464 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1465 | acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object) |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1466 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1467 | kmem_cache_free(cache, object); |
| 1468 | return (AE_OK); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1469 | } |
| 1470 | |
Lin Ming | a5fe1a0 | 2009-08-13 10:43:27 +0800 | [diff] [blame] | 1471 | static inline int acpi_res_list_add(struct acpi_res_list *res) |
| 1472 | { |
| 1473 | struct acpi_res_list *res_list_elem; |
| 1474 | |
| 1475 | list_for_each_entry(res_list_elem, &resource_list_head, |
| 1476 | resource_list) { |
| 1477 | |
| 1478 | if (res->resource_type == res_list_elem->resource_type && |
| 1479 | res->start == res_list_elem->start && |
| 1480 | res->end == res_list_elem->end) { |
| 1481 | |
| 1482 | /* |
| 1483 | * The Region(addr,len) already exist in the list, |
| 1484 | * just increase the count |
| 1485 | */ |
| 1486 | |
| 1487 | res_list_elem->count++; |
| 1488 | return 0; |
| 1489 | } |
| 1490 | } |
| 1491 | |
| 1492 | res->count = 1; |
| 1493 | list_add(&res->resource_list, &resource_list_head); |
| 1494 | return 1; |
| 1495 | } |
| 1496 | |
| 1497 | static inline void acpi_res_list_del(struct acpi_res_list *res) |
| 1498 | { |
| 1499 | struct acpi_res_list *res_list_elem; |
| 1500 | |
| 1501 | list_for_each_entry(res_list_elem, &resource_list_head, |
| 1502 | resource_list) { |
| 1503 | |
| 1504 | if (res->resource_type == res_list_elem->resource_type && |
| 1505 | res->start == res_list_elem->start && |
| 1506 | res->end == res_list_elem->end) { |
| 1507 | |
| 1508 | /* |
| 1509 | * If the res count is decreased to 0, |
| 1510 | * remove and free it |
| 1511 | */ |
| 1512 | |
| 1513 | if (--res_list_elem->count == 0) { |
| 1514 | list_del(&res_list_elem->resource_list); |
| 1515 | kfree(res_list_elem); |
| 1516 | } |
| 1517 | return; |
| 1518 | } |
| 1519 | } |
| 1520 | } |
| 1521 | |
| 1522 | acpi_status |
| 1523 | acpi_os_invalidate_address( |
| 1524 | u8 space_id, |
| 1525 | acpi_physical_address address, |
| 1526 | acpi_size length) |
| 1527 | { |
| 1528 | struct acpi_res_list res; |
| 1529 | |
| 1530 | switch (space_id) { |
| 1531 | case ACPI_ADR_SPACE_SYSTEM_IO: |
| 1532 | case ACPI_ADR_SPACE_SYSTEM_MEMORY: |
Thomas Weber | 8839316 | 2010-03-16 11:47:56 +0100 | [diff] [blame] | 1533 | /* Only interference checks against SystemIO and SystemMemory |
Lin Ming | a5fe1a0 | 2009-08-13 10:43:27 +0800 | [diff] [blame] | 1534 | are needed */ |
| 1535 | res.start = address; |
| 1536 | res.end = address + length - 1; |
| 1537 | res.resource_type = space_id; |
| 1538 | spin_lock(&acpi_res_lock); |
| 1539 | acpi_res_list_del(&res); |
| 1540 | spin_unlock(&acpi_res_lock); |
| 1541 | break; |
| 1542 | case ACPI_ADR_SPACE_PCI_CONFIG: |
| 1543 | case ACPI_ADR_SPACE_EC: |
| 1544 | case ACPI_ADR_SPACE_SMBUS: |
| 1545 | case ACPI_ADR_SPACE_CMOS: |
| 1546 | case ACPI_ADR_SPACE_PCI_BAR_TARGET: |
| 1547 | case ACPI_ADR_SPACE_DATA_TABLE: |
| 1548 | case ACPI_ADR_SPACE_FIXED_HARDWARE: |
| 1549 | break; |
| 1550 | } |
| 1551 | return AE_OK; |
| 1552 | } |
| 1553 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 1554 | /****************************************************************************** |
| 1555 | * |
| 1556 | * FUNCTION: acpi_os_validate_address |
| 1557 | * |
| 1558 | * PARAMETERS: space_id - ACPI space ID |
| 1559 | * address - Physical address |
| 1560 | * length - Address length |
| 1561 | * |
| 1562 | * RETURN: AE_OK if address/length is valid for the space_id. Otherwise, |
| 1563 | * should return AE_AML_ILLEGAL_ADDRESS. |
| 1564 | * |
| 1565 | * DESCRIPTION: Validate a system address via the host OS. Used to validate |
| 1566 | * the addresses accessed by AML operation regions. |
| 1567 | * |
| 1568 | *****************************************************************************/ |
| 1569 | |
| 1570 | acpi_status |
| 1571 | acpi_os_validate_address ( |
| 1572 | u8 space_id, |
| 1573 | acpi_physical_address address, |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1574 | acpi_size length, |
| 1575 | char *name) |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 1576 | { |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1577 | struct acpi_res_list *res; |
Lin Ming | a5fe1a0 | 2009-08-13 10:43:27 +0800 | [diff] [blame] | 1578 | int added; |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1579 | if (acpi_enforce_resources == ENFORCE_RESOURCES_NO) |
| 1580 | return AE_OK; |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 1581 | |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1582 | switch (space_id) { |
| 1583 | case ACPI_ADR_SPACE_SYSTEM_IO: |
| 1584 | case ACPI_ADR_SPACE_SYSTEM_MEMORY: |
Thomas Weber | 8839316 | 2010-03-16 11:47:56 +0100 | [diff] [blame] | 1585 | /* Only interference checks against SystemIO and SystemMemory |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1586 | are needed */ |
| 1587 | res = kzalloc(sizeof(struct acpi_res_list), GFP_KERNEL); |
| 1588 | if (!res) |
| 1589 | return AE_OK; |
| 1590 | /* ACPI names are fixed to 4 bytes, still better use strlcpy */ |
| 1591 | strlcpy(res->name, name, 5); |
| 1592 | res->start = address; |
| 1593 | res->end = address + length - 1; |
| 1594 | res->resource_type = space_id; |
| 1595 | spin_lock(&acpi_res_lock); |
Lin Ming | a5fe1a0 | 2009-08-13 10:43:27 +0800 | [diff] [blame] | 1596 | added = acpi_res_list_add(res); |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1597 | spin_unlock(&acpi_res_lock); |
Lin Ming | a5fe1a0 | 2009-08-13 10:43:27 +0800 | [diff] [blame] | 1598 | pr_debug("%s %s resource: start: 0x%llx, end: 0x%llx, " |
| 1599 | "name: %s\n", added ? "Added" : "Already exist", |
| 1600 | (space_id == ACPI_ADR_SPACE_SYSTEM_IO) |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1601 | ? "SystemIO" : "System Memory", |
| 1602 | (unsigned long long)res->start, |
| 1603 | (unsigned long long)res->end, |
| 1604 | res->name); |
Lin Ming | a5fe1a0 | 2009-08-13 10:43:27 +0800 | [diff] [blame] | 1605 | if (!added) |
| 1606 | kfree(res); |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1607 | break; |
| 1608 | case ACPI_ADR_SPACE_PCI_CONFIG: |
| 1609 | case ACPI_ADR_SPACE_EC: |
| 1610 | case ACPI_ADR_SPACE_SMBUS: |
| 1611 | case ACPI_ADR_SPACE_CMOS: |
| 1612 | case ACPI_ADR_SPACE_PCI_BAR_TARGET: |
| 1613 | case ACPI_ADR_SPACE_DATA_TABLE: |
| 1614 | case ACPI_ADR_SPACE_FIXED_HARDWARE: |
| 1615 | break; |
| 1616 | } |
| 1617 | return AE_OK; |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 1618 | } |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1619 | #endif |
Myron Stowe | d362eda | 2010-10-21 14:24:04 -0600 | [diff] [blame] | 1620 | |
| 1621 | acpi_status __init acpi_os_initialize(void) |
| 1622 | { |
| 1623 | acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1a_event_block); |
| 1624 | acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1b_event_block); |
| 1625 | acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe0_block); |
| 1626 | acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe1_block); |
| 1627 | |
| 1628 | return AE_OK; |
| 1629 | } |
| 1630 | |
Zhang Rui | 32d47ee | 2010-12-08 10:40:36 +0800 | [diff] [blame] | 1631 | acpi_status __init acpi_os_initialize1(void) |
Myron Stowe | d362eda | 2010-10-21 14:24:04 -0600 | [diff] [blame] | 1632 | { |
Tejun Heo | 44d2588 | 2011-02-01 11:42:42 +0100 | [diff] [blame] | 1633 | kacpid_wq = alloc_workqueue("kacpid", 0, 1); |
| 1634 | kacpi_notify_wq = alloc_workqueue("kacpi_notify", 0, 1); |
| 1635 | kacpi_hotplug_wq = alloc_workqueue("kacpi_hotplug", 0, 1); |
Myron Stowe | d362eda | 2010-10-21 14:24:04 -0600 | [diff] [blame] | 1636 | BUG_ON(!kacpid_wq); |
| 1637 | BUG_ON(!kacpi_notify_wq); |
| 1638 | BUG_ON(!kacpi_hotplug_wq); |
Len Brown | 1bd64d4 | 2010-10-26 14:50:56 -0400 | [diff] [blame] | 1639 | acpi_install_interface_handler(acpi_osi_handler); |
| 1640 | acpi_osi_setup_late(); |
Myron Stowe | d362eda | 2010-10-21 14:24:04 -0600 | [diff] [blame] | 1641 | return AE_OK; |
| 1642 | } |
| 1643 | |
| 1644 | acpi_status acpi_os_terminate(void) |
| 1645 | { |
| 1646 | if (acpi_irq_handler) { |
Rafael J. Wysocki | 23fe363 | 2011-02-08 23:48:16 +0100 | [diff] [blame] | 1647 | acpi_os_remove_interrupt_handler(acpi_gbl_FADT.sci_interrupt, |
Myron Stowe | d362eda | 2010-10-21 14:24:04 -0600 | [diff] [blame] | 1648 | acpi_irq_handler); |
| 1649 | } |
| 1650 | |
| 1651 | acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe1_block); |
| 1652 | acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe0_block); |
| 1653 | acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1b_event_block); |
| 1654 | acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1a_event_block); |
| 1655 | |
| 1656 | destroy_workqueue(kacpid_wq); |
| 1657 | destroy_workqueue(kacpi_notify_wq); |
| 1658 | destroy_workqueue(kacpi_hotplug_wq); |
| 1659 | |
| 1660 | return AE_OK; |
| 1661 | } |