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 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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 CONFIG_ACPI_CUSTOM_DSDT
60 #include CONFIG_ACPI_CUSTOM_DSDT_FILE
63 #ifdef ENABLE_DEBUGGER
64 #include <linux/kdb.h>
66 /* stuff for debugger support */
68 EXPORT_SYMBOL(acpi_in_debugger
);
69 #endif /*ENABLE_DEBUGGER */
71 static int (*__acpi_os_prepare_sleep
)(u8 sleep_state
, u32 pm1a_ctrl
,
73 static int (*__acpi_os_prepare_extended_sleep
)(u8 sleep_state
, u32 val_a
,
76 static acpi_osd_handler acpi_irq_handler
;
77 static void *acpi_irq_context
;
78 static struct workqueue_struct
*kacpid_wq
;
79 static struct workqueue_struct
*kacpi_notify_wq
;
80 static struct workqueue_struct
*kacpi_hotplug_wq
;
81 static bool acpi_os_initialized
;
82 unsigned int acpi_sci_irq
= INVALID_ACPI_IRQ
;
85 * This list of permanent mappings is for memory that may be accessed from
86 * interrupt context, where we can't do the ioremap().
89 struct list_head list
;
91 acpi_physical_address phys
;
93 unsigned long refcount
;
96 static LIST_HEAD(acpi_ioremaps
);
97 static DEFINE_MUTEX(acpi_ioremap_lock
);
99 static void __init
acpi_osi_setup_late(void);
102 * The story of _OSI(Linux)
104 * From pre-history through Linux-2.6.22,
105 * Linux responded TRUE upon a BIOS OSI(Linux) query.
107 * Unfortunately, reference BIOS writers got wind of this
108 * and put OSI(Linux) in their example code, quickly exposing
109 * this string as ill-conceived and opening the door to
110 * an un-bounded number of BIOS incompatibilities.
112 * For example, OSI(Linux) was used on resume to re-POST a
113 * video card on one system, because Linux at that time
114 * could not do a speedy restore in its native driver.
115 * But then upon gaining quick native restore capability,
116 * Linux has no way to tell the BIOS to skip the time-consuming
117 * POST -- putting Linux at a permanent performance disadvantage.
118 * On another system, the BIOS writer used OSI(Linux)
119 * to infer native OS support for IPMI! On other systems,
120 * OSI(Linux) simply got in the way of Linux claiming to
121 * be compatible with other operating systems, exposing
122 * BIOS issues such as skipped device initialization.
124 * So "Linux" turned out to be a really poor chose of
125 * OSI string, and from Linux-2.6.23 onward we respond FALSE.
127 * BIOS writers should NOT query _OSI(Linux) on future systems.
128 * Linux will complain on the console when it sees it, and return FALSE.
129 * To get Linux to return TRUE for your system will require
130 * a kernel source update to add a DMI entry,
131 * or boot with "acpi_osi=Linux"
134 static struct osi_linux
{
135 unsigned int enable
:1;
137 unsigned int cmdline
:1;
138 unsigned int default_disabling
:1;
139 } osi_linux
= {0, 0, 0, 0};
141 static u32
acpi_osi_handler(acpi_string interface
, u32 supported
)
143 if (!strcmp("Linux", interface
)) {
145 printk_once(KERN_NOTICE FW_BUG PREFIX
146 "BIOS _OSI(Linux) query %s%s\n",
147 osi_linux
.enable
? "honored" : "ignored",
148 osi_linux
.cmdline
? " via cmdline" :
149 osi_linux
.dmi
? " via DMI" : "");
152 if (!strcmp("Darwin", interface
)) {
154 * Apple firmware will behave poorly if it receives positive
155 * answers to "Darwin" and any other OS. Respond positively
156 * to Darwin and then disable all other vendor strings.
158 acpi_update_interfaces(ACPI_DISABLE_ALL_VENDOR_STRINGS
);
159 supported
= ACPI_UINT32_MAX
;
165 static void __init
acpi_request_region (struct acpi_generic_address
*gas
,
166 unsigned int length
, char *desc
)
170 /* Handle possible alignment issues */
171 memcpy(&addr
, &gas
->address
, sizeof(addr
));
172 if (!addr
|| !length
)
175 /* Resources are never freed */
176 if (gas
->space_id
== ACPI_ADR_SPACE_SYSTEM_IO
)
177 request_region(addr
, length
, desc
);
178 else if (gas
->space_id
== ACPI_ADR_SPACE_SYSTEM_MEMORY
)
179 request_mem_region(addr
, length
, desc
);
182 static int __init
acpi_reserve_resources(void)
184 acpi_request_region(&acpi_gbl_FADT
.xpm1a_event_block
, acpi_gbl_FADT
.pm1_event_length
,
185 "ACPI PM1a_EVT_BLK");
187 acpi_request_region(&acpi_gbl_FADT
.xpm1b_event_block
, acpi_gbl_FADT
.pm1_event_length
,
188 "ACPI PM1b_EVT_BLK");
190 acpi_request_region(&acpi_gbl_FADT
.xpm1a_control_block
, acpi_gbl_FADT
.pm1_control_length
,
191 "ACPI PM1a_CNT_BLK");
193 acpi_request_region(&acpi_gbl_FADT
.xpm1b_control_block
, acpi_gbl_FADT
.pm1_control_length
,
194 "ACPI PM1b_CNT_BLK");
196 if (acpi_gbl_FADT
.pm_timer_length
== 4)
197 acpi_request_region(&acpi_gbl_FADT
.xpm_timer_block
, 4, "ACPI PM_TMR");
199 acpi_request_region(&acpi_gbl_FADT
.xpm2_control_block
, acpi_gbl_FADT
.pm2_control_length
,
202 /* Length of GPE blocks must be a non-negative multiple of 2 */
204 if (!(acpi_gbl_FADT
.gpe0_block_length
& 0x1))
205 acpi_request_region(&acpi_gbl_FADT
.xgpe0_block
,
206 acpi_gbl_FADT
.gpe0_block_length
, "ACPI GPE0_BLK");
208 if (!(acpi_gbl_FADT
.gpe1_block_length
& 0x1))
209 acpi_request_region(&acpi_gbl_FADT
.xgpe1_block
,
210 acpi_gbl_FADT
.gpe1_block_length
, "ACPI GPE1_BLK");
214 fs_initcall_sync(acpi_reserve_resources
);
216 void acpi_os_printf(const char *fmt
, ...)
220 acpi_os_vprintf(fmt
, args
);
223 EXPORT_SYMBOL(acpi_os_printf
);
225 void acpi_os_vprintf(const char *fmt
, va_list args
)
227 static char buffer
[512];
229 vsprintf(buffer
, fmt
, args
);
231 #ifdef ENABLE_DEBUGGER
232 if (acpi_in_debugger
) {
233 kdb_printf("%s", buffer
);
235 printk(KERN_CONT
"%s", buffer
);
238 if (acpi_debugger_write_log(buffer
) < 0)
239 printk(KERN_CONT
"%s", buffer
);
244 static unsigned long acpi_rsdp
;
245 static int __init
setup_acpi_rsdp(char *arg
)
247 if (kstrtoul(arg
, 16, &acpi_rsdp
))
251 early_param("acpi_rsdp", setup_acpi_rsdp
);
254 acpi_physical_address __init
acpi_os_get_root_pointer(void)
261 if (efi_enabled(EFI_CONFIG_TABLES
)) {
262 if (efi
.acpi20
!= EFI_INVALID_TABLE_ADDR
)
264 else if (efi
.acpi
!= EFI_INVALID_TABLE_ADDR
)
267 printk(KERN_ERR PREFIX
268 "System description tables not found\n");
271 } else if (IS_ENABLED(CONFIG_ACPI_LEGACY_TABLES_LOOKUP
)) {
272 acpi_physical_address pa
= 0;
274 acpi_find_root_pointer(&pa
);
281 /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
282 static struct acpi_ioremap
*
283 acpi_map_lookup(acpi_physical_address phys
, acpi_size size
)
285 struct acpi_ioremap
*map
;
287 list_for_each_entry_rcu(map
, &acpi_ioremaps
, list
)
288 if (map
->phys
<= phys
&&
289 phys
+ size
<= map
->phys
+ map
->size
)
295 /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
296 static void __iomem
*
297 acpi_map_vaddr_lookup(acpi_physical_address phys
, unsigned int size
)
299 struct acpi_ioremap
*map
;
301 map
= acpi_map_lookup(phys
, size
);
303 return map
->virt
+ (phys
- map
->phys
);
308 void __iomem
*acpi_os_get_iomem(acpi_physical_address phys
, unsigned int size
)
310 struct acpi_ioremap
*map
;
311 void __iomem
*virt
= NULL
;
313 mutex_lock(&acpi_ioremap_lock
);
314 map
= acpi_map_lookup(phys
, size
);
316 virt
= map
->virt
+ (phys
- map
->phys
);
319 mutex_unlock(&acpi_ioremap_lock
);
322 EXPORT_SYMBOL_GPL(acpi_os_get_iomem
);
324 /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
325 static struct acpi_ioremap
*
326 acpi_map_lookup_virt(void __iomem
*virt
, acpi_size size
)
328 struct acpi_ioremap
*map
;
330 list_for_each_entry_rcu(map
, &acpi_ioremaps
, list
)
331 if (map
->virt
<= virt
&&
332 virt
+ size
<= map
->virt
+ map
->size
)
338 #if defined(CONFIG_IA64) || defined(CONFIG_ARM64)
339 /* ioremap will take care of cache attributes */
340 #define should_use_kmap(pfn) 0
342 #define should_use_kmap(pfn) page_is_ram(pfn)
345 static void __iomem
*acpi_map(acpi_physical_address pg_off
, unsigned long pg_sz
)
349 pfn
= pg_off
>> PAGE_SHIFT
;
350 if (should_use_kmap(pfn
)) {
351 if (pg_sz
> PAGE_SIZE
)
353 return (void __iomem __force
*)kmap(pfn_to_page(pfn
));
355 return acpi_os_ioremap(pg_off
, pg_sz
);
358 static void acpi_unmap(acpi_physical_address pg_off
, void __iomem
*vaddr
)
362 pfn
= pg_off
>> PAGE_SHIFT
;
363 if (should_use_kmap(pfn
))
364 kunmap(pfn_to_page(pfn
));
370 * acpi_os_map_iomem - Get a virtual address for a given physical address range.
371 * @phys: Start of the physical address range to map.
372 * @size: Size of the physical address range to map.
374 * Look up the given physical address range in the list of existing ACPI memory
375 * mappings. If found, get a reference to it and return a pointer to it (its
376 * virtual address). If not found, map it, add it to that list and return a
379 * During early init (when acpi_gbl_permanent_mmap has not been set yet) this
380 * routine simply calls __acpi_map_table() to get the job done.
382 void __iomem
*__init_refok
383 acpi_os_map_iomem(acpi_physical_address phys
, acpi_size size
)
385 struct acpi_ioremap
*map
;
387 acpi_physical_address pg_off
;
390 if (phys
> ULONG_MAX
) {
391 printk(KERN_ERR PREFIX
"Cannot map memory that high\n");
395 if (!acpi_gbl_permanent_mmap
)
396 return __acpi_map_table((unsigned long)phys
, size
);
398 mutex_lock(&acpi_ioremap_lock
);
399 /* Check if there's a suitable mapping already. */
400 map
= acpi_map_lookup(phys
, size
);
406 map
= kzalloc(sizeof(*map
), GFP_KERNEL
);
408 mutex_unlock(&acpi_ioremap_lock
);
412 pg_off
= round_down(phys
, PAGE_SIZE
);
413 pg_sz
= round_up(phys
+ size
, PAGE_SIZE
) - pg_off
;
414 virt
= acpi_map(pg_off
, pg_sz
);
416 mutex_unlock(&acpi_ioremap_lock
);
421 INIT_LIST_HEAD(&map
->list
);
427 list_add_tail_rcu(&map
->list
, &acpi_ioremaps
);
430 mutex_unlock(&acpi_ioremap_lock
);
431 return map
->virt
+ (phys
- map
->phys
);
433 EXPORT_SYMBOL_GPL(acpi_os_map_iomem
);
436 acpi_os_map_memory(acpi_physical_address phys
, acpi_size size
)
438 return (void *)acpi_os_map_iomem(phys
, size
);
440 EXPORT_SYMBOL_GPL(acpi_os_map_memory
);
442 static void acpi_os_drop_map_ref(struct acpi_ioremap
*map
)
444 if (!--map
->refcount
)
445 list_del_rcu(&map
->list
);
448 static void acpi_os_map_cleanup(struct acpi_ioremap
*map
)
450 if (!map
->refcount
) {
451 synchronize_rcu_expedited();
452 acpi_unmap(map
->phys
, map
->virt
);
458 * acpi_os_unmap_iomem - Drop a memory mapping reference.
459 * @virt: Start of the address range to drop a reference to.
460 * @size: Size of the address range to drop a reference to.
462 * Look up the given virtual address range in the list of existing ACPI memory
463 * mappings, drop a reference to it and unmap it if there are no more active
466 * During early init (when acpi_gbl_permanent_mmap has not been set yet) this
467 * routine simply calls __acpi_unmap_table() to get the job done. Since
468 * __acpi_unmap_table() is an __init function, the __ref annotation is needed
471 void __ref
acpi_os_unmap_iomem(void __iomem
*virt
, acpi_size size
)
473 struct acpi_ioremap
*map
;
475 if (!acpi_gbl_permanent_mmap
) {
476 __acpi_unmap_table(virt
, size
);
480 mutex_lock(&acpi_ioremap_lock
);
481 map
= acpi_map_lookup_virt(virt
, size
);
483 mutex_unlock(&acpi_ioremap_lock
);
484 WARN(true, PREFIX
"%s: bad address %p\n", __func__
, virt
);
487 acpi_os_drop_map_ref(map
);
488 mutex_unlock(&acpi_ioremap_lock
);
490 acpi_os_map_cleanup(map
);
492 EXPORT_SYMBOL_GPL(acpi_os_unmap_iomem
);
494 void __ref
acpi_os_unmap_memory(void *virt
, acpi_size size
)
496 return acpi_os_unmap_iomem((void __iomem
*)virt
, size
);
498 EXPORT_SYMBOL_GPL(acpi_os_unmap_memory
);
500 void __init
early_acpi_os_unmap_memory(void __iomem
*virt
, acpi_size size
)
502 if (!acpi_gbl_permanent_mmap
)
503 __acpi_unmap_table(virt
, size
);
506 int acpi_os_map_generic_address(struct acpi_generic_address
*gas
)
511 if (gas
->space_id
!= ACPI_ADR_SPACE_SYSTEM_MEMORY
)
514 /* Handle possible alignment issues */
515 memcpy(&addr
, &gas
->address
, sizeof(addr
));
516 if (!addr
|| !gas
->bit_width
)
519 virt
= acpi_os_map_iomem(addr
, gas
->bit_width
/ 8);
525 EXPORT_SYMBOL(acpi_os_map_generic_address
);
527 void acpi_os_unmap_generic_address(struct acpi_generic_address
*gas
)
530 struct acpi_ioremap
*map
;
532 if (gas
->space_id
!= ACPI_ADR_SPACE_SYSTEM_MEMORY
)
535 /* Handle possible alignment issues */
536 memcpy(&addr
, &gas
->address
, sizeof(addr
));
537 if (!addr
|| !gas
->bit_width
)
540 mutex_lock(&acpi_ioremap_lock
);
541 map
= acpi_map_lookup(addr
, gas
->bit_width
/ 8);
543 mutex_unlock(&acpi_ioremap_lock
);
546 acpi_os_drop_map_ref(map
);
547 mutex_unlock(&acpi_ioremap_lock
);
549 acpi_os_map_cleanup(map
);
551 EXPORT_SYMBOL(acpi_os_unmap_generic_address
);
553 #ifdef ACPI_FUTURE_USAGE
555 acpi_os_get_physical_address(void *virt
, acpi_physical_address
* phys
)
558 return AE_BAD_PARAMETER
;
560 *phys
= virt_to_phys(virt
);
566 #ifdef CONFIG_ACPI_REV_OVERRIDE_POSSIBLE
567 static bool acpi_rev_override
;
569 int __init
acpi_rev_override_setup(char *str
)
571 acpi_rev_override
= true;
574 __setup("acpi_rev_override", acpi_rev_override_setup
);
576 #define acpi_rev_override false
579 #define ACPI_MAX_OVERRIDE_LEN 100
581 static char acpi_os_name
[ACPI_MAX_OVERRIDE_LEN
];
584 acpi_os_predefined_override(const struct acpi_predefined_names
*init_val
,
587 if (!init_val
|| !new_val
)
588 return AE_BAD_PARAMETER
;
591 if (!memcmp(init_val
->name
, "_OS_", 4) && strlen(acpi_os_name
)) {
592 printk(KERN_INFO PREFIX
"Overriding _OS definition to '%s'\n",
594 *new_val
= acpi_os_name
;
597 if (!memcmp(init_val
->name
, "_REV", 4) && acpi_rev_override
) {
598 printk(KERN_INFO PREFIX
"Overriding _REV return value to 5\n");
599 *new_val
= (char *)5;
605 static void acpi_table_taint(struct acpi_table_header
*table
)
608 "Override [%4.4s-%8.8s], this is unsafe: tainting kernel\n",
609 table
->signature
, table
->oem_table_id
);
610 add_taint(TAINT_OVERRIDDEN_ACPI_TABLE
, LOCKDEP_NOW_UNRELIABLE
);
613 #ifdef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
614 #include <linux/earlycpio.h>
615 #include <linux/memblock.h>
617 static u64 acpi_tables_addr
;
618 static int all_tables_size
;
620 /* Copied from acpica/tbutils.c:acpi_tb_checksum() */
621 static u8 __init
acpi_table_checksum(u8
*buffer
, u32 length
)
624 u8
*end
= buffer
+ length
;
627 sum
= (u8
) (sum
+ *(buffer
++));
631 /* All but ACPI_SIG_RSDP and ACPI_SIG_FACS: */
632 static const char * const table_sigs
[] = {
633 ACPI_SIG_BERT
, ACPI_SIG_CPEP
, ACPI_SIG_ECDT
, ACPI_SIG_EINJ
,
634 ACPI_SIG_ERST
, ACPI_SIG_HEST
, ACPI_SIG_MADT
, ACPI_SIG_MSCT
,
635 ACPI_SIG_SBST
, ACPI_SIG_SLIT
, ACPI_SIG_SRAT
, ACPI_SIG_ASF
,
636 ACPI_SIG_BOOT
, ACPI_SIG_DBGP
, ACPI_SIG_DMAR
, ACPI_SIG_HPET
,
637 ACPI_SIG_IBFT
, ACPI_SIG_IVRS
, ACPI_SIG_MCFG
, ACPI_SIG_MCHI
,
638 ACPI_SIG_SLIC
, ACPI_SIG_SPCR
, ACPI_SIG_SPMI
, ACPI_SIG_TCPA
,
639 ACPI_SIG_UEFI
, ACPI_SIG_WAET
, ACPI_SIG_WDAT
, ACPI_SIG_WDDT
,
640 ACPI_SIG_WDRT
, ACPI_SIG_DSDT
, ACPI_SIG_FADT
, ACPI_SIG_PSDT
,
641 ACPI_SIG_RSDT
, ACPI_SIG_XSDT
, ACPI_SIG_SSDT
, NULL
};
643 #define ACPI_HEADER_SIZE sizeof(struct acpi_table_header)
645 #define ACPI_OVERRIDE_TABLES 64
646 static struct cpio_data __initdata acpi_initrd_files
[ACPI_OVERRIDE_TABLES
];
647 static DECLARE_BITMAP(acpi_initrd_installed
, ACPI_OVERRIDE_TABLES
);
649 #define MAP_CHUNK_SIZE (NR_FIX_BTMAPS << PAGE_SHIFT)
651 void __init
acpi_initrd_override(void *data
, size_t size
)
653 int sig
, no
, table_nr
= 0, total_offset
= 0;
655 struct acpi_table_header
*table
;
656 char cpio_path
[32] = "kernel/firmware/acpi/";
657 struct cpio_data file
;
659 if (data
== NULL
|| size
== 0)
662 for (no
= 0; no
< ACPI_OVERRIDE_TABLES
; no
++) {
663 file
= find_cpio_data(cpio_path
, data
, size
, &offset
);
670 if (file
.size
< sizeof(struct acpi_table_header
)) {
671 pr_err("ACPI OVERRIDE: Table smaller than ACPI header [%s%s]\n",
672 cpio_path
, file
.name
);
678 for (sig
= 0; table_sigs
[sig
]; sig
++)
679 if (!memcmp(table
->signature
, table_sigs
[sig
], 4))
682 if (!table_sigs
[sig
]) {
683 pr_err("ACPI OVERRIDE: Unknown signature [%s%s]\n",
684 cpio_path
, file
.name
);
687 if (file
.size
!= table
->length
) {
688 pr_err("ACPI OVERRIDE: File length does not match table length [%s%s]\n",
689 cpio_path
, file
.name
);
692 if (acpi_table_checksum(file
.data
, table
->length
)) {
693 pr_err("ACPI OVERRIDE: Bad table checksum [%s%s]\n",
694 cpio_path
, file
.name
);
698 pr_info("%4.4s ACPI table found in initrd [%s%s][0x%x]\n",
699 table
->signature
, cpio_path
, file
.name
, table
->length
);
701 all_tables_size
+= table
->length
;
702 acpi_initrd_files
[table_nr
].data
= file
.data
;
703 acpi_initrd_files
[table_nr
].size
= file
.size
;
710 memblock_find_in_range(0, max_low_pfn_mapped
<< PAGE_SHIFT
,
711 all_tables_size
, PAGE_SIZE
);
712 if (!acpi_tables_addr
) {
717 * Only calling e820_add_reserve does not work and the
718 * tables are invalid (memory got used) later.
719 * memblock_reserve works as expected and the tables won't get modified.
720 * But it's not enough on X86 because ioremap will
721 * complain later (used by acpi_os_map_memory) that the pages
722 * that should get mapped are not marked "reserved".
723 * Both memblock_reserve and e820_add_region (via arch_reserve_mem_area)
726 memblock_reserve(acpi_tables_addr
, all_tables_size
);
727 arch_reserve_mem_area(acpi_tables_addr
, all_tables_size
);
730 * early_ioremap only can remap 256k one time. If we map all
731 * tables one time, we will hit the limit. Need to map chunks
732 * one by one during copying the same as that in relocate_initrd().
734 for (no
= 0; no
< table_nr
; no
++) {
735 unsigned char *src_p
= acpi_initrd_files
[no
].data
;
736 phys_addr_t size
= acpi_initrd_files
[no
].size
;
737 phys_addr_t dest_addr
= acpi_tables_addr
+ total_offset
;
738 phys_addr_t slop
, clen
;
741 total_offset
+= size
;
744 slop
= dest_addr
& ~PAGE_MASK
;
746 if (clen
> MAP_CHUNK_SIZE
- slop
)
747 clen
= MAP_CHUNK_SIZE
- slop
;
748 dest_p
= early_ioremap(dest_addr
& PAGE_MASK
,
750 memcpy(dest_p
+ slop
, src_p
, clen
);
751 early_iounmap(dest_p
, clen
+ slop
);
760 acpi_os_physical_table_override(struct acpi_table_header
*existing_table
,
761 acpi_physical_address
*address
, u32
*length
)
763 int table_offset
= 0;
765 struct acpi_table_header
*table
;
770 if (!acpi_tables_addr
)
773 while (table_offset
+ ACPI_HEADER_SIZE
<= all_tables_size
) {
774 table
= acpi_os_map_memory(acpi_tables_addr
+ table_offset
,
776 if (table_offset
+ table
->length
> all_tables_size
) {
777 acpi_os_unmap_memory(table
, ACPI_HEADER_SIZE
);
782 table_length
= table
->length
;
784 /* Only override tables matched */
785 if (test_bit(table_index
, acpi_initrd_installed
) ||
786 memcmp(existing_table
->signature
, table
->signature
, 4) ||
787 memcmp(table
->oem_table_id
, existing_table
->oem_table_id
,
788 ACPI_OEM_TABLE_ID_SIZE
)) {
789 acpi_os_unmap_memory(table
, ACPI_HEADER_SIZE
);
793 *length
= table_length
;
794 *address
= acpi_tables_addr
+ table_offset
;
795 acpi_table_taint(existing_table
);
796 acpi_os_unmap_memory(table
, ACPI_HEADER_SIZE
);
797 set_bit(table_index
, acpi_initrd_installed
);
801 table_offset
+= table_length
;
807 void __init
acpi_initrd_initialize_tables(void)
809 int table_offset
= 0;
812 struct acpi_table_header
*table
;
814 if (!acpi_tables_addr
)
817 while (table_offset
+ ACPI_HEADER_SIZE
<= all_tables_size
) {
818 table
= acpi_os_map_memory(acpi_tables_addr
+ table_offset
,
820 if (table_offset
+ table
->length
> all_tables_size
) {
821 acpi_os_unmap_memory(table
, ACPI_HEADER_SIZE
);
826 table_length
= table
->length
;
828 /* Skip RSDT/XSDT which should only be used for override */
829 if (test_bit(table_index
, acpi_initrd_installed
) ||
830 ACPI_COMPARE_NAME(table
->signature
, ACPI_SIG_RSDT
) ||
831 ACPI_COMPARE_NAME(table
->signature
, ACPI_SIG_XSDT
)) {
832 acpi_os_unmap_memory(table
, ACPI_HEADER_SIZE
);
836 acpi_table_taint(table
);
837 acpi_os_unmap_memory(table
, ACPI_HEADER_SIZE
);
838 acpi_install_table(acpi_tables_addr
+ table_offset
, TRUE
);
839 set_bit(table_index
, acpi_initrd_installed
);
841 table_offset
+= table_length
;
847 acpi_os_physical_table_override(struct acpi_table_header
*existing_table
,
848 acpi_physical_address
*address
,
856 void __init
acpi_initrd_initialize_tables(void)
859 #endif /* CONFIG_ACPI_INITRD_TABLE_OVERRIDE */
862 acpi_os_table_override(struct acpi_table_header
*existing_table
,
863 struct acpi_table_header
**new_table
)
865 if (!existing_table
|| !new_table
)
866 return AE_BAD_PARAMETER
;
870 #ifdef CONFIG_ACPI_CUSTOM_DSDT
871 if (strncmp(existing_table
->signature
, "DSDT", 4) == 0)
872 *new_table
= (struct acpi_table_header
*)AmlCode
;
874 if (*new_table
!= NULL
)
875 acpi_table_taint(existing_table
);
879 static irqreturn_t
acpi_irq(int irq
, void *dev_id
)
883 handled
= (*acpi_irq_handler
) (acpi_irq_context
);
889 acpi_irq_not_handled
++;
895 acpi_os_install_interrupt_handler(u32 gsi
, acpi_osd_handler handler
,
900 acpi_irq_stats_init();
903 * ACPI interrupts different from the SCI in our copy of the FADT are
906 if (gsi
!= acpi_gbl_FADT
.sci_interrupt
)
907 return AE_BAD_PARAMETER
;
909 if (acpi_irq_handler
)
910 return AE_ALREADY_ACQUIRED
;
912 if (acpi_gsi_to_irq(gsi
, &irq
) < 0) {
913 printk(KERN_ERR PREFIX
"SCI (ACPI GSI %d) not registered\n",
918 acpi_irq_handler
= handler
;
919 acpi_irq_context
= context
;
920 if (request_irq(irq
, acpi_irq
, IRQF_SHARED
, "acpi", acpi_irq
)) {
921 printk(KERN_ERR PREFIX
"SCI (IRQ%d) allocation failed\n", irq
);
922 acpi_irq_handler
= NULL
;
923 return AE_NOT_ACQUIRED
;
930 acpi_status
acpi_os_remove_interrupt_handler(u32 gsi
, acpi_osd_handler handler
)
932 if (gsi
!= acpi_gbl_FADT
.sci_interrupt
|| !acpi_sci_irq_valid())
933 return AE_BAD_PARAMETER
;
935 free_irq(acpi_sci_irq
, acpi_irq
);
936 acpi_irq_handler
= NULL
;
937 acpi_sci_irq
= INVALID_ACPI_IRQ
;
943 * Running in interpreter thread context, safe to sleep
946 void acpi_os_sleep(u64 ms
)
951 void acpi_os_stall(u32 us
)
959 touch_nmi_watchdog();
965 * Support ACPI 3.0 AML Timer operand
966 * Returns 64-bit free-running, monotonically increasing timer
967 * with 100ns granularity
969 u64
acpi_os_get_timer(void)
971 u64 time_ns
= ktime_to_ns(ktime_get());
972 do_div(time_ns
, 100);
976 acpi_status
acpi_os_read_port(acpi_io_address port
, u32
* value
, u32 width
)
985 *(u8
*) value
= inb(port
);
986 } else if (width
<= 16) {
987 *(u16
*) value
= inw(port
);
988 } else if (width
<= 32) {
989 *(u32
*) value
= inl(port
);
997 EXPORT_SYMBOL(acpi_os_read_port
);
999 acpi_status
acpi_os_write_port(acpi_io_address port
, u32 value
, u32 width
)
1003 } else if (width
<= 16) {
1005 } else if (width
<= 32) {
1014 EXPORT_SYMBOL(acpi_os_write_port
);
1017 acpi_os_read_memory(acpi_physical_address phys_addr
, u64
*value
, u32 width
)
1019 void __iomem
*virt_addr
;
1020 unsigned int size
= width
/ 8;
1025 virt_addr
= acpi_map_vaddr_lookup(phys_addr
, size
);
1028 virt_addr
= acpi_os_ioremap(phys_addr
, size
);
1030 return AE_BAD_ADDRESS
;
1039 *(u8
*) value
= readb(virt_addr
);
1042 *(u16
*) value
= readw(virt_addr
);
1045 *(u32
*) value
= readl(virt_addr
);
1048 *(u64
*) value
= readq(virt_addr
);
1063 acpi_os_write_memory(acpi_physical_address phys_addr
, u64 value
, u32 width
)
1065 void __iomem
*virt_addr
;
1066 unsigned int size
= width
/ 8;
1070 virt_addr
= acpi_map_vaddr_lookup(phys_addr
, size
);
1073 virt_addr
= acpi_os_ioremap(phys_addr
, size
);
1075 return AE_BAD_ADDRESS
;
1081 writeb(value
, virt_addr
);
1084 writew(value
, virt_addr
);
1087 writel(value
, virt_addr
);
1090 writeq(value
, virt_addr
);
1105 acpi_os_read_pci_configuration(struct acpi_pci_id
* pci_id
, u32 reg
,
1106 u64
*value
, u32 width
)
1112 return AE_BAD_PARAMETER
;
1128 result
= raw_pci_read(pci_id
->segment
, pci_id
->bus
,
1129 PCI_DEVFN(pci_id
->device
, pci_id
->function
),
1130 reg
, size
, &value32
);
1133 return (result
? AE_ERROR
: AE_OK
);
1137 acpi_os_write_pci_configuration(struct acpi_pci_id
* pci_id
, u32 reg
,
1138 u64 value
, u32 width
)
1156 result
= raw_pci_write(pci_id
->segment
, pci_id
->bus
,
1157 PCI_DEVFN(pci_id
->device
, pci_id
->function
),
1160 return (result
? AE_ERROR
: AE_OK
);
1163 static void acpi_os_execute_deferred(struct work_struct
*work
)
1165 struct acpi_os_dpc
*dpc
= container_of(work
, struct acpi_os_dpc
, work
);
1167 dpc
->function(dpc
->context
);
1171 #ifdef CONFIG_ACPI_DEBUGGER
1172 static struct acpi_debugger acpi_debugger
;
1173 static bool acpi_debugger_initialized
;
1175 int acpi_register_debugger(struct module
*owner
,
1176 const struct acpi_debugger_ops
*ops
)
1180 mutex_lock(&acpi_debugger
.lock
);
1181 if (acpi_debugger
.ops
) {
1186 acpi_debugger
.owner
= owner
;
1187 acpi_debugger
.ops
= ops
;
1190 mutex_unlock(&acpi_debugger
.lock
);
1193 EXPORT_SYMBOL(acpi_register_debugger
);
1195 void acpi_unregister_debugger(const struct acpi_debugger_ops
*ops
)
1197 mutex_lock(&acpi_debugger
.lock
);
1198 if (ops
== acpi_debugger
.ops
) {
1199 acpi_debugger
.ops
= NULL
;
1200 acpi_debugger
.owner
= NULL
;
1202 mutex_unlock(&acpi_debugger
.lock
);
1204 EXPORT_SYMBOL(acpi_unregister_debugger
);
1206 int acpi_debugger_create_thread(acpi_osd_exec_callback function
, void *context
)
1209 int (*func
)(acpi_osd_exec_callback
, void *);
1210 struct module
*owner
;
1212 if (!acpi_debugger_initialized
)
1214 mutex_lock(&acpi_debugger
.lock
);
1215 if (!acpi_debugger
.ops
) {
1219 if (!try_module_get(acpi_debugger
.owner
)) {
1223 func
= acpi_debugger
.ops
->create_thread
;
1224 owner
= acpi_debugger
.owner
;
1225 mutex_unlock(&acpi_debugger
.lock
);
1227 ret
= func(function
, context
);
1229 mutex_lock(&acpi_debugger
.lock
);
1232 mutex_unlock(&acpi_debugger
.lock
);
1236 ssize_t
acpi_debugger_write_log(const char *msg
)
1239 ssize_t (*func
)(const char *);
1240 struct module
*owner
;
1242 if (!acpi_debugger_initialized
)
1244 mutex_lock(&acpi_debugger
.lock
);
1245 if (!acpi_debugger
.ops
) {
1249 if (!try_module_get(acpi_debugger
.owner
)) {
1253 func
= acpi_debugger
.ops
->write_log
;
1254 owner
= acpi_debugger
.owner
;
1255 mutex_unlock(&acpi_debugger
.lock
);
1259 mutex_lock(&acpi_debugger
.lock
);
1262 mutex_unlock(&acpi_debugger
.lock
);
1266 ssize_t
acpi_debugger_read_cmd(char *buffer
, size_t buffer_length
)
1269 ssize_t (*func
)(char *, size_t);
1270 struct module
*owner
;
1272 if (!acpi_debugger_initialized
)
1274 mutex_lock(&acpi_debugger
.lock
);
1275 if (!acpi_debugger
.ops
) {
1279 if (!try_module_get(acpi_debugger
.owner
)) {
1283 func
= acpi_debugger
.ops
->read_cmd
;
1284 owner
= acpi_debugger
.owner
;
1285 mutex_unlock(&acpi_debugger
.lock
);
1287 ret
= func(buffer
, buffer_length
);
1289 mutex_lock(&acpi_debugger
.lock
);
1292 mutex_unlock(&acpi_debugger
.lock
);
1296 int acpi_debugger_wait_command_ready(void)
1299 int (*func
)(bool, char *, size_t);
1300 struct module
*owner
;
1302 if (!acpi_debugger_initialized
)
1304 mutex_lock(&acpi_debugger
.lock
);
1305 if (!acpi_debugger
.ops
) {
1309 if (!try_module_get(acpi_debugger
.owner
)) {
1313 func
= acpi_debugger
.ops
->wait_command_ready
;
1314 owner
= acpi_debugger
.owner
;
1315 mutex_unlock(&acpi_debugger
.lock
);
1317 ret
= func(acpi_gbl_method_executing
,
1318 acpi_gbl_db_line_buf
, ACPI_DB_LINE_BUFFER_SIZE
);
1320 mutex_lock(&acpi_debugger
.lock
);
1323 mutex_unlock(&acpi_debugger
.lock
);
1327 int acpi_debugger_notify_command_complete(void)
1331 struct module
*owner
;
1333 if (!acpi_debugger_initialized
)
1335 mutex_lock(&acpi_debugger
.lock
);
1336 if (!acpi_debugger
.ops
) {
1340 if (!try_module_get(acpi_debugger
.owner
)) {
1344 func
= acpi_debugger
.ops
->notify_command_complete
;
1345 owner
= acpi_debugger
.owner
;
1346 mutex_unlock(&acpi_debugger
.lock
);
1350 mutex_lock(&acpi_debugger
.lock
);
1353 mutex_unlock(&acpi_debugger
.lock
);
1357 int __init
acpi_debugger_init(void)
1359 mutex_init(&acpi_debugger
.lock
);
1360 acpi_debugger_initialized
= true;
1365 /*******************************************************************************
1367 * FUNCTION: acpi_os_execute
1369 * PARAMETERS: Type - Type of the callback
1370 * Function - Function to be executed
1371 * Context - Function parameters
1375 * DESCRIPTION: Depending on type, either queues function for deferred execution or
1376 * immediately executes function on a separate thread.
1378 ******************************************************************************/
1380 acpi_status
acpi_os_execute(acpi_execute_type type
,
1381 acpi_osd_exec_callback function
, void *context
)
1383 acpi_status status
= AE_OK
;
1384 struct acpi_os_dpc
*dpc
;
1385 struct workqueue_struct
*queue
;
1387 ACPI_DEBUG_PRINT((ACPI_DB_EXEC
,
1388 "Scheduling function [%p(%p)] for deferred execution.\n",
1389 function
, context
));
1391 if (type
== OSL_DEBUGGER_MAIN_THREAD
) {
1392 ret
= acpi_debugger_create_thread(function
, context
);
1394 pr_err("Call to kthread_create() failed.\n");
1401 * Allocate/initialize DPC structure. Note that this memory will be
1402 * freed by the callee. The kernel handles the work_struct list in a
1403 * way that allows us to also free its memory inside the callee.
1404 * Because we may want to schedule several tasks with different
1405 * parameters we can't use the approach some kernel code uses of
1406 * having a static work_struct.
1409 dpc
= kzalloc(sizeof(struct acpi_os_dpc
), GFP_ATOMIC
);
1411 return AE_NO_MEMORY
;
1413 dpc
->function
= function
;
1414 dpc
->context
= context
;
1417 * To prevent lockdep from complaining unnecessarily, make sure that
1418 * there is a different static lockdep key for each workqueue by using
1419 * INIT_WORK() for each of them separately.
1421 if (type
== OSL_NOTIFY_HANDLER
) {
1422 queue
= kacpi_notify_wq
;
1423 INIT_WORK(&dpc
->work
, acpi_os_execute_deferred
);
1424 } else if (type
== OSL_GPE_HANDLER
) {
1426 INIT_WORK(&dpc
->work
, acpi_os_execute_deferred
);
1428 pr_err("Unsupported os_execute type %d.\n", type
);
1432 if (ACPI_FAILURE(status
))
1436 * On some machines, a software-initiated SMI causes corruption unless
1437 * the SMI runs on CPU 0. An SMI can be initiated by any AML, but
1438 * typically it's done in GPE-related methods that are run via
1439 * workqueues, so we can avoid the known corruption cases by always
1440 * queueing on CPU 0.
1442 ret
= queue_work_on(0, queue
, &dpc
->work
);
1444 printk(KERN_ERR PREFIX
1445 "Call to queue_work() failed.\n");
1449 if (ACPI_FAILURE(status
))
1454 EXPORT_SYMBOL(acpi_os_execute
);
1456 void acpi_os_wait_events_complete(void)
1459 * Make sure the GPE handler or the fixed event handler is not used
1460 * on another CPU after removal.
1462 if (acpi_sci_irq_valid())
1463 synchronize_hardirq(acpi_sci_irq
);
1464 flush_workqueue(kacpid_wq
);
1465 flush_workqueue(kacpi_notify_wq
);
1468 struct acpi_hp_work
{
1469 struct work_struct work
;
1470 struct acpi_device
*adev
;
1474 static void acpi_hotplug_work_fn(struct work_struct
*work
)
1476 struct acpi_hp_work
*hpw
= container_of(work
, struct acpi_hp_work
, work
);
1478 acpi_os_wait_events_complete();
1479 acpi_device_hotplug(hpw
->adev
, hpw
->src
);
1483 acpi_status
acpi_hotplug_schedule(struct acpi_device
*adev
, u32 src
)
1485 struct acpi_hp_work
*hpw
;
1487 ACPI_DEBUG_PRINT((ACPI_DB_EXEC
,
1488 "Scheduling hotplug event (%p, %u) for deferred execution.\n",
1491 hpw
= kmalloc(sizeof(*hpw
), GFP_KERNEL
);
1493 return AE_NO_MEMORY
;
1495 INIT_WORK(&hpw
->work
, acpi_hotplug_work_fn
);
1499 * We can't run hotplug code in kacpid_wq/kacpid_notify_wq etc., because
1500 * the hotplug code may call driver .remove() functions, which may
1501 * invoke flush_scheduled_work()/acpi_os_wait_events_complete() to flush
1504 if (!queue_work(kacpi_hotplug_wq
, &hpw
->work
)) {
1511 bool acpi_queue_hotplug_work(struct work_struct
*work
)
1513 return queue_work(kacpi_hotplug_wq
, work
);
1517 acpi_os_create_semaphore(u32 max_units
, u32 initial_units
, acpi_handle
* handle
)
1519 struct semaphore
*sem
= NULL
;
1521 sem
= acpi_os_allocate_zeroed(sizeof(struct semaphore
));
1523 return AE_NO_MEMORY
;
1525 sema_init(sem
, initial_units
);
1527 *handle
= (acpi_handle
*) sem
;
1529 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
, "Creating semaphore[%p|%d].\n",
1530 *handle
, initial_units
));
1536 * TODO: A better way to delete semaphores? Linux doesn't have a
1537 * 'delete_semaphore()' function -- may result in an invalid
1538 * pointer dereference for non-synchronized consumers. Should
1539 * we at least check for blocked threads and signal/cancel them?
1542 acpi_status
acpi_os_delete_semaphore(acpi_handle handle
)
1544 struct semaphore
*sem
= (struct semaphore
*)handle
;
1547 return AE_BAD_PARAMETER
;
1549 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
, "Deleting semaphore[%p].\n", handle
));
1551 BUG_ON(!list_empty(&sem
->wait_list
));
1559 * TODO: Support for units > 1?
1561 acpi_status
acpi_os_wait_semaphore(acpi_handle handle
, u32 units
, u16 timeout
)
1563 acpi_status status
= AE_OK
;
1564 struct semaphore
*sem
= (struct semaphore
*)handle
;
1568 if (!acpi_os_initialized
)
1571 if (!sem
|| (units
< 1))
1572 return AE_BAD_PARAMETER
;
1577 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
, "Waiting for semaphore[%p|%d|%d]\n",
1578 handle
, units
, timeout
));
1580 if (timeout
== ACPI_WAIT_FOREVER
)
1581 jiffies
= MAX_SCHEDULE_TIMEOUT
;
1583 jiffies
= msecs_to_jiffies(timeout
);
1585 ret
= down_timeout(sem
, jiffies
);
1589 if (ACPI_FAILURE(status
)) {
1590 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
,
1591 "Failed to acquire semaphore[%p|%d|%d], %s",
1592 handle
, units
, timeout
,
1593 acpi_format_exception(status
)));
1595 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
,
1596 "Acquired semaphore[%p|%d|%d]", handle
,
1604 * TODO: Support for units > 1?
1606 acpi_status
acpi_os_signal_semaphore(acpi_handle handle
, u32 units
)
1608 struct semaphore
*sem
= (struct semaphore
*)handle
;
1610 if (!acpi_os_initialized
)
1613 if (!sem
|| (units
< 1))
1614 return AE_BAD_PARAMETER
;
1619 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
, "Signaling semaphore[%p|%d]\n", handle
,
1627 acpi_status
acpi_os_get_line(char *buffer
, u32 buffer_length
, u32
*bytes_read
)
1629 #ifdef ENABLE_DEBUGGER
1630 if (acpi_in_debugger
) {
1633 kdb_read(buffer
, buffer_length
);
1635 /* remove the CR kdb includes */
1636 chars
= strlen(buffer
) - 1;
1637 buffer
[chars
] = '\0';
1642 ret
= acpi_debugger_read_cmd(buffer
, buffer_length
);
1651 EXPORT_SYMBOL(acpi_os_get_line
);
1653 acpi_status
acpi_os_wait_command_ready(void)
1657 ret
= acpi_debugger_wait_command_ready();
1663 acpi_status
acpi_os_notify_command_complete(void)
1667 ret
= acpi_debugger_notify_command_complete();
1673 acpi_status
acpi_os_signal(u32 function
, void *info
)
1676 case ACPI_SIGNAL_FATAL
:
1677 printk(KERN_ERR PREFIX
"Fatal opcode executed\n");
1679 case ACPI_SIGNAL_BREAKPOINT
:
1682 * ACPI spec. says to treat it as a NOP unless
1683 * you are debugging. So if/when we integrate
1684 * AML debugger into the kernel debugger its
1685 * hook will go here. But until then it is
1686 * not useful to print anything on breakpoints.
1696 static int __init
acpi_os_name_setup(char *str
)
1698 char *p
= acpi_os_name
;
1699 int count
= ACPI_MAX_OVERRIDE_LEN
- 1;
1704 for (; count
-- && *str
; str
++) {
1705 if (isalnum(*str
) || *str
== ' ' || *str
== ':')
1707 else if (*str
== '\'' || *str
== '"')
1718 __setup("acpi_os_name=", acpi_os_name_setup
);
1720 #define OSI_STRING_LENGTH_MAX 64 /* arbitrary */
1721 #define OSI_STRING_ENTRIES_MAX 16 /* arbitrary */
1723 struct osi_setup_entry
{
1724 char string
[OSI_STRING_LENGTH_MAX
];
1728 static struct osi_setup_entry
1729 osi_setup_entries
[OSI_STRING_ENTRIES_MAX
] __initdata
= {
1730 {"Module Device", true},
1731 {"Processor Device", true},
1732 {"3.0 _SCP Extensions", true},
1733 {"Processor Aggregator Device", true},
1736 void __init
acpi_osi_setup(char *str
)
1738 struct osi_setup_entry
*osi
;
1742 if (!acpi_gbl_create_osi_method
)
1745 if (str
== NULL
|| *str
== '\0') {
1746 printk(KERN_INFO PREFIX
"_OSI method disabled\n");
1747 acpi_gbl_create_osi_method
= FALSE
;
1754 osi_linux
.default_disabling
= 1;
1756 } else if (*str
== '*') {
1757 acpi_update_interfaces(ACPI_DISABLE_ALL_STRINGS
);
1758 for (i
= 0; i
< OSI_STRING_ENTRIES_MAX
; i
++) {
1759 osi
= &osi_setup_entries
[i
];
1760 osi
->enable
= false;
1767 for (i
= 0; i
< OSI_STRING_ENTRIES_MAX
; i
++) {
1768 osi
= &osi_setup_entries
[i
];
1769 if (!strcmp(osi
->string
, str
)) {
1770 osi
->enable
= enable
;
1772 } else if (osi
->string
[0] == '\0') {
1773 osi
->enable
= enable
;
1774 strncpy(osi
->string
, str
, OSI_STRING_LENGTH_MAX
);
1780 static void __init
set_osi_linux(unsigned int enable
)
1782 if (osi_linux
.enable
!= enable
)
1783 osi_linux
.enable
= enable
;
1785 if (osi_linux
.enable
)
1786 acpi_osi_setup("Linux");
1788 acpi_osi_setup("!Linux");
1793 static void __init
acpi_cmdline_osi_linux(unsigned int enable
)
1795 osi_linux
.cmdline
= 1; /* cmdline set the default and override DMI */
1797 set_osi_linux(enable
);
1802 void __init
acpi_dmi_osi_linux(int enable
, const struct dmi_system_id
*d
)
1804 printk(KERN_NOTICE PREFIX
"DMI detected: %s\n", d
->ident
);
1809 osi_linux
.dmi
= 1; /* DMI knows that this box asks OSI(Linux) */
1810 set_osi_linux(enable
);
1816 * Modify the list of "OS Interfaces" reported to BIOS via _OSI
1818 * empty string disables _OSI
1819 * string starting with '!' disables that string
1820 * otherwise string is added to list, augmenting built-in strings
1822 static void __init
acpi_osi_setup_late(void)
1824 struct osi_setup_entry
*osi
;
1829 if (osi_linux
.default_disabling
) {
1830 status
= acpi_update_interfaces(ACPI_DISABLE_ALL_VENDOR_STRINGS
);
1832 if (ACPI_SUCCESS(status
))
1833 printk(KERN_INFO PREFIX
"Disabled all _OSI OS vendors\n");
1836 for (i
= 0; i
< OSI_STRING_ENTRIES_MAX
; i
++) {
1837 osi
= &osi_setup_entries
[i
];
1843 status
= acpi_install_interface(str
);
1845 if (ACPI_SUCCESS(status
))
1846 printk(KERN_INFO PREFIX
"Added _OSI(%s)\n", str
);
1848 status
= acpi_remove_interface(str
);
1850 if (ACPI_SUCCESS(status
))
1851 printk(KERN_INFO PREFIX
"Deleted _OSI(%s)\n", str
);
1856 static int __init
osi_setup(char *str
)
1858 if (str
&& !strcmp("Linux", str
))
1859 acpi_cmdline_osi_linux(1);
1860 else if (str
&& !strcmp("!Linux", str
))
1861 acpi_cmdline_osi_linux(0);
1863 acpi_osi_setup(str
);
1868 __setup("acpi_osi=", osi_setup
);
1871 * Disable the auto-serialization of named objects creation methods.
1873 * This feature is enabled by default. It marks the AML control methods
1874 * that contain the opcodes to create named objects as "Serialized".
1876 static int __init
acpi_no_auto_serialize_setup(char *str
)
1878 acpi_gbl_auto_serialize_methods
= FALSE
;
1879 pr_info("ACPI: auto-serialization disabled\n");
1884 __setup("acpi_no_auto_serialize", acpi_no_auto_serialize_setup
);
1886 /* Check of resource interference between native drivers and ACPI
1887 * OperationRegions (SystemIO and System Memory only).
1888 * IO ports and memory declared in ACPI might be used by the ACPI subsystem
1889 * in arbitrary AML code and can interfere with legacy drivers.
1890 * acpi_enforce_resources= can be set to:
1892 * - strict (default) (2)
1893 * -> further driver trying to access the resources will not load
1895 * -> further driver trying to access the resources will load, but you
1896 * get a system message that something might go wrong...
1899 * -> ACPI Operation Region resources will not be registered
1902 #define ENFORCE_RESOURCES_STRICT 2
1903 #define ENFORCE_RESOURCES_LAX 1
1904 #define ENFORCE_RESOURCES_NO 0
1906 static unsigned int acpi_enforce_resources
= ENFORCE_RESOURCES_STRICT
;
1908 static int __init
acpi_enforce_resources_setup(char *str
)
1910 if (str
== NULL
|| *str
== '\0')
1913 if (!strcmp("strict", str
))
1914 acpi_enforce_resources
= ENFORCE_RESOURCES_STRICT
;
1915 else if (!strcmp("lax", str
))
1916 acpi_enforce_resources
= ENFORCE_RESOURCES_LAX
;
1917 else if (!strcmp("no", str
))
1918 acpi_enforce_resources
= ENFORCE_RESOURCES_NO
;
1923 __setup("acpi_enforce_resources=", acpi_enforce_resources_setup
);
1925 /* Check for resource conflicts between ACPI OperationRegions and native
1927 int acpi_check_resource_conflict(const struct resource
*res
)
1929 acpi_adr_space_type space_id
;
1934 if (acpi_enforce_resources
== ENFORCE_RESOURCES_NO
)
1936 if (!(res
->flags
& IORESOURCE_IO
) && !(res
->flags
& IORESOURCE_MEM
))
1939 if (res
->flags
& IORESOURCE_IO
)
1940 space_id
= ACPI_ADR_SPACE_SYSTEM_IO
;
1942 space_id
= ACPI_ADR_SPACE_SYSTEM_MEMORY
;
1944 length
= resource_size(res
);
1945 if (acpi_enforce_resources
!= ENFORCE_RESOURCES_NO
)
1947 clash
= acpi_check_address_range(space_id
, res
->start
, length
, warn
);
1950 if (acpi_enforce_resources
!= ENFORCE_RESOURCES_NO
) {
1951 if (acpi_enforce_resources
== ENFORCE_RESOURCES_LAX
)
1952 printk(KERN_NOTICE
"ACPI: This conflict may"
1953 " cause random problems and system"
1955 printk(KERN_INFO
"ACPI: If an ACPI driver is available"
1956 " for this device, you should use it instead of"
1957 " the native driver\n");
1959 if (acpi_enforce_resources
== ENFORCE_RESOURCES_STRICT
)
1964 EXPORT_SYMBOL(acpi_check_resource_conflict
);
1966 int acpi_check_region(resource_size_t start
, resource_size_t n
,
1969 struct resource res
= {
1971 .end
= start
+ n
- 1,
1973 .flags
= IORESOURCE_IO
,
1976 return acpi_check_resource_conflict(&res
);
1978 EXPORT_SYMBOL(acpi_check_region
);
1981 * Let drivers know whether the resource checks are effective
1983 int acpi_resources_are_enforced(void)
1985 return acpi_enforce_resources
== ENFORCE_RESOURCES_STRICT
;
1987 EXPORT_SYMBOL(acpi_resources_are_enforced
);
1989 bool acpi_osi_is_win8(void)
1991 return acpi_gbl_osi_data
>= ACPI_OSI_WIN_8
;
1993 EXPORT_SYMBOL(acpi_osi_is_win8
);
1996 * Deallocate the memory for a spinlock.
1998 void acpi_os_delete_lock(acpi_spinlock handle
)
2004 * Acquire a spinlock.
2006 * handle is a pointer to the spinlock_t.
2009 acpi_cpu_flags
acpi_os_acquire_lock(acpi_spinlock lockp
)
2011 acpi_cpu_flags flags
;
2012 spin_lock_irqsave(lockp
, flags
);
2017 * Release a spinlock. See above.
2020 void acpi_os_release_lock(acpi_spinlock lockp
, acpi_cpu_flags flags
)
2022 spin_unlock_irqrestore(lockp
, flags
);
2025 #ifndef ACPI_USE_LOCAL_CACHE
2027 /*******************************************************************************
2029 * FUNCTION: acpi_os_create_cache
2031 * PARAMETERS: name - Ascii name for the cache
2032 * size - Size of each cached object
2033 * depth - Maximum depth of the cache (in objects) <ignored>
2034 * cache - Where the new cache object is returned
2038 * DESCRIPTION: Create a cache object
2040 ******************************************************************************/
2043 acpi_os_create_cache(char *name
, u16 size
, u16 depth
, acpi_cache_t
** cache
)
2045 *cache
= kmem_cache_create(name
, size
, 0, 0, NULL
);
2052 /*******************************************************************************
2054 * FUNCTION: acpi_os_purge_cache
2056 * PARAMETERS: Cache - Handle to cache object
2060 * DESCRIPTION: Free all objects within the requested cache.
2062 ******************************************************************************/
2064 acpi_status
acpi_os_purge_cache(acpi_cache_t
* cache
)
2066 kmem_cache_shrink(cache
);
2070 /*******************************************************************************
2072 * FUNCTION: acpi_os_delete_cache
2074 * PARAMETERS: Cache - Handle to cache object
2078 * DESCRIPTION: Free all objects within the requested cache and delete the
2081 ******************************************************************************/
2083 acpi_status
acpi_os_delete_cache(acpi_cache_t
* cache
)
2085 kmem_cache_destroy(cache
);
2089 /*******************************************************************************
2091 * FUNCTION: acpi_os_release_object
2093 * PARAMETERS: Cache - Handle to cache object
2094 * Object - The object to be released
2098 * DESCRIPTION: Release an object to the specified cache. If cache is full,
2099 * the object is deleted.
2101 ******************************************************************************/
2103 acpi_status
acpi_os_release_object(acpi_cache_t
* cache
, void *object
)
2105 kmem_cache_free(cache
, object
);
2110 static int __init
acpi_no_static_ssdt_setup(char *s
)
2112 acpi_gbl_disable_ssdt_table_install
= TRUE
;
2113 pr_info("ACPI: static SSDT installation disabled\n");
2118 early_param("acpi_no_static_ssdt", acpi_no_static_ssdt_setup
);
2120 static int __init
acpi_disable_return_repair(char *s
)
2122 printk(KERN_NOTICE PREFIX
2123 "ACPI: Predefined validation mechanism disabled\n");
2124 acpi_gbl_disable_auto_repair
= TRUE
;
2129 __setup("acpica_no_return_repair", acpi_disable_return_repair
);
2131 acpi_status __init
acpi_os_initialize(void)
2133 acpi_os_map_generic_address(&acpi_gbl_FADT
.xpm1a_event_block
);
2134 acpi_os_map_generic_address(&acpi_gbl_FADT
.xpm1b_event_block
);
2135 acpi_os_map_generic_address(&acpi_gbl_FADT
.xgpe0_block
);
2136 acpi_os_map_generic_address(&acpi_gbl_FADT
.xgpe1_block
);
2137 if (acpi_gbl_FADT
.flags
& ACPI_FADT_RESET_REGISTER
) {
2139 * Use acpi_os_map_generic_address to pre-map the reset
2140 * register if it's in system memory.
2144 rv
= acpi_os_map_generic_address(&acpi_gbl_FADT
.reset_register
);
2145 pr_debug(PREFIX
"%s: map reset_reg status %d\n", __func__
, rv
);
2147 acpi_os_initialized
= true;
2152 acpi_status __init
acpi_os_initialize1(void)
2154 kacpid_wq
= alloc_workqueue("kacpid", 0, 1);
2155 kacpi_notify_wq
= alloc_workqueue("kacpi_notify", 0, 1);
2156 kacpi_hotplug_wq
= alloc_ordered_workqueue("kacpi_hotplug", 0);
2158 BUG_ON(!kacpi_notify_wq
);
2159 BUG_ON(!kacpi_hotplug_wq
);
2160 acpi_install_interface_handler(acpi_osi_handler
);
2161 acpi_osi_setup_late();
2165 acpi_status
acpi_os_terminate(void)
2167 if (acpi_irq_handler
) {
2168 acpi_os_remove_interrupt_handler(acpi_gbl_FADT
.sci_interrupt
,
2172 acpi_os_unmap_generic_address(&acpi_gbl_FADT
.xgpe1_block
);
2173 acpi_os_unmap_generic_address(&acpi_gbl_FADT
.xgpe0_block
);
2174 acpi_os_unmap_generic_address(&acpi_gbl_FADT
.xpm1b_event_block
);
2175 acpi_os_unmap_generic_address(&acpi_gbl_FADT
.xpm1a_event_block
);
2176 if (acpi_gbl_FADT
.flags
& ACPI_FADT_RESET_REGISTER
)
2177 acpi_os_unmap_generic_address(&acpi_gbl_FADT
.reset_register
);
2179 destroy_workqueue(kacpid_wq
);
2180 destroy_workqueue(kacpi_notify_wq
);
2181 destroy_workqueue(kacpi_hotplug_wq
);
2186 acpi_status
acpi_os_prepare_sleep(u8 sleep_state
, u32 pm1a_control
,
2190 if (__acpi_os_prepare_sleep
)
2191 rc
= __acpi_os_prepare_sleep(sleep_state
,
2192 pm1a_control
, pm1b_control
);
2196 return AE_CTRL_SKIP
;
2201 void acpi_os_set_prepare_sleep(int (*func
)(u8 sleep_state
,
2202 u32 pm1a_ctrl
, u32 pm1b_ctrl
))
2204 __acpi_os_prepare_sleep
= func
;
2207 acpi_status
acpi_os_prepare_extended_sleep(u8 sleep_state
, u32 val_a
,
2211 if (__acpi_os_prepare_extended_sleep
)
2212 rc
= __acpi_os_prepare_extended_sleep(sleep_state
,
2217 return AE_CTRL_SKIP
;
2222 void acpi_os_set_prepare_extended_sleep(int (*func
)(u8 sleep_state
,
2223 u32 val_a
, u32 val_b
))
2225 __acpi_os_prepare_extended_sleep
= func
;