blob: 7ccba395c9ddbeb7a6725b336d69d01abd4b82b1 [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
Andi Kleencfa806f2010-07-20 15:18:36 -0700178 /* Resources are never freed */
Myron Stowebc9ffce2011-11-07 16:23:27 -0700179 if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_IO)
180 request_region(addr, length, desc);
181 else if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
182 request_mem_region(addr, length, desc);
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700183}
184
Rafael J. Wysockib9a5e5e2015-05-07 21:19:39 +0200185static void __init acpi_reserve_resources(void)
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700186{
Len Browneee3c852007-02-03 01:38:16 -0500187 acpi_request_region(&acpi_gbl_FADT.xpm1a_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700188 "ACPI PM1a_EVT_BLK");
189
Len Browneee3c852007-02-03 01:38:16 -0500190 acpi_request_region(&acpi_gbl_FADT.xpm1b_event_block, acpi_gbl_FADT.pm1_event_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700191 "ACPI PM1b_EVT_BLK");
192
Len Browneee3c852007-02-03 01:38:16 -0500193 acpi_request_region(&acpi_gbl_FADT.xpm1a_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700194 "ACPI PM1a_CNT_BLK");
195
Len Browneee3c852007-02-03 01:38:16 -0500196 acpi_request_region(&acpi_gbl_FADT.xpm1b_control_block, acpi_gbl_FADT.pm1_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700197 "ACPI PM1b_CNT_BLK");
198
Len Browneee3c852007-02-03 01:38:16 -0500199 if (acpi_gbl_FADT.pm_timer_length == 4)
200 acpi_request_region(&acpi_gbl_FADT.xpm_timer_block, 4, "ACPI PM_TMR");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700201
Len Browneee3c852007-02-03 01:38:16 -0500202 acpi_request_region(&acpi_gbl_FADT.xpm2_control_block, acpi_gbl_FADT.pm2_control_length,
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700203 "ACPI PM2_CNT_BLK");
204
205 /* Length of GPE blocks must be a non-negative multiple of 2 */
206
Len Browneee3c852007-02-03 01:38:16 -0500207 if (!(acpi_gbl_FADT.gpe0_block_length & 0x1))
208 acpi_request_region(&acpi_gbl_FADT.xgpe0_block,
209 acpi_gbl_FADT.gpe0_block_length, "ACPI GPE0_BLK");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700210
Len Browneee3c852007-02-03 01:38:16 -0500211 if (!(acpi_gbl_FADT.gpe1_block_length & 0x1))
212 acpi_request_region(&acpi_gbl_FADT.xgpe1_block,
213 acpi_gbl_FADT.gpe1_block_length, "ACPI GPE1_BLK");
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700214}
Bjorn Helgaas9a47cdb2007-01-18 16:42:55 -0700215
Len Brown4be44fc2005-08-05 00:44:28 -0400216void acpi_os_printf(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 va_list args;
219 va_start(args, fmt);
220 acpi_os_vprintf(fmt, args);
221 va_end(args);
222}
Len Brown4be44fc2005-08-05 00:44:28 -0400223
Len Brown4be44fc2005-08-05 00:44:28 -0400224void acpi_os_vprintf(const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 static char buffer[512];
Len Brown4be44fc2005-08-05 00:44:28 -0400227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 vsprintf(buffer, fmt, args);
229
230#ifdef ENABLE_DEBUGGER
231 if (acpi_in_debugger) {
232 kdb_printf("%s", buffer);
233 } else {
Frank Seidel4d939152009-02-04 17:03:07 +0100234 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236#else
Frank Seidel4d939152009-02-04 17:03:07 +0100237 printk(KERN_CONT "%s", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238#endif
239}
240
Takao Indoh4996c022011-07-14 18:05:21 -0400241#ifdef CONFIG_KEXEC
242static unsigned long acpi_rsdp;
243static int __init setup_acpi_rsdp(char *arg)
244{
Christoph Jaeger3d915892014-06-13 21:49:58 +0200245 if (kstrtoul(arg, 16, &acpi_rsdp))
246 return -EINVAL;
Takao Indoh4996c022011-07-14 18:05:21 -0400247 return 0;
248}
249early_param("acpi_rsdp", setup_acpi_rsdp);
250#endif
251
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300252acpi_physical_address __init acpi_os_get_root_pointer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Takao Indoh4996c022011-07-14 18:05:21 -0400254#ifdef CONFIG_KEXEC
255 if (acpi_rsdp)
256 return acpi_rsdp;
257#endif
258
Matt Fleming83e68182012-11-14 09:42:35 +0000259 if (efi_enabled(EFI_CONFIG_TABLES)) {
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800260 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300261 return efi.acpi20;
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800262 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300263 return efi.acpi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400265 printk(KERN_ERR PREFIX
266 "System description tables not found\n");
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300267 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
Graeme Gregory8a1664b2014-07-18 18:02:52 +0800269 } else if (IS_ENABLED(CONFIG_ACPI_LEGACY_TABLES_LOOKUP)) {
Len Brown239665a2007-11-23 20:08:02 -0500270 acpi_physical_address pa = 0;
271
272 acpi_find_root_pointer(&pa);
273 return pa;
274 }
Graeme Gregory8a1664b2014-07-18 18:02:52 +0800275
276 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600279/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
Myron Stowe4a3cba52010-10-21 14:24:14 -0600280static struct acpi_ioremap *
281acpi_map_lookup(acpi_physical_address phys, acpi_size size)
Myron Stowe620242a2010-10-21 14:23:53 -0600282{
283 struct acpi_ioremap *map;
284
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600285 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
Myron Stowe620242a2010-10-21 14:23:53 -0600286 if (map->phys <= phys &&
287 phys + size <= map->phys + map->size)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600288 return map;
289
290 return NULL;
291}
292
293/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
294static void __iomem *
295acpi_map_vaddr_lookup(acpi_physical_address phys, unsigned int size)
296{
297 struct acpi_ioremap *map;
298
299 map = acpi_map_lookup(phys, size);
300 if (map)
301 return map->virt + (phys - map->phys);
Myron Stowe620242a2010-10-21 14:23:53 -0600302
303 return NULL;
304}
305
Rafael J. Wysocki13606a22011-02-08 23:38:25 +0100306void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size)
307{
308 struct acpi_ioremap *map;
309 void __iomem *virt = NULL;
310
311 mutex_lock(&acpi_ioremap_lock);
312 map = acpi_map_lookup(phys, size);
313 if (map) {
314 virt = map->virt + (phys - map->phys);
315 map->refcount++;
316 }
317 mutex_unlock(&acpi_ioremap_lock);
318 return virt;
319}
320EXPORT_SYMBOL_GPL(acpi_os_get_iomem);
321
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600322/* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */
Myron Stowe620242a2010-10-21 14:23:53 -0600323static struct acpi_ioremap *
324acpi_map_lookup_virt(void __iomem *virt, acpi_size size)
325{
326 struct acpi_ioremap *map;
327
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600328 list_for_each_entry_rcu(map, &acpi_ioremaps, list)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600329 if (map->virt <= virt &&
330 virt + size <= map->virt + map->size)
Myron Stowe620242a2010-10-21 14:23:53 -0600331 return map;
332
333 return NULL;
334}
335
Graeme Gregoryaafc65c2015-03-24 14:02:35 +0000336#if defined(CONFIG_IA64) || defined(CONFIG_ARM64)
Myron Stoweba242d52012-01-20 19:13:30 -0700337/* ioremap will take care of cache attributes */
338#define should_use_kmap(pfn) 0
Graeme Gregoryaafc65c2015-03-24 14:02:35 +0000339#else
340#define should_use_kmap(pfn) page_is_ram(pfn)
Myron Stoweba242d52012-01-20 19:13:30 -0700341#endif
342
343static void __iomem *acpi_map(acpi_physical_address pg_off, unsigned long pg_sz)
344{
345 unsigned long pfn;
346
347 pfn = pg_off >> PAGE_SHIFT;
348 if (should_use_kmap(pfn)) {
349 if (pg_sz > PAGE_SIZE)
350 return NULL;
351 return (void __iomem __force *)kmap(pfn_to_page(pfn));
352 } else
353 return acpi_os_ioremap(pg_off, pg_sz);
354}
355
356static void acpi_unmap(acpi_physical_address pg_off, void __iomem *vaddr)
357{
358 unsigned long pfn;
359
360 pfn = pg_off >> PAGE_SHIFT;
Jan Beuliche2526752012-02-24 11:41:53 +0000361 if (should_use_kmap(pfn))
Myron Stoweba242d52012-01-20 19:13:30 -0700362 kunmap(pfn_to_page(pfn));
363 else
364 iounmap(vaddr);
365}
366
Jan Beulich2fdf0742007-12-13 08:33:59 +0000367void __iomem *__init_refok
Lv Zhenga2383172014-05-20 15:39:41 +0800368acpi_os_map_iomem(acpi_physical_address phys, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100370 struct acpi_ioremap *map;
Myron Stowe620242a2010-10-21 14:23:53 -0600371 void __iomem *virt;
Rafael J. Wysocki2d6d9fd2011-01-19 22:27:14 +0100372 acpi_physical_address pg_off;
373 acpi_size pg_sz;
Myron Stowe620242a2010-10-21 14:23:53 -0600374
Bjorn Helgaas9f4fd612006-03-26 01:37:10 -0800375 if (phys > ULONG_MAX) {
376 printk(KERN_ERR PREFIX "Cannot map memory that high\n");
Randy Dunlap70c08462007-02-13 16:11:36 -0800377 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
Myron Stowe620242a2010-10-21 14:23:53 -0600379
380 if (!acpi_gbl_permanent_mmap)
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300381 return __acpi_map_table((unsigned long)phys, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600382
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100383 mutex_lock(&acpi_ioremap_lock);
384 /* Check if there's a suitable mapping already. */
385 map = acpi_map_lookup(phys, size);
386 if (map) {
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100387 map->refcount++;
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100388 goto out;
389 }
390
Myron Stowe620242a2010-10-21 14:23:53 -0600391 map = kzalloc(sizeof(*map), GFP_KERNEL);
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100392 if (!map) {
393 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600394 return NULL;
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100395 }
Myron Stowe620242a2010-10-21 14:23:53 -0600396
Myron Stowe4a3cba52010-10-21 14:24:14 -0600397 pg_off = round_down(phys, PAGE_SIZE);
398 pg_sz = round_up(phys + size, PAGE_SIZE) - pg_off;
Myron Stoweba242d52012-01-20 19:13:30 -0700399 virt = acpi_map(pg_off, pg_sz);
Myron Stowe620242a2010-10-21 14:23:53 -0600400 if (!virt) {
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100401 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600402 kfree(map);
403 return NULL;
404 }
405
406 INIT_LIST_HEAD(&map->list);
407 map->virt = virt;
Myron Stowe4a3cba52010-10-21 14:24:14 -0600408 map->phys = pg_off;
409 map->size = pg_sz;
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100410 map->refcount = 1;
Myron Stowe620242a2010-10-21 14:23:53 -0600411
Myron Stowe78cdb3e2010-10-21 14:24:09 -0600412 list_add_tail_rcu(&map->list, &acpi_ioremaps);
Myron Stowe620242a2010-10-21 14:23:53 -0600413
Lv Zhenga2383172014-05-20 15:39:41 +0800414out:
Rafael J. Wysocki7ffd0442011-02-08 23:38:05 +0100415 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe4a3cba52010-10-21 14:24:14 -0600416 return map->virt + (phys - map->phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
Lv Zhenga2383172014-05-20 15:39:41 +0800418EXPORT_SYMBOL_GPL(acpi_os_map_iomem);
419
420void *__init_refok
421acpi_os_map_memory(acpi_physical_address phys, acpi_size size)
422{
423 return (void *)acpi_os_map_iomem(phys, size);
424}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800425EXPORT_SYMBOL_GPL(acpi_os_map_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100427static void acpi_os_drop_map_ref(struct acpi_ioremap *map)
Myron Stowe4a3cba52010-10-21 14:24:14 -0600428{
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100429 if (!--map->refcount)
430 list_del_rcu(&map->list);
Myron Stowe4a3cba52010-10-21 14:24:14 -0600431}
Myron Stowe4a3cba52010-10-21 14:24:14 -0600432
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100433static void acpi_os_map_cleanup(struct acpi_ioremap *map)
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100434{
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100435 if (!map->refcount) {
Konstantin Khlebnikov74b51ee2014-11-09 13:53:37 +0400436 synchronize_rcu_expedited();
Myron Stoweba242d52012-01-20 19:13:30 -0700437 acpi_unmap(map->phys, map->virt);
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100438 kfree(map);
439 }
Myron Stowe4a3cba52010-10-21 14:24:14 -0600440}
441
Lv Zhenga2383172014-05-20 15:39:41 +0800442void __ref acpi_os_unmap_iomem(void __iomem *virt, acpi_size size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Myron Stowe620242a2010-10-21 14:23:53 -0600444 struct acpi_ioremap *map;
Myron Stowe620242a2010-10-21 14:23:53 -0600445
446 if (!acpi_gbl_permanent_mmap) {
Yinghai Lu7d972772009-02-07 15:39:41 -0800447 __acpi_unmap_table(virt, size);
Myron Stowe620242a2010-10-21 14:23:53 -0600448 return;
449 }
450
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100451 mutex_lock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600452 map = acpi_map_lookup_virt(virt, size);
453 if (!map) {
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100454 mutex_unlock(&acpi_ioremap_lock);
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100455 WARN(true, PREFIX "%s: bad address %p\n", __func__, virt);
Myron Stowe620242a2010-10-21 14:23:53 -0600456 return;
457 }
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100458 acpi_os_drop_map_ref(map);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100459 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe620242a2010-10-21 14:23:53 -0600460
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100461 acpi_os_map_cleanup(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
Lv Zhenga2383172014-05-20 15:39:41 +0800463EXPORT_SYMBOL_GPL(acpi_os_unmap_iomem);
464
465void __ref acpi_os_unmap_memory(void *virt, acpi_size size)
466{
467 return acpi_os_unmap_iomem((void __iomem *)virt, size);
468}
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800469EXPORT_SYMBOL_GPL(acpi_os_unmap_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Jeremy Fitzhardinge0d3a9cf2009-02-22 14:58:56 -0800471void __init early_acpi_os_unmap_memory(void __iomem *virt, acpi_size size)
Yinghai Lu7d972772009-02-07 15:39:41 -0800472{
473 if (!acpi_gbl_permanent_mmap)
474 __acpi_unmap_table(virt, size);
475}
476
Myron Stowe6f68c912011-11-07 16:23:34 -0700477int acpi_os_map_generic_address(struct acpi_generic_address *gas)
Myron Stowe29718522010-10-21 14:23:59 -0600478{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700479 u64 addr;
Myron Stowe29718522010-10-21 14:23:59 -0600480 void __iomem *virt;
481
Myron Stowebc9ffce2011-11-07 16:23:27 -0700482 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
Myron Stowe29718522010-10-21 14:23:59 -0600483 return 0;
484
Myron Stowebc9ffce2011-11-07 16:23:27 -0700485 /* Handle possible alignment issues */
486 memcpy(&addr, &gas->address, sizeof(addr));
487 if (!addr || !gas->bit_width)
Myron Stowe29718522010-10-21 14:23:59 -0600488 return -EINVAL;
489
Lv Zhenga2383172014-05-20 15:39:41 +0800490 virt = acpi_os_map_iomem(addr, gas->bit_width / 8);
Myron Stowe29718522010-10-21 14:23:59 -0600491 if (!virt)
492 return -EIO;
493
494 return 0;
495}
Myron Stowe6f68c912011-11-07 16:23:34 -0700496EXPORT_SYMBOL(acpi_os_map_generic_address);
Myron Stowe29718522010-10-21 14:23:59 -0600497
Myron Stowe6f68c912011-11-07 16:23:34 -0700498void acpi_os_unmap_generic_address(struct acpi_generic_address *gas)
Myron Stowe29718522010-10-21 14:23:59 -0600499{
Myron Stowebc9ffce2011-11-07 16:23:27 -0700500 u64 addr;
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100501 struct acpi_ioremap *map;
Myron Stowe29718522010-10-21 14:23:59 -0600502
Myron Stowebc9ffce2011-11-07 16:23:27 -0700503 if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY)
Myron Stowe29718522010-10-21 14:23:59 -0600504 return;
505
Myron Stowebc9ffce2011-11-07 16:23:27 -0700506 /* Handle possible alignment issues */
507 memcpy(&addr, &gas->address, sizeof(addr));
508 if (!addr || !gas->bit_width)
Myron Stowe29718522010-10-21 14:23:59 -0600509 return;
510
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100511 mutex_lock(&acpi_ioremap_lock);
Myron Stowebc9ffce2011-11-07 16:23:27 -0700512 map = acpi_map_lookup(addr, gas->bit_width / 8);
Rafael J. Wysocki7fe135d2011-02-08 23:37:53 +0100513 if (!map) {
514 mutex_unlock(&acpi_ioremap_lock);
515 return;
516 }
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100517 acpi_os_drop_map_ref(map);
Rafael J. Wysocki7bbb8902011-02-08 23:37:42 +0100518 mutex_unlock(&acpi_ioremap_lock);
Myron Stowe29718522010-10-21 14:23:59 -0600519
Rafael J. Wysockib7c1fad2011-02-08 23:38:15 +0100520 acpi_os_map_cleanup(map);
Myron Stowe29718522010-10-21 14:23:59 -0600521}
Myron Stowe6f68c912011-11-07 16:23:34 -0700522EXPORT_SYMBOL(acpi_os_unmap_generic_address);
Myron Stowe29718522010-10-21 14:23:59 -0600523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524#ifdef ACPI_FUTURE_USAGE
525acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400526acpi_os_get_physical_address(void *virt, acpi_physical_address * phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
Len Brown4be44fc2005-08-05 00:44:28 -0400528 if (!phys || !virt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return AE_BAD_PARAMETER;
530
531 *phys = virt_to_phys(virt);
532
533 return AE_OK;
534}
535#endif
536
537#define ACPI_MAX_OVERRIDE_LEN 100
538
539static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN];
540
541acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400542acpi_os_predefined_override(const struct acpi_predefined_names *init_val,
543 acpi_string * new_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
545 if (!init_val || !new_val)
546 return AE_BAD_PARAMETER;
547
548 *new_val = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400549 if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400551 acpi_os_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 *new_val = acpi_os_name;
553 }
554
555 return AE_OK;
556}
557
Thomas Renninger53aac442012-10-01 00:23:54 +0200558#ifdef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
559#include <linux/earlycpio.h>
560#include <linux/memblock.h>
561
562static u64 acpi_tables_addr;
563static int all_tables_size;
564
565/* Copied from acpica/tbutils.c:acpi_tb_checksum() */
Rashika66e162b2013-12-17 14:43:05 +0530566static u8 __init acpi_table_checksum(u8 *buffer, u32 length)
Thomas Renninger53aac442012-10-01 00:23:54 +0200567{
568 u8 sum = 0;
569 u8 *end = buffer + length;
570
571 while (buffer < end)
572 sum = (u8) (sum + *(buffer++));
573 return sum;
574}
575
576/* All but ACPI_SIG_RSDP and ACPI_SIG_FACS: */
577static const char * const table_sigs[] = {
578 ACPI_SIG_BERT, ACPI_SIG_CPEP, ACPI_SIG_ECDT, ACPI_SIG_EINJ,
579 ACPI_SIG_ERST, ACPI_SIG_HEST, ACPI_SIG_MADT, ACPI_SIG_MSCT,
580 ACPI_SIG_SBST, ACPI_SIG_SLIT, ACPI_SIG_SRAT, ACPI_SIG_ASF,
581 ACPI_SIG_BOOT, ACPI_SIG_DBGP, ACPI_SIG_DMAR, ACPI_SIG_HPET,
582 ACPI_SIG_IBFT, ACPI_SIG_IVRS, ACPI_SIG_MCFG, ACPI_SIG_MCHI,
583 ACPI_SIG_SLIC, ACPI_SIG_SPCR, ACPI_SIG_SPMI, ACPI_SIG_TCPA,
584 ACPI_SIG_UEFI, ACPI_SIG_WAET, ACPI_SIG_WDAT, ACPI_SIG_WDDT,
585 ACPI_SIG_WDRT, ACPI_SIG_DSDT, ACPI_SIG_FADT, ACPI_SIG_PSDT,
586 ACPI_SIG_RSDT, ACPI_SIG_XSDT, ACPI_SIG_SSDT, NULL };
587
Thomas Renninger53aac442012-10-01 00:23:54 +0200588#define ACPI_HEADER_SIZE sizeof(struct acpi_table_header)
589
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700590#define ACPI_OVERRIDE_TABLES 64
591static struct cpio_data __initdata acpi_initrd_files[ACPI_OVERRIDE_TABLES];
592
593#define MAP_CHUNK_SIZE (NR_FIX_BTMAPS << PAGE_SHIFT)
Thomas Renninger53aac442012-10-01 00:23:54 +0200594
595void __init acpi_initrd_override(void *data, size_t size)
596{
597 int sig, no, table_nr = 0, total_offset = 0;
598 long offset = 0;
599 struct acpi_table_header *table;
600 char cpio_path[32] = "kernel/firmware/acpi/";
601 struct cpio_data file;
Thomas Renninger53aac442012-10-01 00:23:54 +0200602
603 if (data == NULL || size == 0)
604 return;
605
606 for (no = 0; no < ACPI_OVERRIDE_TABLES; no++) {
607 file = find_cpio_data(cpio_path, data, size, &offset);
608 if (!file.data)
609 break;
610
611 data += offset;
612 size -= offset;
613
Tang Chen7702ae02013-08-14 17:37:08 +0800614 if (file.size < sizeof(struct acpi_table_header)) {
615 pr_err("ACPI OVERRIDE: Table smaller than ACPI header [%s%s]\n",
616 cpio_path, file.name);
617 continue;
618 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200619
620 table = file.data;
621
622 for (sig = 0; table_sigs[sig]; sig++)
623 if (!memcmp(table->signature, table_sigs[sig], 4))
624 break;
625
Tang Chen7702ae02013-08-14 17:37:08 +0800626 if (!table_sigs[sig]) {
627 pr_err("ACPI OVERRIDE: Unknown signature [%s%s]\n",
628 cpio_path, file.name);
629 continue;
630 }
631 if (file.size != table->length) {
632 pr_err("ACPI OVERRIDE: File length does not match table length [%s%s]\n",
633 cpio_path, file.name);
634 continue;
635 }
636 if (acpi_table_checksum(file.data, table->length)) {
637 pr_err("ACPI OVERRIDE: Bad table checksum [%s%s]\n",
638 cpio_path, file.name);
639 continue;
640 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200641
642 pr_info("%4.4s ACPI table found in initrd [%s%s][0x%x]\n",
643 table->signature, cpio_path, file.name, table->length);
644
645 all_tables_size += table->length;
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700646 acpi_initrd_files[table_nr].data = file.data;
647 acpi_initrd_files[table_nr].size = file.size;
Thomas Renninger53aac442012-10-01 00:23:54 +0200648 table_nr++;
649 }
650 if (table_nr == 0)
651 return;
652
653 acpi_tables_addr =
654 memblock_find_in_range(0, max_low_pfn_mapped << PAGE_SHIFT,
655 all_tables_size, PAGE_SIZE);
656 if (!acpi_tables_addr) {
657 WARN_ON(1);
658 return;
659 }
660 /*
661 * Only calling e820_add_reserve does not work and the
662 * tables are invalid (memory got used) later.
663 * memblock_reserve works as expected and the tables won't get modified.
664 * But it's not enough on X86 because ioremap will
665 * complain later (used by acpi_os_map_memory) that the pages
666 * that should get mapped are not marked "reserved".
667 * Both memblock_reserve and e820_add_region (via arch_reserve_mem_area)
668 * works fine.
669 */
Wang YanQinga6432de2013-04-23 01:19:19 +0200670 memblock_reserve(acpi_tables_addr, all_tables_size);
Thomas Renninger53aac442012-10-01 00:23:54 +0200671 arch_reserve_mem_area(acpi_tables_addr, all_tables_size);
672
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700673 /*
674 * early_ioremap only can remap 256k one time. If we map all
675 * tables one time, we will hit the limit. Need to map chunks
676 * one by one during copying the same as that in relocate_initrd().
677 */
Thomas Renninger53aac442012-10-01 00:23:54 +0200678 for (no = 0; no < table_nr; no++) {
Yinghai Lubee7f9c2013-09-06 19:08:00 -0700679 unsigned char *src_p = acpi_initrd_files[no].data;
680 phys_addr_t size = acpi_initrd_files[no].size;
681 phys_addr_t dest_addr = acpi_tables_addr + total_offset;
682 phys_addr_t slop, clen;
683 char *dest_p;
684
685 total_offset += size;
686
687 while (size) {
688 slop = dest_addr & ~PAGE_MASK;
689 clen = size;
690 if (clen > MAP_CHUNK_SIZE - slop)
691 clen = MAP_CHUNK_SIZE - slop;
692 dest_p = early_ioremap(dest_addr & PAGE_MASK,
693 clen + slop);
694 memcpy(dest_p + slop, src_p, clen);
695 early_iounmap(dest_p, clen + slop);
696 src_p += clen;
697 dest_addr += clen;
698 size -= clen;
699 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200700 }
Thomas Renninger53aac442012-10-01 00:23:54 +0200701}
702#endif /* CONFIG_ACPI_INITRD_TABLE_OVERRIDE */
703
Thomas Renninger325a8d362012-10-01 00:23:56 +0200704static void acpi_table_taint(struct acpi_table_header *table)
705{
706 pr_warn(PREFIX
707 "Override [%4.4s-%8.8s], this is unsafe: tainting kernel\n",
708 table->signature, table->oem_table_id);
Rusty Russell373d4d02013-01-21 17:17:39 +1030709 add_taint(TAINT_OVERRIDDEN_ACPI_TABLE, LOCKDEP_NOW_UNRELIABLE);
Thomas Renninger325a8d362012-10-01 00:23:56 +0200710}
711
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400714acpi_os_table_override(struct acpi_table_header * existing_table,
715 struct acpi_table_header ** new_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
717 if (!existing_table || !new_table)
718 return AE_BAD_PARAMETER;
719
Markus Gaugusch71fc47a2008-02-05 00:04:06 +0100720 *new_table = NULL;
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722#ifdef CONFIG_ACPI_CUSTOM_DSDT
723 if (strncmp(existing_table->signature, "DSDT", 4) == 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400724 *new_table = (struct acpi_table_header *)AmlCode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725#endif
Thomas Renninger325a8d362012-10-01 00:23:56 +0200726 if (*new_table != NULL)
727 acpi_table_taint(existing_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return AE_OK;
729}
730
Bob Mooref7b004a2012-02-14 18:31:56 +0800731acpi_status
732acpi_os_physical_table_override(struct acpi_table_header *existing_table,
Thomas Renningerb2a35002012-10-01 00:23:55 +0200733 acpi_physical_address *address,
734 u32 *table_length)
Bob Mooref7b004a2012-02-14 18:31:56 +0800735{
Thomas Renningerb2a35002012-10-01 00:23:55 +0200736#ifndef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
737 *table_length = 0;
738 *address = 0;
739 return AE_OK;
740#else
741 int table_offset = 0;
742 struct acpi_table_header *table;
Bob Mooref7b004a2012-02-14 18:31:56 +0800743
Thomas Renningerb2a35002012-10-01 00:23:55 +0200744 *table_length = 0;
745 *address = 0;
746
747 if (!acpi_tables_addr)
748 return AE_OK;
749
750 do {
751 if (table_offset + ACPI_HEADER_SIZE > all_tables_size) {
752 WARN_ON(1);
753 return AE_OK;
754 }
755
756 table = acpi_os_map_memory(acpi_tables_addr + table_offset,
757 ACPI_HEADER_SIZE);
758
759 if (table_offset + table->length > all_tables_size) {
760 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
761 WARN_ON(1);
762 return AE_OK;
763 }
764
765 table_offset += table->length;
766
767 if (memcmp(existing_table->signature, table->signature, 4)) {
768 acpi_os_unmap_memory(table,
769 ACPI_HEADER_SIZE);
770 continue;
771 }
772
773 /* Only override tables with matching oem id */
774 if (memcmp(table->oem_table_id, existing_table->oem_table_id,
775 ACPI_OEM_TABLE_ID_SIZE)) {
776 acpi_os_unmap_memory(table,
777 ACPI_HEADER_SIZE);
778 continue;
779 }
780
781 table_offset -= table->length;
782 *table_length = table->length;
783 acpi_os_unmap_memory(table, ACPI_HEADER_SIZE);
784 *address = acpi_tables_addr + table_offset;
785 break;
786 } while (table_offset + ACPI_HEADER_SIZE < all_tables_size);
787
Thomas Renninger325a8d362012-10-01 00:23:56 +0200788 if (*address != 0)
789 acpi_table_taint(existing_table);
Thomas Renningerb2a35002012-10-01 00:23:55 +0200790 return AE_OK;
791#endif
792}
Bob Mooref7b004a2012-02-14 18:31:56 +0800793
David Howells7d12e782006-10-05 14:55:46 +0100794static irqreturn_t acpi_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Len Brown5229e872008-02-06 01:26:55 -0500796 u32 handled;
797
798 handled = (*acpi_irq_handler) (acpi_irq_context);
799
800 if (handled) {
801 acpi_irq_handled++;
802 return IRQ_HANDLED;
Len Brown88bea182009-04-21 00:35:47 -0400803 } else {
804 acpi_irq_not_handled++;
Len Brown5229e872008-02-06 01:26:55 -0500805 return IRQ_NONE;
Len Brown88bea182009-04-21 00:35:47 -0400806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
809acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400810acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
811 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
813 unsigned int irq;
814
Len Brown5229e872008-02-06 01:26:55 -0500815 acpi_irq_stats_init();
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 /*
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100818 * ACPI interrupts different from the SCI in our copy of the FADT are
819 * not supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 */
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100821 if (gsi != acpi_gbl_FADT.sci_interrupt)
822 return AE_BAD_PARAMETER;
823
824 if (acpi_irq_handler)
825 return AE_ALREADY_ACQUIRED;
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 if (acpi_gsi_to_irq(gsi, &irq) < 0) {
828 printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n",
829 gsi);
830 return AE_OK;
831 }
832
833 acpi_irq_handler = handler;
834 acpi_irq_context = context;
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +0200835 if (request_irq(irq, acpi_irq, IRQF_SHARED, "acpi", acpi_irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq);
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100837 acpi_irq_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 return AE_NOT_ACQUIRED;
839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 return AE_OK;
842}
843
Len Brown4be44fc2005-08-05 00:44:28 -0400844acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +0100846 if (irq != acpi_gbl_FADT.sci_interrupt)
847 return AE_BAD_PARAMETER;
848
849 free_irq(irq, acpi_irq);
850 acpi_irq_handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 return AE_OK;
853}
854
855/*
856 * Running in interpreter thread context, safe to sleep
857 */
858
Lin Ming439913f2010-01-28 10:53:19 +0800859void acpi_os_sleep(u64 ms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Liu Chuansheng30282292013-09-12 01:42:57 +0800861 msleep(ms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
Len Brown4be44fc2005-08-05 00:44:28 -0400863
Len Brown4be44fc2005-08-05 00:44:28 -0400864void acpi_os_stall(u32 us)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
866 while (us) {
867 u32 delay = 1000;
868
869 if (delay > us)
870 delay = us;
871 udelay(delay);
872 touch_nmi_watchdog();
873 us -= delay;
874 }
875}
Len Brown4be44fc2005-08-05 00:44:28 -0400876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877/*
878 * Support ACPI 3.0 AML Timer operand
879 * Returns 64-bit free-running, monotonically increasing timer
880 * with 100ns granularity
881 */
Len Brown4be44fc2005-08-05 00:44:28 -0400882u64 acpi_os_get_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Mika Westerberg10619062013-05-23 10:27:46 +0300884 u64 time_ns = ktime_to_ns(ktime_get());
885 do_div(time_ns, 100);
886 return time_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
Len Brown4be44fc2005-08-05 00:44:28 -0400889acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
891 u32 dummy;
892
893 if (!value)
894 value = &dummy;
895
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800896 *value = 0;
897 if (width <= 8) {
Len Brown4be44fc2005-08-05 00:44:28 -0400898 *(u8 *) value = inb(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800899 } else if (width <= 16) {
Len Brown4be44fc2005-08-05 00:44:28 -0400900 *(u16 *) value = inw(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800901 } else if (width <= 32) {
Len Brown4be44fc2005-08-05 00:44:28 -0400902 *(u32 *) value = inl(port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800903 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 BUG();
905 }
906
907 return AE_OK;
908}
Len Brown4be44fc2005-08-05 00:44:28 -0400909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910EXPORT_SYMBOL(acpi_os_read_port);
911
Len Brown4be44fc2005-08-05 00:44:28 -0400912acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800914 if (width <= 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 outb(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800916 } else if (width <= 16) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 outw(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800918 } else if (width <= 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 outl(value, port);
Zhao Yakui49fbabf2007-11-15 17:01:06 +0800920 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 BUG();
922 }
923
924 return AE_OK;
925}
Len Brown4be44fc2005-08-05 00:44:28 -0400926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927EXPORT_SYMBOL(acpi_os_write_port);
928
Myron Stowee615bf52012-01-20 19:13:24 -0700929#ifdef readq
930static inline u64 read64(const volatile void __iomem *addr)
931{
932 return readq(addr);
933}
934#else
935static inline u64 read64(const volatile void __iomem *addr)
936{
937 u64 l, h;
938 l = readl(addr);
939 h = readl(addr+4);
940 return l | (h << 32);
941}
942#endif
943
944acpi_status
Bob Moore653f4b52012-02-14 18:29:55 +0800945acpi_os_read_memory(acpi_physical_address phys_addr, u64 *value, u32 width)
Myron Stowee615bf52012-01-20 19:13:24 -0700946{
947 void __iomem *virt_addr;
948 unsigned int size = width / 8;
949 bool unmap = false;
950 u64 dummy;
951
952 rcu_read_lock();
953 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
954 if (!virt_addr) {
955 rcu_read_unlock();
956 virt_addr = acpi_os_ioremap(phys_addr, size);
957 if (!virt_addr)
958 return AE_BAD_ADDRESS;
959 unmap = true;
960 }
961
962 if (!value)
963 value = &dummy;
964
965 switch (width) {
966 case 8:
967 *(u8 *) value = readb(virt_addr);
968 break;
969 case 16:
970 *(u16 *) value = readw(virt_addr);
971 break;
972 case 32:
973 *(u32 *) value = readl(virt_addr);
974 break;
975 case 64:
976 *(u64 *) value = read64(virt_addr);
977 break;
978 default:
979 BUG();
980 }
981
982 if (unmap)
983 iounmap(virt_addr);
984 else
985 rcu_read_unlock();
986
987 return AE_OK;
988}
989
Myron Stowee615bf52012-01-20 19:13:24 -0700990#ifdef writeq
991static inline void write64(u64 val, volatile void __iomem *addr)
992{
993 writeq(val, addr);
994}
995#else
996static inline void write64(u64 val, volatile void __iomem *addr)
997{
998 writel(val, addr);
999 writel(val>>32, addr+4);
1000}
1001#endif
1002
1003acpi_status
Bob Moore653f4b52012-02-14 18:29:55 +08001004acpi_os_write_memory(acpi_physical_address phys_addr, u64 value, u32 width)
Myron Stowee615bf52012-01-20 19:13:24 -07001005{
1006 void __iomem *virt_addr;
1007 unsigned int size = width / 8;
1008 bool unmap = false;
1009
1010 rcu_read_lock();
1011 virt_addr = acpi_map_vaddr_lookup(phys_addr, size);
1012 if (!virt_addr) {
1013 rcu_read_unlock();
1014 virt_addr = acpi_os_ioremap(phys_addr, size);
1015 if (!virt_addr)
1016 return AE_BAD_ADDRESS;
1017 unmap = true;
1018 }
1019
1020 switch (width) {
1021 case 8:
1022 writeb(value, virt_addr);
1023 break;
1024 case 16:
1025 writew(value, virt_addr);
1026 break;
1027 case 32:
1028 writel(value, virt_addr);
1029 break;
1030 case 64:
1031 write64(value, virt_addr);
1032 break;
1033 default:
1034 BUG();
1035 }
1036
1037 if (unmap)
1038 iounmap(virt_addr);
1039 else
1040 rcu_read_unlock();
1041
1042 return AE_OK;
1043}
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001046acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Bob Moorec5f02312010-08-06 08:57:53 +08001047 u64 *value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049 int result, size;
Bob Moorec5f02312010-08-06 08:57:53 +08001050 u32 value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 if (!value)
1053 return AE_BAD_PARAMETER;
1054
1055 switch (width) {
1056 case 8:
1057 size = 1;
1058 break;
1059 case 16:
1060 size = 2;
1061 break;
1062 case 32:
1063 size = 4;
1064 break;
1065 default:
1066 return AE_ERROR;
1067 }
1068
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -05001069 result = raw_pci_read(pci_id->segment, pci_id->bus,
1070 PCI_DEVFN(pci_id->device, pci_id->function),
Bob Moorec5f02312010-08-06 08:57:53 +08001071 reg, size, &value32);
1072 *value = value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 return (result ? AE_ERROR : AE_OK);
1075}
Len Brown4be44fc2005-08-05 00:44:28 -04001076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001078acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
Lin Ming439913f2010-01-28 10:53:19 +08001079 u64 value, u32 width)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
1081 int result, size;
1082
1083 switch (width) {
1084 case 8:
1085 size = 1;
1086 break;
1087 case 16:
1088 size = 2;
1089 break;
1090 case 32:
1091 size = 4;
1092 break;
1093 default:
1094 return AE_ERROR;
1095 }
1096
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -05001097 result = raw_pci_write(pci_id->segment, pci_id->bus,
1098 PCI_DEVFN(pci_id->device, pci_id->function),
1099 reg, size, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 return (result ? AE_ERROR : AE_OK);
1102}
1103
David Howells65f27f32006-11-22 14:55:48 +00001104static void acpi_os_execute_deferred(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
David Howells65f27f32006-11-22 14:55:48 +00001106 struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work);
Alexey Starikovskiy88db5e12007-05-09 23:31:03 -04001107
Zhang Rui19cd8472008-08-28 10:05:06 +08001108 dpc->function(dpc->context);
1109 kfree(dpc);
Zhang Rui19cd8472008-08-28 10:05:06 +08001110}
1111
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -04001112/*******************************************************************************
1113 *
1114 * FUNCTION: acpi_os_execute
1115 *
1116 * PARAMETERS: Type - Type of the callback
1117 * Function - Function to be executed
1118 * Context - Function parameters
1119 *
1120 * RETURN: Status
1121 *
1122 * DESCRIPTION: Depending on type, either queues function for deferred execution or
1123 * immediately executes function on a separate thread.
1124 *
1125 ******************************************************************************/
1126
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001127acpi_status acpi_os_execute(acpi_execute_type type,
1128 acpi_osd_exec_callback function, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
Len Brown4be44fc2005-08-05 00:44:28 -04001130 acpi_status status = AE_OK;
1131 struct acpi_os_dpc *dpc;
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +03001132 struct workqueue_struct *queue;
Zhang Rui19cd8472008-08-28 10:05:06 +08001133 int ret;
Len Brown72945b22006-07-12 22:46:42 -04001134 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
1135 "Scheduling function [%p(%p)] for deferred execution.\n",
1136 function, context));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 /*
1139 * Allocate/initialize DPC structure. Note that this memory will be
David Howells65f27f32006-11-22 14:55:48 +00001140 * freed by the callee. The kernel handles the work_struct list in a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 * way that allows us to also free its memory inside the callee.
1142 * Because we may want to schedule several tasks with different
1143 * parameters we can't use the approach some kernel code uses of
David Howells65f27f32006-11-22 14:55:48 +00001144 * having a static work_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 */
Len Brown72945b22006-07-12 22:46:42 -04001146
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001147 dpc = kzalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 if (!dpc)
Lin Ming889c78b2008-12-31 09:23:57 +08001149 return AE_NO_MEMORY;
Linus Torvaldsb976fe12006-11-17 19:31:09 -08001150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 dpc->function = function;
1152 dpc->context = context;
Linus Torvaldsb976fe12006-11-17 19:31:09 -08001153
Zhang Ruic02256b2009-06-23 10:20:29 +08001154 /*
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001155 * To prevent lockdep from complaining unnecessarily, make sure that
1156 * there is a different static lockdep key for each workqueue by using
1157 * INIT_WORK() for each of them separately.
Zhang Ruic02256b2009-06-23 10:20:29 +08001158 */
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001159 if (type == OSL_NOTIFY_HANDLER) {
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001160 queue = kacpi_notify_wq;
Zhang Ruibc736752010-03-22 15:48:54 +08001161 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001162 } else {
1163 queue = kacpid_wq;
Zhang Ruibc736752010-03-22 15:48:54 +08001164 INIT_WORK(&dpc->work, acpi_os_execute_deferred);
Rafael J. Wysocki3ae45a22012-11-02 13:09:08 +01001165 }
Zhang Ruibc736752010-03-22 15:48:54 +08001166
Tejun Heo8fec62b2010-06-29 10:07:09 +02001167 /*
1168 * On some machines, a software-initiated SMI causes corruption unless
1169 * the SMI runs on CPU 0. An SMI can be initiated by any AML, but
1170 * typically it's done in GPE-related methods that are run via
1171 * workqueues, so we can avoid the known corruption cases by always
1172 * queueing on CPU 0.
1173 */
1174 ret = queue_work_on(0, queue, &dpc->work);
Zhang Rui19cd8472008-08-28 10:05:06 +08001175
1176 if (!ret) {
Lin Ming55ac9a02008-09-28 14:51:56 +08001177 printk(KERN_ERR PREFIX
1178 "Call to queue_work() failed.\n");
Alexey Starikovskiy17bc54e2007-11-13 13:05:45 +03001179 status = AE_ERROR;
1180 kfree(dpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 }
Lin Ming889c78b2008-12-31 09:23:57 +08001182 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183}
Alexey Starikovskiyb8d35192006-05-05 03:23:00 -04001184EXPORT_SYMBOL(acpi_os_execute);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Lin Mingbd6f10a2012-05-22 16:43:49 +08001186void acpi_os_wait_events_complete(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
Lv Zheng90253a72014-11-05 15:06:13 +08001188 /*
1189 * Make sure the GPE handler or the fixed event handler is not used
1190 * on another CPU after removal.
1191 */
1192 if (acpi_irq_handler)
1193 synchronize_hardirq(acpi_gbl_FADT.sci_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 flush_workqueue(kacpid_wq);
Zhang Rui2f67a062008-04-29 02:34:42 -04001195 flush_workqueue(kacpi_notify_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196}
Len Brown4be44fc2005-08-05 00:44:28 -04001197
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001198struct acpi_hp_work {
1199 struct work_struct work;
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001200 struct acpi_device *adev;
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001201 u32 src;
1202};
1203
1204static void acpi_hotplug_work_fn(struct work_struct *work)
1205{
1206 struct acpi_hp_work *hpw = container_of(work, struct acpi_hp_work, work);
1207
1208 acpi_os_wait_events_complete();
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001209 acpi_device_hotplug(hpw->adev, hpw->src);
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001210 kfree(hpw);
1211}
1212
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001213acpi_status acpi_hotplug_schedule(struct acpi_device *adev, u32 src)
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001214{
1215 struct acpi_hp_work *hpw;
1216
1217 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001218 "Scheduling hotplug event (%p, %u) for deferred execution.\n",
1219 adev, src));
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001220
1221 hpw = kmalloc(sizeof(*hpw), GFP_KERNEL);
1222 if (!hpw)
1223 return AE_NO_MEMORY;
1224
1225 INIT_WORK(&hpw->work, acpi_hotplug_work_fn);
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +01001226 hpw->adev = adev;
Rafael J. Wysocki7b981182013-11-07 01:45:40 +01001227 hpw->src = src;
1228 /*
1229 * We can't run hotplug code in kacpid_wq/kacpid_notify_wq etc., because
1230 * the hotplug code may call driver .remove() functions, which may
1231 * invoke flush_scheduled_work()/acpi_os_wait_events_complete() to flush
1232 * these workqueues.
1233 */
1234 if (!queue_work(kacpi_hotplug_wq, &hpw->work)) {
1235 kfree(hpw);
1236 return AE_ERROR;
1237 }
1238 return AE_OK;
1239}
1240
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001241bool acpi_queue_hotplug_work(struct work_struct *work)
1242{
1243 return queue_work(kacpi_hotplug_wq, work);
1244}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001247acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
Len Brown4be44fc2005-08-05 00:44:28 -04001249 struct semaphore *sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
jhbird.choi@samsung.com2d0acb42014-03-20 16:35:56 +09001251 sem = acpi_os_allocate_zeroed(sizeof(struct semaphore));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -04001253 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 sema_init(sem, initial_units);
1256
Len Brown4be44fc2005-08-05 00:44:28 -04001257 *handle = (acpi_handle *) sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Len Brown4be44fc2005-08-05 00:44:28 -04001259 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n",
1260 *handle, initial_units));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Patrick Mocheld550d982006-06-27 00:41:40 -04001262 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265/*
1266 * TODO: A better way to delete semaphores? Linux doesn't have a
1267 * 'delete_semaphore()' function -- may result in an invalid
1268 * pointer dereference for non-synchronized consumers. Should
1269 * we at least check for blocked threads and signal/cancel them?
1270 */
1271
Len Brown4be44fc2005-08-05 00:44:28 -04001272acpi_status acpi_os_delete_semaphore(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273{
Len Brown4be44fc2005-08-05 00:44:28 -04001274 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 if (!sem)
Patrick Mocheld550d982006-06-27 00:41:40 -04001277 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Len Brown4be44fc2005-08-05 00:44:28 -04001279 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001281 BUG_ON(!list_empty(&sem->wait_list));
Len Brown02438d82006-06-30 03:19:10 -04001282 kfree(sem);
Len Brown4be44fc2005-08-05 00:44:28 -04001283 sem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Patrick Mocheld550d982006-06-27 00:41:40 -04001285 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 * TODO: Support for units > 1?
1290 */
Len Brown4be44fc2005-08-05 00:44:28 -04001291acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292{
Len Brown4be44fc2005-08-05 00:44:28 -04001293 acpi_status status = AE_OK;
1294 struct semaphore *sem = (struct semaphore *)handle;
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001295 long jiffies;
Len Brown4be44fc2005-08-05 00:44:28 -04001296 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001299 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -04001302 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Len Brown4be44fc2005-08-05 00:44:28 -04001304 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n",
1305 handle, units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001307 if (timeout == ACPI_WAIT_FOREVER)
1308 jiffies = MAX_SCHEDULE_TIMEOUT;
1309 else
1310 jiffies = msecs_to_jiffies(timeout);
Al Stonecad15252013-12-04 12:59:11 -07001311
Matthew Wilcoxf1241c82008-03-14 13:43:13 -04001312 ret = down_timeout(sem, jiffies);
1313 if (ret)
1314 status = AE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 if (ACPI_FAILURE(status)) {
Bjorn Helgaas9e7e2c02006-04-27 05:25:00 -04001317 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -04001318 "Failed to acquire semaphore[%p|%d|%d], %s",
Len Brown4be44fc2005-08-05 00:44:28 -04001319 handle, units, timeout,
1320 acpi_format_exception(status)));
1321 } else {
1322 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
Thomas Renningera6fc6722006-06-26 23:58:43 -04001323 "Acquired semaphore[%p|%d|%d]", handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001324 units, timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 }
1326
Patrick Mocheld550d982006-06-27 00:41:40 -04001327 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330/*
1331 * TODO: Support for units > 1?
1332 */
Len Brown4be44fc2005-08-05 00:44:28 -04001333acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
Len Brown4be44fc2005-08-05 00:44:28 -04001335 struct semaphore *sem = (struct semaphore *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 if (!sem || (units < 1))
Patrick Mocheld550d982006-06-27 00:41:40 -04001338 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 if (units > 1)
Patrick Mocheld550d982006-06-27 00:41:40 -04001341 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Len Brown4be44fc2005-08-05 00:44:28 -04001343 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle,
1344 units));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 up(sem);
1347
Patrick Mocheld550d982006-06-27 00:41:40 -04001348 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349}
Len Brown4be44fc2005-08-05 00:44:28 -04001350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -04001352u32 acpi_os_get_line(char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353{
1354
1355#ifdef ENABLE_DEBUGGER
1356 if (acpi_in_debugger) {
1357 u32 chars;
1358
1359 kdb_read(buffer, sizeof(line_buf));
1360
1361 /* remove the CR kdb includes */
1362 chars = strlen(buffer) - 1;
1363 buffer[chars] = '\0';
1364 }
1365#endif
1366
1367 return 0;
1368}
Len Brown4be44fc2005-08-05 00:44:28 -04001369#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Len Brown4be44fc2005-08-05 00:44:28 -04001371acpi_status acpi_os_signal(u32 function, void *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
Len Brown4be44fc2005-08-05 00:44:28 -04001373 switch (function) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 case ACPI_SIGNAL_FATAL:
1375 printk(KERN_ERR PREFIX "Fatal opcode executed\n");
1376 break;
1377 case ACPI_SIGNAL_BREAKPOINT:
1378 /*
1379 * AML Breakpoint
1380 * ACPI spec. says to treat it as a NOP unless
1381 * you are debugging. So if/when we integrate
1382 * AML debugger into the kernel debugger its
1383 * hook will go here. But until then it is
1384 * not useful to print anything on breakpoints.
1385 */
1386 break;
1387 default:
1388 break;
1389 }
1390
1391 return AE_OK;
1392}
Len Brown4be44fc2005-08-05 00:44:28 -04001393
Len Brown4be44fc2005-08-05 00:44:28 -04001394static int __init acpi_os_name_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
1396 char *p = acpi_os_name;
Len Brown4be44fc2005-08-05 00:44:28 -04001397 int count = ACPI_MAX_OVERRIDE_LEN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
1399 if (!str || !*str)
1400 return 0;
1401
Dan Carpenter5e2be4e2013-10-18 12:01:43 +03001402 for (; count-- && *str; str++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 if (isalnum(*str) || *str == ' ' || *str == ':')
1404 *p++ = *str;
1405 else if (*str == '\'' || *str == '"')
1406 continue;
1407 else
1408 break;
1409 }
1410 *p = 0;
1411
1412 return 1;
Len Brown4be44fc2005-08-05 00:44:28 -04001413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414}
1415
1416__setup("acpi_os_name=", acpi_os_name_setup);
1417
Lin Ming12d32062010-12-09 16:51:06 +08001418#define OSI_STRING_LENGTH_MAX 64 /* arbitrary */
1419#define OSI_STRING_ENTRIES_MAX 16 /* arbitrary */
1420
1421struct osi_setup_entry {
1422 char string[OSI_STRING_LENGTH_MAX];
1423 bool enable;
1424};
1425
Hanjun Guoe73d3132013-08-13 18:31:15 +08001426static struct osi_setup_entry
1427 osi_setup_entries[OSI_STRING_ENTRIES_MAX] __initdata = {
Shaohua Liaa165972011-07-28 13:48:43 -07001428 {"Module Device", true},
1429 {"Processor Device", true},
1430 {"3.0 _SCP Extensions", true},
1431 {"Processor Aggregator Device", true},
1432};
Lin Ming12d32062010-12-09 16:51:06 +08001433
Lin Mingd90aa922010-12-09 16:50:52 +08001434void __init acpi_osi_setup(char *str)
1435{
Lin Ming12d32062010-12-09 16:51:06 +08001436 struct osi_setup_entry *osi;
1437 bool enable = true;
1438 int i;
1439
Lin Mingd90aa922010-12-09 16:50:52 +08001440 if (!acpi_gbl_create_osi_method)
1441 return;
1442
1443 if (str == NULL || *str == '\0') {
1444 printk(KERN_INFO PREFIX "_OSI method disabled\n");
1445 acpi_gbl_create_osi_method = FALSE;
Lin Ming12d32062010-12-09 16:51:06 +08001446 return;
1447 }
1448
1449 if (*str == '!') {
1450 str++;
Lv Zheng5dc17982013-07-22 16:08:25 +08001451 if (*str == '\0') {
1452 osi_linux.default_disabling = 1;
1453 return;
Lv Zheng741d8122013-07-22 16:08:36 +08001454 } else if (*str == '*') {
1455 acpi_update_interfaces(ACPI_DISABLE_ALL_STRINGS);
1456 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1457 osi = &osi_setup_entries[i];
1458 osi->enable = false;
1459 }
1460 return;
Lv Zheng5dc17982013-07-22 16:08:25 +08001461 }
Lin Ming12d32062010-12-09 16:51:06 +08001462 enable = false;
1463 }
1464
1465 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1466 osi = &osi_setup_entries[i];
1467 if (!strcmp(osi->string, str)) {
1468 osi->enable = enable;
1469 break;
1470 } else if (osi->string[0] == '\0') {
1471 osi->enable = enable;
1472 strncpy(osi->string, str, OSI_STRING_LENGTH_MAX);
1473 break;
1474 }
1475 }
Lin Mingd90aa922010-12-09 16:50:52 +08001476}
1477
Len Brownd4b7dc42008-01-23 20:50:56 -05001478static void __init set_osi_linux(unsigned int enable)
1479{
Lin Mingd90aa922010-12-09 16:50:52 +08001480 if (osi_linux.enable != enable)
Len Brownd4b7dc42008-01-23 20:50:56 -05001481 osi_linux.enable = enable;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001482
1483 if (osi_linux.enable)
1484 acpi_osi_setup("Linux");
1485 else
1486 acpi_osi_setup("!Linux");
1487
Len Brownd4b7dc42008-01-23 20:50:56 -05001488 return;
1489}
Len Brownf5076542007-05-30 00:10:38 -04001490
Len Brownd4b7dc42008-01-23 20:50:56 -05001491static void __init acpi_cmdline_osi_linux(unsigned int enable)
1492{
Lin Mingd90aa922010-12-09 16:50:52 +08001493 osi_linux.cmdline = 1; /* cmdline set the default and override DMI */
1494 osi_linux.dmi = 0;
Len Brownd4b7dc42008-01-23 20:50:56 -05001495 set_osi_linux(enable);
Len Brownf5076542007-05-30 00:10:38 -04001496
Len Brownd4b7dc42008-01-23 20:50:56 -05001497 return;
1498}
1499
1500void __init acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d)
1501{
Len Brownd4b7dc42008-01-23 20:50:56 -05001502 printk(KERN_NOTICE PREFIX "DMI detected: %s\n", d->ident);
1503
1504 if (enable == -1)
1505 return;
1506
Lin Mingd90aa922010-12-09 16:50:52 +08001507 osi_linux.dmi = 1; /* DMI knows that this box asks OSI(Linux) */
Len Brownd4b7dc42008-01-23 20:50:56 -05001508 set_osi_linux(enable);
1509
Len Brownf5076542007-05-30 00:10:38 -04001510 return;
1511}
1512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513/*
Len Brownae00d812007-05-29 18:43:33 -04001514 * Modify the list of "OS Interfaces" reported to BIOS via _OSI
1515 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 * empty string disables _OSI
Len Brownae00d812007-05-29 18:43:33 -04001517 * string starting with '!' disables that string
1518 * otherwise string is added to list, augmenting built-in strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 */
Lin Mingb0ed7a92010-08-06 09:35:51 +08001520static void __init acpi_osi_setup_late(void)
1521{
Lin Ming12d32062010-12-09 16:51:06 +08001522 struct osi_setup_entry *osi;
1523 char *str;
1524 int i;
Lin Mingd90aa922010-12-09 16:50:52 +08001525 acpi_status status;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001526
Lv Zheng5dc17982013-07-22 16:08:25 +08001527 if (osi_linux.default_disabling) {
1528 status = acpi_update_interfaces(ACPI_DISABLE_ALL_VENDOR_STRINGS);
1529
1530 if (ACPI_SUCCESS(status))
1531 printk(KERN_INFO PREFIX "Disabled all _OSI OS vendors\n");
1532 }
1533
Lin Ming12d32062010-12-09 16:51:06 +08001534 for (i = 0; i < OSI_STRING_ENTRIES_MAX; i++) {
1535 osi = &osi_setup_entries[i];
1536 str = osi->string;
Lin Mingb0ed7a92010-08-06 09:35:51 +08001537
Lin Ming12d32062010-12-09 16:51:06 +08001538 if (*str == '\0')
1539 break;
1540 if (osi->enable) {
1541 status = acpi_install_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001542
Lin Ming12d32062010-12-09 16:51:06 +08001543 if (ACPI_SUCCESS(status))
1544 printk(KERN_INFO PREFIX "Added _OSI(%s)\n", str);
1545 } else {
1546 status = acpi_remove_interface(str);
Lin Mingd90aa922010-12-09 16:50:52 +08001547
Lin Ming12d32062010-12-09 16:51:06 +08001548 if (ACPI_SUCCESS(status))
1549 printk(KERN_INFO PREFIX "Deleted _OSI(%s)\n", str);
1550 }
Lin Mingb0ed7a92010-08-06 09:35:51 +08001551 }
1552}
1553
Lin Mingd90aa922010-12-09 16:50:52 +08001554static int __init osi_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
Lin Mingd90aa922010-12-09 16:50:52 +08001556 if (str && !strcmp("Linux", str))
1557 acpi_cmdline_osi_linux(1);
1558 else if (str && !strcmp("!Linux", str))
1559 acpi_cmdline_osi_linux(0);
1560 else
1561 acpi_osi_setup(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
1563 return 1;
1564}
1565
Lin Mingd90aa922010-12-09 16:50:52 +08001566__setup("acpi_osi=", osi_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Bob Moore22b5afc2014-03-24 14:49:00 +08001568/*
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001569 * Disable the auto-serialization of named objects creation methods.
Bob Moore22b5afc2014-03-24 14:49:00 +08001570 *
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001571 * This feature is enabled by default. It marks the AML control methods
Bob Moore22b5afc2014-03-24 14:49:00 +08001572 * that contain the opcodes to create named objects as "Serialized".
1573 */
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001574static int __init acpi_no_auto_serialize_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001576 acpi_gbl_auto_serialize_methods = FALSE;
1577 pr_info("ACPI: auto-serialization disabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 return 1;
1580}
1581
Lv Zheng08e1d7c2014-03-24 14:49:22 +08001582__setup("acpi_no_auto_serialize", acpi_no_auto_serialize_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Thomas Renningerdf92e692008-02-04 23:31:22 -08001584/* Check of resource interference between native drivers and ACPI
1585 * OperationRegions (SystemIO and System Memory only).
1586 * IO ports and memory declared in ACPI might be used by the ACPI subsystem
1587 * in arbitrary AML code and can interfere with legacy drivers.
1588 * acpi_enforce_resources= can be set to:
1589 *
Luca Tettamanti7e905602009-03-30 00:01:27 +02001590 * - strict (default) (2)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001591 * -> further driver trying to access the resources will not load
Luca Tettamanti7e905602009-03-30 00:01:27 +02001592 * - lax (1)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001593 * -> further driver trying to access the resources will load, but you
1594 * get a system message that something might go wrong...
1595 *
1596 * - no (0)
1597 * -> ACPI Operation Region resources will not be registered
1598 *
1599 */
1600#define ENFORCE_RESOURCES_STRICT 2
1601#define ENFORCE_RESOURCES_LAX 1
1602#define ENFORCE_RESOURCES_NO 0
1603
Luca Tettamanti7e905602009-03-30 00:01:27 +02001604static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001605
1606static int __init acpi_enforce_resources_setup(char *str)
1607{
1608 if (str == NULL || *str == '\0')
1609 return 0;
1610
1611 if (!strcmp("strict", str))
1612 acpi_enforce_resources = ENFORCE_RESOURCES_STRICT;
1613 else if (!strcmp("lax", str))
1614 acpi_enforce_resources = ENFORCE_RESOURCES_LAX;
1615 else if (!strcmp("no", str))
1616 acpi_enforce_resources = ENFORCE_RESOURCES_NO;
1617
1618 return 1;
1619}
1620
1621__setup("acpi_enforce_resources=", acpi_enforce_resources_setup);
1622
1623/* Check for resource conflicts between ACPI OperationRegions and native
1624 * drivers */
Jean Delvare876fba42009-11-11 15:22:15 +01001625int acpi_check_resource_conflict(const struct resource *res)
Thomas Renningerdf92e692008-02-04 23:31:22 -08001626{
Lin Mingf654c0f2012-01-12 13:10:32 +08001627 acpi_adr_space_type space_id;
1628 acpi_size length;
1629 u8 warn = 0;
1630 int clash = 0;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001631
1632 if (acpi_enforce_resources == ENFORCE_RESOURCES_NO)
1633 return 0;
1634 if (!(res->flags & IORESOURCE_IO) && !(res->flags & IORESOURCE_MEM))
1635 return 0;
1636
Lin Mingf654c0f2012-01-12 13:10:32 +08001637 if (res->flags & IORESOURCE_IO)
1638 space_id = ACPI_ADR_SPACE_SYSTEM_IO;
1639 else
1640 space_id = ACPI_ADR_SPACE_SYSTEM_MEMORY;
Thomas Renningerdf92e692008-02-04 23:31:22 -08001641
Alexandru Gheorghiue4f52242013-03-12 08:53:02 +00001642 length = resource_size(res);
Lin Mingf654c0f2012-01-12 13:10:32 +08001643 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO)
1644 warn = 1;
1645 clash = acpi_check_address_range(space_id, res->start, length, warn);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001646
1647 if (clash) {
1648 if (acpi_enforce_resources != ENFORCE_RESOURCES_NO) {
Jean Delvare14f03342009-09-08 15:31:46 +02001649 if (acpi_enforce_resources == ENFORCE_RESOURCES_LAX)
1650 printk(KERN_NOTICE "ACPI: This conflict may"
1651 " cause random problems and system"
1652 " instability\n");
1653 printk(KERN_INFO "ACPI: If an ACPI driver is available"
1654 " for this device, you should use it instead of"
1655 " the native driver\n");
Thomas Renningerdf92e692008-02-04 23:31:22 -08001656 }
1657 if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT)
1658 return -EBUSY;
1659 }
1660 return 0;
1661}
Thomas Renninger443dea72008-02-04 23:31:23 -08001662EXPORT_SYMBOL(acpi_check_resource_conflict);
Thomas Renningerdf92e692008-02-04 23:31:22 -08001663
1664int acpi_check_region(resource_size_t start, resource_size_t n,
1665 const char *name)
1666{
1667 struct resource res = {
1668 .start = start,
1669 .end = start + n - 1,
1670 .name = name,
1671 .flags = IORESOURCE_IO,
1672 };
1673
1674 return acpi_check_resource_conflict(&res);
1675}
1676EXPORT_SYMBOL(acpi_check_region);
1677
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678/*
Jean Delvare70dd6be2010-05-27 19:58:37 +02001679 * Let drivers know whether the resource checks are effective
1680 */
1681int acpi_resources_are_enforced(void)
1682{
1683 return acpi_enforce_resources == ENFORCE_RESOURCES_STRICT;
1684}
1685EXPORT_SYMBOL(acpi_resources_are_enforced);
1686
1687/*
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{
Rafael J. Wysockib9a5e5e2015-05-07 21:19:39 +02001845 acpi_reserve_resources();
Tejun Heo44d25882011-02-01 11:42:42 +01001846 kacpid_wq = alloc_workqueue("kacpid", 0, 1);
1847 kacpi_notify_wq = alloc_workqueue("kacpi_notify", 0, 1);
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001848 kacpi_hotplug_wq = alloc_ordered_workqueue("kacpi_hotplug", 0);
Myron Stowed362eda2010-10-21 14:24:04 -06001849 BUG_ON(!kacpid_wq);
1850 BUG_ON(!kacpi_notify_wq);
1851 BUG_ON(!kacpi_hotplug_wq);
Len Brown1bd64d42010-10-26 14:50:56 -04001852 acpi_install_interface_handler(acpi_osi_handler);
1853 acpi_osi_setup_late();
Myron Stowed362eda2010-10-21 14:24:04 -06001854 return AE_OK;
1855}
1856
1857acpi_status acpi_os_terminate(void)
1858{
1859 if (acpi_irq_handler) {
Rafael J. Wysocki23fe3632011-02-08 23:48:16 +01001860 acpi_os_remove_interrupt_handler(acpi_gbl_FADT.sci_interrupt,
Myron Stowed362eda2010-10-21 14:24:04 -06001861 acpi_irq_handler);
1862 }
1863
1864 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe1_block);
1865 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe0_block);
1866 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1b_event_block);
1867 acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1a_event_block);
Randy Wrighta4714a82014-06-04 08:55:59 -07001868 if (acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER)
1869 acpi_os_unmap_generic_address(&acpi_gbl_FADT.reset_register);
Myron Stowed362eda2010-10-21 14:24:04 -06001870
1871 destroy_workqueue(kacpid_wq);
1872 destroy_workqueue(kacpi_notify_wq);
1873 destroy_workqueue(kacpi_hotplug_wq);
1874
1875 return AE_OK;
1876}
Tang Liang09f98a82011-12-09 10:05:54 +08001877
1878acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control,
1879 u32 pm1b_control)
1880{
1881 int rc = 0;
1882 if (__acpi_os_prepare_sleep)
1883 rc = __acpi_os_prepare_sleep(sleep_state,
1884 pm1a_control, pm1b_control);
1885 if (rc < 0)
1886 return AE_ERROR;
1887 else if (rc > 0)
1888 return AE_CTRL_SKIP;
1889
1890 return AE_OK;
1891}
1892
1893void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state,
1894 u32 pm1a_ctrl, u32 pm1b_ctrl))
1895{
1896 __acpi_os_prepare_sleep = func;
1897}
Yinghai Lu92d8aff2013-01-21 13:20:47 -08001898
Ben Guthrod6b47b12013-07-30 08:24:52 -04001899acpi_status acpi_os_prepare_extended_sleep(u8 sleep_state, u32 val_a,
1900 u32 val_b)
1901{
1902 int rc = 0;
1903 if (__acpi_os_prepare_extended_sleep)
1904 rc = __acpi_os_prepare_extended_sleep(sleep_state,
1905 val_a, val_b);
1906 if (rc < 0)
1907 return AE_ERROR;
1908 else if (rc > 0)
1909 return AE_CTRL_SKIP;
1910
1911 return AE_OK;
1912}
1913
1914void acpi_os_set_prepare_extended_sleep(int (*func)(u8 sleep_state,
1915 u32 val_a, u32 val_b))
1916{
1917 __acpi_os_prepare_extended_sleep = func;
1918}