blob: 64077e87477a2c532bf26280b51667be2c2732ce [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>
Andy Shevchenko3277b4e2015-08-17 17:28:46 +030050#include <asm-generic/io-64-nonatomic-lo-hi.h>
Matthew Wilcoxf1241c82008-03-14 13:43:13 -040051
Lv Zheng1129c922013-07-23 16:11:55 +080052#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define _COMPONENT ACPI_OS_SERVICES
Len Brownf52fd662007-02-12 22:42:12 -050055ACPI_MODULE_NAME("osl");
Hanjun Guo07070e12014-03-13 12:47:39 +080056
Len Brown4be44fc2005-08-05 00:44:28 -040057struct acpi_os_dpc {
58 acpi_osd_exec_callback function;
59 void *context;
David Howells65f27f32006-11-22 14:55:48 +000060 struct work_struct work;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
63#ifdef CONFIG_ACPI_CUSTOM_DSDT
64#include CONFIG_ACPI_CUSTOM_DSDT_FILE
65#endif
66
67#ifdef ENABLE_DEBUGGER
68#include <linux/kdb.h>
69
70/* stuff for debugger support */
71int acpi_in_debugger;
72EXPORT_SYMBOL(acpi_in_debugger);
73
74extern char line_buf[80];
Len Brown4be44fc2005-08-05 00:44:28 -040075#endif /*ENABLE_DEBUGGER */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Tang Liang09f98a82011-12-09 10:05:54 +080077static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl,
78 u32 pm1b_ctrl);
Ben Guthrod6b47b12013-07-30 08:24:52 -040079static int (*__acpi_os_prepare_extended_sleep)(u8 sleep_state, u32 val_a,
80 u32 val_b);
Tang Liang09f98a82011-12-09 10:05:54 +080081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082static acpi_osd_handler acpi_irq_handler;
83static void *acpi_irq_context;
84static struct workqueue_struct *kacpid_wq;
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -040085static struct workqueue_struct *kacpi_notify_wq;
Yinghai Lu92d8aff2013-01-21 13:20:47 -080086static struct workqueue_struct *kacpi_hotplug_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Myron Stowe620242a2010-10-21 14:23:53 -060088/*
89 * This list of permanent mappings is for memory that may be accessed from
90 * interrupt context, where we can't do the ioremap().
91 */
92struct acpi_ioremap {
93 struct list_head list;
94 void __iomem *virt;
95 acpi_physical_address phys;
96 acpi_size size;
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +010097 unsigned long refcount;
Myron Stowe620242a2010-10-21 14:23:53 -060098};
99
100static LIST_HEAD(acpi_ioremaps);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100101static DEFINE_MUTEX(acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600102
Lin Mingb0ed7a92010-08-06 09:35:51 +0800103static void __init acpi_osi_setup_late(void);
Len Brownae00d812007-05-29 18:43:33 -0400104
Len Brownd4b7dc42008-01-23 20:50:56 -0500105/*
Len Browna6e08872008-11-08 01:21:10 -0500106 * The story of _OSI(Linux)
Len Brownd4b7dc42008-01-23 20:50:56 -0500107 *
Len Browna6e08872008-11-08 01:21:10 -0500108 * From pre-history through Linux-2.6.22,
109 * Linux responded TRUE upon a BIOS OSI(Linux) query.
Len Brownd4b7dc42008-01-23 20:50:56 -0500110 *
Len Browna6e08872008-11-08 01:21:10 -0500111 * Unfortunately, reference BIOS writers got wind of this
112 * and put OSI(Linux) in their example code, quickly exposing
113 * this string as ill-conceived and opening the door to
114 * an un-bounded number of BIOS incompatibilities.
Len Brownd4b7dc42008-01-23 20:50:56 -0500115 *
Len Browna6e08872008-11-08 01:21:10 -0500116 * For example, OSI(Linux) was used on resume to re-POST a
117 * video card on one system, because Linux at that time
118 * could not do a speedy restore in its native driver.
119 * But then upon gaining quick native restore capability,
120 * Linux has no way to tell the BIOS to skip the time-consuming
121 * POST -- putting Linux at a permanent performance disadvantage.
122 * On another system, the BIOS writer used OSI(Linux)
123 * to infer native OS support for IPMI! On other systems,
124 * OSI(Linux) simply got in the way of Linux claiming to
125 * be compatible with other operating systems, exposing
126 * BIOS issues such as skipped device initialization.
Len Brownd4b7dc42008-01-23 20:50:56 -0500127 *
Len Browna6e08872008-11-08 01:21:10 -0500128 * So "Linux" turned out to be a really poor chose of
129 * OSI string, and from Linux-2.6.23 onward we respond FALSE.
Len Brownd4b7dc42008-01-23 20:50:56 -0500130 *
131 * BIOS writers should NOT query _OSI(Linux) on future systems.
Len Browna6e08872008-11-08 01:21:10 -0500132 * Linux will complain on the console when it sees it, and return FALSE.
133 * To get Linux to return TRUE for your system will require
134 * a kernel source update to add a DMI entry,
135 * or boot with "acpi_osi=Linux"
Len Brownd4b7dc42008-01-23 20:50:56 -0500136 */
Len Brownd4b7dc42008-01-23 20:50:56 -0500137
Adrian Bunk1d15d842008-01-29 00:10:15 +0200138static struct osi_linux {
Len Brownd4b7dc42008-01-23 20:50:56 -0500139 unsigned int enable:1;
140 unsigned int dmi:1;
141 unsigned int cmdline:1;
Lv Zheng5dc17982013-07-22 16:08:25 +0800142 unsigned int default_disabling:1;
143} osi_linux = {0, 0, 0, 0};
Len Brownf5076542007-05-30 00:10:38 -0400144
Lin Mingb0ed7a92010-08-06 09:35:51 +0800145static u32 acpi_osi_handler(acpi_string interface, u32 supported)
146{
147 if (!strcmp("Linux", interface)) {
148
Len Brown89976212011-08-02 00:45:48 -0400149 printk_once(KERN_NOTICE FW_BUG PREFIX
Lin Mingb0ed7a92010-08-06 09:35:51 +0800150 "BIOS _OSI(Linux) query %s%s\n",
151 osi_linux.enable ? "honored" : "ignored",
152 osi_linux.cmdline ? " via cmdline" :
153 osi_linux.dmi ? " via DMI" : "");
154 }
155
Matthew Garrett7bc5a2b2014-09-20 13:19:47 +0200156 if (!strcmp("Darwin", interface)) {
157 /*
158 * Apple firmware will behave poorly if it receives positive
159 * answers to "Darwin" and any other OS. Respond positively
160 * to Darwin and then disable all other vendor strings.
161 */
162 acpi_update_interfaces(ACPI_DISABLE_ALL_VENDOR_STRINGS);
163 supported = ACPI_UINT32_MAX;
164 }
165
Lin Mingb0ed7a92010-08-06 09:35:51 +0800166 return supported;
167}
168
Myron Stowebc9ffce2011-11-07 16:23:27 -0700169static void __init acpi_request_region (struct acpi_generic_address *gas,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700170 unsigned int length, char *desc)
171{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700172 u64 addr;
173
174 /* Handle possible alignment issues */
175 memcpy(&addr, &gas->address, sizeof(addr));
176 if (!addr || !length)
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700177 return;
178
Rafael J. Wysocki02941122015-07-04 03:09:03 +0200179 /* Resources are never freed */
180 if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_IO)
181 request_region(addr, length, desc);
182 else if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
183 request_mem_region(addr, length, desc);
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700184}
185
Rafael J. Wysocki02941122015-07-04 03:09:03 +0200186static int __init acpi_reserve_resources(void)
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700187{
Len Browneee3c852007-02-03 01:38:16 -0500188 acpi_request_region(&acpi_gbl_FADT.xpm1a_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700189 "ACPI PM1a_EVT_BLK");
190
Len Browneee3c852007-02-03 01:38:16 -0500191 acpi_request_region(&acpi_gbl_FADT.xpm1b_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700192 "ACPI PM1b_EVT_BLK");
193
Len Browneee3c852007-02-03 01:38:16 -0500194 acpi_request_region(&acpi_gbl_FADT.xpm1a_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700195 "ACPI PM1a_CNT_BLK");
196
Len Browneee3c852007-02-03 01:38:16 -0500197 acpi_request_region(&acpi_gbl_FADT.xpm1b_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700198 "ACPI PM1b_CNT_BLK");
199
Len Browneee3c852007-02-03 01:38:16 -0500200 if (acpi_gbl_FADT.pm_timer_length == 4)
201 acpi_request_region(&acpi_gbl_FADT.xpm_timer_block, 4, "ACPI PM_TMR");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700202
Len Browneee3c852007-02-03 01:38:16 -0500203 acpi_request_region(&acpi_gbl_FADT.xpm2_control_block, acpi_gbl_FADT.pm2_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700204 "ACPI PM2_CNT_BLK");
205
206 /* Length of GPE blocks must be a non-negative multiple of 2 */
207
Len Browneee3c852007-02-03 01:38:16 -0500208 if (!(acpi_gbl_FADT.gpe0_block_length & 0x1))
209 acpi_request_region(&acpi_gbl_FADT.xgpe0_block,
210 acpi_gbl_FADT.gpe0_block_length, "ACPI GPE0_BLK");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700211
Len Browneee3c852007-02-03 01:38:16 -0500212 if (!(acpi_gbl_FADT.gpe1_block_length & 0x1))
213 acpi_request_region(&acpi_gbl_FADT.xgpe1_block,
214 acpi_gbl_FADT.gpe1_block_length, "ACPI GPE1_BLK");
Rafael J. Wysocki02941122015-07-04 03:09:03 +0200215
216 return 0;
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700217}
Rafael J. Wysocki02941122015-07-04 03:09:03 +0200218fs_initcall_sync(acpi_reserve_resources);
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700219
Len Brown4be44fc2005-08-05 00:44:28 -0400220void acpi_os_printf(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 va_list args;
223 va_start(args, fmt);
224 acpi_os_vprintf(fmt, args);
225 va_end(args);
226}
Len Brown4be44fc2005-08-05 00:44:28 -0400227
Len Brown4be44fc2005-08-05 00:44:28 -0400228void acpi_os_vprintf(const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 static char buffer[512];
Len Brown4be44fc2005-08-05 00:44:28 -0400231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 vsprintf(buffer, fmt, args);
233
234#ifdef ENABLE_DEBUGGER
235 if (acpi_in_debugger) {
236 kdb_printf("%s", buffer);
237 } else {
Frank Seidel4d939152009-02-04 17:03:07 +0100238 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240#else
Frank Seidel4d939152009-02-04 17:03:07 +0100241 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242#endif
243}
244
Takao Indoh4996c022011-07-14 18:05:21 -0400245#ifdef CONFIG_KEXEC
246static unsigned long acpi_rsdp;
247static int __init setup_acpi_rsdp(char *arg)
248{
Christoph Jaeger3d915892014-06-13 21:49:58 +0200249 if (kstrtoul(arg, 16, &acpi_rsdp))
250 return -EINVAL;
Takao Indoh4996c022011-07-14 18:05:21 -0400251 return 0;
252}
253early_param("acpi_rsdp", setup_acpi_rsdp);
254#endif
255
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300256acpi_physical_address __init acpi_os_get_root_pointer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Takao Indoh4996c022011-07-14 18:05:21 -0400258#ifdef CONFIG_KEXEC
259 if (acpi_rsdp)
260 return acpi_rsdp;
261#endif
262
Matt Fleming83e68182012-11-14 09:42:35 +0000263 if (efi_enabled(EFI_CONFIG_TABLES)) {
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800264 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300265 return efi.acpi20;
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800266 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300267 return efi.acpi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400269 printk(KERN_ERR PREFIX
270 "System description tables not found\n");
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300271 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
Graeme Gregory8a1664b2014-07-18 18:02:52 +0800273 } else if (IS_ENABLED(CONFIG_ACPI_LEGACY_TABLES_LOOKUP)) {
Len Brown239665a2007-11-23 20:08:02 -0500274 acpi_physical_address pa = 0;
275
276 acpi_find_root_pointer(&pa);
277 return pa;
278 }
Graeme Gregory8a1664b2014-07-18 18:02:52 +0800279
280 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600283/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
Myron Stowe4a3cba52010-10-21 14:24:14 -0600284static struct acpi_ioremap *
285acpi_map_lookup(acpi_physical_address phys, acpi_size size)
Myron Stowe620242a2010-10-21 14:23:53 -0600286{
287 struct acpi_ioremap *map;
288
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600289 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
Myron Stowe620242a2010-10-21 14:23:53 -0600290 if (map->phys <= phys &&
291 phys + size <= map->phys + map->size)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600292 return map;
293
294 return NULL;
295}
296
297/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
298static void __iomem *
299acpi_map_vaddr_lookup(acpi_physical_address phys, unsigned int size)
300{
301 struct acpi_ioremap *map;
302
303 map = acpi_map_lookup(phys, size);
304 if (map)
305 return map->virt + (phys - map->phys);
Myron Stowe620242a2010-10-21 14:23:53 -0600306
307 return NULL;
308}
309
Rafael J. Wysocki13606a22011-02-08 23:38:25 +0100310void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size)
311{
312 struct acpi_ioremap *map;
313 void __iomem *virt = NULL;
314
315 mutex_lock(&acpi_ioremap_lock);
316 map = acpi_map_lookup(phys, size);
317 if (map) {
318 virt = map->virt + (phys - map->phys);
319 map->refcount++;
320 }
321 mutex_unlock(&acpi_ioremap_lock);
322 return virt;
323}
324EXPORT_SYMBOL_GPL(acpi_os_get_iomem);
325
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600326/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
Myron Stowe620242a2010-10-21 14:23:53 -0600327static struct acpi_ioremap *
328acpi_map_lookup_virt(void __iomem *virt, acpi_size size)
329{
330 struct acpi_ioremap *map;
331
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600332 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600333 if (map->virt <= virt &&
334 virt + size <= map->virt + map->size)
Myron Stowe620242a2010-10-21 14:23:53 -0600335 return map;
336
337 return NULL;
338}
339
Graeme Gregoryaafc65c2015-03-24 14:02:35 +0000340#if defined(CONFIG_IA64) || defined(CONFIG_ARM64)
Myron Stoweba242d52012-01-20 19:13:30 -0700341/* ioremap will take care of cache attributes */
342#define should_use_kmap(pfn) 0
Graeme Gregoryaafc65c2015-03-24 14:02:35 +0000343#else
344#define should_use_kmap(pfn) page_is_ram(pfn)
Myron Stoweba242d52012-01-20 19:13:30 -0700345#endif
346
347static void __iomem *acpi_map(acpi_physical_address pg_off, unsigned long pg_sz)
348{
349 unsigned long pfn;
350
351 pfn = pg_off >> PAGE_SHIFT;
352 if (should_use_kmap(pfn)) {
353 if (pg_sz > PAGE_SIZE)
354 return NULL;
355 return (void __iomem __force *)kmap(pfn_to_page(pfn));
356 } else
357 return acpi_os_ioremap(pg_off, pg_sz);
358}
359
360static void acpi_unmap(acpi_physical_address pg_off, void __iomem *vaddr)
361{
362 unsigned long pfn;
363
364 pfn = pg_off >> PAGE_SHIFT;
Jan Beuliche2526752012-02-24 11:41:53 +0000365 if (should_use_kmap(pfn))
Myron Stoweba242d52012-01-20 19:13:30 -0700366 kunmap(pfn_to_page(pfn));
367 else
368 iounmap(vaddr);
369}
370
Jan Beulich2fdf0742007-12-13 08:33:59 +0000371void __iomem *__init_refok
Lv Zhenga2383172014-05-20 15:39:41 +0800372acpi_os_map_iomem(acpi_physical_address phys, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100374 struct acpi_ioremap *map;
Myron Stowe620242a2010-10-21 14:23:53 -0600375 void __iomem *virt;
Rafael J. Wysocki2d6d9fd2011-01-19 22:27:14 +0100376 acpi_physical_address pg_off;
377 acpi_size pg_sz;
Myron Stowe620242a2010-10-21 14:23:53 -0600378
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800379 if (phys > ULONG_MAX) {
380 printk(KERN_ERR PREFIX "Cannot map memory that high\n");
Randy Dunlap70c08462007-02-13 16:11:36 -0800381 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
Myron Stowe620242a2010-10-21 14:23:53 -0600383
384 if (!acpi_gbl_permanent_mmap)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300385 return __acpi_map_table((unsigned long)phys, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600386
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100387 mutex_lock(&acpi_ioremap_lock);
388 /* Check if there's a suitable mapping already. */
389 map = acpi_map_lookup(phys, size);
390 if (map) {
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100391 map->refcount++;
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100392 goto out;
393 }
394
Myron Stowe620242a2010-10-21 14:23:53 -0600395 map = kzalloc(sizeof(*map), GFP_KERNEL);
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100396 if (!map) {
397 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600398 return NULL;
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100399 }
Myron Stowe620242a2010-10-21 14:23:53 -0600400
Myron Stowe4a3cba52010-10-21 14:24:14 -0600401 pg_off = round_down(phys, PAGE_SIZE);
402 pg_sz = round_up(phys + size, PAGE_SIZE) - pg_off;
Myron Stoweba242d52012-01-20 19:13:30 -0700403 virt = acpi_map(pg_off, pg_sz);
Myron Stowe620242a2010-10-21 14:23:53 -0600404 if (!virt) {
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100405 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600406 kfree(map);
407 return NULL;
408 }
409
410 INIT_LIST_HEAD(&map->list);
411 map->virt = virt;
Myron Stowe4a3cba52010-10-21 14:24:14 -0600412 map->phys = pg_off;
413 map->size = pg_sz;
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100414 map->refcount = 1;
Myron Stowe620242a2010-10-21 14:23:53 -0600415
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600416 list_add_tail_rcu(&map->list, &acpi_ioremaps);
Myron Stowe620242a2010-10-21 14:23:53 -0600417
Lv Zhenga2383172014-05-20 15:39:41 +0800418out:
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100419 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe4a3cba52010-10-21 14:24:14 -0600420 return map->virt + (phys - map->phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
Lv Zhenga2383172014-05-20 15:39:41 +0800422EXPORT_SYMBOL_GPL(acpi_os_map_iomem);
423
424void *__init_refok
425acpi_os_map_memory(acpi_physical_address phys, acpi_size size)
426{
427 return (void *)acpi_os_map_iomem(phys, size);
428}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800429EXPORT_SYMBOL_GPL(acpi_os_map_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100431static void acpi_os_drop_map_ref(struct acpi_ioremap *map)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600432{
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100433 if (!--map->refcount)
434 list_del_rcu(&map->list);
Myron Stowe4a3cba52010-10-21 14:24:14 -0600435}
Myron Stowe4a3cba52010-10-21 14:24:14 -0600436
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100437static void acpi_os_map_cleanup(struct acpi_ioremap *map)
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100438{
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100439 if (!map->refcount) {
Konstantin Khlebnikov74b51ee2014-11-09 13:53:37 +0400440 synchronize_rcu_expedited();
Myron Stoweba242d52012-01-20 19:13:30 -0700441 acpi_unmap(map->phys, map->virt);
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100442 kfree(map);
443 }
Myron Stowe4a3cba52010-10-21 14:24:14 -0600444}
445
Lv Zhenga2383172014-05-20 15:39:41 +0800446void __ref acpi_os_unmap_iomem(void __iomem *virt, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Myron Stowe620242a2010-10-21 14:23:53 -0600448 struct acpi_ioremap *map;
Myron Stowe620242a2010-10-21 14:23:53 -0600449
450 if (!acpi_gbl_permanent_mmap) {
Yinghai Lu7d972772009-02-07 15:39:41 -0800451 __acpi_unmap_table(virt, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600452 return;
453 }
454
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100455 mutex_lock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600456 map = acpi_map_lookup_virt(virt, size);
457 if (!map) {
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100458 mutex_unlock(&acpi_ioremap_lock);
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100459 WARN(true, PREFIX "%s: bad address %p\n", __func__, virt);
Myron Stowe620242a2010-10-21 14:23:53 -0600460 return;
461 }
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100462 acpi_os_drop_map_ref(map);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100463 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600464
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100465 acpi_os_map_cleanup(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
Lv Zhenga2383172014-05-20 15:39:41 +0800467EXPORT_SYMBOL_GPL(acpi_os_unmap_iomem);
468
469void __ref acpi_os_unmap_memory(void *virt, acpi_size size)
470{
471 return acpi_os_unmap_iomem((void __iomem *)virt, size);
472}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800473EXPORT_SYMBOL_GPL(acpi_os_unmap_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Jeremy Fitzhardinge0d3a9cf2009-02-22 14:58:56 -0800475void __init early_acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
Yinghai Lu7d972772009-02-07 15:39:41 -0800476{
477 if (!acpi_gbl_permanent_mmap)
478 __acpi_unmap_table(virt, size);
479}
480
Myron Stowe6f68c912011-11-07 16:23:34 -0700481int acpi_os_map_generic_address(struct acpi_generic_address *gas)
Myron Stowe29718522010-10-21 14:23:59 -0600482{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700483 u64 addr;
Myron Stowe29718522010-10-21 14:23:59 -0600484 void __iomem *virt;
485
Myron Stowebc9ffce2011-11-07 16:23:27 -0700486 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
Myron Stowe29718522010-10-21 14:23:59 -0600487 return 0;
488
Myron Stowebc9ffce2011-11-07 16:23:27 -0700489 /* Handle possible alignment issues */
490 memcpy(&addr, &gas->address, sizeof(addr));
491 if (!addr || !gas->bit_width)
Myron Stowe29718522010-10-21 14:23:59 -0600492 return -EINVAL;
493
Lv Zhenga2383172014-05-20 15:39:41 +0800494 virt = acpi_os_map_iomem(addr, gas->bit_width / 8);
Myron Stowe29718522010-10-21 14:23:59 -0600495 if (!virt)
496 return -EIO;
497
498 return 0;
499}
Myron Stowe6f68c912011-11-07 16:23:34 -0700500EXPORT_SYMBOL(acpi_os_map_generic_address);
Myron Stowe29718522010-10-21 14:23:59 -0600501
Myron Stowe6f68c912011-11-07 16:23:34 -0700502void acpi_os_unmap_generic_address(struct acpi_generic_address *gas)
Myron Stowe29718522010-10-21 14:23:59 -0600503{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700504 u64 addr;
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100505 struct acpi_ioremap *map;
Myron Stowe29718522010-10-21 14:23:59 -0600506
Myron Stowebc9ffce2011-11-07 16:23:27 -0700507 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
Myron Stowe29718522010-10-21 14:23:59 -0600508 return;
509
Myron Stowebc9ffce2011-11-07 16:23:27 -0700510 /* Handle possible alignment issues */
511 memcpy(&addr, &gas->address, sizeof(addr));
512 if (!addr || !gas->bit_width)
Myron Stowe29718522010-10-21 14:23:59 -0600513 return;
514
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100515 mutex_lock(&acpi_ioremap_lock);
Myron Stowebc9ffce2011-11-07 16:23:27 -0700516 map = acpi_map_lookup(addr, gas->bit_width / 8);
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100517 if (!map) {
518 mutex_unlock(&acpi_ioremap_lock);
519 return;
520 }
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100521 acpi_os_drop_map_ref(map);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100522 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe29718522010-10-21 14:23:59 -0600523
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100524 acpi_os_map_cleanup(map);
Myron Stowe29718522010-10-21 14:23:59 -0600525}
Myron Stowe6f68c912011-11-07 16:23:34 -0700526EXPORT_SYMBOL(acpi_os_unmap_generic_address);
Myron Stowe29718522010-10-21 14:23:59 -0600527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528#ifdef ACPI_FUTURE_USAGE
529acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400530acpi_os_get_physical_address(void *virt, acpi_physical_address * phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Len Brown4be44fc2005-08-05 00:44:28 -0400532 if (!phys || !virt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return AE_BAD_PARAMETER;
534
535 *phys = virt_to_phys(virt);
536
537 return AE_OK;
538}
539#endif
540
Rafael J. Wysocki18d78b62015-07-03 01:06:00 +0200541#ifdef CONFIG_ACPI_REV_OVERRIDE_POSSIBLE
542static bool acpi_rev_override;
543
544int __init acpi_rev_override_setup(char *str)
545{
546 acpi_rev_override = true;
547 return 1;
548}
549__setup("acpi_rev_override", acpi_rev_override_setup);
550#else
551#define acpi_rev_override false
552#endif
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554#define ACPI_MAX_OVERRIDE_LEN 100
555
556static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN];
557
558acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400559acpi_os_predefined_override(const struct acpi_predefined_names *init_val,
Dominik Brodowski2bad7e22015-05-14 15:31:25 +0200560 char **new_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
562 if (!init_val || !new_val)
563 return AE_BAD_PARAMETER;
564
565 *new_val = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400566 if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400568 acpi_os_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 *new_val = acpi_os_name;
570 }
571
Rafael J. Wysocki18d78b62015-07-03 01:06:00 +0200572 if (!memcmp(init_val->name, "_REV", 4) && acpi_rev_override) {
573 printk(KERN_INFO PREFIX "Overriding _REV return value to 5\n");
574 *new_val = (char *)5;
575 }
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return AE_OK;
578}
579
Thomas Renninger53aac442012-10-01 00:23:54 +0200580#ifdef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
581#include <linux/earlycpio.h>
582#include <linux/memblock.h>
583
584static u64 acpi_tables_addr;
585static int all_tables_size;
586
587/* Copied from acpica/tbutils.c:acpi_tb_checksum() */
Rashika66e162b2013-12-17 14:43:05 +0530588static u8 __init acpi_table_checksum(u8 *buffer, u32 length)
Thomas Renninger53aac442012-10-01 00:23:54 +0200589{
590 u8 sum = 0;
591 u8 *end = buffer + length;
592
593 while (buffer < end)
594 sum = (u8) (sum + *(buffer++));
595 return sum;
596}
597
598/* All but ACPI_SIG_RSDP and ACPI_SIG_FACS: */
599static const char * const table_sigs[] = {
600 ACPI_SIG_BERT, ACPI_SIG_CPEP, ACPI_SIG_ECDT, ACPI_SIG_EINJ,
601 ACPI_SIG_ERST, ACPI_SIG_HEST, ACPI_SIG_MADT, ACPI_SIG_MSCT,
602 ACPI_SIG_SBST, ACPI_SIG_SLIT, ACPI_SIG_SRAT, ACPI_SIG_ASF,
603 ACPI_SIG_BOOT, ACPI_SIG_DBGP, ACPI_SIG_DMAR, ACPI_SIG_HPET,
604 ACPI_SIG_IBFT, ACPI_SIG_IVRS, ACPI_SIG_MCFG, ACPI_SIG_MCHI,
605 ACPI_SIG_SLIC, ACPI_SIG_SPCR, ACPI_SIG_SPMI, ACPI_SIG_TCPA,
606 ACPI_SIG_UEFI, ACPI_SIG_WAET, ACPI_SIG_WDAT, ACPI_SIG_WDDT,
607 ACPI_SIG_WDRT, ACPI_SIG_DSDT, ACPI_SIG_FADT, ACPI_SIG_PSDT,
608 ACPI_SIG_RSDT, ACPI_SIG_XSDT, ACPI_SIG_SSDT, NULL };
609
Thomas Renninger53aac442012-10-01 00:23:54 +0200610#define ACPI_HEADER_SIZE sizeof(struct acpi_table_header)
611
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700612#define ACPI_OVERRIDE_TABLES 64
613static struct cpio_data __initdata acpi_initrd_files[ACPI_OVERRIDE_TABLES];
614
615#define MAP_CHUNK_SIZE (NR_FIX_BTMAPS << PAGE_SHIFT)
Thomas Renninger53aac442012-10-01 00:23:54 +0200616
617void __init acpi_initrd_override(void *data, size_t size)
618{
619 int sig, no, table_nr = 0, total_offset = 0;
620 long offset = 0;
621 struct acpi_table_header *table;
622 char cpio_path[32] = "kernel/firmware/acpi/";
623 struct cpio_data file;
Thomas Renninger53aac442012-10-01 00:23:54 +0200624
625 if (data == NULL || size == 0)
626 return;
627
628 for (no = 0; no < ACPI_OVERRIDE_TABLES; no++) {
629 file = find_cpio_data(cpio_path, data, size, &offset);
630 if (!file.data)
631 break;
632
633 data += offset;
634 size -= offset;
635
Tang Chen7702ae02013-08-14 17:37:08 +0800636 if (file.size < sizeof(struct acpi_table_header)) {
637 pr_err("ACPI OVERRIDE: Table smaller than ACPI header [%s%s]\n",
638 cpio_path, file.name);
639 continue;
640 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200641
642 table = file.data;
643
644 for (sig = 0; table_sigs[sig]; sig++)
645 if (!memcmp(table->signature, table_sigs[sig], 4))
646 break;
647
Tang Chen7702ae02013-08-14 17:37:08 +0800648 if (!table_sigs[sig]) {
649 pr_err("ACPI OVERRIDE: Unknown signature [%s%s]\n",
650 cpio_path, file.name);
651 continue;
652 }
653 if (file.size != table->length) {
654 pr_err("ACPI OVERRIDE: File length does not match table length [%s%s]\n",
655 cpio_path, file.name);
656 continue;
657 }
658 if (acpi_table_checksum(file.data, table->length)) {
659 pr_err("ACPI OVERRIDE: Bad table checksum [%s%s]\n",
660 cpio_path, file.name);
661 continue;
662 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200663
664 pr_info("%4.4s ACPI table found in initrd [%s%s][0x%x]\n",
665 table->signature, cpio_path, file.name, table->length);
666
667 all_tables_size += table->length;
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700668 acpi_initrd_files[table_nr].data = file.data;
669 acpi_initrd_files[table_nr].size = file.size;
Thomas Renninger53aac442012-10-01 00:23:54 +0200670 table_nr++;
671 }
672 if (table_nr == 0)
673 return;
674
675 acpi_tables_addr =
676 memblock_find_in_range(0, max_low_pfn_mapped << PAGE_SHIFT,
677 all_tables_size, PAGE_SIZE);
678 if (!acpi_tables_addr) {
679 WARN_ON(1);
680 return;
681 }
682 /*
683 * Only calling e820_add_reserve does not work and the
684 * tables are invalid (memory got used) later.
685 * memblock_reserve works as expected and the tables won't get modified.
686 * But it's not enough on X86 because ioremap will
687 * complain later (used by acpi_os_map_memory) that the pages
688 * that should get mapped are not marked "reserved".
689 * Both memblock_reserve and e820_add_region (via arch_reserve_mem_area)
690 * works fine.
691 */
Wang YanQinga6432de2013-04-23 01:19:19 +0200692 memblock_reserve(acpi_tables_addr, all_tables_size);
Thomas Renninger53aac442012-10-01 00:23:54 +0200693 arch_reserve_mem_area(acpi_tables_addr, all_tables_size);
694
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700695 /*
696 * early_ioremap only can remap 256k one time. If we map all
697 * tables one time, we will hit the limit. Need to map chunks
698 * one by one during copying the same as that in relocate_initrd().
699 */
Thomas Renninger53aac442012-10-01 00:23:54 +0200700 for (no = 0; no < table_nr; no++) {
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700701 unsigned char *src_p = acpi_initrd_files[no].data;
702 phys_addr_t size = acpi_initrd_files[no].size;
703 phys_addr_t dest_addr = acpi_tables_addr + total_offset;
704 phys_addr_t slop, clen;
705 char *dest_p;
706
707 total_offset += size;
708
709 while (size) {
710 slop = dest_addr & ~PAGE_MASK;
711 clen = size;
712 if (clen > MAP_CHUNK_SIZE - slop)
713 clen = MAP_CHUNK_SIZE - slop;
714 dest_p = early_ioremap(dest_addr & PAGE_MASK,
715 clen + slop);
716 memcpy(dest_p + slop, src_p, clen);
717 early_iounmap(dest_p, clen + slop);
718 src_p += clen;
719 dest_addr += clen;
720 size -= clen;
721 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200722 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200723}
724#endif /* CONFIG_ACPI_INITRD_TABLE_OVERRIDE */
725
Thomas Renninger325a8d362012-10-01 00:23:56 +0200726static void acpi_table_taint(struct acpi_table_header *table)
727{
728 pr_warn(PREFIX
729 "Override [%4.4s-%8.8s], this is unsafe: tainting kernel\n",
730 table->signature, table->oem_table_id);
Rusty Russell373d4d02013-01-21 17:17:39 +1030731 add_taint(TAINT_OVERRIDDEN_ACPI_TABLE, LOCKDEP_NOW_UNRELIABLE);
Thomas Renninger325a8d362012-10-01 00:23:56 +0200732}
733
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400736acpi_os_table_override(struct acpi_table_header * existing_table,
737 struct acpi_table_header ** new_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
739 if (!existing_table || !new_table)
740 return AE_BAD_PARAMETER;
741
Markus Gaugusch71fc47a2008-02-05 00:04:06 +0100742 *new_table = NULL;
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744#ifdef CONFIG_ACPI_CUSTOM_DSDT
745 if (strncmp(existing_table->signature, "DSDT", 4) == 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400746 *new_table = (struct acpi_table_header *)AmlCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747#endif
Thomas Renninger325a8d362012-10-01 00:23:56 +0200748 if (*new_table != NULL)
749 acpi_table_taint(existing_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return AE_OK;
751}
752
Bob Mooref7b004a2012-02-14 18:31:56 +0800753acpi_status
754acpi_os_physical_table_override(struct acpi_table_header *existing_table,
Thomas Renningerb2a35002012-10-01 00:23:55 +0200755 acpi_physical_address *address,
756 u32 *table_length)
Bob Mooref7b004a2012-02-14 18:31:56 +0800757{
Thomas Renningerb2a35002012-10-01 00:23:55 +0200758#ifndef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
759 *table_length = 0;
760 *address = 0;
761 return AE_OK;
762#else
763 int table_offset = 0;
764 struct acpi_table_header *table;
Bob Mooref7b004a2012-02-14 18:31:56 +0800765
Thomas Renningerb2a35002012-10-01 00:23:55 +0200766 *table_length = 0;
767 *address = 0;
768
769 if (!acpi_tables_addr)
770 return AE_OK;
771
772 do {
773 if (table_offset + ACPI_HEADER_SIZE > all_tables_size) {
774 WARN_ON(1);
775 return AE_OK;
776 }
777
778 table = acpi_os_map_memory(acpi_tables_addr + table_offset,
779 ACPI_HEADER_SIZE);
780
781 if (table_offset + table->length > all_tables_size) {
782 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
783 WARN_ON(1);
784 return AE_OK;
785 }
786
787 table_offset += table->length;
788
789 if (memcmp(existing_table->signature, table->signature, 4)) {
790 acpi_os_unmap_memory(table,
791 ACPI_HEADER_SIZE);
792 continue;
793 }
794
795 /* Only override tables with matching oem id */
796 if (memcmp(table->oem_table_id, existing_table->oem_table_id,
797 ACPI_OEM_TABLE_ID_SIZE)) {
798 acpi_os_unmap_memory(table,
799 ACPI_HEADER_SIZE);
800 continue;
801 }
802
803 table_offset -= table->length;
804 *table_length = table->length;
805 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
806 *address = acpi_tables_addr + table_offset;
807 break;
808 } while (table_offset + ACPI_HEADER_SIZE < all_tables_size);
809
Thomas Renninger325a8d362012-10-01 00:23:56 +0200810 if (*address != 0)
811 acpi_table_taint(existing_table);
Thomas Renningerb2a35002012-10-01 00:23:55 +0200812 return AE_OK;
813#endif
814}
Bob Mooref7b004a2012-02-14 18:31:56 +0800815
David Howells7d12e782006-10-05 14:55:46 +0100816static irqreturn_t acpi_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Len Brown5229e872008-02-06 01:26:55 -0500818 u32 handled;
819
820 handled = (*acpi_irq_handler) (acpi_irq_context);
821
822 if (handled) {
823 acpi_irq_handled++;
824 return IRQ_HANDLED;
Len Brown88bea182009-04-21 00:35:47 -0400825 } else {
826 acpi_irq_not_handled++;
Len Brown5229e872008-02-06 01:26:55 -0500827 return IRQ_NONE;
Len Brown88bea182009-04-21 00:35:47 -0400828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
831acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400832acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
833 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
835 unsigned int irq;
836
Len Brown5229e872008-02-06 01:26:55 -0500837 acpi_irq_stats_init();
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 /*
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100840 * ACPI interrupts different from the SCI in our copy of the FADT are
841 * not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 */
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100843 if (gsi != acpi_gbl_FADT.sci_interrupt)
844 return AE_BAD_PARAMETER;
845
846 if (acpi_irq_handler)
847 return AE_ALREADY_ACQUIRED;
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (acpi_gsi_to_irq(gsi, &irq) < 0) {
850 printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n",
851 gsi);
852 return AE_OK;
853 }
854
855 acpi_irq_handler = handler;
856 acpi_irq_context = context;
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +0200857 if (request_irq(irq, acpi_irq, IRQF_SHARED, "acpi", acpi_irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq);
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100859 acpi_irq_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 return AE_NOT_ACQUIRED;
861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 return AE_OK;
864}
865
Len Brown4be44fc2005-08-05 00:44:28 -0400866acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100868 if (irq != acpi_gbl_FADT.sci_interrupt)
869 return AE_BAD_PARAMETER;
870
871 free_irq(irq, acpi_irq);
872 acpi_irq_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 return AE_OK;
875}
876
877/*
878 * Running in interpreter thread context, safe to sleep
879 */
880
Lin Ming439913f2010-01-28 10:53:19 +0800881void acpi_os_sleep(u64 ms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
Liu Chuansheng30282292013-09-12 01:42:57 +0800883 msleep(ms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
Len Brown4be44fc2005-08-05 00:44:28 -0400885
Len Brown4be44fc2005-08-05 00:44:28 -0400886void acpi_os_stall(u32 us)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
888 while (us) {
889 u32 delay = 1000;
890
891 if (delay > us)
892 delay = us;
893 udelay(delay);
894 touch_nmi_watchdog();
895 us -= delay;
896 }
897}
Len Brown4be44fc2005-08-05 00:44:28 -0400898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899/*
900 * Support ACPI 3.0 AML Timer operand
901 * Returns 64-bit free-running, monotonically increasing timer
902 * with 100ns granularity
903 */
Len Brown4be44fc2005-08-05 00:44:28 -0400904u64 acpi_os_get_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Mika Westerberg10619062013-05-23 10:27:46 +0300906 u64 time_ns = ktime_to_ns(ktime_get());
907 do_div(time_ns, 100);
908 return time_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909}
910
Len Brown4be44fc2005-08-05 00:44:28 -0400911acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
913 u32 dummy;
914
915 if (!value)
916 value = &dummy;
917
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800918 *value = 0;
919 if (width <= 8) {
Len Brown4be44fc2005-08-05 00:44:28 -0400920 *(u8 *) value = inb(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800921 } else if (width <= 16) {
Len Brown4be44fc2005-08-05 00:44:28 -0400922 *(u16 *) value = inw(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800923 } else if (width <= 32) {
Len Brown4be44fc2005-08-05 00:44:28 -0400924 *(u32 *) value = inl(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800925 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 BUG();
927 }
928
929 return AE_OK;
930}
Len Brown4be44fc2005-08-05 00:44:28 -0400931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932EXPORT_SYMBOL(acpi_os_read_port);
933
Len Brown4be44fc2005-08-05 00:44:28 -0400934acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800936 if (width <= 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 outb(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800938 } else if (width <= 16) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 outw(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800940 } else if (width <= 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 outl(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800942 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 BUG();
944 }
945
946 return AE_OK;
947}
Len Brown4be44fc2005-08-05 00:44:28 -0400948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949EXPORT_SYMBOL(acpi_os_write_port);
950
Myron Stowee615bf52012-01-20 19:13:24 -0700951acpi_status
Bob Moore653f4b52012-02-14 18:29:55 +0800952acpi_os_read_memory(acpi_physical_address phys_addr, u64 *value, u32 width)
Myron Stowee615bf52012-01-20 19:13:24 -0700953{
954 void __iomem *virt_addr;
955 unsigned int size = width / 8;
956 bool unmap = false;
957 u64 dummy;
958
959 rcu_read_lock();
960 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
961 if (!virt_addr) {
962 rcu_read_unlock();
963 virt_addr = acpi_os_ioremap(phys_addr, size);
964 if (!virt_addr)
965 return AE_BAD_ADDRESS;
966 unmap = true;
967 }
968
969 if (!value)
970 value = &dummy;
971
972 switch (width) {
973 case 8:
974 *(u8 *) value = readb(virt_addr);
975 break;
976 case 16:
977 *(u16 *) value = readw(virt_addr);
978 break;
979 case 32:
980 *(u32 *) value = readl(virt_addr);
981 break;
982 case 64:
Andy Shevchenko3277b4e2015-08-17 17:28:46 +0300983 *(u64 *) value = readq(virt_addr);
Myron Stowee615bf52012-01-20 19:13:24 -0700984 break;
985 default:
986 BUG();
987 }
988
989 if (unmap)
990 iounmap(virt_addr);
991 else
992 rcu_read_unlock();
993
994 return AE_OK;
995}
996
Myron Stowee615bf52012-01-20 19:13:24 -0700997acpi_status
Bob Moore653f4b52012-02-14 18:29:55 +0800998acpi_os_write_memory(acpi_physical_address phys_addr, u64 value, u32 width)
Myron Stowee615bf52012-01-20 19:13:24 -0700999{
1000 void __iomem *virt_addr;
1001 unsigned int size = width / 8;
1002 bool unmap = false;
1003
1004 rcu_read_lock();
1005 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
1006 if (!virt_addr) {
1007 rcu_read_unlock();
1008 virt_addr = acpi_os_ioremap(phys_addr, size);
1009 if (!virt_addr)
1010 return AE_BAD_ADDRESS;
1011 unmap = true;
1012 }
1013
1014 switch (width) {
1015 case 8:
1016 writeb(value, virt_addr);
1017 break;
1018 case 16:
1019 writew(value, virt_addr);
1020 break;
1021 case 32:
1022 writel(value, virt_addr);
1023 break;
1024 case 64:
Andy Shevchenko3277b4e2015-08-17 17:28:46 +03001025 writeq(value, virt_addr);
Myron Stowee615bf52012-01-20 19:13:24 -07001026 break;
1027 default:
1028 BUG();
1029 }
1030
1031 if (unmap)
1032 iounmap(virt_addr);
1033 else
1034 rcu_read_unlock();
1035
1036 return AE_OK;
1037}
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001040acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Bob Moorec5f02312010-08-06 08:57:53 +08001041 u64 *value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
1043 int result, size;
Bob Moorec5f02312010-08-06 08:57:53 +08001044 u32 value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046 if (!value)
1047 return AE_BAD_PARAMETER;
1048
1049 switch (width) {
1050 case 8:
1051 size = 1;
1052 break;
1053 case 16:
1054 size = 2;
1055 break;
1056 case 32:
1057 size = 4;
1058 break;
1059 default:
1060 return AE_ERROR;
1061 }
1062
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -05001063 result = raw_pci_read(pci_id->segment, pci_id->bus,
1064 PCI_DEVFN(pci_id->device, pci_id->function),
Bob Moorec5f02312010-08-06 08:57:53 +08001065 reg, size, &value32);
1066 *value = value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068 return (result ? AE_ERROR : AE_OK);
1069}
Len Brown4be44fc2005-08-05 00:44:28 -04001070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001072acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Lin Ming439913f2010-01-28 10:53:19 +08001073 u64 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
1075 int result, size;
1076
1077 switch (width) {
1078 case 8:
1079 size = 1;
1080 break;
1081 case 16:
1082 size = 2;
1083 break;
1084 case 32:
1085 size = 4;
1086 break;
1087 default:
1088 return AE_ERROR;
1089 }
1090
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -05001091 result = raw_pci_write(pci_id->segment, pci_id->bus,
1092 PCI_DEVFN(pci_id->device, pci_id->function),
1093 reg, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 return (result ? AE_ERROR : AE_OK);
1096}
1097
David Howells65f27f32006-11-22 14:55:48 +00001098static void acpi_os_execute_deferred(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
David Howells65f27f32006-11-22 14:55:48 +00001100 struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work);
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -04001101
Zhang Rui19cd8472008-08-28 10:05:06 +08001102 dpc->function(dpc->context);
1103 kfree(dpc);
Zhang Rui19cd8472008-08-28 10:05:06 +08001104}
1105
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -04001106/*******************************************************************************
1107 *
1108 * FUNCTION: acpi_os_execute
1109 *
1110 * PARAMETERS: Type - Type of the callback
1111 * Function - Function to be executed
1112 * Context - Function parameters
1113 *
1114 * RETURN: Status
1115 *
1116 * DESCRIPTION: Depending on type, either queues function for deferred execution or
1117 * immediately executes function on a separate thread.
1118 *
1119 ******************************************************************************/
1120
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001121acpi_status acpi_os_execute(acpi_execute_type type,
1122 acpi_osd_exec_callback function, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
Len Brown4be44fc2005-08-05 00:44:28 -04001124 acpi_status status = AE_OK;
1125 struct acpi_os_dpc *dpc;
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +03001126 struct workqueue_struct *queue;
Zhang Rui19cd8472008-08-28 10:05:06 +08001127 int ret;
Len Brown72945b22006-07-12 22:46:42 -04001128 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
1129 "Scheduling function [%p(%p)] for deferred execution.\n",
1130 function, context));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 /*
1133 * Allocate/initialize DPC structure. Note that this memory will be
David Howells65f27f32006-11-22 14:55:48 +00001134 * freed by the callee. The kernel handles the work_struct list in a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 * way that allows us to also free its memory inside the callee.
1136 * Because we may want to schedule several tasks with different
1137 * parameters we can't use the approach some kernel code uses of
David Howells65f27f32006-11-22 14:55:48 +00001138 * having a static work_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 */
Len Brown72945b22006-07-12 22:46:42 -04001140
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001141 dpc = kzalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (!dpc)
Lin Ming889c78b2008-12-31 09:23:57 +08001143 return AE_NO_MEMORY;
Linus Torvaldsb976fe12006-11-17 19:31:09 -08001144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 dpc->function = function;
1146 dpc->context = context;
Linus Torvaldsb976fe12006-11-17 19:31:09 -08001147
Zhang Ruic02256b2009-06-23 10:20:29 +08001148 /*
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001149 * To prevent lockdep from complaining unnecessarily, make sure that
1150 * there is a different static lockdep key for each workqueue by using
1151 * INIT_WORK() for each of them separately.
Zhang Ruic02256b2009-06-23 10:20:29 +08001152 */
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001153 if (type == OSL_NOTIFY_HANDLER) {
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001154 queue = kacpi_notify_wq;
Zhang Ruibc736752010-03-22 15:48:54 +08001155 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001156 } else {
1157 queue = kacpid_wq;
Zhang Ruibc736752010-03-22 15:48:54 +08001158 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001159 }
Zhang Ruibc736752010-03-22 15:48:54 +08001160
Tejun Heo8fec62b2010-06-29 10:07:09 +02001161 /*
1162 * On some machines, a software-initiated SMI causes corruption unless
1163 * the SMI runs on CPU 0. An SMI can be initiated by any AML, but
1164 * typically it's done in GPE-related methods that are run via
1165 * workqueues, so we can avoid the known corruption cases by always
1166 * queueing on CPU 0.
1167 */
1168 ret = queue_work_on(0, queue, &dpc->work);
Zhang Rui19cd8472008-08-28 10:05:06 +08001169
1170 if (!ret) {
Lin Ming55ac9a02008-09-28 14:51:56 +08001171 printk(KERN_ERR PREFIX
1172 "Call to queue_work() failed.\n");
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +03001173 status = AE_ERROR;
1174 kfree(dpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
Lin Ming889c78b2008-12-31 09:23:57 +08001176 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177}
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -04001178EXPORT_SYMBOL(acpi_os_execute);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Lin Mingbd6f10a2012-05-22 16:43:49 +08001180void acpi_os_wait_events_complete(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181{
Lv Zheng90253a72014-11-05 15:06:13 +08001182 /*
1183 * Make sure the GPE handler or the fixed event handler is not used
1184 * on another CPU after removal.
1185 */
1186 if (acpi_irq_handler)
1187 synchronize_hardirq(acpi_gbl_FADT.sci_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 flush_workqueue(kacpid_wq);
Zhang Rui2f67a062008-04-29 02:34:42 -04001189 flush_workqueue(kacpi_notify_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
Len Brown4be44fc2005-08-05 00:44:28 -04001191
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001192struct acpi_hp_work {
1193 struct work_struct work;
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001194 struct acpi_device *adev;
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001195 u32 src;
1196};
1197
1198static void acpi_hotplug_work_fn(struct work_struct *work)
1199{
1200 struct acpi_hp_work *hpw = container_of(work, struct acpi_hp_work, work);
1201
1202 acpi_os_wait_events_complete();
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001203 acpi_device_hotplug(hpw->adev, hpw->src);
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001204 kfree(hpw);
1205}
1206
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001207acpi_status acpi_hotplug_schedule(struct acpi_device *adev, u32 src)
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001208{
1209 struct acpi_hp_work *hpw;
1210
1211 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001212 "Scheduling hotplug event (%p, %u) for deferred execution.\n",
1213 adev, src));
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001214
1215 hpw = kmalloc(sizeof(*hpw), GFP_KERNEL);
1216 if (!hpw)
1217 return AE_NO_MEMORY;
1218
1219 INIT_WORK(&hpw->work, acpi_hotplug_work_fn);
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001220 hpw->adev = adev;
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001221 hpw->src = src;
1222 /*
1223 * We can't run hotplug code in kacpid_wq/kacpid_notify_wq etc., because
1224 * the hotplug code may call driver .remove() functions, which may
1225 * invoke flush_scheduled_work()/acpi_os_wait_events_complete() to flush
1226 * these workqueues.
1227 */
1228 if (!queue_work(kacpi_hotplug_wq, &hpw->work)) {
1229 kfree(hpw);
1230 return AE_ERROR;
1231 }
1232 return AE_OK;
1233}
1234
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001235bool acpi_queue_hotplug_work(struct work_struct *work)
1236{
1237 return queue_work(kacpi_hotplug_wq, work);
1238}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001241acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
Len Brown4be44fc2005-08-05 00:44:28 -04001243 struct semaphore *sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
jhbird.choi@samsung.com2d0acb42014-03-20 16:35:56 +09001245 sem = acpi_os_allocate_zeroed(sizeof(struct semaphore));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -04001247 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 sema_init(sem, initial_units);
1250
Len Brown4be44fc2005-08-05 00:44:28 -04001251 *handle = (acpi_handle *) sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Len Brown4be44fc2005-08-05 00:44:28 -04001253 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n",
1254 *handle, initial_units));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Patrick Mocheld550d982006-06-27 00:41:40 -04001256 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259/*
1260 * TODO: A better way to delete semaphores? Linux doesn't have a
1261 * 'delete_semaphore()' function -- may result in an invalid
1262 * pointer dereference for non-synchronized consumers. Should
1263 * we at least check for blocked threads and signal/cancel them?
1264 */
1265
Len Brown4be44fc2005-08-05 00:44:28 -04001266acpi_status acpi_os_delete_semaphore(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
Len Brown4be44fc2005-08-05 00:44:28 -04001268 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -04001271 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Len Brown4be44fc2005-08-05 00:44:28 -04001273 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001275 BUG_ON(!list_empty(&sem->wait_list));
Len Brown02438d82006-06-30 03:19:10 -04001276 kfree(sem);
Len Brown4be44fc2005-08-05 00:44:28 -04001277 sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Patrick Mocheld550d982006-06-27 00:41:40 -04001279 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 * TODO: Support for units > 1?
1284 */
Len Brown4be44fc2005-08-05 00:44:28 -04001285acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
Len Brown4be44fc2005-08-05 00:44:28 -04001287 acpi_status status = AE_OK;
1288 struct semaphore *sem = (struct semaphore *)handle;
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001289 long jiffies;
Len Brown4be44fc2005-08-05 00:44:28 -04001290 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001293 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -04001296 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Len Brown4be44fc2005-08-05 00:44:28 -04001298 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n",
1299 handle, units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001301 if (timeout == ACPI_WAIT_FOREVER)
1302 jiffies = MAX_SCHEDULE_TIMEOUT;
1303 else
1304 jiffies = msecs_to_jiffies(timeout);
Al Stonecad1525a2013-12-04 12:59:11 -07001305
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001306 ret = down_timeout(sem, jiffies);
1307 if (ret)
1308 status = AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 if (ACPI_FAILURE(status)) {
Bjorn Helgaas9e7e2c02006-04-27 05:25:00 -04001311 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -04001312 "Failed to acquire semaphore[%p|%d|%d], %s",
Len Brown4be44fc2005-08-05 00:44:28 -04001313 handle, units, timeout,
1314 acpi_format_exception(status)));
1315 } else {
1316 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -04001317 "Acquired semaphore[%p|%d|%d]", handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001318 units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 }
1320
Patrick Mocheld550d982006-06-27 00:41:40 -04001321 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324/*
1325 * TODO: Support for units > 1?
1326 */
Len Brown4be44fc2005-08-05 00:44:28 -04001327acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
Len Brown4be44fc2005-08-05 00:44:28 -04001329 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001332 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -04001335 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Len Brown4be44fc2005-08-05 00:44:28 -04001337 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle,
1338 units));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 up(sem);
1341
Patrick Mocheld550d982006-06-27 00:41:40 -04001342 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343}
Len Brown4be44fc2005-08-05 00:44:28 -04001344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -04001346u32 acpi_os_get_line(char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
1348
1349#ifdef ENABLE_DEBUGGER
1350 if (acpi_in_debugger) {
1351 u32 chars;
1352
1353 kdb_read(buffer, sizeof(line_buf));
1354
1355 /* remove the CR kdb includes */
1356 chars = strlen(buffer) - 1;
1357 buffer[chars] = '\0';
1358 }
1359#endif
1360
1361 return 0;
1362}
Len Brown4be44fc2005-08-05 00:44:28 -04001363#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Len Brown4be44fc2005-08-05 00:44:28 -04001365acpi_status acpi_os_signal(u32 function, void *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
Len Brown4be44fc2005-08-05 00:44:28 -04001367 switch (function) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 case ACPI_SIGNAL_FATAL:
1369 printk(KERN_ERR PREFIX "Fatal opcode executed\n");
1370 break;
1371 case ACPI_SIGNAL_BREAKPOINT:
1372 /*
1373 * AML Breakpoint
1374 * ACPI spec. says to treat it as a NOP unless
1375 * you are debugging. So if/when we integrate
1376 * AML debugger into the kernel debugger its
1377 * hook will go here. But until then it is
1378 * not useful to print anything on breakpoints.
1379 */
1380 break;
1381 default:
1382 break;
1383 }
1384
1385 return AE_OK;
1386}
Len Brown4be44fc2005-08-05 00:44:28 -04001387
Len Brown4be44fc2005-08-05 00:44:28 -04001388static int __init acpi_os_name_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389{
1390 char *p = acpi_os_name;
Len Brown4be44fc2005-08-05 00:44:28 -04001391 int count = ACPI_MAX_OVERRIDE_LEN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 if (!str || !*str)
1394 return 0;
1395
Dan Carpenter5e2be4e2013-10-18 12:01:43 +03001396 for (; count-- && *str; str++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 if (isalnum(*str) || *str == ' ' || *str == ':')
1398 *p++ = *str;
1399 else if (*str == '\'' || *str == '"')
1400 continue;
1401 else
1402 break;
1403 }
1404 *p = 0;
1405
1406 return 1;
Len Brown4be44fc2005-08-05 00:44:28 -04001407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408}
1409
1410__setup("acpi_os_name=", acpi_os_name_setup);
1411
Lin Ming12d32062010-12-09 16:51:06 +08001412#define OSI_STRING_LENGTH_MAX 64 /* arbitrary */
1413#define OSI_STRING_ENTRIES_MAX 16 /* arbitrary */
1414
1415struct osi_setup_entry {
1416 char string[OSI_STRING_LENGTH_MAX];
1417 bool enable;
1418};
1419
Hanjun Guoe73d3132013-08-13 18:31:15 +08001420static struct osi_setup_entry
1421 osi_setup_entries[OSI_STRING_ENTRIES_MAX] __initdata = {
Shaohua Liaa165972011-07-28 13:48:43 -07001422 {"Module Device", true},
1423 {"Processor Device", true},
1424 {"3.0 _SCP Extensions", true},
1425 {"Processor Aggregator Device", true},
1426};
Lin Ming12d32062010-12-09 16:51:06 +08001427
Lin Mingd90aa922010-12-09 16:50:52 +08001428void __init acpi_osi_setup(char *str)
1429{
Lin Ming12d32062010-12-09 16:51:06 +08001430 struct osi_setup_entry *osi;
1431 bool enable = true;
1432 int i;
1433
Lin Mingd90aa922010-12-09 16:50:52 +08001434 if (!acpi_gbl_create_osi_method)
1435 return;
1436
1437 if (str == NULL || *str == '\0') {
1438 printk(KERN_INFO PREFIX "_OSI method disabled\n");
1439 acpi_gbl_create_osi_method = FALSE;
Lin Ming12d32062010-12-09 16:51:06 +08001440 return;
1441 }
1442
1443 if (*str == '!') {
1444 str++;
Lv Zheng5dc17982013-07-22 16:08:25 +08001445 if (*str == '\0') {
1446 osi_linux.default_disabling = 1;
1447 return;
Lv Zheng741d8122013-07-22 16:08:36 +08001448 } else if (*str == '*') {
1449 acpi_update_interfaces(ACPI_DISABLE_ALL_STRINGS);
1450 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1451 osi = &osi_setup_entries[i];
1452 osi->enable = false;
1453 }
1454 return;
Lv Zheng5dc17982013-07-22 16:08:25 +08001455 }
Lin Ming12d32062010-12-09 16:51:06 +08001456 enable = false;
1457 }
1458
1459 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1460 osi = &osi_setup_entries[i];
1461 if (!strcmp(osi->string, str)) {
1462 osi->enable = enable;
1463 break;
1464 } else if (osi->string[0] == '\0') {
1465 osi->enable = enable;
1466 strncpy(osi->string, str, OSI_STRING_LENGTH_MAX);
1467 break;
1468 }
1469 }
Lin Mingd90aa922010-12-09 16:50:52 +08001470}
1471
Len Brownd4b7dc42008-01-23 20:50:56 -05001472static void __init set_osi_linux(unsigned int enable)
1473{
Lin Mingd90aa922010-12-09 16:50:52 +08001474 if (osi_linux.enable != enable)
Len Brownd4b7dc42008-01-23 20:50:56 -05001475 osi_linux.enable = enable;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001476
1477 if (osi_linux.enable)
1478 acpi_osi_setup("Linux");
1479 else
1480 acpi_osi_setup("!Linux");
1481
Len Brownd4b7dc42008-01-23 20:50:56 -05001482 return;
1483}
Len Brownf5076542007-05-30 00:10:38 -04001484
Len Brownd4b7dc42008-01-23 20:50:56 -05001485static void __init acpi_cmdline_osi_linux(unsigned int enable)
1486{
Lin Mingd90aa922010-12-09 16:50:52 +08001487 osi_linux.cmdline = 1; /* cmdline set the default and override DMI */
1488 osi_linux.dmi = 0;
Len Brownd4b7dc42008-01-23 20:50:56 -05001489 set_osi_linux(enable);
Len Brownf5076542007-05-30 00:10:38 -04001490
Len Brownd4b7dc42008-01-23 20:50:56 -05001491 return;
1492}
1493
1494void __init acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d)
1495{
Len Brownd4b7dc42008-01-23 20:50:56 -05001496 printk(KERN_NOTICE PREFIX "DMI detected: %s\n", d->ident);
1497
1498 if (enable == -1)
1499 return;
1500
Lin Mingd90aa922010-12-09 16:50:52 +08001501 osi_linux.dmi = 1; /* DMI knows that this box asks OSI(Linux) */
Len Brownd4b7dc42008-01-23 20:50:56 -05001502 set_osi_linux(enable);
1503
Len Brownf5076542007-05-30 00:10:38 -04001504 return;
1505}
1506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507/*
Len Brownae00d812007-05-29 18:43:33 -04001508 * Modify the list of "OS Interfaces" reported to BIOS via _OSI
1509 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 * empty string disables _OSI
Len Brownae00d812007-05-29 18:43:33 -04001511 * string starting with '!' disables that string
1512 * otherwise string is added to list, augmenting built-in strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 */
Lin Mingb0ed7a92010-08-06 09:35:51 +08001514static void __init acpi_osi_setup_late(void)
1515{
Lin Ming12d32062010-12-09 16:51:06 +08001516 struct osi_setup_entry *osi;
1517 char *str;
1518 int i;
Lin Mingd90aa922010-12-09 16:50:52 +08001519 acpi_status status;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001520
Lv Zheng5dc17982013-07-22 16:08:25 +08001521 if (osi_linux.default_disabling) {
1522 status = acpi_update_interfaces(ACPI_DISABLE_ALL_VENDOR_STRINGS);
1523
1524 if (ACPI_SUCCESS(status))
1525 printk(KERN_INFO PREFIX "Disabled all _OSI OS vendors\n");
1526 }
1527
Lin Ming12d32062010-12-09 16:51:06 +08001528 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1529 osi = &osi_setup_entries[i];
1530 str = osi->string;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001531
Lin Ming12d32062010-12-09 16:51:06 +08001532 if (*str == '\0')
1533 break;
1534 if (osi->enable) {
1535 status = acpi_install_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001536
Lin Ming12d32062010-12-09 16:51:06 +08001537 if (ACPI_SUCCESS(status))
1538 printk(KERN_INFO PREFIX "Added _OSI(%s)\n", str);
1539 } else {
1540 status = acpi_remove_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001541
Lin Ming12d32062010-12-09 16:51:06 +08001542 if (ACPI_SUCCESS(status))
1543 printk(KERN_INFO PREFIX "Deleted _OSI(%s)\n", str);
1544 }
Lin Mingb0ed7a92010-08-06 09:35:51 +08001545 }
1546}
1547
Lin Mingd90aa922010-12-09 16:50:52 +08001548static int __init osi_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
Lin Mingd90aa922010-12-09 16:50:52 +08001550 if (str && !strcmp("Linux", str))
1551 acpi_cmdline_osi_linux(1);
1552 else if (str && !strcmp("!Linux", str))
1553 acpi_cmdline_osi_linux(0);
1554 else
1555 acpi_osi_setup(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
1557 return 1;
1558}
1559
Lin Mingd90aa922010-12-09 16:50:52 +08001560__setup("acpi_osi=", osi_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Bob Moore22b5afc2014-03-24 14:49:00 +08001562/*
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001563 * Disable the auto-serialization of named objects creation methods.
Bob Moore22b5afc2014-03-24 14:49:00 +08001564 *
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001565 * This feature is enabled by default. It marks the AML control methods
Bob Moore22b5afc2014-03-24 14:49:00 +08001566 * that contain the opcodes to create named objects as "Serialized".
1567 */
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001568static int __init acpi_no_auto_serialize_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001570 acpi_gbl_auto_serialize_methods = FALSE;
1571 pr_info("ACPI: auto-serialization disabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 return 1;
1574}
1575
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001576__setup("acpi_no_auto_serialize", acpi_no_auto_serialize_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Thomas Renningerdf92e692008-02-04 23:31:22 -08001578/* Check of resource interference between native drivers and ACPI
1579 * OperationRegions (SystemIO and System Memory only).
1580 * IO ports and memory declared in ACPI might be used by the ACPI subsystem
1581 * in arbitrary AML code and can interfere with legacy drivers.
1582 * acpi_enforce_resources= can be set to:
1583 *
Luca Tettamanti7e905602009-03-30 00:01:27 +02001584 * - strict (default) (2)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001585 * -> further driver trying to access the resources will not load
Luca Tettamanti7e905602009-03-30 00:01:27 +02001586 * - lax (1)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001587 * -> further driver trying to access the resources will load, but you
1588 * get a system message that something might go wrong...
1589 *
1590 * - no (0)
1591 * -> ACPI Operation Region resources will not be registered
1592 *
1593 */
1594#define ENFORCE_RESOURCES_STRICT 2
1595#define ENFORCE_RESOURCES_LAX 1
1596#define ENFORCE_RESOURCES_NO 0
1597
Luca Tettamanti7e905602009-03-30 00:01:27 +02001598static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001599
1600static int __init acpi_enforce_resources_setup(char *str)
1601{
1602 if (str == NULL || *str == '\0')
1603 return 0;
1604
1605 if (!strcmp("strict", str))
1606 acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1607 else if (!strcmp("lax", str))
1608 acpi_enforce_resources = ENFORCE_RESOURCES_LAX;
1609 else if (!strcmp("no", str))
1610 acpi_enforce_resources = ENFORCE_RESOURCES_NO;
1611
1612 return 1;
1613}
1614
1615__setup("acpi_enforce_resources=", acpi_enforce_resources_setup);
1616
1617/* Check for resource conflicts between ACPI OperationRegions and native
1618 * drivers */
Jean Delvare876fba42009-11-11 15:22:15 +01001619int acpi_check_resource_conflict(const struct resource *res)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001620{
Lin Mingf654c0f2012-01-12 13:10:32 +08001621 acpi_adr_space_type space_id;
1622 acpi_size length;
1623 u8 warn = 0;
1624 int clash = 0;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001625
1626 if (acpi_enforce_resources == ENFORCE_RESOURCES_NO)
1627 return 0;
1628 if (!(res->flags & IORESOURCE_IO) && !(res->flags & IORESOURCE_MEM))
1629 return 0;
1630
Lin Mingf654c0f2012-01-12 13:10:32 +08001631 if (res->flags & IORESOURCE_IO)
1632 space_id = ACPI_ADR_SPACE_SYSTEM_IO;
1633 else
1634 space_id = ACPI_ADR_SPACE_SYSTEM_MEMORY;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001635
Alexandru Gheorghiue4f52242013-03-12 08:53:02 +00001636 length = resource_size(res);
Lin Mingf654c0f2012-01-12 13:10:32 +08001637 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO)
1638 warn = 1;
1639 clash = acpi_check_address_range(space_id, res->start, length, warn);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001640
1641 if (clash) {
1642 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO) {
Jean Delvare14f03342009-09-08 15:31:46 +02001643 if (acpi_enforce_resources == ENFORCE_RESOURCES_LAX)
1644 printk(KERN_NOTICE "ACPI: This conflict may"
1645 " cause random problems and system"
1646 " instability\n");
1647 printk(KERN_INFO "ACPI: If an ACPI driver is available"
1648 " for this device, you should use it instead of"
1649 " the native driver\n");
Thomas Renningerdf92e692008-02-04 23:31:22 -08001650 }
1651 if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT)
1652 return -EBUSY;
1653 }
1654 return 0;
1655}
Thomas Renninger443dea72008-02-04 23:31:23 -08001656EXPORT_SYMBOL(acpi_check_resource_conflict);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001657
1658int acpi_check_region(resource_size_t start, resource_size_t n,
1659 const char *name)
1660{
1661 struct resource res = {
1662 .start = start,
1663 .end = start + n - 1,
1664 .name = name,
1665 .flags = IORESOURCE_IO,
1666 };
1667
1668 return acpi_check_resource_conflict(&res);
1669}
1670EXPORT_SYMBOL(acpi_check_region);
1671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672/*
Jean Delvare70dd6be2010-05-27 19:58:37 +02001673 * Let drivers know whether the resource checks are effective
1674 */
1675int acpi_resources_are_enforced(void)
1676{
1677 return acpi_enforce_resources == ENFORCE_RESOURCES_STRICT;
1678}
1679EXPORT_SYMBOL(acpi_resources_are_enforced);
1680
Hans de Goedea87878b2015-06-16 16:27:46 +02001681bool acpi_osi_is_win8(void)
1682{
1683 return acpi_gbl_osi_data >= ACPI_OSI_WIN_8;
1684}
1685EXPORT_SYMBOL(acpi_osi_is_win8);
1686
Jean Delvare70dd6be2010-05-27 19:58:37 +02001687/*
Lin Ming9f63b882011-03-23 17:26:34 +08001688 * Deallocate the memory for a spinlock.
1689 */
1690void acpi_os_delete_lock(acpi_spinlock handle)
1691{
1692 ACPI_FREE(handle);
1693}
1694
1695/*
Robert Moore73459f72005-06-24 00:00:00 -04001696 * Acquire a spinlock.
1697 *
1698 * handle is a pointer to the spinlock_t.
Robert Moore73459f72005-06-24 00:00:00 -04001699 */
1700
Bob Moore967440e32006-06-23 17:04:00 -04001701acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp)
Robert Moore73459f72005-06-24 00:00:00 -04001702{
Bob Mooreb8e4d892006-01-27 16:43:00 -05001703 acpi_cpu_flags flags;
Bob Moore967440e32006-06-23 17:04:00 -04001704 spin_lock_irqsave(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001705 return flags;
1706}
1707
1708/*
1709 * Release a spinlock. See above.
1710 */
1711
Bob Moore967440e32006-06-23 17:04:00 -04001712void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags)
Robert Moore73459f72005-06-24 00:00:00 -04001713{
Bob Moore967440e32006-06-23 17:04:00 -04001714 spin_unlock_irqrestore(lockp, flags);
Robert Moore73459f72005-06-24 00:00:00 -04001715}
1716
Robert Moore73459f72005-06-24 00:00:00 -04001717#ifndef ACPI_USE_LOCAL_CACHE
1718
1719/*******************************************************************************
1720 *
1721 * FUNCTION: acpi_os_create_cache
1722 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001723 * PARAMETERS: name - Ascii name for the cache
1724 * size - Size of each cached object
1725 * depth - Maximum depth of the cache (in objects) <ignored>
1726 * cache - Where the new cache object is returned
Robert Moore73459f72005-06-24 00:00:00 -04001727 *
Bob Mooreb229cf92006-04-21 17:15:00 -04001728 * RETURN: status
Robert Moore73459f72005-06-24 00:00:00 -04001729 *
1730 * DESCRIPTION: Create a cache object
1731 *
1732 ******************************************************************************/
1733
1734acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001735acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache)
Robert Moore73459f72005-06-24 00:00:00 -04001736{
Paul Mundt20c2df82007-07-20 10:11:58 +09001737 *cache = kmem_cache_create(name, size, 0, 0, NULL);
Adrian Bunka6fdbf92006-12-19 12:56:13 -08001738 if (*cache == NULL)
Bob Mooreb229cf92006-04-21 17:15:00 -04001739 return AE_ERROR;
1740 else
1741 return AE_OK;
Robert Moore73459f72005-06-24 00:00:00 -04001742}
1743
1744/*******************************************************************************
1745 *
1746 * FUNCTION: acpi_os_purge_cache
1747 *
1748 * PARAMETERS: Cache - Handle to cache object
1749 *
1750 * RETURN: Status
1751 *
1752 * DESCRIPTION: Free all objects within the requested cache.
1753 *
1754 ******************************************************************************/
1755
Len Brown4be44fc2005-08-05 00:44:28 -04001756acpi_status acpi_os_purge_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001757{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001758 kmem_cache_shrink(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001759 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001760}
1761
1762/*******************************************************************************
1763 *
1764 * FUNCTION: acpi_os_delete_cache
1765 *
1766 * PARAMETERS: Cache - Handle to cache object
1767 *
1768 * RETURN: Status
1769 *
1770 * DESCRIPTION: Free all objects within the requested cache and delete the
1771 * cache object.
1772 *
1773 ******************************************************************************/
1774
Len Brown4be44fc2005-08-05 00:44:28 -04001775acpi_status acpi_os_delete_cache(acpi_cache_t * cache)
Robert Moore73459f72005-06-24 00:00:00 -04001776{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001777 kmem_cache_destroy(cache);
Len Brown4be44fc2005-08-05 00:44:28 -04001778 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001779}
1780
1781/*******************************************************************************
1782 *
1783 * FUNCTION: acpi_os_release_object
1784 *
1785 * PARAMETERS: Cache - Handle to cache object
1786 * Object - The object to be released
1787 *
1788 * RETURN: None
1789 *
1790 * DESCRIPTION: Release an object to the specified cache. If cache is full,
1791 * the object is deleted.
1792 *
1793 ******************************************************************************/
1794
Len Brown4be44fc2005-08-05 00:44:28 -04001795acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object)
Robert Moore73459f72005-06-24 00:00:00 -04001796{
Len Brown4be44fc2005-08-05 00:44:28 -04001797 kmem_cache_free(cache, object);
1798 return (AE_OK);
Robert Moore73459f72005-06-24 00:00:00 -04001799}
Robert Moore73459f72005-06-24 00:00:00 -04001800#endif
Myron Stowed362eda2010-10-21 14:24:04 -06001801
Lv Zhenga94e88c2014-04-04 12:39:11 +08001802static int __init acpi_no_static_ssdt_setup(char *s)
Lv Zhengb75dd292013-06-08 00:58:48 +00001803{
Lv Zhenga94e88c2014-04-04 12:39:11 +08001804 acpi_gbl_disable_ssdt_table_install = TRUE;
1805 pr_info("ACPI: static SSDT installation disabled\n");
Lv Zhengb75dd292013-06-08 00:58:48 +00001806
Lv Zhenga94e88c2014-04-04 12:39:11 +08001807 return 0;
Lv Zhengb75dd292013-06-08 00:58:48 +00001808}
1809
Lv Zhenga94e88c2014-04-04 12:39:11 +08001810early_param("acpi_no_static_ssdt", acpi_no_static_ssdt_setup);
Lv Zhengb75dd292013-06-08 00:58:48 +00001811
Lv Zheng4dde5072014-02-11 11:01:52 +08001812static int __init acpi_disable_return_repair(char *s)
1813{
1814 printk(KERN_NOTICE PREFIX
1815 "ACPI: Predefined validation mechanism disabled\n");
1816 acpi_gbl_disable_auto_repair = TRUE;
1817
1818 return 1;
1819}
1820
1821__setup("acpica_no_return_repair", acpi_disable_return_repair);
1822
Myron Stowed362eda2010-10-21 14:24:04 -06001823acpi_status __init acpi_os_initialize(void)
1824{
1825 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
1826 acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1827 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe0_block);
1828 acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe1_block);
Randy Wrighta4714a82014-06-04 08:55:59 -07001829 if (acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER) {
1830 /*
1831 * Use acpi_os_map_generic_address to pre-map the reset
1832 * register if it's in system memory.
1833 */
1834 int rv;
1835
1836 rv = acpi_os_map_generic_address(&acpi_gbl_FADT.reset_register);
1837 pr_debug(PREFIX "%s: map reset_reg status %d\n", __func__, rv);
1838 }
Myron Stowed362eda2010-10-21 14:24:04 -06001839
1840 return AE_OK;
1841}
1842
Zhang Rui32d47ee2010-12-08 10:40:36 +08001843acpi_status __init acpi_os_initialize1(void)
Myron Stowed362eda2010-10-21 14:24:04 -06001844{
Tejun Heo44d25882011-02-01 11:42:42 +01001845 kacpid_wq = alloc_workqueue("kacpid", 0, 1);
1846 kacpi_notify_wq = alloc_workqueue("kacpi_notify", 0, 1);
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001847 kacpi_hotplug_wq = alloc_ordered_workqueue("kacpi_hotplug", 0);
Myron Stowed362eda2010-10-21 14:24:04 -06001848 BUG_ON(!kacpid_wq);
1849 BUG_ON(!kacpi_notify_wq);
1850 BUG_ON(!kacpi_hotplug_wq);
Len Brown1bd64d42010-10-26 14:50:56 -04001851 acpi_install_interface_handler(acpi_osi_handler);
1852 acpi_osi_setup_late();
Myron Stowed362eda2010-10-21 14:24:04 -06001853 return AE_OK;
1854}
1855
1856acpi_status acpi_os_terminate(void)
1857{
1858 if (acpi_irq_handler) {
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +01001859 acpi_os_remove_interrupt_handler(acpi_gbl_FADT.sci_interrupt,
Myron Stowed362eda2010-10-21 14:24:04 -06001860 acpi_irq_handler);
1861 }
1862
1863 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe1_block);
1864 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe0_block);
1865 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1866 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
Randy Wrighta4714a82014-06-04 08:55:59 -07001867 if (acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER)
1868 acpi_os_unmap_generic_address(&acpi_gbl_FADT.reset_register);
Myron Stowed362eda2010-10-21 14:24:04 -06001869
1870 destroy_workqueue(kacpid_wq);
1871 destroy_workqueue(kacpi_notify_wq);
1872 destroy_workqueue(kacpi_hotplug_wq);
1873
1874 return AE_OK;
1875}
Tang Liang09f98a82011-12-09 10:05:54 +08001876
1877acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control,
1878 u32 pm1b_control)
1879{
1880 int rc = 0;
1881 if (__acpi_os_prepare_sleep)
1882 rc = __acpi_os_prepare_sleep(sleep_state,
1883 pm1a_control, pm1b_control);
1884 if (rc < 0)
1885 return AE_ERROR;
1886 else if (rc > 0)
1887 return AE_CTRL_SKIP;
1888
1889 return AE_OK;
1890}
1891
1892void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state,
1893 u32 pm1a_ctrl, u32 pm1b_ctrl))
1894{
1895 __acpi_os_prepare_sleep = func;
1896}
Yinghai Lu92d8aff2013-01-21 13:20:47 -08001897
Ben Guthrod6b47b12013-07-30 08:24:52 -04001898acpi_status acpi_os_prepare_extended_sleep(u8 sleep_state, u32 val_a,
1899 u32 val_b)
1900{
1901 int rc = 0;
1902 if (__acpi_os_prepare_extended_sleep)
1903 rc = __acpi_os_prepare_extended_sleep(sleep_state,
1904 val_a, val_b);
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_extended_sleep(int (*func)(u8 sleep_state,
1914 u32 val_a, u32 val_b))
1915{
1916 __acpi_os_prepare_extended_sleep = func;
1917}