blob: e5f416c7f66e9e92e1ed988c3a709bc2820d56f4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Wilcoxf1241c82008-03-14 13:43:13 -04007 * Copyright (c) 2008 Intel Corporation
8 * Author: Matthew Wilcox <willy@linux.intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
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 Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/module.h>
31#include <linux/kernel.h>
32#include <linux/slab.h>
33#include <linux/mm.h>
Myron Stoweba242d52012-01-20 19:13:30 -070034#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#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 Starikovskiyad71860a2007-02-02 19:48:19 +030041#include <linux/acpi.h>
Rafael J. Wysocki2d6d9fd2011-01-19 22:27:14 +010042#include <linux/acpi_io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/efi.h>
Thomas Renningerdf92e692008-02-04 23:31:22 -080044#include <linux/ioport.h>
45#include <linux/list.h>
Matthew Wilcoxf1241c82008-03-14 13:43:13 -040046#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 Zheng1129c922013-07-23 16:11:55 +080055#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define _COMPONENT ACPI_OS_SERVICES
Len Brownf52fd662007-02-12 22:42:12 -050058ACPI_MODULE_NAME("osl");
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define PREFIX "ACPI: "
Len Brown4be44fc2005-08-05 00:44:28 -040060struct acpi_os_dpc {
61 acpi_osd_exec_callback function;
62 void *context;
David Howells65f27f32006-11-22 14:55:48 +000063 struct work_struct work;
Bjorn Helgaas9ac61852009-08-31 22:32:10 +000064 int wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065};
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 */
75int acpi_in_debugger;
76EXPORT_SYMBOL(acpi_in_debugger);
77
78extern char line_buf[80];
Len Brown4be44fc2005-08-05 00:44:28 -040079#endif /*ENABLE_DEBUGGER */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Tang Liang09f98a82011-12-09 10:05:54 +080081static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl,
82 u32 pm1b_ctrl);
Ben Guthrod6b47b12013-07-30 08:24:52 -040083static int (*__acpi_os_prepare_extended_sleep)(u8 sleep_state, u32 val_a,
84 u32 val_b);
Tang Liang09f98a82011-12-09 10:05:54 +080085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static acpi_osd_handler acpi_irq_handler;
87static void *acpi_irq_context;
88static struct workqueue_struct *kacpid_wq;
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -040089static struct workqueue_struct *kacpi_notify_wq;
Yinghai Lu92d8aff2013-01-21 13:20:47 -080090static struct workqueue_struct *kacpi_hotplug_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Myron Stowe620242a2010-10-21 14:23:53 -060092/*
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 */
96struct acpi_ioremap {
97 struct list_head list;
98 void __iomem *virt;
99 acpi_physical_address phys;
100 acpi_size size;
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100101 unsigned long refcount;
Myron Stowe620242a2010-10-21 14:23:53 -0600102};
103
104static LIST_HEAD(acpi_ioremaps);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100105static DEFINE_MUTEX(acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600106
Lin Mingb0ed7a92010-08-06 09:35:51 +0800107static void __init acpi_osi_setup_late(void);
Len Brownae00d812007-05-29 18:43:33 -0400108
Len Brownd4b7dc42008-01-23 20:50:56 -0500109/*
Len Browna6e08872008-11-08 01:21:10 -0500110 * The story of _OSI(Linux)
Len Brownd4b7dc42008-01-23 20:50:56 -0500111 *
Len Browna6e08872008-11-08 01:21:10 -0500112 * From pre-history through Linux-2.6.22,
113 * Linux responded TRUE upon a BIOS OSI(Linux) query.
Len Brownd4b7dc42008-01-23 20:50:56 -0500114 *
Len Browna6e08872008-11-08 01:21:10 -0500115 * 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 Brownd4b7dc42008-01-23 20:50:56 -0500119 *
Len Browna6e08872008-11-08 01:21:10 -0500120 * 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 Brownd4b7dc42008-01-23 20:50:56 -0500131 *
Len Browna6e08872008-11-08 01:21:10 -0500132 * 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 Brownd4b7dc42008-01-23 20:50:56 -0500134 *
135 * BIOS writers should NOT query _OSI(Linux) on future systems.
Len Browna6e08872008-11-08 01:21:10 -0500136 * 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 Brownd4b7dc42008-01-23 20:50:56 -0500140 */
Len Brownd4b7dc42008-01-23 20:50:56 -0500141
Adrian Bunk1d15d842008-01-29 00:10:15 +0200142static struct osi_linux {
Len Brownd4b7dc42008-01-23 20:50:56 -0500143 unsigned int enable:1;
144 unsigned int dmi:1;
145 unsigned int cmdline:1;
Lv Zheng5dc17982013-07-22 16:08:25 +0800146 unsigned int default_disabling:1;
147} osi_linux = {0, 0, 0, 0};
Len Brownf5076542007-05-30 00:10:38 -0400148
Lin Mingb0ed7a92010-08-06 09:35:51 +0800149static u32 acpi_osi_handler(acpi_string interface, u32 supported)
150{
151 if (!strcmp("Linux", interface)) {
152
Len Brown89976212011-08-02 00:45:48 -0400153 printk_once(KERN_NOTICE FW_BUG PREFIX
Lin Mingb0ed7a92010-08-06 09:35:51 +0800154 "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 Stowebc9ffce2011-11-07 16:23:27 -0700163static void __init acpi_request_region (struct acpi_generic_address *gas,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700164 unsigned int length, char *desc)
165{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700166 u64 addr;
167
168 /* Handle possible alignment issues */
169 memcpy(&addr, &gas->address, sizeof(addr));
170 if (!addr || !length)
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700171 return;
172
Andi Kleencfa806f2010-07-20 15:18:36 -0700173 /* Resources are never freed */
Myron Stowebc9ffce2011-11-07 16:23:27 -0700174 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 Helgaas9a47cdb2007-01-18 16:42:55 -0700178}
179
180static int __init acpi_reserve_resources(void)
181{
Len Browneee3c852007-02-03 01:38:16 -0500182 acpi_request_region(&acpi_gbl_FADT.xpm1a_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700183 "ACPI PM1a_EVT_BLK");
184
Len Browneee3c852007-02-03 01:38:16 -0500185 acpi_request_region(&acpi_gbl_FADT.xpm1b_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700186 "ACPI PM1b_EVT_BLK");
187
Len Browneee3c852007-02-03 01:38:16 -0500188 acpi_request_region(&acpi_gbl_FADT.xpm1a_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700189 "ACPI PM1a_CNT_BLK");
190
Len Browneee3c852007-02-03 01:38:16 -0500191 acpi_request_region(&acpi_gbl_FADT.xpm1b_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700192 "ACPI PM1b_CNT_BLK");
193
Len Browneee3c852007-02-03 01:38:16 -0500194 if (acpi_gbl_FADT.pm_timer_length == 4)
195 acpi_request_region(&acpi_gbl_FADT.xpm_timer_block, 4, "ACPI PM_TMR");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700196
Len Browneee3c852007-02-03 01:38:16 -0500197 acpi_request_region(&acpi_gbl_FADT.xpm2_control_block, acpi_gbl_FADT.pm2_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700198 "ACPI PM2_CNT_BLK");
199
200 /* Length of GPE blocks must be a non-negative multiple of 2 */
201
Len Browneee3c852007-02-03 01:38:16 -0500202 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 Helgaas9a47cdb2007-01-18 16:42:55 -0700205
Len Browneee3c852007-02-03 01:38:16 -0500206 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 Helgaas9a47cdb2007-01-18 16:42:55 -0700209
210 return 0;
211}
212device_initcall(acpi_reserve_resources);
213
Len Brown4be44fc2005-08-05 00:44:28 -0400214void acpi_os_printf(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 va_list args;
217 va_start(args, fmt);
218 acpi_os_vprintf(fmt, args);
219 va_end(args);
220}
Len Brown4be44fc2005-08-05 00:44:28 -0400221
Len Brown4be44fc2005-08-05 00:44:28 -0400222void acpi_os_vprintf(const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 static char buffer[512];
Len Brown4be44fc2005-08-05 00:44:28 -0400225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 vsprintf(buffer, fmt, args);
227
228#ifdef ENABLE_DEBUGGER
229 if (acpi_in_debugger) {
230 kdb_printf("%s", buffer);
231 } else {
Frank Seidel4d939152009-02-04 17:03:07 +0100232 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234#else
Frank Seidel4d939152009-02-04 17:03:07 +0100235 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236#endif
237}
238
Takao Indoh4996c022011-07-14 18:05:21 -0400239#ifdef CONFIG_KEXEC
240static unsigned long acpi_rsdp;
241static int __init setup_acpi_rsdp(char *arg)
242{
243 acpi_rsdp = simple_strtoul(arg, NULL, 16);
244 return 0;
245}
246early_param("acpi_rsdp", setup_acpi_rsdp);
247#endif
248
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300249acpi_physical_address __init acpi_os_get_root_pointer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Takao Indoh4996c022011-07-14 18:05:21 -0400251#ifdef CONFIG_KEXEC
252 if (acpi_rsdp)
253 return acpi_rsdp;
254#endif
255
Matt Fleming83e68182012-11-14 09:42:35 +0000256 if (efi_enabled(EFI_CONFIG_TABLES)) {
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800257 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300258 return efi.acpi20;
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800259 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300260 return efi.acpi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400262 printk(KERN_ERR PREFIX
263 "System description tables not found\n");
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300264 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
Len Brown239665a2007-11-23 20:08:02 -0500266 } else {
267 acpi_physical_address pa = 0;
268
269 acpi_find_root_pointer(&pa);
270 return pa;
271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
273
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600274/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
Myron Stowe4a3cba52010-10-21 14:24:14 -0600275static struct acpi_ioremap *
276acpi_map_lookup(acpi_physical_address phys, acpi_size size)
Myron Stowe620242a2010-10-21 14:23:53 -0600277{
278 struct acpi_ioremap *map;
279
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600280 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
Myron Stowe620242a2010-10-21 14:23:53 -0600281 if (map->phys <= phys &&
282 phys + size <= map->phys + map->size)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600283 return map;
284
285 return NULL;
286}
287
288/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
289static void __iomem *
290acpi_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 Stowe620242a2010-10-21 14:23:53 -0600297
298 return NULL;
299}
300
Rafael J. Wysocki13606a22011-02-08 23:38:25 +0100301void __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}
315EXPORT_SYMBOL_GPL(acpi_os_get_iomem);
316
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600317/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
Myron Stowe620242a2010-10-21 14:23:53 -0600318static struct acpi_ioremap *
319acpi_map_lookup_virt(void __iomem *virt, acpi_size size)
320{
321 struct acpi_ioremap *map;
322
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600323 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600324 if (map->virt <= virt &&
325 virt + size <= map->virt + map->size)
Myron Stowe620242a2010-10-21 14:23:53 -0600326 return map;
327
328 return NULL;
329}
330
Myron Stoweba242d52012-01-20 19:13:30 -0700331#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
338static 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
351static void acpi_unmap(acpi_physical_address pg_off, void __iomem *vaddr)
352{
353 unsigned long pfn;
354
355 pfn = pg_off >> PAGE_SHIFT;
Jan Beuliche2526752012-02-24 11:41:53 +0000356 if (should_use_kmap(pfn))
Myron Stoweba242d52012-01-20 19:13:30 -0700357 kunmap(pfn_to_page(pfn));
358 else
359 iounmap(vaddr);
360}
361
Jan Beulich2fdf0742007-12-13 08:33:59 +0000362void __iomem *__init_refok
363acpi_os_map_memory(acpi_physical_address phys, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100365 struct acpi_ioremap *map;
Myron Stowe620242a2010-10-21 14:23:53 -0600366 void __iomem *virt;
Rafael J. Wysocki2d6d9fd2011-01-19 22:27:14 +0100367 acpi_physical_address pg_off;
368 acpi_size pg_sz;
Myron Stowe620242a2010-10-21 14:23:53 -0600369
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800370 if (phys > ULONG_MAX) {
371 printk(KERN_ERR PREFIX "Cannot map memory that high\n");
Randy Dunlap70c08462007-02-13 16:11:36 -0800372 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
Myron Stowe620242a2010-10-21 14:23:53 -0600374
375 if (!acpi_gbl_permanent_mmap)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300376 return __acpi_map_table((unsigned long)phys, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600377
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100378 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. Wysockib7c1fad2011-02-08 23:38:15 +0100382 map->refcount++;
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100383 goto out;
384 }
385
Myron Stowe620242a2010-10-21 14:23:53 -0600386 map = kzalloc(sizeof(*map), GFP_KERNEL);
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100387 if (!map) {
388 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600389 return NULL;
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100390 }
Myron Stowe620242a2010-10-21 14:23:53 -0600391
Myron Stowe4a3cba52010-10-21 14:24:14 -0600392 pg_off = round_down(phys, PAGE_SIZE);
393 pg_sz = round_up(phys + size, PAGE_SIZE) - pg_off;
Myron Stoweba242d52012-01-20 19:13:30 -0700394 virt = acpi_map(pg_off, pg_sz);
Myron Stowe620242a2010-10-21 14:23:53 -0600395 if (!virt) {
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100396 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600397 kfree(map);
398 return NULL;
399 }
400
401 INIT_LIST_HEAD(&map->list);
402 map->virt = virt;
Myron Stowe4a3cba52010-10-21 14:24:14 -0600403 map->phys = pg_off;
404 map->size = pg_sz;
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100405 map->refcount = 1;
Myron Stowe620242a2010-10-21 14:23:53 -0600406
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600407 list_add_tail_rcu(&map->list, &acpi_ioremaps);
Myron Stowe620242a2010-10-21 14:23:53 -0600408
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100409 out:
410 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe4a3cba52010-10-21 14:24:14 -0600411 return map->virt + (phys - map->phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800413EXPORT_SYMBOL_GPL(acpi_os_map_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100415static void acpi_os_drop_map_ref(struct acpi_ioremap *map)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600416{
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100417 if (!--map->refcount)
418 list_del_rcu(&map->list);
Myron Stowe4a3cba52010-10-21 14:24:14 -0600419}
Myron Stowe4a3cba52010-10-21 14:24:14 -0600420
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100421static void acpi_os_map_cleanup(struct acpi_ioremap *map)
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100422{
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100423 if (!map->refcount) {
424 synchronize_rcu();
Myron Stoweba242d52012-01-20 19:13:30 -0700425 acpi_unmap(map->phys, map->virt);
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100426 kfree(map);
427 }
Myron Stowe4a3cba52010-10-21 14:24:14 -0600428}
429
Jeremy Fitzhardinge0d3a9cf2009-02-22 14:58:56 -0800430void __ref acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Myron Stowe620242a2010-10-21 14:23:53 -0600432 struct acpi_ioremap *map;
Myron Stowe620242a2010-10-21 14:23:53 -0600433
434 if (!acpi_gbl_permanent_mmap) {
Yinghai Lu7d972772009-02-07 15:39:41 -0800435 __acpi_unmap_table(virt, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600436 return;
437 }
438
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100439 mutex_lock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600440 map = acpi_map_lookup_virt(virt, size);
441 if (!map) {
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100442 mutex_unlock(&acpi_ioremap_lock);
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100443 WARN(true, PREFIX "%s: bad address %p\n", __func__, virt);
Myron Stowe620242a2010-10-21 14:23:53 -0600444 return;
445 }
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100446 acpi_os_drop_map_ref(map);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100447 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600448
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100449 acpi_os_map_cleanup(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800451EXPORT_SYMBOL_GPL(acpi_os_unmap_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Jeremy Fitzhardinge0d3a9cf2009-02-22 14:58:56 -0800453void __init early_acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
Yinghai Lu7d972772009-02-07 15:39:41 -0800454{
455 if (!acpi_gbl_permanent_mmap)
456 __acpi_unmap_table(virt, size);
457}
458
Myron Stowe6f68c912011-11-07 16:23:34 -0700459int acpi_os_map_generic_address(struct acpi_generic_address *gas)
Myron Stowe29718522010-10-21 14:23:59 -0600460{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700461 u64 addr;
Myron Stowe29718522010-10-21 14:23:59 -0600462 void __iomem *virt;
463
Myron Stowebc9ffce2011-11-07 16:23:27 -0700464 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
Myron Stowe29718522010-10-21 14:23:59 -0600465 return 0;
466
Myron Stowebc9ffce2011-11-07 16:23:27 -0700467 /* Handle possible alignment issues */
468 memcpy(&addr, &gas->address, sizeof(addr));
469 if (!addr || !gas->bit_width)
Myron Stowe29718522010-10-21 14:23:59 -0600470 return -EINVAL;
471
Myron Stowebc9ffce2011-11-07 16:23:27 -0700472 virt = acpi_os_map_memory(addr, gas->bit_width / 8);
Myron Stowe29718522010-10-21 14:23:59 -0600473 if (!virt)
474 return -EIO;
475
476 return 0;
477}
Myron Stowe6f68c912011-11-07 16:23:34 -0700478EXPORT_SYMBOL(acpi_os_map_generic_address);
Myron Stowe29718522010-10-21 14:23:59 -0600479
Myron Stowe6f68c912011-11-07 16:23:34 -0700480void acpi_os_unmap_generic_address(struct acpi_generic_address *gas)
Myron Stowe29718522010-10-21 14:23:59 -0600481{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700482 u64 addr;
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100483 struct acpi_ioremap *map;
Myron Stowe29718522010-10-21 14:23:59 -0600484
Myron Stowebc9ffce2011-11-07 16:23:27 -0700485 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
Myron Stowe29718522010-10-21 14:23:59 -0600486 return;
487
Myron Stowebc9ffce2011-11-07 16:23:27 -0700488 /* Handle possible alignment issues */
489 memcpy(&addr, &gas->address, sizeof(addr));
490 if (!addr || !gas->bit_width)
Myron Stowe29718522010-10-21 14:23:59 -0600491 return;
492
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100493 mutex_lock(&acpi_ioremap_lock);
Myron Stowebc9ffce2011-11-07 16:23:27 -0700494 map = acpi_map_lookup(addr, gas->bit_width / 8);
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100495 if (!map) {
496 mutex_unlock(&acpi_ioremap_lock);
497 return;
498 }
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100499 acpi_os_drop_map_ref(map);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100500 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe29718522010-10-21 14:23:59 -0600501
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100502 acpi_os_map_cleanup(map);
Myron Stowe29718522010-10-21 14:23:59 -0600503}
Myron Stowe6f68c912011-11-07 16:23:34 -0700504EXPORT_SYMBOL(acpi_os_unmap_generic_address);
Myron Stowe29718522010-10-21 14:23:59 -0600505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506#ifdef ACPI_FUTURE_USAGE
507acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400508acpi_os_get_physical_address(void *virt, acpi_physical_address * phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Len Brown4be44fc2005-08-05 00:44:28 -0400510 if (!phys || !virt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 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
521static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN];
522
523acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400524acpi_os_predefined_override(const struct acpi_predefined_names *init_val,
525 acpi_string * new_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
527 if (!init_val || !new_val)
528 return AE_BAD_PARAMETER;
529
530 *new_val = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400531 if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400533 acpi_os_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 *new_val = acpi_os_name;
535 }
536
537 return AE_OK;
538}
539
Thomas Renninger53aac442012-10-01 00:23:54 +0200540#ifdef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
541#include <linux/earlycpio.h>
542#include <linux/memblock.h>
543
544static u64 acpi_tables_addr;
545static int all_tables_size;
546
547/* Copied from acpica/tbutils.c:acpi_tb_checksum() */
548u8 __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: */
559static 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 Renninger53aac442012-10-01 00:23:54 +0200570#define ACPI_HEADER_SIZE sizeof(struct acpi_table_header)
571
572/* Must not increase 10 or needs code modification below */
573#define ACPI_OVERRIDE_TABLES 10
574
575void __init acpi_initrd_override(void *data, size_t size)
576{
577 int sig, no, table_nr = 0, total_offset = 0;
578 long offset = 0;
579 struct acpi_table_header *table;
580 char cpio_path[32] = "kernel/firmware/acpi/";
581 struct cpio_data file;
582 struct cpio_data early_initrd_files[ACPI_OVERRIDE_TABLES];
583 char *p;
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 Chen7702ae02013-08-14 17:37:08 +0800596 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 Renninger53aac442012-10-01 00:23:54 +0200601
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 Chen7702ae02013-08-14 17:37:08 +0800608 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 Renninger53aac442012-10-01 00:23:54 +0200623
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;
628 early_initrd_files[table_nr].data = file.data;
629 early_initrd_files[table_nr].size = file.size;
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 YanQinga6432de2013-04-23 01:19:19 +0200652 memblock_reserve(acpi_tables_addr, all_tables_size);
Thomas Renninger53aac442012-10-01 00:23:54 +0200653 arch_reserve_mem_area(acpi_tables_addr, all_tables_size);
654
655 p = early_ioremap(acpi_tables_addr, all_tables_size);
656
657 for (no = 0; no < table_nr; no++) {
658 memcpy(p + total_offset, early_initrd_files[no].data,
659 early_initrd_files[no].size);
660 total_offset += early_initrd_files[no].size;
661 }
662 early_iounmap(p, all_tables_size);
663}
664#endif /* CONFIG_ACPI_INITRD_TABLE_OVERRIDE */
665
Thomas Renninger325a8d362012-10-01 00:23:56 +0200666static void acpi_table_taint(struct acpi_table_header *table)
667{
668 pr_warn(PREFIX
669 "Override [%4.4s-%8.8s], this is unsafe: tainting kernel\n",
670 table->signature, table->oem_table_id);
Rusty Russell373d4d02013-01-21 17:17:39 +1030671 add_taint(TAINT_OVERRIDDEN_ACPI_TABLE, LOCKDEP_NOW_UNRELIABLE);
Thomas Renninger325a8d362012-10-01 00:23:56 +0200672}
673
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400676acpi_os_table_override(struct acpi_table_header * existing_table,
677 struct acpi_table_header ** new_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
679 if (!existing_table || !new_table)
680 return AE_BAD_PARAMETER;
681
Markus Gaugusch71fc47a2008-02-05 00:04:06 +0100682 *new_table = NULL;
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684#ifdef CONFIG_ACPI_CUSTOM_DSDT
685 if (strncmp(existing_table->signature, "DSDT", 4) == 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400686 *new_table = (struct acpi_table_header *)AmlCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687#endif
Thomas Renninger325a8d362012-10-01 00:23:56 +0200688 if (*new_table != NULL)
689 acpi_table_taint(existing_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 return AE_OK;
691}
692
Bob Mooref7b004a2012-02-14 18:31:56 +0800693acpi_status
694acpi_os_physical_table_override(struct acpi_table_header *existing_table,
Thomas Renningerb2a35002012-10-01 00:23:55 +0200695 acpi_physical_address *address,
696 u32 *table_length)
Bob Mooref7b004a2012-02-14 18:31:56 +0800697{
Thomas Renningerb2a35002012-10-01 00:23:55 +0200698#ifndef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
699 *table_length = 0;
700 *address = 0;
701 return AE_OK;
702#else
703 int table_offset = 0;
704 struct acpi_table_header *table;
Bob Mooref7b004a2012-02-14 18:31:56 +0800705
Thomas Renningerb2a35002012-10-01 00:23:55 +0200706 *table_length = 0;
707 *address = 0;
708
709 if (!acpi_tables_addr)
710 return AE_OK;
711
712 do {
713 if (table_offset + ACPI_HEADER_SIZE > all_tables_size) {
714 WARN_ON(1);
715 return AE_OK;
716 }
717
718 table = acpi_os_map_memory(acpi_tables_addr + table_offset,
719 ACPI_HEADER_SIZE);
720
721 if (table_offset + table->length > all_tables_size) {
722 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
723 WARN_ON(1);
724 return AE_OK;
725 }
726
727 table_offset += table->length;
728
729 if (memcmp(existing_table->signature, table->signature, 4)) {
730 acpi_os_unmap_memory(table,
731 ACPI_HEADER_SIZE);
732 continue;
733 }
734
735 /* Only override tables with matching oem id */
736 if (memcmp(table->oem_table_id, existing_table->oem_table_id,
737 ACPI_OEM_TABLE_ID_SIZE)) {
738 acpi_os_unmap_memory(table,
739 ACPI_HEADER_SIZE);
740 continue;
741 }
742
743 table_offset -= table->length;
744 *table_length = table->length;
745 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
746 *address = acpi_tables_addr + table_offset;
747 break;
748 } while (table_offset + ACPI_HEADER_SIZE < all_tables_size);
749
Thomas Renninger325a8d362012-10-01 00:23:56 +0200750 if (*address != 0)
751 acpi_table_taint(existing_table);
Thomas Renningerb2a35002012-10-01 00:23:55 +0200752 return AE_OK;
753#endif
754}
Bob Mooref7b004a2012-02-14 18:31:56 +0800755
David Howells7d12e782006-10-05 14:55:46 +0100756static irqreturn_t acpi_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
Len Brown5229e872008-02-06 01:26:55 -0500758 u32 handled;
759
760 handled = (*acpi_irq_handler) (acpi_irq_context);
761
762 if (handled) {
763 acpi_irq_handled++;
764 return IRQ_HANDLED;
Len Brown88bea182009-04-21 00:35:47 -0400765 } else {
766 acpi_irq_not_handled++;
Len Brown5229e872008-02-06 01:26:55 -0500767 return IRQ_NONE;
Len Brown88bea182009-04-21 00:35:47 -0400768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769}
770
771acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400772acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
773 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
775 unsigned int irq;
776
Len Brown5229e872008-02-06 01:26:55 -0500777 acpi_irq_stats_init();
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 /*
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100780 * ACPI interrupts different from the SCI in our copy of the FADT are
781 * not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 */
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100783 if (gsi != acpi_gbl_FADT.sci_interrupt)
784 return AE_BAD_PARAMETER;
785
786 if (acpi_irq_handler)
787 return AE_ALREADY_ACQUIRED;
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (acpi_gsi_to_irq(gsi, &irq) < 0) {
790 printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n",
791 gsi);
792 return AE_OK;
793 }
794
795 acpi_irq_handler = handler;
796 acpi_irq_context = context;
Zhang Rui89a22da2013-02-04 07:10:10 +0000797 if (request_irq(irq, acpi_irq, IRQF_SHARED | IRQF_NO_SUSPEND, "acpi", acpi_irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq);
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100799 acpi_irq_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return AE_NOT_ACQUIRED;
801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 return AE_OK;
804}
805
Len Brown4be44fc2005-08-05 00:44:28 -0400806acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100808 if (irq != acpi_gbl_FADT.sci_interrupt)
809 return AE_BAD_PARAMETER;
810
811 free_irq(irq, acpi_irq);
812 acpi_irq_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 return AE_OK;
815}
816
817/*
818 * Running in interpreter thread context, safe to sleep
819 */
820
Lin Ming439913f2010-01-28 10:53:19 +0800821void acpi_os_sleep(u64 ms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
Nishanth Aravamudan01a527e2005-11-07 01:01:14 -0800823 schedule_timeout_interruptible(msecs_to_jiffies(ms));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
Len Brown4be44fc2005-08-05 00:44:28 -0400825
Len Brown4be44fc2005-08-05 00:44:28 -0400826void acpi_os_stall(u32 us)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
828 while (us) {
829 u32 delay = 1000;
830
831 if (delay > us)
832 delay = us;
833 udelay(delay);
834 touch_nmi_watchdog();
835 us -= delay;
836 }
837}
Len Brown4be44fc2005-08-05 00:44:28 -0400838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839/*
840 * Support ACPI 3.0 AML Timer operand
841 * Returns 64-bit free-running, monotonically increasing timer
842 * with 100ns granularity
843 */
Len Brown4be44fc2005-08-05 00:44:28 -0400844u64 acpi_os_get_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Mika Westerberg10619062013-05-23 10:27:46 +0300846 u64 time_ns = ktime_to_ns(ktime_get());
847 do_div(time_ns, 100);
848 return time_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
850
Len Brown4be44fc2005-08-05 00:44:28 -0400851acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
853 u32 dummy;
854
855 if (!value)
856 value = &dummy;
857
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800858 *value = 0;
859 if (width <= 8) {
Len Brown4be44fc2005-08-05 00:44:28 -0400860 *(u8 *) value = inb(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800861 } else if (width <= 16) {
Len Brown4be44fc2005-08-05 00:44:28 -0400862 *(u16 *) value = inw(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800863 } else if (width <= 32) {
Len Brown4be44fc2005-08-05 00:44:28 -0400864 *(u32 *) value = inl(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800865 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 BUG();
867 }
868
869 return AE_OK;
870}
Len Brown4be44fc2005-08-05 00:44:28 -0400871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872EXPORT_SYMBOL(acpi_os_read_port);
873
Len Brown4be44fc2005-08-05 00:44:28 -0400874acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800876 if (width <= 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 outb(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800878 } else if (width <= 16) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 outw(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800880 } else if (width <= 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 outl(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800882 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 BUG();
884 }
885
886 return AE_OK;
887}
Len Brown4be44fc2005-08-05 00:44:28 -0400888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889EXPORT_SYMBOL(acpi_os_write_port);
890
Myron Stowee615bf52012-01-20 19:13:24 -0700891#ifdef readq
892static inline u64 read64(const volatile void __iomem *addr)
893{
894 return readq(addr);
895}
896#else
897static inline u64 read64(const volatile void __iomem *addr)
898{
899 u64 l, h;
900 l = readl(addr);
901 h = readl(addr+4);
902 return l | (h << 32);
903}
904#endif
905
906acpi_status
Bob Moore653f4b52012-02-14 18:29:55 +0800907acpi_os_read_memory(acpi_physical_address phys_addr, u64 *value, u32 width)
Myron Stowee615bf52012-01-20 19:13:24 -0700908{
909 void __iomem *virt_addr;
910 unsigned int size = width / 8;
911 bool unmap = false;
912 u64 dummy;
913
914 rcu_read_lock();
915 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
916 if (!virt_addr) {
917 rcu_read_unlock();
918 virt_addr = acpi_os_ioremap(phys_addr, size);
919 if (!virt_addr)
920 return AE_BAD_ADDRESS;
921 unmap = true;
922 }
923
924 if (!value)
925 value = &dummy;
926
927 switch (width) {
928 case 8:
929 *(u8 *) value = readb(virt_addr);
930 break;
931 case 16:
932 *(u16 *) value = readw(virt_addr);
933 break;
934 case 32:
935 *(u32 *) value = readl(virt_addr);
936 break;
937 case 64:
938 *(u64 *) value = read64(virt_addr);
939 break;
940 default:
941 BUG();
942 }
943
944 if (unmap)
945 iounmap(virt_addr);
946 else
947 rcu_read_unlock();
948
949 return AE_OK;
950}
951
Myron Stowee615bf52012-01-20 19:13:24 -0700952#ifdef writeq
953static inline void write64(u64 val, volatile void __iomem *addr)
954{
955 writeq(val, addr);
956}
957#else
958static inline void write64(u64 val, volatile void __iomem *addr)
959{
960 writel(val, addr);
961 writel(val>>32, addr+4);
962}
963#endif
964
965acpi_status
Bob Moore653f4b52012-02-14 18:29:55 +0800966acpi_os_write_memory(acpi_physical_address phys_addr, u64 value, u32 width)
Myron Stowee615bf52012-01-20 19:13:24 -0700967{
968 void __iomem *virt_addr;
969 unsigned int size = width / 8;
970 bool unmap = false;
971
972 rcu_read_lock();
973 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
974 if (!virt_addr) {
975 rcu_read_unlock();
976 virt_addr = acpi_os_ioremap(phys_addr, size);
977 if (!virt_addr)
978 return AE_BAD_ADDRESS;
979 unmap = true;
980 }
981
982 switch (width) {
983 case 8:
984 writeb(value, virt_addr);
985 break;
986 case 16:
987 writew(value, virt_addr);
988 break;
989 case 32:
990 writel(value, virt_addr);
991 break;
992 case 64:
993 write64(value, virt_addr);
994 break;
995 default:
996 BUG();
997 }
998
999 if (unmap)
1000 iounmap(virt_addr);
1001 else
1002 rcu_read_unlock();
1003
1004 return AE_OK;
1005}
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001008acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Bob Moorec5f02312010-08-06 08:57:53 +08001009 u64 *value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
1011 int result, size;
Bob Moorec5f02312010-08-06 08:57:53 +08001012 u32 value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 if (!value)
1015 return AE_BAD_PARAMETER;
1016
1017 switch (width) {
1018 case 8:
1019 size = 1;
1020 break;
1021 case 16:
1022 size = 2;
1023 break;
1024 case 32:
1025 size = 4;
1026 break;
1027 default:
1028 return AE_ERROR;
1029 }
1030
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -05001031 result = raw_pci_read(pci_id->segment, pci_id->bus,
1032 PCI_DEVFN(pci_id->device, pci_id->function),
Bob Moorec5f02312010-08-06 08:57:53 +08001033 reg, size, &value32);
1034 *value = value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036 return (result ? AE_ERROR : AE_OK);
1037}
Len Brown4be44fc2005-08-05 00:44:28 -04001038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001040acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Lin Ming439913f2010-01-28 10:53:19 +08001041 u64 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
1043 int result, size;
1044
1045 switch (width) {
1046 case 8:
1047 size = 1;
1048 break;
1049 case 16:
1050 size = 2;
1051 break;
1052 case 32:
1053 size = 4;
1054 break;
1055 default:
1056 return AE_ERROR;
1057 }
1058
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -05001059 result = raw_pci_write(pci_id->segment, pci_id->bus,
1060 PCI_DEVFN(pci_id->device, pci_id->function),
1061 reg, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063 return (result ? AE_ERROR : AE_OK);
1064}
1065
David Howells65f27f32006-11-22 14:55:48 +00001066static void acpi_os_execute_deferred(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
David Howells65f27f32006-11-22 14:55:48 +00001068 struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work);
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -04001069
Bjorn Helgaas9ac61852009-08-31 22:32:10 +00001070 if (dpc->wait)
Lin Mingbd6f10a2012-05-22 16:43:49 +08001071 acpi_os_wait_events_complete();
Zhang Rui19cd8472008-08-28 10:05:06 +08001072
1073 dpc->function(dpc->context);
1074 kfree(dpc);
Zhang Rui19cd8472008-08-28 10:05:06 +08001075}
1076
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -04001077/*******************************************************************************
1078 *
1079 * FUNCTION: acpi_os_execute
1080 *
1081 * PARAMETERS: Type - Type of the callback
1082 * Function - Function to be executed
1083 * Context - Function parameters
1084 *
1085 * RETURN: Status
1086 *
1087 * DESCRIPTION: Depending on type, either queues function for deferred execution or
1088 * immediately executes function on a separate thread.
1089 *
1090 ******************************************************************************/
1091
Zhang Rui19cd8472008-08-28 10:05:06 +08001092static acpi_status __acpi_os_execute(acpi_execute_type type,
1093 acpi_osd_exec_callback function, void *context, int hp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
Len Brown4be44fc2005-08-05 00:44:28 -04001095 acpi_status status = AE_OK;
1096 struct acpi_os_dpc *dpc;
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +03001097 struct workqueue_struct *queue;
Zhang Rui19cd8472008-08-28 10:05:06 +08001098 int ret;
Len Brown72945b22006-07-12 22:46:42 -04001099 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
1100 "Scheduling function [%p(%p)] for deferred execution.\n",
1101 function, context));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 /*
1104 * Allocate/initialize DPC structure. Note that this memory will be
David Howells65f27f32006-11-22 14:55:48 +00001105 * freed by the callee. The kernel handles the work_struct list in a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 * way that allows us to also free its memory inside the callee.
1107 * Because we may want to schedule several tasks with different
1108 * parameters we can't use the approach some kernel code uses of
David Howells65f27f32006-11-22 14:55:48 +00001109 * having a static work_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 */
Len Brown72945b22006-07-12 22:46:42 -04001111
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001112 dpc = kzalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 if (!dpc)
Lin Ming889c78b2008-12-31 09:23:57 +08001114 return AE_NO_MEMORY;
Linus Torvaldsb976fe12006-11-17 19:31:09 -08001115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 dpc->function = function;
1117 dpc->context = context;
Linus Torvaldsb976fe12006-11-17 19:31:09 -08001118
Zhang Ruic02256b2009-06-23 10:20:29 +08001119 /*
1120 * We can't run hotplug code in keventd_wq/kacpid_wq/kacpid_notify_wq
1121 * because the hotplug code may call driver .remove() functions,
1122 * which invoke flush_scheduled_work/acpi_os_wait_events_complete
1123 * to flush these workqueues.
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001124 *
1125 * To prevent lockdep from complaining unnecessarily, make sure that
1126 * there is a different static lockdep key for each workqueue by using
1127 * INIT_WORK() for each of them separately.
Zhang Ruic02256b2009-06-23 10:20:29 +08001128 */
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001129 if (hp) {
1130 queue = kacpi_hotplug_wq;
1131 dpc->wait = 1;
Zhang Ruibc736752010-03-22 15:48:54 +08001132 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001133 } else if (type == OSL_NOTIFY_HANDLER) {
1134 queue = kacpi_notify_wq;
Zhang Ruibc736752010-03-22 15:48:54 +08001135 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001136 } else {
1137 queue = kacpid_wq;
Zhang Ruibc736752010-03-22 15:48:54 +08001138 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001139 }
Zhang Ruibc736752010-03-22 15:48:54 +08001140
Tejun Heo8fec62b2010-06-29 10:07:09 +02001141 /*
1142 * On some machines, a software-initiated SMI causes corruption unless
1143 * the SMI runs on CPU 0. An SMI can be initiated by any AML, but
1144 * typically it's done in GPE-related methods that are run via
1145 * workqueues, so we can avoid the known corruption cases by always
1146 * queueing on CPU 0.
1147 */
1148 ret = queue_work_on(0, queue, &dpc->work);
Zhang Rui19cd8472008-08-28 10:05:06 +08001149
1150 if (!ret) {
Lin Ming55ac9a02008-09-28 14:51:56 +08001151 printk(KERN_ERR PREFIX
1152 "Call to queue_work() failed.\n");
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +03001153 status = AE_ERROR;
1154 kfree(dpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
Lin Ming889c78b2008-12-31 09:23:57 +08001156 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
Len Brown4be44fc2005-08-05 00:44:28 -04001158
Zhang Rui19cd8472008-08-28 10:05:06 +08001159acpi_status acpi_os_execute(acpi_execute_type type,
1160 acpi_osd_exec_callback function, void *context)
1161{
1162 return __acpi_os_execute(type, function, context, 0);
1163}
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -04001164EXPORT_SYMBOL(acpi_os_execute);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Zhang Rui19cd8472008-08-28 10:05:06 +08001166acpi_status acpi_os_hotplug_execute(acpi_osd_exec_callback function,
1167 void *context)
1168{
1169 return __acpi_os_execute(0, function, context, 1);
1170}
Toshi Kani61622ac2012-11-01 14:42:12 +00001171EXPORT_SYMBOL(acpi_os_hotplug_execute);
Zhang Rui19cd8472008-08-28 10:05:06 +08001172
Lin Mingbd6f10a2012-05-22 16:43:49 +08001173void acpi_os_wait_events_complete(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174{
1175 flush_workqueue(kacpid_wq);
Zhang Rui2f67a062008-04-29 02:34:42 -04001176 flush_workqueue(kacpi_notify_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177}
Len Brown4be44fc2005-08-05 00:44:28 -04001178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179EXPORT_SYMBOL(acpi_os_wait_events_complete);
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001182acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
Len Brown4be44fc2005-08-05 00:44:28 -04001184 struct semaphore *sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 sem = acpi_os_allocate(sizeof(struct semaphore));
1187 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -04001188 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 memset(sem, 0, sizeof(struct semaphore));
1190
1191 sema_init(sem, initial_units);
1192
Len Brown4be44fc2005-08-05 00:44:28 -04001193 *handle = (acpi_handle *) sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Len Brown4be44fc2005-08-05 00:44:28 -04001195 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n",
1196 *handle, initial_units));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Patrick Mocheld550d982006-06-27 00:41:40 -04001198 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201/*
1202 * TODO: A better way to delete semaphores? Linux doesn't have a
1203 * 'delete_semaphore()' function -- may result in an invalid
1204 * pointer dereference for non-synchronized consumers. Should
1205 * we at least check for blocked threads and signal/cancel them?
1206 */
1207
Len Brown4be44fc2005-08-05 00:44:28 -04001208acpi_status acpi_os_delete_semaphore(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209{
Len Brown4be44fc2005-08-05 00:44:28 -04001210 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -04001213 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Len Brown4be44fc2005-08-05 00:44:28 -04001215 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001217 BUG_ON(!list_empty(&sem->wait_list));
Len Brown02438d82006-06-30 03:19:10 -04001218 kfree(sem);
Len Brown4be44fc2005-08-05 00:44:28 -04001219 sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Patrick Mocheld550d982006-06-27 00:41:40 -04001221 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 * TODO: Support for units > 1?
1226 */
Len Brown4be44fc2005-08-05 00:44:28 -04001227acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
Len Brown4be44fc2005-08-05 00:44:28 -04001229 acpi_status status = AE_OK;
1230 struct semaphore *sem = (struct semaphore *)handle;
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001231 long jiffies;
Len Brown4be44fc2005-08-05 00:44:28 -04001232 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001235 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -04001238 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Len Brown4be44fc2005-08-05 00:44:28 -04001240 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n",
1241 handle, units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001243 if (timeout == ACPI_WAIT_FOREVER)
1244 jiffies = MAX_SCHEDULE_TIMEOUT;
1245 else
1246 jiffies = msecs_to_jiffies(timeout);
1247
1248 ret = down_timeout(sem, jiffies);
1249 if (ret)
1250 status = AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
1252 if (ACPI_FAILURE(status)) {
Bjorn Helgaas9e7e2c02006-04-27 05:25:00 -04001253 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -04001254 "Failed to acquire semaphore[%p|%d|%d], %s",
Len Brown4be44fc2005-08-05 00:44:28 -04001255 handle, units, timeout,
1256 acpi_format_exception(status)));
1257 } else {
1258 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -04001259 "Acquired semaphore[%p|%d|%d]", handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001260 units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 }
1262
Patrick Mocheld550d982006-06-27 00:41:40 -04001263 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266/*
1267 * TODO: Support for units > 1?
1268 */
Len Brown4be44fc2005-08-05 00:44:28 -04001269acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
Len Brown4be44fc2005-08-05 00:44:28 -04001271 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001274 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -04001277 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Len Brown4be44fc2005-08-05 00:44:28 -04001279 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle,
1280 units));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 up(sem);
1283
Patrick Mocheld550d982006-06-27 00:41:40 -04001284 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285}
Len Brown4be44fc2005-08-05 00:44:28 -04001286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -04001288u32 acpi_os_get_line(char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
1290
1291#ifdef ENABLE_DEBUGGER
1292 if (acpi_in_debugger) {
1293 u32 chars;
1294
1295 kdb_read(buffer, sizeof(line_buf));
1296
1297 /* remove the CR kdb includes */
1298 chars = strlen(buffer) - 1;
1299 buffer[chars] = '\0';
1300 }
1301#endif
1302
1303 return 0;
1304}
Len Brown4be44fc2005-08-05 00:44:28 -04001305#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Len Brown4be44fc2005-08-05 00:44:28 -04001307acpi_status acpi_os_signal(u32 function, void *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308{
Len Brown4be44fc2005-08-05 00:44:28 -04001309 switch (function) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 case ACPI_SIGNAL_FATAL:
1311 printk(KERN_ERR PREFIX "Fatal opcode executed\n");
1312 break;
1313 case ACPI_SIGNAL_BREAKPOINT:
1314 /*
1315 * AML Breakpoint
1316 * ACPI spec. says to treat it as a NOP unless
1317 * you are debugging. So if/when we integrate
1318 * AML debugger into the kernel debugger its
1319 * hook will go here. But until then it is
1320 * not useful to print anything on breakpoints.
1321 */
1322 break;
1323 default:
1324 break;
1325 }
1326
1327 return AE_OK;
1328}
Len Brown4be44fc2005-08-05 00:44:28 -04001329
Len Brown4be44fc2005-08-05 00:44:28 -04001330static int __init acpi_os_name_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331{
1332 char *p = acpi_os_name;
Len Brown4be44fc2005-08-05 00:44:28 -04001333 int count = ACPI_MAX_OVERRIDE_LEN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 if (!str || !*str)
1336 return 0;
1337
1338 for (; count-- && str && *str; str++) {
1339 if (isalnum(*str) || *str == ' ' || *str == ':')
1340 *p++ = *str;
1341 else if (*str == '\'' || *str == '"')
1342 continue;
1343 else
1344 break;
1345 }
1346 *p = 0;
1347
1348 return 1;
Len Brown4be44fc2005-08-05 00:44:28 -04001349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
1351
1352__setup("acpi_os_name=", acpi_os_name_setup);
1353
Lin Ming12d32062010-12-09 16:51:06 +08001354#define OSI_STRING_LENGTH_MAX 64 /* arbitrary */
1355#define OSI_STRING_ENTRIES_MAX 16 /* arbitrary */
1356
1357struct osi_setup_entry {
1358 char string[OSI_STRING_LENGTH_MAX];
1359 bool enable;
1360};
1361
Hanjun Guoe73d3132013-08-13 18:31:15 +08001362static struct osi_setup_entry
1363 osi_setup_entries[OSI_STRING_ENTRIES_MAX] __initdata = {
Shaohua Liaa165972011-07-28 13:48:43 -07001364 {"Module Device", true},
1365 {"Processor Device", true},
1366 {"3.0 _SCP Extensions", true},
1367 {"Processor Aggregator Device", true},
1368};
Lin Ming12d32062010-12-09 16:51:06 +08001369
Lin Mingd90aa922010-12-09 16:50:52 +08001370void __init acpi_osi_setup(char *str)
1371{
Lin Ming12d32062010-12-09 16:51:06 +08001372 struct osi_setup_entry *osi;
1373 bool enable = true;
1374 int i;
1375
Lin Mingd90aa922010-12-09 16:50:52 +08001376 if (!acpi_gbl_create_osi_method)
1377 return;
1378
1379 if (str == NULL || *str == '\0') {
1380 printk(KERN_INFO PREFIX "_OSI method disabled\n");
1381 acpi_gbl_create_osi_method = FALSE;
Lin Ming12d32062010-12-09 16:51:06 +08001382 return;
1383 }
1384
1385 if (*str == '!') {
1386 str++;
Lv Zheng5dc17982013-07-22 16:08:25 +08001387 if (*str == '\0') {
1388 osi_linux.default_disabling = 1;
1389 return;
Lv Zheng741d8122013-07-22 16:08:36 +08001390 } else if (*str == '*') {
1391 acpi_update_interfaces(ACPI_DISABLE_ALL_STRINGS);
1392 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1393 osi = &osi_setup_entries[i];
1394 osi->enable = false;
1395 }
1396 return;
Lv Zheng5dc17982013-07-22 16:08:25 +08001397 }
Lin Ming12d32062010-12-09 16:51:06 +08001398 enable = false;
1399 }
1400
1401 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1402 osi = &osi_setup_entries[i];
1403 if (!strcmp(osi->string, str)) {
1404 osi->enable = enable;
1405 break;
1406 } else if (osi->string[0] == '\0') {
1407 osi->enable = enable;
1408 strncpy(osi->string, str, OSI_STRING_LENGTH_MAX);
1409 break;
1410 }
1411 }
Lin Mingd90aa922010-12-09 16:50:52 +08001412}
1413
Len Brownd4b7dc42008-01-23 20:50:56 -05001414static void __init set_osi_linux(unsigned int enable)
1415{
Lin Mingd90aa922010-12-09 16:50:52 +08001416 if (osi_linux.enable != enable)
Len Brownd4b7dc42008-01-23 20:50:56 -05001417 osi_linux.enable = enable;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001418
1419 if (osi_linux.enable)
1420 acpi_osi_setup("Linux");
1421 else
1422 acpi_osi_setup("!Linux");
1423
Len Brownd4b7dc42008-01-23 20:50:56 -05001424 return;
1425}
Len Brownf5076542007-05-30 00:10:38 -04001426
Len Brownd4b7dc42008-01-23 20:50:56 -05001427static void __init acpi_cmdline_osi_linux(unsigned int enable)
1428{
Lin Mingd90aa922010-12-09 16:50:52 +08001429 osi_linux.cmdline = 1; /* cmdline set the default and override DMI */
1430 osi_linux.dmi = 0;
Len Brownd4b7dc42008-01-23 20:50:56 -05001431 set_osi_linux(enable);
Len Brownf5076542007-05-30 00:10:38 -04001432
Len Brownd4b7dc42008-01-23 20:50:56 -05001433 return;
1434}
1435
1436void __init acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d)
1437{
Len Brownd4b7dc42008-01-23 20:50:56 -05001438 printk(KERN_NOTICE PREFIX "DMI detected: %s\n", d->ident);
1439
1440 if (enable == -1)
1441 return;
1442
Lin Mingd90aa922010-12-09 16:50:52 +08001443 osi_linux.dmi = 1; /* DMI knows that this box asks OSI(Linux) */
Len Brownd4b7dc42008-01-23 20:50:56 -05001444 set_osi_linux(enable);
1445
Len Brownf5076542007-05-30 00:10:38 -04001446 return;
1447}
1448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449/*
Len Brownae00d812007-05-29 18:43:33 -04001450 * Modify the list of "OS Interfaces" reported to BIOS via _OSI
1451 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 * empty string disables _OSI
Len Brownae00d812007-05-29 18:43:33 -04001453 * string starting with '!' disables that string
1454 * otherwise string is added to list, augmenting built-in strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 */
Lin Mingb0ed7a92010-08-06 09:35:51 +08001456static void __init acpi_osi_setup_late(void)
1457{
Lin Ming12d32062010-12-09 16:51:06 +08001458 struct osi_setup_entry *osi;
1459 char *str;
1460 int i;
Lin Mingd90aa922010-12-09 16:50:52 +08001461 acpi_status status;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001462
Lv Zheng5dc17982013-07-22 16:08:25 +08001463 if (osi_linux.default_disabling) {
1464 status = acpi_update_interfaces(ACPI_DISABLE_ALL_VENDOR_STRINGS);
1465
1466 if (ACPI_SUCCESS(status))
1467 printk(KERN_INFO PREFIX "Disabled all _OSI OS vendors\n");
1468 }
1469
Lin Ming12d32062010-12-09 16:51:06 +08001470 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1471 osi = &osi_setup_entries[i];
1472 str = osi->string;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001473
Lin Ming12d32062010-12-09 16:51:06 +08001474 if (*str == '\0')
1475 break;
1476 if (osi->enable) {
1477 status = acpi_install_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001478
Lin Ming12d32062010-12-09 16:51:06 +08001479 if (ACPI_SUCCESS(status))
1480 printk(KERN_INFO PREFIX "Added _OSI(%s)\n", str);
1481 } else {
1482 status = acpi_remove_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001483
Lin Ming12d32062010-12-09 16:51:06 +08001484 if (ACPI_SUCCESS(status))
1485 printk(KERN_INFO PREFIX "Deleted _OSI(%s)\n", str);
1486 }
Lin Mingb0ed7a92010-08-06 09:35:51 +08001487 }
1488}
1489
Lin Mingd90aa922010-12-09 16:50:52 +08001490static int __init osi_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Lin Mingd90aa922010-12-09 16:50:52 +08001492 if (str && !strcmp("Linux", str))
1493 acpi_cmdline_osi_linux(1);
1494 else if (str && !strcmp("!Linux", str))
1495 acpi_cmdline_osi_linux(0);
1496 else
1497 acpi_osi_setup(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 return 1;
1500}
1501
Lin Mingd90aa922010-12-09 16:50:52 +08001502__setup("acpi_osi=", osi_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504/* enable serialization to combat AE_ALREADY_EXISTS errors */
Len Brown4be44fc2005-08-05 00:44:28 -04001505static int __init acpi_serialize_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506{
1507 printk(KERN_INFO PREFIX "serialize enabled\n");
1508
1509 acpi_gbl_all_methods_serialized = TRUE;
1510
1511 return 1;
1512}
1513
1514__setup("acpi_serialize", acpi_serialize_setup);
1515
Thomas Renningerdf92e692008-02-04 23:31:22 -08001516/* Check of resource interference between native drivers and ACPI
1517 * OperationRegions (SystemIO and System Memory only).
1518 * IO ports and memory declared in ACPI might be used by the ACPI subsystem
1519 * in arbitrary AML code and can interfere with legacy drivers.
1520 * acpi_enforce_resources= can be set to:
1521 *
Luca Tettamanti7e905602009-03-30 00:01:27 +02001522 * - strict (default) (2)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001523 * -> further driver trying to access the resources will not load
Luca Tettamanti7e905602009-03-30 00:01:27 +02001524 * - lax (1)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001525 * -> further driver trying to access the resources will load, but you
1526 * get a system message that something might go wrong...
1527 *
1528 * - no (0)
1529 * -> ACPI Operation Region resources will not be registered
1530 *
1531 */
1532#define ENFORCE_RESOURCES_STRICT 2
1533#define ENFORCE_RESOURCES_LAX 1
1534#define ENFORCE_RESOURCES_NO 0
1535
Luca Tettamanti7e905602009-03-30 00:01:27 +02001536static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001537
1538static int __init acpi_enforce_resources_setup(char *str)
1539{
1540 if (str == NULL || *str == '\0')
1541 return 0;
1542
1543 if (!strcmp("strict", str))
1544 acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1545 else if (!strcmp("lax", str))
1546 acpi_enforce_resources = ENFORCE_RESOURCES_LAX;
1547 else if (!strcmp("no", str))
1548 acpi_enforce_resources = ENFORCE_RESOURCES_NO;
1549
1550 return 1;
1551}
1552
1553__setup("acpi_enforce_resources=", acpi_enforce_resources_setup);
1554
1555/* Check for resource conflicts between ACPI OperationRegions and native
1556 * drivers */
Jean Delvare876fba42009-11-11 15:22:15 +01001557int acpi_check_resource_conflict(const struct resource *res)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001558{
Lin Mingf654c0f2012-01-12 13:10:32 +08001559 acpi_adr_space_type space_id;
1560 acpi_size length;
1561 u8 warn = 0;
1562 int clash = 0;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001563
1564 if (acpi_enforce_resources == ENFORCE_RESOURCES_NO)
1565 return 0;
1566 if (!(res->flags & IORESOURCE_IO) && !(res->flags & IORESOURCE_MEM))
1567 return 0;
1568
Lin Mingf654c0f2012-01-12 13:10:32 +08001569 if (res->flags & IORESOURCE_IO)
1570 space_id = ACPI_ADR_SPACE_SYSTEM_IO;
1571 else
1572 space_id = ACPI_ADR_SPACE_SYSTEM_MEMORY;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001573
Alexandru Gheorghiue4f52242013-03-12 08:53:02 +00001574 length = resource_size(res);
Lin Mingf654c0f2012-01-12 13:10:32 +08001575 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO)
1576 warn = 1;
1577 clash = acpi_check_address_range(space_id, res->start, length, warn);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001578
1579 if (clash) {
1580 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO) {
Jean Delvare14f03342009-09-08 15:31:46 +02001581 if (acpi_enforce_resources == ENFORCE_RESOURCES_LAX)
1582 printk(KERN_NOTICE "ACPI: This conflict may"
1583 " cause random problems and system"
1584 " instability\n");
1585 printk(KERN_INFO "ACPI: If an ACPI driver is available"
1586 " for this device, you should use it instead of"
1587 " the native driver\n");
Thomas Renningerdf92e692008-02-04 23:31:22 -08001588 }
1589 if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT)
1590 return -EBUSY;
1591 }
1592 return 0;
1593}
Thomas Renninger443dea72008-02-04 23:31:23 -08001594EXPORT_SYMBOL(acpi_check_resource_conflict);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001595
1596int acpi_check_region(resource_size_t start, resource_size_t n,
1597 const char *name)
1598{
1599 struct resource res = {
1600 .start = start,
1601 .end = start + n - 1,
1602 .name = name,
1603 .flags = IORESOURCE_IO,
1604 };
1605
1606 return acpi_check_resource_conflict(&res);
1607}
1608EXPORT_SYMBOL(acpi_check_region);
1609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610/*
Jean Delvare70dd6be2010-05-27 19:58:37 +02001611 * Let drivers know whether the resource checks are effective
1612 */
1613int acpi_resources_are_enforced(void)
1614{
1615 return acpi_enforce_resources == ENFORCE_RESOURCES_STRICT;
1616}
1617EXPORT_SYMBOL(acpi_resources_are_enforced);
1618
1619/*
Lin Ming9f63b882011-03-23 17:26:34 +08001620 * Deallocate the memory for a spinlock.
1621 */
1622void acpi_os_delete_lock(acpi_spinlock handle)
1623{
1624 ACPI_FREE(handle);
1625}
1626
1627/*
Robert Moore73459f72005-06-24 00:00:00 -04001628 * Acquire a spinlock.
1629 *
1630 * handle is a pointer to the spinlock_t.
Robert Moore73459f72005-06-24 00:00:00 -04001631 */
1632
Bob Moore967440e32006-06-23 17:04:00 -04001633acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp)
Robert Moore73459f72005-06-24 00:00:00 -04001634{
Bob Mooreb8e4d892006-01-27 16:43:00 -05001635 acpi_cpu_flags flags;
Bob Moore967440e32006-06-23 17:04:00 -04001636 spin_lock_irqsave(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001637 return flags;
1638}
1639
1640/*
1641 * Release a spinlock. See above.
1642 */
1643
Bob Moore967440e32006-06-23 17:04:00 -04001644void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags)
Robert Moore73459f72005-06-24 00:00:00 -04001645{
Bob Moore967440e32006-06-23 17:04:00 -04001646 spin_unlock_irqrestore(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001647}
1648
Robert Moore73459f72005-06-24 00:00:00 -04001649#ifndef ACPI_USE_LOCAL_CACHE
1650
1651/*******************************************************************************
1652 *
1653 * FUNCTION: acpi_os_create_cache
1654 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001655 * PARAMETERS: name - Ascii name for the cache
1656 * size - Size of each cached object
1657 * depth - Maximum depth of the cache (in objects) <ignored>
1658 * cache - Where the new cache object is returned
Robert Moore73459f72005-06-24 00:00:00 -04001659 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001660 * RETURN: status
Robert Moore73459f72005-06-24 00:00:00 -04001661 *
1662 * DESCRIPTION: Create a cache object
1663 *
1664 ******************************************************************************/
1665
1666acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001667acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache)
Robert Moore73459f72005-06-24 00:00:00 -04001668{
Paul Mundt20c2df82007-07-20 10:11:58 +09001669 *cache = kmem_cache_create(name, size, 0, 0, NULL);
Adrian Bunka6fdbf92006-12-19 12:56:13 -08001670 if (*cache == NULL)
Bob Mooreb229cf92006-04-21 17:15:00 -04001671 return AE_ERROR;
1672 else
1673 return AE_OK;
Robert Moore73459f72005-06-24 00:00:00 -04001674}
1675
1676/*******************************************************************************
1677 *
1678 * FUNCTION: acpi_os_purge_cache
1679 *
1680 * PARAMETERS: Cache - Handle to cache object
1681 *
1682 * RETURN: Status
1683 *
1684 * DESCRIPTION: Free all objects within the requested cache.
1685 *
1686 ******************************************************************************/
1687
Len Brown4be44fc2005-08-05 00:44:28 -04001688acpi_status acpi_os_purge_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001689{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001690 kmem_cache_shrink(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001691 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001692}
1693
1694/*******************************************************************************
1695 *
1696 * FUNCTION: acpi_os_delete_cache
1697 *
1698 * PARAMETERS: Cache - Handle to cache object
1699 *
1700 * RETURN: Status
1701 *
1702 * DESCRIPTION: Free all objects within the requested cache and delete the
1703 * cache object.
1704 *
1705 ******************************************************************************/
1706
Len Brown4be44fc2005-08-05 00:44:28 -04001707acpi_status acpi_os_delete_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001708{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001709 kmem_cache_destroy(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001710 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001711}
1712
1713/*******************************************************************************
1714 *
1715 * FUNCTION: acpi_os_release_object
1716 *
1717 * PARAMETERS: Cache - Handle to cache object
1718 * Object - The object to be released
1719 *
1720 * RETURN: None
1721 *
1722 * DESCRIPTION: Release an object to the specified cache. If cache is full,
1723 * the object is deleted.
1724 *
1725 ******************************************************************************/
1726
Len Brown4be44fc2005-08-05 00:44:28 -04001727acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object)
Robert Moore73459f72005-06-24 00:00:00 -04001728{
Len Brown4be44fc2005-08-05 00:44:28 -04001729 kmem_cache_free(cache, object);
1730 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001731}
Robert Moore73459f72005-06-24 00:00:00 -04001732#endif
Myron Stowed362eda2010-10-21 14:24:04 -06001733
Lv Zhengb75dd292013-06-08 00:58:48 +00001734static int __init acpi_no_auto_ssdt_setup(char *s)
1735{
1736 printk(KERN_NOTICE PREFIX "SSDT auto-load disabled\n");
1737
1738 acpi_gbl_disable_ssdt_table_load = TRUE;
1739
1740 return 1;
1741}
1742
1743__setup("acpi_no_auto_ssdt", acpi_no_auto_ssdt_setup);
1744
Myron Stowed362eda2010-10-21 14:24:04 -06001745acpi_status __init acpi_os_initialize(void)
1746{
1747 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1748 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1749 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe0_block);
1750 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe1_block);
1751
1752 return AE_OK;
1753}
1754
Zhang Rui32d47ee2010-12-08 10:40:36 +08001755acpi_status __init acpi_os_initialize1(void)
Myron Stowed362eda2010-10-21 14:24:04 -06001756{
Tejun Heo44d25882011-02-01 11:42:42 +01001757 kacpid_wq = alloc_workqueue("kacpid", 0, 1);
1758 kacpi_notify_wq = alloc_workqueue("kacpi_notify", 0, 1);
1759 kacpi_hotplug_wq = alloc_workqueue("kacpi_hotplug", 0, 1);
Myron Stowed362eda2010-10-21 14:24:04 -06001760 BUG_ON(!kacpid_wq);
1761 BUG_ON(!kacpi_notify_wq);
1762 BUG_ON(!kacpi_hotplug_wq);
Len Brown1bd64d42010-10-26 14:50:56 -04001763 acpi_install_interface_handler(acpi_osi_handler);
1764 acpi_osi_setup_late();
Myron Stowed362eda2010-10-21 14:24:04 -06001765 return AE_OK;
1766}
1767
1768acpi_status acpi_os_terminate(void)
1769{
1770 if (acpi_irq_handler) {
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +01001771 acpi_os_remove_interrupt_handler(acpi_gbl_FADT.sci_interrupt,
Myron Stowed362eda2010-10-21 14:24:04 -06001772 acpi_irq_handler);
1773 }
1774
1775 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe1_block);
1776 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe0_block);
1777 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1778 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1779
1780 destroy_workqueue(kacpid_wq);
1781 destroy_workqueue(kacpi_notify_wq);
1782 destroy_workqueue(kacpi_hotplug_wq);
1783
1784 return AE_OK;
1785}
Tang Liang09f98a82011-12-09 10:05:54 +08001786
1787acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control,
1788 u32 pm1b_control)
1789{
1790 int rc = 0;
1791 if (__acpi_os_prepare_sleep)
1792 rc = __acpi_os_prepare_sleep(sleep_state,
1793 pm1a_control, pm1b_control);
1794 if (rc < 0)
1795 return AE_ERROR;
1796 else if (rc > 0)
1797 return AE_CTRL_SKIP;
1798
1799 return AE_OK;
1800}
1801
1802void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state,
1803 u32 pm1a_ctrl, u32 pm1b_ctrl))
1804{
1805 __acpi_os_prepare_sleep = func;
1806}
Yinghai Lu92d8aff2013-01-21 13:20:47 -08001807
Ben Guthrod6b47b12013-07-30 08:24:52 -04001808acpi_status acpi_os_prepare_extended_sleep(u8 sleep_state, u32 val_a,
1809 u32 val_b)
1810{
1811 int rc = 0;
1812 if (__acpi_os_prepare_extended_sleep)
1813 rc = __acpi_os_prepare_extended_sleep(sleep_state,
1814 val_a, val_b);
1815 if (rc < 0)
1816 return AE_ERROR;
1817 else if (rc > 0)
1818 return AE_CTRL_SKIP;
1819
1820 return AE_OK;
1821}
1822
1823void acpi_os_set_prepare_extended_sleep(int (*func)(u8 sleep_state,
1824 u32 val_a, u32 val_b))
1825{
1826 __acpi_os_prepare_extended_sleep = func;
1827}
1828
1829
Yinghai Lu92d8aff2013-01-21 13:20:47 -08001830void alloc_acpi_hp_work(acpi_handle handle, u32 type, void *context,
1831 void (*func)(struct work_struct *work))
1832{
1833 struct acpi_hp_work *hp_work;
1834 int ret;
1835
1836 hp_work = kmalloc(sizeof(*hp_work), GFP_KERNEL);
1837 if (!hp_work)
1838 return;
1839
1840 hp_work->handle = handle;
1841 hp_work->type = type;
1842 hp_work->context = context;
1843
1844 INIT_WORK(&hp_work->work, func);
1845 ret = queue_work(kacpi_hotplug_wq, &hp_work->work);
1846 if (!ret)
1847 kfree(hp_work);
1848}
1849EXPORT_SYMBOL_GPL(alloc_acpi_hp_work);