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 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
30 #include <linux/module.h>
31 #include <linux/kernel.h>
32 #include <linux/slab.h>
34 #include <linux/highmem.h>
35 #include <linux/pci.h>
36 #include <linux/interrupt.h>
37 #include <linux/kmod.h>
38 #include <linux/delay.h>
39 #include <linux/workqueue.h>
40 #include <linux/nmi.h>
41 #include <linux/acpi.h>
42 #include <linux/efi.h>
43 #include <linux/ioport.h>
44 #include <linux/list.h>
45 #include <linux/jiffies.h>
46 #include <linux/semaphore.h>
49 #include <asm/uaccess.h>
53 #define _COMPONENT ACPI_OS_SERVICES
54 ACPI_MODULE_NAME("osl");
57 acpi_osd_exec_callback function;
59 struct work_struct work;
62 #ifdef CONFIG_ACPI_CUSTOM_DSDT
63 #include CONFIG_ACPI_CUSTOM_DSDT_FILE
66 #ifdef ENABLE_DEBUGGER
67 #include <linux/kdb.h>
69 /* stuff for debugger support */
71 EXPORT_SYMBOL(acpi_in_debugger);
73 extern char line_buf[80];
74 #endif /*ENABLE_DEBUGGER */
76 static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl,
78 static int (*__acpi_os_prepare_extended_sleep)(u8 sleep_state, u32 val_a,
81 static acpi_osd_handler acpi_irq_handler;
82 static void *acpi_irq_context;
83 static struct workqueue_struct *kacpid_wq;
84 static struct workqueue_struct *kacpi_notify_wq;
85 static struct workqueue_struct *kacpi_hotplug_wq;
88 * This list of permanent mappings is for memory that may be accessed from
89 * interrupt context, where we can't do the ioremap().
92 struct list_head list;
94 acpi_physical_address phys;
96 unsigned long refcount;
99 static LIST_HEAD(acpi_ioremaps);
100 static DEFINE_MUTEX(acpi_ioremap_lock);
102 static void __init acpi_osi_setup_late(void);
105 * The story of _OSI(Linux)
107 * From pre-history through Linux-2.6.22,
108 * Linux responded TRUE upon a BIOS OSI(Linux) query.
110 * Unfortunately, reference BIOS writers got wind of this
111 * and put OSI(Linux) in their example code, quickly exposing
112 * this string as ill-conceived and opening the door to
113 * an un-bounded number of BIOS incompatibilities.
115 * For example, OSI(Linux) was used on resume to re-POST a
116 * video card on one system, because Linux at that time
117 * could not do a speedy restore in its native driver.
118 * But then upon gaining quick native restore capability,
119 * Linux has no way to tell the BIOS to skip the time-consuming
120 * POST -- putting Linux at a permanent performance disadvantage.
121 * On another system, the BIOS writer used OSI(Linux)
122 * to infer native OS support for IPMI! On other systems,
123 * OSI(Linux) simply got in the way of Linux claiming to
124 * be compatible with other operating systems, exposing
125 * BIOS issues such as skipped device initialization.
127 * So "Linux" turned out to be a really poor chose of
128 * OSI string, and from Linux-2.6.23 onward we respond FALSE.
130 * BIOS writers should NOT query _OSI(Linux) on future systems.
131 * Linux will complain on the console when it sees it, and return FALSE.
132 * To get Linux to return TRUE for your system will require
133 * a kernel source update to add a DMI entry,
134 * or boot with "acpi_osi=Linux"
137 static struct osi_linux {
138 unsigned int enable:1;
140 unsigned int cmdline:1;
141 unsigned int default_disabling:1;
142 } osi_linux = {0, 0, 0, 0};
144 static u32 acpi_osi_handler(acpi_string interface, u32 supported)
146 if (!strcmp("Linux", interface)) {
148 printk_once(KERN_NOTICE FW_BUG PREFIX
149 "BIOS _OSI(Linux) query %s%s\n",
150 osi_linux.enable ? "honored" : "ignored",
151 osi_linux.cmdline ? " via cmdline" :
152 osi_linux.dmi ? " via DMI" : "");
158 static void __init acpi_request_region (struct acpi_generic_address *gas,
159 unsigned int length, char *desc)
163 /* Handle possible alignment issues */
164 memcpy(&addr, &gas->address, sizeof(addr));
165 if (!addr || !length)
168 /* Resources are never freed */
169 if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_IO)
170 request_region(addr, length, desc);
171 else if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
172 request_mem_region(addr, length, desc);
175 static int __init acpi_reserve_resources(void)
177 acpi_request_region(&acpi_gbl_FADT.xpm1a_event_block, acpi_gbl_FADT.pm1_event_length,
178 "ACPI PM1a_EVT_BLK");
180 acpi_request_region(&acpi_gbl_FADT.xpm1b_event_block, acpi_gbl_FADT.pm1_event_length,
181 "ACPI PM1b_EVT_BLK");
183 acpi_request_region(&acpi_gbl_FADT.xpm1a_control_block, acpi_gbl_FADT.pm1_control_length,
184 "ACPI PM1a_CNT_BLK");
186 acpi_request_region(&acpi_gbl_FADT.xpm1b_control_block, acpi_gbl_FADT.pm1_control_length,
187 "ACPI PM1b_CNT_BLK");
189 if (acpi_gbl_FADT.pm_timer_length == 4)
190 acpi_request_region(&acpi_gbl_FADT.xpm_timer_block, 4, "ACPI PM_TMR");
192 acpi_request_region(&acpi_gbl_FADT.xpm2_control_block, acpi_gbl_FADT.pm2_control_length,
195 /* Length of GPE blocks must be a non-negative multiple of 2 */
197 if (!(acpi_gbl_FADT.gpe0_block_length & 0x1))
198 acpi_request_region(&acpi_gbl_FADT.xgpe0_block,
199 acpi_gbl_FADT.gpe0_block_length, "ACPI GPE0_BLK");
201 if (!(acpi_gbl_FADT.gpe1_block_length & 0x1))
202 acpi_request_region(&acpi_gbl_FADT.xgpe1_block,
203 acpi_gbl_FADT.gpe1_block_length, "ACPI GPE1_BLK");
207 device_initcall(acpi_reserve_resources);
209 void acpi_os_printf(const char *fmt, ...)
213 acpi_os_vprintf(fmt, args);
217 void acpi_os_vprintf(const char *fmt, va_list args)
219 static char buffer[512];
221 vsprintf(buffer, fmt, args);
223 #ifdef ENABLE_DEBUGGER
224 if (acpi_in_debugger) {
225 kdb_printf("%s", buffer);
227 printk(KERN_CONT "%s", buffer);
230 printk(KERN_CONT "%s", buffer);
235 static unsigned long acpi_rsdp;
236 static int __init setup_acpi_rsdp(char *arg)
238 acpi_rsdp = simple_strtoul(arg, NULL, 16);
241 early_param("acpi_rsdp", setup_acpi_rsdp);
244 acpi_physical_address __init acpi_os_get_root_pointer(void)
251 if (efi_enabled(EFI_CONFIG_TABLES)) {
252 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
254 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
257 printk(KERN_ERR PREFIX
258 "System description tables not found\n");
262 acpi_physical_address pa = 0;
264 acpi_find_root_pointer(&pa);
269 /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
270 static struct acpi_ioremap *
271 acpi_map_lookup(acpi_physical_address phys, acpi_size size)
273 struct acpi_ioremap *map;
275 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
276 if (map->phys <= phys &&
277 phys + size <= map->phys + map->size)
283 /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
284 static void __iomem *
285 acpi_map_vaddr_lookup(acpi_physical_address phys, unsigned int size)
287 struct acpi_ioremap *map;
289 map = acpi_map_lookup(phys, size);
291 return map->virt + (phys - map->phys);
296 void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size)
298 struct acpi_ioremap *map;
299 void __iomem *virt = NULL;
301 mutex_lock(&acpi_ioremap_lock);
302 map = acpi_map_lookup(phys, size);
304 virt = map->virt + (phys - map->phys);
307 mutex_unlock(&acpi_ioremap_lock);
310 EXPORT_SYMBOL_GPL(acpi_os_get_iomem);
312 /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
313 static struct acpi_ioremap *
314 acpi_map_lookup_virt(void __iomem *virt, acpi_size size)
316 struct acpi_ioremap *map;
318 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
319 if (map->virt <= virt &&
320 virt + size <= map->virt + map->size)
327 #define should_use_kmap(pfn) page_is_ram(pfn)
329 /* ioremap will take care of cache attributes */
330 #define should_use_kmap(pfn) 0
333 static void __iomem *acpi_map(acpi_physical_address pg_off, unsigned long pg_sz)
337 pfn = pg_off >> PAGE_SHIFT;
338 if (should_use_kmap(pfn)) {
339 if (pg_sz > PAGE_SIZE)
341 return (void __iomem __force *)kmap(pfn_to_page(pfn));
343 return acpi_os_ioremap(pg_off, pg_sz);
346 static void acpi_unmap(acpi_physical_address pg_off, void __iomem *vaddr)
350 pfn = pg_off >> PAGE_SHIFT;
351 if (should_use_kmap(pfn))
352 kunmap(pfn_to_page(pfn));
357 void __iomem *__init_refok
358 acpi_os_map_iomem(acpi_physical_address phys, acpi_size size)
360 struct acpi_ioremap *map;
362 acpi_physical_address pg_off;
365 if (phys > ULONG_MAX) {
366 printk(KERN_ERR PREFIX "Cannot map memory that high\n");
370 if (!acpi_gbl_permanent_mmap)
371 return __acpi_map_table((unsigned long)phys, size);
373 mutex_lock(&acpi_ioremap_lock);
374 /* Check if there's a suitable mapping already. */
375 map = acpi_map_lookup(phys, size);
381 map = kzalloc(sizeof(*map), GFP_KERNEL);
383 mutex_unlock(&acpi_ioremap_lock);
387 pg_off = round_down(phys, PAGE_SIZE);
388 pg_sz = round_up(phys + size, PAGE_SIZE) - pg_off;
389 virt = acpi_map(pg_off, pg_sz);
391 mutex_unlock(&acpi_ioremap_lock);
396 INIT_LIST_HEAD(&map->list);
402 list_add_tail_rcu(&map->list, &acpi_ioremaps);
405 mutex_unlock(&acpi_ioremap_lock);
406 return map->virt + (phys - map->phys);
408 EXPORT_SYMBOL_GPL(acpi_os_map_iomem);
411 acpi_os_map_memory(acpi_physical_address phys, acpi_size size)
413 return (void *)acpi_os_map_iomem(phys, size);
415 EXPORT_SYMBOL_GPL(acpi_os_map_memory);
417 static void acpi_os_drop_map_ref(struct acpi_ioremap *map)
419 if (!--map->refcount)
420 list_del_rcu(&map->list);
423 static void acpi_os_map_cleanup(struct acpi_ioremap *map)
425 if (!map->refcount) {
427 acpi_unmap(map->phys, map->virt);
432 void __ref acpi_os_unmap_iomem(void __iomem *virt, acpi_size size)
434 struct acpi_ioremap *map;
436 if (!acpi_gbl_permanent_mmap) {
437 __acpi_unmap_table(virt, size);
441 mutex_lock(&acpi_ioremap_lock);
442 map = acpi_map_lookup_virt(virt, size);
444 mutex_unlock(&acpi_ioremap_lock);
445 WARN(true, PREFIX "%s: bad address %p\n", __func__, virt);
448 acpi_os_drop_map_ref(map);
449 mutex_unlock(&acpi_ioremap_lock);
451 acpi_os_map_cleanup(map);
453 EXPORT_SYMBOL_GPL(acpi_os_unmap_iomem);
455 void __ref acpi_os_unmap_memory(void *virt, acpi_size size)
457 return acpi_os_unmap_iomem((void __iomem *)virt, size);
459 EXPORT_SYMBOL_GPL(acpi_os_unmap_memory);
461 void __init early_acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
463 if (!acpi_gbl_permanent_mmap)
464 __acpi_unmap_table(virt, size);
467 int acpi_os_map_generic_address(struct acpi_generic_address *gas)
472 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
475 /* Handle possible alignment issues */
476 memcpy(&addr, &gas->address, sizeof(addr));
477 if (!addr || !gas->bit_width)
480 virt = acpi_os_map_iomem(addr, gas->bit_width / 8);
486 EXPORT_SYMBOL(acpi_os_map_generic_address);
488 void acpi_os_unmap_generic_address(struct acpi_generic_address *gas)
491 struct acpi_ioremap *map;
493 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
496 /* Handle possible alignment issues */
497 memcpy(&addr, &gas->address, sizeof(addr));
498 if (!addr || !gas->bit_width)
501 mutex_lock(&acpi_ioremap_lock);
502 map = acpi_map_lookup(addr, gas->bit_width / 8);
504 mutex_unlock(&acpi_ioremap_lock);
507 acpi_os_drop_map_ref(map);
508 mutex_unlock(&acpi_ioremap_lock);
510 acpi_os_map_cleanup(map);
512 EXPORT_SYMBOL(acpi_os_unmap_generic_address);
514 #ifdef ACPI_FUTURE_USAGE
516 acpi_os_get_physical_address(void *virt, acpi_physical_address * phys)
519 return AE_BAD_PARAMETER;
521 *phys = virt_to_phys(virt);
527 #define ACPI_MAX_OVERRIDE_LEN 100
529 static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN];
532 acpi_os_predefined_override(const struct acpi_predefined_names *init_val,
533 acpi_string * new_val)
535 if (!init_val || !new_val)
536 return AE_BAD_PARAMETER;
539 if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) {
540 printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n",
542 *new_val = acpi_os_name;
548 #ifdef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
549 #include <linux/earlycpio.h>
550 #include <linux/memblock.h>
552 static u64 acpi_tables_addr;
553 static int all_tables_size;
555 /* Copied from acpica/tbutils.c:acpi_tb_checksum() */
556 static u8 __init acpi_table_checksum(u8 *buffer, u32 length)
559 u8 *end = buffer + length;
562 sum = (u8) (sum + *(buffer++));
566 /* All but ACPI_SIG_RSDP and ACPI_SIG_FACS: */
567 static const char * const table_sigs[] = {
568 ACPI_SIG_BERT, ACPI_SIG_CPEP, ACPI_SIG_ECDT, ACPI_SIG_EINJ,
569 ACPI_SIG_ERST, ACPI_SIG_HEST, ACPI_SIG_MADT, ACPI_SIG_MSCT,
570 ACPI_SIG_SBST, ACPI_SIG_SLIT, ACPI_SIG_SRAT, ACPI_SIG_ASF,
571 ACPI_SIG_BOOT, ACPI_SIG_DBGP, ACPI_SIG_DMAR, ACPI_SIG_HPET,
572 ACPI_SIG_IBFT, ACPI_SIG_IVRS, ACPI_SIG_MCFG, ACPI_SIG_MCHI,
573 ACPI_SIG_SLIC, ACPI_SIG_SPCR, ACPI_SIG_SPMI, ACPI_SIG_TCPA,
574 ACPI_SIG_UEFI, ACPI_SIG_WAET, ACPI_SIG_WDAT, ACPI_SIG_WDDT,
575 ACPI_SIG_WDRT, ACPI_SIG_DSDT, ACPI_SIG_FADT, ACPI_SIG_PSDT,
576 ACPI_SIG_RSDT, ACPI_SIG_XSDT, ACPI_SIG_SSDT, NULL };
578 #define ACPI_HEADER_SIZE sizeof(struct acpi_table_header)
580 #define ACPI_OVERRIDE_TABLES 64
581 static struct cpio_data __initdata acpi_initrd_files[ACPI_OVERRIDE_TABLES];
583 #define MAP_CHUNK_SIZE (NR_FIX_BTMAPS << PAGE_SHIFT)
585 void __init acpi_initrd_override(void *data, size_t size)
587 int sig, no, table_nr = 0, total_offset = 0;
589 struct acpi_table_header *table;
590 char cpio_path[32] = "kernel/firmware/acpi/";
591 struct cpio_data file;
593 if (data == NULL || size == 0)
596 for (no = 0; no < ACPI_OVERRIDE_TABLES; no++) {
597 file = find_cpio_data(cpio_path, data, size, &offset);
604 if (file.size < sizeof(struct acpi_table_header)) {
605 pr_err("ACPI OVERRIDE: Table smaller than ACPI header [%s%s]\n",
606 cpio_path, file.name);
612 for (sig = 0; table_sigs[sig]; sig++)
613 if (!memcmp(table->signature, table_sigs[sig], 4))
616 if (!table_sigs[sig]) {
617 pr_err("ACPI OVERRIDE: Unknown signature [%s%s]\n",
618 cpio_path, file.name);
621 if (file.size != table->length) {
622 pr_err("ACPI OVERRIDE: File length does not match table length [%s%s]\n",
623 cpio_path, file.name);
626 if (acpi_table_checksum(file.data, table->length)) {
627 pr_err("ACPI OVERRIDE: Bad table checksum [%s%s]\n",
628 cpio_path, file.name);
632 pr_info("%4.4s ACPI table found in initrd [%s%s][0x%x]\n",
633 table->signature, cpio_path, file.name, table->length);
635 all_tables_size += table->length;
636 acpi_initrd_files[table_nr].data = file.data;
637 acpi_initrd_files[table_nr].size = file.size;
644 memblock_find_in_range(0, max_low_pfn_mapped << PAGE_SHIFT,
645 all_tables_size, PAGE_SIZE);
646 if (!acpi_tables_addr) {
651 * Only calling e820_add_reserve does not work and the
652 * tables are invalid (memory got used) later.
653 * memblock_reserve works as expected and the tables won't get modified.
654 * But it's not enough on X86 because ioremap will
655 * complain later (used by acpi_os_map_memory) that the pages
656 * that should get mapped are not marked "reserved".
657 * Both memblock_reserve and e820_add_region (via arch_reserve_mem_area)
660 memblock_reserve(acpi_tables_addr, all_tables_size);
661 arch_reserve_mem_area(acpi_tables_addr, all_tables_size);
664 * early_ioremap only can remap 256k one time. If we map all
665 * tables one time, we will hit the limit. Need to map chunks
666 * one by one during copying the same as that in relocate_initrd().
668 for (no = 0; no < table_nr; no++) {
669 unsigned char *src_p = acpi_initrd_files[no].data;
670 phys_addr_t size = acpi_initrd_files[no].size;
671 phys_addr_t dest_addr = acpi_tables_addr + total_offset;
672 phys_addr_t slop, clen;
675 total_offset += size;
678 slop = dest_addr & ~PAGE_MASK;
680 if (clen > MAP_CHUNK_SIZE - slop)
681 clen = MAP_CHUNK_SIZE - slop;
682 dest_p = early_ioremap(dest_addr & PAGE_MASK,
684 memcpy(dest_p + slop, src_p, clen);
685 early_iounmap(dest_p, clen + slop);
692 #endif /* CONFIG_ACPI_INITRD_TABLE_OVERRIDE */
694 static void acpi_table_taint(struct acpi_table_header *table)
697 "Override [%4.4s-%8.8s], this is unsafe: tainting kernel\n",
698 table->signature, table->oem_table_id);
699 add_taint(TAINT_OVERRIDDEN_ACPI_TABLE, LOCKDEP_NOW_UNRELIABLE);
704 acpi_os_table_override(struct acpi_table_header * existing_table,
705 struct acpi_table_header ** new_table)
707 if (!existing_table || !new_table)
708 return AE_BAD_PARAMETER;
712 #ifdef CONFIG_ACPI_CUSTOM_DSDT
713 if (strncmp(existing_table->signature, "DSDT", 4) == 0)
714 *new_table = (struct acpi_table_header *)AmlCode;
716 if (*new_table != NULL)
717 acpi_table_taint(existing_table);
722 acpi_os_physical_table_override(struct acpi_table_header *existing_table,
723 acpi_physical_address *address,
726 #ifndef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
731 int table_offset = 0;
732 struct acpi_table_header *table;
737 if (!acpi_tables_addr)
741 if (table_offset + ACPI_HEADER_SIZE > all_tables_size) {
746 table = acpi_os_map_memory(acpi_tables_addr + table_offset,
749 if (table_offset + table->length > all_tables_size) {
750 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
755 table_offset += table->length;
757 if (memcmp(existing_table->signature, table->signature, 4)) {
758 acpi_os_unmap_memory(table,
763 /* Only override tables with matching oem id */
764 if (memcmp(table->oem_table_id, existing_table->oem_table_id,
765 ACPI_OEM_TABLE_ID_SIZE)) {
766 acpi_os_unmap_memory(table,
771 table_offset -= table->length;
772 *table_length = table->length;
773 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
774 *address = acpi_tables_addr + table_offset;
776 } while (table_offset + ACPI_HEADER_SIZE < all_tables_size);
779 acpi_table_taint(existing_table);
784 static irqreturn_t acpi_irq(int irq, void *dev_id)
788 handled = (*acpi_irq_handler) (acpi_irq_context);
794 acpi_irq_not_handled++;
800 acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
805 acpi_irq_stats_init();
808 * ACPI interrupts different from the SCI in our copy of the FADT are
811 if (gsi != acpi_gbl_FADT.sci_interrupt)
812 return AE_BAD_PARAMETER;
814 if (acpi_irq_handler)
815 return AE_ALREADY_ACQUIRED;
817 if (acpi_gsi_to_irq(gsi, &irq) < 0) {
818 printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n",
823 acpi_irq_handler = handler;
824 acpi_irq_context = context;
825 if (request_irq(irq, acpi_irq, IRQF_SHARED | IRQF_NO_SUSPEND, "acpi", acpi_irq)) {
826 printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq);
827 acpi_irq_handler = NULL;
828 return AE_NOT_ACQUIRED;
834 acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler)
836 if (irq != acpi_gbl_FADT.sci_interrupt)
837 return AE_BAD_PARAMETER;
839 free_irq(irq, acpi_irq);
840 acpi_irq_handler = NULL;
846 * Running in interpreter thread context, safe to sleep
849 void acpi_os_sleep(u64 ms)
854 void acpi_os_stall(u32 us)
862 touch_nmi_watchdog();
868 * Support ACPI 3.0 AML Timer operand
869 * Returns 64-bit free-running, monotonically increasing timer
870 * with 100ns granularity
872 u64 acpi_os_get_timer(void)
874 u64 time_ns = ktime_to_ns(ktime_get());
875 do_div(time_ns, 100);
879 acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
888 *(u8 *) value = inb(port);
889 } else if (width <= 16) {
890 *(u16 *) value = inw(port);
891 } else if (width <= 32) {
892 *(u32 *) value = inl(port);
900 EXPORT_SYMBOL(acpi_os_read_port);
902 acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width)
906 } else if (width <= 16) {
908 } else if (width <= 32) {
917 EXPORT_SYMBOL(acpi_os_write_port);
920 static inline u64 read64(const volatile void __iomem *addr)
925 static inline u64 read64(const volatile void __iomem *addr)
930 return l | (h << 32);
935 acpi_os_read_memory(acpi_physical_address phys_addr, u64 *value, u32 width)
937 void __iomem *virt_addr;
938 unsigned int size = width / 8;
943 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
946 virt_addr = acpi_os_ioremap(phys_addr, size);
948 return AE_BAD_ADDRESS;
957 *(u8 *) value = readb(virt_addr);
960 *(u16 *) value = readw(virt_addr);
963 *(u32 *) value = readl(virt_addr);
966 *(u64 *) value = read64(virt_addr);
981 static inline void write64(u64 val, volatile void __iomem *addr)
986 static inline void write64(u64 val, volatile void __iomem *addr)
989 writel(val>>32, addr+4);
994 acpi_os_write_memory(acpi_physical_address phys_addr, u64 value, u32 width)
996 void __iomem *virt_addr;
997 unsigned int size = width / 8;
1001 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
1004 virt_addr = acpi_os_ioremap(phys_addr, size);
1006 return AE_BAD_ADDRESS;
1012 writeb(value, virt_addr);
1015 writew(value, virt_addr);
1018 writel(value, virt_addr);
1021 write64(value, virt_addr);
1036 acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
1037 u64 *value, u32 width)
1043 return AE_BAD_PARAMETER;
1059 result = raw_pci_read(pci_id->segment, pci_id->bus,
1060 PCI_DEVFN(pci_id->device, pci_id->function),
1061 reg, size, &value32);
1064 return (result ? AE_ERROR : AE_OK);
1068 acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
1069 u64 value, u32 width)
1087 result = raw_pci_write(pci_id->segment, pci_id->bus,
1088 PCI_DEVFN(pci_id->device, pci_id->function),
1091 return (result ? AE_ERROR : AE_OK);
1094 static void acpi_os_execute_deferred(struct work_struct *work)
1096 struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work);
1098 dpc->function(dpc->context);
1102 /*******************************************************************************
1104 * FUNCTION: acpi_os_execute
1106 * PARAMETERS: Type - Type of the callback
1107 * Function - Function to be executed
1108 * Context - Function parameters
1112 * DESCRIPTION: Depending on type, either queues function for deferred execution or
1113 * immediately executes function on a separate thread.
1115 ******************************************************************************/
1117 acpi_status acpi_os_execute(acpi_execute_type type,
1118 acpi_osd_exec_callback function, void *context)
1120 acpi_status status = AE_OK;
1121 struct acpi_os_dpc *dpc;
1122 struct workqueue_struct *queue;
1124 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
1125 "Scheduling function [%p(%p)] for deferred execution.\n",
1126 function, context));
1129 * Allocate/initialize DPC structure. Note that this memory will be
1130 * freed by the callee. The kernel handles the work_struct list in a
1131 * way that allows us to also free its memory inside the callee.
1132 * Because we may want to schedule several tasks with different
1133 * parameters we can't use the approach some kernel code uses of
1134 * having a static work_struct.
1137 dpc = kzalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC);
1139 return AE_NO_MEMORY;
1141 dpc->function = function;
1142 dpc->context = context;
1145 * To prevent lockdep from complaining unnecessarily, make sure that
1146 * there is a different static lockdep key for each workqueue by using
1147 * INIT_WORK() for each of them separately.
1149 if (type == OSL_NOTIFY_HANDLER) {
1150 queue = kacpi_notify_wq;
1151 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
1154 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
1158 * On some machines, a software-initiated SMI causes corruption unless
1159 * the SMI runs on CPU 0. An SMI can be initiated by any AML, but
1160 * typically it's done in GPE-related methods that are run via
1161 * workqueues, so we can avoid the known corruption cases by always
1162 * queueing on CPU 0.
1164 ret = queue_work_on(0, queue, &dpc->work);
1167 printk(KERN_ERR PREFIX
1168 "Call to queue_work() failed.\n");
1174 EXPORT_SYMBOL(acpi_os_execute);
1176 void acpi_os_wait_events_complete(void)
1178 flush_workqueue(kacpid_wq);
1179 flush_workqueue(kacpi_notify_wq);
1182 struct acpi_hp_work {
1183 struct work_struct work;
1184 struct acpi_device *adev;
1188 static void acpi_hotplug_work_fn(struct work_struct *work)
1190 struct acpi_hp_work *hpw = container_of(work, struct acpi_hp_work, work);
1192 acpi_os_wait_events_complete();
1193 acpi_device_hotplug(hpw->adev, hpw->src);
1197 acpi_status acpi_hotplug_schedule(struct acpi_device *adev, u32 src)
1199 struct acpi_hp_work *hpw;
1201 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
1202 "Scheduling hotplug event (%p, %u) for deferred execution.\n",
1205 hpw = kmalloc(sizeof(*hpw), GFP_KERNEL);
1207 return AE_NO_MEMORY;
1209 INIT_WORK(&hpw->work, acpi_hotplug_work_fn);
1213 * We can't run hotplug code in kacpid_wq/kacpid_notify_wq etc., because
1214 * the hotplug code may call driver .remove() functions, which may
1215 * invoke flush_scheduled_work()/acpi_os_wait_events_complete() to flush
1218 if (!queue_work(kacpi_hotplug_wq, &hpw->work)) {
1225 bool acpi_queue_hotplug_work(struct work_struct *work)
1227 return queue_work(kacpi_hotplug_wq, work);
1231 acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle)
1233 struct semaphore *sem = NULL;
1235 sem = acpi_os_allocate_zeroed(sizeof(struct semaphore));
1237 return AE_NO_MEMORY;
1239 sema_init(sem, initial_units);
1241 *handle = (acpi_handle *) sem;
1243 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n",
1244 *handle, initial_units));
1250 * TODO: A better way to delete semaphores? Linux doesn't have a
1251 * 'delete_semaphore()' function -- may result in an invalid
1252 * pointer dereference for non-synchronized consumers. Should
1253 * we at least check for blocked threads and signal/cancel them?
1256 acpi_status acpi_os_delete_semaphore(acpi_handle handle)
1258 struct semaphore *sem = (struct semaphore *)handle;
1261 return AE_BAD_PARAMETER;
1263 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle));
1265 BUG_ON(!list_empty(&sem->wait_list));
1273 * TODO: Support for units > 1?
1275 acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout)
1277 acpi_status status = AE_OK;
1278 struct semaphore *sem = (struct semaphore *)handle;
1282 if (!sem || (units < 1))
1283 return AE_BAD_PARAMETER;
1288 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n",
1289 handle, units, timeout));
1291 if (timeout == ACPI_WAIT_FOREVER)
1292 jiffies = MAX_SCHEDULE_TIMEOUT;
1294 jiffies = msecs_to_jiffies(timeout);
1296 ret = down_timeout(sem, jiffies);
1300 if (ACPI_FAILURE(status)) {
1301 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
1302 "Failed to acquire semaphore[%p|%d|%d], %s",
1303 handle, units, timeout,
1304 acpi_format_exception(status)));
1306 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
1307 "Acquired semaphore[%p|%d|%d]", handle,
1315 * TODO: Support for units > 1?
1317 acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units)
1319 struct semaphore *sem = (struct semaphore *)handle;
1321 if (!sem || (units < 1))
1322 return AE_BAD_PARAMETER;
1327 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle,
1335 #ifdef ACPI_FUTURE_USAGE
1336 u32 acpi_os_get_line(char *buffer)
1339 #ifdef ENABLE_DEBUGGER
1340 if (acpi_in_debugger) {
1343 kdb_read(buffer, sizeof(line_buf));
1345 /* remove the CR kdb includes */
1346 chars = strlen(buffer) - 1;
1347 buffer[chars] = '\0';
1353 #endif /* ACPI_FUTURE_USAGE */
1355 acpi_status acpi_os_signal(u32 function, void *info)
1358 case ACPI_SIGNAL_FATAL:
1359 printk(KERN_ERR PREFIX "Fatal opcode executed\n");
1361 case ACPI_SIGNAL_BREAKPOINT:
1364 * ACPI spec. says to treat it as a NOP unless
1365 * you are debugging. So if/when we integrate
1366 * AML debugger into the kernel debugger its
1367 * hook will go here. But until then it is
1368 * not useful to print anything on breakpoints.
1378 static int __init acpi_os_name_setup(char *str)
1380 char *p = acpi_os_name;
1381 int count = ACPI_MAX_OVERRIDE_LEN - 1;
1386 for (; count-- && *str; str++) {
1387 if (isalnum(*str) || *str == ' ' || *str == ':')
1389 else if (*str == '\'' || *str == '"')
1400 __setup("acpi_os_name=", acpi_os_name_setup);
1402 #define OSI_STRING_LENGTH_MAX 64 /* arbitrary */
1403 #define OSI_STRING_ENTRIES_MAX 16 /* arbitrary */
1405 struct osi_setup_entry {
1406 char string[OSI_STRING_LENGTH_MAX];
1410 static struct osi_setup_entry
1411 osi_setup_entries[OSI_STRING_ENTRIES_MAX] __initdata = {
1412 {"Module Device", true},
1413 {"Processor Device", true},
1414 {"3.0 _SCP Extensions", true},
1415 {"Processor Aggregator Device", true},
1418 void __init acpi_osi_setup(char *str)
1420 struct osi_setup_entry *osi;
1424 if (!acpi_gbl_create_osi_method)
1427 if (str == NULL || *str == '\0') {
1428 printk(KERN_INFO PREFIX "_OSI method disabled\n");
1429 acpi_gbl_create_osi_method = FALSE;
1436 osi_linux.default_disabling = 1;
1438 } else if (*str == '*') {
1439 acpi_update_interfaces(ACPI_DISABLE_ALL_STRINGS);
1440 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1441 osi = &osi_setup_entries[i];
1442 osi->enable = false;
1449 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1450 osi = &osi_setup_entries[i];
1451 if (!strcmp(osi->string, str)) {
1452 osi->enable = enable;
1454 } else if (osi->string[0] == '\0') {
1455 osi->enable = enable;
1456 strncpy(osi->string, str, OSI_STRING_LENGTH_MAX);
1462 static void __init set_osi_linux(unsigned int enable)
1464 if (osi_linux.enable != enable)
1465 osi_linux.enable = enable;
1467 if (osi_linux.enable)
1468 acpi_osi_setup("Linux");
1470 acpi_osi_setup("!Linux");
1475 static void __init acpi_cmdline_osi_linux(unsigned int enable)
1477 osi_linux.cmdline = 1; /* cmdline set the default and override DMI */
1479 set_osi_linux(enable);
1484 void __init acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d)
1486 printk(KERN_NOTICE PREFIX "DMI detected: %s\n", d->ident);
1491 osi_linux.dmi = 1; /* DMI knows that this box asks OSI(Linux) */
1492 set_osi_linux(enable);
1498 * Modify the list of "OS Interfaces" reported to BIOS via _OSI
1500 * empty string disables _OSI
1501 * string starting with '!' disables that string
1502 * otherwise string is added to list, augmenting built-in strings
1504 static void __init acpi_osi_setup_late(void)
1506 struct osi_setup_entry *osi;
1511 if (osi_linux.default_disabling) {
1512 status = acpi_update_interfaces(ACPI_DISABLE_ALL_VENDOR_STRINGS);
1514 if (ACPI_SUCCESS(status))
1515 printk(KERN_INFO PREFIX "Disabled all _OSI OS vendors\n");
1518 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1519 osi = &osi_setup_entries[i];
1525 status = acpi_install_interface(str);
1527 if (ACPI_SUCCESS(status))
1528 printk(KERN_INFO PREFIX "Added _OSI(%s)\n", str);
1530 status = acpi_remove_interface(str);
1532 if (ACPI_SUCCESS(status))
1533 printk(KERN_INFO PREFIX "Deleted _OSI(%s)\n", str);
1538 static int __init osi_setup(char *str)
1540 if (str && !strcmp("Linux", str))
1541 acpi_cmdline_osi_linux(1);
1542 else if (str && !strcmp("!Linux", str))
1543 acpi_cmdline_osi_linux(0);
1545 acpi_osi_setup(str);
1550 __setup("acpi_osi=", osi_setup);
1553 * Disable the auto-serialization of named objects creation methods.
1555 * This feature is enabled by default. It marks the AML control methods
1556 * that contain the opcodes to create named objects as "Serialized".
1558 static int __init acpi_no_auto_serialize_setup(char *str)
1560 acpi_gbl_auto_serialize_methods = FALSE;
1561 pr_info("ACPI: auto-serialization disabled\n");
1566 __setup("acpi_no_auto_serialize", acpi_no_auto_serialize_setup);
1568 /* Check of resource interference between native drivers and ACPI
1569 * OperationRegions (SystemIO and System Memory only).
1570 * IO ports and memory declared in ACPI might be used by the ACPI subsystem
1571 * in arbitrary AML code and can interfere with legacy drivers.
1572 * acpi_enforce_resources= can be set to:
1574 * - strict (default) (2)
1575 * -> further driver trying to access the resources will not load
1577 * -> further driver trying to access the resources will load, but you
1578 * get a system message that something might go wrong...
1581 * -> ACPI Operation Region resources will not be registered
1584 #define ENFORCE_RESOURCES_STRICT 2
1585 #define ENFORCE_RESOURCES_LAX 1
1586 #define ENFORCE_RESOURCES_NO 0
1588 static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1590 static int __init acpi_enforce_resources_setup(char *str)
1592 if (str == NULL || *str == '\0')
1595 if (!strcmp("strict", str))
1596 acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1597 else if (!strcmp("lax", str))
1598 acpi_enforce_resources = ENFORCE_RESOURCES_LAX;
1599 else if (!strcmp("no", str))
1600 acpi_enforce_resources = ENFORCE_RESOURCES_NO;
1605 __setup("acpi_enforce_resources=", acpi_enforce_resources_setup);
1607 /* Check for resource conflicts between ACPI OperationRegions and native
1609 int acpi_check_resource_conflict(const struct resource *res)
1611 acpi_adr_space_type space_id;
1616 if (acpi_enforce_resources == ENFORCE_RESOURCES_NO)
1618 if (!(res->flags & IORESOURCE_IO) && !(res->flags & IORESOURCE_MEM))
1621 if (res->flags & IORESOURCE_IO)
1622 space_id = ACPI_ADR_SPACE_SYSTEM_IO;
1624 space_id = ACPI_ADR_SPACE_SYSTEM_MEMORY;
1626 length = resource_size(res);
1627 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO)
1629 clash = acpi_check_address_range(space_id, res->start, length, warn);
1632 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO) {
1633 if (acpi_enforce_resources == ENFORCE_RESOURCES_LAX)
1634 printk(KERN_NOTICE "ACPI: This conflict may"
1635 " cause random problems and system"
1637 printk(KERN_INFO "ACPI: If an ACPI driver is available"
1638 " for this device, you should use it instead of"
1639 " the native driver\n");
1641 if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT)
1646 EXPORT_SYMBOL(acpi_check_resource_conflict);
1648 int acpi_check_region(resource_size_t start, resource_size_t n,
1651 struct resource res = {
1653 .end = start + n - 1,
1655 .flags = IORESOURCE_IO,
1658 return acpi_check_resource_conflict(&res);
1660 EXPORT_SYMBOL(acpi_check_region);
1663 * Let drivers know whether the resource checks are effective
1665 int acpi_resources_are_enforced(void)
1667 return acpi_enforce_resources == ENFORCE_RESOURCES_STRICT;
1669 EXPORT_SYMBOL(acpi_resources_are_enforced);
1672 * Deallocate the memory for a spinlock.
1674 void acpi_os_delete_lock(acpi_spinlock handle)
1680 * Acquire a spinlock.
1682 * handle is a pointer to the spinlock_t.
1685 acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp)
1687 acpi_cpu_flags flags;
1688 spin_lock_irqsave(lockp, flags);
1693 * Release a spinlock. See above.
1696 void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags)
1698 spin_unlock_irqrestore(lockp, flags);
1701 #ifndef ACPI_USE_LOCAL_CACHE
1703 /*******************************************************************************
1705 * FUNCTION: acpi_os_create_cache
1707 * PARAMETERS: name - Ascii name for the cache
1708 * size - Size of each cached object
1709 * depth - Maximum depth of the cache (in objects) <ignored>
1710 * cache - Where the new cache object is returned
1714 * DESCRIPTION: Create a cache object
1716 ******************************************************************************/
1719 acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache)
1721 *cache = kmem_cache_create(name, size, 0, 0, NULL);
1728 /*******************************************************************************
1730 * FUNCTION: acpi_os_purge_cache
1732 * PARAMETERS: Cache - Handle to cache object
1736 * DESCRIPTION: Free all objects within the requested cache.
1738 ******************************************************************************/
1740 acpi_status acpi_os_purge_cache(acpi_cache_t * cache)
1742 kmem_cache_shrink(cache);
1746 /*******************************************************************************
1748 * FUNCTION: acpi_os_delete_cache
1750 * PARAMETERS: Cache - Handle to cache object
1754 * DESCRIPTION: Free all objects within the requested cache and delete the
1757 ******************************************************************************/
1759 acpi_status acpi_os_delete_cache(acpi_cache_t * cache)
1761 kmem_cache_destroy(cache);
1765 /*******************************************************************************
1767 * FUNCTION: acpi_os_release_object
1769 * PARAMETERS: Cache - Handle to cache object
1770 * Object - The object to be released
1774 * DESCRIPTION: Release an object to the specified cache. If cache is full,
1775 * the object is deleted.
1777 ******************************************************************************/
1779 acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object)
1781 kmem_cache_free(cache, object);
1786 static int __init acpi_no_static_ssdt_setup(char *s)
1788 acpi_gbl_disable_ssdt_table_install = TRUE;
1789 pr_info("ACPI: static SSDT installation disabled\n");
1794 early_param("acpi_no_static_ssdt", acpi_no_static_ssdt_setup);
1796 static int __init acpi_disable_return_repair(char *s)
1798 printk(KERN_NOTICE PREFIX
1799 "ACPI: Predefined validation mechanism disabled\n");
1800 acpi_gbl_disable_auto_repair = TRUE;
1805 __setup("acpica_no_return_repair", acpi_disable_return_repair);
1807 acpi_status __init acpi_os_initialize(void)
1809 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1810 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1811 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe0_block);
1812 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe1_block);
1813 if (acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER) {
1815 * Use acpi_os_map_generic_address to pre-map the reset
1816 * register if it's in system memory.
1820 rv = acpi_os_map_generic_address(&acpi_gbl_FADT.reset_register);
1821 pr_debug(PREFIX "%s: map reset_reg status %d\n", __func__, rv);
1827 acpi_status __init acpi_os_initialize1(void)
1829 kacpid_wq = alloc_workqueue("kacpid", 0, 1);
1830 kacpi_notify_wq = alloc_workqueue("kacpi_notify", 0, 1);
1831 kacpi_hotplug_wq = alloc_ordered_workqueue("kacpi_hotplug", 0);
1833 BUG_ON(!kacpi_notify_wq);
1834 BUG_ON(!kacpi_hotplug_wq);
1835 acpi_install_interface_handler(acpi_osi_handler);
1836 acpi_osi_setup_late();
1840 acpi_status acpi_os_terminate(void)
1842 if (acpi_irq_handler) {
1843 acpi_os_remove_interrupt_handler(acpi_gbl_FADT.sci_interrupt,
1847 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe1_block);
1848 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe0_block);
1849 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1850 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1851 if (acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER)
1852 acpi_os_unmap_generic_address(&acpi_gbl_FADT.reset_register);
1854 destroy_workqueue(kacpid_wq);
1855 destroy_workqueue(kacpi_notify_wq);
1856 destroy_workqueue(kacpi_hotplug_wq);
1861 acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control,
1865 if (__acpi_os_prepare_sleep)
1866 rc = __acpi_os_prepare_sleep(sleep_state,
1867 pm1a_control, pm1b_control);
1871 return AE_CTRL_SKIP;
1876 void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state,
1877 u32 pm1a_ctrl, u32 pm1b_ctrl))
1879 __acpi_os_prepare_sleep = func;
1882 acpi_status acpi_os_prepare_extended_sleep(u8 sleep_state, u32 val_a,
1886 if (__acpi_os_prepare_extended_sleep)
1887 rc = __acpi_os_prepare_extended_sleep(sleep_state,
1892 return AE_CTRL_SKIP;
1897 void acpi_os_set_prepare_extended_sleep(int (*func)(u8 sleep_state,
1898 u32 val_a, u32 val_b))
1900 __acpi_os_prepare_extended_sleep = func;