evrgnini.c 19.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/******************************************************************************
 *
 * Module Name: evrgnini- ACPI address_space (op_region) init
 *
 *****************************************************************************/

/*
8
 * Copyright (C) 2000 - 2013, Intel Corp.
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions, and the following disclaimer,
 *    without modification.
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 *    substantially similar to the "NO WARRANTY" disclaimer below
 *    ("Disclaimer") and any redistribution must be conditioned upon
 *    including a substantially similar Disclaimer requirement for further
 *    binary redistribution.
 * 3. Neither the names of the above-listed copyright holders nor the names
 *    of any contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * NO WARRANTY
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGES.
 */

#include <acpi/acpi.h>
L
Len Brown 已提交
45 46 47
#include "accommon.h"
#include "acevents.h"
#include "acnamesp.h"
L
Linus Torvalds 已提交
48 49

#define _COMPONENT          ACPI_EVENTS
L
Len Brown 已提交
50
ACPI_MODULE_NAME("evrgnini")
L
Linus Torvalds 已提交
51

52 53 54
/* Local prototypes */
static u8 acpi_ev_is_pci_root_bridge(struct acpi_namespace_node *node);

L
Linus Torvalds 已提交
55 56 57 58
/*******************************************************************************
 *
 * FUNCTION:    acpi_ev_system_memory_region_setup
 *
59 60
 * PARAMETERS:  handle              - Region we are interested in
 *              function            - Start or stop
L
Linus Torvalds 已提交
61 62 63 64 65
 *              handler_context     - Address space handler context
 *              region_context      - Region specific context
 *
 * RETURN:      Status
 *
R
Robert Moore 已提交
66
 * DESCRIPTION: Setup a system_memory operation region
L
Linus Torvalds 已提交
67 68
 *
 ******************************************************************************/
69

L
Linus Torvalds 已提交
70
acpi_status
L
Len Brown 已提交
71 72 73
acpi_ev_system_memory_region_setup(acpi_handle handle,
				   u32 function,
				   void *handler_context, void **region_context)
L
Linus Torvalds 已提交
74
{
L
Len Brown 已提交
75 76 77
	union acpi_operand_object *region_desc =
	    (union acpi_operand_object *)handle;
	struct acpi_mem_space_context *local_region_context;
L
Linus Torvalds 已提交
78

B
Bob Moore 已提交
79
	ACPI_FUNCTION_TRACE(ev_system_memory_region_setup);
L
Linus Torvalds 已提交
80 81 82

	if (function == ACPI_REGION_DEACTIVATE) {
		if (*region_context) {
B
Bob Moore 已提交
83 84 85 86 87 88 89 90 91 92 93 94
			local_region_context =
			    (struct acpi_mem_space_context *)*region_context;

			/* Delete a cached mapping if present */

			if (local_region_context->mapped_length) {
				acpi_os_unmap_memory(local_region_context->
						     mapped_logical_address,
						     local_region_context->
						     mapped_length);
			}
			ACPI_FREE(local_region_context);
L
Linus Torvalds 已提交
95 96
			*region_context = NULL;
		}
L
Len Brown 已提交
97
		return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
98 99 100 101
	}

	/* Create a new context */

L
Len Brown 已提交
102
	local_region_context =
B
Bob Moore 已提交
103
	    ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_mem_space_context));
L
Linus Torvalds 已提交
104
	if (!(local_region_context)) {
L
Len Brown 已提交
105
		return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
106 107 108 109 110 111 112 113
	}

	/* Save the region length and address for use in the handler */

	local_region_context->length = region_desc->region.length;
	local_region_context->address = region_desc->region.address;

	*region_context = local_region_context;
L
Len Brown 已提交
114
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
115 116 117 118 119 120
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ev_io_space_region_setup
 *
121 122
 * PARAMETERS:  handle              - Region we are interested in
 *              function            - Start or stop
L
Linus Torvalds 已提交
123 124 125 126 127
 *              handler_context     - Address space handler context
 *              region_context      - Region specific context
 *
 * RETURN:      Status
 *
R
Robert Moore 已提交
128
 * DESCRIPTION: Setup a IO operation region
L
Linus Torvalds 已提交
129 130 131 132
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
133 134 135
acpi_ev_io_space_region_setup(acpi_handle handle,
			      u32 function,
			      void *handler_context, void **region_context)
L
Linus Torvalds 已提交
136
{
B
Bob Moore 已提交
137
	ACPI_FUNCTION_TRACE(ev_io_space_region_setup);
L
Linus Torvalds 已提交
138 139 140

	if (function == ACPI_REGION_DEACTIVATE) {
		*region_context = NULL;
L
Len Brown 已提交
141
	} else {
L
Linus Torvalds 已提交
142 143 144
		*region_context = handler_context;
	}

L
Len Brown 已提交
145
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
146 147 148 149 150 151
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ev_pci_config_region_setup
 *
152 153
 * PARAMETERS:  handle              - Region we are interested in
 *              function            - Start or stop
L
Linus Torvalds 已提交
154 155 156 157 158
 *              handler_context     - Address space handler context
 *              region_context      - Region specific context
 *
 * RETURN:      Status
 *
R
Robert Moore 已提交
159
 * DESCRIPTION: Setup a PCI_Config operation region
L
Linus Torvalds 已提交
160 161 162 163 164 165
 *
 * MUTEX:       Assumes namespace is not locked
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
166 167 168
acpi_ev_pci_config_region_setup(acpi_handle handle,
				u32 function,
				void *handler_context, void **region_context)
L
Linus Torvalds 已提交
169
{
L
Len Brown 已提交
170
	acpi_status status = AE_OK;
171
	u64 pci_value;
L
Len Brown 已提交
172 173 174 175
	struct acpi_pci_id *pci_id = *region_context;
	union acpi_operand_object *handler_obj;
	struct acpi_namespace_node *parent_node;
	struct acpi_namespace_node *pci_root_node;
176
	struct acpi_namespace_node *pci_device_node;
L
Len Brown 已提交
177 178 179
	union acpi_operand_object *region_obj =
	    (union acpi_operand_object *)handle;

B
Bob Moore 已提交
180
	ACPI_FUNCTION_TRACE(ev_pci_config_region_setup);
L
Linus Torvalds 已提交
181 182 183 184 185 186 187

	handler_obj = region_obj->region.handler;
	if (!handler_obj) {
		/*
		 * No installed handler. This shouldn't happen because the dispatch
		 * routine checks before we get here, but we check again just in case.
		 */
L
Len Brown 已提交
188 189 190 191
		ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
				  "Attempting to init a region %p, with no handler\n",
				  region_obj));
		return_ACPI_STATUS(AE_NOT_EXIST);
L
Linus Torvalds 已提交
192 193 194 195 196
	}

	*region_context = NULL;
	if (function == ACPI_REGION_DEACTIVATE) {
		if (pci_id) {
B
Bob Moore 已提交
197
			ACPI_FREE(pci_id);
L
Linus Torvalds 已提交
198
		}
L
Len Brown 已提交
199
		return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
200 201
	}

202
	parent_node = region_obj->region.node->parent;
L
Linus Torvalds 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217

	/*
	 * Get the _SEG and _BBN values from the device upon which the handler
	 * is installed.
	 *
	 * We need to get the _SEG and _BBN objects relative to the PCI BUS device.
	 * This is the device the handler has been registered to handle.
	 */

	/*
	 * If the address_space.Node is still pointing to the root, we need
	 * to scan upward for a PCI Root bridge and re-associate the op_region
	 * handlers with that device.
	 */
	if (handler_obj->address_space.node == acpi_gbl_root_node) {
B
Bob Moore 已提交
218

L
Linus Torvalds 已提交
219 220 221 222
		/* Start search from the parent object */

		pci_root_node = parent_node;
		while (pci_root_node != acpi_gbl_root_node) {
223 224 225 226 227 228 229

			/* Get the _HID/_CID in order to detect a root_bridge */

			if (acpi_ev_is_pci_root_bridge(pci_root_node)) {

				/* Install a handler for this PCI root bridge */

L
Lv Zheng 已提交
230
				status = acpi_install_address_space_handler((acpi_handle) pci_root_node, ACPI_ADR_SPACE_PCI_CONFIG, ACPI_DEFAULT_HANDLER, NULL, NULL);
231 232 233
				if (ACPI_FAILURE(status)) {
					if (status == AE_SAME_HANDLER) {
						/*
234 235 236
						 * It is OK if the handler is already installed on the
						 * root bridge. Still need to return a context object
						 * for the new PCI_Config operation region, however.
237 238 239 240
						 */
						status = AE_OK;
					} else {
						ACPI_EXCEPTION((AE_INFO, status,
241 242
								"Could not install PciConfig handler "
								"for Root Bridge %4.4s",
243 244
								acpi_ut_get_node_name
								(pci_root_node)));
L
Linus Torvalds 已提交
245 246
					}
				}
247
				break;
L
Linus Torvalds 已提交
248 249
			}

250
			pci_root_node = pci_root_node->parent;
L
Linus Torvalds 已提交
251 252 253
		}

		/* PCI root bridge not found, use namespace root node */
L
Len Brown 已提交
254
	} else {
L
Linus Torvalds 已提交
255 256 257 258 259 260 261 262
		pci_root_node = handler_obj->address_space.node;
	}

	/*
	 * If this region is now initialized, we are done.
	 * (install_address_space_handler could have initialized it)
	 */
	if (region_obj->region.flags & AOPOBJ_SETUP_COMPLETE) {
L
Len Brown 已提交
263
		return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
264 265 266 267
	}

	/* Region is still not initialized. Create a new context */

B
Bob Moore 已提交
268
	pci_id = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_pci_id));
L
Linus Torvalds 已提交
269
	if (!pci_id) {
L
Len Brown 已提交
270
		return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
271 272 273
	}

	/*
274 275
	 * For PCI_Config space access, we need the segment, bus, device and
	 * function numbers. Acquire them here.
276 277 278
	 *
	 * Find the parent device object. (This allows the operation region to be
	 * within a subscope under the device, such as a control method.)
L
Linus Torvalds 已提交
279
	 */
280 281
	pci_device_node = region_obj->region.node;
	while (pci_device_node && (pci_device_node->type != ACPI_TYPE_DEVICE)) {
282
		pci_device_node = pci_device_node->parent;
283 284 285
	}

	if (!pci_device_node) {
286
		ACPI_FREE(pci_id);
287 288
		return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
	}
L
Linus Torvalds 已提交
289 290

	/*
291 292
	 * Get the PCI device and function numbers from the _ADR object
	 * contained in the parent's scope.
L
Linus Torvalds 已提交
293
	 */
294 295
	status = acpi_ut_evaluate_numeric_object(METHOD_NAME__ADR,
						 pci_device_node, &pci_value);
L
Linus Torvalds 已提交
296 297

	/*
298 299
	 * The default is zero, and since the allocation above zeroed the data,
	 * just do nothing on failure.
L
Linus Torvalds 已提交
300
	 */
L
Len Brown 已提交
301 302 303
	if (ACPI_SUCCESS(status)) {
		pci_id->device = ACPI_HIWORD(ACPI_LODWORD(pci_value));
		pci_id->function = ACPI_LOWORD(ACPI_LODWORD(pci_value));
L
Linus Torvalds 已提交
304 305 306 307
	}

	/* The PCI segment number comes from the _SEG method */

308 309
	status = acpi_ut_evaluate_numeric_object(METHOD_NAME__SEG,
						 pci_root_node, &pci_value);
L
Len Brown 已提交
310 311
	if (ACPI_SUCCESS(status)) {
		pci_id->segment = ACPI_LOWORD(pci_value);
L
Linus Torvalds 已提交
312 313 314 315
	}

	/* The PCI bus number comes from the _BBN method */

316 317
	status = acpi_ut_evaluate_numeric_object(METHOD_NAME__BBN,
						 pci_root_node, &pci_value);
L
Len Brown 已提交
318 319
	if (ACPI_SUCCESS(status)) {
		pci_id->bus = ACPI_LOWORD(pci_value);
L
Linus Torvalds 已提交
320 321
	}

322
	/* Complete/update the PCI ID for this device */
L
Linus Torvalds 已提交
323

324 325 326 327 328 329 330
	status =
	    acpi_hw_derive_pci_id(pci_id, pci_root_node,
				  region_obj->region.node);
	if (ACPI_FAILURE(status)) {
		ACPI_FREE(pci_id);
		return_ACPI_STATUS(status);
	}
L
Linus Torvalds 已提交
331 332

	*region_context = pci_id;
L
Len Brown 已提交
333
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
334 335
}

336 337 338 339
/*******************************************************************************
 *
 * FUNCTION:    acpi_ev_is_pci_root_bridge
 *
340
 * PARAMETERS:  node            - Device node being examined
341 342 343 344 345 346 347 348 349 350 351
 *
 * RETURN:      TRUE if device is a PCI/PCI-Express Root Bridge
 *
 * DESCRIPTION: Determine if the input device represents a PCI Root Bridge by
 *              examining the _HID and _CID for the device.
 *
 ******************************************************************************/

static u8 acpi_ev_is_pci_root_bridge(struct acpi_namespace_node *node)
{
	acpi_status status;
352 353
	struct acpi_pnp_device_id *hid;
	struct acpi_pnp_device_id_list *cid;
354
	u32 i;
355
	u8 match;
356

357 358
	/* Get the _HID and check for a PCI Root Bridge */

359 360 361 362 363
	status = acpi_ut_execute_HID(node, &hid);
	if (ACPI_FAILURE(status)) {
		return (FALSE);
	}

364 365 366 367
	match = acpi_ut_is_pci_root_bridge(hid->string);
	ACPI_FREE(hid);

	if (match) {
368 369 370
		return (TRUE);
	}

371 372
	/* The _HID did not match. Get the _CID and check for a PCI Root Bridge */

373 374 375 376 377 378 379 380
	status = acpi_ut_execute_CID(node, &cid);
	if (ACPI_FAILURE(status)) {
		return (FALSE);
	}

	/* Check all _CIDs in the returned list */

	for (i = 0; i < cid->count; i++) {
381
		if (acpi_ut_is_pci_root_bridge(cid->ids[i].string)) {
382 383 384 385 386 387 388 389 390
			ACPI_FREE(cid);
			return (TRUE);
		}
	}

	ACPI_FREE(cid);
	return (FALSE);
}

L
Linus Torvalds 已提交
391 392 393 394
/*******************************************************************************
 *
 * FUNCTION:    acpi_ev_pci_bar_region_setup
 *
395 396
 * PARAMETERS:  handle              - Region we are interested in
 *              function            - Start or stop
L
Linus Torvalds 已提交
397 398 399 400 401
 *              handler_context     - Address space handler context
 *              region_context      - Region specific context
 *
 * RETURN:      Status
 *
402
 * DESCRIPTION: Setup a pci_BAR operation region
L
Linus Torvalds 已提交
403 404 405 406 407 408
 *
 * MUTEX:       Assumes namespace is not locked
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
409 410 411
acpi_ev_pci_bar_region_setup(acpi_handle handle,
			     u32 function,
			     void *handler_context, void **region_context)
L
Linus Torvalds 已提交
412
{
B
Bob Moore 已提交
413
	ACPI_FUNCTION_TRACE(ev_pci_bar_region_setup);
L
Linus Torvalds 已提交
414

L
Len Brown 已提交
415
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
416 417 418 419 420 421
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ev_cmos_region_setup
 *
422 423
 * PARAMETERS:  handle              - Region we are interested in
 *              function            - Start or stop
L
Linus Torvalds 已提交
424 425 426 427 428
 *              handler_context     - Address space handler context
 *              region_context      - Region specific context
 *
 * RETURN:      Status
 *
R
Robert Moore 已提交
429
 * DESCRIPTION: Setup a CMOS operation region
L
Linus Torvalds 已提交
430 431 432 433 434 435
 *
 * MUTEX:       Assumes namespace is not locked
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
436 437 438
acpi_ev_cmos_region_setup(acpi_handle handle,
			  u32 function,
			  void *handler_context, void **region_context)
L
Linus Torvalds 已提交
439
{
B
Bob Moore 已提交
440
	ACPI_FUNCTION_TRACE(ev_cmos_region_setup);
L
Linus Torvalds 已提交
441

L
Len Brown 已提交
442
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
443 444 445 446 447 448
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ev_default_region_setup
 *
449 450
 * PARAMETERS:  handle              - Region we are interested in
 *              function            - Start or stop
L
Linus Torvalds 已提交
451 452 453 454 455
 *              handler_context     - Address space handler context
 *              region_context      - Region specific context
 *
 * RETURN:      Status
 *
R
Robert Moore 已提交
456
 * DESCRIPTION: Default region initialization
L
Linus Torvalds 已提交
457 458 459 460
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
461 462 463
acpi_ev_default_region_setup(acpi_handle handle,
			     u32 function,
			     void *handler_context, void **region_context)
L
Linus Torvalds 已提交
464
{
B
Bob Moore 已提交
465
	ACPI_FUNCTION_TRACE(ev_default_region_setup);
L
Linus Torvalds 已提交
466 467 468

	if (function == ACPI_REGION_DEACTIVATE) {
		*region_context = NULL;
L
Len Brown 已提交
469
	} else {
L
Linus Torvalds 已提交
470 471 472
		*region_context = handler_context;
	}

L
Len Brown 已提交
473
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ev_initialize_region
 *
 * PARAMETERS:  region_obj      - Region we are initializing
 *              acpi_ns_locked  - Is namespace locked?
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Initializes the region, finds any _REG methods and saves them
 *              for execution at a later time
 *
 *              Get the appropriate address space handler for a newly
 *              created region.
 *
491
 *              This also performs address space specific initialization. For
L
Linus Torvalds 已提交
492
 *              example, PCI regions must have an _ADR object that contains
493
 *              a PCI address in the scope of the definition. This address is
L
Linus Torvalds 已提交
494 495
 *              required to perform an access to PCI config space.
 *
B
Bob Moore 已提交
496 497 498
 * MUTEX:       Interpreter should be unlocked, because we may run the _REG
 *              method for this region.
 *
L
Linus Torvalds 已提交
499 500 501
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
502 503
acpi_ev_initialize_region(union acpi_operand_object *region_obj,
			  u8 acpi_ns_locked)
L
Linus Torvalds 已提交
504
{
L
Len Brown 已提交
505 506 507 508 509 510 511 512
	union acpi_operand_object *handler_obj;
	union acpi_operand_object *obj_desc;
	acpi_adr_space_type space_id;
	struct acpi_namespace_node *node;
	acpi_status status;
	struct acpi_namespace_node *method_node;
	acpi_name *reg_name_ptr = (acpi_name *) METHOD_NAME__REG;
	union acpi_operand_object *region_obj2;
L
Linus Torvalds 已提交
513

B
Bob Moore 已提交
514
	ACPI_FUNCTION_TRACE_U32(ev_initialize_region, acpi_ns_locked);
L
Linus Torvalds 已提交
515 516

	if (!region_obj) {
L
Len Brown 已提交
517
		return_ACPI_STATUS(AE_BAD_PARAMETER);
L
Linus Torvalds 已提交
518 519 520
	}

	if (region_obj->common.flags & AOPOBJ_OBJECT_INITIALIZED) {
L
Len Brown 已提交
521
		return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
522 523
	}

L
Len Brown 已提交
524
	region_obj2 = acpi_ns_get_secondary_object(region_obj);
L
Linus Torvalds 已提交
525
	if (!region_obj2) {
L
Len Brown 已提交
526
		return_ACPI_STATUS(AE_NOT_EXIST);
L
Linus Torvalds 已提交
527 528
	}

529
	node = region_obj->region.node->parent;
L
Linus Torvalds 已提交
530 531 532 533 534 535 536 537 538 539 540
	space_id = region_obj->region.space_id;

	/* Setup defaults */

	region_obj->region.handler = NULL;
	region_obj2->extra.method_REG = NULL;
	region_obj->common.flags &= ~(AOPOBJ_SETUP_COMPLETE);
	region_obj->common.flags |= AOPOBJ_OBJECT_INITIALIZED;

	/* Find any "_REG" method associated with this region definition */

B
Bob Moore 已提交
541 542 543
	status =
	    acpi_ns_search_one_scope(*reg_name_ptr, node, ACPI_TYPE_METHOD,
				     &method_node);
L
Len Brown 已提交
544
	if (ACPI_SUCCESS(status)) {
L
Linus Torvalds 已提交
545 546
		/*
		 * The _REG method is optional and there can be only one per region
547
		 * definition. This will be executed when the handler is attached
L
Linus Torvalds 已提交
548 549 550 551 552 553 554 555 556 557
		 * or removed
		 */
		region_obj2->extra.method_REG = method_node;
	}

	/*
	 * The following loop depends upon the root Node having no parent
	 * ie: acpi_gbl_root_node->parent_entry being set to NULL
	 */
	while (node) {
B
Bob Moore 已提交
558

L
Linus Torvalds 已提交
559 560 561
		/* Check to see if a handler exists */

		handler_obj = NULL;
L
Len Brown 已提交
562
		obj_desc = acpi_ns_get_attached_object(node);
L
Linus Torvalds 已提交
563
		if (obj_desc) {
B
Bob Moore 已提交
564

L
Linus Torvalds 已提交
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
			/* Can only be a handler if the object exists */

			switch (node->type) {
			case ACPI_TYPE_DEVICE:

				handler_obj = obj_desc->device.handler;
				break;

			case ACPI_TYPE_PROCESSOR:

				handler_obj = obj_desc->processor.handler;
				break;

			case ACPI_TYPE_THERMAL:

				handler_obj = obj_desc->thermal_zone.handler;
				break;

583 584 585 586 587 588 589 590 591
			case ACPI_TYPE_METHOD:
				/*
				 * If we are executing module level code, the original
				 * Node's object was replaced by this Method object and we
				 * saved the handler in the method object.
				 *
				 * See acpi_ns_exec_module_code
				 */
				if (obj_desc->method.
592
				    info_flags & ACPI_METHOD_MODULE_LEVEL) {
593
					handler_obj =
594
					    obj_desc->method.dispatch.handler;
595 596 597
				}
				break;

L
Linus Torvalds 已提交
598
			default:
599

L
Linus Torvalds 已提交
600
				/* Ignore other objects */
601

L
Linus Torvalds 已提交
602 603 604 605
				break;
			}

			while (handler_obj) {
B
Bob Moore 已提交
606

L
Linus Torvalds 已提交
607 608
				/* Is this handler of the correct type? */

L
Len Brown 已提交
609 610
				if (handler_obj->address_space.space_id ==
				    space_id) {
B
Bob Moore 已提交
611

L
Linus Torvalds 已提交
612 613
					/* Found correct handler */

L
Len Brown 已提交
614 615 616 617 618
					ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
							  "Found handler %p for region %p in obj %p\n",
							  handler_obj,
							  region_obj,
							  obj_desc));
L
Linus Torvalds 已提交
619

L
Len Brown 已提交
620 621 622 623
					status =
					    acpi_ev_attach_region(handler_obj,
								  region_obj,
								  acpi_ns_locked);
L
Linus Torvalds 已提交
624 625

					/*
626 627
					 * Tell all users that this region is usable by
					 * running the _REG method
L
Linus Torvalds 已提交
628 629
					 */
					if (acpi_ns_locked) {
L
Len Brown 已提交
630 631 632 633 634 635
						status =
						    acpi_ut_release_mutex
						    (ACPI_MTX_NAMESPACE);
						if (ACPI_FAILURE(status)) {
							return_ACPI_STATUS
							    (status);
L
Linus Torvalds 已提交
636 637 638
						}
					}

L
Len Brown 已提交
639 640
					status =
					    acpi_ev_execute_reg_method
641
					    (region_obj, ACPI_REG_CONNECT);
L
Linus Torvalds 已提交
642 643

					if (acpi_ns_locked) {
L
Len Brown 已提交
644 645 646 647 648 649
						status =
						    acpi_ut_acquire_mutex
						    (ACPI_MTX_NAMESPACE);
						if (ACPI_FAILURE(status)) {
							return_ACPI_STATUS
							    (status);
L
Linus Torvalds 已提交
650 651 652
						}
					}

L
Len Brown 已提交
653
					return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
654 655 656 657 658 659 660 661
				}

				/* Try next handler in the list */

				handler_obj = handler_obj->address_space.next;
			}
		}

662 663
		/* This node does not have the handler we need; Pop up one level */

664
		node = node->parent;
L
Linus Torvalds 已提交
665 666 667 668
	}

	/* If we get here, there is no handler for this region */

L
Len Brown 已提交
669
	ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
B
Bob Moore 已提交
670
			  "No handler for RegionType %s(%X) (RegionObj %p)\n",
L
Len Brown 已提交
671 672
			  acpi_ut_get_region_name(space_id), space_id,
			  region_obj));
L
Linus Torvalds 已提交
673

L
Len Brown 已提交
674
	return_ACPI_STATUS(AE_NOT_EXIST);
L
Linus Torvalds 已提交
675
}