1 1.1 jruoho /****************************************************************************** 2 1.1 jruoho * 3 1.1 jruoho * Module Name: nsinit - namespace initialization 4 1.1 jruoho * 5 1.1 jruoho *****************************************************************************/ 6 1.1 jruoho 7 1.22 christos /****************************************************************************** 8 1.22 christos * 9 1.22 christos * 1. Copyright Notice 10 1.22 christos * 11 1.23 christos * Some or all of this work - Copyright (c) 1999 - 2025, Intel Corp. 12 1.1 jruoho * All rights reserved. 13 1.1 jruoho * 14 1.22 christos * 2. License 15 1.22 christos * 16 1.22 christos * 2.1. This is your license from Intel Corp. under its intellectual property 17 1.22 christos * rights. You may have additional license terms from the party that provided 18 1.22 christos * you this software, covering your right to use that party's intellectual 19 1.22 christos * property rights. 20 1.22 christos * 21 1.22 christos * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a 22 1.22 christos * copy of the source code appearing in this file ("Covered Code") an 23 1.22 christos * irrevocable, perpetual, worldwide license under Intel's copyrights in the 24 1.22 christos * base code distributed originally by Intel ("Original Intel Code") to copy, 25 1.22 christos * make derivatives, distribute, use and display any portion of the Covered 26 1.22 christos * Code in any form, with the right to sublicense such rights; and 27 1.22 christos * 28 1.22 christos * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent 29 1.22 christos * license (with the right to sublicense), under only those claims of Intel 30 1.22 christos * patents that are infringed by the Original Intel Code, to make, use, sell, 31 1.22 christos * offer to sell, and import the Covered Code and derivative works thereof 32 1.22 christos * solely to the minimum extent necessary to exercise the above copyright 33 1.22 christos * license, and in no event shall the patent license extend to any additions 34 1.22 christos * to or modifications of the Original Intel Code. No other license or right 35 1.22 christos * is granted directly or by implication, estoppel or otherwise; 36 1.22 christos * 37 1.22 christos * The above copyright and patent license is granted only if the following 38 1.22 christos * conditions are met: 39 1.22 christos * 40 1.22 christos * 3. Conditions 41 1.22 christos * 42 1.22 christos * 3.1. Redistribution of Source with Rights to Further Distribute Source. 43 1.22 christos * Redistribution of source code of any substantial portion of the Covered 44 1.22 christos * Code or modification with rights to further distribute source must include 45 1.22 christos * the above Copyright Notice, the above License, this list of Conditions, 46 1.22 christos * and the following Disclaimer and Export Compliance provision. In addition, 47 1.22 christos * Licensee must cause all Covered Code to which Licensee contributes to 48 1.22 christos * contain a file documenting the changes Licensee made to create that Covered 49 1.22 christos * Code and the date of any change. Licensee must include in that file the 50 1.22 christos * documentation of any changes made by any predecessor Licensee. Licensee 51 1.22 christos * must include a prominent statement that the modification is derived, 52 1.22 christos * directly or indirectly, from Original Intel Code. 53 1.22 christos * 54 1.22 christos * 3.2. Redistribution of Source with no Rights to Further Distribute Source. 55 1.22 christos * Redistribution of source code of any substantial portion of the Covered 56 1.22 christos * Code or modification without rights to further distribute source must 57 1.22 christos * include the following Disclaimer and Export Compliance provision in the 58 1.22 christos * documentation and/or other materials provided with distribution. In 59 1.22 christos * addition, Licensee may not authorize further sublicense of source of any 60 1.22 christos * portion of the Covered Code, and must include terms to the effect that the 61 1.22 christos * license from Licensee to its licensee is limited to the intellectual 62 1.22 christos * property embodied in the software Licensee provides to its licensee, and 63 1.22 christos * not to intellectual property embodied in modifications its licensee may 64 1.22 christos * make. 65 1.22 christos * 66 1.22 christos * 3.3. Redistribution of Executable. Redistribution in executable form of any 67 1.22 christos * substantial portion of the Covered Code or modification must reproduce the 68 1.22 christos * above Copyright Notice, and the following Disclaimer and Export Compliance 69 1.22 christos * provision in the documentation and/or other materials provided with the 70 1.22 christos * distribution. 71 1.22 christos * 72 1.22 christos * 3.4. Intel retains all right, title, and interest in and to the Original 73 1.22 christos * Intel Code. 74 1.22 christos * 75 1.22 christos * 3.5. Neither the name Intel nor any other trademark owned or controlled by 76 1.22 christos * Intel shall be used in advertising or otherwise to promote the sale, use or 77 1.22 christos * other dealings in products derived from or relating to the Covered Code 78 1.22 christos * without prior written authorization from Intel. 79 1.22 christos * 80 1.22 christos * 4. Disclaimer and Export Compliance 81 1.22 christos * 82 1.22 christos * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED 83 1.22 christos * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE 84 1.22 christos * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE, 85 1.22 christos * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY 86 1.22 christos * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY 87 1.22 christos * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A 88 1.22 christos * PARTICULAR PURPOSE. 89 1.22 christos * 90 1.22 christos * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES 91 1.22 christos * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR 92 1.22 christos * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT, 93 1.22 christos * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY 94 1.22 christos * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL 95 1.22 christos * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS 96 1.22 christos * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY 97 1.22 christos * LIMITED REMEDY. 98 1.22 christos * 99 1.22 christos * 4.3. Licensee shall not export, either directly or indirectly, any of this 100 1.22 christos * software or system incorporating such software without first obtaining any 101 1.22 christos * required license or other approval from the U. S. Department of Commerce or 102 1.22 christos * any other agency or department of the United States Government. In the 103 1.22 christos * event Licensee exports any such software from the United States or 104 1.22 christos * re-exports any such software from a foreign destination, Licensee shall 105 1.22 christos * ensure that the distribution and export/re-export of the software is in 106 1.22 christos * compliance with all laws, regulations, orders, or other restrictions of the 107 1.22 christos * U.S. Export Administration Regulations. Licensee agrees that neither it nor 108 1.22 christos * any of its subsidiaries will export/re-export any technical data, process, 109 1.22 christos * software, or service, directly or indirectly, to any country for which the 110 1.22 christos * United States government or any agency thereof requires an export license, 111 1.22 christos * other governmental approval, or letter of assurance, without first obtaining 112 1.22 christos * such license, approval or letter. 113 1.22 christos * 114 1.22 christos ***************************************************************************** 115 1.22 christos * 116 1.22 christos * Alternatively, you may choose to be licensed under the terms of the 117 1.22 christos * following license: 118 1.22 christos * 119 1.3 jruoho * Redistribution and use in source and binary forms, with or without 120 1.3 jruoho * modification, are permitted provided that the following conditions 121 1.3 jruoho * are met: 122 1.3 jruoho * 1. Redistributions of source code must retain the above copyright 123 1.3 jruoho * notice, this list of conditions, and the following disclaimer, 124 1.3 jruoho * without modification. 125 1.3 jruoho * 2. Redistributions in binary form must reproduce at minimum a disclaimer 126 1.3 jruoho * substantially similar to the "NO WARRANTY" disclaimer below 127 1.3 jruoho * ("Disclaimer") and any redistribution must be conditioned upon 128 1.3 jruoho * including a substantially similar Disclaimer requirement for further 129 1.3 jruoho * binary redistribution. 130 1.3 jruoho * 3. Neither the names of the above-listed copyright holders nor the names 131 1.3 jruoho * of any contributors may be used to endorse or promote products derived 132 1.3 jruoho * from this software without specific prior written permission. 133 1.3 jruoho * 134 1.3 jruoho * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 135 1.3 jruoho * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 136 1.19 christos * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 137 1.3 jruoho * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 138 1.22 christos * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 139 1.22 christos * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 140 1.22 christos * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 141 1.22 christos * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 142 1.22 christos * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 143 1.22 christos * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 144 1.22 christos * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 145 1.22 christos * 146 1.22 christos * Alternatively, you may choose to be licensed under the terms of the 147 1.22 christos * GNU General Public License ("GPL") version 2 as published by the Free 148 1.22 christos * Software Foundation. 149 1.22 christos * 150 1.22 christos *****************************************************************************/ 151 1.1 jruoho 152 1.1 jruoho #include "acpi.h" 153 1.1 jruoho #include "accommon.h" 154 1.1 jruoho #include "acnamesp.h" 155 1.1 jruoho #include "acdispat.h" 156 1.1 jruoho #include "acinterp.h" 157 1.11 christos #include "acevents.h" 158 1.1 jruoho 159 1.1 jruoho #define _COMPONENT ACPI_NAMESPACE 160 1.1 jruoho ACPI_MODULE_NAME ("nsinit") 161 1.1 jruoho 162 1.1 jruoho /* Local prototypes */ 163 1.1 jruoho 164 1.1 jruoho static ACPI_STATUS 165 1.1 jruoho AcpiNsInitOneObject ( 166 1.1 jruoho ACPI_HANDLE ObjHandle, 167 1.1 jruoho UINT32 Level, 168 1.1 jruoho void *Context, 169 1.1 jruoho void **ReturnValue); 170 1.1 jruoho 171 1.1 jruoho static ACPI_STATUS 172 1.1 jruoho AcpiNsInitOneDevice ( 173 1.1 jruoho ACPI_HANDLE ObjHandle, 174 1.1 jruoho UINT32 NestingLevel, 175 1.1 jruoho void *Context, 176 1.1 jruoho void **ReturnValue); 177 1.1 jruoho 178 1.1 jruoho static ACPI_STATUS 179 1.1 jruoho AcpiNsFindIniMethods ( 180 1.1 jruoho ACPI_HANDLE ObjHandle, 181 1.1 jruoho UINT32 NestingLevel, 182 1.1 jruoho void *Context, 183 1.1 jruoho void **ReturnValue); 184 1.1 jruoho 185 1.1 jruoho 186 1.1 jruoho /******************************************************************************* 187 1.1 jruoho * 188 1.1 jruoho * FUNCTION: AcpiNsInitializeObjects 189 1.1 jruoho * 190 1.1 jruoho * PARAMETERS: None 191 1.1 jruoho * 192 1.1 jruoho * RETURN: Status 193 1.1 jruoho * 194 1.1 jruoho * DESCRIPTION: Walk the entire namespace and perform any necessary 195 1.1 jruoho * initialization on the objects found therein 196 1.1 jruoho * 197 1.1 jruoho ******************************************************************************/ 198 1.1 jruoho 199 1.1 jruoho ACPI_STATUS 200 1.1 jruoho AcpiNsInitializeObjects ( 201 1.1 jruoho void) 202 1.1 jruoho { 203 1.1 jruoho ACPI_STATUS Status; 204 1.1 jruoho ACPI_INIT_WALK_INFO Info; 205 1.1 jruoho 206 1.1 jruoho 207 1.1 jruoho ACPI_FUNCTION_TRACE (NsInitializeObjects); 208 1.1 jruoho 209 1.1 jruoho 210 1.11 christos ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, 211 1.11 christos "[Init] Completing Initialization of ACPI Objects\n")); 212 1.1 jruoho ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, 213 1.1 jruoho "**** Starting initialization of namespace objects ****\n")); 214 1.1 jruoho ACPI_DEBUG_PRINT_RAW ((ACPI_DB_INIT, 215 1.17 christos "Final data object initialization: ")); 216 1.1 jruoho 217 1.17 christos /* Clear the info block */ 218 1.1 jruoho 219 1.9 christos memset (&Info, 0, sizeof (ACPI_INIT_WALK_INFO)); 220 1.1 jruoho 221 1.1 jruoho /* Walk entire namespace from the supplied root */ 222 1.1 jruoho 223 1.17 christos /* 224 1.17 christos * TBD: will become ACPI_TYPE_PACKAGE as this type object 225 1.17 christos * is now the only one that supports deferred initialization 226 1.17 christos * (forward references). 227 1.17 christos */ 228 1.1 jruoho Status = AcpiWalkNamespace (ACPI_TYPE_ANY, ACPI_ROOT_OBJECT, 229 1.17 christos ACPI_UINT32_MAX, AcpiNsInitOneObject, NULL, &Info, NULL); 230 1.1 jruoho if (ACPI_FAILURE (Status)) 231 1.1 jruoho { 232 1.1 jruoho ACPI_EXCEPTION ((AE_INFO, Status, "During WalkNamespace")); 233 1.1 jruoho } 234 1.1 jruoho 235 1.1 jruoho ACPI_DEBUG_PRINT_RAW ((ACPI_DB_INIT, 236 1.17 christos "Namespace contains %u (0x%X) objects\n", 237 1.17 christos Info.ObjectCount, 238 1.17 christos Info.ObjectCount)); 239 1.1 jruoho 240 1.1 jruoho ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, 241 1.6 christos "%u Control Methods found\n%u Op Regions found\n", 242 1.6 christos Info.MethodCount, Info.OpRegionCount)); 243 1.1 jruoho 244 1.1 jruoho return_ACPI_STATUS (AE_OK); 245 1.1 jruoho } 246 1.1 jruoho 247 1.1 jruoho 248 1.1 jruoho /******************************************************************************* 249 1.1 jruoho * 250 1.1 jruoho * FUNCTION: AcpiNsInitializeDevices 251 1.1 jruoho * 252 1.1 jruoho * PARAMETERS: None 253 1.1 jruoho * 254 1.1 jruoho * RETURN: ACPI_STATUS 255 1.1 jruoho * 256 1.1 jruoho * DESCRIPTION: Walk the entire namespace and initialize all ACPI devices. 257 1.1 jruoho * This means running _INI on all present devices. 258 1.1 jruoho * 259 1.1 jruoho * Note: We install PCI config space handler on region access, 260 1.1 jruoho * not here. 261 1.1 jruoho * 262 1.1 jruoho ******************************************************************************/ 263 1.1 jruoho 264 1.1 jruoho ACPI_STATUS 265 1.1 jruoho AcpiNsInitializeDevices ( 266 1.11 christos UINT32 Flags) 267 1.1 jruoho { 268 1.11 christos ACPI_STATUS Status = AE_OK; 269 1.1 jruoho ACPI_DEVICE_WALK_INFO Info; 270 1.11 christos ACPI_HANDLE Handle; 271 1.1 jruoho 272 1.1 jruoho 273 1.1 jruoho ACPI_FUNCTION_TRACE (NsInitializeDevices); 274 1.1 jruoho 275 1.1 jruoho 276 1.11 christos if (!(Flags & ACPI_NO_DEVICE_INIT)) 277 1.11 christos { 278 1.11 christos ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, 279 1.11 christos "[Init] Initializing ACPI Devices\n")); 280 1.1 jruoho 281 1.11 christos /* Init counters */ 282 1.1 jruoho 283 1.11 christos Info.DeviceCount = 0; 284 1.11 christos Info.Num_STA = 0; 285 1.11 christos Info.Num_INI = 0; 286 1.1 jruoho 287 1.11 christos ACPI_DEBUG_PRINT_RAW ((ACPI_DB_INIT, 288 1.11 christos "Initializing Device/Processor/Thermal objects " 289 1.11 christos "and executing _INI/_STA methods:\n")); 290 1.1 jruoho 291 1.11 christos /* Tree analysis: find all subtrees that contain _INI methods */ 292 1.1 jruoho 293 1.11 christos Status = AcpiNsWalkNamespace (ACPI_TYPE_ANY, ACPI_ROOT_OBJECT, 294 1.11 christos ACPI_UINT32_MAX, FALSE, AcpiNsFindIniMethods, NULL, &Info, NULL); 295 1.11 christos if (ACPI_FAILURE (Status)) 296 1.11 christos { 297 1.11 christos goto ErrorExit; 298 1.11 christos } 299 1.1 jruoho 300 1.11 christos /* Allocate the evaluation information block */ 301 1.1 jruoho 302 1.11 christos Info.EvaluateInfo = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_EVALUATE_INFO)); 303 1.11 christos if (!Info.EvaluateInfo) 304 1.11 christos { 305 1.11 christos Status = AE_NO_MEMORY; 306 1.11 christos goto ErrorExit; 307 1.11 christos } 308 1.1 jruoho 309 1.11 christos /* 310 1.11 christos * Execute the "global" _INI method that may appear at the root. 311 1.11 christos * This support is provided for Windows compatibility (Vista+) and 312 1.11 christos * is not part of the ACPI specification. 313 1.11 christos */ 314 1.11 christos Info.EvaluateInfo->PrefixNode = AcpiGbl_RootNode; 315 1.11 christos Info.EvaluateInfo->RelativePathname = METHOD_NAME__INI; 316 1.11 christos Info.EvaluateInfo->Parameters = NULL; 317 1.11 christos Info.EvaluateInfo->Flags = ACPI_IGNORE_RETURN_VALUE; 318 1.1 jruoho 319 1.11 christos Status = AcpiNsEvaluate (Info.EvaluateInfo); 320 1.11 christos if (ACPI_SUCCESS (Status)) 321 1.11 christos { 322 1.11 christos Info.Num_INI++; 323 1.11 christos } 324 1.1 jruoho 325 1.11 christos /* 326 1.11 christos * Execute \_SB._INI. 327 1.11 christos * There appears to be a strict order requirement for \_SB._INI, 328 1.11 christos * which should be evaluated before any _REG evaluations. 329 1.11 christos */ 330 1.11 christos Status = AcpiGetHandle (NULL, "\\_SB", &Handle); 331 1.11 christos if (ACPI_SUCCESS (Status)) 332 1.11 christos { 333 1.11 christos memset (Info.EvaluateInfo, 0, sizeof (ACPI_EVALUATE_INFO)); 334 1.11 christos Info.EvaluateInfo->PrefixNode = Handle; 335 1.11 christos Info.EvaluateInfo->RelativePathname = METHOD_NAME__INI; 336 1.11 christos Info.EvaluateInfo->Parameters = NULL; 337 1.11 christos Info.EvaluateInfo->Flags = ACPI_IGNORE_RETURN_VALUE; 338 1.11 christos 339 1.11 christos Status = AcpiNsEvaluate (Info.EvaluateInfo); 340 1.11 christos if (ACPI_SUCCESS (Status)) 341 1.11 christos { 342 1.11 christos Info.Num_INI++; 343 1.11 christos } 344 1.11 christos } 345 1.11 christos } 346 1.1 jruoho 347 1.1 jruoho /* 348 1.11 christos * Run all _REG methods 349 1.11 christos * 350 1.11 christos * Note: Any objects accessed by the _REG methods will be automatically 351 1.11 christos * initialized, even if they contain executable AML (see the call to 352 1.11 christos * AcpiNsInitializeObjects below). 353 1.11 christos * 354 1.11 christos * Note: According to the ACPI specification, we actually needn't execute 355 1.11 christos * _REG for SystemMemory/SystemIo operation regions, but for PCI_Config 356 1.11 christos * operation regions, it is required to evaluate _REG for those on a PCI 357 1.11 christos * root bus that doesn't contain _BBN object. So this code is kept here 358 1.11 christos * in order not to break things. 359 1.1 jruoho */ 360 1.11 christos if (!(Flags & ACPI_NO_ADDRESS_SPACE_INIT)) 361 1.1 jruoho { 362 1.11 christos ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, 363 1.11 christos "[Init] Executing _REG OpRegion methods\n")); 364 1.11 christos 365 1.11 christos Status = AcpiEvInitializeOpRegions (); 366 1.11 christos if (ACPI_FAILURE (Status)) 367 1.11 christos { 368 1.11 christos goto ErrorExit; 369 1.11 christos } 370 1.1 jruoho } 371 1.1 jruoho 372 1.11 christos if (!(Flags & ACPI_NO_DEVICE_INIT)) 373 1.1 jruoho { 374 1.11 christos /* Walk namespace to execute all _INIs on present devices */ 375 1.11 christos 376 1.11 christos Status = AcpiNsWalkNamespace (ACPI_TYPE_ANY, ACPI_ROOT_OBJECT, 377 1.11 christos ACPI_UINT32_MAX, FALSE, AcpiNsInitOneDevice, NULL, &Info, NULL); 378 1.11 christos 379 1.11 christos /* 380 1.11 christos * Any _OSI requests should be completed by now. If the BIOS has 381 1.11 christos * requested any Windows OSI strings, we will always truncate 382 1.11 christos * I/O addresses to 16 bits -- for Windows compatibility. 383 1.11 christos */ 384 1.11 christos if (AcpiGbl_OsiData >= ACPI_OSI_WIN_2000) 385 1.11 christos { 386 1.11 christos AcpiGbl_TruncateIoAddresses = TRUE; 387 1.11 christos } 388 1.11 christos 389 1.11 christos ACPI_FREE (Info.EvaluateInfo); 390 1.11 christos if (ACPI_FAILURE (Status)) 391 1.11 christos { 392 1.11 christos goto ErrorExit; 393 1.11 christos } 394 1.11 christos 395 1.11 christos ACPI_DEBUG_PRINT_RAW ((ACPI_DB_INIT, 396 1.11 christos " Executed %u _INI methods requiring %u _STA executions " 397 1.11 christos "(examined %u objects)\n", 398 1.11 christos Info.Num_INI, Info.Num_STA, Info.DeviceCount)); 399 1.1 jruoho } 400 1.1 jruoho 401 1.1 jruoho return_ACPI_STATUS (Status); 402 1.1 jruoho 403 1.1 jruoho 404 1.1 jruoho ErrorExit: 405 1.1 jruoho ACPI_EXCEPTION ((AE_INFO, Status, "During device initialization")); 406 1.1 jruoho return_ACPI_STATUS (Status); 407 1.1 jruoho } 408 1.1 jruoho 409 1.1 jruoho 410 1.1 jruoho /******************************************************************************* 411 1.1 jruoho * 412 1.15 christos * FUNCTION: AcpiNsInitOnePackage 413 1.15 christos * 414 1.15 christos * PARAMETERS: ObjHandle - Node 415 1.15 christos * Level - Current nesting level 416 1.15 christos * Context - Not used 417 1.15 christos * ReturnValue - Not used 418 1.15 christos * 419 1.15 christos * RETURN: Status 420 1.15 christos * 421 1.15 christos * DESCRIPTION: Callback from AcpiWalkNamespace. Invoked for every package 422 1.15 christos * within the namespace. Used during dynamic load of an SSDT. 423 1.15 christos * 424 1.15 christos ******************************************************************************/ 425 1.15 christos 426 1.15 christos ACPI_STATUS 427 1.15 christos AcpiNsInitOnePackage ( 428 1.15 christos ACPI_HANDLE ObjHandle, 429 1.15 christos UINT32 Level, 430 1.15 christos void *Context, 431 1.15 christos void **ReturnValue) 432 1.15 christos { 433 1.15 christos ACPI_STATUS Status; 434 1.15 christos ACPI_OPERAND_OBJECT *ObjDesc; 435 1.15 christos ACPI_NAMESPACE_NODE *Node = (ACPI_NAMESPACE_NODE *) ObjHandle; 436 1.15 christos 437 1.15 christos 438 1.15 christos ObjDesc = AcpiNsGetAttachedObject (Node); 439 1.15 christos if (!ObjDesc) 440 1.15 christos { 441 1.15 christos return (AE_OK); 442 1.15 christos } 443 1.15 christos 444 1.15 christos /* Exit if package is already initialized */ 445 1.15 christos 446 1.15 christos if (ObjDesc->Package.Flags & AOPOBJ_DATA_VALID) 447 1.15 christos { 448 1.15 christos return (AE_OK); 449 1.15 christos } 450 1.15 christos 451 1.15 christos Status = AcpiDsGetPackageArguments (ObjDesc); 452 1.15 christos if (ACPI_FAILURE (Status)) 453 1.15 christos { 454 1.15 christos return (AE_OK); 455 1.15 christos } 456 1.15 christos 457 1.15 christos Status = AcpiUtWalkPackageTree (ObjDesc, NULL, AcpiDsInitPackageElement, 458 1.15 christos NULL); 459 1.15 christos if (ACPI_FAILURE (Status)) 460 1.15 christos { 461 1.15 christos return (AE_OK); 462 1.15 christos } 463 1.15 christos 464 1.15 christos ObjDesc->Package.Flags |= AOPOBJ_DATA_VALID; 465 1.15 christos return (AE_OK); 466 1.15 christos } 467 1.15 christos 468 1.15 christos 469 1.15 christos /******************************************************************************* 470 1.15 christos * 471 1.1 jruoho * FUNCTION: AcpiNsInitOneObject 472 1.1 jruoho * 473 1.1 jruoho * PARAMETERS: ObjHandle - Node 474 1.1 jruoho * Level - Current nesting level 475 1.1 jruoho * Context - Points to a init info struct 476 1.1 jruoho * ReturnValue - Not used 477 1.1 jruoho * 478 1.1 jruoho * RETURN: Status 479 1.1 jruoho * 480 1.4 christos * DESCRIPTION: Callback from AcpiWalkNamespace. Invoked for every object 481 1.14 christos * within the namespace. 482 1.1 jruoho * 483 1.1 jruoho * Currently, the only objects that require initialization are: 484 1.1 jruoho * 1) Methods 485 1.1 jruoho * 2) Op Regions 486 1.1 jruoho * 487 1.1 jruoho ******************************************************************************/ 488 1.1 jruoho 489 1.1 jruoho static ACPI_STATUS 490 1.1 jruoho AcpiNsInitOneObject ( 491 1.1 jruoho ACPI_HANDLE ObjHandle, 492 1.1 jruoho UINT32 Level, 493 1.1 jruoho void *Context, 494 1.1 jruoho void **ReturnValue) 495 1.1 jruoho { 496 1.1 jruoho ACPI_OBJECT_TYPE Type; 497 1.1 jruoho ACPI_STATUS Status = AE_OK; 498 1.1 jruoho ACPI_INIT_WALK_INFO *Info = (ACPI_INIT_WALK_INFO *) Context; 499 1.1 jruoho ACPI_NAMESPACE_NODE *Node = (ACPI_NAMESPACE_NODE *) ObjHandle; 500 1.1 jruoho ACPI_OPERAND_OBJECT *ObjDesc; 501 1.1 jruoho 502 1.1 jruoho 503 1.1 jruoho ACPI_FUNCTION_NAME (NsInitOneObject); 504 1.1 jruoho 505 1.1 jruoho 506 1.1 jruoho Info->ObjectCount++; 507 1.1 jruoho 508 1.1 jruoho /* And even then, we are only interested in a few object types */ 509 1.1 jruoho 510 1.1 jruoho Type = AcpiNsGetType (ObjHandle); 511 1.1 jruoho ObjDesc = AcpiNsGetAttachedObject (Node); 512 1.1 jruoho if (!ObjDesc) 513 1.1 jruoho { 514 1.1 jruoho return (AE_OK); 515 1.1 jruoho } 516 1.1 jruoho 517 1.1 jruoho /* Increment counters for object types we are looking for */ 518 1.1 jruoho 519 1.1 jruoho switch (Type) 520 1.1 jruoho { 521 1.1 jruoho case ACPI_TYPE_REGION: 522 1.4 christos 523 1.1 jruoho Info->OpRegionCount++; 524 1.1 jruoho break; 525 1.1 jruoho 526 1.1 jruoho case ACPI_TYPE_BUFFER_FIELD: 527 1.4 christos 528 1.1 jruoho Info->FieldCount++; 529 1.1 jruoho break; 530 1.1 jruoho 531 1.1 jruoho case ACPI_TYPE_LOCAL_BANK_FIELD: 532 1.4 christos 533 1.1 jruoho Info->FieldCount++; 534 1.1 jruoho break; 535 1.1 jruoho 536 1.1 jruoho case ACPI_TYPE_BUFFER: 537 1.4 christos 538 1.1 jruoho Info->BufferCount++; 539 1.1 jruoho break; 540 1.1 jruoho 541 1.1 jruoho case ACPI_TYPE_PACKAGE: 542 1.4 christos 543 1.1 jruoho Info->PackageCount++; 544 1.1 jruoho break; 545 1.1 jruoho 546 1.1 jruoho default: 547 1.1 jruoho 548 1.1 jruoho /* No init required, just exit now */ 549 1.4 christos 550 1.1 jruoho return (AE_OK); 551 1.1 jruoho } 552 1.1 jruoho 553 1.1 jruoho /* If the object is already initialized, nothing else to do */ 554 1.1 jruoho 555 1.1 jruoho if (ObjDesc->Common.Flags & AOPOBJ_DATA_VALID) 556 1.1 jruoho { 557 1.1 jruoho return (AE_OK); 558 1.1 jruoho } 559 1.1 jruoho 560 1.1 jruoho /* Must lock the interpreter before executing AML code */ 561 1.1 jruoho 562 1.1 jruoho AcpiExEnterInterpreter (); 563 1.1 jruoho 564 1.1 jruoho /* 565 1.17 christos * Only initialization of Package objects can be deferred, in order 566 1.17 christos * to support forward references. 567 1.1 jruoho */ 568 1.1 jruoho switch (Type) 569 1.1 jruoho { 570 1.17 christos case ACPI_TYPE_LOCAL_BANK_FIELD: 571 1.1 jruoho 572 1.17 christos /* TBD: BankFields do not require deferred init, remove this code */ 573 1.1 jruoho 574 1.1 jruoho Info->FieldInit++; 575 1.1 jruoho Status = AcpiDsGetBankFieldArguments (ObjDesc); 576 1.1 jruoho break; 577 1.1 jruoho 578 1.1 jruoho case ACPI_TYPE_PACKAGE: 579 1.1 jruoho 580 1.15 christos /* Complete the initialization/resolution of the package object */ 581 1.15 christos 582 1.1 jruoho Info->PackageInit++; 583 1.15 christos Status = AcpiNsInitOnePackage (ObjHandle, Level, NULL, NULL); 584 1.1 jruoho break; 585 1.1 jruoho 586 1.1 jruoho default: 587 1.4 christos 588 1.17 christos /* No other types should get here */ 589 1.4 christos 590 1.17 christos Status = AE_TYPE; 591 1.17 christos ACPI_EXCEPTION ((AE_INFO, Status, 592 1.17 christos "Opcode is not deferred [%4.4s] (%s)", 593 1.17 christos AcpiUtGetNodeName (Node), AcpiUtGetTypeName (Type))); 594 1.1 jruoho break; 595 1.1 jruoho } 596 1.1 jruoho 597 1.1 jruoho if (ACPI_FAILURE (Status)) 598 1.1 jruoho { 599 1.1 jruoho ACPI_EXCEPTION ((AE_INFO, Status, 600 1.1 jruoho "Could not execute arguments for [%4.4s] (%s)", 601 1.1 jruoho AcpiUtGetNodeName (Node), AcpiUtGetTypeName (Type))); 602 1.1 jruoho } 603 1.1 jruoho 604 1.1 jruoho /* 605 1.1 jruoho * We ignore errors from above, and always return OK, since we don't want 606 1.1 jruoho * to abort the walk on any single error. 607 1.1 jruoho */ 608 1.1 jruoho AcpiExExitInterpreter (); 609 1.1 jruoho return (AE_OK); 610 1.1 jruoho } 611 1.1 jruoho 612 1.1 jruoho 613 1.1 jruoho /******************************************************************************* 614 1.1 jruoho * 615 1.1 jruoho * FUNCTION: AcpiNsFindIniMethods 616 1.1 jruoho * 617 1.1 jruoho * PARAMETERS: ACPI_WALK_CALLBACK 618 1.1 jruoho * 619 1.1 jruoho * RETURN: ACPI_STATUS 620 1.1 jruoho * 621 1.1 jruoho * DESCRIPTION: Called during namespace walk. Finds objects named _INI under 622 1.1 jruoho * device/processor/thermal objects, and marks the entire subtree 623 1.1 jruoho * with a SUBTREE_HAS_INI flag. This flag is used during the 624 1.1 jruoho * subsequent device initialization walk to avoid entire subtrees 625 1.1 jruoho * that do not contain an _INI. 626 1.1 jruoho * 627 1.1 jruoho ******************************************************************************/ 628 1.1 jruoho 629 1.1 jruoho static ACPI_STATUS 630 1.1 jruoho AcpiNsFindIniMethods ( 631 1.1 jruoho ACPI_HANDLE ObjHandle, 632 1.1 jruoho UINT32 NestingLevel, 633 1.1 jruoho void *Context, 634 1.1 jruoho void **ReturnValue) 635 1.1 jruoho { 636 1.1 jruoho ACPI_DEVICE_WALK_INFO *Info = ACPI_CAST_PTR (ACPI_DEVICE_WALK_INFO, Context); 637 1.1 jruoho ACPI_NAMESPACE_NODE *Node; 638 1.1 jruoho ACPI_NAMESPACE_NODE *ParentNode; 639 1.1 jruoho 640 1.1 jruoho 641 1.1 jruoho /* Keep count of device/processor/thermal objects */ 642 1.1 jruoho 643 1.1 jruoho Node = ACPI_CAST_PTR (ACPI_NAMESPACE_NODE, ObjHandle); 644 1.1 jruoho if ((Node->Type == ACPI_TYPE_DEVICE) || 645 1.1 jruoho (Node->Type == ACPI_TYPE_PROCESSOR) || 646 1.1 jruoho (Node->Type == ACPI_TYPE_THERMAL)) 647 1.1 jruoho { 648 1.1 jruoho Info->DeviceCount++; 649 1.1 jruoho return (AE_OK); 650 1.1 jruoho } 651 1.1 jruoho 652 1.1 jruoho /* We are only looking for methods named _INI */ 653 1.1 jruoho 654 1.16 christos if (!ACPI_COMPARE_NAMESEG (Node->Name.Ascii, METHOD_NAME__INI)) 655 1.1 jruoho { 656 1.1 jruoho return (AE_OK); 657 1.1 jruoho } 658 1.1 jruoho 659 1.1 jruoho /* 660 1.1 jruoho * The only _INI methods that we care about are those that are 661 1.1 jruoho * present under Device, Processor, and Thermal objects. 662 1.1 jruoho */ 663 1.1 jruoho ParentNode = Node->Parent; 664 1.1 jruoho switch (ParentNode->Type) 665 1.1 jruoho { 666 1.1 jruoho case ACPI_TYPE_DEVICE: 667 1.1 jruoho case ACPI_TYPE_PROCESSOR: 668 1.1 jruoho case ACPI_TYPE_THERMAL: 669 1.1 jruoho 670 1.1 jruoho /* Mark parent and bubble up the INI present flag to the root */ 671 1.1 jruoho 672 1.1 jruoho while (ParentNode) 673 1.1 jruoho { 674 1.1 jruoho ParentNode->Flags |= ANOBJ_SUBTREE_HAS_INI; 675 1.1 jruoho ParentNode = ParentNode->Parent; 676 1.1 jruoho } 677 1.1 jruoho break; 678 1.1 jruoho 679 1.1 jruoho default: 680 1.4 christos 681 1.1 jruoho break; 682 1.1 jruoho } 683 1.1 jruoho 684 1.1 jruoho return (AE_OK); 685 1.1 jruoho } 686 1.1 jruoho 687 1.1 jruoho 688 1.1 jruoho /******************************************************************************* 689 1.1 jruoho * 690 1.1 jruoho * FUNCTION: AcpiNsInitOneDevice 691 1.1 jruoho * 692 1.1 jruoho * PARAMETERS: ACPI_WALK_CALLBACK 693 1.1 jruoho * 694 1.1 jruoho * RETURN: ACPI_STATUS 695 1.1 jruoho * 696 1.1 jruoho * DESCRIPTION: This is called once per device soon after ACPI is enabled 697 1.1 jruoho * to initialize each device. It determines if the device is 698 1.1 jruoho * present, and if so, calls _INI. 699 1.1 jruoho * 700 1.1 jruoho ******************************************************************************/ 701 1.1 jruoho 702 1.1 jruoho static ACPI_STATUS 703 1.1 jruoho AcpiNsInitOneDevice ( 704 1.1 jruoho ACPI_HANDLE ObjHandle, 705 1.1 jruoho UINT32 NestingLevel, 706 1.1 jruoho void *Context, 707 1.1 jruoho void **ReturnValue) 708 1.1 jruoho { 709 1.1 jruoho ACPI_DEVICE_WALK_INFO *WalkInfo = ACPI_CAST_PTR (ACPI_DEVICE_WALK_INFO, Context); 710 1.1 jruoho ACPI_EVALUATE_INFO *Info = WalkInfo->EvaluateInfo; 711 1.1 jruoho UINT32 Flags; 712 1.1 jruoho ACPI_STATUS Status; 713 1.1 jruoho ACPI_NAMESPACE_NODE *DeviceNode; 714 1.1 jruoho 715 1.1 jruoho 716 1.1 jruoho ACPI_FUNCTION_TRACE (NsInitOneDevice); 717 1.1 jruoho 718 1.1 jruoho 719 1.1 jruoho /* We are interested in Devices, Processors and ThermalZones only */ 720 1.1 jruoho 721 1.1 jruoho DeviceNode = ACPI_CAST_PTR (ACPI_NAMESPACE_NODE, ObjHandle); 722 1.1 jruoho if ((DeviceNode->Type != ACPI_TYPE_DEVICE) && 723 1.1 jruoho (DeviceNode->Type != ACPI_TYPE_PROCESSOR) && 724 1.1 jruoho (DeviceNode->Type != ACPI_TYPE_THERMAL)) 725 1.1 jruoho { 726 1.1 jruoho return_ACPI_STATUS (AE_OK); 727 1.1 jruoho } 728 1.1 jruoho 729 1.1 jruoho /* 730 1.1 jruoho * Because of an earlier namespace analysis, all subtrees that contain an 731 1.1 jruoho * _INI method are tagged. 732 1.1 jruoho * 733 1.1 jruoho * If this device subtree does not contain any _INI methods, we 734 1.1 jruoho * can exit now and stop traversing this entire subtree. 735 1.1 jruoho */ 736 1.1 jruoho if (!(DeviceNode->Flags & ANOBJ_SUBTREE_HAS_INI)) 737 1.1 jruoho { 738 1.1 jruoho return_ACPI_STATUS (AE_CTRL_DEPTH); 739 1.1 jruoho } 740 1.1 jruoho 741 1.1 jruoho /* 742 1.1 jruoho * Run _STA to determine if this device is present and functioning. We 743 1.1 jruoho * must know this information for two important reasons (from ACPI spec): 744 1.1 jruoho * 745 1.1 jruoho * 1) We can only run _INI if the device is present. 746 1.1 jruoho * 2) We must abort the device tree walk on this subtree if the device is 747 1.1 jruoho * not present and is not functional (we will not examine the children) 748 1.1 jruoho * 749 1.1 jruoho * The _STA method is not required to be present under the device, we 750 1.1 jruoho * assume the device is present if _STA does not exist. 751 1.1 jruoho */ 752 1.1 jruoho ACPI_DEBUG_EXEC (AcpiUtDisplayInitPathname ( 753 1.1 jruoho ACPI_TYPE_METHOD, DeviceNode, METHOD_NAME__STA)); 754 1.1 jruoho 755 1.1 jruoho Status = AcpiUtExecute_STA (DeviceNode, &Flags); 756 1.1 jruoho if (ACPI_FAILURE (Status)) 757 1.1 jruoho { 758 1.1 jruoho /* Ignore error and move on to next device */ 759 1.1 jruoho 760 1.1 jruoho return_ACPI_STATUS (AE_OK); 761 1.1 jruoho } 762 1.1 jruoho 763 1.1 jruoho /* 764 1.1 jruoho * Flags == -1 means that _STA was not found. In this case, we assume that 765 1.1 jruoho * the device is both present and functional. 766 1.1 jruoho * 767 1.1 jruoho * From the ACPI spec, description of _STA: 768 1.1 jruoho * 769 1.1 jruoho * "If a device object (including the processor object) does not have an 770 1.1 jruoho * _STA object, then OSPM assumes that all of the above bits are set (in 771 1.1 jruoho * other words, the device is present, ..., and functioning)" 772 1.1 jruoho */ 773 1.1 jruoho if (Flags != ACPI_UINT32_MAX) 774 1.1 jruoho { 775 1.1 jruoho WalkInfo->Num_STA++; 776 1.1 jruoho } 777 1.1 jruoho 778 1.1 jruoho /* 779 1.1 jruoho * Examine the PRESENT and FUNCTIONING status bits 780 1.1 jruoho * 781 1.1 jruoho * Note: ACPI spec does not seem to specify behavior for the present but 782 1.1 jruoho * not functioning case, so we assume functioning if present. 783 1.1 jruoho */ 784 1.1 jruoho if (!(Flags & ACPI_STA_DEVICE_PRESENT)) 785 1.1 jruoho { 786 1.1 jruoho /* Device is not present, we must examine the Functioning bit */ 787 1.1 jruoho 788 1.1 jruoho if (Flags & ACPI_STA_DEVICE_FUNCTIONING) 789 1.1 jruoho { 790 1.1 jruoho /* 791 1.1 jruoho * Device is not present but is "functioning". In this case, 792 1.1 jruoho * we will not run _INI, but we continue to examine the children 793 1.1 jruoho * of this device. 794 1.1 jruoho * 795 1.1 jruoho * From the ACPI spec, description of _STA: (Note - no mention 796 1.1 jruoho * of whether to run _INI or not on the device in question) 797 1.1 jruoho * 798 1.1 jruoho * "_STA may return bit 0 clear (not present) with bit 3 set 799 1.1 jruoho * (device is functional). This case is used to indicate a valid 800 1.1 jruoho * device for which no device driver should be loaded (for example, 801 1.1 jruoho * a bridge device.) Children of this device may be present and 802 1.1 jruoho * valid. OSPM should continue enumeration below a device whose 803 1.1 jruoho * _STA returns this bit combination" 804 1.1 jruoho */ 805 1.1 jruoho return_ACPI_STATUS (AE_OK); 806 1.1 jruoho } 807 1.1 jruoho else 808 1.1 jruoho { 809 1.1 jruoho /* 810 1.1 jruoho * Device is not present and is not functioning. We must abort the 811 1.1 jruoho * walk of this subtree immediately -- don't look at the children 812 1.1 jruoho * of such a device. 813 1.1 jruoho * 814 1.1 jruoho * From the ACPI spec, description of _INI: 815 1.1 jruoho * 816 1.1 jruoho * "If the _STA method indicates that the device is not present, 817 1.1 jruoho * OSPM will not run the _INI and will not examine the children 818 1.1 jruoho * of the device for _INI methods" 819 1.1 jruoho */ 820 1.1 jruoho return_ACPI_STATUS (AE_CTRL_DEPTH); 821 1.1 jruoho } 822 1.1 jruoho } 823 1.1 jruoho 824 1.1 jruoho /* 825 1.1 jruoho * The device is present or is assumed present if no _STA exists. 826 1.1 jruoho * Run the _INI if it exists (not required to exist) 827 1.1 jruoho * 828 1.1 jruoho * Note: We know there is an _INI within this subtree, but it may not be 829 1.1 jruoho * under this particular device, it may be lower in the branch. 830 1.1 jruoho */ 831 1.16 christos if (!ACPI_COMPARE_NAMESEG (DeviceNode->Name.Ascii, "_SB_") || 832 1.11 christos DeviceNode->Parent != AcpiGbl_RootNode) 833 1.11 christos { 834 1.11 christos ACPI_DEBUG_EXEC (AcpiUtDisplayInitPathname ( 835 1.11 christos ACPI_TYPE_METHOD, DeviceNode, METHOD_NAME__INI)); 836 1.1 jruoho 837 1.11 christos memset (Info, 0, sizeof (ACPI_EVALUATE_INFO)); 838 1.11 christos Info->PrefixNode = DeviceNode; 839 1.11 christos Info->RelativePathname = METHOD_NAME__INI; 840 1.11 christos Info->Parameters = NULL; 841 1.11 christos Info->Flags = ACPI_IGNORE_RETURN_VALUE; 842 1.1 jruoho 843 1.11 christos Status = AcpiNsEvaluate (Info); 844 1.11 christos if (ACPI_SUCCESS (Status)) 845 1.11 christos { 846 1.11 christos WalkInfo->Num_INI++; 847 1.11 christos } 848 1.1 jruoho 849 1.1 jruoho #ifdef ACPI_DEBUG_OUTPUT 850 1.11 christos else if (Status != AE_NOT_FOUND) 851 1.11 christos { 852 1.11 christos /* Ignore error and move on to next device */ 853 1.1 jruoho 854 1.11 christos char *ScopeName = AcpiNsGetNormalizedPathname (DeviceNode, TRUE); 855 1.1 jruoho 856 1.11 christos ACPI_EXCEPTION ((AE_INFO, Status, "during %s._INI execution", 857 1.11 christos ScopeName)); 858 1.11 christos ACPI_FREE (ScopeName); 859 1.11 christos } 860 1.11 christos #endif 861 1.1 jruoho } 862 1.1 jruoho 863 1.1 jruoho /* Ignore errors from above */ 864 1.1 jruoho 865 1.1 jruoho Status = AE_OK; 866 1.1 jruoho 867 1.1 jruoho /* 868 1.1 jruoho * The _INI method has been run if present; call the Global Initialization 869 1.1 jruoho * Handler for this device. 870 1.1 jruoho */ 871 1.1 jruoho if (AcpiGbl_InitHandler) 872 1.1 jruoho { 873 1.1 jruoho Status = AcpiGbl_InitHandler (DeviceNode, ACPI_INIT_DEVICE_INI); 874 1.1 jruoho } 875 1.1 jruoho 876 1.1 jruoho return_ACPI_STATUS (Status); 877 1.1 jruoho } 878