]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/acpi/acpica/evregion.c
ACPICA: All: const keyword changes across the ACPICA source
[mirror_ubuntu-bionic-kernel.git] / drivers / acpi / acpica / evregion.c
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
42f8fb75 3 * Module Name: evregion - Operation Region support
1da177e4
LT
4 *
5 *****************************************************************************/
6
7/*
c8100dc4 8 * Copyright (C) 2000 - 2016, Intel Corp.
1da177e4
LT
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
1da177e4 44#include <acpi/acpi.h>
e2f7a777
LB
45#include "accommon.h"
46#include "acevents.h"
47#include "acnamesp.h"
48#include "acinterp.h"
1da177e4
LT
49
50#define _COMPONENT ACPI_EVENTS
4be44fcd 51ACPI_MODULE_NAME("evregion")
1da177e4 52
42f8fb75
BM
53extern u8 acpi_gbl_default_address_spaces[];
54
44f6c012 55/* Local prototypes */
74d3ec77 56
8f4f5e78
ZR
57static void
58acpi_ev_orphan_ec_reg_method(struct acpi_namespace_node *ec_device_node);
e2066ca1 59
44f6c012 60static acpi_status
4be44fcd
LB
61acpi_ev_reg_run(acpi_handle obj_handle,
62 u32 level, void *context, void **return_value);
44f6c012 63
1da177e4
LT
64/*******************************************************************************
65 *
66 * FUNCTION: acpi_ev_initialize_op_regions
67 *
68 * PARAMETERS: None
69 *
70 * RETURN: Status
71 *
72 * DESCRIPTION: Execute _REG methods for all Operation Regions that have
73 * an installed default region handler.
74 *
75 ******************************************************************************/
76
4be44fcd 77acpi_status acpi_ev_initialize_op_regions(void)
1da177e4 78{
4be44fcd 79 acpi_status status;
67a119f9 80 u32 i;
1da177e4 81
b229cf92 82 ACPI_FUNCTION_TRACE(ev_initialize_op_regions);
1da177e4 83
4be44fcd
LB
84 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
85 if (ACPI_FAILURE(status)) {
86 return_ACPI_STATUS(status);
1da177e4
LT
87 }
88
9f15fc66 89 /* Run the _REG methods for op_regions in each default address space */
52fc0b02 90
9f15fc66
BM
91 for (i = 0; i < ACPI_NUM_DEFAULT_SPACES; i++) {
92 /*
74d3ec77
LM
93 * Make sure the installed handler is the DEFAULT handler. If not the
94 * default, the _REG methods will have already been run (when the
95 * handler was installed)
1da177e4 96 */
74d3ec77
LM
97 if (acpi_ev_has_default_handler(acpi_gbl_root_node,
98 acpi_gbl_default_address_spaces
99 [i])) {
d815346f
LZ
100 acpi_ev_execute_reg_methods(acpi_gbl_root_node,
101 acpi_gbl_default_address_spaces
102 [i], ACPI_REG_CONNECT);
74d3ec77 103 }
1da177e4
LT
104 }
105
4be44fcd
LB
106 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
107 return_ACPI_STATUS(status);
1da177e4
LT
108}
109
1da177e4
LT
110/*******************************************************************************
111 *
112 * FUNCTION: acpi_ev_address_space_dispatch
113 *
114 * PARAMETERS: region_obj - Internal region object
9ce81784 115 * field_obj - Corresponding field. Can be NULL.
ba494bee 116 * function - Read or Write operation
f5407af3 117 * region_offset - Where in the region to read or write
1da177e4 118 * bit_width - Field width in bits (8, 16, 32, or 64)
ba494bee 119 * value - Pointer to in or out value, must be
5df7e6cb 120 * a full 64-bit integer
1da177e4
LT
121 *
122 * RETURN: Status
123 *
124 * DESCRIPTION: Dispatch an address space or operation region access to
125 * a previously installed handler.
126 *
7b738064
BM
127 * NOTE: During early initialization, we always install the default region
128 * handlers for Memory, I/O and PCI_Config. This ensures that these operation
129 * region address spaces are always available as per the ACPI specification.
130 * This is especially needed in order to support the execution of
131 * module-level AML code during loading of the ACPI tables.
132 *
1da177e4
LT
133 ******************************************************************************/
134
135acpi_status
4be44fcd 136acpi_ev_address_space_dispatch(union acpi_operand_object *region_obj,
9ce81784 137 union acpi_operand_object *field_obj,
4be44fcd 138 u32 function,
5df7e6cb 139 u32 region_offset, u32 bit_width, u64 *value)
1da177e4 140{
4be44fcd 141 acpi_status status;
4be44fcd
LB
142 acpi_adr_space_handler handler;
143 acpi_adr_space_setup region_setup;
144 union acpi_operand_object *handler_desc;
145 union acpi_operand_object *region_obj2;
146 void *region_context = NULL;
9ce81784 147 struct acpi_connection_info *context;
75ec6e55 148 acpi_physical_address address;
1da177e4 149
b229cf92 150 ACPI_FUNCTION_TRACE(ev_address_space_dispatch);
1da177e4 151
4be44fcd 152 region_obj2 = acpi_ns_get_secondary_object(region_obj);
1da177e4 153 if (!region_obj2) {
4be44fcd 154 return_ACPI_STATUS(AE_NOT_EXIST);
1da177e4
LT
155 }
156
157 /* Ensure that there is a handler associated with this region */
158
159 handler_desc = region_obj->region.handler;
160 if (!handler_desc) {
b8e4d893
BM
161 ACPI_ERROR((AE_INFO,
162 "No handler for Region [%4.4s] (%p) [%s]",
163 acpi_ut_get_node_name(region_obj->region.node),
164 region_obj,
165 acpi_ut_get_region_name(region_obj->region.
166 space_id)));
4be44fcd
LB
167
168 return_ACPI_STATUS(AE_NOT_EXIST);
1da177e4
LT
169 }
170
9ce81784
BM
171 context = handler_desc->address_space.context;
172
1da177e4 173 /*
9f15fc66 174 * It may be the case that the region has never been initialized.
1da177e4
LT
175 * Some types of regions require special init code
176 */
177 if (!(region_obj->region.flags & AOPOBJ_SETUP_COMPLETE)) {
9f15fc66
BM
178
179 /* This region has not been initialized yet, do it */
180
1da177e4
LT
181 region_setup = handler_desc->address_space.setup;
182 if (!region_setup) {
52fc0b02 183
1da177e4
LT
184 /* No initialization routine, exit with error */
185
b8e4d893
BM
186 ACPI_ERROR((AE_INFO,
187 "No init routine for region(%p) [%s]",
188 region_obj,
189 acpi_ut_get_region_name(region_obj->region.
190 space_id)));
4be44fcd 191 return_ACPI_STATUS(AE_NOT_EXIST);
1da177e4
LT
192 }
193
194 /*
9f15fc66
BM
195 * We must exit the interpreter because the region setup will
196 * potentially execute control methods (for example, the _REG method
197 * for this region)
1da177e4 198 */
014d433f 199 acpi_ex_exit_interpreter();
1da177e4 200
4be44fcd 201 status = region_setup(region_obj, ACPI_REGION_ACTIVATE,
9ce81784 202 context, &region_context);
1da177e4
LT
203
204 /* Re-enter the interpreter */
205
014d433f 206 acpi_ex_enter_interpreter();
1da177e4
LT
207
208 /* Check for failure of the Region Setup */
209
4be44fcd 210 if (ACPI_FAILURE(status)) {
b8e4d893
BM
211 ACPI_EXCEPTION((AE_INFO, status,
212 "During region initialization: [%s]",
213 acpi_ut_get_region_name(region_obj->
214 region.
215 space_id)));
4be44fcd 216 return_ACPI_STATUS(status);
1da177e4
LT
217 }
218
9f15fc66
BM
219 /* Region initialization may have been completed by region_setup */
220
1da177e4
LT
221 if (!(region_obj->region.flags & AOPOBJ_SETUP_COMPLETE)) {
222 region_obj->region.flags |= AOPOBJ_SETUP_COMPLETE;
223
d2e7d079
DB
224 /*
225 * Save the returned context for use in all accesses to
226 * the handler for this particular region
227 */
228 if (!(region_obj2->extra.region_context)) {
4be44fcd
LB
229 region_obj2->extra.region_context =
230 region_context;
1da177e4
LT
231 }
232 }
233 }
234
235 /* We have everything we need, we can invoke the address space handler */
236
237 handler = handler_desc->address_space.handler;
75ec6e55 238 address = (region_obj->region.address + region_offset);
1da177e4 239
9ce81784
BM
240 /*
241 * Special handling for generic_serial_bus and general_purpose_io:
242 * There are three extra parameters that must be passed to the
243 * handler via the context:
75ec6e55
BM
244 * 1) Connection buffer, a resource template from Connection() op
245 * 2) Length of the above buffer
246 * 3) Actual access length from the access_as() op
247 *
248 * In addition, for general_purpose_io, the Address and bit_width fields
249 * are defined as follows:
250 * 1) Address is the pin number index of the field (bit offset from
251 * the previous Connection)
252 * 2) bit_width is the actual bit length of the field (number of pins)
9ce81784 253 */
75ec6e55
BM
254 if ((region_obj->region.space_id == ACPI_ADR_SPACE_GSBUS) &&
255 context && field_obj) {
256
257 /* Get the Connection (resource_template) buffer */
258
259 context->connection = field_obj->field.resource_buffer;
260 context->length = field_obj->field.resource_length;
261 context->access_length = field_obj->field.access_length;
262 }
263 if ((region_obj->region.space_id == ACPI_ADR_SPACE_GPIO) &&
9ce81784
BM
264 context && field_obj) {
265
266 /* Get the Connection (resource_template) buffer */
267
268 context->connection = field_obj->field.resource_buffer;
269 context->length = field_obj->field.resource_length;
270 context->access_length = field_obj->field.access_length;
75ec6e55
BM
271 address = field_obj->field.pin_number_index;
272 bit_width = field_obj->field.bit_length;
9ce81784
BM
273 }
274
75ec6e55
BM
275 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
276 "Handler %p (@%p) Address %8.8X%8.8X [%s]\n",
277 &region_obj->region.handler->address_space, handler,
1d0a0b2f 278 ACPI_FORMAT_UINT64(address),
75ec6e55
BM
279 acpi_ut_get_region_name(region_obj->region.
280 space_id)));
281
61686124
BM
282 if (!(handler_desc->address_space.handler_flags &
283 ACPI_ADDR_HANDLER_DEFAULT_INSTALLED)) {
1da177e4
LT
284 /*
285 * For handlers other than the default (supplied) handlers, we must
286 * exit the interpreter because the handler *might* block -- we don't
287 * know what it will do, so we can't hold the lock on the intepreter.
288 */
014d433f 289 acpi_ex_exit_interpreter();
1da177e4
LT
290 }
291
292 /* Call the handler */
293
75ec6e55 294 status = handler(function, address, bit_width, value, context,
1da177e4
LT
295 region_obj2->extra.region_context);
296
4be44fcd 297 if (ACPI_FAILURE(status)) {
b8e4d893
BM
298 ACPI_EXCEPTION((AE_INFO, status, "Returned by Handler for [%s]",
299 acpi_ut_get_region_name(region_obj->region.
300 space_id)));
1da177e4
LT
301 }
302
61686124
BM
303 if (!(handler_desc->address_space.handler_flags &
304 ACPI_ADDR_HANDLER_DEFAULT_INSTALLED)) {
1da177e4
LT
305 /*
306 * We just returned from a non-default handler, we must re-enter the
307 * interpreter
308 */
014d433f 309 acpi_ex_enter_interpreter();
1da177e4
LT
310 }
311
4be44fcd 312 return_ACPI_STATUS(status);
1da177e4
LT
313}
314
1da177e4
LT
315/*******************************************************************************
316 *
317 * FUNCTION: acpi_ev_detach_region
318 *
319 * PARAMETERS: region_obj - Region Object
320 * acpi_ns_is_locked - Namespace Region Already Locked?
321 *
322 * RETURN: None
323 *
324 * DESCRIPTION: Break the association between the handler and the region
325 * this is a two way association.
326 *
327 ******************************************************************************/
328
329void
4be44fcd
LB
330acpi_ev_detach_region(union acpi_operand_object *region_obj,
331 u8 acpi_ns_is_locked)
1da177e4 332{
4be44fcd
LB
333 union acpi_operand_object *handler_obj;
334 union acpi_operand_object *obj_desc;
f953529f 335 union acpi_operand_object *start_desc;
4be44fcd
LB
336 union acpi_operand_object **last_obj_ptr;
337 acpi_adr_space_setup region_setup;
338 void **region_context;
339 union acpi_operand_object *region_obj2;
340 acpi_status status;
1da177e4 341
b229cf92 342 ACPI_FUNCTION_TRACE(ev_detach_region);
1da177e4 343
4be44fcd 344 region_obj2 = acpi_ns_get_secondary_object(region_obj);
1da177e4
LT
345 if (!region_obj2) {
346 return_VOID;
347 }
348 region_context = &region_obj2->extra.region_context;
349
350 /* Get the address handler from the region object */
351
352 handler_obj = region_obj->region.handler;
353 if (!handler_obj) {
52fc0b02 354
1da177e4
LT
355 /* This region has no handler, all done */
356
357 return_VOID;
358 }
359
360 /* Find this region in the handler's list */
361
362 obj_desc = handler_obj->address_space.region_list;
f953529f 363 start_desc = obj_desc;
1da177e4
LT
364 last_obj_ptr = &handler_obj->address_space.region_list;
365
366 while (obj_desc) {
52fc0b02 367
1da177e4
LT
368 /* Is this the correct Region? */
369
370 if (obj_desc == region_obj) {
4be44fcd
LB
371 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
372 "Removing Region %p from address handler %p\n",
373 region_obj, handler_obj));
1da177e4
LT
374
375 /* This is it, remove it from the handler's list */
376
377 *last_obj_ptr = obj_desc->region.next;
4be44fcd 378 obj_desc->region.next = NULL; /* Must clear field */
1da177e4
LT
379
380 if (acpi_ns_is_locked) {
4be44fcd
LB
381 status =
382 acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
383 if (ACPI_FAILURE(status)) {
1da177e4
LT
384 return_VOID;
385 }
386 }
387
388 /* Now stop region accesses by executing the _REG method */
389
e2066ca1
BM
390 status =
391 acpi_ev_execute_reg_method(region_obj,
392 ACPI_REG_DISCONNECT);
4be44fcd 393 if (ACPI_FAILURE(status)) {
b8e4d893
BM
394 ACPI_EXCEPTION((AE_INFO, status,
395 "from region _REG, [%s]",
396 acpi_ut_get_region_name
397 (region_obj->region.space_id)));
1da177e4
LT
398 }
399
400 if (acpi_ns_is_locked) {
4be44fcd
LB
401 status =
402 acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
403 if (ACPI_FAILURE(status)) {
1da177e4
LT
404 return_VOID;
405 }
406 }
407
f6dd9221 408 /*
9f15fc66
BM
409 * If the region has been activated, call the setup handler with
410 * the deactivate notification
f6dd9221
BM
411 */
412 if (region_obj->region.flags & AOPOBJ_SETUP_COMPLETE) {
413 region_setup = handler_obj->address_space.setup;
414 status =
415 region_setup(region_obj,
416 ACPI_REGION_DEACTIVATE,
417 handler_obj->address_space.
418 context, region_context);
1da177e4 419
d2e7d079
DB
420 /*
421 * region_context should have been released by the deactivate
422 * operation. We don't need access to it anymore here.
423 */
424 if (region_context) {
425 *region_context = NULL;
426 }
427
f6dd9221 428 /* Init routine may fail, Just ignore errors */
1da177e4 429
f6dd9221
BM
430 if (ACPI_FAILURE(status)) {
431 ACPI_EXCEPTION((AE_INFO, status,
432 "from region handler - deactivate, [%s]",
433 acpi_ut_get_region_name
434 (region_obj->region.
435 space_id)));
436 }
1da177e4 437
f6dd9221
BM
438 region_obj->region.flags &=
439 ~(AOPOBJ_SETUP_COMPLETE);
1da177e4
LT
440 }
441
1da177e4
LT
442 /*
443 * Remove handler reference in the region
444 *
f6dd9221
BM
445 * NOTE: this doesn't mean that the region goes away, the region
446 * is just inaccessible as indicated to the _REG method
1da177e4 447 *
f6dd9221
BM
448 * If the region is on the handler's list, this must be the
449 * region's handler
1da177e4
LT
450 */
451 region_obj->region.handler = NULL;
4be44fcd 452 acpi_ut_remove_reference(handler_obj);
1da177e4
LT
453
454 return_VOID;
455 }
456
457 /* Walk the linked list of handlers */
458
459 last_obj_ptr = &obj_desc->region.next;
460 obj_desc = obj_desc->region.next;
f953529f
BM
461
462 /* Prevent infinite loop if list is corrupted */
463
464 if (obj_desc == start_desc) {
465 ACPI_ERROR((AE_INFO,
466 "Circular handler list in region object %p",
467 region_obj));
468 return_VOID;
469 }
1da177e4
LT
470 }
471
472 /* If we get here, the region was not in the handler's region list */
473
4be44fcd
LB
474 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
475 "Cannot remove region %p from address handler %p\n",
476 region_obj, handler_obj));
1da177e4
LT
477
478 return_VOID;
479}
480
1da177e4
LT
481/*******************************************************************************
482 *
483 * FUNCTION: acpi_ev_attach_region
484 *
485 * PARAMETERS: handler_obj - Handler Object
486 * region_obj - Region Object
487 * acpi_ns_is_locked - Namespace Region Already Locked?
488 *
489 * RETURN: None
490 *
491 * DESCRIPTION: Create the association between the handler and the region
492 * this is a two way association.
493 *
494 ******************************************************************************/
495
496acpi_status
4be44fcd
LB
497acpi_ev_attach_region(union acpi_operand_object *handler_obj,
498 union acpi_operand_object *region_obj,
499 u8 acpi_ns_is_locked)
1da177e4
LT
500{
501
b229cf92 502 ACPI_FUNCTION_TRACE(ev_attach_region);
1da177e4 503
1d65d9a7
LZ
504 /* Install the region's handler */
505
506 if (region_obj->region.handler) {
507 return_ACPI_STATUS(AE_ALREADY_EXISTS);
508 }
509
4be44fcd
LB
510 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
511 "Adding Region [%4.4s] %p to address handler %p [%s]\n",
512 acpi_ut_get_node_name(region_obj->region.node),
513 region_obj, handler_obj,
514 acpi_ut_get_region_name(region_obj->region.
515 space_id)));
1da177e4
LT
516
517 /* Link this region to the front of the handler's list */
518
519 region_obj->region.next = handler_obj->address_space.region_list;
520 handler_obj->address_space.region_list = region_obj;
1da177e4 521 region_obj->region.handler = handler_obj;
4be44fcd 522 acpi_ut_add_reference(handler_obj);
1da177e4 523
4be44fcd 524 return_ACPI_STATUS(AE_OK);
1da177e4
LT
525}
526
849c2571
LZ
527/*******************************************************************************
528 *
529 * FUNCTION: acpi_ev_associate_reg_method
530 *
531 * PARAMETERS: region_obj - Region object
532 *
533 * RETURN: Status
534 *
535 * DESCRIPTION: Find and associate _REG method to a region
536 *
537 ******************************************************************************/
538
539void acpi_ev_associate_reg_method(union acpi_operand_object *region_obj)
540{
0dfaaa3d
BM
541 const acpi_name *reg_name_ptr =
542 ACPI_CAST_PTR(acpi_name, METHOD_NAME__REG);
849c2571
LZ
543 struct acpi_namespace_node *method_node;
544 struct acpi_namespace_node *node;
545 union acpi_operand_object *region_obj2;
546 acpi_status status;
547
548 ACPI_FUNCTION_TRACE(ev_associate_reg_method);
549
550 region_obj2 = acpi_ns_get_secondary_object(region_obj);
551 if (!region_obj2) {
552 return_VOID;
553 }
554
555 node = region_obj->region.node->parent;
556
557 /* Find any "_REG" method associated with this region definition */
558
559 status =
560 acpi_ns_search_one_scope(*reg_name_ptr, node, ACPI_TYPE_METHOD,
561 &method_node);
562 if (ACPI_SUCCESS(status)) {
563 /*
564 * The _REG method is optional and there can be only one per region
565 * definition. This will be executed when the handler is attached
566 * or removed
567 */
568 region_obj2->extra.method_REG = method_node;
569 }
570
571 return_VOID;
572}
573
1da177e4
LT
574/*******************************************************************************
575 *
42f8fb75 576 * FUNCTION: acpi_ev_execute_reg_method
1da177e4 577 *
42f8fb75
BM
578 * PARAMETERS: region_obj - Region object
579 * function - Passed to _REG: On (1) or Off (0)
1da177e4
LT
580 *
581 * RETURN: Status
582 *
42f8fb75 583 * DESCRIPTION: Execute _REG method for a region
1da177e4
LT
584 *
585 ******************************************************************************/
586
587acpi_status
42f8fb75 588acpi_ev_execute_reg_method(union acpi_operand_object *region_obj, u32 function)
1da177e4 589{
42f8fb75
BM
590 struct acpi_evaluate_info *info;
591 union acpi_operand_object *args[3];
592 union acpi_operand_object *region_obj2;
4be44fcd 593 acpi_status status;
1da177e4 594
42f8fb75 595 ACPI_FUNCTION_TRACE(ev_execute_reg_method);
1da177e4 596
42f8fb75
BM
597 region_obj2 = acpi_ns_get_secondary_object(region_obj);
598 if (!region_obj2) {
599 return_ACPI_STATUS(AE_NOT_EXIST);
1da177e4
LT
600 }
601
efaed9be
LZ
602 if (region_obj2->extra.method_REG == NULL ||
603 region_obj->region.handler == NULL ||
ebc3c9bb 604 !acpi_gbl_namespace_initialized) {
efaed9be
LZ
605 return_ACPI_STATUS(AE_OK);
606 }
607
608 /* _REG(DISCONNECT) should be paired with _REG(CONNECT) */
609
610 if ((function == ACPI_REG_CONNECT &&
611 region_obj->common.flags & AOPOBJ_REG_CONNECTED) ||
612 (function == ACPI_REG_DISCONNECT &&
613 !(region_obj->common.flags & AOPOBJ_REG_CONNECTED))) {
42f8fb75 614 return_ACPI_STATUS(AE_OK);
1da177e4
LT
615 }
616
42f8fb75 617 /* Allocate and initialize the evaluation information block */
1da177e4 618
42f8fb75
BM
619 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
620 if (!info) {
621 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
622 }
623
42f8fb75 624 info->prefix_node = region_obj2->extra.method_REG;
29a241cc 625 info->relative_pathname = NULL;
42f8fb75
BM
626 info->parameters = args;
627 info->flags = ACPI_IGNORE_RETURN_VALUE;
1da177e4
LT
628
629 /*
42f8fb75
BM
630 * The _REG method has two arguments:
631 *
632 * arg0 - Integer:
633 * Operation region space ID Same value as region_obj->Region.space_id
1da177e4 634 *
42f8fb75
BM
635 * arg1 - Integer:
636 * connection status 1 for connecting the handler, 0 for disconnecting
637 * the handler (Passed as a parameter)
1da177e4 638 */
42f8fb75
BM
639 args[0] =
640 acpi_ut_create_integer_object((u64)region_obj->region.space_id);
641 if (!args[0]) {
1da177e4 642 status = AE_NO_MEMORY;
42f8fb75 643 goto cleanup1;
1da177e4
LT
644 }
645
42f8fb75
BM
646 args[1] = acpi_ut_create_integer_object((u64)function);
647 if (!args[1]) {
648 status = AE_NO_MEMORY;
649 goto cleanup2;
650 }
1da177e4 651
42f8fb75 652 args[2] = NULL; /* Terminate list */
1da177e4 653
42f8fb75 654 /* Execute the method, no return value */
1da177e4 655
42f8fb75
BM
656 ACPI_DEBUG_EXEC(acpi_ut_display_init_pathname
657 (ACPI_TYPE_METHOD, info->prefix_node, NULL));
1da177e4 658
42f8fb75
BM
659 status = acpi_ns_evaluate(info);
660 acpi_ut_remove_reference(args[1]);
1da177e4 661
efaed9be
LZ
662 if (ACPI_FAILURE(status)) {
663 goto cleanup2;
664 }
665
666 if (function == ACPI_REG_CONNECT) {
667 region_obj->common.flags |= AOPOBJ_REG_CONNECTED;
668 } else {
669 region_obj->common.flags &= ~AOPOBJ_REG_CONNECTED;
670 }
671
10622bf8 672cleanup2:
42f8fb75 673 acpi_ut_remove_reference(args[0]);
1da177e4 674
10622bf8 675cleanup1:
42f8fb75 676 ACPI_FREE(info);
4be44fcd 677 return_ACPI_STATUS(status);
1da177e4
LT
678}
679
1da177e4
LT
680/*******************************************************************************
681 *
682 * FUNCTION: acpi_ev_execute_reg_methods
683 *
ba494bee 684 * PARAMETERS: node - Namespace node for the device
1da177e4 685 * space_id - The address space ID
d815346f 686 * function - Passed to _REG: On (1) or Off (0)
1da177e4 687 *
d815346f 688 * RETURN: None
1da177e4
LT
689 *
690 * DESCRIPTION: Run all _REG methods for the input Space ID;
691 * Note: assumes namespace is locked, or system init time.
692 *
693 ******************************************************************************/
694
d815346f 695void
4be44fcd 696acpi_ev_execute_reg_methods(struct acpi_namespace_node *node,
d815346f 697 acpi_adr_space_type space_id, u32 function)
1da177e4 698{
25823e78 699 struct acpi_reg_walk_info info;
1da177e4 700
b229cf92 701 ACPI_FUNCTION_TRACE(ev_execute_reg_methods);
1da177e4 702
25823e78 703 info.space_id = space_id;
d815346f 704 info.function = function;
25823e78
BM
705 info.reg_run_count = 0;
706
707 ACPI_DEBUG_PRINT_RAW((ACPI_DB_NAMES,
708 " Running _REG methods for SpaceId %s\n",
709 acpi_ut_get_region_name(info.space_id)));
710
1da177e4 711 /*
9f15fc66
BM
712 * Run all _REG methods for all Operation Regions for this space ID. This
713 * is a separate walk in order to handle any interdependencies between
714 * regions and _REG methods. (i.e. handlers must be installed for all
715 * regions of this Space ID before we can run any _REG methods)
1da177e4 716 */
d815346f
LZ
717 (void)acpi_ns_walk_namespace(ACPI_TYPE_ANY, node, ACPI_UINT32_MAX,
718 ACPI_NS_WALK_UNLOCK, acpi_ev_reg_run, NULL,
719 &info, NULL);
1da177e4 720
e2066ca1
BM
721 /* Special case for EC: handle "orphan" _REG methods with no region */
722
723 if (space_id == ACPI_ADR_SPACE_EC) {
8f4f5e78 724 acpi_ev_orphan_ec_reg_method(node);
e2066ca1
BM
725 }
726
25823e78
BM
727 ACPI_DEBUG_PRINT_RAW((ACPI_DB_NAMES,
728 " Executed %u _REG methods for SpaceId %s\n",
729 info.reg_run_count,
730 acpi_ut_get_region_name(info.space_id)));
731
d815346f 732 return_VOID;
1da177e4
LT
733}
734
1da177e4
LT
735/*******************************************************************************
736 *
737 * FUNCTION: acpi_ev_reg_run
738 *
739 * PARAMETERS: walk_namespace callback
740 *
ba494bee 741 * DESCRIPTION: Run _REG method for region objects of the requested spaceID
1da177e4
LT
742 *
743 ******************************************************************************/
744
44f6c012 745static acpi_status
4be44fcd
LB
746acpi_ev_reg_run(acpi_handle obj_handle,
747 u32 level, void *context, void **return_value)
1da177e4 748{
4be44fcd
LB
749 union acpi_operand_object *obj_desc;
750 struct acpi_namespace_node *node;
4be44fcd 751 acpi_status status;
25823e78 752 struct acpi_reg_walk_info *info;
1da177e4 753
25823e78 754 info = ACPI_CAST_PTR(struct acpi_reg_walk_info, context);
1da177e4
LT
755
756 /* Convert and validate the device handle */
757
f24b664d 758 node = acpi_ns_validate_handle(obj_handle);
1da177e4
LT
759 if (!node) {
760 return (AE_BAD_PARAMETER);
761 }
762
763 /*
9f15fc66
BM
764 * We only care about regions.and objects that are allowed to have address
765 * space handlers
1da177e4 766 */
4be44fcd 767 if ((node->type != ACPI_TYPE_REGION) && (node != acpi_gbl_root_node)) {
1da177e4
LT
768 return (AE_OK);
769 }
770
771 /* Check for an existing internal object */
772
4be44fcd 773 obj_desc = acpi_ns_get_attached_object(node);
1da177e4 774 if (!obj_desc) {
52fc0b02 775
1da177e4
LT
776 /* No object, just exit */
777
778 return (AE_OK);
779 }
780
781 /* Object is a Region */
782
25823e78 783 if (obj_desc->region.space_id != info->space_id) {
9f15fc66
BM
784
785 /* This region is for a different address space, just ignore it */
786
1da177e4
LT
787 return (AE_OK);
788 }
789
25823e78 790 info->reg_run_count++;
d815346f 791 status = acpi_ev_execute_reg_method(obj_desc, info->function);
1da177e4
LT
792 return (status);
793}
e2066ca1
BM
794
795/*******************************************************************************
796 *
797 * FUNCTION: acpi_ev_orphan_ec_reg_method
798 *
8f4f5e78 799 * PARAMETERS: ec_device_node - Namespace node for an EC device
e2066ca1
BM
800 *
801 * RETURN: None
802 *
803 * DESCRIPTION: Execute an "orphan" _REG method that appears under the EC
804 * device. This is a _REG method that has no corresponding region
805 * within the EC device scope. The orphan _REG method appears to
806 * have been enabled by the description of the ECDT in the ACPI
807 * specification: "The availability of the region space can be
808 * detected by providing a _REG method object underneath the
809 * Embedded Controller device."
810 *
8f4f5e78
ZR
811 * To quickly access the EC device, we use the ec_device_node used
812 * during EC handler installation. Otherwise, we would need to
813 * perform a time consuming namespace walk, executing _HID
814 * methods to find the EC device.
815 *
816 * MUTEX: Assumes the namespace is locked
e2066ca1
BM
817 *
818 ******************************************************************************/
819
8f4f5e78
ZR
820static void
821acpi_ev_orphan_ec_reg_method(struct acpi_namespace_node *ec_device_node)
e2066ca1 822{
8f4f5e78
ZR
823 acpi_handle reg_method;
824 struct acpi_namespace_node *next_node;
e2066ca1
BM
825 acpi_status status;
826 struct acpi_object_list args;
827 union acpi_object objects[2];
e2066ca1
BM
828
829 ACPI_FUNCTION_TRACE(ev_orphan_ec_reg_method);
830
8f4f5e78 831 if (!ec_device_node) {
e2066ca1
BM
832 return_VOID;
833 }
834
835 /* Namespace is currently locked, must release */
836
837 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
838
e2066ca1
BM
839 /* Get a handle to a _REG method immediately under the EC device */
840
8f4f5e78 841 status = acpi_get_handle(ec_device_node, METHOD_NAME__REG, &reg_method);
e2066ca1 842 if (ACPI_FAILURE(status)) {
8f4f5e78 843 goto exit; /* There is no _REG method present */
e2066ca1
BM
844 }
845
846 /*
847 * Execute the _REG method only if there is no Operation Region in
848 * this scope with the Embedded Controller space ID. Otherwise, it
849 * will already have been executed. Note, this allows for Regions
850 * with other space IDs to be present; but the code below will then
8f4f5e78 851 * execute the _REG method with the embedded_control space_ID argument.
e2066ca1
BM
852 */
853 next_node = acpi_ns_get_next_node(ec_device_node, NULL);
854 while (next_node) {
855 if ((next_node->type == ACPI_TYPE_REGION) &&
856 (next_node->object) &&
857 (next_node->object->region.space_id == ACPI_ADR_SPACE_EC)) {
8f4f5e78 858 goto exit; /* Do not execute the _REG */
e2066ca1 859 }
8f4f5e78 860
e2066ca1
BM
861 next_node = acpi_ns_get_next_node(ec_device_node, next_node);
862 }
863
8f4f5e78 864 /* Evaluate the _REG(embedded_control,Connect) method */
e2066ca1
BM
865
866 args.count = 2;
867 args.pointer = objects;
868 objects[0].type = ACPI_TYPE_INTEGER;
869 objects[0].integer.value = ACPI_ADR_SPACE_EC;
870 objects[1].type = ACPI_TYPE_INTEGER;
871 objects[1].integer.value = ACPI_REG_CONNECT;
872
873 status = acpi_evaluate_object(reg_method, NULL, &args, NULL);
874
10622bf8 875exit:
e2066ca1
BM
876 /* We ignore all errors from above, don't care */
877
878 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
879 return_VOID;
880}