blob: 32d684af0ec7c8a36781e5b7e712c7dd0e65b241 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04007 * Copyright (c) 2008 Intel Corporation
8 * Author: Matthew Wilcox <willy@linux.intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
23 *
24 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
27#include <linux/kernel.h>
28#include <linux/slab.h>
29#include <linux/mm.h>
Myron Stoweba242d52012-01-20 19:13:30 -070030#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/interrupt.h>
33#include <linux/kmod.h>
34#include <linux/delay.h>
35#include <linux/workqueue.h>
36#include <linux/nmi.h>
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +030037#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/efi.h>
Thomas Renningerdf92e692008-02-04 23:31:22 -080039#include <linux/ioport.h>
40#include <linux/list.h>
Matthew Wilcoxf1241c82008-03-14 13:43:13 -040041#include <linux/jiffies.h>
42#include <linux/semaphore.h>
43
44#include <asm/io.h>
45#include <asm/uaccess.h>
Christoph Hellwig2f8e2c82015-08-28 09:27:14 +020046#include <linux/io-64-nonatomic-lo-hi.h>
Matthew Wilcoxf1241c82008-03-14 13:43:13 -040047
Lv Zheng1129c922013-07-23 16:11:55 +080048#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define _COMPONENT ACPI_OS_SERVICES
Len Brownf52fd662007-02-12 22:42:12 -050051ACPI_MODULE_NAME("osl");
Hanjun Guo07070e12014-03-13 12:47:39 +080052
Len Brown4be44fc2005-08-05 00:44:28 -040053struct acpi_os_dpc {
54 acpi_osd_exec_callback function;
55 void *context;
David Howells65f27f32006-11-22 14:55:48 +000056 struct work_struct work;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057};
58
59#ifdef CONFIG_ACPI_CUSTOM_DSDT
60#include CONFIG_ACPI_CUSTOM_DSDT_FILE
61#endif
62
63#ifdef ENABLE_DEBUGGER
64#include <linux/kdb.h>
65
66/* stuff for debugger support */
67int acpi_in_debugger;
68EXPORT_SYMBOL(acpi_in_debugger);
Len Brown4be44fc2005-08-05 00:44:28 -040069#endif /*ENABLE_DEBUGGER */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Tang Liang09f98a82011-12-09 10:05:54 +080071static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl,
72 u32 pm1b_ctrl);
Ben Guthrod6b47b12013-07-30 08:24:52 -040073static int (*__acpi_os_prepare_extended_sleep)(u8 sleep_state, u32 val_a,
74 u32 val_b);
Tang Liang09f98a82011-12-09 10:05:54 +080075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static acpi_osd_handler acpi_irq_handler;
77static void *acpi_irq_context;
78static struct workqueue_struct *kacpid_wq;
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -040079static struct workqueue_struct *kacpi_notify_wq;
Yinghai Lu92d8aff2013-01-21 13:20:47 -080080static struct workqueue_struct *kacpi_hotplug_wq;
Lv Zheng7901a052015-08-05 16:23:51 +080081static bool acpi_os_initialized;
Chen Yu49e4b8432015-10-25 01:02:19 +080082unsigned int acpi_sci_irq = INVALID_ACPI_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Myron Stowe620242a2010-10-21 14:23:53 -060084/*
85 * This list of permanent mappings is for memory that may be accessed from
86 * interrupt context, where we can't do the ioremap().
87 */
88struct acpi_ioremap {
89 struct list_head list;
90 void __iomem *virt;
91 acpi_physical_address phys;
92 acpi_size size;
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +010093 unsigned long refcount;
Myron Stowe620242a2010-10-21 14:23:53 -060094};
95
96static LIST_HEAD(acpi_ioremaps);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +010097static DEFINE_MUTEX(acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -060098
Lin Mingb0ed7a92010-08-06 09:35:51 +080099static void __init acpi_osi_setup_late(void);
Len Brownae00d812007-05-29 18:43:33 -0400100
Len Brownd4b7dc42008-01-23 20:50:56 -0500101/*
Len Browna6e08872008-11-08 01:21:10 -0500102 * The story of _OSI(Linux)
Len Brownd4b7dc42008-01-23 20:50:56 -0500103 *
Len Browna6e08872008-11-08 01:21:10 -0500104 * From pre-history through Linux-2.6.22,
105 * Linux responded TRUE upon a BIOS OSI(Linux) query.
Len Brownd4b7dc42008-01-23 20:50:56 -0500106 *
Len Browna6e08872008-11-08 01:21:10 -0500107 * 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.
Len Brownd4b7dc42008-01-23 20:50:56 -0500111 *
Len Browna6e08872008-11-08 01:21:10 -0500112 * 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.
Len Brownd4b7dc42008-01-23 20:50:56 -0500123 *
Len Browna6e08872008-11-08 01:21:10 -0500124 * So "Linux" turned out to be a really poor chose of
125 * OSI string, and from Linux-2.6.23 onward we respond FALSE.
Len Brownd4b7dc42008-01-23 20:50:56 -0500126 *
127 * BIOS writers should NOT query _OSI(Linux) on future systems.
Len Browna6e08872008-11-08 01:21:10 -0500128 * 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"
Len Brownd4b7dc42008-01-23 20:50:56 -0500132 */
Len Brownd4b7dc42008-01-23 20:50:56 -0500133
Adrian Bunk1d15d842008-01-29 00:10:15 +0200134static struct osi_linux {
Len Brownd4b7dc42008-01-23 20:50:56 -0500135 unsigned int enable:1;
136 unsigned int dmi:1;
137 unsigned int cmdline:1;
Lv Zheng5dc17982013-07-22 16:08:25 +0800138 unsigned int default_disabling:1;
139} osi_linux = {0, 0, 0, 0};
Len Brownf5076542007-05-30 00:10:38 -0400140
Lin Mingb0ed7a92010-08-06 09:35:51 +0800141static u32 acpi_osi_handler(acpi_string interface, u32 supported)
142{
143 if (!strcmp("Linux", interface)) {
144
Len Brown89976212011-08-02 00:45:48 -0400145 printk_once(KERN_NOTICE FW_BUG PREFIX
Lin Mingb0ed7a92010-08-06 09:35:51 +0800146 "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" : "");
150 }
151
Matthew Garrett7bc5a2b2014-09-20 13:19:47 +0200152 if (!strcmp("Darwin", interface)) {
153 /*
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.
157 */
158 acpi_update_interfaces(ACPI_DISABLE_ALL_VENDOR_STRINGS);
159 supported = ACPI_UINT32_MAX;
160 }
161
Lin Mingb0ed7a92010-08-06 09:35:51 +0800162 return supported;
163}
164
Myron Stowebc9ffce2011-11-07 16:23:27 -0700165static void __init acpi_request_region (struct acpi_generic_address *gas,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700166 unsigned int length, char *desc)
167{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700168 u64 addr;
169
170 /* Handle possible alignment issues */
171 memcpy(&addr, &gas->address, sizeof(addr));
172 if (!addr || !length)
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700173 return;
174
Rafael J. Wysocki02941122015-07-04 03:09:03 +0200175 /* 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);
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700180}
181
Rafael J. Wysocki02941122015-07-04 03:09:03 +0200182static int __init acpi_reserve_resources(void)
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700183{
Len Browneee3c852007-02-03 01:38:16 -0500184 acpi_request_region(&acpi_gbl_FADT.xpm1a_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700185 "ACPI PM1a_EVT_BLK");
186
Len Browneee3c852007-02-03 01:38:16 -0500187 acpi_request_region(&acpi_gbl_FADT.xpm1b_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700188 "ACPI PM1b_EVT_BLK");
189
Len Browneee3c852007-02-03 01:38:16 -0500190 acpi_request_region(&acpi_gbl_FADT.xpm1a_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700191 "ACPI PM1a_CNT_BLK");
192
Len Browneee3c852007-02-03 01:38:16 -0500193 acpi_request_region(&acpi_gbl_FADT.xpm1b_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700194 "ACPI PM1b_CNT_BLK");
195
Len Browneee3c852007-02-03 01:38:16 -0500196 if (acpi_gbl_FADT.pm_timer_length == 4)
197 acpi_request_region(&acpi_gbl_FADT.xpm_timer_block, 4, "ACPI PM_TMR");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700198
Len Browneee3c852007-02-03 01:38:16 -0500199 acpi_request_region(&acpi_gbl_FADT.xpm2_control_block, acpi_gbl_FADT.pm2_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700200 "ACPI PM2_CNT_BLK");
201
202 /* Length of GPE blocks must be a non-negative multiple of 2 */
203
Len Browneee3c852007-02-03 01:38:16 -0500204 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");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700207
Len Browneee3c852007-02-03 01:38:16 -0500208 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");
Rafael J. Wysocki02941122015-07-04 03:09:03 +0200211
212 return 0;
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700213}
Rafael J. Wysocki02941122015-07-04 03:09:03 +0200214fs_initcall_sync(acpi_reserve_resources);
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700215
Len Brown4be44fc2005-08-05 00:44:28 -0400216void acpi_os_printf(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 va_list args;
219 va_start(args, fmt);
220 acpi_os_vprintf(fmt, args);
221 va_end(args);
222}
Len Brown4be44fc2005-08-05 00:44:28 -0400223
Len Brown4be44fc2005-08-05 00:44:28 -0400224void acpi_os_vprintf(const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 static char buffer[512];
Len Brown4be44fc2005-08-05 00:44:28 -0400227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 vsprintf(buffer, fmt, args);
229
230#ifdef ENABLE_DEBUGGER
231 if (acpi_in_debugger) {
232 kdb_printf("%s", buffer);
233 } else {
Frank Seidel4d939152009-02-04 17:03:07 +0100234 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236#else
Frank Seidel4d939152009-02-04 17:03:07 +0100237 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238#endif
239}
240
Takao Indoh4996c022011-07-14 18:05:21 -0400241#ifdef CONFIG_KEXEC
242static unsigned long acpi_rsdp;
243static int __init setup_acpi_rsdp(char *arg)
244{
Christoph Jaeger3d915892014-06-13 21:49:58 +0200245 if (kstrtoul(arg, 16, &acpi_rsdp))
246 return -EINVAL;
Takao Indoh4996c022011-07-14 18:05:21 -0400247 return 0;
248}
249early_param("acpi_rsdp", setup_acpi_rsdp);
250#endif
251
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300252acpi_physical_address __init acpi_os_get_root_pointer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Takao Indoh4996c022011-07-14 18:05:21 -0400254#ifdef CONFIG_KEXEC
255 if (acpi_rsdp)
256 return acpi_rsdp;
257#endif
258
Matt Fleming83e68182012-11-14 09:42:35 +0000259 if (efi_enabled(EFI_CONFIG_TABLES)) {
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800260 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300261 return efi.acpi20;
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800262 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300263 return efi.acpi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400265 printk(KERN_ERR PREFIX
266 "System description tables not found\n");
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300267 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
Graeme Gregory8a1664b2014-07-18 18:02:52 +0800269 } else if (IS_ENABLED(CONFIG_ACPI_LEGACY_TABLES_LOOKUP)) {
Len Brown239665a2007-11-23 20:08:02 -0500270 acpi_physical_address pa = 0;
271
272 acpi_find_root_pointer(&pa);
273 return pa;
274 }
Graeme Gregory8a1664b2014-07-18 18:02:52 +0800275
276 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600279/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
Myron Stowe4a3cba52010-10-21 14:24:14 -0600280static struct acpi_ioremap *
281acpi_map_lookup(acpi_physical_address phys, acpi_size size)
Myron Stowe620242a2010-10-21 14:23:53 -0600282{
283 struct acpi_ioremap *map;
284
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600285 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
Myron Stowe620242a2010-10-21 14:23:53 -0600286 if (map->phys <= phys &&
287 phys + size <= map->phys + map->size)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600288 return map;
289
290 return NULL;
291}
292
293/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
294static void __iomem *
295acpi_map_vaddr_lookup(acpi_physical_address phys, unsigned int size)
296{
297 struct acpi_ioremap *map;
298
299 map = acpi_map_lookup(phys, size);
300 if (map)
301 return map->virt + (phys - map->phys);
Myron Stowe620242a2010-10-21 14:23:53 -0600302
303 return NULL;
304}
305
Rafael J. Wysocki13606a22011-02-08 23:38:25 +0100306void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size)
307{
308 struct acpi_ioremap *map;
309 void __iomem *virt = NULL;
310
311 mutex_lock(&acpi_ioremap_lock);
312 map = acpi_map_lookup(phys, size);
313 if (map) {
314 virt = map->virt + (phys - map->phys);
315 map->refcount++;
316 }
317 mutex_unlock(&acpi_ioremap_lock);
318 return virt;
319}
320EXPORT_SYMBOL_GPL(acpi_os_get_iomem);
321
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600322/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
Myron Stowe620242a2010-10-21 14:23:53 -0600323static struct acpi_ioremap *
324acpi_map_lookup_virt(void __iomem *virt, acpi_size size)
325{
326 struct acpi_ioremap *map;
327
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600328 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600329 if (map->virt <= virt &&
330 virt + size <= map->virt + map->size)
Myron Stowe620242a2010-10-21 14:23:53 -0600331 return map;
332
333 return NULL;
334}
335
Graeme Gregoryaafc65c2015-03-24 14:02:35 +0000336#if defined(CONFIG_IA64) || defined(CONFIG_ARM64)
Myron Stoweba242d52012-01-20 19:13:30 -0700337/* ioremap will take care of cache attributes */
338#define should_use_kmap(pfn) 0
Graeme Gregoryaafc65c2015-03-24 14:02:35 +0000339#else
340#define should_use_kmap(pfn) page_is_ram(pfn)
Myron Stoweba242d52012-01-20 19:13:30 -0700341#endif
342
343static void __iomem *acpi_map(acpi_physical_address pg_off, unsigned long pg_sz)
344{
345 unsigned long pfn;
346
347 pfn = pg_off >> PAGE_SHIFT;
348 if (should_use_kmap(pfn)) {
349 if (pg_sz > PAGE_SIZE)
350 return NULL;
351 return (void __iomem __force *)kmap(pfn_to_page(pfn));
352 } else
353 return acpi_os_ioremap(pg_off, pg_sz);
354}
355
356static void acpi_unmap(acpi_physical_address pg_off, void __iomem *vaddr)
357{
358 unsigned long pfn;
359
360 pfn = pg_off >> PAGE_SHIFT;
Jan Beuliche2526752012-02-24 11:41:53 +0000361 if (should_use_kmap(pfn))
Myron Stoweba242d52012-01-20 19:13:30 -0700362 kunmap(pfn_to_page(pfn));
363 else
364 iounmap(vaddr);
365}
366
Jan Beulich2fdf0742007-12-13 08:33:59 +0000367void __iomem *__init_refok
Lv Zhenga2383172014-05-20 15:39:41 +0800368acpi_os_map_iomem(acpi_physical_address phys, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100370 struct acpi_ioremap *map;
Myron Stowe620242a2010-10-21 14:23:53 -0600371 void __iomem *virt;
Rafael J. Wysocki2d6d9fd2011-01-19 22:27:14 +0100372 acpi_physical_address pg_off;
373 acpi_size pg_sz;
Myron Stowe620242a2010-10-21 14:23:53 -0600374
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800375 if (phys > ULONG_MAX) {
376 printk(KERN_ERR PREFIX "Cannot map memory that high\n");
Randy Dunlap70c08462007-02-13 16:11:36 -0800377 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
Myron Stowe620242a2010-10-21 14:23:53 -0600379
380 if (!acpi_gbl_permanent_mmap)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300381 return __acpi_map_table((unsigned long)phys, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600382
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100383 mutex_lock(&acpi_ioremap_lock);
384 /* Check if there's a suitable mapping already. */
385 map = acpi_map_lookup(phys, size);
386 if (map) {
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100387 map->refcount++;
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100388 goto out;
389 }
390
Myron Stowe620242a2010-10-21 14:23:53 -0600391 map = kzalloc(sizeof(*map), GFP_KERNEL);
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100392 if (!map) {
393 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600394 return NULL;
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100395 }
Myron Stowe620242a2010-10-21 14:23:53 -0600396
Myron Stowe4a3cba52010-10-21 14:24:14 -0600397 pg_off = round_down(phys, PAGE_SIZE);
398 pg_sz = round_up(phys + size, PAGE_SIZE) - pg_off;
Myron Stoweba242d52012-01-20 19:13:30 -0700399 virt = acpi_map(pg_off, pg_sz);
Myron Stowe620242a2010-10-21 14:23:53 -0600400 if (!virt) {
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100401 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600402 kfree(map);
403 return NULL;
404 }
405
406 INIT_LIST_HEAD(&map->list);
407 map->virt = virt;
Myron Stowe4a3cba52010-10-21 14:24:14 -0600408 map->phys = pg_off;
409 map->size = pg_sz;
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100410 map->refcount = 1;
Myron Stowe620242a2010-10-21 14:23:53 -0600411
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600412 list_add_tail_rcu(&map->list, &acpi_ioremaps);
Myron Stowe620242a2010-10-21 14:23:53 -0600413
Lv Zhenga2383172014-05-20 15:39:41 +0800414out:
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100415 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe4a3cba52010-10-21 14:24:14 -0600416 return map->virt + (phys - map->phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
Lv Zhenga2383172014-05-20 15:39:41 +0800418EXPORT_SYMBOL_GPL(acpi_os_map_iomem);
419
420void *__init_refok
421acpi_os_map_memory(acpi_physical_address phys, acpi_size size)
422{
423 return (void *)acpi_os_map_iomem(phys, size);
424}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800425EXPORT_SYMBOL_GPL(acpi_os_map_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100427static void acpi_os_drop_map_ref(struct acpi_ioremap *map)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600428{
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100429 if (!--map->refcount)
430 list_del_rcu(&map->list);
Myron Stowe4a3cba52010-10-21 14:24:14 -0600431}
Myron Stowe4a3cba52010-10-21 14:24:14 -0600432
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100433static void acpi_os_map_cleanup(struct acpi_ioremap *map)
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100434{
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100435 if (!map->refcount) {
Konstantin Khlebnikov74b51ee2014-11-09 13:53:37 +0400436 synchronize_rcu_expedited();
Myron Stoweba242d52012-01-20 19:13:30 -0700437 acpi_unmap(map->phys, map->virt);
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100438 kfree(map);
439 }
Myron Stowe4a3cba52010-10-21 14:24:14 -0600440}
441
Lv Zhenga2383172014-05-20 15:39:41 +0800442void __ref acpi_os_unmap_iomem(void __iomem *virt, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Myron Stowe620242a2010-10-21 14:23:53 -0600444 struct acpi_ioremap *map;
Myron Stowe620242a2010-10-21 14:23:53 -0600445
446 if (!acpi_gbl_permanent_mmap) {
Yinghai Lu7d972772009-02-07 15:39:41 -0800447 __acpi_unmap_table(virt, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600448 return;
449 }
450
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100451 mutex_lock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600452 map = acpi_map_lookup_virt(virt, size);
453 if (!map) {
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100454 mutex_unlock(&acpi_ioremap_lock);
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100455 WARN(true, PREFIX "%s: bad address %p\n", __func__, virt);
Myron Stowe620242a2010-10-21 14:23:53 -0600456 return;
457 }
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100458 acpi_os_drop_map_ref(map);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100459 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600460
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100461 acpi_os_map_cleanup(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
Lv Zhenga2383172014-05-20 15:39:41 +0800463EXPORT_SYMBOL_GPL(acpi_os_unmap_iomem);
464
465void __ref acpi_os_unmap_memory(void *virt, acpi_size size)
466{
467 return acpi_os_unmap_iomem((void __iomem *)virt, size);
468}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800469EXPORT_SYMBOL_GPL(acpi_os_unmap_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Jeremy Fitzhardinge0d3a9cf2009-02-22 14:58:56 -0800471void __init early_acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
Yinghai Lu7d972772009-02-07 15:39:41 -0800472{
473 if (!acpi_gbl_permanent_mmap)
474 __acpi_unmap_table(virt, size);
475}
476
Myron Stowe6f68c912011-11-07 16:23:34 -0700477int acpi_os_map_generic_address(struct acpi_generic_address *gas)
Myron Stowe29718522010-10-21 14:23:59 -0600478{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700479 u64 addr;
Myron Stowe29718522010-10-21 14:23:59 -0600480 void __iomem *virt;
481
Myron Stowebc9ffce2011-11-07 16:23:27 -0700482 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
Myron Stowe29718522010-10-21 14:23:59 -0600483 return 0;
484
Myron Stowebc9ffce2011-11-07 16:23:27 -0700485 /* Handle possible alignment issues */
486 memcpy(&addr, &gas->address, sizeof(addr));
487 if (!addr || !gas->bit_width)
Myron Stowe29718522010-10-21 14:23:59 -0600488 return -EINVAL;
489
Lv Zhenga2383172014-05-20 15:39:41 +0800490 virt = acpi_os_map_iomem(addr, gas->bit_width / 8);
Myron Stowe29718522010-10-21 14:23:59 -0600491 if (!virt)
492 return -EIO;
493
494 return 0;
495}
Myron Stowe6f68c912011-11-07 16:23:34 -0700496EXPORT_SYMBOL(acpi_os_map_generic_address);
Myron Stowe29718522010-10-21 14:23:59 -0600497
Myron Stowe6f68c912011-11-07 16:23:34 -0700498void acpi_os_unmap_generic_address(struct acpi_generic_address *gas)
Myron Stowe29718522010-10-21 14:23:59 -0600499{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700500 u64 addr;
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100501 struct acpi_ioremap *map;
Myron Stowe29718522010-10-21 14:23:59 -0600502
Myron Stowebc9ffce2011-11-07 16:23:27 -0700503 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
Myron Stowe29718522010-10-21 14:23:59 -0600504 return;
505
Myron Stowebc9ffce2011-11-07 16:23:27 -0700506 /* Handle possible alignment issues */
507 memcpy(&addr, &gas->address, sizeof(addr));
508 if (!addr || !gas->bit_width)
Myron Stowe29718522010-10-21 14:23:59 -0600509 return;
510
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100511 mutex_lock(&acpi_ioremap_lock);
Myron Stowebc9ffce2011-11-07 16:23:27 -0700512 map = acpi_map_lookup(addr, gas->bit_width / 8);
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100513 if (!map) {
514 mutex_unlock(&acpi_ioremap_lock);
515 return;
516 }
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100517 acpi_os_drop_map_ref(map);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100518 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe29718522010-10-21 14:23:59 -0600519
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100520 acpi_os_map_cleanup(map);
Myron Stowe29718522010-10-21 14:23:59 -0600521}
Myron Stowe6f68c912011-11-07 16:23:34 -0700522EXPORT_SYMBOL(acpi_os_unmap_generic_address);
Myron Stowe29718522010-10-21 14:23:59 -0600523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524#ifdef ACPI_FUTURE_USAGE
525acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400526acpi_os_get_physical_address(void *virt, acpi_physical_address * phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
Len Brown4be44fc2005-08-05 00:44:28 -0400528 if (!phys || !virt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return AE_BAD_PARAMETER;
530
531 *phys = virt_to_phys(virt);
532
533 return AE_OK;
534}
535#endif
536
Rafael J. Wysocki18d78b62015-07-03 01:06:00 +0200537#ifdef CONFIG_ACPI_REV_OVERRIDE_POSSIBLE
538static bool acpi_rev_override;
539
540int __init acpi_rev_override_setup(char *str)
541{
542 acpi_rev_override = true;
543 return 1;
544}
545__setup("acpi_rev_override", acpi_rev_override_setup);
546#else
547#define acpi_rev_override false
548#endif
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550#define ACPI_MAX_OVERRIDE_LEN 100
551
552static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN];
553
554acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400555acpi_os_predefined_override(const struct acpi_predefined_names *init_val,
Dominik Brodowski2bad7e22015-05-14 15:31:25 +0200556 char **new_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
558 if (!init_val || !new_val)
559 return AE_BAD_PARAMETER;
560
561 *new_val = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400562 if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400564 acpi_os_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 *new_val = acpi_os_name;
566 }
567
Rafael J. Wysocki18d78b62015-07-03 01:06:00 +0200568 if (!memcmp(init_val->name, "_REV", 4) && acpi_rev_override) {
569 printk(KERN_INFO PREFIX "Overriding _REV return value to 5\n");
570 *new_val = (char *)5;
571 }
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 return AE_OK;
574}
575
Thomas Renninger53aac442012-10-01 00:23:54 +0200576#ifdef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
577#include <linux/earlycpio.h>
578#include <linux/memblock.h>
579
580static u64 acpi_tables_addr;
581static int all_tables_size;
582
583/* Copied from acpica/tbutils.c:acpi_tb_checksum() */
Rashika66e162b2013-12-17 14:43:05 +0530584static u8 __init acpi_table_checksum(u8 *buffer, u32 length)
Thomas Renninger53aac442012-10-01 00:23:54 +0200585{
586 u8 sum = 0;
587 u8 *end = buffer + length;
588
589 while (buffer < end)
590 sum = (u8) (sum + *(buffer++));
591 return sum;
592}
593
594/* All but ACPI_SIG_RSDP and ACPI_SIG_FACS: */
595static const char * const table_sigs[] = {
596 ACPI_SIG_BERT, ACPI_SIG_CPEP, ACPI_SIG_ECDT, ACPI_SIG_EINJ,
597 ACPI_SIG_ERST, ACPI_SIG_HEST, ACPI_SIG_MADT, ACPI_SIG_MSCT,
598 ACPI_SIG_SBST, ACPI_SIG_SLIT, ACPI_SIG_SRAT, ACPI_SIG_ASF,
599 ACPI_SIG_BOOT, ACPI_SIG_DBGP, ACPI_SIG_DMAR, ACPI_SIG_HPET,
600 ACPI_SIG_IBFT, ACPI_SIG_IVRS, ACPI_SIG_MCFG, ACPI_SIG_MCHI,
601 ACPI_SIG_SLIC, ACPI_SIG_SPCR, ACPI_SIG_SPMI, ACPI_SIG_TCPA,
602 ACPI_SIG_UEFI, ACPI_SIG_WAET, ACPI_SIG_WDAT, ACPI_SIG_WDDT,
603 ACPI_SIG_WDRT, ACPI_SIG_DSDT, ACPI_SIG_FADT, ACPI_SIG_PSDT,
604 ACPI_SIG_RSDT, ACPI_SIG_XSDT, ACPI_SIG_SSDT, NULL };
605
Thomas Renninger53aac442012-10-01 00:23:54 +0200606#define ACPI_HEADER_SIZE sizeof(struct acpi_table_header)
607
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700608#define ACPI_OVERRIDE_TABLES 64
609static struct cpio_data __initdata acpi_initrd_files[ACPI_OVERRIDE_TABLES];
610
611#define MAP_CHUNK_SIZE (NR_FIX_BTMAPS << PAGE_SHIFT)
Thomas Renninger53aac442012-10-01 00:23:54 +0200612
613void __init acpi_initrd_override(void *data, size_t size)
614{
615 int sig, no, table_nr = 0, total_offset = 0;
616 long offset = 0;
617 struct acpi_table_header *table;
618 char cpio_path[32] = "kernel/firmware/acpi/";
619 struct cpio_data file;
Thomas Renninger53aac442012-10-01 00:23:54 +0200620
621 if (data == NULL || size == 0)
622 return;
623
624 for (no = 0; no < ACPI_OVERRIDE_TABLES; no++) {
625 file = find_cpio_data(cpio_path, data, size, &offset);
626 if (!file.data)
627 break;
628
629 data += offset;
630 size -= offset;
631
Tang Chen7702ae02013-08-14 17:37:08 +0800632 if (file.size < sizeof(struct acpi_table_header)) {
633 pr_err("ACPI OVERRIDE: Table smaller than ACPI header [%s%s]\n",
634 cpio_path, file.name);
635 continue;
636 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200637
638 table = file.data;
639
640 for (sig = 0; table_sigs[sig]; sig++)
641 if (!memcmp(table->signature, table_sigs[sig], 4))
642 break;
643
Tang Chen7702ae02013-08-14 17:37:08 +0800644 if (!table_sigs[sig]) {
645 pr_err("ACPI OVERRIDE: Unknown signature [%s%s]\n",
646 cpio_path, file.name);
647 continue;
648 }
649 if (file.size != table->length) {
650 pr_err("ACPI OVERRIDE: File length does not match table length [%s%s]\n",
651 cpio_path, file.name);
652 continue;
653 }
654 if (acpi_table_checksum(file.data, table->length)) {
655 pr_err("ACPI OVERRIDE: Bad table checksum [%s%s]\n",
656 cpio_path, file.name);
657 continue;
658 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200659
660 pr_info("%4.4s ACPI table found in initrd [%s%s][0x%x]\n",
661 table->signature, cpio_path, file.name, table->length);
662
663 all_tables_size += table->length;
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700664 acpi_initrd_files[table_nr].data = file.data;
665 acpi_initrd_files[table_nr].size = file.size;
Thomas Renninger53aac442012-10-01 00:23:54 +0200666 table_nr++;
667 }
668 if (table_nr == 0)
669 return;
670
671 acpi_tables_addr =
672 memblock_find_in_range(0, max_low_pfn_mapped << PAGE_SHIFT,
673 all_tables_size, PAGE_SIZE);
674 if (!acpi_tables_addr) {
675 WARN_ON(1);
676 return;
677 }
678 /*
679 * Only calling e820_add_reserve does not work and the
680 * tables are invalid (memory got used) later.
681 * memblock_reserve works as expected and the tables won't get modified.
682 * But it's not enough on X86 because ioremap will
683 * complain later (used by acpi_os_map_memory) that the pages
684 * that should get mapped are not marked "reserved".
685 * Both memblock_reserve and e820_add_region (via arch_reserve_mem_area)
686 * works fine.
687 */
Wang YanQinga6432de2013-04-23 01:19:19 +0200688 memblock_reserve(acpi_tables_addr, all_tables_size);
Thomas Renninger53aac442012-10-01 00:23:54 +0200689 arch_reserve_mem_area(acpi_tables_addr, all_tables_size);
690
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700691 /*
692 * early_ioremap only can remap 256k one time. If we map all
693 * tables one time, we will hit the limit. Need to map chunks
694 * one by one during copying the same as that in relocate_initrd().
695 */
Thomas Renninger53aac442012-10-01 00:23:54 +0200696 for (no = 0; no < table_nr; no++) {
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700697 unsigned char *src_p = acpi_initrd_files[no].data;
698 phys_addr_t size = acpi_initrd_files[no].size;
699 phys_addr_t dest_addr = acpi_tables_addr + total_offset;
700 phys_addr_t slop, clen;
701 char *dest_p;
702
703 total_offset += size;
704
705 while (size) {
706 slop = dest_addr & ~PAGE_MASK;
707 clen = size;
708 if (clen > MAP_CHUNK_SIZE - slop)
709 clen = MAP_CHUNK_SIZE - slop;
710 dest_p = early_ioremap(dest_addr & PAGE_MASK,
711 clen + slop);
712 memcpy(dest_p + slop, src_p, clen);
713 early_iounmap(dest_p, clen + slop);
714 src_p += clen;
715 dest_addr += clen;
716 size -= clen;
717 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200718 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200719}
720#endif /* CONFIG_ACPI_INITRD_TABLE_OVERRIDE */
721
Thomas Renninger325a8d362012-10-01 00:23:56 +0200722static void acpi_table_taint(struct acpi_table_header *table)
723{
724 pr_warn(PREFIX
725 "Override [%4.4s-%8.8s], this is unsafe: tainting kernel\n",
726 table->signature, table->oem_table_id);
Rusty Russell373d4d02013-01-21 17:17:39 +1030727 add_taint(TAINT_OVERRIDDEN_ACPI_TABLE, LOCKDEP_NOW_UNRELIABLE);
Thomas Renninger325a8d362012-10-01 00:23:56 +0200728}
729
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400732acpi_os_table_override(struct acpi_table_header * existing_table,
733 struct acpi_table_header ** new_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
735 if (!existing_table || !new_table)
736 return AE_BAD_PARAMETER;
737
Markus Gaugusch71fc47a2008-02-05 00:04:06 +0100738 *new_table = NULL;
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740#ifdef CONFIG_ACPI_CUSTOM_DSDT
741 if (strncmp(existing_table->signature, "DSDT", 4) == 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400742 *new_table = (struct acpi_table_header *)AmlCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743#endif
Thomas Renninger325a8d362012-10-01 00:23:56 +0200744 if (*new_table != NULL)
745 acpi_table_taint(existing_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return AE_OK;
747}
748
Bob Mooref7b004a2012-02-14 18:31:56 +0800749acpi_status
750acpi_os_physical_table_override(struct acpi_table_header *existing_table,
Thomas Renningerb2a35002012-10-01 00:23:55 +0200751 acpi_physical_address *address,
752 u32 *table_length)
Bob Mooref7b004a2012-02-14 18:31:56 +0800753{
Thomas Renningerb2a35002012-10-01 00:23:55 +0200754#ifndef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
755 *table_length = 0;
756 *address = 0;
757 return AE_OK;
758#else
759 int table_offset = 0;
760 struct acpi_table_header *table;
Bob Mooref7b004a2012-02-14 18:31:56 +0800761
Thomas Renningerb2a35002012-10-01 00:23:55 +0200762 *table_length = 0;
763 *address = 0;
764
765 if (!acpi_tables_addr)
766 return AE_OK;
767
768 do {
769 if (table_offset + ACPI_HEADER_SIZE > all_tables_size) {
770 WARN_ON(1);
771 return AE_OK;
772 }
773
774 table = acpi_os_map_memory(acpi_tables_addr + table_offset,
775 ACPI_HEADER_SIZE);
776
777 if (table_offset + table->length > all_tables_size) {
778 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
779 WARN_ON(1);
780 return AE_OK;
781 }
782
783 table_offset += table->length;
784
785 if (memcmp(existing_table->signature, table->signature, 4)) {
786 acpi_os_unmap_memory(table,
787 ACPI_HEADER_SIZE);
788 continue;
789 }
790
791 /* Only override tables with matching oem id */
792 if (memcmp(table->oem_table_id, existing_table->oem_table_id,
793 ACPI_OEM_TABLE_ID_SIZE)) {
794 acpi_os_unmap_memory(table,
795 ACPI_HEADER_SIZE);
796 continue;
797 }
798
799 table_offset -= table->length;
800 *table_length = table->length;
801 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
802 *address = acpi_tables_addr + table_offset;
803 break;
804 } while (table_offset + ACPI_HEADER_SIZE < all_tables_size);
805
Thomas Renninger325a8d362012-10-01 00:23:56 +0200806 if (*address != 0)
807 acpi_table_taint(existing_table);
Thomas Renningerb2a35002012-10-01 00:23:55 +0200808 return AE_OK;
809#endif
810}
Bob Mooref7b004a2012-02-14 18:31:56 +0800811
David Howells7d12e782006-10-05 14:55:46 +0100812static irqreturn_t acpi_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Len Brown5229e872008-02-06 01:26:55 -0500814 u32 handled;
815
816 handled = (*acpi_irq_handler) (acpi_irq_context);
817
818 if (handled) {
819 acpi_irq_handled++;
820 return IRQ_HANDLED;
Len Brown88bea182009-04-21 00:35:47 -0400821 } else {
822 acpi_irq_not_handled++;
Len Brown5229e872008-02-06 01:26:55 -0500823 return IRQ_NONE;
Len Brown88bea182009-04-21 00:35:47 -0400824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
827acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400828acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
829 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
831 unsigned int irq;
832
Len Brown5229e872008-02-06 01:26:55 -0500833 acpi_irq_stats_init();
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 /*
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100836 * ACPI interrupts different from the SCI in our copy of the FADT are
837 * not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 */
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100839 if (gsi != acpi_gbl_FADT.sci_interrupt)
840 return AE_BAD_PARAMETER;
841
842 if (acpi_irq_handler)
843 return AE_ALREADY_ACQUIRED;
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 if (acpi_gsi_to_irq(gsi, &irq) < 0) {
846 printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n",
847 gsi);
848 return AE_OK;
849 }
850
851 acpi_irq_handler = handler;
852 acpi_irq_context = context;
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +0200853 if (request_irq(irq, acpi_irq, IRQF_SHARED, "acpi", acpi_irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq);
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100855 acpi_irq_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return AE_NOT_ACQUIRED;
857 }
Chen Yu49e4b8432015-10-25 01:02:19 +0800858 acpi_sci_irq = irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 return AE_OK;
861}
862
Chen Yu49e4b8432015-10-25 01:02:19 +0800863acpi_status acpi_os_remove_interrupt_handler(u32 gsi, acpi_osd_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
Chen Yu49e4b8432015-10-25 01:02:19 +0800865 if (gsi != acpi_gbl_FADT.sci_interrupt || !acpi_sci_irq_valid())
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100866 return AE_BAD_PARAMETER;
867
Chen Yu49e4b8432015-10-25 01:02:19 +0800868 free_irq(acpi_sci_irq, acpi_irq);
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100869 acpi_irq_handler = NULL;
Chen Yu49e4b8432015-10-25 01:02:19 +0800870 acpi_sci_irq = INVALID_ACPI_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 return AE_OK;
873}
874
875/*
876 * Running in interpreter thread context, safe to sleep
877 */
878
Lin Ming439913f2010-01-28 10:53:19 +0800879void acpi_os_sleep(u64 ms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
Liu Chuansheng30282292013-09-12 01:42:57 +0800881 msleep(ms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}
Len Brown4be44fc2005-08-05 00:44:28 -0400883
Len Brown4be44fc2005-08-05 00:44:28 -0400884void acpi_os_stall(u32 us)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
886 while (us) {
887 u32 delay = 1000;
888
889 if (delay > us)
890 delay = us;
891 udelay(delay);
892 touch_nmi_watchdog();
893 us -= delay;
894 }
895}
Len Brown4be44fc2005-08-05 00:44:28 -0400896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897/*
898 * Support ACPI 3.0 AML Timer operand
899 * Returns 64-bit free-running, monotonically increasing timer
900 * with 100ns granularity
901 */
Len Brown4be44fc2005-08-05 00:44:28 -0400902u64 acpi_os_get_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Mika Westerberg10619062013-05-23 10:27:46 +0300904 u64 time_ns = ktime_to_ns(ktime_get());
905 do_div(time_ns, 100);
906 return time_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
Len Brown4be44fc2005-08-05 00:44:28 -0400909acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
911 u32 dummy;
912
913 if (!value)
914 value = &dummy;
915
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800916 *value = 0;
917 if (width <= 8) {
Len Brown4be44fc2005-08-05 00:44:28 -0400918 *(u8 *) value = inb(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800919 } else if (width <= 16) {
Len Brown4be44fc2005-08-05 00:44:28 -0400920 *(u16 *) value = inw(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800921 } else if (width <= 32) {
Len Brown4be44fc2005-08-05 00:44:28 -0400922 *(u32 *) value = inl(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800923 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 BUG();
925 }
926
927 return AE_OK;
928}
Len Brown4be44fc2005-08-05 00:44:28 -0400929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930EXPORT_SYMBOL(acpi_os_read_port);
931
Len Brown4be44fc2005-08-05 00:44:28 -0400932acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800934 if (width <= 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 outb(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800936 } else if (width <= 16) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 outw(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800938 } else if (width <= 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 outl(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800940 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 BUG();
942 }
943
944 return AE_OK;
945}
Len Brown4be44fc2005-08-05 00:44:28 -0400946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947EXPORT_SYMBOL(acpi_os_write_port);
948
Myron Stowee615bf52012-01-20 19:13:24 -0700949acpi_status
Bob Moore653f4b52012-02-14 18:29:55 +0800950acpi_os_read_memory(acpi_physical_address phys_addr, u64 *value, u32 width)
Myron Stowee615bf52012-01-20 19:13:24 -0700951{
952 void __iomem *virt_addr;
953 unsigned int size = width / 8;
954 bool unmap = false;
955 u64 dummy;
956
957 rcu_read_lock();
958 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
959 if (!virt_addr) {
960 rcu_read_unlock();
961 virt_addr = acpi_os_ioremap(phys_addr, size);
962 if (!virt_addr)
963 return AE_BAD_ADDRESS;
964 unmap = true;
965 }
966
967 if (!value)
968 value = &dummy;
969
970 switch (width) {
971 case 8:
972 *(u8 *) value = readb(virt_addr);
973 break;
974 case 16:
975 *(u16 *) value = readw(virt_addr);
976 break;
977 case 32:
978 *(u32 *) value = readl(virt_addr);
979 break;
980 case 64:
Andy Shevchenko3277b4e2015-08-17 17:28:46 +0300981 *(u64 *) value = readq(virt_addr);
Myron Stowee615bf52012-01-20 19:13:24 -0700982 break;
983 default:
984 BUG();
985 }
986
987 if (unmap)
988 iounmap(virt_addr);
989 else
990 rcu_read_unlock();
991
992 return AE_OK;
993}
994
Myron Stowee615bf52012-01-20 19:13:24 -0700995acpi_status
Bob Moore653f4b52012-02-14 18:29:55 +0800996acpi_os_write_memory(acpi_physical_address phys_addr, u64 value, u32 width)
Myron Stowee615bf52012-01-20 19:13:24 -0700997{
998 void __iomem *virt_addr;
999 unsigned int size = width / 8;
1000 bool unmap = false;
1001
1002 rcu_read_lock();
1003 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
1004 if (!virt_addr) {
1005 rcu_read_unlock();
1006 virt_addr = acpi_os_ioremap(phys_addr, size);
1007 if (!virt_addr)
1008 return AE_BAD_ADDRESS;
1009 unmap = true;
1010 }
1011
1012 switch (width) {
1013 case 8:
1014 writeb(value, virt_addr);
1015 break;
1016 case 16:
1017 writew(value, virt_addr);
1018 break;
1019 case 32:
1020 writel(value, virt_addr);
1021 break;
1022 case 64:
Andy Shevchenko3277b4e2015-08-17 17:28:46 +03001023 writeq(value, virt_addr);
Myron Stowee615bf52012-01-20 19:13:24 -07001024 break;
1025 default:
1026 BUG();
1027 }
1028
1029 if (unmap)
1030 iounmap(virt_addr);
1031 else
1032 rcu_read_unlock();
1033
1034 return AE_OK;
1035}
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001038acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Bob Moorec5f02312010-08-06 08:57:53 +08001039 u64 *value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
1041 int result, size;
Bob Moorec5f02312010-08-06 08:57:53 +08001042 u32 value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
1044 if (!value)
1045 return AE_BAD_PARAMETER;
1046
1047 switch (width) {
1048 case 8:
1049 size = 1;
1050 break;
1051 case 16:
1052 size = 2;
1053 break;
1054 case 32:
1055 size = 4;
1056 break;
1057 default:
1058 return AE_ERROR;
1059 }
1060
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -05001061 result = raw_pci_read(pci_id->segment, pci_id->bus,
1062 PCI_DEVFN(pci_id->device, pci_id->function),
Bob Moorec5f02312010-08-06 08:57:53 +08001063 reg, size, &value32);
1064 *value = value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 return (result ? AE_ERROR : AE_OK);
1067}
Len Brown4be44fc2005-08-05 00:44:28 -04001068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001070acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Lin Ming439913f2010-01-28 10:53:19 +08001071 u64 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
1073 int result, size;
1074
1075 switch (width) {
1076 case 8:
1077 size = 1;
1078 break;
1079 case 16:
1080 size = 2;
1081 break;
1082 case 32:
1083 size = 4;
1084 break;
1085 default:
1086 return AE_ERROR;
1087 }
1088
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -05001089 result = raw_pci_write(pci_id->segment, pci_id->bus,
1090 PCI_DEVFN(pci_id->device, pci_id->function),
1091 reg, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 return (result ? AE_ERROR : AE_OK);
1094}
1095
David Howells65f27f32006-11-22 14:55:48 +00001096static void acpi_os_execute_deferred(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
David Howells65f27f32006-11-22 14:55:48 +00001098 struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work);
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -04001099
Zhang Rui19cd8472008-08-28 10:05:06 +08001100 dpc->function(dpc->context);
1101 kfree(dpc);
Zhang Rui19cd8472008-08-28 10:05:06 +08001102}
1103
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -04001104/*******************************************************************************
1105 *
1106 * FUNCTION: acpi_os_execute
1107 *
1108 * PARAMETERS: Type - Type of the callback
1109 * Function - Function to be executed
1110 * Context - Function parameters
1111 *
1112 * RETURN: Status
1113 *
1114 * DESCRIPTION: Depending on type, either queues function for deferred execution or
1115 * immediately executes function on a separate thread.
1116 *
1117 ******************************************************************************/
1118
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001119acpi_status acpi_os_execute(acpi_execute_type type,
1120 acpi_osd_exec_callback function, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121{
Len Brown4be44fc2005-08-05 00:44:28 -04001122 acpi_status status = AE_OK;
1123 struct acpi_os_dpc *dpc;
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +03001124 struct workqueue_struct *queue;
Zhang Rui19cd8472008-08-28 10:05:06 +08001125 int ret;
Len Brown72945b22006-07-12 22:46:42 -04001126 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
1127 "Scheduling function [%p(%p)] for deferred execution.\n",
1128 function, context));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 /*
1131 * Allocate/initialize DPC structure. Note that this memory will be
David Howells65f27f32006-11-22 14:55:48 +00001132 * freed by the callee. The kernel handles the work_struct list in a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 * way that allows us to also free its memory inside the callee.
1134 * Because we may want to schedule several tasks with different
1135 * parameters we can't use the approach some kernel code uses of
David Howells65f27f32006-11-22 14:55:48 +00001136 * having a static work_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 */
Len Brown72945b22006-07-12 22:46:42 -04001138
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001139 dpc = kzalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 if (!dpc)
Lin Ming889c78b2008-12-31 09:23:57 +08001141 return AE_NO_MEMORY;
Linus Torvaldsb976fe12006-11-17 19:31:09 -08001142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 dpc->function = function;
1144 dpc->context = context;
Linus Torvaldsb976fe12006-11-17 19:31:09 -08001145
Zhang Ruic02256b2009-06-23 10:20:29 +08001146 /*
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001147 * To prevent lockdep from complaining unnecessarily, make sure that
1148 * there is a different static lockdep key for each workqueue by using
1149 * INIT_WORK() for each of them separately.
Zhang Ruic02256b2009-06-23 10:20:29 +08001150 */
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001151 if (type == OSL_NOTIFY_HANDLER) {
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001152 queue = kacpi_notify_wq;
Zhang Ruibc736752010-03-22 15:48:54 +08001153 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001154 } else {
1155 queue = kacpid_wq;
Zhang Ruibc736752010-03-22 15:48:54 +08001156 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001157 }
Zhang Ruibc736752010-03-22 15:48:54 +08001158
Tejun Heo8fec62b2010-06-29 10:07:09 +02001159 /*
1160 * On some machines, a software-initiated SMI causes corruption unless
1161 * the SMI runs on CPU 0. An SMI can be initiated by any AML, but
1162 * typically it's done in GPE-related methods that are run via
1163 * workqueues, so we can avoid the known corruption cases by always
1164 * queueing on CPU 0.
1165 */
1166 ret = queue_work_on(0, queue, &dpc->work);
Zhang Rui19cd8472008-08-28 10:05:06 +08001167
1168 if (!ret) {
Lin Ming55ac9a02008-09-28 14:51:56 +08001169 printk(KERN_ERR PREFIX
1170 "Call to queue_work() failed.\n");
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +03001171 status = AE_ERROR;
1172 kfree(dpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 }
Lin Ming889c78b2008-12-31 09:23:57 +08001174 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175}
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -04001176EXPORT_SYMBOL(acpi_os_execute);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Lin Mingbd6f10a2012-05-22 16:43:49 +08001178void acpi_os_wait_events_complete(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179{
Lv Zheng90253a72014-11-05 15:06:13 +08001180 /*
1181 * Make sure the GPE handler or the fixed event handler is not used
1182 * on another CPU after removal.
1183 */
Chen Yuefb1cf72015-10-25 01:02:36 +08001184 if (acpi_sci_irq_valid())
1185 synchronize_hardirq(acpi_sci_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 flush_workqueue(kacpid_wq);
Zhang Rui2f67a062008-04-29 02:34:42 -04001187 flush_workqueue(kacpi_notify_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188}
Len Brown4be44fc2005-08-05 00:44:28 -04001189
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001190struct acpi_hp_work {
1191 struct work_struct work;
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001192 struct acpi_device *adev;
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001193 u32 src;
1194};
1195
1196static void acpi_hotplug_work_fn(struct work_struct *work)
1197{
1198 struct acpi_hp_work *hpw = container_of(work, struct acpi_hp_work, work);
1199
1200 acpi_os_wait_events_complete();
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001201 acpi_device_hotplug(hpw->adev, hpw->src);
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001202 kfree(hpw);
1203}
1204
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001205acpi_status acpi_hotplug_schedule(struct acpi_device *adev, u32 src)
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001206{
1207 struct acpi_hp_work *hpw;
1208
1209 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001210 "Scheduling hotplug event (%p, %u) for deferred execution.\n",
1211 adev, src));
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001212
1213 hpw = kmalloc(sizeof(*hpw), GFP_KERNEL);
1214 if (!hpw)
1215 return AE_NO_MEMORY;
1216
1217 INIT_WORK(&hpw->work, acpi_hotplug_work_fn);
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001218 hpw->adev = adev;
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001219 hpw->src = src;
1220 /*
1221 * We can't run hotplug code in kacpid_wq/kacpid_notify_wq etc., because
1222 * the hotplug code may call driver .remove() functions, which may
1223 * invoke flush_scheduled_work()/acpi_os_wait_events_complete() to flush
1224 * these workqueues.
1225 */
1226 if (!queue_work(kacpi_hotplug_wq, &hpw->work)) {
1227 kfree(hpw);
1228 return AE_ERROR;
1229 }
1230 return AE_OK;
1231}
1232
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001233bool acpi_queue_hotplug_work(struct work_struct *work)
1234{
1235 return queue_work(kacpi_hotplug_wq, work);
1236}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001239acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
Len Brown4be44fc2005-08-05 00:44:28 -04001241 struct semaphore *sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
jhbird.choi@samsung.com2d0acb42014-03-20 16:35:56 +09001243 sem = acpi_os_allocate_zeroed(sizeof(struct semaphore));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -04001245 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 sema_init(sem, initial_units);
1248
Len Brown4be44fc2005-08-05 00:44:28 -04001249 *handle = (acpi_handle *) sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Len Brown4be44fc2005-08-05 00:44:28 -04001251 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n",
1252 *handle, initial_units));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Patrick Mocheld550d982006-06-27 00:41:40 -04001254 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257/*
1258 * TODO: A better way to delete semaphores? Linux doesn't have a
1259 * 'delete_semaphore()' function -- may result in an invalid
1260 * pointer dereference for non-synchronized consumers. Should
1261 * we at least check for blocked threads and signal/cancel them?
1262 */
1263
Len Brown4be44fc2005-08-05 00:44:28 -04001264acpi_status acpi_os_delete_semaphore(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265{
Len Brown4be44fc2005-08-05 00:44:28 -04001266 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -04001269 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Len Brown4be44fc2005-08-05 00:44:28 -04001271 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001273 BUG_ON(!list_empty(&sem->wait_list));
Len Brown02438d82006-06-30 03:19:10 -04001274 kfree(sem);
Len Brown4be44fc2005-08-05 00:44:28 -04001275 sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Patrick Mocheld550d982006-06-27 00:41:40 -04001277 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 * TODO: Support for units > 1?
1282 */
Len Brown4be44fc2005-08-05 00:44:28 -04001283acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284{
Len Brown4be44fc2005-08-05 00:44:28 -04001285 acpi_status status = AE_OK;
1286 struct semaphore *sem = (struct semaphore *)handle;
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001287 long jiffies;
Len Brown4be44fc2005-08-05 00:44:28 -04001288 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Lv Zheng7901a052015-08-05 16:23:51 +08001290 if (!acpi_os_initialized)
1291 return AE_OK;
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001294 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -04001297 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Len Brown4be44fc2005-08-05 00:44:28 -04001299 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n",
1300 handle, units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001302 if (timeout == ACPI_WAIT_FOREVER)
1303 jiffies = MAX_SCHEDULE_TIMEOUT;
1304 else
1305 jiffies = msecs_to_jiffies(timeout);
Al Stonecad1525a2013-12-04 12:59:11 -07001306
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001307 ret = down_timeout(sem, jiffies);
1308 if (ret)
1309 status = AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311 if (ACPI_FAILURE(status)) {
Bjorn Helgaas9e7e2c02006-04-27 05:25:00 -04001312 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -04001313 "Failed to acquire semaphore[%p|%d|%d], %s",
Len Brown4be44fc2005-08-05 00:44:28 -04001314 handle, units, timeout,
1315 acpi_format_exception(status)));
1316 } else {
1317 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -04001318 "Acquired semaphore[%p|%d|%d]", handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001319 units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
1321
Patrick Mocheld550d982006-06-27 00:41:40 -04001322 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325/*
1326 * TODO: Support for units > 1?
1327 */
Len Brown4be44fc2005-08-05 00:44:28 -04001328acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329{
Len Brown4be44fc2005-08-05 00:44:28 -04001330 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Lv Zheng7901a052015-08-05 16:23:51 +08001332 if (!acpi_os_initialized)
1333 return AE_OK;
1334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001336 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
1338 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -04001339 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Len Brown4be44fc2005-08-05 00:44:28 -04001341 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle,
1342 units));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344 up(sem);
1345
Patrick Mocheld550d982006-06-27 00:41:40 -04001346 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347}
Len Brown4be44fc2005-08-05 00:44:28 -04001348
Lv Zheng4d946f72015-10-19 10:25:56 +08001349acpi_status acpi_os_get_line(char *buffer, u32 buffer_length, u32 *bytes_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351#ifdef ENABLE_DEBUGGER
1352 if (acpi_in_debugger) {
1353 u32 chars;
1354
Lv Zheng4d946f72015-10-19 10:25:56 +08001355 kdb_read(buffer, buffer_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 /* remove the CR kdb includes */
1358 chars = strlen(buffer) - 1;
1359 buffer[chars] = '\0';
1360 }
1361#endif
1362
Lv Zheng4d946f72015-10-19 10:25:56 +08001363 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Len Brown4be44fc2005-08-05 00:44:28 -04001366acpi_status acpi_os_signal(u32 function, void *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
Len Brown4be44fc2005-08-05 00:44:28 -04001368 switch (function) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 case ACPI_SIGNAL_FATAL:
1370 printk(KERN_ERR PREFIX "Fatal opcode executed\n");
1371 break;
1372 case ACPI_SIGNAL_BREAKPOINT:
1373 /*
1374 * AML Breakpoint
1375 * ACPI spec. says to treat it as a NOP unless
1376 * you are debugging. So if/when we integrate
1377 * AML debugger into the kernel debugger its
1378 * hook will go here. But until then it is
1379 * not useful to print anything on breakpoints.
1380 */
1381 break;
1382 default:
1383 break;
1384 }
1385
1386 return AE_OK;
1387}
Len Brown4be44fc2005-08-05 00:44:28 -04001388
Len Brown4be44fc2005-08-05 00:44:28 -04001389static int __init acpi_os_name_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390{
1391 char *p = acpi_os_name;
Len Brown4be44fc2005-08-05 00:44:28 -04001392 int count = ACPI_MAX_OVERRIDE_LEN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 if (!str || !*str)
1395 return 0;
1396
Dan Carpenter5e2be4e2013-10-18 12:01:43 +03001397 for (; count-- && *str; str++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 if (isalnum(*str) || *str == ' ' || *str == ':')
1399 *p++ = *str;
1400 else if (*str == '\'' || *str == '"')
1401 continue;
1402 else
1403 break;
1404 }
1405 *p = 0;
1406
1407 return 1;
Len Brown4be44fc2005-08-05 00:44:28 -04001408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409}
1410
1411__setup("acpi_os_name=", acpi_os_name_setup);
1412
Lin Ming12d32062010-12-09 16:51:06 +08001413#define OSI_STRING_LENGTH_MAX 64 /* arbitrary */
1414#define OSI_STRING_ENTRIES_MAX 16 /* arbitrary */
1415
1416struct osi_setup_entry {
1417 char string[OSI_STRING_LENGTH_MAX];
1418 bool enable;
1419};
1420
Hanjun Guoe73d3132013-08-13 18:31:15 +08001421static struct osi_setup_entry
1422 osi_setup_entries[OSI_STRING_ENTRIES_MAX] __initdata = {
Shaohua Liaa165972011-07-28 13:48:43 -07001423 {"Module Device", true},
1424 {"Processor Device", true},
1425 {"3.0 _SCP Extensions", true},
1426 {"Processor Aggregator Device", true},
1427};
Lin Ming12d32062010-12-09 16:51:06 +08001428
Lin Mingd90aa922010-12-09 16:50:52 +08001429void __init acpi_osi_setup(char *str)
1430{
Lin Ming12d32062010-12-09 16:51:06 +08001431 struct osi_setup_entry *osi;
1432 bool enable = true;
1433 int i;
1434
Lin Mingd90aa922010-12-09 16:50:52 +08001435 if (!acpi_gbl_create_osi_method)
1436 return;
1437
1438 if (str == NULL || *str == '\0') {
1439 printk(KERN_INFO PREFIX "_OSI method disabled\n");
1440 acpi_gbl_create_osi_method = FALSE;
Lin Ming12d32062010-12-09 16:51:06 +08001441 return;
1442 }
1443
1444 if (*str == '!') {
1445 str++;
Lv Zheng5dc17982013-07-22 16:08:25 +08001446 if (*str == '\0') {
1447 osi_linux.default_disabling = 1;
1448 return;
Lv Zheng741d8122013-07-22 16:08:36 +08001449 } else if (*str == '*') {
1450 acpi_update_interfaces(ACPI_DISABLE_ALL_STRINGS);
1451 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1452 osi = &osi_setup_entries[i];
1453 osi->enable = false;
1454 }
1455 return;
Lv Zheng5dc17982013-07-22 16:08:25 +08001456 }
Lin Ming12d32062010-12-09 16:51:06 +08001457 enable = false;
1458 }
1459
1460 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1461 osi = &osi_setup_entries[i];
1462 if (!strcmp(osi->string, str)) {
1463 osi->enable = enable;
1464 break;
1465 } else if (osi->string[0] == '\0') {
1466 osi->enable = enable;
1467 strncpy(osi->string, str, OSI_STRING_LENGTH_MAX);
1468 break;
1469 }
1470 }
Lin Mingd90aa922010-12-09 16:50:52 +08001471}
1472
Len Brownd4b7dc42008-01-23 20:50:56 -05001473static void __init set_osi_linux(unsigned int enable)
1474{
Lin Mingd90aa922010-12-09 16:50:52 +08001475 if (osi_linux.enable != enable)
Len Brownd4b7dc42008-01-23 20:50:56 -05001476 osi_linux.enable = enable;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001477
1478 if (osi_linux.enable)
1479 acpi_osi_setup("Linux");
1480 else
1481 acpi_osi_setup("!Linux");
1482
Len Brownd4b7dc42008-01-23 20:50:56 -05001483 return;
1484}
Len Brownf5076542007-05-30 00:10:38 -04001485
Len Brownd4b7dc42008-01-23 20:50:56 -05001486static void __init acpi_cmdline_osi_linux(unsigned int enable)
1487{
Lin Mingd90aa922010-12-09 16:50:52 +08001488 osi_linux.cmdline = 1; /* cmdline set the default and override DMI */
1489 osi_linux.dmi = 0;
Len Brownd4b7dc42008-01-23 20:50:56 -05001490 set_osi_linux(enable);
Len Brownf5076542007-05-30 00:10:38 -04001491
Len Brownd4b7dc42008-01-23 20:50:56 -05001492 return;
1493}
1494
1495void __init acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d)
1496{
Len Brownd4b7dc42008-01-23 20:50:56 -05001497 printk(KERN_NOTICE PREFIX "DMI detected: %s\n", d->ident);
1498
1499 if (enable == -1)
1500 return;
1501
Lin Mingd90aa922010-12-09 16:50:52 +08001502 osi_linux.dmi = 1; /* DMI knows that this box asks OSI(Linux) */
Len Brownd4b7dc42008-01-23 20:50:56 -05001503 set_osi_linux(enable);
1504
Len Brownf5076542007-05-30 00:10:38 -04001505 return;
1506}
1507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508/*
Len Brownae00d812007-05-29 18:43:33 -04001509 * Modify the list of "OS Interfaces" reported to BIOS via _OSI
1510 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 * empty string disables _OSI
Len Brownae00d812007-05-29 18:43:33 -04001512 * string starting with '!' disables that string
1513 * otherwise string is added to list, augmenting built-in strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 */
Lin Mingb0ed7a92010-08-06 09:35:51 +08001515static void __init acpi_osi_setup_late(void)
1516{
Lin Ming12d32062010-12-09 16:51:06 +08001517 struct osi_setup_entry *osi;
1518 char *str;
1519 int i;
Lin Mingd90aa922010-12-09 16:50:52 +08001520 acpi_status status;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001521
Lv Zheng5dc17982013-07-22 16:08:25 +08001522 if (osi_linux.default_disabling) {
1523 status = acpi_update_interfaces(ACPI_DISABLE_ALL_VENDOR_STRINGS);
1524
1525 if (ACPI_SUCCESS(status))
1526 printk(KERN_INFO PREFIX "Disabled all _OSI OS vendors\n");
1527 }
1528
Lin Ming12d32062010-12-09 16:51:06 +08001529 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1530 osi = &osi_setup_entries[i];
1531 str = osi->string;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001532
Lin Ming12d32062010-12-09 16:51:06 +08001533 if (*str == '\0')
1534 break;
1535 if (osi->enable) {
1536 status = acpi_install_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001537
Lin Ming12d32062010-12-09 16:51:06 +08001538 if (ACPI_SUCCESS(status))
1539 printk(KERN_INFO PREFIX "Added _OSI(%s)\n", str);
1540 } else {
1541 status = acpi_remove_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001542
Lin Ming12d32062010-12-09 16:51:06 +08001543 if (ACPI_SUCCESS(status))
1544 printk(KERN_INFO PREFIX "Deleted _OSI(%s)\n", str);
1545 }
Lin Mingb0ed7a92010-08-06 09:35:51 +08001546 }
1547}
1548
Lin Mingd90aa922010-12-09 16:50:52 +08001549static int __init osi_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
Lin Mingd90aa922010-12-09 16:50:52 +08001551 if (str && !strcmp("Linux", str))
1552 acpi_cmdline_osi_linux(1);
1553 else if (str && !strcmp("!Linux", str))
1554 acpi_cmdline_osi_linux(0);
1555 else
1556 acpi_osi_setup(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 return 1;
1559}
1560
Lin Mingd90aa922010-12-09 16:50:52 +08001561__setup("acpi_osi=", osi_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Bob Moore22b5afc2014-03-24 14:49:00 +08001563/*
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001564 * Disable the auto-serialization of named objects creation methods.
Bob Moore22b5afc2014-03-24 14:49:00 +08001565 *
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001566 * This feature is enabled by default. It marks the AML control methods
Bob Moore22b5afc2014-03-24 14:49:00 +08001567 * that contain the opcodes to create named objects as "Serialized".
1568 */
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001569static int __init acpi_no_auto_serialize_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001571 acpi_gbl_auto_serialize_methods = FALSE;
1572 pr_info("ACPI: auto-serialization disabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
1574 return 1;
1575}
1576
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001577__setup("acpi_no_auto_serialize", acpi_no_auto_serialize_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
Thomas Renningerdf92e692008-02-04 23:31:22 -08001579/* Check of resource interference between native drivers and ACPI
1580 * OperationRegions (SystemIO and System Memory only).
1581 * IO ports and memory declared in ACPI might be used by the ACPI subsystem
1582 * in arbitrary AML code and can interfere with legacy drivers.
1583 * acpi_enforce_resources= can be set to:
1584 *
Luca Tettamanti7e905602009-03-30 00:01:27 +02001585 * - strict (default) (2)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001586 * -> further driver trying to access the resources will not load
Luca Tettamanti7e905602009-03-30 00:01:27 +02001587 * - lax (1)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001588 * -> further driver trying to access the resources will load, but you
1589 * get a system message that something might go wrong...
1590 *
1591 * - no (0)
1592 * -> ACPI Operation Region resources will not be registered
1593 *
1594 */
1595#define ENFORCE_RESOURCES_STRICT 2
1596#define ENFORCE_RESOURCES_LAX 1
1597#define ENFORCE_RESOURCES_NO 0
1598
Luca Tettamanti7e905602009-03-30 00:01:27 +02001599static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001600
1601static int __init acpi_enforce_resources_setup(char *str)
1602{
1603 if (str == NULL || *str == '\0')
1604 return 0;
1605
1606 if (!strcmp("strict", str))
1607 acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1608 else if (!strcmp("lax", str))
1609 acpi_enforce_resources = ENFORCE_RESOURCES_LAX;
1610 else if (!strcmp("no", str))
1611 acpi_enforce_resources = ENFORCE_RESOURCES_NO;
1612
1613 return 1;
1614}
1615
1616__setup("acpi_enforce_resources=", acpi_enforce_resources_setup);
1617
1618/* Check for resource conflicts between ACPI OperationRegions and native
1619 * drivers */
Jean Delvare876fba42009-11-11 15:22:15 +01001620int acpi_check_resource_conflict(const struct resource *res)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001621{
Lin Mingf654c0f2012-01-12 13:10:32 +08001622 acpi_adr_space_type space_id;
1623 acpi_size length;
1624 u8 warn = 0;
1625 int clash = 0;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001626
1627 if (acpi_enforce_resources == ENFORCE_RESOURCES_NO)
1628 return 0;
1629 if (!(res->flags & IORESOURCE_IO) && !(res->flags & IORESOURCE_MEM))
1630 return 0;
1631
Lin Mingf654c0f2012-01-12 13:10:32 +08001632 if (res->flags & IORESOURCE_IO)
1633 space_id = ACPI_ADR_SPACE_SYSTEM_IO;
1634 else
1635 space_id = ACPI_ADR_SPACE_SYSTEM_MEMORY;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001636
Alexandru Gheorghiue4f52242013-03-12 08:53:02 +00001637 length = resource_size(res);
Lin Mingf654c0f2012-01-12 13:10:32 +08001638 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO)
1639 warn = 1;
1640 clash = acpi_check_address_range(space_id, res->start, length, warn);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001641
1642 if (clash) {
1643 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO) {
Jean Delvare14f03342009-09-08 15:31:46 +02001644 if (acpi_enforce_resources == ENFORCE_RESOURCES_LAX)
1645 printk(KERN_NOTICE "ACPI: This conflict may"
1646 " cause random problems and system"
1647 " instability\n");
1648 printk(KERN_INFO "ACPI: If an ACPI driver is available"
1649 " for this device, you should use it instead of"
1650 " the native driver\n");
Thomas Renningerdf92e692008-02-04 23:31:22 -08001651 }
1652 if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT)
1653 return -EBUSY;
1654 }
1655 return 0;
1656}
Thomas Renninger443dea72008-02-04 23:31:23 -08001657EXPORT_SYMBOL(acpi_check_resource_conflict);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001658
1659int acpi_check_region(resource_size_t start, resource_size_t n,
1660 const char *name)
1661{
1662 struct resource res = {
1663 .start = start,
1664 .end = start + n - 1,
1665 .name = name,
1666 .flags = IORESOURCE_IO,
1667 };
1668
1669 return acpi_check_resource_conflict(&res);
1670}
1671EXPORT_SYMBOL(acpi_check_region);
1672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673/*
Jean Delvare70dd6be2010-05-27 19:58:37 +02001674 * Let drivers know whether the resource checks are effective
1675 */
1676int acpi_resources_are_enforced(void)
1677{
1678 return acpi_enforce_resources == ENFORCE_RESOURCES_STRICT;
1679}
1680EXPORT_SYMBOL(acpi_resources_are_enforced);
1681
Hans de Goedea87878b2015-06-16 16:27:46 +02001682bool acpi_osi_is_win8(void)
1683{
1684 return acpi_gbl_osi_data >= ACPI_OSI_WIN_8;
1685}
1686EXPORT_SYMBOL(acpi_osi_is_win8);
1687
Jean Delvare70dd6be2010-05-27 19:58:37 +02001688/*
Lin Ming9f63b882011-03-23 17:26:34 +08001689 * Deallocate the memory for a spinlock.
1690 */
1691void acpi_os_delete_lock(acpi_spinlock handle)
1692{
1693 ACPI_FREE(handle);
1694}
1695
1696/*
Robert Moore73459f72005-06-24 00:00:00 -04001697 * Acquire a spinlock.
1698 *
1699 * handle is a pointer to the spinlock_t.
Robert Moore73459f72005-06-24 00:00:00 -04001700 */
1701
Bob Moore967440e32006-06-23 17:04:00 -04001702acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp)
Robert Moore73459f72005-06-24 00:00:00 -04001703{
Bob Mooreb8e4d892006-01-27 16:43:00 -05001704 acpi_cpu_flags flags;
Bob Moore967440e32006-06-23 17:04:00 -04001705 spin_lock_irqsave(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001706 return flags;
1707}
1708
1709/*
1710 * Release a spinlock. See above.
1711 */
1712
Bob Moore967440e32006-06-23 17:04:00 -04001713void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags)
Robert Moore73459f72005-06-24 00:00:00 -04001714{
Bob Moore967440e32006-06-23 17:04:00 -04001715 spin_unlock_irqrestore(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001716}
1717
Robert Moore73459f72005-06-24 00:00:00 -04001718#ifndef ACPI_USE_LOCAL_CACHE
1719
1720/*******************************************************************************
1721 *
1722 * FUNCTION: acpi_os_create_cache
1723 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001724 * PARAMETERS: name - Ascii name for the cache
1725 * size - Size of each cached object
1726 * depth - Maximum depth of the cache (in objects) <ignored>
1727 * cache - Where the new cache object is returned
Robert Moore73459f72005-06-24 00:00:00 -04001728 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001729 * RETURN: status
Robert Moore73459f72005-06-24 00:00:00 -04001730 *
1731 * DESCRIPTION: Create a cache object
1732 *
1733 ******************************************************************************/
1734
1735acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001736acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache)
Robert Moore73459f72005-06-24 00:00:00 -04001737{
Paul Mundt20c2df82007-07-20 10:11:58 +09001738 *cache = kmem_cache_create(name, size, 0, 0, NULL);
Adrian Bunka6fdbf92006-12-19 12:56:13 -08001739 if (*cache == NULL)
Bob Mooreb229cf92006-04-21 17:15:00 -04001740 return AE_ERROR;
1741 else
1742 return AE_OK;
Robert Moore73459f72005-06-24 00:00:00 -04001743}
1744
1745/*******************************************************************************
1746 *
1747 * FUNCTION: acpi_os_purge_cache
1748 *
1749 * PARAMETERS: Cache - Handle to cache object
1750 *
1751 * RETURN: Status
1752 *
1753 * DESCRIPTION: Free all objects within the requested cache.
1754 *
1755 ******************************************************************************/
1756
Len Brown4be44fc2005-08-05 00:44:28 -04001757acpi_status acpi_os_purge_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001758{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001759 kmem_cache_shrink(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001760 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001761}
1762
1763/*******************************************************************************
1764 *
1765 * FUNCTION: acpi_os_delete_cache
1766 *
1767 * PARAMETERS: Cache - Handle to cache object
1768 *
1769 * RETURN: Status
1770 *
1771 * DESCRIPTION: Free all objects within the requested cache and delete the
1772 * cache object.
1773 *
1774 ******************************************************************************/
1775
Len Brown4be44fc2005-08-05 00:44:28 -04001776acpi_status acpi_os_delete_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001777{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001778 kmem_cache_destroy(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001779 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001780}
1781
1782/*******************************************************************************
1783 *
1784 * FUNCTION: acpi_os_release_object
1785 *
1786 * PARAMETERS: Cache - Handle to cache object
1787 * Object - The object to be released
1788 *
1789 * RETURN: None
1790 *
1791 * DESCRIPTION: Release an object to the specified cache. If cache is full,
1792 * the object is deleted.
1793 *
1794 ******************************************************************************/
1795
Len Brown4be44fc2005-08-05 00:44:28 -04001796acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object)
Robert Moore73459f72005-06-24 00:00:00 -04001797{
Len Brown4be44fc2005-08-05 00:44:28 -04001798 kmem_cache_free(cache, object);
1799 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001800}
Robert Moore73459f72005-06-24 00:00:00 -04001801#endif
Myron Stowed362eda2010-10-21 14:24:04 -06001802
Lv Zhenga94e88c2014-04-04 12:39:11 +08001803static int __init acpi_no_static_ssdt_setup(char *s)
Lv Zhengb75dd292013-06-08 00:58:48 +00001804{
Lv Zhenga94e88c2014-04-04 12:39:11 +08001805 acpi_gbl_disable_ssdt_table_install = TRUE;
1806 pr_info("ACPI: static SSDT installation disabled\n");
Lv Zhengb75dd292013-06-08 00:58:48 +00001807
Lv Zhenga94e88c2014-04-04 12:39:11 +08001808 return 0;
Lv Zhengb75dd292013-06-08 00:58:48 +00001809}
1810
Lv Zhenga94e88c2014-04-04 12:39:11 +08001811early_param("acpi_no_static_ssdt", acpi_no_static_ssdt_setup);
Lv Zhengb75dd292013-06-08 00:58:48 +00001812
Lv Zheng4dde5072014-02-11 11:01:52 +08001813static int __init acpi_disable_return_repair(char *s)
1814{
1815 printk(KERN_NOTICE PREFIX
1816 "ACPI: Predefined validation mechanism disabled\n");
1817 acpi_gbl_disable_auto_repair = TRUE;
1818
1819 return 1;
1820}
1821
1822__setup("acpica_no_return_repair", acpi_disable_return_repair);
1823
Myron Stowed362eda2010-10-21 14:24:04 -06001824acpi_status __init acpi_os_initialize(void)
1825{
1826 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1827 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1828 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe0_block);
1829 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe1_block);
Randy Wrighta4714a82014-06-04 08:55:59 -07001830 if (acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER) {
1831 /*
1832 * Use acpi_os_map_generic_address to pre-map the reset
1833 * register if it's in system memory.
1834 */
1835 int rv;
1836
1837 rv = acpi_os_map_generic_address(&acpi_gbl_FADT.reset_register);
1838 pr_debug(PREFIX "%s: map reset_reg status %d\n", __func__, rv);
1839 }
Lv Zheng7901a052015-08-05 16:23:51 +08001840 acpi_os_initialized = true;
Myron Stowed362eda2010-10-21 14:24:04 -06001841
1842 return AE_OK;
1843}
1844
Zhang Rui32d47ee2010-12-08 10:40:36 +08001845acpi_status __init acpi_os_initialize1(void)
Myron Stowed362eda2010-10-21 14:24:04 -06001846{
Tejun Heo44d25882011-02-01 11:42:42 +01001847 kacpid_wq = alloc_workqueue("kacpid", 0, 1);
1848 kacpi_notify_wq = alloc_workqueue("kacpi_notify", 0, 1);
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001849 kacpi_hotplug_wq = alloc_ordered_workqueue("kacpi_hotplug", 0);
Myron Stowed362eda2010-10-21 14:24:04 -06001850 BUG_ON(!kacpid_wq);
1851 BUG_ON(!kacpi_notify_wq);
1852 BUG_ON(!kacpi_hotplug_wq);
Len Brown1bd64d42010-10-26 14:50:56 -04001853 acpi_install_interface_handler(acpi_osi_handler);
1854 acpi_osi_setup_late();
Myron Stowed362eda2010-10-21 14:24:04 -06001855 return AE_OK;
1856}
1857
1858acpi_status acpi_os_terminate(void)
1859{
1860 if (acpi_irq_handler) {
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +01001861 acpi_os_remove_interrupt_handler(acpi_gbl_FADT.sci_interrupt,
Myron Stowed362eda2010-10-21 14:24:04 -06001862 acpi_irq_handler);
1863 }
1864
1865 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe1_block);
1866 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe0_block);
1867 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1868 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
Randy Wrighta4714a82014-06-04 08:55:59 -07001869 if (acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER)
1870 acpi_os_unmap_generic_address(&acpi_gbl_FADT.reset_register);
Myron Stowed362eda2010-10-21 14:24:04 -06001871
1872 destroy_workqueue(kacpid_wq);
1873 destroy_workqueue(kacpi_notify_wq);
1874 destroy_workqueue(kacpi_hotplug_wq);
1875
1876 return AE_OK;
1877}
Tang Liang09f98a82011-12-09 10:05:54 +08001878
1879acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control,
1880 u32 pm1b_control)
1881{
1882 int rc = 0;
1883 if (__acpi_os_prepare_sleep)
1884 rc = __acpi_os_prepare_sleep(sleep_state,
1885 pm1a_control, pm1b_control);
1886 if (rc < 0)
1887 return AE_ERROR;
1888 else if (rc > 0)
1889 return AE_CTRL_SKIP;
1890
1891 return AE_OK;
1892}
1893
1894void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state,
1895 u32 pm1a_ctrl, u32 pm1b_ctrl))
1896{
1897 __acpi_os_prepare_sleep = func;
1898}
Yinghai Lu92d8aff2013-01-21 13:20:47 -08001899
Ben Guthrod6b47b12013-07-30 08:24:52 -04001900acpi_status acpi_os_prepare_extended_sleep(u8 sleep_state, u32 val_a,
1901 u32 val_b)
1902{
1903 int rc = 0;
1904 if (__acpi_os_prepare_extended_sleep)
1905 rc = __acpi_os_prepare_extended_sleep(sleep_state,
1906 val_a, val_b);
1907 if (rc < 0)
1908 return AE_ERROR;
1909 else if (rc > 0)
1910 return AE_CTRL_SKIP;
1911
1912 return AE_OK;
1913}
1914
1915void acpi_os_set_prepare_extended_sleep(int (*func)(u8 sleep_state,
1916 u32 val_a, u32 val_b))
1917{
1918 __acpi_os_prepare_extended_sleep = func;
1919}