blob: 21d34595dbae4a7f5e5d5991d55e52a1f54cc95f [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>
7 *
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
24 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25 *
26 */
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/kernel.h>
30#include <linux/slab.h>
31#include <linux/mm.h>
32#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/interrupt.h>
34#include <linux/kmod.h>
35#include <linux/delay.h>
Len Brownf5076542007-05-30 00:10:38 -040036#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/workqueue.h>
38#include <linux/nmi.h>
Alexey Starikovskiyad718602007-02-02 19:48:19 +030039#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <acpi/acpi.h>
41#include <asm/io.h>
42#include <acpi/acpi_bus.h>
43#include <acpi/processor.h>
44#include <asm/uaccess.h>
45
46#include <linux/efi.h>
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define _COMPONENT ACPI_OS_SERVICES
Len Brownf52fd662007-02-12 22:42:12 -050049ACPI_MODULE_NAME("osl");
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define PREFIX "ACPI: "
Len Brown4be44fc2005-08-05 00:44:28 -040051struct acpi_os_dpc {
52 acpi_osd_exec_callback function;
53 void *context;
David Howells65f27f32006-11-22 14:55:48 +000054 struct work_struct work;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055};
56
57#ifdef CONFIG_ACPI_CUSTOM_DSDT
58#include CONFIG_ACPI_CUSTOM_DSDT_FILE
59#endif
60
61#ifdef ENABLE_DEBUGGER
62#include <linux/kdb.h>
63
64/* stuff for debugger support */
65int acpi_in_debugger;
66EXPORT_SYMBOL(acpi_in_debugger);
67
68extern char line_buf[80];
Len Brown4be44fc2005-08-05 00:44:28 -040069#endif /*ENABLE_DEBUGGER */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71static unsigned int acpi_irq_irq;
72static acpi_osd_handler acpi_irq_handler;
73static void *acpi_irq_context;
74static struct workqueue_struct *kacpid_wq;
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -040075static struct workqueue_struct *kacpi_notify_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Len Brownae00d812007-05-29 18:43:33 -040077#define OSI_STRING_LENGTH_MAX 64 /* arbitrary */
78static char osi_additional_string[OSI_STRING_LENGTH_MAX];
79
Adrian Bunk33121112007-07-03 00:56:05 -040080static int osi_linux; /* disable _OSI(Linux) by default */
Len Brownf5076542007-05-30 00:10:38 -040081
82#ifdef CONFIG_DMI
Len Browndd272b52007-05-30 00:26:11 -040083static struct __initdata dmi_system_id acpi_osl_dmi_table[];
Len Brownf5076542007-05-30 00:10:38 -040084#endif
85
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -070086static void __init acpi_request_region (struct acpi_generic_address *addr,
87 unsigned int length, char *desc)
88{
89 struct resource *res;
90
91 if (!addr->address || !length)
92 return;
93
Len Browneee3c852007-02-03 01:38:16 -050094 if (addr->space_id == ACPI_ADR_SPACE_SYSTEM_IO)
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -070095 res = request_region(addr->address, length, desc);
Len Browneee3c852007-02-03 01:38:16 -050096 else if (addr->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -070097 res = request_mem_region(addr->address, length, desc);
98}
99
100static int __init acpi_reserve_resources(void)
101{
Len Browneee3c852007-02-03 01:38:16 -0500102 acpi_request_region(&acpi_gbl_FADT.xpm1a_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700103 "ACPI PM1a_EVT_BLK");
104
Len Browneee3c852007-02-03 01:38:16 -0500105 acpi_request_region(&acpi_gbl_FADT.xpm1b_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700106 "ACPI PM1b_EVT_BLK");
107
Len Browneee3c852007-02-03 01:38:16 -0500108 acpi_request_region(&acpi_gbl_FADT.xpm1a_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700109 "ACPI PM1a_CNT_BLK");
110
Len Browneee3c852007-02-03 01:38:16 -0500111 acpi_request_region(&acpi_gbl_FADT.xpm1b_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700112 "ACPI PM1b_CNT_BLK");
113
Len Browneee3c852007-02-03 01:38:16 -0500114 if (acpi_gbl_FADT.pm_timer_length == 4)
115 acpi_request_region(&acpi_gbl_FADT.xpm_timer_block, 4, "ACPI PM_TMR");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700116
Len Browneee3c852007-02-03 01:38:16 -0500117 acpi_request_region(&acpi_gbl_FADT.xpm2_control_block, acpi_gbl_FADT.pm2_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700118 "ACPI PM2_CNT_BLK");
119
120 /* Length of GPE blocks must be a non-negative multiple of 2 */
121
Len Browneee3c852007-02-03 01:38:16 -0500122 if (!(acpi_gbl_FADT.gpe0_block_length & 0x1))
123 acpi_request_region(&acpi_gbl_FADT.xgpe0_block,
124 acpi_gbl_FADT.gpe0_block_length, "ACPI GPE0_BLK");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700125
Len Browneee3c852007-02-03 01:38:16 -0500126 if (!(acpi_gbl_FADT.gpe1_block_length & 0x1))
127 acpi_request_region(&acpi_gbl_FADT.xgpe1_block,
128 acpi_gbl_FADT.gpe1_block_length, "ACPI GPE1_BLK");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700129
130 return 0;
131}
132device_initcall(acpi_reserve_resources);
133
Len Browndd272b52007-05-30 00:26:11 -0400134acpi_status __init acpi_os_initialize(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Len Brownf5076542007-05-30 00:10:38 -0400136 dmi_check_system(acpi_osl_dmi_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return AE_OK;
138}
139
Len Brown4be44fc2005-08-05 00:44:28 -0400140acpi_status acpi_os_initialize1(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 /*
143 * Initialize PCI configuration space access, as we'll need to access
144 * it while walking the namespace (bus 0 and root bridges w/ _BBNs).
145 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 if (!raw_pci_ops) {
Len Brown4be44fc2005-08-05 00:44:28 -0400147 printk(KERN_ERR PREFIX
148 "Access to PCI configuration space unavailable\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 return AE_NULL_ENTRY;
150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 kacpid_wq = create_singlethread_workqueue("kacpid");
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -0400152 kacpi_notify_wq = create_singlethread_workqueue("kacpi_notify");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 BUG_ON(!kacpid_wq);
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -0400154 BUG_ON(!kacpi_notify_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return AE_OK;
156}
157
Len Brown4be44fc2005-08-05 00:44:28 -0400158acpi_status acpi_os_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 if (acpi_irq_handler) {
161 acpi_os_remove_interrupt_handler(acpi_irq_irq,
162 acpi_irq_handler);
163 }
164
165 destroy_workqueue(kacpid_wq);
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -0400166 destroy_workqueue(kacpi_notify_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 return AE_OK;
169}
170
Len Brown4be44fc2005-08-05 00:44:28 -0400171void acpi_os_printf(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 va_list args;
174 va_start(args, fmt);
175 acpi_os_vprintf(fmt, args);
176 va_end(args);
177}
Len Brown4be44fc2005-08-05 00:44:28 -0400178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179EXPORT_SYMBOL(acpi_os_printf);
180
Len Brown4be44fc2005-08-05 00:44:28 -0400181void acpi_os_vprintf(const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
183 static char buffer[512];
Len Brown4be44fc2005-08-05 00:44:28 -0400184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 vsprintf(buffer, fmt, args);
186
187#ifdef ENABLE_DEBUGGER
188 if (acpi_in_debugger) {
189 kdb_printf("%s", buffer);
190 } else {
191 printk("%s", buffer);
192 }
193#else
194 printk("%s", buffer);
195#endif
196}
197
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300198acpi_physical_address __init acpi_os_get_root_pointer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
200 if (efi_enabled) {
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800201 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300202 return efi.acpi20;
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800203 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300204 return efi.acpi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400206 printk(KERN_ERR PREFIX
207 "System description tables not found\n");
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300208 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300210 } else
211 return acpi_find_rsdp();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300214void __iomem *acpi_os_map_memory(acpi_physical_address phys, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800216 if (phys > ULONG_MAX) {
217 printk(KERN_ERR PREFIX "Cannot map memory that high\n");
Randy Dunlap70c08462007-02-13 16:11:36 -0800218 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300220 if (acpi_gbl_permanent_mmap)
221 /*
222 * ioremap checks to ensure this is in reserved space
223 */
224 return ioremap((unsigned long)phys, size);
225 else
226 return __acpi_map_table((unsigned long)phys, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800228EXPORT_SYMBOL_GPL(acpi_os_map_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Len Brown4be44fc2005-08-05 00:44:28 -0400230void acpi_os_unmap_memory(void __iomem * virt, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300232 if (acpi_gbl_permanent_mmap) {
233 iounmap(virt);
234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800236EXPORT_SYMBOL_GPL(acpi_os_unmap_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238#ifdef ACPI_FUTURE_USAGE
239acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400240acpi_os_get_physical_address(void *virt, acpi_physical_address * phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Len Brown4be44fc2005-08-05 00:44:28 -0400242 if (!phys || !virt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return AE_BAD_PARAMETER;
244
245 *phys = virt_to_phys(virt);
246
247 return AE_OK;
248}
249#endif
250
251#define ACPI_MAX_OVERRIDE_LEN 100
252
253static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN];
254
255acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400256acpi_os_predefined_override(const struct acpi_predefined_names *init_val,
257 acpi_string * new_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
259 if (!init_val || !new_val)
260 return AE_BAD_PARAMETER;
261
262 *new_val = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400263 if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400265 acpi_os_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 *new_val = acpi_os_name;
267 }
268
269 return AE_OK;
270}
271
272acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400273acpi_os_table_override(struct acpi_table_header * existing_table,
274 struct acpi_table_header ** new_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 if (!existing_table || !new_table)
277 return AE_BAD_PARAMETER;
278
279#ifdef CONFIG_ACPI_CUSTOM_DSDT
280 if (strncmp(existing_table->signature, "DSDT", 4) == 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400281 *new_table = (struct acpi_table_header *)AmlCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 else
283 *new_table = NULL;
284#else
285 *new_table = NULL;
286#endif
287 return AE_OK;
288}
289
David Howells7d12e782006-10-05 14:55:46 +0100290static irqreturn_t acpi_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Len Brown4be44fc2005-08-05 00:44:28 -0400292 return (*acpi_irq_handler) (acpi_irq_context) ? IRQ_HANDLED : IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
295acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400296acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
297 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 unsigned int irq;
300
301 /*
302 * Ignore the GSI from the core, and use the value in our copy of the
303 * FADT. It may not be the same if an interrupt source override exists
304 * for the SCI.
305 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300306 gsi = acpi_gbl_FADT.sci_interrupt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (acpi_gsi_to_irq(gsi, &irq) < 0) {
308 printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n",
309 gsi);
310 return AE_OK;
311 }
312
313 acpi_irq_handler = handler;
314 acpi_irq_context = context;
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700315 if (request_irq(irq, acpi_irq, IRQF_SHARED, "acpi", acpi_irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq);
317 return AE_NOT_ACQUIRED;
318 }
319 acpi_irq_irq = irq;
320
321 return AE_OK;
322}
323
Len Brown4be44fc2005-08-05 00:44:28 -0400324acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 if (irq) {
327 free_irq(irq, acpi_irq);
328 acpi_irq_handler = NULL;
329 acpi_irq_irq = 0;
330 }
331
332 return AE_OK;
333}
334
335/*
336 * Running in interpreter thread context, safe to sleep
337 */
338
Len Brown4be44fc2005-08-05 00:44:28 -0400339void acpi_os_sleep(acpi_integer ms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Nishanth Aravamudan01a527e2005-11-07 01:01:14 -0800341 schedule_timeout_interruptible(msecs_to_jiffies(ms));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
Len Brown4be44fc2005-08-05 00:44:28 -0400343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344EXPORT_SYMBOL(acpi_os_sleep);
345
Len Brown4be44fc2005-08-05 00:44:28 -0400346void acpi_os_stall(u32 us)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 while (us) {
349 u32 delay = 1000;
350
351 if (delay > us)
352 delay = us;
353 udelay(delay);
354 touch_nmi_watchdog();
355 us -= delay;
356 }
357}
Len Brown4be44fc2005-08-05 00:44:28 -0400358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359EXPORT_SYMBOL(acpi_os_stall);
360
361/*
362 * Support ACPI 3.0 AML Timer operand
363 * Returns 64-bit free-running, monotonically increasing timer
364 * with 100ns granularity
365 */
Len Brown4be44fc2005-08-05 00:44:28 -0400366u64 acpi_os_get_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
368 static u64 t;
369
370#ifdef CONFIG_HPET
371 /* TBD: use HPET if available */
372#endif
373
374#ifdef CONFIG_X86_PM_TIMER
375 /* TBD: default to PM timer if HPET was not available */
376#endif
377 if (!t)
378 printk(KERN_ERR PREFIX "acpi_os_get_timer() TBD\n");
379
380 return ++t;
381}
382
Len Brown4be44fc2005-08-05 00:44:28 -0400383acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
385 u32 dummy;
386
387 if (!value)
388 value = &dummy;
389
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800390 *value = 0;
391 if (width <= 8) {
Len Brown4be44fc2005-08-05 00:44:28 -0400392 *(u8 *) value = inb(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800393 } else if (width <= 16) {
Len Brown4be44fc2005-08-05 00:44:28 -0400394 *(u16 *) value = inw(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800395 } else if (width <= 32) {
Len Brown4be44fc2005-08-05 00:44:28 -0400396 *(u32 *) value = inl(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800397 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 BUG();
399 }
400
401 return AE_OK;
402}
Len Brown4be44fc2005-08-05 00:44:28 -0400403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404EXPORT_SYMBOL(acpi_os_read_port);
405
Len Brown4be44fc2005-08-05 00:44:28 -0400406acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800408 if (width <= 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 outb(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800410 } else if (width <= 16) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 outw(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800412 } else if (width <= 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 outl(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800414 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 BUG();
416 }
417
418 return AE_OK;
419}
Len Brown4be44fc2005-08-05 00:44:28 -0400420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421EXPORT_SYMBOL(acpi_os_write_port);
422
423acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400424acpi_os_read_memory(acpi_physical_address phys_addr, u32 * value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Len Brown4be44fc2005-08-05 00:44:28 -0400426 u32 dummy;
427 void __iomem *virt_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800429 virt_addr = ioremap(phys_addr, width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (!value)
431 value = &dummy;
432
433 switch (width) {
434 case 8:
Len Brown4be44fc2005-08-05 00:44:28 -0400435 *(u8 *) value = readb(virt_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 break;
437 case 16:
Len Brown4be44fc2005-08-05 00:44:28 -0400438 *(u16 *) value = readw(virt_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 break;
440 case 32:
Len Brown4be44fc2005-08-05 00:44:28 -0400441 *(u32 *) value = readl(virt_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 break;
443 default:
444 BUG();
445 }
446
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800447 iounmap(virt_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 return AE_OK;
450}
451
452acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400453acpi_os_write_memory(acpi_physical_address phys_addr, u32 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
Len Brown4be44fc2005-08-05 00:44:28 -0400455 void __iomem *virt_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800457 virt_addr = ioremap(phys_addr, width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 switch (width) {
460 case 8:
461 writeb(value, virt_addr);
462 break;
463 case 16:
464 writew(value, virt_addr);
465 break;
466 case 32:
467 writel(value, virt_addr);
468 break;
469 default:
470 BUG();
471 }
472
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800473 iounmap(virt_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 return AE_OK;
476}
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400479acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
480 void *value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482 int result, size;
483
484 if (!value)
485 return AE_BAD_PARAMETER;
486
487 switch (width) {
488 case 8:
489 size = 1;
490 break;
491 case 16:
492 size = 2;
493 break;
494 case 32:
495 size = 4;
496 break;
497 default:
498 return AE_ERROR;
499 }
500
501 BUG_ON(!raw_pci_ops);
502
503 result = raw_pci_ops->read(pci_id->segment, pci_id->bus,
Len Brown4be44fc2005-08-05 00:44:28 -0400504 PCI_DEVFN(pci_id->device, pci_id->function),
505 reg, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 return (result ? AE_ERROR : AE_OK);
508}
Len Brown4be44fc2005-08-05 00:44:28 -0400509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510EXPORT_SYMBOL(acpi_os_read_pci_configuration);
511
512acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400513acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
514 acpi_integer value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 int result, size;
517
518 switch (width) {
519 case 8:
520 size = 1;
521 break;
522 case 16:
523 size = 2;
524 break;
525 case 32:
526 size = 4;
527 break;
528 default:
529 return AE_ERROR;
530 }
531
532 BUG_ON(!raw_pci_ops);
533
534 result = raw_pci_ops->write(pci_id->segment, pci_id->bus,
Len Brown4be44fc2005-08-05 00:44:28 -0400535 PCI_DEVFN(pci_id->device, pci_id->function),
536 reg, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 return (result ? AE_ERROR : AE_OK);
539}
540
541/* TODO: Change code to take advantage of driver model more */
Len Brown4be44fc2005-08-05 00:44:28 -0400542static void acpi_os_derive_pci_id_2(acpi_handle rhandle, /* upper bound */
543 acpi_handle chandle, /* current node */
544 struct acpi_pci_id **id,
545 int *is_bridge, u8 * bus_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Len Brown4be44fc2005-08-05 00:44:28 -0400547 acpi_handle handle;
548 struct acpi_pci_id *pci_id = *id;
549 acpi_status status;
550 unsigned long temp;
551 acpi_object_type type;
552 u8 tu8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 acpi_get_parent(chandle, &handle);
555 if (handle != rhandle) {
Len Brown4be44fc2005-08-05 00:44:28 -0400556 acpi_os_derive_pci_id_2(rhandle, handle, &pci_id, is_bridge,
557 bus_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 status = acpi_get_type(handle, &type);
Len Brown4be44fc2005-08-05 00:44:28 -0400560 if ((ACPI_FAILURE(status)) || (type != ACPI_TYPE_DEVICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return;
562
Len Brown4be44fc2005-08-05 00:44:28 -0400563 status =
564 acpi_evaluate_integer(handle, METHOD_NAME__ADR, NULL,
565 &temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (ACPI_SUCCESS(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400567 pci_id->device = ACPI_HIWORD(ACPI_LODWORD(temp));
568 pci_id->function = ACPI_LOWORD(ACPI_LODWORD(temp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 if (*is_bridge)
571 pci_id->bus = *bus_number;
572
573 /* any nicer way to get bus number of bridge ? */
Len Brown4be44fc2005-08-05 00:44:28 -0400574 status =
575 acpi_os_read_pci_configuration(pci_id, 0x0e, &tu8,
576 8);
577 if (ACPI_SUCCESS(status)
578 && ((tu8 & 0x7f) == 1 || (tu8 & 0x7f) == 2)) {
579 status =
580 acpi_os_read_pci_configuration(pci_id, 0x18,
581 &tu8, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (!ACPI_SUCCESS(status)) {
583 /* Certainly broken... FIX ME */
584 return;
585 }
586 *is_bridge = 1;
587 pci_id->bus = tu8;
Len Brown4be44fc2005-08-05 00:44:28 -0400588 status =
589 acpi_os_read_pci_configuration(pci_id, 0x19,
590 &tu8, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (ACPI_SUCCESS(status)) {
592 *bus_number = tu8;
593 }
594 } else
595 *is_bridge = 0;
596 }
597 }
598}
599
Len Brown4be44fc2005-08-05 00:44:28 -0400600void acpi_os_derive_pci_id(acpi_handle rhandle, /* upper bound */
601 acpi_handle chandle, /* current node */
602 struct acpi_pci_id **id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
604 int is_bridge = 1;
605 u8 bus_number = (*id)->bus;
606
607 acpi_os_derive_pci_id_2(rhandle, chandle, id, &is_bridge, &bus_number);
608}
609
David Howells65f27f32006-11-22 14:55:48 +0000610static void acpi_os_execute_deferred(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
David Howells65f27f32006-11-22 14:55:48 +0000612 struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work);
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -0400613 if (!dpc) {
614 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
615 return;
616 }
617
618 dpc->function(dpc->context);
619 kfree(dpc);
620
Patrick Mocheld550d982006-06-27 00:41:40 -0400621 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400624/*******************************************************************************
625 *
626 * FUNCTION: acpi_os_execute
627 *
628 * PARAMETERS: Type - Type of the callback
629 * Function - Function to be executed
630 * Context - Function parameters
631 *
632 * RETURN: Status
633 *
634 * DESCRIPTION: Depending on type, either queues function for deferred execution or
635 * immediately executes function on a separate thread.
636 *
637 ******************************************************************************/
638
639acpi_status acpi_os_execute(acpi_execute_type type,
Len Brown4be44fc2005-08-05 00:44:28 -0400640 acpi_osd_exec_callback function, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Len Brown4be44fc2005-08-05 00:44:28 -0400642 acpi_status status = AE_OK;
643 struct acpi_os_dpc *dpc;
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300644 struct workqueue_struct *queue;
Len Brown72945b22006-07-12 22:46:42 -0400645 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
646 "Scheduling function [%p(%p)] for deferred execution.\n",
647 function, context));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 if (!function)
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -0400650 return AE_BAD_PARAMETER;
Len Brown72945b22006-07-12 22:46:42 -0400651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 /*
653 * Allocate/initialize DPC structure. Note that this memory will be
David Howells65f27f32006-11-22 14:55:48 +0000654 * freed by the callee. The kernel handles the work_struct list in a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 * way that allows us to also free its memory inside the callee.
656 * Because we may want to schedule several tasks with different
657 * parameters we can't use the approach some kernel code uses of
David Howells65f27f32006-11-22 14:55:48 +0000658 * having a static work_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 */
Len Brown72945b22006-07-12 22:46:42 -0400660
David Howells65f27f32006-11-22 14:55:48 +0000661 dpc = kmalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (!dpc)
Linus Torvaldsb976fe12006-11-17 19:31:09 -0800663 return_ACPI_STATUS(AE_NO_MEMORY);
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 dpc->function = function;
666 dpc->context = context;
Linus Torvaldsb976fe12006-11-17 19:31:09 -0800667
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +0300668 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
669 queue = (type == OSL_NOTIFY_HANDLER) ? kacpi_notify_wq : kacpid_wq;
670 if (!queue_work(queue, &dpc->work)) {
671 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
672 "Call to queue_work() failed.\n"));
673 status = AE_ERROR;
674 kfree(dpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
Linus Torvaldsb976fe12006-11-17 19:31:09 -0800676 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
Len Brown4be44fc2005-08-05 00:44:28 -0400678
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -0400679EXPORT_SYMBOL(acpi_os_execute);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Len Brown4be44fc2005-08-05 00:44:28 -0400681void acpi_os_wait_events_complete(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 flush_workqueue(kacpid_wq);
684}
Len Brown4be44fc2005-08-05 00:44:28 -0400685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686EXPORT_SYMBOL(acpi_os_wait_events_complete);
687
688/*
689 * Allocate the memory for a spinlock and initialize it.
690 */
Bob Moore967440e2006-06-23 17:04:00 -0400691acpi_status acpi_os_create_lock(acpi_spinlock * handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Bob Moore967440e2006-06-23 17:04:00 -0400693 spin_lock_init(*handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Patrick Mocheld550d982006-06-27 00:41:40 -0400695 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698/*
699 * Deallocate the memory for a spinlock.
700 */
Bob Moore967440e2006-06-23 17:04:00 -0400701void acpi_os_delete_lock(acpi_spinlock handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Patrick Mocheld550d982006-06-27 00:41:40 -0400703 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400707acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
Len Brown4be44fc2005-08-05 00:44:28 -0400709 struct semaphore *sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 sem = acpi_os_allocate(sizeof(struct semaphore));
713 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -0400714 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 memset(sem, 0, sizeof(struct semaphore));
716
717 sema_init(sem, initial_units);
718
Len Brown4be44fc2005-08-05 00:44:28 -0400719 *handle = (acpi_handle *) sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Len Brown4be44fc2005-08-05 00:44:28 -0400721 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n",
722 *handle, initial_units));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Patrick Mocheld550d982006-06-27 00:41:40 -0400724 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Len Brown4be44fc2005-08-05 00:44:28 -0400727EXPORT_SYMBOL(acpi_os_create_semaphore);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729/*
730 * TODO: A better way to delete semaphores? Linux doesn't have a
731 * 'delete_semaphore()' function -- may result in an invalid
732 * pointer dereference for non-synchronized consumers. Should
733 * we at least check for blocked threads and signal/cancel them?
734 */
735
Len Brown4be44fc2005-08-05 00:44:28 -0400736acpi_status acpi_os_delete_semaphore(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
Len Brown4be44fc2005-08-05 00:44:28 -0400738 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -0400742 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Len Brown4be44fc2005-08-05 00:44:28 -0400744 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Len Brown02438d82006-06-30 03:19:10 -0400746 kfree(sem);
Len Brown4be44fc2005-08-05 00:44:28 -0400747 sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Patrick Mocheld550d982006-06-27 00:41:40 -0400749 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Len Brown4be44fc2005-08-05 00:44:28 -0400752EXPORT_SYMBOL(acpi_os_delete_semaphore);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754/*
755 * TODO: The kernel doesn't have a 'down_timeout' function -- had to
756 * improvise. The process is to sleep for one scheduler quantum
757 * until the semaphore becomes available. Downside is that this
758 * may result in starvation for timeout-based waits when there's
759 * lots of semaphore activity.
760 *
761 * TODO: Support for units > 1?
762 */
Len Brown4be44fc2005-08-05 00:44:28 -0400763acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
Len Brown4be44fc2005-08-05 00:44:28 -0400765 acpi_status status = AE_OK;
766 struct semaphore *sem = (struct semaphore *)handle;
767 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400771 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -0400774 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Len Brown4be44fc2005-08-05 00:44:28 -0400776 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n",
777 handle, units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Len Brownd68909f2006-08-16 19:16:58 -0400779 /*
780 * This can be called during resume with interrupts off.
781 * Like boot-time, we should be single threaded and will
782 * always get the lock if we try -- timeout or not.
783 * If this doesn't succeed, then we will oops courtesy of
784 * might_sleep() in down().
785 */
786 if (!down_trylock(sem))
787 return AE_OK;
788
Len Brown4be44fc2005-08-05 00:44:28 -0400789 switch (timeout) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /*
791 * No Wait:
792 * --------
793 * A zero timeout value indicates that we shouldn't wait - just
794 * acquire the semaphore if available otherwise return AE_TIME
795 * (a.k.a. 'would block').
796 */
Len Brown4be44fc2005-08-05 00:44:28 -0400797 case 0:
798 if (down_trylock(sem))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 status = AE_TIME;
800 break;
801
802 /*
803 * Wait Indefinitely:
804 * ------------------
805 */
Len Brown4be44fc2005-08-05 00:44:28 -0400806 case ACPI_WAIT_FOREVER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 down(sem);
808 break;
809
810 /*
811 * Wait w/ Timeout:
812 * ----------------
813 */
Len Brown4be44fc2005-08-05 00:44:28 -0400814 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 // TODO: A better timeout algorithm?
816 {
817 int i = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400818 static const int quantum_ms = 1000 / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 ret = down_trylock(sem);
Yu Lumingdacd9b82005-12-31 01:45:00 -0500821 for (i = timeout; (i > 0 && ret != 0); i -= quantum_ms) {
Nishanth Aravamudan01a527e2005-11-07 01:01:14 -0800822 schedule_timeout_interruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 ret = down_trylock(sem);
824 }
Len Brown4be44fc2005-08-05 00:44:28 -0400825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 if (ret != 0)
827 status = AE_TIME;
828 }
829 break;
830 }
831
832 if (ACPI_FAILURE(status)) {
Bjorn Helgaas9e7e2c02006-04-27 05:25:00 -0400833 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -0400834 "Failed to acquire semaphore[%p|%d|%d], %s",
Len Brown4be44fc2005-08-05 00:44:28 -0400835 handle, units, timeout,
836 acpi_format_exception(status)));
837 } else {
838 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -0400839 "Acquired semaphore[%p|%d|%d]", handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400840 units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
842
Patrick Mocheld550d982006-06-27 00:41:40 -0400843 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Len Brown4be44fc2005-08-05 00:44:28 -0400846EXPORT_SYMBOL(acpi_os_wait_semaphore);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848/*
849 * TODO: Support for units > 1?
850 */
Len Brown4be44fc2005-08-05 00:44:28 -0400851acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Len Brown4be44fc2005-08-05 00:44:28 -0400853 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400857 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -0400860 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Len Brown4be44fc2005-08-05 00:44:28 -0400862 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle,
863 units));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 up(sem);
866
Patrick Mocheld550d982006-06-27 00:41:40 -0400867 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
Len Brown4be44fc2005-08-05 00:44:28 -0400869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870EXPORT_SYMBOL(acpi_os_signal_semaphore);
871
872#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400873u32 acpi_os_get_line(char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
875
876#ifdef ENABLE_DEBUGGER
877 if (acpi_in_debugger) {
878 u32 chars;
879
880 kdb_read(buffer, sizeof(line_buf));
881
882 /* remove the CR kdb includes */
883 chars = strlen(buffer) - 1;
884 buffer[chars] = '\0';
885 }
886#endif
887
888 return 0;
889}
Len Brown4be44fc2005-08-05 00:44:28 -0400890#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Len Brown4be44fc2005-08-05 00:44:28 -0400892acpi_status acpi_os_signal(u32 function, void *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Len Brown4be44fc2005-08-05 00:44:28 -0400894 switch (function) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 case ACPI_SIGNAL_FATAL:
896 printk(KERN_ERR PREFIX "Fatal opcode executed\n");
897 break;
898 case ACPI_SIGNAL_BREAKPOINT:
899 /*
900 * AML Breakpoint
901 * ACPI spec. says to treat it as a NOP unless
902 * you are debugging. So if/when we integrate
903 * AML debugger into the kernel debugger its
904 * hook will go here. But until then it is
905 * not useful to print anything on breakpoints.
906 */
907 break;
908 default:
909 break;
910 }
911
912 return AE_OK;
913}
Len Brown4be44fc2005-08-05 00:44:28 -0400914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915EXPORT_SYMBOL(acpi_os_signal);
916
Len Brown4be44fc2005-08-05 00:44:28 -0400917static int __init acpi_os_name_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
919 char *p = acpi_os_name;
Len Brown4be44fc2005-08-05 00:44:28 -0400920 int count = ACPI_MAX_OVERRIDE_LEN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 if (!str || !*str)
923 return 0;
924
925 for (; count-- && str && *str; str++) {
926 if (isalnum(*str) || *str == ' ' || *str == ':')
927 *p++ = *str;
928 else if (*str == '\'' || *str == '"')
929 continue;
930 else
931 break;
932 }
933 *p = 0;
934
935 return 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
939__setup("acpi_os_name=", acpi_os_name_setup);
940
Len Brownf5076542007-05-30 00:10:38 -0400941static void enable_osi_linux(int enable) {
942
943 if (osi_linux != enable)
944 printk(KERN_INFO PREFIX "%sabled _OSI(Linux)\n",
945 enable ? "En": "Dis");
946
947 osi_linux = enable;
948 return;
949}
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951/*
Len Brownae00d812007-05-29 18:43:33 -0400952 * Modify the list of "OS Interfaces" reported to BIOS via _OSI
953 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 * empty string disables _OSI
Len Brownae00d812007-05-29 18:43:33 -0400955 * string starting with '!' disables that string
956 * otherwise string is added to list, augmenting built-in strings
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 */
Len Brown4be44fc2005-08-05 00:44:28 -0400958static int __init acpi_osi_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
960 if (str == NULL || *str == '\0') {
961 printk(KERN_INFO PREFIX "_OSI method disabled\n");
962 acpi_gbl_create_osi_method = FALSE;
Len Brownaa2e09d2007-07-02 23:57:45 -0400963 } else if (!strcmp("!Linux", str)) {
964 enable_osi_linux(0);
Len Brownae00d812007-05-29 18:43:33 -0400965 } else if (*str == '!') {
966 if (acpi_osi_invalidate(++str) == AE_OK)
967 printk(KERN_INFO PREFIX "Deleted _OSI(%s)\n", str);
Len Brownf5076542007-05-30 00:10:38 -0400968 } else if (!strcmp("Linux", str)) {
969 enable_osi_linux(1);
Len Brownae00d812007-05-29 18:43:33 -0400970 } else if (*osi_additional_string == '\0') {
971 strncpy(osi_additional_string, str, OSI_STRING_LENGTH_MAX);
972 printk(KERN_INFO PREFIX "Added _OSI(%s)\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974
975 return 1;
976}
977
978__setup("acpi_osi=", acpi_osi_setup);
979
980/* enable serialization to combat AE_ALREADY_EXISTS errors */
Len Brown4be44fc2005-08-05 00:44:28 -0400981static int __init acpi_serialize_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
983 printk(KERN_INFO PREFIX "serialize enabled\n");
984
985 acpi_gbl_all_methods_serialized = TRUE;
986
987 return 1;
988}
989
990__setup("acpi_serialize", acpi_serialize_setup);
991
992/*
993 * Wake and Run-Time GPES are expected to be separate.
994 * We disable wake-GPEs at run-time to prevent spurious
995 * interrupts.
996 *
997 * However, if a system exists that shares Wake and
998 * Run-time events on the same GPE this flag is available
999 * to tell Linux to keep the wake-time GPEs enabled at run-time.
1000 */
Len Brown4be44fc2005-08-05 00:44:28 -04001001static int __init acpi_wake_gpes_always_on_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
1003 printk(KERN_INFO PREFIX "wake GPEs not disabled\n");
1004
1005 acpi_gbl_leave_wake_gpes_disabled = FALSE;
1006
1007 return 1;
1008}
1009
1010__setup("acpi_wake_gpes_always_on", acpi_wake_gpes_always_on_setup);
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012/*
Robert Moore73459f72005-06-24 00:00:00 -04001013 * Acquire a spinlock.
1014 *
1015 * handle is a pointer to the spinlock_t.
Robert Moore73459f72005-06-24 00:00:00 -04001016 */
1017
Bob Moore967440e2006-06-23 17:04:00 -04001018acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp)
Robert Moore73459f72005-06-24 00:00:00 -04001019{
Bob Mooreb8e4d892006-01-27 16:43:00 -05001020 acpi_cpu_flags flags;
Bob Moore967440e2006-06-23 17:04:00 -04001021 spin_lock_irqsave(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001022 return flags;
1023}
1024
1025/*
1026 * Release a spinlock. See above.
1027 */
1028
Bob Moore967440e2006-06-23 17:04:00 -04001029void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags)
Robert Moore73459f72005-06-24 00:00:00 -04001030{
Bob Moore967440e2006-06-23 17:04:00 -04001031 spin_unlock_irqrestore(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001032}
1033
Robert Moore73459f72005-06-24 00:00:00 -04001034#ifndef ACPI_USE_LOCAL_CACHE
1035
1036/*******************************************************************************
1037 *
1038 * FUNCTION: acpi_os_create_cache
1039 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001040 * PARAMETERS: name - Ascii name for the cache
1041 * size - Size of each cached object
1042 * depth - Maximum depth of the cache (in objects) <ignored>
1043 * cache - Where the new cache object is returned
Robert Moore73459f72005-06-24 00:00:00 -04001044 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001045 * RETURN: status
Robert Moore73459f72005-06-24 00:00:00 -04001046 *
1047 * DESCRIPTION: Create a cache object
1048 *
1049 ******************************************************************************/
1050
1051acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001052acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache)
Robert Moore73459f72005-06-24 00:00:00 -04001053{
Paul Mundt20c2df82007-07-20 10:11:58 +09001054 *cache = kmem_cache_create(name, size, 0, 0, NULL);
Adrian Bunka6fdbf92006-12-19 12:56:13 -08001055 if (*cache == NULL)
Bob Mooreb229cf92006-04-21 17:15:00 -04001056 return AE_ERROR;
1057 else
1058 return AE_OK;
Robert Moore73459f72005-06-24 00:00:00 -04001059}
1060
1061/*******************************************************************************
1062 *
1063 * FUNCTION: acpi_os_purge_cache
1064 *
1065 * PARAMETERS: Cache - Handle to cache object
1066 *
1067 * RETURN: Status
1068 *
1069 * DESCRIPTION: Free all objects within the requested cache.
1070 *
1071 ******************************************************************************/
1072
Len Brown4be44fc2005-08-05 00:44:28 -04001073acpi_status acpi_os_purge_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001074{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001075 kmem_cache_shrink(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001076 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001077}
1078
1079/*******************************************************************************
1080 *
1081 * FUNCTION: acpi_os_delete_cache
1082 *
1083 * PARAMETERS: Cache - Handle to cache object
1084 *
1085 * RETURN: Status
1086 *
1087 * DESCRIPTION: Free all objects within the requested cache and delete the
1088 * cache object.
1089 *
1090 ******************************************************************************/
1091
Len Brown4be44fc2005-08-05 00:44:28 -04001092acpi_status acpi_os_delete_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001093{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001094 kmem_cache_destroy(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001095 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001096}
1097
1098/*******************************************************************************
1099 *
1100 * FUNCTION: acpi_os_release_object
1101 *
1102 * PARAMETERS: Cache - Handle to cache object
1103 * Object - The object to be released
1104 *
1105 * RETURN: None
1106 *
1107 * DESCRIPTION: Release an object to the specified cache. If cache is full,
1108 * the object is deleted.
1109 *
1110 ******************************************************************************/
1111
Len Brown4be44fc2005-08-05 00:44:28 -04001112acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object)
Robert Moore73459f72005-06-24 00:00:00 -04001113{
Len Brown4be44fc2005-08-05 00:44:28 -04001114 kmem_cache_free(cache, object);
1115 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001116}
1117
Bob Mooreb229cf92006-04-21 17:15:00 -04001118/******************************************************************************
1119 *
1120 * FUNCTION: acpi_os_validate_interface
1121 *
1122 * PARAMETERS: interface - Requested interface to be validated
1123 *
1124 * RETURN: AE_OK if interface is supported, AE_SUPPORT otherwise
1125 *
1126 * DESCRIPTION: Match an interface string to the interfaces supported by the
1127 * host. Strings originate from an AML call to the _OSI method.
1128 *
1129 *****************************************************************************/
1130
1131acpi_status
1132acpi_os_validate_interface (char *interface)
1133{
Len Brownae00d812007-05-29 18:43:33 -04001134 if (!strncmp(osi_additional_string, interface, OSI_STRING_LENGTH_MAX))
1135 return AE_OK;
Len Brownf5076542007-05-30 00:10:38 -04001136 if (!strcmp("Linux", interface)) {
1137 printk(KERN_WARNING PREFIX
1138 "System BIOS is requesting _OSI(Linux)\n");
Len Brownf5076542007-05-30 00:10:38 -04001139 printk(KERN_WARNING PREFIX
1140 "If \"acpi_osi=Linux\" works better,\n"
1141 "Please send dmidecode "
1142 "to linux-acpi@vger.kernel.org\n");
Len Brownf5076542007-05-30 00:10:38 -04001143 if(osi_linux)
1144 return AE_OK;
1145 }
Len Brownae00d812007-05-29 18:43:33 -04001146 return AE_SUPPORT;
Bob Mooreb229cf92006-04-21 17:15:00 -04001147}
1148
Bob Mooreb229cf92006-04-21 17:15:00 -04001149/******************************************************************************
1150 *
1151 * FUNCTION: acpi_os_validate_address
1152 *
1153 * PARAMETERS: space_id - ACPI space ID
1154 * address - Physical address
1155 * length - Address length
1156 *
1157 * RETURN: AE_OK if address/length is valid for the space_id. Otherwise,
1158 * should return AE_AML_ILLEGAL_ADDRESS.
1159 *
1160 * DESCRIPTION: Validate a system address via the host OS. Used to validate
1161 * the addresses accessed by AML operation regions.
1162 *
1163 *****************************************************************************/
1164
1165acpi_status
1166acpi_os_validate_address (
1167 u8 space_id,
1168 acpi_physical_address address,
1169 acpi_size length)
1170{
1171
1172 return AE_OK;
1173}
1174
Len Brownf5076542007-05-30 00:10:38 -04001175#ifdef CONFIG_DMI
Jeff Garzik18552562007-10-03 15:15:40 -04001176static int dmi_osi_linux(const struct dmi_system_id *d)
Len Brownf5076542007-05-30 00:10:38 -04001177{
Len Brown072971d2007-06-09 01:42:00 -04001178 printk(KERN_NOTICE "%s detected: enabling _OSI(Linux)\n", d->ident);
Len Brownf5076542007-05-30 00:10:38 -04001179 enable_osi_linux(1);
1180 return 0;
1181}
Len Brownf5076542007-05-30 00:10:38 -04001182
Len Browndd272b52007-05-30 00:26:11 -04001183static struct dmi_system_id acpi_osl_dmi_table[] __initdata = {
Len Brownf5076542007-05-30 00:10:38 -04001184 /*
1185 * Boxes that need _OSI(Linux)
1186 */
1187 {
1188 .callback = dmi_osi_linux,
1189 .ident = "Intel Napa CRB",
1190 .matches = {
1191 DMI_MATCH(DMI_BOARD_VENDOR, "Intel Corporation"),
1192 DMI_MATCH(DMI_BOARD_NAME, "MPAD-MSAE Customer Reference Boards"),
1193 },
1194 },
Len Brownf5076542007-05-30 00:10:38 -04001195 {}
1196};
1197#endif /* CONFIG_DMI */
Bob Mooreb229cf92006-04-21 17:15:00 -04001198
Robert Moore73459f72005-06-24 00:00:00 -04001199#endif