blob: f3f1fb45c3dcd542bcbb871960d060fbb15a304b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: evrgnini- ACPI address_space (op_region) init
4 *
5 *****************************************************************************/
6
7/*
Len Brown75a44ce2008-04-23 23:00:13 -04008 * Copyright (C) 2000 - 2008, 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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#define _COMPONENT ACPI_EVENTS
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("evrgnini")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Bob Mooreb7a69802007-02-02 19:48:21 +030052/* Local prototypes */
53static u8 acpi_ev_match_pci_root_bridge(char *id);
54
55static u8 acpi_ev_is_pci_root_bridge(struct acpi_namespace_node *node);
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/*******************************************************************************
58 *
59 * FUNCTION: acpi_ev_system_memory_region_setup
60 *
61 * PARAMETERS: Handle - Region we are interested in
62 * Function - Start or stop
63 * handler_context - Address space handler context
64 * region_context - Region specific context
65 *
66 * RETURN: Status
67 *
Robert Moore44f6c012005-04-18 22:49:35 -040068 * DESCRIPTION: Setup a system_memory operation region
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 *
70 ******************************************************************************/
Bob Mooreb7a69802007-02-02 19:48:21 +030071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040073acpi_ev_system_memory_region_setup(acpi_handle handle,
74 u32 function,
75 void *handler_context, void **region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Len Brown4be44fc2005-08-05 00:44:28 -040077 union acpi_operand_object *region_desc =
78 (union acpi_operand_object *)handle;
79 struct acpi_mem_space_context *local_region_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Bob Mooreb229cf92006-04-21 17:15:00 -040081 ACPI_FUNCTION_TRACE(ev_system_memory_region_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 if (function == ACPI_REGION_DEACTIVATE) {
84 if (*region_context) {
Bob Moore793c2382006-03-31 00:00:00 -050085 local_region_context =
86 (struct acpi_mem_space_context *)*region_context;
87
88 /* Delete a cached mapping if present */
89
90 if (local_region_context->mapped_length) {
91 acpi_os_unmap_memory(local_region_context->
92 mapped_logical_address,
93 local_region_context->
94 mapped_length);
95 }
96 ACPI_FREE(local_region_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 *region_context = NULL;
98 }
Len Brown4be44fc2005-08-05 00:44:28 -040099 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
101
102 /* Create a new context */
103
Len Brown4be44fc2005-08-05 00:44:28 -0400104 local_region_context =
Bob Moore83135242006-10-03 00:00:00 -0400105 ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_mem_space_context));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 if (!(local_region_context)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400107 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 }
109
110 /* Save the region length and address for use in the handler */
111
112 local_region_context->length = region_desc->region.length;
113 local_region_context->address = region_desc->region.address;
114
115 *region_context = local_region_context;
Len Brown4be44fc2005-08-05 00:44:28 -0400116 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119/*******************************************************************************
120 *
121 * FUNCTION: acpi_ev_io_space_region_setup
122 *
123 * PARAMETERS: Handle - Region we are interested in
124 * Function - Start or stop
125 * handler_context - Address space handler context
126 * region_context - Region specific context
127 *
128 * RETURN: Status
129 *
Robert Moore44f6c012005-04-18 22:49:35 -0400130 * DESCRIPTION: Setup a IO operation region
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 *
132 ******************************************************************************/
133
134acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400135acpi_ev_io_space_region_setup(acpi_handle handle,
136 u32 function,
137 void *handler_context, void **region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Bob Mooreb229cf92006-04-21 17:15:00 -0400139 ACPI_FUNCTION_TRACE(ev_io_space_region_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 if (function == ACPI_REGION_DEACTIVATE) {
142 *region_context = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400143 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 *region_context = handler_context;
145 }
146
Len Brown4be44fc2005-08-05 00:44:28 -0400147 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/*******************************************************************************
151 *
152 * FUNCTION: acpi_ev_pci_config_region_setup
153 *
Robert Moore44f6c012005-04-18 22:49:35 -0400154 * PARAMETERS: Handle - Region we are interested in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 * Function - Start or stop
156 * handler_context - Address space handler context
157 * region_context - Region specific context
158 *
159 * RETURN: Status
160 *
Robert Moore44f6c012005-04-18 22:49:35 -0400161 * DESCRIPTION: Setup a PCI_Config operation region
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 *
163 * MUTEX: Assumes namespace is not locked
164 *
165 ******************************************************************************/
166
167acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400168acpi_ev_pci_config_region_setup(acpi_handle handle,
169 u32 function,
170 void *handler_context, void **region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Len Brown4be44fc2005-08-05 00:44:28 -0400172 acpi_status status = AE_OK;
173 acpi_integer pci_value;
174 struct acpi_pci_id *pci_id = *region_context;
175 union acpi_operand_object *handler_obj;
176 struct acpi_namespace_node *parent_node;
177 struct acpi_namespace_node *pci_root_node;
Bob Mooreb7a69802007-02-02 19:48:21 +0300178 struct acpi_namespace_node *pci_device_node;
Len Brown4be44fc2005-08-05 00:44:28 -0400179 union acpi_operand_object *region_obj =
180 (union acpi_operand_object *)handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Bob Mooreb229cf92006-04-21 17:15:00 -0400182 ACPI_FUNCTION_TRACE(ev_pci_config_region_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 handler_obj = region_obj->region.handler;
185 if (!handler_obj) {
186 /*
187 * No installed handler. This shouldn't happen because the dispatch
188 * routine checks before we get here, but we check again just in case.
189 */
Len Brown4be44fc2005-08-05 00:44:28 -0400190 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
191 "Attempting to init a region %p, with no handler\n",
192 region_obj));
193 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195
196 *region_context = NULL;
197 if (function == ACPI_REGION_DEACTIVATE) {
198 if (pci_id) {
Bob Moore83135242006-10-03 00:00:00 -0400199 ACPI_FREE(pci_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
Len Brown4be44fc2005-08-05 00:44:28 -0400201 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203
Len Brown4be44fc2005-08-05 00:44:28 -0400204 parent_node = acpi_ns_get_parent_node(region_obj->region.node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 /*
207 * Get the _SEG and _BBN values from the device upon which the handler
208 * is installed.
209 *
210 * We need to get the _SEG and _BBN objects relative to the PCI BUS device.
211 * This is the device the handler has been registered to handle.
212 */
213
214 /*
215 * If the address_space.Node is still pointing to the root, we need
216 * to scan upward for a PCI Root bridge and re-associate the op_region
217 * handlers with that device.
218 */
219 if (handler_obj->address_space.node == acpi_gbl_root_node) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 /* Start search from the parent object */
222
223 pci_root_node = parent_node;
224 while (pci_root_node != acpi_gbl_root_node) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400225
Bob Mooreb7a69802007-02-02 19:48:21 +0300226 /* Get the _HID/_CID in order to detect a root_bridge */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Bob Mooreb7a69802007-02-02 19:48:21 +0300228 if (acpi_ev_is_pci_root_bridge(pci_root_node)) {
229
230 /* Install a handler for this PCI root bridge */
231
Len Brownfd350942007-05-09 23:34:35 -0400232 status =
233 acpi_install_address_space_handler((acpi_handle) pci_root_node, ACPI_ADR_SPACE_PCI_CONFIG, ACPI_DEFAULT_HANDLER, NULL, NULL);
Bob Mooreb7a69802007-02-02 19:48:21 +0300234 if (ACPI_FAILURE(status)) {
235 if (status == AE_SAME_HANDLER) {
236 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800237 * It is OK if the handler is already installed on the
238 * root bridge. Still need to return a context object
239 * for the new PCI_Config operation region, however.
Bob Mooreb7a69802007-02-02 19:48:21 +0300240 */
241 status = AE_OK;
242 } else {
243 ACPI_EXCEPTION((AE_INFO, status,
244 "Could not install PciConfig handler for Root Bridge %4.4s",
245 acpi_ut_get_node_name
246 (pci_root_node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
Bob Mooreb7a69802007-02-02 19:48:21 +0300249 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251
Len Brown4be44fc2005-08-05 00:44:28 -0400252 pci_root_node = acpi_ns_get_parent_node(pci_root_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254
255 /* PCI root bridge not found, use namespace root node */
Len Brown4be44fc2005-08-05 00:44:28 -0400256 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 pci_root_node = handler_obj->address_space.node;
258 }
259
260 /*
261 * If this region is now initialized, we are done.
262 * (install_address_space_handler could have initialized it)
263 */
264 if (region_obj->region.flags & AOPOBJ_SETUP_COMPLETE) {
Len Brown4be44fc2005-08-05 00:44:28 -0400265 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
267
268 /* Region is still not initialized. Create a new context */
269
Bob Moore83135242006-10-03 00:00:00 -0400270 pci_id = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_pci_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (!pci_id) {
Len Brown4be44fc2005-08-05 00:44:28 -0400272 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 }
274
275 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800276 * For PCI_Config space access, we need the segment, bus, device and
277 * function numbers. Acquire them here.
Bob Mooreb7a69802007-02-02 19:48:21 +0300278 *
279 * Find the parent device object. (This allows the operation region to be
280 * within a subscope under the device, such as a control method.)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 */
Bob Mooreb7a69802007-02-02 19:48:21 +0300282 pci_device_node = region_obj->region.node;
283 while (pci_device_node && (pci_device_node->type != ACPI_TYPE_DEVICE)) {
284 pci_device_node = acpi_ns_get_parent_node(pci_device_node);
285 }
286
287 if (!pci_device_node) {
Jesper Juhle6917312007-07-19 00:48:03 +0200288 ACPI_FREE(pci_id);
Bob Mooreb7a69802007-02-02 19:48:21 +0300289 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800293 * Get the PCI device and function numbers from the _ADR object contained
294 * in the parent's scope.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 */
Len Brown4be44fc2005-08-05 00:44:28 -0400296 status =
Bob Mooreb7a69802007-02-02 19:48:21 +0300297 acpi_ut_evaluate_numeric_object(METHOD_NAME__ADR, pci_device_node,
Len Brown4be44fc2005-08-05 00:44:28 -0400298 &pci_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800301 * The default is zero, and since the allocation above zeroed the data,
302 * just do nothing on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 */
Len Brown4be44fc2005-08-05 00:44:28 -0400304 if (ACPI_SUCCESS(status)) {
305 pci_id->device = ACPI_HIWORD(ACPI_LODWORD(pci_value));
306 pci_id->function = ACPI_LOWORD(ACPI_LODWORD(pci_value));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
308
309 /* The PCI segment number comes from the _SEG method */
310
Len Brown4be44fc2005-08-05 00:44:28 -0400311 status =
312 acpi_ut_evaluate_numeric_object(METHOD_NAME__SEG, pci_root_node,
313 &pci_value);
314 if (ACPI_SUCCESS(status)) {
315 pci_id->segment = ACPI_LOWORD(pci_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
317
318 /* The PCI bus number comes from the _BBN method */
319
Len Brown4be44fc2005-08-05 00:44:28 -0400320 status =
321 acpi_ut_evaluate_numeric_object(METHOD_NAME__BBN, pci_root_node,
322 &pci_value);
323 if (ACPI_SUCCESS(status)) {
324 pci_id->bus = ACPI_LOWORD(pci_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
326
327 /* Complete this device's pci_id */
328
Len Brown4be44fc2005-08-05 00:44:28 -0400329 acpi_os_derive_pci_id(pci_root_node, region_obj->region.node, &pci_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 *region_context = pci_id;
Len Brown4be44fc2005-08-05 00:44:28 -0400332 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335/*******************************************************************************
336 *
Bob Mooreb7a69802007-02-02 19:48:21 +0300337 * FUNCTION: acpi_ev_match_pci_root_bridge
338 *
339 * PARAMETERS: Id - The HID/CID in string format
340 *
341 * RETURN: TRUE if the Id is a match for a PCI/PCI-Express Root Bridge
342 *
343 * DESCRIPTION: Determine if the input ID is a PCI Root Bridge ID.
344 *
345 ******************************************************************************/
346
347static u8 acpi_ev_match_pci_root_bridge(char *id)
348{
349
350 /*
351 * Check if this is a PCI root.
352 * ACPI 3.0+: check for a PCI Express root also.
353 */
354 if (!(ACPI_STRNCMP(id,
355 PCI_ROOT_HID_STRING,
356 sizeof(PCI_ROOT_HID_STRING))) ||
357 !(ACPI_STRNCMP(id,
358 PCI_EXPRESS_ROOT_HID_STRING,
359 sizeof(PCI_EXPRESS_ROOT_HID_STRING)))) {
360 return (TRUE);
361 }
362
363 return (FALSE);
364}
365
366/*******************************************************************************
367 *
368 * FUNCTION: acpi_ev_is_pci_root_bridge
369 *
370 * PARAMETERS: Node - Device node being examined
371 *
372 * RETURN: TRUE if device is a PCI/PCI-Express Root Bridge
373 *
374 * DESCRIPTION: Determine if the input device represents a PCI Root Bridge by
375 * examining the _HID and _CID for the device.
376 *
377 ******************************************************************************/
378
379static u8 acpi_ev_is_pci_root_bridge(struct acpi_namespace_node *node)
380{
381 acpi_status status;
Thomas Renninger8c8eb782007-07-23 14:43:32 +0200382 struct acpica_device_id hid;
Bob Mooreb7a69802007-02-02 19:48:21 +0300383 struct acpi_compatible_id_list *cid;
Bob Moore67a119f2008-06-10 13:42:13 +0800384 u32 i;
Bob Mooreb7a69802007-02-02 19:48:21 +0300385
Bob Moore9f15fc62008-11-12 16:01:56 +0800386 /* Get the _HID and check for a PCI Root Bridge */
387
Bob Mooreb7a69802007-02-02 19:48:21 +0300388 status = acpi_ut_execute_HID(node, &hid);
389 if (ACPI_FAILURE(status)) {
390 return (FALSE);
391 }
392
393 if (acpi_ev_match_pci_root_bridge(hid.value)) {
394 return (TRUE);
395 }
396
Bob Moore9f15fc62008-11-12 16:01:56 +0800397 /* The _HID did not match. Get the _CID and check for a PCI Root Bridge */
398
Bob Mooreb7a69802007-02-02 19:48:21 +0300399 status = acpi_ut_execute_CID(node, &cid);
400 if (ACPI_FAILURE(status)) {
401 return (FALSE);
402 }
403
404 /* Check all _CIDs in the returned list */
405
406 for (i = 0; i < cid->count; i++) {
407 if (acpi_ev_match_pci_root_bridge(cid->id[i].value)) {
408 ACPI_FREE(cid);
409 return (TRUE);
410 }
411 }
412
413 ACPI_FREE(cid);
414 return (FALSE);
415}
416
417/*******************************************************************************
418 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 * FUNCTION: acpi_ev_pci_bar_region_setup
420 *
421 * PARAMETERS: Handle - Region we are interested in
422 * Function - Start or stop
423 * handler_context - Address space handler context
424 * region_context - Region specific context
425 *
426 * RETURN: Status
427 *
Robert Moore44f6c012005-04-18 22:49:35 -0400428 * DESCRIPTION: Setup a pci_bAR operation region
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 *
430 * MUTEX: Assumes namespace is not locked
431 *
432 ******************************************************************************/
433
434acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400435acpi_ev_pci_bar_region_setup(acpi_handle handle,
436 u32 function,
437 void *handler_context, void **region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Bob Mooreb229cf92006-04-21 17:15:00 -0400439 ACPI_FUNCTION_TRACE(ev_pci_bar_region_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Len Brown4be44fc2005-08-05 00:44:28 -0400441 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444/*******************************************************************************
445 *
446 * FUNCTION: acpi_ev_cmos_region_setup
447 *
448 * PARAMETERS: Handle - Region we are interested in
449 * Function - Start or stop
450 * handler_context - Address space handler context
451 * region_context - Region specific context
452 *
453 * RETURN: Status
454 *
Robert Moore44f6c012005-04-18 22:49:35 -0400455 * DESCRIPTION: Setup a CMOS operation region
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 *
457 * MUTEX: Assumes namespace is not locked
458 *
459 ******************************************************************************/
460
461acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400462acpi_ev_cmos_region_setup(acpi_handle handle,
463 u32 function,
464 void *handler_context, void **region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
Bob Mooreb229cf92006-04-21 17:15:00 -0400466 ACPI_FUNCTION_TRACE(ev_cmos_region_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Len Brown4be44fc2005-08-05 00:44:28 -0400468 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471/*******************************************************************************
472 *
473 * FUNCTION: acpi_ev_default_region_setup
474 *
475 * PARAMETERS: Handle - Region we are interested in
476 * Function - Start or stop
477 * handler_context - Address space handler context
478 * region_context - Region specific context
479 *
480 * RETURN: Status
481 *
Robert Moore44f6c012005-04-18 22:49:35 -0400482 * DESCRIPTION: Default region initialization
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 *
484 ******************************************************************************/
485
486acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400487acpi_ev_default_region_setup(acpi_handle handle,
488 u32 function,
489 void *handler_context, void **region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Bob Mooreb229cf92006-04-21 17:15:00 -0400491 ACPI_FUNCTION_TRACE(ev_default_region_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 if (function == ACPI_REGION_DEACTIVATE) {
494 *region_context = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400495 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 *region_context = handler_context;
497 }
498
Len Brown4be44fc2005-08-05 00:44:28 -0400499 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502/*******************************************************************************
503 *
504 * FUNCTION: acpi_ev_initialize_region
505 *
506 * PARAMETERS: region_obj - Region we are initializing
507 * acpi_ns_locked - Is namespace locked?
508 *
509 * RETURN: Status
510 *
511 * DESCRIPTION: Initializes the region, finds any _REG methods and saves them
512 * for execution at a later time
513 *
514 * Get the appropriate address space handler for a newly
515 * created region.
516 *
Bob Moore9f15fc62008-11-12 16:01:56 +0800517 * This also performs address space specific initialization. For
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 * example, PCI regions must have an _ADR object that contains
Bob Moore9f15fc62008-11-12 16:01:56 +0800519 * a PCI address in the scope of the definition. This address is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 * required to perform an access to PCI config space.
521 *
Bob Moorec9e3ba22007-02-02 19:48:18 +0300522 * MUTEX: Interpreter should be unlocked, because we may run the _REG
523 * method for this region.
524 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 ******************************************************************************/
526
527acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400528acpi_ev_initialize_region(union acpi_operand_object *region_obj,
529 u8 acpi_ns_locked)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Len Brown4be44fc2005-08-05 00:44:28 -0400531 union acpi_operand_object *handler_obj;
532 union acpi_operand_object *obj_desc;
533 acpi_adr_space_type space_id;
534 struct acpi_namespace_node *node;
535 acpi_status status;
536 struct acpi_namespace_node *method_node;
537 acpi_name *reg_name_ptr = (acpi_name *) METHOD_NAME__REG;
538 union acpi_operand_object *region_obj2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Bob Mooreb229cf92006-04-21 17:15:00 -0400540 ACPI_FUNCTION_TRACE_U32(ev_initialize_region, acpi_ns_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 if (!region_obj) {
Len Brown4be44fc2005-08-05 00:44:28 -0400543 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
545
546 if (region_obj->common.flags & AOPOBJ_OBJECT_INITIALIZED) {
Len Brown4be44fc2005-08-05 00:44:28 -0400547 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549
Len Brown4be44fc2005-08-05 00:44:28 -0400550 region_obj2 = acpi_ns_get_secondary_object(region_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (!region_obj2) {
Len Brown4be44fc2005-08-05 00:44:28 -0400552 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554
Len Brown4be44fc2005-08-05 00:44:28 -0400555 node = acpi_ns_get_parent_node(region_obj->region.node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 space_id = region_obj->region.space_id;
557
558 /* Setup defaults */
559
560 region_obj->region.handler = NULL;
561 region_obj2->extra.method_REG = NULL;
562 region_obj->common.flags &= ~(AOPOBJ_SETUP_COMPLETE);
563 region_obj->common.flags |= AOPOBJ_OBJECT_INITIALIZED;
564
565 /* Find any "_REG" method associated with this region definition */
566
Bob Moore41195322006-05-26 16:36:00 -0400567 status =
568 acpi_ns_search_one_scope(*reg_name_ptr, node, ACPI_TYPE_METHOD,
569 &method_node);
Len Brown4be44fc2005-08-05 00:44:28 -0400570 if (ACPI_SUCCESS(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 /*
572 * The _REG method is optional and there can be only one per region
Bob Moore9f15fc62008-11-12 16:01:56 +0800573 * definition. This will be executed when the handler is attached
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 * or removed
575 */
576 region_obj2->extra.method_REG = method_node;
577 }
578
579 /*
580 * The following loop depends upon the root Node having no parent
581 * ie: acpi_gbl_root_node->parent_entry being set to NULL
582 */
583 while (node) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /* Check to see if a handler exists */
586
587 handler_obj = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400588 obj_desc = acpi_ns_get_attached_object(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (obj_desc) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 /* Can only be a handler if the object exists */
592
593 switch (node->type) {
594 case ACPI_TYPE_DEVICE:
595
596 handler_obj = obj_desc->device.handler;
597 break;
598
599 case ACPI_TYPE_PROCESSOR:
600
601 handler_obj = obj_desc->processor.handler;
602 break;
603
604 case ACPI_TYPE_THERMAL:
605
606 handler_obj = obj_desc->thermal_zone.handler;
607 break;
608
609 default:
610 /* Ignore other objects */
611 break;
612 }
613
614 while (handler_obj) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 /* Is this handler of the correct type? */
617
Len Brown4be44fc2005-08-05 00:44:28 -0400618 if (handler_obj->address_space.space_id ==
619 space_id) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 /* Found correct handler */
622
Len Brown4be44fc2005-08-05 00:44:28 -0400623 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
624 "Found handler %p for region %p in obj %p\n",
625 handler_obj,
626 region_obj,
627 obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Len Brown4be44fc2005-08-05 00:44:28 -0400629 status =
630 acpi_ev_attach_region(handler_obj,
631 region_obj,
632 acpi_ns_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 /*
635 * Tell all users that this region is usable by running the _REG
636 * method
637 */
638 if (acpi_ns_locked) {
Len Brown4be44fc2005-08-05 00:44:28 -0400639 status =
640 acpi_ut_release_mutex
641 (ACPI_MTX_NAMESPACE);
642 if (ACPI_FAILURE(status)) {
643 return_ACPI_STATUS
644 (status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
646 }
647
Len Brown4be44fc2005-08-05 00:44:28 -0400648 status =
649 acpi_ev_execute_reg_method
650 (region_obj, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 if (acpi_ns_locked) {
Len Brown4be44fc2005-08-05 00:44:28 -0400653 status =
654 acpi_ut_acquire_mutex
655 (ACPI_MTX_NAMESPACE);
656 if (ACPI_FAILURE(status)) {
657 return_ACPI_STATUS
658 (status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
660 }
661
Len Brown4be44fc2005-08-05 00:44:28 -0400662 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664
665 /* Try next handler in the list */
666
667 handler_obj = handler_obj->address_space.next;
668 }
669 }
670
Bob Moore9f15fc62008-11-12 16:01:56 +0800671 /* This node does not have the handler we need; Pop up one level */
672
Len Brown4be44fc2005-08-05 00:44:28 -0400673 node = acpi_ns_get_parent_node(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
675
676 /* If we get here, there is no handler for this region */
677
Len Brown4be44fc2005-08-05 00:44:28 -0400678 ACPI_DEBUG_PRINT((ACPI_DB_OPREGION,
Bob Mooreb229cf92006-04-21 17:15:00 -0400679 "No handler for RegionType %s(%X) (RegionObj %p)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400680 acpi_ut_get_region_name(space_id), space_id,
681 region_obj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Len Brown4be44fc2005-08-05 00:44:28 -0400683 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684}