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