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/module.h>
29 #include <linux/kernel.h>
30 #include <linux/slab.h>
32 #include <linux/pci.h>
33 #include <linux/interrupt.h>
34 #include <linux/kmod.h>
35 #include <linux/delay.h>
36 #include <linux/dmi.h>
37 #include <linux/workqueue.h>
38 #include <linux/nmi.h>
39 #include <linux/acpi.h>
40 #include <acpi/acpi.h>
42 #include <acpi/acpi_bus.h>
43 #include <acpi/processor.h>
44 #include <asm/uaccess.h>
46 #include <linux/efi.h>
48 #define _COMPONENT ACPI_OS_SERVICES
49 ACPI_MODULE_NAME("osl");
50 #define PREFIX "ACPI: "
52 acpi_osd_exec_callback function
;
54 struct work_struct work
;
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 static unsigned int acpi_irq_irq
;
72 static acpi_osd_handler acpi_irq_handler
;
73 static void *acpi_irq_context
;
74 static struct workqueue_struct
*kacpid_wq
;
75 static struct workqueue_struct
*kacpi_notify_wq
;
77 #define OSI_STRING_LENGTH_MAX 64 /* arbitrary */
78 static char osi_additional_string
[OSI_STRING_LENGTH_MAX
];
80 static int osi_linux
; /* disable _OSI(Linux) by default */
83 static struct __initdata dmi_system_id acpi_osl_dmi_table
[];
86 static void __init
acpi_request_region (struct acpi_generic_address
*addr
,
87 unsigned int length
, char *desc
)
91 if (!addr
->address
|| !length
)
94 if (addr
->space_id
== ACPI_ADR_SPACE_SYSTEM_IO
)
95 res
= request_region(addr
->address
, length
, desc
);
96 else if (addr
->space_id
== ACPI_ADR_SPACE_SYSTEM_MEMORY
)
97 res
= request_mem_region(addr
->address
, length
, desc
);
100 static int __init
acpi_reserve_resources(void)
102 acpi_request_region(&acpi_gbl_FADT
.xpm1a_event_block
, acpi_gbl_FADT
.pm1_event_length
,
103 "ACPI PM1a_EVT_BLK");
105 acpi_request_region(&acpi_gbl_FADT
.xpm1b_event_block
, acpi_gbl_FADT
.pm1_event_length
,
106 "ACPI PM1b_EVT_BLK");
108 acpi_request_region(&acpi_gbl_FADT
.xpm1a_control_block
, acpi_gbl_FADT
.pm1_control_length
,
109 "ACPI PM1a_CNT_BLK");
111 acpi_request_region(&acpi_gbl_FADT
.xpm1b_control_block
, acpi_gbl_FADT
.pm1_control_length
,
112 "ACPI PM1b_CNT_BLK");
114 if (acpi_gbl_FADT
.pm_timer_length
== 4)
115 acpi_request_region(&acpi_gbl_FADT
.xpm_timer_block
, 4, "ACPI PM_TMR");
117 acpi_request_region(&acpi_gbl_FADT
.xpm2_control_block
, acpi_gbl_FADT
.pm2_control_length
,
120 /* Length of GPE blocks must be a non-negative multiple of 2 */
122 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");
126 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");
132 device_initcall(acpi_reserve_resources
);
134 acpi_status __init
acpi_os_initialize(void)
136 dmi_check_system(acpi_osl_dmi_table
);
140 acpi_status
acpi_os_initialize1(void)
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).
147 printk(KERN_ERR PREFIX
148 "Access to PCI configuration space unavailable\n");
149 return AE_NULL_ENTRY
;
151 kacpid_wq
= create_singlethread_workqueue("kacpid");
152 kacpi_notify_wq
= create_singlethread_workqueue("kacpi_notify");
154 BUG_ON(!kacpi_notify_wq
);
158 acpi_status
acpi_os_terminate(void)
160 if (acpi_irq_handler
) {
161 acpi_os_remove_interrupt_handler(acpi_irq_irq
,
165 destroy_workqueue(kacpid_wq
);
166 destroy_workqueue(kacpi_notify_wq
);
171 void acpi_os_printf(const char *fmt
, ...)
175 acpi_os_vprintf(fmt
, args
);
179 EXPORT_SYMBOL(acpi_os_printf
);
181 void acpi_os_vprintf(const char *fmt
, va_list args
)
183 static char buffer
[512];
185 vsprintf(buffer
, fmt
, args
);
187 #ifdef ENABLE_DEBUGGER
188 if (acpi_in_debugger
) {
189 kdb_printf("%s", buffer
);
191 printk("%s", buffer
);
194 printk("%s", buffer
);
198 acpi_physical_address __init
acpi_os_get_root_pointer(void)
201 if (efi
.acpi20
!= EFI_INVALID_TABLE_ADDR
)
203 else if (efi
.acpi
!= EFI_INVALID_TABLE_ADDR
)
206 printk(KERN_ERR PREFIX
207 "System description tables not found\n");
211 return acpi_find_rsdp();
214 void __iomem
*acpi_os_map_memory(acpi_physical_address phys
, acpi_size size
)
216 if (phys
> ULONG_MAX
) {
217 printk(KERN_ERR PREFIX
"Cannot map memory that high\n");
220 if (acpi_gbl_permanent_mmap
)
222 * ioremap checks to ensure this is in reserved space
224 return ioremap((unsigned long)phys
, size
);
226 return __acpi_map_table((unsigned long)phys
, size
);
228 EXPORT_SYMBOL_GPL(acpi_os_map_memory
);
230 void acpi_os_unmap_memory(void __iomem
* virt
, acpi_size size
)
232 if (acpi_gbl_permanent_mmap
) {
236 EXPORT_SYMBOL_GPL(acpi_os_unmap_memory
);
238 #ifdef ACPI_FUTURE_USAGE
240 acpi_os_get_physical_address(void *virt
, acpi_physical_address
* phys
)
243 return AE_BAD_PARAMETER
;
245 *phys
= virt_to_phys(virt
);
251 #define ACPI_MAX_OVERRIDE_LEN 100
253 static char acpi_os_name
[ACPI_MAX_OVERRIDE_LEN
];
256 acpi_os_predefined_override(const struct acpi_predefined_names
*init_val
,
257 acpi_string
* new_val
)
259 if (!init_val
|| !new_val
)
260 return AE_BAD_PARAMETER
;
263 if (!memcmp(init_val
->name
, "_OS_", 4) && strlen(acpi_os_name
)) {
264 printk(KERN_INFO PREFIX
"Overriding _OS definition to '%s'\n",
266 *new_val
= acpi_os_name
;
273 acpi_os_table_override(struct acpi_table_header
* existing_table
,
274 struct acpi_table_header
** new_table
)
276 if (!existing_table
|| !new_table
)
277 return AE_BAD_PARAMETER
;
279 #ifdef CONFIG_ACPI_CUSTOM_DSDT
280 if (strncmp(existing_table
->signature
, "DSDT", 4) == 0)
281 *new_table
= (struct acpi_table_header
*)AmlCode
;
290 static irqreturn_t
acpi_irq(int irq
, void *dev_id
)
292 return (*acpi_irq_handler
) (acpi_irq_context
) ? IRQ_HANDLED
: IRQ_NONE
;
296 acpi_os_install_interrupt_handler(u32 gsi
, acpi_osd_handler handler
,
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
306 gsi
= acpi_gbl_FADT
.sci_interrupt
;
307 if (acpi_gsi_to_irq(gsi
, &irq
) < 0) {
308 printk(KERN_ERR PREFIX
"SCI (ACPI GSI %d) not registered\n",
313 acpi_irq_handler
= handler
;
314 acpi_irq_context
= context
;
315 if (request_irq(irq
, acpi_irq
, IRQF_SHARED
, "acpi", acpi_irq
)) {
316 printk(KERN_ERR PREFIX
"SCI (IRQ%d) allocation failed\n", irq
);
317 return AE_NOT_ACQUIRED
;
324 acpi_status
acpi_os_remove_interrupt_handler(u32 irq
, acpi_osd_handler handler
)
327 free_irq(irq
, acpi_irq
);
328 acpi_irq_handler
= NULL
;
336 * Running in interpreter thread context, safe to sleep
339 void acpi_os_sleep(acpi_integer ms
)
341 schedule_timeout_interruptible(msecs_to_jiffies(ms
));
344 EXPORT_SYMBOL(acpi_os_sleep
);
346 void acpi_os_stall(u32 us
)
354 touch_nmi_watchdog();
359 EXPORT_SYMBOL(acpi_os_stall
);
362 * Support ACPI 3.0 AML Timer operand
363 * Returns 64-bit free-running, monotonically increasing timer
364 * with 100ns granularity
366 u64
acpi_os_get_timer(void)
371 /* TBD: use HPET if available */
374 #ifdef CONFIG_X86_PM_TIMER
375 /* TBD: default to PM timer if HPET was not available */
378 printk(KERN_ERR PREFIX
"acpi_os_get_timer() TBD\n");
383 acpi_status
acpi_os_read_port(acpi_io_address port
, u32
* value
, u32 width
)
392 *(u8
*) value
= inb(port
);
395 *(u16
*) value
= inw(port
);
398 *(u32
*) value
= inl(port
);
407 EXPORT_SYMBOL(acpi_os_read_port
);
409 acpi_status
acpi_os_write_port(acpi_io_address port
, u32 value
, u32 width
)
428 EXPORT_SYMBOL(acpi_os_write_port
);
431 acpi_os_read_memory(acpi_physical_address phys_addr
, u32
* value
, u32 width
)
434 void __iomem
*virt_addr
;
436 virt_addr
= ioremap(phys_addr
, width
);
442 *(u8
*) value
= readb(virt_addr
);
445 *(u16
*) value
= readw(virt_addr
);
448 *(u32
*) value
= readl(virt_addr
);
460 acpi_os_write_memory(acpi_physical_address phys_addr
, u32 value
, u32 width
)
462 void __iomem
*virt_addr
;
464 virt_addr
= ioremap(phys_addr
, width
);
468 writeb(value
, virt_addr
);
471 writew(value
, virt_addr
);
474 writel(value
, virt_addr
);
486 acpi_os_read_pci_configuration(struct acpi_pci_id
* pci_id
, u32 reg
,
487 void *value
, u32 width
)
492 return AE_BAD_PARAMETER
;
508 BUG_ON(!raw_pci_ops
);
510 result
= raw_pci_ops
->read(pci_id
->segment
, pci_id
->bus
,
511 PCI_DEVFN(pci_id
->device
, pci_id
->function
),
514 return (result
? AE_ERROR
: AE_OK
);
517 EXPORT_SYMBOL(acpi_os_read_pci_configuration
);
520 acpi_os_write_pci_configuration(struct acpi_pci_id
* pci_id
, u32 reg
,
521 acpi_integer value
, u32 width
)
539 BUG_ON(!raw_pci_ops
);
541 result
= raw_pci_ops
->write(pci_id
->segment
, pci_id
->bus
,
542 PCI_DEVFN(pci_id
->device
, pci_id
->function
),
545 return (result
? AE_ERROR
: AE_OK
);
548 /* TODO: Change code to take advantage of driver model more */
549 static void acpi_os_derive_pci_id_2(acpi_handle rhandle
, /* upper bound */
550 acpi_handle chandle
, /* current node */
551 struct acpi_pci_id
**id
,
552 int *is_bridge
, u8
* bus_number
)
555 struct acpi_pci_id
*pci_id
= *id
;
558 acpi_object_type type
;
561 acpi_get_parent(chandle
, &handle
);
562 if (handle
!= rhandle
) {
563 acpi_os_derive_pci_id_2(rhandle
, handle
, &pci_id
, is_bridge
,
566 status
= acpi_get_type(handle
, &type
);
567 if ((ACPI_FAILURE(status
)) || (type
!= ACPI_TYPE_DEVICE
))
571 acpi_evaluate_integer(handle
, METHOD_NAME__ADR
, NULL
,
573 if (ACPI_SUCCESS(status
)) {
574 pci_id
->device
= ACPI_HIWORD(ACPI_LODWORD(temp
));
575 pci_id
->function
= ACPI_LOWORD(ACPI_LODWORD(temp
));
578 pci_id
->bus
= *bus_number
;
580 /* any nicer way to get bus number of bridge ? */
582 acpi_os_read_pci_configuration(pci_id
, 0x0e, &tu8
,
584 if (ACPI_SUCCESS(status
)
585 && ((tu8
& 0x7f) == 1 || (tu8
& 0x7f) == 2)) {
587 acpi_os_read_pci_configuration(pci_id
, 0x18,
589 if (!ACPI_SUCCESS(status
)) {
590 /* Certainly broken... FIX ME */
596 acpi_os_read_pci_configuration(pci_id
, 0x19,
598 if (ACPI_SUCCESS(status
)) {
607 void acpi_os_derive_pci_id(acpi_handle rhandle
, /* upper bound */
608 acpi_handle chandle
, /* current node */
609 struct acpi_pci_id
**id
)
612 u8 bus_number
= (*id
)->bus
;
614 acpi_os_derive_pci_id_2(rhandle
, chandle
, id
, &is_bridge
, &bus_number
);
617 static void acpi_os_execute_deferred(struct work_struct
*work
)
619 struct acpi_os_dpc
*dpc
= container_of(work
, struct acpi_os_dpc
, work
);
621 printk(KERN_ERR PREFIX
"Invalid (NULL) context\n");
625 dpc
->function(dpc
->context
);
628 /* Yield cpu to notify thread */
634 static void acpi_os_execute_notify(struct work_struct
*work
)
636 struct acpi_os_dpc
*dpc
= container_of(work
, struct acpi_os_dpc
, work
);
639 printk(KERN_ERR PREFIX
"Invalid (NULL) context\n");
643 dpc
->function(dpc
->context
);
650 /*******************************************************************************
652 * FUNCTION: acpi_os_execute
654 * PARAMETERS: Type - Type of the callback
655 * Function - Function to be executed
656 * Context - Function parameters
660 * DESCRIPTION: Depending on type, either queues function for deferred execution or
661 * immediately executes function on a separate thread.
663 ******************************************************************************/
665 acpi_status
acpi_os_execute(acpi_execute_type type
,
666 acpi_osd_exec_callback function
, void *context
)
668 acpi_status status
= AE_OK
;
669 struct acpi_os_dpc
*dpc
;
671 ACPI_DEBUG_PRINT((ACPI_DB_EXEC
,
672 "Scheduling function [%p(%p)] for deferred execution.\n",
676 return AE_BAD_PARAMETER
;
679 * Allocate/initialize DPC structure. Note that this memory will be
680 * freed by the callee. The kernel handles the work_struct list in a
681 * way that allows us to also free its memory inside the callee.
682 * Because we may want to schedule several tasks with different
683 * parameters we can't use the approach some kernel code uses of
684 * having a static work_struct.
687 dpc
= kmalloc(sizeof(struct acpi_os_dpc
), GFP_ATOMIC
);
689 return_ACPI_STATUS(AE_NO_MEMORY
);
691 dpc
->function
= function
;
692 dpc
->context
= context
;
694 if (type
== OSL_NOTIFY_HANDLER
) {
695 INIT_WORK(&dpc
->work
, acpi_os_execute_notify
);
696 if (!queue_work(kacpi_notify_wq
, &dpc
->work
)) {
701 INIT_WORK(&dpc
->work
, acpi_os_execute_deferred
);
702 if (!queue_work(kacpid_wq
, &dpc
->work
)) {
703 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
704 "Call to queue_work() failed.\n"));
709 return_ACPI_STATUS(status
);
712 EXPORT_SYMBOL(acpi_os_execute
);
714 void acpi_os_wait_events_complete(void *context
)
716 flush_workqueue(kacpid_wq
);
719 EXPORT_SYMBOL(acpi_os_wait_events_complete
);
722 * Allocate the memory for a spinlock and initialize it.
724 acpi_status
acpi_os_create_lock(acpi_spinlock
* handle
)
726 spin_lock_init(*handle
);
732 * Deallocate the memory for a spinlock.
734 void acpi_os_delete_lock(acpi_spinlock handle
)
740 acpi_os_create_semaphore(u32 max_units
, u32 initial_units
, acpi_handle
* handle
)
742 struct semaphore
*sem
= NULL
;
745 sem
= acpi_os_allocate(sizeof(struct semaphore
));
748 memset(sem
, 0, sizeof(struct semaphore
));
750 sema_init(sem
, initial_units
);
752 *handle
= (acpi_handle
*) sem
;
754 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
, "Creating semaphore[%p|%d].\n",
755 *handle
, initial_units
));
760 EXPORT_SYMBOL(acpi_os_create_semaphore
);
763 * TODO: A better way to delete semaphores? Linux doesn't have a
764 * 'delete_semaphore()' function -- may result in an invalid
765 * pointer dereference for non-synchronized consumers. Should
766 * we at least check for blocked threads and signal/cancel them?
769 acpi_status
acpi_os_delete_semaphore(acpi_handle handle
)
771 struct semaphore
*sem
= (struct semaphore
*)handle
;
775 return AE_BAD_PARAMETER
;
777 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
, "Deleting semaphore[%p].\n", handle
));
785 EXPORT_SYMBOL(acpi_os_delete_semaphore
);
788 * TODO: The kernel doesn't have a 'down_timeout' function -- had to
789 * improvise. The process is to sleep for one scheduler quantum
790 * until the semaphore becomes available. Downside is that this
791 * may result in starvation for timeout-based waits when there's
792 * lots of semaphore activity.
794 * TODO: Support for units > 1?
796 acpi_status
acpi_os_wait_semaphore(acpi_handle handle
, u32 units
, u16 timeout
)
798 acpi_status status
= AE_OK
;
799 struct semaphore
*sem
= (struct semaphore
*)handle
;
803 if (!sem
|| (units
< 1))
804 return AE_BAD_PARAMETER
;
809 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
, "Waiting for semaphore[%p|%d|%d]\n",
810 handle
, units
, timeout
));
813 * This can be called during resume with interrupts off.
814 * Like boot-time, we should be single threaded and will
815 * always get the lock if we try -- timeout or not.
816 * If this doesn't succeed, then we will oops courtesy of
817 * might_sleep() in down().
819 if (!down_trylock(sem
))
826 * A zero timeout value indicates that we shouldn't wait - just
827 * acquire the semaphore if available otherwise return AE_TIME
828 * (a.k.a. 'would block').
831 if (down_trylock(sem
))
839 case ACPI_WAIT_FOREVER
:
848 // TODO: A better timeout algorithm?
851 static const int quantum_ms
= 1000 / HZ
;
853 ret
= down_trylock(sem
);
854 for (i
= timeout
; (i
> 0 && ret
!= 0); i
-= quantum_ms
) {
855 schedule_timeout_interruptible(1);
856 ret
= down_trylock(sem
);
865 if (ACPI_FAILURE(status
)) {
866 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
,
867 "Failed to acquire semaphore[%p|%d|%d], %s",
868 handle
, units
, timeout
,
869 acpi_format_exception(status
)));
871 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
,
872 "Acquired semaphore[%p|%d|%d]", handle
,
879 EXPORT_SYMBOL(acpi_os_wait_semaphore
);
882 * TODO: Support for units > 1?
884 acpi_status
acpi_os_signal_semaphore(acpi_handle handle
, u32 units
)
886 struct semaphore
*sem
= (struct semaphore
*)handle
;
889 if (!sem
|| (units
< 1))
890 return AE_BAD_PARAMETER
;
895 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
, "Signaling semaphore[%p|%d]\n", handle
,
903 EXPORT_SYMBOL(acpi_os_signal_semaphore
);
905 #ifdef ACPI_FUTURE_USAGE
906 u32
acpi_os_get_line(char *buffer
)
909 #ifdef ENABLE_DEBUGGER
910 if (acpi_in_debugger
) {
913 kdb_read(buffer
, sizeof(line_buf
));
915 /* remove the CR kdb includes */
916 chars
= strlen(buffer
) - 1;
917 buffer
[chars
] = '\0';
923 #endif /* ACPI_FUTURE_USAGE */
925 acpi_status
acpi_os_signal(u32 function
, void *info
)
928 case ACPI_SIGNAL_FATAL
:
929 printk(KERN_ERR PREFIX
"Fatal opcode executed\n");
931 case ACPI_SIGNAL_BREAKPOINT
:
934 * ACPI spec. says to treat it as a NOP unless
935 * you are debugging. So if/when we integrate
936 * AML debugger into the kernel debugger its
937 * hook will go here. But until then it is
938 * not useful to print anything on breakpoints.
948 EXPORT_SYMBOL(acpi_os_signal
);
950 static int __init
acpi_os_name_setup(char *str
)
952 char *p
= acpi_os_name
;
953 int count
= ACPI_MAX_OVERRIDE_LEN
- 1;
958 for (; count
-- && str
&& *str
; str
++) {
959 if (isalnum(*str
) || *str
== ' ' || *str
== ':')
961 else if (*str
== '\'' || *str
== '"')
972 __setup("acpi_os_name=", acpi_os_name_setup
);
974 static void enable_osi_linux(int enable
) {
976 if (osi_linux
!= enable
)
977 printk(KERN_INFO PREFIX
"%sabled _OSI(Linux)\n",
978 enable
? "En": "Dis");
985 * Modify the list of "OS Interfaces" reported to BIOS via _OSI
987 * empty string disables _OSI
988 * string starting with '!' disables that string
989 * otherwise string is added to list, augmenting built-in strings
991 static int __init
acpi_osi_setup(char *str
)
993 if (str
== NULL
|| *str
== '\0') {
994 printk(KERN_INFO PREFIX
"_OSI method disabled\n");
995 acpi_gbl_create_osi_method
= FALSE
;
996 } else if (!strcmp("!Linux", str
)) {
998 } else if (*str
== '!') {
999 if (acpi_osi_invalidate(++str
) == AE_OK
)
1000 printk(KERN_INFO PREFIX
"Deleted _OSI(%s)\n", str
);
1001 } else if (!strcmp("Linux", str
)) {
1002 enable_osi_linux(1);
1003 } else if (*osi_additional_string
== '\0') {
1004 strncpy(osi_additional_string
, str
, OSI_STRING_LENGTH_MAX
);
1005 printk(KERN_INFO PREFIX
"Added _OSI(%s)\n", str
);
1011 __setup("acpi_osi=", acpi_osi_setup
);
1013 /* enable serialization to combat AE_ALREADY_EXISTS errors */
1014 static int __init
acpi_serialize_setup(char *str
)
1016 printk(KERN_INFO PREFIX
"serialize enabled\n");
1018 acpi_gbl_all_methods_serialized
= TRUE
;
1023 __setup("acpi_serialize", acpi_serialize_setup
);
1026 * Wake and Run-Time GPES are expected to be separate.
1027 * We disable wake-GPEs at run-time to prevent spurious
1030 * However, if a system exists that shares Wake and
1031 * Run-time events on the same GPE this flag is available
1032 * to tell Linux to keep the wake-time GPEs enabled at run-time.
1034 static int __init
acpi_wake_gpes_always_on_setup(char *str
)
1036 printk(KERN_INFO PREFIX
"wake GPEs not disabled\n");
1038 acpi_gbl_leave_wake_gpes_disabled
= FALSE
;
1043 __setup("acpi_wake_gpes_always_on", acpi_wake_gpes_always_on_setup
);
1046 * max_cstate is defined in the base kernel so modules can
1047 * change it w/o depending on the state of the processor module.
1049 unsigned int max_cstate
= ACPI_PROCESSOR_MAX_POWER
;
1051 EXPORT_SYMBOL(max_cstate
);
1054 * Acquire a spinlock.
1056 * handle is a pointer to the spinlock_t.
1059 acpi_cpu_flags
acpi_os_acquire_lock(acpi_spinlock lockp
)
1061 acpi_cpu_flags flags
;
1062 spin_lock_irqsave(lockp
, flags
);
1067 * Release a spinlock. See above.
1070 void acpi_os_release_lock(acpi_spinlock lockp
, acpi_cpu_flags flags
)
1072 spin_unlock_irqrestore(lockp
, flags
);
1075 #ifndef ACPI_USE_LOCAL_CACHE
1077 /*******************************************************************************
1079 * FUNCTION: acpi_os_create_cache
1081 * PARAMETERS: name - Ascii name for the cache
1082 * size - Size of each cached object
1083 * depth - Maximum depth of the cache (in objects) <ignored>
1084 * cache - Where the new cache object is returned
1088 * DESCRIPTION: Create a cache object
1090 ******************************************************************************/
1093 acpi_os_create_cache(char *name
, u16 size
, u16 depth
, acpi_cache_t
** cache
)
1095 *cache
= kmem_cache_create(name
, size
, 0, 0, NULL
);
1102 /*******************************************************************************
1104 * FUNCTION: acpi_os_purge_cache
1106 * PARAMETERS: Cache - Handle to cache object
1110 * DESCRIPTION: Free all objects within the requested cache.
1112 ******************************************************************************/
1114 acpi_status
acpi_os_purge_cache(acpi_cache_t
* cache
)
1116 kmem_cache_shrink(cache
);
1120 /*******************************************************************************
1122 * FUNCTION: acpi_os_delete_cache
1124 * PARAMETERS: Cache - Handle to cache object
1128 * DESCRIPTION: Free all objects within the requested cache and delete the
1131 ******************************************************************************/
1133 acpi_status
acpi_os_delete_cache(acpi_cache_t
* cache
)
1135 kmem_cache_destroy(cache
);
1139 /*******************************************************************************
1141 * FUNCTION: acpi_os_release_object
1143 * PARAMETERS: Cache - Handle to cache object
1144 * Object - The object to be released
1148 * DESCRIPTION: Release an object to the specified cache. If cache is full,
1149 * the object is deleted.
1151 ******************************************************************************/
1153 acpi_status
acpi_os_release_object(acpi_cache_t
* cache
, void *object
)
1155 kmem_cache_free(cache
, object
);
1159 /******************************************************************************
1161 * FUNCTION: acpi_os_validate_interface
1163 * PARAMETERS: interface - Requested interface to be validated
1165 * RETURN: AE_OK if interface is supported, AE_SUPPORT otherwise
1167 * DESCRIPTION: Match an interface string to the interfaces supported by the
1168 * host. Strings originate from an AML call to the _OSI method.
1170 *****************************************************************************/
1173 acpi_os_validate_interface (char *interface
)
1175 if (!strncmp(osi_additional_string
, interface
, OSI_STRING_LENGTH_MAX
))
1177 if (!strcmp("Linux", interface
)) {
1178 printk(KERN_WARNING PREFIX
1179 "System BIOS is requesting _OSI(Linux)\n");
1180 printk(KERN_WARNING PREFIX
1181 "If \"acpi_osi=Linux\" works better,\n"
1182 "Please send dmidecode "
1183 "to linux-acpi@vger.kernel.org\n");
1190 /******************************************************************************
1192 * FUNCTION: acpi_os_validate_address
1194 * PARAMETERS: space_id - ACPI space ID
1195 * address - Physical address
1196 * length - Address length
1198 * RETURN: AE_OK if address/length is valid for the space_id. Otherwise,
1199 * should return AE_AML_ILLEGAL_ADDRESS.
1201 * DESCRIPTION: Validate a system address via the host OS. Used to validate
1202 * the addresses accessed by AML operation regions.
1204 *****************************************************************************/
1207 acpi_os_validate_address (
1209 acpi_physical_address address
,
1217 static int dmi_osi_linux(const struct dmi_system_id
*d
)
1219 printk(KERN_NOTICE
"%s detected: enabling _OSI(Linux)\n", d
->ident
);
1220 enable_osi_linux(1);
1224 static struct dmi_system_id acpi_osl_dmi_table
[] __initdata
= {
1226 * Boxes that need _OSI(Linux)
1229 .callback
= dmi_osi_linux
,
1230 .ident
= "Intel Napa CRB",
1232 DMI_MATCH(DMI_BOARD_VENDOR
, "Intel Corporation"),
1233 DMI_MATCH(DMI_BOARD_NAME
, "MPAD-MSAE Customer Reference Boards"),
1238 #endif /* CONFIG_DMI */