Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Wilcox | f1241c8 | 2008-03-14 13:43:13 -0400 | [diff] [blame] | 7 | * Copyright (c) 2008 Intel Corporation |
| 8 | * Author: Matthew Wilcox <willy@linux.intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * |
| 10 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License as published by |
| 14 | * the Free Software Foundation; either version 2 of the License, or |
| 15 | * (at your option) any later version. |
| 16 | * |
| 17 | * This program is distributed in the hope that it will be useful, |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | * GNU General Public License for more details. |
| 21 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 23 | * |
| 24 | */ |
| 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/module.h> |
| 27 | #include <linux/kernel.h> |
| 28 | #include <linux/slab.h> |
| 29 | #include <linux/mm.h> |
Myron Stowe | ba242d5 | 2012-01-20 19:13:30 -0700 | [diff] [blame] | 30 | #include <linux/highmem.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/pci.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/interrupt.h> |
| 33 | #include <linux/kmod.h> |
| 34 | #include <linux/delay.h> |
| 35 | #include <linux/workqueue.h> |
| 36 | #include <linux/nmi.h> |
Alexey Starikovskiy | ad71860a | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 37 | #include <linux/acpi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/efi.h> |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 39 | #include <linux/ioport.h> |
| 40 | #include <linux/list.h> |
Matthew Wilcox | f1241c8 | 2008-03-14 13:43:13 -0400 | [diff] [blame] | 41 | #include <linux/jiffies.h> |
| 42 | #include <linux/semaphore.h> |
| 43 | |
| 44 | #include <asm/io.h> |
| 45 | #include <asm/uaccess.h> |
Christoph Hellwig | 2f8e2c8 | 2015-08-28 09:27:14 +0200 | [diff] [blame] | 46 | #include <linux/io-64-nonatomic-lo-hi.h> |
Matthew Wilcox | f1241c8 | 2008-03-14 13:43:13 -0400 | [diff] [blame] | 47 | |
Lv Zheng | 1129c92 | 2013-07-23 16:11:55 +0800 | [diff] [blame] | 48 | #include "internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #define _COMPONENT ACPI_OS_SERVICES |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 51 | ACPI_MODULE_NAME("osl"); |
Hanjun Guo | 07070e1 | 2014-03-13 12:47:39 +0800 | [diff] [blame] | 52 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 53 | struct acpi_os_dpc { |
| 54 | acpi_osd_exec_callback function; |
| 55 | void *context; |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 56 | struct work_struct work; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | }; |
| 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | #ifdef ENABLE_DEBUGGER |
| 60 | #include <linux/kdb.h> |
| 61 | |
| 62 | /* stuff for debugger support */ |
| 63 | int acpi_in_debugger; |
| 64 | EXPORT_SYMBOL(acpi_in_debugger); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 65 | #endif /*ENABLE_DEBUGGER */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Tang Liang | 09f98a8 | 2011-12-09 10:05:54 +0800 | [diff] [blame] | 67 | static int (*__acpi_os_prepare_sleep)(u8 sleep_state, u32 pm1a_ctrl, |
| 68 | u32 pm1b_ctrl); |
Ben Guthro | d6b47b1 | 2013-07-30 08:24:52 -0400 | [diff] [blame] | 69 | static int (*__acpi_os_prepare_extended_sleep)(u8 sleep_state, u32 val_a, |
| 70 | u32 val_b); |
Tang Liang | 09f98a8 | 2011-12-09 10:05:54 +0800 | [diff] [blame] | 71 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | static acpi_osd_handler acpi_irq_handler; |
| 73 | static void *acpi_irq_context; |
| 74 | static struct workqueue_struct *kacpid_wq; |
Alexey Starikovskiy | 88db5e1 | 2007-05-09 23:31:03 -0400 | [diff] [blame] | 75 | static struct workqueue_struct *kacpi_notify_wq; |
Yinghai Lu | 92d8aff | 2013-01-21 13:20:47 -0800 | [diff] [blame] | 76 | static struct workqueue_struct *kacpi_hotplug_wq; |
Lv Zheng | 7901a05 | 2015-08-05 16:23:51 +0800 | [diff] [blame] | 77 | static bool acpi_os_initialized; |
Chen Yu | 49e4b843 | 2015-10-25 01:02:19 +0800 | [diff] [blame] | 78 | unsigned int acpi_sci_irq = INVALID_ACPI_IRQ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 80 | /* |
| 81 | * This list of permanent mappings is for memory that may be accessed from |
| 82 | * interrupt context, where we can't do the ioremap(). |
| 83 | */ |
| 84 | struct acpi_ioremap { |
| 85 | struct list_head list; |
| 86 | void __iomem *virt; |
| 87 | acpi_physical_address phys; |
| 88 | acpi_size size; |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 89 | unsigned long refcount; |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 90 | }; |
| 91 | |
| 92 | static LIST_HEAD(acpi_ioremaps); |
Rafael J. Wysocki | 7bbb890 | 2011-02-08 23:37:42 +0100 | [diff] [blame] | 93 | static DEFINE_MUTEX(acpi_ioremap_lock); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 94 | |
Myron Stowe | bc9ffce | 2011-11-07 16:23:27 -0700 | [diff] [blame] | 95 | static void __init acpi_request_region (struct acpi_generic_address *gas, |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 96 | unsigned int length, char *desc) |
| 97 | { |
Myron Stowe | bc9ffce | 2011-11-07 16:23:27 -0700 | [diff] [blame] | 98 | u64 addr; |
| 99 | |
| 100 | /* Handle possible alignment issues */ |
| 101 | memcpy(&addr, &gas->address, sizeof(addr)); |
| 102 | if (!addr || !length) |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 103 | return; |
| 104 | |
Rafael J. Wysocki | 0294112 | 2015-07-04 03:09:03 +0200 | [diff] [blame] | 105 | /* Resources are never freed */ |
| 106 | if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_IO) |
| 107 | request_region(addr, length, desc); |
| 108 | else if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) |
| 109 | request_mem_region(addr, length, desc); |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 110 | } |
| 111 | |
Rafael J. Wysocki | 0294112 | 2015-07-04 03:09:03 +0200 | [diff] [blame] | 112 | static int __init acpi_reserve_resources(void) |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 113 | { |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 114 | acpi_request_region(&acpi_gbl_FADT.xpm1a_event_block, acpi_gbl_FADT.pm1_event_length, |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 115 | "ACPI PM1a_EVT_BLK"); |
| 116 | |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 117 | acpi_request_region(&acpi_gbl_FADT.xpm1b_event_block, acpi_gbl_FADT.pm1_event_length, |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 118 | "ACPI PM1b_EVT_BLK"); |
| 119 | |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 120 | acpi_request_region(&acpi_gbl_FADT.xpm1a_control_block, acpi_gbl_FADT.pm1_control_length, |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 121 | "ACPI PM1a_CNT_BLK"); |
| 122 | |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 123 | acpi_request_region(&acpi_gbl_FADT.xpm1b_control_block, acpi_gbl_FADT.pm1_control_length, |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 124 | "ACPI PM1b_CNT_BLK"); |
| 125 | |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 126 | if (acpi_gbl_FADT.pm_timer_length == 4) |
| 127 | acpi_request_region(&acpi_gbl_FADT.xpm_timer_block, 4, "ACPI PM_TMR"); |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 128 | |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 129 | acpi_request_region(&acpi_gbl_FADT.xpm2_control_block, acpi_gbl_FADT.pm2_control_length, |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 130 | "ACPI PM2_CNT_BLK"); |
| 131 | |
| 132 | /* Length of GPE blocks must be a non-negative multiple of 2 */ |
| 133 | |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 134 | if (!(acpi_gbl_FADT.gpe0_block_length & 0x1)) |
| 135 | acpi_request_region(&acpi_gbl_FADT.xgpe0_block, |
| 136 | acpi_gbl_FADT.gpe0_block_length, "ACPI GPE0_BLK"); |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 137 | |
Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 138 | if (!(acpi_gbl_FADT.gpe1_block_length & 0x1)) |
| 139 | acpi_request_region(&acpi_gbl_FADT.xgpe1_block, |
| 140 | acpi_gbl_FADT.gpe1_block_length, "ACPI GPE1_BLK"); |
Rafael J. Wysocki | 0294112 | 2015-07-04 03:09:03 +0200 | [diff] [blame] | 141 | |
| 142 | return 0; |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 143 | } |
Rafael J. Wysocki | 0294112 | 2015-07-04 03:09:03 +0200 | [diff] [blame] | 144 | fs_initcall_sync(acpi_reserve_resources); |
Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 145 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 146 | void acpi_os_printf(const char *fmt, ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | { |
| 148 | va_list args; |
| 149 | va_start(args, fmt); |
| 150 | acpi_os_vprintf(fmt, args); |
| 151 | va_end(args); |
| 152 | } |
Lv Zheng | 836d08301 | 2015-12-03 10:43:14 +0800 | [diff] [blame] | 153 | EXPORT_SYMBOL(acpi_os_printf); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 154 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 155 | void acpi_os_vprintf(const char *fmt, va_list args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | { |
| 157 | static char buffer[512]; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | vsprintf(buffer, fmt, args); |
| 160 | |
| 161 | #ifdef ENABLE_DEBUGGER |
| 162 | if (acpi_in_debugger) { |
| 163 | kdb_printf("%s", buffer); |
| 164 | } else { |
Joe Perches | abc4b9a | 2016-10-12 11:50:34 -0700 | [diff] [blame] | 165 | if (printk_get_level(buffer)) |
| 166 | printk("%s", buffer); |
| 167 | else |
| 168 | printk(KERN_CONT "%s", buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | } |
| 170 | #else |
Joe Perches | abc4b9a | 2016-10-12 11:50:34 -0700 | [diff] [blame] | 171 | if (acpi_debugger_write_log(buffer) < 0) { |
| 172 | if (printk_get_level(buffer)) |
| 173 | printk("%s", buffer); |
| 174 | else |
| 175 | printk(KERN_CONT "%s", buffer); |
| 176 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | #endif |
| 178 | } |
| 179 | |
Takao Indoh | 4996c02 | 2011-07-14 18:05:21 -0400 | [diff] [blame] | 180 | #ifdef CONFIG_KEXEC |
| 181 | static unsigned long acpi_rsdp; |
| 182 | static int __init setup_acpi_rsdp(char *arg) |
| 183 | { |
Christoph Jaeger | 3d91589 | 2014-06-13 21:49:58 +0200 | [diff] [blame] | 184 | if (kstrtoul(arg, 16, &acpi_rsdp)) |
| 185 | return -EINVAL; |
Takao Indoh | 4996c02 | 2011-07-14 18:05:21 -0400 | [diff] [blame] | 186 | return 0; |
| 187 | } |
| 188 | early_param("acpi_rsdp", setup_acpi_rsdp); |
| 189 | #endif |
| 190 | |
Alexey Starikovskiy | ad71860a | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 191 | acpi_physical_address __init acpi_os_get_root_pointer(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | { |
Takao Indoh | 4996c02 | 2011-07-14 18:05:21 -0400 | [diff] [blame] | 193 | #ifdef CONFIG_KEXEC |
| 194 | if (acpi_rsdp) |
| 195 | return acpi_rsdp; |
| 196 | #endif |
| 197 | |
Matt Fleming | 83e6818 | 2012-11-14 09:42:35 +0000 | [diff] [blame] | 198 | if (efi_enabled(EFI_CONFIG_TABLES)) { |
Bjorn Helgaas | b2c99e3 | 2006-03-26 01:37:08 -0800 | [diff] [blame] | 199 | if (efi.acpi20 != EFI_INVALID_TABLE_ADDR) |
Alexey Starikovskiy | ad71860a | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 200 | return efi.acpi20; |
Bjorn Helgaas | b2c99e3 | 2006-03-26 01:37:08 -0800 | [diff] [blame] | 201 | else if (efi.acpi != EFI_INVALID_TABLE_ADDR) |
Alexey Starikovskiy | ad71860a | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 202 | return efi.acpi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | else { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 204 | printk(KERN_ERR PREFIX |
| 205 | "System description tables not found\n"); |
Alexey Starikovskiy | ad71860a | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 206 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | } |
Graeme Gregory | 8a1664b | 2014-07-18 18:02:52 +0800 | [diff] [blame] | 208 | } else if (IS_ENABLED(CONFIG_ACPI_LEGACY_TABLES_LOOKUP)) { |
Len Brown | 239665a | 2007-11-23 20:08:02 -0500 | [diff] [blame] | 209 | acpi_physical_address pa = 0; |
| 210 | |
| 211 | acpi_find_root_pointer(&pa); |
| 212 | return pa; |
| 213 | } |
Graeme Gregory | 8a1664b | 2014-07-18 18:02:52 +0800 | [diff] [blame] | 214 | |
| 215 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | } |
| 217 | |
Myron Stowe | 78cdb3e | 2010-10-21 14:24:09 -0600 | [diff] [blame] | 218 | /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */ |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 219 | static struct acpi_ioremap * |
| 220 | acpi_map_lookup(acpi_physical_address phys, acpi_size size) |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 221 | { |
| 222 | struct acpi_ioremap *map; |
| 223 | |
Myron Stowe | 78cdb3e | 2010-10-21 14:24:09 -0600 | [diff] [blame] | 224 | list_for_each_entry_rcu(map, &acpi_ioremaps, list) |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 225 | if (map->phys <= phys && |
| 226 | phys + size <= map->phys + map->size) |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 227 | return map; |
| 228 | |
| 229 | return NULL; |
| 230 | } |
| 231 | |
| 232 | /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */ |
| 233 | static void __iomem * |
| 234 | acpi_map_vaddr_lookup(acpi_physical_address phys, unsigned int size) |
| 235 | { |
| 236 | struct acpi_ioremap *map; |
| 237 | |
| 238 | map = acpi_map_lookup(phys, size); |
| 239 | if (map) |
| 240 | return map->virt + (phys - map->phys); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 241 | |
| 242 | return NULL; |
| 243 | } |
| 244 | |
Rafael J. Wysocki | 13606a2 | 2011-02-08 23:38:25 +0100 | [diff] [blame] | 245 | void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size) |
| 246 | { |
| 247 | struct acpi_ioremap *map; |
| 248 | void __iomem *virt = NULL; |
| 249 | |
| 250 | mutex_lock(&acpi_ioremap_lock); |
| 251 | map = acpi_map_lookup(phys, size); |
| 252 | if (map) { |
| 253 | virt = map->virt + (phys - map->phys); |
| 254 | map->refcount++; |
| 255 | } |
| 256 | mutex_unlock(&acpi_ioremap_lock); |
| 257 | return virt; |
| 258 | } |
| 259 | EXPORT_SYMBOL_GPL(acpi_os_get_iomem); |
| 260 | |
Myron Stowe | 78cdb3e | 2010-10-21 14:24:09 -0600 | [diff] [blame] | 261 | /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */ |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 262 | static struct acpi_ioremap * |
| 263 | acpi_map_lookup_virt(void __iomem *virt, acpi_size size) |
| 264 | { |
| 265 | struct acpi_ioremap *map; |
| 266 | |
Myron Stowe | 78cdb3e | 2010-10-21 14:24:09 -0600 | [diff] [blame] | 267 | list_for_each_entry_rcu(map, &acpi_ioremaps, list) |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 268 | if (map->virt <= virt && |
| 269 | virt + size <= map->virt + map->size) |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 270 | return map; |
| 271 | |
| 272 | return NULL; |
| 273 | } |
| 274 | |
Graeme Gregory | aafc65c | 2015-03-24 14:02:35 +0000 | [diff] [blame] | 275 | #if defined(CONFIG_IA64) || defined(CONFIG_ARM64) |
Myron Stowe | ba242d5 | 2012-01-20 19:13:30 -0700 | [diff] [blame] | 276 | /* ioremap will take care of cache attributes */ |
| 277 | #define should_use_kmap(pfn) 0 |
Graeme Gregory | aafc65c | 2015-03-24 14:02:35 +0000 | [diff] [blame] | 278 | #else |
| 279 | #define should_use_kmap(pfn) page_is_ram(pfn) |
Myron Stowe | ba242d5 | 2012-01-20 19:13:30 -0700 | [diff] [blame] | 280 | #endif |
| 281 | |
| 282 | static void __iomem *acpi_map(acpi_physical_address pg_off, unsigned long pg_sz) |
| 283 | { |
| 284 | unsigned long pfn; |
| 285 | |
| 286 | pfn = pg_off >> PAGE_SHIFT; |
| 287 | if (should_use_kmap(pfn)) { |
| 288 | if (pg_sz > PAGE_SIZE) |
| 289 | return NULL; |
| 290 | return (void __iomem __force *)kmap(pfn_to_page(pfn)); |
| 291 | } else |
| 292 | return acpi_os_ioremap(pg_off, pg_sz); |
| 293 | } |
| 294 | |
| 295 | static void acpi_unmap(acpi_physical_address pg_off, void __iomem *vaddr) |
| 296 | { |
| 297 | unsigned long pfn; |
| 298 | |
| 299 | pfn = pg_off >> PAGE_SHIFT; |
Jan Beulich | e252675 | 2012-02-24 11:41:53 +0000 | [diff] [blame] | 300 | if (should_use_kmap(pfn)) |
Myron Stowe | ba242d5 | 2012-01-20 19:13:30 -0700 | [diff] [blame] | 301 | kunmap(pfn_to_page(pfn)); |
| 302 | else |
| 303 | iounmap(vaddr); |
| 304 | } |
| 305 | |
Rafael J. Wysocki | 9d128ed | 2016-01-02 03:10:29 +0100 | [diff] [blame] | 306 | /** |
| 307 | * acpi_os_map_iomem - Get a virtual address for a given physical address range. |
| 308 | * @phys: Start of the physical address range to map. |
| 309 | * @size: Size of the physical address range to map. |
| 310 | * |
| 311 | * Look up the given physical address range in the list of existing ACPI memory |
| 312 | * mappings. If found, get a reference to it and return a pointer to it (its |
| 313 | * virtual address). If not found, map it, add it to that list and return a |
| 314 | * pointer to it. |
| 315 | * |
| 316 | * During early init (when acpi_gbl_permanent_mmap has not been set yet) this |
| 317 | * routine simply calls __acpi_map_table() to get the job done. |
| 318 | */ |
Fabian Frederick | bd721ea | 2016-08-02 14:03:33 -0700 | [diff] [blame] | 319 | void __iomem *__ref |
Lv Zheng | a238317 | 2014-05-20 15:39:41 +0800 | [diff] [blame] | 320 | acpi_os_map_iomem(acpi_physical_address phys, acpi_size size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | { |
Rafael J. Wysocki | 7ffd044 | 2011-02-08 23:38:05 +0100 | [diff] [blame] | 322 | struct acpi_ioremap *map; |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 323 | void __iomem *virt; |
Rafael J. Wysocki | 2d6d9fd | 2011-01-19 22:27:14 +0100 | [diff] [blame] | 324 | acpi_physical_address pg_off; |
| 325 | acpi_size pg_sz; |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 326 | |
Bjorn Helgaas | 9f4fd61 | 2006-03-26 01:37:10 -0800 | [diff] [blame] | 327 | if (phys > ULONG_MAX) { |
| 328 | printk(KERN_ERR PREFIX "Cannot map memory that high\n"); |
Randy Dunlap | 70c0846 | 2007-02-13 16:11:36 -0800 | [diff] [blame] | 329 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | } |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 331 | |
| 332 | if (!acpi_gbl_permanent_mmap) |
Alexey Starikovskiy | ad71860a | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 333 | return __acpi_map_table((unsigned long)phys, size); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 334 | |
Rafael J. Wysocki | 7ffd044 | 2011-02-08 23:38:05 +0100 | [diff] [blame] | 335 | mutex_lock(&acpi_ioremap_lock); |
| 336 | /* Check if there's a suitable mapping already. */ |
| 337 | map = acpi_map_lookup(phys, size); |
| 338 | if (map) { |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 339 | map->refcount++; |
Rafael J. Wysocki | 7ffd044 | 2011-02-08 23:38:05 +0100 | [diff] [blame] | 340 | goto out; |
| 341 | } |
| 342 | |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 343 | map = kzalloc(sizeof(*map), GFP_KERNEL); |
Rafael J. Wysocki | 7ffd044 | 2011-02-08 23:38:05 +0100 | [diff] [blame] | 344 | if (!map) { |
| 345 | mutex_unlock(&acpi_ioremap_lock); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 346 | return NULL; |
Rafael J. Wysocki | 7ffd044 | 2011-02-08 23:38:05 +0100 | [diff] [blame] | 347 | } |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 348 | |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 349 | pg_off = round_down(phys, PAGE_SIZE); |
| 350 | pg_sz = round_up(phys + size, PAGE_SIZE) - pg_off; |
Myron Stowe | ba242d5 | 2012-01-20 19:13:30 -0700 | [diff] [blame] | 351 | virt = acpi_map(pg_off, pg_sz); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 352 | if (!virt) { |
Rafael J. Wysocki | 7ffd044 | 2011-02-08 23:38:05 +0100 | [diff] [blame] | 353 | mutex_unlock(&acpi_ioremap_lock); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 354 | kfree(map); |
| 355 | return NULL; |
| 356 | } |
| 357 | |
| 358 | INIT_LIST_HEAD(&map->list); |
| 359 | map->virt = virt; |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 360 | map->phys = pg_off; |
| 361 | map->size = pg_sz; |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 362 | map->refcount = 1; |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 363 | |
Myron Stowe | 78cdb3e | 2010-10-21 14:24:09 -0600 | [diff] [blame] | 364 | list_add_tail_rcu(&map->list, &acpi_ioremaps); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 365 | |
Lv Zheng | a238317 | 2014-05-20 15:39:41 +0800 | [diff] [blame] | 366 | out: |
Rafael J. Wysocki | 7ffd044 | 2011-02-08 23:38:05 +0100 | [diff] [blame] | 367 | mutex_unlock(&acpi_ioremap_lock); |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 368 | return map->virt + (phys - map->phys); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | } |
Lv Zheng | a238317 | 2014-05-20 15:39:41 +0800 | [diff] [blame] | 370 | EXPORT_SYMBOL_GPL(acpi_os_map_iomem); |
| 371 | |
Fabian Frederick | bd721ea | 2016-08-02 14:03:33 -0700 | [diff] [blame] | 372 | void *__ref acpi_os_map_memory(acpi_physical_address phys, acpi_size size) |
Lv Zheng | a238317 | 2014-05-20 15:39:41 +0800 | [diff] [blame] | 373 | { |
| 374 | return (void *)acpi_os_map_iomem(phys, size); |
| 375 | } |
Kylene Jo Hall | 55a82ab | 2006-01-08 01:03:15 -0800 | [diff] [blame] | 376 | EXPORT_SYMBOL_GPL(acpi_os_map_memory); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 378 | static void acpi_os_drop_map_ref(struct acpi_ioremap *map) |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 379 | { |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 380 | if (!--map->refcount) |
| 381 | list_del_rcu(&map->list); |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 382 | } |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 383 | |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 384 | static void acpi_os_map_cleanup(struct acpi_ioremap *map) |
Rafael J. Wysocki | 7fe135d | 2011-02-08 23:37:53 +0100 | [diff] [blame] | 385 | { |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 386 | if (!map->refcount) { |
Konstantin Khlebnikov | 74b51ee | 2014-11-09 13:53:37 +0400 | [diff] [blame] | 387 | synchronize_rcu_expedited(); |
Myron Stowe | ba242d5 | 2012-01-20 19:13:30 -0700 | [diff] [blame] | 388 | acpi_unmap(map->phys, map->virt); |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 389 | kfree(map); |
| 390 | } |
Myron Stowe | 4a3cba5 | 2010-10-21 14:24:14 -0600 | [diff] [blame] | 391 | } |
| 392 | |
Rafael J. Wysocki | 9d128ed | 2016-01-02 03:10:29 +0100 | [diff] [blame] | 393 | /** |
| 394 | * acpi_os_unmap_iomem - Drop a memory mapping reference. |
| 395 | * @virt: Start of the address range to drop a reference to. |
| 396 | * @size: Size of the address range to drop a reference to. |
| 397 | * |
| 398 | * Look up the given virtual address range in the list of existing ACPI memory |
| 399 | * mappings, drop a reference to it and unmap it if there are no more active |
| 400 | * references to it. |
| 401 | * |
| 402 | * During early init (when acpi_gbl_permanent_mmap has not been set yet) this |
| 403 | * routine simply calls __acpi_unmap_table() to get the job done. Since |
| 404 | * __acpi_unmap_table() is an __init function, the __ref annotation is needed |
| 405 | * here. |
| 406 | */ |
Lv Zheng | a238317 | 2014-05-20 15:39:41 +0800 | [diff] [blame] | 407 | void __ref acpi_os_unmap_iomem(void __iomem *virt, acpi_size size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | { |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 409 | struct acpi_ioremap *map; |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 410 | |
| 411 | if (!acpi_gbl_permanent_mmap) { |
Yinghai Lu | 7d97277 | 2009-02-07 15:39:41 -0800 | [diff] [blame] | 412 | __acpi_unmap_table(virt, size); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 413 | return; |
| 414 | } |
| 415 | |
Rafael J. Wysocki | 7bbb890 | 2011-02-08 23:37:42 +0100 | [diff] [blame] | 416 | mutex_lock(&acpi_ioremap_lock); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 417 | map = acpi_map_lookup_virt(virt, size); |
| 418 | if (!map) { |
Rafael J. Wysocki | 7bbb890 | 2011-02-08 23:37:42 +0100 | [diff] [blame] | 419 | mutex_unlock(&acpi_ioremap_lock); |
Rafael J. Wysocki | 7fe135d | 2011-02-08 23:37:53 +0100 | [diff] [blame] | 420 | WARN(true, PREFIX "%s: bad address %p\n", __func__, virt); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 421 | return; |
| 422 | } |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 423 | acpi_os_drop_map_ref(map); |
Rafael J. Wysocki | 7bbb890 | 2011-02-08 23:37:42 +0100 | [diff] [blame] | 424 | mutex_unlock(&acpi_ioremap_lock); |
Myron Stowe | 620242a | 2010-10-21 14:23:53 -0600 | [diff] [blame] | 425 | |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 426 | acpi_os_map_cleanup(map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | } |
Lv Zheng | a238317 | 2014-05-20 15:39:41 +0800 | [diff] [blame] | 428 | EXPORT_SYMBOL_GPL(acpi_os_unmap_iomem); |
| 429 | |
| 430 | void __ref acpi_os_unmap_memory(void *virt, acpi_size size) |
| 431 | { |
| 432 | return acpi_os_unmap_iomem((void __iomem *)virt, size); |
| 433 | } |
Kylene Jo Hall | 55a82ab | 2006-01-08 01:03:15 -0800 | [diff] [blame] | 434 | EXPORT_SYMBOL_GPL(acpi_os_unmap_memory); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | |
Jeremy Fitzhardinge | 0d3a9cf | 2009-02-22 14:58:56 -0800 | [diff] [blame] | 436 | void __init early_acpi_os_unmap_memory(void __iomem *virt, acpi_size size) |
Yinghai Lu | 7d97277 | 2009-02-07 15:39:41 -0800 | [diff] [blame] | 437 | { |
| 438 | if (!acpi_gbl_permanent_mmap) |
| 439 | __acpi_unmap_table(virt, size); |
| 440 | } |
| 441 | |
Myron Stowe | 6f68c91 | 2011-11-07 16:23:34 -0700 | [diff] [blame] | 442 | int acpi_os_map_generic_address(struct acpi_generic_address *gas) |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 443 | { |
Myron Stowe | bc9ffce | 2011-11-07 16:23:27 -0700 | [diff] [blame] | 444 | u64 addr; |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 445 | void __iomem *virt; |
| 446 | |
Myron Stowe | bc9ffce | 2011-11-07 16:23:27 -0700 | [diff] [blame] | 447 | if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY) |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 448 | return 0; |
| 449 | |
Myron Stowe | bc9ffce | 2011-11-07 16:23:27 -0700 | [diff] [blame] | 450 | /* Handle possible alignment issues */ |
| 451 | memcpy(&addr, &gas->address, sizeof(addr)); |
| 452 | if (!addr || !gas->bit_width) |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 453 | return -EINVAL; |
| 454 | |
Lv Zheng | a238317 | 2014-05-20 15:39:41 +0800 | [diff] [blame] | 455 | virt = acpi_os_map_iomem(addr, gas->bit_width / 8); |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 456 | if (!virt) |
| 457 | return -EIO; |
| 458 | |
| 459 | return 0; |
| 460 | } |
Myron Stowe | 6f68c91 | 2011-11-07 16:23:34 -0700 | [diff] [blame] | 461 | EXPORT_SYMBOL(acpi_os_map_generic_address); |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 462 | |
Myron Stowe | 6f68c91 | 2011-11-07 16:23:34 -0700 | [diff] [blame] | 463 | void acpi_os_unmap_generic_address(struct acpi_generic_address *gas) |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 464 | { |
Myron Stowe | bc9ffce | 2011-11-07 16:23:27 -0700 | [diff] [blame] | 465 | u64 addr; |
Rafael J. Wysocki | 7fe135d | 2011-02-08 23:37:53 +0100 | [diff] [blame] | 466 | struct acpi_ioremap *map; |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 467 | |
Myron Stowe | bc9ffce | 2011-11-07 16:23:27 -0700 | [diff] [blame] | 468 | if (gas->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY) |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 469 | return; |
| 470 | |
Myron Stowe | bc9ffce | 2011-11-07 16:23:27 -0700 | [diff] [blame] | 471 | /* Handle possible alignment issues */ |
| 472 | memcpy(&addr, &gas->address, sizeof(addr)); |
| 473 | if (!addr || !gas->bit_width) |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 474 | return; |
| 475 | |
Rafael J. Wysocki | 7bbb890 | 2011-02-08 23:37:42 +0100 | [diff] [blame] | 476 | mutex_lock(&acpi_ioremap_lock); |
Myron Stowe | bc9ffce | 2011-11-07 16:23:27 -0700 | [diff] [blame] | 477 | map = acpi_map_lookup(addr, gas->bit_width / 8); |
Rafael J. Wysocki | 7fe135d | 2011-02-08 23:37:53 +0100 | [diff] [blame] | 478 | if (!map) { |
| 479 | mutex_unlock(&acpi_ioremap_lock); |
| 480 | return; |
| 481 | } |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 482 | acpi_os_drop_map_ref(map); |
Rafael J. Wysocki | 7bbb890 | 2011-02-08 23:37:42 +0100 | [diff] [blame] | 483 | mutex_unlock(&acpi_ioremap_lock); |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 484 | |
Rafael J. Wysocki | b7c1fad | 2011-02-08 23:38:15 +0100 | [diff] [blame] | 485 | acpi_os_map_cleanup(map); |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 486 | } |
Myron Stowe | 6f68c91 | 2011-11-07 16:23:34 -0700 | [diff] [blame] | 487 | EXPORT_SYMBOL(acpi_os_unmap_generic_address); |
Myron Stowe | 2971852 | 2010-10-21 14:23:59 -0600 | [diff] [blame] | 488 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | #ifdef ACPI_FUTURE_USAGE |
| 490 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 491 | acpi_os_get_physical_address(void *virt, acpi_physical_address * phys) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 493 | if (!phys || !virt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | return AE_BAD_PARAMETER; |
| 495 | |
| 496 | *phys = virt_to_phys(virt); |
| 497 | |
| 498 | return AE_OK; |
| 499 | } |
| 500 | #endif |
| 501 | |
Rafael J. Wysocki | 18d78b6 | 2015-07-03 01:06:00 +0200 | [diff] [blame] | 502 | #ifdef CONFIG_ACPI_REV_OVERRIDE_POSSIBLE |
| 503 | static bool acpi_rev_override; |
| 504 | |
| 505 | int __init acpi_rev_override_setup(char *str) |
| 506 | { |
| 507 | acpi_rev_override = true; |
| 508 | return 1; |
| 509 | } |
| 510 | __setup("acpi_rev_override", acpi_rev_override_setup); |
| 511 | #else |
| 512 | #define acpi_rev_override false |
| 513 | #endif |
| 514 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | #define ACPI_MAX_OVERRIDE_LEN 100 |
| 516 | |
| 517 | static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN]; |
| 518 | |
| 519 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 520 | acpi_os_predefined_override(const struct acpi_predefined_names *init_val, |
Lv Zheng | 80b2881 | 2016-03-24 09:38:28 +0800 | [diff] [blame] | 521 | acpi_string *new_val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | { |
| 523 | if (!init_val || !new_val) |
| 524 | return AE_BAD_PARAMETER; |
| 525 | |
| 526 | *new_val = NULL; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 527 | if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 529 | acpi_os_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | *new_val = acpi_os_name; |
| 531 | } |
| 532 | |
Rafael J. Wysocki | 18d78b6 | 2015-07-03 01:06:00 +0200 | [diff] [blame] | 533 | if (!memcmp(init_val->name, "_REV", 4) && acpi_rev_override) { |
| 534 | printk(KERN_INFO PREFIX "Overriding _REV return value to 5\n"); |
| 535 | *new_val = (char *)5; |
| 536 | } |
| 537 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | return AE_OK; |
| 539 | } |
| 540 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 541 | static irqreturn_t acpi_irq(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | { |
Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 543 | u32 handled; |
| 544 | |
| 545 | handled = (*acpi_irq_handler) (acpi_irq_context); |
| 546 | |
| 547 | if (handled) { |
| 548 | acpi_irq_handled++; |
| 549 | return IRQ_HANDLED; |
Len Brown | 88bea18 | 2009-04-21 00:35:47 -0400 | [diff] [blame] | 550 | } else { |
| 551 | acpi_irq_not_handled++; |
Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 552 | return IRQ_NONE; |
Len Brown | 88bea18 | 2009-04-21 00:35:47 -0400 | [diff] [blame] | 553 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | } |
| 555 | |
| 556 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 557 | acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler, |
| 558 | void *context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | { |
| 560 | unsigned int irq; |
| 561 | |
Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 562 | acpi_irq_stats_init(); |
| 563 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | /* |
Rafael J. Wysocki | 23fe363 | 2011-02-08 23:48:16 +0100 | [diff] [blame] | 565 | * ACPI interrupts different from the SCI in our copy of the FADT are |
| 566 | * not supported. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | */ |
Rafael J. Wysocki | 23fe363 | 2011-02-08 23:48:16 +0100 | [diff] [blame] | 568 | if (gsi != acpi_gbl_FADT.sci_interrupt) |
| 569 | return AE_BAD_PARAMETER; |
| 570 | |
| 571 | if (acpi_irq_handler) |
| 572 | return AE_ALREADY_ACQUIRED; |
| 573 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | if (acpi_gsi_to_irq(gsi, &irq) < 0) { |
| 575 | printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n", |
| 576 | gsi); |
| 577 | return AE_OK; |
| 578 | } |
| 579 | |
| 580 | acpi_irq_handler = handler; |
| 581 | acpi_irq_context = context; |
Rafael J. Wysocki | a8d46b9 | 2014-09-30 02:29:01 +0200 | [diff] [blame] | 582 | if (request_irq(irq, acpi_irq, IRQF_SHARED, "acpi", acpi_irq)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq); |
Rafael J. Wysocki | 23fe363 | 2011-02-08 23:48:16 +0100 | [diff] [blame] | 584 | acpi_irq_handler = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | return AE_NOT_ACQUIRED; |
| 586 | } |
Chen Yu | 49e4b843 | 2015-10-25 01:02:19 +0800 | [diff] [blame] | 587 | acpi_sci_irq = irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | |
| 589 | return AE_OK; |
| 590 | } |
| 591 | |
Chen Yu | 49e4b843 | 2015-10-25 01:02:19 +0800 | [diff] [blame] | 592 | acpi_status acpi_os_remove_interrupt_handler(u32 gsi, acpi_osd_handler handler) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | { |
Chen Yu | 49e4b843 | 2015-10-25 01:02:19 +0800 | [diff] [blame] | 594 | if (gsi != acpi_gbl_FADT.sci_interrupt || !acpi_sci_irq_valid()) |
Rafael J. Wysocki | 23fe363 | 2011-02-08 23:48:16 +0100 | [diff] [blame] | 595 | return AE_BAD_PARAMETER; |
| 596 | |
Chen Yu | 49e4b843 | 2015-10-25 01:02:19 +0800 | [diff] [blame] | 597 | free_irq(acpi_sci_irq, acpi_irq); |
Rafael J. Wysocki | 23fe363 | 2011-02-08 23:48:16 +0100 | [diff] [blame] | 598 | acpi_irq_handler = NULL; |
Chen Yu | 49e4b843 | 2015-10-25 01:02:19 +0800 | [diff] [blame] | 599 | acpi_sci_irq = INVALID_ACPI_IRQ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | |
| 601 | return AE_OK; |
| 602 | } |
| 603 | |
| 604 | /* |
| 605 | * Running in interpreter thread context, safe to sleep |
| 606 | */ |
| 607 | |
Lin Ming | 439913f | 2010-01-28 10:53:19 +0800 | [diff] [blame] | 608 | void acpi_os_sleep(u64 ms) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | { |
Liu Chuansheng | 3028229 | 2013-09-12 01:42:57 +0800 | [diff] [blame] | 610 | msleep(ms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 612 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 613 | void acpi_os_stall(u32 us) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | { |
| 615 | while (us) { |
| 616 | u32 delay = 1000; |
| 617 | |
| 618 | if (delay > us) |
| 619 | delay = us; |
| 620 | udelay(delay); |
| 621 | touch_nmi_watchdog(); |
| 622 | us -= delay; |
| 623 | } |
| 624 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 625 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | /* |
| 627 | * Support ACPI 3.0 AML Timer operand |
| 628 | * Returns 64-bit free-running, monotonically increasing timer |
| 629 | * with 100ns granularity |
| 630 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 631 | u64 acpi_os_get_timer(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | { |
Mika Westerberg | 1061906 | 2013-05-23 10:27:46 +0300 | [diff] [blame] | 633 | u64 time_ns = ktime_to_ns(ktime_get()); |
| 634 | do_div(time_ns, 100); |
| 635 | return time_ns; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | } |
| 637 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 638 | acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | { |
| 640 | u32 dummy; |
| 641 | |
| 642 | if (!value) |
| 643 | value = &dummy; |
| 644 | |
Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 645 | *value = 0; |
| 646 | if (width <= 8) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 647 | *(u8 *) value = inb(port); |
Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 648 | } else if (width <= 16) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 649 | *(u16 *) value = inw(port); |
Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 650 | } else if (width <= 32) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 651 | *(u32 *) value = inl(port); |
Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 652 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | BUG(); |
| 654 | } |
| 655 | |
| 656 | return AE_OK; |
| 657 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 658 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | EXPORT_SYMBOL(acpi_os_read_port); |
| 660 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 661 | acpi_status acpi_os_write_port(acpi_io_address port, u32 value, u32 width) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | { |
Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 663 | if (width <= 8) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | outb(value, port); |
Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 665 | } else if (width <= 16) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | outw(value, port); |
Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 667 | } else if (width <= 32) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | outl(value, port); |
Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 669 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | BUG(); |
| 671 | } |
| 672 | |
| 673 | return AE_OK; |
| 674 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 675 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | EXPORT_SYMBOL(acpi_os_write_port); |
| 677 | |
Myron Stowe | e615bf5 | 2012-01-20 19:13:24 -0700 | [diff] [blame] | 678 | acpi_status |
Bob Moore | 653f4b5 | 2012-02-14 18:29:55 +0800 | [diff] [blame] | 679 | acpi_os_read_memory(acpi_physical_address phys_addr, u64 *value, u32 width) |
Myron Stowe | e615bf5 | 2012-01-20 19:13:24 -0700 | [diff] [blame] | 680 | { |
| 681 | void __iomem *virt_addr; |
| 682 | unsigned int size = width / 8; |
| 683 | bool unmap = false; |
| 684 | u64 dummy; |
| 685 | |
| 686 | rcu_read_lock(); |
| 687 | virt_addr = acpi_map_vaddr_lookup(phys_addr, size); |
| 688 | if (!virt_addr) { |
| 689 | rcu_read_unlock(); |
| 690 | virt_addr = acpi_os_ioremap(phys_addr, size); |
| 691 | if (!virt_addr) |
| 692 | return AE_BAD_ADDRESS; |
| 693 | unmap = true; |
| 694 | } |
| 695 | |
| 696 | if (!value) |
| 697 | value = &dummy; |
| 698 | |
| 699 | switch (width) { |
| 700 | case 8: |
| 701 | *(u8 *) value = readb(virt_addr); |
| 702 | break; |
| 703 | case 16: |
| 704 | *(u16 *) value = readw(virt_addr); |
| 705 | break; |
| 706 | case 32: |
| 707 | *(u32 *) value = readl(virt_addr); |
| 708 | break; |
| 709 | case 64: |
Andy Shevchenko | 3277b4e | 2015-08-17 17:28:46 +0300 | [diff] [blame] | 710 | *(u64 *) value = readq(virt_addr); |
Myron Stowe | e615bf5 | 2012-01-20 19:13:24 -0700 | [diff] [blame] | 711 | break; |
| 712 | default: |
| 713 | BUG(); |
| 714 | } |
| 715 | |
| 716 | if (unmap) |
| 717 | iounmap(virt_addr); |
| 718 | else |
| 719 | rcu_read_unlock(); |
| 720 | |
| 721 | return AE_OK; |
| 722 | } |
| 723 | |
Myron Stowe | e615bf5 | 2012-01-20 19:13:24 -0700 | [diff] [blame] | 724 | acpi_status |
Bob Moore | 653f4b5 | 2012-02-14 18:29:55 +0800 | [diff] [blame] | 725 | acpi_os_write_memory(acpi_physical_address phys_addr, u64 value, u32 width) |
Myron Stowe | e615bf5 | 2012-01-20 19:13:24 -0700 | [diff] [blame] | 726 | { |
| 727 | void __iomem *virt_addr; |
| 728 | unsigned int size = width / 8; |
| 729 | bool unmap = false; |
| 730 | |
| 731 | rcu_read_lock(); |
| 732 | virt_addr = acpi_map_vaddr_lookup(phys_addr, size); |
| 733 | if (!virt_addr) { |
| 734 | rcu_read_unlock(); |
| 735 | virt_addr = acpi_os_ioremap(phys_addr, size); |
| 736 | if (!virt_addr) |
| 737 | return AE_BAD_ADDRESS; |
| 738 | unmap = true; |
| 739 | } |
| 740 | |
| 741 | switch (width) { |
| 742 | case 8: |
| 743 | writeb(value, virt_addr); |
| 744 | break; |
| 745 | case 16: |
| 746 | writew(value, virt_addr); |
| 747 | break; |
| 748 | case 32: |
| 749 | writel(value, virt_addr); |
| 750 | break; |
| 751 | case 64: |
Andy Shevchenko | 3277b4e | 2015-08-17 17:28:46 +0300 | [diff] [blame] | 752 | writeq(value, virt_addr); |
Myron Stowe | e615bf5 | 2012-01-20 19:13:24 -0700 | [diff] [blame] | 753 | break; |
| 754 | default: |
| 755 | BUG(); |
| 756 | } |
| 757 | |
| 758 | if (unmap) |
| 759 | iounmap(virt_addr); |
| 760 | else |
| 761 | rcu_read_unlock(); |
| 762 | |
| 763 | return AE_OK; |
| 764 | } |
| 765 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 767 | acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg, |
Bob Moore | c5f0231 | 2010-08-06 08:57:53 +0800 | [diff] [blame] | 768 | u64 *value, u32 width) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | { |
| 770 | int result, size; |
Bob Moore | c5f0231 | 2010-08-06 08:57:53 +0800 | [diff] [blame] | 771 | u32 value32; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | |
| 773 | if (!value) |
| 774 | return AE_BAD_PARAMETER; |
| 775 | |
| 776 | switch (width) { |
| 777 | case 8: |
| 778 | size = 1; |
| 779 | break; |
| 780 | case 16: |
| 781 | size = 2; |
| 782 | break; |
| 783 | case 32: |
| 784 | size = 4; |
| 785 | break; |
| 786 | default: |
| 787 | return AE_ERROR; |
| 788 | } |
| 789 | |
Matthew Wilcox | b6ce068 | 2008-02-10 09:45:28 -0500 | [diff] [blame] | 790 | result = raw_pci_read(pci_id->segment, pci_id->bus, |
| 791 | PCI_DEVFN(pci_id->device, pci_id->function), |
Bob Moore | c5f0231 | 2010-08-06 08:57:53 +0800 | [diff] [blame] | 792 | reg, size, &value32); |
| 793 | *value = value32; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | |
| 795 | return (result ? AE_ERROR : AE_OK); |
| 796 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 797 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 799 | acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg, |
Lin Ming | 439913f | 2010-01-28 10:53:19 +0800 | [diff] [blame] | 800 | u64 value, u32 width) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | { |
| 802 | int result, size; |
| 803 | |
| 804 | switch (width) { |
| 805 | case 8: |
| 806 | size = 1; |
| 807 | break; |
| 808 | case 16: |
| 809 | size = 2; |
| 810 | break; |
| 811 | case 32: |
| 812 | size = 4; |
| 813 | break; |
| 814 | default: |
| 815 | return AE_ERROR; |
| 816 | } |
| 817 | |
Matthew Wilcox | b6ce068 | 2008-02-10 09:45:28 -0500 | [diff] [blame] | 818 | result = raw_pci_write(pci_id->segment, pci_id->bus, |
| 819 | PCI_DEVFN(pci_id->device, pci_id->function), |
| 820 | reg, size, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | |
| 822 | return (result ? AE_ERROR : AE_OK); |
| 823 | } |
| 824 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 825 | static void acpi_os_execute_deferred(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 827 | struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work); |
Alexey Starikovskiy | 88db5e1 | 2007-05-09 23:31:03 -0400 | [diff] [blame] | 828 | |
Zhang Rui | 19cd847 | 2008-08-28 10:05:06 +0800 | [diff] [blame] | 829 | dpc->function(dpc->context); |
| 830 | kfree(dpc); |
Zhang Rui | 19cd847 | 2008-08-28 10:05:06 +0800 | [diff] [blame] | 831 | } |
| 832 | |
Lv Zheng | 836d08301 | 2015-12-03 10:43:14 +0800 | [diff] [blame] | 833 | #ifdef CONFIG_ACPI_DEBUGGER |
| 834 | static struct acpi_debugger acpi_debugger; |
| 835 | static bool acpi_debugger_initialized; |
| 836 | |
| 837 | int acpi_register_debugger(struct module *owner, |
| 838 | const struct acpi_debugger_ops *ops) |
| 839 | { |
| 840 | int ret = 0; |
| 841 | |
| 842 | mutex_lock(&acpi_debugger.lock); |
| 843 | if (acpi_debugger.ops) { |
| 844 | ret = -EBUSY; |
| 845 | goto err_lock; |
| 846 | } |
| 847 | |
| 848 | acpi_debugger.owner = owner; |
| 849 | acpi_debugger.ops = ops; |
| 850 | |
| 851 | err_lock: |
| 852 | mutex_unlock(&acpi_debugger.lock); |
| 853 | return ret; |
| 854 | } |
| 855 | EXPORT_SYMBOL(acpi_register_debugger); |
| 856 | |
| 857 | void acpi_unregister_debugger(const struct acpi_debugger_ops *ops) |
| 858 | { |
| 859 | mutex_lock(&acpi_debugger.lock); |
| 860 | if (ops == acpi_debugger.ops) { |
| 861 | acpi_debugger.ops = NULL; |
| 862 | acpi_debugger.owner = NULL; |
| 863 | } |
| 864 | mutex_unlock(&acpi_debugger.lock); |
| 865 | } |
| 866 | EXPORT_SYMBOL(acpi_unregister_debugger); |
| 867 | |
| 868 | int acpi_debugger_create_thread(acpi_osd_exec_callback function, void *context) |
| 869 | { |
| 870 | int ret; |
| 871 | int (*func)(acpi_osd_exec_callback, void *); |
| 872 | struct module *owner; |
| 873 | |
| 874 | if (!acpi_debugger_initialized) |
| 875 | return -ENODEV; |
| 876 | mutex_lock(&acpi_debugger.lock); |
| 877 | if (!acpi_debugger.ops) { |
| 878 | ret = -ENODEV; |
| 879 | goto err_lock; |
| 880 | } |
| 881 | if (!try_module_get(acpi_debugger.owner)) { |
| 882 | ret = -ENODEV; |
| 883 | goto err_lock; |
| 884 | } |
| 885 | func = acpi_debugger.ops->create_thread; |
| 886 | owner = acpi_debugger.owner; |
| 887 | mutex_unlock(&acpi_debugger.lock); |
| 888 | |
| 889 | ret = func(function, context); |
| 890 | |
| 891 | mutex_lock(&acpi_debugger.lock); |
| 892 | module_put(owner); |
| 893 | err_lock: |
| 894 | mutex_unlock(&acpi_debugger.lock); |
| 895 | return ret; |
| 896 | } |
| 897 | |
| 898 | ssize_t acpi_debugger_write_log(const char *msg) |
| 899 | { |
| 900 | ssize_t ret; |
| 901 | ssize_t (*func)(const char *); |
| 902 | struct module *owner; |
| 903 | |
| 904 | if (!acpi_debugger_initialized) |
| 905 | return -ENODEV; |
| 906 | mutex_lock(&acpi_debugger.lock); |
| 907 | if (!acpi_debugger.ops) { |
| 908 | ret = -ENODEV; |
| 909 | goto err_lock; |
| 910 | } |
| 911 | if (!try_module_get(acpi_debugger.owner)) { |
| 912 | ret = -ENODEV; |
| 913 | goto err_lock; |
| 914 | } |
| 915 | func = acpi_debugger.ops->write_log; |
| 916 | owner = acpi_debugger.owner; |
| 917 | mutex_unlock(&acpi_debugger.lock); |
| 918 | |
| 919 | ret = func(msg); |
| 920 | |
| 921 | mutex_lock(&acpi_debugger.lock); |
| 922 | module_put(owner); |
| 923 | err_lock: |
| 924 | mutex_unlock(&acpi_debugger.lock); |
| 925 | return ret; |
| 926 | } |
| 927 | |
| 928 | ssize_t acpi_debugger_read_cmd(char *buffer, size_t buffer_length) |
| 929 | { |
| 930 | ssize_t ret; |
| 931 | ssize_t (*func)(char *, size_t); |
| 932 | struct module *owner; |
| 933 | |
| 934 | if (!acpi_debugger_initialized) |
| 935 | return -ENODEV; |
| 936 | mutex_lock(&acpi_debugger.lock); |
| 937 | if (!acpi_debugger.ops) { |
| 938 | ret = -ENODEV; |
| 939 | goto err_lock; |
| 940 | } |
| 941 | if (!try_module_get(acpi_debugger.owner)) { |
| 942 | ret = -ENODEV; |
| 943 | goto err_lock; |
| 944 | } |
| 945 | func = acpi_debugger.ops->read_cmd; |
| 946 | owner = acpi_debugger.owner; |
| 947 | mutex_unlock(&acpi_debugger.lock); |
| 948 | |
| 949 | ret = func(buffer, buffer_length); |
| 950 | |
| 951 | mutex_lock(&acpi_debugger.lock); |
| 952 | module_put(owner); |
| 953 | err_lock: |
| 954 | mutex_unlock(&acpi_debugger.lock); |
| 955 | return ret; |
| 956 | } |
| 957 | |
| 958 | int acpi_debugger_wait_command_ready(void) |
| 959 | { |
| 960 | int ret; |
| 961 | int (*func)(bool, char *, size_t); |
| 962 | struct module *owner; |
| 963 | |
| 964 | if (!acpi_debugger_initialized) |
| 965 | return -ENODEV; |
| 966 | mutex_lock(&acpi_debugger.lock); |
| 967 | if (!acpi_debugger.ops) { |
| 968 | ret = -ENODEV; |
| 969 | goto err_lock; |
| 970 | } |
| 971 | if (!try_module_get(acpi_debugger.owner)) { |
| 972 | ret = -ENODEV; |
| 973 | goto err_lock; |
| 974 | } |
| 975 | func = acpi_debugger.ops->wait_command_ready; |
| 976 | owner = acpi_debugger.owner; |
| 977 | mutex_unlock(&acpi_debugger.lock); |
| 978 | |
| 979 | ret = func(acpi_gbl_method_executing, |
| 980 | acpi_gbl_db_line_buf, ACPI_DB_LINE_BUFFER_SIZE); |
| 981 | |
| 982 | mutex_lock(&acpi_debugger.lock); |
| 983 | module_put(owner); |
| 984 | err_lock: |
| 985 | mutex_unlock(&acpi_debugger.lock); |
| 986 | return ret; |
| 987 | } |
| 988 | |
| 989 | int acpi_debugger_notify_command_complete(void) |
| 990 | { |
| 991 | int ret; |
| 992 | int (*func)(void); |
| 993 | struct module *owner; |
| 994 | |
| 995 | if (!acpi_debugger_initialized) |
| 996 | return -ENODEV; |
| 997 | mutex_lock(&acpi_debugger.lock); |
| 998 | if (!acpi_debugger.ops) { |
| 999 | ret = -ENODEV; |
| 1000 | goto err_lock; |
| 1001 | } |
| 1002 | if (!try_module_get(acpi_debugger.owner)) { |
| 1003 | ret = -ENODEV; |
| 1004 | goto err_lock; |
| 1005 | } |
| 1006 | func = acpi_debugger.ops->notify_command_complete; |
| 1007 | owner = acpi_debugger.owner; |
| 1008 | mutex_unlock(&acpi_debugger.lock); |
| 1009 | |
| 1010 | ret = func(); |
| 1011 | |
| 1012 | mutex_lock(&acpi_debugger.lock); |
| 1013 | module_put(owner); |
| 1014 | err_lock: |
| 1015 | mutex_unlock(&acpi_debugger.lock); |
| 1016 | return ret; |
| 1017 | } |
| 1018 | |
| 1019 | int __init acpi_debugger_init(void) |
| 1020 | { |
| 1021 | mutex_init(&acpi_debugger.lock); |
| 1022 | acpi_debugger_initialized = true; |
| 1023 | return 0; |
| 1024 | } |
| 1025 | #endif |
| 1026 | |
Alexey Starikovskiy | b8d3519 | 2006-05-05 03:23:00 -0400 | [diff] [blame] | 1027 | /******************************************************************************* |
| 1028 | * |
| 1029 | * FUNCTION: acpi_os_execute |
| 1030 | * |
| 1031 | * PARAMETERS: Type - Type of the callback |
| 1032 | * Function - Function to be executed |
| 1033 | * Context - Function parameters |
| 1034 | * |
| 1035 | * RETURN: Status |
| 1036 | * |
| 1037 | * DESCRIPTION: Depending on type, either queues function for deferred execution or |
| 1038 | * immediately executes function on a separate thread. |
| 1039 | * |
| 1040 | ******************************************************************************/ |
| 1041 | |
Rafael J. Wysocki | 7b98118 | 2013-11-07 01:45:40 +0100 | [diff] [blame] | 1042 | acpi_status acpi_os_execute(acpi_execute_type type, |
| 1043 | acpi_osd_exec_callback function, void *context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1045 | acpi_status status = AE_OK; |
| 1046 | struct acpi_os_dpc *dpc; |
Alexey Starikovskiy | 17bc54e | 2007-11-13 13:05:45 +0300 | [diff] [blame] | 1047 | struct workqueue_struct *queue; |
Zhang Rui | 19cd847 | 2008-08-28 10:05:06 +0800 | [diff] [blame] | 1048 | int ret; |
Len Brown | 72945b2 | 2006-07-12 22:46:42 -0400 | [diff] [blame] | 1049 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, |
| 1050 | "Scheduling function [%p(%p)] for deferred execution.\n", |
| 1051 | function, context)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | |
Lv Zheng | 8cfb0cd | 2015-12-03 10:43:00 +0800 | [diff] [blame] | 1053 | if (type == OSL_DEBUGGER_MAIN_THREAD) { |
Lv Zheng | 836d08301 | 2015-12-03 10:43:14 +0800 | [diff] [blame] | 1054 | ret = acpi_debugger_create_thread(function, context); |
Lv Zheng | 8cfb0cd | 2015-12-03 10:43:00 +0800 | [diff] [blame] | 1055 | if (ret) { |
| 1056 | pr_err("Call to kthread_create() failed.\n"); |
| 1057 | status = AE_ERROR; |
| 1058 | } |
| 1059 | goto out_thread; |
| 1060 | } |
| 1061 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | /* |
| 1063 | * Allocate/initialize DPC structure. Note that this memory will be |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 1064 | * freed by the callee. The kernel handles the work_struct list in a |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | * way that allows us to also free its memory inside the callee. |
| 1066 | * Because we may want to schedule several tasks with different |
| 1067 | * parameters we can't use the approach some kernel code uses of |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 1068 | * having a static work_struct. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | */ |
Len Brown | 72945b2 | 2006-07-12 22:46:42 -0400 | [diff] [blame] | 1070 | |
Rafael J. Wysocki | 3ae45a2 | 2012-11-02 13:09:08 +0100 | [diff] [blame] | 1071 | dpc = kzalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | if (!dpc) |
Lin Ming | 889c78b | 2008-12-31 09:23:57 +0800 | [diff] [blame] | 1073 | return AE_NO_MEMORY; |
Linus Torvalds | b976fe1 | 2006-11-17 19:31:09 -0800 | [diff] [blame] | 1074 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | dpc->function = function; |
| 1076 | dpc->context = context; |
Linus Torvalds | b976fe1 | 2006-11-17 19:31:09 -0800 | [diff] [blame] | 1077 | |
Zhang Rui | c02256b | 2009-06-23 10:20:29 +0800 | [diff] [blame] | 1078 | /* |
Rafael J. Wysocki | 3ae45a2 | 2012-11-02 13:09:08 +0100 | [diff] [blame] | 1079 | * To prevent lockdep from complaining unnecessarily, make sure that |
| 1080 | * there is a different static lockdep key for each workqueue by using |
| 1081 | * INIT_WORK() for each of them separately. |
Zhang Rui | c02256b | 2009-06-23 10:20:29 +0800 | [diff] [blame] | 1082 | */ |
Rafael J. Wysocki | 7b98118 | 2013-11-07 01:45:40 +0100 | [diff] [blame] | 1083 | if (type == OSL_NOTIFY_HANDLER) { |
Rafael J. Wysocki | 3ae45a2 | 2012-11-02 13:09:08 +0100 | [diff] [blame] | 1084 | queue = kacpi_notify_wq; |
Zhang Rui | bc73675 | 2010-03-22 15:48:54 +0800 | [diff] [blame] | 1085 | INIT_WORK(&dpc->work, acpi_os_execute_deferred); |
Lv Zheng | 8cfb0cd | 2015-12-03 10:43:00 +0800 | [diff] [blame] | 1086 | } else if (type == OSL_GPE_HANDLER) { |
Rafael J. Wysocki | 3ae45a2 | 2012-11-02 13:09:08 +0100 | [diff] [blame] | 1087 | queue = kacpid_wq; |
Zhang Rui | bc73675 | 2010-03-22 15:48:54 +0800 | [diff] [blame] | 1088 | INIT_WORK(&dpc->work, acpi_os_execute_deferred); |
Lv Zheng | 8cfb0cd | 2015-12-03 10:43:00 +0800 | [diff] [blame] | 1089 | } else { |
| 1090 | pr_err("Unsupported os_execute type %d.\n", type); |
| 1091 | status = AE_ERROR; |
Rafael J. Wysocki | 3ae45a2 | 2012-11-02 13:09:08 +0100 | [diff] [blame] | 1092 | } |
Zhang Rui | bc73675 | 2010-03-22 15:48:54 +0800 | [diff] [blame] | 1093 | |
Lv Zheng | 8cfb0cd | 2015-12-03 10:43:00 +0800 | [diff] [blame] | 1094 | if (ACPI_FAILURE(status)) |
| 1095 | goto err_workqueue; |
| 1096 | |
Tejun Heo | 8fec62b | 2010-06-29 10:07:09 +0200 | [diff] [blame] | 1097 | /* |
| 1098 | * On some machines, a software-initiated SMI causes corruption unless |
| 1099 | * the SMI runs on CPU 0. An SMI can be initiated by any AML, but |
| 1100 | * typically it's done in GPE-related methods that are run via |
| 1101 | * workqueues, so we can avoid the known corruption cases by always |
| 1102 | * queueing on CPU 0. |
| 1103 | */ |
| 1104 | ret = queue_work_on(0, queue, &dpc->work); |
Zhang Rui | 19cd847 | 2008-08-28 10:05:06 +0800 | [diff] [blame] | 1105 | if (!ret) { |
Lin Ming | 55ac9a0 | 2008-09-28 14:51:56 +0800 | [diff] [blame] | 1106 | printk(KERN_ERR PREFIX |
| 1107 | "Call to queue_work() failed.\n"); |
Alexey Starikovskiy | 17bc54e | 2007-11-13 13:05:45 +0300 | [diff] [blame] | 1108 | status = AE_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | } |
Lv Zheng | 8cfb0cd | 2015-12-03 10:43:00 +0800 | [diff] [blame] | 1110 | err_workqueue: |
| 1111 | if (ACPI_FAILURE(status)) |
| 1112 | kfree(dpc); |
| 1113 | out_thread: |
Lin Ming | 889c78b | 2008-12-31 09:23:57 +0800 | [diff] [blame] | 1114 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | } |
Alexey Starikovskiy | b8d3519 | 2006-05-05 03:23:00 -0400 | [diff] [blame] | 1116 | EXPORT_SYMBOL(acpi_os_execute); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | |
Lin Ming | bd6f10a | 2012-05-22 16:43:49 +0800 | [diff] [blame] | 1118 | void acpi_os_wait_events_complete(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | { |
Lv Zheng | 90253a7 | 2014-11-05 15:06:13 +0800 | [diff] [blame] | 1120 | /* |
| 1121 | * Make sure the GPE handler or the fixed event handler is not used |
| 1122 | * on another CPU after removal. |
| 1123 | */ |
Chen Yu | efb1cf7 | 2015-10-25 01:02:36 +0800 | [diff] [blame] | 1124 | if (acpi_sci_irq_valid()) |
| 1125 | synchronize_hardirq(acpi_sci_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | flush_workqueue(kacpid_wq); |
Zhang Rui | 2f67a06 | 2008-04-29 02:34:42 -0400 | [diff] [blame] | 1127 | flush_workqueue(kacpi_notify_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1129 | |
Rafael J. Wysocki | 7b98118 | 2013-11-07 01:45:40 +0100 | [diff] [blame] | 1130 | struct acpi_hp_work { |
| 1131 | struct work_struct work; |
Rafael J. Wysocki | 1e3bcb5 | 2014-03-03 00:40:38 +0100 | [diff] [blame] | 1132 | struct acpi_device *adev; |
Rafael J. Wysocki | 7b98118 | 2013-11-07 01:45:40 +0100 | [diff] [blame] | 1133 | u32 src; |
| 1134 | }; |
| 1135 | |
| 1136 | static void acpi_hotplug_work_fn(struct work_struct *work) |
| 1137 | { |
| 1138 | struct acpi_hp_work *hpw = container_of(work, struct acpi_hp_work, work); |
| 1139 | |
| 1140 | acpi_os_wait_events_complete(); |
Rafael J. Wysocki | 1e3bcb5 | 2014-03-03 00:40:38 +0100 | [diff] [blame] | 1141 | acpi_device_hotplug(hpw->adev, hpw->src); |
Rafael J. Wysocki | 7b98118 | 2013-11-07 01:45:40 +0100 | [diff] [blame] | 1142 | kfree(hpw); |
| 1143 | } |
| 1144 | |
Rafael J. Wysocki | 1e3bcb5 | 2014-03-03 00:40:38 +0100 | [diff] [blame] | 1145 | acpi_status acpi_hotplug_schedule(struct acpi_device *adev, u32 src) |
Rafael J. Wysocki | 7b98118 | 2013-11-07 01:45:40 +0100 | [diff] [blame] | 1146 | { |
| 1147 | struct acpi_hp_work *hpw; |
| 1148 | |
| 1149 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, |
Rafael J. Wysocki | 1e3bcb5 | 2014-03-03 00:40:38 +0100 | [diff] [blame] | 1150 | "Scheduling hotplug event (%p, %u) for deferred execution.\n", |
| 1151 | adev, src)); |
Rafael J. Wysocki | 7b98118 | 2013-11-07 01:45:40 +0100 | [diff] [blame] | 1152 | |
| 1153 | hpw = kmalloc(sizeof(*hpw), GFP_KERNEL); |
| 1154 | if (!hpw) |
| 1155 | return AE_NO_MEMORY; |
| 1156 | |
| 1157 | INIT_WORK(&hpw->work, acpi_hotplug_work_fn); |
Rafael J. Wysocki | 1e3bcb5 | 2014-03-03 00:40:38 +0100 | [diff] [blame] | 1158 | hpw->adev = adev; |
Rafael J. Wysocki | 7b98118 | 2013-11-07 01:45:40 +0100 | [diff] [blame] | 1159 | hpw->src = src; |
| 1160 | /* |
| 1161 | * We can't run hotplug code in kacpid_wq/kacpid_notify_wq etc., because |
| 1162 | * the hotplug code may call driver .remove() functions, which may |
| 1163 | * invoke flush_scheduled_work()/acpi_os_wait_events_complete() to flush |
| 1164 | * these workqueues. |
| 1165 | */ |
| 1166 | if (!queue_work(kacpi_hotplug_wq, &hpw->work)) { |
| 1167 | kfree(hpw); |
| 1168 | return AE_ERROR; |
| 1169 | } |
| 1170 | return AE_OK; |
| 1171 | } |
| 1172 | |
Rafael J. Wysocki | d783156 | 2013-11-22 21:52:12 +0100 | [diff] [blame] | 1173 | bool acpi_queue_hotplug_work(struct work_struct *work) |
| 1174 | { |
| 1175 | return queue_work(kacpi_hotplug_wq, work); |
| 1176 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1179 | acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1181 | struct semaphore *sem = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1182 | |
jhbird.choi@samsung.com | 2d0acb4 | 2014-03-20 16:35:56 +0900 | [diff] [blame] | 1183 | sem = acpi_os_allocate_zeroed(sizeof(struct semaphore)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | if (!sem) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1185 | return AE_NO_MEMORY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | |
| 1187 | sema_init(sem, initial_units); |
| 1188 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1189 | *handle = (acpi_handle *) sem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1191 | ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n", |
| 1192 | *handle, initial_units)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1194 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | /* |
| 1198 | * TODO: A better way to delete semaphores? Linux doesn't have a |
| 1199 | * 'delete_semaphore()' function -- may result in an invalid |
| 1200 | * pointer dereference for non-synchronized consumers. Should |
| 1201 | * we at least check for blocked threads and signal/cancel them? |
| 1202 | */ |
| 1203 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1204 | acpi_status acpi_os_delete_semaphore(acpi_handle handle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1206 | struct semaphore *sem = (struct semaphore *)handle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | if (!sem) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1209 | return AE_BAD_PARAMETER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1211 | ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | |
Matthew Wilcox | f1241c8 | 2008-03-14 13:43:13 -0400 | [diff] [blame] | 1213 | BUG_ON(!list_empty(&sem->wait_list)); |
Len Brown | 02438d8 | 2006-06-30 03:19:10 -0400 | [diff] [blame] | 1214 | kfree(sem); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1215 | sem = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1217 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | * TODO: Support for units > 1? |
| 1222 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1223 | acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1225 | acpi_status status = AE_OK; |
| 1226 | struct semaphore *sem = (struct semaphore *)handle; |
Matthew Wilcox | f1241c8 | 2008-03-14 13:43:13 -0400 | [diff] [blame] | 1227 | long jiffies; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1228 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | |
Lv Zheng | 7901a05 | 2015-08-05 16:23:51 +0800 | [diff] [blame] | 1230 | if (!acpi_os_initialized) |
| 1231 | return AE_OK; |
| 1232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | if (!sem || (units < 1)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1234 | return AE_BAD_PARAMETER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | |
| 1236 | if (units > 1) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1237 | return AE_SUPPORT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1239 | ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n", |
| 1240 | handle, units, timeout)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | |
Matthew Wilcox | f1241c8 | 2008-03-14 13:43:13 -0400 | [diff] [blame] | 1242 | if (timeout == ACPI_WAIT_FOREVER) |
| 1243 | jiffies = MAX_SCHEDULE_TIMEOUT; |
| 1244 | else |
| 1245 | jiffies = msecs_to_jiffies(timeout); |
Al Stone | cad1525a | 2013-12-04 12:59:11 -0700 | [diff] [blame] | 1246 | |
Matthew Wilcox | f1241c8 | 2008-03-14 13:43:13 -0400 | [diff] [blame] | 1247 | ret = down_timeout(sem, jiffies); |
| 1248 | if (ret) |
| 1249 | status = AE_TIME; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | |
| 1251 | if (ACPI_FAILURE(status)) { |
Bjorn Helgaas | 9e7e2c0 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 1252 | ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 1253 | "Failed to acquire semaphore[%p|%d|%d], %s", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1254 | handle, units, timeout, |
| 1255 | acpi_format_exception(status))); |
| 1256 | } else { |
| 1257 | ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 1258 | "Acquired semaphore[%p|%d|%d]", handle, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1259 | units, timeout)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1260 | } |
| 1261 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1262 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1264 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | /* |
| 1266 | * TODO: Support for units > 1? |
| 1267 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1268 | acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1270 | struct semaphore *sem = (struct semaphore *)handle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | |
Lv Zheng | 7901a05 | 2015-08-05 16:23:51 +0800 | [diff] [blame] | 1272 | if (!acpi_os_initialized) |
| 1273 | return AE_OK; |
| 1274 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 | if (!sem || (units < 1)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1276 | return AE_BAD_PARAMETER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1277 | |
| 1278 | if (units > 1) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1279 | return AE_SUPPORT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1281 | ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle, |
| 1282 | units)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | |
| 1284 | up(sem); |
| 1285 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1286 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1288 | |
Lv Zheng | 4d946f7 | 2015-10-19 10:25:56 +0800 | [diff] [blame] | 1289 | acpi_status acpi_os_get_line(char *buffer, u32 buffer_length, u32 *bytes_read) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 | #ifdef ENABLE_DEBUGGER |
| 1292 | if (acpi_in_debugger) { |
| 1293 | u32 chars; |
| 1294 | |
Lv Zheng | 4d946f7 | 2015-10-19 10:25:56 +0800 | [diff] [blame] | 1295 | kdb_read(buffer, buffer_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | |
| 1297 | /* remove the CR kdb includes */ |
| 1298 | chars = strlen(buffer) - 1; |
| 1299 | buffer[chars] = '\0'; |
| 1300 | } |
Lv Zheng | 8cfb0cd | 2015-12-03 10:43:00 +0800 | [diff] [blame] | 1301 | #else |
| 1302 | int ret; |
| 1303 | |
Lv Zheng | 836d08301 | 2015-12-03 10:43:14 +0800 | [diff] [blame] | 1304 | ret = acpi_debugger_read_cmd(buffer, buffer_length); |
Lv Zheng | 8cfb0cd | 2015-12-03 10:43:00 +0800 | [diff] [blame] | 1305 | if (ret < 0) |
| 1306 | return AE_ERROR; |
| 1307 | if (bytes_read) |
| 1308 | *bytes_read = ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | #endif |
| 1310 | |
Lv Zheng | 4d946f7 | 2015-10-19 10:25:56 +0800 | [diff] [blame] | 1311 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | } |
Lv Zheng | 836d08301 | 2015-12-03 10:43:14 +0800 | [diff] [blame] | 1313 | EXPORT_SYMBOL(acpi_os_get_line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | |
Lv Zheng | 8cfb0cd | 2015-12-03 10:43:00 +0800 | [diff] [blame] | 1315 | acpi_status acpi_os_wait_command_ready(void) |
| 1316 | { |
| 1317 | int ret; |
| 1318 | |
Lv Zheng | 836d08301 | 2015-12-03 10:43:14 +0800 | [diff] [blame] | 1319 | ret = acpi_debugger_wait_command_ready(); |
Lv Zheng | 8cfb0cd | 2015-12-03 10:43:00 +0800 | [diff] [blame] | 1320 | if (ret < 0) |
| 1321 | return AE_ERROR; |
| 1322 | return AE_OK; |
| 1323 | } |
| 1324 | |
| 1325 | acpi_status acpi_os_notify_command_complete(void) |
| 1326 | { |
| 1327 | int ret; |
| 1328 | |
Lv Zheng | 836d08301 | 2015-12-03 10:43:14 +0800 | [diff] [blame] | 1329 | ret = acpi_debugger_notify_command_complete(); |
Lv Zheng | 8cfb0cd | 2015-12-03 10:43:00 +0800 | [diff] [blame] | 1330 | if (ret < 0) |
| 1331 | return AE_ERROR; |
| 1332 | return AE_OK; |
| 1333 | } |
| 1334 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1335 | acpi_status acpi_os_signal(u32 function, void *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1337 | switch (function) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | case ACPI_SIGNAL_FATAL: |
| 1339 | printk(KERN_ERR PREFIX "Fatal opcode executed\n"); |
| 1340 | break; |
| 1341 | case ACPI_SIGNAL_BREAKPOINT: |
| 1342 | /* |
| 1343 | * AML Breakpoint |
| 1344 | * ACPI spec. says to treat it as a NOP unless |
| 1345 | * you are debugging. So if/when we integrate |
| 1346 | * AML debugger into the kernel debugger its |
| 1347 | * hook will go here. But until then it is |
| 1348 | * not useful to print anything on breakpoints. |
| 1349 | */ |
| 1350 | break; |
| 1351 | default: |
| 1352 | break; |
| 1353 | } |
| 1354 | |
| 1355 | return AE_OK; |
| 1356 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1357 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1358 | static int __init acpi_os_name_setup(char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | { |
| 1360 | char *p = acpi_os_name; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1361 | int count = ACPI_MAX_OVERRIDE_LEN - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | |
| 1363 | if (!str || !*str) |
| 1364 | return 0; |
| 1365 | |
Dan Carpenter | 5e2be4e | 2013-10-18 12:01:43 +0300 | [diff] [blame] | 1366 | for (; count-- && *str; str++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | if (isalnum(*str) || *str == ' ' || *str == ':') |
| 1368 | *p++ = *str; |
| 1369 | else if (*str == '\'' || *str == '"') |
| 1370 | continue; |
| 1371 | else |
| 1372 | break; |
| 1373 | } |
| 1374 | *p = 0; |
| 1375 | |
| 1376 | return 1; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | } |
| 1379 | |
| 1380 | __setup("acpi_os_name=", acpi_os_name_setup); |
| 1381 | |
Bob Moore | 22b5afc | 2014-03-24 14:49:00 +0800 | [diff] [blame] | 1382 | /* |
Lv Zheng | 08e1d7c | 2014-03-24 14:49:22 +0800 | [diff] [blame] | 1383 | * Disable the auto-serialization of named objects creation methods. |
Bob Moore | 22b5afc | 2014-03-24 14:49:00 +0800 | [diff] [blame] | 1384 | * |
Lv Zheng | 08e1d7c | 2014-03-24 14:49:22 +0800 | [diff] [blame] | 1385 | * This feature is enabled by default. It marks the AML control methods |
Bob Moore | 22b5afc | 2014-03-24 14:49:00 +0800 | [diff] [blame] | 1386 | * that contain the opcodes to create named objects as "Serialized". |
| 1387 | */ |
Lv Zheng | 08e1d7c | 2014-03-24 14:49:22 +0800 | [diff] [blame] | 1388 | static int __init acpi_no_auto_serialize_setup(char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | { |
Lv Zheng | 08e1d7c | 2014-03-24 14:49:22 +0800 | [diff] [blame] | 1390 | acpi_gbl_auto_serialize_methods = FALSE; |
| 1391 | pr_info("ACPI: auto-serialization disabled\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | |
| 1393 | return 1; |
| 1394 | } |
| 1395 | |
Lv Zheng | 08e1d7c | 2014-03-24 14:49:22 +0800 | [diff] [blame] | 1396 | __setup("acpi_no_auto_serialize", acpi_no_auto_serialize_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1398 | /* Check of resource interference between native drivers and ACPI |
| 1399 | * OperationRegions (SystemIO and System Memory only). |
| 1400 | * IO ports and memory declared in ACPI might be used by the ACPI subsystem |
| 1401 | * in arbitrary AML code and can interfere with legacy drivers. |
| 1402 | * acpi_enforce_resources= can be set to: |
| 1403 | * |
Luca Tettamanti | 7e90560 | 2009-03-30 00:01:27 +0200 | [diff] [blame] | 1404 | * - strict (default) (2) |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1405 | * -> further driver trying to access the resources will not load |
Luca Tettamanti | 7e90560 | 2009-03-30 00:01:27 +0200 | [diff] [blame] | 1406 | * - lax (1) |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1407 | * -> further driver trying to access the resources will load, but you |
| 1408 | * get a system message that something might go wrong... |
| 1409 | * |
| 1410 | * - no (0) |
| 1411 | * -> ACPI Operation Region resources will not be registered |
| 1412 | * |
| 1413 | */ |
| 1414 | #define ENFORCE_RESOURCES_STRICT 2 |
| 1415 | #define ENFORCE_RESOURCES_LAX 1 |
| 1416 | #define ENFORCE_RESOURCES_NO 0 |
| 1417 | |
Luca Tettamanti | 7e90560 | 2009-03-30 00:01:27 +0200 | [diff] [blame] | 1418 | static unsigned int acpi_enforce_resources = ENFORCE_RESOURCES_STRICT; |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1419 | |
| 1420 | static int __init acpi_enforce_resources_setup(char *str) |
| 1421 | { |
| 1422 | if (str == NULL || *str == '\0') |
| 1423 | return 0; |
| 1424 | |
| 1425 | if (!strcmp("strict", str)) |
| 1426 | acpi_enforce_resources = ENFORCE_RESOURCES_STRICT; |
| 1427 | else if (!strcmp("lax", str)) |
| 1428 | acpi_enforce_resources = ENFORCE_RESOURCES_LAX; |
| 1429 | else if (!strcmp("no", str)) |
| 1430 | acpi_enforce_resources = ENFORCE_RESOURCES_NO; |
| 1431 | |
| 1432 | return 1; |
| 1433 | } |
| 1434 | |
| 1435 | __setup("acpi_enforce_resources=", acpi_enforce_resources_setup); |
| 1436 | |
| 1437 | /* Check for resource conflicts between ACPI OperationRegions and native |
| 1438 | * drivers */ |
Jean Delvare | 876fba4 | 2009-11-11 15:22:15 +0100 | [diff] [blame] | 1439 | int acpi_check_resource_conflict(const struct resource *res) |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1440 | { |
Lin Ming | f654c0f | 2012-01-12 13:10:32 +0800 | [diff] [blame] | 1441 | acpi_adr_space_type space_id; |
| 1442 | acpi_size length; |
| 1443 | u8 warn = 0; |
| 1444 | int clash = 0; |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1445 | |
| 1446 | if (acpi_enforce_resources == ENFORCE_RESOURCES_NO) |
| 1447 | return 0; |
| 1448 | if (!(res->flags & IORESOURCE_IO) && !(res->flags & IORESOURCE_MEM)) |
| 1449 | return 0; |
| 1450 | |
Lin Ming | f654c0f | 2012-01-12 13:10:32 +0800 | [diff] [blame] | 1451 | if (res->flags & IORESOURCE_IO) |
| 1452 | space_id = ACPI_ADR_SPACE_SYSTEM_IO; |
| 1453 | else |
| 1454 | space_id = ACPI_ADR_SPACE_SYSTEM_MEMORY; |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1455 | |
Alexandru Gheorghiu | e4f5224 | 2013-03-12 08:53:02 +0000 | [diff] [blame] | 1456 | length = resource_size(res); |
Lin Ming | f654c0f | 2012-01-12 13:10:32 +0800 | [diff] [blame] | 1457 | if (acpi_enforce_resources != ENFORCE_RESOURCES_NO) |
| 1458 | warn = 1; |
| 1459 | clash = acpi_check_address_range(space_id, res->start, length, warn); |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1460 | |
| 1461 | if (clash) { |
| 1462 | if (acpi_enforce_resources != ENFORCE_RESOURCES_NO) { |
Jean Delvare | 14f0334 | 2009-09-08 15:31:46 +0200 | [diff] [blame] | 1463 | if (acpi_enforce_resources == ENFORCE_RESOURCES_LAX) |
| 1464 | printk(KERN_NOTICE "ACPI: This conflict may" |
| 1465 | " cause random problems and system" |
| 1466 | " instability\n"); |
| 1467 | printk(KERN_INFO "ACPI: If an ACPI driver is available" |
| 1468 | " for this device, you should use it instead of" |
| 1469 | " the native driver\n"); |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1470 | } |
| 1471 | if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT) |
| 1472 | return -EBUSY; |
| 1473 | } |
| 1474 | return 0; |
| 1475 | } |
Thomas Renninger | 443dea7 | 2008-02-04 23:31:23 -0800 | [diff] [blame] | 1476 | EXPORT_SYMBOL(acpi_check_resource_conflict); |
Thomas Renninger | df92e69 | 2008-02-04 23:31:22 -0800 | [diff] [blame] | 1477 | |
| 1478 | int acpi_check_region(resource_size_t start, resource_size_t n, |
| 1479 | const char *name) |
| 1480 | { |
| 1481 | struct resource res = { |
| 1482 | .start = start, |
| 1483 | .end = start + n - 1, |
| 1484 | .name = name, |
| 1485 | .flags = IORESOURCE_IO, |
| 1486 | }; |
| 1487 | |
| 1488 | return acpi_check_resource_conflict(&res); |
| 1489 | } |
| 1490 | EXPORT_SYMBOL(acpi_check_region); |
| 1491 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1492 | /* |
Jean Delvare | 70dd6be | 2010-05-27 19:58:37 +0200 | [diff] [blame] | 1493 | * Let drivers know whether the resource checks are effective |
| 1494 | */ |
| 1495 | int acpi_resources_are_enforced(void) |
| 1496 | { |
| 1497 | return acpi_enforce_resources == ENFORCE_RESOURCES_STRICT; |
| 1498 | } |
| 1499 | EXPORT_SYMBOL(acpi_resources_are_enforced); |
| 1500 | |
| 1501 | /* |
Lin Ming | 9f63b88 | 2011-03-23 17:26:34 +0800 | [diff] [blame] | 1502 | * Deallocate the memory for a spinlock. |
| 1503 | */ |
| 1504 | void acpi_os_delete_lock(acpi_spinlock handle) |
| 1505 | { |
| 1506 | ACPI_FREE(handle); |
| 1507 | } |
| 1508 | |
| 1509 | /* |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1510 | * Acquire a spinlock. |
| 1511 | * |
| 1512 | * handle is a pointer to the spinlock_t. |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1513 | */ |
| 1514 | |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 1515 | acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp) |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1516 | { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 1517 | acpi_cpu_flags flags; |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 1518 | spin_lock_irqsave(lockp, flags); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1519 | return flags; |
| 1520 | } |
| 1521 | |
| 1522 | /* |
| 1523 | * Release a spinlock. See above. |
| 1524 | */ |
| 1525 | |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 1526 | void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags) |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1527 | { |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 1528 | spin_unlock_irqrestore(lockp, flags); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1529 | } |
| 1530 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1531 | #ifndef ACPI_USE_LOCAL_CACHE |
| 1532 | |
| 1533 | /******************************************************************************* |
| 1534 | * |
| 1535 | * FUNCTION: acpi_os_create_cache |
| 1536 | * |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 1537 | * PARAMETERS: name - Ascii name for the cache |
| 1538 | * size - Size of each cached object |
| 1539 | * depth - Maximum depth of the cache (in objects) <ignored> |
| 1540 | * cache - Where the new cache object is returned |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1541 | * |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 1542 | * RETURN: status |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1543 | * |
| 1544 | * DESCRIPTION: Create a cache object |
| 1545 | * |
| 1546 | ******************************************************************************/ |
| 1547 | |
| 1548 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1549 | acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache) |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1550 | { |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1551 | *cache = kmem_cache_create(name, size, 0, 0, NULL); |
Adrian Bunk | a6fdbf9 | 2006-12-19 12:56:13 -0800 | [diff] [blame] | 1552 | if (*cache == NULL) |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 1553 | return AE_ERROR; |
| 1554 | else |
| 1555 | return AE_OK; |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1556 | } |
| 1557 | |
| 1558 | /******************************************************************************* |
| 1559 | * |
| 1560 | * FUNCTION: acpi_os_purge_cache |
| 1561 | * |
| 1562 | * PARAMETERS: Cache - Handle to cache object |
| 1563 | * |
| 1564 | * RETURN: Status |
| 1565 | * |
| 1566 | * DESCRIPTION: Free all objects within the requested cache. |
| 1567 | * |
| 1568 | ******************************************************************************/ |
| 1569 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1570 | acpi_status acpi_os_purge_cache(acpi_cache_t * cache) |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1571 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1572 | kmem_cache_shrink(cache); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1573 | return (AE_OK); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1574 | } |
| 1575 | |
| 1576 | /******************************************************************************* |
| 1577 | * |
| 1578 | * FUNCTION: acpi_os_delete_cache |
| 1579 | * |
| 1580 | * PARAMETERS: Cache - Handle to cache object |
| 1581 | * |
| 1582 | * RETURN: Status |
| 1583 | * |
| 1584 | * DESCRIPTION: Free all objects within the requested cache and delete the |
| 1585 | * cache object. |
| 1586 | * |
| 1587 | ******************************************************************************/ |
| 1588 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1589 | acpi_status acpi_os_delete_cache(acpi_cache_t * cache) |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1590 | { |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 1591 | kmem_cache_destroy(cache); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1592 | return (AE_OK); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1593 | } |
| 1594 | |
| 1595 | /******************************************************************************* |
| 1596 | * |
| 1597 | * FUNCTION: acpi_os_release_object |
| 1598 | * |
| 1599 | * PARAMETERS: Cache - Handle to cache object |
| 1600 | * Object - The object to be released |
| 1601 | * |
| 1602 | * RETURN: None |
| 1603 | * |
| 1604 | * DESCRIPTION: Release an object to the specified cache. If cache is full, |
| 1605 | * the object is deleted. |
| 1606 | * |
| 1607 | ******************************************************************************/ |
| 1608 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1609 | acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object) |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1610 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1611 | kmem_cache_free(cache, object); |
| 1612 | return (AE_OK); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1613 | } |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1614 | #endif |
Myron Stowe | d362eda | 2010-10-21 14:24:04 -0600 | [diff] [blame] | 1615 | |
Lv Zheng | a94e88c | 2014-04-04 12:39:11 +0800 | [diff] [blame] | 1616 | static int __init acpi_no_static_ssdt_setup(char *s) |
Lv Zheng | b75dd29 | 2013-06-08 00:58:48 +0000 | [diff] [blame] | 1617 | { |
Lv Zheng | a94e88c | 2014-04-04 12:39:11 +0800 | [diff] [blame] | 1618 | acpi_gbl_disable_ssdt_table_install = TRUE; |
| 1619 | pr_info("ACPI: static SSDT installation disabled\n"); |
Lv Zheng | b75dd29 | 2013-06-08 00:58:48 +0000 | [diff] [blame] | 1620 | |
Lv Zheng | a94e88c | 2014-04-04 12:39:11 +0800 | [diff] [blame] | 1621 | return 0; |
Lv Zheng | b75dd29 | 2013-06-08 00:58:48 +0000 | [diff] [blame] | 1622 | } |
| 1623 | |
Lv Zheng | a94e88c | 2014-04-04 12:39:11 +0800 | [diff] [blame] | 1624 | early_param("acpi_no_static_ssdt", acpi_no_static_ssdt_setup); |
Lv Zheng | b75dd29 | 2013-06-08 00:58:48 +0000 | [diff] [blame] | 1625 | |
Lv Zheng | 4dde507 | 2014-02-11 11:01:52 +0800 | [diff] [blame] | 1626 | static int __init acpi_disable_return_repair(char *s) |
| 1627 | { |
| 1628 | printk(KERN_NOTICE PREFIX |
| 1629 | "ACPI: Predefined validation mechanism disabled\n"); |
| 1630 | acpi_gbl_disable_auto_repair = TRUE; |
| 1631 | |
| 1632 | return 1; |
| 1633 | } |
| 1634 | |
| 1635 | __setup("acpica_no_return_repair", acpi_disable_return_repair); |
| 1636 | |
Myron Stowe | d362eda | 2010-10-21 14:24:04 -0600 | [diff] [blame] | 1637 | acpi_status __init acpi_os_initialize(void) |
| 1638 | { |
| 1639 | acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1a_event_block); |
| 1640 | acpi_os_map_generic_address(&acpi_gbl_FADT.xpm1b_event_block); |
| 1641 | acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe0_block); |
| 1642 | acpi_os_map_generic_address(&acpi_gbl_FADT.xgpe1_block); |
Randy Wright | a4714a8 | 2014-06-04 08:55:59 -0700 | [diff] [blame] | 1643 | if (acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER) { |
| 1644 | /* |
| 1645 | * Use acpi_os_map_generic_address to pre-map the reset |
| 1646 | * register if it's in system memory. |
| 1647 | */ |
| 1648 | int rv; |
| 1649 | |
| 1650 | rv = acpi_os_map_generic_address(&acpi_gbl_FADT.reset_register); |
| 1651 | pr_debug(PREFIX "%s: map reset_reg status %d\n", __func__, rv); |
| 1652 | } |
Lv Zheng | 7901a05 | 2015-08-05 16:23:51 +0800 | [diff] [blame] | 1653 | acpi_os_initialized = true; |
Myron Stowe | d362eda | 2010-10-21 14:24:04 -0600 | [diff] [blame] | 1654 | |
| 1655 | return AE_OK; |
| 1656 | } |
| 1657 | |
Zhang Rui | 32d47ee | 2010-12-08 10:40:36 +0800 | [diff] [blame] | 1658 | acpi_status __init acpi_os_initialize1(void) |
Myron Stowe | d362eda | 2010-10-21 14:24:04 -0600 | [diff] [blame] | 1659 | { |
Tejun Heo | 44d2588 | 2011-02-01 11:42:42 +0100 | [diff] [blame] | 1660 | kacpid_wq = alloc_workqueue("kacpid", 0, 1); |
| 1661 | kacpi_notify_wq = alloc_workqueue("kacpi_notify", 0, 1); |
Rafael J. Wysocki | d783156 | 2013-11-22 21:52:12 +0100 | [diff] [blame] | 1662 | kacpi_hotplug_wq = alloc_ordered_workqueue("kacpi_hotplug", 0); |
Myron Stowe | d362eda | 2010-10-21 14:24:04 -0600 | [diff] [blame] | 1663 | BUG_ON(!kacpid_wq); |
| 1664 | BUG_ON(!kacpi_notify_wq); |
| 1665 | BUG_ON(!kacpi_hotplug_wq); |
Lv Zheng | e5f660e | 2016-05-03 16:49:01 +0800 | [diff] [blame] | 1666 | acpi_osi_init(); |
Myron Stowe | d362eda | 2010-10-21 14:24:04 -0600 | [diff] [blame] | 1667 | return AE_OK; |
| 1668 | } |
| 1669 | |
| 1670 | acpi_status acpi_os_terminate(void) |
| 1671 | { |
| 1672 | if (acpi_irq_handler) { |
Rafael J. Wysocki | 23fe363 | 2011-02-08 23:48:16 +0100 | [diff] [blame] | 1673 | acpi_os_remove_interrupt_handler(acpi_gbl_FADT.sci_interrupt, |
Myron Stowe | d362eda | 2010-10-21 14:24:04 -0600 | [diff] [blame] | 1674 | acpi_irq_handler); |
| 1675 | } |
| 1676 | |
| 1677 | acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe1_block); |
| 1678 | acpi_os_unmap_generic_address(&acpi_gbl_FADT.xgpe0_block); |
| 1679 | acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1b_event_block); |
| 1680 | acpi_os_unmap_generic_address(&acpi_gbl_FADT.xpm1a_event_block); |
Randy Wright | a4714a8 | 2014-06-04 08:55:59 -0700 | [diff] [blame] | 1681 | if (acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER) |
| 1682 | acpi_os_unmap_generic_address(&acpi_gbl_FADT.reset_register); |
Myron Stowe | d362eda | 2010-10-21 14:24:04 -0600 | [diff] [blame] | 1683 | |
| 1684 | destroy_workqueue(kacpid_wq); |
| 1685 | destroy_workqueue(kacpi_notify_wq); |
| 1686 | destroy_workqueue(kacpi_hotplug_wq); |
| 1687 | |
| 1688 | return AE_OK; |
| 1689 | } |
Tang Liang | 09f98a8 | 2011-12-09 10:05:54 +0800 | [diff] [blame] | 1690 | |
| 1691 | acpi_status acpi_os_prepare_sleep(u8 sleep_state, u32 pm1a_control, |
| 1692 | u32 pm1b_control) |
| 1693 | { |
| 1694 | int rc = 0; |
| 1695 | if (__acpi_os_prepare_sleep) |
| 1696 | rc = __acpi_os_prepare_sleep(sleep_state, |
| 1697 | pm1a_control, pm1b_control); |
| 1698 | if (rc < 0) |
| 1699 | return AE_ERROR; |
| 1700 | else if (rc > 0) |
| 1701 | return AE_CTRL_SKIP; |
| 1702 | |
| 1703 | return AE_OK; |
| 1704 | } |
| 1705 | |
| 1706 | void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state, |
| 1707 | u32 pm1a_ctrl, u32 pm1b_ctrl)) |
| 1708 | { |
| 1709 | __acpi_os_prepare_sleep = func; |
| 1710 | } |
Yinghai Lu | 92d8aff | 2013-01-21 13:20:47 -0800 | [diff] [blame] | 1711 | |
Ben Guthro | d6b47b1 | 2013-07-30 08:24:52 -0400 | [diff] [blame] | 1712 | acpi_status acpi_os_prepare_extended_sleep(u8 sleep_state, u32 val_a, |
| 1713 | u32 val_b) |
| 1714 | { |
| 1715 | int rc = 0; |
| 1716 | if (__acpi_os_prepare_extended_sleep) |
| 1717 | rc = __acpi_os_prepare_extended_sleep(sleep_state, |
| 1718 | val_a, val_b); |
| 1719 | if (rc < 0) |
| 1720 | return AE_ERROR; |
| 1721 | else if (rc > 0) |
| 1722 | return AE_CTRL_SKIP; |
| 1723 | |
| 1724 | return AE_OK; |
| 1725 | } |
| 1726 | |
| 1727 | void acpi_os_set_prepare_extended_sleep(int (*func)(u8 sleep_state, |
| 1728 | u32 val_a, u32 val_b)) |
| 1729 | { |
| 1730 | __acpi_os_prepare_extended_sleep = func; |
| 1731 | } |