]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/acpi/acpica/evrgnini.c
Merge tag 'samsung-soc-4.10-2' of git://git.kernel.org/pub/scm/linux/kernel/git/krzk...
[mirror_ubuntu-artful-kernel.git] / drivers / acpi / acpica / evrgnini.c
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Module Name: evrgnini- ACPI address_space (op_region) init
4 *
5 *****************************************************************************/
6
7/*
c8100dc4 8 * Copyright (C) 2000 - 2016, Intel Corp.
1da177e4
LT
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
1da177e4 44#include <acpi/acpi.h>
e2f7a777
LB
45#include "accommon.h"
46#include "acevents.h"
47#include "acnamesp.h"
8633db6b 48#include "acinterp.h"
1da177e4
LT
49
50#define _COMPONENT ACPI_EVENTS
4be44fcd 51ACPI_MODULE_NAME("evrgnini")
1da177e4 52
b7a69806 53/* Local prototypes */
b7a69806
BM
54static u8 acpi_ev_is_pci_root_bridge(struct acpi_namespace_node *node);
55
1da177e4
LT
56/*******************************************************************************
57 *
58 * FUNCTION: acpi_ev_system_memory_region_setup
59 *
ba494bee
BM
60 * PARAMETERS: handle - Region we are interested in
61 * function - Start or stop
1da177e4
LT
62 * handler_context - Address space handler context
63 * region_context - Region specific context
64 *
65 * RETURN: Status
66 *
44f6c012 67 * DESCRIPTION: Setup a system_memory operation region
1da177e4
LT
68 *
69 ******************************************************************************/
b7a69806 70
1da177e4 71acpi_status
4be44fcd
LB
72acpi_ev_system_memory_region_setup(acpi_handle handle,
73 u32 function,
74 void *handler_context, void **region_context)
1da177e4 75{
4be44fcd
LB
76 union acpi_operand_object *region_desc =
77 (union acpi_operand_object *)handle;
78 struct acpi_mem_space_context *local_region_context;
1da177e4 79
b229cf92 80 ACPI_FUNCTION_TRACE(ev_system_memory_region_setup);
1da177e4
LT
81
82 if (function == ACPI_REGION_DEACTIVATE) {
83 if (*region_context) {
793c2388
BM
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);
1da177e4
LT
96 *region_context = NULL;
97 }
4be44fcd 98 return_ACPI_STATUS(AE_OK);
1da177e4
LT
99 }
100
101 /* Create a new context */
102
4be44fcd 103 local_region_context =
8313524a 104 ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_mem_space_context));
1da177e4 105 if (!(local_region_context)) {
4be44fcd 106 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
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;
4be44fcd 115 return_ACPI_STATUS(AE_OK);
1da177e4
LT
116}
117
1da177e4
LT
118/*******************************************************************************
119 *
120 * FUNCTION: acpi_ev_io_space_region_setup
121 *
ba494bee
BM
122 * PARAMETERS: handle - Region we are interested in
123 * function - Start or stop
1da177e4
LT
124 * handler_context - Address space handler context
125 * region_context - Region specific context
126 *
127 * RETURN: Status
128 *
44f6c012 129 * DESCRIPTION: Setup a IO operation region
1da177e4
LT
130 *
131 ******************************************************************************/
132
133acpi_status
4be44fcd
LB
134acpi_ev_io_space_region_setup(acpi_handle handle,
135 u32 function,
136 void *handler_context, void **region_context)
1da177e4 137{
b229cf92 138 ACPI_FUNCTION_TRACE(ev_io_space_region_setup);
1da177e4
LT
139
140 if (function == ACPI_REGION_DEACTIVATE) {
141 *region_context = NULL;
4be44fcd 142 } else {
1da177e4
LT
143 *region_context = handler_context;
144 }
145
4be44fcd 146 return_ACPI_STATUS(AE_OK);
1da177e4
LT
147}
148
1da177e4
LT
149/*******************************************************************************
150 *
151 * FUNCTION: acpi_ev_pci_config_region_setup
152 *
ba494bee
BM
153 * PARAMETERS: handle - Region we are interested in
154 * function - Start or stop
1da177e4
LT
155 * handler_context - Address space handler context
156 * region_context - Region specific context
157 *
158 * RETURN: Status
159 *
44f6c012 160 * DESCRIPTION: Setup a PCI_Config operation region
1da177e4
LT
161 *
162 * MUTEX: Assumes namespace is not locked
163 *
164 ******************************************************************************/
165
166acpi_status
4be44fcd
LB
167acpi_ev_pci_config_region_setup(acpi_handle handle,
168 u32 function,
169 void *handler_context, void **region_context)
1da177e4 170{
4be44fcd 171 acpi_status status = AE_OK;
5df7e6cb 172 u64 pci_value;
4be44fcd
LB
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;
b7a69806 177 struct acpi_namespace_node *pci_device_node;
4be44fcd
LB
178 union acpi_operand_object *region_obj =
179 (union acpi_operand_object *)handle;
4be44fcd 180
b229cf92 181 ACPI_FUNCTION_TRACE(ev_pci_config_region_setup);
1da177e4
LT
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 */
4be44fcd
LB
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);
1da177e4
LT
193 }
194
195 *region_context = NULL;
196 if (function == ACPI_REGION_DEACTIVATE) {
197 if (pci_id) {
8313524a 198 ACPI_FREE(pci_id);
1da177e4 199 }
4be44fcd 200 return_ACPI_STATUS(status);
1da177e4
LT
201 }
202
c45b5c09 203 parent_node = region_obj->region.node->parent;
1da177e4
LT
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) {
52fc0b02 219
1da177e4
LT
220 /* Start search from the parent object */
221
222 pci_root_node = parent_node;
223 while (pci_root_node != acpi_gbl_root_node) {
b7a69806
BM
224
225 /* Get the _HID/_CID in order to detect a root_bridge */
226
227 if (acpi_ev_is_pci_root_bridge(pci_root_node)) {
228
229 /* Install a handler for this PCI root bridge */
230
f5c1e1c5 231 status = acpi_install_address_space_handler((acpi_handle)pci_root_node, ACPI_ADR_SPACE_PCI_CONFIG, ACPI_DEFAULT_HANDLER, NULL, NULL);
b7a69806
BM
232 if (ACPI_FAILURE(status)) {
233 if (status == AE_SAME_HANDLER) {
234 /*
9f15fc66
BM
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.
b7a69806
BM
238 */
239 status = AE_OK;
240 } else {
241 ACPI_EXCEPTION((AE_INFO, status,
d4913dc6
BM
242 "Could not install PciConfig handler "
243 "for Root Bridge %4.4s",
b7a69806
BM
244 acpi_ut_get_node_name
245 (pci_root_node)));
1da177e4 246 }
1da177e4 247 }
b7a69806 248 break;
1da177e4
LT
249 }
250
c45b5c09 251 pci_root_node = pci_root_node->parent;
1da177e4
LT
252 }
253
254 /* PCI root bridge not found, use namespace root node */
4be44fcd 255 } else {
1da177e4
LT
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) {
4be44fcd 264 return_ACPI_STATUS(AE_OK);
1da177e4
LT
265 }
266
267 /* Region is still not initialized. Create a new context */
268
8313524a 269 pci_id = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_pci_id));
1da177e4 270 if (!pci_id) {
4be44fcd 271 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
272 }
273
274 /*
9f15fc66
BM
275 * For PCI_Config space access, we need the segment, bus, device and
276 * function numbers. Acquire them here.
b7a69806
BM
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.)
1da177e4 280 */
b7a69806
BM
281 pci_device_node = region_obj->region.node;
282 while (pci_device_node && (pci_device_node->type != ACPI_TYPE_DEVICE)) {
c45b5c09 283 pci_device_node = pci_device_node->parent;
b7a69806
BM
284 }
285
286 if (!pci_device_node) {
e6917317 287 ACPI_FREE(pci_id);
b7a69806
BM
288 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
289 }
1da177e4
LT
290
291 /*
95abccb5
BM
292 * Get the PCI device and function numbers from the _ADR object
293 * contained in the parent's scope.
1da177e4 294 */
d4913dc6
BM
295 status = acpi_ut_evaluate_numeric_object(METHOD_NAME__ADR,
296 pci_device_node, &pci_value);
1da177e4
LT
297
298 /*
9f15fc66
BM
299 * The default is zero, and since the allocation above zeroed the data,
300 * just do nothing on failure.
1da177e4 301 */
4be44fcd
LB
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));
1da177e4
LT
305 }
306
307 /* The PCI segment number comes from the _SEG method */
308
d4913dc6
BM
309 status = acpi_ut_evaluate_numeric_object(METHOD_NAME__SEG,
310 pci_root_node, &pci_value);
4be44fcd
LB
311 if (ACPI_SUCCESS(status)) {
312 pci_id->segment = ACPI_LOWORD(pci_value);
1da177e4
LT
313 }
314
315 /* The PCI bus number comes from the _BBN method */
316
d4913dc6
BM
317 status = acpi_ut_evaluate_numeric_object(METHOD_NAME__BBN,
318 pci_root_node, &pci_value);
4be44fcd
LB
319 if (ACPI_SUCCESS(status)) {
320 pci_id->bus = ACPI_LOWORD(pci_value);
1da177e4
LT
321 }
322
95abccb5 323 /* Complete/update the PCI ID for this device */
1da177e4 324
95abccb5
BM
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 }
1da177e4
LT
332
333 *region_context = pci_id;
4be44fcd 334 return_ACPI_STATUS(AE_OK);
1da177e4
LT
335}
336
b7a69806
BM
337/*******************************************************************************
338 *
339 * FUNCTION: acpi_ev_is_pci_root_bridge
340 *
ba494bee 341 * PARAMETERS: node - Device node being examined
b7a69806
BM
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
350static u8 acpi_ev_is_pci_root_bridge(struct acpi_namespace_node *node)
351{
352 acpi_status status;
78e25fef
LZ
353 struct acpi_pnp_device_id *hid;
354 struct acpi_pnp_device_id_list *cid;
67a119f9 355 u32 i;
15b8dd53 356 u8 match;
b7a69806 357
9f15fc66
BM
358 /* Get the _HID and check for a PCI Root Bridge */
359
b7a69806
BM
360 status = acpi_ut_execute_HID(node, &hid);
361 if (ACPI_FAILURE(status)) {
362 return (FALSE);
363 }
364
15b8dd53
BM
365 match = acpi_ut_is_pci_root_bridge(hid->string);
366 ACPI_FREE(hid);
367
368 if (match) {
b7a69806
BM
369 return (TRUE);
370 }
371
9f15fc66
BM
372 /* The _HID did not match. Get the _CID and check for a PCI Root Bridge */
373
b7a69806
BM
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++) {
15b8dd53 382 if (acpi_ut_is_pci_root_bridge(cid->ids[i].string)) {
b7a69806
BM
383 ACPI_FREE(cid);
384 return (TRUE);
385 }
386 }
387
388 ACPI_FREE(cid);
389 return (FALSE);
390}
391
1da177e4
LT
392/*******************************************************************************
393 *
394 * FUNCTION: acpi_ev_pci_bar_region_setup
395 *
ba494bee
BM
396 * PARAMETERS: handle - Region we are interested in
397 * function - Start or stop
1da177e4
LT
398 * handler_context - Address space handler context
399 * region_context - Region specific context
400 *
401 * RETURN: Status
402 *
ba494bee 403 * DESCRIPTION: Setup a pci_BAR operation region
1da177e4
LT
404 *
405 * MUTEX: Assumes namespace is not locked
406 *
407 ******************************************************************************/
408
409acpi_status
4be44fcd
LB
410acpi_ev_pci_bar_region_setup(acpi_handle handle,
411 u32 function,
412 void *handler_context, void **region_context)
1da177e4 413{
b229cf92 414 ACPI_FUNCTION_TRACE(ev_pci_bar_region_setup);
1da177e4 415
4be44fcd 416 return_ACPI_STATUS(AE_OK);
1da177e4
LT
417}
418
1da177e4
LT
419/*******************************************************************************
420 *
421 * FUNCTION: acpi_ev_cmos_region_setup
422 *
ba494bee
BM
423 * PARAMETERS: handle - Region we are interested in
424 * function - Start or stop
1da177e4
LT
425 * handler_context - Address space handler context
426 * region_context - Region specific context
427 *
428 * RETURN: Status
429 *
44f6c012 430 * DESCRIPTION: Setup a CMOS operation region
1da177e4
LT
431 *
432 * MUTEX: Assumes namespace is not locked
433 *
434 ******************************************************************************/
435
436acpi_status
4be44fcd
LB
437acpi_ev_cmos_region_setup(acpi_handle handle,
438 u32 function,
439 void *handler_context, void **region_context)
1da177e4 440{
b229cf92 441 ACPI_FUNCTION_TRACE(ev_cmos_region_setup);
1da177e4 442
4be44fcd 443 return_ACPI_STATUS(AE_OK);
1da177e4
LT
444}
445
1da177e4
LT
446/*******************************************************************************
447 *
448 * FUNCTION: acpi_ev_default_region_setup
449 *
ba494bee
BM
450 * PARAMETERS: handle - Region we are interested in
451 * function - Start or stop
1da177e4
LT
452 * handler_context - Address space handler context
453 * region_context - Region specific context
454 *
455 * RETURN: Status
456 *
44f6c012 457 * DESCRIPTION: Default region initialization
1da177e4
LT
458 *
459 ******************************************************************************/
460
461acpi_status
4be44fcd
LB
462acpi_ev_default_region_setup(acpi_handle handle,
463 u32 function,
464 void *handler_context, void **region_context)
1da177e4 465{
b229cf92 466 ACPI_FUNCTION_TRACE(ev_default_region_setup);
1da177e4
LT
467
468 if (function == ACPI_REGION_DEACTIVATE) {
469 *region_context = NULL;
4be44fcd 470 } else {
1da177e4
LT
471 *region_context = handler_context;
472 }
473
4be44fcd 474 return_ACPI_STATUS(AE_OK);
1da177e4
LT
475}
476
1da177e4
LT
477/*******************************************************************************
478 *
479 * FUNCTION: acpi_ev_initialize_region
480 *
481 * PARAMETERS: region_obj - Region we are initializing
1da177e4
LT
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 *
9f15fc66 491 * This also performs address space specific initialization. For
1da177e4 492 * example, PCI regions must have an _ADR object that contains
9f15fc66 493 * a PCI address in the scope of the definition. This address is
1da177e4
LT
494 * required to perform an access to PCI config space.
495 *
c9e3ba2c
BM
496 * MUTEX: Interpreter should be unlocked, because we may run the _REG
497 * method for this region.
498 *
760235cd
LZ
499 * NOTE: Possible incompliance:
500 * There is a behavior conflict in automatic _REG execution:
501 * 1. When the interpreter is evaluating a method, we can only
502 * automatically run _REG for the following case:
503 * operation_region (OPR1, 0x80, 0x1000010, 0x4)
504 * 2. When the interpreter is loading a table, we can also
505 * automatically run _REG for the following case:
506 * operation_region (OPR1, 0x80, 0x1000010, 0x4)
507 * Though this may not be compliant to the de-facto standard, the
508 * logic is kept in order not to trigger regressions. And keeping
509 * this logic should be taken care by the caller of this function.
510 *
1da177e4
LT
511 ******************************************************************************/
512
760235cd 513acpi_status acpi_ev_initialize_region(union acpi_operand_object *region_obj)
1da177e4 514{
4be44fcd
LB
515 union acpi_operand_object *handler_obj;
516 union acpi_operand_object *obj_desc;
517 acpi_adr_space_type space_id;
518 struct acpi_namespace_node *node;
1da177e4 519
760235cd 520 ACPI_FUNCTION_TRACE(ev_initialize_region);
1da177e4
LT
521
522 if (!region_obj) {
4be44fcd 523 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
524 }
525
526 if (region_obj->common.flags & AOPOBJ_OBJECT_INITIALIZED) {
4be44fcd 527 return_ACPI_STATUS(AE_OK);
1da177e4
LT
528 }
529
849c2571 530 region_obj->common.flags |= AOPOBJ_OBJECT_INITIALIZED;
1da177e4 531
c45b5c09 532 node = region_obj->region.node->parent;
1da177e4
LT
533 space_id = region_obj->region.space_id;
534
1da177e4
LT
535 /*
536 * The following loop depends upon the root Node having no parent
7b738064 537 * ie: acpi_gbl_root_node->Parent being set to NULL
1da177e4
LT
538 */
539 while (node) {
52fc0b02 540
1da177e4
LT
541 /* Check to see if a handler exists */
542
543 handler_obj = NULL;
4be44fcd 544 obj_desc = acpi_ns_get_attached_object(node);
1da177e4 545 if (obj_desc) {
52fc0b02 546
1da177e4
LT
547 /* Can only be a handler if the object exists */
548
549 switch (node->type) {
550 case ACPI_TYPE_DEVICE:
1da177e4 551 case ACPI_TYPE_PROCESSOR:
1da177e4
LT
552 case ACPI_TYPE_THERMAL:
553
aa6abd2b 554 handler_obj = obj_desc->common_notify.handler;
1da177e4
LT
555 break;
556
e31c32cf
LM
557 case ACPI_TYPE_METHOD:
558 /*
559 * If we are executing module level code, the original
560 * Node's object was replaced by this Method object and we
561 * saved the handler in the method object.
562 *
563 * See acpi_ns_exec_module_code
564 */
de56ba95
LZ
565 if (!acpi_gbl_parse_table_as_term_list &&
566 obj_desc->method.
26294842 567 info_flags & ACPI_METHOD_MODULE_LEVEL) {
e31c32cf 568 handler_obj =
26294842 569 obj_desc->method.dispatch.handler;
e31c32cf
LM
570 }
571 break;
572
1da177e4 573 default:
1d1ea1b7 574
1da177e4 575 /* Ignore other objects */
1d1ea1b7 576
1da177e4
LT
577 break;
578 }
579
f31a99ce
LZ
580 handler_obj =
581 acpi_ev_find_region_handler(space_id, handler_obj);
582 if (handler_obj) {
52fc0b02 583
f31a99ce 584 /* Found correct handler */
1da177e4 585
f31a99ce
LZ
586 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
587 "Found handler %p for region %p in obj %p\n",
588 handler_obj, region_obj,
589 obj_desc));
52fc0b02 590
760235cd
LZ
591 (void)acpi_ev_attach_region(handler_obj,
592 region_obj, FALSE);
1da177e4 593
f31a99ce
LZ
594 /*
595 * Tell all users that this region is usable by
596 * running the _REG method
597 */
8633db6b 598 acpi_ex_exit_interpreter();
760235cd
LZ
599 (void)acpi_ev_execute_reg_method(region_obj,
600 ACPI_REG_CONNECT);
8633db6b 601 acpi_ex_enter_interpreter();
f31a99ce 602 return_ACPI_STATUS(AE_OK);
1da177e4
LT
603 }
604 }
605
9f15fc66
BM
606 /* This node does not have the handler we need; Pop up one level */
607
c45b5c09 608 node = node->parent;
1da177e4
LT
609 }
610
760235cd
LZ
611 /*
612 * If we get here, there is no handler for this region. This is not
613 * fatal because many regions get created before a handler is installed
614 * for said region.
615 */
4be44fcd 616 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
b229cf92 617 "No handler for RegionType %s(%X) (RegionObj %p)\n",
4be44fcd
LB
618 acpi_ut_get_region_name(space_id), space_id,
619 region_obj));
1da177e4 620
760235cd 621 return_ACPI_STATUS(AE_OK);
1da177e4 622}