blob: 9fddb55764f39bbd4a2cc6cf57f4c8aa162524f3 [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 Starikovskiyad718602007-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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define _COMPONENT ACPI_OS_SERVICES
Len Brownf52fd662007-02-12 22:42:12 -050057ACPI_MODULE_NAME("osl");
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define PREFIX "ACPI: "
Len Brown4be44fc2005-08-05 00:44:28 -040059struct acpi_os_dpc {
60 acpi_osd_exec_callback function;
61 void *context;
David Howells65f27f32006-11-22 14:55:48 +000062 struct work_struct work;
Bjorn Helgaas9ac61852009-08-31 22:32:10 +000063 int wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
66#ifdef CONFIG_ACPI_CUSTOM_DSDT
67#include CONFIG_ACPI_CUSTOM_DSDT_FILE
68#endif
69
70#ifdef ENABLE_DEBUGGER
71#include <linux/kdb.h>
72
73/* stuff for debugger support */
74int acpi_in_debugger;
75EXPORT_SYMBOL(acpi_in_debugger);
76
77extern char line_buf[80];
Len Brown4be44fc2005-08-05 00:44:28 -040078#endif /*ENABLE_DEBUGGER */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080static acpi_osd_handler acpi_irq_handler;
81static void *acpi_irq_context;
82static struct workqueue_struct *kacpid_wq;
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -040083static struct workqueue_struct *kacpi_notify_wq;
Prarit Bhargava6af8bef2011-09-28 19:40:53 -040084struct workqueue_struct *kacpi_hotplug_wq;
85EXPORT_SYMBOL(kacpi_hotplug_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Myron Stowe620242a2010-10-21 14:23:53 -060087/*
88 * This list of permanent mappings is for memory that may be accessed from
89 * interrupt context, where we can't do the ioremap().
90 */
91struct acpi_ioremap {
92 struct list_head list;
93 void __iomem *virt;
94 acpi_physical_address phys;
95 acpi_size size;
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +010096 unsigned long refcount;
Myron Stowe620242a2010-10-21 14:23:53 -060097};
98
99static LIST_HEAD(acpi_ioremaps);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100100static DEFINE_MUTEX(acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600101
Lin Mingb0ed7a92010-08-06 09:35:51 +0800102static void __init acpi_osi_setup_late(void);
Len Brownae00d812007-05-29 18:43:33 -0400103
Len Brownd4b7dc42008-01-23 20:50:56 -0500104/*
Len Browna6e08872008-11-08 01:21:10 -0500105 * The story of _OSI(Linux)
Len Brownd4b7dc42008-01-23 20:50:56 -0500106 *
Len Browna6e08872008-11-08 01:21:10 -0500107 * From pre-history through Linux-2.6.22,
108 * Linux responded TRUE upon a BIOS OSI(Linux) query.
Len Brownd4b7dc42008-01-23 20:50:56 -0500109 *
Len Browna6e08872008-11-08 01:21:10 -0500110 * Unfortunately, reference BIOS writers got wind of this
111 * and put OSI(Linux) in their example code, quickly exposing
112 * this string as ill-conceived and opening the door to
113 * an un-bounded number of BIOS incompatibilities.
Len Brownd4b7dc42008-01-23 20:50:56 -0500114 *
Len Browna6e08872008-11-08 01:21:10 -0500115 * For example, OSI(Linux) was used on resume to re-POST a
116 * video card on one system, because Linux at that time
117 * could not do a speedy restore in its native driver.
118 * But then upon gaining quick native restore capability,
119 * Linux has no way to tell the BIOS to skip the time-consuming
120 * POST -- putting Linux at a permanent performance disadvantage.
121 * On another system, the BIOS writer used OSI(Linux)
122 * to infer native OS support for IPMI! On other systems,
123 * OSI(Linux) simply got in the way of Linux claiming to
124 * be compatible with other operating systems, exposing
125 * BIOS issues such as skipped device initialization.
Len Brownd4b7dc42008-01-23 20:50:56 -0500126 *
Len Browna6e08872008-11-08 01:21:10 -0500127 * So "Linux" turned out to be a really poor chose of
128 * OSI string, and from Linux-2.6.23 onward we respond FALSE.
Len Brownd4b7dc42008-01-23 20:50:56 -0500129 *
130 * BIOS writers should NOT query _OSI(Linux) on future systems.
Len Browna6e08872008-11-08 01:21:10 -0500131 * Linux will complain on the console when it sees it, and return FALSE.
132 * To get Linux to return TRUE for your system will require
133 * a kernel source update to add a DMI entry,
134 * or boot with "acpi_osi=Linux"
Len Brownd4b7dc42008-01-23 20:50:56 -0500135 */
Len Brownd4b7dc42008-01-23 20:50:56 -0500136
Adrian Bunk1d15d842008-01-29 00:10:15 +0200137static struct osi_linux {
Len Brownd4b7dc42008-01-23 20:50:56 -0500138 unsigned int enable:1;
139 unsigned int dmi:1;
140 unsigned int cmdline:1;
Lin Mingd90aa922010-12-09 16:50:52 +0800141} osi_linux = {0, 0, 0};
Len Brownf5076542007-05-30 00:10:38 -0400142
Lin Mingb0ed7a92010-08-06 09:35:51 +0800143static u32 acpi_osi_handler(acpi_string interface, u32 supported)
144{
145 if (!strcmp("Linux", interface)) {
146
Len Brown89976212011-08-02 00:45:48 -0400147 printk_once(KERN_NOTICE FW_BUG PREFIX
Lin Mingb0ed7a92010-08-06 09:35:51 +0800148 "BIOS _OSI(Linux) query %s%s\n",
149 osi_linux.enable ? "honored" : "ignored",
150 osi_linux.cmdline ? " via cmdline" :
151 osi_linux.dmi ? " via DMI" : "");
152 }
153
154 return supported;
155}
156
Myron Stowebc9ffce2011-11-07 16:23:27 -0700157static void __init acpi_request_region (struct acpi_generic_address *gas,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700158 unsigned int length, char *desc)
159{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700160 u64 addr;
161
162 /* Handle possible alignment issues */
163 memcpy(&addr, &gas->address, sizeof(addr));
164 if (!addr || !length)
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700165 return;
166
Andi Kleencfa806f2010-07-20 15:18:36 -0700167 /* Resources are never freed */
Myron Stowebc9ffce2011-11-07 16:23:27 -0700168 if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_IO)
169 request_region(addr, length, desc);
170 else if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
171 request_mem_region(addr, length, desc);
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700172}
173
174static int __init acpi_reserve_resources(void)
175{
Len Browneee3c852007-02-03 01:38:16 -0500176 acpi_request_region(&acpi_gbl_FADT.xpm1a_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700177 "ACPI PM1a_EVT_BLK");
178
Len Browneee3c852007-02-03 01:38:16 -0500179 acpi_request_region(&acpi_gbl_FADT.xpm1b_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700180 "ACPI PM1b_EVT_BLK");
181
Len Browneee3c852007-02-03 01:38:16 -0500182 acpi_request_region(&acpi_gbl_FADT.xpm1a_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700183 "ACPI PM1a_CNT_BLK");
184
Len Browneee3c852007-02-03 01:38:16 -0500185 acpi_request_region(&acpi_gbl_FADT.xpm1b_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700186 "ACPI PM1b_CNT_BLK");
187
Len Browneee3c852007-02-03 01:38:16 -0500188 if (acpi_gbl_FADT.pm_timer_length == 4)
189 acpi_request_region(&acpi_gbl_FADT.xpm_timer_block, 4, "ACPI PM_TMR");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700190
Len Browneee3c852007-02-03 01:38:16 -0500191 acpi_request_region(&acpi_gbl_FADT.xpm2_control_block, acpi_gbl_FADT.pm2_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700192 "ACPI PM2_CNT_BLK");
193
194 /* Length of GPE blocks must be a non-negative multiple of 2 */
195
Len Browneee3c852007-02-03 01:38:16 -0500196 if (!(acpi_gbl_FADT.gpe0_block_length & 0x1))
197 acpi_request_region(&acpi_gbl_FADT.xgpe0_block,
198 acpi_gbl_FADT.gpe0_block_length, "ACPI GPE0_BLK");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700199
Len Browneee3c852007-02-03 01:38:16 -0500200 if (!(acpi_gbl_FADT.gpe1_block_length & 0x1))
201 acpi_request_region(&acpi_gbl_FADT.xgpe1_block,
202 acpi_gbl_FADT.gpe1_block_length, "ACPI GPE1_BLK");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700203
204 return 0;
205}
206device_initcall(acpi_reserve_resources);
207
Len Brown4be44fc2005-08-05 00:44:28 -0400208void acpi_os_printf(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210 va_list args;
211 va_start(args, fmt);
212 acpi_os_vprintf(fmt, args);
213 va_end(args);
214}
Len Brown4be44fc2005-08-05 00:44:28 -0400215
Len Brown4be44fc2005-08-05 00:44:28 -0400216void acpi_os_vprintf(const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 static char buffer[512];
Len Brown4be44fc2005-08-05 00:44:28 -0400219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 vsprintf(buffer, fmt, args);
221
222#ifdef ENABLE_DEBUGGER
223 if (acpi_in_debugger) {
224 kdb_printf("%s", buffer);
225 } else {
Frank Seidel4d939152009-02-04 17:03:07 +0100226 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
228#else
Frank Seidel4d939152009-02-04 17:03:07 +0100229 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230#endif
231}
232
Takao Indoh4996c022011-07-14 18:05:21 -0400233#ifdef CONFIG_KEXEC
234static unsigned long acpi_rsdp;
235static int __init setup_acpi_rsdp(char *arg)
236{
237 acpi_rsdp = simple_strtoul(arg, NULL, 16);
238 return 0;
239}
240early_param("acpi_rsdp", setup_acpi_rsdp);
241#endif
242
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300243acpi_physical_address __init acpi_os_get_root_pointer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Takao Indoh4996c022011-07-14 18:05:21 -0400245#ifdef CONFIG_KEXEC
246 if (acpi_rsdp)
247 return acpi_rsdp;
248#endif
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 if (efi_enabled) {
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800251 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300252 return efi.acpi20;
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800253 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300254 return efi.acpi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400256 printk(KERN_ERR PREFIX
257 "System description tables not found\n");
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300258 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
Len Brown239665a2007-11-23 20:08:02 -0500260 } else {
261 acpi_physical_address pa = 0;
262
263 acpi_find_root_pointer(&pa);
264 return pa;
265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600268/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
Myron Stowe4a3cba52010-10-21 14:24:14 -0600269static struct acpi_ioremap *
270acpi_map_lookup(acpi_physical_address phys, acpi_size size)
Myron Stowe620242a2010-10-21 14:23:53 -0600271{
272 struct acpi_ioremap *map;
273
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600274 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
Myron Stowe620242a2010-10-21 14:23:53 -0600275 if (map->phys <= phys &&
276 phys + size <= map->phys + map->size)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600277 return map;
278
279 return NULL;
280}
281
282/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
283static void __iomem *
284acpi_map_vaddr_lookup(acpi_physical_address phys, unsigned int size)
285{
286 struct acpi_ioremap *map;
287
288 map = acpi_map_lookup(phys, size);
289 if (map)
290 return map->virt + (phys - map->phys);
Myron Stowe620242a2010-10-21 14:23:53 -0600291
292 return NULL;
293}
294
Rafael J. Wysocki13606a22011-02-08 23:38:25 +0100295void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size)
296{
297 struct acpi_ioremap *map;
298 void __iomem *virt = NULL;
299
300 mutex_lock(&acpi_ioremap_lock);
301 map = acpi_map_lookup(phys, size);
302 if (map) {
303 virt = map->virt + (phys - map->phys);
304 map->refcount++;
305 }
306 mutex_unlock(&acpi_ioremap_lock);
307 return virt;
308}
309EXPORT_SYMBOL_GPL(acpi_os_get_iomem);
310
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600311/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
Myron Stowe620242a2010-10-21 14:23:53 -0600312static struct acpi_ioremap *
313acpi_map_lookup_virt(void __iomem *virt, acpi_size size)
314{
315 struct acpi_ioremap *map;
316
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600317 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600318 if (map->virt <= virt &&
319 virt + size <= map->virt + map->size)
Myron Stowe620242a2010-10-21 14:23:53 -0600320 return map;
321
322 return NULL;
323}
324
Myron Stoweba242d52012-01-20 19:13:30 -0700325#ifndef CONFIG_IA64
326#define should_use_kmap(pfn) page_is_ram(pfn)
327#else
328/* ioremap will take care of cache attributes */
329#define should_use_kmap(pfn) 0
330#endif
331
332static void __iomem *acpi_map(acpi_physical_address pg_off, unsigned long pg_sz)
333{
334 unsigned long pfn;
335
336 pfn = pg_off >> PAGE_SHIFT;
337 if (should_use_kmap(pfn)) {
338 if (pg_sz > PAGE_SIZE)
339 return NULL;
340 return (void __iomem __force *)kmap(pfn_to_page(pfn));
341 } else
342 return acpi_os_ioremap(pg_off, pg_sz);
343}
344
345static void acpi_unmap(acpi_physical_address pg_off, void __iomem *vaddr)
346{
347 unsigned long pfn;
348
349 pfn = pg_off >> PAGE_SHIFT;
Jan Beuliche2526752012-02-24 11:41:53 +0000350 if (should_use_kmap(pfn))
Myron Stoweba242d52012-01-20 19:13:30 -0700351 kunmap(pfn_to_page(pfn));
352 else
353 iounmap(vaddr);
354}
355
Jan Beulich2fdf0742007-12-13 08:33:59 +0000356void __iomem *__init_refok
357acpi_os_map_memory(acpi_physical_address phys, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100359 struct acpi_ioremap *map;
Myron Stowe620242a2010-10-21 14:23:53 -0600360 void __iomem *virt;
Rafael J. Wysocki2d6d9fd2011-01-19 22:27:14 +0100361 acpi_physical_address pg_off;
362 acpi_size pg_sz;
Myron Stowe620242a2010-10-21 14:23:53 -0600363
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800364 if (phys > ULONG_MAX) {
365 printk(KERN_ERR PREFIX "Cannot map memory that high\n");
Randy Dunlap70c08462007-02-13 16:11:36 -0800366 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
Myron Stowe620242a2010-10-21 14:23:53 -0600368
369 if (!acpi_gbl_permanent_mmap)
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300370 return __acpi_map_table((unsigned long)phys, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600371
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100372 mutex_lock(&acpi_ioremap_lock);
373 /* Check if there's a suitable mapping already. */
374 map = acpi_map_lookup(phys, size);
375 if (map) {
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100376 map->refcount++;
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100377 goto out;
378 }
379
Myron Stowe620242a2010-10-21 14:23:53 -0600380 map = kzalloc(sizeof(*map), GFP_KERNEL);
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100381 if (!map) {
382 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600383 return NULL;
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100384 }
Myron Stowe620242a2010-10-21 14:23:53 -0600385
Myron Stowe4a3cba52010-10-21 14:24:14 -0600386 pg_off = round_down(phys, PAGE_SIZE);
387 pg_sz = round_up(phys + size, PAGE_SIZE) - pg_off;
Myron Stoweba242d52012-01-20 19:13:30 -0700388 virt = acpi_map(pg_off, pg_sz);
Myron Stowe620242a2010-10-21 14:23:53 -0600389 if (!virt) {
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100390 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600391 kfree(map);
392 return NULL;
393 }
394
395 INIT_LIST_HEAD(&map->list);
396 map->virt = virt;
Myron Stowe4a3cba52010-10-21 14:24:14 -0600397 map->phys = pg_off;
398 map->size = pg_sz;
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100399 map->refcount = 1;
Myron Stowe620242a2010-10-21 14:23:53 -0600400
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600401 list_add_tail_rcu(&map->list, &acpi_ioremaps);
Myron Stowe620242a2010-10-21 14:23:53 -0600402
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100403 out:
404 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe4a3cba52010-10-21 14:24:14 -0600405 return map->virt + (phys - map->phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800407EXPORT_SYMBOL_GPL(acpi_os_map_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100409static void acpi_os_drop_map_ref(struct acpi_ioremap *map)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600410{
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100411 if (!--map->refcount)
412 list_del_rcu(&map->list);
Myron Stowe4a3cba52010-10-21 14:24:14 -0600413}
Myron Stowe4a3cba52010-10-21 14:24:14 -0600414
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100415static void acpi_os_map_cleanup(struct acpi_ioremap *map)
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100416{
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100417 if (!map->refcount) {
418 synchronize_rcu();
Myron Stoweba242d52012-01-20 19:13:30 -0700419 acpi_unmap(map->phys, map->virt);
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100420 kfree(map);
421 }
Myron Stowe4a3cba52010-10-21 14:24:14 -0600422}
423
Jeremy Fitzhardinge0d3a9cf2009-02-22 14:58:56 -0800424void __ref acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Myron Stowe620242a2010-10-21 14:23:53 -0600426 struct acpi_ioremap *map;
Myron Stowe620242a2010-10-21 14:23:53 -0600427
428 if (!acpi_gbl_permanent_mmap) {
Yinghai Lu7d972772009-02-07 15:39:41 -0800429 __acpi_unmap_table(virt, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600430 return;
431 }
432
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100433 mutex_lock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600434 map = acpi_map_lookup_virt(virt, size);
435 if (!map) {
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100436 mutex_unlock(&acpi_ioremap_lock);
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100437 WARN(true, PREFIX "%s: bad address %p\n", __func__, virt);
Myron Stowe620242a2010-10-21 14:23:53 -0600438 return;
439 }
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100440 acpi_os_drop_map_ref(map);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100441 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600442
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100443 acpi_os_map_cleanup(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800445EXPORT_SYMBOL_GPL(acpi_os_unmap_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Jeremy Fitzhardinge0d3a9cf2009-02-22 14:58:56 -0800447void __init early_acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
Yinghai Lu7d972772009-02-07 15:39:41 -0800448{
449 if (!acpi_gbl_permanent_mmap)
450 __acpi_unmap_table(virt, size);
451}
452
Myron Stowe6f68c912011-11-07 16:23:34 -0700453int acpi_os_map_generic_address(struct acpi_generic_address *gas)
Myron Stowe29718522010-10-21 14:23:59 -0600454{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700455 u64 addr;
Myron Stowe29718522010-10-21 14:23:59 -0600456 void __iomem *virt;
457
Myron Stowebc9ffce2011-11-07 16:23:27 -0700458 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
Myron Stowe29718522010-10-21 14:23:59 -0600459 return 0;
460
Myron Stowebc9ffce2011-11-07 16:23:27 -0700461 /* Handle possible alignment issues */
462 memcpy(&addr, &gas->address, sizeof(addr));
463 if (!addr || !gas->bit_width)
Myron Stowe29718522010-10-21 14:23:59 -0600464 return -EINVAL;
465
Myron Stowebc9ffce2011-11-07 16:23:27 -0700466 virt = acpi_os_map_memory(addr, gas->bit_width / 8);
Myron Stowe29718522010-10-21 14:23:59 -0600467 if (!virt)
468 return -EIO;
469
470 return 0;
471}
Myron Stowe6f68c912011-11-07 16:23:34 -0700472EXPORT_SYMBOL(acpi_os_map_generic_address);
Myron Stowe29718522010-10-21 14:23:59 -0600473
Myron Stowe6f68c912011-11-07 16:23:34 -0700474void acpi_os_unmap_generic_address(struct acpi_generic_address *gas)
Myron Stowe29718522010-10-21 14:23:59 -0600475{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700476 u64 addr;
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100477 struct acpi_ioremap *map;
Myron Stowe29718522010-10-21 14:23:59 -0600478
Myron Stowebc9ffce2011-11-07 16:23:27 -0700479 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
Myron Stowe29718522010-10-21 14:23:59 -0600480 return;
481
Myron Stowebc9ffce2011-11-07 16:23:27 -0700482 /* Handle possible alignment issues */
483 memcpy(&addr, &gas->address, sizeof(addr));
484 if (!addr || !gas->bit_width)
Myron Stowe29718522010-10-21 14:23:59 -0600485 return;
486
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100487 mutex_lock(&acpi_ioremap_lock);
Myron Stowebc9ffce2011-11-07 16:23:27 -0700488 map = acpi_map_lookup(addr, gas->bit_width / 8);
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100489 if (!map) {
490 mutex_unlock(&acpi_ioremap_lock);
491 return;
492 }
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100493 acpi_os_drop_map_ref(map);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100494 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe29718522010-10-21 14:23:59 -0600495
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100496 acpi_os_map_cleanup(map);
Myron Stowe29718522010-10-21 14:23:59 -0600497}
Myron Stowe6f68c912011-11-07 16:23:34 -0700498EXPORT_SYMBOL(acpi_os_unmap_generic_address);
Myron Stowe29718522010-10-21 14:23:59 -0600499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500#ifdef ACPI_FUTURE_USAGE
501acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400502acpi_os_get_physical_address(void *virt, acpi_physical_address * phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Len Brown4be44fc2005-08-05 00:44:28 -0400504 if (!phys || !virt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return AE_BAD_PARAMETER;
506
507 *phys = virt_to_phys(virt);
508
509 return AE_OK;
510}
511#endif
512
513#define ACPI_MAX_OVERRIDE_LEN 100
514
515static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN];
516
517acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400518acpi_os_predefined_override(const struct acpi_predefined_names *init_val,
519 acpi_string * new_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
521 if (!init_val || !new_val)
522 return AE_BAD_PARAMETER;
523
524 *new_val = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400525 if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400527 acpi_os_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 *new_val = acpi_os_name;
529 }
530
531 return AE_OK;
532}
533
534acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400535acpi_os_table_override(struct acpi_table_header * existing_table,
536 struct acpi_table_header ** new_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
538 if (!existing_table || !new_table)
539 return AE_BAD_PARAMETER;
540
Markus Gaugusch71fc47a2008-02-05 00:04:06 +0100541 *new_table = NULL;
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543#ifdef CONFIG_ACPI_CUSTOM_DSDT
544 if (strncmp(existing_table->signature, "DSDT", 4) == 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400545 *new_table = (struct acpi_table_header *)AmlCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546#endif
Éric Piel6ed31e92008-02-05 00:04:50 +0100547 if (*new_table != NULL) {
548 printk(KERN_WARNING PREFIX "Override [%4.4s-%8.8s], "
549 "this is unsafe: tainting kernel\n",
550 existing_table->signature,
551 existing_table->oem_table_id);
552 add_taint(TAINT_OVERRIDDEN_ACPI_TABLE);
553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return AE_OK;
555}
556
Bob Mooref7b004a2012-02-14 18:31:56 +0800557acpi_status
558acpi_os_physical_table_override(struct acpi_table_header *existing_table,
559 acpi_physical_address * new_address,
560 u32 *new_table_length)
561{
562 return AE_SUPPORT;
563}
564
565
David Howells7d12e782006-10-05 14:55:46 +0100566static irqreturn_t acpi_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Len Brown5229e872008-02-06 01:26:55 -0500568 u32 handled;
569
570 handled = (*acpi_irq_handler) (acpi_irq_context);
571
572 if (handled) {
573 acpi_irq_handled++;
574 return IRQ_HANDLED;
Len Brown88bea182009-04-21 00:35:47 -0400575 } else {
576 acpi_irq_not_handled++;
Len Brown5229e872008-02-06 01:26:55 -0500577 return IRQ_NONE;
Len Brown88bea182009-04-21 00:35:47 -0400578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
581acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400582acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
583 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
585 unsigned int irq;
586
Len Brown5229e872008-02-06 01:26:55 -0500587 acpi_irq_stats_init();
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 /*
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100590 * ACPI interrupts different from the SCI in our copy of the FADT are
591 * not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 */
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100593 if (gsi != acpi_gbl_FADT.sci_interrupt)
594 return AE_BAD_PARAMETER;
595
596 if (acpi_irq_handler)
597 return AE_ALREADY_ACQUIRED;
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (acpi_gsi_to_irq(gsi, &irq) < 0) {
600 printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n",
601 gsi);
602 return AE_OK;
603 }
604
605 acpi_irq_handler = handler;
606 acpi_irq_context = context;
Andi Kleen6fe0d062012-02-06 08:17:09 -0800607 if (request_threaded_irq(irq, NULL, acpi_irq, IRQF_SHARED, "acpi",
608 acpi_irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq);
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100610 acpi_irq_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return AE_NOT_ACQUIRED;
612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 return AE_OK;
615}
616
Len Brown4be44fc2005-08-05 00:44:28 -0400617acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100619 if (irq != acpi_gbl_FADT.sci_interrupt)
620 return AE_BAD_PARAMETER;
621
622 free_irq(irq, acpi_irq);
623 acpi_irq_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 return AE_OK;
626}
627
628/*
629 * Running in interpreter thread context, safe to sleep
630 */
631
Lin Ming439913f2010-01-28 10:53:19 +0800632void acpi_os_sleep(u64 ms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Nishanth Aravamudan01a527e2005-11-07 01:01:14 -0800634 schedule_timeout_interruptible(msecs_to_jiffies(ms));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635}
Len Brown4be44fc2005-08-05 00:44:28 -0400636
Len Brown4be44fc2005-08-05 00:44:28 -0400637void acpi_os_stall(u32 us)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
639 while (us) {
640 u32 delay = 1000;
641
642 if (delay > us)
643 delay = us;
644 udelay(delay);
645 touch_nmi_watchdog();
646 us -= delay;
647 }
648}
Len Brown4be44fc2005-08-05 00:44:28 -0400649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650/*
651 * Support ACPI 3.0 AML Timer operand
652 * Returns 64-bit free-running, monotonically increasing timer
653 * with 100ns granularity
654 */
Len Brown4be44fc2005-08-05 00:44:28 -0400655u64 acpi_os_get_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
657 static u64 t;
658
659#ifdef CONFIG_HPET
660 /* TBD: use HPET if available */
661#endif
662
663#ifdef CONFIG_X86_PM_TIMER
664 /* TBD: default to PM timer if HPET was not available */
665#endif
666 if (!t)
667 printk(KERN_ERR PREFIX "acpi_os_get_timer() TBD\n");
668
669 return ++t;
670}
671
Len Brown4be44fc2005-08-05 00:44:28 -0400672acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
674 u32 dummy;
675
676 if (!value)
677 value = &dummy;
678
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800679 *value = 0;
680 if (width <= 8) {
Len Brown4be44fc2005-08-05 00:44:28 -0400681 *(u8 *) value = inb(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800682 } else if (width <= 16) {
Len Brown4be44fc2005-08-05 00:44:28 -0400683 *(u16 *) value = inw(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800684 } else if (width <= 32) {
Len Brown4be44fc2005-08-05 00:44:28 -0400685 *(u32 *) value = inl(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800686 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 BUG();
688 }
689
690 return AE_OK;
691}
Len Brown4be44fc2005-08-05 00:44:28 -0400692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693EXPORT_SYMBOL(acpi_os_read_port);
694
Len Brown4be44fc2005-08-05 00:44:28 -0400695acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800697 if (width <= 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 outb(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800699 } else if (width <= 16) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 outw(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800701 } else if (width <= 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 outl(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800703 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 BUG();
705 }
706
707 return AE_OK;
708}
Len Brown4be44fc2005-08-05 00:44:28 -0400709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710EXPORT_SYMBOL(acpi_os_write_port);
711
Myron Stowee615bf52012-01-20 19:13:24 -0700712#ifdef readq
713static inline u64 read64(const volatile void __iomem *addr)
714{
715 return readq(addr);
716}
717#else
718static inline u64 read64(const volatile void __iomem *addr)
719{
720 u64 l, h;
721 l = readl(addr);
722 h = readl(addr+4);
723 return l | (h << 32);
724}
725#endif
726
727acpi_status
Bob Moore653f4b52012-02-14 18:29:55 +0800728acpi_os_read_memory(acpi_physical_address phys_addr, u64 *value, u32 width)
Myron Stowee615bf52012-01-20 19:13:24 -0700729{
730 void __iomem *virt_addr;
731 unsigned int size = width / 8;
732 bool unmap = false;
733 u64 dummy;
734
735 rcu_read_lock();
736 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
737 if (!virt_addr) {
738 rcu_read_unlock();
739 virt_addr = acpi_os_ioremap(phys_addr, size);
740 if (!virt_addr)
741 return AE_BAD_ADDRESS;
742 unmap = true;
743 }
744
745 if (!value)
746 value = &dummy;
747
748 switch (width) {
749 case 8:
750 *(u8 *) value = readb(virt_addr);
751 break;
752 case 16:
753 *(u16 *) value = readw(virt_addr);
754 break;
755 case 32:
756 *(u32 *) value = readl(virt_addr);
757 break;
758 case 64:
759 *(u64 *) value = read64(virt_addr);
760 break;
761 default:
762 BUG();
763 }
764
765 if (unmap)
766 iounmap(virt_addr);
767 else
768 rcu_read_unlock();
769
770 return AE_OK;
771}
772
Myron Stowee615bf52012-01-20 19:13:24 -0700773#ifdef writeq
774static inline void write64(u64 val, volatile void __iomem *addr)
775{
776 writeq(val, addr);
777}
778#else
779static inline void write64(u64 val, volatile void __iomem *addr)
780{
781 writel(val, addr);
782 writel(val>>32, addr+4);
783}
784#endif
785
786acpi_status
Bob Moore653f4b52012-02-14 18:29:55 +0800787acpi_os_write_memory(acpi_physical_address phys_addr, u64 value, u32 width)
Myron Stowee615bf52012-01-20 19:13:24 -0700788{
789 void __iomem *virt_addr;
790 unsigned int size = width / 8;
791 bool unmap = false;
792
793 rcu_read_lock();
794 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
795 if (!virt_addr) {
796 rcu_read_unlock();
797 virt_addr = acpi_os_ioremap(phys_addr, size);
798 if (!virt_addr)
799 return AE_BAD_ADDRESS;
800 unmap = true;
801 }
802
803 switch (width) {
804 case 8:
805 writeb(value, virt_addr);
806 break;
807 case 16:
808 writew(value, virt_addr);
809 break;
810 case 32:
811 writel(value, virt_addr);
812 break;
813 case 64:
814 write64(value, virt_addr);
815 break;
816 default:
817 BUG();
818 }
819
820 if (unmap)
821 iounmap(virt_addr);
822 else
823 rcu_read_unlock();
824
825 return AE_OK;
826}
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400829acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Bob Moorec5f02312010-08-06 08:57:53 +0800830 u64 *value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
832 int result, size;
Bob Moorec5f02312010-08-06 08:57:53 +0800833 u32 value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 if (!value)
836 return AE_BAD_PARAMETER;
837
838 switch (width) {
839 case 8:
840 size = 1;
841 break;
842 case 16:
843 size = 2;
844 break;
845 case 32:
846 size = 4;
847 break;
848 default:
849 return AE_ERROR;
850 }
851
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -0500852 result = raw_pci_read(pci_id->segment, pci_id->bus,
853 PCI_DEVFN(pci_id->device, pci_id->function),
Bob Moorec5f02312010-08-06 08:57:53 +0800854 reg, size, &value32);
855 *value = value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 return (result ? AE_ERROR : AE_OK);
858}
Len Brown4be44fc2005-08-05 00:44:28 -0400859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400861acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Lin Ming439913f2010-01-28 10:53:19 +0800862 u64 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
864 int result, size;
865
866 switch (width) {
867 case 8:
868 size = 1;
869 break;
870 case 16:
871 size = 2;
872 break;
873 case 32:
874 size = 4;
875 break;
876 default:
877 return AE_ERROR;
878 }
879
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -0500880 result = raw_pci_write(pci_id->segment, pci_id->bus,
881 PCI_DEVFN(pci_id->device, pci_id->function),
882 reg, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 return (result ? AE_ERROR : AE_OK);
885}
886
David Howells65f27f32006-11-22 14:55:48 +0000887static void acpi_os_execute_deferred(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
David Howells65f27f32006-11-22 14:55:48 +0000889 struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work);
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -0400890
Bjorn Helgaas9ac61852009-08-31 22:32:10 +0000891 if (dpc->wait)
892 acpi_os_wait_events_complete(NULL);
Zhang Rui19cd8472008-08-28 10:05:06 +0800893
894 dpc->function(dpc->context);
895 kfree(dpc);
Zhang Rui19cd8472008-08-28 10:05:06 +0800896}
897
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400898/*******************************************************************************
899 *
900 * FUNCTION: acpi_os_execute
901 *
902 * PARAMETERS: Type - Type of the callback
903 * Function - Function to be executed
904 * Context - Function parameters
905 *
906 * RETURN: Status
907 *
908 * DESCRIPTION: Depending on type, either queues function for deferred execution or
909 * immediately executes function on a separate thread.
910 *
911 ******************************************************************************/
912
Zhang Rui19cd8472008-08-28 10:05:06 +0800913static acpi_status __acpi_os_execute(acpi_execute_type type,
914 acpi_osd_exec_callback function, void *context, int hp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
Len Brown4be44fc2005-08-05 00:44:28 -0400916 acpi_status status = AE_OK;
917 struct acpi_os_dpc *dpc;
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300918 struct workqueue_struct *queue;
Zhang Rui19cd8472008-08-28 10:05:06 +0800919 int ret;
Len Brown72945b22006-07-12 22:46:42 -0400920 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
921 "Scheduling function [%p(%p)] for deferred execution.\n",
922 function, context));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 /*
925 * Allocate/initialize DPC structure. Note that this memory will be
David Howells65f27f32006-11-22 14:55:48 +0000926 * freed by the callee. The kernel handles the work_struct list in a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 * way that allows us to also free its memory inside the callee.
928 * Because we may want to schedule several tasks with different
929 * parameters we can't use the approach some kernel code uses of
David Howells65f27f32006-11-22 14:55:48 +0000930 * having a static work_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 */
Len Brown72945b22006-07-12 22:46:42 -0400932
David Howells65f27f32006-11-22 14:55:48 +0000933 dpc = kmalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if (!dpc)
Lin Ming889c78b2008-12-31 09:23:57 +0800935 return AE_NO_MEMORY;
Linus Torvaldsb976fe12006-11-17 19:31:09 -0800936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 dpc->function = function;
938 dpc->context = context;
Linus Torvaldsb976fe12006-11-17 19:31:09 -0800939
Zhang Ruic02256b2009-06-23 10:20:29 +0800940 /*
941 * We can't run hotplug code in keventd_wq/kacpid_wq/kacpid_notify_wq
942 * because the hotplug code may call driver .remove() functions,
943 * which invoke flush_scheduled_work/acpi_os_wait_events_complete
944 * to flush these workqueues.
945 */
946 queue = hp ? kacpi_hotplug_wq :
947 (type == OSL_NOTIFY_HANDLER ? kacpi_notify_wq : kacpid_wq);
Bjorn Helgaas9ac61852009-08-31 22:32:10 +0000948 dpc->wait = hp ? 1 : 0;
Zhang Ruibc736752010-03-22 15:48:54 +0800949
950 if (queue == kacpi_hotplug_wq)
951 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
952 else if (queue == kacpi_notify_wq)
953 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
954 else
955 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
956
Tejun Heo8fec62b2010-06-29 10:07:09 +0200957 /*
958 * On some machines, a software-initiated SMI causes corruption unless
959 * the SMI runs on CPU 0. An SMI can be initiated by any AML, but
960 * typically it's done in GPE-related methods that are run via
961 * workqueues, so we can avoid the known corruption cases by always
962 * queueing on CPU 0.
963 */
964 ret = queue_work_on(0, queue, &dpc->work);
Zhang Rui19cd8472008-08-28 10:05:06 +0800965
966 if (!ret) {
Lin Ming55ac9a02008-09-28 14:51:56 +0800967 printk(KERN_ERR PREFIX
968 "Call to queue_work() failed.\n");
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300969 status = AE_ERROR;
970 kfree(dpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 }
Lin Ming889c78b2008-12-31 09:23:57 +0800972 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
Len Brown4be44fc2005-08-05 00:44:28 -0400974
Zhang Rui19cd8472008-08-28 10:05:06 +0800975acpi_status acpi_os_execute(acpi_execute_type type,
976 acpi_osd_exec_callback function, void *context)
977{
978 return __acpi_os_execute(type, function, context, 0);
979}
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400980EXPORT_SYMBOL(acpi_os_execute);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Zhang Rui19cd8472008-08-28 10:05:06 +0800982acpi_status acpi_os_hotplug_execute(acpi_osd_exec_callback function,
983 void *context)
984{
985 return __acpi_os_execute(0, function, context, 1);
986}
987
Len Brown4be44fc2005-08-05 00:44:28 -0400988void acpi_os_wait_events_complete(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989{
990 flush_workqueue(kacpid_wq);
Zhang Rui2f67a062008-04-29 02:34:42 -0400991 flush_workqueue(kacpi_notify_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
Len Brown4be44fc2005-08-05 00:44:28 -0400993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994EXPORT_SYMBOL(acpi_os_wait_events_complete);
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400997acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Len Brown4be44fc2005-08-05 00:44:28 -0400999 struct semaphore *sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 sem = acpi_os_allocate(sizeof(struct semaphore));
1002 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -04001003 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 memset(sem, 0, sizeof(struct semaphore));
1005
1006 sema_init(sem, initial_units);
1007
Len Brown4be44fc2005-08-05 00:44:28 -04001008 *handle = (acpi_handle *) sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Len Brown4be44fc2005-08-05 00:44:28 -04001010 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n",
1011 *handle, initial_units));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Patrick Mocheld550d982006-06-27 00:41:40 -04001013 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016/*
1017 * TODO: A better way to delete semaphores? Linux doesn't have a
1018 * 'delete_semaphore()' function -- may result in an invalid
1019 * pointer dereference for non-synchronized consumers. Should
1020 * we at least check for blocked threads and signal/cancel them?
1021 */
1022
Len Brown4be44fc2005-08-05 00:44:28 -04001023acpi_status acpi_os_delete_semaphore(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
Len Brown4be44fc2005-08-05 00:44:28 -04001025 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -04001028 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Len Brown4be44fc2005-08-05 00:44:28 -04001030 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001032 BUG_ON(!list_empty(&sem->wait_list));
Len Brown02438d82006-06-30 03:19:10 -04001033 kfree(sem);
Len Brown4be44fc2005-08-05 00:44:28 -04001034 sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Patrick Mocheld550d982006-06-27 00:41:40 -04001036 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 * TODO: Support for units > 1?
1041 */
Len Brown4be44fc2005-08-05 00:44:28 -04001042acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
Len Brown4be44fc2005-08-05 00:44:28 -04001044 acpi_status status = AE_OK;
1045 struct semaphore *sem = (struct semaphore *)handle;
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001046 long jiffies;
Len Brown4be44fc2005-08-05 00:44:28 -04001047 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001050 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -04001053 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Len Brown4be44fc2005-08-05 00:44:28 -04001055 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n",
1056 handle, units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001058 if (timeout == ACPI_WAIT_FOREVER)
1059 jiffies = MAX_SCHEDULE_TIMEOUT;
1060 else
1061 jiffies = msecs_to_jiffies(timeout);
1062
1063 ret = down_timeout(sem, jiffies);
1064 if (ret)
1065 status = AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067 if (ACPI_FAILURE(status)) {
Bjorn Helgaas9e7e2c02006-04-27 05:25:00 -04001068 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -04001069 "Failed to acquire semaphore[%p|%d|%d], %s",
Len Brown4be44fc2005-08-05 00:44:28 -04001070 handle, units, timeout,
1071 acpi_format_exception(status)));
1072 } else {
1073 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -04001074 "Acquired semaphore[%p|%d|%d]", handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001075 units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
1077
Patrick Mocheld550d982006-06-27 00:41:40 -04001078 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081/*
1082 * TODO: Support for units > 1?
1083 */
Len Brown4be44fc2005-08-05 00:44:28 -04001084acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Len Brown4be44fc2005-08-05 00:44:28 -04001086 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001089 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -04001092 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Len Brown4be44fc2005-08-05 00:44:28 -04001094 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle,
1095 units));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 up(sem);
1098
Patrick Mocheld550d982006-06-27 00:41:40 -04001099 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100}
Len Brown4be44fc2005-08-05 00:44:28 -04001101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -04001103u32 acpi_os_get_line(char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
1105
1106#ifdef ENABLE_DEBUGGER
1107 if (acpi_in_debugger) {
1108 u32 chars;
1109
1110 kdb_read(buffer, sizeof(line_buf));
1111
1112 /* remove the CR kdb includes */
1113 chars = strlen(buffer) - 1;
1114 buffer[chars] = '\0';
1115 }
1116#endif
1117
1118 return 0;
1119}
Len Brown4be44fc2005-08-05 00:44:28 -04001120#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Len Brown4be44fc2005-08-05 00:44:28 -04001122acpi_status acpi_os_signal(u32 function, void *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
Len Brown4be44fc2005-08-05 00:44:28 -04001124 switch (function) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 case ACPI_SIGNAL_FATAL:
1126 printk(KERN_ERR PREFIX "Fatal opcode executed\n");
1127 break;
1128 case ACPI_SIGNAL_BREAKPOINT:
1129 /*
1130 * AML Breakpoint
1131 * ACPI spec. says to treat it as a NOP unless
1132 * you are debugging. So if/when we integrate
1133 * AML debugger into the kernel debugger its
1134 * hook will go here. But until then it is
1135 * not useful to print anything on breakpoints.
1136 */
1137 break;
1138 default:
1139 break;
1140 }
1141
1142 return AE_OK;
1143}
Len Brown4be44fc2005-08-05 00:44:28 -04001144
Len Brown4be44fc2005-08-05 00:44:28 -04001145static int __init acpi_os_name_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
1147 char *p = acpi_os_name;
Len Brown4be44fc2005-08-05 00:44:28 -04001148 int count = ACPI_MAX_OVERRIDE_LEN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 if (!str || !*str)
1151 return 0;
1152
1153 for (; count-- && str && *str; str++) {
1154 if (isalnum(*str) || *str == ' ' || *str == ':')
1155 *p++ = *str;
1156 else if (*str == '\'' || *str == '"')
1157 continue;
1158 else
1159 break;
1160 }
1161 *p = 0;
1162
1163 return 1;
Len Brown4be44fc2005-08-05 00:44:28 -04001164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165}
1166
1167__setup("acpi_os_name=", acpi_os_name_setup);
1168
Lin Ming12d32062010-12-09 16:51:06 +08001169#define OSI_STRING_LENGTH_MAX 64 /* arbitrary */
1170#define OSI_STRING_ENTRIES_MAX 16 /* arbitrary */
1171
1172struct osi_setup_entry {
1173 char string[OSI_STRING_LENGTH_MAX];
1174 bool enable;
1175};
1176
Shaohua Liaa165972011-07-28 13:48:43 -07001177static struct osi_setup_entry __initdata
1178 osi_setup_entries[OSI_STRING_ENTRIES_MAX] = {
1179 {"Module Device", true},
1180 {"Processor Device", true},
1181 {"3.0 _SCP Extensions", true},
1182 {"Processor Aggregator Device", true},
1183};
Lin Ming12d32062010-12-09 16:51:06 +08001184
Lin Mingd90aa922010-12-09 16:50:52 +08001185void __init acpi_osi_setup(char *str)
1186{
Lin Ming12d32062010-12-09 16:51:06 +08001187 struct osi_setup_entry *osi;
1188 bool enable = true;
1189 int i;
1190
Lin Mingd90aa922010-12-09 16:50:52 +08001191 if (!acpi_gbl_create_osi_method)
1192 return;
1193
1194 if (str == NULL || *str == '\0') {
1195 printk(KERN_INFO PREFIX "_OSI method disabled\n");
1196 acpi_gbl_create_osi_method = FALSE;
Lin Ming12d32062010-12-09 16:51:06 +08001197 return;
1198 }
1199
1200 if (*str == '!') {
1201 str++;
1202 enable = false;
1203 }
1204
1205 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1206 osi = &osi_setup_entries[i];
1207 if (!strcmp(osi->string, str)) {
1208 osi->enable = enable;
1209 break;
1210 } else if (osi->string[0] == '\0') {
1211 osi->enable = enable;
1212 strncpy(osi->string, str, OSI_STRING_LENGTH_MAX);
1213 break;
1214 }
1215 }
Lin Mingd90aa922010-12-09 16:50:52 +08001216}
1217
Len Brownd4b7dc42008-01-23 20:50:56 -05001218static void __init set_osi_linux(unsigned int enable)
1219{
Lin Mingd90aa922010-12-09 16:50:52 +08001220 if (osi_linux.enable != enable)
Len Brownd4b7dc42008-01-23 20:50:56 -05001221 osi_linux.enable = enable;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001222
1223 if (osi_linux.enable)
1224 acpi_osi_setup("Linux");
1225 else
1226 acpi_osi_setup("!Linux");
1227
Len Brownd4b7dc42008-01-23 20:50:56 -05001228 return;
1229}
Len Brownf5076542007-05-30 00:10:38 -04001230
Len Brownd4b7dc42008-01-23 20:50:56 -05001231static void __init acpi_cmdline_osi_linux(unsigned int enable)
1232{
Lin Mingd90aa922010-12-09 16:50:52 +08001233 osi_linux.cmdline = 1; /* cmdline set the default and override DMI */
1234 osi_linux.dmi = 0;
Len Brownd4b7dc42008-01-23 20:50:56 -05001235 set_osi_linux(enable);
Len Brownf5076542007-05-30 00:10:38 -04001236
Len Brownd4b7dc42008-01-23 20:50:56 -05001237 return;
1238}
1239
1240void __init acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d)
1241{
Len Brownd4b7dc42008-01-23 20:50:56 -05001242 printk(KERN_NOTICE PREFIX "DMI detected: %s\n", d->ident);
1243
1244 if (enable == -1)
1245 return;
1246
Lin Mingd90aa922010-12-09 16:50:52 +08001247 osi_linux.dmi = 1; /* DMI knows that this box asks OSI(Linux) */
Len Brownd4b7dc42008-01-23 20:50:56 -05001248 set_osi_linux(enable);
1249
Len Brownf5076542007-05-30 00:10:38 -04001250 return;
1251}
1252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253/*
Len Brownae00d812007-05-29 18:43:33 -04001254 * Modify the list of "OS Interfaces" reported to BIOS via _OSI
1255 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 * empty string disables _OSI
Len Brownae00d812007-05-29 18:43:33 -04001257 * string starting with '!' disables that string
1258 * otherwise string is added to list, augmenting built-in strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 */
Lin Mingb0ed7a92010-08-06 09:35:51 +08001260static void __init acpi_osi_setup_late(void)
1261{
Lin Ming12d32062010-12-09 16:51:06 +08001262 struct osi_setup_entry *osi;
1263 char *str;
1264 int i;
Lin Mingd90aa922010-12-09 16:50:52 +08001265 acpi_status status;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001266
Lin Ming12d32062010-12-09 16:51:06 +08001267 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1268 osi = &osi_setup_entries[i];
1269 str = osi->string;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001270
Lin Ming12d32062010-12-09 16:51:06 +08001271 if (*str == '\0')
1272 break;
1273 if (osi->enable) {
1274 status = acpi_install_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001275
Lin Ming12d32062010-12-09 16:51:06 +08001276 if (ACPI_SUCCESS(status))
1277 printk(KERN_INFO PREFIX "Added _OSI(%s)\n", str);
1278 } else {
1279 status = acpi_remove_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001280
Lin Ming12d32062010-12-09 16:51:06 +08001281 if (ACPI_SUCCESS(status))
1282 printk(KERN_INFO PREFIX "Deleted _OSI(%s)\n", str);
1283 }
Lin Mingb0ed7a92010-08-06 09:35:51 +08001284 }
1285}
1286
Lin Mingd90aa922010-12-09 16:50:52 +08001287static int __init osi_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288{
Lin Mingd90aa922010-12-09 16:50:52 +08001289 if (str && !strcmp("Linux", str))
1290 acpi_cmdline_osi_linux(1);
1291 else if (str && !strcmp("!Linux", str))
1292 acpi_cmdline_osi_linux(0);
1293 else
1294 acpi_osi_setup(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 return 1;
1297}
1298
Lin Mingd90aa922010-12-09 16:50:52 +08001299__setup("acpi_osi=", osi_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301/* enable serialization to combat AE_ALREADY_EXISTS errors */
Len Brown4be44fc2005-08-05 00:44:28 -04001302static int __init acpi_serialize_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
1304 printk(KERN_INFO PREFIX "serialize enabled\n");
1305
1306 acpi_gbl_all_methods_serialized = TRUE;
1307
1308 return 1;
1309}
1310
1311__setup("acpi_serialize", acpi_serialize_setup);
1312
Thomas Renningerdf92e692008-02-04 23:31:22 -08001313/* Check of resource interference between native drivers and ACPI
1314 * OperationRegions (SystemIO and System Memory only).
1315 * IO ports and memory declared in ACPI might be used by the ACPI subsystem
1316 * in arbitrary AML code and can interfere with legacy drivers.
1317 * acpi_enforce_resources= can be set to:
1318 *
Luca Tettamanti7e905602009-03-30 00:01:27 +02001319 * - strict (default) (2)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001320 * -> further driver trying to access the resources will not load
Luca Tettamanti7e905602009-03-30 00:01:27 +02001321 * - lax (1)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001322 * -> further driver trying to access the resources will load, but you
1323 * get a system message that something might go wrong...
1324 *
1325 * - no (0)
1326 * -> ACPI Operation Region resources will not be registered
1327 *
1328 */
1329#define ENFORCE_RESOURCES_STRICT 2
1330#define ENFORCE_RESOURCES_LAX 1
1331#define ENFORCE_RESOURCES_NO 0
1332
Luca Tettamanti7e905602009-03-30 00:01:27 +02001333static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001334
1335static int __init acpi_enforce_resources_setup(char *str)
1336{
1337 if (str == NULL || *str == '\0')
1338 return 0;
1339
1340 if (!strcmp("strict", str))
1341 acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1342 else if (!strcmp("lax", str))
1343 acpi_enforce_resources = ENFORCE_RESOURCES_LAX;
1344 else if (!strcmp("no", str))
1345 acpi_enforce_resources = ENFORCE_RESOURCES_NO;
1346
1347 return 1;
1348}
1349
1350__setup("acpi_enforce_resources=", acpi_enforce_resources_setup);
1351
1352/* Check for resource conflicts between ACPI OperationRegions and native
1353 * drivers */
Jean Delvare876fba42009-11-11 15:22:15 +01001354int acpi_check_resource_conflict(const struct resource *res)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001355{
Lin Mingf654c0f2012-01-12 13:10:32 +08001356 acpi_adr_space_type space_id;
1357 acpi_size length;
1358 u8 warn = 0;
1359 int clash = 0;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001360
1361 if (acpi_enforce_resources == ENFORCE_RESOURCES_NO)
1362 return 0;
1363 if (!(res->flags & IORESOURCE_IO) && !(res->flags & IORESOURCE_MEM))
1364 return 0;
1365
Lin Mingf654c0f2012-01-12 13:10:32 +08001366 if (res->flags & IORESOURCE_IO)
1367 space_id = ACPI_ADR_SPACE_SYSTEM_IO;
1368 else
1369 space_id = ACPI_ADR_SPACE_SYSTEM_MEMORY;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001370
Lin Mingf654c0f2012-01-12 13:10:32 +08001371 length = res->end - res->start + 1;
1372 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO)
1373 warn = 1;
1374 clash = acpi_check_address_range(space_id, res->start, length, warn);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001375
1376 if (clash) {
1377 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO) {
Jean Delvare14f03342009-09-08 15:31:46 +02001378 if (acpi_enforce_resources == ENFORCE_RESOURCES_LAX)
1379 printk(KERN_NOTICE "ACPI: This conflict may"
1380 " cause random problems and system"
1381 " instability\n");
1382 printk(KERN_INFO "ACPI: If an ACPI driver is available"
1383 " for this device, you should use it instead of"
1384 " the native driver\n");
Thomas Renningerdf92e692008-02-04 23:31:22 -08001385 }
1386 if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT)
1387 return -EBUSY;
1388 }
1389 return 0;
1390}
Thomas Renninger443dea72008-02-04 23:31:23 -08001391EXPORT_SYMBOL(acpi_check_resource_conflict);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001392
1393int acpi_check_region(resource_size_t start, resource_size_t n,
1394 const char *name)
1395{
1396 struct resource res = {
1397 .start = start,
1398 .end = start + n - 1,
1399 .name = name,
1400 .flags = IORESOURCE_IO,
1401 };
1402
1403 return acpi_check_resource_conflict(&res);
1404}
1405EXPORT_SYMBOL(acpi_check_region);
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407/*
Jean Delvare70dd6be2010-05-27 19:58:37 +02001408 * Let drivers know whether the resource checks are effective
1409 */
1410int acpi_resources_are_enforced(void)
1411{
1412 return acpi_enforce_resources == ENFORCE_RESOURCES_STRICT;
1413}
1414EXPORT_SYMBOL(acpi_resources_are_enforced);
1415
1416/*
Lin Ming9f63b882011-03-23 17:26:34 +08001417 * Deallocate the memory for a spinlock.
1418 */
1419void acpi_os_delete_lock(acpi_spinlock handle)
1420{
1421 ACPI_FREE(handle);
1422}
1423
1424/*
Robert Moore73459f72005-06-24 00:00:00 -04001425 * Acquire a spinlock.
1426 *
1427 * handle is a pointer to the spinlock_t.
Robert Moore73459f72005-06-24 00:00:00 -04001428 */
1429
Bob Moore967440e2006-06-23 17:04:00 -04001430acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp)
Robert Moore73459f72005-06-24 00:00:00 -04001431{
Bob Mooreb8e4d892006-01-27 16:43:00 -05001432 acpi_cpu_flags flags;
Bob Moore967440e2006-06-23 17:04:00 -04001433 spin_lock_irqsave(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001434 return flags;
1435}
1436
1437/*
1438 * Release a spinlock. See above.
1439 */
1440
Bob Moore967440e2006-06-23 17:04:00 -04001441void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags)
Robert Moore73459f72005-06-24 00:00:00 -04001442{
Bob Moore967440e2006-06-23 17:04:00 -04001443 spin_unlock_irqrestore(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001444}
1445
Robert Moore73459f72005-06-24 00:00:00 -04001446#ifndef ACPI_USE_LOCAL_CACHE
1447
1448/*******************************************************************************
1449 *
1450 * FUNCTION: acpi_os_create_cache
1451 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001452 * PARAMETERS: name - Ascii name for the cache
1453 * size - Size of each cached object
1454 * depth - Maximum depth of the cache (in objects) <ignored>
1455 * cache - Where the new cache object is returned
Robert Moore73459f72005-06-24 00:00:00 -04001456 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001457 * RETURN: status
Robert Moore73459f72005-06-24 00:00:00 -04001458 *
1459 * DESCRIPTION: Create a cache object
1460 *
1461 ******************************************************************************/
1462
1463acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001464acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache)
Robert Moore73459f72005-06-24 00:00:00 -04001465{
Paul Mundt20c2df82007-07-20 10:11:58 +09001466 *cache = kmem_cache_create(name, size, 0, 0, NULL);
Adrian Bunka6fdbf92006-12-19 12:56:13 -08001467 if (*cache == NULL)
Bob Mooreb229cf92006-04-21 17:15:00 -04001468 return AE_ERROR;
1469 else
1470 return AE_OK;
Robert Moore73459f72005-06-24 00:00:00 -04001471}
1472
1473/*******************************************************************************
1474 *
1475 * FUNCTION: acpi_os_purge_cache
1476 *
1477 * PARAMETERS: Cache - Handle to cache object
1478 *
1479 * RETURN: Status
1480 *
1481 * DESCRIPTION: Free all objects within the requested cache.
1482 *
1483 ******************************************************************************/
1484
Len Brown4be44fc2005-08-05 00:44:28 -04001485acpi_status acpi_os_purge_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001486{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001487 kmem_cache_shrink(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001488 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001489}
1490
1491/*******************************************************************************
1492 *
1493 * FUNCTION: acpi_os_delete_cache
1494 *
1495 * PARAMETERS: Cache - Handle to cache object
1496 *
1497 * RETURN: Status
1498 *
1499 * DESCRIPTION: Free all objects within the requested cache and delete the
1500 * cache object.
1501 *
1502 ******************************************************************************/
1503
Len Brown4be44fc2005-08-05 00:44:28 -04001504acpi_status acpi_os_delete_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001505{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001506 kmem_cache_destroy(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001507 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001508}
1509
1510/*******************************************************************************
1511 *
1512 * FUNCTION: acpi_os_release_object
1513 *
1514 * PARAMETERS: Cache - Handle to cache object
1515 * Object - The object to be released
1516 *
1517 * RETURN: None
1518 *
1519 * DESCRIPTION: Release an object to the specified cache. If cache is full,
1520 * the object is deleted.
1521 *
1522 ******************************************************************************/
1523
Len Brown4be44fc2005-08-05 00:44:28 -04001524acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object)
Robert Moore73459f72005-06-24 00:00:00 -04001525{
Len Brown4be44fc2005-08-05 00:44:28 -04001526 kmem_cache_free(cache, object);
1527 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001528}
Robert Moore73459f72005-06-24 00:00:00 -04001529#endif
Myron Stowed362eda2010-10-21 14:24:04 -06001530
1531acpi_status __init acpi_os_initialize(void)
1532{
1533 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1534 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1535 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe0_block);
1536 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe1_block);
1537
1538 return AE_OK;
1539}
1540
Zhang Rui32d47ee2010-12-08 10:40:36 +08001541acpi_status __init acpi_os_initialize1(void)
Myron Stowed362eda2010-10-21 14:24:04 -06001542{
Tejun Heo44d25882011-02-01 11:42:42 +01001543 kacpid_wq = alloc_workqueue("kacpid", 0, 1);
1544 kacpi_notify_wq = alloc_workqueue("kacpi_notify", 0, 1);
1545 kacpi_hotplug_wq = alloc_workqueue("kacpi_hotplug", 0, 1);
Myron Stowed362eda2010-10-21 14:24:04 -06001546 BUG_ON(!kacpid_wq);
1547 BUG_ON(!kacpi_notify_wq);
1548 BUG_ON(!kacpi_hotplug_wq);
Len Brown1bd64d42010-10-26 14:50:56 -04001549 acpi_install_interface_handler(acpi_osi_handler);
1550 acpi_osi_setup_late();
Myron Stowed362eda2010-10-21 14:24:04 -06001551 return AE_OK;
1552}
1553
1554acpi_status acpi_os_terminate(void)
1555{
1556 if (acpi_irq_handler) {
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +01001557 acpi_os_remove_interrupt_handler(acpi_gbl_FADT.sci_interrupt,
Myron Stowed362eda2010-10-21 14:24:04 -06001558 acpi_irq_handler);
1559 }
1560
1561 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe1_block);
1562 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe0_block);
1563 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1564 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1565
1566 destroy_workqueue(kacpid_wq);
1567 destroy_workqueue(kacpi_notify_wq);
1568 destroy_workqueue(kacpi_hotplug_wq);
1569
1570 return AE_OK;
1571}