blob: 84fad082d80d22205b2c559313ddb6f02e690e00 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: evregion - ACPI address_space (op_region) handler dispatch
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2005, R. Byron Moore
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 Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
45#include <acpi/acevents.h>
46#include <acpi/acnamesp.h>
47#include <acpi/acinterp.h>
48
49#define _COMPONENT ACPI_EVENTS
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("evregion")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define ACPI_NUM_DEFAULT_SPACES 4
Len Brown4be44fc2005-08-05 00:44:28 -040052static u8 acpi_gbl_default_address_spaces[ACPI_NUM_DEFAULT_SPACES] = {
53 ACPI_ADR_SPACE_SYSTEM_MEMORY,
54 ACPI_ADR_SPACE_SYSTEM_IO,
55 ACPI_ADR_SPACE_PCI_CONFIG,
56 ACPI_ADR_SPACE_DATA_TABLE
57};
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Robert Moore44f6c012005-04-18 22:49:35 -040059/* Local prototypes */
60
61static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040062acpi_ev_reg_run(acpi_handle obj_handle,
63 u32 level, void *context, void **return_value);
Robert Moore44f6c012005-04-18 22:49:35 -040064
65static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040066acpi_ev_install_handler(acpi_handle obj_handle,
67 u32 level, void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/*******************************************************************************
70 *
71 * FUNCTION: acpi_ev_install_region_handlers
72 *
73 * PARAMETERS: None
74 *
75 * RETURN: Status
76 *
77 * DESCRIPTION: Installs the core subsystem default address space handlers.
78 *
79 ******************************************************************************/
80
Len Brown4be44fc2005-08-05 00:44:28 -040081acpi_status acpi_ev_install_region_handlers(void)
82{
83 acpi_status status;
84 acpi_native_uint i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Len Brown4be44fc2005-08-05 00:44:28 -040086 ACPI_FUNCTION_TRACE("ev_install_region_handlers");
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Len Brown4be44fc2005-08-05 00:44:28 -040088 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
89 if (ACPI_FAILURE(status)) {
90 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 }
92
93 /*
94 * All address spaces (PCI Config, EC, SMBus) are scope dependent
95 * and registration must occur for a specific device.
96 *
97 * In the case of the system memory and IO address spaces there is currently
98 * no device associated with the address space. For these we use the root.
99 *
100 * We install the default PCI config space handler at the root so
101 * that this space is immediately available even though the we have
102 * not enumerated all the PCI Root Buses yet. This is to conform
103 * to the ACPI specification which states that the PCI config
104 * space must be always available -- even though we are nowhere
105 * near ready to find the PCI root buses at this point.
106 *
107 * NOTE: We ignore AE_ALREADY_EXISTS because this means that a handler
108 * has already been installed (via acpi_install_address_space_handler).
109 * Similar for AE_SAME_HANDLER.
110 */
111 for (i = 0; i < ACPI_NUM_DEFAULT_SPACES; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400112 status = acpi_ev_install_space_handler(acpi_gbl_root_node,
113 acpi_gbl_default_address_spaces
114 [i],
115 ACPI_DEFAULT_HANDLER,
116 NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 switch (status) {
118 case AE_OK:
119 case AE_SAME_HANDLER:
120 case AE_ALREADY_EXISTS:
121
122 /* These exceptions are all OK */
123
124 status = AE_OK;
125 break;
126
127 default:
128
129 goto unlock_and_exit;
130 }
131 }
132
Len Brown4be44fc2005-08-05 00:44:28 -0400133 unlock_and_exit:
134 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
135 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138/*******************************************************************************
139 *
140 * FUNCTION: acpi_ev_initialize_op_regions
141 *
142 * PARAMETERS: None
143 *
144 * RETURN: Status
145 *
146 * DESCRIPTION: Execute _REG methods for all Operation Regions that have
147 * an installed default region handler.
148 *
149 ******************************************************************************/
150
Len Brown4be44fc2005-08-05 00:44:28 -0400151acpi_status acpi_ev_initialize_op_regions(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Len Brown4be44fc2005-08-05 00:44:28 -0400153 acpi_status status;
154 acpi_native_uint i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Len Brown4be44fc2005-08-05 00:44:28 -0400156 ACPI_FUNCTION_TRACE("ev_initialize_op_regions");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Len Brown4be44fc2005-08-05 00:44:28 -0400158 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
159 if (ACPI_FAILURE(status)) {
160 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 }
162
163 /*
164 * Run the _REG methods for op_regions in each default address space
165 */
166 for (i = 0; i < ACPI_NUM_DEFAULT_SPACES; i++) {
167 /* TBD: Make sure handler is the DEFAULT handler, otherwise
168 * _REG will have already been run.
169 */
Len Brown4be44fc2005-08-05 00:44:28 -0400170 status = acpi_ev_execute_reg_methods(acpi_gbl_root_node,
171 acpi_gbl_default_address_spaces
172 [i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
174
Len Brown4be44fc2005-08-05 00:44:28 -0400175 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
176 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/*******************************************************************************
180 *
181 * FUNCTION: acpi_ev_execute_reg_method
182 *
Robert Moore44f6c012005-04-18 22:49:35 -0400183 * PARAMETERS: region_obj - Region object
184 * Function - Passed to _REG: On (1) or Off (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 *
186 * RETURN: Status
187 *
188 * DESCRIPTION: Execute _REG method for a region
189 *
190 ******************************************************************************/
191
192acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400193acpi_ev_execute_reg_method(union acpi_operand_object *region_obj, u32 function)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Len Brown4be44fc2005-08-05 00:44:28 -0400195 struct acpi_parameter_info info;
196 union acpi_operand_object *params[3];
197 union acpi_operand_object *region_obj2;
198 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Len Brown4be44fc2005-08-05 00:44:28 -0400200 ACPI_FUNCTION_TRACE("ev_execute_reg_method");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Len Brown4be44fc2005-08-05 00:44:28 -0400202 region_obj2 = acpi_ns_get_secondary_object(region_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (!region_obj2) {
Len Brown4be44fc2005-08-05 00:44:28 -0400204 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
206
207 if (region_obj2->extra.method_REG == NULL) {
Len Brown4be44fc2005-08-05 00:44:28 -0400208 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210
211 /*
212 * The _REG method has two arguments:
213 *
214 * Arg0, Integer: Operation region space ID
215 * Same value as region_obj->Region.space_id
216 * Arg1, Integer: connection status
217 * 1 for connecting the handler,
218 * 0 for disconnecting the handler
219 * Passed as a parameter
220 */
Len Brown4be44fc2005-08-05 00:44:28 -0400221 params[0] = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if (!params[0]) {
Len Brown4be44fc2005-08-05 00:44:28 -0400223 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
225
Len Brown4be44fc2005-08-05 00:44:28 -0400226 params[1] = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (!params[1]) {
228 status = AE_NO_MEMORY;
229 goto cleanup;
230 }
231
232 /* Setup the parameter objects */
233
234 params[0]->integer.value = region_obj->region.space_id;
235 params[1]->integer.value = function;
236 params[2] = NULL;
237
238 info.node = region_obj2->extra.method_REG;
239 info.parameters = params;
240 info.parameter_type = ACPI_PARAM_ARGS;
241
242 /* Execute the method, no return value */
243
Len Brown4be44fc2005-08-05 00:44:28 -0400244 ACPI_DEBUG_EXEC(acpi_ut_display_init_pathname
245 (ACPI_TYPE_METHOD, info.node, NULL));
246 status = acpi_ns_evaluate_by_handle(&info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Len Brown4be44fc2005-08-05 00:44:28 -0400248 acpi_ut_remove_reference(params[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Len Brown4be44fc2005-08-05 00:44:28 -0400250 cleanup:
251 acpi_ut_remove_reference(params[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Len Brown4be44fc2005-08-05 00:44:28 -0400253 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256/*******************************************************************************
257 *
258 * FUNCTION: acpi_ev_address_space_dispatch
259 *
260 * PARAMETERS: region_obj - Internal region object
261 * Function - Read or Write operation
262 * Address - Where in the space to read or write
263 * bit_width - Field width in bits (8, 16, 32, or 64)
264 * Value - Pointer to in or out value
265 *
266 * RETURN: Status
267 *
268 * DESCRIPTION: Dispatch an address space or operation region access to
269 * a previously installed handler.
270 *
271 ******************************************************************************/
272
273acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400274acpi_ev_address_space_dispatch(union acpi_operand_object *region_obj,
275 u32 function,
276 acpi_physical_address address,
277 u32 bit_width, void *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Len Brown4be44fc2005-08-05 00:44:28 -0400279 acpi_status status;
280 acpi_status status2;
281 acpi_adr_space_handler handler;
282 acpi_adr_space_setup region_setup;
283 union acpi_operand_object *handler_desc;
284 union acpi_operand_object *region_obj2;
285 void *region_context = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Len Brown4be44fc2005-08-05 00:44:28 -0400287 ACPI_FUNCTION_TRACE("ev_address_space_dispatch");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Len Brown4be44fc2005-08-05 00:44:28 -0400289 region_obj2 = acpi_ns_get_secondary_object(region_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (!region_obj2) {
Len Brown4be44fc2005-08-05 00:44:28 -0400291 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293
294 /* Ensure that there is a handler associated with this region */
295
296 handler_desc = region_obj->region.handler;
297 if (!handler_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400298 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
299 "No handler for Region [%4.4s] (%p) [%s]\n",
300 acpi_ut_get_node_name(region_obj->region.
301 node), region_obj,
302 acpi_ut_get_region_name(region_obj->region.
303 space_id)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Len Brown4be44fc2005-08-05 00:44:28 -0400305 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307
308 /*
309 * It may be the case that the region has never been initialized
310 * Some types of regions require special init code
311 */
312 if (!(region_obj->region.flags & AOPOBJ_SETUP_COMPLETE)) {
313 /*
314 * This region has not been initialized yet, do it
315 */
316 region_setup = handler_desc->address_space.setup;
317 if (!region_setup) {
318 /* No initialization routine, exit with error */
319
Len Brown4be44fc2005-08-05 00:44:28 -0400320 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
321 "No init routine for region(%p) [%s]\n",
322 region_obj,
323 acpi_ut_get_region_name(region_obj->
324 region.
325 space_id)));
326 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328
329 /*
Robert Moore44f6c012005-04-18 22:49:35 -0400330 * We must exit the interpreter because the region
331 * setup will potentially execute control methods
332 * (e.g., _REG method for this region)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 */
Len Brown4be44fc2005-08-05 00:44:28 -0400334 acpi_ex_exit_interpreter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Len Brown4be44fc2005-08-05 00:44:28 -0400336 status = region_setup(region_obj, ACPI_REGION_ACTIVATE,
337 handler_desc->address_space.context,
338 &region_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 /* Re-enter the interpreter */
341
Len Brown4be44fc2005-08-05 00:44:28 -0400342 status2 = acpi_ex_enter_interpreter();
343 if (ACPI_FAILURE(status2)) {
344 return_ACPI_STATUS(status2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346
347 /* Check for failure of the Region Setup */
348
Len Brown4be44fc2005-08-05 00:44:28 -0400349 if (ACPI_FAILURE(status)) {
350 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
351 "Region Init: %s [%s]\n",
352 acpi_format_exception(status),
353 acpi_ut_get_region_name(region_obj->
354 region.
355 space_id)));
356 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 }
358
359 /*
360 * Region initialization may have been completed by region_setup
361 */
362 if (!(region_obj->region.flags & AOPOBJ_SETUP_COMPLETE)) {
363 region_obj->region.flags |= AOPOBJ_SETUP_COMPLETE;
364
365 if (region_obj2->extra.region_context) {
366 /* The handler for this region was already installed */
367
Len Brown4be44fc2005-08-05 00:44:28 -0400368 ACPI_MEM_FREE(region_context);
369 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 /*
371 * Save the returned context for use in all accesses to
372 * this particular region
373 */
Len Brown4be44fc2005-08-05 00:44:28 -0400374 region_obj2->extra.region_context =
375 region_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377 }
378 }
379
380 /* We have everything we need, we can invoke the address space handler */
381
382 handler = handler_desc->address_space.handler;
383
Len Brown4be44fc2005-08-05 00:44:28 -0400384 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
385 "Handler %p (@%p) Address %8.8X%8.8X [%s]\n",
386 &region_obj->region.handler->address_space, handler,
387 ACPI_FORMAT_UINT64(address),
388 acpi_ut_get_region_name(region_obj->region.
389 space_id)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Len Brown4be44fc2005-08-05 00:44:28 -0400391 if (!
392 (handler_desc->address_space.
393 hflags & ACPI_ADDR_HANDLER_DEFAULT_INSTALLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 /*
395 * For handlers other than the default (supplied) handlers, we must
396 * exit the interpreter because the handler *might* block -- we don't
397 * know what it will do, so we can't hold the lock on the intepreter.
398 */
399 acpi_ex_exit_interpreter();
400 }
401
402 /* Call the handler */
403
Len Brown4be44fc2005-08-05 00:44:28 -0400404 status = handler(function, address, bit_width, value,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 handler_desc->address_space.context,
406 region_obj2->extra.region_context);
407
Len Brown4be44fc2005-08-05 00:44:28 -0400408 if (ACPI_FAILURE(status)) {
409 ACPI_REPORT_ERROR(("Handler for [%s] returned %s\n",
410 acpi_ut_get_region_name(region_obj->region.
411 space_id),
412 acpi_format_exception(status)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414
Len Brown4be44fc2005-08-05 00:44:28 -0400415 if (!
416 (handler_desc->address_space.
417 hflags & ACPI_ADDR_HANDLER_DEFAULT_INSTALLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 /*
419 * We just returned from a non-default handler, we must re-enter the
420 * interpreter
421 */
Len Brown4be44fc2005-08-05 00:44:28 -0400422 status2 = acpi_ex_enter_interpreter();
423 if (ACPI_FAILURE(status2)) {
424 return_ACPI_STATUS(status2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
426 }
427
Len Brown4be44fc2005-08-05 00:44:28 -0400428 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431/*******************************************************************************
432 *
433 * FUNCTION: acpi_ev_detach_region
434 *
435 * PARAMETERS: region_obj - Region Object
436 * acpi_ns_is_locked - Namespace Region Already Locked?
437 *
438 * RETURN: None
439 *
440 * DESCRIPTION: Break the association between the handler and the region
441 * this is a two way association.
442 *
443 ******************************************************************************/
444
445void
Len Brown4be44fc2005-08-05 00:44:28 -0400446acpi_ev_detach_region(union acpi_operand_object *region_obj,
447 u8 acpi_ns_is_locked)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Len Brown4be44fc2005-08-05 00:44:28 -0400449 union acpi_operand_object *handler_obj;
450 union acpi_operand_object *obj_desc;
451 union acpi_operand_object **last_obj_ptr;
452 acpi_adr_space_setup region_setup;
453 void **region_context;
454 union acpi_operand_object *region_obj2;
455 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Len Brown4be44fc2005-08-05 00:44:28 -0400457 ACPI_FUNCTION_TRACE("ev_detach_region");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Len Brown4be44fc2005-08-05 00:44:28 -0400459 region_obj2 = acpi_ns_get_secondary_object(region_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (!region_obj2) {
461 return_VOID;
462 }
463 region_context = &region_obj2->extra.region_context;
464
465 /* Get the address handler from the region object */
466
467 handler_obj = region_obj->region.handler;
468 if (!handler_obj) {
469 /* This region has no handler, all done */
470
471 return_VOID;
472 }
473
474 /* Find this region in the handler's list */
475
476 obj_desc = handler_obj->address_space.region_list;
477 last_obj_ptr = &handler_obj->address_space.region_list;
478
479 while (obj_desc) {
480 /* Is this the correct Region? */
481
482 if (obj_desc == region_obj) {
Len Brown4be44fc2005-08-05 00:44:28 -0400483 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
484 "Removing Region %p from address handler %p\n",
485 region_obj, handler_obj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 /* This is it, remove it from the handler's list */
488
489 *last_obj_ptr = obj_desc->region.next;
Len Brown4be44fc2005-08-05 00:44:28 -0400490 obj_desc->region.next = NULL; /* Must clear field */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 if (acpi_ns_is_locked) {
Len Brown4be44fc2005-08-05 00:44:28 -0400493 status =
494 acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
495 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return_VOID;
497 }
498 }
499
500 /* Now stop region accesses by executing the _REG method */
501
Len Brown4be44fc2005-08-05 00:44:28 -0400502 status = acpi_ev_execute_reg_method(region_obj, 0);
503 if (ACPI_FAILURE(status)) {
504 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
505 "%s from region _REG, [%s]\n",
506 acpi_format_exception(status),
507 acpi_ut_get_region_name
508 (region_obj->region.
509 space_id)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511
512 if (acpi_ns_is_locked) {
Len Brown4be44fc2005-08-05 00:44:28 -0400513 status =
514 acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
515 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return_VOID;
517 }
518 }
519
520 /* Call the setup handler with the deactivate notification */
521
522 region_setup = handler_obj->address_space.setup;
Len Brown4be44fc2005-08-05 00:44:28 -0400523 status =
524 region_setup(region_obj, ACPI_REGION_DEACTIVATE,
525 handler_obj->address_space.context,
526 region_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 /* Init routine may fail, Just ignore errors */
529
Len Brown4be44fc2005-08-05 00:44:28 -0400530 if (ACPI_FAILURE(status)) {
531 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
532 "%s from region init, [%s]\n",
533 acpi_format_exception(status),
534 acpi_ut_get_region_name
535 (region_obj->region.
536 space_id)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
538
539 region_obj->region.flags &= ~(AOPOBJ_SETUP_COMPLETE);
540
541 /*
542 * Remove handler reference in the region
543 *
544 * NOTE: this doesn't mean that the region goes away
545 * The region is just inaccessible as indicated to
546 * the _REG method
547 *
548 * If the region is on the handler's list
549 * this better be the region's handler
550 */
551 region_obj->region.handler = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400552 acpi_ut_remove_reference(handler_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 return_VOID;
555 }
556
557 /* Walk the linked list of handlers */
558
559 last_obj_ptr = &obj_desc->region.next;
560 obj_desc = obj_desc->region.next;
561 }
562
563 /* If we get here, the region was not in the handler's region list */
564
Len Brown4be44fc2005-08-05 00:44:28 -0400565 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
566 "Cannot remove region %p from address handler %p\n",
567 region_obj, handler_obj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 return_VOID;
570}
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572/*******************************************************************************
573 *
574 * FUNCTION: acpi_ev_attach_region
575 *
576 * PARAMETERS: handler_obj - Handler Object
577 * region_obj - Region Object
578 * acpi_ns_is_locked - Namespace Region Already Locked?
579 *
580 * RETURN: None
581 *
582 * DESCRIPTION: Create the association between the handler and the region
583 * this is a two way association.
584 *
585 ******************************************************************************/
586
587acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400588acpi_ev_attach_region(union acpi_operand_object *handler_obj,
589 union acpi_operand_object *region_obj,
590 u8 acpi_ns_is_locked)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
592
Len Brown4be44fc2005-08-05 00:44:28 -0400593 ACPI_FUNCTION_TRACE("ev_attach_region");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Len Brown4be44fc2005-08-05 00:44:28 -0400595 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
596 "Adding Region [%4.4s] %p to address handler %p [%s]\n",
597 acpi_ut_get_node_name(region_obj->region.node),
598 region_obj, handler_obj,
599 acpi_ut_get_region_name(region_obj->region.
600 space_id)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 /* Link this region to the front of the handler's list */
603
604 region_obj->region.next = handler_obj->address_space.region_list;
605 handler_obj->address_space.region_list = region_obj;
606
607 /* Install the region's handler */
608
609 if (region_obj->region.handler) {
Len Brown4be44fc2005-08-05 00:44:28 -0400610 return_ACPI_STATUS(AE_ALREADY_EXISTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612
613 region_obj->region.handler = handler_obj;
Len Brown4be44fc2005-08-05 00:44:28 -0400614 acpi_ut_add_reference(handler_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Len Brown4be44fc2005-08-05 00:44:28 -0400616 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619/*******************************************************************************
620 *
621 * FUNCTION: acpi_ev_install_handler
622 *
623 * PARAMETERS: walk_namespace callback
624 *
625 * DESCRIPTION: This routine installs an address handler into objects that are
626 * of type Region or Device.
627 *
628 * If the Object is a Device, and the device has a handler of
629 * the same type then the search is terminated in that branch.
630 *
631 * This is because the existing handler is closer in proximity
632 * to any more regions than the one we are trying to install.
633 *
634 ******************************************************************************/
635
Robert Moore44f6c012005-04-18 22:49:35 -0400636static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400637acpi_ev_install_handler(acpi_handle obj_handle,
638 u32 level, void *context, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Len Brown4be44fc2005-08-05 00:44:28 -0400640 union acpi_operand_object *handler_obj;
641 union acpi_operand_object *next_handler_obj;
642 union acpi_operand_object *obj_desc;
643 struct acpi_namespace_node *node;
644 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Len Brown4be44fc2005-08-05 00:44:28 -0400646 ACPI_FUNCTION_NAME("ev_install_handler");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Len Brown4be44fc2005-08-05 00:44:28 -0400648 handler_obj = (union acpi_operand_object *)context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 /* Parameter validation */
651
652 if (!handler_obj) {
653 return (AE_OK);
654 }
655
656 /* Convert and validate the device handle */
657
Len Brown4be44fc2005-08-05 00:44:28 -0400658 node = acpi_ns_map_handle_to_node(obj_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (!node) {
660 return (AE_BAD_PARAMETER);
661 }
662
663 /*
664 * We only care about regions.and objects
665 * that are allowed to have address space handlers
666 */
667 if ((node->type != ACPI_TYPE_DEVICE) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400668 (node->type != ACPI_TYPE_REGION) && (node != acpi_gbl_root_node)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return (AE_OK);
670 }
671
672 /* Check for an existing internal object */
673
Len Brown4be44fc2005-08-05 00:44:28 -0400674 obj_desc = acpi_ns_get_attached_object(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (!obj_desc) {
676 /* No object, just exit */
677
678 return (AE_OK);
679 }
680
681 /* Devices are handled different than regions */
682
Len Brown4be44fc2005-08-05 00:44:28 -0400683 if (ACPI_GET_OBJECT_TYPE(obj_desc) == ACPI_TYPE_DEVICE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 /* Check if this Device already has a handler for this address space */
685
686 next_handler_obj = obj_desc->device.handler;
687 while (next_handler_obj) {
688 /* Found a handler, is it for the same address space? */
689
Len Brown4be44fc2005-08-05 00:44:28 -0400690 if (next_handler_obj->address_space.space_id ==
691 handler_obj->address_space.space_id) {
692 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
693 "Found handler for region [%s] in device %p(%p) handler %p\n",
694 acpi_ut_get_region_name
695 (handler_obj->address_space.
696 space_id), obj_desc,
697 next_handler_obj,
698 handler_obj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 /*
701 * Since the object we found it on was a device, then it
702 * means that someone has already installed a handler for
703 * the branch of the namespace from this device on. Just
704 * bail out telling the walk routine to not traverse this
705 * branch. This preserves the scoping rule for handlers.
706 */
707 return (AE_CTRL_DEPTH);
708 }
709
710 /* Walk the linked list of handlers attached to this device */
711
712 next_handler_obj = next_handler_obj->address_space.next;
713 }
714
715 /*
716 * As long as the device didn't have a handler for this
717 * space we don't care about it. We just ignore it and
718 * proceed.
719 */
720 return (AE_OK);
721 }
722
723 /* Object is a Region */
724
725 if (obj_desc->region.space_id != handler_obj->address_space.space_id) {
726 /*
727 * This region is for a different address space
728 * -- just ignore it
729 */
730 return (AE_OK);
731 }
732
733 /*
734 * Now we have a region and it is for the handler's address
735 * space type.
736 *
737 * First disconnect region for any previous handler (if any)
738 */
Len Brown4be44fc2005-08-05 00:44:28 -0400739 acpi_ev_detach_region(obj_desc, FALSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 /* Connect the region to the new handler */
742
Len Brown4be44fc2005-08-05 00:44:28 -0400743 status = acpi_ev_attach_region(handler_obj, obj_desc, FALSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 return (status);
745}
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747/*******************************************************************************
748 *
749 * FUNCTION: acpi_ev_install_space_handler
750 *
751 * PARAMETERS: Node - Namespace node for the device
752 * space_id - The address space ID
753 * Handler - Address of the handler
754 * Setup - Address of the setup function
755 * Context - Value passed to the handler on each access
756 *
757 * RETURN: Status
758 *
759 * DESCRIPTION: Install a handler for all op_regions of a given space_id.
760 * Assumes namespace is locked
761 *
762 ******************************************************************************/
763
764acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400765acpi_ev_install_space_handler(struct acpi_namespace_node * node,
766 acpi_adr_space_type space_id,
767 acpi_adr_space_handler handler,
768 acpi_adr_space_setup setup, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Len Brown4be44fc2005-08-05 00:44:28 -0400770 union acpi_operand_object *obj_desc;
771 union acpi_operand_object *handler_obj;
772 acpi_status status;
773 acpi_object_type type;
774 u16 flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Len Brown4be44fc2005-08-05 00:44:28 -0400776 ACPI_FUNCTION_TRACE("ev_install_space_handler");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 /*
779 * This registration is valid for only the types below
780 * and the root. This is where the default handlers
781 * get placed.
782 */
Len Brown4be44fc2005-08-05 00:44:28 -0400783 if ((node->type != ACPI_TYPE_DEVICE) &&
784 (node->type != ACPI_TYPE_PROCESSOR) &&
785 (node->type != ACPI_TYPE_THERMAL) && (node != acpi_gbl_root_node)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 status = AE_BAD_PARAMETER;
787 goto unlock_and_exit;
788 }
789
790 if (handler == ACPI_DEFAULT_HANDLER) {
791 flags = ACPI_ADDR_HANDLER_DEFAULT_INSTALLED;
792
793 switch (space_id) {
794 case ACPI_ADR_SPACE_SYSTEM_MEMORY:
795 handler = acpi_ex_system_memory_space_handler;
Len Brown4be44fc2005-08-05 00:44:28 -0400796 setup = acpi_ev_system_memory_region_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 break;
798
799 case ACPI_ADR_SPACE_SYSTEM_IO:
800 handler = acpi_ex_system_io_space_handler;
Len Brown4be44fc2005-08-05 00:44:28 -0400801 setup = acpi_ev_io_space_region_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 break;
803
804 case ACPI_ADR_SPACE_PCI_CONFIG:
805 handler = acpi_ex_pci_config_space_handler;
Len Brown4be44fc2005-08-05 00:44:28 -0400806 setup = acpi_ev_pci_config_region_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 break;
808
809 case ACPI_ADR_SPACE_CMOS:
810 handler = acpi_ex_cmos_space_handler;
Len Brown4be44fc2005-08-05 00:44:28 -0400811 setup = acpi_ev_cmos_region_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 break;
813
814 case ACPI_ADR_SPACE_PCI_BAR_TARGET:
815 handler = acpi_ex_pci_bar_space_handler;
Len Brown4be44fc2005-08-05 00:44:28 -0400816 setup = acpi_ev_pci_bar_region_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 break;
818
819 case ACPI_ADR_SPACE_DATA_TABLE:
820 handler = acpi_ex_data_table_space_handler;
Len Brown4be44fc2005-08-05 00:44:28 -0400821 setup = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 break;
823
824 default:
825 status = AE_BAD_PARAMETER;
826 goto unlock_and_exit;
827 }
828 }
829
830 /* If the caller hasn't specified a setup routine, use the default */
831
832 if (!setup) {
833 setup = acpi_ev_default_region_setup;
834 }
835
836 /* Check for an existing internal object */
837
Len Brown4be44fc2005-08-05 00:44:28 -0400838 obj_desc = acpi_ns_get_attached_object(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (obj_desc) {
840 /*
841 * The attached device object already exists.
842 * Make sure the handler is not already installed.
843 */
844 handler_obj = obj_desc->device.handler;
845
846 /* Walk the handler list for this device */
847
848 while (handler_obj) {
849 /* Same space_id indicates a handler already installed */
850
851 if (handler_obj->address_space.space_id == space_id) {
Len Brown4be44fc2005-08-05 00:44:28 -0400852 if (handler_obj->address_space.handler ==
853 handler) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 /*
855 * It is (relatively) OK to attempt to install the SAME
Robert Moore44f6c012005-04-18 22:49:35 -0400856 * handler twice. This can easily happen
857 * with PCI_Config space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 */
859 status = AE_SAME_HANDLER;
860 goto unlock_and_exit;
Len Brown4be44fc2005-08-05 00:44:28 -0400861 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 /* A handler is already installed */
863
864 status = AE_ALREADY_EXISTS;
865 }
866 goto unlock_and_exit;
867 }
868
869 /* Walk the linked list of handlers */
870
871 handler_obj = handler_obj->address_space.next;
872 }
Len Brown4be44fc2005-08-05 00:44:28 -0400873 } else {
874 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
875 "Creating object on Device %p while installing handler\n",
876 node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 /* obj_desc does not exist, create one */
879
880 if (node->type == ACPI_TYPE_ANY) {
881 type = ACPI_TYPE_DEVICE;
Len Brown4be44fc2005-08-05 00:44:28 -0400882 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 type = node->type;
884 }
885
Len Brown4be44fc2005-08-05 00:44:28 -0400886 obj_desc = acpi_ut_create_internal_object(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 if (!obj_desc) {
888 status = AE_NO_MEMORY;
889 goto unlock_and_exit;
890 }
891
892 /* Init new descriptor */
893
894 obj_desc->common.type = (u8) type;
895
896 /* Attach the new object to the Node */
897
Len Brown4be44fc2005-08-05 00:44:28 -0400898 status = acpi_ns_attach_object(node, obj_desc, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 /* Remove local reference to the object */
901
Len Brown4be44fc2005-08-05 00:44:28 -0400902 acpi_ut_remove_reference(obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Len Brown4be44fc2005-08-05 00:44:28 -0400904 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 goto unlock_and_exit;
906 }
907 }
908
Len Brown4be44fc2005-08-05 00:44:28 -0400909 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
910 "Installing address handler for region %s(%X) on Device %4.4s %p(%p)\n",
911 acpi_ut_get_region_name(space_id), space_id,
912 acpi_ut_get_node_name(node), node, obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 /*
915 * Install the handler
916 *
917 * At this point there is no existing handler.
918 * Just allocate the object for the handler and link it
919 * into the list.
920 */
Len Brown4be44fc2005-08-05 00:44:28 -0400921 handler_obj =
922 acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_ADDRESS_HANDLER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 if (!handler_obj) {
924 status = AE_NO_MEMORY;
925 goto unlock_and_exit;
926 }
927
928 /* Init handler obj */
929
Len Brown4be44fc2005-08-05 00:44:28 -0400930 handler_obj->address_space.space_id = (u8) space_id;
931 handler_obj->address_space.hflags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 handler_obj->address_space.region_list = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400933 handler_obj->address_space.node = node;
934 handler_obj->address_space.handler = handler;
935 handler_obj->address_space.context = context;
936 handler_obj->address_space.setup = setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 /* Install at head of Device.address_space list */
939
Len Brown4be44fc2005-08-05 00:44:28 -0400940 handler_obj->address_space.next = obj_desc->device.handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 /*
943 * The Device object is the first reference on the handler_obj.
944 * Each region that uses the handler adds a reference.
945 */
946 obj_desc->device.handler = handler_obj;
947
948 /*
949 * Walk the namespace finding all of the regions this
950 * handler will manage.
951 *
952 * Start at the device and search the branch toward
953 * the leaf nodes until either the leaf is encountered or
954 * a device is detected that has an address handler of the
955 * same type.
956 *
957 * In either case, back up and search down the remainder
958 * of the branch
959 */
Len Brown4be44fc2005-08-05 00:44:28 -0400960 status = acpi_ns_walk_namespace(ACPI_TYPE_ANY, node, ACPI_UINT32_MAX,
961 ACPI_NS_WALK_UNLOCK,
962 acpi_ev_install_handler, handler_obj,
963 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Len Brown4be44fc2005-08-05 00:44:28 -0400965 unlock_and_exit:
966 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967}
968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969/*******************************************************************************
970 *
971 * FUNCTION: acpi_ev_execute_reg_methods
972 *
973 * PARAMETERS: Node - Namespace node for the device
974 * space_id - The address space ID
975 *
976 * RETURN: Status
977 *
978 * DESCRIPTION: Run all _REG methods for the input Space ID;
979 * Note: assumes namespace is locked, or system init time.
980 *
981 ******************************************************************************/
982
983acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400984acpi_ev_execute_reg_methods(struct acpi_namespace_node *node,
985 acpi_adr_space_type space_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
Len Brown4be44fc2005-08-05 00:44:28 -0400987 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Len Brown4be44fc2005-08-05 00:44:28 -0400989 ACPI_FUNCTION_TRACE("ev_execute_reg_methods");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 /*
992 * Run all _REG methods for all Operation Regions for this
993 * space ID. This is a separate walk in order to handle any
994 * interdependencies between regions and _REG methods. (i.e. handlers
995 * must be installed for all regions of this Space ID before we
996 * can run any _REG methods)
997 */
Len Brown4be44fc2005-08-05 00:44:28 -0400998 status = acpi_ns_walk_namespace(ACPI_TYPE_ANY, node, ACPI_UINT32_MAX,
999 ACPI_NS_WALK_UNLOCK, acpi_ev_reg_run,
1000 &space_id, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Len Brown4be44fc2005-08-05 00:44:28 -04001002 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005/*******************************************************************************
1006 *
1007 * FUNCTION: acpi_ev_reg_run
1008 *
1009 * PARAMETERS: walk_namespace callback
1010 *
1011 * DESCRIPTION: Run _REg method for region objects of the requested space_iD
1012 *
1013 ******************************************************************************/
1014
Robert Moore44f6c012005-04-18 22:49:35 -04001015static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001016acpi_ev_reg_run(acpi_handle obj_handle,
1017 u32 level, void *context, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
Len Brown4be44fc2005-08-05 00:44:28 -04001019 union acpi_operand_object *obj_desc;
1020 struct acpi_namespace_node *node;
1021 acpi_adr_space_type space_id;
1022 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Len Brown4be44fc2005-08-05 00:44:28 -04001024 space_id = *ACPI_CAST_PTR(acpi_adr_space_type, context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 /* Convert and validate the device handle */
1027
Len Brown4be44fc2005-08-05 00:44:28 -04001028 node = acpi_ns_map_handle_to_node(obj_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 if (!node) {
1030 return (AE_BAD_PARAMETER);
1031 }
1032
1033 /*
1034 * We only care about regions.and objects
1035 * that are allowed to have address space handlers
1036 */
Len Brown4be44fc2005-08-05 00:44:28 -04001037 if ((node->type != ACPI_TYPE_REGION) && (node != acpi_gbl_root_node)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 return (AE_OK);
1039 }
1040
1041 /* Check for an existing internal object */
1042
Len Brown4be44fc2005-08-05 00:44:28 -04001043 obj_desc = acpi_ns_get_attached_object(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (!obj_desc) {
1045 /* No object, just exit */
1046
1047 return (AE_OK);
1048 }
1049
1050 /* Object is a Region */
1051
1052 if (obj_desc->region.space_id != space_id) {
1053 /*
1054 * This region is for a different address space
1055 * -- just ignore it
1056 */
1057 return (AE_OK);
1058 }
1059
Len Brown4be44fc2005-08-05 00:44:28 -04001060 status = acpi_ev_execute_reg_method(obj_desc, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 return (status);
1062}