Merge branch 'acpica'
[linux-2.6/btrfs-unstable.git] / drivers / acpi / osl.c
blob2bba9669546a7608eede5d8b1334cbea2f1e21da
1 /*
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>
7 * Copyright (c) 2008 Intel Corporation
8 * Author: Matthew Wilcox <willy@linux.intel.com>
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>
33 #include <linux/mm.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/acpi_io.h>
43 #include <linux/efi.h>
44 #include <linux/ioport.h>
45 #include <linux/list.h>
46 #include <linux/jiffies.h>
47 #include <linux/semaphore.h>
49 #include <asm/io.h>
50 #include <asm/uaccess.h>
52 #include <acpi/acpi.h>
53 #include <acpi/acpi_bus.h>
54 #include <acpi/processor.h>
56 #define _COMPONENT ACPI_OS_SERVICES
57 ACPI_MODULE_NAME("osl");
58 #define PREFIX "ACPI: "
59 struct acpi_os_dpc {
60 acpi_osd_exec_callback function;
61 void *context;
62 struct work_struct work;
63 int wait;
66 #ifdef CONFIG_ACPI_CUSTOM_DSDT
67 #include CONFIG_ACPI_CUSTOM_DSDT_FILE
68 #endif
70 #ifdef ENABLE_DEBUGGER
71 #include <linux/kdb.h>
73 /* stuff for debugger support */
74 int acpi_in_debugger;
75 EXPORT_SYMBOL(acpi_in_debugger);
77 extern char line_buf[80];
78 #endif /*ENABLE_DEBUGGER */
80 static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl,
81 u32 pm1b_ctrl);
82 static int (*__acpi_os_prepare_extended_sleep)(u8 sleep_state, u32 val_a,
83 u32 val_b);
85 static acpi_osd_handler acpi_irq_handler;
86 static void *acpi_irq_context;
87 static struct workqueue_struct *kacpid_wq;
88 static struct workqueue_struct *kacpi_notify_wq;
89 static struct workqueue_struct *kacpi_hotplug_wq;
92 * This list of permanent mappings is for memory that may be accessed from
93 * interrupt context, where we can't do the ioremap().
95 struct acpi_ioremap {
96 struct list_head list;
97 void __iomem *virt;
98 acpi_physical_address phys;
99 acpi_size size;
100 unsigned long refcount;
103 static LIST_HEAD(acpi_ioremaps);
104 static DEFINE_MUTEX(acpi_ioremap_lock);
106 static void __init acpi_osi_setup_late(void);
109 * The story of _OSI(Linux)
111 * From pre-history through Linux-2.6.22,
112 * Linux responded TRUE upon a BIOS OSI(Linux) query.
114 * Unfortunately, reference BIOS writers got wind of this
115 * and put OSI(Linux) in their example code, quickly exposing
116 * this string as ill-conceived and opening the door to
117 * an un-bounded number of BIOS incompatibilities.
119 * For example, OSI(Linux) was used on resume to re-POST a
120 * video card on one system, because Linux at that time
121 * could not do a speedy restore in its native driver.
122 * But then upon gaining quick native restore capability,
123 * Linux has no way to tell the BIOS to skip the time-consuming
124 * POST -- putting Linux at a permanent performance disadvantage.
125 * On another system, the BIOS writer used OSI(Linux)
126 * to infer native OS support for IPMI! On other systems,
127 * OSI(Linux) simply got in the way of Linux claiming to
128 * be compatible with other operating systems, exposing
129 * BIOS issues such as skipped device initialization.
131 * So "Linux" turned out to be a really poor chose of
132 * OSI string, and from Linux-2.6.23 onward we respond FALSE.
134 * BIOS writers should NOT query _OSI(Linux) on future systems.
135 * Linux will complain on the console when it sees it, and return FALSE.
136 * To get Linux to return TRUE for your system will require
137 * a kernel source update to add a DMI entry,
138 * or boot with "acpi_osi=Linux"
141 static struct osi_linux {
142 unsigned int enable:1;
143 unsigned int dmi:1;
144 unsigned int cmdline:1;
145 unsigned int default_disabling:1;
146 } osi_linux = {0, 0, 0, 0};
148 static u32 acpi_osi_handler(acpi_string interface, u32 supported)
150 if (!strcmp("Linux", interface)) {
152 printk_once(KERN_NOTICE FW_BUG PREFIX
153 "BIOS _OSI(Linux) query %s%s\n",
154 osi_linux.enable ? "honored" : "ignored",
155 osi_linux.cmdline ? " via cmdline" :
156 osi_linux.dmi ? " via DMI" : "");
159 return supported;
162 static void __init acpi_request_region (struct acpi_generic_address *gas,
163 unsigned int length, char *desc)
165 u64 addr;
167 /* Handle possible alignment issues */
168 memcpy(&addr, &gas->address, sizeof(addr));
169 if (!addr || !length)
170 return;
172 /* Resources are never freed */
173 if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_IO)
174 request_region(addr, length, desc);
175 else if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
176 request_mem_region(addr, length, desc);
179 static int __init acpi_reserve_resources(void)
181 acpi_request_region(&acpi_gbl_FADT.xpm1a_event_block, acpi_gbl_FADT.pm1_event_length,
182 "ACPI PM1a_EVT_BLK");
184 acpi_request_region(&acpi_gbl_FADT.xpm1b_event_block, acpi_gbl_FADT.pm1_event_length,
185 "ACPI PM1b_EVT_BLK");
187 acpi_request_region(&acpi_gbl_FADT.xpm1a_control_block, acpi_gbl_FADT.pm1_control_length,
188 "ACPI PM1a_CNT_BLK");
190 acpi_request_region(&acpi_gbl_FADT.xpm1b_control_block, acpi_gbl_FADT.pm1_control_length,
191 "ACPI PM1b_CNT_BLK");
193 if (acpi_gbl_FADT.pm_timer_length == 4)
194 acpi_request_region(&acpi_gbl_FADT.xpm_timer_block, 4, "ACPI PM_TMR");
196 acpi_request_region(&acpi_gbl_FADT.xpm2_control_block, acpi_gbl_FADT.pm2_control_length,
197 "ACPI PM2_CNT_BLK");
199 /* Length of GPE blocks must be a non-negative multiple of 2 */
201 if (!(acpi_gbl_FADT.gpe0_block_length & 0x1))
202 acpi_request_region(&acpi_gbl_FADT.xgpe0_block,
203 acpi_gbl_FADT.gpe0_block_length, "ACPI GPE0_BLK");
205 if (!(acpi_gbl_FADT.gpe1_block_length & 0x1))
206 acpi_request_region(&acpi_gbl_FADT.xgpe1_block,
207 acpi_gbl_FADT.gpe1_block_length, "ACPI GPE1_BLK");
209 return 0;
211 device_initcall(acpi_reserve_resources);
213 void acpi_os_printf(const char *fmt, ...)
215 va_list args;
216 va_start(args, fmt);
217 acpi_os_vprintf(fmt, args);
218 va_end(args);
221 void acpi_os_vprintf(const char *fmt, va_list args)
223 static char buffer[512];
225 vsprintf(buffer, fmt, args);
227 #ifdef ENABLE_DEBUGGER
228 if (acpi_in_debugger) {
229 kdb_printf("%s", buffer);
230 } else {
231 printk(KERN_CONT "%s", buffer);
233 #else
234 printk(KERN_CONT "%s", buffer);
235 #endif
238 #ifdef CONFIG_KEXEC
239 static unsigned long acpi_rsdp;
240 static int __init setup_acpi_rsdp(char *arg)
242 acpi_rsdp = simple_strtoul(arg, NULL, 16);
243 return 0;
245 early_param("acpi_rsdp", setup_acpi_rsdp);
246 #endif
248 acpi_physical_address __init acpi_os_get_root_pointer(void)
250 #ifdef CONFIG_KEXEC
251 if (acpi_rsdp)
252 return acpi_rsdp;
253 #endif
255 if (efi_enabled(EFI_CONFIG_TABLES)) {
256 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
257 return efi.acpi20;
258 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
259 return efi.acpi;
260 else {
261 printk(KERN_ERR PREFIX
262 "System description tables not found\n");
263 return 0;
265 } else {
266 acpi_physical_address pa = 0;
268 acpi_find_root_pointer(&pa);
269 return pa;
273 /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
274 static struct acpi_ioremap *
275 acpi_map_lookup(acpi_physical_address phys, acpi_size size)
277 struct acpi_ioremap *map;
279 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
280 if (map->phys <= phys &&
281 phys + size <= map->phys + map->size)
282 return map;
284 return NULL;
287 /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
288 static void __iomem *
289 acpi_map_vaddr_lookup(acpi_physical_address phys, unsigned int size)
291 struct acpi_ioremap *map;
293 map = acpi_map_lookup(phys, size);
294 if (map)
295 return map->virt + (phys - map->phys);
297 return NULL;
300 void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size)
302 struct acpi_ioremap *map;
303 void __iomem *virt = NULL;
305 mutex_lock(&acpi_ioremap_lock);
306 map = acpi_map_lookup(phys, size);
307 if (map) {
308 virt = map->virt + (phys - map->phys);
309 map->refcount++;
311 mutex_unlock(&acpi_ioremap_lock);
312 return virt;
314 EXPORT_SYMBOL_GPL(acpi_os_get_iomem);
316 /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
317 static struct acpi_ioremap *
318 acpi_map_lookup_virt(void __iomem *virt, acpi_size size)
320 struct acpi_ioremap *map;
322 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
323 if (map->virt <= virt &&
324 virt + size <= map->virt + map->size)
325 return map;
327 return NULL;
330 #ifndef CONFIG_IA64
331 #define should_use_kmap(pfn) page_is_ram(pfn)
332 #else
333 /* ioremap will take care of cache attributes */
334 #define should_use_kmap(pfn) 0
335 #endif
337 static void __iomem *acpi_map(acpi_physical_address pg_off, unsigned long pg_sz)
339 unsigned long pfn;
341 pfn = pg_off >> PAGE_SHIFT;
342 if (should_use_kmap(pfn)) {
343 if (pg_sz > PAGE_SIZE)
344 return NULL;
345 return (void __iomem __force *)kmap(pfn_to_page(pfn));
346 } else
347 return acpi_os_ioremap(pg_off, pg_sz);
350 static void acpi_unmap(acpi_physical_address pg_off, void __iomem *vaddr)
352 unsigned long pfn;
354 pfn = pg_off >> PAGE_SHIFT;
355 if (should_use_kmap(pfn))
356 kunmap(pfn_to_page(pfn));
357 else
358 iounmap(vaddr);
361 void __iomem *__init_refok
362 acpi_os_map_memory(acpi_physical_address phys, acpi_size size)
364 struct acpi_ioremap *map;
365 void __iomem *virt;
366 acpi_physical_address pg_off;
367 acpi_size pg_sz;
369 if (phys > ULONG_MAX) {
370 printk(KERN_ERR PREFIX "Cannot map memory that high\n");
371 return NULL;
374 if (!acpi_gbl_permanent_mmap)
375 return __acpi_map_table((unsigned long)phys, size);
377 mutex_lock(&acpi_ioremap_lock);
378 /* Check if there's a suitable mapping already. */
379 map = acpi_map_lookup(phys, size);
380 if (map) {
381 map->refcount++;
382 goto out;
385 map = kzalloc(sizeof(*map), GFP_KERNEL);
386 if (!map) {
387 mutex_unlock(&acpi_ioremap_lock);
388 return NULL;
391 pg_off = round_down(phys, PAGE_SIZE);
392 pg_sz = round_up(phys + size, PAGE_SIZE) - pg_off;
393 virt = acpi_map(pg_off, pg_sz);
394 if (!virt) {
395 mutex_unlock(&acpi_ioremap_lock);
396 kfree(map);
397 return NULL;
400 INIT_LIST_HEAD(&map->list);
401 map->virt = virt;
402 map->phys = pg_off;
403 map->size = pg_sz;
404 map->refcount = 1;
406 list_add_tail_rcu(&map->list, &acpi_ioremaps);
408 out:
409 mutex_unlock(&acpi_ioremap_lock);
410 return map->virt + (phys - map->phys);
412 EXPORT_SYMBOL_GPL(acpi_os_map_memory);
414 static void acpi_os_drop_map_ref(struct acpi_ioremap *map)
416 if (!--map->refcount)
417 list_del_rcu(&map->list);
420 static void acpi_os_map_cleanup(struct acpi_ioremap *map)
422 if (!map->refcount) {
423 synchronize_rcu();
424 acpi_unmap(map->phys, map->virt);
425 kfree(map);
429 void __ref acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
431 struct acpi_ioremap *map;
433 if (!acpi_gbl_permanent_mmap) {
434 __acpi_unmap_table(virt, size);
435 return;
438 mutex_lock(&acpi_ioremap_lock);
439 map = acpi_map_lookup_virt(virt, size);
440 if (!map) {
441 mutex_unlock(&acpi_ioremap_lock);
442 WARN(true, PREFIX "%s: bad address %p\n", __func__, virt);
443 return;
445 acpi_os_drop_map_ref(map);
446 mutex_unlock(&acpi_ioremap_lock);
448 acpi_os_map_cleanup(map);
450 EXPORT_SYMBOL_GPL(acpi_os_unmap_memory);
452 void __init early_acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
454 if (!acpi_gbl_permanent_mmap)
455 __acpi_unmap_table(virt, size);
458 int acpi_os_map_generic_address(struct acpi_generic_address *gas)
460 u64 addr;
461 void __iomem *virt;
463 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
464 return 0;
466 /* Handle possible alignment issues */
467 memcpy(&addr, &gas->address, sizeof(addr));
468 if (!addr || !gas->bit_width)
469 return -EINVAL;
471 virt = acpi_os_map_memory(addr, gas->bit_width / 8);
472 if (!virt)
473 return -EIO;
475 return 0;
477 EXPORT_SYMBOL(acpi_os_map_generic_address);
479 void acpi_os_unmap_generic_address(struct acpi_generic_address *gas)
481 u64 addr;
482 struct acpi_ioremap *map;
484 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
485 return;
487 /* Handle possible alignment issues */
488 memcpy(&addr, &gas->address, sizeof(addr));
489 if (!addr || !gas->bit_width)
490 return;
492 mutex_lock(&acpi_ioremap_lock);
493 map = acpi_map_lookup(addr, gas->bit_width / 8);
494 if (!map) {
495 mutex_unlock(&acpi_ioremap_lock);
496 return;
498 acpi_os_drop_map_ref(map);
499 mutex_unlock(&acpi_ioremap_lock);
501 acpi_os_map_cleanup(map);
503 EXPORT_SYMBOL(acpi_os_unmap_generic_address);
505 #ifdef ACPI_FUTURE_USAGE
506 acpi_status
507 acpi_os_get_physical_address(void *virt, acpi_physical_address * phys)
509 if (!phys || !virt)
510 return AE_BAD_PARAMETER;
512 *phys = virt_to_phys(virt);
514 return AE_OK;
516 #endif
518 #define ACPI_MAX_OVERRIDE_LEN 100
520 static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN];
522 acpi_status
523 acpi_os_predefined_override(const struct acpi_predefined_names *init_val,
524 acpi_string * new_val)
526 if (!init_val || !new_val)
527 return AE_BAD_PARAMETER;
529 *new_val = NULL;
530 if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) {
531 printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n",
532 acpi_os_name);
533 *new_val = acpi_os_name;
536 return AE_OK;
539 #ifdef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
540 #include <linux/earlycpio.h>
541 #include <linux/memblock.h>
543 static u64 acpi_tables_addr;
544 static int all_tables_size;
546 /* Copied from acpica/tbutils.c:acpi_tb_checksum() */
547 u8 __init acpi_table_checksum(u8 *buffer, u32 length)
549 u8 sum = 0;
550 u8 *end = buffer + length;
552 while (buffer < end)
553 sum = (u8) (sum + *(buffer++));
554 return sum;
557 /* All but ACPI_SIG_RSDP and ACPI_SIG_FACS: */
558 static const char * const table_sigs[] = {
559 ACPI_SIG_BERT, ACPI_SIG_CPEP, ACPI_SIG_ECDT, ACPI_SIG_EINJ,
560 ACPI_SIG_ERST, ACPI_SIG_HEST, ACPI_SIG_MADT, ACPI_SIG_MSCT,
561 ACPI_SIG_SBST, ACPI_SIG_SLIT, ACPI_SIG_SRAT, ACPI_SIG_ASF,
562 ACPI_SIG_BOOT, ACPI_SIG_DBGP, ACPI_SIG_DMAR, ACPI_SIG_HPET,
563 ACPI_SIG_IBFT, ACPI_SIG_IVRS, ACPI_SIG_MCFG, ACPI_SIG_MCHI,
564 ACPI_SIG_SLIC, ACPI_SIG_SPCR, ACPI_SIG_SPMI, ACPI_SIG_TCPA,
565 ACPI_SIG_UEFI, ACPI_SIG_WAET, ACPI_SIG_WDAT, ACPI_SIG_WDDT,
566 ACPI_SIG_WDRT, ACPI_SIG_DSDT, ACPI_SIG_FADT, ACPI_SIG_PSDT,
567 ACPI_SIG_RSDT, ACPI_SIG_XSDT, ACPI_SIG_SSDT, NULL };
569 /* Non-fatal errors: Affected tables/files are ignored */
570 #define INVALID_TABLE(x, path, name) \
571 { pr_err("ACPI OVERRIDE: " x " [%s%s]\n", path, name); continue; }
573 #define ACPI_HEADER_SIZE sizeof(struct acpi_table_header)
575 /* Must not increase 10 or needs code modification below */
576 #define ACPI_OVERRIDE_TABLES 10
578 void __init acpi_initrd_override(void *data, size_t size)
580 int sig, no, table_nr = 0, total_offset = 0;
581 long offset = 0;
582 struct acpi_table_header *table;
583 char cpio_path[32] = "kernel/firmware/acpi/";
584 struct cpio_data file;
585 struct cpio_data early_initrd_files[ACPI_OVERRIDE_TABLES];
586 char *p;
588 if (data == NULL || size == 0)
589 return;
591 for (no = 0; no < ACPI_OVERRIDE_TABLES; no++) {
592 file = find_cpio_data(cpio_path, data, size, &offset);
593 if (!file.data)
594 break;
596 data += offset;
597 size -= offset;
599 if (file.size < sizeof(struct acpi_table_header))
600 INVALID_TABLE("Table smaller than ACPI header",
601 cpio_path, file.name);
603 table = file.data;
605 for (sig = 0; table_sigs[sig]; sig++)
606 if (!memcmp(table->signature, table_sigs[sig], 4))
607 break;
609 if (!table_sigs[sig])
610 INVALID_TABLE("Unknown signature",
611 cpio_path, file.name);
612 if (file.size != table->length)
613 INVALID_TABLE("File length does not match table length",
614 cpio_path, file.name);
615 if (acpi_table_checksum(file.data, table->length))
616 INVALID_TABLE("Bad table checksum",
617 cpio_path, file.name);
619 pr_info("%4.4s ACPI table found in initrd [%s%s][0x%x]\n",
620 table->signature, cpio_path, file.name, table->length);
622 all_tables_size += table->length;
623 early_initrd_files[table_nr].data = file.data;
624 early_initrd_files[table_nr].size = file.size;
625 table_nr++;
627 if (table_nr == 0)
628 return;
630 acpi_tables_addr =
631 memblock_find_in_range(0, max_low_pfn_mapped << PAGE_SHIFT,
632 all_tables_size, PAGE_SIZE);
633 if (!acpi_tables_addr) {
634 WARN_ON(1);
635 return;
638 * Only calling e820_add_reserve does not work and the
639 * tables are invalid (memory got used) later.
640 * memblock_reserve works as expected and the tables won't get modified.
641 * But it's not enough on X86 because ioremap will
642 * complain later (used by acpi_os_map_memory) that the pages
643 * that should get mapped are not marked "reserved".
644 * Both memblock_reserve and e820_add_region (via arch_reserve_mem_area)
645 * works fine.
647 memblock_reserve(acpi_tables_addr, all_tables_size);
648 arch_reserve_mem_area(acpi_tables_addr, all_tables_size);
650 p = early_ioremap(acpi_tables_addr, all_tables_size);
652 for (no = 0; no < table_nr; no++) {
653 memcpy(p + total_offset, early_initrd_files[no].data,
654 early_initrd_files[no].size);
655 total_offset += early_initrd_files[no].size;
657 early_iounmap(p, all_tables_size);
659 #endif /* CONFIG_ACPI_INITRD_TABLE_OVERRIDE */
661 static void acpi_table_taint(struct acpi_table_header *table)
663 pr_warn(PREFIX
664 "Override [%4.4s-%8.8s], this is unsafe: tainting kernel\n",
665 table->signature, table->oem_table_id);
666 add_taint(TAINT_OVERRIDDEN_ACPI_TABLE, LOCKDEP_NOW_UNRELIABLE);
670 acpi_status
671 acpi_os_table_override(struct acpi_table_header * existing_table,
672 struct acpi_table_header ** new_table)
674 if (!existing_table || !new_table)
675 return AE_BAD_PARAMETER;
677 *new_table = NULL;
679 #ifdef CONFIG_ACPI_CUSTOM_DSDT
680 if (strncmp(existing_table->signature, "DSDT", 4) == 0)
681 *new_table = (struct acpi_table_header *)AmlCode;
682 #endif
683 if (*new_table != NULL)
684 acpi_table_taint(existing_table);
685 return AE_OK;
688 acpi_status
689 acpi_os_physical_table_override(struct acpi_table_header *existing_table,
690 acpi_physical_address *address,
691 u32 *table_length)
693 #ifndef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
694 *table_length = 0;
695 *address = 0;
696 return AE_OK;
697 #else
698 int table_offset = 0;
699 struct acpi_table_header *table;
701 *table_length = 0;
702 *address = 0;
704 if (!acpi_tables_addr)
705 return AE_OK;
707 do {
708 if (table_offset + ACPI_HEADER_SIZE > all_tables_size) {
709 WARN_ON(1);
710 return AE_OK;
713 table = acpi_os_map_memory(acpi_tables_addr + table_offset,
714 ACPI_HEADER_SIZE);
716 if (table_offset + table->length > all_tables_size) {
717 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
718 WARN_ON(1);
719 return AE_OK;
722 table_offset += table->length;
724 if (memcmp(existing_table->signature, table->signature, 4)) {
725 acpi_os_unmap_memory(table,
726 ACPI_HEADER_SIZE);
727 continue;
730 /* Only override tables with matching oem id */
731 if (memcmp(table->oem_table_id, existing_table->oem_table_id,
732 ACPI_OEM_TABLE_ID_SIZE)) {
733 acpi_os_unmap_memory(table,
734 ACPI_HEADER_SIZE);
735 continue;
738 table_offset -= table->length;
739 *table_length = table->length;
740 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
741 *address = acpi_tables_addr + table_offset;
742 break;
743 } while (table_offset + ACPI_HEADER_SIZE < all_tables_size);
745 if (*address != 0)
746 acpi_table_taint(existing_table);
747 return AE_OK;
748 #endif
751 static irqreturn_t acpi_irq(int irq, void *dev_id)
753 u32 handled;
755 handled = (*acpi_irq_handler) (acpi_irq_context);
757 if (handled) {
758 acpi_irq_handled++;
759 return IRQ_HANDLED;
760 } else {
761 acpi_irq_not_handled++;
762 return IRQ_NONE;
766 acpi_status
767 acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
768 void *context)
770 unsigned int irq;
772 acpi_irq_stats_init();
775 * ACPI interrupts different from the SCI in our copy of the FADT are
776 * not supported.
778 if (gsi != acpi_gbl_FADT.sci_interrupt)
779 return AE_BAD_PARAMETER;
781 if (acpi_irq_handler)
782 return AE_ALREADY_ACQUIRED;
784 if (acpi_gsi_to_irq(gsi, &irq) < 0) {
785 printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n",
786 gsi);
787 return AE_OK;
790 acpi_irq_handler = handler;
791 acpi_irq_context = context;
792 if (request_irq(irq, acpi_irq, IRQF_SHARED | IRQF_NO_SUSPEND, "acpi", acpi_irq)) {
793 printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq);
794 acpi_irq_handler = NULL;
795 return AE_NOT_ACQUIRED;
798 return AE_OK;
801 acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler)
803 if (irq != acpi_gbl_FADT.sci_interrupt)
804 return AE_BAD_PARAMETER;
806 free_irq(irq, acpi_irq);
807 acpi_irq_handler = NULL;
809 return AE_OK;
813 * Running in interpreter thread context, safe to sleep
816 void acpi_os_sleep(u64 ms)
818 schedule_timeout_interruptible(msecs_to_jiffies(ms));
821 void acpi_os_stall(u32 us)
823 while (us) {
824 u32 delay = 1000;
826 if (delay > us)
827 delay = us;
828 udelay(delay);
829 touch_nmi_watchdog();
830 us -= delay;
835 * Support ACPI 3.0 AML Timer operand
836 * Returns 64-bit free-running, monotonically increasing timer
837 * with 100ns granularity
839 u64 acpi_os_get_timer(void)
841 u64 time_ns = ktime_to_ns(ktime_get());
842 do_div(time_ns, 100);
843 return time_ns;
846 acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
848 u32 dummy;
850 if (!value)
851 value = &dummy;
853 *value = 0;
854 if (width <= 8) {
855 *(u8 *) value = inb(port);
856 } else if (width <= 16) {
857 *(u16 *) value = inw(port);
858 } else if (width <= 32) {
859 *(u32 *) value = inl(port);
860 } else {
861 BUG();
864 return AE_OK;
867 EXPORT_SYMBOL(acpi_os_read_port);
869 acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width)
871 if (width <= 8) {
872 outb(value, port);
873 } else if (width <= 16) {
874 outw(value, port);
875 } else if (width <= 32) {
876 outl(value, port);
877 } else {
878 BUG();
881 return AE_OK;
884 EXPORT_SYMBOL(acpi_os_write_port);
886 #ifdef readq
887 static inline u64 read64(const volatile void __iomem *addr)
889 return readq(addr);
891 #else
892 static inline u64 read64(const volatile void __iomem *addr)
894 u64 l, h;
895 l = readl(addr);
896 h = readl(addr+4);
897 return l | (h << 32);
899 #endif
901 acpi_status
902 acpi_os_read_memory(acpi_physical_address phys_addr, u64 *value, u32 width)
904 void __iomem *virt_addr;
905 unsigned int size = width / 8;
906 bool unmap = false;
907 u64 dummy;
909 rcu_read_lock();
910 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
911 if (!virt_addr) {
912 rcu_read_unlock();
913 virt_addr = acpi_os_ioremap(phys_addr, size);
914 if (!virt_addr)
915 return AE_BAD_ADDRESS;
916 unmap = true;
919 if (!value)
920 value = &dummy;
922 switch (width) {
923 case 8:
924 *(u8 *) value = readb(virt_addr);
925 break;
926 case 16:
927 *(u16 *) value = readw(virt_addr);
928 break;
929 case 32:
930 *(u32 *) value = readl(virt_addr);
931 break;
932 case 64:
933 *(u64 *) value = read64(virt_addr);
934 break;
935 default:
936 BUG();
939 if (unmap)
940 iounmap(virt_addr);
941 else
942 rcu_read_unlock();
944 return AE_OK;
947 #ifdef writeq
948 static inline void write64(u64 val, volatile void __iomem *addr)
950 writeq(val, addr);
952 #else
953 static inline void write64(u64 val, volatile void __iomem *addr)
955 writel(val, addr);
956 writel(val>>32, addr+4);
958 #endif
960 acpi_status
961 acpi_os_write_memory(acpi_physical_address phys_addr, u64 value, u32 width)
963 void __iomem *virt_addr;
964 unsigned int size = width / 8;
965 bool unmap = false;
967 rcu_read_lock();
968 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
969 if (!virt_addr) {
970 rcu_read_unlock();
971 virt_addr = acpi_os_ioremap(phys_addr, size);
972 if (!virt_addr)
973 return AE_BAD_ADDRESS;
974 unmap = true;
977 switch (width) {
978 case 8:
979 writeb(value, virt_addr);
980 break;
981 case 16:
982 writew(value, virt_addr);
983 break;
984 case 32:
985 writel(value, virt_addr);
986 break;
987 case 64:
988 write64(value, virt_addr);
989 break;
990 default:
991 BUG();
994 if (unmap)
995 iounmap(virt_addr);
996 else
997 rcu_read_unlock();
999 return AE_OK;
1002 acpi_status
1003 acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
1004 u64 *value, u32 width)
1006 int result, size;
1007 u32 value32;
1009 if (!value)
1010 return AE_BAD_PARAMETER;
1012 switch (width) {
1013 case 8:
1014 size = 1;
1015 break;
1016 case 16:
1017 size = 2;
1018 break;
1019 case 32:
1020 size = 4;
1021 break;
1022 default:
1023 return AE_ERROR;
1026 result = raw_pci_read(pci_id->segment, pci_id->bus,
1027 PCI_DEVFN(pci_id->device, pci_id->function),
1028 reg, size, &value32);
1029 *value = value32;
1031 return (result ? AE_ERROR : AE_OK);
1034 acpi_status
1035 acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
1036 u64 value, u32 width)
1038 int result, size;
1040 switch (width) {
1041 case 8:
1042 size = 1;
1043 break;
1044 case 16:
1045 size = 2;
1046 break;
1047 case 32:
1048 size = 4;
1049 break;
1050 default:
1051 return AE_ERROR;
1054 result = raw_pci_write(pci_id->segment, pci_id->bus,
1055 PCI_DEVFN(pci_id->device, pci_id->function),
1056 reg, size, value);
1058 return (result ? AE_ERROR : AE_OK);
1061 static void acpi_os_execute_deferred(struct work_struct *work)
1063 struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work);
1065 if (dpc->wait)
1066 acpi_os_wait_events_complete();
1068 dpc->function(dpc->context);
1069 kfree(dpc);
1072 /*******************************************************************************
1074 * FUNCTION: acpi_os_execute
1076 * PARAMETERS: Type - Type of the callback
1077 * Function - Function to be executed
1078 * Context - Function parameters
1080 * RETURN: Status
1082 * DESCRIPTION: Depending on type, either queues function for deferred execution or
1083 * immediately executes function on a separate thread.
1085 ******************************************************************************/
1087 static acpi_status __acpi_os_execute(acpi_execute_type type,
1088 acpi_osd_exec_callback function, void *context, int hp)
1090 acpi_status status = AE_OK;
1091 struct acpi_os_dpc *dpc;
1092 struct workqueue_struct *queue;
1093 int ret;
1094 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
1095 "Scheduling function [%p(%p)] for deferred execution.\n",
1096 function, context));
1099 * Allocate/initialize DPC structure. Note that this memory will be
1100 * freed by the callee. The kernel handles the work_struct list in a
1101 * way that allows us to also free its memory inside the callee.
1102 * Because we may want to schedule several tasks with different
1103 * parameters we can't use the approach some kernel code uses of
1104 * having a static work_struct.
1107 dpc = kzalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC);
1108 if (!dpc)
1109 return AE_NO_MEMORY;
1111 dpc->function = function;
1112 dpc->context = context;
1115 * We can't run hotplug code in keventd_wq/kacpid_wq/kacpid_notify_wq
1116 * because the hotplug code may call driver .remove() functions,
1117 * which invoke flush_scheduled_work/acpi_os_wait_events_complete
1118 * to flush these workqueues.
1120 * To prevent lockdep from complaining unnecessarily, make sure that
1121 * there is a different static lockdep key for each workqueue by using
1122 * INIT_WORK() for each of them separately.
1124 if (hp) {
1125 queue = kacpi_hotplug_wq;
1126 dpc->wait = 1;
1127 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
1128 } else if (type == OSL_NOTIFY_HANDLER) {
1129 queue = kacpi_notify_wq;
1130 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
1131 } else {
1132 queue = kacpid_wq;
1133 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
1137 * On some machines, a software-initiated SMI causes corruption unless
1138 * the SMI runs on CPU 0. An SMI can be initiated by any AML, but
1139 * typically it's done in GPE-related methods that are run via
1140 * workqueues, so we can avoid the known corruption cases by always
1141 * queueing on CPU 0.
1143 ret = queue_work_on(0, queue, &dpc->work);
1145 if (!ret) {
1146 printk(KERN_ERR PREFIX
1147 "Call to queue_work() failed.\n");
1148 status = AE_ERROR;
1149 kfree(dpc);
1151 return status;
1154 acpi_status acpi_os_execute(acpi_execute_type type,
1155 acpi_osd_exec_callback function, void *context)
1157 return __acpi_os_execute(type, function, context, 0);
1159 EXPORT_SYMBOL(acpi_os_execute);
1161 acpi_status acpi_os_hotplug_execute(acpi_osd_exec_callback function,
1162 void *context)
1164 return __acpi_os_execute(0, function, context, 1);
1166 EXPORT_SYMBOL(acpi_os_hotplug_execute);
1168 void acpi_os_wait_events_complete(void)
1170 flush_workqueue(kacpid_wq);
1171 flush_workqueue(kacpi_notify_wq);
1174 EXPORT_SYMBOL(acpi_os_wait_events_complete);
1176 acpi_status
1177 acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle)
1179 struct semaphore *sem = NULL;
1181 sem = acpi_os_allocate(sizeof(struct semaphore));
1182 if (!sem)
1183 return AE_NO_MEMORY;
1184 memset(sem, 0, sizeof(struct semaphore));
1186 sema_init(sem, initial_units);
1188 *handle = (acpi_handle *) sem;
1190 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n",
1191 *handle, initial_units));
1193 return AE_OK;
1197 * TODO: A better way to delete semaphores? Linux doesn't have a
1198 * 'delete_semaphore()' function -- may result in an invalid
1199 * pointer dereference for non-synchronized consumers. Should
1200 * we at least check for blocked threads and signal/cancel them?
1203 acpi_status acpi_os_delete_semaphore(acpi_handle handle)
1205 struct semaphore *sem = (struct semaphore *)handle;
1207 if (!sem)
1208 return AE_BAD_PARAMETER;
1210 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle));
1212 BUG_ON(!list_empty(&sem->wait_list));
1213 kfree(sem);
1214 sem = NULL;
1216 return AE_OK;
1220 * TODO: Support for units > 1?
1222 acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout)
1224 acpi_status status = AE_OK;
1225 struct semaphore *sem = (struct semaphore *)handle;
1226 long jiffies;
1227 int ret = 0;
1229 if (!sem || (units < 1))
1230 return AE_BAD_PARAMETER;
1232 if (units > 1)
1233 return AE_SUPPORT;
1235 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n",
1236 handle, units, timeout));
1238 if (timeout == ACPI_WAIT_FOREVER)
1239 jiffies = MAX_SCHEDULE_TIMEOUT;
1240 else
1241 jiffies = msecs_to_jiffies(timeout);
1243 ret = down_timeout(sem, jiffies);
1244 if (ret)
1245 status = AE_TIME;
1247 if (ACPI_FAILURE(status)) {
1248 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
1249 "Failed to acquire semaphore[%p|%d|%d], %s",
1250 handle, units, timeout,
1251 acpi_format_exception(status)));
1252 } else {
1253 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
1254 "Acquired semaphore[%p|%d|%d]", handle,
1255 units, timeout));
1258 return status;
1262 * TODO: Support for units > 1?
1264 acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units)
1266 struct semaphore *sem = (struct semaphore *)handle;
1268 if (!sem || (units < 1))
1269 return AE_BAD_PARAMETER;
1271 if (units > 1)
1272 return AE_SUPPORT;
1274 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle,
1275 units));
1277 up(sem);
1279 return AE_OK;
1282 #ifdef ACPI_FUTURE_USAGE
1283 u32 acpi_os_get_line(char *buffer)
1286 #ifdef ENABLE_DEBUGGER
1287 if (acpi_in_debugger) {
1288 u32 chars;
1290 kdb_read(buffer, sizeof(line_buf));
1292 /* remove the CR kdb includes */
1293 chars = strlen(buffer) - 1;
1294 buffer[chars] = '\0';
1296 #endif
1298 return 0;
1300 #endif /* ACPI_FUTURE_USAGE */
1302 acpi_status acpi_os_signal(u32 function, void *info)
1304 switch (function) {
1305 case ACPI_SIGNAL_FATAL:
1306 printk(KERN_ERR PREFIX "Fatal opcode executed\n");
1307 break;
1308 case ACPI_SIGNAL_BREAKPOINT:
1310 * AML Breakpoint
1311 * ACPI spec. says to treat it as a NOP unless
1312 * you are debugging. So if/when we integrate
1313 * AML debugger into the kernel debugger its
1314 * hook will go here. But until then it is
1315 * not useful to print anything on breakpoints.
1317 break;
1318 default:
1319 break;
1322 return AE_OK;
1325 static int __init acpi_os_name_setup(char *str)
1327 char *p = acpi_os_name;
1328 int count = ACPI_MAX_OVERRIDE_LEN - 1;
1330 if (!str || !*str)
1331 return 0;
1333 for (; count-- && str && *str; str++) {
1334 if (isalnum(*str) || *str == ' ' || *str == ':')
1335 *p++ = *str;
1336 else if (*str == '\'' || *str == '"')
1337 continue;
1338 else
1339 break;
1341 *p = 0;
1343 return 1;
1347 __setup("acpi_os_name=", acpi_os_name_setup);
1349 #define OSI_STRING_LENGTH_MAX 64 /* arbitrary */
1350 #define OSI_STRING_ENTRIES_MAX 16 /* arbitrary */
1352 struct osi_setup_entry {
1353 char string[OSI_STRING_LENGTH_MAX];
1354 bool enable;
1357 static struct osi_setup_entry __initdata
1358 osi_setup_entries[OSI_STRING_ENTRIES_MAX] = {
1359 {"Module Device", true},
1360 {"Processor Device", true},
1361 {"3.0 _SCP Extensions", true},
1362 {"Processor Aggregator Device", true},
1365 void __init acpi_osi_setup(char *str)
1367 struct osi_setup_entry *osi;
1368 bool enable = true;
1369 int i;
1371 if (!acpi_gbl_create_osi_method)
1372 return;
1374 if (str == NULL || *str == '\0') {
1375 printk(KERN_INFO PREFIX "_OSI method disabled\n");
1376 acpi_gbl_create_osi_method = FALSE;
1377 return;
1380 if (*str == '!') {
1381 str++;
1382 if (*str == '\0') {
1383 osi_linux.default_disabling = 1;
1384 return;
1385 } else if (*str == '*') {
1386 acpi_update_interfaces(ACPI_DISABLE_ALL_STRINGS);
1387 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1388 osi = &osi_setup_entries[i];
1389 osi->enable = false;
1391 return;
1393 enable = false;
1396 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1397 osi = &osi_setup_entries[i];
1398 if (!strcmp(osi->string, str)) {
1399 osi->enable = enable;
1400 break;
1401 } else if (osi->string[0] == '\0') {
1402 osi->enable = enable;
1403 strncpy(osi->string, str, OSI_STRING_LENGTH_MAX);
1404 break;
1409 static void __init set_osi_linux(unsigned int enable)
1411 if (osi_linux.enable != enable)
1412 osi_linux.enable = enable;
1414 if (osi_linux.enable)
1415 acpi_osi_setup("Linux");
1416 else
1417 acpi_osi_setup("!Linux");
1419 return;
1422 static void __init acpi_cmdline_osi_linux(unsigned int enable)
1424 osi_linux.cmdline = 1; /* cmdline set the default and override DMI */
1425 osi_linux.dmi = 0;
1426 set_osi_linux(enable);
1428 return;
1431 void __init acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d)
1433 printk(KERN_NOTICE PREFIX "DMI detected: %s\n", d->ident);
1435 if (enable == -1)
1436 return;
1438 osi_linux.dmi = 1; /* DMI knows that this box asks OSI(Linux) */
1439 set_osi_linux(enable);
1441 return;
1445 * Modify the list of "OS Interfaces" reported to BIOS via _OSI
1447 * empty string disables _OSI
1448 * string starting with '!' disables that string
1449 * otherwise string is added to list, augmenting built-in strings
1451 static void __init acpi_osi_setup_late(void)
1453 struct osi_setup_entry *osi;
1454 char *str;
1455 int i;
1456 acpi_status status;
1458 if (osi_linux.default_disabling) {
1459 status = acpi_update_interfaces(ACPI_DISABLE_ALL_VENDOR_STRINGS);
1461 if (ACPI_SUCCESS(status))
1462 printk(KERN_INFO PREFIX "Disabled all _OSI OS vendors\n");
1465 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1466 osi = &osi_setup_entries[i];
1467 str = osi->string;
1469 if (*str == '\0')
1470 break;
1471 if (osi->enable) {
1472 status = acpi_install_interface(str);
1474 if (ACPI_SUCCESS(status))
1475 printk(KERN_INFO PREFIX "Added _OSI(%s)\n", str);
1476 } else {
1477 status = acpi_remove_interface(str);
1479 if (ACPI_SUCCESS(status))
1480 printk(KERN_INFO PREFIX "Deleted _OSI(%s)\n", str);
1485 static int __init osi_setup(char *str)
1487 if (str && !strcmp("Linux", str))
1488 acpi_cmdline_osi_linux(1);
1489 else if (str && !strcmp("!Linux", str))
1490 acpi_cmdline_osi_linux(0);
1491 else
1492 acpi_osi_setup(str);
1494 return 1;
1497 __setup("acpi_osi=", osi_setup);
1499 /* enable serialization to combat AE_ALREADY_EXISTS errors */
1500 static int __init acpi_serialize_setup(char *str)
1502 printk(KERN_INFO PREFIX "serialize enabled\n");
1504 acpi_gbl_all_methods_serialized = TRUE;
1506 return 1;
1509 __setup("acpi_serialize", acpi_serialize_setup);
1511 /* Check of resource interference between native drivers and ACPI
1512 * OperationRegions (SystemIO and System Memory only).
1513 * IO ports and memory declared in ACPI might be used by the ACPI subsystem
1514 * in arbitrary AML code and can interfere with legacy drivers.
1515 * acpi_enforce_resources= can be set to:
1517 * - strict (default) (2)
1518 * -> further driver trying to access the resources will not load
1519 * - lax (1)
1520 * -> further driver trying to access the resources will load, but you
1521 * get a system message that something might go wrong...
1523 * - no (0)
1524 * -> ACPI Operation Region resources will not be registered
1527 #define ENFORCE_RESOURCES_STRICT 2
1528 #define ENFORCE_RESOURCES_LAX 1
1529 #define ENFORCE_RESOURCES_NO 0
1531 static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1533 static int __init acpi_enforce_resources_setup(char *str)
1535 if (str == NULL || *str == '\0')
1536 return 0;
1538 if (!strcmp("strict", str))
1539 acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1540 else if (!strcmp("lax", str))
1541 acpi_enforce_resources = ENFORCE_RESOURCES_LAX;
1542 else if (!strcmp("no", str))
1543 acpi_enforce_resources = ENFORCE_RESOURCES_NO;
1545 return 1;
1548 __setup("acpi_enforce_resources=", acpi_enforce_resources_setup);
1550 /* Check for resource conflicts between ACPI OperationRegions and native
1551 * drivers */
1552 int acpi_check_resource_conflict(const struct resource *res)
1554 acpi_adr_space_type space_id;
1555 acpi_size length;
1556 u8 warn = 0;
1557 int clash = 0;
1559 if (acpi_enforce_resources == ENFORCE_RESOURCES_NO)
1560 return 0;
1561 if (!(res->flags & IORESOURCE_IO) && !(res->flags & IORESOURCE_MEM))
1562 return 0;
1564 if (res->flags & IORESOURCE_IO)
1565 space_id = ACPI_ADR_SPACE_SYSTEM_IO;
1566 else
1567 space_id = ACPI_ADR_SPACE_SYSTEM_MEMORY;
1569 length = resource_size(res);
1570 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO)
1571 warn = 1;
1572 clash = acpi_check_address_range(space_id, res->start, length, warn);
1574 if (clash) {
1575 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO) {
1576 if (acpi_enforce_resources == ENFORCE_RESOURCES_LAX)
1577 printk(KERN_NOTICE "ACPI: This conflict may"
1578 " cause random problems and system"
1579 " instability\n");
1580 printk(KERN_INFO "ACPI: If an ACPI driver is available"
1581 " for this device, you should use it instead of"
1582 " the native driver\n");
1584 if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT)
1585 return -EBUSY;
1587 return 0;
1589 EXPORT_SYMBOL(acpi_check_resource_conflict);
1591 int acpi_check_region(resource_size_t start, resource_size_t n,
1592 const char *name)
1594 struct resource res = {
1595 .start = start,
1596 .end = start + n - 1,
1597 .name = name,
1598 .flags = IORESOURCE_IO,
1601 return acpi_check_resource_conflict(&res);
1603 EXPORT_SYMBOL(acpi_check_region);
1606 * Let drivers know whether the resource checks are effective
1608 int acpi_resources_are_enforced(void)
1610 return acpi_enforce_resources == ENFORCE_RESOURCES_STRICT;
1612 EXPORT_SYMBOL(acpi_resources_are_enforced);
1615 * Deallocate the memory for a spinlock.
1617 void acpi_os_delete_lock(acpi_spinlock handle)
1619 ACPI_FREE(handle);
1623 * Acquire a spinlock.
1625 * handle is a pointer to the spinlock_t.
1628 acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp)
1630 acpi_cpu_flags flags;
1631 spin_lock_irqsave(lockp, flags);
1632 return flags;
1636 * Release a spinlock. See above.
1639 void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags)
1641 spin_unlock_irqrestore(lockp, flags);
1644 #ifndef ACPI_USE_LOCAL_CACHE
1646 /*******************************************************************************
1648 * FUNCTION: acpi_os_create_cache
1650 * PARAMETERS: name - Ascii name for the cache
1651 * size - Size of each cached object
1652 * depth - Maximum depth of the cache (in objects) <ignored>
1653 * cache - Where the new cache object is returned
1655 * RETURN: status
1657 * DESCRIPTION: Create a cache object
1659 ******************************************************************************/
1661 acpi_status
1662 acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache)
1664 *cache = kmem_cache_create(name, size, 0, 0, NULL);
1665 if (*cache == NULL)
1666 return AE_ERROR;
1667 else
1668 return AE_OK;
1671 /*******************************************************************************
1673 * FUNCTION: acpi_os_purge_cache
1675 * PARAMETERS: Cache - Handle to cache object
1677 * RETURN: Status
1679 * DESCRIPTION: Free all objects within the requested cache.
1681 ******************************************************************************/
1683 acpi_status acpi_os_purge_cache(acpi_cache_t * cache)
1685 kmem_cache_shrink(cache);
1686 return (AE_OK);
1689 /*******************************************************************************
1691 * FUNCTION: acpi_os_delete_cache
1693 * PARAMETERS: Cache - Handle to cache object
1695 * RETURN: Status
1697 * DESCRIPTION: Free all objects within the requested cache and delete the
1698 * cache object.
1700 ******************************************************************************/
1702 acpi_status acpi_os_delete_cache(acpi_cache_t * cache)
1704 kmem_cache_destroy(cache);
1705 return (AE_OK);
1708 /*******************************************************************************
1710 * FUNCTION: acpi_os_release_object
1712 * PARAMETERS: Cache - Handle to cache object
1713 * Object - The object to be released
1715 * RETURN: None
1717 * DESCRIPTION: Release an object to the specified cache. If cache is full,
1718 * the object is deleted.
1720 ******************************************************************************/
1722 acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object)
1724 kmem_cache_free(cache, object);
1725 return (AE_OK);
1727 #endif
1729 static int __init acpi_no_auto_ssdt_setup(char *s)
1731 printk(KERN_NOTICE PREFIX "SSDT auto-load disabled\n");
1733 acpi_gbl_disable_ssdt_table_load = TRUE;
1735 return 1;
1738 __setup("acpi_no_auto_ssdt", acpi_no_auto_ssdt_setup);
1740 acpi_status __init acpi_os_initialize(void)
1742 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1743 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1744 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe0_block);
1745 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe1_block);
1747 return AE_OK;
1750 acpi_status __init acpi_os_initialize1(void)
1752 kacpid_wq = alloc_workqueue("kacpid", 0, 1);
1753 kacpi_notify_wq = alloc_workqueue("kacpi_notify", 0, 1);
1754 kacpi_hotplug_wq = alloc_workqueue("kacpi_hotplug", 0, 1);
1755 BUG_ON(!kacpid_wq);
1756 BUG_ON(!kacpi_notify_wq);
1757 BUG_ON(!kacpi_hotplug_wq);
1758 acpi_install_interface_handler(acpi_osi_handler);
1759 acpi_osi_setup_late();
1760 return AE_OK;
1763 acpi_status acpi_os_terminate(void)
1765 if (acpi_irq_handler) {
1766 acpi_os_remove_interrupt_handler(acpi_gbl_FADT.sci_interrupt,
1767 acpi_irq_handler);
1770 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe1_block);
1771 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe0_block);
1772 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1773 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1775 destroy_workqueue(kacpid_wq);
1776 destroy_workqueue(kacpi_notify_wq);
1777 destroy_workqueue(kacpi_hotplug_wq);
1779 return AE_OK;
1782 acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control,
1783 u32 pm1b_control)
1785 int rc = 0;
1786 if (__acpi_os_prepare_sleep)
1787 rc = __acpi_os_prepare_sleep(sleep_state,
1788 pm1a_control, pm1b_control);
1789 if (rc < 0)
1790 return AE_ERROR;
1791 else if (rc > 0)
1792 return AE_CTRL_SKIP;
1794 return AE_OK;
1797 void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state,
1798 u32 pm1a_ctrl, u32 pm1b_ctrl))
1800 __acpi_os_prepare_sleep = func;
1803 acpi_status acpi_os_prepare_extended_sleep(u8 sleep_state, u32 val_a,
1804 u32 val_b)
1806 int rc = 0;
1807 if (__acpi_os_prepare_extended_sleep)
1808 rc = __acpi_os_prepare_extended_sleep(sleep_state,
1809 val_a, val_b);
1810 if (rc < 0)
1811 return AE_ERROR;
1812 else if (rc > 0)
1813 return AE_CTRL_SKIP;
1815 return AE_OK;
1818 void acpi_os_set_prepare_extended_sleep(int (*func)(u8 sleep_state,
1819 u32 val_a, u32 val_b))
1821 __acpi_os_prepare_extended_sleep = func;
1825 void alloc_acpi_hp_work(acpi_handle handle, u32 type, void *context,
1826 void (*func)(struct work_struct *work))
1828 struct acpi_hp_work *hp_work;
1829 int ret;
1831 hp_work = kmalloc(sizeof(*hp_work), GFP_KERNEL);
1832 if (!hp_work)
1833 return;
1835 hp_work->handle = handle;
1836 hp_work->type = type;
1837 hp_work->context = context;
1839 INIT_WORK(&hp_work->work, func);
1840 ret = queue_work(kacpi_hotplug_wq, &hp_work->work);
1841 if (!ret)
1842 kfree(hp_work);
1844 EXPORT_SYMBOL_GPL(alloc_acpi_hp_work);