blob: 6bc08272f0503f6e86b005ce4251e9757415f52f [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);
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static acpi_osd_handler acpi_irq_handler;
85static void *acpi_irq_context;
86static struct workqueue_struct *kacpid_wq;
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -040087static struct workqueue_struct *kacpi_notify_wq;
Yinghai Lu92d8aff2013-01-21 13:20:47 -080088static struct workqueue_struct *kacpi_hotplug_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Myron Stowe620242a2010-10-21 14:23:53 -060090/*
91 * This list of permanent mappings is for memory that may be accessed from
92 * interrupt context, where we can't do the ioremap().
93 */
94struct acpi_ioremap {
95 struct list_head list;
96 void __iomem *virt;
97 acpi_physical_address phys;
98 acpi_size size;
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +010099 unsigned long refcount;
Myron Stowe620242a2010-10-21 14:23:53 -0600100};
101
102static LIST_HEAD(acpi_ioremaps);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100103static DEFINE_MUTEX(acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600104
Lin Mingb0ed7a92010-08-06 09:35:51 +0800105static void __init acpi_osi_setup_late(void);
Len Brownae00d812007-05-29 18:43:33 -0400106
Len Brownd4b7dc42008-01-23 20:50:56 -0500107/*
Len Browna6e08872008-11-08 01:21:10 -0500108 * The story of _OSI(Linux)
Len Brownd4b7dc42008-01-23 20:50:56 -0500109 *
Len Browna6e08872008-11-08 01:21:10 -0500110 * From pre-history through Linux-2.6.22,
111 * Linux responded TRUE upon a BIOS OSI(Linux) query.
Len Brownd4b7dc42008-01-23 20:50:56 -0500112 *
Len Browna6e08872008-11-08 01:21:10 -0500113 * Unfortunately, reference BIOS writers got wind of this
114 * and put OSI(Linux) in their example code, quickly exposing
115 * this string as ill-conceived and opening the door to
116 * an un-bounded number of BIOS incompatibilities.
Len Brownd4b7dc42008-01-23 20:50:56 -0500117 *
Len Browna6e08872008-11-08 01:21:10 -0500118 * For example, OSI(Linux) was used on resume to re-POST a
119 * video card on one system, because Linux at that time
120 * could not do a speedy restore in its native driver.
121 * But then upon gaining quick native restore capability,
122 * Linux has no way to tell the BIOS to skip the time-consuming
123 * POST -- putting Linux at a permanent performance disadvantage.
124 * On another system, the BIOS writer used OSI(Linux)
125 * to infer native OS support for IPMI! On other systems,
126 * OSI(Linux) simply got in the way of Linux claiming to
127 * be compatible with other operating systems, exposing
128 * BIOS issues such as skipped device initialization.
Len Brownd4b7dc42008-01-23 20:50:56 -0500129 *
Len Browna6e08872008-11-08 01:21:10 -0500130 * So "Linux" turned out to be a really poor chose of
131 * OSI string, and from Linux-2.6.23 onward we respond FALSE.
Len Brownd4b7dc42008-01-23 20:50:56 -0500132 *
133 * BIOS writers should NOT query _OSI(Linux) on future systems.
Len Browna6e08872008-11-08 01:21:10 -0500134 * Linux will complain on the console when it sees it, and return FALSE.
135 * To get Linux to return TRUE for your system will require
136 * a kernel source update to add a DMI entry,
137 * or boot with "acpi_osi=Linux"
Len Brownd4b7dc42008-01-23 20:50:56 -0500138 */
Len Brownd4b7dc42008-01-23 20:50:56 -0500139
Adrian Bunk1d15d842008-01-29 00:10:15 +0200140static struct osi_linux {
Len Brownd4b7dc42008-01-23 20:50:56 -0500141 unsigned int enable:1;
142 unsigned int dmi:1;
143 unsigned int cmdline:1;
Lin Mingd90aa922010-12-09 16:50:52 +0800144} osi_linux = {0, 0, 0};
Len Brownf5076542007-05-30 00:10:38 -0400145
Lin Mingb0ed7a92010-08-06 09:35:51 +0800146static u32 acpi_osi_handler(acpi_string interface, u32 supported)
147{
148 if (!strcmp("Linux", interface)) {
149
Len Brown89976212011-08-02 00:45:48 -0400150 printk_once(KERN_NOTICE FW_BUG PREFIX
Lin Mingb0ed7a92010-08-06 09:35:51 +0800151 "BIOS _OSI(Linux) query %s%s\n",
152 osi_linux.enable ? "honored" : "ignored",
153 osi_linux.cmdline ? " via cmdline" :
154 osi_linux.dmi ? " via DMI" : "");
155 }
156
157 return supported;
158}
159
Myron Stowebc9ffce2011-11-07 16:23:27 -0700160static void __init acpi_request_region (struct acpi_generic_address *gas,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700161 unsigned int length, char *desc)
162{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700163 u64 addr;
164
165 /* Handle possible alignment issues */
166 memcpy(&addr, &gas->address, sizeof(addr));
167 if (!addr || !length)
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700168 return;
169
Andi Kleencfa806f2010-07-20 15:18:36 -0700170 /* Resources are never freed */
Myron Stowebc9ffce2011-11-07 16:23:27 -0700171 if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_IO)
172 request_region(addr, length, desc);
173 else if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
174 request_mem_region(addr, length, desc);
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700175}
176
177static int __init acpi_reserve_resources(void)
178{
Len Browneee3c852007-02-03 01:38:16 -0500179 acpi_request_region(&acpi_gbl_FADT.xpm1a_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700180 "ACPI PM1a_EVT_BLK");
181
Len Browneee3c852007-02-03 01:38:16 -0500182 acpi_request_region(&acpi_gbl_FADT.xpm1b_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700183 "ACPI PM1b_EVT_BLK");
184
Len Browneee3c852007-02-03 01:38:16 -0500185 acpi_request_region(&acpi_gbl_FADT.xpm1a_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700186 "ACPI PM1a_CNT_BLK");
187
Len Browneee3c852007-02-03 01:38:16 -0500188 acpi_request_region(&acpi_gbl_FADT.xpm1b_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700189 "ACPI PM1b_CNT_BLK");
190
Len Browneee3c852007-02-03 01:38:16 -0500191 if (acpi_gbl_FADT.pm_timer_length == 4)
192 acpi_request_region(&acpi_gbl_FADT.xpm_timer_block, 4, "ACPI PM_TMR");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700193
Len Browneee3c852007-02-03 01:38:16 -0500194 acpi_request_region(&acpi_gbl_FADT.xpm2_control_block, acpi_gbl_FADT.pm2_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700195 "ACPI PM2_CNT_BLK");
196
197 /* Length of GPE blocks must be a non-negative multiple of 2 */
198
Len Browneee3c852007-02-03 01:38:16 -0500199 if (!(acpi_gbl_FADT.gpe0_block_length & 0x1))
200 acpi_request_region(&acpi_gbl_FADT.xgpe0_block,
201 acpi_gbl_FADT.gpe0_block_length, "ACPI GPE0_BLK");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700202
Len Browneee3c852007-02-03 01:38:16 -0500203 if (!(acpi_gbl_FADT.gpe1_block_length & 0x1))
204 acpi_request_region(&acpi_gbl_FADT.xgpe1_block,
205 acpi_gbl_FADT.gpe1_block_length, "ACPI GPE1_BLK");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700206
207 return 0;
208}
209device_initcall(acpi_reserve_resources);
210
Len Brown4be44fc2005-08-05 00:44:28 -0400211void acpi_os_printf(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 va_list args;
214 va_start(args, fmt);
215 acpi_os_vprintf(fmt, args);
216 va_end(args);
217}
Len Brown4be44fc2005-08-05 00:44:28 -0400218
Len Brown4be44fc2005-08-05 00:44:28 -0400219void acpi_os_vprintf(const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 static char buffer[512];
Len Brown4be44fc2005-08-05 00:44:28 -0400222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 vsprintf(buffer, fmt, args);
224
225#ifdef ENABLE_DEBUGGER
226 if (acpi_in_debugger) {
227 kdb_printf("%s", buffer);
228 } else {
Frank Seidel4d939152009-02-04 17:03:07 +0100229 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
231#else
Frank Seidel4d939152009-02-04 17:03:07 +0100232 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233#endif
234}
235
Takao Indoh4996c022011-07-14 18:05:21 -0400236#ifdef CONFIG_KEXEC
237static unsigned long acpi_rsdp;
238static int __init setup_acpi_rsdp(char *arg)
239{
240 acpi_rsdp = simple_strtoul(arg, NULL, 16);
241 return 0;
242}
243early_param("acpi_rsdp", setup_acpi_rsdp);
244#endif
245
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300246acpi_physical_address __init acpi_os_get_root_pointer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Takao Indoh4996c022011-07-14 18:05:21 -0400248#ifdef CONFIG_KEXEC
249 if (acpi_rsdp)
250 return acpi_rsdp;
251#endif
252
Matt Fleming83e68182012-11-14 09:42:35 +0000253 if (efi_enabled(EFI_CONFIG_TABLES)) {
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800254 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300255 return efi.acpi20;
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800256 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300257 return efi.acpi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400259 printk(KERN_ERR PREFIX
260 "System description tables not found\n");
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300261 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
Len Brown239665a2007-11-23 20:08:02 -0500263 } else {
264 acpi_physical_address pa = 0;
265
266 acpi_find_root_pointer(&pa);
267 return pa;
268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600271/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
Myron Stowe4a3cba52010-10-21 14:24:14 -0600272static struct acpi_ioremap *
273acpi_map_lookup(acpi_physical_address phys, acpi_size size)
Myron Stowe620242a2010-10-21 14:23:53 -0600274{
275 struct acpi_ioremap *map;
276
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600277 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
Myron Stowe620242a2010-10-21 14:23:53 -0600278 if (map->phys <= phys &&
279 phys + size <= map->phys + map->size)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600280 return map;
281
282 return NULL;
283}
284
285/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
286static void __iomem *
287acpi_map_vaddr_lookup(acpi_physical_address phys, unsigned int size)
288{
289 struct acpi_ioremap *map;
290
291 map = acpi_map_lookup(phys, size);
292 if (map)
293 return map->virt + (phys - map->phys);
Myron Stowe620242a2010-10-21 14:23:53 -0600294
295 return NULL;
296}
297
Rafael J. Wysocki13606a22011-02-08 23:38:25 +0100298void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size)
299{
300 struct acpi_ioremap *map;
301 void __iomem *virt = NULL;
302
303 mutex_lock(&acpi_ioremap_lock);
304 map = acpi_map_lookup(phys, size);
305 if (map) {
306 virt = map->virt + (phys - map->phys);
307 map->refcount++;
308 }
309 mutex_unlock(&acpi_ioremap_lock);
310 return virt;
311}
312EXPORT_SYMBOL_GPL(acpi_os_get_iomem);
313
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600314/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
Myron Stowe620242a2010-10-21 14:23:53 -0600315static struct acpi_ioremap *
316acpi_map_lookup_virt(void __iomem *virt, acpi_size size)
317{
318 struct acpi_ioremap *map;
319
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600320 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600321 if (map->virt <= virt &&
322 virt + size <= map->virt + map->size)
Myron Stowe620242a2010-10-21 14:23:53 -0600323 return map;
324
325 return NULL;
326}
327
Myron Stoweba242d52012-01-20 19:13:30 -0700328#ifndef CONFIG_IA64
329#define should_use_kmap(pfn) page_is_ram(pfn)
330#else
331/* ioremap will take care of cache attributes */
332#define should_use_kmap(pfn) 0
333#endif
334
335static void __iomem *acpi_map(acpi_physical_address pg_off, unsigned long pg_sz)
336{
337 unsigned long pfn;
338
339 pfn = pg_off >> PAGE_SHIFT;
340 if (should_use_kmap(pfn)) {
341 if (pg_sz > PAGE_SIZE)
342 return NULL;
343 return (void __iomem __force *)kmap(pfn_to_page(pfn));
344 } else
345 return acpi_os_ioremap(pg_off, pg_sz);
346}
347
348static void acpi_unmap(acpi_physical_address pg_off, void __iomem *vaddr)
349{
350 unsigned long pfn;
351
352 pfn = pg_off >> PAGE_SHIFT;
Jan Beuliche2526752012-02-24 11:41:53 +0000353 if (should_use_kmap(pfn))
Myron Stoweba242d52012-01-20 19:13:30 -0700354 kunmap(pfn_to_page(pfn));
355 else
356 iounmap(vaddr);
357}
358
Jan Beulich2fdf0742007-12-13 08:33:59 +0000359void __iomem *__init_refok
360acpi_os_map_memory(acpi_physical_address phys, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100362 struct acpi_ioremap *map;
Myron Stowe620242a2010-10-21 14:23:53 -0600363 void __iomem *virt;
Rafael J. Wysocki2d6d9fd2011-01-19 22:27:14 +0100364 acpi_physical_address pg_off;
365 acpi_size pg_sz;
Myron Stowe620242a2010-10-21 14:23:53 -0600366
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800367 if (phys > ULONG_MAX) {
368 printk(KERN_ERR PREFIX "Cannot map memory that high\n");
Randy Dunlap70c08462007-02-13 16:11:36 -0800369 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
Myron Stowe620242a2010-10-21 14:23:53 -0600371
372 if (!acpi_gbl_permanent_mmap)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300373 return __acpi_map_table((unsigned long)phys, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600374
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100375 mutex_lock(&acpi_ioremap_lock);
376 /* Check if there's a suitable mapping already. */
377 map = acpi_map_lookup(phys, size);
378 if (map) {
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100379 map->refcount++;
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100380 goto out;
381 }
382
Myron Stowe620242a2010-10-21 14:23:53 -0600383 map = kzalloc(sizeof(*map), GFP_KERNEL);
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100384 if (!map) {
385 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600386 return NULL;
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100387 }
Myron Stowe620242a2010-10-21 14:23:53 -0600388
Myron Stowe4a3cba52010-10-21 14:24:14 -0600389 pg_off = round_down(phys, PAGE_SIZE);
390 pg_sz = round_up(phys + size, PAGE_SIZE) - pg_off;
Myron Stoweba242d52012-01-20 19:13:30 -0700391 virt = acpi_map(pg_off, pg_sz);
Myron Stowe620242a2010-10-21 14:23:53 -0600392 if (!virt) {
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100393 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600394 kfree(map);
395 return NULL;
396 }
397
398 INIT_LIST_HEAD(&map->list);
399 map->virt = virt;
Myron Stowe4a3cba52010-10-21 14:24:14 -0600400 map->phys = pg_off;
401 map->size = pg_sz;
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100402 map->refcount = 1;
Myron Stowe620242a2010-10-21 14:23:53 -0600403
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600404 list_add_tail_rcu(&map->list, &acpi_ioremaps);
Myron Stowe620242a2010-10-21 14:23:53 -0600405
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100406 out:
407 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe4a3cba52010-10-21 14:24:14 -0600408 return map->virt + (phys - map->phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800410EXPORT_SYMBOL_GPL(acpi_os_map_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100412static void acpi_os_drop_map_ref(struct acpi_ioremap *map)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600413{
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100414 if (!--map->refcount)
415 list_del_rcu(&map->list);
Myron Stowe4a3cba52010-10-21 14:24:14 -0600416}
Myron Stowe4a3cba52010-10-21 14:24:14 -0600417
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100418static void acpi_os_map_cleanup(struct acpi_ioremap *map)
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100419{
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100420 if (!map->refcount) {
421 synchronize_rcu();
Myron Stoweba242d52012-01-20 19:13:30 -0700422 acpi_unmap(map->phys, map->virt);
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100423 kfree(map);
424 }
Myron Stowe4a3cba52010-10-21 14:24:14 -0600425}
426
Jeremy Fitzhardinge0d3a9cf2009-02-22 14:58:56 -0800427void __ref acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Myron Stowe620242a2010-10-21 14:23:53 -0600429 struct acpi_ioremap *map;
Myron Stowe620242a2010-10-21 14:23:53 -0600430
431 if (!acpi_gbl_permanent_mmap) {
Yinghai Lu7d972772009-02-07 15:39:41 -0800432 __acpi_unmap_table(virt, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600433 return;
434 }
435
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100436 mutex_lock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600437 map = acpi_map_lookup_virt(virt, size);
438 if (!map) {
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100439 mutex_unlock(&acpi_ioremap_lock);
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100440 WARN(true, PREFIX "%s: bad address %p\n", __func__, virt);
Myron Stowe620242a2010-10-21 14:23:53 -0600441 return;
442 }
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100443 acpi_os_drop_map_ref(map);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100444 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600445
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100446 acpi_os_map_cleanup(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800448EXPORT_SYMBOL_GPL(acpi_os_unmap_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Jeremy Fitzhardinge0d3a9cf2009-02-22 14:58:56 -0800450void __init early_acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
Yinghai Lu7d972772009-02-07 15:39:41 -0800451{
452 if (!acpi_gbl_permanent_mmap)
453 __acpi_unmap_table(virt, size);
454}
455
Myron Stowe6f68c912011-11-07 16:23:34 -0700456int acpi_os_map_generic_address(struct acpi_generic_address *gas)
Myron Stowe29718522010-10-21 14:23:59 -0600457{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700458 u64 addr;
Myron Stowe29718522010-10-21 14:23:59 -0600459 void __iomem *virt;
460
Myron Stowebc9ffce2011-11-07 16:23:27 -0700461 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
Myron Stowe29718522010-10-21 14:23:59 -0600462 return 0;
463
Myron Stowebc9ffce2011-11-07 16:23:27 -0700464 /* Handle possible alignment issues */
465 memcpy(&addr, &gas->address, sizeof(addr));
466 if (!addr || !gas->bit_width)
Myron Stowe29718522010-10-21 14:23:59 -0600467 return -EINVAL;
468
Myron Stowebc9ffce2011-11-07 16:23:27 -0700469 virt = acpi_os_map_memory(addr, gas->bit_width / 8);
Myron Stowe29718522010-10-21 14:23:59 -0600470 if (!virt)
471 return -EIO;
472
473 return 0;
474}
Myron Stowe6f68c912011-11-07 16:23:34 -0700475EXPORT_SYMBOL(acpi_os_map_generic_address);
Myron Stowe29718522010-10-21 14:23:59 -0600476
Myron Stowe6f68c912011-11-07 16:23:34 -0700477void acpi_os_unmap_generic_address(struct acpi_generic_address *gas)
Myron Stowe29718522010-10-21 14:23:59 -0600478{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700479 u64 addr;
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100480 struct acpi_ioremap *map;
Myron Stowe29718522010-10-21 14:23:59 -0600481
Myron Stowebc9ffce2011-11-07 16:23:27 -0700482 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
Myron Stowe29718522010-10-21 14:23:59 -0600483 return;
484
Myron Stowebc9ffce2011-11-07 16:23:27 -0700485 /* Handle possible alignment issues */
486 memcpy(&addr, &gas->address, sizeof(addr));
487 if (!addr || !gas->bit_width)
Myron Stowe29718522010-10-21 14:23:59 -0600488 return;
489
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100490 mutex_lock(&acpi_ioremap_lock);
Myron Stowebc9ffce2011-11-07 16:23:27 -0700491 map = acpi_map_lookup(addr, gas->bit_width / 8);
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100492 if (!map) {
493 mutex_unlock(&acpi_ioremap_lock);
494 return;
495 }
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100496 acpi_os_drop_map_ref(map);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100497 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe29718522010-10-21 14:23:59 -0600498
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100499 acpi_os_map_cleanup(map);
Myron Stowe29718522010-10-21 14:23:59 -0600500}
Myron Stowe6f68c912011-11-07 16:23:34 -0700501EXPORT_SYMBOL(acpi_os_unmap_generic_address);
Myron Stowe29718522010-10-21 14:23:59 -0600502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503#ifdef ACPI_FUTURE_USAGE
504acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400505acpi_os_get_physical_address(void *virt, acpi_physical_address * phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Len Brown4be44fc2005-08-05 00:44:28 -0400507 if (!phys || !virt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 return AE_BAD_PARAMETER;
509
510 *phys = virt_to_phys(virt);
511
512 return AE_OK;
513}
514#endif
515
516#define ACPI_MAX_OVERRIDE_LEN 100
517
518static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN];
519
520acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400521acpi_os_predefined_override(const struct acpi_predefined_names *init_val,
522 acpi_string * new_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524 if (!init_val || !new_val)
525 return AE_BAD_PARAMETER;
526
527 *new_val = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400528 if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400530 acpi_os_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 *new_val = acpi_os_name;
532 }
533
534 return AE_OK;
535}
536
Thomas Renninger53aac442012-10-01 00:23:54 +0200537#ifdef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
538#include <linux/earlycpio.h>
539#include <linux/memblock.h>
540
541static u64 acpi_tables_addr;
542static int all_tables_size;
543
544/* Copied from acpica/tbutils.c:acpi_tb_checksum() */
545u8 __init acpi_table_checksum(u8 *buffer, u32 length)
546{
547 u8 sum = 0;
548 u8 *end = buffer + length;
549
550 while (buffer < end)
551 sum = (u8) (sum + *(buffer++));
552 return sum;
553}
554
555/* All but ACPI_SIG_RSDP and ACPI_SIG_FACS: */
556static const char * const table_sigs[] = {
557 ACPI_SIG_BERT, ACPI_SIG_CPEP, ACPI_SIG_ECDT, ACPI_SIG_EINJ,
558 ACPI_SIG_ERST, ACPI_SIG_HEST, ACPI_SIG_MADT, ACPI_SIG_MSCT,
559 ACPI_SIG_SBST, ACPI_SIG_SLIT, ACPI_SIG_SRAT, ACPI_SIG_ASF,
560 ACPI_SIG_BOOT, ACPI_SIG_DBGP, ACPI_SIG_DMAR, ACPI_SIG_HPET,
561 ACPI_SIG_IBFT, ACPI_SIG_IVRS, ACPI_SIG_MCFG, ACPI_SIG_MCHI,
562 ACPI_SIG_SLIC, ACPI_SIG_SPCR, ACPI_SIG_SPMI, ACPI_SIG_TCPA,
563 ACPI_SIG_UEFI, ACPI_SIG_WAET, ACPI_SIG_WDAT, ACPI_SIG_WDDT,
564 ACPI_SIG_WDRT, ACPI_SIG_DSDT, ACPI_SIG_FADT, ACPI_SIG_PSDT,
565 ACPI_SIG_RSDT, ACPI_SIG_XSDT, ACPI_SIG_SSDT, NULL };
566
Thomas Renninger53aac442012-10-01 00:23:54 +0200567#define ACPI_HEADER_SIZE sizeof(struct acpi_table_header)
568
569/* Must not increase 10 or needs code modification below */
570#define ACPI_OVERRIDE_TABLES 10
571
572void __init acpi_initrd_override(void *data, size_t size)
573{
574 int sig, no, table_nr = 0, total_offset = 0;
575 long offset = 0;
576 struct acpi_table_header *table;
577 char cpio_path[32] = "kernel/firmware/acpi/";
578 struct cpio_data file;
579 struct cpio_data early_initrd_files[ACPI_OVERRIDE_TABLES];
580 char *p;
581
582 if (data == NULL || size == 0)
583 return;
584
585 for (no = 0; no < ACPI_OVERRIDE_TABLES; no++) {
586 file = find_cpio_data(cpio_path, data, size, &offset);
587 if (!file.data)
588 break;
589
590 data += offset;
591 size -= offset;
592
Tang Chen7702ae02013-08-14 17:37:08 +0800593 if (file.size < sizeof(struct acpi_table_header)) {
594 pr_err("ACPI OVERRIDE: Table smaller than ACPI header [%s%s]\n",
595 cpio_path, file.name);
596 continue;
597 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200598
599 table = file.data;
600
601 for (sig = 0; table_sigs[sig]; sig++)
602 if (!memcmp(table->signature, table_sigs[sig], 4))
603 break;
604
Tang Chen7702ae02013-08-14 17:37:08 +0800605 if (!table_sigs[sig]) {
606 pr_err("ACPI OVERRIDE: Unknown signature [%s%s]\n",
607 cpio_path, file.name);
608 continue;
609 }
610 if (file.size != table->length) {
611 pr_err("ACPI OVERRIDE: File length does not match table length [%s%s]\n",
612 cpio_path, file.name);
613 continue;
614 }
615 if (acpi_table_checksum(file.data, table->length)) {
616 pr_err("ACPI OVERRIDE: Bad table checksum [%s%s]\n",
617 cpio_path, file.name);
618 continue;
619 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200620
621 pr_info("%4.4s ACPI table found in initrd [%s%s][0x%x]\n",
622 table->signature, cpio_path, file.name, table->length);
623
624 all_tables_size += table->length;
625 early_initrd_files[table_nr].data = file.data;
626 early_initrd_files[table_nr].size = file.size;
627 table_nr++;
628 }
629 if (table_nr == 0)
630 return;
631
632 acpi_tables_addr =
633 memblock_find_in_range(0, max_low_pfn_mapped << PAGE_SHIFT,
634 all_tables_size, PAGE_SIZE);
635 if (!acpi_tables_addr) {
636 WARN_ON(1);
637 return;
638 }
639 /*
640 * Only calling e820_add_reserve does not work and the
641 * tables are invalid (memory got used) later.
642 * memblock_reserve works as expected and the tables won't get modified.
643 * But it's not enough on X86 because ioremap will
644 * complain later (used by acpi_os_map_memory) that the pages
645 * that should get mapped are not marked "reserved".
646 * Both memblock_reserve and e820_add_region (via arch_reserve_mem_area)
647 * works fine.
648 */
Wang YanQinga6432de2013-04-23 01:19:19 +0200649 memblock_reserve(acpi_tables_addr, all_tables_size);
Thomas Renninger53aac442012-10-01 00:23:54 +0200650 arch_reserve_mem_area(acpi_tables_addr, all_tables_size);
651
652 p = early_ioremap(acpi_tables_addr, all_tables_size);
653
654 for (no = 0; no < table_nr; no++) {
655 memcpy(p + total_offset, early_initrd_files[no].data,
656 early_initrd_files[no].size);
657 total_offset += early_initrd_files[no].size;
658 }
659 early_iounmap(p, all_tables_size);
660}
661#endif /* CONFIG_ACPI_INITRD_TABLE_OVERRIDE */
662
Thomas Renninger325a8d362012-10-01 00:23:56 +0200663static void acpi_table_taint(struct acpi_table_header *table)
664{
665 pr_warn(PREFIX
666 "Override [%4.4s-%8.8s], this is unsafe: tainting kernel\n",
667 table->signature, table->oem_table_id);
Rusty Russell373d4d02013-01-21 17:17:39 +1030668 add_taint(TAINT_OVERRIDDEN_ACPI_TABLE, LOCKDEP_NOW_UNRELIABLE);
Thomas Renninger325a8d362012-10-01 00:23:56 +0200669}
670
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400673acpi_os_table_override(struct acpi_table_header * existing_table,
674 struct acpi_table_header ** new_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
676 if (!existing_table || !new_table)
677 return AE_BAD_PARAMETER;
678
Markus Gaugusch71fc47a2008-02-05 00:04:06 +0100679 *new_table = NULL;
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681#ifdef CONFIG_ACPI_CUSTOM_DSDT
682 if (strncmp(existing_table->signature, "DSDT", 4) == 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400683 *new_table = (struct acpi_table_header *)AmlCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684#endif
Thomas Renninger325a8d362012-10-01 00:23:56 +0200685 if (*new_table != NULL)
686 acpi_table_taint(existing_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return AE_OK;
688}
689
Bob Mooref7b004a2012-02-14 18:31:56 +0800690acpi_status
691acpi_os_physical_table_override(struct acpi_table_header *existing_table,
Thomas Renningerb2a35002012-10-01 00:23:55 +0200692 acpi_physical_address *address,
693 u32 *table_length)
Bob Mooref7b004a2012-02-14 18:31:56 +0800694{
Thomas Renningerb2a35002012-10-01 00:23:55 +0200695#ifndef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
696 *table_length = 0;
697 *address = 0;
698 return AE_OK;
699#else
700 int table_offset = 0;
701 struct acpi_table_header *table;
Bob Mooref7b004a2012-02-14 18:31:56 +0800702
Thomas Renningerb2a35002012-10-01 00:23:55 +0200703 *table_length = 0;
704 *address = 0;
705
706 if (!acpi_tables_addr)
707 return AE_OK;
708
709 do {
710 if (table_offset + ACPI_HEADER_SIZE > all_tables_size) {
711 WARN_ON(1);
712 return AE_OK;
713 }
714
715 table = acpi_os_map_memory(acpi_tables_addr + table_offset,
716 ACPI_HEADER_SIZE);
717
718 if (table_offset + table->length > all_tables_size) {
719 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
720 WARN_ON(1);
721 return AE_OK;
722 }
723
724 table_offset += table->length;
725
726 if (memcmp(existing_table->signature, table->signature, 4)) {
727 acpi_os_unmap_memory(table,
728 ACPI_HEADER_SIZE);
729 continue;
730 }
731
732 /* Only override tables with matching oem id */
733 if (memcmp(table->oem_table_id, existing_table->oem_table_id,
734 ACPI_OEM_TABLE_ID_SIZE)) {
735 acpi_os_unmap_memory(table,
736 ACPI_HEADER_SIZE);
737 continue;
738 }
739
740 table_offset -= table->length;
741 *table_length = table->length;
742 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
743 *address = acpi_tables_addr + table_offset;
744 break;
745 } while (table_offset + ACPI_HEADER_SIZE < all_tables_size);
746
Thomas Renninger325a8d362012-10-01 00:23:56 +0200747 if (*address != 0)
748 acpi_table_taint(existing_table);
Thomas Renningerb2a35002012-10-01 00:23:55 +0200749 return AE_OK;
750#endif
751}
Bob Mooref7b004a2012-02-14 18:31:56 +0800752
David Howells7d12e782006-10-05 14:55:46 +0100753static irqreturn_t acpi_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
Len Brown5229e872008-02-06 01:26:55 -0500755 u32 handled;
756
757 handled = (*acpi_irq_handler) (acpi_irq_context);
758
759 if (handled) {
760 acpi_irq_handled++;
761 return IRQ_HANDLED;
Len Brown88bea182009-04-21 00:35:47 -0400762 } else {
763 acpi_irq_not_handled++;
Len Brown5229e872008-02-06 01:26:55 -0500764 return IRQ_NONE;
Len Brown88bea182009-04-21 00:35:47 -0400765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
768acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400769acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
770 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
772 unsigned int irq;
773
Len Brown5229e872008-02-06 01:26:55 -0500774 acpi_irq_stats_init();
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 /*
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100777 * ACPI interrupts different from the SCI in our copy of the FADT are
778 * not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 */
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100780 if (gsi != acpi_gbl_FADT.sci_interrupt)
781 return AE_BAD_PARAMETER;
782
783 if (acpi_irq_handler)
784 return AE_ALREADY_ACQUIRED;
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (acpi_gsi_to_irq(gsi, &irq) < 0) {
787 printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n",
788 gsi);
789 return AE_OK;
790 }
791
792 acpi_irq_handler = handler;
793 acpi_irq_context = context;
Zhang Rui89a22da2013-02-04 07:10:10 +0000794 if (request_irq(irq, acpi_irq, IRQF_SHARED | IRQF_NO_SUSPEND, "acpi", acpi_irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq);
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100796 acpi_irq_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return AE_NOT_ACQUIRED;
798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 return AE_OK;
801}
802
Len Brown4be44fc2005-08-05 00:44:28 -0400803acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100805 if (irq != acpi_gbl_FADT.sci_interrupt)
806 return AE_BAD_PARAMETER;
807
808 free_irq(irq, acpi_irq);
809 acpi_irq_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 return AE_OK;
812}
813
814/*
815 * Running in interpreter thread context, safe to sleep
816 */
817
Lin Ming439913f2010-01-28 10:53:19 +0800818void acpi_os_sleep(u64 ms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
Nishanth Aravamudan01a527e2005-11-07 01:01:14 -0800820 schedule_timeout_interruptible(msecs_to_jiffies(ms));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
Len Brown4be44fc2005-08-05 00:44:28 -0400822
Len Brown4be44fc2005-08-05 00:44:28 -0400823void acpi_os_stall(u32 us)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
825 while (us) {
826 u32 delay = 1000;
827
828 if (delay > us)
829 delay = us;
830 udelay(delay);
831 touch_nmi_watchdog();
832 us -= delay;
833 }
834}
Len Brown4be44fc2005-08-05 00:44:28 -0400835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836/*
837 * Support ACPI 3.0 AML Timer operand
838 * Returns 64-bit free-running, monotonically increasing timer
839 * with 100ns granularity
840 */
Len Brown4be44fc2005-08-05 00:44:28 -0400841u64 acpi_os_get_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
Mika Westerberg10619062013-05-23 10:27:46 +0300843 u64 time_ns = ktime_to_ns(ktime_get());
844 do_div(time_ns, 100);
845 return time_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
847
Len Brown4be44fc2005-08-05 00:44:28 -0400848acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
850 u32 dummy;
851
852 if (!value)
853 value = &dummy;
854
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800855 *value = 0;
856 if (width <= 8) {
Len Brown4be44fc2005-08-05 00:44:28 -0400857 *(u8 *) value = inb(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800858 } else if (width <= 16) {
Len Brown4be44fc2005-08-05 00:44:28 -0400859 *(u16 *) value = inw(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800860 } else if (width <= 32) {
Len Brown4be44fc2005-08-05 00:44:28 -0400861 *(u32 *) value = inl(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800862 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 BUG();
864 }
865
866 return AE_OK;
867}
Len Brown4be44fc2005-08-05 00:44:28 -0400868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869EXPORT_SYMBOL(acpi_os_read_port);
870
Len Brown4be44fc2005-08-05 00:44:28 -0400871acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800873 if (width <= 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 outb(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800875 } else if (width <= 16) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 outw(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800877 } else if (width <= 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 outl(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800879 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 BUG();
881 }
882
883 return AE_OK;
884}
Len Brown4be44fc2005-08-05 00:44:28 -0400885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886EXPORT_SYMBOL(acpi_os_write_port);
887
Myron Stowee615bf52012-01-20 19:13:24 -0700888#ifdef readq
889static inline u64 read64(const volatile void __iomem *addr)
890{
891 return readq(addr);
892}
893#else
894static inline u64 read64(const volatile void __iomem *addr)
895{
896 u64 l, h;
897 l = readl(addr);
898 h = readl(addr+4);
899 return l | (h << 32);
900}
901#endif
902
903acpi_status
Bob Moore653f4b52012-02-14 18:29:55 +0800904acpi_os_read_memory(acpi_physical_address phys_addr, u64 *value, u32 width)
Myron Stowee615bf52012-01-20 19:13:24 -0700905{
906 void __iomem *virt_addr;
907 unsigned int size = width / 8;
908 bool unmap = false;
909 u64 dummy;
910
911 rcu_read_lock();
912 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
913 if (!virt_addr) {
914 rcu_read_unlock();
915 virt_addr = acpi_os_ioremap(phys_addr, size);
916 if (!virt_addr)
917 return AE_BAD_ADDRESS;
918 unmap = true;
919 }
920
921 if (!value)
922 value = &dummy;
923
924 switch (width) {
925 case 8:
926 *(u8 *) value = readb(virt_addr);
927 break;
928 case 16:
929 *(u16 *) value = readw(virt_addr);
930 break;
931 case 32:
932 *(u32 *) value = readl(virt_addr);
933 break;
934 case 64:
935 *(u64 *) value = read64(virt_addr);
936 break;
937 default:
938 BUG();
939 }
940
941 if (unmap)
942 iounmap(virt_addr);
943 else
944 rcu_read_unlock();
945
946 return AE_OK;
947}
948
Myron Stowee615bf52012-01-20 19:13:24 -0700949#ifdef writeq
950static inline void write64(u64 val, volatile void __iomem *addr)
951{
952 writeq(val, addr);
953}
954#else
955static inline void write64(u64 val, volatile void __iomem *addr)
956{
957 writel(val, addr);
958 writel(val>>32, addr+4);
959}
960#endif
961
962acpi_status
Bob Moore653f4b52012-02-14 18:29:55 +0800963acpi_os_write_memory(acpi_physical_address phys_addr, u64 value, u32 width)
Myron Stowee615bf52012-01-20 19:13:24 -0700964{
965 void __iomem *virt_addr;
966 unsigned int size = width / 8;
967 bool unmap = false;
968
969 rcu_read_lock();
970 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
971 if (!virt_addr) {
972 rcu_read_unlock();
973 virt_addr = acpi_os_ioremap(phys_addr, size);
974 if (!virt_addr)
975 return AE_BAD_ADDRESS;
976 unmap = true;
977 }
978
979 switch (width) {
980 case 8:
981 writeb(value, virt_addr);
982 break;
983 case 16:
984 writew(value, virt_addr);
985 break;
986 case 32:
987 writel(value, virt_addr);
988 break;
989 case 64:
990 write64(value, virt_addr);
991 break;
992 default:
993 BUG();
994 }
995
996 if (unmap)
997 iounmap(virt_addr);
998 else
999 rcu_read_unlock();
1000
1001 return AE_OK;
1002}
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001005acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Bob Moorec5f02312010-08-06 08:57:53 +08001006 u64 *value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
1008 int result, size;
Bob Moorec5f02312010-08-06 08:57:53 +08001009 u32 value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 if (!value)
1012 return AE_BAD_PARAMETER;
1013
1014 switch (width) {
1015 case 8:
1016 size = 1;
1017 break;
1018 case 16:
1019 size = 2;
1020 break;
1021 case 32:
1022 size = 4;
1023 break;
1024 default:
1025 return AE_ERROR;
1026 }
1027
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -05001028 result = raw_pci_read(pci_id->segment, pci_id->bus,
1029 PCI_DEVFN(pci_id->device, pci_id->function),
Bob Moorec5f02312010-08-06 08:57:53 +08001030 reg, size, &value32);
1031 *value = value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 return (result ? AE_ERROR : AE_OK);
1034}
Len Brown4be44fc2005-08-05 00:44:28 -04001035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001037acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Lin Ming439913f2010-01-28 10:53:19 +08001038 u64 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
1040 int result, size;
1041
1042 switch (width) {
1043 case 8:
1044 size = 1;
1045 break;
1046 case 16:
1047 size = 2;
1048 break;
1049 case 32:
1050 size = 4;
1051 break;
1052 default:
1053 return AE_ERROR;
1054 }
1055
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -05001056 result = raw_pci_write(pci_id->segment, pci_id->bus,
1057 PCI_DEVFN(pci_id->device, pci_id->function),
1058 reg, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
1060 return (result ? AE_ERROR : AE_OK);
1061}
1062
David Howells65f27f32006-11-22 14:55:48 +00001063static void acpi_os_execute_deferred(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
David Howells65f27f32006-11-22 14:55:48 +00001065 struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work);
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -04001066
Bjorn Helgaas9ac61852009-08-31 22:32:10 +00001067 if (dpc->wait)
Lin Mingbd6f10a2012-05-22 16:43:49 +08001068 acpi_os_wait_events_complete();
Zhang Rui19cd8472008-08-28 10:05:06 +08001069
1070 dpc->function(dpc->context);
1071 kfree(dpc);
Zhang Rui19cd8472008-08-28 10:05:06 +08001072}
1073
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -04001074/*******************************************************************************
1075 *
1076 * FUNCTION: acpi_os_execute
1077 *
1078 * PARAMETERS: Type - Type of the callback
1079 * Function - Function to be executed
1080 * Context - Function parameters
1081 *
1082 * RETURN: Status
1083 *
1084 * DESCRIPTION: Depending on type, either queues function for deferred execution or
1085 * immediately executes function on a separate thread.
1086 *
1087 ******************************************************************************/
1088
Zhang Rui19cd8472008-08-28 10:05:06 +08001089static acpi_status __acpi_os_execute(acpi_execute_type type,
1090 acpi_osd_exec_callback function, void *context, int hp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
Len Brown4be44fc2005-08-05 00:44:28 -04001092 acpi_status status = AE_OK;
1093 struct acpi_os_dpc *dpc;
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +03001094 struct workqueue_struct *queue;
Zhang Rui19cd8472008-08-28 10:05:06 +08001095 int ret;
Len Brown72945b22006-07-12 22:46:42 -04001096 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
1097 "Scheduling function [%p(%p)] for deferred execution.\n",
1098 function, context));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 /*
1101 * Allocate/initialize DPC structure. Note that this memory will be
David Howells65f27f32006-11-22 14:55:48 +00001102 * freed by the callee. The kernel handles the work_struct list in a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 * way that allows us to also free its memory inside the callee.
1104 * Because we may want to schedule several tasks with different
1105 * parameters we can't use the approach some kernel code uses of
David Howells65f27f32006-11-22 14:55:48 +00001106 * having a static work_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 */
Len Brown72945b22006-07-12 22:46:42 -04001108
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001109 dpc = kzalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if (!dpc)
Lin Ming889c78b2008-12-31 09:23:57 +08001111 return AE_NO_MEMORY;
Linus Torvaldsb976fe12006-11-17 19:31:09 -08001112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 dpc->function = function;
1114 dpc->context = context;
Linus Torvaldsb976fe12006-11-17 19:31:09 -08001115
Zhang Ruic02256b2009-06-23 10:20:29 +08001116 /*
1117 * We can't run hotplug code in keventd_wq/kacpid_wq/kacpid_notify_wq
1118 * because the hotplug code may call driver .remove() functions,
1119 * which invoke flush_scheduled_work/acpi_os_wait_events_complete
1120 * to flush these workqueues.
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001121 *
1122 * To prevent lockdep from complaining unnecessarily, make sure that
1123 * there is a different static lockdep key for each workqueue by using
1124 * INIT_WORK() for each of them separately.
Zhang Ruic02256b2009-06-23 10:20:29 +08001125 */
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001126 if (hp) {
1127 queue = kacpi_hotplug_wq;
1128 dpc->wait = 1;
Zhang Ruibc736752010-03-22 15:48:54 +08001129 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001130 } else if (type == OSL_NOTIFY_HANDLER) {
1131 queue = kacpi_notify_wq;
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 {
1134 queue = kacpid_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 }
Zhang Ruibc736752010-03-22 15:48:54 +08001137
Tejun Heo8fec62b2010-06-29 10:07:09 +02001138 /*
1139 * On some machines, a software-initiated SMI causes corruption unless
1140 * the SMI runs on CPU 0. An SMI can be initiated by any AML, but
1141 * typically it's done in GPE-related methods that are run via
1142 * workqueues, so we can avoid the known corruption cases by always
1143 * queueing on CPU 0.
1144 */
1145 ret = queue_work_on(0, queue, &dpc->work);
Zhang Rui19cd8472008-08-28 10:05:06 +08001146
1147 if (!ret) {
Lin Ming55ac9a02008-09-28 14:51:56 +08001148 printk(KERN_ERR PREFIX
1149 "Call to queue_work() failed.\n");
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +03001150 status = AE_ERROR;
1151 kfree(dpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 }
Lin Ming889c78b2008-12-31 09:23:57 +08001153 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154}
Len Brown4be44fc2005-08-05 00:44:28 -04001155
Zhang Rui19cd8472008-08-28 10:05:06 +08001156acpi_status acpi_os_execute(acpi_execute_type type,
1157 acpi_osd_exec_callback function, void *context)
1158{
1159 return __acpi_os_execute(type, function, context, 0);
1160}
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -04001161EXPORT_SYMBOL(acpi_os_execute);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Zhang Rui19cd8472008-08-28 10:05:06 +08001163acpi_status acpi_os_hotplug_execute(acpi_osd_exec_callback function,
1164 void *context)
1165{
1166 return __acpi_os_execute(0, function, context, 1);
1167}
Toshi Kani61622ac2012-11-01 14:42:12 +00001168EXPORT_SYMBOL(acpi_os_hotplug_execute);
Zhang Rui19cd8472008-08-28 10:05:06 +08001169
Lin Mingbd6f10a2012-05-22 16:43:49 +08001170void acpi_os_wait_events_complete(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
1172 flush_workqueue(kacpid_wq);
Zhang Rui2f67a062008-04-29 02:34:42 -04001173 flush_workqueue(kacpi_notify_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174}
Len Brown4be44fc2005-08-05 00:44:28 -04001175
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176EXPORT_SYMBOL(acpi_os_wait_events_complete);
1177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001179acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
Len Brown4be44fc2005-08-05 00:44:28 -04001181 struct semaphore *sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 sem = acpi_os_allocate(sizeof(struct semaphore));
1184 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -04001185 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 memset(sem, 0, sizeof(struct semaphore));
1187
1188 sema_init(sem, initial_units);
1189
Len Brown4be44fc2005-08-05 00:44:28 -04001190 *handle = (acpi_handle *) sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Len Brown4be44fc2005-08-05 00:44:28 -04001192 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n",
1193 *handle, initial_units));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Patrick Mocheld550d982006-06-27 00:41:40 -04001195 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198/*
1199 * TODO: A better way to delete semaphores? Linux doesn't have a
1200 * 'delete_semaphore()' function -- may result in an invalid
1201 * pointer dereference for non-synchronized consumers. Should
1202 * we at least check for blocked threads and signal/cancel them?
1203 */
1204
Len Brown4be44fc2005-08-05 00:44:28 -04001205acpi_status acpi_os_delete_semaphore(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206{
Len Brown4be44fc2005-08-05 00:44:28 -04001207 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -04001210 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Len Brown4be44fc2005-08-05 00:44:28 -04001212 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001214 BUG_ON(!list_empty(&sem->wait_list));
Len Brown02438d82006-06-30 03:19:10 -04001215 kfree(sem);
Len Brown4be44fc2005-08-05 00:44:28 -04001216 sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Patrick Mocheld550d982006-06-27 00:41:40 -04001218 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 * TODO: Support for units > 1?
1223 */
Len Brown4be44fc2005-08-05 00:44:28 -04001224acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
Len Brown4be44fc2005-08-05 00:44:28 -04001226 acpi_status status = AE_OK;
1227 struct semaphore *sem = (struct semaphore *)handle;
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001228 long jiffies;
Len Brown4be44fc2005-08-05 00:44:28 -04001229 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001232 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -04001235 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Len Brown4be44fc2005-08-05 00:44:28 -04001237 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n",
1238 handle, units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001240 if (timeout == ACPI_WAIT_FOREVER)
1241 jiffies = MAX_SCHEDULE_TIMEOUT;
1242 else
1243 jiffies = msecs_to_jiffies(timeout);
1244
1245 ret = down_timeout(sem, jiffies);
1246 if (ret)
1247 status = AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 if (ACPI_FAILURE(status)) {
Bjorn Helgaas9e7e2c02006-04-27 05:25:00 -04001250 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -04001251 "Failed to acquire semaphore[%p|%d|%d], %s",
Len Brown4be44fc2005-08-05 00:44:28 -04001252 handle, units, timeout,
1253 acpi_format_exception(status)));
1254 } else {
1255 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -04001256 "Acquired semaphore[%p|%d|%d]", handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001257 units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 }
1259
Patrick Mocheld550d982006-06-27 00:41:40 -04001260 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263/*
1264 * TODO: Support for units > 1?
1265 */
Len Brown4be44fc2005-08-05 00:44:28 -04001266acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
Len Brown4be44fc2005-08-05 00:44:28 -04001268 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001271 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -04001274 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Len Brown4be44fc2005-08-05 00:44:28 -04001276 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle,
1277 units));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 up(sem);
1280
Patrick Mocheld550d982006-06-27 00:41:40 -04001281 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
Len Brown4be44fc2005-08-05 00:44:28 -04001283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -04001285u32 acpi_os_get_line(char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
1287
1288#ifdef ENABLE_DEBUGGER
1289 if (acpi_in_debugger) {
1290 u32 chars;
1291
1292 kdb_read(buffer, sizeof(line_buf));
1293
1294 /* remove the CR kdb includes */
1295 chars = strlen(buffer) - 1;
1296 buffer[chars] = '\0';
1297 }
1298#endif
1299
1300 return 0;
1301}
Len Brown4be44fc2005-08-05 00:44:28 -04001302#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Len Brown4be44fc2005-08-05 00:44:28 -04001304acpi_status acpi_os_signal(u32 function, void *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
Len Brown4be44fc2005-08-05 00:44:28 -04001306 switch (function) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 case ACPI_SIGNAL_FATAL:
1308 printk(KERN_ERR PREFIX "Fatal opcode executed\n");
1309 break;
1310 case ACPI_SIGNAL_BREAKPOINT:
1311 /*
1312 * AML Breakpoint
1313 * ACPI spec. says to treat it as a NOP unless
1314 * you are debugging. So if/when we integrate
1315 * AML debugger into the kernel debugger its
1316 * hook will go here. But until then it is
1317 * not useful to print anything on breakpoints.
1318 */
1319 break;
1320 default:
1321 break;
1322 }
1323
1324 return AE_OK;
1325}
Len Brown4be44fc2005-08-05 00:44:28 -04001326
Len Brown4be44fc2005-08-05 00:44:28 -04001327static int __init acpi_os_name_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
1329 char *p = acpi_os_name;
Len Brown4be44fc2005-08-05 00:44:28 -04001330 int count = ACPI_MAX_OVERRIDE_LEN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 if (!str || !*str)
1333 return 0;
1334
1335 for (; count-- && str && *str; str++) {
1336 if (isalnum(*str) || *str == ' ' || *str == ':')
1337 *p++ = *str;
1338 else if (*str == '\'' || *str == '"')
1339 continue;
1340 else
1341 break;
1342 }
1343 *p = 0;
1344
1345 return 1;
Len Brown4be44fc2005-08-05 00:44:28 -04001346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347}
1348
1349__setup("acpi_os_name=", acpi_os_name_setup);
1350
Lin Ming12d32062010-12-09 16:51:06 +08001351#define OSI_STRING_LENGTH_MAX 64 /* arbitrary */
1352#define OSI_STRING_ENTRIES_MAX 16 /* arbitrary */
1353
1354struct osi_setup_entry {
1355 char string[OSI_STRING_LENGTH_MAX];
1356 bool enable;
1357};
1358
Hanjun Guoe73d3132013-08-13 18:31:15 +08001359static struct osi_setup_entry
1360 osi_setup_entries[OSI_STRING_ENTRIES_MAX] __initdata = {
Shaohua Liaa165972011-07-28 13:48:43 -07001361 {"Module Device", true},
1362 {"Processor Device", true},
1363 {"3.0 _SCP Extensions", true},
1364 {"Processor Aggregator Device", true},
1365};
Lin Ming12d32062010-12-09 16:51:06 +08001366
Lin Mingd90aa922010-12-09 16:50:52 +08001367void __init acpi_osi_setup(char *str)
1368{
Lin Ming12d32062010-12-09 16:51:06 +08001369 struct osi_setup_entry *osi;
1370 bool enable = true;
1371 int i;
1372
Lin Mingd90aa922010-12-09 16:50:52 +08001373 if (!acpi_gbl_create_osi_method)
1374 return;
1375
1376 if (str == NULL || *str == '\0') {
1377 printk(KERN_INFO PREFIX "_OSI method disabled\n");
1378 acpi_gbl_create_osi_method = FALSE;
Lin Ming12d32062010-12-09 16:51:06 +08001379 return;
1380 }
1381
1382 if (*str == '!') {
1383 str++;
1384 enable = false;
1385 }
1386
1387 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1388 osi = &osi_setup_entries[i];
1389 if (!strcmp(osi->string, str)) {
1390 osi->enable = enable;
1391 break;
1392 } else if (osi->string[0] == '\0') {
1393 osi->enable = enable;
1394 strncpy(osi->string, str, OSI_STRING_LENGTH_MAX);
1395 break;
1396 }
1397 }
Lin Mingd90aa922010-12-09 16:50:52 +08001398}
1399
Len Brownd4b7dc42008-01-23 20:50:56 -05001400static void __init set_osi_linux(unsigned int enable)
1401{
Lin Mingd90aa922010-12-09 16:50:52 +08001402 if (osi_linux.enable != enable)
Len Brownd4b7dc42008-01-23 20:50:56 -05001403 osi_linux.enable = enable;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001404
1405 if (osi_linux.enable)
1406 acpi_osi_setup("Linux");
1407 else
1408 acpi_osi_setup("!Linux");
1409
Len Brownd4b7dc42008-01-23 20:50:56 -05001410 return;
1411}
Len Brownf5076542007-05-30 00:10:38 -04001412
Len Brownd4b7dc42008-01-23 20:50:56 -05001413static void __init acpi_cmdline_osi_linux(unsigned int enable)
1414{
Lin Mingd90aa922010-12-09 16:50:52 +08001415 osi_linux.cmdline = 1; /* cmdline set the default and override DMI */
1416 osi_linux.dmi = 0;
Len Brownd4b7dc42008-01-23 20:50:56 -05001417 set_osi_linux(enable);
Len Brownf5076542007-05-30 00:10:38 -04001418
Len Brownd4b7dc42008-01-23 20:50:56 -05001419 return;
1420}
1421
1422void __init acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d)
1423{
Len Brownd4b7dc42008-01-23 20:50:56 -05001424 printk(KERN_NOTICE PREFIX "DMI detected: %s\n", d->ident);
1425
1426 if (enable == -1)
1427 return;
1428
Lin Mingd90aa922010-12-09 16:50:52 +08001429 osi_linux.dmi = 1; /* DMI knows that this box asks OSI(Linux) */
Len Brownd4b7dc42008-01-23 20:50:56 -05001430 set_osi_linux(enable);
1431
Len Brownf5076542007-05-30 00:10:38 -04001432 return;
1433}
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435/*
Len Brownae00d812007-05-29 18:43:33 -04001436 * Modify the list of "OS Interfaces" reported to BIOS via _OSI
1437 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 * empty string disables _OSI
Len Brownae00d812007-05-29 18:43:33 -04001439 * string starting with '!' disables that string
1440 * otherwise string is added to list, augmenting built-in strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 */
Lin Mingb0ed7a92010-08-06 09:35:51 +08001442static void __init acpi_osi_setup_late(void)
1443{
Lin Ming12d32062010-12-09 16:51:06 +08001444 struct osi_setup_entry *osi;
1445 char *str;
1446 int i;
Lin Mingd90aa922010-12-09 16:50:52 +08001447 acpi_status status;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001448
Lin Ming12d32062010-12-09 16:51:06 +08001449 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1450 osi = &osi_setup_entries[i];
1451 str = osi->string;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001452
Lin Ming12d32062010-12-09 16:51:06 +08001453 if (*str == '\0')
1454 break;
1455 if (osi->enable) {
1456 status = acpi_install_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001457
Lin Ming12d32062010-12-09 16:51:06 +08001458 if (ACPI_SUCCESS(status))
1459 printk(KERN_INFO PREFIX "Added _OSI(%s)\n", str);
1460 } else {
1461 status = acpi_remove_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001462
Lin Ming12d32062010-12-09 16:51:06 +08001463 if (ACPI_SUCCESS(status))
1464 printk(KERN_INFO PREFIX "Deleted _OSI(%s)\n", str);
1465 }
Lin Mingb0ed7a92010-08-06 09:35:51 +08001466 }
1467}
1468
Lin Mingd90aa922010-12-09 16:50:52 +08001469static int __init osi_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
Lin Mingd90aa922010-12-09 16:50:52 +08001471 if (str && !strcmp("Linux", str))
1472 acpi_cmdline_osi_linux(1);
1473 else if (str && !strcmp("!Linux", str))
1474 acpi_cmdline_osi_linux(0);
1475 else
1476 acpi_osi_setup(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 return 1;
1479}
1480
Lin Mingd90aa922010-12-09 16:50:52 +08001481__setup("acpi_osi=", osi_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
1483/* enable serialization to combat AE_ALREADY_EXISTS errors */
Len Brown4be44fc2005-08-05 00:44:28 -04001484static int __init acpi_serialize_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485{
1486 printk(KERN_INFO PREFIX "serialize enabled\n");
1487
1488 acpi_gbl_all_methods_serialized = TRUE;
1489
1490 return 1;
1491}
1492
1493__setup("acpi_serialize", acpi_serialize_setup);
1494
Thomas Renningerdf92e692008-02-04 23:31:22 -08001495/* Check of resource interference between native drivers and ACPI
1496 * OperationRegions (SystemIO and System Memory only).
1497 * IO ports and memory declared in ACPI might be used by the ACPI subsystem
1498 * in arbitrary AML code and can interfere with legacy drivers.
1499 * acpi_enforce_resources= can be set to:
1500 *
Luca Tettamanti7e905602009-03-30 00:01:27 +02001501 * - strict (default) (2)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001502 * -> further driver trying to access the resources will not load
Luca Tettamanti7e905602009-03-30 00:01:27 +02001503 * - lax (1)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001504 * -> further driver trying to access the resources will load, but you
1505 * get a system message that something might go wrong...
1506 *
1507 * - no (0)
1508 * -> ACPI Operation Region resources will not be registered
1509 *
1510 */
1511#define ENFORCE_RESOURCES_STRICT 2
1512#define ENFORCE_RESOURCES_LAX 1
1513#define ENFORCE_RESOURCES_NO 0
1514
Luca Tettamanti7e905602009-03-30 00:01:27 +02001515static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001516
1517static int __init acpi_enforce_resources_setup(char *str)
1518{
1519 if (str == NULL || *str == '\0')
1520 return 0;
1521
1522 if (!strcmp("strict", str))
1523 acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1524 else if (!strcmp("lax", str))
1525 acpi_enforce_resources = ENFORCE_RESOURCES_LAX;
1526 else if (!strcmp("no", str))
1527 acpi_enforce_resources = ENFORCE_RESOURCES_NO;
1528
1529 return 1;
1530}
1531
1532__setup("acpi_enforce_resources=", acpi_enforce_resources_setup);
1533
1534/* Check for resource conflicts between ACPI OperationRegions and native
1535 * drivers */
Jean Delvare876fba42009-11-11 15:22:15 +01001536int acpi_check_resource_conflict(const struct resource *res)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001537{
Lin Mingf654c0f2012-01-12 13:10:32 +08001538 acpi_adr_space_type space_id;
1539 acpi_size length;
1540 u8 warn = 0;
1541 int clash = 0;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001542
1543 if (acpi_enforce_resources == ENFORCE_RESOURCES_NO)
1544 return 0;
1545 if (!(res->flags & IORESOURCE_IO) && !(res->flags & IORESOURCE_MEM))
1546 return 0;
1547
Lin Mingf654c0f2012-01-12 13:10:32 +08001548 if (res->flags & IORESOURCE_IO)
1549 space_id = ACPI_ADR_SPACE_SYSTEM_IO;
1550 else
1551 space_id = ACPI_ADR_SPACE_SYSTEM_MEMORY;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001552
Alexandru Gheorghiue4f52242013-03-12 08:53:02 +00001553 length = resource_size(res);
Lin Mingf654c0f2012-01-12 13:10:32 +08001554 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO)
1555 warn = 1;
1556 clash = acpi_check_address_range(space_id, res->start, length, warn);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001557
1558 if (clash) {
1559 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO) {
Jean Delvare14f03342009-09-08 15:31:46 +02001560 if (acpi_enforce_resources == ENFORCE_RESOURCES_LAX)
1561 printk(KERN_NOTICE "ACPI: This conflict may"
1562 " cause random problems and system"
1563 " instability\n");
1564 printk(KERN_INFO "ACPI: If an ACPI driver is available"
1565 " for this device, you should use it instead of"
1566 " the native driver\n");
Thomas Renningerdf92e692008-02-04 23:31:22 -08001567 }
1568 if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT)
1569 return -EBUSY;
1570 }
1571 return 0;
1572}
Thomas Renninger443dea72008-02-04 23:31:23 -08001573EXPORT_SYMBOL(acpi_check_resource_conflict);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001574
1575int acpi_check_region(resource_size_t start, resource_size_t n,
1576 const char *name)
1577{
1578 struct resource res = {
1579 .start = start,
1580 .end = start + n - 1,
1581 .name = name,
1582 .flags = IORESOURCE_IO,
1583 };
1584
1585 return acpi_check_resource_conflict(&res);
1586}
1587EXPORT_SYMBOL(acpi_check_region);
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589/*
Jean Delvare70dd6be2010-05-27 19:58:37 +02001590 * Let drivers know whether the resource checks are effective
1591 */
1592int acpi_resources_are_enforced(void)
1593{
1594 return acpi_enforce_resources == ENFORCE_RESOURCES_STRICT;
1595}
1596EXPORT_SYMBOL(acpi_resources_are_enforced);
1597
1598/*
Lin Ming9f63b882011-03-23 17:26:34 +08001599 * Deallocate the memory for a spinlock.
1600 */
1601void acpi_os_delete_lock(acpi_spinlock handle)
1602{
1603 ACPI_FREE(handle);
1604}
1605
1606/*
Robert Moore73459f72005-06-24 00:00:00 -04001607 * Acquire a spinlock.
1608 *
1609 * handle is a pointer to the spinlock_t.
Robert Moore73459f72005-06-24 00:00:00 -04001610 */
1611
Bob Moore967440e32006-06-23 17:04:00 -04001612acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp)
Robert Moore73459f72005-06-24 00:00:00 -04001613{
Bob Mooreb8e4d892006-01-27 16:43:00 -05001614 acpi_cpu_flags flags;
Bob Moore967440e32006-06-23 17:04:00 -04001615 spin_lock_irqsave(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001616 return flags;
1617}
1618
1619/*
1620 * Release a spinlock. See above.
1621 */
1622
Bob Moore967440e32006-06-23 17:04:00 -04001623void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags)
Robert Moore73459f72005-06-24 00:00:00 -04001624{
Bob Moore967440e32006-06-23 17:04:00 -04001625 spin_unlock_irqrestore(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001626}
1627
Robert Moore73459f72005-06-24 00:00:00 -04001628#ifndef ACPI_USE_LOCAL_CACHE
1629
1630/*******************************************************************************
1631 *
1632 * FUNCTION: acpi_os_create_cache
1633 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001634 * PARAMETERS: name - Ascii name for the cache
1635 * size - Size of each cached object
1636 * depth - Maximum depth of the cache (in objects) <ignored>
1637 * cache - Where the new cache object is returned
Robert Moore73459f72005-06-24 00:00:00 -04001638 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001639 * RETURN: status
Robert Moore73459f72005-06-24 00:00:00 -04001640 *
1641 * DESCRIPTION: Create a cache object
1642 *
1643 ******************************************************************************/
1644
1645acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001646acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache)
Robert Moore73459f72005-06-24 00:00:00 -04001647{
Paul Mundt20c2df82007-07-20 10:11:58 +09001648 *cache = kmem_cache_create(name, size, 0, 0, NULL);
Adrian Bunka6fdbf92006-12-19 12:56:13 -08001649 if (*cache == NULL)
Bob Mooreb229cf92006-04-21 17:15:00 -04001650 return AE_ERROR;
1651 else
1652 return AE_OK;
Robert Moore73459f72005-06-24 00:00:00 -04001653}
1654
1655/*******************************************************************************
1656 *
1657 * FUNCTION: acpi_os_purge_cache
1658 *
1659 * PARAMETERS: Cache - Handle to cache object
1660 *
1661 * RETURN: Status
1662 *
1663 * DESCRIPTION: Free all objects within the requested cache.
1664 *
1665 ******************************************************************************/
1666
Len Brown4be44fc2005-08-05 00:44:28 -04001667acpi_status acpi_os_purge_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001668{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001669 kmem_cache_shrink(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001670 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001671}
1672
1673/*******************************************************************************
1674 *
1675 * FUNCTION: acpi_os_delete_cache
1676 *
1677 * PARAMETERS: Cache - Handle to cache object
1678 *
1679 * RETURN: Status
1680 *
1681 * DESCRIPTION: Free all objects within the requested cache and delete the
1682 * cache object.
1683 *
1684 ******************************************************************************/
1685
Len Brown4be44fc2005-08-05 00:44:28 -04001686acpi_status acpi_os_delete_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001687{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001688 kmem_cache_destroy(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001689 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001690}
1691
1692/*******************************************************************************
1693 *
1694 * FUNCTION: acpi_os_release_object
1695 *
1696 * PARAMETERS: Cache - Handle to cache object
1697 * Object - The object to be released
1698 *
1699 * RETURN: None
1700 *
1701 * DESCRIPTION: Release an object to the specified cache. If cache is full,
1702 * the object is deleted.
1703 *
1704 ******************************************************************************/
1705
Len Brown4be44fc2005-08-05 00:44:28 -04001706acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object)
Robert Moore73459f72005-06-24 00:00:00 -04001707{
Len Brown4be44fc2005-08-05 00:44:28 -04001708 kmem_cache_free(cache, object);
1709 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001710}
Robert Moore73459f72005-06-24 00:00:00 -04001711#endif
Myron Stowed362eda2010-10-21 14:24:04 -06001712
Lv Zhengb75dd292013-06-08 00:58:48 +00001713static int __init acpi_no_auto_ssdt_setup(char *s)
1714{
1715 printk(KERN_NOTICE PREFIX "SSDT auto-load disabled\n");
1716
1717 acpi_gbl_disable_ssdt_table_load = TRUE;
1718
1719 return 1;
1720}
1721
1722__setup("acpi_no_auto_ssdt", acpi_no_auto_ssdt_setup);
1723
Myron Stowed362eda2010-10-21 14:24:04 -06001724acpi_status __init acpi_os_initialize(void)
1725{
1726 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1727 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1728 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe0_block);
1729 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe1_block);
1730
1731 return AE_OK;
1732}
1733
Zhang Rui32d47ee2010-12-08 10:40:36 +08001734acpi_status __init acpi_os_initialize1(void)
Myron Stowed362eda2010-10-21 14:24:04 -06001735{
Tejun Heo44d25882011-02-01 11:42:42 +01001736 kacpid_wq = alloc_workqueue("kacpid", 0, 1);
1737 kacpi_notify_wq = alloc_workqueue("kacpi_notify", 0, 1);
1738 kacpi_hotplug_wq = alloc_workqueue("kacpi_hotplug", 0, 1);
Myron Stowed362eda2010-10-21 14:24:04 -06001739 BUG_ON(!kacpid_wq);
1740 BUG_ON(!kacpi_notify_wq);
1741 BUG_ON(!kacpi_hotplug_wq);
Len Brown1bd64d42010-10-26 14:50:56 -04001742 acpi_install_interface_handler(acpi_osi_handler);
1743 acpi_osi_setup_late();
Myron Stowed362eda2010-10-21 14:24:04 -06001744 return AE_OK;
1745}
1746
1747acpi_status acpi_os_terminate(void)
1748{
1749 if (acpi_irq_handler) {
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +01001750 acpi_os_remove_interrupt_handler(acpi_gbl_FADT.sci_interrupt,
Myron Stowed362eda2010-10-21 14:24:04 -06001751 acpi_irq_handler);
1752 }
1753
1754 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe1_block);
1755 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe0_block);
1756 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1757 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1758
1759 destroy_workqueue(kacpid_wq);
1760 destroy_workqueue(kacpi_notify_wq);
1761 destroy_workqueue(kacpi_hotplug_wq);
1762
1763 return AE_OK;
1764}
Tang Liang09f98a82011-12-09 10:05:54 +08001765
1766acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control,
1767 u32 pm1b_control)
1768{
1769 int rc = 0;
1770 if (__acpi_os_prepare_sleep)
1771 rc = __acpi_os_prepare_sleep(sleep_state,
1772 pm1a_control, pm1b_control);
1773 if (rc < 0)
1774 return AE_ERROR;
1775 else if (rc > 0)
1776 return AE_CTRL_SKIP;
1777
1778 return AE_OK;
1779}
1780
1781void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state,
1782 u32 pm1a_ctrl, u32 pm1b_ctrl))
1783{
1784 __acpi_os_prepare_sleep = func;
1785}
Yinghai Lu92d8aff2013-01-21 13:20:47 -08001786
1787void alloc_acpi_hp_work(acpi_handle handle, u32 type, void *context,
1788 void (*func)(struct work_struct *work))
1789{
1790 struct acpi_hp_work *hp_work;
1791 int ret;
1792
1793 hp_work = kmalloc(sizeof(*hp_work), GFP_KERNEL);
1794 if (!hp_work)
1795 return;
1796
1797 hp_work->handle = handle;
1798 hp_work->type = type;
1799 hp_work->context = context;
1800
1801 INIT_WORK(&hp_work->work, func);
1802 ret = queue_work(kacpi_hotplug_wq, &hp_work->work);
1803 if (!ret)
1804 kfree(hp_work);
1805}
1806EXPORT_SYMBOL_GPL(alloc_acpi_hp_work);