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