]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/acpi/osl.c
ACPIPHP: prevent duplicate slot numbers when no _SUN
[mirror_ubuntu-hirsute-kernel.git] / drivers / acpi / osl.c
CommitLineData
1da177e4
LT
1/*
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
28#include <linux/config.h>
29#include <linux/module.h>
30#include <linux/kernel.h>
31#include <linux/slab.h>
32#include <linux/mm.h>
33#include <linux/pci.h>
34#include <linux/smp_lock.h>
35#include <linux/interrupt.h>
36#include <linux/kmod.h>
37#include <linux/delay.h>
38#include <linux/workqueue.h>
39#include <linux/nmi.h>
b8d35192 40#include <linux/kthread.h>
1da177e4
LT
41#include <acpi/acpi.h>
42#include <asm/io.h>
43#include <acpi/acpi_bus.h>
44#include <acpi/processor.h>
45#include <asm/uaccess.h>
46
47#include <linux/efi.h>
48
1da177e4 49#define _COMPONENT ACPI_OS_SERVICES
4be44fcd 50ACPI_MODULE_NAME("osl")
1da177e4 51#define PREFIX "ACPI: "
4be44fcd
LB
52struct acpi_os_dpc {
53 acpi_osd_exec_callback function;
54 void *context;
1da177e4
LT
55};
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];
4be44fcd 69#endif /*ENABLE_DEBUGGER */
1da177e4 70
30e332f3 71int acpi_specific_hotkey_enabled = TRUE;
fb9802fa
LY
72EXPORT_SYMBOL(acpi_specific_hotkey_enabled);
73
1da177e4
LT
74static unsigned int acpi_irq_irq;
75static acpi_osd_handler acpi_irq_handler;
76static void *acpi_irq_context;
77static struct workqueue_struct *kacpid_wq;
78
4be44fcd 79acpi_status acpi_os_initialize(void)
1da177e4
LT
80{
81 return AE_OK;
82}
83
4be44fcd 84acpi_status acpi_os_initialize1(void)
1da177e4
LT
85{
86 /*
87 * Initialize PCI configuration space access, as we'll need to access
88 * it while walking the namespace (bus 0 and root bridges w/ _BBNs).
89 */
1da177e4 90 if (!raw_pci_ops) {
4be44fcd
LB
91 printk(KERN_ERR PREFIX
92 "Access to PCI configuration space unavailable\n");
1da177e4
LT
93 return AE_NULL_ENTRY;
94 }
1da177e4
LT
95 kacpid_wq = create_singlethread_workqueue("kacpid");
96 BUG_ON(!kacpid_wq);
97
98 return AE_OK;
99}
100
4be44fcd 101acpi_status acpi_os_terminate(void)
1da177e4
LT
102{
103 if (acpi_irq_handler) {
104 acpi_os_remove_interrupt_handler(acpi_irq_irq,
105 acpi_irq_handler);
106 }
107
108 destroy_workqueue(kacpid_wq);
109
110 return AE_OK;
111}
112
4be44fcd 113void acpi_os_printf(const char *fmt, ...)
1da177e4
LT
114{
115 va_list args;
116 va_start(args, fmt);
117 acpi_os_vprintf(fmt, args);
118 va_end(args);
119}
4be44fcd 120
1da177e4
LT
121EXPORT_SYMBOL(acpi_os_printf);
122
4be44fcd 123void acpi_os_vprintf(const char *fmt, va_list args)
1da177e4
LT
124{
125 static char buffer[512];
4be44fcd 126
1da177e4
LT
127 vsprintf(buffer, fmt, args);
128
129#ifdef ENABLE_DEBUGGER
130 if (acpi_in_debugger) {
131 kdb_printf("%s", buffer);
132 } else {
133 printk("%s", buffer);
134 }
135#else
136 printk("%s", buffer);
137#endif
138}
139
a6fc6720 140
11e981f1 141extern int acpi_in_resume;
4be44fcd 142void *acpi_os_allocate(acpi_size size)
1da177e4 143{
11e981f1
DSL
144 if (acpi_in_resume)
145 return kmalloc(size, GFP_ATOMIC);
146 else
147 return kmalloc(size, GFP_KERNEL);
1da177e4
LT
148}
149
4be44fcd 150void acpi_os_free(void *ptr)
1da177e4
LT
151{
152 kfree(ptr);
153}
4be44fcd 154
1da177e4
LT
155EXPORT_SYMBOL(acpi_os_free);
156
4be44fcd 157acpi_status acpi_os_get_root_pointer(u32 flags, struct acpi_pointer *addr)
1da177e4
LT
158{
159 if (efi_enabled) {
160 addr->pointer_type = ACPI_PHYSICAL_POINTER;
b2c99e3c
BH
161 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
162 addr->pointer.physical = efi.acpi20;
163 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
164 addr->pointer.physical = efi.acpi;
1da177e4 165 else {
4be44fcd
LB
166 printk(KERN_ERR PREFIX
167 "System description tables not found\n");
1da177e4
LT
168 return AE_NOT_FOUND;
169 }
170 } else {
171 if (ACPI_FAILURE(acpi_find_root_pointer(flags, addr))) {
4be44fcd
LB
172 printk(KERN_ERR PREFIX
173 "System description tables not found\n");
1da177e4
LT
174 return AE_NOT_FOUND;
175 }
176 }
177
178 return AE_OK;
179}
180
181acpi_status
4be44fcd
LB
182acpi_os_map_memory(acpi_physical_address phys, acpi_size size,
183 void __iomem ** virt)
1da177e4 184{
9f4fd61f
BH
185 if (phys > ULONG_MAX) {
186 printk(KERN_ERR PREFIX "Cannot map memory that high\n");
187 return AE_BAD_PARAMETER;
1da177e4 188 }
9f4fd61f
BH
189 /*
190 * ioremap checks to ensure this is in reserved space
191 */
192 *virt = ioremap((unsigned long)phys, size);
1da177e4
LT
193
194 if (!*virt)
195 return AE_NO_MEMORY;
196
197 return AE_OK;
198}
55a82ab3 199EXPORT_SYMBOL_GPL(acpi_os_map_memory);
1da177e4 200
4be44fcd 201void acpi_os_unmap_memory(void __iomem * virt, acpi_size size)
1da177e4
LT
202{
203 iounmap(virt);
204}
55a82ab3 205EXPORT_SYMBOL_GPL(acpi_os_unmap_memory);
1da177e4
LT
206
207#ifdef ACPI_FUTURE_USAGE
208acpi_status
4be44fcd 209acpi_os_get_physical_address(void *virt, acpi_physical_address * phys)
1da177e4 210{
4be44fcd 211 if (!phys || !virt)
1da177e4
LT
212 return AE_BAD_PARAMETER;
213
214 *phys = virt_to_phys(virt);
215
216 return AE_OK;
217}
218#endif
219
220#define ACPI_MAX_OVERRIDE_LEN 100
221
222static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN];
223
224acpi_status
4be44fcd
LB
225acpi_os_predefined_override(const struct acpi_predefined_names *init_val,
226 acpi_string * new_val)
1da177e4
LT
227{
228 if (!init_val || !new_val)
229 return AE_BAD_PARAMETER;
230
231 *new_val = NULL;
4be44fcd 232 if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) {
1da177e4 233 printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n",
4be44fcd 234 acpi_os_name);
1da177e4
LT
235 *new_val = acpi_os_name;
236 }
237
238 return AE_OK;
239}
240
241acpi_status
4be44fcd
LB
242acpi_os_table_override(struct acpi_table_header * existing_table,
243 struct acpi_table_header ** new_table)
1da177e4
LT
244{
245 if (!existing_table || !new_table)
246 return AE_BAD_PARAMETER;
247
248#ifdef CONFIG_ACPI_CUSTOM_DSDT
249 if (strncmp(existing_table->signature, "DSDT", 4) == 0)
4be44fcd 250 *new_table = (struct acpi_table_header *)AmlCode;
1da177e4
LT
251 else
252 *new_table = NULL;
253#else
254 *new_table = NULL;
255#endif
256 return AE_OK;
257}
258
4be44fcd 259static irqreturn_t acpi_irq(int irq, void *dev_id, struct pt_regs *regs)
1da177e4 260{
4be44fcd 261 return (*acpi_irq_handler) (acpi_irq_context) ? IRQ_HANDLED : IRQ_NONE;
1da177e4
LT
262}
263
264acpi_status
4be44fcd
LB
265acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
266 void *context)
1da177e4
LT
267{
268 unsigned int irq;
269
270 /*
271 * Ignore the GSI from the core, and use the value in our copy of the
272 * FADT. It may not be the same if an interrupt source override exists
273 * for the SCI.
274 */
275 gsi = acpi_fadt.sci_int;
276 if (acpi_gsi_to_irq(gsi, &irq) < 0) {
277 printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n",
278 gsi);
279 return AE_OK;
280 }
281
282 acpi_irq_handler = handler;
283 acpi_irq_context = context;
284 if (request_irq(irq, acpi_irq, SA_SHIRQ, "acpi", acpi_irq)) {
285 printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq);
286 return AE_NOT_ACQUIRED;
287 }
288 acpi_irq_irq = irq;
289
290 return AE_OK;
291}
292
4be44fcd 293acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler)
1da177e4
LT
294{
295 if (irq) {
296 free_irq(irq, acpi_irq);
297 acpi_irq_handler = NULL;
298 acpi_irq_irq = 0;
299 }
300
301 return AE_OK;
302}
303
304/*
305 * Running in interpreter thread context, safe to sleep
306 */
307
4be44fcd 308void acpi_os_sleep(acpi_integer ms)
1da177e4 309{
01a527ec 310 schedule_timeout_interruptible(msecs_to_jiffies(ms));
1da177e4 311}
4be44fcd 312
1da177e4
LT
313EXPORT_SYMBOL(acpi_os_sleep);
314
4be44fcd 315void acpi_os_stall(u32 us)
1da177e4
LT
316{
317 while (us) {
318 u32 delay = 1000;
319
320 if (delay > us)
321 delay = us;
322 udelay(delay);
323 touch_nmi_watchdog();
324 us -= delay;
325 }
326}
4be44fcd 327
1da177e4
LT
328EXPORT_SYMBOL(acpi_os_stall);
329
330/*
331 * Support ACPI 3.0 AML Timer operand
332 * Returns 64-bit free-running, monotonically increasing timer
333 * with 100ns granularity
334 */
4be44fcd 335u64 acpi_os_get_timer(void)
1da177e4
LT
336{
337 static u64 t;
338
339#ifdef CONFIG_HPET
340 /* TBD: use HPET if available */
341#endif
342
343#ifdef CONFIG_X86_PM_TIMER
344 /* TBD: default to PM timer if HPET was not available */
345#endif
346 if (!t)
347 printk(KERN_ERR PREFIX "acpi_os_get_timer() TBD\n");
348
349 return ++t;
350}
351
4be44fcd 352acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
1da177e4
LT
353{
354 u32 dummy;
355
356 if (!value)
357 value = &dummy;
358
4be44fcd 359 switch (width) {
1da177e4 360 case 8:
4be44fcd 361 *(u8 *) value = inb(port);
1da177e4
LT
362 break;
363 case 16:
4be44fcd 364 *(u16 *) value = inw(port);
1da177e4
LT
365 break;
366 case 32:
4be44fcd 367 *(u32 *) value = inl(port);
1da177e4
LT
368 break;
369 default:
370 BUG();
371 }
372
373 return AE_OK;
374}
4be44fcd 375
1da177e4
LT
376EXPORT_SYMBOL(acpi_os_read_port);
377
4be44fcd 378acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width)
1da177e4 379{
4be44fcd 380 switch (width) {
1da177e4
LT
381 case 8:
382 outb(value, port);
383 break;
384 case 16:
385 outw(value, port);
386 break;
387 case 32:
388 outl(value, port);
389 break;
390 default:
391 BUG();
392 }
393
394 return AE_OK;
395}
4be44fcd 396
1da177e4
LT
397EXPORT_SYMBOL(acpi_os_write_port);
398
399acpi_status
4be44fcd 400acpi_os_read_memory(acpi_physical_address phys_addr, u32 * value, u32 width)
1da177e4 401{
4be44fcd
LB
402 u32 dummy;
403 void __iomem *virt_addr;
1da177e4 404
9f4fd61f 405 virt_addr = ioremap(phys_addr, width);
1da177e4
LT
406 if (!value)
407 value = &dummy;
408
409 switch (width) {
410 case 8:
4be44fcd 411 *(u8 *) value = readb(virt_addr);
1da177e4
LT
412 break;
413 case 16:
4be44fcd 414 *(u16 *) value = readw(virt_addr);
1da177e4
LT
415 break;
416 case 32:
4be44fcd 417 *(u32 *) value = readl(virt_addr);
1da177e4
LT
418 break;
419 default:
420 BUG();
421 }
422
9f4fd61f 423 iounmap(virt_addr);
1da177e4
LT
424
425 return AE_OK;
426}
427
428acpi_status
4be44fcd 429acpi_os_write_memory(acpi_physical_address phys_addr, u32 value, u32 width)
1da177e4 430{
4be44fcd 431 void __iomem *virt_addr;
1da177e4 432
9f4fd61f 433 virt_addr = ioremap(phys_addr, width);
1da177e4
LT
434
435 switch (width) {
436 case 8:
437 writeb(value, virt_addr);
438 break;
439 case 16:
440 writew(value, virt_addr);
441 break;
442 case 32:
443 writel(value, virt_addr);
444 break;
445 default:
446 BUG();
447 }
448
9f4fd61f 449 iounmap(virt_addr);
1da177e4
LT
450
451 return AE_OK;
452}
453
1da177e4 454acpi_status
4be44fcd
LB
455acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
456 void *value, u32 width)
1da177e4
LT
457{
458 int result, size;
459
460 if (!value)
461 return AE_BAD_PARAMETER;
462
463 switch (width) {
464 case 8:
465 size = 1;
466 break;
467 case 16:
468 size = 2;
469 break;
470 case 32:
471 size = 4;
472 break;
473 default:
474 return AE_ERROR;
475 }
476
477 BUG_ON(!raw_pci_ops);
478
479 result = raw_pci_ops->read(pci_id->segment, pci_id->bus,
4be44fcd
LB
480 PCI_DEVFN(pci_id->device, pci_id->function),
481 reg, size, value);
1da177e4
LT
482
483 return (result ? AE_ERROR : AE_OK);
484}
4be44fcd 485
1da177e4
LT
486EXPORT_SYMBOL(acpi_os_read_pci_configuration);
487
488acpi_status
4be44fcd
LB
489acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
490 acpi_integer value, u32 width)
1da177e4
LT
491{
492 int result, size;
493
494 switch (width) {
495 case 8:
496 size = 1;
497 break;
498 case 16:
499 size = 2;
500 break;
501 case 32:
502 size = 4;
503 break;
504 default:
505 return AE_ERROR;
506 }
507
508 BUG_ON(!raw_pci_ops);
509
510 result = raw_pci_ops->write(pci_id->segment, pci_id->bus,
4be44fcd
LB
511 PCI_DEVFN(pci_id->device, pci_id->function),
512 reg, size, value);
1da177e4
LT
513
514 return (result ? AE_ERROR : AE_OK);
515}
516
517/* TODO: Change code to take advantage of driver model more */
4be44fcd
LB
518static void acpi_os_derive_pci_id_2(acpi_handle rhandle, /* upper bound */
519 acpi_handle chandle, /* current node */
520 struct acpi_pci_id **id,
521 int *is_bridge, u8 * bus_number)
1da177e4 522{
4be44fcd
LB
523 acpi_handle handle;
524 struct acpi_pci_id *pci_id = *id;
525 acpi_status status;
526 unsigned long temp;
527 acpi_object_type type;
528 u8 tu8;
1da177e4
LT
529
530 acpi_get_parent(chandle, &handle);
531 if (handle != rhandle) {
4be44fcd
LB
532 acpi_os_derive_pci_id_2(rhandle, handle, &pci_id, is_bridge,
533 bus_number);
1da177e4
LT
534
535 status = acpi_get_type(handle, &type);
4be44fcd 536 if ((ACPI_FAILURE(status)) || (type != ACPI_TYPE_DEVICE))
1da177e4
LT
537 return;
538
4be44fcd
LB
539 status =
540 acpi_evaluate_integer(handle, METHOD_NAME__ADR, NULL,
541 &temp);
1da177e4 542 if (ACPI_SUCCESS(status)) {
4be44fcd
LB
543 pci_id->device = ACPI_HIWORD(ACPI_LODWORD(temp));
544 pci_id->function = ACPI_LOWORD(ACPI_LODWORD(temp));
1da177e4
LT
545
546 if (*is_bridge)
547 pci_id->bus = *bus_number;
548
549 /* any nicer way to get bus number of bridge ? */
4be44fcd
LB
550 status =
551 acpi_os_read_pci_configuration(pci_id, 0x0e, &tu8,
552 8);
553 if (ACPI_SUCCESS(status)
554 && ((tu8 & 0x7f) == 1 || (tu8 & 0x7f) == 2)) {
555 status =
556 acpi_os_read_pci_configuration(pci_id, 0x18,
557 &tu8, 8);
1da177e4
LT
558 if (!ACPI_SUCCESS(status)) {
559 /* Certainly broken... FIX ME */
560 return;
561 }
562 *is_bridge = 1;
563 pci_id->bus = tu8;
4be44fcd
LB
564 status =
565 acpi_os_read_pci_configuration(pci_id, 0x19,
566 &tu8, 8);
1da177e4
LT
567 if (ACPI_SUCCESS(status)) {
568 *bus_number = tu8;
569 }
570 } else
571 *is_bridge = 0;
572 }
573 }
574}
575
4be44fcd
LB
576void acpi_os_derive_pci_id(acpi_handle rhandle, /* upper bound */
577 acpi_handle chandle, /* current node */
578 struct acpi_pci_id **id)
1da177e4
LT
579{
580 int is_bridge = 1;
581 u8 bus_number = (*id)->bus;
582
583 acpi_os_derive_pci_id_2(rhandle, chandle, id, &is_bridge, &bus_number);
584}
585
4be44fcd 586static void acpi_os_execute_deferred(void *context)
1da177e4 587{
4be44fcd 588 struct acpi_os_dpc *dpc = NULL;
1da177e4 589
1da177e4 590
4be44fcd 591 dpc = (struct acpi_os_dpc *)context;
1da177e4 592 if (!dpc) {
6468463a 593 printk(KERN_ERR PREFIX "Invalid (NULL) context\n");
d550d98d 594 return;
1da177e4
LT
595 }
596
597 dpc->function(dpc->context);
598
599 kfree(dpc);
600
d550d98d 601 return;
1da177e4
LT
602}
603
b8d35192
AS
604static int acpi_os_execute_thread(void *context)
605{
606 struct acpi_os_dpc *dpc = (struct acpi_os_dpc *)context;
607 if (dpc) {
608 dpc->function(dpc->context);
609 kfree(dpc);
610 }
611 do_exit(0);
612}
613
614/*******************************************************************************
615 *
616 * FUNCTION: acpi_os_execute
617 *
618 * PARAMETERS: Type - Type of the callback
619 * Function - Function to be executed
620 * Context - Function parameters
621 *
622 * RETURN: Status
623 *
624 * DESCRIPTION: Depending on type, either queues function for deferred execution or
625 * immediately executes function on a separate thread.
626 *
627 ******************************************************************************/
628
629acpi_status acpi_os_execute(acpi_execute_type type,
4be44fcd 630 acpi_osd_exec_callback function, void *context)
1da177e4 631{
4be44fcd
LB
632 acpi_status status = AE_OK;
633 struct acpi_os_dpc *dpc;
634 struct work_struct *task;
b8d35192 635 struct task_struct *p;
1da177e4
LT
636
637 if (!function)
b8d35192 638 return AE_BAD_PARAMETER;
1da177e4
LT
639 /*
640 * Allocate/initialize DPC structure. Note that this memory will be
641 * freed by the callee. The kernel handles the tq_struct list in a
642 * way that allows us to also free its memory inside the callee.
643 * Because we may want to schedule several tasks with different
644 * parameters we can't use the approach some kernel code uses of
645 * having a static tq_struct.
646 * We can save time and code by allocating the DPC and tq_structs
647 * from the same memory.
648 */
b8d35192
AS
649 if (type == OSL_NOTIFY_HANDLER) {
650 dpc = kmalloc(sizeof(struct acpi_os_dpc), GFP_KERNEL);
651 } else {
652 dpc = kmalloc(sizeof(struct acpi_os_dpc) +
653 sizeof(struct work_struct), GFP_ATOMIC);
654 }
1da177e4 655 if (!dpc)
b8d35192 656 return AE_NO_MEMORY;
1da177e4
LT
657 dpc->function = function;
658 dpc->context = context;
659
b8d35192
AS
660 if (type == OSL_NOTIFY_HANDLER) {
661 p = kthread_create(acpi_os_execute_thread, dpc, "kacpid_notify");
662 if (!IS_ERR(p)) {
663 wake_up_process(p);
664 } else {
665 status = AE_NO_MEMORY;
666 kfree(dpc);
667 }
668 } else {
669 task = (void *)(dpc + 1);
670 INIT_WORK(task, acpi_os_execute_deferred, (void *)dpc);
671 if (!queue_work(kacpid_wq, task)) {
672 status = AE_ERROR;
673 kfree(dpc);
674 }
1da177e4 675 }
b8d35192 676 return status;
1da177e4 677}
4be44fcd 678
b8d35192 679EXPORT_SYMBOL(acpi_os_execute);
1da177e4 680
4be44fcd 681void acpi_os_wait_events_complete(void *context)
1da177e4
LT
682{
683 flush_workqueue(kacpid_wq);
684}
4be44fcd 685
1da177e4
LT
686EXPORT_SYMBOL(acpi_os_wait_events_complete);
687
688/*
689 * Allocate the memory for a spinlock and initialize it.
690 */
4be44fcd 691acpi_status acpi_os_create_lock(acpi_handle * out_handle)
1da177e4
LT
692{
693 spinlock_t *lock_ptr;
694
1da177e4
LT
695
696 lock_ptr = acpi_os_allocate(sizeof(spinlock_t));
697
698 spin_lock_init(lock_ptr);
699
4be44fcd 700 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating spinlock[%p].\n", lock_ptr));
1da177e4
LT
701
702 *out_handle = lock_ptr;
703
d550d98d 704 return AE_OK;
1da177e4
LT
705}
706
1da177e4
LT
707/*
708 * Deallocate the memory for a spinlock.
709 */
4be44fcd 710void acpi_os_delete_lock(acpi_handle handle)
1da177e4 711{
1da177e4 712
4be44fcd 713 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting spinlock[%p].\n", handle));
1da177e4
LT
714
715 acpi_os_free(handle);
716
d550d98d 717 return;
1da177e4
LT
718}
719
1da177e4 720acpi_status
4be44fcd 721acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle)
1da177e4 722{
4be44fcd 723 struct semaphore *sem = NULL;
1da177e4 724
1da177e4
LT
725
726 sem = acpi_os_allocate(sizeof(struct semaphore));
727 if (!sem)
d550d98d 728 return AE_NO_MEMORY;
1da177e4
LT
729 memset(sem, 0, sizeof(struct semaphore));
730
731 sema_init(sem, initial_units);
732
4be44fcd 733 *handle = (acpi_handle *) sem;
1da177e4 734
4be44fcd
LB
735 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n",
736 *handle, initial_units));
1da177e4 737
d550d98d 738 return AE_OK;
1da177e4 739}
1da177e4 740
4be44fcd 741EXPORT_SYMBOL(acpi_os_create_semaphore);
1da177e4
LT
742
743/*
744 * TODO: A better way to delete semaphores? Linux doesn't have a
745 * 'delete_semaphore()' function -- may result in an invalid
746 * pointer dereference for non-synchronized consumers. Should
747 * we at least check for blocked threads and signal/cancel them?
748 */
749
4be44fcd 750acpi_status acpi_os_delete_semaphore(acpi_handle handle)
1da177e4 751{
4be44fcd 752 struct semaphore *sem = (struct semaphore *)handle;
1da177e4 753
1da177e4
LT
754
755 if (!sem)
d550d98d 756 return AE_BAD_PARAMETER;
1da177e4 757
4be44fcd 758 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle));
1da177e4 759
4be44fcd
LB
760 acpi_os_free(sem);
761 sem = NULL;
1da177e4 762
d550d98d 763 return AE_OK;
1da177e4 764}
1da177e4 765
4be44fcd 766EXPORT_SYMBOL(acpi_os_delete_semaphore);
1da177e4
LT
767
768/*
769 * TODO: The kernel doesn't have a 'down_timeout' function -- had to
770 * improvise. The process is to sleep for one scheduler quantum
771 * until the semaphore becomes available. Downside is that this
772 * may result in starvation for timeout-based waits when there's
773 * lots of semaphore activity.
774 *
775 * TODO: Support for units > 1?
776 */
4be44fcd 777acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout)
1da177e4 778{
4be44fcd
LB
779 acpi_status status = AE_OK;
780 struct semaphore *sem = (struct semaphore *)handle;
781 int ret = 0;
1da177e4 782
1da177e4
LT
783
784 if (!sem || (units < 1))
d550d98d 785 return AE_BAD_PARAMETER;
1da177e4
LT
786
787 if (units > 1)
d550d98d 788 return AE_SUPPORT;
1da177e4 789
4be44fcd
LB
790 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n",
791 handle, units, timeout));
1da177e4 792
4be44fcd 793 switch (timeout) {
1da177e4
LT
794 /*
795 * No Wait:
796 * --------
797 * A zero timeout value indicates that we shouldn't wait - just
798 * acquire the semaphore if available otherwise return AE_TIME
799 * (a.k.a. 'would block').
800 */
4be44fcd
LB
801 case 0:
802 if (down_trylock(sem))
1da177e4
LT
803 status = AE_TIME;
804 break;
805
806 /*
807 * Wait Indefinitely:
808 * ------------------
809 */
4be44fcd 810 case ACPI_WAIT_FOREVER:
1da177e4
LT
811 down(sem);
812 break;
813
814 /*
815 * Wait w/ Timeout:
816 * ----------------
817 */
4be44fcd 818 default:
1da177e4
LT
819 // TODO: A better timeout algorithm?
820 {
821 int i = 0;
4be44fcd 822 static const int quantum_ms = 1000 / HZ;
1da177e4
LT
823
824 ret = down_trylock(sem);
dacd9b80 825 for (i = timeout; (i > 0 && ret != 0); i -= quantum_ms) {
01a527ec 826 schedule_timeout_interruptible(1);
1da177e4
LT
827 ret = down_trylock(sem);
828 }
4be44fcd 829
1da177e4
LT
830 if (ret != 0)
831 status = AE_TIME;
832 }
833 break;
834 }
835
836 if (ACPI_FAILURE(status)) {
9e7e2c04 837 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
a6fc6720 838 "Failed to acquire semaphore[%p|%d|%d], %s",
4be44fcd
LB
839 handle, units, timeout,
840 acpi_format_exception(status)));
841 } else {
842 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
a6fc6720 843 "Acquired semaphore[%p|%d|%d]", handle,
4be44fcd 844 units, timeout));
1da177e4
LT
845 }
846
d550d98d 847 return status;
1da177e4 848}
1da177e4 849
4be44fcd 850EXPORT_SYMBOL(acpi_os_wait_semaphore);
1da177e4
LT
851
852/*
853 * TODO: Support for units > 1?
854 */
4be44fcd 855acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units)
1da177e4 856{
4be44fcd 857 struct semaphore *sem = (struct semaphore *)handle;
1da177e4 858
1da177e4
LT
859
860 if (!sem || (units < 1))
d550d98d 861 return AE_BAD_PARAMETER;
1da177e4
LT
862
863 if (units > 1)
d550d98d 864 return AE_SUPPORT;
1da177e4 865
4be44fcd
LB
866 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle,
867 units));
1da177e4
LT
868
869 up(sem);
870
d550d98d 871 return AE_OK;
1da177e4 872}
4be44fcd 873
1da177e4
LT
874EXPORT_SYMBOL(acpi_os_signal_semaphore);
875
876#ifdef ACPI_FUTURE_USAGE
4be44fcd 877u32 acpi_os_get_line(char *buffer)
1da177e4
LT
878{
879
880#ifdef ENABLE_DEBUGGER
881 if (acpi_in_debugger) {
882 u32 chars;
883
884 kdb_read(buffer, sizeof(line_buf));
885
886 /* remove the CR kdb includes */
887 chars = strlen(buffer) - 1;
888 buffer[chars] = '\0';
889 }
890#endif
891
892 return 0;
893}
4be44fcd 894#endif /* ACPI_FUTURE_USAGE */
1da177e4
LT
895
896/* Assumes no unreadable holes inbetween */
4be44fcd 897u8 acpi_os_readable(void *ptr, acpi_size len)
1da177e4 898{
4be44fcd 899#if defined(__i386__) || defined(__x86_64__)
1da177e4 900 char tmp;
4be44fcd
LB
901 return !__get_user(tmp, (char __user *)ptr)
902 && !__get_user(tmp, (char __user *)ptr + len - 1);
1da177e4
LT
903#endif
904 return 1;
905}
906
907#ifdef ACPI_FUTURE_USAGE
4be44fcd 908u8 acpi_os_writable(void *ptr, acpi_size len)
1da177e4
LT
909{
910 /* could do dummy write (racy) or a kernel page table lookup.
911 The later may be difficult at early boot when kmap doesn't work yet. */
912 return 1;
913}
914#endif
915
4be44fcd 916acpi_status acpi_os_signal(u32 function, void *info)
1da177e4 917{
4be44fcd 918 switch (function) {
1da177e4
LT
919 case ACPI_SIGNAL_FATAL:
920 printk(KERN_ERR PREFIX "Fatal opcode executed\n");
921 break;
922 case ACPI_SIGNAL_BREAKPOINT:
923 /*
924 * AML Breakpoint
925 * ACPI spec. says to treat it as a NOP unless
926 * you are debugging. So if/when we integrate
927 * AML debugger into the kernel debugger its
928 * hook will go here. But until then it is
929 * not useful to print anything on breakpoints.
930 */
931 break;
932 default:
933 break;
934 }
935
936 return AE_OK;
937}
4be44fcd 938
1da177e4
LT
939EXPORT_SYMBOL(acpi_os_signal);
940
4be44fcd 941static int __init acpi_os_name_setup(char *str)
1da177e4
LT
942{
943 char *p = acpi_os_name;
4be44fcd 944 int count = ACPI_MAX_OVERRIDE_LEN - 1;
1da177e4
LT
945
946 if (!str || !*str)
947 return 0;
948
949 for (; count-- && str && *str; str++) {
950 if (isalnum(*str) || *str == ' ' || *str == ':')
951 *p++ = *str;
952 else if (*str == '\'' || *str == '"')
953 continue;
954 else
955 break;
956 }
957 *p = 0;
958
959 return 1;
4be44fcd 960
1da177e4
LT
961}
962
963__setup("acpi_os_name=", acpi_os_name_setup);
964
965/*
966 * _OSI control
967 * empty string disables _OSI
968 * TBD additional string adds to _OSI
969 */
4be44fcd 970static int __init acpi_osi_setup(char *str)
1da177e4
LT
971{
972 if (str == NULL || *str == '\0') {
973 printk(KERN_INFO PREFIX "_OSI method disabled\n");
974 acpi_gbl_create_osi_method = FALSE;
4be44fcd 975 } else {
1da177e4 976 /* TBD */
4be44fcd
LB
977 printk(KERN_ERR PREFIX "_OSI additional string ignored -- %s\n",
978 str);
1da177e4
LT
979 }
980
981 return 1;
982}
983
984__setup("acpi_osi=", acpi_osi_setup);
985
986/* enable serialization to combat AE_ALREADY_EXISTS errors */
4be44fcd 987static int __init acpi_serialize_setup(char *str)
1da177e4
LT
988{
989 printk(KERN_INFO PREFIX "serialize enabled\n");
990
991 acpi_gbl_all_methods_serialized = TRUE;
992
993 return 1;
994}
995
996__setup("acpi_serialize", acpi_serialize_setup);
997
998/*
999 * Wake and Run-Time GPES are expected to be separate.
1000 * We disable wake-GPEs at run-time to prevent spurious
1001 * interrupts.
1002 *
1003 * However, if a system exists that shares Wake and
1004 * Run-time events on the same GPE this flag is available
1005 * to tell Linux to keep the wake-time GPEs enabled at run-time.
1006 */
4be44fcd 1007static int __init acpi_wake_gpes_always_on_setup(char *str)
1da177e4
LT
1008{
1009 printk(KERN_INFO PREFIX "wake GPEs not disabled\n");
1010
1011 acpi_gbl_leave_wake_gpes_disabled = FALSE;
1012
1013 return 1;
1014}
1015
1016__setup("acpi_wake_gpes_always_on", acpi_wake_gpes_always_on_setup);
1017
8713cbef 1018static int __init acpi_hotkey_setup(char *str)
fb9802fa 1019{
30e332f3 1020 acpi_specific_hotkey_enabled = FALSE;
fb9802fa
LY
1021 return 1;
1022}
1023
30e332f3 1024__setup("acpi_generic_hotkey", acpi_hotkey_setup);
fb9802fa 1025
1da177e4
LT
1026/*
1027 * max_cstate is defined in the base kernel so modules can
1028 * change it w/o depending on the state of the processor module.
1029 */
1030unsigned int max_cstate = ACPI_PROCESSOR_MAX_POWER;
1031
1da177e4 1032EXPORT_SYMBOL(max_cstate);
73459f73
RM
1033
1034/*
1035 * Acquire a spinlock.
1036 *
1037 * handle is a pointer to the spinlock_t.
73459f73
RM
1038 */
1039
b8e4d893 1040acpi_cpu_flags acpi_os_acquire_lock(acpi_handle handle)
73459f73 1041{
b8e4d893 1042 acpi_cpu_flags flags;
4be44fcd 1043 spin_lock_irqsave((spinlock_t *) handle, flags);
73459f73
RM
1044 return flags;
1045}
1046
1047/*
1048 * Release a spinlock. See above.
1049 */
1050
b8e4d893 1051void acpi_os_release_lock(acpi_handle handle, acpi_cpu_flags flags)
73459f73 1052{
b8e4d893 1053 spin_unlock_irqrestore((spinlock_t *) handle, flags);
73459f73
RM
1054}
1055
73459f73
RM
1056#ifndef ACPI_USE_LOCAL_CACHE
1057
1058/*******************************************************************************
1059 *
1060 * FUNCTION: acpi_os_create_cache
1061 *
b229cf92
BM
1062 * PARAMETERS: name - Ascii name for the cache
1063 * size - Size of each cached object
1064 * depth - Maximum depth of the cache (in objects) <ignored>
1065 * cache - Where the new cache object is returned
73459f73 1066 *
b229cf92 1067 * RETURN: status
73459f73
RM
1068 *
1069 * DESCRIPTION: Create a cache object
1070 *
1071 ******************************************************************************/
1072
1073acpi_status
4be44fcd 1074acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache)
73459f73 1075{
4be44fcd 1076 *cache = kmem_cache_create(name, size, 0, 0, NULL, NULL);
b229cf92
BM
1077 if (cache == NULL)
1078 return AE_ERROR;
1079 else
1080 return AE_OK;
73459f73
RM
1081}
1082
1083/*******************************************************************************
1084 *
1085 * FUNCTION: acpi_os_purge_cache
1086 *
1087 * PARAMETERS: Cache - Handle to cache object
1088 *
1089 * RETURN: Status
1090 *
1091 * DESCRIPTION: Free all objects within the requested cache.
1092 *
1093 ******************************************************************************/
1094
4be44fcd 1095acpi_status acpi_os_purge_cache(acpi_cache_t * cache)
73459f73 1096{
4be44fcd
LB
1097 (void)kmem_cache_shrink(cache);
1098 return (AE_OK);
73459f73
RM
1099}
1100
1101/*******************************************************************************
1102 *
1103 * FUNCTION: acpi_os_delete_cache
1104 *
1105 * PARAMETERS: Cache - Handle to cache object
1106 *
1107 * RETURN: Status
1108 *
1109 * DESCRIPTION: Free all objects within the requested cache and delete the
1110 * cache object.
1111 *
1112 ******************************************************************************/
1113
4be44fcd 1114acpi_status acpi_os_delete_cache(acpi_cache_t * cache)
73459f73 1115{
4be44fcd
LB
1116 (void)kmem_cache_destroy(cache);
1117 return (AE_OK);
73459f73
RM
1118}
1119
1120/*******************************************************************************
1121 *
1122 * FUNCTION: acpi_os_release_object
1123 *
1124 * PARAMETERS: Cache - Handle to cache object
1125 * Object - The object to be released
1126 *
1127 * RETURN: None
1128 *
1129 * DESCRIPTION: Release an object to the specified cache. If cache is full,
1130 * the object is deleted.
1131 *
1132 ******************************************************************************/
1133
4be44fcd 1134acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object)
73459f73 1135{
4be44fcd
LB
1136 kmem_cache_free(cache, object);
1137 return (AE_OK);
73459f73
RM
1138}
1139
1140/*******************************************************************************
1141 *
1142 * FUNCTION: acpi_os_acquire_object
1143 *
1144 * PARAMETERS: Cache - Handle to cache object
1145 * ReturnObject - Where the object is returned
1146 *
1147 * RETURN: Status
1148 *
61686124 1149 * DESCRIPTION: Return a zero-filled object.
73459f73
RM
1150 *
1151 ******************************************************************************/
1152
4be44fcd 1153void *acpi_os_acquire_object(acpi_cache_t * cache)
73459f73 1154{
61686124 1155 void *object = kmem_cache_zalloc(cache, GFP_KERNEL);
4be44fcd
LB
1156 WARN_ON(!object);
1157 return object;
73459f73
RM
1158}
1159
b229cf92
BM
1160/******************************************************************************
1161 *
1162 * FUNCTION: acpi_os_validate_interface
1163 *
1164 * PARAMETERS: interface - Requested interface to be validated
1165 *
1166 * RETURN: AE_OK if interface is supported, AE_SUPPORT otherwise
1167 *
1168 * DESCRIPTION: Match an interface string to the interfaces supported by the
1169 * host. Strings originate from an AML call to the _OSI method.
1170 *
1171 *****************************************************************************/
1172
1173acpi_status
1174acpi_os_validate_interface (char *interface)
1175{
1176
1177 return AE_SUPPORT;
1178}
1179
1180
1181/******************************************************************************
1182 *
1183 * FUNCTION: acpi_os_validate_address
1184 *
1185 * PARAMETERS: space_id - ACPI space ID
1186 * address - Physical address
1187 * length - Address length
1188 *
1189 * RETURN: AE_OK if address/length is valid for the space_id. Otherwise,
1190 * should return AE_AML_ILLEGAL_ADDRESS.
1191 *
1192 * DESCRIPTION: Validate a system address via the host OS. Used to validate
1193 * the addresses accessed by AML operation regions.
1194 *
1195 *****************************************************************************/
1196
1197acpi_status
1198acpi_os_validate_address (
1199 u8 space_id,
1200 acpi_physical_address address,
1201 acpi_size length)
1202{
1203
1204 return AE_OK;
1205}
1206
1207
73459f73 1208#endif