ACPICA: Events: Deploys acpi_ev_find_region_handler()
[deliverable/linux.git] / drivers / acpi / acpica / evhandler.c
CommitLineData
42f8fb75
BM
1/******************************************************************************
2 *
3 * Module Name: evhandler - Support for Address Space handlers
4 *
5 *****************************************************************************/
6
7/*
82a80941 8 * Copyright (C) 2000 - 2015, Intel Corp.
42f8fb75
BM
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
44#include <acpi/acpi.h>
45#include "accommon.h"
46#include "acevents.h"
47#include "acnamesp.h"
48#include "acinterp.h"
49
50#define _COMPONENT ACPI_EVENTS
51ACPI_MODULE_NAME("evhandler")
52
53/* Local prototypes */
54static acpi_status
55acpi_ev_install_handler(acpi_handle obj_handle,
56 u32 level, void *context, void **return_value);
57
58/* These are the address spaces that will get default handlers */
59
60u8 acpi_gbl_default_address_spaces[ACPI_NUM_DEFAULT_SPACES] = {
61 ACPI_ADR_SPACE_SYSTEM_MEMORY,
62 ACPI_ADR_SPACE_SYSTEM_IO,
63 ACPI_ADR_SPACE_PCI_CONFIG,
64 ACPI_ADR_SPACE_DATA_TABLE
65};
66
67/*******************************************************************************
68 *
69 * FUNCTION: acpi_ev_install_region_handlers
70 *
71 * PARAMETERS: None
72 *
73 * RETURN: Status
74 *
75 * DESCRIPTION: Installs the core subsystem default address space handlers.
76 *
77 ******************************************************************************/
78
79acpi_status acpi_ev_install_region_handlers(void)
80{
81 acpi_status status;
82 u32 i;
83
84 ACPI_FUNCTION_TRACE(ev_install_region_handlers);
85
86 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
87 if (ACPI_FAILURE(status)) {
88 return_ACPI_STATUS(status);
89 }
90
91 /*
92 * All address spaces (PCI Config, EC, SMBus) are scope dependent and
93 * registration must occur for a specific device.
94 *
95 * In the case of the system memory and IO address spaces there is
96 * currently no device associated with the address space. For these we
97 * use the root.
98 *
99 * We install the default PCI config space handler at the root so that
100 * this space is immediately available even though the we have not
101 * enumerated all the PCI Root Buses yet. This is to conform to the ACPI
102 * specification which states that the PCI config space must be always
103 * available -- even though we are nowhere near ready to find the PCI root
104 * buses at this point.
105 *
106 * NOTE: We ignore AE_ALREADY_EXISTS because this means that a handler
107 * has already been installed (via acpi_install_address_space_handler).
108 * Similar for AE_SAME_HANDLER.
109 */
110 for (i = 0; i < ACPI_NUM_DEFAULT_SPACES; i++) {
111 status = acpi_ev_install_space_handler(acpi_gbl_root_node,
112 acpi_gbl_default_address_spaces
113 [i],
114 ACPI_DEFAULT_HANDLER,
115 NULL, NULL);
116 switch (status) {
117 case AE_OK:
118 case AE_SAME_HANDLER:
119 case AE_ALREADY_EXISTS:
120
121 /* These exceptions are all OK */
122
123 status = AE_OK;
124 break;
125
126 default:
127
128 goto unlock_and_exit;
129 }
130 }
131
10622bf8 132unlock_and_exit:
42f8fb75
BM
133 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
134 return_ACPI_STATUS(status);
135}
136
137/*******************************************************************************
138 *
139 * FUNCTION: acpi_ev_has_default_handler
140 *
141 * PARAMETERS: node - Namespace node for the device
142 * space_id - The address space ID
143 *
144 * RETURN: TRUE if default handler is installed, FALSE otherwise
145 *
146 * DESCRIPTION: Check if the default handler is installed for the requested
147 * space ID.
148 *
149 ******************************************************************************/
150
151u8
152acpi_ev_has_default_handler(struct acpi_namespace_node *node,
153 acpi_adr_space_type space_id)
154{
155 union acpi_operand_object *obj_desc;
156 union acpi_operand_object *handler_obj;
157
158 /* Must have an existing internal object */
159
160 obj_desc = acpi_ns_get_attached_object(node);
161 if (obj_desc) {
162 handler_obj = obj_desc->device.handler;
163
164 /* Walk the linked list of handlers for this object */
165
166 while (handler_obj) {
167 if (handler_obj->address_space.space_id == space_id) {
168 if (handler_obj->address_space.handler_flags &
169 ACPI_ADDR_HANDLER_DEFAULT_INSTALLED) {
170 return (TRUE);
171 }
172 }
173
174 handler_obj = handler_obj->address_space.next;
175 }
176 }
177
178 return (FALSE);
179}
180
181/*******************************************************************************
182 *
183 * FUNCTION: acpi_ev_install_handler
184 *
185 * PARAMETERS: walk_namespace callback
186 *
187 * DESCRIPTION: This routine installs an address handler into objects that are
188 * of type Region or Device.
189 *
190 * If the Object is a Device, and the device has a handler of
191 * the same type then the search is terminated in that branch.
192 *
193 * This is because the existing handler is closer in proximity
194 * to any more regions than the one we are trying to install.
195 *
196 ******************************************************************************/
197
198static acpi_status
199acpi_ev_install_handler(acpi_handle obj_handle,
200 u32 level, void *context, void **return_value)
201{
202 union acpi_operand_object *handler_obj;
203 union acpi_operand_object *next_handler_obj;
204 union acpi_operand_object *obj_desc;
205 struct acpi_namespace_node *node;
206 acpi_status status;
207
208 ACPI_FUNCTION_NAME(ev_install_handler);
209
210 handler_obj = (union acpi_operand_object *)context;
211
212 /* Parameter validation */
213
214 if (!handler_obj) {
215 return (AE_OK);
216 }
217
218 /* Convert and validate the device handle */
219
220 node = acpi_ns_validate_handle(obj_handle);
221 if (!node) {
222 return (AE_BAD_PARAMETER);
223 }
224
225 /*
226 * We only care about regions and objects that are allowed to have
227 * address space handlers
228 */
229 if ((node->type != ACPI_TYPE_DEVICE) &&
230 (node->type != ACPI_TYPE_REGION) && (node != acpi_gbl_root_node)) {
231 return (AE_OK);
232 }
233
234 /* Check for an existing internal object */
235
236 obj_desc = acpi_ns_get_attached_object(node);
237 if (!obj_desc) {
238
239 /* No object, just exit */
240
241 return (AE_OK);
242 }
243
244 /* Devices are handled different than regions */
245
246 if (obj_desc->common.type == ACPI_TYPE_DEVICE) {
247
248 /* Check if this Device already has a handler for this address space */
249
f31a99ce
LZ
250 next_handler_obj =
251 acpi_ev_find_region_handler(handler_obj->address_space.
252 space_id,
253 obj_desc->device.handler);
254 if (next_handler_obj) {
42f8fb75
BM
255
256 /* Found a handler, is it for the same address space? */
257
f31a99ce
LZ
258 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
259 "Found handler for region [%s] in device %p(%p) handler %p\n",
260 acpi_ut_get_region_name(handler_obj->
261 address_space.
262 space_id),
263 obj_desc, next_handler_obj,
264 handler_obj));
265
266 /*
267 * Since the object we found it on was a device, then it means
268 * that someone has already installed a handler for the branch
269 * of the namespace from this device on. Just bail out telling
270 * the walk routine to not traverse this branch. This preserves
271 * the scoping rule for handlers.
272 */
273 return (AE_CTRL_DEPTH);
42f8fb75
BM
274 }
275
276 /*
277 * As long as the device didn't have a handler for this space we
278 * don't care about it. We just ignore it and proceed.
279 */
280 return (AE_OK);
281 }
282
283 /* Object is a Region */
284
285 if (obj_desc->region.space_id != handler_obj->address_space.space_id) {
286
287 /* This region is for a different address space, just ignore it */
288
289 return (AE_OK);
290 }
291
292 /*
293 * Now we have a region and it is for the handler's address space type.
294 *
295 * First disconnect region for any previous handler (if any)
296 */
297 acpi_ev_detach_region(obj_desc, FALSE);
298
299 /* Connect the region to the new handler */
300
301 status = acpi_ev_attach_region(handler_obj, obj_desc, FALSE);
302 return (status);
303}
304
7b738064
BM
305/*******************************************************************************
306 *
307 * FUNCTION: acpi_ev_find_region_handler
308 *
309 * PARAMETERS: space_id - The address space ID
310 * handler_obj - Head of the handler object list
311 *
312 * RETURN: Matching handler object. NULL if space ID not matched
313 *
314 * DESCRIPTION: Search a handler object list for a match on the address
315 * space ID.
316 *
317 ******************************************************************************/
318
f31a99ce
LZ
319union acpi_operand_object *acpi_ev_find_region_handler(acpi_adr_space_type
320 space_id,
321 union acpi_operand_object
322 *handler_obj)
7b738064
BM
323{
324
325 /* Walk the handler list for this device */
326
327 while (handler_obj) {
328
329 /* Same space_id indicates a handler is installed */
330
331 if (handler_obj->address_space.space_id == space_id) {
332 return (handler_obj);
333 }
334
335 /* Next handler object */
336
337 handler_obj = handler_obj->address_space.next;
338 }
339
340 return (NULL);
341}
342
42f8fb75
BM
343/*******************************************************************************
344 *
345 * FUNCTION: acpi_ev_install_space_handler
346 *
347 * PARAMETERS: node - Namespace node for the device
348 * space_id - The address space ID
349 * handler - Address of the handler
350 * setup - Address of the setup function
351 * context - Value passed to the handler on each access
352 *
353 * RETURN: Status
354 *
355 * DESCRIPTION: Install a handler for all op_regions of a given space_id.
356 * Assumes namespace is locked
357 *
358 ******************************************************************************/
359
360acpi_status
361acpi_ev_install_space_handler(struct acpi_namespace_node * node,
362 acpi_adr_space_type space_id,
363 acpi_adr_space_handler handler,
364 acpi_adr_space_setup setup, void *context)
365{
366 union acpi_operand_object *obj_desc;
367 union acpi_operand_object *handler_obj;
7b738064 368 acpi_status status = AE_OK;
42f8fb75
BM
369 acpi_object_type type;
370 u8 flags = 0;
371
372 ACPI_FUNCTION_TRACE(ev_install_space_handler);
373
374 /*
7b738064
BM
375 * This registration is valid for only the types below and the root.
376 * The root node is where the default handlers get installed.
42f8fb75
BM
377 */
378 if ((node->type != ACPI_TYPE_DEVICE) &&
379 (node->type != ACPI_TYPE_PROCESSOR) &&
380 (node->type != ACPI_TYPE_THERMAL) && (node != acpi_gbl_root_node)) {
381 status = AE_BAD_PARAMETER;
382 goto unlock_and_exit;
383 }
384
385 if (handler == ACPI_DEFAULT_HANDLER) {
386 flags = ACPI_ADDR_HANDLER_DEFAULT_INSTALLED;
387
388 switch (space_id) {
389 case ACPI_ADR_SPACE_SYSTEM_MEMORY:
1d1ea1b7 390
42f8fb75
BM
391 handler = acpi_ex_system_memory_space_handler;
392 setup = acpi_ev_system_memory_region_setup;
393 break;
394
395 case ACPI_ADR_SPACE_SYSTEM_IO:
1d1ea1b7 396
42f8fb75
BM
397 handler = acpi_ex_system_io_space_handler;
398 setup = acpi_ev_io_space_region_setup;
399 break;
400
401 case ACPI_ADR_SPACE_PCI_CONFIG:
1d1ea1b7 402
42f8fb75
BM
403 handler = acpi_ex_pci_config_space_handler;
404 setup = acpi_ev_pci_config_region_setup;
405 break;
406
407 case ACPI_ADR_SPACE_CMOS:
1d1ea1b7 408
42f8fb75
BM
409 handler = acpi_ex_cmos_space_handler;
410 setup = acpi_ev_cmos_region_setup;
411 break;
412
413 case ACPI_ADR_SPACE_PCI_BAR_TARGET:
1d1ea1b7 414
42f8fb75
BM
415 handler = acpi_ex_pci_bar_space_handler;
416 setup = acpi_ev_pci_bar_region_setup;
417 break;
418
419 case ACPI_ADR_SPACE_DATA_TABLE:
1d1ea1b7 420
42f8fb75
BM
421 handler = acpi_ex_data_table_space_handler;
422 setup = NULL;
423 break;
424
425 default:
1d1ea1b7 426
42f8fb75
BM
427 status = AE_BAD_PARAMETER;
428 goto unlock_and_exit;
429 }
430 }
431
432 /* If the caller hasn't specified a setup routine, use the default */
433
434 if (!setup) {
435 setup = acpi_ev_default_region_setup;
436 }
437
438 /* Check for an existing internal object */
439
440 obj_desc = acpi_ns_get_attached_object(node);
441 if (obj_desc) {
442 /*
7b738064
BM
443 * The attached device object already exists. Now make sure
444 * the handler is not already installed.
42f8fb75 445 */
7b738064
BM
446 handler_obj = acpi_ev_find_region_handler(space_id,
447 obj_desc->device.
448 handler);
42f8fb75 449
7b738064
BM
450 if (handler_obj) {
451 if (handler_obj->address_space.handler == handler) {
452 /*
453 * It is (relatively) OK to attempt to install the SAME
454 * handler twice. This can easily happen with the
455 * PCI_Config space.
456 */
457 status = AE_SAME_HANDLER;
42f8fb75 458 goto unlock_and_exit;
7b738064
BM
459 } else {
460 /* A handler is already installed */
42f8fb75 461
7b738064
BM
462 status = AE_ALREADY_EXISTS;
463 }
42f8fb75 464
7b738064 465 goto unlock_and_exit;
42f8fb75
BM
466 }
467 } else {
468 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
469 "Creating object on Device %p while installing handler\n",
470 node));
471
472 /* obj_desc does not exist, create one */
473
474 if (node->type == ACPI_TYPE_ANY) {
475 type = ACPI_TYPE_DEVICE;
476 } else {
477 type = node->type;
478 }
479
480 obj_desc = acpi_ut_create_internal_object(type);
481 if (!obj_desc) {
482 status = AE_NO_MEMORY;
483 goto unlock_and_exit;
484 }
485
486 /* Init new descriptor */
487
488 obj_desc->common.type = (u8)type;
489
490 /* Attach the new object to the Node */
491
492 status = acpi_ns_attach_object(node, obj_desc, type);
493
494 /* Remove local reference to the object */
495
496 acpi_ut_remove_reference(obj_desc);
497
498 if (ACPI_FAILURE(status)) {
499 goto unlock_and_exit;
500 }
501 }
502
503 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
7b738064
BM
504 "Installing address handler for region %s(%X) "
505 "on Device %4.4s %p(%p)\n",
42f8fb75
BM
506 acpi_ut_get_region_name(space_id), space_id,
507 acpi_ut_get_node_name(node), node, obj_desc));
508
509 /*
510 * Install the handler
511 *
512 * At this point there is no existing handler. Just allocate the object
513 * for the handler and link it into the list.
514 */
515 handler_obj =
516 acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_ADDRESS_HANDLER);
517 if (!handler_obj) {
518 status = AE_NO_MEMORY;
519 goto unlock_and_exit;
520 }
521
522 /* Init handler obj */
523
524 handler_obj->address_space.space_id = (u8)space_id;
525 handler_obj->address_space.handler_flags = flags;
526 handler_obj->address_space.region_list = NULL;
527 handler_obj->address_space.node = node;
528 handler_obj->address_space.handler = handler;
529 handler_obj->address_space.context = context;
530 handler_obj->address_space.setup = setup;
531
532 /* Install at head of Device.address_space list */
533
534 handler_obj->address_space.next = obj_desc->device.handler;
535
536 /*
537 * The Device object is the first reference on the handler_obj.
538 * Each region that uses the handler adds a reference.
539 */
540 obj_desc->device.handler = handler_obj;
541
542 /*
7b738064
BM
543 * Walk the namespace finding all of the regions this handler will
544 * manage.
42f8fb75 545 *
7b738064
BM
546 * Start at the device and search the branch toward the leaf nodes
547 * until either the leaf is encountered or a device is detected that
548 * has an address handler of the same type.
42f8fb75 549 *
7b738064 550 * In either case, back up and search down the remainder of the branch
42f8fb75 551 */
7b738064
BM
552 status = acpi_ns_walk_namespace(ACPI_TYPE_ANY, node,
553 ACPI_UINT32_MAX, ACPI_NS_WALK_UNLOCK,
42f8fb75
BM
554 acpi_ev_install_handler, NULL,
555 handler_obj, NULL);
556
10622bf8 557unlock_and_exit:
42f8fb75
BM
558 return_ACPI_STATUS(status);
559}
This page took 0.19766 seconds and 5 git commands to generate.