blob: c4ab615f77fea6a133f2f1cf9865217e9d02b0d5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: nsinit - namespace initialization
4 *
5 *****************************************************************************/
6
7/*
Bob Moore6c9deb72007-02-02 19:48:24 +03008 * Copyright (C) 2000 - 2007, R. Byron Moore
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>
45#include <acpi/acnamesp.h>
46#include <acpi/acdispat.h>
47#include <acpi/acinterp.h>
Ingo Molnar5d0e6002007-02-13 13:26:24 +010048#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define _COMPONENT ACPI_NAMESPACE
Len Brown4be44fc2005-08-05 00:44:28 -040051ACPI_MODULE_NAME("nsinit")
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Robert Moore44f6c012005-04-18 22:49:35 -040053/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040054static acpi_status
55acpi_ns_init_one_object(acpi_handle obj_handle,
56 u32 level, void *context, void **return_value);
Robert Moore44f6c012005-04-18 22:49:35 -040057
58static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040059acpi_ns_init_one_device(acpi_handle obj_handle,
60 u32 nesting_level, void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Bob Mooreb229cf92006-04-21 17:15:00 -040062static acpi_status
63acpi_ns_find_ini_methods(acpi_handle obj_handle,
64 u32 nesting_level, void *context, void **return_value);
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*******************************************************************************
67 *
68 * FUNCTION: acpi_ns_initialize_objects
69 *
70 * PARAMETERS: None
71 *
72 * RETURN: Status
73 *
74 * DESCRIPTION: Walk the entire namespace and perform any necessary
75 * initialization on the objects found therein
76 *
77 ******************************************************************************/
78
Len Brown4be44fc2005-08-05 00:44:28 -040079acpi_status acpi_ns_initialize_objects(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Len Brown4be44fc2005-08-05 00:44:28 -040081 acpi_status status;
82 struct acpi_init_walk_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Bob Mooreb229cf92006-04-21 17:15:00 -040084 ACPI_FUNCTION_TRACE(ns_initialize_objects);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Len Brown4be44fc2005-08-05 00:44:28 -040086 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
87 "**** Starting initialization of namespace objects ****\n"));
88 ACPI_DEBUG_PRINT_RAW((ACPI_DB_INIT,
89 "Completing Region/Field/Buffer/Package initialization:"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 /* Set all init info to zero */
92
Len Brown4be44fc2005-08-05 00:44:28 -040093 ACPI_MEMSET(&info, 0, sizeof(struct acpi_init_walk_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 /* Walk entire namespace from the supplied root */
96
Len Brown4be44fc2005-08-05 00:44:28 -040097 status = acpi_walk_namespace(ACPI_TYPE_ANY, ACPI_ROOT_OBJECT,
98 ACPI_UINT32_MAX, acpi_ns_init_one_object,
99 &info, NULL);
100 if (ACPI_FAILURE(status)) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400101 ACPI_EXCEPTION((AE_INFO, status, "During WalkNamespace"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 }
103
Len Brown4be44fc2005-08-05 00:44:28 -0400104 ACPI_DEBUG_PRINT_RAW((ACPI_DB_INIT,
105 "\nInitialized %hd/%hd Regions %hd/%hd Fields %hd/%hd Buffers %hd/%hd Packages (%hd nodes)\n",
106 info.op_region_init, info.op_region_count,
107 info.field_init, info.field_count,
108 info.buffer_init, info.buffer_count,
109 info.package_init, info.package_count,
110 info.object_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Len Brown4be44fc2005-08-05 00:44:28 -0400112 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
113 "%hd Control Methods found\n", info.method_count));
114 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
115 "%hd Op Regions found\n", info.op_region_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Len Brown4be44fc2005-08-05 00:44:28 -0400117 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/*******************************************************************************
121 *
122 * FUNCTION: acpi_ns_initialize_devices
123 *
124 * PARAMETERS: None
125 *
126 * RETURN: acpi_status
127 *
128 * DESCRIPTION: Walk the entire namespace and initialize all ACPI devices.
129 * This means running _INI on all present devices.
130 *
131 * Note: We install PCI config space handler on region access,
132 * not here.
133 *
134 ******************************************************************************/
135
Len Brown4be44fc2005-08-05 00:44:28 -0400136acpi_status acpi_ns_initialize_devices(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Len Brown4be44fc2005-08-05 00:44:28 -0400138 acpi_status status;
139 struct acpi_device_walk_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Bob Mooreb229cf92006-04-21 17:15:00 -0400141 ACPI_FUNCTION_TRACE(ns_initialize_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 /* Init counters */
144
145 info.device_count = 0;
146 info.num_STA = 0;
147 info.num_INI = 0;
148
Len Brown4be44fc2005-08-05 00:44:28 -0400149 ACPI_DEBUG_PRINT_RAW((ACPI_DB_INIT,
Bob Mooreb229cf92006-04-21 17:15:00 -0400150 "Initializing Device/Processor/Thermal objects by executing _INI methods:"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Bob Mooreb229cf92006-04-21 17:15:00 -0400152 /* Tree analysis: find all subtrees that contain _INI methods */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Len Brown4be44fc2005-08-05 00:44:28 -0400154 status = acpi_ns_walk_namespace(ACPI_TYPE_ANY, ACPI_ROOT_OBJECT,
Bob Mooreb229cf92006-04-21 17:15:00 -0400155 ACPI_UINT32_MAX, FALSE,
156 acpi_ns_find_ini_methods, &info, NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400157 if (ACPI_FAILURE(status)) {
Bob Moore41195322006-05-26 16:36:00 -0400158 goto error_exit;
159 }
160
161 /* Allocate the evaluation information block */
162
163 info.evaluate_info =
164 ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
165 if (!info.evaluate_info) {
166 status = AE_NO_MEMORY;
167 goto error_exit;
Bob Mooreb229cf92006-04-21 17:15:00 -0400168 }
169
170 /* Walk namespace to execute all _INIs on present devices */
171
172 status = acpi_ns_walk_namespace(ACPI_TYPE_ANY, ACPI_ROOT_OBJECT,
173 ACPI_UINT32_MAX, FALSE,
174 acpi_ns_init_one_device, &info, NULL);
Bob Moore41195322006-05-26 16:36:00 -0400175
176 ACPI_FREE(info.evaluate_info);
Bob Mooreb229cf92006-04-21 17:15:00 -0400177 if (ACPI_FAILURE(status)) {
Bob Moore41195322006-05-26 16:36:00 -0400178 goto error_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180
Len Brown4be44fc2005-08-05 00:44:28 -0400181 ACPI_DEBUG_PRINT_RAW((ACPI_DB_INIT,
Bob Mooreb229cf92006-04-21 17:15:00 -0400182 "\nExecuted %hd _INI methods requiring %hd _STA executions (examined %hd objects)\n",
183 info.num_INI, info.num_STA, info.device_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Len Brown4be44fc2005-08-05 00:44:28 -0400185 return_ACPI_STATUS(status);
Bob Moore41195322006-05-26 16:36:00 -0400186
187 error_exit:
188 ACPI_EXCEPTION((AE_INFO, status, "During device initialization"));
189 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192/*******************************************************************************
193 *
194 * FUNCTION: acpi_ns_init_one_object
195 *
196 * PARAMETERS: obj_handle - Node
197 * Level - Current nesting level
198 * Context - Points to a init info struct
199 * return_value - Not used
200 *
201 * RETURN: Status
202 *
203 * DESCRIPTION: Callback from acpi_walk_namespace. Invoked for every object
204 * within the namespace.
205 *
206 * Currently, the only objects that require initialization are:
207 * 1) Methods
208 * 2) Op Regions
209 *
210 ******************************************************************************/
211
Robert Moore44f6c012005-04-18 22:49:35 -0400212static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400213acpi_ns_init_one_object(acpi_handle obj_handle,
214 u32 level, void *context, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Len Brown4be44fc2005-08-05 00:44:28 -0400216 acpi_object_type type;
Len Browna8f4af62007-03-15 04:10:36 -0400217 acpi_status status;
Len Brown4be44fc2005-08-05 00:44:28 -0400218 struct acpi_init_walk_info *info =
219 (struct acpi_init_walk_info *)context;
220 struct acpi_namespace_node *node =
221 (struct acpi_namespace_node *)obj_handle;
222 union acpi_operand_object *obj_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Bob Mooreb229cf92006-04-21 17:15:00 -0400224 ACPI_FUNCTION_NAME(ns_init_one_object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 info->object_count++;
227
228 /* And even then, we are only interested in a few object types */
229
Len Brown4be44fc2005-08-05 00:44:28 -0400230 type = acpi_ns_get_type(obj_handle);
231 obj_desc = acpi_ns_get_attached_object(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (!obj_desc) {
233 return (AE_OK);
234 }
235
236 /* Increment counters for object types we are looking for */
237
238 switch (type) {
239 case ACPI_TYPE_REGION:
240 info->op_region_count++;
241 break;
242
243 case ACPI_TYPE_BUFFER_FIELD:
244 info->field_count++;
245 break;
246
247 case ACPI_TYPE_BUFFER:
248 info->buffer_count++;
249 break;
250
251 case ACPI_TYPE_PACKAGE:
252 info->package_count++;
253 break;
254
255 default:
256
257 /* No init required, just exit now */
258 return (AE_OK);
259 }
260
261 /*
262 * If the object is already initialized, nothing else to do
263 */
264 if (obj_desc->common.flags & AOPOBJ_DATA_VALID) {
265 return (AE_OK);
266 }
267
268 /*
269 * Must lock the interpreter before executing AML code
270 */
Len Browna8f4af62007-03-15 04:10:36 -0400271 status = acpi_ex_enter_interpreter();
272 if (ACPI_FAILURE(status)) {
273 return (status);
274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 /*
277 * Each of these types can contain executable AML code within the
278 * declaration.
279 */
280 switch (type) {
281 case ACPI_TYPE_REGION:
282
283 info->op_region_init++;
Len Brown4be44fc2005-08-05 00:44:28 -0400284 status = acpi_ds_get_region_arguments(obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 break;
286
287 case ACPI_TYPE_BUFFER_FIELD:
288
289 info->field_init++;
Len Brown4be44fc2005-08-05 00:44:28 -0400290 status = acpi_ds_get_buffer_field_arguments(obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 break;
292
293 case ACPI_TYPE_BUFFER:
294
295 info->buffer_init++;
Len Brown4be44fc2005-08-05 00:44:28 -0400296 status = acpi_ds_get_buffer_arguments(obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 break;
298
299 case ACPI_TYPE_PACKAGE:
300
301 info->package_init++;
Len Brown4be44fc2005-08-05 00:44:28 -0400302 status = acpi_ds_get_package_arguments(obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 break;
304
305 default:
306 /* No other types can get here */
307 break;
308 }
309
Len Brown4be44fc2005-08-05 00:44:28 -0400310 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500311 ACPI_EXCEPTION((AE_INFO, status,
312 "Could not execute arguments for [%4.4s] (%s)",
313 acpi_ut_get_node_name(node),
314 acpi_ut_get_type_name(type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
316
317 /*
318 * Print a dot for each object unless we are going to print the entire
319 * pathname
320 */
321 if (!(acpi_dbg_level & ACPI_LV_INIT_NAMES)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400322 ACPI_DEBUG_PRINT_RAW((ACPI_DB_INIT, "."));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
324
325 /*
326 * We ignore errors from above, and always return OK, since we don't want
327 * to abort the walk on any single error.
328 */
Len Brown4be44fc2005-08-05 00:44:28 -0400329 acpi_ex_exit_interpreter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return (AE_OK);
331}
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333/*******************************************************************************
334 *
Bob Mooreb229cf92006-04-21 17:15:00 -0400335 * FUNCTION: acpi_ns_find_ini_methods
336 *
337 * PARAMETERS: acpi_walk_callback
338 *
339 * RETURN: acpi_status
340 *
341 * DESCRIPTION: Called during namespace walk. Finds objects named _INI under
342 * device/processor/thermal objects, and marks the entire subtree
343 * with a SUBTREE_HAS_INI flag. This flag is used during the
344 * subsequent device initialization walk to avoid entire subtrees
345 * that do not contain an _INI.
346 *
347 ******************************************************************************/
348
349static acpi_status
350acpi_ns_find_ini_methods(acpi_handle obj_handle,
351 u32 nesting_level, void *context, void **return_value)
352{
353 struct acpi_device_walk_info *info =
354 ACPI_CAST_PTR(struct acpi_device_walk_info, context);
355 struct acpi_namespace_node *node;
356 struct acpi_namespace_node *parent_node;
357
358 /* Keep count of device/processor/thermal objects */
359
360 node = ACPI_CAST_PTR(struct acpi_namespace_node, obj_handle);
361 if ((node->type == ACPI_TYPE_DEVICE) ||
362 (node->type == ACPI_TYPE_PROCESSOR) ||
363 (node->type == ACPI_TYPE_THERMAL)) {
364 info->device_count++;
365 return (AE_OK);
366 }
367
368 /* We are only looking for methods named _INI */
369
370 if (!ACPI_COMPARE_NAME(node->name.ascii, METHOD_NAME__INI)) {
371 return (AE_OK);
372 }
373
374 /*
375 * The only _INI methods that we care about are those that are
376 * present under Device, Processor, and Thermal objects.
377 */
378 parent_node = acpi_ns_get_parent_node(node);
379 switch (parent_node->type) {
380 case ACPI_TYPE_DEVICE:
381 case ACPI_TYPE_PROCESSOR:
382 case ACPI_TYPE_THERMAL:
383
384 /* Mark parent and bubble up the INI present flag to the root */
385
386 while (parent_node) {
387 parent_node->flags |= ANOBJ_SUBTREE_HAS_INI;
388 parent_node = acpi_ns_get_parent_node(parent_node);
389 }
390 break;
391
392 default:
393 break;
394 }
395
396 return (AE_OK);
397}
398
399/*******************************************************************************
400 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 * FUNCTION: acpi_ns_init_one_device
402 *
403 * PARAMETERS: acpi_walk_callback
404 *
405 * RETURN: acpi_status
406 *
407 * DESCRIPTION: This is called once per device soon after ACPI is enabled
408 * to initialize each device. It determines if the device is
409 * present, and if so, calls _INI.
410 *
411 ******************************************************************************/
412
Robert Moore44f6c012005-04-18 22:49:35 -0400413static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400414acpi_ns_init_one_device(acpi_handle obj_handle,
415 u32 nesting_level, void *context, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Bob Moore41195322006-05-26 16:36:00 -0400417 struct acpi_device_walk_info *walk_info =
Bob Mooreb229cf92006-04-21 17:15:00 -0400418 ACPI_CAST_PTR(struct acpi_device_walk_info, context);
Bob Moore41195322006-05-26 16:36:00 -0400419 struct acpi_evaluate_info *info = walk_info->evaluate_info;
Len Brown4be44fc2005-08-05 00:44:28 -0400420 u32 flags;
421 acpi_status status;
Bob Mooredefba1d2005-12-16 17:05:00 -0500422 struct acpi_namespace_node *device_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Bob Mooreb229cf92006-04-21 17:15:00 -0400424 ACPI_FUNCTION_TRACE(ns_init_one_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Bob Mooreb229cf92006-04-21 17:15:00 -0400426 /* We are interested in Devices, Processors and thermal_zones only */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Bob Mooreb229cf92006-04-21 17:15:00 -0400428 device_node = ACPI_CAST_PTR(struct acpi_namespace_node, obj_handle);
Bob Mooredefba1d2005-12-16 17:05:00 -0500429 if ((device_node->type != ACPI_TYPE_DEVICE) &&
430 (device_node->type != ACPI_TYPE_PROCESSOR) &&
431 (device_node->type != ACPI_TYPE_THERMAL)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400432 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434
Bob Mooreb229cf92006-04-21 17:15:00 -0400435 /*
436 * Because of an earlier namespace analysis, all subtrees that contain an
437 * _INI method are tagged.
438 *
439 * If this device subtree does not contain any _INI methods, we
440 * can exit now and stop traversing this entire subtree.
441 */
442 if (!(device_node->flags & ANOBJ_SUBTREE_HAS_INI)) {
443 return_ACPI_STATUS(AE_CTRL_DEPTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 /*
Bob Mooreb229cf92006-04-21 17:15:00 -0400447 * Run _STA to determine if this device is present and functioning. We
448 * must know this information for two important reasons (from ACPI spec):
449 *
450 * 1) We can only run _INI if the device is present.
451 * 2) We must abort the device tree walk on this subtree if the device is
452 * not present and is not functional (we will not examine the children)
453 *
454 * The _STA method is not required to be present under the device, we
455 * assume the device is present if _STA does not exist.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 */
Bob Mooreb229cf92006-04-21 17:15:00 -0400457 ACPI_DEBUG_EXEC(acpi_ut_display_init_pathname
458 (ACPI_TYPE_METHOD, device_node, METHOD_NAME__STA));
459
460 status = acpi_ut_execute_STA(device_node, &flags);
Len Brown4be44fc2005-08-05 00:44:28 -0400461 if (ACPI_FAILURE(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400462
Bob Mooreb229cf92006-04-21 17:15:00 -0400463 /* Ignore error and move on to next device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Bob Mooredefba1d2005-12-16 17:05:00 -0500465 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
467
468 /*
Bob Mooreb229cf92006-04-21 17:15:00 -0400469 * Flags == -1 means that _STA was not found. In this case, we assume that
470 * the device is both present and functional.
471 *
472 * From the ACPI spec, description of _STA:
473 *
474 * "If a device object (including the processor object) does not have an
475 * _STA object, then OSPM assumes that all of the above bits are set (in
476 * other words, the device is present, ..., and functioning)"
Bob Mooredefba1d2005-12-16 17:05:00 -0500477 */
Bob Mooreb229cf92006-04-21 17:15:00 -0400478 if (flags != ACPI_UINT32_MAX) {
Bob Moore41195322006-05-26 16:36:00 -0400479 walk_info->num_STA++;
Bob Mooreb229cf92006-04-21 17:15:00 -0400480 }
481
482 /*
483 * Examine the PRESENT and FUNCTIONING status bits
484 *
485 * Note: ACPI spec does not seem to specify behavior for the present but
486 * not functioning case, so we assume functioning if present.
487 */
488 if (!(flags & ACPI_STA_DEVICE_PRESENT)) {
489
490 /* Device is not present, we must examine the Functioning bit */
491
492 if (flags & ACPI_STA_DEVICE_FUNCTIONING) {
493 /*
494 * Device is not present but is "functioning". In this case,
495 * we will not run _INI, but we continue to examine the children
496 * of this device.
497 *
498 * From the ACPI spec, description of _STA: (Note - no mention
499 * of whether to run _INI or not on the device in question)
500 *
501 * "_STA may return bit 0 clear (not present) with bit 3 set
502 * (device is functional). This case is used to indicate a valid
503 * device for which no device driver should be loaded (for example,
504 * a bridge device.) Children of this device may be present and
505 * valid. OSPM should continue enumeration below a device whose
506 * _STA returns this bit combination"
507 */
508 return_ACPI_STATUS(AE_OK);
509 } else {
510 /*
511 * Device is not present and is not functioning. We must abort the
512 * walk of this subtree immediately -- don't look at the children
513 * of such a device.
514 *
515 * From the ACPI spec, description of _INI:
516 *
517 * "If the _STA method indicates that the device is not present,
518 * OSPM will not run the _INI and will not examine the children
519 * of the device for _INI methods"
520 */
521 return_ACPI_STATUS(AE_CTRL_DEPTH);
522 }
523 }
524
525 /*
526 * The device is present or is assumed present if no _STA exists.
527 * Run the _INI if it exists (not required to exist)
528 *
529 * Note: We know there is an _INI within this subtree, but it may not be
530 * under this particular device, it may be lower in the branch.
531 */
532 ACPI_DEBUG_EXEC(acpi_ut_display_init_pathname
533 (ACPI_TYPE_METHOD, device_node, METHOD_NAME__INI));
Bob Mooredefba1d2005-12-16 17:05:00 -0500534
Bob Moore41195322006-05-26 16:36:00 -0400535 info->prefix_node = device_node;
536 info->pathname = METHOD_NAME__INI;
537 info->parameters = NULL;
538 info->parameter_type = ACPI_PARAM_ARGS;
539 info->flags = ACPI_IGNORE_RETURN_VALUE;
Bob Mooredefba1d2005-12-16 17:05:00 -0500540
Ingo Molnar5d0e6002007-02-13 13:26:24 +0100541 /*
542 * Some hardware relies on this being executed as atomically
543 * as possible (without an NMI being received in the middle of
544 * this) - so disable NMIs and initialize the device:
545 */
546 acpi_nmi_disable();
Bob Moore41195322006-05-26 16:36:00 -0400547 status = acpi_ns_evaluate(info);
Ingo Molnar5d0e6002007-02-13 13:26:24 +0100548 acpi_nmi_enable();
549
Bob Mooreb229cf92006-04-21 17:15:00 -0400550 if (ACPI_SUCCESS(status)) {
Bob Moore41195322006-05-26 16:36:00 -0400551 walk_info->num_INI++;
Bob Moore52fc0b02006-10-02 00:00:00 -0400552
Bob Mooreb229cf92006-04-21 17:15:00 -0400553 if ((acpi_dbg_level <= ACPI_LV_ALL_EXCEPTIONS) &&
554 (!(acpi_dbg_level & ACPI_LV_INFO))) {
555 ACPI_DEBUG_PRINT_RAW((ACPI_DB_INIT, "."));
556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
Bob Mooreb229cf92006-04-21 17:15:00 -0400558#ifdef ACPI_DEBUG_OUTPUT
559 else if (status != AE_NOT_FOUND) {
560
561 /* Ignore error and move on to next device */
562
Bob Moore41195322006-05-26 16:36:00 -0400563 char *scope_name =
564 acpi_ns_get_external_pathname(info->resolved_node);
Bob Mooreb229cf92006-04-21 17:15:00 -0400565
566 ACPI_EXCEPTION((AE_INFO, status, "during %s._INI execution",
567 scope_name));
568 ACPI_FREE(scope_name);
569 }
570#endif
571
Bob Moore4c90ece2006-06-08 16:29:00 -0400572 /* Ignore errors from above */
573
574 status = AE_OK;
575
Bob Moore41195322006-05-26 16:36:00 -0400576 /*
577 * The _INI method has been run if present; call the Global Initialization
578 * Handler for this device.
579 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 if (acpi_gbl_init_handler) {
Len Brown4be44fc2005-08-05 00:44:28 -0400581 status =
Bob Moore41195322006-05-26 16:36:00 -0400582 acpi_gbl_init_handler(device_node, ACPI_INIT_DEVICE_INI);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
584
Bob Moore41195322006-05-26 16:36:00 -0400585 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}