blob: ff2189d3fa064411a292c4b594766466f82619b2 [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>
34#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/interrupt.h>
36#include <linux/kmod.h>
37#include <linux/delay.h>
38#include <linux/workqueue.h>
39#include <linux/nmi.h>
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +030040#include <linux/acpi.h>
Rafael J. Wysocki2d6d9fd2011-01-19 22:27:14 +010041#include <linux/acpi_io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/efi.h>
Thomas Renningerdf92e692008-02-04 23:31:22 -080043#include <linux/ioport.h>
44#include <linux/list.h>
Matthew Wilcoxf1241c82008-03-14 13:43:13 -040045#include <linux/jiffies.h>
46#include <linux/semaphore.h>
47
48#include <asm/io.h>
49#include <asm/uaccess.h>
50
51#include <acpi/acpi.h>
52#include <acpi/acpi_bus.h>
53#include <acpi/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define _COMPONENT ACPI_OS_SERVICES
Len Brownf52fd662007-02-12 22:42:12 -050056ACPI_MODULE_NAME("osl");
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define PREFIX "ACPI: "
Len Brown4be44fc2005-08-05 00:44:28 -040058struct acpi_os_dpc {
59 acpi_osd_exec_callback function;
60 void *context;
David Howells65f27f32006-11-22 14:55:48 +000061 struct work_struct work;
Bjorn Helgaas9ac618562009-08-31 22:32:10 +000062 int wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
65#ifdef CONFIG_ACPI_CUSTOM_DSDT
66#include CONFIG_ACPI_CUSTOM_DSDT_FILE
67#endif
68
69#ifdef ENABLE_DEBUGGER
70#include <linux/kdb.h>
71
72/* stuff for debugger support */
73int acpi_in_debugger;
74EXPORT_SYMBOL(acpi_in_debugger);
75
76extern char line_buf[80];
Len Brown4be44fc2005-08-05 00:44:28 -040077#endif /*ENABLE_DEBUGGER */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79static unsigned int acpi_irq_irq;
80static 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;
Zhang Ruic02256b2009-06-23 10:20:29 +080084static struct workqueue_struct *kacpi_hotplug_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Thomas Renningerdf92e692008-02-04 23:31:22 -080086struct acpi_res_list {
87 resource_size_t start;
88 resource_size_t end;
89 acpi_adr_space_type resource_type; /* IO port, System memory, ...*/
90 char name[5]; /* only can have a length of 4 chars, make use of this
91 one instead of res->name, no need to kalloc then */
92 struct list_head resource_list;
Lin Minga5fe1a02009-08-13 10:43:27 +080093 int count;
Thomas Renningerdf92e692008-02-04 23:31:22 -080094};
95
96static LIST_HEAD(resource_list_head);
97static DEFINE_SPINLOCK(acpi_res_lock);
98
Myron Stowe620242a2010-10-21 14:23:53 -060099/*
100 * This list of permanent mappings is for memory that may be accessed from
101 * interrupt context, where we can't do the ioremap().
102 */
103struct acpi_ioremap {
104 struct list_head list;
105 void __iomem *virt;
106 acpi_physical_address phys;
107 acpi_size size;
Myron Stowe4a3cba52010-10-21 14:24:14 -0600108 struct kref ref;
Myron Stowe620242a2010-10-21 14:23:53 -0600109};
110
111static LIST_HEAD(acpi_ioremaps);
112static DEFINE_SPINLOCK(acpi_ioremap_lock);
113
Lin Mingb0ed7a92010-08-06 09:35:51 +0800114static void __init acpi_osi_setup_late(void);
Len Brownae00d812007-05-29 18:43:33 -0400115
Len Brownd4b7dc42008-01-23 20:50:56 -0500116/*
Len Browna6e08872008-11-08 01:21:10 -0500117 * The story of _OSI(Linux)
Len Brownd4b7dc42008-01-23 20:50:56 -0500118 *
Len Browna6e08872008-11-08 01:21:10 -0500119 * From pre-history through Linux-2.6.22,
120 * Linux responded TRUE upon a BIOS OSI(Linux) query.
Len Brownd4b7dc42008-01-23 20:50:56 -0500121 *
Len Browna6e08872008-11-08 01:21:10 -0500122 * Unfortunately, reference BIOS writers got wind of this
123 * and put OSI(Linux) in their example code, quickly exposing
124 * this string as ill-conceived and opening the door to
125 * an un-bounded number of BIOS incompatibilities.
Len Brownd4b7dc42008-01-23 20:50:56 -0500126 *
Len Browna6e08872008-11-08 01:21:10 -0500127 * For example, OSI(Linux) was used on resume to re-POST a
128 * video card on one system, because Linux at that time
129 * could not do a speedy restore in its native driver.
130 * But then upon gaining quick native restore capability,
131 * Linux has no way to tell the BIOS to skip the time-consuming
132 * POST -- putting Linux at a permanent performance disadvantage.
133 * On another system, the BIOS writer used OSI(Linux)
134 * to infer native OS support for IPMI! On other systems,
135 * OSI(Linux) simply got in the way of Linux claiming to
136 * be compatible with other operating systems, exposing
137 * BIOS issues such as skipped device initialization.
Len Brownd4b7dc42008-01-23 20:50:56 -0500138 *
Len Browna6e08872008-11-08 01:21:10 -0500139 * So "Linux" turned out to be a really poor chose of
140 * OSI string, and from Linux-2.6.23 onward we respond FALSE.
Len Brownd4b7dc42008-01-23 20:50:56 -0500141 *
142 * BIOS writers should NOT query _OSI(Linux) on future systems.
Len Browna6e08872008-11-08 01:21:10 -0500143 * Linux will complain on the console when it sees it, and return FALSE.
144 * To get Linux to return TRUE for your system will require
145 * a kernel source update to add a DMI entry,
146 * or boot with "acpi_osi=Linux"
Len Brownd4b7dc42008-01-23 20:50:56 -0500147 */
Len Brownd4b7dc42008-01-23 20:50:56 -0500148
Adrian Bunk1d15d842008-01-29 00:10:15 +0200149static struct osi_linux {
Len Brownd4b7dc42008-01-23 20:50:56 -0500150 unsigned int enable:1;
151 unsigned int dmi:1;
152 unsigned int cmdline:1;
Lin Mingd90aa922010-12-09 16:50:52 +0800153} osi_linux = {0, 0, 0};
Len Brownf5076542007-05-30 00:10:38 -0400154
Lin Mingb0ed7a92010-08-06 09:35:51 +0800155static u32 acpi_osi_handler(acpi_string interface, u32 supported)
156{
157 if (!strcmp("Linux", interface)) {
158
Len Brown3af283e2010-10-15 21:38:57 -0400159 printk(KERN_NOTICE FW_BUG PREFIX
Lin Mingb0ed7a92010-08-06 09:35:51 +0800160 "BIOS _OSI(Linux) query %s%s\n",
161 osi_linux.enable ? "honored" : "ignored",
162 osi_linux.cmdline ? " via cmdline" :
163 osi_linux.dmi ? " via DMI" : "");
164 }
165
166 return supported;
167}
168
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700169static void __init acpi_request_region (struct acpi_generic_address *addr,
170 unsigned int length, char *desc)
171{
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700172 if (!addr->address || !length)
173 return;
174
Andi Kleencfa806f2010-07-20 15:18:36 -0700175 /* Resources are never freed */
Len Browneee3c852007-02-03 01:38:16 -0500176 if (addr->space_id == ACPI_ADR_SPACE_SYSTEM_IO)
Andi Kleencfa806f2010-07-20 15:18:36 -0700177 request_region(addr->address, length, desc);
Len Browneee3c852007-02-03 01:38:16 -0500178 else if (addr->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
Andi Kleencfa806f2010-07-20 15:18:36 -0700179 request_mem_region(addr->address, length, desc);
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700180}
181
182static int __init acpi_reserve_resources(void)
183{
Len Browneee3c852007-02-03 01:38:16 -0500184 acpi_request_region(&acpi_gbl_FADT.xpm1a_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700185 "ACPI PM1a_EVT_BLK");
186
Len Browneee3c852007-02-03 01:38:16 -0500187 acpi_request_region(&acpi_gbl_FADT.xpm1b_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700188 "ACPI PM1b_EVT_BLK");
189
Len Browneee3c852007-02-03 01:38:16 -0500190 acpi_request_region(&acpi_gbl_FADT.xpm1a_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700191 "ACPI PM1a_CNT_BLK");
192
Len Browneee3c852007-02-03 01:38:16 -0500193 acpi_request_region(&acpi_gbl_FADT.xpm1b_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700194 "ACPI PM1b_CNT_BLK");
195
Len Browneee3c852007-02-03 01:38:16 -0500196 if (acpi_gbl_FADT.pm_timer_length == 4)
197 acpi_request_region(&acpi_gbl_FADT.xpm_timer_block, 4, "ACPI PM_TMR");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700198
Len Browneee3c852007-02-03 01:38:16 -0500199 acpi_request_region(&acpi_gbl_FADT.xpm2_control_block, acpi_gbl_FADT.pm2_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700200 "ACPI PM2_CNT_BLK");
201
202 /* Length of GPE blocks must be a non-negative multiple of 2 */
203
Len Browneee3c852007-02-03 01:38:16 -0500204 if (!(acpi_gbl_FADT.gpe0_block_length & 0x1))
205 acpi_request_region(&acpi_gbl_FADT.xgpe0_block,
206 acpi_gbl_FADT.gpe0_block_length, "ACPI GPE0_BLK");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700207
Len Browneee3c852007-02-03 01:38:16 -0500208 if (!(acpi_gbl_FADT.gpe1_block_length & 0x1))
209 acpi_request_region(&acpi_gbl_FADT.xgpe1_block,
210 acpi_gbl_FADT.gpe1_block_length, "ACPI GPE1_BLK");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700211
212 return 0;
213}
214device_initcall(acpi_reserve_resources);
215
Len Brown4be44fc2005-08-05 00:44:28 -0400216void acpi_os_printf(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 va_list args;
219 va_start(args, fmt);
220 acpi_os_vprintf(fmt, args);
221 va_end(args);
222}
Len Brown4be44fc2005-08-05 00:44:28 -0400223
Len Brown4be44fc2005-08-05 00:44:28 -0400224void acpi_os_vprintf(const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 static char buffer[512];
Len Brown4be44fc2005-08-05 00:44:28 -0400227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 vsprintf(buffer, fmt, args);
229
230#ifdef ENABLE_DEBUGGER
231 if (acpi_in_debugger) {
232 kdb_printf("%s", buffer);
233 } else {
Frank Seidel4d939152009-02-04 17:03:07 +0100234 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236#else
Frank Seidel4d939152009-02-04 17:03:07 +0100237 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238#endif
239}
240
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300241acpi_physical_address __init acpi_os_get_root_pointer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 if (efi_enabled) {
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800244 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300245 return efi.acpi20;
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800246 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300247 return efi.acpi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400249 printk(KERN_ERR PREFIX
250 "System description tables not found\n");
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300251 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
Len Brown239665a2007-11-23 20:08:02 -0500253 } else {
254 acpi_physical_address pa = 0;
255
256 acpi_find_root_pointer(&pa);
257 return pa;
258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600261/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
Myron Stowe4a3cba52010-10-21 14:24:14 -0600262static struct acpi_ioremap *
263acpi_map_lookup(acpi_physical_address phys, acpi_size size)
Myron Stowe620242a2010-10-21 14:23:53 -0600264{
265 struct acpi_ioremap *map;
266
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600267 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
Myron Stowe620242a2010-10-21 14:23:53 -0600268 if (map->phys <= phys &&
269 phys + size <= map->phys + map->size)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600270 return map;
271
272 return NULL;
273}
274
275/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
276static void __iomem *
277acpi_map_vaddr_lookup(acpi_physical_address phys, unsigned int size)
278{
279 struct acpi_ioremap *map;
280
281 map = acpi_map_lookup(phys, size);
282 if (map)
283 return map->virt + (phys - map->phys);
Myron Stowe620242a2010-10-21 14:23:53 -0600284
285 return NULL;
286}
287
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600288/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
Myron Stowe620242a2010-10-21 14:23:53 -0600289static struct acpi_ioremap *
290acpi_map_lookup_virt(void __iomem *virt, acpi_size size)
291{
292 struct acpi_ioremap *map;
293
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600294 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600295 if (map->virt <= virt &&
296 virt + size <= map->virt + map->size)
Myron Stowe620242a2010-10-21 14:23:53 -0600297 return map;
298
299 return NULL;
300}
301
Jan Beulich2fdf0742007-12-13 08:33:59 +0000302void __iomem *__init_refok
303acpi_os_map_memory(acpi_physical_address phys, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Myron Stowe4a3cba52010-10-21 14:24:14 -0600305 struct acpi_ioremap *map, *tmp_map;
Rafael J. Wysocki2d6d9fd2011-01-19 22:27:14 +0100306 unsigned long flags;
Myron Stowe620242a2010-10-21 14:23:53 -0600307 void __iomem *virt;
Rafael J. Wysocki2d6d9fd2011-01-19 22:27:14 +0100308 acpi_physical_address pg_off;
309 acpi_size pg_sz;
Myron Stowe620242a2010-10-21 14:23:53 -0600310
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800311 if (phys > ULONG_MAX) {
312 printk(KERN_ERR PREFIX "Cannot map memory that high\n");
Randy Dunlap70c08462007-02-13 16:11:36 -0800313 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
Myron Stowe620242a2010-10-21 14:23:53 -0600315
316 if (!acpi_gbl_permanent_mmap)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300317 return __acpi_map_table((unsigned long)phys, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600318
319 map = kzalloc(sizeof(*map), GFP_KERNEL);
320 if (!map)
321 return NULL;
322
Myron Stowe4a3cba52010-10-21 14:24:14 -0600323 pg_off = round_down(phys, PAGE_SIZE);
324 pg_sz = round_up(phys + size, PAGE_SIZE) - pg_off;
Rafael J. Wysocki2d6d9fd2011-01-19 22:27:14 +0100325 virt = acpi_os_ioremap(pg_off, pg_sz);
Myron Stowe620242a2010-10-21 14:23:53 -0600326 if (!virt) {
327 kfree(map);
328 return NULL;
329 }
330
331 INIT_LIST_HEAD(&map->list);
332 map->virt = virt;
Myron Stowe4a3cba52010-10-21 14:24:14 -0600333 map->phys = pg_off;
334 map->size = pg_sz;
335 kref_init(&map->ref);
Myron Stowe620242a2010-10-21 14:23:53 -0600336
337 spin_lock_irqsave(&acpi_ioremap_lock, flags);
Myron Stowe4a3cba52010-10-21 14:24:14 -0600338 /* Check if page has already been mapped. */
339 tmp_map = acpi_map_lookup(phys, size);
340 if (tmp_map) {
341 kref_get(&tmp_map->ref);
342 spin_unlock_irqrestore(&acpi_ioremap_lock, flags);
343 iounmap(map->virt);
344 kfree(map);
345 return tmp_map->virt + (phys - tmp_map->phys);
346 }
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600347 list_add_tail_rcu(&map->list, &acpi_ioremaps);
Myron Stowe620242a2010-10-21 14:23:53 -0600348 spin_unlock_irqrestore(&acpi_ioremap_lock, flags);
349
Myron Stowe4a3cba52010-10-21 14:24:14 -0600350 return map->virt + (phys - map->phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800352EXPORT_SYMBOL_GPL(acpi_os_map_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Myron Stowe4a3cba52010-10-21 14:24:14 -0600354static void acpi_kref_del_iomap(struct kref *ref)
355{
356 struct acpi_ioremap *map;
357
358 map = container_of(ref, struct acpi_ioremap, ref);
359 list_del_rcu(&map->list);
360}
361
Jeremy Fitzhardinge0d3a9cf2009-02-22 14:58:56 -0800362void __ref acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Myron Stowe620242a2010-10-21 14:23:53 -0600364 struct acpi_ioremap *map;
365 unsigned long flags;
Myron Stowe4a3cba52010-10-21 14:24:14 -0600366 int del;
Myron Stowe620242a2010-10-21 14:23:53 -0600367
368 if (!acpi_gbl_permanent_mmap) {
Yinghai Lu7d972772009-02-07 15:39:41 -0800369 __acpi_unmap_table(virt, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600370 return;
371 }
372
373 spin_lock_irqsave(&acpi_ioremap_lock, flags);
374 map = acpi_map_lookup_virt(virt, size);
375 if (!map) {
376 spin_unlock_irqrestore(&acpi_ioremap_lock, flags);
377 printk(KERN_ERR PREFIX "%s: bad address %p\n", __func__, virt);
378 dump_stack();
379 return;
380 }
381
Myron Stowe4a3cba52010-10-21 14:24:14 -0600382 del = kref_put(&map->ref, acpi_kref_del_iomap);
Myron Stowe620242a2010-10-21 14:23:53 -0600383 spin_unlock_irqrestore(&acpi_ioremap_lock, flags);
384
Myron Stowe4a3cba52010-10-21 14:24:14 -0600385 if (!del)
386 return;
387
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600388 synchronize_rcu();
Myron Stowe620242a2010-10-21 14:23:53 -0600389 iounmap(map->virt);
390 kfree(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800392EXPORT_SYMBOL_GPL(acpi_os_unmap_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Jeremy Fitzhardinge0d3a9cf2009-02-22 14:58:56 -0800394void __init early_acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
Yinghai Lu7d972772009-02-07 15:39:41 -0800395{
396 if (!acpi_gbl_permanent_mmap)
397 __acpi_unmap_table(virt, size);
398}
399
Rafael J. Wysocki073b4962011-02-08 23:37:31 +0100400static int acpi_os_map_generic_address(struct acpi_generic_address *addr)
Myron Stowe29718522010-10-21 14:23:59 -0600401{
402 void __iomem *virt;
403
404 if (addr->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
405 return 0;
406
407 if (!addr->address || !addr->bit_width)
408 return -EINVAL;
409
410 virt = acpi_os_map_memory(addr->address, addr->bit_width / 8);
411 if (!virt)
412 return -EIO;
413
414 return 0;
415}
Myron Stowe29718522010-10-21 14:23:59 -0600416
Rafael J. Wysocki073b4962011-02-08 23:37:31 +0100417static void acpi_os_unmap_generic_address(struct acpi_generic_address *addr)
Myron Stowe29718522010-10-21 14:23:59 -0600418{
419 void __iomem *virt;
420 unsigned long flags;
421 acpi_size size = addr->bit_width / 8;
422
423 if (addr->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
424 return;
425
426 if (!addr->address || !addr->bit_width)
427 return;
428
429 spin_lock_irqsave(&acpi_ioremap_lock, flags);
430 virt = acpi_map_vaddr_lookup(addr->address, size);
431 spin_unlock_irqrestore(&acpi_ioremap_lock, flags);
432
433 acpi_os_unmap_memory(virt, size);
434}
Myron Stowe29718522010-10-21 14:23:59 -0600435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436#ifdef ACPI_FUTURE_USAGE
437acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400438acpi_os_get_physical_address(void *virt, acpi_physical_address * phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Len Brown4be44fc2005-08-05 00:44:28 -0400440 if (!phys || !virt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return AE_BAD_PARAMETER;
442
443 *phys = virt_to_phys(virt);
444
445 return AE_OK;
446}
447#endif
448
449#define ACPI_MAX_OVERRIDE_LEN 100
450
451static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN];
452
453acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400454acpi_os_predefined_override(const struct acpi_predefined_names *init_val,
455 acpi_string * new_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 if (!init_val || !new_val)
458 return AE_BAD_PARAMETER;
459
460 *new_val = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400461 if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400463 acpi_os_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 *new_val = acpi_os_name;
465 }
466
467 return AE_OK;
468}
469
470acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400471acpi_os_table_override(struct acpi_table_header * existing_table,
472 struct acpi_table_header ** new_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474 if (!existing_table || !new_table)
475 return AE_BAD_PARAMETER;
476
Markus Gaugusch71fc47a2008-02-05 00:04:06 +0100477 *new_table = NULL;
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479#ifdef CONFIG_ACPI_CUSTOM_DSDT
480 if (strncmp(existing_table->signature, "DSDT", 4) == 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400481 *new_table = (struct acpi_table_header *)AmlCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482#endif
Éric Piel6ed31e92008-02-05 00:04:50 +0100483 if (*new_table != NULL) {
484 printk(KERN_WARNING PREFIX "Override [%4.4s-%8.8s], "
485 "this is unsafe: tainting kernel\n",
486 existing_table->signature,
487 existing_table->oem_table_id);
488 add_taint(TAINT_OVERRIDDEN_ACPI_TABLE);
489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return AE_OK;
491}
492
David Howells7d12e782006-10-05 14:55:46 +0100493static irqreturn_t acpi_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Len Brown5229e872008-02-06 01:26:55 -0500495 u32 handled;
496
497 handled = (*acpi_irq_handler) (acpi_irq_context);
498
499 if (handled) {
500 acpi_irq_handled++;
501 return IRQ_HANDLED;
Len Brown88bea182009-04-21 00:35:47 -0400502 } else {
503 acpi_irq_not_handled++;
Len Brown5229e872008-02-06 01:26:55 -0500504 return IRQ_NONE;
Len Brown88bea182009-04-21 00:35:47 -0400505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
508acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400509acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
510 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
512 unsigned int irq;
513
Len Brown5229e872008-02-06 01:26:55 -0500514 acpi_irq_stats_init();
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 /*
517 * Ignore the GSI from the core, and use the value in our copy of the
518 * FADT. It may not be the same if an interrupt source override exists
519 * for the SCI.
520 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300521 gsi = acpi_gbl_FADT.sci_interrupt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (acpi_gsi_to_irq(gsi, &irq) < 0) {
523 printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n",
524 gsi);
525 return AE_OK;
526 }
527
528 acpi_irq_handler = handler;
529 acpi_irq_context = context;
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700530 if (request_irq(irq, acpi_irq, IRQF_SHARED, "acpi", acpi_irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq);
532 return AE_NOT_ACQUIRED;
533 }
534 acpi_irq_irq = irq;
535
536 return AE_OK;
537}
538
Len Brown4be44fc2005-08-05 00:44:28 -0400539acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 if (irq) {
542 free_irq(irq, acpi_irq);
543 acpi_irq_handler = NULL;
544 acpi_irq_irq = 0;
545 }
546
547 return AE_OK;
548}
549
550/*
551 * Running in interpreter thread context, safe to sleep
552 */
553
Lin Ming439913f2010-01-28 10:53:19 +0800554void acpi_os_sleep(u64 ms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Nishanth Aravamudan01a527e2005-11-07 01:01:14 -0800556 schedule_timeout_interruptible(msecs_to_jiffies(ms));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
Len Brown4be44fc2005-08-05 00:44:28 -0400558
Len Brown4be44fc2005-08-05 00:44:28 -0400559void acpi_os_stall(u32 us)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
561 while (us) {
562 u32 delay = 1000;
563
564 if (delay > us)
565 delay = us;
566 udelay(delay);
567 touch_nmi_watchdog();
568 us -= delay;
569 }
570}
Len Brown4be44fc2005-08-05 00:44:28 -0400571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572/*
573 * Support ACPI 3.0 AML Timer operand
574 * Returns 64-bit free-running, monotonically increasing timer
575 * with 100ns granularity
576 */
Len Brown4be44fc2005-08-05 00:44:28 -0400577u64 acpi_os_get_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
579 static u64 t;
580
581#ifdef CONFIG_HPET
582 /* TBD: use HPET if available */
583#endif
584
585#ifdef CONFIG_X86_PM_TIMER
586 /* TBD: default to PM timer if HPET was not available */
587#endif
588 if (!t)
589 printk(KERN_ERR PREFIX "acpi_os_get_timer() TBD\n");
590
591 return ++t;
592}
593
Len Brown4be44fc2005-08-05 00:44:28 -0400594acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
596 u32 dummy;
597
598 if (!value)
599 value = &dummy;
600
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800601 *value = 0;
602 if (width <= 8) {
Len Brown4be44fc2005-08-05 00:44:28 -0400603 *(u8 *) value = inb(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800604 } else if (width <= 16) {
Len Brown4be44fc2005-08-05 00:44:28 -0400605 *(u16 *) value = inw(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800606 } else if (width <= 32) {
Len Brown4be44fc2005-08-05 00:44:28 -0400607 *(u32 *) value = inl(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800608 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 BUG();
610 }
611
612 return AE_OK;
613}
Len Brown4be44fc2005-08-05 00:44:28 -0400614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615EXPORT_SYMBOL(acpi_os_read_port);
616
Len Brown4be44fc2005-08-05 00:44:28 -0400617acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800619 if (width <= 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 outb(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800621 } else if (width <= 16) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 outw(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800623 } else if (width <= 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 outl(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800625 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 BUG();
627 }
628
629 return AE_OK;
630}
Len Brown4be44fc2005-08-05 00:44:28 -0400631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632EXPORT_SYMBOL(acpi_os_write_port);
633
634acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400635acpi_os_read_memory(acpi_physical_address phys_addr, u32 * value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Len Brown4be44fc2005-08-05 00:44:28 -0400637 void __iomem *virt_addr;
Rafael J. Wysocki884b8212011-02-08 23:37:16 +0100638 unsigned int size = width / 8;
639 bool unmap = false;
640 u32 dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600642 rcu_read_lock();
Myron Stowe620242a2010-10-21 14:23:53 -0600643 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600644 if (!virt_addr) {
Rafael J. Wysocki884b8212011-02-08 23:37:16 +0100645 rcu_read_unlock();
Rafael J. Wysocki2d6d9fd2011-01-19 22:27:14 +0100646 virt_addr = acpi_os_ioremap(phys_addr, size);
Rafael J. Wysocki884b8212011-02-08 23:37:16 +0100647 if (!virt_addr)
648 return AE_BAD_ADDRESS;
649 unmap = true;
Myron Stowe620242a2010-10-21 14:23:53 -0600650 }
Rafael J. Wysocki884b8212011-02-08 23:37:16 +0100651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (!value)
653 value = &dummy;
654
655 switch (width) {
656 case 8:
Len Brown4be44fc2005-08-05 00:44:28 -0400657 *(u8 *) value = readb(virt_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 break;
659 case 16:
Len Brown4be44fc2005-08-05 00:44:28 -0400660 *(u16 *) value = readw(virt_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 break;
662 case 32:
Len Brown4be44fc2005-08-05 00:44:28 -0400663 *(u32 *) value = readl(virt_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 break;
665 default:
666 BUG();
667 }
668
Myron Stowe620242a2010-10-21 14:23:53 -0600669 if (unmap)
670 iounmap(virt_addr);
Rafael J. Wysocki884b8212011-02-08 23:37:16 +0100671 else
672 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 return AE_OK;
675}
676
677acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400678acpi_os_write_memory(acpi_physical_address phys_addr, u32 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Len Brown4be44fc2005-08-05 00:44:28 -0400680 void __iomem *virt_addr;
Rafael J. Wysocki884b8212011-02-08 23:37:16 +0100681 unsigned int size = width / 8;
682 bool unmap = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600684 rcu_read_lock();
Myron Stowe620242a2010-10-21 14:23:53 -0600685 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600686 if (!virt_addr) {
Rafael J. Wysocki884b8212011-02-08 23:37:16 +0100687 rcu_read_unlock();
Rafael J. Wysocki2d6d9fd2011-01-19 22:27:14 +0100688 virt_addr = acpi_os_ioremap(phys_addr, size);
Rafael J. Wysocki884b8212011-02-08 23:37:16 +0100689 if (!virt_addr)
690 return AE_BAD_ADDRESS;
691 unmap = true;
Myron Stowe620242a2010-10-21 14:23:53 -0600692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 switch (width) {
695 case 8:
696 writeb(value, virt_addr);
697 break;
698 case 16:
699 writew(value, virt_addr);
700 break;
701 case 32:
702 writel(value, virt_addr);
703 break;
704 default:
705 BUG();
706 }
707
Myron Stowe620242a2010-10-21 14:23:53 -0600708 if (unmap)
709 iounmap(virt_addr);
Rafael J. Wysocki884b8212011-02-08 23:37:16 +0100710 else
711 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 return AE_OK;
714}
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400717acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Bob Moorec5f02312010-08-06 08:57:53 +0800718 u64 *value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
720 int result, size;
Bob Moorec5f02312010-08-06 08:57:53 +0800721 u32 value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 if (!value)
724 return AE_BAD_PARAMETER;
725
726 switch (width) {
727 case 8:
728 size = 1;
729 break;
730 case 16:
731 size = 2;
732 break;
733 case 32:
734 size = 4;
735 break;
736 default:
737 return AE_ERROR;
738 }
739
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -0500740 result = raw_pci_read(pci_id->segment, pci_id->bus,
741 PCI_DEVFN(pci_id->device, pci_id->function),
Bob Moorec5f02312010-08-06 08:57:53 +0800742 reg, size, &value32);
743 *value = value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 return (result ? AE_ERROR : AE_OK);
746}
Len Brown4be44fc2005-08-05 00:44:28 -0400747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400749acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Lin Ming439913f2010-01-28 10:53:19 +0800750 u64 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
752 int result, size;
753
754 switch (width) {
755 case 8:
756 size = 1;
757 break;
758 case 16:
759 size = 2;
760 break;
761 case 32:
762 size = 4;
763 break;
764 default:
765 return AE_ERROR;
766 }
767
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -0500768 result = raw_pci_write(pci_id->segment, pci_id->bus,
769 PCI_DEVFN(pci_id->device, pci_id->function),
770 reg, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 return (result ? AE_ERROR : AE_OK);
773}
774
David Howells65f27f32006-11-22 14:55:48 +0000775static void acpi_os_execute_deferred(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
David Howells65f27f32006-11-22 14:55:48 +0000777 struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work);
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -0400778
Bjorn Helgaas9ac618562009-08-31 22:32:10 +0000779 if (dpc->wait)
780 acpi_os_wait_events_complete(NULL);
Zhang Rui19cd8472008-08-28 10:05:06 +0800781
782 dpc->function(dpc->context);
783 kfree(dpc);
Zhang Rui19cd8472008-08-28 10:05:06 +0800784}
785
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400786/*******************************************************************************
787 *
788 * FUNCTION: acpi_os_execute
789 *
790 * PARAMETERS: Type - Type of the callback
791 * Function - Function to be executed
792 * Context - Function parameters
793 *
794 * RETURN: Status
795 *
796 * DESCRIPTION: Depending on type, either queues function for deferred execution or
797 * immediately executes function on a separate thread.
798 *
799 ******************************************************************************/
800
Zhang Rui19cd8472008-08-28 10:05:06 +0800801static acpi_status __acpi_os_execute(acpi_execute_type type,
802 acpi_osd_exec_callback function, void *context, int hp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Len Brown4be44fc2005-08-05 00:44:28 -0400804 acpi_status status = AE_OK;
805 struct acpi_os_dpc *dpc;
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300806 struct workqueue_struct *queue;
Zhang Rui19cd8472008-08-28 10:05:06 +0800807 int ret;
Len Brown72945b22006-07-12 22:46:42 -0400808 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
809 "Scheduling function [%p(%p)] for deferred execution.\n",
810 function, context));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 /*
813 * Allocate/initialize DPC structure. Note that this memory will be
David Howells65f27f32006-11-22 14:55:48 +0000814 * freed by the callee. The kernel handles the work_struct list in a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 * way that allows us to also free its memory inside the callee.
816 * Because we may want to schedule several tasks with different
817 * parameters we can't use the approach some kernel code uses of
David Howells65f27f32006-11-22 14:55:48 +0000818 * having a static work_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 */
Len Brown72945b22006-07-12 22:46:42 -0400820
David Howells65f27f32006-11-22 14:55:48 +0000821 dpc = kmalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (!dpc)
Lin Ming889c78b2008-12-31 09:23:57 +0800823 return AE_NO_MEMORY;
Linus Torvaldsb976fe12006-11-17 19:31:09 -0800824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 dpc->function = function;
826 dpc->context = context;
Linus Torvaldsb976fe12006-11-17 19:31:09 -0800827
Zhang Ruic02256b2009-06-23 10:20:29 +0800828 /*
829 * We can't run hotplug code in keventd_wq/kacpid_wq/kacpid_notify_wq
830 * because the hotplug code may call driver .remove() functions,
831 * which invoke flush_scheduled_work/acpi_os_wait_events_complete
832 * to flush these workqueues.
833 */
834 queue = hp ? kacpi_hotplug_wq :
835 (type == OSL_NOTIFY_HANDLER ? kacpi_notify_wq : kacpid_wq);
Bjorn Helgaas9ac618562009-08-31 22:32:10 +0000836 dpc->wait = hp ? 1 : 0;
Zhang Ruibc736752010-03-22 15:48:54 +0800837
838 if (queue == kacpi_hotplug_wq)
839 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
840 else if (queue == kacpi_notify_wq)
841 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
842 else
843 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
844
Tejun Heo8fec62b2010-06-29 10:07:09 +0200845 /*
846 * On some machines, a software-initiated SMI causes corruption unless
847 * the SMI runs on CPU 0. An SMI can be initiated by any AML, but
848 * typically it's done in GPE-related methods that are run via
849 * workqueues, so we can avoid the known corruption cases by always
850 * queueing on CPU 0.
851 */
852 ret = queue_work_on(0, queue, &dpc->work);
Zhang Rui19cd8472008-08-28 10:05:06 +0800853
854 if (!ret) {
Lin Ming55ac9a02008-09-28 14:51:56 +0800855 printk(KERN_ERR PREFIX
856 "Call to queue_work() failed.\n");
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300857 status = AE_ERROR;
858 kfree(dpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
Lin Ming889c78b2008-12-31 09:23:57 +0800860 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861}
Len Brown4be44fc2005-08-05 00:44:28 -0400862
Zhang Rui19cd8472008-08-28 10:05:06 +0800863acpi_status acpi_os_execute(acpi_execute_type type,
864 acpi_osd_exec_callback function, void *context)
865{
866 return __acpi_os_execute(type, function, context, 0);
867}
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400868EXPORT_SYMBOL(acpi_os_execute);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Zhang Rui19cd8472008-08-28 10:05:06 +0800870acpi_status acpi_os_hotplug_execute(acpi_osd_exec_callback function,
871 void *context)
872{
873 return __acpi_os_execute(0, function, context, 1);
874}
875
Len Brown4be44fc2005-08-05 00:44:28 -0400876void acpi_os_wait_events_complete(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
878 flush_workqueue(kacpid_wq);
Zhang Rui2f67a062008-04-29 02:34:42 -0400879 flush_workqueue(kacpi_notify_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
Len Brown4be44fc2005-08-05 00:44:28 -0400881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882EXPORT_SYMBOL(acpi_os_wait_events_complete);
883
884/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 * Deallocate the memory for a spinlock.
886 */
Bob Moore967440e32006-06-23 17:04:00 -0400887void acpi_os_delete_lock(acpi_spinlock handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Patrick Mocheld550d982006-06-27 00:41:40 -0400889 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400893acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
Len Brown4be44fc2005-08-05 00:44:28 -0400895 struct semaphore *sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 sem = acpi_os_allocate(sizeof(struct semaphore));
898 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -0400899 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 memset(sem, 0, sizeof(struct semaphore));
901
902 sema_init(sem, initial_units);
903
Len Brown4be44fc2005-08-05 00:44:28 -0400904 *handle = (acpi_handle *) sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Len Brown4be44fc2005-08-05 00:44:28 -0400906 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n",
907 *handle, initial_units));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Patrick Mocheld550d982006-06-27 00:41:40 -0400909 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912/*
913 * TODO: A better way to delete semaphores? Linux doesn't have a
914 * 'delete_semaphore()' function -- may result in an invalid
915 * pointer dereference for non-synchronized consumers. Should
916 * we at least check for blocked threads and signal/cancel them?
917 */
918
Len Brown4be44fc2005-08-05 00:44:28 -0400919acpi_status acpi_os_delete_semaphore(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Len Brown4be44fc2005-08-05 00:44:28 -0400921 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -0400924 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Len Brown4be44fc2005-08-05 00:44:28 -0400926 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Matthew Wilcoxf1241c82008-03-14 13:43:13 -0400928 BUG_ON(!list_empty(&sem->wait_list));
Len Brown02438d82006-06-30 03:19:10 -0400929 kfree(sem);
Len Brown4be44fc2005-08-05 00:44:28 -0400930 sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Patrick Mocheld550d982006-06-27 00:41:40 -0400932 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 * TODO: Support for units > 1?
937 */
Len Brown4be44fc2005-08-05 00:44:28 -0400938acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
Len Brown4be44fc2005-08-05 00:44:28 -0400940 acpi_status status = AE_OK;
941 struct semaphore *sem = (struct semaphore *)handle;
Matthew Wilcoxf1241c82008-03-14 13:43:13 -0400942 long jiffies;
Len Brown4be44fc2005-08-05 00:44:28 -0400943 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400946 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -0400949 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Len Brown4be44fc2005-08-05 00:44:28 -0400951 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n",
952 handle, units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Matthew Wilcoxf1241c82008-03-14 13:43:13 -0400954 if (timeout == ACPI_WAIT_FOREVER)
955 jiffies = MAX_SCHEDULE_TIMEOUT;
956 else
957 jiffies = msecs_to_jiffies(timeout);
958
959 ret = down_timeout(sem, jiffies);
960 if (ret)
961 status = AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 if (ACPI_FAILURE(status)) {
Bjorn Helgaas9e7e2c02006-04-27 05:25:00 -0400964 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -0400965 "Failed to acquire semaphore[%p|%d|%d], %s",
Len Brown4be44fc2005-08-05 00:44:28 -0400966 handle, units, timeout,
967 acpi_format_exception(status)));
968 } else {
969 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -0400970 "Acquired semaphore[%p|%d|%d]", handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400971 units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
973
Patrick Mocheld550d982006-06-27 00:41:40 -0400974 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977/*
978 * TODO: Support for units > 1?
979 */
Len Brown4be44fc2005-08-05 00:44:28 -0400980acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
Len Brown4be44fc2005-08-05 00:44:28 -0400982 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400985 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -0400988 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Len Brown4be44fc2005-08-05 00:44:28 -0400990 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle,
991 units));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 up(sem);
994
Patrick Mocheld550d982006-06-27 00:41:40 -0400995 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
Len Brown4be44fc2005-08-05 00:44:28 -0400997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400999u32 acpi_os_get_line(char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
1001
1002#ifdef ENABLE_DEBUGGER
1003 if (acpi_in_debugger) {
1004 u32 chars;
1005
1006 kdb_read(buffer, sizeof(line_buf));
1007
1008 /* remove the CR kdb includes */
1009 chars = strlen(buffer) - 1;
1010 buffer[chars] = '\0';
1011 }
1012#endif
1013
1014 return 0;
1015}
Len Brown4be44fc2005-08-05 00:44:28 -04001016#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Len Brown4be44fc2005-08-05 00:44:28 -04001018acpi_status acpi_os_signal(u32 function, void *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
Len Brown4be44fc2005-08-05 00:44:28 -04001020 switch (function) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 case ACPI_SIGNAL_FATAL:
1022 printk(KERN_ERR PREFIX "Fatal opcode executed\n");
1023 break;
1024 case ACPI_SIGNAL_BREAKPOINT:
1025 /*
1026 * AML Breakpoint
1027 * ACPI spec. says to treat it as a NOP unless
1028 * you are debugging. So if/when we integrate
1029 * AML debugger into the kernel debugger its
1030 * hook will go here. But until then it is
1031 * not useful to print anything on breakpoints.
1032 */
1033 break;
1034 default:
1035 break;
1036 }
1037
1038 return AE_OK;
1039}
Len Brown4be44fc2005-08-05 00:44:28 -04001040
Len Brown4be44fc2005-08-05 00:44:28 -04001041static int __init acpi_os_name_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
1043 char *p = acpi_os_name;
Len Brown4be44fc2005-08-05 00:44:28 -04001044 int count = ACPI_MAX_OVERRIDE_LEN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046 if (!str || !*str)
1047 return 0;
1048
1049 for (; count-- && str && *str; str++) {
1050 if (isalnum(*str) || *str == ' ' || *str == ':')
1051 *p++ = *str;
1052 else if (*str == '\'' || *str == '"')
1053 continue;
1054 else
1055 break;
1056 }
1057 *p = 0;
1058
1059 return 1;
Len Brown4be44fc2005-08-05 00:44:28 -04001060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061}
1062
1063__setup("acpi_os_name=", acpi_os_name_setup);
1064
Lin Ming12d32062010-12-09 16:51:06 +08001065#define OSI_STRING_LENGTH_MAX 64 /* arbitrary */
1066#define OSI_STRING_ENTRIES_MAX 16 /* arbitrary */
1067
1068struct osi_setup_entry {
1069 char string[OSI_STRING_LENGTH_MAX];
1070 bool enable;
1071};
1072
1073static struct osi_setup_entry __initdata osi_setup_entries[OSI_STRING_ENTRIES_MAX];
1074
Lin Mingd90aa922010-12-09 16:50:52 +08001075void __init acpi_osi_setup(char *str)
1076{
Lin Ming12d32062010-12-09 16:51:06 +08001077 struct osi_setup_entry *osi;
1078 bool enable = true;
1079 int i;
1080
Lin Mingd90aa922010-12-09 16:50:52 +08001081 if (!acpi_gbl_create_osi_method)
1082 return;
1083
1084 if (str == NULL || *str == '\0') {
1085 printk(KERN_INFO PREFIX "_OSI method disabled\n");
1086 acpi_gbl_create_osi_method = FALSE;
Lin Ming12d32062010-12-09 16:51:06 +08001087 return;
1088 }
1089
1090 if (*str == '!') {
1091 str++;
1092 enable = false;
1093 }
1094
1095 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1096 osi = &osi_setup_entries[i];
1097 if (!strcmp(osi->string, str)) {
1098 osi->enable = enable;
1099 break;
1100 } else if (osi->string[0] == '\0') {
1101 osi->enable = enable;
1102 strncpy(osi->string, str, OSI_STRING_LENGTH_MAX);
1103 break;
1104 }
1105 }
Lin Mingd90aa922010-12-09 16:50:52 +08001106}
1107
Len Brownd4b7dc42008-01-23 20:50:56 -05001108static void __init set_osi_linux(unsigned int enable)
1109{
Lin Mingd90aa922010-12-09 16:50:52 +08001110 if (osi_linux.enable != enable)
Len Brownd4b7dc42008-01-23 20:50:56 -05001111 osi_linux.enable = enable;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001112
1113 if (osi_linux.enable)
1114 acpi_osi_setup("Linux");
1115 else
1116 acpi_osi_setup("!Linux");
1117
Len Brownd4b7dc42008-01-23 20:50:56 -05001118 return;
1119}
Len Brownf5076542007-05-30 00:10:38 -04001120
Len Brownd4b7dc42008-01-23 20:50:56 -05001121static void __init acpi_cmdline_osi_linux(unsigned int enable)
1122{
Lin Mingd90aa922010-12-09 16:50:52 +08001123 osi_linux.cmdline = 1; /* cmdline set the default and override DMI */
1124 osi_linux.dmi = 0;
Len Brownd4b7dc42008-01-23 20:50:56 -05001125 set_osi_linux(enable);
Len Brownf5076542007-05-30 00:10:38 -04001126
Len Brownd4b7dc42008-01-23 20:50:56 -05001127 return;
1128}
1129
1130void __init acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d)
1131{
Len Brownd4b7dc42008-01-23 20:50:56 -05001132 printk(KERN_NOTICE PREFIX "DMI detected: %s\n", d->ident);
1133
1134 if (enable == -1)
1135 return;
1136
Lin Mingd90aa922010-12-09 16:50:52 +08001137 osi_linux.dmi = 1; /* DMI knows that this box asks OSI(Linux) */
Len Brownd4b7dc42008-01-23 20:50:56 -05001138 set_osi_linux(enable);
1139
Len Brownf5076542007-05-30 00:10:38 -04001140 return;
1141}
1142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143/*
Len Brownae00d812007-05-29 18:43:33 -04001144 * Modify the list of "OS Interfaces" reported to BIOS via _OSI
1145 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 * empty string disables _OSI
Len Brownae00d812007-05-29 18:43:33 -04001147 * string starting with '!' disables that string
1148 * otherwise string is added to list, augmenting built-in strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 */
Lin Mingb0ed7a92010-08-06 09:35:51 +08001150static void __init acpi_osi_setup_late(void)
1151{
Lin Ming12d32062010-12-09 16:51:06 +08001152 struct osi_setup_entry *osi;
1153 char *str;
1154 int i;
Lin Mingd90aa922010-12-09 16:50:52 +08001155 acpi_status status;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001156
Lin Ming12d32062010-12-09 16:51:06 +08001157 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1158 osi = &osi_setup_entries[i];
1159 str = osi->string;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001160
Lin Ming12d32062010-12-09 16:51:06 +08001161 if (*str == '\0')
1162 break;
1163 if (osi->enable) {
1164 status = acpi_install_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001165
Lin Ming12d32062010-12-09 16:51:06 +08001166 if (ACPI_SUCCESS(status))
1167 printk(KERN_INFO PREFIX "Added _OSI(%s)\n", str);
1168 } else {
1169 status = acpi_remove_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001170
Lin Ming12d32062010-12-09 16:51:06 +08001171 if (ACPI_SUCCESS(status))
1172 printk(KERN_INFO PREFIX "Deleted _OSI(%s)\n", str);
1173 }
Lin Mingb0ed7a92010-08-06 09:35:51 +08001174 }
1175}
1176
Lin Mingd90aa922010-12-09 16:50:52 +08001177static int __init osi_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
Lin Mingd90aa922010-12-09 16:50:52 +08001179 if (str && !strcmp("Linux", str))
1180 acpi_cmdline_osi_linux(1);
1181 else if (str && !strcmp("!Linux", str))
1182 acpi_cmdline_osi_linux(0);
1183 else
1184 acpi_osi_setup(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 return 1;
1187}
1188
Lin Mingd90aa922010-12-09 16:50:52 +08001189__setup("acpi_osi=", osi_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191/* enable serialization to combat AE_ALREADY_EXISTS errors */
Len Brown4be44fc2005-08-05 00:44:28 -04001192static int __init acpi_serialize_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
1194 printk(KERN_INFO PREFIX "serialize enabled\n");
1195
1196 acpi_gbl_all_methods_serialized = TRUE;
1197
1198 return 1;
1199}
1200
1201__setup("acpi_serialize", acpi_serialize_setup);
1202
Thomas Renningerdf92e692008-02-04 23:31:22 -08001203/* Check of resource interference between native drivers and ACPI
1204 * OperationRegions (SystemIO and System Memory only).
1205 * IO ports and memory declared in ACPI might be used by the ACPI subsystem
1206 * in arbitrary AML code and can interfere with legacy drivers.
1207 * acpi_enforce_resources= can be set to:
1208 *
Luca Tettamanti7e905602009-03-30 00:01:27 +02001209 * - strict (default) (2)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001210 * -> further driver trying to access the resources will not load
Luca Tettamanti7e905602009-03-30 00:01:27 +02001211 * - lax (1)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001212 * -> further driver trying to access the resources will load, but you
1213 * get a system message that something might go wrong...
1214 *
1215 * - no (0)
1216 * -> ACPI Operation Region resources will not be registered
1217 *
1218 */
1219#define ENFORCE_RESOURCES_STRICT 2
1220#define ENFORCE_RESOURCES_LAX 1
1221#define ENFORCE_RESOURCES_NO 0
1222
Luca Tettamanti7e905602009-03-30 00:01:27 +02001223static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001224
1225static int __init acpi_enforce_resources_setup(char *str)
1226{
1227 if (str == NULL || *str == '\0')
1228 return 0;
1229
1230 if (!strcmp("strict", str))
1231 acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1232 else if (!strcmp("lax", str))
1233 acpi_enforce_resources = ENFORCE_RESOURCES_LAX;
1234 else if (!strcmp("no", str))
1235 acpi_enforce_resources = ENFORCE_RESOURCES_NO;
1236
1237 return 1;
1238}
1239
1240__setup("acpi_enforce_resources=", acpi_enforce_resources_setup);
1241
1242/* Check for resource conflicts between ACPI OperationRegions and native
1243 * drivers */
Jean Delvare876fba42009-11-11 15:22:15 +01001244int acpi_check_resource_conflict(const struct resource *res)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001245{
1246 struct acpi_res_list *res_list_elem;
Thomas Renninger106d1a02010-12-20 12:11:45 +01001247 int ioport = 0, clash = 0;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001248
1249 if (acpi_enforce_resources == ENFORCE_RESOURCES_NO)
1250 return 0;
1251 if (!(res->flags & IORESOURCE_IO) && !(res->flags & IORESOURCE_MEM))
1252 return 0;
1253
1254 ioport = res->flags & IORESOURCE_IO;
1255
1256 spin_lock(&acpi_res_lock);
1257 list_for_each_entry(res_list_elem, &resource_list_head,
1258 resource_list) {
1259 if (ioport && (res_list_elem->resource_type
1260 != ACPI_ADR_SPACE_SYSTEM_IO))
1261 continue;
1262 if (!ioport && (res_list_elem->resource_type
1263 != ACPI_ADR_SPACE_SYSTEM_MEMORY))
1264 continue;
1265
1266 if (res->end < res_list_elem->start
1267 || res_list_elem->end < res->start)
1268 continue;
1269 clash = 1;
1270 break;
1271 }
1272 spin_unlock(&acpi_res_lock);
1273
1274 if (clash) {
1275 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO) {
Chase Douglas1638bca2010-03-22 15:08:09 -04001276 printk(KERN_WARNING "ACPI: resource %s %pR"
Thomas Renninger106d1a02010-12-20 12:11:45 +01001277 " conflicts with ACPI region %s "
1278 "[%s 0x%zx-0x%zx]\n",
Chase Douglas1638bca2010-03-22 15:08:09 -04001279 res->name, res, res_list_elem->name,
Thomas Renninger106d1a02010-12-20 12:11:45 +01001280 (res_list_elem->resource_type ==
1281 ACPI_ADR_SPACE_SYSTEM_IO) ? "io" : "mem",
1282 (size_t) res_list_elem->start,
1283 (size_t) res_list_elem->end);
Jean Delvare14f03342009-09-08 15:31:46 +02001284 if (acpi_enforce_resources == ENFORCE_RESOURCES_LAX)
1285 printk(KERN_NOTICE "ACPI: This conflict may"
1286 " cause random problems and system"
1287 " instability\n");
1288 printk(KERN_INFO "ACPI: If an ACPI driver is available"
1289 " for this device, you should use it instead of"
1290 " the native driver\n");
Thomas Renningerdf92e692008-02-04 23:31:22 -08001291 }
1292 if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT)
1293 return -EBUSY;
1294 }
1295 return 0;
1296}
Thomas Renninger443dea72008-02-04 23:31:23 -08001297EXPORT_SYMBOL(acpi_check_resource_conflict);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001298
1299int acpi_check_region(resource_size_t start, resource_size_t n,
1300 const char *name)
1301{
1302 struct resource res = {
1303 .start = start,
1304 .end = start + n - 1,
1305 .name = name,
1306 .flags = IORESOURCE_IO,
1307 };
1308
1309 return acpi_check_resource_conflict(&res);
1310}
1311EXPORT_SYMBOL(acpi_check_region);
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313/*
Jean Delvare70dd6be2010-05-27 19:58:37 +02001314 * Let drivers know whether the resource checks are effective
1315 */
1316int acpi_resources_are_enforced(void)
1317{
1318 return acpi_enforce_resources == ENFORCE_RESOURCES_STRICT;
1319}
1320EXPORT_SYMBOL(acpi_resources_are_enforced);
1321
1322/*
Robert Moore73459f72005-06-24 00:00:00 -04001323 * Acquire a spinlock.
1324 *
1325 * handle is a pointer to the spinlock_t.
Robert Moore73459f72005-06-24 00:00:00 -04001326 */
1327
Bob Moore967440e32006-06-23 17:04:00 -04001328acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp)
Robert Moore73459f72005-06-24 00:00:00 -04001329{
Bob Mooreb8e4d892006-01-27 16:43:00 -05001330 acpi_cpu_flags flags;
Bob Moore967440e32006-06-23 17:04:00 -04001331 spin_lock_irqsave(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001332 return flags;
1333}
1334
1335/*
1336 * Release a spinlock. See above.
1337 */
1338
Bob Moore967440e32006-06-23 17:04:00 -04001339void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags)
Robert Moore73459f72005-06-24 00:00:00 -04001340{
Bob Moore967440e32006-06-23 17:04:00 -04001341 spin_unlock_irqrestore(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001342}
1343
Robert Moore73459f72005-06-24 00:00:00 -04001344#ifndef ACPI_USE_LOCAL_CACHE
1345
1346/*******************************************************************************
1347 *
1348 * FUNCTION: acpi_os_create_cache
1349 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001350 * PARAMETERS: name - Ascii name for the cache
1351 * size - Size of each cached object
1352 * depth - Maximum depth of the cache (in objects) <ignored>
1353 * cache - Where the new cache object is returned
Robert Moore73459f72005-06-24 00:00:00 -04001354 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001355 * RETURN: status
Robert Moore73459f72005-06-24 00:00:00 -04001356 *
1357 * DESCRIPTION: Create a cache object
1358 *
1359 ******************************************************************************/
1360
1361acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001362acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache)
Robert Moore73459f72005-06-24 00:00:00 -04001363{
Paul Mundt20c2df82007-07-20 10:11:58 +09001364 *cache = kmem_cache_create(name, size, 0, 0, NULL);
Adrian Bunka6fdbf92006-12-19 12:56:13 -08001365 if (*cache == NULL)
Bob Mooreb229cf92006-04-21 17:15:00 -04001366 return AE_ERROR;
1367 else
1368 return AE_OK;
Robert Moore73459f72005-06-24 00:00:00 -04001369}
1370
1371/*******************************************************************************
1372 *
1373 * FUNCTION: acpi_os_purge_cache
1374 *
1375 * PARAMETERS: Cache - Handle to cache object
1376 *
1377 * RETURN: Status
1378 *
1379 * DESCRIPTION: Free all objects within the requested cache.
1380 *
1381 ******************************************************************************/
1382
Len Brown4be44fc2005-08-05 00:44:28 -04001383acpi_status acpi_os_purge_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001384{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001385 kmem_cache_shrink(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001386 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001387}
1388
1389/*******************************************************************************
1390 *
1391 * FUNCTION: acpi_os_delete_cache
1392 *
1393 * PARAMETERS: Cache - Handle to cache object
1394 *
1395 * RETURN: Status
1396 *
1397 * DESCRIPTION: Free all objects within the requested cache and delete the
1398 * cache object.
1399 *
1400 ******************************************************************************/
1401
Len Brown4be44fc2005-08-05 00:44:28 -04001402acpi_status acpi_os_delete_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001403{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001404 kmem_cache_destroy(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001405 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001406}
1407
1408/*******************************************************************************
1409 *
1410 * FUNCTION: acpi_os_release_object
1411 *
1412 * PARAMETERS: Cache - Handle to cache object
1413 * Object - The object to be released
1414 *
1415 * RETURN: None
1416 *
1417 * DESCRIPTION: Release an object to the specified cache. If cache is full,
1418 * the object is deleted.
1419 *
1420 ******************************************************************************/
1421
Len Brown4be44fc2005-08-05 00:44:28 -04001422acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object)
Robert Moore73459f72005-06-24 00:00:00 -04001423{
Len Brown4be44fc2005-08-05 00:44:28 -04001424 kmem_cache_free(cache, object);
1425 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001426}
1427
Lin Minga5fe1a02009-08-13 10:43:27 +08001428static inline int acpi_res_list_add(struct acpi_res_list *res)
1429{
1430 struct acpi_res_list *res_list_elem;
1431
1432 list_for_each_entry(res_list_elem, &resource_list_head,
1433 resource_list) {
1434
1435 if (res->resource_type == res_list_elem->resource_type &&
1436 res->start == res_list_elem->start &&
1437 res->end == res_list_elem->end) {
1438
1439 /*
1440 * The Region(addr,len) already exist in the list,
1441 * just increase the count
1442 */
1443
1444 res_list_elem->count++;
1445 return 0;
1446 }
1447 }
1448
1449 res->count = 1;
1450 list_add(&res->resource_list, &resource_list_head);
1451 return 1;
1452}
1453
1454static inline void acpi_res_list_del(struct acpi_res_list *res)
1455{
1456 struct acpi_res_list *res_list_elem;
1457
1458 list_for_each_entry(res_list_elem, &resource_list_head,
1459 resource_list) {
1460
1461 if (res->resource_type == res_list_elem->resource_type &&
1462 res->start == res_list_elem->start &&
1463 res->end == res_list_elem->end) {
1464
1465 /*
1466 * If the res count is decreased to 0,
1467 * remove and free it
1468 */
1469
1470 if (--res_list_elem->count == 0) {
1471 list_del(&res_list_elem->resource_list);
1472 kfree(res_list_elem);
1473 }
1474 return;
1475 }
1476 }
1477}
1478
1479acpi_status
1480acpi_os_invalidate_address(
1481 u8 space_id,
1482 acpi_physical_address address,
1483 acpi_size length)
1484{
1485 struct acpi_res_list res;
1486
1487 switch (space_id) {
1488 case ACPI_ADR_SPACE_SYSTEM_IO:
1489 case ACPI_ADR_SPACE_SYSTEM_MEMORY:
Thomas Weber88393162010-03-16 11:47:56 +01001490 /* Only interference checks against SystemIO and SystemMemory
Lin Minga5fe1a02009-08-13 10:43:27 +08001491 are needed */
1492 res.start = address;
1493 res.end = address + length - 1;
1494 res.resource_type = space_id;
1495 spin_lock(&acpi_res_lock);
1496 acpi_res_list_del(&res);
1497 spin_unlock(&acpi_res_lock);
1498 break;
1499 case ACPI_ADR_SPACE_PCI_CONFIG:
1500 case ACPI_ADR_SPACE_EC:
1501 case ACPI_ADR_SPACE_SMBUS:
1502 case ACPI_ADR_SPACE_CMOS:
1503 case ACPI_ADR_SPACE_PCI_BAR_TARGET:
1504 case ACPI_ADR_SPACE_DATA_TABLE:
1505 case ACPI_ADR_SPACE_FIXED_HARDWARE:
1506 break;
1507 }
1508 return AE_OK;
1509}
1510
Bob Mooreb229cf92006-04-21 17:15:00 -04001511/******************************************************************************
1512 *
1513 * FUNCTION: acpi_os_validate_address
1514 *
1515 * PARAMETERS: space_id - ACPI space ID
1516 * address - Physical address
1517 * length - Address length
1518 *
1519 * RETURN: AE_OK if address/length is valid for the space_id. Otherwise,
1520 * should return AE_AML_ILLEGAL_ADDRESS.
1521 *
1522 * DESCRIPTION: Validate a system address via the host OS. Used to validate
1523 * the addresses accessed by AML operation regions.
1524 *
1525 *****************************************************************************/
1526
1527acpi_status
1528acpi_os_validate_address (
1529 u8 space_id,
1530 acpi_physical_address address,
Thomas Renningerdf92e692008-02-04 23:31:22 -08001531 acpi_size length,
1532 char *name)
Bob Mooreb229cf92006-04-21 17:15:00 -04001533{
Thomas Renningerdf92e692008-02-04 23:31:22 -08001534 struct acpi_res_list *res;
Lin Minga5fe1a02009-08-13 10:43:27 +08001535 int added;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001536 if (acpi_enforce_resources == ENFORCE_RESOURCES_NO)
1537 return AE_OK;
Bob Mooreb229cf92006-04-21 17:15:00 -04001538
Thomas Renningerdf92e692008-02-04 23:31:22 -08001539 switch (space_id) {
1540 case ACPI_ADR_SPACE_SYSTEM_IO:
1541 case ACPI_ADR_SPACE_SYSTEM_MEMORY:
Thomas Weber88393162010-03-16 11:47:56 +01001542 /* Only interference checks against SystemIO and SystemMemory
Thomas Renningerdf92e692008-02-04 23:31:22 -08001543 are needed */
1544 res = kzalloc(sizeof(struct acpi_res_list), GFP_KERNEL);
1545 if (!res)
1546 return AE_OK;
1547 /* ACPI names are fixed to 4 bytes, still better use strlcpy */
1548 strlcpy(res->name, name, 5);
1549 res->start = address;
1550 res->end = address + length - 1;
1551 res->resource_type = space_id;
1552 spin_lock(&acpi_res_lock);
Lin Minga5fe1a02009-08-13 10:43:27 +08001553 added = acpi_res_list_add(res);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001554 spin_unlock(&acpi_res_lock);
Lin Minga5fe1a02009-08-13 10:43:27 +08001555 pr_debug("%s %s resource: start: 0x%llx, end: 0x%llx, "
1556 "name: %s\n", added ? "Added" : "Already exist",
1557 (space_id == ACPI_ADR_SPACE_SYSTEM_IO)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001558 ? "SystemIO" : "System Memory",
1559 (unsigned long long)res->start,
1560 (unsigned long long)res->end,
1561 res->name);
Lin Minga5fe1a02009-08-13 10:43:27 +08001562 if (!added)
1563 kfree(res);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001564 break;
1565 case ACPI_ADR_SPACE_PCI_CONFIG:
1566 case ACPI_ADR_SPACE_EC:
1567 case ACPI_ADR_SPACE_SMBUS:
1568 case ACPI_ADR_SPACE_CMOS:
1569 case ACPI_ADR_SPACE_PCI_BAR_TARGET:
1570 case ACPI_ADR_SPACE_DATA_TABLE:
1571 case ACPI_ADR_SPACE_FIXED_HARDWARE:
1572 break;
1573 }
1574 return AE_OK;
Bob Mooreb229cf92006-04-21 17:15:00 -04001575}
Robert Moore73459f72005-06-24 00:00:00 -04001576#endif
Myron Stowed362eda2010-10-21 14:24:04 -06001577
1578acpi_status __init acpi_os_initialize(void)
1579{
1580 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1581 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1582 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe0_block);
1583 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe1_block);
1584
1585 return AE_OK;
1586}
1587
Zhang Rui32d47ee2010-12-08 10:40:36 +08001588acpi_status __init acpi_os_initialize1(void)
Myron Stowed362eda2010-10-21 14:24:04 -06001589{
1590 kacpid_wq = create_workqueue("kacpid");
1591 kacpi_notify_wq = create_workqueue("kacpi_notify");
1592 kacpi_hotplug_wq = create_workqueue("kacpi_hotplug");
1593 BUG_ON(!kacpid_wq);
1594 BUG_ON(!kacpi_notify_wq);
1595 BUG_ON(!kacpi_hotplug_wq);
Len Brown1bd64d42010-10-26 14:50:56 -04001596 acpi_install_interface_handler(acpi_osi_handler);
1597 acpi_osi_setup_late();
Myron Stowed362eda2010-10-21 14:24:04 -06001598 return AE_OK;
1599}
1600
1601acpi_status acpi_os_terminate(void)
1602{
1603 if (acpi_irq_handler) {
1604 acpi_os_remove_interrupt_handler(acpi_irq_irq,
1605 acpi_irq_handler);
1606 }
1607
1608 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe1_block);
1609 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe0_block);
1610 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1611 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1612
1613 destroy_workqueue(kacpid_wq);
1614 destroy_workqueue(kacpi_notify_wq);
1615 destroy_workqueue(kacpi_hotplug_wq);
1616
1617 return AE_OK;
1618}