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