blob: 5226a8b921ae1ea624ef7574b6bd5210d368317a [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. Wysockic75c95b2015-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
533#define ACPI_MAX_OVERRIDE_LEN 100
534
535static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN];
536
537acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400538acpi_os_predefined_override(const struct acpi_predefined_names *init_val,
539 acpi_string * new_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 if (!init_val || !new_val)
542 return AE_BAD_PARAMETER;
543
544 *new_val = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400545 if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400547 acpi_os_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 *new_val = acpi_os_name;
549 }
550
551 return AE_OK;
552}
553
Thomas Renninger53aac442012-10-01 00:23:54 +0200554#ifdef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
555#include <linux/earlycpio.h>
556#include <linux/memblock.h>
557
558static u64 acpi_tables_addr;
559static int all_tables_size;
560
561/* Copied from acpica/tbutils.c:acpi_tb_checksum() */
Rashika66e162b2013-12-17 14:43:05 +0530562static u8 __init acpi_table_checksum(u8 *buffer, u32 length)
Thomas Renninger53aac442012-10-01 00:23:54 +0200563{
564 u8 sum = 0;
565 u8 *end = buffer + length;
566
567 while (buffer < end)
568 sum = (u8) (sum + *(buffer++));
569 return sum;
570}
571
572/* All but ACPI_SIG_RSDP and ACPI_SIG_FACS: */
573static const char * const table_sigs[] = {
574 ACPI_SIG_BERT, ACPI_SIG_CPEP, ACPI_SIG_ECDT, ACPI_SIG_EINJ,
575 ACPI_SIG_ERST, ACPI_SIG_HEST, ACPI_SIG_MADT, ACPI_SIG_MSCT,
576 ACPI_SIG_SBST, ACPI_SIG_SLIT, ACPI_SIG_SRAT, ACPI_SIG_ASF,
577 ACPI_SIG_BOOT, ACPI_SIG_DBGP, ACPI_SIG_DMAR, ACPI_SIG_HPET,
578 ACPI_SIG_IBFT, ACPI_SIG_IVRS, ACPI_SIG_MCFG, ACPI_SIG_MCHI,
579 ACPI_SIG_SLIC, ACPI_SIG_SPCR, ACPI_SIG_SPMI, ACPI_SIG_TCPA,
580 ACPI_SIG_UEFI, ACPI_SIG_WAET, ACPI_SIG_WDAT, ACPI_SIG_WDDT,
581 ACPI_SIG_WDRT, ACPI_SIG_DSDT, ACPI_SIG_FADT, ACPI_SIG_PSDT,
582 ACPI_SIG_RSDT, ACPI_SIG_XSDT, ACPI_SIG_SSDT, NULL };
583
Thomas Renninger53aac442012-10-01 00:23:54 +0200584#define ACPI_HEADER_SIZE sizeof(struct acpi_table_header)
585
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700586#define ACPI_OVERRIDE_TABLES 64
587static struct cpio_data __initdata acpi_initrd_files[ACPI_OVERRIDE_TABLES];
588
589#define MAP_CHUNK_SIZE (NR_FIX_BTMAPS << PAGE_SHIFT)
Thomas Renninger53aac442012-10-01 00:23:54 +0200590
591void __init acpi_initrd_override(void *data, size_t size)
592{
593 int sig, no, table_nr = 0, total_offset = 0;
594 long offset = 0;
595 struct acpi_table_header *table;
596 char cpio_path[32] = "kernel/firmware/acpi/";
597 struct cpio_data file;
Thomas Renninger53aac442012-10-01 00:23:54 +0200598
599 if (data == NULL || size == 0)
600 return;
601
602 for (no = 0; no < ACPI_OVERRIDE_TABLES; no++) {
603 file = find_cpio_data(cpio_path, data, size, &offset);
604 if (!file.data)
605 break;
606
607 data += offset;
608 size -= offset;
609
Tang Chen7702ae02013-08-14 17:37:08 +0800610 if (file.size < sizeof(struct acpi_table_header)) {
611 pr_err("ACPI OVERRIDE: Table smaller than ACPI header [%s%s]\n",
612 cpio_path, file.name);
613 continue;
614 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200615
616 table = file.data;
617
618 for (sig = 0; table_sigs[sig]; sig++)
619 if (!memcmp(table->signature, table_sigs[sig], 4))
620 break;
621
Tang Chen7702ae02013-08-14 17:37:08 +0800622 if (!table_sigs[sig]) {
623 pr_err("ACPI OVERRIDE: Unknown signature [%s%s]\n",
624 cpio_path, file.name);
625 continue;
626 }
627 if (file.size != table->length) {
628 pr_err("ACPI OVERRIDE: File length does not match table length [%s%s]\n",
629 cpio_path, file.name);
630 continue;
631 }
632 if (acpi_table_checksum(file.data, table->length)) {
633 pr_err("ACPI OVERRIDE: Bad table checksum [%s%s]\n",
634 cpio_path, file.name);
635 continue;
636 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200637
638 pr_info("%4.4s ACPI table found in initrd [%s%s][0x%x]\n",
639 table->signature, cpio_path, file.name, table->length);
640
641 all_tables_size += table->length;
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700642 acpi_initrd_files[table_nr].data = file.data;
643 acpi_initrd_files[table_nr].size = file.size;
Thomas Renninger53aac442012-10-01 00:23:54 +0200644 table_nr++;
645 }
646 if (table_nr == 0)
647 return;
648
649 acpi_tables_addr =
650 memblock_find_in_range(0, max_low_pfn_mapped << PAGE_SHIFT,
651 all_tables_size, PAGE_SIZE);
652 if (!acpi_tables_addr) {
653 WARN_ON(1);
654 return;
655 }
656 /*
657 * Only calling e820_add_reserve does not work and the
658 * tables are invalid (memory got used) later.
659 * memblock_reserve works as expected and the tables won't get modified.
660 * But it's not enough on X86 because ioremap will
661 * complain later (used by acpi_os_map_memory) that the pages
662 * that should get mapped are not marked "reserved".
663 * Both memblock_reserve and e820_add_region (via arch_reserve_mem_area)
664 * works fine.
665 */
Wang YanQinga6432de2013-04-23 01:19:19 +0200666 memblock_reserve(acpi_tables_addr, all_tables_size);
Thomas Renninger53aac442012-10-01 00:23:54 +0200667 arch_reserve_mem_area(acpi_tables_addr, all_tables_size);
668
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700669 /*
670 * early_ioremap only can remap 256k one time. If we map all
671 * tables one time, we will hit the limit. Need to map chunks
672 * one by one during copying the same as that in relocate_initrd().
673 */
Thomas Renninger53aac442012-10-01 00:23:54 +0200674 for (no = 0; no < table_nr; no++) {
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700675 unsigned char *src_p = acpi_initrd_files[no].data;
676 phys_addr_t size = acpi_initrd_files[no].size;
677 phys_addr_t dest_addr = acpi_tables_addr + total_offset;
678 phys_addr_t slop, clen;
679 char *dest_p;
680
681 total_offset += size;
682
683 while (size) {
684 slop = dest_addr & ~PAGE_MASK;
685 clen = size;
686 if (clen > MAP_CHUNK_SIZE - slop)
687 clen = MAP_CHUNK_SIZE - slop;
688 dest_p = early_ioremap(dest_addr & PAGE_MASK,
689 clen + slop);
690 memcpy(dest_p + slop, src_p, clen);
691 early_iounmap(dest_p, clen + slop);
692 src_p += clen;
693 dest_addr += clen;
694 size -= clen;
695 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200696 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200697}
698#endif /* CONFIG_ACPI_INITRD_TABLE_OVERRIDE */
699
Thomas Renninger325a8d362012-10-01 00:23:56 +0200700static void acpi_table_taint(struct acpi_table_header *table)
701{
702 pr_warn(PREFIX
703 "Override [%4.4s-%8.8s], this is unsafe: tainting kernel\n",
704 table->signature, table->oem_table_id);
Rusty Russell373d4d02013-01-21 17:17:39 +1030705 add_taint(TAINT_OVERRIDDEN_ACPI_TABLE, LOCKDEP_NOW_UNRELIABLE);
Thomas Renninger325a8d362012-10-01 00:23:56 +0200706}
707
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400710acpi_os_table_override(struct acpi_table_header * existing_table,
711 struct acpi_table_header ** new_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
713 if (!existing_table || !new_table)
714 return AE_BAD_PARAMETER;
715
Markus Gaugusch71fc47a2008-02-05 00:04:06 +0100716 *new_table = NULL;
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718#ifdef CONFIG_ACPI_CUSTOM_DSDT
719 if (strncmp(existing_table->signature, "DSDT", 4) == 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400720 *new_table = (struct acpi_table_header *)AmlCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721#endif
Thomas Renninger325a8d362012-10-01 00:23:56 +0200722 if (*new_table != NULL)
723 acpi_table_taint(existing_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return AE_OK;
725}
726
Bob Mooref7b004a2012-02-14 18:31:56 +0800727acpi_status
728acpi_os_physical_table_override(struct acpi_table_header *existing_table,
Thomas Renningerb2a35002012-10-01 00:23:55 +0200729 acpi_physical_address *address,
730 u32 *table_length)
Bob Mooref7b004a2012-02-14 18:31:56 +0800731{
Thomas Renningerb2a35002012-10-01 00:23:55 +0200732#ifndef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
733 *table_length = 0;
734 *address = 0;
735 return AE_OK;
736#else
737 int table_offset = 0;
738 struct acpi_table_header *table;
Bob Mooref7b004a2012-02-14 18:31:56 +0800739
Thomas Renningerb2a35002012-10-01 00:23:55 +0200740 *table_length = 0;
741 *address = 0;
742
743 if (!acpi_tables_addr)
744 return AE_OK;
745
746 do {
747 if (table_offset + ACPI_HEADER_SIZE > all_tables_size) {
748 WARN_ON(1);
749 return AE_OK;
750 }
751
752 table = acpi_os_map_memory(acpi_tables_addr + table_offset,
753 ACPI_HEADER_SIZE);
754
755 if (table_offset + table->length > all_tables_size) {
756 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
757 WARN_ON(1);
758 return AE_OK;
759 }
760
761 table_offset += table->length;
762
763 if (memcmp(existing_table->signature, table->signature, 4)) {
764 acpi_os_unmap_memory(table,
765 ACPI_HEADER_SIZE);
766 continue;
767 }
768
769 /* Only override tables with matching oem id */
770 if (memcmp(table->oem_table_id, existing_table->oem_table_id,
771 ACPI_OEM_TABLE_ID_SIZE)) {
772 acpi_os_unmap_memory(table,
773 ACPI_HEADER_SIZE);
774 continue;
775 }
776
777 table_offset -= table->length;
778 *table_length = table->length;
779 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
780 *address = acpi_tables_addr + table_offset;
781 break;
782 } while (table_offset + ACPI_HEADER_SIZE < all_tables_size);
783
Thomas Renninger325a8d362012-10-01 00:23:56 +0200784 if (*address != 0)
785 acpi_table_taint(existing_table);
Thomas Renningerb2a35002012-10-01 00:23:55 +0200786 return AE_OK;
787#endif
788}
Bob Mooref7b004a2012-02-14 18:31:56 +0800789
David Howells7d12e782006-10-05 14:55:46 +0100790static irqreturn_t acpi_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Len Brown5229e872008-02-06 01:26:55 -0500792 u32 handled;
793
794 handled = (*acpi_irq_handler) (acpi_irq_context);
795
796 if (handled) {
797 acpi_irq_handled++;
798 return IRQ_HANDLED;
Len Brown88bea182009-04-21 00:35:47 -0400799 } else {
800 acpi_irq_not_handled++;
Len Brown5229e872008-02-06 01:26:55 -0500801 return IRQ_NONE;
Len Brown88bea182009-04-21 00:35:47 -0400802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
805acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400806acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
807 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
809 unsigned int irq;
810
Len Brown5229e872008-02-06 01:26:55 -0500811 acpi_irq_stats_init();
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 /*
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100814 * ACPI interrupts different from the SCI in our copy of the FADT are
815 * not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 */
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100817 if (gsi != acpi_gbl_FADT.sci_interrupt)
818 return AE_BAD_PARAMETER;
819
820 if (acpi_irq_handler)
821 return AE_ALREADY_ACQUIRED;
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 if (acpi_gsi_to_irq(gsi, &irq) < 0) {
824 printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n",
825 gsi);
826 return AE_OK;
827 }
828
829 acpi_irq_handler = handler;
830 acpi_irq_context = context;
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +0200831 if (request_irq(irq, acpi_irq, IRQF_SHARED, "acpi", acpi_irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq);
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100833 acpi_irq_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return AE_NOT_ACQUIRED;
835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 return AE_OK;
838}
839
Len Brown4be44fc2005-08-05 00:44:28 -0400840acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100842 if (irq != acpi_gbl_FADT.sci_interrupt)
843 return AE_BAD_PARAMETER;
844
845 free_irq(irq, acpi_irq);
846 acpi_irq_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 return AE_OK;
849}
850
851/*
852 * Running in interpreter thread context, safe to sleep
853 */
854
Lin Ming439913f2010-01-28 10:53:19 +0800855void acpi_os_sleep(u64 ms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
Liu Chuansheng30282292013-09-12 01:42:57 +0800857 msleep(ms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
Len Brown4be44fc2005-08-05 00:44:28 -0400859
Len Brown4be44fc2005-08-05 00:44:28 -0400860void acpi_os_stall(u32 us)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
862 while (us) {
863 u32 delay = 1000;
864
865 if (delay > us)
866 delay = us;
867 udelay(delay);
868 touch_nmi_watchdog();
869 us -= delay;
870 }
871}
Len Brown4be44fc2005-08-05 00:44:28 -0400872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873/*
874 * Support ACPI 3.0 AML Timer operand
875 * Returns 64-bit free-running, monotonically increasing timer
876 * with 100ns granularity
877 */
Len Brown4be44fc2005-08-05 00:44:28 -0400878u64 acpi_os_get_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Mika Westerberg10619062013-05-23 10:27:46 +0300880 u64 time_ns = ktime_to_ns(ktime_get());
881 do_div(time_ns, 100);
882 return time_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
Len Brown4be44fc2005-08-05 00:44:28 -0400885acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
887 u32 dummy;
888
889 if (!value)
890 value = &dummy;
891
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800892 *value = 0;
893 if (width <= 8) {
Len Brown4be44fc2005-08-05 00:44:28 -0400894 *(u8 *) value = inb(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800895 } else if (width <= 16) {
Len Brown4be44fc2005-08-05 00:44:28 -0400896 *(u16 *) value = inw(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800897 } else if (width <= 32) {
Len Brown4be44fc2005-08-05 00:44:28 -0400898 *(u32 *) value = inl(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800899 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 BUG();
901 }
902
903 return AE_OK;
904}
Len Brown4be44fc2005-08-05 00:44:28 -0400905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906EXPORT_SYMBOL(acpi_os_read_port);
907
Len Brown4be44fc2005-08-05 00:44:28 -0400908acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800910 if (width <= 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 outb(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800912 } else if (width <= 16) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 outw(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800914 } else if (width <= 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 outl(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800916 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 BUG();
918 }
919
920 return AE_OK;
921}
Len Brown4be44fc2005-08-05 00:44:28 -0400922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923EXPORT_SYMBOL(acpi_os_write_port);
924
Myron Stowee615bf52012-01-20 19:13:24 -0700925#ifdef readq
926static inline u64 read64(const volatile void __iomem *addr)
927{
928 return readq(addr);
929}
930#else
931static inline u64 read64(const volatile void __iomem *addr)
932{
933 u64 l, h;
934 l = readl(addr);
935 h = readl(addr+4);
936 return l | (h << 32);
937}
938#endif
939
940acpi_status
Bob Moore653f4b52012-02-14 18:29:55 +0800941acpi_os_read_memory(acpi_physical_address phys_addr, u64 *value, u32 width)
Myron Stowee615bf52012-01-20 19:13:24 -0700942{
943 void __iomem *virt_addr;
944 unsigned int size = width / 8;
945 bool unmap = false;
946 u64 dummy;
947
948 rcu_read_lock();
949 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
950 if (!virt_addr) {
951 rcu_read_unlock();
952 virt_addr = acpi_os_ioremap(phys_addr, size);
953 if (!virt_addr)
954 return AE_BAD_ADDRESS;
955 unmap = true;
956 }
957
958 if (!value)
959 value = &dummy;
960
961 switch (width) {
962 case 8:
963 *(u8 *) value = readb(virt_addr);
964 break;
965 case 16:
966 *(u16 *) value = readw(virt_addr);
967 break;
968 case 32:
969 *(u32 *) value = readl(virt_addr);
970 break;
971 case 64:
972 *(u64 *) value = read64(virt_addr);
973 break;
974 default:
975 BUG();
976 }
977
978 if (unmap)
979 iounmap(virt_addr);
980 else
981 rcu_read_unlock();
982
983 return AE_OK;
984}
985
Myron Stowee615bf52012-01-20 19:13:24 -0700986#ifdef writeq
987static inline void write64(u64 val, volatile void __iomem *addr)
988{
989 writeq(val, addr);
990}
991#else
992static inline void write64(u64 val, volatile void __iomem *addr)
993{
994 writel(val, addr);
995 writel(val>>32, addr+4);
996}
997#endif
998
999acpi_status
Bob Moore653f4b52012-02-14 18:29:55 +08001000acpi_os_write_memory(acpi_physical_address phys_addr, u64 value, u32 width)
Myron Stowee615bf52012-01-20 19:13:24 -07001001{
1002 void __iomem *virt_addr;
1003 unsigned int size = width / 8;
1004 bool unmap = false;
1005
1006 rcu_read_lock();
1007 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
1008 if (!virt_addr) {
1009 rcu_read_unlock();
1010 virt_addr = acpi_os_ioremap(phys_addr, size);
1011 if (!virt_addr)
1012 return AE_BAD_ADDRESS;
1013 unmap = true;
1014 }
1015
1016 switch (width) {
1017 case 8:
1018 writeb(value, virt_addr);
1019 break;
1020 case 16:
1021 writew(value, virt_addr);
1022 break;
1023 case 32:
1024 writel(value, virt_addr);
1025 break;
1026 case 64:
1027 write64(value, virt_addr);
1028 break;
1029 default:
1030 BUG();
1031 }
1032
1033 if (unmap)
1034 iounmap(virt_addr);
1035 else
1036 rcu_read_unlock();
1037
1038 return AE_OK;
1039}
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001042acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Bob Moorec5f02312010-08-06 08:57:53 +08001043 u64 *value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
1045 int result, size;
Bob Moorec5f02312010-08-06 08:57:53 +08001046 u32 value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 if (!value)
1049 return AE_BAD_PARAMETER;
1050
1051 switch (width) {
1052 case 8:
1053 size = 1;
1054 break;
1055 case 16:
1056 size = 2;
1057 break;
1058 case 32:
1059 size = 4;
1060 break;
1061 default:
1062 return AE_ERROR;
1063 }
1064
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -05001065 result = raw_pci_read(pci_id->segment, pci_id->bus,
1066 PCI_DEVFN(pci_id->device, pci_id->function),
Bob Moorec5f02312010-08-06 08:57:53 +08001067 reg, size, &value32);
1068 *value = value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 return (result ? AE_ERROR : AE_OK);
1071}
Len Brown4be44fc2005-08-05 00:44:28 -04001072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001074acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Lin Ming439913f2010-01-28 10:53:19 +08001075 u64 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076{
1077 int result, size;
1078
1079 switch (width) {
1080 case 8:
1081 size = 1;
1082 break;
1083 case 16:
1084 size = 2;
1085 break;
1086 case 32:
1087 size = 4;
1088 break;
1089 default:
1090 return AE_ERROR;
1091 }
1092
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -05001093 result = raw_pci_write(pci_id->segment, pci_id->bus,
1094 PCI_DEVFN(pci_id->device, pci_id->function),
1095 reg, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 return (result ? AE_ERROR : AE_OK);
1098}
1099
David Howells65f27f32006-11-22 14:55:48 +00001100static void acpi_os_execute_deferred(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101{
David Howells65f27f32006-11-22 14:55:48 +00001102 struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work);
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -04001103
Zhang Rui19cd8472008-08-28 10:05:06 +08001104 dpc->function(dpc->context);
1105 kfree(dpc);
Zhang Rui19cd8472008-08-28 10:05:06 +08001106}
1107
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -04001108/*******************************************************************************
1109 *
1110 * FUNCTION: acpi_os_execute
1111 *
1112 * PARAMETERS: Type - Type of the callback
1113 * Function - Function to be executed
1114 * Context - Function parameters
1115 *
1116 * RETURN: Status
1117 *
1118 * DESCRIPTION: Depending on type, either queues function for deferred execution or
1119 * immediately executes function on a separate thread.
1120 *
1121 ******************************************************************************/
1122
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001123acpi_status acpi_os_execute(acpi_execute_type type,
1124 acpi_osd_exec_callback function, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
Len Brown4be44fc2005-08-05 00:44:28 -04001126 acpi_status status = AE_OK;
1127 struct acpi_os_dpc *dpc;
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +03001128 struct workqueue_struct *queue;
Zhang Rui19cd8472008-08-28 10:05:06 +08001129 int ret;
Len Brown72945b22006-07-12 22:46:42 -04001130 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
1131 "Scheduling function [%p(%p)] for deferred execution.\n",
1132 function, context));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 /*
1135 * Allocate/initialize DPC structure. Note that this memory will be
David Howells65f27f32006-11-22 14:55:48 +00001136 * freed by the callee. The kernel handles the work_struct list in a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 * way that allows us to also free its memory inside the callee.
1138 * Because we may want to schedule several tasks with different
1139 * parameters we can't use the approach some kernel code uses of
David Howells65f27f32006-11-22 14:55:48 +00001140 * having a static work_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 */
Len Brown72945b22006-07-12 22:46:42 -04001142
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001143 dpc = kzalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 if (!dpc)
Lin Ming889c78b2008-12-31 09:23:57 +08001145 return AE_NO_MEMORY;
Linus Torvaldsb976fe12006-11-17 19:31:09 -08001146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 dpc->function = function;
1148 dpc->context = context;
Linus Torvaldsb976fe12006-11-17 19:31:09 -08001149
Zhang Ruic02256b2009-06-23 10:20:29 +08001150 /*
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001151 * To prevent lockdep from complaining unnecessarily, make sure that
1152 * there is a different static lockdep key for each workqueue by using
1153 * INIT_WORK() for each of them separately.
Zhang Ruic02256b2009-06-23 10:20:29 +08001154 */
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001155 if (type == OSL_NOTIFY_HANDLER) {
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001156 queue = kacpi_notify_wq;
Zhang Ruibc736752010-03-22 15:48:54 +08001157 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001158 } else {
1159 queue = kacpid_wq;
Zhang Ruibc736752010-03-22 15:48:54 +08001160 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001161 }
Zhang Ruibc736752010-03-22 15:48:54 +08001162
Tejun Heo8fec62b2010-06-29 10:07:09 +02001163 /*
1164 * On some machines, a software-initiated SMI causes corruption unless
1165 * the SMI runs on CPU 0. An SMI can be initiated by any AML, but
1166 * typically it's done in GPE-related methods that are run via
1167 * workqueues, so we can avoid the known corruption cases by always
1168 * queueing on CPU 0.
1169 */
1170 ret = queue_work_on(0, queue, &dpc->work);
Zhang Rui19cd8472008-08-28 10:05:06 +08001171
1172 if (!ret) {
Lin Ming55ac9a02008-09-28 14:51:56 +08001173 printk(KERN_ERR PREFIX
1174 "Call to queue_work() failed.\n");
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +03001175 status = AE_ERROR;
1176 kfree(dpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
Lin Ming889c78b2008-12-31 09:23:57 +08001178 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -04001180EXPORT_SYMBOL(acpi_os_execute);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Lin Mingbd6f10a2012-05-22 16:43:49 +08001182void acpi_os_wait_events_complete(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
Lv Zheng90253a72014-11-05 15:06:13 +08001184 /*
1185 * Make sure the GPE handler or the fixed event handler is not used
1186 * on another CPU after removal.
1187 */
1188 if (acpi_irq_handler)
1189 synchronize_hardirq(acpi_gbl_FADT.sci_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 flush_workqueue(kacpid_wq);
Zhang Rui2f67a062008-04-29 02:34:42 -04001191 flush_workqueue(kacpi_notify_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192}
Len Brown4be44fc2005-08-05 00:44:28 -04001193
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001194struct acpi_hp_work {
1195 struct work_struct work;
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001196 struct acpi_device *adev;
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001197 u32 src;
1198};
1199
1200static void acpi_hotplug_work_fn(struct work_struct *work)
1201{
1202 struct acpi_hp_work *hpw = container_of(work, struct acpi_hp_work, work);
1203
1204 acpi_os_wait_events_complete();
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001205 acpi_device_hotplug(hpw->adev, hpw->src);
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001206 kfree(hpw);
1207}
1208
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001209acpi_status acpi_hotplug_schedule(struct acpi_device *adev, u32 src)
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001210{
1211 struct acpi_hp_work *hpw;
1212
1213 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001214 "Scheduling hotplug event (%p, %u) for deferred execution.\n",
1215 adev, src));
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001216
1217 hpw = kmalloc(sizeof(*hpw), GFP_KERNEL);
1218 if (!hpw)
1219 return AE_NO_MEMORY;
1220
1221 INIT_WORK(&hpw->work, acpi_hotplug_work_fn);
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001222 hpw->adev = adev;
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001223 hpw->src = src;
1224 /*
1225 * We can't run hotplug code in kacpid_wq/kacpid_notify_wq etc., because
1226 * the hotplug code may call driver .remove() functions, which may
1227 * invoke flush_scheduled_work()/acpi_os_wait_events_complete() to flush
1228 * these workqueues.
1229 */
1230 if (!queue_work(kacpi_hotplug_wq, &hpw->work)) {
1231 kfree(hpw);
1232 return AE_ERROR;
1233 }
1234 return AE_OK;
1235}
1236
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001237bool acpi_queue_hotplug_work(struct work_struct *work)
1238{
1239 return queue_work(kacpi_hotplug_wq, work);
1240}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001243acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
Len Brown4be44fc2005-08-05 00:44:28 -04001245 struct semaphore *sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
jhbird.choi@samsung.com2d0acb42014-03-20 16:35:56 +09001247 sem = acpi_os_allocate_zeroed(sizeof(struct semaphore));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -04001249 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
1251 sema_init(sem, initial_units);
1252
Len Brown4be44fc2005-08-05 00:44:28 -04001253 *handle = (acpi_handle *) sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Len Brown4be44fc2005-08-05 00:44:28 -04001255 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n",
1256 *handle, initial_units));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Patrick Mocheld550d982006-06-27 00:41:40 -04001258 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261/*
1262 * TODO: A better way to delete semaphores? Linux doesn't have a
1263 * 'delete_semaphore()' function -- may result in an invalid
1264 * pointer dereference for non-synchronized consumers. Should
1265 * we at least check for blocked threads and signal/cancel them?
1266 */
1267
Len Brown4be44fc2005-08-05 00:44:28 -04001268acpi_status acpi_os_delete_semaphore(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
Len Brown4be44fc2005-08-05 00:44:28 -04001270 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -04001273 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Len Brown4be44fc2005-08-05 00:44:28 -04001275 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001277 BUG_ON(!list_empty(&sem->wait_list));
Len Brown02438d82006-06-30 03:19:10 -04001278 kfree(sem);
Len Brown4be44fc2005-08-05 00:44:28 -04001279 sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Patrick Mocheld550d982006-06-27 00:41:40 -04001281 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 * TODO: Support for units > 1?
1286 */
Len Brown4be44fc2005-08-05 00:44:28 -04001287acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288{
Len Brown4be44fc2005-08-05 00:44:28 -04001289 acpi_status status = AE_OK;
1290 struct semaphore *sem = (struct semaphore *)handle;
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001291 long jiffies;
Len Brown4be44fc2005-08-05 00:44:28 -04001292 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001295 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -04001298 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Len Brown4be44fc2005-08-05 00:44:28 -04001300 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n",
1301 handle, units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001303 if (timeout == ACPI_WAIT_FOREVER)
1304 jiffies = MAX_SCHEDULE_TIMEOUT;
1305 else
1306 jiffies = msecs_to_jiffies(timeout);
Al Stonecad15252013-12-04 12:59:11 -07001307
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001308 ret = down_timeout(sem, jiffies);
1309 if (ret)
1310 status = AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312 if (ACPI_FAILURE(status)) {
Bjorn Helgaas9e7e2c02006-04-27 05:25:00 -04001313 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -04001314 "Failed to acquire semaphore[%p|%d|%d], %s",
Len Brown4be44fc2005-08-05 00:44:28 -04001315 handle, units, timeout,
1316 acpi_format_exception(status)));
1317 } else {
1318 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -04001319 "Acquired semaphore[%p|%d|%d]", handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001320 units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 }
1322
Patrick Mocheld550d982006-06-27 00:41:40 -04001323 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326/*
1327 * TODO: Support for units > 1?
1328 */
Len Brown4be44fc2005-08-05 00:44:28 -04001329acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
Len Brown4be44fc2005-08-05 00:44:28 -04001331 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001334 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -04001337 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Len Brown4be44fc2005-08-05 00:44:28 -04001339 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle,
1340 units));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342 up(sem);
1343
Patrick Mocheld550d982006-06-27 00:41:40 -04001344 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345}
Len Brown4be44fc2005-08-05 00:44:28 -04001346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -04001348u32 acpi_os_get_line(char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
1350
1351#ifdef ENABLE_DEBUGGER
1352 if (acpi_in_debugger) {
1353 u32 chars;
1354
1355 kdb_read(buffer, sizeof(line_buf));
1356
1357 /* remove the CR kdb includes */
1358 chars = strlen(buffer) - 1;
1359 buffer[chars] = '\0';
1360 }
1361#endif
1362
1363 return 0;
1364}
Len Brown4be44fc2005-08-05 00:44:28 -04001365#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Len Brown4be44fc2005-08-05 00:44:28 -04001367acpi_status acpi_os_signal(u32 function, void *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
Len Brown4be44fc2005-08-05 00:44:28 -04001369 switch (function) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 case ACPI_SIGNAL_FATAL:
1371 printk(KERN_ERR PREFIX "Fatal opcode executed\n");
1372 break;
1373 case ACPI_SIGNAL_BREAKPOINT:
1374 /*
1375 * AML Breakpoint
1376 * ACPI spec. says to treat it as a NOP unless
1377 * you are debugging. So if/when we integrate
1378 * AML debugger into the kernel debugger its
1379 * hook will go here. But until then it is
1380 * not useful to print anything on breakpoints.
1381 */
1382 break;
1383 default:
1384 break;
1385 }
1386
1387 return AE_OK;
1388}
Len Brown4be44fc2005-08-05 00:44:28 -04001389
Len Brown4be44fc2005-08-05 00:44:28 -04001390static int __init acpi_os_name_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
1392 char *p = acpi_os_name;
Len Brown4be44fc2005-08-05 00:44:28 -04001393 int count = ACPI_MAX_OVERRIDE_LEN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 if (!str || !*str)
1396 return 0;
1397
Dan Carpenter5e2be4e2013-10-18 12:01:43 +03001398 for (; count-- && *str; str++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 if (isalnum(*str) || *str == ' ' || *str == ':')
1400 *p++ = *str;
1401 else if (*str == '\'' || *str == '"')
1402 continue;
1403 else
1404 break;
1405 }
1406 *p = 0;
1407
1408 return 1;
Len Brown4be44fc2005-08-05 00:44:28 -04001409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410}
1411
1412__setup("acpi_os_name=", acpi_os_name_setup);
1413
Lin Ming12d32062010-12-09 16:51:06 +08001414#define OSI_STRING_LENGTH_MAX 64 /* arbitrary */
1415#define OSI_STRING_ENTRIES_MAX 16 /* arbitrary */
1416
1417struct osi_setup_entry {
1418 char string[OSI_STRING_LENGTH_MAX];
1419 bool enable;
1420};
1421
Hanjun Guoe73d3132013-08-13 18:31:15 +08001422static struct osi_setup_entry
1423 osi_setup_entries[OSI_STRING_ENTRIES_MAX] __initdata = {
Shaohua Liaa165972011-07-28 13:48:43 -07001424 {"Module Device", true},
1425 {"Processor Device", true},
1426 {"3.0 _SCP Extensions", true},
1427 {"Processor Aggregator Device", true},
1428};
Lin Ming12d32062010-12-09 16:51:06 +08001429
Lin Mingd90aa922010-12-09 16:50:52 +08001430void __init acpi_osi_setup(char *str)
1431{
Lin Ming12d32062010-12-09 16:51:06 +08001432 struct osi_setup_entry *osi;
1433 bool enable = true;
1434 int i;
1435
Lin Mingd90aa922010-12-09 16:50:52 +08001436 if (!acpi_gbl_create_osi_method)
1437 return;
1438
1439 if (str == NULL || *str == '\0') {
1440 printk(KERN_INFO PREFIX "_OSI method disabled\n");
1441 acpi_gbl_create_osi_method = FALSE;
Lin Ming12d32062010-12-09 16:51:06 +08001442 return;
1443 }
1444
1445 if (*str == '!') {
1446 str++;
Lv Zheng5dc17982013-07-22 16:08:25 +08001447 if (*str == '\0') {
1448 osi_linux.default_disabling = 1;
1449 return;
Lv Zheng741d8122013-07-22 16:08:36 +08001450 } else if (*str == '*') {
1451 acpi_update_interfaces(ACPI_DISABLE_ALL_STRINGS);
1452 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1453 osi = &osi_setup_entries[i];
1454 osi->enable = false;
1455 }
1456 return;
Lv Zheng5dc17982013-07-22 16:08:25 +08001457 }
Lin Ming12d32062010-12-09 16:51:06 +08001458 enable = false;
1459 }
1460
1461 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1462 osi = &osi_setup_entries[i];
1463 if (!strcmp(osi->string, str)) {
1464 osi->enable = enable;
1465 break;
1466 } else if (osi->string[0] == '\0') {
1467 osi->enable = enable;
1468 strncpy(osi->string, str, OSI_STRING_LENGTH_MAX);
1469 break;
1470 }
1471 }
Lin Mingd90aa922010-12-09 16:50:52 +08001472}
1473
Len Brownd4b7dc42008-01-23 20:50:56 -05001474static void __init set_osi_linux(unsigned int enable)
1475{
Lin Mingd90aa922010-12-09 16:50:52 +08001476 if (osi_linux.enable != enable)
Len Brownd4b7dc42008-01-23 20:50:56 -05001477 osi_linux.enable = enable;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001478
1479 if (osi_linux.enable)
1480 acpi_osi_setup("Linux");
1481 else
1482 acpi_osi_setup("!Linux");
1483
Len Brownd4b7dc42008-01-23 20:50:56 -05001484 return;
1485}
Len Brownf5076542007-05-30 00:10:38 -04001486
Len Brownd4b7dc42008-01-23 20:50:56 -05001487static void __init acpi_cmdline_osi_linux(unsigned int enable)
1488{
Lin Mingd90aa922010-12-09 16:50:52 +08001489 osi_linux.cmdline = 1; /* cmdline set the default and override DMI */
1490 osi_linux.dmi = 0;
Len Brownd4b7dc42008-01-23 20:50:56 -05001491 set_osi_linux(enable);
Len Brownf5076542007-05-30 00:10:38 -04001492
Len Brownd4b7dc42008-01-23 20:50:56 -05001493 return;
1494}
1495
1496void __init acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d)
1497{
Len Brownd4b7dc42008-01-23 20:50:56 -05001498 printk(KERN_NOTICE PREFIX "DMI detected: %s\n", d->ident);
1499
1500 if (enable == -1)
1501 return;
1502
Lin Mingd90aa922010-12-09 16:50:52 +08001503 osi_linux.dmi = 1; /* DMI knows that this box asks OSI(Linux) */
Len Brownd4b7dc42008-01-23 20:50:56 -05001504 set_osi_linux(enable);
1505
Len Brownf5076542007-05-30 00:10:38 -04001506 return;
1507}
1508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509/*
Len Brownae00d812007-05-29 18:43:33 -04001510 * Modify the list of "OS Interfaces" reported to BIOS via _OSI
1511 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 * empty string disables _OSI
Len Brownae00d812007-05-29 18:43:33 -04001513 * string starting with '!' disables that string
1514 * otherwise string is added to list, augmenting built-in strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 */
Lin Mingb0ed7a92010-08-06 09:35:51 +08001516static void __init acpi_osi_setup_late(void)
1517{
Lin Ming12d32062010-12-09 16:51:06 +08001518 struct osi_setup_entry *osi;
1519 char *str;
1520 int i;
Lin Mingd90aa922010-12-09 16:50:52 +08001521 acpi_status status;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001522
Lv Zheng5dc17982013-07-22 16:08:25 +08001523 if (osi_linux.default_disabling) {
1524 status = acpi_update_interfaces(ACPI_DISABLE_ALL_VENDOR_STRINGS);
1525
1526 if (ACPI_SUCCESS(status))
1527 printk(KERN_INFO PREFIX "Disabled all _OSI OS vendors\n");
1528 }
1529
Lin Ming12d32062010-12-09 16:51:06 +08001530 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1531 osi = &osi_setup_entries[i];
1532 str = osi->string;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001533
Lin Ming12d32062010-12-09 16:51:06 +08001534 if (*str == '\0')
1535 break;
1536 if (osi->enable) {
1537 status = acpi_install_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001538
Lin Ming12d32062010-12-09 16:51:06 +08001539 if (ACPI_SUCCESS(status))
1540 printk(KERN_INFO PREFIX "Added _OSI(%s)\n", str);
1541 } else {
1542 status = acpi_remove_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001543
Lin Ming12d32062010-12-09 16:51:06 +08001544 if (ACPI_SUCCESS(status))
1545 printk(KERN_INFO PREFIX "Deleted _OSI(%s)\n", str);
1546 }
Lin Mingb0ed7a92010-08-06 09:35:51 +08001547 }
1548}
1549
Lin Mingd90aa922010-12-09 16:50:52 +08001550static int __init osi_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
Lin Mingd90aa922010-12-09 16:50:52 +08001552 if (str && !strcmp("Linux", str))
1553 acpi_cmdline_osi_linux(1);
1554 else if (str && !strcmp("!Linux", str))
1555 acpi_cmdline_osi_linux(0);
1556 else
1557 acpi_osi_setup(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
1559 return 1;
1560}
1561
Lin Mingd90aa922010-12-09 16:50:52 +08001562__setup("acpi_osi=", osi_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Bob Moore22b5afc2014-03-24 14:49:00 +08001564/*
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001565 * Disable the auto-serialization of named objects creation methods.
Bob Moore22b5afc2014-03-24 14:49:00 +08001566 *
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001567 * This feature is enabled by default. It marks the AML control methods
Bob Moore22b5afc2014-03-24 14:49:00 +08001568 * that contain the opcodes to create named objects as "Serialized".
1569 */
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001570static int __init acpi_no_auto_serialize_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001572 acpi_gbl_auto_serialize_methods = FALSE;
1573 pr_info("ACPI: auto-serialization disabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575 return 1;
1576}
1577
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001578__setup("acpi_no_auto_serialize", acpi_no_auto_serialize_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Thomas Renningerdf92e692008-02-04 23:31:22 -08001580/* Check of resource interference between native drivers and ACPI
1581 * OperationRegions (SystemIO and System Memory only).
1582 * IO ports and memory declared in ACPI might be used by the ACPI subsystem
1583 * in arbitrary AML code and can interfere with legacy drivers.
1584 * acpi_enforce_resources= can be set to:
1585 *
Luca Tettamanti7e905602009-03-30 00:01:27 +02001586 * - strict (default) (2)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001587 * -> further driver trying to access the resources will not load
Luca Tettamanti7e905602009-03-30 00:01:27 +02001588 * - lax (1)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001589 * -> further driver trying to access the resources will load, but you
1590 * get a system message that something might go wrong...
1591 *
1592 * - no (0)
1593 * -> ACPI Operation Region resources will not be registered
1594 *
1595 */
1596#define ENFORCE_RESOURCES_STRICT 2
1597#define ENFORCE_RESOURCES_LAX 1
1598#define ENFORCE_RESOURCES_NO 0
1599
Luca Tettamanti7e905602009-03-30 00:01:27 +02001600static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001601
1602static int __init acpi_enforce_resources_setup(char *str)
1603{
1604 if (str == NULL || *str == '\0')
1605 return 0;
1606
1607 if (!strcmp("strict", str))
1608 acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1609 else if (!strcmp("lax", str))
1610 acpi_enforce_resources = ENFORCE_RESOURCES_LAX;
1611 else if (!strcmp("no", str))
1612 acpi_enforce_resources = ENFORCE_RESOURCES_NO;
1613
1614 return 1;
1615}
1616
1617__setup("acpi_enforce_resources=", acpi_enforce_resources_setup);
1618
1619/* Check for resource conflicts between ACPI OperationRegions and native
1620 * drivers */
Jean Delvare876fba42009-11-11 15:22:15 +01001621int acpi_check_resource_conflict(const struct resource *res)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001622{
Lin Mingf654c0f2012-01-12 13:10:32 +08001623 acpi_adr_space_type space_id;
1624 acpi_size length;
1625 u8 warn = 0;
1626 int clash = 0;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001627
1628 if (acpi_enforce_resources == ENFORCE_RESOURCES_NO)
1629 return 0;
1630 if (!(res->flags & IORESOURCE_IO) && !(res->flags & IORESOURCE_MEM))
1631 return 0;
1632
Lin Mingf654c0f2012-01-12 13:10:32 +08001633 if (res->flags & IORESOURCE_IO)
1634 space_id = ACPI_ADR_SPACE_SYSTEM_IO;
1635 else
1636 space_id = ACPI_ADR_SPACE_SYSTEM_MEMORY;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001637
Alexandru Gheorghiue4f52242013-03-12 08:53:02 +00001638 length = resource_size(res);
Lin Mingf654c0f2012-01-12 13:10:32 +08001639 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO)
1640 warn = 1;
1641 clash = acpi_check_address_range(space_id, res->start, length, warn);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001642
1643 if (clash) {
1644 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO) {
Jean Delvare14f03342009-09-08 15:31:46 +02001645 if (acpi_enforce_resources == ENFORCE_RESOURCES_LAX)
1646 printk(KERN_NOTICE "ACPI: This conflict may"
1647 " cause random problems and system"
1648 " instability\n");
1649 printk(KERN_INFO "ACPI: If an ACPI driver is available"
1650 " for this device, you should use it instead of"
1651 " the native driver\n");
Thomas Renningerdf92e692008-02-04 23:31:22 -08001652 }
1653 if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT)
1654 return -EBUSY;
1655 }
1656 return 0;
1657}
Thomas Renninger443dea72008-02-04 23:31:23 -08001658EXPORT_SYMBOL(acpi_check_resource_conflict);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001659
1660int acpi_check_region(resource_size_t start, resource_size_t n,
1661 const char *name)
1662{
1663 struct resource res = {
1664 .start = start,
1665 .end = start + n - 1,
1666 .name = name,
1667 .flags = IORESOURCE_IO,
1668 };
1669
1670 return acpi_check_resource_conflict(&res);
1671}
1672EXPORT_SYMBOL(acpi_check_region);
1673
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674/*
Jean Delvare70dd6be2010-05-27 19:58:37 +02001675 * Let drivers know whether the resource checks are effective
1676 */
1677int acpi_resources_are_enforced(void)
1678{
1679 return acpi_enforce_resources == ENFORCE_RESOURCES_STRICT;
1680}
1681EXPORT_SYMBOL(acpi_resources_are_enforced);
1682
1683/*
Lin Ming9f63b882011-03-23 17:26:34 +08001684 * Deallocate the memory for a spinlock.
1685 */
1686void acpi_os_delete_lock(acpi_spinlock handle)
1687{
1688 ACPI_FREE(handle);
1689}
1690
1691/*
Robert Moore73459f72005-06-24 00:00:00 -04001692 * Acquire a spinlock.
1693 *
1694 * handle is a pointer to the spinlock_t.
Robert Moore73459f72005-06-24 00:00:00 -04001695 */
1696
Bob Moore967440e32006-06-23 17:04:00 -04001697acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp)
Robert Moore73459f72005-06-24 00:00:00 -04001698{
Bob Mooreb8e4d892006-01-27 16:43:00 -05001699 acpi_cpu_flags flags;
Bob Moore967440e32006-06-23 17:04:00 -04001700 spin_lock_irqsave(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001701 return flags;
1702}
1703
1704/*
1705 * Release a spinlock. See above.
1706 */
1707
Bob Moore967440e32006-06-23 17:04:00 -04001708void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags)
Robert Moore73459f72005-06-24 00:00:00 -04001709{
Bob Moore967440e32006-06-23 17:04:00 -04001710 spin_unlock_irqrestore(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001711}
1712
Robert Moore73459f72005-06-24 00:00:00 -04001713#ifndef ACPI_USE_LOCAL_CACHE
1714
1715/*******************************************************************************
1716 *
1717 * FUNCTION: acpi_os_create_cache
1718 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001719 * PARAMETERS: name - Ascii name for the cache
1720 * size - Size of each cached object
1721 * depth - Maximum depth of the cache (in objects) <ignored>
1722 * cache - Where the new cache object is returned
Robert Moore73459f72005-06-24 00:00:00 -04001723 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001724 * RETURN: status
Robert Moore73459f72005-06-24 00:00:00 -04001725 *
1726 * DESCRIPTION: Create a cache object
1727 *
1728 ******************************************************************************/
1729
1730acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001731acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache)
Robert Moore73459f72005-06-24 00:00:00 -04001732{
Paul Mundt20c2df82007-07-20 10:11:58 +09001733 *cache = kmem_cache_create(name, size, 0, 0, NULL);
Adrian Bunka6fdbf92006-12-19 12:56:13 -08001734 if (*cache == NULL)
Bob Mooreb229cf92006-04-21 17:15:00 -04001735 return AE_ERROR;
1736 else
1737 return AE_OK;
Robert Moore73459f72005-06-24 00:00:00 -04001738}
1739
1740/*******************************************************************************
1741 *
1742 * FUNCTION: acpi_os_purge_cache
1743 *
1744 * PARAMETERS: Cache - Handle to cache object
1745 *
1746 * RETURN: Status
1747 *
1748 * DESCRIPTION: Free all objects within the requested cache.
1749 *
1750 ******************************************************************************/
1751
Len Brown4be44fc2005-08-05 00:44:28 -04001752acpi_status acpi_os_purge_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001753{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001754 kmem_cache_shrink(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001755 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001756}
1757
1758/*******************************************************************************
1759 *
1760 * FUNCTION: acpi_os_delete_cache
1761 *
1762 * PARAMETERS: Cache - Handle to cache object
1763 *
1764 * RETURN: Status
1765 *
1766 * DESCRIPTION: Free all objects within the requested cache and delete the
1767 * cache object.
1768 *
1769 ******************************************************************************/
1770
Len Brown4be44fc2005-08-05 00:44:28 -04001771acpi_status acpi_os_delete_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001772{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001773 kmem_cache_destroy(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001774 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001775}
1776
1777/*******************************************************************************
1778 *
1779 * FUNCTION: acpi_os_release_object
1780 *
1781 * PARAMETERS: Cache - Handle to cache object
1782 * Object - The object to be released
1783 *
1784 * RETURN: None
1785 *
1786 * DESCRIPTION: Release an object to the specified cache. If cache is full,
1787 * the object is deleted.
1788 *
1789 ******************************************************************************/
1790
Len Brown4be44fc2005-08-05 00:44:28 -04001791acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object)
Robert Moore73459f72005-06-24 00:00:00 -04001792{
Len Brown4be44fc2005-08-05 00:44:28 -04001793 kmem_cache_free(cache, object);
1794 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001795}
Robert Moore73459f72005-06-24 00:00:00 -04001796#endif
Myron Stowed362eda2010-10-21 14:24:04 -06001797
Lv Zhenga94e88c2014-04-04 12:39:11 +08001798static int __init acpi_no_static_ssdt_setup(char *s)
Lv Zhengb75dd292013-06-08 00:58:48 +00001799{
Lv Zhenga94e88c2014-04-04 12:39:11 +08001800 acpi_gbl_disable_ssdt_table_install = TRUE;
1801 pr_info("ACPI: static SSDT installation disabled\n");
Lv Zhengb75dd292013-06-08 00:58:48 +00001802
Lv Zhenga94e88c2014-04-04 12:39:11 +08001803 return 0;
Lv Zhengb75dd292013-06-08 00:58:48 +00001804}
1805
Lv Zhenga94e88c2014-04-04 12:39:11 +08001806early_param("acpi_no_static_ssdt", acpi_no_static_ssdt_setup);
Lv Zhengb75dd292013-06-08 00:58:48 +00001807
Lv Zheng4dde5072014-02-11 11:01:52 +08001808static int __init acpi_disable_return_repair(char *s)
1809{
1810 printk(KERN_NOTICE PREFIX
1811 "ACPI: Predefined validation mechanism disabled\n");
1812 acpi_gbl_disable_auto_repair = TRUE;
1813
1814 return 1;
1815}
1816
1817__setup("acpica_no_return_repair", acpi_disable_return_repair);
1818
Myron Stowed362eda2010-10-21 14:24:04 -06001819acpi_status __init acpi_os_initialize(void)
1820{
1821 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1822 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1823 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe0_block);
1824 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe1_block);
Randy Wrighta4714a82014-06-04 08:55:59 -07001825 if (acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER) {
1826 /*
1827 * Use acpi_os_map_generic_address to pre-map the reset
1828 * register if it's in system memory.
1829 */
1830 int rv;
1831
1832 rv = acpi_os_map_generic_address(&acpi_gbl_FADT.reset_register);
1833 pr_debug(PREFIX "%s: map reset_reg status %d\n", __func__, rv);
1834 }
Myron Stowed362eda2010-10-21 14:24:04 -06001835
1836 return AE_OK;
1837}
1838
Zhang Rui32d47ee2010-12-08 10:40:36 +08001839acpi_status __init acpi_os_initialize1(void)
Myron Stowed362eda2010-10-21 14:24:04 -06001840{
Rafael J. Wysockib9a5e5e2015-05-07 21:19:39 +02001841 acpi_reserve_resources();
Tejun Heo44d25882011-02-01 11:42:42 +01001842 kacpid_wq = alloc_workqueue("kacpid", 0, 1);
1843 kacpi_notify_wq = alloc_workqueue("kacpi_notify", 0, 1);
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001844 kacpi_hotplug_wq = alloc_ordered_workqueue("kacpi_hotplug", 0);
Myron Stowed362eda2010-10-21 14:24:04 -06001845 BUG_ON(!kacpid_wq);
1846 BUG_ON(!kacpi_notify_wq);
1847 BUG_ON(!kacpi_hotplug_wq);
Len Brown1bd64d42010-10-26 14:50:56 -04001848 acpi_install_interface_handler(acpi_osi_handler);
1849 acpi_osi_setup_late();
Myron Stowed362eda2010-10-21 14:24:04 -06001850 return AE_OK;
1851}
1852
1853acpi_status acpi_os_terminate(void)
1854{
1855 if (acpi_irq_handler) {
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +01001856 acpi_os_remove_interrupt_handler(acpi_gbl_FADT.sci_interrupt,
Myron Stowed362eda2010-10-21 14:24:04 -06001857 acpi_irq_handler);
1858 }
1859
1860 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe1_block);
1861 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe0_block);
1862 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1863 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
Randy Wrighta4714a82014-06-04 08:55:59 -07001864 if (acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER)
1865 acpi_os_unmap_generic_address(&acpi_gbl_FADT.reset_register);
Myron Stowed362eda2010-10-21 14:24:04 -06001866
1867 destroy_workqueue(kacpid_wq);
1868 destroy_workqueue(kacpi_notify_wq);
1869 destroy_workqueue(kacpi_hotplug_wq);
1870
1871 return AE_OK;
1872}
Tang Liang09f98a82011-12-09 10:05:54 +08001873
1874acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control,
1875 u32 pm1b_control)
1876{
1877 int rc = 0;
1878 if (__acpi_os_prepare_sleep)
1879 rc = __acpi_os_prepare_sleep(sleep_state,
1880 pm1a_control, pm1b_control);
1881 if (rc < 0)
1882 return AE_ERROR;
1883 else if (rc > 0)
1884 return AE_CTRL_SKIP;
1885
1886 return AE_OK;
1887}
1888
1889void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state,
1890 u32 pm1a_ctrl, u32 pm1b_ctrl))
1891{
1892 __acpi_os_prepare_sleep = func;
1893}
Yinghai Lu92d8aff2013-01-21 13:20:47 -08001894
Ben Guthrod6b47b12013-07-30 08:24:52 -04001895acpi_status acpi_os_prepare_extended_sleep(u8 sleep_state, u32 val_a,
1896 u32 val_b)
1897{
1898 int rc = 0;
1899 if (__acpi_os_prepare_extended_sleep)
1900 rc = __acpi_os_prepare_extended_sleep(sleep_state,
1901 val_a, val_b);
1902 if (rc < 0)
1903 return AE_ERROR;
1904 else if (rc > 0)
1905 return AE_CTRL_SKIP;
1906
1907 return AE_OK;
1908}
1909
1910void acpi_os_set_prepare_extended_sleep(int (*func)(u8 sleep_state,
1911 u32 val_a, u32 val_b))
1912{
1913 __acpi_os_prepare_extended_sleep = func;
1914}