Merge branch 'acpica'
[deliverable/linux.git] / drivers / acpi / osl.c
1 /*
2 * acpi_osl.c - OS-dependent functions ($Revision: 83 $)
3 *
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>
9 *
10 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11 *
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.
16 *
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.
21 *
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
25 *
26 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27 *
28 */
29
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>
48
49 #include <asm/io.h>
50 #include <asm/uaccess.h>
51
52 #include <acpi/acpi.h>
53 #include <acpi/acpi_bus.h>
54 #include <acpi/processor.h>
55
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;
64 };
65
66 #ifdef CONFIG_ACPI_CUSTOM_DSDT
67 #include CONFIG_ACPI_CUSTOM_DSDT_FILE
68 #endif
69
70 #ifdef ENABLE_DEBUGGER
71 #include <linux/kdb.h>
72
73 /* stuff for debugger support */
74 int acpi_in_debugger;
75 EXPORT_SYMBOL(acpi_in_debugger);
76
77 extern char line_buf[80];
78 #endif /*ENABLE_DEBUGGER */
79
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);
84
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;
90
91 /*
92 * This list of permanent mappings is for memory that may be accessed from
93 * interrupt context, where we can't do the ioremap().
94 */
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;
101 };
102
103 static LIST_HEAD(acpi_ioremaps);
104 static DEFINE_MUTEX(acpi_ioremap_lock);
105
106 static void __init acpi_osi_setup_late(void);
107
108 /*
109 * The story of _OSI(Linux)
110 *
111 * From pre-history through Linux-2.6.22,
112 * Linux responded TRUE upon a BIOS OSI(Linux) query.
113 *
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.
118 *
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.
130 *
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.
133 *
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"
139 */
140
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};
147
148 static u32 acpi_osi_handler(acpi_string interface, u32 supported)
149 {
150 if (!strcmp("Linux", interface)) {
151
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" : "");
157 }
158
159 return supported;
160 }
161
162 static void __init acpi_request_region (struct acpi_generic_address *gas,
163 unsigned int length, char *desc)
164 {
165 u64 addr;
166
167 /* Handle possible alignment issues */
168 memcpy(&addr, &gas->address, sizeof(addr));
169 if (!addr || !length)
170 return;
171
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);
177 }
178
179 static int __init acpi_reserve_resources(void)
180 {
181 acpi_request_region(&acpi_gbl_FADT.xpm1a_event_block, acpi_gbl_FADT.pm1_event_length,
182 "ACPI PM1a_EVT_BLK");
183
184 acpi_request_region(&acpi_gbl_FADT.xpm1b_event_block, acpi_gbl_FADT.pm1_event_length,
185 "ACPI PM1b_EVT_BLK");
186
187 acpi_request_region(&acpi_gbl_FADT.xpm1a_control_block, acpi_gbl_FADT.pm1_control_length,
188 "ACPI PM1a_CNT_BLK");
189
190 acpi_request_region(&acpi_gbl_FADT.xpm1b_control_block, acpi_gbl_FADT.pm1_control_length,
191 "ACPI PM1b_CNT_BLK");
192
193 if (acpi_gbl_FADT.pm_timer_length == 4)
194 acpi_request_region(&acpi_gbl_FADT.xpm_timer_block, 4, "ACPI PM_TMR");
195
196 acpi_request_region(&acpi_gbl_FADT.xpm2_control_block, acpi_gbl_FADT.pm2_control_length,
197 "ACPI PM2_CNT_BLK");
198
199 /* Length of GPE blocks must be a non-negative multiple of 2 */
200
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");
204
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");
208
209 return 0;
210 }
211 device_initcall(acpi_reserve_resources);
212
213 void acpi_os_printf(const char *fmt, ...)
214 {
215 va_list args;
216 va_start(args, fmt);
217 acpi_os_vprintf(fmt, args);
218 va_end(args);
219 }
220
221 void acpi_os_vprintf(const char *fmt, va_list args)
222 {
223 static char buffer[512];
224
225 vsprintf(buffer, fmt, args);
226
227 #ifdef ENABLE_DEBUGGER
228 if (acpi_in_debugger) {
229 kdb_printf("%s", buffer);
230 } else {
231 printk(KERN_CONT "%s", buffer);
232 }
233 #else
234 printk(KERN_CONT "%s", buffer);
235 #endif
236 }
237
238 #ifdef CONFIG_KEXEC
239 static unsigned long acpi_rsdp;
240 static int __init setup_acpi_rsdp(char *arg)
241 {
242 acpi_rsdp = simple_strtoul(arg, NULL, 16);
243 return 0;
244 }
245 early_param("acpi_rsdp", setup_acpi_rsdp);
246 #endif
247
248 acpi_physical_address __init acpi_os_get_root_pointer(void)
249 {
250 #ifdef CONFIG_KEXEC
251 if (acpi_rsdp)
252 return acpi_rsdp;
253 #endif
254
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;
264 }
265 } else {
266 acpi_physical_address pa = 0;
267
268 acpi_find_root_pointer(&pa);
269 return pa;
270 }
271 }
272
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)
276 {
277 struct acpi_ioremap *map;
278
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;
283
284 return NULL;
285 }
286
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)
290 {
291 struct acpi_ioremap *map;
292
293 map = acpi_map_lookup(phys, size);
294 if (map)
295 return map->virt + (phys - map->phys);
296
297 return NULL;
298 }
299
300 void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size)
301 {
302 struct acpi_ioremap *map;
303 void __iomem *virt = NULL;
304
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++;
310 }
311 mutex_unlock(&acpi_ioremap_lock);
312 return virt;
313 }
314 EXPORT_SYMBOL_GPL(acpi_os_get_iomem);
315
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)
319 {
320 struct acpi_ioremap *map;
321
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;
326
327 return NULL;
328 }
329
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
336
337 static void __iomem *acpi_map(acpi_physical_address pg_off, unsigned long pg_sz)
338 {
339 unsigned long pfn;
340
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);
348 }
349
350 static void acpi_unmap(acpi_physical_address pg_off, void __iomem *vaddr)
351 {
352 unsigned long pfn;
353
354 pfn = pg_off >> PAGE_SHIFT;
355 if (should_use_kmap(pfn))
356 kunmap(pfn_to_page(pfn));
357 else
358 iounmap(vaddr);
359 }
360
361 void __iomem *__init_refok
362 acpi_os_map_memory(acpi_physical_address phys, acpi_size size)
363 {
364 struct acpi_ioremap *map;
365 void __iomem *virt;
366 acpi_physical_address pg_off;
367 acpi_size pg_sz;
368
369 if (phys > ULONG_MAX) {
370 printk(KERN_ERR PREFIX "Cannot map memory that high\n");
371 return NULL;
372 }
373
374 if (!acpi_gbl_permanent_mmap)
375 return __acpi_map_table((unsigned long)phys, size);
376
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;
383 }
384
385 map = kzalloc(sizeof(*map), GFP_KERNEL);
386 if (!map) {
387 mutex_unlock(&acpi_ioremap_lock);
388 return NULL;
389 }
390
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;
398 }
399
400 INIT_LIST_HEAD(&map->list);
401 map->virt = virt;
402 map->phys = pg_off;
403 map->size = pg_sz;
404 map->refcount = 1;
405
406 list_add_tail_rcu(&map->list, &acpi_ioremaps);
407
408 out:
409 mutex_unlock(&acpi_ioremap_lock);
410 return map->virt + (phys - map->phys);
411 }
412 EXPORT_SYMBOL_GPL(acpi_os_map_memory);
413
414 static void acpi_os_drop_map_ref(struct acpi_ioremap *map)
415 {
416 if (!--map->refcount)
417 list_del_rcu(&map->list);
418 }
419
420 static void acpi_os_map_cleanup(struct acpi_ioremap *map)
421 {
422 if (!map->refcount) {
423 synchronize_rcu();
424 acpi_unmap(map->phys, map->virt);
425 kfree(map);
426 }
427 }
428
429 void __ref acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
430 {
431 struct acpi_ioremap *map;
432
433 if (!acpi_gbl_permanent_mmap) {
434 __acpi_unmap_table(virt, size);
435 return;
436 }
437
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;
444 }
445 acpi_os_drop_map_ref(map);
446 mutex_unlock(&acpi_ioremap_lock);
447
448 acpi_os_map_cleanup(map);
449 }
450 EXPORT_SYMBOL_GPL(acpi_os_unmap_memory);
451
452 void __init early_acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
453 {
454 if (!acpi_gbl_permanent_mmap)
455 __acpi_unmap_table(virt, size);
456 }
457
458 int acpi_os_map_generic_address(struct acpi_generic_address *gas)
459 {
460 u64 addr;
461 void __iomem *virt;
462
463 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
464 return 0;
465
466 /* Handle possible alignment issues */
467 memcpy(&addr, &gas->address, sizeof(addr));
468 if (!addr || !gas->bit_width)
469 return -EINVAL;
470
471 virt = acpi_os_map_memory(addr, gas->bit_width / 8);
472 if (!virt)
473 return -EIO;
474
475 return 0;
476 }
477 EXPORT_SYMBOL(acpi_os_map_generic_address);
478
479 void acpi_os_unmap_generic_address(struct acpi_generic_address *gas)
480 {
481 u64 addr;
482 struct acpi_ioremap *map;
483
484 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
485 return;
486
487 /* Handle possible alignment issues */
488 memcpy(&addr, &gas->address, sizeof(addr));
489 if (!addr || !gas->bit_width)
490 return;
491
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;
497 }
498 acpi_os_drop_map_ref(map);
499 mutex_unlock(&acpi_ioremap_lock);
500
501 acpi_os_map_cleanup(map);
502 }
503 EXPORT_SYMBOL(acpi_os_unmap_generic_address);
504
505 #ifdef ACPI_FUTURE_USAGE
506 acpi_status
507 acpi_os_get_physical_address(void *virt, acpi_physical_address * phys)
508 {
509 if (!phys || !virt)
510 return AE_BAD_PARAMETER;
511
512 *phys = virt_to_phys(virt);
513
514 return AE_OK;
515 }
516 #endif
517
518 #define ACPI_MAX_OVERRIDE_LEN 100
519
520 static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN];
521
522 acpi_status
523 acpi_os_predefined_override(const struct acpi_predefined_names *init_val,
524 acpi_string * new_val)
525 {
526 if (!init_val || !new_val)
527 return AE_BAD_PARAMETER;
528
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;
534 }
535
536 return AE_OK;
537 }
538
539 #ifdef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
540 #include <linux/earlycpio.h>
541 #include <linux/memblock.h>
542
543 static u64 acpi_tables_addr;
544 static int all_tables_size;
545
546 /* Copied from acpica/tbutils.c:acpi_tb_checksum() */
547 u8 __init acpi_table_checksum(u8 *buffer, u32 length)
548 {
549 u8 sum = 0;
550 u8 *end = buffer + length;
551
552 while (buffer < end)
553 sum = (u8) (sum + *(buffer++));
554 return sum;
555 }
556
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 };
568
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; }
572
573 #define ACPI_HEADER_SIZE sizeof(struct acpi_table_header)
574
575 /* Must not increase 10 or needs code modification below */
576 #define ACPI_OVERRIDE_TABLES 10
577
578 void __init acpi_initrd_override(void *data, size_t size)
579 {
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;
587
588 if (data == NULL || size == 0)
589 return;
590
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;
595
596 data += offset;
597 size -= offset;
598
599 if (file.size < sizeof(struct acpi_table_header))
600 INVALID_TABLE("Table smaller than ACPI header",
601 cpio_path, file.name);
602
603 table = file.data;
604
605 for (sig = 0; table_sigs[sig]; sig++)
606 if (!memcmp(table->signature, table_sigs[sig], 4))
607 break;
608
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);
618
619 pr_info("%4.4s ACPI table found in initrd [%s%s][0x%x]\n",
620 table->signature, cpio_path, file.name, table->length);
621
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++;
626 }
627 if (table_nr == 0)
628 return;
629
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;
636 }
637 /*
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.
646 */
647 memblock_reserve(acpi_tables_addr, all_tables_size);
648 arch_reserve_mem_area(acpi_tables_addr, all_tables_size);
649
650 p = early_ioremap(acpi_tables_addr, all_tables_size);
651
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;
656 }
657 early_iounmap(p, all_tables_size);
658 }
659 #endif /* CONFIG_ACPI_INITRD_TABLE_OVERRIDE */
660
661 static void acpi_table_taint(struct acpi_table_header *table)
662 {
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);
667 }
668
669
670 acpi_status
671 acpi_os_table_override(struct acpi_table_header * existing_table,
672 struct acpi_table_header ** new_table)
673 {
674 if (!existing_table || !new_table)
675 return AE_BAD_PARAMETER;
676
677 *new_table = NULL;
678
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;
686 }
687
688 acpi_status
689 acpi_os_physical_table_override(struct acpi_table_header *existing_table,
690 acpi_physical_address *address,
691 u32 *table_length)
692 {
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;
700
701 *table_length = 0;
702 *address = 0;
703
704 if (!acpi_tables_addr)
705 return AE_OK;
706
707 do {
708 if (table_offset + ACPI_HEADER_SIZE > all_tables_size) {
709 WARN_ON(1);
710 return AE_OK;
711 }
712
713 table = acpi_os_map_memory(acpi_tables_addr + table_offset,
714 ACPI_HEADER_SIZE);
715
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;
720 }
721
722 table_offset += table->length;
723
724 if (memcmp(existing_table->signature, table->signature, 4)) {
725 acpi_os_unmap_memory(table,
726 ACPI_HEADER_SIZE);
727 continue;
728 }
729
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;
736 }
737
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);
744
745 if (*address != 0)
746 acpi_table_taint(existing_table);
747 return AE_OK;
748 #endif
749 }
750
751 static irqreturn_t acpi_irq(int irq, void *dev_id)
752 {
753 u32 handled;
754
755 handled = (*acpi_irq_handler) (acpi_irq_context);
756
757 if (handled) {
758 acpi_irq_handled++;
759 return IRQ_HANDLED;
760 } else {
761 acpi_irq_not_handled++;
762 return IRQ_NONE;
763 }
764 }
765
766 acpi_status
767 acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
768 void *context)
769 {
770 unsigned int irq;
771
772 acpi_irq_stats_init();
773
774 /*
775 * ACPI interrupts different from the SCI in our copy of the FADT are
776 * not supported.
777 */
778 if (gsi != acpi_gbl_FADT.sci_interrupt)
779 return AE_BAD_PARAMETER;
780
781 if (acpi_irq_handler)
782 return AE_ALREADY_ACQUIRED;
783
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;
788 }
789
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;
796 }
797
798 return AE_OK;
799 }
800
801 acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler)
802 {
803 if (irq != acpi_gbl_FADT.sci_interrupt)
804 return AE_BAD_PARAMETER;
805
806 free_irq(irq, acpi_irq);
807 acpi_irq_handler = NULL;
808
809 return AE_OK;
810 }
811
812 /*
813 * Running in interpreter thread context, safe to sleep
814 */
815
816 void acpi_os_sleep(u64 ms)
817 {
818 schedule_timeout_interruptible(msecs_to_jiffies(ms));
819 }
820
821 void acpi_os_stall(u32 us)
822 {
823 while (us) {
824 u32 delay = 1000;
825
826 if (delay > us)
827 delay = us;
828 udelay(delay);
829 touch_nmi_watchdog();
830 us -= delay;
831 }
832 }
833
834 /*
835 * Support ACPI 3.0 AML Timer operand
836 * Returns 64-bit free-running, monotonically increasing timer
837 * with 100ns granularity
838 */
839 u64 acpi_os_get_timer(void)
840 {
841 u64 time_ns = ktime_to_ns(ktime_get());
842 do_div(time_ns, 100);
843 return time_ns;
844 }
845
846 acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
847 {
848 u32 dummy;
849
850 if (!value)
851 value = &dummy;
852
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();
862 }
863
864 return AE_OK;
865 }
866
867 EXPORT_SYMBOL(acpi_os_read_port);
868
869 acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width)
870 {
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();
879 }
880
881 return AE_OK;
882 }
883
884 EXPORT_SYMBOL(acpi_os_write_port);
885
886 #ifdef readq
887 static inline u64 read64(const volatile void __iomem *addr)
888 {
889 return readq(addr);
890 }
891 #else
892 static inline u64 read64(const volatile void __iomem *addr)
893 {
894 u64 l, h;
895 l = readl(addr);
896 h = readl(addr+4);
897 return l | (h << 32);
898 }
899 #endif
900
901 acpi_status
902 acpi_os_read_memory(acpi_physical_address phys_addr, u64 *value, u32 width)
903 {
904 void __iomem *virt_addr;
905 unsigned int size = width / 8;
906 bool unmap = false;
907 u64 dummy;
908
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;
917 }
918
919 if (!value)
920 value = &dummy;
921
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();
937 }
938
939 if (unmap)
940 iounmap(virt_addr);
941 else
942 rcu_read_unlock();
943
944 return AE_OK;
945 }
946
947 #ifdef writeq
948 static inline void write64(u64 val, volatile void __iomem *addr)
949 {
950 writeq(val, addr);
951 }
952 #else
953 static inline void write64(u64 val, volatile void __iomem *addr)
954 {
955 writel(val, addr);
956 writel(val>>32, addr+4);
957 }
958 #endif
959
960 acpi_status
961 acpi_os_write_memory(acpi_physical_address phys_addr, u64 value, u32 width)
962 {
963 void __iomem *virt_addr;
964 unsigned int size = width / 8;
965 bool unmap = false;
966
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;
975 }
976
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();
992 }
993
994 if (unmap)
995 iounmap(virt_addr);
996 else
997 rcu_read_unlock();
998
999 return AE_OK;
1000 }
1001
1002 acpi_status
1003 acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
1004 u64 *value, u32 width)
1005 {
1006 int result, size;
1007 u32 value32;
1008
1009 if (!value)
1010 return AE_BAD_PARAMETER;
1011
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;
1024 }
1025
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;
1030
1031 return (result ? AE_ERROR : AE_OK);
1032 }
1033
1034 acpi_status
1035 acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
1036 u64 value, u32 width)
1037 {
1038 int result, size;
1039
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;
1052 }
1053
1054 result = raw_pci_write(pci_id->segment, pci_id->bus,
1055 PCI_DEVFN(pci_id->device, pci_id->function),
1056 reg, size, value);
1057
1058 return (result ? AE_ERROR : AE_OK);
1059 }
1060
1061 static void acpi_os_execute_deferred(struct work_struct *work)
1062 {
1063 struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work);
1064
1065 if (dpc->wait)
1066 acpi_os_wait_events_complete();
1067
1068 dpc->function(dpc->context);
1069 kfree(dpc);
1070 }
1071
1072 /*******************************************************************************
1073 *
1074 * FUNCTION: acpi_os_execute
1075 *
1076 * PARAMETERS: Type - Type of the callback
1077 * Function - Function to be executed
1078 * Context - Function parameters
1079 *
1080 * RETURN: Status
1081 *
1082 * DESCRIPTION: Depending on type, either queues function for deferred execution or
1083 * immediately executes function on a separate thread.
1084 *
1085 ******************************************************************************/
1086
1087 static acpi_status __acpi_os_execute(acpi_execute_type type,
1088 acpi_osd_exec_callback function, void *context, int hp)
1089 {
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));
1097
1098 /*
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.
1105 */
1106
1107 dpc = kzalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC);
1108 if (!dpc)
1109 return AE_NO_MEMORY;
1110
1111 dpc->function = function;
1112 dpc->context = context;
1113
1114 /*
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.
1119 *
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.
1123 */
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);
1134 }
1135
1136 /*
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.
1142 */
1143 ret = queue_work_on(0, queue, &dpc->work);
1144
1145 if (!ret) {
1146 printk(KERN_ERR PREFIX
1147 "Call to queue_work() failed.\n");
1148 status = AE_ERROR;
1149 kfree(dpc);
1150 }
1151 return status;
1152 }
1153
1154 acpi_status acpi_os_execute(acpi_execute_type type,
1155 acpi_osd_exec_callback function, void *context)
1156 {
1157 return __acpi_os_execute(type, function, context, 0);
1158 }
1159 EXPORT_SYMBOL(acpi_os_execute);
1160
1161 acpi_status acpi_os_hotplug_execute(acpi_osd_exec_callback function,
1162 void *context)
1163 {
1164 return __acpi_os_execute(0, function, context, 1);
1165 }
1166 EXPORT_SYMBOL(acpi_os_hotplug_execute);
1167
1168 void acpi_os_wait_events_complete(void)
1169 {
1170 flush_workqueue(kacpid_wq);
1171 flush_workqueue(kacpi_notify_wq);
1172 }
1173
1174 EXPORT_SYMBOL(acpi_os_wait_events_complete);
1175
1176 acpi_status
1177 acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle)
1178 {
1179 struct semaphore *sem = NULL;
1180
1181 sem = acpi_os_allocate(sizeof(struct semaphore));
1182 if (!sem)
1183 return AE_NO_MEMORY;
1184 memset(sem, 0, sizeof(struct semaphore));
1185
1186 sema_init(sem, initial_units);
1187
1188 *handle = (acpi_handle *) sem;
1189
1190 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n",
1191 *handle, initial_units));
1192
1193 return AE_OK;
1194 }
1195
1196 /*
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?
1201 */
1202
1203 acpi_status acpi_os_delete_semaphore(acpi_handle handle)
1204 {
1205 struct semaphore *sem = (struct semaphore *)handle;
1206
1207 if (!sem)
1208 return AE_BAD_PARAMETER;
1209
1210 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle));
1211
1212 BUG_ON(!list_empty(&sem->wait_list));
1213 kfree(sem);
1214 sem = NULL;
1215
1216 return AE_OK;
1217 }
1218
1219 /*
1220 * TODO: Support for units > 1?
1221 */
1222 acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout)
1223 {
1224 acpi_status status = AE_OK;
1225 struct semaphore *sem = (struct semaphore *)handle;
1226 long jiffies;
1227 int ret = 0;
1228
1229 if (!sem || (units < 1))
1230 return AE_BAD_PARAMETER;
1231
1232 if (units > 1)
1233 return AE_SUPPORT;
1234
1235 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n",
1236 handle, units, timeout));
1237
1238 if (timeout == ACPI_WAIT_FOREVER)
1239 jiffies = MAX_SCHEDULE_TIMEOUT;
1240 else
1241 jiffies = msecs_to_jiffies(timeout);
1242
1243 ret = down_timeout(sem, jiffies);
1244 if (ret)
1245 status = AE_TIME;
1246
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));
1256 }
1257
1258 return status;
1259 }
1260
1261 /*
1262 * TODO: Support for units > 1?
1263 */
1264 acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units)
1265 {
1266 struct semaphore *sem = (struct semaphore *)handle;
1267
1268 if (!sem || (units < 1))
1269 return AE_BAD_PARAMETER;
1270
1271 if (units > 1)
1272 return AE_SUPPORT;
1273
1274 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle,
1275 units));
1276
1277 up(sem);
1278
1279 return AE_OK;
1280 }
1281
1282 #ifdef ACPI_FUTURE_USAGE
1283 u32 acpi_os_get_line(char *buffer)
1284 {
1285
1286 #ifdef ENABLE_DEBUGGER
1287 if (acpi_in_debugger) {
1288 u32 chars;
1289
1290 kdb_read(buffer, sizeof(line_buf));
1291
1292 /* remove the CR kdb includes */
1293 chars = strlen(buffer) - 1;
1294 buffer[chars] = '\0';
1295 }
1296 #endif
1297
1298 return 0;
1299 }
1300 #endif /* ACPI_FUTURE_USAGE */
1301
1302 acpi_status acpi_os_signal(u32 function, void *info)
1303 {
1304 switch (function) {
1305 case ACPI_SIGNAL_FATAL:
1306 printk(KERN_ERR PREFIX "Fatal opcode executed\n");
1307 break;
1308 case ACPI_SIGNAL_BREAKPOINT:
1309 /*
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.
1316 */
1317 break;
1318 default:
1319 break;
1320 }
1321
1322 return AE_OK;
1323 }
1324
1325 static int __init acpi_os_name_setup(char *str)
1326 {
1327 char *p = acpi_os_name;
1328 int count = ACPI_MAX_OVERRIDE_LEN - 1;
1329
1330 if (!str || !*str)
1331 return 0;
1332
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;
1340 }
1341 *p = 0;
1342
1343 return 1;
1344
1345 }
1346
1347 __setup("acpi_os_name=", acpi_os_name_setup);
1348
1349 #define OSI_STRING_LENGTH_MAX 64 /* arbitrary */
1350 #define OSI_STRING_ENTRIES_MAX 16 /* arbitrary */
1351
1352 struct osi_setup_entry {
1353 char string[OSI_STRING_LENGTH_MAX];
1354 bool enable;
1355 };
1356
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},
1363 };
1364
1365 void __init acpi_osi_setup(char *str)
1366 {
1367 struct osi_setup_entry *osi;
1368 bool enable = true;
1369 int i;
1370
1371 if (!acpi_gbl_create_osi_method)
1372 return;
1373
1374 if (str == NULL || *str == '\0') {
1375 printk(KERN_INFO PREFIX "_OSI method disabled\n");
1376 acpi_gbl_create_osi_method = FALSE;
1377 return;
1378 }
1379
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;
1390 }
1391 return;
1392 }
1393 enable = false;
1394 }
1395
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;
1405 }
1406 }
1407 }
1408
1409 static void __init set_osi_linux(unsigned int enable)
1410 {
1411 if (osi_linux.enable != enable)
1412 osi_linux.enable = enable;
1413
1414 if (osi_linux.enable)
1415 acpi_osi_setup("Linux");
1416 else
1417 acpi_osi_setup("!Linux");
1418
1419 return;
1420 }
1421
1422 static void __init acpi_cmdline_osi_linux(unsigned int enable)
1423 {
1424 osi_linux.cmdline = 1; /* cmdline set the default and override DMI */
1425 osi_linux.dmi = 0;
1426 set_osi_linux(enable);
1427
1428 return;
1429 }
1430
1431 void __init acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d)
1432 {
1433 printk(KERN_NOTICE PREFIX "DMI detected: %s\n", d->ident);
1434
1435 if (enable == -1)
1436 return;
1437
1438 osi_linux.dmi = 1; /* DMI knows that this box asks OSI(Linux) */
1439 set_osi_linux(enable);
1440
1441 return;
1442 }
1443
1444 /*
1445 * Modify the list of "OS Interfaces" reported to BIOS via _OSI
1446 *
1447 * empty string disables _OSI
1448 * string starting with '!' disables that string
1449 * otherwise string is added to list, augmenting built-in strings
1450 */
1451 static void __init acpi_osi_setup_late(void)
1452 {
1453 struct osi_setup_entry *osi;
1454 char *str;
1455 int i;
1456 acpi_status status;
1457
1458 if (osi_linux.default_disabling) {
1459 status = acpi_update_interfaces(ACPI_DISABLE_ALL_VENDOR_STRINGS);
1460
1461 if (ACPI_SUCCESS(status))
1462 printk(KERN_INFO PREFIX "Disabled all _OSI OS vendors\n");
1463 }
1464
1465 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1466 osi = &osi_setup_entries[i];
1467 str = osi->string;
1468
1469 if (*str == '\0')
1470 break;
1471 if (osi->enable) {
1472 status = acpi_install_interface(str);
1473
1474 if (ACPI_SUCCESS(status))
1475 printk(KERN_INFO PREFIX "Added _OSI(%s)\n", str);
1476 } else {
1477 status = acpi_remove_interface(str);
1478
1479 if (ACPI_SUCCESS(status))
1480 printk(KERN_INFO PREFIX "Deleted _OSI(%s)\n", str);
1481 }
1482 }
1483 }
1484
1485 static int __init osi_setup(char *str)
1486 {
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);
1493
1494 return 1;
1495 }
1496
1497 __setup("acpi_osi=", osi_setup);
1498
1499 /* enable serialization to combat AE_ALREADY_EXISTS errors */
1500 static int __init acpi_serialize_setup(char *str)
1501 {
1502 printk(KERN_INFO PREFIX "serialize enabled\n");
1503
1504 acpi_gbl_all_methods_serialized = TRUE;
1505
1506 return 1;
1507 }
1508
1509 __setup("acpi_serialize", acpi_serialize_setup);
1510
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:
1516 *
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...
1522 *
1523 * - no (0)
1524 * -> ACPI Operation Region resources will not be registered
1525 *
1526 */
1527 #define ENFORCE_RESOURCES_STRICT 2
1528 #define ENFORCE_RESOURCES_LAX 1
1529 #define ENFORCE_RESOURCES_NO 0
1530
1531 static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1532
1533 static int __init acpi_enforce_resources_setup(char *str)
1534 {
1535 if (str == NULL || *str == '\0')
1536 return 0;
1537
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;
1544
1545 return 1;
1546 }
1547
1548 __setup("acpi_enforce_resources=", acpi_enforce_resources_setup);
1549
1550 /* Check for resource conflicts between ACPI OperationRegions and native
1551 * drivers */
1552 int acpi_check_resource_conflict(const struct resource *res)
1553 {
1554 acpi_adr_space_type space_id;
1555 acpi_size length;
1556 u8 warn = 0;
1557 int clash = 0;
1558
1559 if (acpi_enforce_resources == ENFORCE_RESOURCES_NO)
1560 return 0;
1561 if (!(res->flags & IORESOURCE_IO) && !(res->flags & IORESOURCE_MEM))
1562 return 0;
1563
1564 if (res->flags & IORESOURCE_IO)
1565 space_id = ACPI_ADR_SPACE_SYSTEM_IO;
1566 else
1567 space_id = ACPI_ADR_SPACE_SYSTEM_MEMORY;
1568
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);
1573
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");
1583 }
1584 if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT)
1585 return -EBUSY;
1586 }
1587 return 0;
1588 }
1589 EXPORT_SYMBOL(acpi_check_resource_conflict);
1590
1591 int acpi_check_region(resource_size_t start, resource_size_t n,
1592 const char *name)
1593 {
1594 struct resource res = {
1595 .start = start,
1596 .end = start + n - 1,
1597 .name = name,
1598 .flags = IORESOURCE_IO,
1599 };
1600
1601 return acpi_check_resource_conflict(&res);
1602 }
1603 EXPORT_SYMBOL(acpi_check_region);
1604
1605 /*
1606 * Let drivers know whether the resource checks are effective
1607 */
1608 int acpi_resources_are_enforced(void)
1609 {
1610 return acpi_enforce_resources == ENFORCE_RESOURCES_STRICT;
1611 }
1612 EXPORT_SYMBOL(acpi_resources_are_enforced);
1613
1614 /*
1615 * Deallocate the memory for a spinlock.
1616 */
1617 void acpi_os_delete_lock(acpi_spinlock handle)
1618 {
1619 ACPI_FREE(handle);
1620 }
1621
1622 /*
1623 * Acquire a spinlock.
1624 *
1625 * handle is a pointer to the spinlock_t.
1626 */
1627
1628 acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp)
1629 {
1630 acpi_cpu_flags flags;
1631 spin_lock_irqsave(lockp, flags);
1632 return flags;
1633 }
1634
1635 /*
1636 * Release a spinlock. See above.
1637 */
1638
1639 void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags)
1640 {
1641 spin_unlock_irqrestore(lockp, flags);
1642 }
1643
1644 #ifndef ACPI_USE_LOCAL_CACHE
1645
1646 /*******************************************************************************
1647 *
1648 * FUNCTION: acpi_os_create_cache
1649 *
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
1654 *
1655 * RETURN: status
1656 *
1657 * DESCRIPTION: Create a cache object
1658 *
1659 ******************************************************************************/
1660
1661 acpi_status
1662 acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache)
1663 {
1664 *cache = kmem_cache_create(name, size, 0, 0, NULL);
1665 if (*cache == NULL)
1666 return AE_ERROR;
1667 else
1668 return AE_OK;
1669 }
1670
1671 /*******************************************************************************
1672 *
1673 * FUNCTION: acpi_os_purge_cache
1674 *
1675 * PARAMETERS: Cache - Handle to cache object
1676 *
1677 * RETURN: Status
1678 *
1679 * DESCRIPTION: Free all objects within the requested cache.
1680 *
1681 ******************************************************************************/
1682
1683 acpi_status acpi_os_purge_cache(acpi_cache_t * cache)
1684 {
1685 kmem_cache_shrink(cache);
1686 return (AE_OK);
1687 }
1688
1689 /*******************************************************************************
1690 *
1691 * FUNCTION: acpi_os_delete_cache
1692 *
1693 * PARAMETERS: Cache - Handle to cache object
1694 *
1695 * RETURN: Status
1696 *
1697 * DESCRIPTION: Free all objects within the requested cache and delete the
1698 * cache object.
1699 *
1700 ******************************************************************************/
1701
1702 acpi_status acpi_os_delete_cache(acpi_cache_t * cache)
1703 {
1704 kmem_cache_destroy(cache);
1705 return (AE_OK);
1706 }
1707
1708 /*******************************************************************************
1709 *
1710 * FUNCTION: acpi_os_release_object
1711 *
1712 * PARAMETERS: Cache - Handle to cache object
1713 * Object - The object to be released
1714 *
1715 * RETURN: None
1716 *
1717 * DESCRIPTION: Release an object to the specified cache. If cache is full,
1718 * the object is deleted.
1719 *
1720 ******************************************************************************/
1721
1722 acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object)
1723 {
1724 kmem_cache_free(cache, object);
1725 return (AE_OK);
1726 }
1727 #endif
1728
1729 static int __init acpi_no_auto_ssdt_setup(char *s)
1730 {
1731 printk(KERN_NOTICE PREFIX "SSDT auto-load disabled\n");
1732
1733 acpi_gbl_disable_ssdt_table_load = TRUE;
1734
1735 return 1;
1736 }
1737
1738 __setup("acpi_no_auto_ssdt", acpi_no_auto_ssdt_setup);
1739
1740 acpi_status __init acpi_os_initialize(void)
1741 {
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);
1746
1747 return AE_OK;
1748 }
1749
1750 acpi_status __init acpi_os_initialize1(void)
1751 {
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;
1761 }
1762
1763 acpi_status acpi_os_terminate(void)
1764 {
1765 if (acpi_irq_handler) {
1766 acpi_os_remove_interrupt_handler(acpi_gbl_FADT.sci_interrupt,
1767 acpi_irq_handler);
1768 }
1769
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);
1774
1775 destroy_workqueue(kacpid_wq);
1776 destroy_workqueue(kacpi_notify_wq);
1777 destroy_workqueue(kacpi_hotplug_wq);
1778
1779 return AE_OK;
1780 }
1781
1782 acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control,
1783 u32 pm1b_control)
1784 {
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;
1793
1794 return AE_OK;
1795 }
1796
1797 void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state,
1798 u32 pm1a_ctrl, u32 pm1b_ctrl))
1799 {
1800 __acpi_os_prepare_sleep = func;
1801 }
1802
1803 acpi_status acpi_os_prepare_extended_sleep(u8 sleep_state, u32 val_a,
1804 u32 val_b)
1805 {
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;
1814
1815 return AE_OK;
1816 }
1817
1818 void acpi_os_set_prepare_extended_sleep(int (*func)(u8 sleep_state,
1819 u32 val_a, u32 val_b))
1820 {
1821 __acpi_os_prepare_extended_sleep = func;
1822 }
1823
1824
1825 void alloc_acpi_hp_work(acpi_handle handle, u32 type, void *context,
1826 void (*func)(struct work_struct *work))
1827 {
1828 struct acpi_hp_work *hp_work;
1829 int ret;
1830
1831 hp_work = kmalloc(sizeof(*hp_work), GFP_KERNEL);
1832 if (!hp_work)
1833 return;
1834
1835 hp_work->handle = handle;
1836 hp_work->type = type;
1837 hp_work->context = context;
1838
1839 INIT_WORK(&hp_work->work, func);
1840 ret = queue_work(kacpi_hotplug_wq, &hp_work->work);
1841 if (!ret)
1842 kfree(hp_work);
1843 }
1844 EXPORT_SYMBOL_GPL(alloc_acpi_hp_work);
This page took 0.120627 seconds and 5 git commands to generate.