2 * acpi_osl.c - OS-dependent functions ($Revision: 83 $)
4 * Copyright (C) 2000 Andrew Henroid
7 * Copyright (c) 2008 Intel Corporation
10 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
26 #include <linux/module.h>
27 #include <linux/kernel.h>
28 #include <linux/slab.h>
30 #include <linux/highmem.h>
31 #include <linux/pci.h>
32 #include <linux/interrupt.h>
33 #include <linux/kmod.h>
34 #include <linux/delay.h>
35 #include <linux/workqueue.h>
36 #include <linux/nmi.h>
37 #include <linux/acpi.h>
38 #include <linux/efi.h>
39 #include <linux/ioport.h>
40 #include <linux/list.h>
41 #include <linux/jiffies.h>
42 #include <linux/semaphore.h>
45 #include <asm/uaccess.h>
46 #include <linux/io-64-nonatomic-lo-hi.h>
50 #define _COMPONENT ACPI_OS_SERVICES
51 ACPI_MODULE_NAME("osl");
54 acpi_osd_exec_callback function;
56 struct work_struct work;
59 #ifdef ENABLE_DEBUGGER
60 #include <linux/kdb.h>
62 /* stuff for debugger support */
64 EXPORT_SYMBOL(acpi_in_debugger);
65 #endif /*ENABLE_DEBUGGER */
67 static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl,
69 static int (*__acpi_os_prepare_extended_sleep)(u8 sleep_state, u32 val_a,
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;
76 static struct workqueue_struct *kacpi_hotplug_wq;
77 static bool acpi_os_initialized;
78 unsigned int acpi_sci_irq = INVALID_ACPI_IRQ;
81 * This list of permanent mappings is for memory that may be accessed from
82 * interrupt context, where we can't do the ioremap().
85 struct list_head list;
87 acpi_physical_address phys;
89 unsigned long refcount;
92 static LIST_HEAD(acpi_ioremaps);
93 static DEFINE_MUTEX(acpi_ioremap_lock);
95 static void __init acpi_request_region (struct acpi_generic_address *gas,
96 unsigned int length, char *desc)
100 /* Handle possible alignment issues */
101 memcpy(&addr, &gas->address, sizeof(addr));
102 if (!addr || !length)
105 /* Resources are never freed */
106 if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_IO)
107 request_region(addr, length, desc);
108 else if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
109 request_mem_region(addr, length, desc);
112 static int __init acpi_reserve_resources(void)
114 acpi_request_region(&acpi_gbl_FADT.xpm1a_event_block, acpi_gbl_FADT.pm1_event_length,
115 "ACPI PM1a_EVT_BLK");
117 acpi_request_region(&acpi_gbl_FADT.xpm1b_event_block, acpi_gbl_FADT.pm1_event_length,
118 "ACPI PM1b_EVT_BLK");
120 acpi_request_region(&acpi_gbl_FADT.xpm1a_control_block, acpi_gbl_FADT.pm1_control_length,
121 "ACPI PM1a_CNT_BLK");
123 acpi_request_region(&acpi_gbl_FADT.xpm1b_control_block, acpi_gbl_FADT.pm1_control_length,
124 "ACPI PM1b_CNT_BLK");
126 if (acpi_gbl_FADT.pm_timer_length == 4)
127 acpi_request_region(&acpi_gbl_FADT.xpm_timer_block, 4, "ACPI PM_TMR");
129 acpi_request_region(&acpi_gbl_FADT.xpm2_control_block, acpi_gbl_FADT.pm2_control_length,
132 /* Length of GPE blocks must be a non-negative multiple of 2 */
134 if (!(acpi_gbl_FADT.gpe0_block_length & 0x1))
135 acpi_request_region(&acpi_gbl_FADT.xgpe0_block,
136 acpi_gbl_FADT.gpe0_block_length, "ACPI GPE0_BLK");
138 if (!(acpi_gbl_FADT.gpe1_block_length & 0x1))
139 acpi_request_region(&acpi_gbl_FADT.xgpe1_block,
140 acpi_gbl_FADT.gpe1_block_length, "ACPI GPE1_BLK");
144 fs_initcall_sync(acpi_reserve_resources);
146 void acpi_os_printf(const char *fmt, ...)
150 acpi_os_vprintf(fmt, args);
153 EXPORT_SYMBOL(acpi_os_printf);
155 void acpi_os_vprintf(const char *fmt, va_list args)
157 static char buffer[512];
159 vsprintf(buffer, fmt, args);
161 #ifdef ENABLE_DEBUGGER
162 if (acpi_in_debugger) {
163 kdb_printf("%s", buffer);
165 if (printk_get_level(buffer))
166 printk("%s", buffer);
168 printk(KERN_CONT "%s", buffer);
171 if (acpi_debugger_write_log(buffer) < 0) {
172 if (printk_get_level(buffer))
173 printk("%s", buffer);
175 printk(KERN_CONT "%s", buffer);
181 static unsigned long acpi_rsdp;
182 static int __init setup_acpi_rsdp(char *arg)
184 if (kstrtoul(arg, 16, &acpi_rsdp))
188 early_param("acpi_rsdp", setup_acpi_rsdp);
191 acpi_physical_address __init acpi_os_get_root_pointer(void)
198 if (efi_enabled(EFI_CONFIG_TABLES)) {
199 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
201 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
204 printk(KERN_ERR PREFIX
205 "System description tables not found\n");
208 } else if (IS_ENABLED(CONFIG_ACPI_LEGACY_TABLES_LOOKUP)) {
209 acpi_physical_address pa = 0;
211 acpi_find_root_pointer(&pa);
218 /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
219 static struct acpi_ioremap *
220 acpi_map_lookup(acpi_physical_address phys, acpi_size size)
222 struct acpi_ioremap *map;
224 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
225 if (map->phys <= phys &&
226 phys + size <= map->phys + map->size)
232 /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
233 static void __iomem *
234 acpi_map_vaddr_lookup(acpi_physical_address phys, unsigned int size)
236 struct acpi_ioremap *map;
238 map = acpi_map_lookup(phys, size);
240 return map->virt + (phys - map->phys);
245 void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size)
247 struct acpi_ioremap *map;
248 void __iomem *virt = NULL;
250 mutex_lock(&acpi_ioremap_lock);
251 map = acpi_map_lookup(phys, size);
253 virt = map->virt + (phys - map->phys);
256 mutex_unlock(&acpi_ioremap_lock);
259 EXPORT_SYMBOL_GPL(acpi_os_get_iomem);
261 /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
262 static struct acpi_ioremap *
263 acpi_map_lookup_virt(void __iomem *virt, acpi_size size)
265 struct acpi_ioremap *map;
267 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
268 if (map->virt <= virt &&
269 virt + size <= map->virt + map->size)
275 #if defined(CONFIG_IA64) || defined(CONFIG_ARM64)
276 /* ioremap will take care of cache attributes */
277 #define should_use_kmap(pfn) 0
279 #define should_use_kmap(pfn) page_is_ram(pfn)
282 static void __iomem *acpi_map(acpi_physical_address pg_off, unsigned long pg_sz)
286 pfn = pg_off >> PAGE_SHIFT;
287 if (should_use_kmap(pfn)) {
288 if (pg_sz > PAGE_SIZE)
290 return (void __iomem __force *)kmap(pfn_to_page(pfn));
292 return acpi_os_ioremap(pg_off, pg_sz);
295 static void acpi_unmap(acpi_physical_address pg_off, void __iomem *vaddr)
299 pfn = pg_off >> PAGE_SHIFT;
300 if (should_use_kmap(pfn))
301 kunmap(pfn_to_page(pfn));
307 * acpi_os_map_iomem - Get a virtual address for a given physical address range.
308 * @phys: Start of the physical address range to map.
309 * @size: Size of the physical address range to map.
311 * Look up the given physical address range in the list of existing ACPI memory
312 * mappings. If found, get a reference to it and return a pointer to it (its
313 * virtual address). If not found, map it, add it to that list and return a
316 * During early init (when acpi_gbl_permanent_mmap has not been set yet) this
317 * routine simply calls __acpi_map_table() to get the job done.
320 acpi_os_map_iomem(acpi_physical_address phys, acpi_size size)
322 struct acpi_ioremap *map;
324 acpi_physical_address pg_off;
327 if (phys > ULONG_MAX) {
328 printk(KERN_ERR PREFIX "Cannot map memory that high\n");
332 if (!acpi_gbl_permanent_mmap)
333 return __acpi_map_table((unsigned long)phys, size);
335 mutex_lock(&acpi_ioremap_lock);
336 /* Check if there's a suitable mapping already. */
337 map = acpi_map_lookup(phys, size);
343 map = kzalloc(sizeof(*map), GFP_KERNEL);
345 mutex_unlock(&acpi_ioremap_lock);
349 pg_off = round_down(phys, PAGE_SIZE);
350 pg_sz = round_up(phys + size, PAGE_SIZE) - pg_off;
351 virt = acpi_map(pg_off, pg_sz);
353 mutex_unlock(&acpi_ioremap_lock);
358 INIT_LIST_HEAD(&map->list);
364 list_add_tail_rcu(&map->list, &acpi_ioremaps);
367 mutex_unlock(&acpi_ioremap_lock);
368 return map->virt + (phys - map->phys);
370 EXPORT_SYMBOL_GPL(acpi_os_map_iomem);
372 void *__ref acpi_os_map_memory(acpi_physical_address phys, acpi_size size)
374 return (void *)acpi_os_map_iomem(phys, size);
376 EXPORT_SYMBOL_GPL(acpi_os_map_memory);
378 static void acpi_os_drop_map_ref(struct acpi_ioremap *map)
380 if (!--map->refcount)
381 list_del_rcu(&map->list);
384 static void acpi_os_map_cleanup(struct acpi_ioremap *map)
386 if (!map->refcount) {
387 synchronize_rcu_expedited();
388 acpi_unmap(map->phys, map->virt);
394 * acpi_os_unmap_iomem - Drop a memory mapping reference.
395 * @virt: Start of the address range to drop a reference to.
396 * @size: Size of the address range to drop a reference to.
398 * Look up the given virtual address range in the list of existing ACPI memory
399 * mappings, drop a reference to it and unmap it if there are no more active
402 * During early init (when acpi_gbl_permanent_mmap has not been set yet) this
403 * routine simply calls __acpi_unmap_table() to get the job done. Since
404 * __acpi_unmap_table() is an __init function, the __ref annotation is needed
407 void __ref acpi_os_unmap_iomem(void __iomem *virt, acpi_size size)
409 struct acpi_ioremap *map;
411 if (!acpi_gbl_permanent_mmap) {
412 __acpi_unmap_table(virt, size);
416 mutex_lock(&acpi_ioremap_lock);
417 map = acpi_map_lookup_virt(virt, size);
419 mutex_unlock(&acpi_ioremap_lock);
420 WARN(true, PREFIX "%s: bad address %p\n", __func__, virt);
423 acpi_os_drop_map_ref(map);
424 mutex_unlock(&acpi_ioremap_lock);
426 acpi_os_map_cleanup(map);
428 EXPORT_SYMBOL_GPL(acpi_os_unmap_iomem);
430 void __ref acpi_os_unmap_memory(void *virt, acpi_size size)
432 return acpi_os_unmap_iomem((void __iomem *)virt, size);
434 EXPORT_SYMBOL_GPL(acpi_os_unmap_memory);
436 void __init early_acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
438 if (!acpi_gbl_permanent_mmap)
439 __acpi_unmap_table(virt, size);
442 int acpi_os_map_generic_address(struct acpi_generic_address *gas)
447 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
450 /* Handle possible alignment issues */
451 memcpy(&addr, &gas->address, sizeof(addr));
452 if (!addr || !gas->bit_width)
455 virt = acpi_os_map_iomem(addr, gas->bit_width / 8);
461 EXPORT_SYMBOL(acpi_os_map_generic_address);
463 void acpi_os_unmap_generic_address(struct acpi_generic_address *gas)
466 struct acpi_ioremap *map;
468 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
471 /* Handle possible alignment issues */
472 memcpy(&addr, &gas->address, sizeof(addr));
473 if (!addr || !gas->bit_width)
476 mutex_lock(&acpi_ioremap_lock);
477 map = acpi_map_lookup(addr, gas->bit_width / 8);
479 mutex_unlock(&acpi_ioremap_lock);
482 acpi_os_drop_map_ref(map);
483 mutex_unlock(&acpi_ioremap_lock);
485 acpi_os_map_cleanup(map);
487 EXPORT_SYMBOL(acpi_os_unmap_generic_address);
489 #ifdef ACPI_FUTURE_USAGE
491 acpi_os_get_physical_address(void *virt, acpi_physical_address * phys)
494 return AE_BAD_PARAMETER;
496 *phys = virt_to_phys(virt);
502 #ifdef CONFIG_ACPI_REV_OVERRIDE_POSSIBLE
503 static bool acpi_rev_override;
505 int __init acpi_rev_override_setup(char *str)
507 acpi_rev_override = true;
510 __setup("acpi_rev_override", acpi_rev_override_setup);
512 #define acpi_rev_override false
515 #define ACPI_MAX_OVERRIDE_LEN 100
517 static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN];
520 acpi_os_predefined_override(const struct acpi_predefined_names *init_val,
521 acpi_string *new_val)
523 if (!init_val || !new_val)
524 return AE_BAD_PARAMETER;
527 if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) {
528 printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n",
530 *new_val = acpi_os_name;
533 if (!memcmp(init_val->name, "_REV", 4) && acpi_rev_override) {
534 printk(KERN_INFO PREFIX "Overriding _REV return value to 5\n");
535 *new_val = (char *)5;
541 static irqreturn_t acpi_irq(int irq, void *dev_id)
545 handled = (*acpi_irq_handler) (acpi_irq_context);
551 acpi_irq_not_handled++;
557 acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
562 acpi_irq_stats_init();
565 * ACPI interrupts different from the SCI in our copy of the FADT are
568 if (gsi != acpi_gbl_FADT.sci_interrupt)
569 return AE_BAD_PARAMETER;
571 if (acpi_irq_handler)
572 return AE_ALREADY_ACQUIRED;
574 if (acpi_gsi_to_irq(gsi, &irq) < 0) {
575 printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n",
580 acpi_irq_handler = handler;
581 acpi_irq_context = context;
582 if (request_irq(irq, acpi_irq, IRQF_SHARED, "acpi", acpi_irq)) {
583 printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq);
584 acpi_irq_handler = NULL;
585 return AE_NOT_ACQUIRED;
592 acpi_status acpi_os_remove_interrupt_handler(u32 gsi, acpi_osd_handler handler)
594 if (gsi != acpi_gbl_FADT.sci_interrupt || !acpi_sci_irq_valid())
595 return AE_BAD_PARAMETER;
597 free_irq(acpi_sci_irq, acpi_irq);
598 acpi_irq_handler = NULL;
599 acpi_sci_irq = INVALID_ACPI_IRQ;
605 * Running in interpreter thread context, safe to sleep
608 void acpi_os_sleep(u64 ms)
613 void acpi_os_stall(u32 us)
621 touch_nmi_watchdog();
627 * Support ACPI 3.0 AML Timer operand
628 * Returns 64-bit free-running, monotonically increasing timer
629 * with 100ns granularity
631 u64 acpi_os_get_timer(void)
633 u64 time_ns = ktime_to_ns(ktime_get());
634 do_div(time_ns, 100);
638 acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
647 *(u8 *) value = inb(port);
648 } else if (width <= 16) {
649 *(u16 *) value = inw(port);
650 } else if (width <= 32) {
651 *(u32 *) value = inl(port);
659 EXPORT_SYMBOL(acpi_os_read_port);
661 acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width)
665 } else if (width <= 16) {
667 } else if (width <= 32) {
676 EXPORT_SYMBOL(acpi_os_write_port);
679 acpi_os_read_memory(acpi_physical_address phys_addr, u64 *value, u32 width)
681 void __iomem *virt_addr;
682 unsigned int size = width / 8;
687 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
690 virt_addr = acpi_os_ioremap(phys_addr, size);
692 return AE_BAD_ADDRESS;
701 *(u8 *) value = readb(virt_addr);
704 *(u16 *) value = readw(virt_addr);
707 *(u32 *) value = readl(virt_addr);
710 *(u64 *) value = readq(virt_addr);
725 acpi_os_write_memory(acpi_physical_address phys_addr, u64 value, u32 width)
727 void __iomem *virt_addr;
728 unsigned int size = width / 8;
732 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
735 virt_addr = acpi_os_ioremap(phys_addr, size);
737 return AE_BAD_ADDRESS;
743 writeb(value, virt_addr);
746 writew(value, virt_addr);
749 writel(value, virt_addr);
752 writeq(value, virt_addr);
767 acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
768 u64 *value, u32 width)
774 return AE_BAD_PARAMETER;
790 result = raw_pci_read(pci_id->segment, pci_id->bus,
791 PCI_DEVFN(pci_id->device, pci_id->function),
792 reg, size, &value32);
795 return (result ? AE_ERROR : AE_OK);
799 acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
800 u64 value, u32 width)
818 result = raw_pci_write(pci_id->segment, pci_id->bus,
819 PCI_DEVFN(pci_id->device, pci_id->function),
822 return (result ? AE_ERROR : AE_OK);
825 static void acpi_os_execute_deferred(struct work_struct *work)
827 struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work);
829 dpc->function(dpc->context);
833 #ifdef CONFIG_ACPI_DEBUGGER
834 static struct acpi_debugger acpi_debugger;
835 static bool acpi_debugger_initialized;
837 int acpi_register_debugger(struct module *owner,
838 const struct acpi_debugger_ops *ops)
842 mutex_lock(&acpi_debugger.lock);
843 if (acpi_debugger.ops) {
848 acpi_debugger.owner = owner;
849 acpi_debugger.ops = ops;
852 mutex_unlock(&acpi_debugger.lock);
855 EXPORT_SYMBOL(acpi_register_debugger);
857 void acpi_unregister_debugger(const struct acpi_debugger_ops *ops)
859 mutex_lock(&acpi_debugger.lock);
860 if (ops == acpi_debugger.ops) {
861 acpi_debugger.ops = NULL;
862 acpi_debugger.owner = NULL;
864 mutex_unlock(&acpi_debugger.lock);
866 EXPORT_SYMBOL(acpi_unregister_debugger);
868 int acpi_debugger_create_thread(acpi_osd_exec_callback function, void *context)
871 int (*func)(acpi_osd_exec_callback, void *);
872 struct module *owner;
874 if (!acpi_debugger_initialized)
876 mutex_lock(&acpi_debugger.lock);
877 if (!acpi_debugger.ops) {
881 if (!try_module_get(acpi_debugger.owner)) {
885 func = acpi_debugger.ops->create_thread;
886 owner = acpi_debugger.owner;
887 mutex_unlock(&acpi_debugger.lock);
889 ret = func(function, context);
891 mutex_lock(&acpi_debugger.lock);
894 mutex_unlock(&acpi_debugger.lock);
898 ssize_t acpi_debugger_write_log(const char *msg)
901 ssize_t (*func)(const char *);
902 struct module *owner;
904 if (!acpi_debugger_initialized)
906 mutex_lock(&acpi_debugger.lock);
907 if (!acpi_debugger.ops) {
911 if (!try_module_get(acpi_debugger.owner)) {
915 func = acpi_debugger.ops->write_log;
916 owner = acpi_debugger.owner;
917 mutex_unlock(&acpi_debugger.lock);
921 mutex_lock(&acpi_debugger.lock);
924 mutex_unlock(&acpi_debugger.lock);
928 ssize_t acpi_debugger_read_cmd(char *buffer, size_t buffer_length)
931 ssize_t (*func)(char *, size_t);
932 struct module *owner;
934 if (!acpi_debugger_initialized)
936 mutex_lock(&acpi_debugger.lock);
937 if (!acpi_debugger.ops) {
941 if (!try_module_get(acpi_debugger.owner)) {
945 func = acpi_debugger.ops->read_cmd;
946 owner = acpi_debugger.owner;
947 mutex_unlock(&acpi_debugger.lock);
949 ret = func(buffer, buffer_length);
951 mutex_lock(&acpi_debugger.lock);
954 mutex_unlock(&acpi_debugger.lock);
958 int acpi_debugger_wait_command_ready(void)
961 int (*func)(bool, char *, size_t);
962 struct module *owner;
964 if (!acpi_debugger_initialized)
966 mutex_lock(&acpi_debugger.lock);
967 if (!acpi_debugger.ops) {
971 if (!try_module_get(acpi_debugger.owner)) {
975 func = acpi_debugger.ops->wait_command_ready;
976 owner = acpi_debugger.owner;
977 mutex_unlock(&acpi_debugger.lock);
979 ret = func(acpi_gbl_method_executing,
980 acpi_gbl_db_line_buf, ACPI_DB_LINE_BUFFER_SIZE);
982 mutex_lock(&acpi_debugger.lock);
985 mutex_unlock(&acpi_debugger.lock);
989 int acpi_debugger_notify_command_complete(void)
993 struct module *owner;
995 if (!acpi_debugger_initialized)
997 mutex_lock(&acpi_debugger.lock);
998 if (!acpi_debugger.ops) {
1002 if (!try_module_get(acpi_debugger.owner)) {
1006 func = acpi_debugger.ops->notify_command_complete;
1007 owner = acpi_debugger.owner;
1008 mutex_unlock(&acpi_debugger.lock);
1012 mutex_lock(&acpi_debugger.lock);
1015 mutex_unlock(&acpi_debugger.lock);
1019 int __init acpi_debugger_init(void)
1021 mutex_init(&acpi_debugger.lock);
1022 acpi_debugger_initialized = true;
1027 /*******************************************************************************
1029 * FUNCTION: acpi_os_execute
1031 * PARAMETERS: Type - Type of the callback
1032 * Function - Function to be executed
1033 * Context - Function parameters
1037 * DESCRIPTION: Depending on type, either queues function for deferred execution or
1038 * immediately executes function on a separate thread.
1040 ******************************************************************************/
1042 acpi_status acpi_os_execute(acpi_execute_type type,
1043 acpi_osd_exec_callback function, void *context)
1045 acpi_status status = AE_OK;
1046 struct acpi_os_dpc *dpc;
1047 struct workqueue_struct *queue;
1049 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
1050 "Scheduling function [%p(%p)] for deferred execution.\n",
1051 function, context));
1053 if (type == OSL_DEBUGGER_MAIN_THREAD) {
1054 ret = acpi_debugger_create_thread(function, context);
1056 pr_err("Call to kthread_create() failed.\n");
1063 * Allocate/initialize DPC structure. Note that this memory will be
1064 * freed by the callee. The kernel handles the work_struct list in a
1065 * way that allows us to also free its memory inside the callee.
1066 * Because we may want to schedule several tasks with different
1067 * parameters we can't use the approach some kernel code uses of
1068 * having a static work_struct.
1071 dpc = kzalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC);
1073 return AE_NO_MEMORY;
1075 dpc->function = function;
1076 dpc->context = context;
1079 * To prevent lockdep from complaining unnecessarily, make sure that
1080 * there is a different static lockdep key for each workqueue by using
1081 * INIT_WORK() for each of them separately.
1083 if (type == OSL_NOTIFY_HANDLER) {
1084 queue = kacpi_notify_wq;
1085 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
1086 } else if (type == OSL_GPE_HANDLER) {
1088 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
1090 pr_err("Unsupported os_execute type %d.\n", type);
1094 if (ACPI_FAILURE(status))
1098 * On some machines, a software-initiated SMI causes corruption unless
1099 * the SMI runs on CPU 0. An SMI can be initiated by any AML, but
1100 * typically it's done in GPE-related methods that are run via
1101 * workqueues, so we can avoid the known corruption cases by always
1102 * queueing on CPU 0.
1104 ret = queue_work_on(0, queue, &dpc->work);
1106 printk(KERN_ERR PREFIX
1107 "Call to queue_work() failed.\n");
1111 if (ACPI_FAILURE(status))
1116 EXPORT_SYMBOL(acpi_os_execute);
1118 void acpi_os_wait_events_complete(void)
1121 * Make sure the GPE handler or the fixed event handler is not used
1122 * on another CPU after removal.
1124 if (acpi_sci_irq_valid())
1125 synchronize_hardirq(acpi_sci_irq);
1126 flush_workqueue(kacpid_wq);
1127 flush_workqueue(kacpi_notify_wq);
1130 struct acpi_hp_work {
1131 struct work_struct work;
1132 struct acpi_device *adev;
1136 static void acpi_hotplug_work_fn(struct work_struct *work)
1138 struct acpi_hp_work *hpw = container_of(work, struct acpi_hp_work, work);
1140 acpi_os_wait_events_complete();
1141 acpi_device_hotplug(hpw->adev, hpw->src);
1145 acpi_status acpi_hotplug_schedule(struct acpi_device *adev, u32 src)
1147 struct acpi_hp_work *hpw;
1149 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
1150 "Scheduling hotplug event (%p, %u) for deferred execution.\n",
1153 hpw = kmalloc(sizeof(*hpw), GFP_KERNEL);
1155 return AE_NO_MEMORY;
1157 INIT_WORK(&hpw->work, acpi_hotplug_work_fn);
1161 * We can't run hotplug code in kacpid_wq/kacpid_notify_wq etc., because
1162 * the hotplug code may call driver .remove() functions, which may
1163 * invoke flush_scheduled_work()/acpi_os_wait_events_complete() to flush
1166 if (!queue_work(kacpi_hotplug_wq, &hpw->work)) {
1173 bool acpi_queue_hotplug_work(struct work_struct *work)
1175 return queue_work(kacpi_hotplug_wq, work);
1179 acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle)
1181 struct semaphore *sem = NULL;
1183 sem = acpi_os_allocate_zeroed(sizeof(struct semaphore));
1185 return AE_NO_MEMORY;
1187 sema_init(sem, initial_units);
1189 *handle = (acpi_handle *) sem;
1191 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n",
1192 *handle, initial_units));
1198 * TODO: A better way to delete semaphores? Linux doesn't have a
1199 * 'delete_semaphore()' function -- may result in an invalid
1200 * pointer dereference for non-synchronized consumers. Should
1201 * we at least check for blocked threads and signal/cancel them?
1204 acpi_status acpi_os_delete_semaphore(acpi_handle handle)
1206 struct semaphore *sem = (struct semaphore *)handle;
1209 return AE_BAD_PARAMETER;
1211 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle));
1213 BUG_ON(!list_empty(&sem->wait_list));
1221 * TODO: Support for units > 1?
1223 acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout)
1225 acpi_status status = AE_OK;
1226 struct semaphore *sem = (struct semaphore *)handle;
1230 if (!acpi_os_initialized)
1233 if (!sem || (units < 1))
1234 return AE_BAD_PARAMETER;
1239 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n",
1240 handle, units, timeout));
1242 if (timeout == ACPI_WAIT_FOREVER)
1243 jiffies = MAX_SCHEDULE_TIMEOUT;
1245 jiffies = msecs_to_jiffies(timeout);
1247 ret = down_timeout(sem, jiffies);
1251 if (ACPI_FAILURE(status)) {
1252 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
1253 "Failed to acquire semaphore[%p|%d|%d], %s",
1254 handle, units, timeout,
1255 acpi_format_exception(status)));
1257 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
1258 "Acquired semaphore[%p|%d|%d]", handle,
1266 * TODO: Support for units > 1?
1268 acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units)
1270 struct semaphore *sem = (struct semaphore *)handle;
1272 if (!acpi_os_initialized)
1275 if (!sem || (units < 1))
1276 return AE_BAD_PARAMETER;
1281 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle,
1289 acpi_status acpi_os_get_line(char *buffer, u32 buffer_length, u32 *bytes_read)
1291 #ifdef ENABLE_DEBUGGER
1292 if (acpi_in_debugger) {
1295 kdb_read(buffer, buffer_length);
1297 /* remove the CR kdb includes */
1298 chars = strlen(buffer) - 1;
1299 buffer[chars] = '\0';
1304 ret = acpi_debugger_read_cmd(buffer, buffer_length);
1313 EXPORT_SYMBOL(acpi_os_get_line);
1315 acpi_status acpi_os_wait_command_ready(void)
1319 ret = acpi_debugger_wait_command_ready();
1325 acpi_status acpi_os_notify_command_complete(void)
1329 ret = acpi_debugger_notify_command_complete();
1335 acpi_status acpi_os_signal(u32 function, void *info)
1338 case ACPI_SIGNAL_FATAL:
1339 printk(KERN_ERR PREFIX "Fatal opcode executed\n");
1341 case ACPI_SIGNAL_BREAKPOINT:
1344 * ACPI spec. says to treat it as a NOP unless
1345 * you are debugging. So if/when we integrate
1346 * AML debugger into the kernel debugger its
1347 * hook will go here. But until then it is
1348 * not useful to print anything on breakpoints.
1358 static int __init acpi_os_name_setup(char *str)
1360 char *p = acpi_os_name;
1361 int count = ACPI_MAX_OVERRIDE_LEN - 1;
1366 for (; count-- && *str; str++) {
1367 if (isalnum(*str) || *str == ' ' || *str == ':')
1369 else if (*str == '\'' || *str == '"')
1380 __setup("acpi_os_name=", acpi_os_name_setup);
1383 * Disable the auto-serialization of named objects creation methods.
1385 * This feature is enabled by default. It marks the AML control methods
1386 * that contain the opcodes to create named objects as "Serialized".
1388 static int __init acpi_no_auto_serialize_setup(char *str)
1390 acpi_gbl_auto_serialize_methods = FALSE;
1391 pr_info("ACPI: auto-serialization disabled\n");
1396 __setup("acpi_no_auto_serialize", acpi_no_auto_serialize_setup);
1398 /* Check of resource interference between native drivers and ACPI
1399 * OperationRegions (SystemIO and System Memory only).
1400 * IO ports and memory declared in ACPI might be used by the ACPI subsystem
1401 * in arbitrary AML code and can interfere with legacy drivers.
1402 * acpi_enforce_resources= can be set to:
1404 * - strict (default) (2)
1405 * -> further driver trying to access the resources will not load
1407 * -> further driver trying to access the resources will load, but you
1408 * get a system message that something might go wrong...
1411 * -> ACPI Operation Region resources will not be registered
1414 #define ENFORCE_RESOURCES_STRICT 2
1415 #define ENFORCE_RESOURCES_LAX 1
1416 #define ENFORCE_RESOURCES_NO 0
1418 static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1420 static int __init acpi_enforce_resources_setup(char *str)
1422 if (str == NULL || *str == '\0')
1425 if (!strcmp("strict", str))
1426 acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1427 else if (!strcmp("lax", str))
1428 acpi_enforce_resources = ENFORCE_RESOURCES_LAX;
1429 else if (!strcmp("no", str))
1430 acpi_enforce_resources = ENFORCE_RESOURCES_NO;
1435 __setup("acpi_enforce_resources=", acpi_enforce_resources_setup);
1437 /* Check for resource conflicts between ACPI OperationRegions and native
1439 int acpi_check_resource_conflict(const struct resource *res)
1441 acpi_adr_space_type space_id;
1446 if (acpi_enforce_resources == ENFORCE_RESOURCES_NO)
1448 if (!(res->flags & IORESOURCE_IO) && !(res->flags & IORESOURCE_MEM))
1451 if (res->flags & IORESOURCE_IO)
1452 space_id = ACPI_ADR_SPACE_SYSTEM_IO;
1454 space_id = ACPI_ADR_SPACE_SYSTEM_MEMORY;
1456 length = resource_size(res);
1457 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO)
1459 clash = acpi_check_address_range(space_id, res->start, length, warn);
1462 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO) {
1463 if (acpi_enforce_resources == ENFORCE_RESOURCES_LAX)
1464 printk(KERN_NOTICE "ACPI: This conflict may"
1465 " cause random problems and system"
1467 printk(KERN_INFO "ACPI: If an ACPI driver is available"
1468 " for this device, you should use it instead of"
1469 " the native driver\n");
1471 if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT)
1476 EXPORT_SYMBOL(acpi_check_resource_conflict);
1478 int acpi_check_region(resource_size_t start, resource_size_t n,
1481 struct resource res = {
1483 .end = start + n - 1,
1485 .flags = IORESOURCE_IO,
1488 return acpi_check_resource_conflict(&res);
1490 EXPORT_SYMBOL(acpi_check_region);
1493 * Let drivers know whether the resource checks are effective
1495 int acpi_resources_are_enforced(void)
1497 return acpi_enforce_resources == ENFORCE_RESOURCES_STRICT;
1499 EXPORT_SYMBOL(acpi_resources_are_enforced);
1502 * Deallocate the memory for a spinlock.
1504 void acpi_os_delete_lock(acpi_spinlock handle)
1510 * Acquire a spinlock.
1512 * handle is a pointer to the spinlock_t.
1515 acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp)
1517 acpi_cpu_flags flags;
1518 spin_lock_irqsave(lockp, flags);
1523 * Release a spinlock. See above.
1526 void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags)
1528 spin_unlock_irqrestore(lockp, flags);
1531 #ifndef ACPI_USE_LOCAL_CACHE
1533 /*******************************************************************************
1535 * FUNCTION: acpi_os_create_cache
1537 * PARAMETERS: name - Ascii name for the cache
1538 * size - Size of each cached object
1539 * depth - Maximum depth of the cache (in objects) <ignored>
1540 * cache - Where the new cache object is returned
1544 * DESCRIPTION: Create a cache object
1546 ******************************************************************************/
1549 acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache)
1551 *cache = kmem_cache_create(name, size, 0, 0, NULL);
1558 /*******************************************************************************
1560 * FUNCTION: acpi_os_purge_cache
1562 * PARAMETERS: Cache - Handle to cache object
1566 * DESCRIPTION: Free all objects within the requested cache.
1568 ******************************************************************************/
1570 acpi_status acpi_os_purge_cache(acpi_cache_t * cache)
1572 kmem_cache_shrink(cache);
1576 /*******************************************************************************
1578 * FUNCTION: acpi_os_delete_cache
1580 * PARAMETERS: Cache - Handle to cache object
1584 * DESCRIPTION: Free all objects within the requested cache and delete the
1587 ******************************************************************************/
1589 acpi_status acpi_os_delete_cache(acpi_cache_t * cache)
1591 kmem_cache_destroy(cache);
1595 /*******************************************************************************
1597 * FUNCTION: acpi_os_release_object
1599 * PARAMETERS: Cache - Handle to cache object
1600 * Object - The object to be released
1604 * DESCRIPTION: Release an object to the specified cache. If cache is full,
1605 * the object is deleted.
1607 ******************************************************************************/
1609 acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object)
1611 kmem_cache_free(cache, object);
1616 static int __init acpi_no_static_ssdt_setup(char *s)
1618 acpi_gbl_disable_ssdt_table_install = TRUE;
1619 pr_info("ACPI: static SSDT installation disabled\n");
1624 early_param("acpi_no_static_ssdt", acpi_no_static_ssdt_setup);
1626 static int __init acpi_disable_return_repair(char *s)
1628 printk(KERN_NOTICE PREFIX
1629 "ACPI: Predefined validation mechanism disabled\n");
1630 acpi_gbl_disable_auto_repair = TRUE;
1635 __setup("acpica_no_return_repair", acpi_disable_return_repair);
1637 acpi_status __init acpi_os_initialize(void)
1639 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1640 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1641 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe0_block);
1642 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe1_block);
1643 if (acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER) {
1645 * Use acpi_os_map_generic_address to pre-map the reset
1646 * register if it's in system memory.
1650 rv = acpi_os_map_generic_address(&acpi_gbl_FADT.reset_register);
1651 pr_debug(PREFIX "%s: map reset_reg status %d\n", __func__, rv);
1653 acpi_os_initialized = true;
1658 acpi_status __init acpi_os_initialize1(void)
1660 kacpid_wq = alloc_workqueue("kacpid", 0, 1);
1661 kacpi_notify_wq = alloc_workqueue("kacpi_notify", 0, 1);
1662 kacpi_hotplug_wq = alloc_ordered_workqueue("kacpi_hotplug", 0);
1664 BUG_ON(!kacpi_notify_wq);
1665 BUG_ON(!kacpi_hotplug_wq);
1670 acpi_status acpi_os_terminate(void)
1672 if (acpi_irq_handler) {
1673 acpi_os_remove_interrupt_handler(acpi_gbl_FADT.sci_interrupt,
1677 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe1_block);
1678 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe0_block);
1679 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1680 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1681 if (acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER)
1682 acpi_os_unmap_generic_address(&acpi_gbl_FADT.reset_register);
1684 destroy_workqueue(kacpid_wq);
1685 destroy_workqueue(kacpi_notify_wq);
1686 destroy_workqueue(kacpi_hotplug_wq);
1691 acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control,
1695 if (__acpi_os_prepare_sleep)
1696 rc = __acpi_os_prepare_sleep(sleep_state,
1697 pm1a_control, pm1b_control);
1701 return AE_CTRL_SKIP;
1706 void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state,
1707 u32 pm1a_ctrl, u32 pm1b_ctrl))
1709 __acpi_os_prepare_sleep = func;
1712 acpi_status acpi_os_prepare_extended_sleep(u8 sleep_state, u32 val_a,
1716 if (__acpi_os_prepare_extended_sleep)
1717 rc = __acpi_os_prepare_extended_sleep(sleep_state,
1722 return AE_CTRL_SKIP;
1727 void acpi_os_set_prepare_extended_sleep(int (*func)(u8 sleep_state,
1728 u32 val_a, u32 val_b))
1730 __acpi_os_prepare_extended_sleep = func;