| 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> | 
 | 7 |  * | 
 | 8 |  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 
 | 9 |  * | 
 | 10 |  *  This program is free software; you can redistribute it and/or modify | 
 | 11 |  *  it under the terms of the GNU General Public License as published by | 
 | 12 |  *  the Free Software Foundation; either version 2 of the License, or | 
 | 13 |  *  (at your option) any later version. | 
 | 14 |  * | 
 | 15 |  *  This program is distributed in the hope that it will be useful, | 
 | 16 |  *  but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 17 |  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 | 18 |  *  GNU General Public License for more details. | 
 | 19 |  * | 
 | 20 |  *  You should have received a copy of the GNU General Public License | 
 | 21 |  *  along with this program; if not, write to the Free Software | 
 | 22 |  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
 | 23 |  * | 
 | 24 |  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 
 | 25 |  * | 
 | 26 |  */ | 
 | 27 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/module.h> | 
 | 29 | #include <linux/kernel.h> | 
 | 30 | #include <linux/slab.h> | 
 | 31 | #include <linux/mm.h> | 
 | 32 | #include <linux/pci.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/interrupt.h> | 
 | 34 | #include <linux/kmod.h> | 
 | 35 | #include <linux/delay.h> | 
| Len Brown | f507654 | 2007-05-30 00:10:38 -0400 | [diff] [blame] | 36 | #include <linux/dmi.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/workqueue.h> | 
 | 38 | #include <linux/nmi.h> | 
| Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 39 | #include <linux/acpi.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <acpi/acpi.h> | 
 | 41 | #include <asm/io.h> | 
 | 42 | #include <acpi/acpi_bus.h> | 
 | 43 | #include <acpi/processor.h> | 
 | 44 | #include <asm/uaccess.h> | 
 | 45 |  | 
 | 46 | #include <linux/efi.h> | 
 | 47 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #define _COMPONENT		ACPI_OS_SERVICES | 
| Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 49 | ACPI_MODULE_NAME("osl"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #define PREFIX		"ACPI: " | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 51 | struct acpi_os_dpc { | 
 | 52 | 	acpi_osd_exec_callback function; | 
 | 53 | 	void *context; | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 54 | 	struct work_struct work; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | }; | 
 | 56 |  | 
 | 57 | #ifdef CONFIG_ACPI_CUSTOM_DSDT | 
 | 58 | #include CONFIG_ACPI_CUSTOM_DSDT_FILE | 
 | 59 | #endif | 
 | 60 |  | 
 | 61 | #ifdef ENABLE_DEBUGGER | 
 | 62 | #include <linux/kdb.h> | 
 | 63 |  | 
 | 64 | /* stuff for debugger support */ | 
 | 65 | int acpi_in_debugger; | 
 | 66 | EXPORT_SYMBOL(acpi_in_debugger); | 
 | 67 |  | 
 | 68 | extern char line_buf[80]; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 69 | #endif				/*ENABLE_DEBUGGER */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 |  | 
 | 71 | static unsigned int acpi_irq_irq; | 
 | 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; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 |  | 
| Len Brown | ae00d81 | 2007-05-29 18:43:33 -0400 | [diff] [blame] | 77 | #define	OSI_STRING_LENGTH_MAX 64	/* arbitrary */ | 
 | 78 | static char osi_additional_string[OSI_STRING_LENGTH_MAX]; | 
 | 79 |  | 
| Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 80 | /* | 
 | 81 |  * "Ode to _OSI(Linux)" | 
 | 82 |  * | 
 | 83 |  * osi_linux -- Control response to BIOS _OSI(Linux) query. | 
 | 84 |  * | 
 | 85 |  * As Linux evolves, the features that it supports change. | 
 | 86 |  * So an OSI string such as "Linux" is not specific enough | 
 | 87 |  * to be useful across multiple versions of Linux.  It | 
 | 88 |  * doesn't identify any particular feature, interface, | 
 | 89 |  * or even any particular version of Linux... | 
 | 90 |  * | 
 | 91 |  * Unfortunately, Linux-2.6.22 and earlier responded "yes" | 
 | 92 |  * to a BIOS _OSI(Linux) query.  When | 
 | 93 |  * a reference mobile BIOS started using it, its use | 
 | 94 |  * started to spread to many vendor platforms. | 
 | 95 |  * As it is not supportable, we need to halt that spread. | 
 | 96 |  * | 
 | 97 |  * Today, most BIOS references to _OSI(Linux) are noise -- | 
 | 98 |  * they have no functional effect and are just dead code | 
 | 99 |  * carried over from the reference BIOS. | 
 | 100 |  * | 
 | 101 |  * The next most common case is that _OSI(Linux) harms Linux, | 
 | 102 |  * usually by causing the BIOS to follow paths that are | 
 | 103 |  * not tested during Windows validation. | 
 | 104 |  * | 
 | 105 |  * Finally, there is a short list of platforms | 
 | 106 |  * where OSI(Linux) benefits Linux. | 
 | 107 |  * | 
 | 108 |  * In Linux-2.6.23, OSI(Linux) is first disabled by default. | 
 | 109 |  * DMI is used to disable the dmesg warning about OSI(Linux) | 
 | 110 |  * on platforms where it is known to have no effect. | 
 | 111 |  * But a dmesg warning remains for systems where | 
 | 112 |  * we do not know if OSI(Linux) is good or bad for the system. | 
 | 113 |  * DMI is also used to enable OSI(Linux) for the machines | 
 | 114 |  * that are known to need it. | 
 | 115 |  * | 
 | 116 |  * BIOS writers should NOT query _OSI(Linux) on future systems. | 
 | 117 |  * It will be ignored by default, and to get Linux to | 
 | 118 |  * not ignore it will require a kernel source update to | 
 | 119 |  * add a DMI entry, or a boot-time "acpi_osi=Linux" invocation. | 
 | 120 |  */ | 
 | 121 | #define OSI_LINUX_ENABLE 0 | 
 | 122 |  | 
 | 123 | struct osi_linux { | 
 | 124 | 	unsigned int	enable:1; | 
 | 125 | 	unsigned int	dmi:1; | 
 | 126 | 	unsigned int	cmdline:1; | 
 | 127 | 	unsigned int	known:1; | 
 | 128 | } osi_linux = { OSI_LINUX_ENABLE, 0, 0, 0}; | 
| Len Brown | f507654 | 2007-05-30 00:10:38 -0400 | [diff] [blame] | 129 |  | 
| Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 130 | static void __init acpi_request_region (struct acpi_generic_address *addr, | 
 | 131 | 	unsigned int length, char *desc) | 
 | 132 | { | 
 | 133 | 	struct resource *res; | 
 | 134 |  | 
 | 135 | 	if (!addr->address || !length) | 
 | 136 | 		return; | 
 | 137 |  | 
| Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 138 | 	if (addr->space_id == ACPI_ADR_SPACE_SYSTEM_IO) | 
| Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 139 | 		res = request_region(addr->address, length, desc); | 
| Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 140 | 	else if (addr->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) | 
| Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 141 | 		res = request_mem_region(addr->address, length, desc); | 
 | 142 | } | 
 | 143 |  | 
 | 144 | static int __init acpi_reserve_resources(void) | 
 | 145 | { | 
| Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 146 | 	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] | 147 | 		"ACPI PM1a_EVT_BLK"); | 
 | 148 |  | 
| Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 149 | 	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] | 150 | 		"ACPI PM1b_EVT_BLK"); | 
 | 151 |  | 
| Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 152 | 	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] | 153 | 		"ACPI PM1a_CNT_BLK"); | 
 | 154 |  | 
| Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 155 | 	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] | 156 | 		"ACPI PM1b_CNT_BLK"); | 
 | 157 |  | 
| Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 158 | 	if (acpi_gbl_FADT.pm_timer_length == 4) | 
 | 159 | 		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] | 160 |  | 
| Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 161 | 	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] | 162 | 		"ACPI PM2_CNT_BLK"); | 
 | 163 |  | 
 | 164 | 	/* Length of GPE blocks must be a non-negative multiple of 2 */ | 
 | 165 |  | 
| Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 166 | 	if (!(acpi_gbl_FADT.gpe0_block_length & 0x1)) | 
 | 167 | 		acpi_request_region(&acpi_gbl_FADT.xgpe0_block, | 
 | 168 | 			       acpi_gbl_FADT.gpe0_block_length, "ACPI GPE0_BLK"); | 
| Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 169 |  | 
| Len Brown | eee3c85 | 2007-02-03 01:38:16 -0500 | [diff] [blame] | 170 | 	if (!(acpi_gbl_FADT.gpe1_block_length & 0x1)) | 
 | 171 | 		acpi_request_region(&acpi_gbl_FADT.xgpe1_block, | 
 | 172 | 			       acpi_gbl_FADT.gpe1_block_length, "ACPI GPE1_BLK"); | 
| Bjorn Helgaas | 9a47cdb | 2007-01-18 16:42:55 -0700 | [diff] [blame] | 173 |  | 
 | 174 | 	return 0; | 
 | 175 | } | 
 | 176 | device_initcall(acpi_reserve_resources); | 
 | 177 |  | 
| Len Brown | dd272b5 | 2007-05-30 00:26:11 -0400 | [diff] [blame] | 178 | acpi_status __init acpi_os_initialize(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | { | 
 | 180 | 	return AE_OK; | 
 | 181 | } | 
 | 182 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 183 | acpi_status acpi_os_initialize1(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | { | 
 | 185 | 	/* | 
 | 186 | 	 * Initialize PCI configuration space access, as we'll need to access | 
 | 187 | 	 * it while walking the namespace (bus 0 and root bridges w/ _BBNs). | 
 | 188 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | 	if (!raw_pci_ops) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 190 | 		printk(KERN_ERR PREFIX | 
 | 191 | 		       "Access to PCI configuration space unavailable\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | 		return AE_NULL_ENTRY; | 
 | 193 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | 	kacpid_wq = create_singlethread_workqueue("kacpid"); | 
| Alexey Starikovskiy | 88db5e1 | 2007-05-09 23:31:03 -0400 | [diff] [blame] | 195 | 	kacpi_notify_wq = create_singlethread_workqueue("kacpi_notify"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | 	BUG_ON(!kacpid_wq); | 
| Alexey Starikovskiy | 88db5e1 | 2007-05-09 23:31:03 -0400 | [diff] [blame] | 197 | 	BUG_ON(!kacpi_notify_wq); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | 	return AE_OK; | 
 | 199 | } | 
 | 200 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 201 | acpi_status acpi_os_terminate(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | { | 
 | 203 | 	if (acpi_irq_handler) { | 
 | 204 | 		acpi_os_remove_interrupt_handler(acpi_irq_irq, | 
 | 205 | 						 acpi_irq_handler); | 
 | 206 | 	} | 
 | 207 |  | 
 | 208 | 	destroy_workqueue(kacpid_wq); | 
| Alexey Starikovskiy | 88db5e1 | 2007-05-09 23:31:03 -0400 | [diff] [blame] | 209 | 	destroy_workqueue(kacpi_notify_wq); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 |  | 
 | 211 | 	return AE_OK; | 
 | 212 | } | 
 | 213 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 214 | void acpi_os_printf(const char *fmt, ...) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | { | 
 | 216 | 	va_list args; | 
 | 217 | 	va_start(args, fmt); | 
 | 218 | 	acpi_os_vprintf(fmt, args); | 
 | 219 | 	va_end(args); | 
 | 220 | } | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 221 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | EXPORT_SYMBOL(acpi_os_printf); | 
 | 223 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 224 | void acpi_os_vprintf(const char *fmt, va_list args) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | { | 
 | 226 | 	static char buffer[512]; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 227 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | 	vsprintf(buffer, fmt, args); | 
 | 229 |  | 
 | 230 | #ifdef ENABLE_DEBUGGER | 
 | 231 | 	if (acpi_in_debugger) { | 
 | 232 | 		kdb_printf("%s", buffer); | 
 | 233 | 	} else { | 
 | 234 | 		printk("%s", buffer); | 
 | 235 | 	} | 
 | 236 | #else | 
 | 237 | 	printk("%s", buffer); | 
 | 238 | #endif | 
 | 239 | } | 
 | 240 |  | 
| Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 241 | acpi_physical_address __init acpi_os_get_root_pointer(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | { | 
 | 243 | 	if (efi_enabled) { | 
| Bjorn Helgaas | b2c99e3 | 2006-03-26 01:37:08 -0800 | [diff] [blame] | 244 | 		if (efi.acpi20 != EFI_INVALID_TABLE_ADDR) | 
| Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 245 | 			return efi.acpi20; | 
| Bjorn Helgaas | b2c99e3 | 2006-03-26 01:37:08 -0800 | [diff] [blame] | 246 | 		else if (efi.acpi != EFI_INVALID_TABLE_ADDR) | 
| Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 247 | 			return efi.acpi; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | 		else { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 249 | 			printk(KERN_ERR PREFIX | 
 | 250 | 			       "System description tables not found\n"); | 
| Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 251 | 			return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | 		} | 
| Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 253 | 	} else | 
 | 254 | 		return acpi_find_rsdp(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | } | 
 | 256 |  | 
| Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 257 | void __iomem *acpi_os_map_memory(acpi_physical_address phys, acpi_size size) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | { | 
| Bjorn Helgaas | 9f4fd61 | 2006-03-26 01:37:10 -0800 | [diff] [blame] | 259 | 	if (phys > ULONG_MAX) { | 
 | 260 | 		printk(KERN_ERR PREFIX "Cannot map memory that high\n"); | 
| Randy Dunlap | 70c0846 | 2007-02-13 16:11:36 -0800 | [diff] [blame] | 261 | 		return NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | 	} | 
| Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 263 | 	if (acpi_gbl_permanent_mmap) | 
 | 264 | 		/* | 
 | 265 | 		* ioremap checks to ensure this is in reserved space | 
 | 266 | 		*/ | 
 | 267 | 		return ioremap((unsigned long)phys, size); | 
 | 268 | 	else | 
 | 269 | 		return __acpi_map_table((unsigned long)phys, size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | } | 
| Kylene Jo Hall | 55a82ab | 2006-01-08 01:03:15 -0800 | [diff] [blame] | 271 | EXPORT_SYMBOL_GPL(acpi_os_map_memory); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 273 | void acpi_os_unmap_memory(void __iomem * virt, acpi_size size) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | { | 
| Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 275 | 	if (acpi_gbl_permanent_mmap) { | 
 | 276 | 		iounmap(virt); | 
 | 277 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | } | 
| Kylene Jo Hall | 55a82ab | 2006-01-08 01:03:15 -0800 | [diff] [blame] | 279 | EXPORT_SYMBOL_GPL(acpi_os_unmap_memory); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 |  | 
 | 281 | #ifdef ACPI_FUTURE_USAGE | 
 | 282 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 283 | acpi_os_get_physical_address(void *virt, acpi_physical_address * phys) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 285 | 	if (!phys || !virt) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | 		return AE_BAD_PARAMETER; | 
 | 287 |  | 
 | 288 | 	*phys = virt_to_phys(virt); | 
 | 289 |  | 
 | 290 | 	return AE_OK; | 
 | 291 | } | 
 | 292 | #endif | 
 | 293 |  | 
 | 294 | #define ACPI_MAX_OVERRIDE_LEN 100 | 
 | 295 |  | 
 | 296 | static char acpi_os_name[ACPI_MAX_OVERRIDE_LEN]; | 
 | 297 |  | 
 | 298 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 299 | acpi_os_predefined_override(const struct acpi_predefined_names *init_val, | 
 | 300 | 			    acpi_string * new_val) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | { | 
 | 302 | 	if (!init_val || !new_val) | 
 | 303 | 		return AE_BAD_PARAMETER; | 
 | 304 |  | 
 | 305 | 	*new_val = NULL; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 306 | 	if (!memcmp(init_val->name, "_OS_", 4) && strlen(acpi_os_name)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | 		printk(KERN_INFO PREFIX "Overriding _OS definition to '%s'\n", | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 308 | 		       acpi_os_name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | 		*new_val = acpi_os_name; | 
 | 310 | 	} | 
 | 311 |  | 
 | 312 | 	return AE_OK; | 
 | 313 | } | 
 | 314 |  | 
 | 315 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 316 | acpi_os_table_override(struct acpi_table_header * existing_table, | 
 | 317 | 		       struct acpi_table_header ** new_table) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | { | 
 | 319 | 	if (!existing_table || !new_table) | 
 | 320 | 		return AE_BAD_PARAMETER; | 
 | 321 |  | 
 | 322 | #ifdef CONFIG_ACPI_CUSTOM_DSDT | 
 | 323 | 	if (strncmp(existing_table->signature, "DSDT", 4) == 0) | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 324 | 		*new_table = (struct acpi_table_header *)AmlCode; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | 	else | 
 | 326 | 		*new_table = NULL; | 
 | 327 | #else | 
 | 328 | 	*new_table = NULL; | 
 | 329 | #endif | 
 | 330 | 	return AE_OK; | 
 | 331 | } | 
 | 332 |  | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 333 | static irqreturn_t acpi_irq(int irq, void *dev_id) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 335 | 	return (*acpi_irq_handler) (acpi_irq_context) ? IRQ_HANDLED : IRQ_NONE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | } | 
 | 337 |  | 
 | 338 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 339 | acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler, | 
 | 340 | 				  void *context) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | { | 
 | 342 | 	unsigned int irq; | 
 | 343 |  | 
 | 344 | 	/* | 
 | 345 | 	 * Ignore the GSI from the core, and use the value in our copy of the | 
 | 346 | 	 * FADT. It may not be the same if an interrupt source override exists | 
 | 347 | 	 * for the SCI. | 
 | 348 | 	 */ | 
| Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 349 | 	gsi = acpi_gbl_FADT.sci_interrupt; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | 	if (acpi_gsi_to_irq(gsi, &irq) < 0) { | 
 | 351 | 		printk(KERN_ERR PREFIX "SCI (ACPI GSI %d) not registered\n", | 
 | 352 | 		       gsi); | 
 | 353 | 		return AE_OK; | 
 | 354 | 	} | 
 | 355 |  | 
 | 356 | 	acpi_irq_handler = handler; | 
 | 357 | 	acpi_irq_context = context; | 
| Thomas Gleixner | dace145 | 2006-07-01 19:29:38 -0700 | [diff] [blame] | 358 | 	if (request_irq(irq, acpi_irq, IRQF_SHARED, "acpi", acpi_irq)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | 		printk(KERN_ERR PREFIX "SCI (IRQ%d) allocation failed\n", irq); | 
 | 360 | 		return AE_NOT_ACQUIRED; | 
 | 361 | 	} | 
 | 362 | 	acpi_irq_irq = irq; | 
 | 363 |  | 
 | 364 | 	return AE_OK; | 
 | 365 | } | 
 | 366 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 367 | acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | { | 
 | 369 | 	if (irq) { | 
 | 370 | 		free_irq(irq, acpi_irq); | 
 | 371 | 		acpi_irq_handler = NULL; | 
 | 372 | 		acpi_irq_irq = 0; | 
 | 373 | 	} | 
 | 374 |  | 
 | 375 | 	return AE_OK; | 
 | 376 | } | 
 | 377 |  | 
 | 378 | /* | 
 | 379 |  * Running in interpreter thread context, safe to sleep | 
 | 380 |  */ | 
 | 381 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 382 | void acpi_os_sleep(acpi_integer ms) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | { | 
| Nishanth Aravamudan | 01a527e | 2005-11-07 01:01:14 -0800 | [diff] [blame] | 384 | 	schedule_timeout_interruptible(msecs_to_jiffies(ms)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | } | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 386 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | EXPORT_SYMBOL(acpi_os_sleep); | 
 | 388 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 389 | void acpi_os_stall(u32 us) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | { | 
 | 391 | 	while (us) { | 
 | 392 | 		u32 delay = 1000; | 
 | 393 |  | 
 | 394 | 		if (delay > us) | 
 | 395 | 			delay = us; | 
 | 396 | 		udelay(delay); | 
 | 397 | 		touch_nmi_watchdog(); | 
 | 398 | 		us -= delay; | 
 | 399 | 	} | 
 | 400 | } | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 401 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | EXPORT_SYMBOL(acpi_os_stall); | 
 | 403 |  | 
 | 404 | /* | 
 | 405 |  * Support ACPI 3.0 AML Timer operand | 
 | 406 |  * Returns 64-bit free-running, monotonically increasing timer | 
 | 407 |  * with 100ns granularity | 
 | 408 |  */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 409 | u64 acpi_os_get_timer(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | { | 
 | 411 | 	static u64 t; | 
 | 412 |  | 
 | 413 | #ifdef	CONFIG_HPET | 
 | 414 | 	/* TBD: use HPET if available */ | 
 | 415 | #endif | 
 | 416 |  | 
 | 417 | #ifdef	CONFIG_X86_PM_TIMER | 
 | 418 | 	/* TBD: default to PM timer if HPET was not available */ | 
 | 419 | #endif | 
 | 420 | 	if (!t) | 
 | 421 | 		printk(KERN_ERR PREFIX "acpi_os_get_timer() TBD\n"); | 
 | 422 |  | 
 | 423 | 	return ++t; | 
 | 424 | } | 
 | 425 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 426 | 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] | 427 | { | 
 | 428 | 	u32 dummy; | 
 | 429 |  | 
 | 430 | 	if (!value) | 
 | 431 | 		value = &dummy; | 
 | 432 |  | 
| Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 433 | 	*value = 0; | 
 | 434 | 	if (width <= 8) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 435 | 		*(u8 *) value = inb(port); | 
| Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 436 | 	} else if (width <= 16) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 437 | 		*(u16 *) value = inw(port); | 
| Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 438 | 	} else if (width <= 32) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 439 | 		*(u32 *) value = inl(port); | 
| Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 440 | 	} else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | 		BUG(); | 
 | 442 | 	} | 
 | 443 |  | 
 | 444 | 	return AE_OK; | 
 | 445 | } | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 446 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | EXPORT_SYMBOL(acpi_os_read_port); | 
 | 448 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 449 | 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] | 450 | { | 
| Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 451 | 	if (width <= 8) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | 		outb(value, port); | 
| Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 453 | 	} else if (width <= 16) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | 		outw(value, port); | 
| Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 455 | 	} else if (width <= 32) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | 		outl(value, port); | 
| Zhao Yakui | 49fbabf | 2007-11-15 17:01:06 +0800 | [diff] [blame] | 457 | 	} else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | 		BUG(); | 
 | 459 | 	} | 
 | 460 |  | 
 | 461 | 	return AE_OK; | 
 | 462 | } | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 463 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | EXPORT_SYMBOL(acpi_os_write_port); | 
 | 465 |  | 
 | 466 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 467 | acpi_os_read_memory(acpi_physical_address phys_addr, u32 * value, u32 width) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 469 | 	u32 dummy; | 
 | 470 | 	void __iomem *virt_addr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 |  | 
| Bjorn Helgaas | 9f4fd61 | 2006-03-26 01:37:10 -0800 | [diff] [blame] | 472 | 	virt_addr = ioremap(phys_addr, width); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | 	if (!value) | 
 | 474 | 		value = &dummy; | 
 | 475 |  | 
 | 476 | 	switch (width) { | 
 | 477 | 	case 8: | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 478 | 		*(u8 *) value = readb(virt_addr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | 		break; | 
 | 480 | 	case 16: | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 481 | 		*(u16 *) value = readw(virt_addr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | 		break; | 
 | 483 | 	case 32: | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 484 | 		*(u32 *) value = readl(virt_addr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | 		break; | 
 | 486 | 	default: | 
 | 487 | 		BUG(); | 
 | 488 | 	} | 
 | 489 |  | 
| Bjorn Helgaas | 9f4fd61 | 2006-03-26 01:37:10 -0800 | [diff] [blame] | 490 | 	iounmap(virt_addr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 |  | 
 | 492 | 	return AE_OK; | 
 | 493 | } | 
 | 494 |  | 
 | 495 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 496 | acpi_os_write_memory(acpi_physical_address phys_addr, u32 value, u32 width) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 498 | 	void __iomem *virt_addr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 |  | 
| Bjorn Helgaas | 9f4fd61 | 2006-03-26 01:37:10 -0800 | [diff] [blame] | 500 | 	virt_addr = ioremap(phys_addr, width); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 |  | 
 | 502 | 	switch (width) { | 
 | 503 | 	case 8: | 
 | 504 | 		writeb(value, virt_addr); | 
 | 505 | 		break; | 
 | 506 | 	case 16: | 
 | 507 | 		writew(value, virt_addr); | 
 | 508 | 		break; | 
 | 509 | 	case 32: | 
 | 510 | 		writel(value, virt_addr); | 
 | 511 | 		break; | 
 | 512 | 	default: | 
 | 513 | 		BUG(); | 
 | 514 | 	} | 
 | 515 |  | 
| Bjorn Helgaas | 9f4fd61 | 2006-03-26 01:37:10 -0800 | [diff] [blame] | 516 | 	iounmap(virt_addr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 |  | 
 | 518 | 	return AE_OK; | 
 | 519 | } | 
 | 520 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 522 | acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg, | 
 | 523 | 			       void *value, u32 width) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | { | 
 | 525 | 	int result, size; | 
 | 526 |  | 
 | 527 | 	if (!value) | 
 | 528 | 		return AE_BAD_PARAMETER; | 
 | 529 |  | 
 | 530 | 	switch (width) { | 
 | 531 | 	case 8: | 
 | 532 | 		size = 1; | 
 | 533 | 		break; | 
 | 534 | 	case 16: | 
 | 535 | 		size = 2; | 
 | 536 | 		break; | 
 | 537 | 	case 32: | 
 | 538 | 		size = 4; | 
 | 539 | 		break; | 
 | 540 | 	default: | 
 | 541 | 		return AE_ERROR; | 
 | 542 | 	} | 
 | 543 |  | 
 | 544 | 	BUG_ON(!raw_pci_ops); | 
 | 545 |  | 
 | 546 | 	result = raw_pci_ops->read(pci_id->segment, pci_id->bus, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 547 | 				   PCI_DEVFN(pci_id->device, pci_id->function), | 
 | 548 | 				   reg, size, value); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 |  | 
 | 550 | 	return (result ? AE_ERROR : AE_OK); | 
 | 551 | } | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 552 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | EXPORT_SYMBOL(acpi_os_read_pci_configuration); | 
 | 554 |  | 
 | 555 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 556 | acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg, | 
 | 557 | 				acpi_integer value, u32 width) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | { | 
 | 559 | 	int result, size; | 
 | 560 |  | 
 | 561 | 	switch (width) { | 
 | 562 | 	case 8: | 
 | 563 | 		size = 1; | 
 | 564 | 		break; | 
 | 565 | 	case 16: | 
 | 566 | 		size = 2; | 
 | 567 | 		break; | 
 | 568 | 	case 32: | 
 | 569 | 		size = 4; | 
 | 570 | 		break; | 
 | 571 | 	default: | 
 | 572 | 		return AE_ERROR; | 
 | 573 | 	} | 
 | 574 |  | 
 | 575 | 	BUG_ON(!raw_pci_ops); | 
 | 576 |  | 
 | 577 | 	result = raw_pci_ops->write(pci_id->segment, pci_id->bus, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 578 | 				    PCI_DEVFN(pci_id->device, pci_id->function), | 
 | 579 | 				    reg, size, value); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 |  | 
 | 581 | 	return (result ? AE_ERROR : AE_OK); | 
 | 582 | } | 
 | 583 |  | 
 | 584 | /* TODO: Change code to take advantage of driver model more */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 585 | static void acpi_os_derive_pci_id_2(acpi_handle rhandle,	/* upper bound  */ | 
 | 586 | 				    acpi_handle chandle,	/* current node */ | 
 | 587 | 				    struct acpi_pci_id **id, | 
 | 588 | 				    int *is_bridge, u8 * bus_number) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 590 | 	acpi_handle handle; | 
 | 591 | 	struct acpi_pci_id *pci_id = *id; | 
 | 592 | 	acpi_status status; | 
 | 593 | 	unsigned long temp; | 
 | 594 | 	acpi_object_type type; | 
 | 595 | 	u8 tu8; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 |  | 
 | 597 | 	acpi_get_parent(chandle, &handle); | 
 | 598 | 	if (handle != rhandle) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 599 | 		acpi_os_derive_pci_id_2(rhandle, handle, &pci_id, is_bridge, | 
 | 600 | 					bus_number); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 |  | 
 | 602 | 		status = acpi_get_type(handle, &type); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 603 | 		if ((ACPI_FAILURE(status)) || (type != ACPI_TYPE_DEVICE)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | 			return; | 
 | 605 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 606 | 		status = | 
 | 607 | 		    acpi_evaluate_integer(handle, METHOD_NAME__ADR, NULL, | 
 | 608 | 					  &temp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | 		if (ACPI_SUCCESS(status)) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 610 | 			pci_id->device = ACPI_HIWORD(ACPI_LODWORD(temp)); | 
 | 611 | 			pci_id->function = ACPI_LOWORD(ACPI_LODWORD(temp)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 |  | 
 | 613 | 			if (*is_bridge) | 
 | 614 | 				pci_id->bus = *bus_number; | 
 | 615 |  | 
 | 616 | 			/* any nicer way to get bus number of bridge ? */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 617 | 			status = | 
 | 618 | 			    acpi_os_read_pci_configuration(pci_id, 0x0e, &tu8, | 
 | 619 | 							   8); | 
 | 620 | 			if (ACPI_SUCCESS(status) | 
 | 621 | 			    && ((tu8 & 0x7f) == 1 || (tu8 & 0x7f) == 2)) { | 
 | 622 | 				status = | 
 | 623 | 				    acpi_os_read_pci_configuration(pci_id, 0x18, | 
 | 624 | 								   &tu8, 8); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | 				if (!ACPI_SUCCESS(status)) { | 
 | 626 | 					/* Certainly broken...  FIX ME */ | 
 | 627 | 					return; | 
 | 628 | 				} | 
 | 629 | 				*is_bridge = 1; | 
 | 630 | 				pci_id->bus = tu8; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 631 | 				status = | 
 | 632 | 				    acpi_os_read_pci_configuration(pci_id, 0x19, | 
 | 633 | 								   &tu8, 8); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | 				if (ACPI_SUCCESS(status)) { | 
 | 635 | 					*bus_number = tu8; | 
 | 636 | 				} | 
 | 637 | 			} else | 
 | 638 | 				*is_bridge = 0; | 
 | 639 | 		} | 
 | 640 | 	} | 
 | 641 | } | 
 | 642 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 643 | void acpi_os_derive_pci_id(acpi_handle rhandle,	/* upper bound  */ | 
 | 644 | 			   acpi_handle chandle,	/* current node */ | 
 | 645 | 			   struct acpi_pci_id **id) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | { | 
 | 647 | 	int is_bridge = 1; | 
 | 648 | 	u8 bus_number = (*id)->bus; | 
 | 649 |  | 
 | 650 | 	acpi_os_derive_pci_id_2(rhandle, chandle, id, &is_bridge, &bus_number); | 
 | 651 | } | 
 | 652 |  | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 653 | static void acpi_os_execute_deferred(struct work_struct *work) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | { | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 655 | 	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] | 656 | 	if (!dpc) { | 
 | 657 | 		printk(KERN_ERR PREFIX "Invalid (NULL) context\n"); | 
 | 658 | 		return; | 
 | 659 | 	} | 
 | 660 |  | 
 | 661 | 	dpc->function(dpc->context); | 
 | 662 | 	kfree(dpc); | 
 | 663 |  | 
 | 664 | 	/* Yield cpu to notify thread */ | 
 | 665 | 	cond_resched(); | 
 | 666 |  | 
 | 667 | 	return; | 
 | 668 | } | 
 | 669 |  | 
 | 670 | static void acpi_os_execute_notify(struct work_struct *work) | 
 | 671 | { | 
 | 672 | 	struct acpi_os_dpc *dpc = container_of(work, struct acpi_os_dpc, work); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | 	if (!dpc) { | 
| Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 675 | 		printk(KERN_ERR PREFIX "Invalid (NULL) context\n"); | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 676 | 		return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | 	} | 
 | 678 |  | 
 | 679 | 	dpc->function(dpc->context); | 
 | 680 |  | 
 | 681 | 	kfree(dpc); | 
 | 682 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 683 | 	return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | } | 
 | 685 |  | 
| Alexey Starikovskiy | b8d3519 | 2006-05-05 03:23:00 -0400 | [diff] [blame] | 686 | /******************************************************************************* | 
 | 687 |  * | 
 | 688 |  * FUNCTION:    acpi_os_execute | 
 | 689 |  * | 
 | 690 |  * PARAMETERS:  Type               - Type of the callback | 
 | 691 |  *              Function           - Function to be executed | 
 | 692 |  *              Context            - Function parameters | 
 | 693 |  * | 
 | 694 |  * RETURN:      Status | 
 | 695 |  * | 
 | 696 |  * DESCRIPTION: Depending on type, either queues function for deferred execution or | 
 | 697 |  *              immediately executes function on a separate thread. | 
 | 698 |  * | 
 | 699 |  ******************************************************************************/ | 
 | 700 |  | 
 | 701 | acpi_status acpi_os_execute(acpi_execute_type type, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 702 | 			    acpi_osd_exec_callback function, void *context) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 704 | 	acpi_status status = AE_OK; | 
 | 705 | 	struct acpi_os_dpc *dpc; | 
| Len Brown | 72945b2 | 2006-07-12 22:46:42 -0400 | [diff] [blame] | 706 |  | 
| Len Brown | 72945b2 | 2006-07-12 22:46:42 -0400 | [diff] [blame] | 707 | 	ACPI_DEBUG_PRINT((ACPI_DB_EXEC, | 
 | 708 | 			  "Scheduling function [%p(%p)] for deferred execution.\n", | 
 | 709 | 			  function, context)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 |  | 
 | 711 | 	if (!function) | 
| Alexey Starikovskiy | 88db5e1 | 2007-05-09 23:31:03 -0400 | [diff] [blame] | 712 | 		return AE_BAD_PARAMETER; | 
| Len Brown | 72945b2 | 2006-07-12 22:46:42 -0400 | [diff] [blame] | 713 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | 	/* | 
 | 715 | 	 * Allocate/initialize DPC structure.  Note that this memory will be | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 716 | 	 * 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] | 717 | 	 * way that allows us to also free its memory inside the callee. | 
 | 718 | 	 * Because we may want to schedule several tasks with different | 
 | 719 | 	 * parameters we can't use the approach some kernel code uses of | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 720 | 	 * having a static work_struct. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | 	 */ | 
| Len Brown | 72945b2 | 2006-07-12 22:46:42 -0400 | [diff] [blame] | 722 |  | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 723 | 	dpc = kmalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | 	if (!dpc) | 
| Linus Torvalds | b976fe1 | 2006-11-17 19:31:09 -0800 | [diff] [blame] | 725 | 		return_ACPI_STATUS(AE_NO_MEMORY); | 
 | 726 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | 	dpc->function = function; | 
 | 728 | 	dpc->context = context; | 
| Linus Torvalds | b976fe1 | 2006-11-17 19:31:09 -0800 | [diff] [blame] | 729 |  | 
| Alexey Starikovskiy | 88db5e1 | 2007-05-09 23:31:03 -0400 | [diff] [blame] | 730 | 	if (type == OSL_NOTIFY_HANDLER) { | 
 | 731 | 		INIT_WORK(&dpc->work, acpi_os_execute_notify); | 
 | 732 | 		if (!queue_work(kacpi_notify_wq, &dpc->work)) { | 
 | 733 | 			status = AE_ERROR; | 
 | 734 | 			kfree(dpc); | 
 | 735 | 		} | 
 | 736 | 	} else { | 
 | 737 | 		INIT_WORK(&dpc->work, acpi_os_execute_deferred); | 
 | 738 | 		if (!queue_work(kacpid_wq, &dpc->work)) { | 
 | 739 | 			ACPI_DEBUG_PRINT((ACPI_DB_ERROR, | 
| Linus Torvalds | b976fe1 | 2006-11-17 19:31:09 -0800 | [diff] [blame] | 740 | 				  "Call to queue_work() failed.\n")); | 
| Alexey Starikovskiy | 88db5e1 | 2007-05-09 23:31:03 -0400 | [diff] [blame] | 741 | 			status = AE_ERROR; | 
 | 742 | 			kfree(dpc); | 
 | 743 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | 	} | 
| Linus Torvalds | b976fe1 | 2006-11-17 19:31:09 -0800 | [diff] [blame] | 745 | 	return_ACPI_STATUS(status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | } | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 747 |  | 
| Alexey Starikovskiy | b8d3519 | 2006-05-05 03:23:00 -0400 | [diff] [blame] | 748 | EXPORT_SYMBOL(acpi_os_execute); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 750 | void acpi_os_wait_events_complete(void *context) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | { | 
 | 752 | 	flush_workqueue(kacpid_wq); | 
 | 753 | } | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 754 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | EXPORT_SYMBOL(acpi_os_wait_events_complete); | 
 | 756 |  | 
 | 757 | /* | 
 | 758 |  * Allocate the memory for a spinlock and initialize it. | 
 | 759 |  */ | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 760 | acpi_status acpi_os_create_lock(acpi_spinlock * handle) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | { | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 762 | 	spin_lock_init(*handle); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 764 | 	return AE_OK; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | } | 
 | 766 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | /* | 
 | 768 |  * Deallocate the memory for a spinlock. | 
 | 769 |  */ | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 770 | void acpi_os_delete_lock(acpi_spinlock handle) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | { | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 772 | 	return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | } | 
 | 774 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 776 | 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] | 777 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 778 | 	struct semaphore *sem = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 |  | 
 | 781 | 	sem = acpi_os_allocate(sizeof(struct semaphore)); | 
 | 782 | 	if (!sem) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 783 | 		return AE_NO_MEMORY; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | 	memset(sem, 0, sizeof(struct semaphore)); | 
 | 785 |  | 
 | 786 | 	sema_init(sem, initial_units); | 
 | 787 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 788 | 	*handle = (acpi_handle *) sem; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 790 | 	ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating semaphore[%p|%d].\n", | 
 | 791 | 			  *handle, initial_units)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 793 | 	return AE_OK; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 796 | EXPORT_SYMBOL(acpi_os_create_semaphore); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 |  | 
 | 798 | /* | 
 | 799 |  * TODO: A better way to delete semaphores?  Linux doesn't have a | 
 | 800 |  * 'delete_semaphore()' function -- may result in an invalid | 
 | 801 |  * pointer dereference for non-synchronized consumers.	Should | 
 | 802 |  * we at least check for blocked threads and signal/cancel them? | 
 | 803 |  */ | 
 | 804 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 805 | acpi_status acpi_os_delete_semaphore(acpi_handle handle) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 807 | 	struct semaphore *sem = (struct semaphore *)handle; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 |  | 
 | 810 | 	if (!sem) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 811 | 		return AE_BAD_PARAMETER; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 813 | 	ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting semaphore[%p].\n", handle)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 |  | 
| Len Brown | 02438d8 | 2006-06-30 03:19:10 -0400 | [diff] [blame] | 815 | 	kfree(sem); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 816 | 	sem = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 818 | 	return AE_OK; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 821 | EXPORT_SYMBOL(acpi_os_delete_semaphore); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 |  | 
 | 823 | /* | 
 | 824 |  * TODO: The kernel doesn't have a 'down_timeout' function -- had to | 
 | 825 |  * improvise.  The process is to sleep for one scheduler quantum | 
 | 826 |  * until the semaphore becomes available.  Downside is that this | 
 | 827 |  * may result in starvation for timeout-based waits when there's | 
 | 828 |  * lots of semaphore activity. | 
 | 829 |  * | 
 | 830 |  * TODO: Support for units > 1? | 
 | 831 |  */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 832 | 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] | 833 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 834 | 	acpi_status status = AE_OK; | 
 | 835 | 	struct semaphore *sem = (struct semaphore *)handle; | 
 | 836 | 	int ret = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 |  | 
 | 839 | 	if (!sem || (units < 1)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 840 | 		return AE_BAD_PARAMETER; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 |  | 
 | 842 | 	if (units > 1) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 843 | 		return AE_SUPPORT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 845 | 	ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Waiting for semaphore[%p|%d|%d]\n", | 
 | 846 | 			  handle, units, timeout)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 |  | 
| Len Brown | d68909f | 2006-08-16 19:16:58 -0400 | [diff] [blame] | 848 | 	/* | 
 | 849 | 	 * This can be called during resume with interrupts off. | 
 | 850 | 	 * Like boot-time, we should be single threaded and will | 
 | 851 | 	 * always get the lock if we try -- timeout or not. | 
 | 852 | 	 * If this doesn't succeed, then we will oops courtesy of | 
 | 853 | 	 * might_sleep() in down(). | 
 | 854 | 	 */ | 
 | 855 | 	if (!down_trylock(sem)) | 
 | 856 | 		return AE_OK; | 
 | 857 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 858 | 	switch (timeout) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | 		/* | 
 | 860 | 		 * No Wait: | 
 | 861 | 		 * -------- | 
 | 862 | 		 * A zero timeout value indicates that we shouldn't wait - just | 
 | 863 | 		 * acquire the semaphore if available otherwise return AE_TIME | 
 | 864 | 		 * (a.k.a. 'would block'). | 
 | 865 | 		 */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 866 | 	case 0: | 
 | 867 | 		if (down_trylock(sem)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | 			status = AE_TIME; | 
 | 869 | 		break; | 
 | 870 |  | 
 | 871 | 		/* | 
 | 872 | 		 * Wait Indefinitely: | 
 | 873 | 		 * ------------------ | 
 | 874 | 		 */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 875 | 	case ACPI_WAIT_FOREVER: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | 		down(sem); | 
 | 877 | 		break; | 
 | 878 |  | 
 | 879 | 		/* | 
 | 880 | 		 * Wait w/ Timeout: | 
 | 881 | 		 * ---------------- | 
 | 882 | 		 */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 883 | 	default: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | 		// TODO: A better timeout algorithm? | 
 | 885 | 		{ | 
 | 886 | 			int i = 0; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 887 | 			static const int quantum_ms = 1000 / HZ; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 |  | 
 | 889 | 			ret = down_trylock(sem); | 
| Yu Luming | dacd9b8 | 2005-12-31 01:45:00 -0500 | [diff] [blame] | 890 | 			for (i = timeout; (i > 0 && ret != 0); i -= quantum_ms) { | 
| Nishanth Aravamudan | 01a527e | 2005-11-07 01:01:14 -0800 | [diff] [blame] | 891 | 				schedule_timeout_interruptible(1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | 				ret = down_trylock(sem); | 
 | 893 | 			} | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 894 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | 			if (ret != 0) | 
 | 896 | 				status = AE_TIME; | 
 | 897 | 		} | 
 | 898 | 		break; | 
 | 899 | 	} | 
 | 900 |  | 
 | 901 | 	if (ACPI_FAILURE(status)) { | 
| Bjorn Helgaas | 9e7e2c0 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 902 | 		ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, | 
| Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 903 | 				  "Failed to acquire semaphore[%p|%d|%d], %s", | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 904 | 				  handle, units, timeout, | 
 | 905 | 				  acpi_format_exception(status))); | 
 | 906 | 	} else { | 
 | 907 | 		ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, | 
| Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 908 | 				  "Acquired semaphore[%p|%d|%d]", handle, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 909 | 				  units, timeout)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | 	} | 
 | 911 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 912 | 	return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 915 | EXPORT_SYMBOL(acpi_os_wait_semaphore); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 |  | 
 | 917 | /* | 
 | 918 |  * TODO: Support for units > 1? | 
 | 919 |  */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 920 | acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 922 | 	struct semaphore *sem = (struct semaphore *)handle; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 |  | 
 | 925 | 	if (!sem || (units < 1)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 926 | 		return AE_BAD_PARAMETER; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 |  | 
 | 928 | 	if (units > 1) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 929 | 		return AE_SUPPORT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 931 | 	ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Signaling semaphore[%p|%d]\n", handle, | 
 | 932 | 			  units)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 |  | 
 | 934 | 	up(sem); | 
 | 935 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 936 | 	return AE_OK; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | } | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 938 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | EXPORT_SYMBOL(acpi_os_signal_semaphore); | 
 | 940 |  | 
 | 941 | #ifdef ACPI_FUTURE_USAGE | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 942 | u32 acpi_os_get_line(char *buffer) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | { | 
 | 944 |  | 
 | 945 | #ifdef ENABLE_DEBUGGER | 
 | 946 | 	if (acpi_in_debugger) { | 
 | 947 | 		u32 chars; | 
 | 948 |  | 
 | 949 | 		kdb_read(buffer, sizeof(line_buf)); | 
 | 950 |  | 
 | 951 | 		/* remove the CR kdb includes */ | 
 | 952 | 		chars = strlen(buffer) - 1; | 
 | 953 | 		buffer[chars] = '\0'; | 
 | 954 | 	} | 
 | 955 | #endif | 
 | 956 |  | 
 | 957 | 	return 0; | 
 | 958 | } | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 959 | #endif				/*  ACPI_FUTURE_USAGE  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 961 | acpi_status acpi_os_signal(u32 function, void *info) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 963 | 	switch (function) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | 	case ACPI_SIGNAL_FATAL: | 
 | 965 | 		printk(KERN_ERR PREFIX "Fatal opcode executed\n"); | 
 | 966 | 		break; | 
 | 967 | 	case ACPI_SIGNAL_BREAKPOINT: | 
 | 968 | 		/* | 
 | 969 | 		 * AML Breakpoint | 
 | 970 | 		 * ACPI spec. says to treat it as a NOP unless | 
 | 971 | 		 * you are debugging.  So if/when we integrate | 
 | 972 | 		 * AML debugger into the kernel debugger its | 
 | 973 | 		 * hook will go here.  But until then it is | 
 | 974 | 		 * not useful to print anything on breakpoints. | 
 | 975 | 		 */ | 
 | 976 | 		break; | 
 | 977 | 	default: | 
 | 978 | 		break; | 
 | 979 | 	} | 
 | 980 |  | 
 | 981 | 	return AE_OK; | 
 | 982 | } | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 983 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | EXPORT_SYMBOL(acpi_os_signal); | 
 | 985 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 986 | static int __init acpi_os_name_setup(char *str) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | { | 
 | 988 | 	char *p = acpi_os_name; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 989 | 	int count = ACPI_MAX_OVERRIDE_LEN - 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 |  | 
 | 991 | 	if (!str || !*str) | 
 | 992 | 		return 0; | 
 | 993 |  | 
 | 994 | 	for (; count-- && str && *str; str++) { | 
 | 995 | 		if (isalnum(*str) || *str == ' ' || *str == ':') | 
 | 996 | 			*p++ = *str; | 
 | 997 | 		else if (*str == '\'' || *str == '"') | 
 | 998 | 			continue; | 
 | 999 | 		else | 
 | 1000 | 			break; | 
 | 1001 | 	} | 
 | 1002 | 	*p = 0; | 
 | 1003 |  | 
 | 1004 | 	return 1; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1005 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | } | 
 | 1007 |  | 
 | 1008 | __setup("acpi_os_name=", acpi_os_name_setup); | 
 | 1009 |  | 
| Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 1010 | static void __init set_osi_linux(unsigned int enable) | 
 | 1011 | { | 
 | 1012 | 	if (osi_linux.enable != enable) { | 
 | 1013 | 		osi_linux.enable = enable; | 
 | 1014 | 		printk(KERN_NOTICE PREFIX "%sed _OSI(Linux)\n", | 
 | 1015 | 			enable ? "Add": "Delet"); | 
 | 1016 | 	} | 
 | 1017 | 	return; | 
 | 1018 | } | 
| Len Brown | f507654 | 2007-05-30 00:10:38 -0400 | [diff] [blame] | 1019 |  | 
| Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 1020 | static void __init acpi_cmdline_osi_linux(unsigned int enable) | 
 | 1021 | { | 
 | 1022 | 	osi_linux.cmdline = 1;	/* cmdline set the default */ | 
 | 1023 | 	set_osi_linux(enable); | 
| Len Brown | f507654 | 2007-05-30 00:10:38 -0400 | [diff] [blame] | 1024 |  | 
| Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 1025 | 	return; | 
 | 1026 | } | 
 | 1027 |  | 
 | 1028 | void __init acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d) | 
 | 1029 | { | 
 | 1030 | 	osi_linux.dmi = 1;	/* DMI knows that this box asks OSI(Linux) */ | 
 | 1031 |  | 
 | 1032 | 	printk(KERN_NOTICE PREFIX "DMI detected: %s\n", d->ident); | 
 | 1033 |  | 
 | 1034 | 	if (enable == -1) | 
 | 1035 | 		return; | 
 | 1036 |  | 
 | 1037 | 	osi_linux.known = 1;	/* DMI knows which OSI(Linux) default needed */ | 
 | 1038 |  | 
 | 1039 | 	set_osi_linux(enable); | 
 | 1040 |  | 
| Len Brown | f507654 | 2007-05-30 00:10:38 -0400 | [diff] [blame] | 1041 | 	return; | 
 | 1042 | } | 
 | 1043 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | /* | 
| Len Brown | ae00d81 | 2007-05-29 18:43:33 -0400 | [diff] [blame] | 1045 |  * Modify the list of "OS Interfaces" reported to BIOS via _OSI | 
 | 1046 |  * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 |  * empty string disables _OSI | 
| Len Brown | ae00d81 | 2007-05-29 18:43:33 -0400 | [diff] [blame] | 1048 |  * string starting with '!' disables that string | 
 | 1049 |  * otherwise string is added to list, augmenting built-in strings | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 |  */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1051 | static int __init acpi_osi_setup(char *str) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | { | 
 | 1053 | 	if (str == NULL || *str == '\0') { | 
 | 1054 | 		printk(KERN_INFO PREFIX "_OSI method disabled\n"); | 
 | 1055 | 		acpi_gbl_create_osi_method = FALSE; | 
| Len Brown | aa2e09d | 2007-07-02 23:57:45 -0400 | [diff] [blame] | 1056 | 	} else if (!strcmp("!Linux", str)) { | 
| Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 1057 | 		acpi_cmdline_osi_linux(0);	/* !enable */ | 
| Len Brown | ae00d81 | 2007-05-29 18:43:33 -0400 | [diff] [blame] | 1058 | 	} else if (*str == '!') { | 
 | 1059 | 		if (acpi_osi_invalidate(++str) == AE_OK) | 
 | 1060 | 			printk(KERN_INFO PREFIX "Deleted _OSI(%s)\n", str); | 
| Len Brown | f507654 | 2007-05-30 00:10:38 -0400 | [diff] [blame] | 1061 | 	} else if (!strcmp("Linux", str)) { | 
| Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 1062 | 		acpi_cmdline_osi_linux(1);	/* enable */ | 
| Len Brown | ae00d81 | 2007-05-29 18:43:33 -0400 | [diff] [blame] | 1063 | 	} else if (*osi_additional_string == '\0') { | 
 | 1064 | 		strncpy(osi_additional_string, str, OSI_STRING_LENGTH_MAX); | 
 | 1065 | 		printk(KERN_INFO PREFIX "Added _OSI(%s)\n", str); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | 	} | 
 | 1067 |  | 
 | 1068 | 	return 1; | 
 | 1069 | } | 
 | 1070 |  | 
 | 1071 | __setup("acpi_osi=", acpi_osi_setup); | 
 | 1072 |  | 
 | 1073 | /* enable serialization to combat AE_ALREADY_EXISTS errors */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1074 | static int __init acpi_serialize_setup(char *str) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | { | 
 | 1076 | 	printk(KERN_INFO PREFIX "serialize enabled\n"); | 
 | 1077 |  | 
 | 1078 | 	acpi_gbl_all_methods_serialized = TRUE; | 
 | 1079 |  | 
 | 1080 | 	return 1; | 
 | 1081 | } | 
 | 1082 |  | 
 | 1083 | __setup("acpi_serialize", acpi_serialize_setup); | 
 | 1084 |  | 
 | 1085 | /* | 
 | 1086 |  * Wake and Run-Time GPES are expected to be separate. | 
 | 1087 |  * We disable wake-GPEs at run-time to prevent spurious | 
 | 1088 |  * interrupts. | 
 | 1089 |  * | 
 | 1090 |  * However, if a system exists that shares Wake and | 
 | 1091 |  * Run-time events on the same GPE this flag is available | 
 | 1092 |  * to tell Linux to keep the wake-time GPEs enabled at run-time. | 
 | 1093 |  */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1094 | static int __init acpi_wake_gpes_always_on_setup(char *str) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | { | 
 | 1096 | 	printk(KERN_INFO PREFIX "wake GPEs not disabled\n"); | 
 | 1097 |  | 
 | 1098 | 	acpi_gbl_leave_wake_gpes_disabled = FALSE; | 
 | 1099 |  | 
 | 1100 | 	return 1; | 
 | 1101 | } | 
 | 1102 |  | 
 | 1103 | __setup("acpi_wake_gpes_always_on", acpi_wake_gpes_always_on_setup); | 
 | 1104 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | /* | 
| Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1106 |  * Acquire a spinlock. | 
 | 1107 |  * | 
 | 1108 |  * handle is a pointer to the spinlock_t. | 
| Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1109 |  */ | 
 | 1110 |  | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 1111 | acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock lockp) | 
| Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1112 | { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 1113 | 	acpi_cpu_flags flags; | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 1114 | 	spin_lock_irqsave(lockp, flags); | 
| Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1115 | 	return flags; | 
 | 1116 | } | 
 | 1117 |  | 
 | 1118 | /* | 
 | 1119 |  * Release a spinlock. See above. | 
 | 1120 |  */ | 
 | 1121 |  | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 1122 | void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags) | 
| Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1123 | { | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 1124 | 	spin_unlock_irqrestore(lockp, flags); | 
| Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1125 | } | 
 | 1126 |  | 
| Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1127 | #ifndef ACPI_USE_LOCAL_CACHE | 
 | 1128 |  | 
 | 1129 | /******************************************************************************* | 
 | 1130 |  * | 
 | 1131 |  * FUNCTION:    acpi_os_create_cache | 
 | 1132 |  * | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 1133 |  * PARAMETERS:  name      - Ascii name for the cache | 
 | 1134 |  *              size      - Size of each cached object | 
 | 1135 |  *              depth     - Maximum depth of the cache (in objects) <ignored> | 
 | 1136 |  *              cache     - Where the new cache object is returned | 
| Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1137 |  * | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 1138 |  * RETURN:      status | 
| Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1139 |  * | 
 | 1140 |  * DESCRIPTION: Create a cache object | 
 | 1141 |  * | 
 | 1142 |  ******************************************************************************/ | 
 | 1143 |  | 
 | 1144 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1145 | 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] | 1146 | { | 
| Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1147 | 	*cache = kmem_cache_create(name, size, 0, 0, NULL); | 
| Adrian Bunk | a6fdbf9 | 2006-12-19 12:56:13 -0800 | [diff] [blame] | 1148 | 	if (*cache == NULL) | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 1149 | 		return AE_ERROR; | 
 | 1150 | 	else | 
 | 1151 | 		return AE_OK; | 
| Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1152 | } | 
 | 1153 |  | 
 | 1154 | /******************************************************************************* | 
 | 1155 |  * | 
 | 1156 |  * FUNCTION:    acpi_os_purge_cache | 
 | 1157 |  * | 
 | 1158 |  * PARAMETERS:  Cache           - Handle to cache object | 
 | 1159 |  * | 
 | 1160 |  * RETURN:      Status | 
 | 1161 |  * | 
 | 1162 |  * DESCRIPTION: Free all objects within the requested cache. | 
 | 1163 |  * | 
 | 1164 |  ******************************************************************************/ | 
 | 1165 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1166 | acpi_status acpi_os_purge_cache(acpi_cache_t * cache) | 
| Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1167 | { | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1168 | 	kmem_cache_shrink(cache); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1169 | 	return (AE_OK); | 
| Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1170 | } | 
 | 1171 |  | 
 | 1172 | /******************************************************************************* | 
 | 1173 |  * | 
 | 1174 |  * FUNCTION:    acpi_os_delete_cache | 
 | 1175 |  * | 
 | 1176 |  * PARAMETERS:  Cache           - Handle to cache object | 
 | 1177 |  * | 
 | 1178 |  * RETURN:      Status | 
 | 1179 |  * | 
 | 1180 |  * DESCRIPTION: Free all objects within the requested cache and delete the | 
 | 1181 |  *              cache object. | 
 | 1182 |  * | 
 | 1183 |  ******************************************************************************/ | 
 | 1184 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1185 | acpi_status acpi_os_delete_cache(acpi_cache_t * cache) | 
| Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1186 | { | 
| Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 1187 | 	kmem_cache_destroy(cache); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1188 | 	return (AE_OK); | 
| Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1189 | } | 
 | 1190 |  | 
 | 1191 | /******************************************************************************* | 
 | 1192 |  * | 
 | 1193 |  * FUNCTION:    acpi_os_release_object | 
 | 1194 |  * | 
 | 1195 |  * PARAMETERS:  Cache       - Handle to cache object | 
 | 1196 |  *              Object      - The object to be released | 
 | 1197 |  * | 
 | 1198 |  * RETURN:      None | 
 | 1199 |  * | 
 | 1200 |  * DESCRIPTION: Release an object to the specified cache.  If cache is full, | 
 | 1201 |  *              the object is deleted. | 
 | 1202 |  * | 
 | 1203 |  ******************************************************************************/ | 
 | 1204 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1205 | acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object) | 
| Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1206 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1207 | 	kmem_cache_free(cache, object); | 
 | 1208 | 	return (AE_OK); | 
| Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1209 | } | 
 | 1210 |  | 
| Len Brown | 5a4e143 | 2008-01-23 20:01:22 -0500 | [diff] [blame] | 1211 | /** | 
 | 1212 |  *	acpi_dmi_dump - dump DMI slots needed for blacklist entry | 
 | 1213 |  * | 
 | 1214 |  *	Returns 0 on success | 
 | 1215 |  */ | 
 | 1216 | int acpi_dmi_dump(void) | 
 | 1217 | { | 
 | 1218 |  | 
 | 1219 | 	if (!dmi_available) | 
 | 1220 | 		return -1; | 
 | 1221 |  | 
 | 1222 | 	printk(KERN_NOTICE PREFIX "DMI System Vendor: %s\n", | 
 | 1223 | 		dmi_get_slot(DMI_SYS_VENDOR)); | 
 | 1224 | 	printk(KERN_NOTICE PREFIX "DMI Product Name: %s\n", | 
 | 1225 | 		dmi_get_slot(DMI_PRODUCT_NAME)); | 
 | 1226 | 	printk(KERN_NOTICE PREFIX "DMI Product Version: %s\n", | 
 | 1227 | 		dmi_get_slot(DMI_PRODUCT_VERSION)); | 
 | 1228 | 	printk(KERN_NOTICE PREFIX "DMI Board Name: %s\n", | 
 | 1229 | 		dmi_get_slot(DMI_BOARD_NAME)); | 
 | 1230 | 	printk(KERN_NOTICE PREFIX "DMI BIOS Vendor: %s\n", | 
 | 1231 | 		dmi_get_slot(DMI_BIOS_VENDOR)); | 
 | 1232 | 	printk(KERN_NOTICE PREFIX "DMI BIOS Date: %s\n", | 
 | 1233 | 		dmi_get_slot(DMI_BIOS_DATE)); | 
 | 1234 |  | 
 | 1235 | 	return 0; | 
 | 1236 | } | 
 | 1237 |  | 
 | 1238 |  | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 1239 | /****************************************************************************** | 
 | 1240 |  * | 
 | 1241 |  * FUNCTION:    acpi_os_validate_interface | 
 | 1242 |  * | 
 | 1243 |  * PARAMETERS:  interface           - Requested interface to be validated | 
 | 1244 |  * | 
 | 1245 |  * RETURN:      AE_OK if interface is supported, AE_SUPPORT otherwise | 
 | 1246 |  * | 
 | 1247 |  * DESCRIPTION: Match an interface string to the interfaces supported by the | 
 | 1248 |  *              host. Strings originate from an AML call to the _OSI method. | 
 | 1249 |  * | 
 | 1250 |  *****************************************************************************/ | 
 | 1251 |  | 
 | 1252 | acpi_status | 
 | 1253 | acpi_os_validate_interface (char *interface) | 
 | 1254 | { | 
| Len Brown | ae00d81 | 2007-05-29 18:43:33 -0400 | [diff] [blame] | 1255 | 	if (!strncmp(osi_additional_string, interface, OSI_STRING_LENGTH_MAX)) | 
 | 1256 | 		return AE_OK; | 
| Len Brown | f507654 | 2007-05-30 00:10:38 -0400 | [diff] [blame] | 1257 | 	if (!strcmp("Linux", interface)) { | 
| Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 1258 |  | 
 | 1259 | 		printk(KERN_NOTICE PREFIX | 
 | 1260 | 			"BIOS _OSI(Linux) query %s%s\n", | 
 | 1261 | 			osi_linux.enable ? "honored" : "ignored", | 
 | 1262 | 			osi_linux.cmdline ? " via cmdline" : | 
 | 1263 | 			osi_linux.dmi ? " via DMI" : ""); | 
 | 1264 |  | 
 | 1265 | 		if (!osi_linux.dmi) { | 
 | 1266 | 			if (acpi_dmi_dump()) | 
 | 1267 | 				printk(KERN_NOTICE PREFIX | 
 | 1268 | 					"[please extract dmidecode output]\n"); | 
| Len Brown | f40cd6f | 2008-01-23 20:04:28 -0500 | [diff] [blame] | 1269 | 			printk(KERN_NOTICE PREFIX | 
| Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 1270 | 				"Please send DMI info above to " | 
 | 1271 | 				"linux-acpi@vger.kernel.org\n"); | 
 | 1272 | 		} | 
 | 1273 | 		if (!osi_linux.known && !osi_linux.cmdline) { | 
 | 1274 | 			printk(KERN_NOTICE PREFIX | 
 | 1275 | 				"If \"acpi_osi=%sLinux\" works better, " | 
 | 1276 | 				"please notify linux-acpi@vger.kernel.org\n", | 
 | 1277 | 				osi_linux.enable ? "!" : ""); | 
 | 1278 | 		} | 
 | 1279 |  | 
 | 1280 | 		if (osi_linux.enable) | 
| Len Brown | f507654 | 2007-05-30 00:10:38 -0400 | [diff] [blame] | 1281 | 			return AE_OK; | 
 | 1282 | 	} | 
| Len Brown | ae00d81 | 2007-05-29 18:43:33 -0400 | [diff] [blame] | 1283 | 	return AE_SUPPORT; | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 1284 | } | 
 | 1285 |  | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 1286 | /****************************************************************************** | 
 | 1287 |  * | 
 | 1288 |  * FUNCTION:    acpi_os_validate_address | 
 | 1289 |  * | 
 | 1290 |  * PARAMETERS:  space_id             - ACPI space ID | 
 | 1291 |  *              address             - Physical address | 
 | 1292 |  *              length              - Address length | 
 | 1293 |  * | 
 | 1294 |  * RETURN:      AE_OK if address/length is valid for the space_id. Otherwise, | 
 | 1295 |  *              should return AE_AML_ILLEGAL_ADDRESS. | 
 | 1296 |  * | 
 | 1297 |  * DESCRIPTION: Validate a system address via the host OS. Used to validate | 
 | 1298 |  *              the addresses accessed by AML operation regions. | 
 | 1299 |  * | 
 | 1300 |  *****************************************************************************/ | 
 | 1301 |  | 
 | 1302 | acpi_status | 
 | 1303 | acpi_os_validate_address ( | 
 | 1304 |     u8                   space_id, | 
 | 1305 |     acpi_physical_address   address, | 
 | 1306 |     acpi_size               length) | 
 | 1307 | { | 
 | 1308 |  | 
 | 1309 |     return AE_OK; | 
 | 1310 | } | 
 | 1311 |  | 
| Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1312 | #endif |