blob: c262e4acd68d827cba1273d79e28515c6ebe95fa [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 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/module.h>
31#include <linux/kernel.h>
32#include <linux/slab.h>
33#include <linux/mm.h>
Myron Stoweba242d52012-01-20 19:13:30 -070034#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/interrupt.h>
37#include <linux/kmod.h>
38#include <linux/delay.h>
39#include <linux/workqueue.h>
40#include <linux/nmi.h>
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +030041#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/efi.h>
Thomas Renningerdf92e692008-02-04 23:31:22 -080043#include <linux/ioport.h>
44#include <linux/list.h>
Matthew Wilcoxf1241c82008-03-14 13:43:13 -040045#include <linux/jiffies.h>
46#include <linux/semaphore.h>
47
48#include <asm/io.h>
49#include <asm/uaccess.h>
50
Lv Zheng1129c922013-07-23 16:11:55 +080051#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define _COMPONENT ACPI_OS_SERVICES
Len Brownf52fd662007-02-12 22:42:12 -050054ACPI_MODULE_NAME("osl");
Hanjun Guo07070e12014-03-13 12:47:39 +080055
Len Brown4be44fc2005-08-05 00:44:28 -040056struct acpi_os_dpc {
57 acpi_osd_exec_callback function;
58 void *context;
David Howells65f27f32006-11-22 14:55:48 +000059 struct work_struct work;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
62#ifdef CONFIG_ACPI_CUSTOM_DSDT
63#include CONFIG_ACPI_CUSTOM_DSDT_FILE
64#endif
65
66#ifdef ENABLE_DEBUGGER
67#include <linux/kdb.h>
68
69/* stuff for debugger support */
70int acpi_in_debugger;
71EXPORT_SYMBOL(acpi_in_debugger);
72
73extern char line_buf[80];
Len Brown4be44fc2005-08-05 00:44:28 -040074#endif /*ENABLE_DEBUGGER */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Tang Liang09f98a82011-12-09 10:05:54 +080076static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl,
77 u32 pm1b_ctrl);
Ben Guthrod6b47b12013-07-30 08:24:52 -040078static int (*__acpi_os_prepare_extended_sleep)(u8 sleep_state, u32 val_a,
79 u32 val_b);
Tang Liang09f98a82011-12-09 10:05:54 +080080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static acpi_osd_handler acpi_irq_handler;
82static void *acpi_irq_context;
83static struct workqueue_struct *kacpid_wq;
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -040084static struct workqueue_struct *kacpi_notify_wq;
Yinghai Lu92d8aff2013-01-21 13:20:47 -080085static struct workqueue_struct *kacpi_hotplug_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Myron Stowe620242a2010-10-21 14:23:53 -060087/*
88 * This list of permanent mappings is for memory that may be accessed from
89 * interrupt context, where we can't do the ioremap().
90 */
91struct acpi_ioremap {
92 struct list_head list;
93 void __iomem *virt;
94 acpi_physical_address phys;
95 acpi_size size;
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +010096 unsigned long refcount;
Myron Stowe620242a2010-10-21 14:23:53 -060097};
98
99static LIST_HEAD(acpi_ioremaps);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100100static DEFINE_MUTEX(acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600101
Lin Mingb0ed7a92010-08-06 09:35:51 +0800102static void __init acpi_osi_setup_late(void);
Len Brownae00d812007-05-29 18:43:33 -0400103
Len Brownd4b7dc42008-01-23 20:50:56 -0500104/*
Len Browna6e08872008-11-08 01:21:10 -0500105 * The story of _OSI(Linux)
Len Brownd4b7dc42008-01-23 20:50:56 -0500106 *
Len Browna6e08872008-11-08 01:21:10 -0500107 * From pre-history through Linux-2.6.22,
108 * Linux responded TRUE upon a BIOS OSI(Linux) query.
Len Brownd4b7dc42008-01-23 20:50:56 -0500109 *
Len Browna6e08872008-11-08 01:21:10 -0500110 * Unfortunately, reference BIOS writers got wind of this
111 * and put OSI(Linux) in their example code, quickly exposing
112 * this string as ill-conceived and opening the door to
113 * an un-bounded number of BIOS incompatibilities.
Len Brownd4b7dc42008-01-23 20:50:56 -0500114 *
Len Browna6e08872008-11-08 01:21:10 -0500115 * For example, OSI(Linux) was used on resume to re-POST a
116 * video card on one system, because Linux at that time
117 * could not do a speedy restore in its native driver.
118 * But then upon gaining quick native restore capability,
119 * Linux has no way to tell the BIOS to skip the time-consuming
120 * POST -- putting Linux at a permanent performance disadvantage.
121 * On another system, the BIOS writer used OSI(Linux)
122 * to infer native OS support for IPMI! On other systems,
123 * OSI(Linux) simply got in the way of Linux claiming to
124 * be compatible with other operating systems, exposing
125 * BIOS issues such as skipped device initialization.
Len Brownd4b7dc42008-01-23 20:50:56 -0500126 *
Len Browna6e08872008-11-08 01:21:10 -0500127 * So "Linux" turned out to be a really poor chose of
128 * OSI string, and from Linux-2.6.23 onward we respond FALSE.
Len Brownd4b7dc42008-01-23 20:50:56 -0500129 *
130 * BIOS writers should NOT query _OSI(Linux) on future systems.
Len Browna6e08872008-11-08 01:21:10 -0500131 * Linux will complain on the console when it sees it, and return FALSE.
132 * To get Linux to return TRUE for your system will require
133 * a kernel source update to add a DMI entry,
134 * or boot with "acpi_osi=Linux"
Len Brownd4b7dc42008-01-23 20:50:56 -0500135 */
Len Brownd4b7dc42008-01-23 20:50:56 -0500136
Adrian Bunk1d15d842008-01-29 00:10:15 +0200137static struct osi_linux {
Len Brownd4b7dc42008-01-23 20:50:56 -0500138 unsigned int enable:1;
139 unsigned int dmi:1;
140 unsigned int cmdline:1;
Lv Zheng5dc17982013-07-22 16:08:25 +0800141 unsigned int default_disabling:1;
142} osi_linux = {0, 0, 0, 0};
Len Brownf5076542007-05-30 00:10:38 -0400143
Lin Mingb0ed7a92010-08-06 09:35:51 +0800144static u32 acpi_osi_handler(acpi_string interface, u32 supported)
145{
146 if (!strcmp("Linux", interface)) {
147
Len Brown89976212011-08-02 00:45:48 -0400148 printk_once(KERN_NOTICE FW_BUG PREFIX
Lin Mingb0ed7a92010-08-06 09:35:51 +0800149 "BIOS _OSI(Linux) query %s%s\n",
150 osi_linux.enable ? "honored" : "ignored",
151 osi_linux.cmdline ? " via cmdline" :
152 osi_linux.dmi ? " via DMI" : "");
153 }
154
Matthew Garrett7bc5a2b2014-09-20 13:19:47 +0200155 if (!strcmp("Darwin", interface)) {
156 /*
157 * Apple firmware will behave poorly if it receives positive
158 * answers to "Darwin" and any other OS. Respond positively
159 * to Darwin and then disable all other vendor strings.
160 */
161 acpi_update_interfaces(ACPI_DISABLE_ALL_VENDOR_STRINGS);
162 supported = ACPI_UINT32_MAX;
163 }
164
Lin Mingb0ed7a92010-08-06 09:35:51 +0800165 return supported;
166}
167
Myron Stowebc9ffce2011-11-07 16:23:27 -0700168static void __init acpi_request_region (struct acpi_generic_address *gas,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700169 unsigned int length, char *desc)
170{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700171 u64 addr;
172
173 /* Handle possible alignment issues */
174 memcpy(&addr, &gas->address, sizeof(addr));
175 if (!addr || !length)
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700176 return;
177
Rafael J. Wysocki0f1b4142015-06-18 18:32:02 +0200178 acpi_reserve_region(addr, length, gas->space_id, 0, desc);
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700179}
180
Rafael J. Wysockib9a5e5e2015-05-07 21:19:39 +0200181static void __init acpi_reserve_resources(void)
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700182{
Len Browneee3c852007-02-03 01:38:16 -0500183 acpi_request_region(&acpi_gbl_FADT.xpm1a_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700184 "ACPI PM1a_EVT_BLK");
185
Len Browneee3c852007-02-03 01:38:16 -0500186 acpi_request_region(&acpi_gbl_FADT.xpm1b_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700187 "ACPI PM1b_EVT_BLK");
188
Len Browneee3c852007-02-03 01:38:16 -0500189 acpi_request_region(&acpi_gbl_FADT.xpm1a_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700190 "ACPI PM1a_CNT_BLK");
191
Len Browneee3c852007-02-03 01:38:16 -0500192 acpi_request_region(&acpi_gbl_FADT.xpm1b_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700193 "ACPI PM1b_CNT_BLK");
194
Len Browneee3c852007-02-03 01:38:16 -0500195 if (acpi_gbl_FADT.pm_timer_length == 4)
196 acpi_request_region(&acpi_gbl_FADT.xpm_timer_block, 4, "ACPI PM_TMR");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700197
Len Browneee3c852007-02-03 01:38:16 -0500198 acpi_request_region(&acpi_gbl_FADT.xpm2_control_block, acpi_gbl_FADT.pm2_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700199 "ACPI PM2_CNT_BLK");
200
201 /* Length of GPE blocks must be a non-negative multiple of 2 */
202
Len Browneee3c852007-02-03 01:38:16 -0500203 if (!(acpi_gbl_FADT.gpe0_block_length & 0x1))
204 acpi_request_region(&acpi_gbl_FADT.xgpe0_block,
205 acpi_gbl_FADT.gpe0_block_length, "ACPI GPE0_BLK");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700206
Len Browneee3c852007-02-03 01:38:16 -0500207 if (!(acpi_gbl_FADT.gpe1_block_length & 0x1))
208 acpi_request_region(&acpi_gbl_FADT.xgpe1_block,
209 acpi_gbl_FADT.gpe1_block_length, "ACPI GPE1_BLK");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700210}
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700211
Len Brown4be44fc2005-08-05 00:44:28 -0400212void acpi_os_printf(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
214 va_list args;
215 va_start(args, fmt);
216 acpi_os_vprintf(fmt, args);
217 va_end(args);
218}
Len Brown4be44fc2005-08-05 00:44:28 -0400219
Len Brown4be44fc2005-08-05 00:44:28 -0400220void acpi_os_vprintf(const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 static char buffer[512];
Len Brown4be44fc2005-08-05 00:44:28 -0400223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 vsprintf(buffer, fmt, args);
225
226#ifdef ENABLE_DEBUGGER
227 if (acpi_in_debugger) {
228 kdb_printf("%s", buffer);
229 } else {
Frank Seidel4d939152009-02-04 17:03:07 +0100230 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232#else
Frank Seidel4d939152009-02-04 17:03:07 +0100233 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234#endif
235}
236
Takao Indoh4996c022011-07-14 18:05:21 -0400237#ifdef CONFIG_KEXEC
238static unsigned long acpi_rsdp;
239static int __init setup_acpi_rsdp(char *arg)
240{
Christoph Jaeger3d915892014-06-13 21:49:58 +0200241 if (kstrtoul(arg, 16, &acpi_rsdp))
242 return -EINVAL;
Takao Indoh4996c022011-07-14 18:05:21 -0400243 return 0;
244}
245early_param("acpi_rsdp", setup_acpi_rsdp);
246#endif
247
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300248acpi_physical_address __init acpi_os_get_root_pointer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Takao Indoh4996c022011-07-14 18:05:21 -0400250#ifdef CONFIG_KEXEC
251 if (acpi_rsdp)
252 return acpi_rsdp;
253#endif
254
Matt Fleming83e68182012-11-14 09:42:35 +0000255 if (efi_enabled(EFI_CONFIG_TABLES)) {
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800256 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300257 return efi.acpi20;
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800258 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300259 return efi.acpi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400261 printk(KERN_ERR PREFIX
262 "System description tables not found\n");
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300263 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
Graeme Gregory8a1664b2014-07-18 18:02:52 +0800265 } else if (IS_ENABLED(CONFIG_ACPI_LEGACY_TABLES_LOOKUP)) {
Len Brown239665a2007-11-23 20:08:02 -0500266 acpi_physical_address pa = 0;
267
268 acpi_find_root_pointer(&pa);
269 return pa;
270 }
Graeme Gregory8a1664b2014-07-18 18:02:52 +0800271
272 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600275/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
Myron Stowe4a3cba52010-10-21 14:24:14 -0600276static struct acpi_ioremap *
277acpi_map_lookup(acpi_physical_address phys, acpi_size size)
Myron Stowe620242a2010-10-21 14:23:53 -0600278{
279 struct acpi_ioremap *map;
280
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600281 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
Myron Stowe620242a2010-10-21 14:23:53 -0600282 if (map->phys <= phys &&
283 phys + size <= map->phys + map->size)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600284 return map;
285
286 return NULL;
287}
288
289/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
290static void __iomem *
291acpi_map_vaddr_lookup(acpi_physical_address phys, unsigned int size)
292{
293 struct acpi_ioremap *map;
294
295 map = acpi_map_lookup(phys, size);
296 if (map)
297 return map->virt + (phys - map->phys);
Myron Stowe620242a2010-10-21 14:23:53 -0600298
299 return NULL;
300}
301
Rafael J. Wysocki13606a22011-02-08 23:38:25 +0100302void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size)
303{
304 struct acpi_ioremap *map;
305 void __iomem *virt = NULL;
306
307 mutex_lock(&acpi_ioremap_lock);
308 map = acpi_map_lookup(phys, size);
309 if (map) {
310 virt = map->virt + (phys - map->phys);
311 map->refcount++;
312 }
313 mutex_unlock(&acpi_ioremap_lock);
314 return virt;
315}
316EXPORT_SYMBOL_GPL(acpi_os_get_iomem);
317
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600318/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
Myron Stowe620242a2010-10-21 14:23:53 -0600319static struct acpi_ioremap *
320acpi_map_lookup_virt(void __iomem *virt, acpi_size size)
321{
322 struct acpi_ioremap *map;
323
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600324 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600325 if (map->virt <= virt &&
326 virt + size <= map->virt + map->size)
Myron Stowe620242a2010-10-21 14:23:53 -0600327 return map;
328
329 return NULL;
330}
331
Graeme Gregoryaafc65c2015-03-24 14:02:35 +0000332#if defined(CONFIG_IA64) || defined(CONFIG_ARM64)
Myron Stoweba242d52012-01-20 19:13:30 -0700333/* ioremap will take care of cache attributes */
334#define should_use_kmap(pfn) 0
Graeme Gregoryaafc65c2015-03-24 14:02:35 +0000335#else
336#define should_use_kmap(pfn) page_is_ram(pfn)
Myron Stoweba242d52012-01-20 19:13:30 -0700337#endif
338
339static void __iomem *acpi_map(acpi_physical_address pg_off, unsigned long pg_sz)
340{
341 unsigned long pfn;
342
343 pfn = pg_off >> PAGE_SHIFT;
344 if (should_use_kmap(pfn)) {
345 if (pg_sz > PAGE_SIZE)
346 return NULL;
347 return (void __iomem __force *)kmap(pfn_to_page(pfn));
348 } else
349 return acpi_os_ioremap(pg_off, pg_sz);
350}
351
352static void acpi_unmap(acpi_physical_address pg_off, void __iomem *vaddr)
353{
354 unsigned long pfn;
355
356 pfn = pg_off >> PAGE_SHIFT;
Jan Beuliche2526752012-02-24 11:41:53 +0000357 if (should_use_kmap(pfn))
Myron Stoweba242d52012-01-20 19:13:30 -0700358 kunmap(pfn_to_page(pfn));
359 else
360 iounmap(vaddr);
361}
362
Jan Beulich2fdf0742007-12-13 08:33:59 +0000363void __iomem *__init_refok
Lv Zhenga2383172014-05-20 15:39:41 +0800364acpi_os_map_iomem(acpi_physical_address phys, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100366 struct acpi_ioremap *map;
Myron Stowe620242a2010-10-21 14:23:53 -0600367 void __iomem *virt;
Rafael J. Wysocki2d6d9fd2011-01-19 22:27:14 +0100368 acpi_physical_address pg_off;
369 acpi_size pg_sz;
Myron Stowe620242a2010-10-21 14:23:53 -0600370
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800371 if (phys > ULONG_MAX) {
372 printk(KERN_ERR PREFIX "Cannot map memory that high\n");
Randy Dunlap70c08462007-02-13 16:11:36 -0800373 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
Myron Stowe620242a2010-10-21 14:23:53 -0600375
376 if (!acpi_gbl_permanent_mmap)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300377 return __acpi_map_table((unsigned long)phys, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600378
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100379 mutex_lock(&acpi_ioremap_lock);
380 /* Check if there's a suitable mapping already. */
381 map = acpi_map_lookup(phys, size);
382 if (map) {
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100383 map->refcount++;
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100384 goto out;
385 }
386
Myron Stowe620242a2010-10-21 14:23:53 -0600387 map = kzalloc(sizeof(*map), GFP_KERNEL);
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100388 if (!map) {
389 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600390 return NULL;
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100391 }
Myron Stowe620242a2010-10-21 14:23:53 -0600392
Myron Stowe4a3cba52010-10-21 14:24:14 -0600393 pg_off = round_down(phys, PAGE_SIZE);
394 pg_sz = round_up(phys + size, PAGE_SIZE) - pg_off;
Myron Stoweba242d52012-01-20 19:13:30 -0700395 virt = acpi_map(pg_off, pg_sz);
Myron Stowe620242a2010-10-21 14:23:53 -0600396 if (!virt) {
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100397 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600398 kfree(map);
399 return NULL;
400 }
401
402 INIT_LIST_HEAD(&map->list);
403 map->virt = virt;
Myron Stowe4a3cba52010-10-21 14:24:14 -0600404 map->phys = pg_off;
405 map->size = pg_sz;
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100406 map->refcount = 1;
Myron Stowe620242a2010-10-21 14:23:53 -0600407
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600408 list_add_tail_rcu(&map->list, &acpi_ioremaps);
Myron Stowe620242a2010-10-21 14:23:53 -0600409
Lv Zhenga2383172014-05-20 15:39:41 +0800410out:
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100411 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe4a3cba52010-10-21 14:24:14 -0600412 return map->virt + (phys - map->phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
Lv Zhenga2383172014-05-20 15:39:41 +0800414EXPORT_SYMBOL_GPL(acpi_os_map_iomem);
415
416void *__init_refok
417acpi_os_map_memory(acpi_physical_address phys, acpi_size size)
418{
419 return (void *)acpi_os_map_iomem(phys, size);
420}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800421EXPORT_SYMBOL_GPL(acpi_os_map_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100423static void acpi_os_drop_map_ref(struct acpi_ioremap *map)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600424{
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100425 if (!--map->refcount)
426 list_del_rcu(&map->list);
Myron Stowe4a3cba52010-10-21 14:24:14 -0600427}
Myron Stowe4a3cba52010-10-21 14:24:14 -0600428
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100429static void acpi_os_map_cleanup(struct acpi_ioremap *map)
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100430{
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100431 if (!map->refcount) {
Konstantin Khlebnikov74b51ee2014-11-09 13:53:37 +0400432 synchronize_rcu_expedited();
Myron Stoweba242d52012-01-20 19:13:30 -0700433 acpi_unmap(map->phys, map->virt);
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100434 kfree(map);
435 }
Myron Stowe4a3cba52010-10-21 14:24:14 -0600436}
437
Lv Zhenga2383172014-05-20 15:39:41 +0800438void __ref acpi_os_unmap_iomem(void __iomem *virt, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Myron Stowe620242a2010-10-21 14:23:53 -0600440 struct acpi_ioremap *map;
Myron Stowe620242a2010-10-21 14:23:53 -0600441
442 if (!acpi_gbl_permanent_mmap) {
Yinghai Lu7d972772009-02-07 15:39:41 -0800443 __acpi_unmap_table(virt, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600444 return;
445 }
446
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100447 mutex_lock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600448 map = acpi_map_lookup_virt(virt, size);
449 if (!map) {
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100450 mutex_unlock(&acpi_ioremap_lock);
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100451 WARN(true, PREFIX "%s: bad address %p\n", __func__, virt);
Myron Stowe620242a2010-10-21 14:23:53 -0600452 return;
453 }
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100454 acpi_os_drop_map_ref(map);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100455 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600456
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100457 acpi_os_map_cleanup(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
Lv Zhenga2383172014-05-20 15:39:41 +0800459EXPORT_SYMBOL_GPL(acpi_os_unmap_iomem);
460
461void __ref acpi_os_unmap_memory(void *virt, acpi_size size)
462{
463 return acpi_os_unmap_iomem((void __iomem *)virt, size);
464}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800465EXPORT_SYMBOL_GPL(acpi_os_unmap_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Jeremy Fitzhardinge0d3a9cf2009-02-22 14:58:56 -0800467void __init early_acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
Yinghai Lu7d972772009-02-07 15:39:41 -0800468{
469 if (!acpi_gbl_permanent_mmap)
470 __acpi_unmap_table(virt, size);
471}
472
Myron Stowe6f68c912011-11-07 16:23:34 -0700473int acpi_os_map_generic_address(struct acpi_generic_address *gas)
Myron Stowe29718522010-10-21 14:23:59 -0600474{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700475 u64 addr;
Myron Stowe29718522010-10-21 14:23:59 -0600476 void __iomem *virt;
477
Myron Stowebc9ffce2011-11-07 16:23:27 -0700478 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
Myron Stowe29718522010-10-21 14:23:59 -0600479 return 0;
480
Myron Stowebc9ffce2011-11-07 16:23:27 -0700481 /* Handle possible alignment issues */
482 memcpy(&addr, &gas->address, sizeof(addr));
483 if (!addr || !gas->bit_width)
Myron Stowe29718522010-10-21 14:23:59 -0600484 return -EINVAL;
485
Lv Zhenga2383172014-05-20 15:39:41 +0800486 virt = acpi_os_map_iomem(addr, gas->bit_width / 8);
Myron Stowe29718522010-10-21 14:23:59 -0600487 if (!virt)
488 return -EIO;
489
490 return 0;
491}
Myron Stowe6f68c912011-11-07 16:23:34 -0700492EXPORT_SYMBOL(acpi_os_map_generic_address);
Myron Stowe29718522010-10-21 14:23:59 -0600493
Myron Stowe6f68c912011-11-07 16:23:34 -0700494void acpi_os_unmap_generic_address(struct acpi_generic_address *gas)
Myron Stowe29718522010-10-21 14:23:59 -0600495{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700496 u64 addr;
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100497 struct acpi_ioremap *map;
Myron Stowe29718522010-10-21 14:23:59 -0600498
Myron Stowebc9ffce2011-11-07 16:23:27 -0700499 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
Myron Stowe29718522010-10-21 14:23:59 -0600500 return;
501
Myron Stowebc9ffce2011-11-07 16:23:27 -0700502 /* Handle possible alignment issues */
503 memcpy(&addr, &gas->address, sizeof(addr));
504 if (!addr || !gas->bit_width)
Myron Stowe29718522010-10-21 14:23:59 -0600505 return;
506
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100507 mutex_lock(&acpi_ioremap_lock);
Myron Stowebc9ffce2011-11-07 16:23:27 -0700508 map = acpi_map_lookup(addr, gas->bit_width / 8);
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100509 if (!map) {
510 mutex_unlock(&acpi_ioremap_lock);
511 return;
512 }
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100513 acpi_os_drop_map_ref(map);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100514 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe29718522010-10-21 14:23:59 -0600515
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100516 acpi_os_map_cleanup(map);
Myron Stowe29718522010-10-21 14:23:59 -0600517}
Myron Stowe6f68c912011-11-07 16:23:34 -0700518EXPORT_SYMBOL(acpi_os_unmap_generic_address);
Myron Stowe29718522010-10-21 14:23:59 -0600519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520#ifdef ACPI_FUTURE_USAGE
521acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400522acpi_os_get_physical_address(void *virt, acpi_physical_address * phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Len Brown4be44fc2005-08-05 00:44:28 -0400524 if (!phys || !virt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return AE_BAD_PARAMETER;
526
527 *phys = virt_to_phys(virt);
528
529 return AE_OK;
530}
531#endif
532
Rafael J. Wysocki18d78b62015-07-03 01:06:00 +0200533#ifdef CONFIG_ACPI_REV_OVERRIDE_POSSIBLE
534static bool acpi_rev_override;
535
536int __init acpi_rev_override_setup(char *str)
537{
538 acpi_rev_override = true;
539 return 1;
540}
541__setup("acpi_rev_override", acpi_rev_override_setup);
542#else
543#define acpi_rev_override false
544#endif
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546#define ACPI_MAX_OVERRIDE_LEN 100
547
548static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN];
549
550acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400551acpi_os_predefined_override(const struct acpi_predefined_names *init_val,
Dominik Brodowski2bad7e22015-05-14 15:31:25 +0200552 char **new_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 if (!init_val || !new_val)
555 return AE_BAD_PARAMETER;
556
557 *new_val = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400558 if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400560 acpi_os_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 *new_val = acpi_os_name;
562 }
563
Rafael J. Wysocki18d78b62015-07-03 01:06:00 +0200564 if (!memcmp(init_val->name, "_REV", 4) && acpi_rev_override) {
565 printk(KERN_INFO PREFIX "Overriding _REV return value to 5\n");
566 *new_val = (char *)5;
567 }
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 return AE_OK;
570}
571
Thomas Renninger53aac442012-10-01 00:23:54 +0200572#ifdef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
573#include <linux/earlycpio.h>
574#include <linux/memblock.h>
575
576static u64 acpi_tables_addr;
577static int all_tables_size;
578
579/* Copied from acpica/tbutils.c:acpi_tb_checksum() */
Rashika66e162b2013-12-17 14:43:05 +0530580static u8 __init acpi_table_checksum(u8 *buffer, u32 length)
Thomas Renninger53aac442012-10-01 00:23:54 +0200581{
582 u8 sum = 0;
583 u8 *end = buffer + length;
584
585 while (buffer < end)
586 sum = (u8) (sum + *(buffer++));
587 return sum;
588}
589
590/* All but ACPI_SIG_RSDP and ACPI_SIG_FACS: */
591static const char * const table_sigs[] = {
592 ACPI_SIG_BERT, ACPI_SIG_CPEP, ACPI_SIG_ECDT, ACPI_SIG_EINJ,
593 ACPI_SIG_ERST, ACPI_SIG_HEST, ACPI_SIG_MADT, ACPI_SIG_MSCT,
594 ACPI_SIG_SBST, ACPI_SIG_SLIT, ACPI_SIG_SRAT, ACPI_SIG_ASF,
595 ACPI_SIG_BOOT, ACPI_SIG_DBGP, ACPI_SIG_DMAR, ACPI_SIG_HPET,
596 ACPI_SIG_IBFT, ACPI_SIG_IVRS, ACPI_SIG_MCFG, ACPI_SIG_MCHI,
597 ACPI_SIG_SLIC, ACPI_SIG_SPCR, ACPI_SIG_SPMI, ACPI_SIG_TCPA,
598 ACPI_SIG_UEFI, ACPI_SIG_WAET, ACPI_SIG_WDAT, ACPI_SIG_WDDT,
599 ACPI_SIG_WDRT, ACPI_SIG_DSDT, ACPI_SIG_FADT, ACPI_SIG_PSDT,
600 ACPI_SIG_RSDT, ACPI_SIG_XSDT, ACPI_SIG_SSDT, NULL };
601
Thomas Renninger53aac442012-10-01 00:23:54 +0200602#define ACPI_HEADER_SIZE sizeof(struct acpi_table_header)
603
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700604#define ACPI_OVERRIDE_TABLES 64
605static struct cpio_data __initdata acpi_initrd_files[ACPI_OVERRIDE_TABLES];
606
607#define MAP_CHUNK_SIZE (NR_FIX_BTMAPS << PAGE_SHIFT)
Thomas Renninger53aac442012-10-01 00:23:54 +0200608
609void __init acpi_initrd_override(void *data, size_t size)
610{
611 int sig, no, table_nr = 0, total_offset = 0;
612 long offset = 0;
613 struct acpi_table_header *table;
614 char cpio_path[32] = "kernel/firmware/acpi/";
615 struct cpio_data file;
Thomas Renninger53aac442012-10-01 00:23:54 +0200616
617 if (data == NULL || size == 0)
618 return;
619
620 for (no = 0; no < ACPI_OVERRIDE_TABLES; no++) {
621 file = find_cpio_data(cpio_path, data, size, &offset);
622 if (!file.data)
623 break;
624
625 data += offset;
626 size -= offset;
627
Tang Chen7702ae02013-08-14 17:37:08 +0800628 if (file.size < sizeof(struct acpi_table_header)) {
629 pr_err("ACPI OVERRIDE: Table smaller than ACPI header [%s%s]\n",
630 cpio_path, file.name);
631 continue;
632 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200633
634 table = file.data;
635
636 for (sig = 0; table_sigs[sig]; sig++)
637 if (!memcmp(table->signature, table_sigs[sig], 4))
638 break;
639
Tang Chen7702ae02013-08-14 17:37:08 +0800640 if (!table_sigs[sig]) {
641 pr_err("ACPI OVERRIDE: Unknown signature [%s%s]\n",
642 cpio_path, file.name);
643 continue;
644 }
645 if (file.size != table->length) {
646 pr_err("ACPI OVERRIDE: File length does not match table length [%s%s]\n",
647 cpio_path, file.name);
648 continue;
649 }
650 if (acpi_table_checksum(file.data, table->length)) {
651 pr_err("ACPI OVERRIDE: Bad table checksum [%s%s]\n",
652 cpio_path, file.name);
653 continue;
654 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200655
656 pr_info("%4.4s ACPI table found in initrd [%s%s][0x%x]\n",
657 table->signature, cpio_path, file.name, table->length);
658
659 all_tables_size += table->length;
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700660 acpi_initrd_files[table_nr].data = file.data;
661 acpi_initrd_files[table_nr].size = file.size;
Thomas Renninger53aac442012-10-01 00:23:54 +0200662 table_nr++;
663 }
664 if (table_nr == 0)
665 return;
666
667 acpi_tables_addr =
668 memblock_find_in_range(0, max_low_pfn_mapped << PAGE_SHIFT,
669 all_tables_size, PAGE_SIZE);
670 if (!acpi_tables_addr) {
671 WARN_ON(1);
672 return;
673 }
674 /*
675 * Only calling e820_add_reserve does not work and the
676 * tables are invalid (memory got used) later.
677 * memblock_reserve works as expected and the tables won't get modified.
678 * But it's not enough on X86 because ioremap will
679 * complain later (used by acpi_os_map_memory) that the pages
680 * that should get mapped are not marked "reserved".
681 * Both memblock_reserve and e820_add_region (via arch_reserve_mem_area)
682 * works fine.
683 */
Wang YanQinga6432de2013-04-23 01:19:19 +0200684 memblock_reserve(acpi_tables_addr, all_tables_size);
Thomas Renninger53aac442012-10-01 00:23:54 +0200685 arch_reserve_mem_area(acpi_tables_addr, all_tables_size);
686
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700687 /*
688 * early_ioremap only can remap 256k one time. If we map all
689 * tables one time, we will hit the limit. Need to map chunks
690 * one by one during copying the same as that in relocate_initrd().
691 */
Thomas Renninger53aac442012-10-01 00:23:54 +0200692 for (no = 0; no < table_nr; no++) {
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700693 unsigned char *src_p = acpi_initrd_files[no].data;
694 phys_addr_t size = acpi_initrd_files[no].size;
695 phys_addr_t dest_addr = acpi_tables_addr + total_offset;
696 phys_addr_t slop, clen;
697 char *dest_p;
698
699 total_offset += size;
700
701 while (size) {
702 slop = dest_addr & ~PAGE_MASK;
703 clen = size;
704 if (clen > MAP_CHUNK_SIZE - slop)
705 clen = MAP_CHUNK_SIZE - slop;
706 dest_p = early_ioremap(dest_addr & PAGE_MASK,
707 clen + slop);
708 memcpy(dest_p + slop, src_p, clen);
709 early_iounmap(dest_p, clen + slop);
710 src_p += clen;
711 dest_addr += clen;
712 size -= clen;
713 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200714 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200715}
716#endif /* CONFIG_ACPI_INITRD_TABLE_OVERRIDE */
717
Thomas Renninger325a8d362012-10-01 00:23:56 +0200718static void acpi_table_taint(struct acpi_table_header *table)
719{
720 pr_warn(PREFIX
721 "Override [%4.4s-%8.8s], this is unsafe: tainting kernel\n",
722 table->signature, table->oem_table_id);
Rusty Russell373d4d02013-01-21 17:17:39 +1030723 add_taint(TAINT_OVERRIDDEN_ACPI_TABLE, LOCKDEP_NOW_UNRELIABLE);
Thomas Renninger325a8d362012-10-01 00:23:56 +0200724}
725
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400728acpi_os_table_override(struct acpi_table_header * existing_table,
729 struct acpi_table_header ** new_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
731 if (!existing_table || !new_table)
732 return AE_BAD_PARAMETER;
733
Markus Gaugusch71fc47a2008-02-05 00:04:06 +0100734 *new_table = NULL;
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736#ifdef CONFIG_ACPI_CUSTOM_DSDT
737 if (strncmp(existing_table->signature, "DSDT", 4) == 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400738 *new_table = (struct acpi_table_header *)AmlCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739#endif
Thomas Renninger325a8d362012-10-01 00:23:56 +0200740 if (*new_table != NULL)
741 acpi_table_taint(existing_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return AE_OK;
743}
744
Bob Mooref7b004a2012-02-14 18:31:56 +0800745acpi_status
746acpi_os_physical_table_override(struct acpi_table_header *existing_table,
Thomas Renningerb2a35002012-10-01 00:23:55 +0200747 acpi_physical_address *address,
748 u32 *table_length)
Bob Mooref7b004a2012-02-14 18:31:56 +0800749{
Thomas Renningerb2a35002012-10-01 00:23:55 +0200750#ifndef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
751 *table_length = 0;
752 *address = 0;
753 return AE_OK;
754#else
755 int table_offset = 0;
756 struct acpi_table_header *table;
Bob Mooref7b004a2012-02-14 18:31:56 +0800757
Thomas Renningerb2a35002012-10-01 00:23:55 +0200758 *table_length = 0;
759 *address = 0;
760
761 if (!acpi_tables_addr)
762 return AE_OK;
763
764 do {
765 if (table_offset + ACPI_HEADER_SIZE > all_tables_size) {
766 WARN_ON(1);
767 return AE_OK;
768 }
769
770 table = acpi_os_map_memory(acpi_tables_addr + table_offset,
771 ACPI_HEADER_SIZE);
772
773 if (table_offset + table->length > all_tables_size) {
774 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
775 WARN_ON(1);
776 return AE_OK;
777 }
778
779 table_offset += table->length;
780
781 if (memcmp(existing_table->signature, table->signature, 4)) {
782 acpi_os_unmap_memory(table,
783 ACPI_HEADER_SIZE);
784 continue;
785 }
786
787 /* Only override tables with matching oem id */
788 if (memcmp(table->oem_table_id, existing_table->oem_table_id,
789 ACPI_OEM_TABLE_ID_SIZE)) {
790 acpi_os_unmap_memory(table,
791 ACPI_HEADER_SIZE);
792 continue;
793 }
794
795 table_offset -= table->length;
796 *table_length = table->length;
797 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
798 *address = acpi_tables_addr + table_offset;
799 break;
800 } while (table_offset + ACPI_HEADER_SIZE < all_tables_size);
801
Thomas Renninger325a8d362012-10-01 00:23:56 +0200802 if (*address != 0)
803 acpi_table_taint(existing_table);
Thomas Renningerb2a35002012-10-01 00:23:55 +0200804 return AE_OK;
805#endif
806}
Bob Mooref7b004a2012-02-14 18:31:56 +0800807
David Howells7d12e782006-10-05 14:55:46 +0100808static irqreturn_t acpi_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Len Brown5229e872008-02-06 01:26:55 -0500810 u32 handled;
811
812 handled = (*acpi_irq_handler) (acpi_irq_context);
813
814 if (handled) {
815 acpi_irq_handled++;
816 return IRQ_HANDLED;
Len Brown88bea182009-04-21 00:35:47 -0400817 } else {
818 acpi_irq_not_handled++;
Len Brown5229e872008-02-06 01:26:55 -0500819 return IRQ_NONE;
Len Brown88bea182009-04-21 00:35:47 -0400820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
822
823acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400824acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
825 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
827 unsigned int irq;
828
Len Brown5229e872008-02-06 01:26:55 -0500829 acpi_irq_stats_init();
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 /*
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100832 * ACPI interrupts different from the SCI in our copy of the FADT are
833 * not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 */
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100835 if (gsi != acpi_gbl_FADT.sci_interrupt)
836 return AE_BAD_PARAMETER;
837
838 if (acpi_irq_handler)
839 return AE_ALREADY_ACQUIRED;
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 if (acpi_gsi_to_irq(gsi, &irq) < 0) {
842 printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n",
843 gsi);
844 return AE_OK;
845 }
846
847 acpi_irq_handler = handler;
848 acpi_irq_context = context;
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +0200849 if (request_irq(irq, acpi_irq, IRQF_SHARED, "acpi", acpi_irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq);
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100851 acpi_irq_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return AE_NOT_ACQUIRED;
853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 return AE_OK;
856}
857
Len Brown4be44fc2005-08-05 00:44:28 -0400858acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100860 if (irq != acpi_gbl_FADT.sci_interrupt)
861 return AE_BAD_PARAMETER;
862
863 free_irq(irq, acpi_irq);
864 acpi_irq_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 return AE_OK;
867}
868
869/*
870 * Running in interpreter thread context, safe to sleep
871 */
872
Lin Ming439913f2010-01-28 10:53:19 +0800873void acpi_os_sleep(u64 ms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Liu Chuansheng30282292013-09-12 01:42:57 +0800875 msleep(ms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876}
Len Brown4be44fc2005-08-05 00:44:28 -0400877
Len Brown4be44fc2005-08-05 00:44:28 -0400878void acpi_os_stall(u32 us)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
880 while (us) {
881 u32 delay = 1000;
882
883 if (delay > us)
884 delay = us;
885 udelay(delay);
886 touch_nmi_watchdog();
887 us -= delay;
888 }
889}
Len Brown4be44fc2005-08-05 00:44:28 -0400890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891/*
892 * Support ACPI 3.0 AML Timer operand
893 * Returns 64-bit free-running, monotonically increasing timer
894 * with 100ns granularity
895 */
Len Brown4be44fc2005-08-05 00:44:28 -0400896u64 acpi_os_get_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Mika Westerberg10619062013-05-23 10:27:46 +0300898 u64 time_ns = ktime_to_ns(ktime_get());
899 do_div(time_ns, 100);
900 return time_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902
Len Brown4be44fc2005-08-05 00:44:28 -0400903acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
905 u32 dummy;
906
907 if (!value)
908 value = &dummy;
909
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800910 *value = 0;
911 if (width <= 8) {
Len Brown4be44fc2005-08-05 00:44:28 -0400912 *(u8 *) value = inb(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800913 } else if (width <= 16) {
Len Brown4be44fc2005-08-05 00:44:28 -0400914 *(u16 *) value = inw(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800915 } else if (width <= 32) {
Len Brown4be44fc2005-08-05 00:44:28 -0400916 *(u32 *) value = inl(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800917 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 BUG();
919 }
920
921 return AE_OK;
922}
Len Brown4be44fc2005-08-05 00:44:28 -0400923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924EXPORT_SYMBOL(acpi_os_read_port);
925
Len Brown4be44fc2005-08-05 00:44:28 -0400926acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800928 if (width <= 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 outb(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800930 } else if (width <= 16) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 outw(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800932 } else if (width <= 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 outl(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800934 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 BUG();
936 }
937
938 return AE_OK;
939}
Len Brown4be44fc2005-08-05 00:44:28 -0400940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941EXPORT_SYMBOL(acpi_os_write_port);
942
Myron Stowee615bf52012-01-20 19:13:24 -0700943#ifdef readq
944static inline u64 read64(const volatile void __iomem *addr)
945{
946 return readq(addr);
947}
948#else
949static inline u64 read64(const volatile void __iomem *addr)
950{
951 u64 l, h;
952 l = readl(addr);
953 h = readl(addr+4);
954 return l | (h << 32);
955}
956#endif
957
958acpi_status
Bob Moore653f4b52012-02-14 18:29:55 +0800959acpi_os_read_memory(acpi_physical_address phys_addr, u64 *value, u32 width)
Myron Stowee615bf52012-01-20 19:13:24 -0700960{
961 void __iomem *virt_addr;
962 unsigned int size = width / 8;
963 bool unmap = false;
964 u64 dummy;
965
966 rcu_read_lock();
967 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
968 if (!virt_addr) {
969 rcu_read_unlock();
970 virt_addr = acpi_os_ioremap(phys_addr, size);
971 if (!virt_addr)
972 return AE_BAD_ADDRESS;
973 unmap = true;
974 }
975
976 if (!value)
977 value = &dummy;
978
979 switch (width) {
980 case 8:
981 *(u8 *) value = readb(virt_addr);
982 break;
983 case 16:
984 *(u16 *) value = readw(virt_addr);
985 break;
986 case 32:
987 *(u32 *) value = readl(virt_addr);
988 break;
989 case 64:
990 *(u64 *) value = read64(virt_addr);
991 break;
992 default:
993 BUG();
994 }
995
996 if (unmap)
997 iounmap(virt_addr);
998 else
999 rcu_read_unlock();
1000
1001 return AE_OK;
1002}
1003
Myron Stowee615bf52012-01-20 19:13:24 -07001004#ifdef writeq
1005static inline void write64(u64 val, volatile void __iomem *addr)
1006{
1007 writeq(val, addr);
1008}
1009#else
1010static inline void write64(u64 val, volatile void __iomem *addr)
1011{
1012 writel(val, addr);
1013 writel(val>>32, addr+4);
1014}
1015#endif
1016
1017acpi_status
Bob Moore653f4b52012-02-14 18:29:55 +08001018acpi_os_write_memory(acpi_physical_address phys_addr, u64 value, u32 width)
Myron Stowee615bf52012-01-20 19:13:24 -07001019{
1020 void __iomem *virt_addr;
1021 unsigned int size = width / 8;
1022 bool unmap = false;
1023
1024 rcu_read_lock();
1025 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
1026 if (!virt_addr) {
1027 rcu_read_unlock();
1028 virt_addr = acpi_os_ioremap(phys_addr, size);
1029 if (!virt_addr)
1030 return AE_BAD_ADDRESS;
1031 unmap = true;
1032 }
1033
1034 switch (width) {
1035 case 8:
1036 writeb(value, virt_addr);
1037 break;
1038 case 16:
1039 writew(value, virt_addr);
1040 break;
1041 case 32:
1042 writel(value, virt_addr);
1043 break;
1044 case 64:
1045 write64(value, virt_addr);
1046 break;
1047 default:
1048 BUG();
1049 }
1050
1051 if (unmap)
1052 iounmap(virt_addr);
1053 else
1054 rcu_read_unlock();
1055
1056 return AE_OK;
1057}
1058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001060acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Bob Moorec5f02312010-08-06 08:57:53 +08001061 u64 *value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
1063 int result, size;
Bob Moorec5f02312010-08-06 08:57:53 +08001064 u32 value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 if (!value)
1067 return AE_BAD_PARAMETER;
1068
1069 switch (width) {
1070 case 8:
1071 size = 1;
1072 break;
1073 case 16:
1074 size = 2;
1075 break;
1076 case 32:
1077 size = 4;
1078 break;
1079 default:
1080 return AE_ERROR;
1081 }
1082
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -05001083 result = raw_pci_read(pci_id->segment, pci_id->bus,
1084 PCI_DEVFN(pci_id->device, pci_id->function),
Bob Moorec5f02312010-08-06 08:57:53 +08001085 reg, size, &value32);
1086 *value = value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
1088 return (result ? AE_ERROR : AE_OK);
1089}
Len Brown4be44fc2005-08-05 00:44:28 -04001090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001092acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Lin Ming439913f2010-01-28 10:53:19 +08001093 u64 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
1095 int result, size;
1096
1097 switch (width) {
1098 case 8:
1099 size = 1;
1100 break;
1101 case 16:
1102 size = 2;
1103 break;
1104 case 32:
1105 size = 4;
1106 break;
1107 default:
1108 return AE_ERROR;
1109 }
1110
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -05001111 result = raw_pci_write(pci_id->segment, pci_id->bus,
1112 PCI_DEVFN(pci_id->device, pci_id->function),
1113 reg, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 return (result ? AE_ERROR : AE_OK);
1116}
1117
David Howells65f27f32006-11-22 14:55:48 +00001118static void acpi_os_execute_deferred(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
David Howells65f27f32006-11-22 14:55:48 +00001120 struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work);
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -04001121
Zhang Rui19cd8472008-08-28 10:05:06 +08001122 dpc->function(dpc->context);
1123 kfree(dpc);
Zhang Rui19cd8472008-08-28 10:05:06 +08001124}
1125
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -04001126/*******************************************************************************
1127 *
1128 * FUNCTION: acpi_os_execute
1129 *
1130 * PARAMETERS: Type - Type of the callback
1131 * Function - Function to be executed
1132 * Context - Function parameters
1133 *
1134 * RETURN: Status
1135 *
1136 * DESCRIPTION: Depending on type, either queues function for deferred execution or
1137 * immediately executes function on a separate thread.
1138 *
1139 ******************************************************************************/
1140
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001141acpi_status acpi_os_execute(acpi_execute_type type,
1142 acpi_osd_exec_callback function, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
Len Brown4be44fc2005-08-05 00:44:28 -04001144 acpi_status status = AE_OK;
1145 struct acpi_os_dpc *dpc;
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +03001146 struct workqueue_struct *queue;
Zhang Rui19cd8472008-08-28 10:05:06 +08001147 int ret;
Len Brown72945b22006-07-12 22:46:42 -04001148 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
1149 "Scheduling function [%p(%p)] for deferred execution.\n",
1150 function, context));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 /*
1153 * Allocate/initialize DPC structure. Note that this memory will be
David Howells65f27f32006-11-22 14:55:48 +00001154 * freed by the callee. The kernel handles the work_struct list in a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 * way that allows us to also free its memory inside the callee.
1156 * Because we may want to schedule several tasks with different
1157 * parameters we can't use the approach some kernel code uses of
David Howells65f27f32006-11-22 14:55:48 +00001158 * having a static work_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 */
Len Brown72945b22006-07-12 22:46:42 -04001160
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001161 dpc = kzalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 if (!dpc)
Lin Ming889c78b2008-12-31 09:23:57 +08001163 return AE_NO_MEMORY;
Linus Torvaldsb976fe12006-11-17 19:31:09 -08001164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 dpc->function = function;
1166 dpc->context = context;
Linus Torvaldsb976fe12006-11-17 19:31:09 -08001167
Zhang Ruic02256b2009-06-23 10:20:29 +08001168 /*
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001169 * To prevent lockdep from complaining unnecessarily, make sure that
1170 * there is a different static lockdep key for each workqueue by using
1171 * INIT_WORK() for each of them separately.
Zhang Ruic02256b2009-06-23 10:20:29 +08001172 */
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001173 if (type == OSL_NOTIFY_HANDLER) {
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001174 queue = kacpi_notify_wq;
Zhang Ruibc736752010-03-22 15:48:54 +08001175 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001176 } else {
1177 queue = kacpid_wq;
Zhang Ruibc736752010-03-22 15:48:54 +08001178 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001179 }
Zhang Ruibc736752010-03-22 15:48:54 +08001180
Tejun Heo8fec62b2010-06-29 10:07:09 +02001181 /*
1182 * On some machines, a software-initiated SMI causes corruption unless
1183 * the SMI runs on CPU 0. An SMI can be initiated by any AML, but
1184 * typically it's done in GPE-related methods that are run via
1185 * workqueues, so we can avoid the known corruption cases by always
1186 * queueing on CPU 0.
1187 */
1188 ret = queue_work_on(0, queue, &dpc->work);
Zhang Rui19cd8472008-08-28 10:05:06 +08001189
1190 if (!ret) {
Lin Ming55ac9a02008-09-28 14:51:56 +08001191 printk(KERN_ERR PREFIX
1192 "Call to queue_work() failed.\n");
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +03001193 status = AE_ERROR;
1194 kfree(dpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 }
Lin Ming889c78b2008-12-31 09:23:57 +08001196 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -04001198EXPORT_SYMBOL(acpi_os_execute);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Lin Mingbd6f10a2012-05-22 16:43:49 +08001200void acpi_os_wait_events_complete(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201{
Lv Zheng90253a72014-11-05 15:06:13 +08001202 /*
1203 * Make sure the GPE handler or the fixed event handler is not used
1204 * on another CPU after removal.
1205 */
1206 if (acpi_irq_handler)
1207 synchronize_hardirq(acpi_gbl_FADT.sci_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 flush_workqueue(kacpid_wq);
Zhang Rui2f67a062008-04-29 02:34:42 -04001209 flush_workqueue(kacpi_notify_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
Len Brown4be44fc2005-08-05 00:44:28 -04001211
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001212struct acpi_hp_work {
1213 struct work_struct work;
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001214 struct acpi_device *adev;
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001215 u32 src;
1216};
1217
1218static void acpi_hotplug_work_fn(struct work_struct *work)
1219{
1220 struct acpi_hp_work *hpw = container_of(work, struct acpi_hp_work, work);
1221
1222 acpi_os_wait_events_complete();
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001223 acpi_device_hotplug(hpw->adev, hpw->src);
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001224 kfree(hpw);
1225}
1226
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001227acpi_status acpi_hotplug_schedule(struct acpi_device *adev, u32 src)
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001228{
1229 struct acpi_hp_work *hpw;
1230
1231 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001232 "Scheduling hotplug event (%p, %u) for deferred execution.\n",
1233 adev, src));
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001234
1235 hpw = kmalloc(sizeof(*hpw), GFP_KERNEL);
1236 if (!hpw)
1237 return AE_NO_MEMORY;
1238
1239 INIT_WORK(&hpw->work, acpi_hotplug_work_fn);
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001240 hpw->adev = adev;
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001241 hpw->src = src;
1242 /*
1243 * We can't run hotplug code in kacpid_wq/kacpid_notify_wq etc., because
1244 * the hotplug code may call driver .remove() functions, which may
1245 * invoke flush_scheduled_work()/acpi_os_wait_events_complete() to flush
1246 * these workqueues.
1247 */
1248 if (!queue_work(kacpi_hotplug_wq, &hpw->work)) {
1249 kfree(hpw);
1250 return AE_ERROR;
1251 }
1252 return AE_OK;
1253}
1254
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001255bool acpi_queue_hotplug_work(struct work_struct *work)
1256{
1257 return queue_work(kacpi_hotplug_wq, work);
1258}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001261acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
Len Brown4be44fc2005-08-05 00:44:28 -04001263 struct semaphore *sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
jhbird.choi@samsung.com2d0acb42014-03-20 16:35:56 +09001265 sem = acpi_os_allocate_zeroed(sizeof(struct semaphore));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -04001267 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
1269 sema_init(sem, initial_units);
1270
Len Brown4be44fc2005-08-05 00:44:28 -04001271 *handle = (acpi_handle *) sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Len Brown4be44fc2005-08-05 00:44:28 -04001273 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n",
1274 *handle, initial_units));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Patrick Mocheld550d982006-06-27 00:41:40 -04001276 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279/*
1280 * TODO: A better way to delete semaphores? Linux doesn't have a
1281 * 'delete_semaphore()' function -- may result in an invalid
1282 * pointer dereference for non-synchronized consumers. Should
1283 * we at least check for blocked threads and signal/cancel them?
1284 */
1285
Len Brown4be44fc2005-08-05 00:44:28 -04001286acpi_status acpi_os_delete_semaphore(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
Len Brown4be44fc2005-08-05 00:44:28 -04001288 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -04001291 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Len Brown4be44fc2005-08-05 00:44:28 -04001293 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001295 BUG_ON(!list_empty(&sem->wait_list));
Len Brown02438d82006-06-30 03:19:10 -04001296 kfree(sem);
Len Brown4be44fc2005-08-05 00:44:28 -04001297 sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Patrick Mocheld550d982006-06-27 00:41:40 -04001299 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 * TODO: Support for units > 1?
1304 */
Len Brown4be44fc2005-08-05 00:44:28 -04001305acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
Len Brown4be44fc2005-08-05 00:44:28 -04001307 acpi_status status = AE_OK;
1308 struct semaphore *sem = (struct semaphore *)handle;
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001309 long jiffies;
Len Brown4be44fc2005-08-05 00:44:28 -04001310 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001313 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -04001316 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Len Brown4be44fc2005-08-05 00:44:28 -04001318 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n",
1319 handle, units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001321 if (timeout == ACPI_WAIT_FOREVER)
1322 jiffies = MAX_SCHEDULE_TIMEOUT;
1323 else
1324 jiffies = msecs_to_jiffies(timeout);
Al Stonecad1525a2013-12-04 12:59:11 -07001325
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001326 ret = down_timeout(sem, jiffies);
1327 if (ret)
1328 status = AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 if (ACPI_FAILURE(status)) {
Bjorn Helgaas9e7e2c02006-04-27 05:25:00 -04001331 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -04001332 "Failed to acquire semaphore[%p|%d|%d], %s",
Len Brown4be44fc2005-08-05 00:44:28 -04001333 handle, units, timeout,
1334 acpi_format_exception(status)));
1335 } else {
1336 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -04001337 "Acquired semaphore[%p|%d|%d]", handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001338 units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
1340
Patrick Mocheld550d982006-06-27 00:41:40 -04001341 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344/*
1345 * TODO: Support for units > 1?
1346 */
Len Brown4be44fc2005-08-05 00:44:28 -04001347acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
Len Brown4be44fc2005-08-05 00:44:28 -04001349 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001352 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -04001355 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Len Brown4be44fc2005-08-05 00:44:28 -04001357 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle,
1358 units));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 up(sem);
1361
Patrick Mocheld550d982006-06-27 00:41:40 -04001362 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363}
Len Brown4be44fc2005-08-05 00:44:28 -04001364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -04001366u32 acpi_os_get_line(char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
1368
1369#ifdef ENABLE_DEBUGGER
1370 if (acpi_in_debugger) {
1371 u32 chars;
1372
1373 kdb_read(buffer, sizeof(line_buf));
1374
1375 /* remove the CR kdb includes */
1376 chars = strlen(buffer) - 1;
1377 buffer[chars] = '\0';
1378 }
1379#endif
1380
1381 return 0;
1382}
Len Brown4be44fc2005-08-05 00:44:28 -04001383#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Len Brown4be44fc2005-08-05 00:44:28 -04001385acpi_status acpi_os_signal(u32 function, void *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
Len Brown4be44fc2005-08-05 00:44:28 -04001387 switch (function) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 case ACPI_SIGNAL_FATAL:
1389 printk(KERN_ERR PREFIX "Fatal opcode executed\n");
1390 break;
1391 case ACPI_SIGNAL_BREAKPOINT:
1392 /*
1393 * AML Breakpoint
1394 * ACPI spec. says to treat it as a NOP unless
1395 * you are debugging. So if/when we integrate
1396 * AML debugger into the kernel debugger its
1397 * hook will go here. But until then it is
1398 * not useful to print anything on breakpoints.
1399 */
1400 break;
1401 default:
1402 break;
1403 }
1404
1405 return AE_OK;
1406}
Len Brown4be44fc2005-08-05 00:44:28 -04001407
Len Brown4be44fc2005-08-05 00:44:28 -04001408static int __init acpi_os_name_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
1410 char *p = acpi_os_name;
Len Brown4be44fc2005-08-05 00:44:28 -04001411 int count = ACPI_MAX_OVERRIDE_LEN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 if (!str || !*str)
1414 return 0;
1415
Dan Carpenter5e2be4e2013-10-18 12:01:43 +03001416 for (; count-- && *str; str++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 if (isalnum(*str) || *str == ' ' || *str == ':')
1418 *p++ = *str;
1419 else if (*str == '\'' || *str == '"')
1420 continue;
1421 else
1422 break;
1423 }
1424 *p = 0;
1425
1426 return 1;
Len Brown4be44fc2005-08-05 00:44:28 -04001427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428}
1429
1430__setup("acpi_os_name=", acpi_os_name_setup);
1431
Lin Ming12d32062010-12-09 16:51:06 +08001432#define OSI_STRING_LENGTH_MAX 64 /* arbitrary */
1433#define OSI_STRING_ENTRIES_MAX 16 /* arbitrary */
1434
1435struct osi_setup_entry {
1436 char string[OSI_STRING_LENGTH_MAX];
1437 bool enable;
1438};
1439
Hanjun Guoe73d3132013-08-13 18:31:15 +08001440static struct osi_setup_entry
1441 osi_setup_entries[OSI_STRING_ENTRIES_MAX] __initdata = {
Shaohua Liaa165972011-07-28 13:48:43 -07001442 {"Module Device", true},
1443 {"Processor Device", true},
1444 {"3.0 _SCP Extensions", true},
1445 {"Processor Aggregator Device", true},
1446};
Lin Ming12d32062010-12-09 16:51:06 +08001447
Lin Mingd90aa922010-12-09 16:50:52 +08001448void __init acpi_osi_setup(char *str)
1449{
Lin Ming12d32062010-12-09 16:51:06 +08001450 struct osi_setup_entry *osi;
1451 bool enable = true;
1452 int i;
1453
Lin Mingd90aa922010-12-09 16:50:52 +08001454 if (!acpi_gbl_create_osi_method)
1455 return;
1456
1457 if (str == NULL || *str == '\0') {
1458 printk(KERN_INFO PREFIX "_OSI method disabled\n");
1459 acpi_gbl_create_osi_method = FALSE;
Lin Ming12d32062010-12-09 16:51:06 +08001460 return;
1461 }
1462
1463 if (*str == '!') {
1464 str++;
Lv Zheng5dc17982013-07-22 16:08:25 +08001465 if (*str == '\0') {
1466 osi_linux.default_disabling = 1;
1467 return;
Lv Zheng741d8122013-07-22 16:08:36 +08001468 } else if (*str == '*') {
1469 acpi_update_interfaces(ACPI_DISABLE_ALL_STRINGS);
1470 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1471 osi = &osi_setup_entries[i];
1472 osi->enable = false;
1473 }
1474 return;
Lv Zheng5dc17982013-07-22 16:08:25 +08001475 }
Lin Ming12d32062010-12-09 16:51:06 +08001476 enable = false;
1477 }
1478
1479 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1480 osi = &osi_setup_entries[i];
1481 if (!strcmp(osi->string, str)) {
1482 osi->enable = enable;
1483 break;
1484 } else if (osi->string[0] == '\0') {
1485 osi->enable = enable;
1486 strncpy(osi->string, str, OSI_STRING_LENGTH_MAX);
1487 break;
1488 }
1489 }
Lin Mingd90aa922010-12-09 16:50:52 +08001490}
1491
Len Brownd4b7dc42008-01-23 20:50:56 -05001492static void __init set_osi_linux(unsigned int enable)
1493{
Lin Mingd90aa922010-12-09 16:50:52 +08001494 if (osi_linux.enable != enable)
Len Brownd4b7dc42008-01-23 20:50:56 -05001495 osi_linux.enable = enable;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001496
1497 if (osi_linux.enable)
1498 acpi_osi_setup("Linux");
1499 else
1500 acpi_osi_setup("!Linux");
1501
Len Brownd4b7dc42008-01-23 20:50:56 -05001502 return;
1503}
Len Brownf5076542007-05-30 00:10:38 -04001504
Len Brownd4b7dc42008-01-23 20:50:56 -05001505static void __init acpi_cmdline_osi_linux(unsigned int enable)
1506{
Lin Mingd90aa922010-12-09 16:50:52 +08001507 osi_linux.cmdline = 1; /* cmdline set the default and override DMI */
1508 osi_linux.dmi = 0;
Len Brownd4b7dc42008-01-23 20:50:56 -05001509 set_osi_linux(enable);
Len Brownf5076542007-05-30 00:10:38 -04001510
Len Brownd4b7dc42008-01-23 20:50:56 -05001511 return;
1512}
1513
1514void __init acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d)
1515{
Len Brownd4b7dc42008-01-23 20:50:56 -05001516 printk(KERN_NOTICE PREFIX "DMI detected: %s\n", d->ident);
1517
1518 if (enable == -1)
1519 return;
1520
Lin Mingd90aa922010-12-09 16:50:52 +08001521 osi_linux.dmi = 1; /* DMI knows that this box asks OSI(Linux) */
Len Brownd4b7dc42008-01-23 20:50:56 -05001522 set_osi_linux(enable);
1523
Len Brownf5076542007-05-30 00:10:38 -04001524 return;
1525}
1526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527/*
Len Brownae00d812007-05-29 18:43:33 -04001528 * Modify the list of "OS Interfaces" reported to BIOS via _OSI
1529 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 * empty string disables _OSI
Len Brownae00d812007-05-29 18:43:33 -04001531 * string starting with '!' disables that string
1532 * otherwise string is added to list, augmenting built-in strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 */
Lin Mingb0ed7a92010-08-06 09:35:51 +08001534static void __init acpi_osi_setup_late(void)
1535{
Lin Ming12d32062010-12-09 16:51:06 +08001536 struct osi_setup_entry *osi;
1537 char *str;
1538 int i;
Lin Mingd90aa922010-12-09 16:50:52 +08001539 acpi_status status;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001540
Lv Zheng5dc17982013-07-22 16:08:25 +08001541 if (osi_linux.default_disabling) {
1542 status = acpi_update_interfaces(ACPI_DISABLE_ALL_VENDOR_STRINGS);
1543
1544 if (ACPI_SUCCESS(status))
1545 printk(KERN_INFO PREFIX "Disabled all _OSI OS vendors\n");
1546 }
1547
Lin Ming12d32062010-12-09 16:51:06 +08001548 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1549 osi = &osi_setup_entries[i];
1550 str = osi->string;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001551
Lin Ming12d32062010-12-09 16:51:06 +08001552 if (*str == '\0')
1553 break;
1554 if (osi->enable) {
1555 status = acpi_install_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001556
Lin Ming12d32062010-12-09 16:51:06 +08001557 if (ACPI_SUCCESS(status))
1558 printk(KERN_INFO PREFIX "Added _OSI(%s)\n", str);
1559 } else {
1560 status = acpi_remove_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001561
Lin Ming12d32062010-12-09 16:51:06 +08001562 if (ACPI_SUCCESS(status))
1563 printk(KERN_INFO PREFIX "Deleted _OSI(%s)\n", str);
1564 }
Lin Mingb0ed7a92010-08-06 09:35:51 +08001565 }
1566}
1567
Lin Mingd90aa922010-12-09 16:50:52 +08001568static int __init osi_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
Lin Mingd90aa922010-12-09 16:50:52 +08001570 if (str && !strcmp("Linux", str))
1571 acpi_cmdline_osi_linux(1);
1572 else if (str && !strcmp("!Linux", str))
1573 acpi_cmdline_osi_linux(0);
1574 else
1575 acpi_osi_setup(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 return 1;
1578}
1579
Lin Mingd90aa922010-12-09 16:50:52 +08001580__setup("acpi_osi=", osi_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Bob Moore22b5afc2014-03-24 14:49:00 +08001582/*
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001583 * Disable the auto-serialization of named objects creation methods.
Bob Moore22b5afc2014-03-24 14:49:00 +08001584 *
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001585 * This feature is enabled by default. It marks the AML control methods
Bob Moore22b5afc2014-03-24 14:49:00 +08001586 * that contain the opcodes to create named objects as "Serialized".
1587 */
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001588static int __init acpi_no_auto_serialize_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589{
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001590 acpi_gbl_auto_serialize_methods = FALSE;
1591 pr_info("ACPI: auto-serialization disabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
1593 return 1;
1594}
1595
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001596__setup("acpi_no_auto_serialize", acpi_no_auto_serialize_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Thomas Renningerdf92e692008-02-04 23:31:22 -08001598/* Check of resource interference between native drivers and ACPI
1599 * OperationRegions (SystemIO and System Memory only).
1600 * IO ports and memory declared in ACPI might be used by the ACPI subsystem
1601 * in arbitrary AML code and can interfere with legacy drivers.
1602 * acpi_enforce_resources= can be set to:
1603 *
Luca Tettamanti7e905602009-03-30 00:01:27 +02001604 * - strict (default) (2)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001605 * -> further driver trying to access the resources will not load
Luca Tettamanti7e905602009-03-30 00:01:27 +02001606 * - lax (1)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001607 * -> further driver trying to access the resources will load, but you
1608 * get a system message that something might go wrong...
1609 *
1610 * - no (0)
1611 * -> ACPI Operation Region resources will not be registered
1612 *
1613 */
1614#define ENFORCE_RESOURCES_STRICT 2
1615#define ENFORCE_RESOURCES_LAX 1
1616#define ENFORCE_RESOURCES_NO 0
1617
Luca Tettamanti7e905602009-03-30 00:01:27 +02001618static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001619
1620static int __init acpi_enforce_resources_setup(char *str)
1621{
1622 if (str == NULL || *str == '\0')
1623 return 0;
1624
1625 if (!strcmp("strict", str))
1626 acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1627 else if (!strcmp("lax", str))
1628 acpi_enforce_resources = ENFORCE_RESOURCES_LAX;
1629 else if (!strcmp("no", str))
1630 acpi_enforce_resources = ENFORCE_RESOURCES_NO;
1631
1632 return 1;
1633}
1634
1635__setup("acpi_enforce_resources=", acpi_enforce_resources_setup);
1636
1637/* Check for resource conflicts between ACPI OperationRegions and native
1638 * drivers */
Jean Delvare876fba42009-11-11 15:22:15 +01001639int acpi_check_resource_conflict(const struct resource *res)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001640{
Lin Mingf654c0f2012-01-12 13:10:32 +08001641 acpi_adr_space_type space_id;
1642 acpi_size length;
1643 u8 warn = 0;
1644 int clash = 0;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001645
1646 if (acpi_enforce_resources == ENFORCE_RESOURCES_NO)
1647 return 0;
1648 if (!(res->flags & IORESOURCE_IO) && !(res->flags & IORESOURCE_MEM))
1649 return 0;
1650
Lin Mingf654c0f2012-01-12 13:10:32 +08001651 if (res->flags & IORESOURCE_IO)
1652 space_id = ACPI_ADR_SPACE_SYSTEM_IO;
1653 else
1654 space_id = ACPI_ADR_SPACE_SYSTEM_MEMORY;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001655
Alexandru Gheorghiue4f52242013-03-12 08:53:02 +00001656 length = resource_size(res);
Lin Mingf654c0f2012-01-12 13:10:32 +08001657 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO)
1658 warn = 1;
1659 clash = acpi_check_address_range(space_id, res->start, length, warn);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001660
1661 if (clash) {
1662 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO) {
Jean Delvare14f03342009-09-08 15:31:46 +02001663 if (acpi_enforce_resources == ENFORCE_RESOURCES_LAX)
1664 printk(KERN_NOTICE "ACPI: This conflict may"
1665 " cause random problems and system"
1666 " instability\n");
1667 printk(KERN_INFO "ACPI: If an ACPI driver is available"
1668 " for this device, you should use it instead of"
1669 " the native driver\n");
Thomas Renningerdf92e692008-02-04 23:31:22 -08001670 }
1671 if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT)
1672 return -EBUSY;
1673 }
1674 return 0;
1675}
Thomas Renninger443dea72008-02-04 23:31:23 -08001676EXPORT_SYMBOL(acpi_check_resource_conflict);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001677
1678int acpi_check_region(resource_size_t start, resource_size_t n,
1679 const char *name)
1680{
1681 struct resource res = {
1682 .start = start,
1683 .end = start + n - 1,
1684 .name = name,
1685 .flags = IORESOURCE_IO,
1686 };
1687
1688 return acpi_check_resource_conflict(&res);
1689}
1690EXPORT_SYMBOL(acpi_check_region);
1691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692/*
Jean Delvare70dd6be2010-05-27 19:58:37 +02001693 * Let drivers know whether the resource checks are effective
1694 */
1695int acpi_resources_are_enforced(void)
1696{
1697 return acpi_enforce_resources == ENFORCE_RESOURCES_STRICT;
1698}
1699EXPORT_SYMBOL(acpi_resources_are_enforced);
1700
Hans de Goedea87878b2015-06-16 16:27:46 +02001701bool acpi_osi_is_win8(void)
1702{
1703 return acpi_gbl_osi_data >= ACPI_OSI_WIN_8;
1704}
1705EXPORT_SYMBOL(acpi_osi_is_win8);
1706
Jean Delvare70dd6be2010-05-27 19:58:37 +02001707/*
Lin Ming9f63b882011-03-23 17:26:34 +08001708 * Deallocate the memory for a spinlock.
1709 */
1710void acpi_os_delete_lock(acpi_spinlock handle)
1711{
1712 ACPI_FREE(handle);
1713}
1714
1715/*
Robert Moore73459f72005-06-24 00:00:00 -04001716 * Acquire a spinlock.
1717 *
1718 * handle is a pointer to the spinlock_t.
Robert Moore73459f72005-06-24 00:00:00 -04001719 */
1720
Bob Moore967440e32006-06-23 17:04:00 -04001721acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp)
Robert Moore73459f72005-06-24 00:00:00 -04001722{
Bob Mooreb8e4d892006-01-27 16:43:00 -05001723 acpi_cpu_flags flags;
Bob Moore967440e32006-06-23 17:04:00 -04001724 spin_lock_irqsave(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001725 return flags;
1726}
1727
1728/*
1729 * Release a spinlock. See above.
1730 */
1731
Bob Moore967440e32006-06-23 17:04:00 -04001732void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags)
Robert Moore73459f72005-06-24 00:00:00 -04001733{
Bob Moore967440e32006-06-23 17:04:00 -04001734 spin_unlock_irqrestore(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001735}
1736
Robert Moore73459f72005-06-24 00:00:00 -04001737#ifndef ACPI_USE_LOCAL_CACHE
1738
1739/*******************************************************************************
1740 *
1741 * FUNCTION: acpi_os_create_cache
1742 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001743 * PARAMETERS: name - Ascii name for the cache
1744 * size - Size of each cached object
1745 * depth - Maximum depth of the cache (in objects) <ignored>
1746 * cache - Where the new cache object is returned
Robert Moore73459f72005-06-24 00:00:00 -04001747 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001748 * RETURN: status
Robert Moore73459f72005-06-24 00:00:00 -04001749 *
1750 * DESCRIPTION: Create a cache object
1751 *
1752 ******************************************************************************/
1753
1754acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001755acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache)
Robert Moore73459f72005-06-24 00:00:00 -04001756{
Paul Mundt20c2df82007-07-20 10:11:58 +09001757 *cache = kmem_cache_create(name, size, 0, 0, NULL);
Adrian Bunka6fdbf92006-12-19 12:56:13 -08001758 if (*cache == NULL)
Bob Mooreb229cf92006-04-21 17:15:00 -04001759 return AE_ERROR;
1760 else
1761 return AE_OK;
Robert Moore73459f72005-06-24 00:00:00 -04001762}
1763
1764/*******************************************************************************
1765 *
1766 * FUNCTION: acpi_os_purge_cache
1767 *
1768 * PARAMETERS: Cache - Handle to cache object
1769 *
1770 * RETURN: Status
1771 *
1772 * DESCRIPTION: Free all objects within the requested cache.
1773 *
1774 ******************************************************************************/
1775
Len Brown4be44fc2005-08-05 00:44:28 -04001776acpi_status acpi_os_purge_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001777{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001778 kmem_cache_shrink(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_delete_cache
1785 *
1786 * PARAMETERS: Cache - Handle to cache object
1787 *
1788 * RETURN: Status
1789 *
1790 * DESCRIPTION: Free all objects within the requested cache and delete the
1791 * cache object.
1792 *
1793 ******************************************************************************/
1794
Len Brown4be44fc2005-08-05 00:44:28 -04001795acpi_status acpi_os_delete_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001796{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001797 kmem_cache_destroy(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001798 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001799}
1800
1801/*******************************************************************************
1802 *
1803 * FUNCTION: acpi_os_release_object
1804 *
1805 * PARAMETERS: Cache - Handle to cache object
1806 * Object - The object to be released
1807 *
1808 * RETURN: None
1809 *
1810 * DESCRIPTION: Release an object to the specified cache. If cache is full,
1811 * the object is deleted.
1812 *
1813 ******************************************************************************/
1814
Len Brown4be44fc2005-08-05 00:44:28 -04001815acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object)
Robert Moore73459f72005-06-24 00:00:00 -04001816{
Len Brown4be44fc2005-08-05 00:44:28 -04001817 kmem_cache_free(cache, object);
1818 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001819}
Robert Moore73459f72005-06-24 00:00:00 -04001820#endif
Myron Stowed362eda2010-10-21 14:24:04 -06001821
Lv Zhenga94e88c2014-04-04 12:39:11 +08001822static int __init acpi_no_static_ssdt_setup(char *s)
Lv Zhengb75dd292013-06-08 00:58:48 +00001823{
Lv Zhenga94e88c2014-04-04 12:39:11 +08001824 acpi_gbl_disable_ssdt_table_install = TRUE;
1825 pr_info("ACPI: static SSDT installation disabled\n");
Lv Zhengb75dd292013-06-08 00:58:48 +00001826
Lv Zhenga94e88c2014-04-04 12:39:11 +08001827 return 0;
Lv Zhengb75dd292013-06-08 00:58:48 +00001828}
1829
Lv Zhenga94e88c2014-04-04 12:39:11 +08001830early_param("acpi_no_static_ssdt", acpi_no_static_ssdt_setup);
Lv Zhengb75dd292013-06-08 00:58:48 +00001831
Lv Zheng4dde5072014-02-11 11:01:52 +08001832static int __init acpi_disable_return_repair(char *s)
1833{
1834 printk(KERN_NOTICE PREFIX
1835 "ACPI: Predefined validation mechanism disabled\n");
1836 acpi_gbl_disable_auto_repair = TRUE;
1837
1838 return 1;
1839}
1840
1841__setup("acpica_no_return_repair", acpi_disable_return_repair);
1842
Myron Stowed362eda2010-10-21 14:24:04 -06001843acpi_status __init acpi_os_initialize(void)
1844{
1845 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1846 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1847 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe0_block);
1848 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe1_block);
Randy Wrighta4714a82014-06-04 08:55:59 -07001849 if (acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER) {
1850 /*
1851 * Use acpi_os_map_generic_address to pre-map the reset
1852 * register if it's in system memory.
1853 */
1854 int rv;
1855
1856 rv = acpi_os_map_generic_address(&acpi_gbl_FADT.reset_register);
1857 pr_debug(PREFIX "%s: map reset_reg status %d\n", __func__, rv);
1858 }
Myron Stowed362eda2010-10-21 14:24:04 -06001859
1860 return AE_OK;
1861}
1862
Zhang Rui32d47ee2010-12-08 10:40:36 +08001863acpi_status __init acpi_os_initialize1(void)
Myron Stowed362eda2010-10-21 14:24:04 -06001864{
Rafael J. Wysockib9a5e5e2015-05-07 21:19:39 +02001865 acpi_reserve_resources();
Tejun Heo44d25882011-02-01 11:42:42 +01001866 kacpid_wq = alloc_workqueue("kacpid", 0, 1);
1867 kacpi_notify_wq = alloc_workqueue("kacpi_notify", 0, 1);
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001868 kacpi_hotplug_wq = alloc_ordered_workqueue("kacpi_hotplug", 0);
Myron Stowed362eda2010-10-21 14:24:04 -06001869 BUG_ON(!kacpid_wq);
1870 BUG_ON(!kacpi_notify_wq);
1871 BUG_ON(!kacpi_hotplug_wq);
Len Brown1bd64d42010-10-26 14:50:56 -04001872 acpi_install_interface_handler(acpi_osi_handler);
1873 acpi_osi_setup_late();
Myron Stowed362eda2010-10-21 14:24:04 -06001874 return AE_OK;
1875}
1876
1877acpi_status acpi_os_terminate(void)
1878{
1879 if (acpi_irq_handler) {
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +01001880 acpi_os_remove_interrupt_handler(acpi_gbl_FADT.sci_interrupt,
Myron Stowed362eda2010-10-21 14:24:04 -06001881 acpi_irq_handler);
1882 }
1883
1884 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe1_block);
1885 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe0_block);
1886 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1887 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
Randy Wrighta4714a82014-06-04 08:55:59 -07001888 if (acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER)
1889 acpi_os_unmap_generic_address(&acpi_gbl_FADT.reset_register);
Myron Stowed362eda2010-10-21 14:24:04 -06001890
1891 destroy_workqueue(kacpid_wq);
1892 destroy_workqueue(kacpi_notify_wq);
1893 destroy_workqueue(kacpi_hotplug_wq);
1894
1895 return AE_OK;
1896}
Tang Liang09f98a82011-12-09 10:05:54 +08001897
1898acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control,
1899 u32 pm1b_control)
1900{
1901 int rc = 0;
1902 if (__acpi_os_prepare_sleep)
1903 rc = __acpi_os_prepare_sleep(sleep_state,
1904 pm1a_control, pm1b_control);
1905 if (rc < 0)
1906 return AE_ERROR;
1907 else if (rc > 0)
1908 return AE_CTRL_SKIP;
1909
1910 return AE_OK;
1911}
1912
1913void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state,
1914 u32 pm1a_ctrl, u32 pm1b_ctrl))
1915{
1916 __acpi_os_prepare_sleep = func;
1917}
Yinghai Lu92d8aff2013-01-21 13:20:47 -08001918
Ben Guthrod6b47b12013-07-30 08:24:52 -04001919acpi_status acpi_os_prepare_extended_sleep(u8 sleep_state, u32 val_a,
1920 u32 val_b)
1921{
1922 int rc = 0;
1923 if (__acpi_os_prepare_extended_sleep)
1924 rc = __acpi_os_prepare_extended_sleep(sleep_state,
1925 val_a, val_b);
1926 if (rc < 0)
1927 return AE_ERROR;
1928 else if (rc > 0)
1929 return AE_CTRL_SKIP;
1930
1931 return AE_OK;
1932}
1933
1934void acpi_os_set_prepare_extended_sleep(int (*func)(u8 sleep_state,
1935 u32 val_a, u32 val_b))
1936{
1937 __acpi_os_prepare_extended_sleep = func;
1938}