Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Module Name: evrgnini- ACPI address_space (op_region) init |
| 4 | * |
| 5 | *****************************************************************************/ |
| 6 | |
| 7 | /* |
David E. Box | 82a8094 | 2015-02-05 15:20:45 +0800 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2015, Intel Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * All rights reserved. |
| 10 | * |
| 11 | * Redistribution and use in source and binary forms, with or without |
| 12 | * modification, are permitted provided that the following conditions |
| 13 | * are met: |
| 14 | * 1. Redistributions of source code must retain the above copyright |
| 15 | * notice, this list of conditions, and the following disclaimer, |
| 16 | * without modification. |
| 17 | * 2. Redistributions in binary form must reproduce at minimum a disclaimer |
| 18 | * substantially similar to the "NO WARRANTY" disclaimer below |
| 19 | * ("Disclaimer") and any redistribution must be conditioned upon |
| 20 | * including a substantially similar Disclaimer requirement for further |
| 21 | * binary redistribution. |
| 22 | * 3. Neither the names of the above-listed copyright holders nor the names |
| 23 | * of any contributors may be used to endorse or promote products derived |
| 24 | * from this software without specific prior written permission. |
| 25 | * |
| 26 | * Alternatively, this software may be distributed under the terms of the |
| 27 | * GNU General Public License ("GPL") version 2 as published by the Free |
| 28 | * Software Foundation. |
| 29 | * |
| 30 | * NO WARRANTY |
| 31 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 32 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 33 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR |
| 34 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 35 | * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 36 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 37 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 38 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 39 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING |
| 40 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 41 | * POSSIBILITY OF SUCH DAMAGES. |
| 42 | */ |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <acpi/acpi.h> |
Len Brown | e2f7a77 | 2009-01-09 00:30:03 -0500 | [diff] [blame] | 45 | #include "accommon.h" |
| 46 | #include "acevents.h" |
| 47 | #include "acnamesp.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | #define _COMPONENT ACPI_EVENTS |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 50 | ACPI_MODULE_NAME("evrgnini") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 52 | /* Local prototypes */ |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 53 | static u8 acpi_ev_is_pci_root_bridge(struct acpi_namespace_node *node); |
| 54 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | /******************************************************************************* |
| 56 | * |
| 57 | * FUNCTION: acpi_ev_system_memory_region_setup |
| 58 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 59 | * PARAMETERS: handle - Region we are interested in |
| 60 | * function - Start or stop |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | * handler_context - Address space handler context |
| 62 | * region_context - Region specific context |
| 63 | * |
| 64 | * RETURN: Status |
| 65 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 66 | * DESCRIPTION: Setup a system_memory operation region |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | * |
| 68 | ******************************************************************************/ |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 71 | acpi_ev_system_memory_region_setup(acpi_handle handle, |
| 72 | u32 function, |
| 73 | void *handler_context, void **region_context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 75 | union acpi_operand_object *region_desc = |
| 76 | (union acpi_operand_object *)handle; |
| 77 | struct acpi_mem_space_context *local_region_context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 79 | ACPI_FUNCTION_TRACE(ev_system_memory_region_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
| 81 | if (function == ACPI_REGION_DEACTIVATE) { |
| 82 | if (*region_context) { |
Bob Moore | 793c238 | 2006-03-31 00:00:00 -0500 | [diff] [blame] | 83 | local_region_context = |
| 84 | (struct acpi_mem_space_context *)*region_context; |
| 85 | |
| 86 | /* Delete a cached mapping if present */ |
| 87 | |
| 88 | if (local_region_context->mapped_length) { |
| 89 | acpi_os_unmap_memory(local_region_context-> |
| 90 | mapped_logical_address, |
| 91 | local_region_context-> |
| 92 | mapped_length); |
| 93 | } |
| 94 | ACPI_FREE(local_region_context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | *region_context = NULL; |
| 96 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 97 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | /* Create a new context */ |
| 101 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 102 | local_region_context = |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 103 | ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_mem_space_context)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | if (!(local_region_context)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 105 | return_ACPI_STATUS(AE_NO_MEMORY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | /* Save the region length and address for use in the handler */ |
| 109 | |
| 110 | local_region_context->length = region_desc->region.length; |
| 111 | local_region_context->address = region_desc->region.address; |
| 112 | |
| 113 | *region_context = local_region_context; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 114 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | } |
| 116 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | /******************************************************************************* |
| 118 | * |
| 119 | * FUNCTION: acpi_ev_io_space_region_setup |
| 120 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 121 | * PARAMETERS: handle - Region we are interested in |
| 122 | * function - Start or stop |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | * handler_context - Address space handler context |
| 124 | * region_context - Region specific context |
| 125 | * |
| 126 | * RETURN: Status |
| 127 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 128 | * DESCRIPTION: Setup a IO operation region |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | * |
| 130 | ******************************************************************************/ |
| 131 | |
| 132 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 133 | acpi_ev_io_space_region_setup(acpi_handle handle, |
| 134 | u32 function, |
| 135 | void *handler_context, void **region_context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | { |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 137 | ACPI_FUNCTION_TRACE(ev_io_space_region_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
| 139 | if (function == ACPI_REGION_DEACTIVATE) { |
| 140 | *region_context = NULL; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 141 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | *region_context = handler_context; |
| 143 | } |
| 144 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 145 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | } |
| 147 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | /******************************************************************************* |
| 149 | * |
| 150 | * FUNCTION: acpi_ev_pci_config_region_setup |
| 151 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 152 | * PARAMETERS: handle - Region we are interested in |
| 153 | * function - Start or stop |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | * handler_context - Address space handler context |
| 155 | * region_context - Region specific context |
| 156 | * |
| 157 | * RETURN: Status |
| 158 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 159 | * DESCRIPTION: Setup a PCI_Config operation region |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | * |
| 161 | * MUTEX: Assumes namespace is not locked |
| 162 | * |
| 163 | ******************************************************************************/ |
| 164 | |
| 165 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 166 | acpi_ev_pci_config_region_setup(acpi_handle handle, |
| 167 | u32 function, |
| 168 | void *handler_context, void **region_context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 170 | acpi_status status = AE_OK; |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 171 | u64 pci_value; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 172 | struct acpi_pci_id *pci_id = *region_context; |
| 173 | union acpi_operand_object *handler_obj; |
| 174 | struct acpi_namespace_node *parent_node; |
| 175 | struct acpi_namespace_node *pci_root_node; |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 176 | struct acpi_namespace_node *pci_device_node; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 177 | union acpi_operand_object *region_obj = |
| 178 | (union acpi_operand_object *)handle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 180 | ACPI_FUNCTION_TRACE(ev_pci_config_region_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
| 182 | handler_obj = region_obj->region.handler; |
| 183 | if (!handler_obj) { |
| 184 | /* |
| 185 | * No installed handler. This shouldn't happen because the dispatch |
| 186 | * routine checks before we get here, but we check again just in case. |
| 187 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 188 | ACPI_DEBUG_PRINT((ACPI_DB_OPREGION, |
| 189 | "Attempting to init a region %p, with no handler\n", |
| 190 | region_obj)); |
| 191 | return_ACPI_STATUS(AE_NOT_EXIST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | *region_context = NULL; |
| 195 | if (function == ACPI_REGION_DEACTIVATE) { |
| 196 | if (pci_id) { |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 197 | ACPI_FREE(pci_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 199 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
| 201 | |
Alexey Starikovskiy | c45b5c0 | 2010-05-26 11:53:07 +0800 | [diff] [blame] | 202 | parent_node = region_obj->region.node->parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
| 204 | /* |
| 205 | * Get the _SEG and _BBN values from the device upon which the handler |
| 206 | * is installed. |
| 207 | * |
| 208 | * We need to get the _SEG and _BBN objects relative to the PCI BUS device. |
| 209 | * This is the device the handler has been registered to handle. |
| 210 | */ |
| 211 | |
| 212 | /* |
| 213 | * If the address_space.Node is still pointing to the root, we need |
| 214 | * to scan upward for a PCI Root bridge and re-associate the op_region |
| 215 | * handlers with that device. |
| 216 | */ |
| 217 | if (handler_obj->address_space.node == acpi_gbl_root_node) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | /* Start search from the parent object */ |
| 220 | |
| 221 | pci_root_node = parent_node; |
| 222 | while (pci_root_node != acpi_gbl_root_node) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 223 | |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 224 | /* Get the _HID/_CID in order to detect a root_bridge */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 226 | if (acpi_ev_is_pci_root_bridge(pci_root_node)) { |
| 227 | |
| 228 | /* Install a handler for this PCI root bridge */ |
| 229 | |
Lv Zheng | 1f86e8c | 2012-10-31 02:25:45 +0000 | [diff] [blame] | 230 | status = acpi_install_address_space_handler((acpi_handle) pci_root_node, ACPI_ADR_SPACE_PCI_CONFIG, ACPI_DEFAULT_HANDLER, NULL, NULL); |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 231 | if (ACPI_FAILURE(status)) { |
| 232 | if (status == AE_SAME_HANDLER) { |
| 233 | /* |
Bob Moore | 9f15fc6 | 2008-11-12 16:01:56 +0800 | [diff] [blame] | 234 | * It is OK if the handler is already installed on the |
| 235 | * root bridge. Still need to return a context object |
| 236 | * for the new PCI_Config operation region, however. |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 237 | */ |
| 238 | status = AE_OK; |
| 239 | } else { |
| 240 | ACPI_EXCEPTION((AE_INFO, status, |
Bob Moore | d4913dc | 2009-03-06 10:05:18 +0800 | [diff] [blame] | 241 | "Could not install PciConfig handler " |
| 242 | "for Root Bridge %4.4s", |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 243 | acpi_ut_get_node_name |
| 244 | (pci_root_node))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | } |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 247 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | } |
| 249 | |
Alexey Starikovskiy | c45b5c0 | 2010-05-26 11:53:07 +0800 | [diff] [blame] | 250 | pci_root_node = pci_root_node->parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | } |
| 252 | |
| 253 | /* PCI root bridge not found, use namespace root node */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 254 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | pci_root_node = handler_obj->address_space.node; |
| 256 | } |
| 257 | |
| 258 | /* |
| 259 | * If this region is now initialized, we are done. |
| 260 | * (install_address_space_handler could have initialized it) |
| 261 | */ |
| 262 | if (region_obj->region.flags & AOPOBJ_SETUP_COMPLETE) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 263 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | /* Region is still not initialized. Create a new context */ |
| 267 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 268 | pci_id = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_pci_id)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | if (!pci_id) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 270 | return_ACPI_STATUS(AE_NO_MEMORY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | /* |
Bob Moore | 9f15fc6 | 2008-11-12 16:01:56 +0800 | [diff] [blame] | 274 | * For PCI_Config space access, we need the segment, bus, device and |
| 275 | * function numbers. Acquire them here. |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 276 | * |
| 277 | * Find the parent device object. (This allows the operation region to be |
| 278 | * within a subscope under the device, such as a control method.) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | */ |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 280 | pci_device_node = region_obj->region.node; |
| 281 | while (pci_device_node && (pci_device_node->type != ACPI_TYPE_DEVICE)) { |
Alexey Starikovskiy | c45b5c0 | 2010-05-26 11:53:07 +0800 | [diff] [blame] | 282 | pci_device_node = pci_device_node->parent; |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 283 | } |
| 284 | |
| 285 | if (!pci_device_node) { |
Jesper Juhl | e691731 | 2007-07-19 00:48:03 +0200 | [diff] [blame] | 286 | ACPI_FREE(pci_id); |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 287 | return_ACPI_STATUS(AE_AML_OPERAND_TYPE); |
| 288 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
| 290 | /* |
Bob Moore | 95abccb | 2010-09-15 13:22:46 +0800 | [diff] [blame] | 291 | * Get the PCI device and function numbers from the _ADR object |
| 292 | * contained in the parent's scope. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | */ |
Bob Moore | d4913dc | 2009-03-06 10:05:18 +0800 | [diff] [blame] | 294 | status = acpi_ut_evaluate_numeric_object(METHOD_NAME__ADR, |
| 295 | pci_device_node, &pci_value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
| 297 | /* |
Bob Moore | 9f15fc6 | 2008-11-12 16:01:56 +0800 | [diff] [blame] | 298 | * The default is zero, and since the allocation above zeroed the data, |
| 299 | * just do nothing on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 301 | if (ACPI_SUCCESS(status)) { |
| 302 | pci_id->device = ACPI_HIWORD(ACPI_LODWORD(pci_value)); |
| 303 | pci_id->function = ACPI_LOWORD(ACPI_LODWORD(pci_value)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | /* The PCI segment number comes from the _SEG method */ |
| 307 | |
Bob Moore | d4913dc | 2009-03-06 10:05:18 +0800 | [diff] [blame] | 308 | status = acpi_ut_evaluate_numeric_object(METHOD_NAME__SEG, |
| 309 | pci_root_node, &pci_value); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 310 | if (ACPI_SUCCESS(status)) { |
| 311 | pci_id->segment = ACPI_LOWORD(pci_value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | /* The PCI bus number comes from the _BBN method */ |
| 315 | |
Bob Moore | d4913dc | 2009-03-06 10:05:18 +0800 | [diff] [blame] | 316 | status = acpi_ut_evaluate_numeric_object(METHOD_NAME__BBN, |
| 317 | pci_root_node, &pci_value); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 318 | if (ACPI_SUCCESS(status)) { |
| 319 | pci_id->bus = ACPI_LOWORD(pci_value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | } |
| 321 | |
Bob Moore | 95abccb | 2010-09-15 13:22:46 +0800 | [diff] [blame] | 322 | /* Complete/update the PCI ID for this device */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | |
Bob Moore | 95abccb | 2010-09-15 13:22:46 +0800 | [diff] [blame] | 324 | status = |
| 325 | acpi_hw_derive_pci_id(pci_id, pci_root_node, |
| 326 | region_obj->region.node); |
| 327 | if (ACPI_FAILURE(status)) { |
| 328 | ACPI_FREE(pci_id); |
| 329 | return_ACPI_STATUS(status); |
| 330 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | |
| 332 | *region_context = pci_id; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 333 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | } |
| 335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | /******************************************************************************* |
| 337 | * |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 338 | * FUNCTION: acpi_ev_is_pci_root_bridge |
| 339 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 340 | * PARAMETERS: node - Device node being examined |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 341 | * |
| 342 | * RETURN: TRUE if device is a PCI/PCI-Express Root Bridge |
| 343 | * |
| 344 | * DESCRIPTION: Determine if the input device represents a PCI Root Bridge by |
| 345 | * examining the _HID and _CID for the device. |
| 346 | * |
| 347 | ******************************************************************************/ |
| 348 | |
| 349 | static u8 acpi_ev_is_pci_root_bridge(struct acpi_namespace_node *node) |
| 350 | { |
| 351 | acpi_status status; |
Lv Zheng | 78e25fe | 2012-10-31 02:25:24 +0000 | [diff] [blame] | 352 | struct acpi_pnp_device_id *hid; |
| 353 | struct acpi_pnp_device_id_list *cid; |
Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame] | 354 | u32 i; |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 355 | u8 match; |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 356 | |
Bob Moore | 9f15fc6 | 2008-11-12 16:01:56 +0800 | [diff] [blame] | 357 | /* Get the _HID and check for a PCI Root Bridge */ |
| 358 | |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 359 | status = acpi_ut_execute_HID(node, &hid); |
| 360 | if (ACPI_FAILURE(status)) { |
| 361 | return (FALSE); |
| 362 | } |
| 363 | |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 364 | match = acpi_ut_is_pci_root_bridge(hid->string); |
| 365 | ACPI_FREE(hid); |
| 366 | |
| 367 | if (match) { |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 368 | return (TRUE); |
| 369 | } |
| 370 | |
Bob Moore | 9f15fc6 | 2008-11-12 16:01:56 +0800 | [diff] [blame] | 371 | /* The _HID did not match. Get the _CID and check for a PCI Root Bridge */ |
| 372 | |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 373 | status = acpi_ut_execute_CID(node, &cid); |
| 374 | if (ACPI_FAILURE(status)) { |
| 375 | return (FALSE); |
| 376 | } |
| 377 | |
| 378 | /* Check all _CIDs in the returned list */ |
| 379 | |
| 380 | for (i = 0; i < cid->count; i++) { |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 381 | if (acpi_ut_is_pci_root_bridge(cid->ids[i].string)) { |
Bob Moore | b7a6980 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 382 | ACPI_FREE(cid); |
| 383 | return (TRUE); |
| 384 | } |
| 385 | } |
| 386 | |
| 387 | ACPI_FREE(cid); |
| 388 | return (FALSE); |
| 389 | } |
| 390 | |
| 391 | /******************************************************************************* |
| 392 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | * FUNCTION: acpi_ev_pci_bar_region_setup |
| 394 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 395 | * PARAMETERS: handle - Region we are interested in |
| 396 | * function - Start or stop |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | * handler_context - Address space handler context |
| 398 | * region_context - Region specific context |
| 399 | * |
| 400 | * RETURN: Status |
| 401 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 402 | * DESCRIPTION: Setup a pci_BAR operation region |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | * |
| 404 | * MUTEX: Assumes namespace is not locked |
| 405 | * |
| 406 | ******************************************************************************/ |
| 407 | |
| 408 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 409 | acpi_ev_pci_bar_region_setup(acpi_handle handle, |
| 410 | u32 function, |
| 411 | void *handler_context, void **region_context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | { |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 413 | ACPI_FUNCTION_TRACE(ev_pci_bar_region_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 415 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | } |
| 417 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | /******************************************************************************* |
| 419 | * |
| 420 | * FUNCTION: acpi_ev_cmos_region_setup |
| 421 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 422 | * PARAMETERS: handle - Region we are interested in |
| 423 | * function - Start or stop |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | * handler_context - Address space handler context |
| 425 | * region_context - Region specific context |
| 426 | * |
| 427 | * RETURN: Status |
| 428 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 429 | * DESCRIPTION: Setup a CMOS operation region |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | * |
| 431 | * MUTEX: Assumes namespace is not locked |
| 432 | * |
| 433 | ******************************************************************************/ |
| 434 | |
| 435 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 436 | acpi_ev_cmos_region_setup(acpi_handle handle, |
| 437 | u32 function, |
| 438 | void *handler_context, void **region_context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | { |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 440 | ACPI_FUNCTION_TRACE(ev_cmos_region_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 442 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | } |
| 444 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | /******************************************************************************* |
| 446 | * |
| 447 | * FUNCTION: acpi_ev_default_region_setup |
| 448 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 449 | * PARAMETERS: handle - Region we are interested in |
| 450 | * function - Start or stop |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | * handler_context - Address space handler context |
| 452 | * region_context - Region specific context |
| 453 | * |
| 454 | * RETURN: Status |
| 455 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 456 | * DESCRIPTION: Default region initialization |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | * |
| 458 | ******************************************************************************/ |
| 459 | |
| 460 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 461 | acpi_ev_default_region_setup(acpi_handle handle, |
| 462 | u32 function, |
| 463 | void *handler_context, void **region_context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | { |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 465 | ACPI_FUNCTION_TRACE(ev_default_region_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | |
| 467 | if (function == ACPI_REGION_DEACTIVATE) { |
| 468 | *region_context = NULL; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 469 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | *region_context = handler_context; |
| 471 | } |
| 472 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 473 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | } |
| 475 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | /******************************************************************************* |
| 477 | * |
| 478 | * FUNCTION: acpi_ev_initialize_region |
| 479 | * |
| 480 | * PARAMETERS: region_obj - Region we are initializing |
| 481 | * acpi_ns_locked - Is namespace locked? |
| 482 | * |
| 483 | * RETURN: Status |
| 484 | * |
| 485 | * DESCRIPTION: Initializes the region, finds any _REG methods and saves them |
| 486 | * for execution at a later time |
| 487 | * |
| 488 | * Get the appropriate address space handler for a newly |
| 489 | * created region. |
| 490 | * |
Bob Moore | 9f15fc6 | 2008-11-12 16:01:56 +0800 | [diff] [blame] | 491 | * This also performs address space specific initialization. For |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | * example, PCI regions must have an _ADR object that contains |
Bob Moore | 9f15fc6 | 2008-11-12 16:01:56 +0800 | [diff] [blame] | 493 | * a PCI address in the scope of the definition. This address is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | * required to perform an access to PCI config space. |
| 495 | * |
Bob Moore | c9e3ba2 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 496 | * MUTEX: Interpreter should be unlocked, because we may run the _REG |
| 497 | * method for this region. |
| 498 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | ******************************************************************************/ |
| 500 | |
| 501 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 502 | acpi_ev_initialize_region(union acpi_operand_object *region_obj, |
| 503 | u8 acpi_ns_locked) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 505 | union acpi_operand_object *handler_obj; |
| 506 | union acpi_operand_object *obj_desc; |
| 507 | acpi_adr_space_type space_id; |
| 508 | struct acpi_namespace_node *node; |
| 509 | acpi_status status; |
| 510 | struct acpi_namespace_node *method_node; |
| 511 | acpi_name *reg_name_ptr = (acpi_name *) METHOD_NAME__REG; |
| 512 | union acpi_operand_object *region_obj2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 514 | ACPI_FUNCTION_TRACE_U32(ev_initialize_region, acpi_ns_locked); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | |
| 516 | if (!region_obj) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 517 | return_ACPI_STATUS(AE_BAD_PARAMETER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | } |
| 519 | |
| 520 | if (region_obj->common.flags & AOPOBJ_OBJECT_INITIALIZED) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 521 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | } |
| 523 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 524 | region_obj2 = acpi_ns_get_secondary_object(region_obj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | if (!region_obj2) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 526 | return_ACPI_STATUS(AE_NOT_EXIST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | } |
| 528 | |
Alexey Starikovskiy | c45b5c0 | 2010-05-26 11:53:07 +0800 | [diff] [blame] | 529 | node = region_obj->region.node->parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | space_id = region_obj->region.space_id; |
| 531 | |
| 532 | /* Setup defaults */ |
| 533 | |
| 534 | region_obj->region.handler = NULL; |
| 535 | region_obj2->extra.method_REG = NULL; |
| 536 | region_obj->common.flags &= ~(AOPOBJ_SETUP_COMPLETE); |
| 537 | region_obj->common.flags |= AOPOBJ_OBJECT_INITIALIZED; |
| 538 | |
| 539 | /* Find any "_REG" method associated with this region definition */ |
| 540 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 541 | status = |
| 542 | acpi_ns_search_one_scope(*reg_name_ptr, node, ACPI_TYPE_METHOD, |
| 543 | &method_node); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 544 | if (ACPI_SUCCESS(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | /* |
| 546 | * The _REG method is optional and there can be only one per region |
Bob Moore | 9f15fc6 | 2008-11-12 16:01:56 +0800 | [diff] [blame] | 547 | * definition. This will be executed when the handler is attached |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | * or removed |
| 549 | */ |
| 550 | region_obj2->extra.method_REG = method_node; |
| 551 | } |
| 552 | |
| 553 | /* |
| 554 | * The following loop depends upon the root Node having no parent |
| 555 | * ie: acpi_gbl_root_node->parent_entry being set to NULL |
| 556 | */ |
| 557 | while (node) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 558 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | /* Check to see if a handler exists */ |
| 560 | |
| 561 | handler_obj = NULL; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 562 | obj_desc = acpi_ns_get_attached_object(node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | if (obj_desc) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 564 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | /* Can only be a handler if the object exists */ |
| 566 | |
| 567 | switch (node->type) { |
| 568 | case ACPI_TYPE_DEVICE: |
| 569 | |
| 570 | handler_obj = obj_desc->device.handler; |
| 571 | break; |
| 572 | |
| 573 | case ACPI_TYPE_PROCESSOR: |
| 574 | |
| 575 | handler_obj = obj_desc->processor.handler; |
| 576 | break; |
| 577 | |
| 578 | case ACPI_TYPE_THERMAL: |
| 579 | |
| 580 | handler_obj = obj_desc->thermal_zone.handler; |
| 581 | break; |
| 582 | |
Lin Ming | e31c32c | 2009-12-11 15:28:27 +0800 | [diff] [blame] | 583 | case ACPI_TYPE_METHOD: |
| 584 | /* |
| 585 | * If we are executing module level code, the original |
| 586 | * Node's object was replaced by this Method object and we |
| 587 | * saved the handler in the method object. |
| 588 | * |
| 589 | * See acpi_ns_exec_module_code |
| 590 | */ |
| 591 | if (obj_desc->method. |
Lin Ming | 2629484 | 2011-01-12 09:19:43 +0800 | [diff] [blame] | 592 | info_flags & ACPI_METHOD_MODULE_LEVEL) { |
Lin Ming | e31c32c | 2009-12-11 15:28:27 +0800 | [diff] [blame] | 593 | handler_obj = |
Lin Ming | 2629484 | 2011-01-12 09:19:43 +0800 | [diff] [blame] | 594 | obj_desc->method.dispatch.handler; |
Lin Ming | e31c32c | 2009-12-11 15:28:27 +0800 | [diff] [blame] | 595 | } |
| 596 | break; |
| 597 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | default: |
Chao Guan | 1d1ea1b | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 599 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | /* Ignore other objects */ |
Chao Guan | 1d1ea1b | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 601 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | break; |
| 603 | } |
| 604 | |
| 605 | while (handler_obj) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 606 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | /* Is this handler of the correct type? */ |
| 608 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 609 | if (handler_obj->address_space.space_id == |
| 610 | space_id) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 611 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | /* Found correct handler */ |
| 613 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 614 | ACPI_DEBUG_PRINT((ACPI_DB_OPREGION, |
| 615 | "Found handler %p for region %p in obj %p\n", |
| 616 | handler_obj, |
| 617 | region_obj, |
| 618 | obj_desc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 620 | status = |
| 621 | acpi_ev_attach_region(handler_obj, |
| 622 | region_obj, |
| 623 | acpi_ns_locked); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | |
| 625 | /* |
Bob Moore | d4913dc | 2009-03-06 10:05:18 +0800 | [diff] [blame] | 626 | * Tell all users that this region is usable by |
| 627 | * running the _REG method |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | */ |
| 629 | if (acpi_ns_locked) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 630 | status = |
| 631 | acpi_ut_release_mutex |
| 632 | (ACPI_MTX_NAMESPACE); |
| 633 | if (ACPI_FAILURE(status)) { |
| 634 | return_ACPI_STATUS |
| 635 | (status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | } |
| 637 | } |
| 638 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 639 | status = |
| 640 | acpi_ev_execute_reg_method |
Bob Moore | e2066ca | 2011-04-13 13:22:04 +0800 | [diff] [blame] | 641 | (region_obj, ACPI_REG_CONNECT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | |
| 643 | if (acpi_ns_locked) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 644 | status = |
| 645 | acpi_ut_acquire_mutex |
| 646 | (ACPI_MTX_NAMESPACE); |
| 647 | if (ACPI_FAILURE(status)) { |
| 648 | return_ACPI_STATUS |
| 649 | (status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | } |
| 651 | } |
| 652 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 653 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | } |
| 655 | |
| 656 | /* Try next handler in the list */ |
| 657 | |
| 658 | handler_obj = handler_obj->address_space.next; |
| 659 | } |
| 660 | } |
| 661 | |
Bob Moore | 9f15fc6 | 2008-11-12 16:01:56 +0800 | [diff] [blame] | 662 | /* This node does not have the handler we need; Pop up one level */ |
| 663 | |
Alexey Starikovskiy | c45b5c0 | 2010-05-26 11:53:07 +0800 | [diff] [blame] | 664 | node = node->parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | } |
| 666 | |
| 667 | /* If we get here, there is no handler for this region */ |
| 668 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 669 | ACPI_DEBUG_PRINT((ACPI_DB_OPREGION, |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 670 | "No handler for RegionType %s(%X) (RegionObj %p)\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 671 | acpi_ut_get_region_name(space_id), space_id, |
| 672 | region_obj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 674 | return_ACPI_STATUS(AE_NOT_EXIST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | } |