2 * acpi_osl.c - OS-dependent functions ($Revision: 83 $)
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>
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
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
24 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
28 #include <linux/config.h>
29 #include <linux/module.h>
30 #include <linux/kernel.h>
31 #include <linux/slab.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>
40 #include <linux/kthread.h>
41 #include <acpi/acpi.h>
43 #include <acpi/acpi_bus.h>
44 #include <acpi/processor.h>
45 #include <asm/uaccess.h>
47 #include <linux/efi.h>
49 #define _COMPONENT ACPI_OS_SERVICES
50 ACPI_MODULE_NAME("osl")
51 #define PREFIX "ACPI: "
53 acpi_osd_exec_callback function
;
57 #ifdef CONFIG_ACPI_CUSTOM_DSDT
58 #include CONFIG_ACPI_CUSTOM_DSDT_FILE
61 #ifdef ENABLE_DEBUGGER
62 #include <linux/kdb.h>
64 /* stuff for debugger support */
66 EXPORT_SYMBOL(acpi_in_debugger
);
68 extern char line_buf
[80];
69 #endif /*ENABLE_DEBUGGER */
71 int acpi_specific_hotkey_enabled
= TRUE
;
72 EXPORT_SYMBOL(acpi_specific_hotkey_enabled
);
74 static unsigned int acpi_irq_irq
;
75 static acpi_osd_handler acpi_irq_handler
;
76 static void *acpi_irq_context
;
77 static struct workqueue_struct
*kacpid_wq
;
79 acpi_status
acpi_os_initialize(void)
84 acpi_status
acpi_os_initialize1(void)
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).
91 printk(KERN_ERR PREFIX
92 "Access to PCI configuration space unavailable\n");
95 kacpid_wq
= create_singlethread_workqueue("kacpid");
101 acpi_status
acpi_os_terminate(void)
103 if (acpi_irq_handler
) {
104 acpi_os_remove_interrupt_handler(acpi_irq_irq
,
108 destroy_workqueue(kacpid_wq
);
113 void acpi_os_printf(const char *fmt
, ...)
117 acpi_os_vprintf(fmt
, args
);
121 EXPORT_SYMBOL(acpi_os_printf
);
123 void acpi_os_vprintf(const char *fmt
, va_list args
)
125 static char buffer
[512];
127 vsprintf(buffer
, fmt
, args
);
129 #ifdef ENABLE_DEBUGGER
130 if (acpi_in_debugger
) {
131 kdb_printf("%s", buffer
);
133 printk("%s", buffer
);
136 printk("%s", buffer
);
140 extern int acpi_in_resume
;
141 void *acpi_os_allocate(acpi_size size
)
144 return kmalloc(size
, GFP_ATOMIC
);
146 return kmalloc(size
, GFP_KERNEL
);
149 void acpi_os_free(void *ptr
)
154 EXPORT_SYMBOL(acpi_os_free
);
156 acpi_status
acpi_os_get_root_pointer(u32 flags
, struct acpi_pointer
*addr
)
159 addr
->pointer_type
= ACPI_PHYSICAL_POINTER
;
160 if (efi
.acpi20
!= EFI_INVALID_TABLE_ADDR
)
161 addr
->pointer
.physical
= efi
.acpi20
;
162 else if (efi
.acpi
!= EFI_INVALID_TABLE_ADDR
)
163 addr
->pointer
.physical
= efi
.acpi
;
165 printk(KERN_ERR PREFIX
166 "System description tables not found\n");
170 if (ACPI_FAILURE(acpi_find_root_pointer(flags
, addr
))) {
171 printk(KERN_ERR PREFIX
172 "System description tables not found\n");
181 acpi_os_map_memory(acpi_physical_address phys
, acpi_size size
,
182 void __iomem
** virt
)
184 if (phys
> ULONG_MAX
) {
185 printk(KERN_ERR PREFIX
"Cannot map memory that high\n");
186 return AE_BAD_PARAMETER
;
189 * ioremap checks to ensure this is in reserved space
191 *virt
= ioremap((unsigned long)phys
, size
);
198 EXPORT_SYMBOL_GPL(acpi_os_map_memory
);
200 void acpi_os_unmap_memory(void __iomem
* virt
, acpi_size size
)
204 EXPORT_SYMBOL_GPL(acpi_os_unmap_memory
);
206 #ifdef ACPI_FUTURE_USAGE
208 acpi_os_get_physical_address(void *virt
, acpi_physical_address
* phys
)
211 return AE_BAD_PARAMETER
;
213 *phys
= virt_to_phys(virt
);
219 #define ACPI_MAX_OVERRIDE_LEN 100
221 static char acpi_os_name
[ACPI_MAX_OVERRIDE_LEN
];
224 acpi_os_predefined_override(const struct acpi_predefined_names
*init_val
,
225 acpi_string
* new_val
)
227 if (!init_val
|| !new_val
)
228 return AE_BAD_PARAMETER
;
231 if (!memcmp(init_val
->name
, "_OS_", 4) && strlen(acpi_os_name
)) {
232 printk(KERN_INFO PREFIX
"Overriding _OS definition to '%s'\n",
234 *new_val
= acpi_os_name
;
241 acpi_os_table_override(struct acpi_table_header
* existing_table
,
242 struct acpi_table_header
** new_table
)
244 if (!existing_table
|| !new_table
)
245 return AE_BAD_PARAMETER
;
247 #ifdef CONFIG_ACPI_CUSTOM_DSDT
248 if (strncmp(existing_table
->signature
, "DSDT", 4) == 0)
249 *new_table
= (struct acpi_table_header
*)AmlCode
;
258 static irqreturn_t
acpi_irq(int irq
, void *dev_id
, struct pt_regs
*regs
)
260 return (*acpi_irq_handler
) (acpi_irq_context
) ? IRQ_HANDLED
: IRQ_NONE
;
264 acpi_os_install_interrupt_handler(u32 gsi
, acpi_osd_handler handler
,
270 * Ignore the GSI from the core, and use the value in our copy of the
271 * FADT. It may not be the same if an interrupt source override exists
274 gsi
= acpi_fadt
.sci_int
;
275 if (acpi_gsi_to_irq(gsi
, &irq
) < 0) {
276 printk(KERN_ERR PREFIX
"SCI (ACPI GSI %d) not registered\n",
281 acpi_irq_handler
= handler
;
282 acpi_irq_context
= context
;
283 if (request_irq(irq
, acpi_irq
, SA_SHIRQ
, "acpi", acpi_irq
)) {
284 printk(KERN_ERR PREFIX
"SCI (IRQ%d) allocation failed\n", irq
);
285 return AE_NOT_ACQUIRED
;
292 acpi_status
acpi_os_remove_interrupt_handler(u32 irq
, acpi_osd_handler handler
)
295 free_irq(irq
, acpi_irq
);
296 acpi_irq_handler
= NULL
;
304 * Running in interpreter thread context, safe to sleep
307 void acpi_os_sleep(acpi_integer ms
)
309 schedule_timeout_interruptible(msecs_to_jiffies(ms
));
312 EXPORT_SYMBOL(acpi_os_sleep
);
314 void acpi_os_stall(u32 us
)
322 touch_nmi_watchdog();
327 EXPORT_SYMBOL(acpi_os_stall
);
330 * Support ACPI 3.0 AML Timer operand
331 * Returns 64-bit free-running, monotonically increasing timer
332 * with 100ns granularity
334 u64
acpi_os_get_timer(void)
339 /* TBD: use HPET if available */
342 #ifdef CONFIG_X86_PM_TIMER
343 /* TBD: default to PM timer if HPET was not available */
346 printk(KERN_ERR PREFIX
"acpi_os_get_timer() TBD\n");
351 acpi_status
acpi_os_read_port(acpi_io_address port
, u32
* value
, u32 width
)
360 *(u8
*) value
= inb(port
);
363 *(u16
*) value
= inw(port
);
366 *(u32
*) value
= inl(port
);
375 EXPORT_SYMBOL(acpi_os_read_port
);
377 acpi_status
acpi_os_write_port(acpi_io_address port
, u32 value
, u32 width
)
396 EXPORT_SYMBOL(acpi_os_write_port
);
399 acpi_os_read_memory(acpi_physical_address phys_addr
, u32
* value
, u32 width
)
402 void __iomem
*virt_addr
;
404 virt_addr
= ioremap(phys_addr
, width
);
410 *(u8
*) value
= readb(virt_addr
);
413 *(u16
*) value
= readw(virt_addr
);
416 *(u32
*) value
= readl(virt_addr
);
428 acpi_os_write_memory(acpi_physical_address phys_addr
, u32 value
, u32 width
)
430 void __iomem
*virt_addr
;
432 virt_addr
= ioremap(phys_addr
, width
);
436 writeb(value
, virt_addr
);
439 writew(value
, virt_addr
);
442 writel(value
, virt_addr
);
454 acpi_os_read_pci_configuration(struct acpi_pci_id
* pci_id
, u32 reg
,
455 void *value
, u32 width
)
460 return AE_BAD_PARAMETER
;
476 BUG_ON(!raw_pci_ops
);
478 result
= raw_pci_ops
->read(pci_id
->segment
, pci_id
->bus
,
479 PCI_DEVFN(pci_id
->device
, pci_id
->function
),
482 return (result
? AE_ERROR
: AE_OK
);
485 EXPORT_SYMBOL(acpi_os_read_pci_configuration
);
488 acpi_os_write_pci_configuration(struct acpi_pci_id
* pci_id
, u32 reg
,
489 acpi_integer value
, u32 width
)
507 BUG_ON(!raw_pci_ops
);
509 result
= raw_pci_ops
->write(pci_id
->segment
, pci_id
->bus
,
510 PCI_DEVFN(pci_id
->device
, pci_id
->function
),
513 return (result
? AE_ERROR
: AE_OK
);
516 /* TODO: Change code to take advantage of driver model more */
517 static void acpi_os_derive_pci_id_2(acpi_handle rhandle
, /* upper bound */
518 acpi_handle chandle
, /* current node */
519 struct acpi_pci_id
**id
,
520 int *is_bridge
, u8
* bus_number
)
523 struct acpi_pci_id
*pci_id
= *id
;
526 acpi_object_type type
;
529 acpi_get_parent(chandle
, &handle
);
530 if (handle
!= rhandle
) {
531 acpi_os_derive_pci_id_2(rhandle
, handle
, &pci_id
, is_bridge
,
534 status
= acpi_get_type(handle
, &type
);
535 if ((ACPI_FAILURE(status
)) || (type
!= ACPI_TYPE_DEVICE
))
539 acpi_evaluate_integer(handle
, METHOD_NAME__ADR
, NULL
,
541 if (ACPI_SUCCESS(status
)) {
542 pci_id
->device
= ACPI_HIWORD(ACPI_LODWORD(temp
));
543 pci_id
->function
= ACPI_LOWORD(ACPI_LODWORD(temp
));
546 pci_id
->bus
= *bus_number
;
548 /* any nicer way to get bus number of bridge ? */
550 acpi_os_read_pci_configuration(pci_id
, 0x0e, &tu8
,
552 if (ACPI_SUCCESS(status
)
553 && ((tu8
& 0x7f) == 1 || (tu8
& 0x7f) == 2)) {
555 acpi_os_read_pci_configuration(pci_id
, 0x18,
557 if (!ACPI_SUCCESS(status
)) {
558 /* Certainly broken... FIX ME */
564 acpi_os_read_pci_configuration(pci_id
, 0x19,
566 if (ACPI_SUCCESS(status
)) {
575 void acpi_os_derive_pci_id(acpi_handle rhandle
, /* upper bound */
576 acpi_handle chandle
, /* current node */
577 struct acpi_pci_id
**id
)
580 u8 bus_number
= (*id
)->bus
;
582 acpi_os_derive_pci_id_2(rhandle
, chandle
, id
, &is_bridge
, &bus_number
);
585 static void acpi_os_execute_deferred(void *context
)
587 struct acpi_os_dpc
*dpc
= NULL
;
589 ACPI_FUNCTION_TRACE("os_execute_deferred");
591 dpc
= (struct acpi_os_dpc
*)context
;
593 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Invalid (NULL) context.\n"));
597 dpc
->function(dpc
->context
);
604 static int acpi_os_execute_thread(void *context
)
606 struct acpi_os_dpc
*dpc
= (struct acpi_os_dpc
*)context
;
608 dpc
->function(dpc
->context
);
614 /*******************************************************************************
616 * FUNCTION: acpi_os_execute
618 * PARAMETERS: Type - Type of the callback
619 * Function - Function to be executed
620 * Context - Function parameters
624 * DESCRIPTION: Depending on type, either queues function for deferred execution or
625 * immediately executes function on a separate thread.
627 ******************************************************************************/
629 acpi_status
acpi_os_execute(acpi_execute_type type
,
630 acpi_osd_exec_callback function
, void *context
)
632 acpi_status status
= AE_OK
;
633 struct acpi_os_dpc
*dpc
;
634 struct work_struct
*task
;
635 struct task_struct
*p
;
638 return AE_BAD_PARAMETER
;
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.
649 if (type
== OSL_NOTIFY_HANDLER
) {
650 dpc
= kmalloc(sizeof(struct acpi_os_dpc
), GFP_KERNEL
);
652 dpc
= kmalloc(sizeof(struct acpi_os_dpc
) +
653 sizeof(struct work_struct
), GFP_ATOMIC
);
657 dpc
->function
= function
;
658 dpc
->context
= context
;
660 if (type
== OSL_NOTIFY_HANDLER
) {
661 p
= kthread_create(acpi_os_execute_thread
, dpc
, "kacpid_notify");
665 status
= AE_NO_MEMORY
;
669 task
= (void *)(dpc
+ 1);
670 INIT_WORK(task
, acpi_os_execute_deferred
, (void *)dpc
);
671 if (!queue_work(kacpid_wq
, task
)) {
679 EXPORT_SYMBOL(acpi_os_execute
);
681 void acpi_os_wait_events_complete(void *context
)
683 flush_workqueue(kacpid_wq
);
686 EXPORT_SYMBOL(acpi_os_wait_events_complete
);
689 * Allocate the memory for a spinlock and initialize it.
691 acpi_status
acpi_os_create_lock(acpi_handle
* out_handle
)
693 spinlock_t
*lock_ptr
;
695 ACPI_FUNCTION_TRACE("os_create_lock");
697 lock_ptr
= acpi_os_allocate(sizeof(spinlock_t
));
699 spin_lock_init(lock_ptr
);
701 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
, "Creating spinlock[%p].\n", lock_ptr
));
703 *out_handle
= lock_ptr
;
705 return_ACPI_STATUS(AE_OK
);
709 * Deallocate the memory for a spinlock.
711 void acpi_os_delete_lock(acpi_handle handle
)
713 ACPI_FUNCTION_TRACE("os_create_lock");
715 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
, "Deleting spinlock[%p].\n", handle
));
717 acpi_os_free(handle
);
723 acpi_os_create_semaphore(u32 max_units
, u32 initial_units
, acpi_handle
* handle
)
725 struct semaphore
*sem
= NULL
;
727 ACPI_FUNCTION_TRACE("os_create_semaphore");
729 sem
= acpi_os_allocate(sizeof(struct semaphore
));
731 return_ACPI_STATUS(AE_NO_MEMORY
);
732 memset(sem
, 0, sizeof(struct semaphore
));
734 sema_init(sem
, initial_units
);
736 *handle
= (acpi_handle
*) sem
;
738 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
, "Creating semaphore[%p|%d].\n",
739 *handle
, initial_units
));
741 return_ACPI_STATUS(AE_OK
);
744 EXPORT_SYMBOL(acpi_os_create_semaphore
);
747 * TODO: A better way to delete semaphores? Linux doesn't have a
748 * 'delete_semaphore()' function -- may result in an invalid
749 * pointer dereference for non-synchronized consumers. Should
750 * we at least check for blocked threads and signal/cancel them?
753 acpi_status
acpi_os_delete_semaphore(acpi_handle handle
)
755 struct semaphore
*sem
= (struct semaphore
*)handle
;
757 ACPI_FUNCTION_TRACE("os_delete_semaphore");
760 return_ACPI_STATUS(AE_BAD_PARAMETER
);
762 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
, "Deleting semaphore[%p].\n", handle
));
767 return_ACPI_STATUS(AE_OK
);
770 EXPORT_SYMBOL(acpi_os_delete_semaphore
);
773 * TODO: The kernel doesn't have a 'down_timeout' function -- had to
774 * improvise. The process is to sleep for one scheduler quantum
775 * until the semaphore becomes available. Downside is that this
776 * may result in starvation for timeout-based waits when there's
777 * lots of semaphore activity.
779 * TODO: Support for units > 1?
781 acpi_status
acpi_os_wait_semaphore(acpi_handle handle
, u32 units
, u16 timeout
)
783 acpi_status status
= AE_OK
;
784 struct semaphore
*sem
= (struct semaphore
*)handle
;
787 ACPI_FUNCTION_TRACE("os_wait_semaphore");
789 if (!sem
|| (units
< 1))
790 return_ACPI_STATUS(AE_BAD_PARAMETER
);
793 return_ACPI_STATUS(AE_SUPPORT
);
795 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
, "Waiting for semaphore[%p|%d|%d]\n",
796 handle
, units
, timeout
));
802 * A zero timeout value indicates that we shouldn't wait - just
803 * acquire the semaphore if available otherwise return AE_TIME
804 * (a.k.a. 'would block').
807 if (down_trylock(sem
))
815 case ACPI_WAIT_FOREVER
:
824 // TODO: A better timeout algorithm?
827 static const int quantum_ms
= 1000 / HZ
;
829 ret
= down_trylock(sem
);
830 for (i
= timeout
; (i
> 0 && ret
!= 0); i
-= quantum_ms
) {
831 schedule_timeout_interruptible(1);
832 ret
= down_trylock(sem
);
841 if (ACPI_FAILURE(status
)) {
842 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
843 "Failed to acquire semaphore[%p|%d|%d], %s\n",
844 handle
, units
, timeout
,
845 acpi_format_exception(status
)));
847 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
,
848 "Acquired semaphore[%p|%d|%d]\n", handle
,
852 return_ACPI_STATUS(status
);
855 EXPORT_SYMBOL(acpi_os_wait_semaphore
);
858 * TODO: Support for units > 1?
860 acpi_status
acpi_os_signal_semaphore(acpi_handle handle
, u32 units
)
862 struct semaphore
*sem
= (struct semaphore
*)handle
;
864 ACPI_FUNCTION_TRACE("os_signal_semaphore");
866 if (!sem
|| (units
< 1))
867 return_ACPI_STATUS(AE_BAD_PARAMETER
);
870 return_ACPI_STATUS(AE_SUPPORT
);
872 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
, "Signaling semaphore[%p|%d]\n", handle
,
877 return_ACPI_STATUS(AE_OK
);
880 EXPORT_SYMBOL(acpi_os_signal_semaphore
);
882 #ifdef ACPI_FUTURE_USAGE
883 u32
acpi_os_get_line(char *buffer
)
886 #ifdef ENABLE_DEBUGGER
887 if (acpi_in_debugger
) {
890 kdb_read(buffer
, sizeof(line_buf
));
892 /* remove the CR kdb includes */
893 chars
= strlen(buffer
) - 1;
894 buffer
[chars
] = '\0';
900 #endif /* ACPI_FUTURE_USAGE */
902 /* Assumes no unreadable holes inbetween */
903 u8
acpi_os_readable(void *ptr
, acpi_size len
)
905 #if defined(__i386__) || defined(__x86_64__)
907 return !__get_user(tmp
, (char __user
*)ptr
)
908 && !__get_user(tmp
, (char __user
*)ptr
+ len
- 1);
913 #ifdef ACPI_FUTURE_USAGE
914 u8
acpi_os_writable(void *ptr
, acpi_size len
)
916 /* could do dummy write (racy) or a kernel page table lookup.
917 The later may be difficult at early boot when kmap doesn't work yet. */
922 acpi_status
acpi_os_signal(u32 function
, void *info
)
925 case ACPI_SIGNAL_FATAL
:
926 printk(KERN_ERR PREFIX
"Fatal opcode executed\n");
928 case ACPI_SIGNAL_BREAKPOINT
:
931 * ACPI spec. says to treat it as a NOP unless
932 * you are debugging. So if/when we integrate
933 * AML debugger into the kernel debugger its
934 * hook will go here. But until then it is
935 * not useful to print anything on breakpoints.
945 EXPORT_SYMBOL(acpi_os_signal
);
947 static int __init
acpi_os_name_setup(char *str
)
949 char *p
= acpi_os_name
;
950 int count
= ACPI_MAX_OVERRIDE_LEN
- 1;
955 for (; count
-- && str
&& *str
; str
++) {
956 if (isalnum(*str
) || *str
== ' ' || *str
== ':')
958 else if (*str
== '\'' || *str
== '"')
969 __setup("acpi_os_name=", acpi_os_name_setup
);
973 * empty string disables _OSI
974 * TBD additional string adds to _OSI
976 static int __init
acpi_osi_setup(char *str
)
978 if (str
== NULL
|| *str
== '\0') {
979 printk(KERN_INFO PREFIX
"_OSI method disabled\n");
980 acpi_gbl_create_osi_method
= FALSE
;
983 printk(KERN_ERR PREFIX
"_OSI additional string ignored -- %s\n",
990 __setup("acpi_osi=", acpi_osi_setup
);
992 /* enable serialization to combat AE_ALREADY_EXISTS errors */
993 static int __init
acpi_serialize_setup(char *str
)
995 printk(KERN_INFO PREFIX
"serialize enabled\n");
997 acpi_gbl_all_methods_serialized
= TRUE
;
1002 __setup("acpi_serialize", acpi_serialize_setup
);
1005 * Wake and Run-Time GPES are expected to be separate.
1006 * We disable wake-GPEs at run-time to prevent spurious
1009 * However, if a system exists that shares Wake and
1010 * Run-time events on the same GPE this flag is available
1011 * to tell Linux to keep the wake-time GPEs enabled at run-time.
1013 static int __init
acpi_wake_gpes_always_on_setup(char *str
)
1015 printk(KERN_INFO PREFIX
"wake GPEs not disabled\n");
1017 acpi_gbl_leave_wake_gpes_disabled
= FALSE
;
1022 __setup("acpi_wake_gpes_always_on", acpi_wake_gpes_always_on_setup
);
1024 static int __init
acpi_hotkey_setup(char *str
)
1026 acpi_specific_hotkey_enabled
= FALSE
;
1030 __setup("acpi_generic_hotkey", acpi_hotkey_setup
);
1033 * max_cstate is defined in the base kernel so modules can
1034 * change it w/o depending on the state of the processor module.
1036 unsigned int max_cstate
= ACPI_PROCESSOR_MAX_POWER
;
1038 EXPORT_SYMBOL(max_cstate
);
1041 * Acquire a spinlock.
1043 * handle is a pointer to the spinlock_t.
1046 acpi_cpu_flags
acpi_os_acquire_lock(acpi_handle handle
)
1048 acpi_cpu_flags flags
;
1049 spin_lock_irqsave((spinlock_t
*) handle
, flags
);
1054 * Release a spinlock. See above.
1057 void acpi_os_release_lock(acpi_handle handle
, acpi_cpu_flags flags
)
1059 spin_unlock_irqrestore((spinlock_t
*) handle
, flags
);
1062 #ifndef ACPI_USE_LOCAL_CACHE
1064 /*******************************************************************************
1066 * FUNCTION: acpi_os_create_cache
1068 * PARAMETERS: name - Ascii name for the cache
1069 * size - Size of each cached object
1070 * depth - Maximum depth of the cache (in objects) <ignored>
1071 * cache - Where the new cache object is returned
1075 * DESCRIPTION: Create a cache object
1077 ******************************************************************************/
1080 acpi_os_create_cache(char *name
, u16 size
, u16 depth
, acpi_cache_t
** cache
)
1082 *cache
= kmem_cache_create(name
, size
, 0, 0, NULL
, NULL
);
1089 /*******************************************************************************
1091 * FUNCTION: acpi_os_purge_cache
1093 * PARAMETERS: Cache - Handle to cache object
1097 * DESCRIPTION: Free all objects within the requested cache.
1099 ******************************************************************************/
1101 acpi_status
acpi_os_purge_cache(acpi_cache_t
* cache
)
1103 (void)kmem_cache_shrink(cache
);
1107 /*******************************************************************************
1109 * FUNCTION: acpi_os_delete_cache
1111 * PARAMETERS: Cache - Handle to cache object
1115 * DESCRIPTION: Free all objects within the requested cache and delete the
1118 ******************************************************************************/
1120 acpi_status
acpi_os_delete_cache(acpi_cache_t
* cache
)
1122 (void)kmem_cache_destroy(cache
);
1126 /*******************************************************************************
1128 * FUNCTION: acpi_os_release_object
1130 * PARAMETERS: Cache - Handle to cache object
1131 * Object - The object to be released
1135 * DESCRIPTION: Release an object to the specified cache. If cache is full,
1136 * the object is deleted.
1138 ******************************************************************************/
1140 acpi_status
acpi_os_release_object(acpi_cache_t
* cache
, void *object
)
1142 kmem_cache_free(cache
, object
);
1146 /*******************************************************************************
1148 * FUNCTION: acpi_os_acquire_object
1150 * PARAMETERS: Cache - Handle to cache object
1151 * ReturnObject - Where the object is returned
1155 * DESCRIPTION: Return a zero-filled object.
1157 ******************************************************************************/
1159 void *acpi_os_acquire_object(acpi_cache_t
* cache
)
1161 void *object
= kmem_cache_zalloc(cache
, GFP_KERNEL
);
1166 /******************************************************************************
1168 * FUNCTION: acpi_os_validate_interface
1170 * PARAMETERS: interface - Requested interface to be validated
1172 * RETURN: AE_OK if interface is supported, AE_SUPPORT otherwise
1174 * DESCRIPTION: Match an interface string to the interfaces supported by the
1175 * host. Strings originate from an AML call to the _OSI method.
1177 *****************************************************************************/
1180 acpi_os_validate_interface (char *interface
)
1187 /******************************************************************************
1189 * FUNCTION: acpi_os_validate_address
1191 * PARAMETERS: space_id - ACPI space ID
1192 * address - Physical address
1193 * length - Address length
1195 * RETURN: AE_OK if address/length is valid for the space_id. Otherwise,
1196 * should return AE_AML_ILLEGAL_ADDRESS.
1198 * DESCRIPTION: Validate a system address via the host OS. Used to validate
1199 * the addresses accessed by AML operation regions.
1201 *****************************************************************************/
1204 acpi_os_validate_address (
1206 acpi_physical_address address
,