blob: 900da68fbb5e93a6b24b79f41ca3cb80a772dc77 [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 Starikovskiyad718602007-02-02 19:48:19 +030040#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/efi.h>
Thomas Renningerdf92e692008-02-04 23:31:22 -080042#include <linux/ioport.h>
43#include <linux/list.h>
Matthew Wilcoxf1241c82008-03-14 13:43:13 -040044#include <linux/jiffies.h>
45#include <linux/semaphore.h>
46
47#include <asm/io.h>
48#include <asm/uaccess.h>
49
50#include <acpi/acpi.h>
51#include <acpi/acpi_bus.h>
52#include <acpi/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define _COMPONENT ACPI_OS_SERVICES
Len Brownf52fd662007-02-12 22:42:12 -050055ACPI_MODULE_NAME("osl");
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define PREFIX "ACPI: "
Len Brown4be44fc2005-08-05 00:44:28 -040057struct acpi_os_dpc {
58 acpi_osd_exec_callback function;
59 void *context;
David Howells65f27f32006-11-22 14:55:48 +000060 struct work_struct work;
Bjorn Helgaas9ac61852009-08-31 22:32:10 +000061 int wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062};
63
64#ifdef CONFIG_ACPI_CUSTOM_DSDT
65#include CONFIG_ACPI_CUSTOM_DSDT_FILE
66#endif
67
68#ifdef ENABLE_DEBUGGER
69#include <linux/kdb.h>
70
71/* stuff for debugger support */
72int acpi_in_debugger;
73EXPORT_SYMBOL(acpi_in_debugger);
74
75extern char line_buf[80];
Len Brown4be44fc2005-08-05 00:44:28 -040076#endif /*ENABLE_DEBUGGER */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78static unsigned int acpi_irq_irq;
79static acpi_osd_handler acpi_irq_handler;
80static void *acpi_irq_context;
81static struct workqueue_struct *kacpid_wq;
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -040082static struct workqueue_struct *kacpi_notify_wq;
Zhang Ruic02256b2009-06-23 10:20:29 +080083static struct workqueue_struct *kacpi_hotplug_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Thomas Renningerdf92e692008-02-04 23:31:22 -080085struct acpi_res_list {
86 resource_size_t start;
87 resource_size_t end;
88 acpi_adr_space_type resource_type; /* IO port, System memory, ...*/
89 char name[5]; /* only can have a length of 4 chars, make use of this
90 one instead of res->name, no need to kalloc then */
91 struct list_head resource_list;
Lin Minga5fe1a02009-08-13 10:43:27 +080092 int count;
Thomas Renningerdf92e692008-02-04 23:31:22 -080093};
94
95static LIST_HEAD(resource_list_head);
96static DEFINE_SPINLOCK(acpi_res_lock);
97
Len Brownae00d812007-05-29 18:43:33 -040098#define OSI_STRING_LENGTH_MAX 64 /* arbitrary */
99static char osi_additional_string[OSI_STRING_LENGTH_MAX];
100
Len Brownd4b7dc42008-01-23 20:50:56 -0500101/*
Len Browna6e08872008-11-08 01:21:10 -0500102 * The story of _OSI(Linux)
Len Brownd4b7dc42008-01-23 20:50:56 -0500103 *
Len Browna6e08872008-11-08 01:21:10 -0500104 * From pre-history through Linux-2.6.22,
105 * Linux responded TRUE upon a BIOS OSI(Linux) query.
Len Brownd4b7dc42008-01-23 20:50:56 -0500106 *
Len Browna6e08872008-11-08 01:21:10 -0500107 * Unfortunately, reference BIOS writers got wind of this
108 * and put OSI(Linux) in their example code, quickly exposing
109 * this string as ill-conceived and opening the door to
110 * an un-bounded number of BIOS incompatibilities.
Len Brownd4b7dc42008-01-23 20:50:56 -0500111 *
Len Browna6e08872008-11-08 01:21:10 -0500112 * For example, OSI(Linux) was used on resume to re-POST a
113 * video card on one system, because Linux at that time
114 * could not do a speedy restore in its native driver.
115 * But then upon gaining quick native restore capability,
116 * Linux has no way to tell the BIOS to skip the time-consuming
117 * POST -- putting Linux at a permanent performance disadvantage.
118 * On another system, the BIOS writer used OSI(Linux)
119 * to infer native OS support for IPMI! On other systems,
120 * OSI(Linux) simply got in the way of Linux claiming to
121 * be compatible with other operating systems, exposing
122 * BIOS issues such as skipped device initialization.
Len Brownd4b7dc42008-01-23 20:50:56 -0500123 *
Len Browna6e08872008-11-08 01:21:10 -0500124 * So "Linux" turned out to be a really poor chose of
125 * OSI string, and from Linux-2.6.23 onward we respond FALSE.
Len Brownd4b7dc42008-01-23 20:50:56 -0500126 *
127 * BIOS writers should NOT query _OSI(Linux) on future systems.
Len Browna6e08872008-11-08 01:21:10 -0500128 * Linux will complain on the console when it sees it, and return FALSE.
129 * To get Linux to return TRUE for your system will require
130 * a kernel source update to add a DMI entry,
131 * or boot with "acpi_osi=Linux"
Len Brownd4b7dc42008-01-23 20:50:56 -0500132 */
Len Brownd4b7dc42008-01-23 20:50:56 -0500133
Adrian Bunk1d15d842008-01-29 00:10:15 +0200134static struct osi_linux {
Len Brownd4b7dc42008-01-23 20:50:56 -0500135 unsigned int enable:1;
136 unsigned int dmi:1;
137 unsigned int cmdline:1;
138 unsigned int known:1;
Len Browna6e08872008-11-08 01:21:10 -0500139} osi_linux = { 0, 0, 0, 0};
Len Brownf5076542007-05-30 00:10:38 -0400140
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700141static void __init acpi_request_region (struct acpi_generic_address *addr,
142 unsigned int length, char *desc)
143{
144 struct resource *res;
145
146 if (!addr->address || !length)
147 return;
148
Len Browneee3c852007-02-03 01:38:16 -0500149 if (addr->space_id == ACPI_ADR_SPACE_SYSTEM_IO)
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700150 res = request_region(addr->address, length, desc);
Len Browneee3c852007-02-03 01:38:16 -0500151 else if (addr->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700152 res = request_mem_region(addr->address, length, desc);
153}
154
155static int __init acpi_reserve_resources(void)
156{
Len Browneee3c852007-02-03 01:38:16 -0500157 acpi_request_region(&acpi_gbl_FADT.xpm1a_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700158 "ACPI PM1a_EVT_BLK");
159
Len Browneee3c852007-02-03 01:38:16 -0500160 acpi_request_region(&acpi_gbl_FADT.xpm1b_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700161 "ACPI PM1b_EVT_BLK");
162
Len Browneee3c852007-02-03 01:38:16 -0500163 acpi_request_region(&acpi_gbl_FADT.xpm1a_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700164 "ACPI PM1a_CNT_BLK");
165
Len Browneee3c852007-02-03 01:38:16 -0500166 acpi_request_region(&acpi_gbl_FADT.xpm1b_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700167 "ACPI PM1b_CNT_BLK");
168
Len Browneee3c852007-02-03 01:38:16 -0500169 if (acpi_gbl_FADT.pm_timer_length == 4)
170 acpi_request_region(&acpi_gbl_FADT.xpm_timer_block, 4, "ACPI PM_TMR");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700171
Len Browneee3c852007-02-03 01:38:16 -0500172 acpi_request_region(&acpi_gbl_FADT.xpm2_control_block, acpi_gbl_FADT.pm2_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700173 "ACPI PM2_CNT_BLK");
174
175 /* Length of GPE blocks must be a non-negative multiple of 2 */
176
Len Browneee3c852007-02-03 01:38:16 -0500177 if (!(acpi_gbl_FADT.gpe0_block_length & 0x1))
178 acpi_request_region(&acpi_gbl_FADT.xgpe0_block,
179 acpi_gbl_FADT.gpe0_block_length, "ACPI GPE0_BLK");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700180
Len Browneee3c852007-02-03 01:38:16 -0500181 if (!(acpi_gbl_FADT.gpe1_block_length & 0x1))
182 acpi_request_region(&acpi_gbl_FADT.xgpe1_block,
183 acpi_gbl_FADT.gpe1_block_length, "ACPI GPE1_BLK");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700184
185 return 0;
186}
187device_initcall(acpi_reserve_resources);
188
Len Browndd272b52007-05-30 00:26:11 -0400189acpi_status __init acpi_os_initialize(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
191 return AE_OK;
192}
193
Bjorn Helgaas74b58202009-07-29 15:54:25 -0600194static void bind_to_cpu0(struct work_struct *work)
195{
Bjorn Helgaase68110f2009-09-24 09:34:38 -0600196 set_cpus_allowed_ptr(current, cpumask_of(0));
Bjorn Helgaas74b58202009-07-29 15:54:25 -0600197 kfree(work);
198}
199
200static void bind_workqueue(struct workqueue_struct *wq)
201{
202 struct work_struct *work;
203
204 work = kzalloc(sizeof(struct work_struct), GFP_KERNEL);
205 INIT_WORK(work, bind_to_cpu0);
206 queue_work(wq, work);
207}
208
Len Brown4be44fc2005-08-05 00:44:28 -0400209acpi_status acpi_os_initialize1(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Bjorn Helgaas74b58202009-07-29 15:54:25 -0600211 /*
212 * On some machines, a software-initiated SMI causes corruption unless
213 * the SMI runs on CPU 0. An SMI can be initiated by any AML, but
214 * typically it's done in GPE-related methods that are run via
215 * workqueues, so we can avoid the known corruption cases by binding
216 * the workqueues to CPU 0.
217 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 kacpid_wq = create_singlethread_workqueue("kacpid");
Bjorn Helgaas74b58202009-07-29 15:54:25 -0600219 bind_workqueue(kacpid_wq);
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -0400220 kacpi_notify_wq = create_singlethread_workqueue("kacpi_notify");
Bjorn Helgaas74b58202009-07-29 15:54:25 -0600221 bind_workqueue(kacpi_notify_wq);
Zhang Ruic02256b2009-06-23 10:20:29 +0800222 kacpi_hotplug_wq = create_singlethread_workqueue("kacpi_hotplug");
Bjorn Helgaas74b58202009-07-29 15:54:25 -0600223 bind_workqueue(kacpi_hotplug_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 BUG_ON(!kacpid_wq);
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -0400225 BUG_ON(!kacpi_notify_wq);
Zhang Ruic02256b2009-06-23 10:20:29 +0800226 BUG_ON(!kacpi_hotplug_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return AE_OK;
228}
229
Len Brown4be44fc2005-08-05 00:44:28 -0400230acpi_status acpi_os_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 if (acpi_irq_handler) {
233 acpi_os_remove_interrupt_handler(acpi_irq_irq,
234 acpi_irq_handler);
235 }
236
237 destroy_workqueue(kacpid_wq);
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -0400238 destroy_workqueue(kacpi_notify_wq);
Zhang Ruic02256b2009-06-23 10:20:29 +0800239 destroy_workqueue(kacpi_hotplug_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 return AE_OK;
242}
243
Len Brown4be44fc2005-08-05 00:44:28 -0400244void acpi_os_printf(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 va_list args;
247 va_start(args, fmt);
248 acpi_os_vprintf(fmt, args);
249 va_end(args);
250}
Len Brown4be44fc2005-08-05 00:44:28 -0400251
Len Brown4be44fc2005-08-05 00:44:28 -0400252void acpi_os_vprintf(const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 static char buffer[512];
Len Brown4be44fc2005-08-05 00:44:28 -0400255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 vsprintf(buffer, fmt, args);
257
258#ifdef ENABLE_DEBUGGER
259 if (acpi_in_debugger) {
260 kdb_printf("%s", buffer);
261 } else {
Frank Seidel4d939152009-02-04 17:03:07 +0100262 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
264#else
Frank Seidel4d939152009-02-04 17:03:07 +0100265 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266#endif
267}
268
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300269acpi_physical_address __init acpi_os_get_root_pointer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 if (efi_enabled) {
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800272 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300273 return efi.acpi20;
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800274 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300275 return efi.acpi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400277 printk(KERN_ERR PREFIX
278 "System description tables not found\n");
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300279 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
Len Brown239665a2007-11-23 20:08:02 -0500281 } else {
282 acpi_physical_address pa = 0;
283
284 acpi_find_root_pointer(&pa);
285 return pa;
286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Jan Beulich2fdf0742007-12-13 08:33:59 +0000289void __iomem *__init_refok
290acpi_os_map_memory(acpi_physical_address phys, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800292 if (phys > ULONG_MAX) {
293 printk(KERN_ERR PREFIX "Cannot map memory that high\n");
Randy Dunlap70c08462007-02-13 16:11:36 -0800294 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300296 if (acpi_gbl_permanent_mmap)
297 /*
298 * ioremap checks to ensure this is in reserved space
299 */
300 return ioremap((unsigned long)phys, size);
301 else
302 return __acpi_map_table((unsigned long)phys, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800304EXPORT_SYMBOL_GPL(acpi_os_map_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Jeremy Fitzhardinge0d3a9cf2009-02-22 14:58:56 -0800306void __ref acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Yinghai Lu7d972772009-02-07 15:39:41 -0800308 if (acpi_gbl_permanent_mmap)
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300309 iounmap(virt);
Yinghai Lu7d972772009-02-07 15:39:41 -0800310 else
311 __acpi_unmap_table(virt, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800313EXPORT_SYMBOL_GPL(acpi_os_unmap_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Jeremy Fitzhardinge0d3a9cf2009-02-22 14:58:56 -0800315void __init early_acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
Yinghai Lu7d972772009-02-07 15:39:41 -0800316{
317 if (!acpi_gbl_permanent_mmap)
318 __acpi_unmap_table(virt, size);
319}
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321#ifdef ACPI_FUTURE_USAGE
322acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400323acpi_os_get_physical_address(void *virt, acpi_physical_address * phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Len Brown4be44fc2005-08-05 00:44:28 -0400325 if (!phys || !virt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return AE_BAD_PARAMETER;
327
328 *phys = virt_to_phys(virt);
329
330 return AE_OK;
331}
332#endif
333
334#define ACPI_MAX_OVERRIDE_LEN 100
335
336static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN];
337
338acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400339acpi_os_predefined_override(const struct acpi_predefined_names *init_val,
340 acpi_string * new_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 if (!init_val || !new_val)
343 return AE_BAD_PARAMETER;
344
345 *new_val = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400346 if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400348 acpi_os_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 *new_val = acpi_os_name;
350 }
351
352 return AE_OK;
353}
354
355acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400356acpi_os_table_override(struct acpi_table_header * existing_table,
357 struct acpi_table_header ** new_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 if (!existing_table || !new_table)
360 return AE_BAD_PARAMETER;
361
Markus Gaugusch71fc47a2008-02-05 00:04:06 +0100362 *new_table = NULL;
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364#ifdef CONFIG_ACPI_CUSTOM_DSDT
365 if (strncmp(existing_table->signature, "DSDT", 4) == 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400366 *new_table = (struct acpi_table_header *)AmlCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367#endif
Éric Piel6ed31e92008-02-05 00:04:50 +0100368 if (*new_table != NULL) {
369 printk(KERN_WARNING PREFIX "Override [%4.4s-%8.8s], "
370 "this is unsafe: tainting kernel\n",
371 existing_table->signature,
372 existing_table->oem_table_id);
373 add_taint(TAINT_OVERRIDDEN_ACPI_TABLE);
374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return AE_OK;
376}
377
David Howells7d12e782006-10-05 14:55:46 +0100378static irqreturn_t acpi_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Len Brown5229e872008-02-06 01:26:55 -0500380 u32 handled;
381
382 handled = (*acpi_irq_handler) (acpi_irq_context);
383
384 if (handled) {
385 acpi_irq_handled++;
386 return IRQ_HANDLED;
Len Brown88bea182009-04-21 00:35:47 -0400387 } else {
388 acpi_irq_not_handled++;
Len Brown5229e872008-02-06 01:26:55 -0500389 return IRQ_NONE;
Len Brown88bea182009-04-21 00:35:47 -0400390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
393acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400394acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
395 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
397 unsigned int irq;
398
Len Brown5229e872008-02-06 01:26:55 -0500399 acpi_irq_stats_init();
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /*
402 * Ignore the GSI from the core, and use the value in our copy of the
403 * FADT. It may not be the same if an interrupt source override exists
404 * for the SCI.
405 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300406 gsi = acpi_gbl_FADT.sci_interrupt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (acpi_gsi_to_irq(gsi, &irq) < 0) {
408 printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n",
409 gsi);
410 return AE_OK;
411 }
412
413 acpi_irq_handler = handler;
414 acpi_irq_context = context;
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700415 if (request_irq(irq, acpi_irq, IRQF_SHARED, "acpi", acpi_irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq);
417 return AE_NOT_ACQUIRED;
418 }
419 acpi_irq_irq = irq;
420
421 return AE_OK;
422}
423
Len Brown4be44fc2005-08-05 00:44:28 -0400424acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
426 if (irq) {
427 free_irq(irq, acpi_irq);
428 acpi_irq_handler = NULL;
429 acpi_irq_irq = 0;
430 }
431
432 return AE_OK;
433}
434
435/*
436 * Running in interpreter thread context, safe to sleep
437 */
438
Lin Ming439913f2010-01-28 10:53:19 +0800439void acpi_os_sleep(u64 ms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
Nishanth Aravamudan01a527e2005-11-07 01:01:14 -0800441 schedule_timeout_interruptible(msecs_to_jiffies(ms));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
Len Brown4be44fc2005-08-05 00:44:28 -0400443
Len Brown4be44fc2005-08-05 00:44:28 -0400444void acpi_os_stall(u32 us)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 while (us) {
447 u32 delay = 1000;
448
449 if (delay > us)
450 delay = us;
451 udelay(delay);
452 touch_nmi_watchdog();
453 us -= delay;
454 }
455}
Len Brown4be44fc2005-08-05 00:44:28 -0400456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457/*
458 * Support ACPI 3.0 AML Timer operand
459 * Returns 64-bit free-running, monotonically increasing timer
460 * with 100ns granularity
461 */
Len Brown4be44fc2005-08-05 00:44:28 -0400462u64 acpi_os_get_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 static u64 t;
465
466#ifdef CONFIG_HPET
467 /* TBD: use HPET if available */
468#endif
469
470#ifdef CONFIG_X86_PM_TIMER
471 /* TBD: default to PM timer if HPET was not available */
472#endif
473 if (!t)
474 printk(KERN_ERR PREFIX "acpi_os_get_timer() TBD\n");
475
476 return ++t;
477}
478
Len Brown4be44fc2005-08-05 00:44:28 -0400479acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 u32 dummy;
482
483 if (!value)
484 value = &dummy;
485
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800486 *value = 0;
487 if (width <= 8) {
Len Brown4be44fc2005-08-05 00:44:28 -0400488 *(u8 *) value = inb(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800489 } else if (width <= 16) {
Len Brown4be44fc2005-08-05 00:44:28 -0400490 *(u16 *) value = inw(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800491 } else if (width <= 32) {
Len Brown4be44fc2005-08-05 00:44:28 -0400492 *(u32 *) value = inl(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800493 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 BUG();
495 }
496
497 return AE_OK;
498}
Len Brown4be44fc2005-08-05 00:44:28 -0400499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500EXPORT_SYMBOL(acpi_os_read_port);
501
Len Brown4be44fc2005-08-05 00:44:28 -0400502acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800504 if (width <= 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 outb(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800506 } else if (width <= 16) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 outw(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800508 } else if (width <= 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 outl(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800510 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 BUG();
512 }
513
514 return AE_OK;
515}
Len Brown4be44fc2005-08-05 00:44:28 -0400516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517EXPORT_SYMBOL(acpi_os_write_port);
518
519acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400520acpi_os_read_memory(acpi_physical_address phys_addr, u32 * value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Len Brown4be44fc2005-08-05 00:44:28 -0400522 u32 dummy;
523 void __iomem *virt_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800525 virt_addr = ioremap(phys_addr, width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (!value)
527 value = &dummy;
528
529 switch (width) {
530 case 8:
Len Brown4be44fc2005-08-05 00:44:28 -0400531 *(u8 *) value = readb(virt_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 break;
533 case 16:
Len Brown4be44fc2005-08-05 00:44:28 -0400534 *(u16 *) value = readw(virt_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 break;
536 case 32:
Len Brown4be44fc2005-08-05 00:44:28 -0400537 *(u32 *) value = readl(virt_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 break;
539 default:
540 BUG();
541 }
542
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800543 iounmap(virt_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 return AE_OK;
546}
547
548acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400549acpi_os_write_memory(acpi_physical_address phys_addr, u32 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
Len Brown4be44fc2005-08-05 00:44:28 -0400551 void __iomem *virt_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800553 virt_addr = ioremap(phys_addr, width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 switch (width) {
556 case 8:
557 writeb(value, virt_addr);
558 break;
559 case 16:
560 writew(value, virt_addr);
561 break;
562 case 32:
563 writel(value, virt_addr);
564 break;
565 default:
566 BUG();
567 }
568
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800569 iounmap(virt_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 return AE_OK;
572}
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400575acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Linus Torvalds10270d42008-02-13 09:56:14 -0800576 u32 *value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
578 int result, size;
579
580 if (!value)
581 return AE_BAD_PARAMETER;
582
583 switch (width) {
584 case 8:
585 size = 1;
586 break;
587 case 16:
588 size = 2;
589 break;
590 case 32:
591 size = 4;
592 break;
593 default:
594 return AE_ERROR;
595 }
596
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -0500597 result = raw_pci_read(pci_id->segment, pci_id->bus,
598 PCI_DEVFN(pci_id->device, pci_id->function),
599 reg, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 return (result ? AE_ERROR : AE_OK);
602}
Len Brown4be44fc2005-08-05 00:44:28 -0400603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400605acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Lin Ming439913f2010-01-28 10:53:19 +0800606 u64 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
608 int result, size;
609
610 switch (width) {
611 case 8:
612 size = 1;
613 break;
614 case 16:
615 size = 2;
616 break;
617 case 32:
618 size = 4;
619 break;
620 default:
621 return AE_ERROR;
622 }
623
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -0500624 result = raw_pci_write(pci_id->segment, pci_id->bus,
625 PCI_DEVFN(pci_id->device, pci_id->function),
626 reg, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 return (result ? AE_ERROR : AE_OK);
629}
630
631/* TODO: Change code to take advantage of driver model more */
Len Brown4be44fc2005-08-05 00:44:28 -0400632static void acpi_os_derive_pci_id_2(acpi_handle rhandle, /* upper bound */
633 acpi_handle chandle, /* current node */
634 struct acpi_pci_id **id,
635 int *is_bridge, u8 * bus_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Len Brown4be44fc2005-08-05 00:44:28 -0400637 acpi_handle handle;
638 struct acpi_pci_id *pci_id = *id;
639 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400640 unsigned long long temp;
Len Brown4be44fc2005-08-05 00:44:28 -0400641 acpi_object_type type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 acpi_get_parent(chandle, &handle);
644 if (handle != rhandle) {
Len Brown4be44fc2005-08-05 00:44:28 -0400645 acpi_os_derive_pci_id_2(rhandle, handle, &pci_id, is_bridge,
646 bus_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 status = acpi_get_type(handle, &type);
Len Brown4be44fc2005-08-05 00:44:28 -0400649 if ((ACPI_FAILURE(status)) || (type != ACPI_TYPE_DEVICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return;
651
Matthew Wilcox27663c52008-10-10 02:22:59 -0400652 status = acpi_evaluate_integer(handle, METHOD_NAME__ADR, NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400653 &temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (ACPI_SUCCESS(status)) {
Linus Torvalds10270d42008-02-13 09:56:14 -0800655 u32 val;
Len Brown4be44fc2005-08-05 00:44:28 -0400656 pci_id->device = ACPI_HIWORD(ACPI_LODWORD(temp));
657 pci_id->function = ACPI_LOWORD(ACPI_LODWORD(temp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 if (*is_bridge)
660 pci_id->bus = *bus_number;
661
662 /* any nicer way to get bus number of bridge ? */
Len Brown4be44fc2005-08-05 00:44:28 -0400663 status =
Linus Torvalds10270d42008-02-13 09:56:14 -0800664 acpi_os_read_pci_configuration(pci_id, 0x0e, &val,
Len Brown4be44fc2005-08-05 00:44:28 -0400665 8);
666 if (ACPI_SUCCESS(status)
Linus Torvalds10270d42008-02-13 09:56:14 -0800667 && ((val & 0x7f) == 1 || (val & 0x7f) == 2)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400668 status =
669 acpi_os_read_pci_configuration(pci_id, 0x18,
Linus Torvalds10270d42008-02-13 09:56:14 -0800670 &val, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (!ACPI_SUCCESS(status)) {
672 /* Certainly broken... FIX ME */
673 return;
674 }
675 *is_bridge = 1;
Linus Torvalds10270d42008-02-13 09:56:14 -0800676 pci_id->bus = val;
Len Brown4be44fc2005-08-05 00:44:28 -0400677 status =
678 acpi_os_read_pci_configuration(pci_id, 0x19,
Linus Torvalds10270d42008-02-13 09:56:14 -0800679 &val, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (ACPI_SUCCESS(status)) {
Linus Torvalds10270d42008-02-13 09:56:14 -0800681 *bus_number = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
683 } else
684 *is_bridge = 0;
685 }
686 }
687}
688
Len Brown4be44fc2005-08-05 00:44:28 -0400689void acpi_os_derive_pci_id(acpi_handle rhandle, /* upper bound */
690 acpi_handle chandle, /* current node */
691 struct acpi_pci_id **id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
693 int is_bridge = 1;
694 u8 bus_number = (*id)->bus;
695
696 acpi_os_derive_pci_id_2(rhandle, chandle, id, &is_bridge, &bus_number);
697}
698
David Howells65f27f32006-11-22 14:55:48 +0000699static void acpi_os_execute_deferred(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
David Howells65f27f32006-11-22 14:55:48 +0000701 struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work);
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -0400702
Bjorn Helgaas9ac61852009-08-31 22:32:10 +0000703 if (dpc->wait)
704 acpi_os_wait_events_complete(NULL);
Zhang Rui19cd8472008-08-28 10:05:06 +0800705
706 dpc->function(dpc->context);
707 kfree(dpc);
Zhang Rui19cd8472008-08-28 10:05:06 +0800708}
709
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400710/*******************************************************************************
711 *
712 * FUNCTION: acpi_os_execute
713 *
714 * PARAMETERS: Type - Type of the callback
715 * Function - Function to be executed
716 * Context - Function parameters
717 *
718 * RETURN: Status
719 *
720 * DESCRIPTION: Depending on type, either queues function for deferred execution or
721 * immediately executes function on a separate thread.
722 *
723 ******************************************************************************/
724
Zhang Rui19cd8472008-08-28 10:05:06 +0800725static acpi_status __acpi_os_execute(acpi_execute_type type,
726 acpi_osd_exec_callback function, void *context, int hp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Len Brown4be44fc2005-08-05 00:44:28 -0400728 acpi_status status = AE_OK;
729 struct acpi_os_dpc *dpc;
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300730 struct workqueue_struct *queue;
Zhang Rui19cd8472008-08-28 10:05:06 +0800731 int ret;
Len Brown72945b22006-07-12 22:46:42 -0400732 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
733 "Scheduling function [%p(%p)] for deferred execution.\n",
734 function, context));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 /*
737 * Allocate/initialize DPC structure. Note that this memory will be
David Howells65f27f32006-11-22 14:55:48 +0000738 * freed by the callee. The kernel handles the work_struct list in a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 * way that allows us to also free its memory inside the callee.
740 * Because we may want to schedule several tasks with different
741 * parameters we can't use the approach some kernel code uses of
David Howells65f27f32006-11-22 14:55:48 +0000742 * having a static work_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 */
Len Brown72945b22006-07-12 22:46:42 -0400744
David Howells65f27f32006-11-22 14:55:48 +0000745 dpc = kmalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (!dpc)
Lin Ming889c78b2008-12-31 09:23:57 +0800747 return AE_NO_MEMORY;
Linus Torvaldsb976fe12006-11-17 19:31:09 -0800748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 dpc->function = function;
750 dpc->context = context;
Linus Torvaldsb976fe12006-11-17 19:31:09 -0800751
Zhang Ruic02256b2009-06-23 10:20:29 +0800752 /*
753 * We can't run hotplug code in keventd_wq/kacpid_wq/kacpid_notify_wq
754 * because the hotplug code may call driver .remove() functions,
755 * which invoke flush_scheduled_work/acpi_os_wait_events_complete
756 * to flush these workqueues.
757 */
758 queue = hp ? kacpi_hotplug_wq :
759 (type == OSL_NOTIFY_HANDLER ? kacpi_notify_wq : kacpid_wq);
Bjorn Helgaas9ac61852009-08-31 22:32:10 +0000760 dpc->wait = hp ? 1 : 0;
Zhang Ruibc736752010-03-22 15:48:54 +0800761
762 if (queue == kacpi_hotplug_wq)
763 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
764 else if (queue == kacpi_notify_wq)
765 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
766 else
767 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
768
Zhang Ruic02256b2009-06-23 10:20:29 +0800769 ret = queue_work(queue, &dpc->work);
Zhang Rui19cd8472008-08-28 10:05:06 +0800770
771 if (!ret) {
Lin Ming55ac9a02008-09-28 14:51:56 +0800772 printk(KERN_ERR PREFIX
773 "Call to queue_work() failed.\n");
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300774 status = AE_ERROR;
775 kfree(dpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
Lin Ming889c78b2008-12-31 09:23:57 +0800777 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
Len Brown4be44fc2005-08-05 00:44:28 -0400779
Zhang Rui19cd8472008-08-28 10:05:06 +0800780acpi_status acpi_os_execute(acpi_execute_type type,
781 acpi_osd_exec_callback function, void *context)
782{
783 return __acpi_os_execute(type, function, context, 0);
784}
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400785EXPORT_SYMBOL(acpi_os_execute);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Zhang Rui19cd8472008-08-28 10:05:06 +0800787acpi_status acpi_os_hotplug_execute(acpi_osd_exec_callback function,
788 void *context)
789{
790 return __acpi_os_execute(0, function, context, 1);
791}
792
Len Brown4be44fc2005-08-05 00:44:28 -0400793void acpi_os_wait_events_complete(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
795 flush_workqueue(kacpid_wq);
Zhang Rui2f67a062008-04-29 02:34:42 -0400796 flush_workqueue(kacpi_notify_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797}
Len Brown4be44fc2005-08-05 00:44:28 -0400798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799EXPORT_SYMBOL(acpi_os_wait_events_complete);
800
801/*
802 * Allocate the memory for a spinlock and initialize it.
803 */
Bob Moore967440e2006-06-23 17:04:00 -0400804acpi_status acpi_os_create_lock(acpi_spinlock * handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Bob Moore967440e2006-06-23 17:04:00 -0400806 spin_lock_init(*handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Patrick Mocheld550d982006-06-27 00:41:40 -0400808 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811/*
812 * Deallocate the memory for a spinlock.
813 */
Bob Moore967440e2006-06-23 17:04:00 -0400814void acpi_os_delete_lock(acpi_spinlock handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Patrick Mocheld550d982006-06-27 00:41:40 -0400816 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400820acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Len Brown4be44fc2005-08-05 00:44:28 -0400822 struct semaphore *sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 sem = acpi_os_allocate(sizeof(struct semaphore));
825 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -0400826 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 memset(sem, 0, sizeof(struct semaphore));
828
829 sema_init(sem, initial_units);
830
Len Brown4be44fc2005-08-05 00:44:28 -0400831 *handle = (acpi_handle *) sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Len Brown4be44fc2005-08-05 00:44:28 -0400833 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n",
834 *handle, initial_units));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Patrick Mocheld550d982006-06-27 00:41:40 -0400836 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839/*
840 * TODO: A better way to delete semaphores? Linux doesn't have a
841 * 'delete_semaphore()' function -- may result in an invalid
842 * pointer dereference for non-synchronized consumers. Should
843 * we at least check for blocked threads and signal/cancel them?
844 */
845
Len Brown4be44fc2005-08-05 00:44:28 -0400846acpi_status acpi_os_delete_semaphore(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
Len Brown4be44fc2005-08-05 00:44:28 -0400848 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -0400851 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Len Brown4be44fc2005-08-05 00:44:28 -0400853 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Matthew Wilcoxf1241c82008-03-14 13:43:13 -0400855 BUG_ON(!list_empty(&sem->wait_list));
Len Brown02438d82006-06-30 03:19:10 -0400856 kfree(sem);
Len Brown4be44fc2005-08-05 00:44:28 -0400857 sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Patrick Mocheld550d982006-06-27 00:41:40 -0400859 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 * TODO: Support for units > 1?
864 */
Len Brown4be44fc2005-08-05 00:44:28 -0400865acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
Len Brown4be44fc2005-08-05 00:44:28 -0400867 acpi_status status = AE_OK;
868 struct semaphore *sem = (struct semaphore *)handle;
Matthew Wilcoxf1241c82008-03-14 13:43:13 -0400869 long jiffies;
Len Brown4be44fc2005-08-05 00:44:28 -0400870 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400873 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -0400876 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Len Brown4be44fc2005-08-05 00:44:28 -0400878 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n",
879 handle, units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Matthew Wilcoxf1241c82008-03-14 13:43:13 -0400881 if (timeout == ACPI_WAIT_FOREVER)
882 jiffies = MAX_SCHEDULE_TIMEOUT;
883 else
884 jiffies = msecs_to_jiffies(timeout);
885
886 ret = down_timeout(sem, jiffies);
887 if (ret)
888 status = AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
890 if (ACPI_FAILURE(status)) {
Bjorn Helgaas9e7e2c02006-04-27 05:25:00 -0400891 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -0400892 "Failed to acquire semaphore[%p|%d|%d], %s",
Len Brown4be44fc2005-08-05 00:44:28 -0400893 handle, units, timeout,
894 acpi_format_exception(status)));
895 } else {
896 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -0400897 "Acquired semaphore[%p|%d|%d]", handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400898 units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
900
Patrick Mocheld550d982006-06-27 00:41:40 -0400901 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904/*
905 * TODO: Support for units > 1?
906 */
Len Brown4be44fc2005-08-05 00:44:28 -0400907acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Len Brown4be44fc2005-08-05 00:44:28 -0400909 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400912 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -0400915 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Len Brown4be44fc2005-08-05 00:44:28 -0400917 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle,
918 units));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 up(sem);
921
Patrick Mocheld550d982006-06-27 00:41:40 -0400922 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
Len Brown4be44fc2005-08-05 00:44:28 -0400924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400926u32 acpi_os_get_line(char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
928
929#ifdef ENABLE_DEBUGGER
930 if (acpi_in_debugger) {
931 u32 chars;
932
933 kdb_read(buffer, sizeof(line_buf));
934
935 /* remove the CR kdb includes */
936 chars = strlen(buffer) - 1;
937 buffer[chars] = '\0';
938 }
939#endif
940
941 return 0;
942}
Len Brown4be44fc2005-08-05 00:44:28 -0400943#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Len Brown4be44fc2005-08-05 00:44:28 -0400945acpi_status acpi_os_signal(u32 function, void *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Len Brown4be44fc2005-08-05 00:44:28 -0400947 switch (function) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 case ACPI_SIGNAL_FATAL:
949 printk(KERN_ERR PREFIX "Fatal opcode executed\n");
950 break;
951 case ACPI_SIGNAL_BREAKPOINT:
952 /*
953 * AML Breakpoint
954 * ACPI spec. says to treat it as a NOP unless
955 * you are debugging. So if/when we integrate
956 * AML debugger into the kernel debugger its
957 * hook will go here. But until then it is
958 * not useful to print anything on breakpoints.
959 */
960 break;
961 default:
962 break;
963 }
964
965 return AE_OK;
966}
Len Brown4be44fc2005-08-05 00:44:28 -0400967
Len Brown4be44fc2005-08-05 00:44:28 -0400968static int __init acpi_os_name_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
970 char *p = acpi_os_name;
Len Brown4be44fc2005-08-05 00:44:28 -0400971 int count = ACPI_MAX_OVERRIDE_LEN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 if (!str || !*str)
974 return 0;
975
976 for (; count-- && str && *str; str++) {
977 if (isalnum(*str) || *str == ' ' || *str == ':')
978 *p++ = *str;
979 else if (*str == '\'' || *str == '"')
980 continue;
981 else
982 break;
983 }
984 *p = 0;
985
986 return 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
990__setup("acpi_os_name=", acpi_os_name_setup);
991
Len Brownd4b7dc42008-01-23 20:50:56 -0500992static void __init set_osi_linux(unsigned int enable)
993{
994 if (osi_linux.enable != enable) {
995 osi_linux.enable = enable;
996 printk(KERN_NOTICE PREFIX "%sed _OSI(Linux)\n",
997 enable ? "Add": "Delet");
998 }
999 return;
1000}
Len Brownf5076542007-05-30 00:10:38 -04001001
Len Brownd4b7dc42008-01-23 20:50:56 -05001002static void __init acpi_cmdline_osi_linux(unsigned int enable)
1003{
1004 osi_linux.cmdline = 1; /* cmdline set the default */
1005 set_osi_linux(enable);
Len Brownf5076542007-05-30 00:10:38 -04001006
Len Brownd4b7dc42008-01-23 20:50:56 -05001007 return;
1008}
1009
1010void __init acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d)
1011{
1012 osi_linux.dmi = 1; /* DMI knows that this box asks OSI(Linux) */
1013
1014 printk(KERN_NOTICE PREFIX "DMI detected: %s\n", d->ident);
1015
1016 if (enable == -1)
1017 return;
1018
1019 osi_linux.known = 1; /* DMI knows which OSI(Linux) default needed */
1020
1021 set_osi_linux(enable);
1022
Len Brownf5076542007-05-30 00:10:38 -04001023 return;
1024}
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026/*
Len Brownae00d812007-05-29 18:43:33 -04001027 * Modify the list of "OS Interfaces" reported to BIOS via _OSI
1028 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 * empty string disables _OSI
Len Brownae00d812007-05-29 18:43:33 -04001030 * string starting with '!' disables that string
1031 * otherwise string is added to list, augmenting built-in strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 */
Len Brown46c1fbd2008-02-13 23:13:25 -05001033int __init acpi_osi_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
1035 if (str == NULL || *str == '\0') {
1036 printk(KERN_INFO PREFIX "_OSI method disabled\n");
1037 acpi_gbl_create_osi_method = FALSE;
Len Brownaa2e09d2007-07-02 23:57:45 -04001038 } else if (!strcmp("!Linux", str)) {
Len Brownd4b7dc42008-01-23 20:50:56 -05001039 acpi_cmdline_osi_linux(0); /* !enable */
Len Brownae00d812007-05-29 18:43:33 -04001040 } else if (*str == '!') {
1041 if (acpi_osi_invalidate(++str) == AE_OK)
1042 printk(KERN_INFO PREFIX "Deleted _OSI(%s)\n", str);
Len Brownf5076542007-05-30 00:10:38 -04001043 } else if (!strcmp("Linux", str)) {
Len Brownd4b7dc42008-01-23 20:50:56 -05001044 acpi_cmdline_osi_linux(1); /* enable */
Len Brownae00d812007-05-29 18:43:33 -04001045 } else if (*osi_additional_string == '\0') {
1046 strncpy(osi_additional_string, str, OSI_STRING_LENGTH_MAX);
1047 printk(KERN_INFO PREFIX "Added _OSI(%s)\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 }
1049
1050 return 1;
1051}
1052
1053__setup("acpi_osi=", acpi_osi_setup);
1054
1055/* enable serialization to combat AE_ALREADY_EXISTS errors */
Len Brown4be44fc2005-08-05 00:44:28 -04001056static int __init acpi_serialize_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
1058 printk(KERN_INFO PREFIX "serialize enabled\n");
1059
1060 acpi_gbl_all_methods_serialized = TRUE;
1061
1062 return 1;
1063}
1064
1065__setup("acpi_serialize", acpi_serialize_setup);
1066
1067/*
1068 * Wake and Run-Time GPES are expected to be separate.
1069 * We disable wake-GPEs at run-time to prevent spurious
1070 * interrupts.
1071 *
1072 * However, if a system exists that shares Wake and
1073 * Run-time events on the same GPE this flag is available
1074 * to tell Linux to keep the wake-time GPEs enabled at run-time.
1075 */
Len Brown4be44fc2005-08-05 00:44:28 -04001076static int __init acpi_wake_gpes_always_on_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
1078 printk(KERN_INFO PREFIX "wake GPEs not disabled\n");
1079
1080 acpi_gbl_leave_wake_gpes_disabled = FALSE;
1081
1082 return 1;
1083}
1084
1085__setup("acpi_wake_gpes_always_on", acpi_wake_gpes_always_on_setup);
1086
Thomas Renningerdf92e692008-02-04 23:31:22 -08001087/* Check of resource interference between native drivers and ACPI
1088 * OperationRegions (SystemIO and System Memory only).
1089 * IO ports and memory declared in ACPI might be used by the ACPI subsystem
1090 * in arbitrary AML code and can interfere with legacy drivers.
1091 * acpi_enforce_resources= can be set to:
1092 *
Luca Tettamanti7e905602009-03-30 00:01:27 +02001093 * - strict (default) (2)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001094 * -> further driver trying to access the resources will not load
Luca Tettamanti7e905602009-03-30 00:01:27 +02001095 * - lax (1)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001096 * -> further driver trying to access the resources will load, but you
1097 * get a system message that something might go wrong...
1098 *
1099 * - no (0)
1100 * -> ACPI Operation Region resources will not be registered
1101 *
1102 */
1103#define ENFORCE_RESOURCES_STRICT 2
1104#define ENFORCE_RESOURCES_LAX 1
1105#define ENFORCE_RESOURCES_NO 0
1106
Luca Tettamanti7e905602009-03-30 00:01:27 +02001107static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001108
1109static int __init acpi_enforce_resources_setup(char *str)
1110{
1111 if (str == NULL || *str == '\0')
1112 return 0;
1113
1114 if (!strcmp("strict", str))
1115 acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1116 else if (!strcmp("lax", str))
1117 acpi_enforce_resources = ENFORCE_RESOURCES_LAX;
1118 else if (!strcmp("no", str))
1119 acpi_enforce_resources = ENFORCE_RESOURCES_NO;
1120
1121 return 1;
1122}
1123
1124__setup("acpi_enforce_resources=", acpi_enforce_resources_setup);
1125
1126/* Check for resource conflicts between ACPI OperationRegions and native
1127 * drivers */
Jean Delvare876fba42009-11-11 15:22:15 +01001128int acpi_check_resource_conflict(const struct resource *res)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001129{
1130 struct acpi_res_list *res_list_elem;
1131 int ioport;
1132 int clash = 0;
1133
1134 if (acpi_enforce_resources == ENFORCE_RESOURCES_NO)
1135 return 0;
1136 if (!(res->flags & IORESOURCE_IO) && !(res->flags & IORESOURCE_MEM))
1137 return 0;
1138
1139 ioport = res->flags & IORESOURCE_IO;
1140
1141 spin_lock(&acpi_res_lock);
1142 list_for_each_entry(res_list_elem, &resource_list_head,
1143 resource_list) {
1144 if (ioport && (res_list_elem->resource_type
1145 != ACPI_ADR_SPACE_SYSTEM_IO))
1146 continue;
1147 if (!ioport && (res_list_elem->resource_type
1148 != ACPI_ADR_SPACE_SYSTEM_MEMORY))
1149 continue;
1150
1151 if (res->end < res_list_elem->start
1152 || res_list_elem->end < res->start)
1153 continue;
1154 clash = 1;
1155 break;
1156 }
1157 spin_unlock(&acpi_res_lock);
1158
1159 if (clash) {
1160 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO) {
Jean Delvarebd129352008-02-27 20:56:01 +01001161 printk("%sACPI: %s resource %s [0x%llx-0x%llx]"
Thomas Renningerdf92e692008-02-04 23:31:22 -08001162 " conflicts with ACPI region %s"
1163 " [0x%llx-0x%llx]\n",
1164 acpi_enforce_resources == ENFORCE_RESOURCES_LAX
1165 ? KERN_WARNING : KERN_ERR,
1166 ioport ? "I/O" : "Memory", res->name,
1167 (long long) res->start, (long long) res->end,
1168 res_list_elem->name,
1169 (long long) res_list_elem->start,
1170 (long long) res_list_elem->end);
Jean Delvare14f03342009-09-08 15:31:46 +02001171 if (acpi_enforce_resources == ENFORCE_RESOURCES_LAX)
1172 printk(KERN_NOTICE "ACPI: This conflict may"
1173 " cause random problems and system"
1174 " instability\n");
1175 printk(KERN_INFO "ACPI: If an ACPI driver is available"
1176 " for this device, you should use it instead of"
1177 " the native driver\n");
Thomas Renningerdf92e692008-02-04 23:31:22 -08001178 }
1179 if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT)
1180 return -EBUSY;
1181 }
1182 return 0;
1183}
Thomas Renninger443dea72008-02-04 23:31:23 -08001184EXPORT_SYMBOL(acpi_check_resource_conflict);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001185
1186int acpi_check_region(resource_size_t start, resource_size_t n,
1187 const char *name)
1188{
1189 struct resource res = {
1190 .start = start,
1191 .end = start + n - 1,
1192 .name = name,
1193 .flags = IORESOURCE_IO,
1194 };
1195
1196 return acpi_check_resource_conflict(&res);
1197}
1198EXPORT_SYMBOL(acpi_check_region);
1199
1200int acpi_check_mem_region(resource_size_t start, resource_size_t n,
1201 const char *name)
1202{
1203 struct resource res = {
1204 .start = start,
1205 .end = start + n - 1,
1206 .name = name,
1207 .flags = IORESOURCE_MEM,
1208 };
1209
1210 return acpi_check_resource_conflict(&res);
1211
1212}
1213EXPORT_SYMBOL(acpi_check_mem_region);
1214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215/*
Robert Moore73459f72005-06-24 00:00:00 -04001216 * Acquire a spinlock.
1217 *
1218 * handle is a pointer to the spinlock_t.
Robert Moore73459f72005-06-24 00:00:00 -04001219 */
1220
Bob Moore967440e2006-06-23 17:04:00 -04001221acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp)
Robert Moore73459f72005-06-24 00:00:00 -04001222{
Bob Mooreb8e4d892006-01-27 16:43:00 -05001223 acpi_cpu_flags flags;
Bob Moore967440e2006-06-23 17:04:00 -04001224 spin_lock_irqsave(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001225 return flags;
1226}
1227
1228/*
1229 * Release a spinlock. See above.
1230 */
1231
Bob Moore967440e2006-06-23 17:04:00 -04001232void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags)
Robert Moore73459f72005-06-24 00:00:00 -04001233{
Bob Moore967440e2006-06-23 17:04:00 -04001234 spin_unlock_irqrestore(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001235}
1236
Robert Moore73459f72005-06-24 00:00:00 -04001237#ifndef ACPI_USE_LOCAL_CACHE
1238
1239/*******************************************************************************
1240 *
1241 * FUNCTION: acpi_os_create_cache
1242 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001243 * PARAMETERS: name - Ascii name for the cache
1244 * size - Size of each cached object
1245 * depth - Maximum depth of the cache (in objects) <ignored>
1246 * cache - Where the new cache object is returned
Robert Moore73459f72005-06-24 00:00:00 -04001247 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001248 * RETURN: status
Robert Moore73459f72005-06-24 00:00:00 -04001249 *
1250 * DESCRIPTION: Create a cache object
1251 *
1252 ******************************************************************************/
1253
1254acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001255acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache)
Robert Moore73459f72005-06-24 00:00:00 -04001256{
Paul Mundt20c2df82007-07-20 10:11:58 +09001257 *cache = kmem_cache_create(name, size, 0, 0, NULL);
Adrian Bunka6fdbf92006-12-19 12:56:13 -08001258 if (*cache == NULL)
Bob Mooreb229cf92006-04-21 17:15:00 -04001259 return AE_ERROR;
1260 else
1261 return AE_OK;
Robert Moore73459f72005-06-24 00:00:00 -04001262}
1263
1264/*******************************************************************************
1265 *
1266 * FUNCTION: acpi_os_purge_cache
1267 *
1268 * PARAMETERS: Cache - Handle to cache object
1269 *
1270 * RETURN: Status
1271 *
1272 * DESCRIPTION: Free all objects within the requested cache.
1273 *
1274 ******************************************************************************/
1275
Len Brown4be44fc2005-08-05 00:44:28 -04001276acpi_status acpi_os_purge_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001277{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001278 kmem_cache_shrink(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001279 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001280}
1281
1282/*******************************************************************************
1283 *
1284 * FUNCTION: acpi_os_delete_cache
1285 *
1286 * PARAMETERS: Cache - Handle to cache object
1287 *
1288 * RETURN: Status
1289 *
1290 * DESCRIPTION: Free all objects within the requested cache and delete the
1291 * cache object.
1292 *
1293 ******************************************************************************/
1294
Len Brown4be44fc2005-08-05 00:44:28 -04001295acpi_status acpi_os_delete_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001296{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001297 kmem_cache_destroy(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001298 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001299}
1300
1301/*******************************************************************************
1302 *
1303 * FUNCTION: acpi_os_release_object
1304 *
1305 * PARAMETERS: Cache - Handle to cache object
1306 * Object - The object to be released
1307 *
1308 * RETURN: None
1309 *
1310 * DESCRIPTION: Release an object to the specified cache. If cache is full,
1311 * the object is deleted.
1312 *
1313 ******************************************************************************/
1314
Len Brown4be44fc2005-08-05 00:44:28 -04001315acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object)
Robert Moore73459f72005-06-24 00:00:00 -04001316{
Len Brown4be44fc2005-08-05 00:44:28 -04001317 kmem_cache_free(cache, object);
1318 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001319}
1320
Bob Mooreb229cf92006-04-21 17:15:00 -04001321/******************************************************************************
1322 *
1323 * FUNCTION: acpi_os_validate_interface
1324 *
1325 * PARAMETERS: interface - Requested interface to be validated
1326 *
1327 * RETURN: AE_OK if interface is supported, AE_SUPPORT otherwise
1328 *
1329 * DESCRIPTION: Match an interface string to the interfaces supported by the
1330 * host. Strings originate from an AML call to the _OSI method.
1331 *
1332 *****************************************************************************/
1333
1334acpi_status
1335acpi_os_validate_interface (char *interface)
1336{
Len Brownae00d812007-05-29 18:43:33 -04001337 if (!strncmp(osi_additional_string, interface, OSI_STRING_LENGTH_MAX))
1338 return AE_OK;
Len Brownf5076542007-05-30 00:10:38 -04001339 if (!strcmp("Linux", interface)) {
Len Brownd4b7dc42008-01-23 20:50:56 -05001340
1341 printk(KERN_NOTICE PREFIX
1342 "BIOS _OSI(Linux) query %s%s\n",
1343 osi_linux.enable ? "honored" : "ignored",
1344 osi_linux.cmdline ? " via cmdline" :
1345 osi_linux.dmi ? " via DMI" : "");
1346
Len Brownd4b7dc42008-01-23 20:50:56 -05001347 if (osi_linux.enable)
Len Brownf5076542007-05-30 00:10:38 -04001348 return AE_OK;
1349 }
Len Brownae00d812007-05-29 18:43:33 -04001350 return AE_SUPPORT;
Bob Mooreb229cf92006-04-21 17:15:00 -04001351}
1352
Lin Minga5fe1a02009-08-13 10:43:27 +08001353static inline int acpi_res_list_add(struct acpi_res_list *res)
1354{
1355 struct acpi_res_list *res_list_elem;
1356
1357 list_for_each_entry(res_list_elem, &resource_list_head,
1358 resource_list) {
1359
1360 if (res->resource_type == res_list_elem->resource_type &&
1361 res->start == res_list_elem->start &&
1362 res->end == res_list_elem->end) {
1363
1364 /*
1365 * The Region(addr,len) already exist in the list,
1366 * just increase the count
1367 */
1368
1369 res_list_elem->count++;
1370 return 0;
1371 }
1372 }
1373
1374 res->count = 1;
1375 list_add(&res->resource_list, &resource_list_head);
1376 return 1;
1377}
1378
1379static inline void acpi_res_list_del(struct acpi_res_list *res)
1380{
1381 struct acpi_res_list *res_list_elem;
1382
1383 list_for_each_entry(res_list_elem, &resource_list_head,
1384 resource_list) {
1385
1386 if (res->resource_type == res_list_elem->resource_type &&
1387 res->start == res_list_elem->start &&
1388 res->end == res_list_elem->end) {
1389
1390 /*
1391 * If the res count is decreased to 0,
1392 * remove and free it
1393 */
1394
1395 if (--res_list_elem->count == 0) {
1396 list_del(&res_list_elem->resource_list);
1397 kfree(res_list_elem);
1398 }
1399 return;
1400 }
1401 }
1402}
1403
1404acpi_status
1405acpi_os_invalidate_address(
1406 u8 space_id,
1407 acpi_physical_address address,
1408 acpi_size length)
1409{
1410 struct acpi_res_list res;
1411
1412 switch (space_id) {
1413 case ACPI_ADR_SPACE_SYSTEM_IO:
1414 case ACPI_ADR_SPACE_SYSTEM_MEMORY:
1415 /* Only interference checks against SystemIO and SytemMemory
1416 are needed */
1417 res.start = address;
1418 res.end = address + length - 1;
1419 res.resource_type = space_id;
1420 spin_lock(&acpi_res_lock);
1421 acpi_res_list_del(&res);
1422 spin_unlock(&acpi_res_lock);
1423 break;
1424 case ACPI_ADR_SPACE_PCI_CONFIG:
1425 case ACPI_ADR_SPACE_EC:
1426 case ACPI_ADR_SPACE_SMBUS:
1427 case ACPI_ADR_SPACE_CMOS:
1428 case ACPI_ADR_SPACE_PCI_BAR_TARGET:
1429 case ACPI_ADR_SPACE_DATA_TABLE:
1430 case ACPI_ADR_SPACE_FIXED_HARDWARE:
1431 break;
1432 }
1433 return AE_OK;
1434}
1435
Bob Mooreb229cf92006-04-21 17:15:00 -04001436/******************************************************************************
1437 *
1438 * FUNCTION: acpi_os_validate_address
1439 *
1440 * PARAMETERS: space_id - ACPI space ID
1441 * address - Physical address
1442 * length - Address length
1443 *
1444 * RETURN: AE_OK if address/length is valid for the space_id. Otherwise,
1445 * should return AE_AML_ILLEGAL_ADDRESS.
1446 *
1447 * DESCRIPTION: Validate a system address via the host OS. Used to validate
1448 * the addresses accessed by AML operation regions.
1449 *
1450 *****************************************************************************/
1451
1452acpi_status
1453acpi_os_validate_address (
1454 u8 space_id,
1455 acpi_physical_address address,
Thomas Renningerdf92e692008-02-04 23:31:22 -08001456 acpi_size length,
1457 char *name)
Bob Mooreb229cf92006-04-21 17:15:00 -04001458{
Thomas Renningerdf92e692008-02-04 23:31:22 -08001459 struct acpi_res_list *res;
Lin Minga5fe1a02009-08-13 10:43:27 +08001460 int added;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001461 if (acpi_enforce_resources == ENFORCE_RESOURCES_NO)
1462 return AE_OK;
Bob Mooreb229cf92006-04-21 17:15:00 -04001463
Thomas Renningerdf92e692008-02-04 23:31:22 -08001464 switch (space_id) {
1465 case ACPI_ADR_SPACE_SYSTEM_IO:
1466 case ACPI_ADR_SPACE_SYSTEM_MEMORY:
1467 /* Only interference checks against SystemIO and SytemMemory
1468 are needed */
1469 res = kzalloc(sizeof(struct acpi_res_list), GFP_KERNEL);
1470 if (!res)
1471 return AE_OK;
1472 /* ACPI names are fixed to 4 bytes, still better use strlcpy */
1473 strlcpy(res->name, name, 5);
1474 res->start = address;
1475 res->end = address + length - 1;
1476 res->resource_type = space_id;
1477 spin_lock(&acpi_res_lock);
Lin Minga5fe1a02009-08-13 10:43:27 +08001478 added = acpi_res_list_add(res);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001479 spin_unlock(&acpi_res_lock);
Lin Minga5fe1a02009-08-13 10:43:27 +08001480 pr_debug("%s %s resource: start: 0x%llx, end: 0x%llx, "
1481 "name: %s\n", added ? "Added" : "Already exist",
1482 (space_id == ACPI_ADR_SPACE_SYSTEM_IO)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001483 ? "SystemIO" : "System Memory",
1484 (unsigned long long)res->start,
1485 (unsigned long long)res->end,
1486 res->name);
Lin Minga5fe1a02009-08-13 10:43:27 +08001487 if (!added)
1488 kfree(res);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001489 break;
1490 case ACPI_ADR_SPACE_PCI_CONFIG:
1491 case ACPI_ADR_SPACE_EC:
1492 case ACPI_ADR_SPACE_SMBUS:
1493 case ACPI_ADR_SPACE_CMOS:
1494 case ACPI_ADR_SPACE_PCI_BAR_TARGET:
1495 case ACPI_ADR_SPACE_DATA_TABLE:
1496 case ACPI_ADR_SPACE_FIXED_HARDWARE:
1497 break;
1498 }
1499 return AE_OK;
Bob Mooreb229cf92006-04-21 17:15:00 -04001500}
1501
Robert Moore73459f72005-06-24 00:00:00 -04001502#endif