blob: 98fd210e87b28a31acb9e2cacf1014fa2d03796f [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/*
Bob Moorea8357b02010-01-22 19:07:36 +08008 * Copyright (C) 2000 - 2010, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acevents.h"
47#include "acnamesp.h"
48#include "acinterp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define _COMPONENT ACPI_EVENTS
Len Brown4be44fc2005-08-05 00:44:28 -040051ACPI_MODULE_NAME("evregion")
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Robert Moore44f6c012005-04-18 22:49:35 -040053/* Local prototypes */
Lin Ming74d3ec72009-10-13 10:29:30 +080054static u8
55acpi_ev_has_default_handler(struct acpi_namespace_node *node,
56 acpi_adr_space_type space_id);
57
Robert Moore44f6c012005-04-18 22:49:35 -040058static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040059acpi_ev_reg_run(acpi_handle obj_handle,
60 u32 level, void *context, void **return_value);
Robert Moore44f6c012005-04-18 22:49:35 -040061
62static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040063acpi_ev_install_handler(acpi_handle obj_handle,
64 u32 level, void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Bob Moore9f15fc62008-11-12 16:01:56 +080066/* These are the address spaces that will get default handlers */
67
68#define ACPI_NUM_DEFAULT_SPACES 4
69
70static u8 acpi_gbl_default_address_spaces[ACPI_NUM_DEFAULT_SPACES] = {
71 ACPI_ADR_SPACE_SYSTEM_MEMORY,
72 ACPI_ADR_SPACE_SYSTEM_IO,
73 ACPI_ADR_SPACE_PCI_CONFIG,
74 ACPI_ADR_SPACE_DATA_TABLE
75};
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/*******************************************************************************
78 *
79 * FUNCTION: acpi_ev_install_region_handlers
80 *
81 * PARAMETERS: None
82 *
83 * RETURN: Status
84 *
85 * DESCRIPTION: Installs the core subsystem default address space handlers.
86 *
87 ******************************************************************************/
88
Len Brown4be44fc2005-08-05 00:44:28 -040089acpi_status acpi_ev_install_region_handlers(void)
90{
91 acpi_status status;
Bob Moore67a119f2008-06-10 13:42:13 +080092 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Bob Mooreb229cf92006-04-21 17:15:00 -040094 ACPI_FUNCTION_TRACE(ev_install_region_handlers);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Len Brown4be44fc2005-08-05 00:44:28 -040096 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
97 if (ACPI_FAILURE(status)) {
98 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 }
100
101 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800102 * All address spaces (PCI Config, EC, SMBus) are scope dependent and
103 * registration must occur for a specific device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 *
Bob Moore9f15fc62008-11-12 16:01:56 +0800105 * In the case of the system memory and IO address spaces there is
106 * currently no device associated with the address space. For these we
107 * use the root.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 *
Bob Moore9f15fc62008-11-12 16:01:56 +0800109 * We install the default PCI config space handler at the root so that
110 * this space is immediately available even though the we have not
111 * enumerated all the PCI Root Buses yet. This is to conform to the ACPI
112 * specification which states that the PCI config space must be always
113 * available -- even though we are nowhere near ready to find the PCI root
114 * buses at this point.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 *
116 * NOTE: We ignore AE_ALREADY_EXISTS because this means that a handler
117 * has already been installed (via acpi_install_address_space_handler).
118 * Similar for AE_SAME_HANDLER.
119 */
120 for (i = 0; i < ACPI_NUM_DEFAULT_SPACES; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400121 status = acpi_ev_install_space_handler(acpi_gbl_root_node,
122 acpi_gbl_default_address_spaces
123 [i],
124 ACPI_DEFAULT_HANDLER,
125 NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 switch (status) {
127 case AE_OK:
128 case AE_SAME_HANDLER:
129 case AE_ALREADY_EXISTS:
130
131 /* These exceptions are all OK */
132
133 status = AE_OK;
134 break;
135
136 default:
137
138 goto unlock_and_exit;
139 }
140 }
141
Len Brown4be44fc2005-08-05 00:44:28 -0400142 unlock_and_exit:
143 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
144 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147/*******************************************************************************
148 *
Lin Ming74d3ec72009-10-13 10:29:30 +0800149 * FUNCTION: acpi_ev_has_default_handler
150 *
151 * PARAMETERS: Node - Namespace node for the device
152 * space_id - The address space ID
153 *
154 * RETURN: TRUE if default handler is installed, FALSE otherwise
155 *
156 * DESCRIPTION: Check if the default handler is installed for the requested
157 * space ID.
158 *
159 ******************************************************************************/
160
161static u8
162acpi_ev_has_default_handler(struct acpi_namespace_node *node,
163 acpi_adr_space_type space_id)
164{
165 union acpi_operand_object *obj_desc;
166 union acpi_operand_object *handler_obj;
167
168 /* Must have an existing internal object */
169
170 obj_desc = acpi_ns_get_attached_object(node);
171 if (obj_desc) {
172 handler_obj = obj_desc->device.handler;
173
174 /* Walk the linked list of handlers for this object */
175
176 while (handler_obj) {
177 if (handler_obj->address_space.space_id == space_id) {
178 if (handler_obj->address_space.handler_flags &
179 ACPI_ADDR_HANDLER_DEFAULT_INSTALLED) {
180 return (TRUE);
181 }
182 }
183
184 handler_obj = handler_obj->address_space.next;
185 }
186 }
187
188 return (FALSE);
189}
190
191/*******************************************************************************
192 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 * FUNCTION: acpi_ev_initialize_op_regions
194 *
195 * PARAMETERS: None
196 *
197 * RETURN: Status
198 *
199 * DESCRIPTION: Execute _REG methods for all Operation Regions that have
200 * an installed default region handler.
201 *
202 ******************************************************************************/
203
Len Brown4be44fc2005-08-05 00:44:28 -0400204acpi_status acpi_ev_initialize_op_regions(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Len Brown4be44fc2005-08-05 00:44:28 -0400206 acpi_status status;
Bob Moore67a119f2008-06-10 13:42:13 +0800207 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Bob Mooreb229cf92006-04-21 17:15:00 -0400209 ACPI_FUNCTION_TRACE(ev_initialize_op_regions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Len Brown4be44fc2005-08-05 00:44:28 -0400211 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
212 if (ACPI_FAILURE(status)) {
213 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 }
215
Bob Moore9f15fc62008-11-12 16:01:56 +0800216 /* Run the _REG methods for op_regions in each default address space */
Bob Moore52fc0b02006-10-02 00:00:00 -0400217
Bob Moore9f15fc62008-11-12 16:01:56 +0800218 for (i = 0; i < ACPI_NUM_DEFAULT_SPACES; i++) {
219 /*
Lin Ming74d3ec72009-10-13 10:29:30 +0800220 * Make sure the installed handler is the DEFAULT handler. If not the
221 * default, the _REG methods will have already been run (when the
222 * handler was installed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 */
Lin Ming74d3ec72009-10-13 10:29:30 +0800224 if (acpi_ev_has_default_handler(acpi_gbl_root_node,
225 acpi_gbl_default_address_spaces
226 [i])) {
227 status =
228 acpi_ev_execute_reg_methods(acpi_gbl_root_node,
229 acpi_gbl_default_address_spaces
230 [i]);
231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
233
Len Brown4be44fc2005-08-05 00:44:28 -0400234 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
235 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238/*******************************************************************************
239 *
240 * FUNCTION: acpi_ev_execute_reg_method
241 *
Robert Moore44f6c012005-04-18 22:49:35 -0400242 * PARAMETERS: region_obj - Region object
243 * Function - Passed to _REG: On (1) or Off (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 *
245 * RETURN: Status
246 *
247 * DESCRIPTION: Execute _REG method for a region
248 *
249 ******************************************************************************/
250
251acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400252acpi_ev_execute_reg_method(union acpi_operand_object *region_obj, u32 function)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Bob Moore41195322006-05-26 16:36:00 -0400254 struct acpi_evaluate_info *info;
255 union acpi_operand_object *args[3];
Len Brown4be44fc2005-08-05 00:44:28 -0400256 union acpi_operand_object *region_obj2;
257 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Bob Mooreb229cf92006-04-21 17:15:00 -0400259 ACPI_FUNCTION_TRACE(ev_execute_reg_method);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Len Brown4be44fc2005-08-05 00:44:28 -0400261 region_obj2 = acpi_ns_get_secondary_object(region_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 if (!region_obj2) {
Len Brown4be44fc2005-08-05 00:44:28 -0400263 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
265
266 if (region_obj2->extra.method_REG == NULL) {
Len Brown4be44fc2005-08-05 00:44:28 -0400267 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
269
Bob Moore41195322006-05-26 16:36:00 -0400270 /* Allocate and initialize the evaluation information block */
271
272 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
273 if (!info) {
Len Brown4be44fc2005-08-05 00:44:28 -0400274 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 }
276
Bob Moore41195322006-05-26 16:36:00 -0400277 info->prefix_node = region_obj2->extra.method_REG;
278 info->pathname = NULL;
279 info->parameters = args;
Bob Moore41195322006-05-26 16:36:00 -0400280 info->flags = ACPI_IGNORE_RETURN_VALUE;
281
282 /*
283 * The _REG method has two arguments:
284 *
285 * Arg0 - Integer:
286 * Operation region space ID Same value as region_obj->Region.space_id
287 *
288 * Arg1 - Integer:
289 * connection status 1 for connecting the handler, 0 for disconnecting
290 * the handler (Passed as a parameter)
291 */
Bob Mooredc95a272009-11-12 09:52:45 +0800292 args[0] =
293 acpi_ut_create_integer_object((u64) region_obj->region.space_id);
Bob Moore41195322006-05-26 16:36:00 -0400294 if (!args[0]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 status = AE_NO_MEMORY;
Bob Moore41195322006-05-26 16:36:00 -0400296 goto cleanup1;
297 }
298
Bob Mooredc95a272009-11-12 09:52:45 +0800299 args[1] = acpi_ut_create_integer_object((u64) function);
Bob Moore41195322006-05-26 16:36:00 -0400300 if (!args[1]) {
301 status = AE_NO_MEMORY;
302 goto cleanup2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
304
Bob Mooredc95a272009-11-12 09:52:45 +0800305 args[2] = NULL; /* Terminate list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 /* Execute the method, no return value */
308
Len Brown4be44fc2005-08-05 00:44:28 -0400309 ACPI_DEBUG_EXEC(acpi_ut_display_init_pathname
Bob Moore41195322006-05-26 16:36:00 -0400310 (ACPI_TYPE_METHOD, info->prefix_node, NULL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Bob Moore41195322006-05-26 16:36:00 -0400312 status = acpi_ns_evaluate(info);
313 acpi_ut_remove_reference(args[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Bob Moore41195322006-05-26 16:36:00 -0400315 cleanup2:
316 acpi_ut_remove_reference(args[0]);
317
318 cleanup1:
319 ACPI_FREE(info);
Len Brown4be44fc2005-08-05 00:44:28 -0400320 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323/*******************************************************************************
324 *
325 * FUNCTION: acpi_ev_address_space_dispatch
326 *
327 * PARAMETERS: region_obj - Internal region object
328 * Function - Read or Write operation
Bob Mooref5407af2009-05-21 10:56:52 +0800329 * region_offset - Where in the region to read or write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 * bit_width - Field width in bits (8, 16, 32, or 64)
Bob Moore958dd242006-05-12 17:12:00 -0400331 * Value - Pointer to in or out value, must be
Bob Moore5df7e6c2010-01-21 10:06:32 +0800332 * a full 64-bit integer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 *
334 * RETURN: Status
335 *
336 * DESCRIPTION: Dispatch an address space or operation region access to
337 * a previously installed handler.
338 *
339 ******************************************************************************/
340
341acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400342acpi_ev_address_space_dispatch(union acpi_operand_object *region_obj,
343 u32 function,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800344 u32 region_offset, u32 bit_width, u64 *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Len Brown4be44fc2005-08-05 00:44:28 -0400346 acpi_status status;
Len Brown4be44fc2005-08-05 00:44:28 -0400347 acpi_adr_space_handler handler;
348 acpi_adr_space_setup region_setup;
349 union acpi_operand_object *handler_desc;
350 union acpi_operand_object *region_obj2;
351 void *region_context = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Bob Mooreb229cf92006-04-21 17:15:00 -0400353 ACPI_FUNCTION_TRACE(ev_address_space_dispatch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Len Brown4be44fc2005-08-05 00:44:28 -0400355 region_obj2 = acpi_ns_get_secondary_object(region_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (!region_obj2) {
Len Brown4be44fc2005-08-05 00:44:28 -0400357 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
359
360 /* Ensure that there is a handler associated with this region */
361
362 handler_desc = region_obj->region.handler;
363 if (!handler_desc) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500364 ACPI_ERROR((AE_INFO,
365 "No handler for Region [%4.4s] (%p) [%s]",
366 acpi_ut_get_node_name(region_obj->region.node),
367 region_obj,
368 acpi_ut_get_region_name(region_obj->region.
369 space_id)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Len Brown4be44fc2005-08-05 00:44:28 -0400371 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
373
374 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800375 * It may be the case that the region has never been initialized.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 * Some types of regions require special init code
377 */
378 if (!(region_obj->region.flags & AOPOBJ_SETUP_COMPLETE)) {
Bob Moore9f15fc62008-11-12 16:01:56 +0800379
380 /* This region has not been initialized yet, do it */
381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 region_setup = handler_desc->address_space.setup;
383 if (!region_setup) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 /* No initialization routine, exit with error */
386
Bob Mooreb8e4d892006-01-27 16:43:00 -0500387 ACPI_ERROR((AE_INFO,
388 "No init routine for region(%p) [%s]",
389 region_obj,
390 acpi_ut_get_region_name(region_obj->region.
391 space_id)));
Len Brown4be44fc2005-08-05 00:44:28 -0400392 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
394
395 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800396 * We must exit the interpreter because the region setup will
397 * potentially execute control methods (for example, the _REG method
398 * for this region)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 */
Bob Moore014d4332008-01-10 23:04:10 -0500400 acpi_ex_exit_interpreter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Len Brown4be44fc2005-08-05 00:44:28 -0400402 status = region_setup(region_obj, ACPI_REGION_ACTIVATE,
403 handler_desc->address_space.context,
404 &region_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 /* Re-enter the interpreter */
407
Bob Moore014d4332008-01-10 23:04:10 -0500408 acpi_ex_enter_interpreter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 /* Check for failure of the Region Setup */
411
Len Brown4be44fc2005-08-05 00:44:28 -0400412 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500413 ACPI_EXCEPTION((AE_INFO, status,
414 "During region initialization: [%s]",
415 acpi_ut_get_region_name(region_obj->
416 region.
417 space_id)));
Len Brown4be44fc2005-08-05 00:44:28 -0400418 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420
Bob Moore9f15fc62008-11-12 16:01:56 +0800421 /* Region initialization may have been completed by region_setup */
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 if (!(region_obj->region.flags & AOPOBJ_SETUP_COMPLETE)) {
424 region_obj->region.flags |= AOPOBJ_SETUP_COMPLETE;
425
426 if (region_obj2->extra.region_context) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 /* The handler for this region was already installed */
429
Bob Moore83135242006-10-03 00:00:00 -0400430 ACPI_FREE(region_context);
Len Brown4be44fc2005-08-05 00:44:28 -0400431 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 /*
433 * Save the returned context for use in all accesses to
434 * this particular region
435 */
Len Brown4be44fc2005-08-05 00:44:28 -0400436 region_obj2->extra.region_context =
437 region_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
439 }
440 }
441
442 /* We have everything we need, we can invoke the address space handler */
443
444 handler = handler_desc->address_space.handler;
445
Len Brown4be44fc2005-08-05 00:44:28 -0400446 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
447 "Handler %p (@%p) Address %8.8X%8.8X [%s]\n",
448 &region_obj->region.handler->address_space, handler,
Bob Mooref5407af2009-05-21 10:56:52 +0800449 ACPI_FORMAT_NATIVE_UINT(region_obj->region.address +
450 region_offset),
Len Brown4be44fc2005-08-05 00:44:28 -0400451 acpi_ut_get_region_name(region_obj->region.
452 space_id)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Bob Moore61686122006-03-17 16:44:00 -0500454 if (!(handler_desc->address_space.handler_flags &
455 ACPI_ADDR_HANDLER_DEFAULT_INSTALLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 /*
457 * For handlers other than the default (supplied) handlers, we must
458 * exit the interpreter because the handler *might* block -- we don't
459 * know what it will do, so we can't hold the lock on the intepreter.
460 */
Bob Moore014d4332008-01-10 23:04:10 -0500461 acpi_ex_exit_interpreter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463
464 /* Call the handler */
465
Bob Mooref5407af2009-05-21 10:56:52 +0800466 status = handler(function,
467 (region_obj->region.address + region_offset),
468 bit_width, value, handler_desc->address_space.context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 region_obj2->extra.region_context);
470
Len Brown4be44fc2005-08-05 00:44:28 -0400471 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500472 ACPI_EXCEPTION((AE_INFO, status, "Returned by Handler for [%s]",
473 acpi_ut_get_region_name(region_obj->region.
474 space_id)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476
Bob Moore61686122006-03-17 16:44:00 -0500477 if (!(handler_desc->address_space.handler_flags &
478 ACPI_ADDR_HANDLER_DEFAULT_INSTALLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 /*
480 * We just returned from a non-default handler, we must re-enter the
481 * interpreter
482 */
Bob Moore014d4332008-01-10 23:04:10 -0500483 acpi_ex_enter_interpreter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
485
Len Brown4be44fc2005-08-05 00:44:28 -0400486 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489/*******************************************************************************
490 *
491 * FUNCTION: acpi_ev_detach_region
492 *
493 * PARAMETERS: region_obj - Region Object
494 * acpi_ns_is_locked - Namespace Region Already Locked?
495 *
496 * RETURN: None
497 *
498 * DESCRIPTION: Break the association between the handler and the region
499 * this is a two way association.
500 *
501 ******************************************************************************/
502
503void
Len Brown4be44fc2005-08-05 00:44:28 -0400504acpi_ev_detach_region(union acpi_operand_object *region_obj,
505 u8 acpi_ns_is_locked)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Len Brown4be44fc2005-08-05 00:44:28 -0400507 union acpi_operand_object *handler_obj;
508 union acpi_operand_object *obj_desc;
509 union acpi_operand_object **last_obj_ptr;
510 acpi_adr_space_setup region_setup;
511 void **region_context;
512 union acpi_operand_object *region_obj2;
513 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Bob Mooreb229cf92006-04-21 17:15:00 -0400515 ACPI_FUNCTION_TRACE(ev_detach_region);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Len Brown4be44fc2005-08-05 00:44:28 -0400517 region_obj2 = acpi_ns_get_secondary_object(region_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (!region_obj2) {
519 return_VOID;
520 }
521 region_context = &region_obj2->extra.region_context;
522
523 /* Get the address handler from the region object */
524
525 handler_obj = region_obj->region.handler;
526 if (!handler_obj) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 /* This region has no handler, all done */
529
530 return_VOID;
531 }
532
533 /* Find this region in the handler's list */
534
535 obj_desc = handler_obj->address_space.region_list;
536 last_obj_ptr = &handler_obj->address_space.region_list;
537
538 while (obj_desc) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 /* Is this the correct Region? */
541
542 if (obj_desc == region_obj) {
Len Brown4be44fc2005-08-05 00:44:28 -0400543 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
544 "Removing Region %p from address handler %p\n",
545 region_obj, handler_obj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 /* This is it, remove it from the handler's list */
548
549 *last_obj_ptr = obj_desc->region.next;
Len Brown4be44fc2005-08-05 00:44:28 -0400550 obj_desc->region.next = NULL; /* Must clear field */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552 if (acpi_ns_is_locked) {
Len Brown4be44fc2005-08-05 00:44:28 -0400553 status =
554 acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
555 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return_VOID;
557 }
558 }
559
560 /* Now stop region accesses by executing the _REG method */
561
Len Brown4be44fc2005-08-05 00:44:28 -0400562 status = acpi_ev_execute_reg_method(region_obj, 0);
563 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500564 ACPI_EXCEPTION((AE_INFO, status,
565 "from region _REG, [%s]",
566 acpi_ut_get_region_name
567 (region_obj->region.space_id)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
569
570 if (acpi_ns_is_locked) {
Len Brown4be44fc2005-08-05 00:44:28 -0400571 status =
572 acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
573 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 return_VOID;
575 }
576 }
577
Bob Mooref6dd9222006-07-07 20:44:38 -0400578 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800579 * If the region has been activated, call the setup handler with
580 * the deactivate notification
Bob Mooref6dd9222006-07-07 20:44:38 -0400581 */
582 if (region_obj->region.flags & AOPOBJ_SETUP_COMPLETE) {
583 region_setup = handler_obj->address_space.setup;
584 status =
585 region_setup(region_obj,
586 ACPI_REGION_DEACTIVATE,
587 handler_obj->address_space.
588 context, region_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Bob Mooref6dd9222006-07-07 20:44:38 -0400590 /* Init routine may fail, Just ignore errors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Bob Mooref6dd9222006-07-07 20:44:38 -0400592 if (ACPI_FAILURE(status)) {
593 ACPI_EXCEPTION((AE_INFO, status,
594 "from region handler - deactivate, [%s]",
595 acpi_ut_get_region_name
596 (region_obj->region.
597 space_id)));
598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Bob Mooref6dd9222006-07-07 20:44:38 -0400600 region_obj->region.flags &=
601 ~(AOPOBJ_SETUP_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 /*
605 * Remove handler reference in the region
606 *
Bob Mooref6dd9222006-07-07 20:44:38 -0400607 * NOTE: this doesn't mean that the region goes away, the region
608 * is just inaccessible as indicated to the _REG method
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 *
Bob Mooref6dd9222006-07-07 20:44:38 -0400610 * If the region is on the handler's list, this must be the
611 * region's handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 */
613 region_obj->region.handler = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400614 acpi_ut_remove_reference(handler_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 return_VOID;
617 }
618
619 /* Walk the linked list of handlers */
620
621 last_obj_ptr = &obj_desc->region.next;
622 obj_desc = obj_desc->region.next;
623 }
624
625 /* If we get here, the region was not in the handler's region list */
626
Len Brown4be44fc2005-08-05 00:44:28 -0400627 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
628 "Cannot remove region %p from address handler %p\n",
629 region_obj, handler_obj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 return_VOID;
632}
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634/*******************************************************************************
635 *
636 * FUNCTION: acpi_ev_attach_region
637 *
638 * PARAMETERS: handler_obj - Handler Object
639 * region_obj - Region Object
640 * acpi_ns_is_locked - Namespace Region Already Locked?
641 *
642 * RETURN: None
643 *
644 * DESCRIPTION: Create the association between the handler and the region
645 * this is a two way association.
646 *
647 ******************************************************************************/
648
649acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400650acpi_ev_attach_region(union acpi_operand_object *handler_obj,
651 union acpi_operand_object *region_obj,
652 u8 acpi_ns_is_locked)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
654
Bob Mooreb229cf92006-04-21 17:15:00 -0400655 ACPI_FUNCTION_TRACE(ev_attach_region);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Len Brown4be44fc2005-08-05 00:44:28 -0400657 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
658 "Adding Region [%4.4s] %p to address handler %p [%s]\n",
659 acpi_ut_get_node_name(region_obj->region.node),
660 region_obj, handler_obj,
661 acpi_ut_get_region_name(region_obj->region.
662 space_id)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 /* Link this region to the front of the handler's list */
665
666 region_obj->region.next = handler_obj->address_space.region_list;
667 handler_obj->address_space.region_list = region_obj;
668
669 /* Install the region's handler */
670
671 if (region_obj->region.handler) {
Len Brown4be44fc2005-08-05 00:44:28 -0400672 return_ACPI_STATUS(AE_ALREADY_EXISTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
674
675 region_obj->region.handler = handler_obj;
Len Brown4be44fc2005-08-05 00:44:28 -0400676 acpi_ut_add_reference(handler_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Len Brown4be44fc2005-08-05 00:44:28 -0400678 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681/*******************************************************************************
682 *
683 * FUNCTION: acpi_ev_install_handler
684 *
685 * PARAMETERS: walk_namespace callback
686 *
687 * DESCRIPTION: This routine installs an address handler into objects that are
688 * of type Region or Device.
689 *
690 * If the Object is a Device, and the device has a handler of
691 * the same type then the search is terminated in that branch.
692 *
693 * This is because the existing handler is closer in proximity
694 * to any more regions than the one we are trying to install.
695 *
696 ******************************************************************************/
697
Robert Moore44f6c012005-04-18 22:49:35 -0400698static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400699acpi_ev_install_handler(acpi_handle obj_handle,
700 u32 level, void *context, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Len Brown4be44fc2005-08-05 00:44:28 -0400702 union acpi_operand_object *handler_obj;
703 union acpi_operand_object *next_handler_obj;
704 union acpi_operand_object *obj_desc;
705 struct acpi_namespace_node *node;
706 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Bob Mooreb229cf92006-04-21 17:15:00 -0400708 ACPI_FUNCTION_NAME(ev_install_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Len Brown4be44fc2005-08-05 00:44:28 -0400710 handler_obj = (union acpi_operand_object *)context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 /* Parameter validation */
713
714 if (!handler_obj) {
715 return (AE_OK);
716 }
717
718 /* Convert and validate the device handle */
719
Bob Mooref24b6642009-12-11 14:57:00 +0800720 node = acpi_ns_validate_handle(obj_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 if (!node) {
722 return (AE_BAD_PARAMETER);
723 }
724
725 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800726 * We only care about regions and objects that are allowed to have
727 * address space handlers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 */
729 if ((node->type != ACPI_TYPE_DEVICE) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400730 (node->type != ACPI_TYPE_REGION) && (node != acpi_gbl_root_node)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return (AE_OK);
732 }
733
734 /* Check for an existing internal object */
735
Len Brown4be44fc2005-08-05 00:44:28 -0400736 obj_desc = acpi_ns_get_attached_object(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (!obj_desc) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 /* No object, just exit */
740
741 return (AE_OK);
742 }
743
744 /* Devices are handled different than regions */
745
Bob Moore3371c192009-02-18 14:44:03 +0800746 if (obj_desc->common.type == ACPI_TYPE_DEVICE) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 /* Check if this Device already has a handler for this address space */
749
750 next_handler_obj = obj_desc->device.handler;
751 while (next_handler_obj) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 /* Found a handler, is it for the same address space? */
754
Len Brown4be44fc2005-08-05 00:44:28 -0400755 if (next_handler_obj->address_space.space_id ==
756 handler_obj->address_space.space_id) {
757 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
Bob Moored4913dc2009-03-06 10:05:18 +0800758 "Found handler for region [%s] in device %p(%p) "
759 "handler %p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400760 acpi_ut_get_region_name
761 (handler_obj->address_space.
762 space_id), obj_desc,
763 next_handler_obj,
764 handler_obj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 /*
767 * Since the object we found it on was a device, then it
768 * means that someone has already installed a handler for
Bob Moore9f15fc62008-11-12 16:01:56 +0800769 * the branch of the namespace from this device on. Just
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 * bail out telling the walk routine to not traverse this
Bob Moore9f15fc62008-11-12 16:01:56 +0800771 * branch. This preserves the scoping rule for handlers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 */
773 return (AE_CTRL_DEPTH);
774 }
775
776 /* Walk the linked list of handlers attached to this device */
777
778 next_handler_obj = next_handler_obj->address_space.next;
779 }
780
781 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800782 * As long as the device didn't have a handler for this space we
783 * don't care about it. We just ignore it and proceed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 */
785 return (AE_OK);
786 }
787
788 /* Object is a Region */
789
790 if (obj_desc->region.space_id != handler_obj->address_space.space_id) {
Bob Moore9f15fc62008-11-12 16:01:56 +0800791
792 /* This region is for a different address space, just ignore it */
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return (AE_OK);
795 }
796
797 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800798 * Now we have a region and it is for the handler's address space type.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 *
800 * First disconnect region for any previous handler (if any)
801 */
Len Brown4be44fc2005-08-05 00:44:28 -0400802 acpi_ev_detach_region(obj_desc, FALSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 /* Connect the region to the new handler */
805
Len Brown4be44fc2005-08-05 00:44:28 -0400806 status = acpi_ev_attach_region(handler_obj, obj_desc, FALSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 return (status);
808}
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810/*******************************************************************************
811 *
812 * FUNCTION: acpi_ev_install_space_handler
813 *
814 * PARAMETERS: Node - Namespace node for the device
815 * space_id - The address space ID
816 * Handler - Address of the handler
817 * Setup - Address of the setup function
818 * Context - Value passed to the handler on each access
819 *
820 * RETURN: Status
821 *
822 * DESCRIPTION: Install a handler for all op_regions of a given space_id.
823 * Assumes namespace is locked
824 *
825 ******************************************************************************/
826
827acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400828acpi_ev_install_space_handler(struct acpi_namespace_node * node,
829 acpi_adr_space_type space_id,
830 acpi_adr_space_handler handler,
831 acpi_adr_space_setup setup, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
Len Brown4be44fc2005-08-05 00:44:28 -0400833 union acpi_operand_object *obj_desc;
834 union acpi_operand_object *handler_obj;
835 acpi_status status;
836 acpi_object_type type;
Bob Moore61686122006-03-17 16:44:00 -0500837 u8 flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Bob Mooreb229cf92006-04-21 17:15:00 -0400839 ACPI_FUNCTION_TRACE(ev_install_space_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800842 * This registration is valid for only the types below and the root. This
843 * is where the default handlers get placed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 */
Len Brown4be44fc2005-08-05 00:44:28 -0400845 if ((node->type != ACPI_TYPE_DEVICE) &&
846 (node->type != ACPI_TYPE_PROCESSOR) &&
847 (node->type != ACPI_TYPE_THERMAL) && (node != acpi_gbl_root_node)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 status = AE_BAD_PARAMETER;
849 goto unlock_and_exit;
850 }
851
852 if (handler == ACPI_DEFAULT_HANDLER) {
853 flags = ACPI_ADDR_HANDLER_DEFAULT_INSTALLED;
854
855 switch (space_id) {
856 case ACPI_ADR_SPACE_SYSTEM_MEMORY:
857 handler = acpi_ex_system_memory_space_handler;
Len Brown4be44fc2005-08-05 00:44:28 -0400858 setup = acpi_ev_system_memory_region_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 break;
860
861 case ACPI_ADR_SPACE_SYSTEM_IO:
862 handler = acpi_ex_system_io_space_handler;
Len Brown4be44fc2005-08-05 00:44:28 -0400863 setup = acpi_ev_io_space_region_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 break;
865
866 case ACPI_ADR_SPACE_PCI_CONFIG:
867 handler = acpi_ex_pci_config_space_handler;
Len Brown4be44fc2005-08-05 00:44:28 -0400868 setup = acpi_ev_pci_config_region_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 break;
870
871 case ACPI_ADR_SPACE_CMOS:
872 handler = acpi_ex_cmos_space_handler;
Len Brown4be44fc2005-08-05 00:44:28 -0400873 setup = acpi_ev_cmos_region_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 break;
875
876 case ACPI_ADR_SPACE_PCI_BAR_TARGET:
877 handler = acpi_ex_pci_bar_space_handler;
Len Brown4be44fc2005-08-05 00:44:28 -0400878 setup = acpi_ev_pci_bar_region_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 break;
880
881 case ACPI_ADR_SPACE_DATA_TABLE:
882 handler = acpi_ex_data_table_space_handler;
Len Brown4be44fc2005-08-05 00:44:28 -0400883 setup = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 break;
885
886 default:
887 status = AE_BAD_PARAMETER;
888 goto unlock_and_exit;
889 }
890 }
891
892 /* If the caller hasn't specified a setup routine, use the default */
893
894 if (!setup) {
895 setup = acpi_ev_default_region_setup;
896 }
897
898 /* Check for an existing internal object */
899
Len Brown4be44fc2005-08-05 00:44:28 -0400900 obj_desc = acpi_ns_get_attached_object(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 if (obj_desc) {
902 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800903 * The attached device object already exists. Make sure the handler
904 * is not already installed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 */
906 handler_obj = obj_desc->device.handler;
907
908 /* Walk the handler list for this device */
909
910 while (handler_obj) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 /* Same space_id indicates a handler already installed */
913
914 if (handler_obj->address_space.space_id == space_id) {
Len Brown4be44fc2005-08-05 00:44:28 -0400915 if (handler_obj->address_space.handler ==
916 handler) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 /*
918 * It is (relatively) OK to attempt to install the SAME
Bob Moore9f15fc62008-11-12 16:01:56 +0800919 * handler twice. This can easily happen with the
920 * PCI_Config space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 */
922 status = AE_SAME_HANDLER;
923 goto unlock_and_exit;
Len Brown4be44fc2005-08-05 00:44:28 -0400924 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 /* A handler is already installed */
926
927 status = AE_ALREADY_EXISTS;
928 }
929 goto unlock_and_exit;
930 }
931
932 /* Walk the linked list of handlers */
933
934 handler_obj = handler_obj->address_space.next;
935 }
Len Brown4be44fc2005-08-05 00:44:28 -0400936 } else {
937 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
938 "Creating object on Device %p while installing handler\n",
939 node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 /* obj_desc does not exist, create one */
942
943 if (node->type == ACPI_TYPE_ANY) {
944 type = ACPI_TYPE_DEVICE;
Len Brown4be44fc2005-08-05 00:44:28 -0400945 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 type = node->type;
947 }
948
Len Brown4be44fc2005-08-05 00:44:28 -0400949 obj_desc = acpi_ut_create_internal_object(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 if (!obj_desc) {
951 status = AE_NO_MEMORY;
952 goto unlock_and_exit;
953 }
954
955 /* Init new descriptor */
956
957 obj_desc->common.type = (u8) type;
958
959 /* Attach the new object to the Node */
960
Len Brown4be44fc2005-08-05 00:44:28 -0400961 status = acpi_ns_attach_object(node, obj_desc, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 /* Remove local reference to the object */
964
Len Brown4be44fc2005-08-05 00:44:28 -0400965 acpi_ut_remove_reference(obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Len Brown4be44fc2005-08-05 00:44:28 -0400967 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 goto unlock_and_exit;
969 }
970 }
971
Len Brown4be44fc2005-08-05 00:44:28 -0400972 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
973 "Installing address handler for region %s(%X) on Device %4.4s %p(%p)\n",
974 acpi_ut_get_region_name(space_id), space_id,
975 acpi_ut_get_node_name(node), node, obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 /*
978 * Install the handler
979 *
Bob Moore9f15fc62008-11-12 16:01:56 +0800980 * At this point there is no existing handler. Just allocate the object
981 * for the handler and link it into the list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 */
Len Brown4be44fc2005-08-05 00:44:28 -0400983 handler_obj =
984 acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_ADDRESS_HANDLER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (!handler_obj) {
986 status = AE_NO_MEMORY;
987 goto unlock_and_exit;
988 }
989
990 /* Init handler obj */
991
Len Brown4be44fc2005-08-05 00:44:28 -0400992 handler_obj->address_space.space_id = (u8) space_id;
Bob Moore61686122006-03-17 16:44:00 -0500993 handler_obj->address_space.handler_flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 handler_obj->address_space.region_list = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400995 handler_obj->address_space.node = node;
996 handler_obj->address_space.handler = handler;
997 handler_obj->address_space.context = context;
998 handler_obj->address_space.setup = setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 /* Install at head of Device.address_space list */
1001
Len Brown4be44fc2005-08-05 00:44:28 -04001002 handler_obj->address_space.next = obj_desc->device.handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 /*
1005 * The Device object is the first reference on the handler_obj.
1006 * Each region that uses the handler adds a reference.
1007 */
1008 obj_desc->device.handler = handler_obj;
1009
1010 /*
1011 * Walk the namespace finding all of the regions this
1012 * handler will manage.
1013 *
1014 * Start at the device and search the branch toward
1015 * the leaf nodes until either the leaf is encountered or
1016 * a device is detected that has an address handler of the
1017 * same type.
1018 *
1019 * In either case, back up and search down the remainder
1020 * of the branch
1021 */
Len Brown4be44fc2005-08-05 00:44:28 -04001022 status = acpi_ns_walk_namespace(ACPI_TYPE_ANY, node, ACPI_UINT32_MAX,
1023 ACPI_NS_WALK_UNLOCK,
Lin Ming22635762009-11-13 10:06:08 +08001024 acpi_ev_install_handler, NULL,
1025 handler_obj, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Len Brown4be44fc2005-08-05 00:44:28 -04001027 unlock_and_exit:
1028 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031/*******************************************************************************
1032 *
1033 * FUNCTION: acpi_ev_execute_reg_methods
1034 *
1035 * PARAMETERS: Node - Namespace node for the device
1036 * space_id - The address space ID
1037 *
1038 * RETURN: Status
1039 *
1040 * DESCRIPTION: Run all _REG methods for the input Space ID;
1041 * Note: assumes namespace is locked, or system init time.
1042 *
1043 ******************************************************************************/
1044
1045acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001046acpi_ev_execute_reg_methods(struct acpi_namespace_node *node,
1047 acpi_adr_space_type space_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
Len Brown4be44fc2005-08-05 00:44:28 -04001049 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Bob Mooreb229cf92006-04-21 17:15:00 -04001051 ACPI_FUNCTION_TRACE(ev_execute_reg_methods);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 /*
Bob Moore9f15fc62008-11-12 16:01:56 +08001054 * Run all _REG methods for all Operation Regions for this space ID. This
1055 * is a separate walk in order to handle any interdependencies between
1056 * regions and _REG methods. (i.e. handlers must be installed for all
1057 * regions of this Space ID before we can run any _REG methods)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 */
Len Brown4be44fc2005-08-05 00:44:28 -04001059 status = acpi_ns_walk_namespace(ACPI_TYPE_ANY, node, ACPI_UINT32_MAX,
1060 ACPI_NS_WALK_UNLOCK, acpi_ev_reg_run,
Lin Ming22635762009-11-13 10:06:08 +08001061 NULL, &space_id, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Len Brown4be44fc2005-08-05 00:44:28 -04001063 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066/*******************************************************************************
1067 *
1068 * FUNCTION: acpi_ev_reg_run
1069 *
1070 * PARAMETERS: walk_namespace callback
1071 *
Bob Moore958dd242006-05-12 17:12:00 -04001072 * DESCRIPTION: Run _REG method for region objects of the requested space_iD
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 *
1074 ******************************************************************************/
1075
Robert Moore44f6c012005-04-18 22:49:35 -04001076static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001077acpi_ev_reg_run(acpi_handle obj_handle,
1078 u32 level, void *context, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
Len Brown4be44fc2005-08-05 00:44:28 -04001080 union acpi_operand_object *obj_desc;
1081 struct acpi_namespace_node *node;
1082 acpi_adr_space_type space_id;
1083 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Len Brown4be44fc2005-08-05 00:44:28 -04001085 space_id = *ACPI_CAST_PTR(acpi_adr_space_type, context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
1087 /* Convert and validate the device handle */
1088
Bob Mooref24b6642009-12-11 14:57:00 +08001089 node = acpi_ns_validate_handle(obj_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 if (!node) {
1091 return (AE_BAD_PARAMETER);
1092 }
1093
1094 /*
Bob Moore9f15fc62008-11-12 16:01:56 +08001095 * We only care about regions.and objects that are allowed to have address
1096 * space handlers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 */
Len Brown4be44fc2005-08-05 00:44:28 -04001098 if ((node->type != ACPI_TYPE_REGION) && (node != acpi_gbl_root_node)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 return (AE_OK);
1100 }
1101
1102 /* Check for an existing internal object */
1103
Len Brown4be44fc2005-08-05 00:44:28 -04001104 obj_desc = acpi_ns_get_attached_object(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 if (!obj_desc) {
Bob Moore52fc0b02006-10-02 00:00:00 -04001106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 /* No object, just exit */
1108
1109 return (AE_OK);
1110 }
1111
1112 /* Object is a Region */
1113
1114 if (obj_desc->region.space_id != space_id) {
Bob Moore9f15fc62008-11-12 16:01:56 +08001115
1116 /* This region is for a different address space, just ignore it */
1117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return (AE_OK);
1119 }
1120
Len Brown4be44fc2005-08-05 00:44:28 -04001121 status = acpi_ev_execute_reg_method(obj_desc, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 return (status);
1123}