1*433d6423SLionel Sambuc 2*433d6423SLionel Sambuc /****************************************************************************** 3*433d6423SLionel Sambuc * 4*433d6423SLionel Sambuc * Module Name: exstoren - AML Interpreter object store support, 5*433d6423SLionel Sambuc * Store to Node (namespace object) 6*433d6423SLionel Sambuc * 7*433d6423SLionel Sambuc *****************************************************************************/ 8*433d6423SLionel Sambuc 9*433d6423SLionel Sambuc /****************************************************************************** 10*433d6423SLionel Sambuc * 11*433d6423SLionel Sambuc * 1. Copyright Notice 12*433d6423SLionel Sambuc * 13*433d6423SLionel Sambuc * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp. 14*433d6423SLionel Sambuc * All rights reserved. 15*433d6423SLionel Sambuc * 16*433d6423SLionel Sambuc * 2. License 17*433d6423SLionel Sambuc * 18*433d6423SLionel Sambuc * 2.1. This is your license from Intel Corp. under its intellectual property 19*433d6423SLionel Sambuc * rights. You may have additional license terms from the party that provided 20*433d6423SLionel Sambuc * you this software, covering your right to use that party's intellectual 21*433d6423SLionel Sambuc * property rights. 22*433d6423SLionel Sambuc * 23*433d6423SLionel Sambuc * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a 24*433d6423SLionel Sambuc * copy of the source code appearing in this file ("Covered Code") an 25*433d6423SLionel Sambuc * irrevocable, perpetual, worldwide license under Intel's copyrights in the 26*433d6423SLionel Sambuc * base code distributed originally by Intel ("Original Intel Code") to copy, 27*433d6423SLionel Sambuc * make derivatives, distribute, use and display any portion of the Covered 28*433d6423SLionel Sambuc * Code in any form, with the right to sublicense such rights; and 29*433d6423SLionel Sambuc * 30*433d6423SLionel Sambuc * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent 31*433d6423SLionel Sambuc * license (with the right to sublicense), under only those claims of Intel 32*433d6423SLionel Sambuc * patents that are infringed by the Original Intel Code, to make, use, sell, 33*433d6423SLionel Sambuc * offer to sell, and import the Covered Code and derivative works thereof 34*433d6423SLionel Sambuc * solely to the minimum extent necessary to exercise the above copyright 35*433d6423SLionel Sambuc * license, and in no event shall the patent license extend to any additions 36*433d6423SLionel Sambuc * to or modifications of the Original Intel Code. No other license or right 37*433d6423SLionel Sambuc * is granted directly or by implication, estoppel or otherwise; 38*433d6423SLionel Sambuc * 39*433d6423SLionel Sambuc * The above copyright and patent license is granted only if the following 40*433d6423SLionel Sambuc * conditions are met: 41*433d6423SLionel Sambuc * 42*433d6423SLionel Sambuc * 3. Conditions 43*433d6423SLionel Sambuc * 44*433d6423SLionel Sambuc * 3.1. Redistribution of Source with Rights to Further Distribute Source. 45*433d6423SLionel Sambuc * Redistribution of source code of any substantial portion of the Covered 46*433d6423SLionel Sambuc * Code or modification with rights to further distribute source must include 47*433d6423SLionel Sambuc * the above Copyright Notice, the above License, this list of Conditions, 48*433d6423SLionel Sambuc * and the following Disclaimer and Export Compliance provision. In addition, 49*433d6423SLionel Sambuc * Licensee must cause all Covered Code to which Licensee contributes to 50*433d6423SLionel Sambuc * contain a file documenting the changes Licensee made to create that Covered 51*433d6423SLionel Sambuc * Code and the date of any change. Licensee must include in that file the 52*433d6423SLionel Sambuc * documentation of any changes made by any predecessor Licensee. Licensee 53*433d6423SLionel Sambuc * must include a prominent statement that the modification is derived, 54*433d6423SLionel Sambuc * directly or indirectly, from Original Intel Code. 55*433d6423SLionel Sambuc * 56*433d6423SLionel Sambuc * 3.2. Redistribution of Source with no Rights to Further Distribute Source. 57*433d6423SLionel Sambuc * Redistribution of source code of any substantial portion of the Covered 58*433d6423SLionel Sambuc * Code or modification without rights to further distribute source must 59*433d6423SLionel Sambuc * include the following Disclaimer and Export Compliance provision in the 60*433d6423SLionel Sambuc * documentation and/or other materials provided with distribution. In 61*433d6423SLionel Sambuc * addition, Licensee may not authorize further sublicense of source of any 62*433d6423SLionel Sambuc * portion of the Covered Code, and must include terms to the effect that the 63*433d6423SLionel Sambuc * license from Licensee to its licensee is limited to the intellectual 64*433d6423SLionel Sambuc * property embodied in the software Licensee provides to its licensee, and 65*433d6423SLionel Sambuc * not to intellectual property embodied in modifications its licensee may 66*433d6423SLionel Sambuc * make. 67*433d6423SLionel Sambuc * 68*433d6423SLionel Sambuc * 3.3. Redistribution of Executable. Redistribution in executable form of any 69*433d6423SLionel Sambuc * substantial portion of the Covered Code or modification must reproduce the 70*433d6423SLionel Sambuc * above Copyright Notice, and the following Disclaimer and Export Compliance 71*433d6423SLionel Sambuc * provision in the documentation and/or other materials provided with the 72*433d6423SLionel Sambuc * distribution. 73*433d6423SLionel Sambuc * 74*433d6423SLionel Sambuc * 3.4. Intel retains all right, title, and interest in and to the Original 75*433d6423SLionel Sambuc * Intel Code. 76*433d6423SLionel Sambuc * 77*433d6423SLionel Sambuc * 3.5. Neither the name Intel nor any other trademark owned or controlled by 78*433d6423SLionel Sambuc * Intel shall be used in advertising or otherwise to promote the sale, use or 79*433d6423SLionel Sambuc * other dealings in products derived from or relating to the Covered Code 80*433d6423SLionel Sambuc * without prior written authorization from Intel. 81*433d6423SLionel Sambuc * 82*433d6423SLionel Sambuc * 4. Disclaimer and Export Compliance 83*433d6423SLionel Sambuc * 84*433d6423SLionel Sambuc * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED 85*433d6423SLionel Sambuc * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE 86*433d6423SLionel Sambuc * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE, 87*433d6423SLionel Sambuc * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY 88*433d6423SLionel Sambuc * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY 89*433d6423SLionel Sambuc * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A 90*433d6423SLionel Sambuc * PARTICULAR PURPOSE. 91*433d6423SLionel Sambuc * 92*433d6423SLionel Sambuc * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES 93*433d6423SLionel Sambuc * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR 94*433d6423SLionel Sambuc * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT, 95*433d6423SLionel Sambuc * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY 96*433d6423SLionel Sambuc * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL 97*433d6423SLionel Sambuc * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS 98*433d6423SLionel Sambuc * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY 99*433d6423SLionel Sambuc * LIMITED REMEDY. 100*433d6423SLionel Sambuc * 101*433d6423SLionel Sambuc * 4.3. Licensee shall not export, either directly or indirectly, any of this 102*433d6423SLionel Sambuc * software or system incorporating such software without first obtaining any 103*433d6423SLionel Sambuc * required license or other approval from the U. S. Department of Commerce or 104*433d6423SLionel Sambuc * any other agency or department of the United States Government. In the 105*433d6423SLionel Sambuc * event Licensee exports any such software from the United States or 106*433d6423SLionel Sambuc * re-exports any such software from a foreign destination, Licensee shall 107*433d6423SLionel Sambuc * ensure that the distribution and export/re-export of the software is in 108*433d6423SLionel Sambuc * compliance with all laws, regulations, orders, or other restrictions of the 109*433d6423SLionel Sambuc * U.S. Export Administration Regulations. Licensee agrees that neither it nor 110*433d6423SLionel Sambuc * any of its subsidiaries will export/re-export any technical data, process, 111*433d6423SLionel Sambuc * software, or service, directly or indirectly, to any country for which the 112*433d6423SLionel Sambuc * United States government or any agency thereof requires an export license, 113*433d6423SLionel Sambuc * other governmental approval, or letter of assurance, without first obtaining 114*433d6423SLionel Sambuc * such license, approval or letter. 115*433d6423SLionel Sambuc * 116*433d6423SLionel Sambuc *****************************************************************************/ 117*433d6423SLionel Sambuc 118*433d6423SLionel Sambuc #define __EXSTOREN_C__ 119*433d6423SLionel Sambuc 120*433d6423SLionel Sambuc #include "acpi.h" 121*433d6423SLionel Sambuc #include "accommon.h" 122*433d6423SLionel Sambuc #include "acinterp.h" 123*433d6423SLionel Sambuc #include "amlcode.h" 124*433d6423SLionel Sambuc 125*433d6423SLionel Sambuc 126*433d6423SLionel Sambuc #define _COMPONENT ACPI_EXECUTER 127*433d6423SLionel Sambuc ACPI_MODULE_NAME ("exstoren") 128*433d6423SLionel Sambuc 129*433d6423SLionel Sambuc 130*433d6423SLionel Sambuc /******************************************************************************* 131*433d6423SLionel Sambuc * 132*433d6423SLionel Sambuc * FUNCTION: AcpiExResolveObject 133*433d6423SLionel Sambuc * 134*433d6423SLionel Sambuc * PARAMETERS: SourceDescPtr - Pointer to the source object 135*433d6423SLionel Sambuc * TargetType - Current type of the target 136*433d6423SLionel Sambuc * WalkState - Current walk state 137*433d6423SLionel Sambuc * 138*433d6423SLionel Sambuc * RETURN: Status, resolved object in SourceDescPtr. 139*433d6423SLionel Sambuc * 140*433d6423SLionel Sambuc * DESCRIPTION: Resolve an object. If the object is a reference, dereference 141*433d6423SLionel Sambuc * it and return the actual object in the SourceDescPtr. 142*433d6423SLionel Sambuc * 143*433d6423SLionel Sambuc ******************************************************************************/ 144*433d6423SLionel Sambuc 145*433d6423SLionel Sambuc ACPI_STATUS 146*433d6423SLionel Sambuc AcpiExResolveObject ( 147*433d6423SLionel Sambuc ACPI_OPERAND_OBJECT **SourceDescPtr, 148*433d6423SLionel Sambuc ACPI_OBJECT_TYPE TargetType, 149*433d6423SLionel Sambuc ACPI_WALK_STATE *WalkState) 150*433d6423SLionel Sambuc { 151*433d6423SLionel Sambuc ACPI_OPERAND_OBJECT *SourceDesc = *SourceDescPtr; 152*433d6423SLionel Sambuc ACPI_STATUS Status = AE_OK; 153*433d6423SLionel Sambuc 154*433d6423SLionel Sambuc 155*433d6423SLionel Sambuc ACPI_FUNCTION_TRACE (ExResolveObject); 156*433d6423SLionel Sambuc 157*433d6423SLionel Sambuc 158*433d6423SLionel Sambuc /* Ensure we have a Target that can be stored to */ 159*433d6423SLionel Sambuc 160*433d6423SLionel Sambuc switch (TargetType) 161*433d6423SLionel Sambuc { 162*433d6423SLionel Sambuc case ACPI_TYPE_BUFFER_FIELD: 163*433d6423SLionel Sambuc case ACPI_TYPE_LOCAL_REGION_FIELD: 164*433d6423SLionel Sambuc case ACPI_TYPE_LOCAL_BANK_FIELD: 165*433d6423SLionel Sambuc case ACPI_TYPE_LOCAL_INDEX_FIELD: 166*433d6423SLionel Sambuc /* 167*433d6423SLionel Sambuc * These cases all require only Integers or values that 168*433d6423SLionel Sambuc * can be converted to Integers (Strings or Buffers) 169*433d6423SLionel Sambuc */ 170*433d6423SLionel Sambuc 171*433d6423SLionel Sambuc case ACPI_TYPE_INTEGER: 172*433d6423SLionel Sambuc case ACPI_TYPE_STRING: 173*433d6423SLionel Sambuc case ACPI_TYPE_BUFFER: 174*433d6423SLionel Sambuc 175*433d6423SLionel Sambuc /* 176*433d6423SLionel Sambuc * Stores into a Field/Region or into a Integer/Buffer/String 177*433d6423SLionel Sambuc * are all essentially the same. This case handles the 178*433d6423SLionel Sambuc * "interchangeable" types Integer, String, and Buffer. 179*433d6423SLionel Sambuc */ 180*433d6423SLionel Sambuc if (SourceDesc->Common.Type == ACPI_TYPE_LOCAL_REFERENCE) 181*433d6423SLionel Sambuc { 182*433d6423SLionel Sambuc /* Resolve a reference object first */ 183*433d6423SLionel Sambuc 184*433d6423SLionel Sambuc Status = AcpiExResolveToValue (SourceDescPtr, WalkState); 185*433d6423SLionel Sambuc if (ACPI_FAILURE (Status)) 186*433d6423SLionel Sambuc { 187*433d6423SLionel Sambuc break; 188*433d6423SLionel Sambuc } 189*433d6423SLionel Sambuc } 190*433d6423SLionel Sambuc 191*433d6423SLionel Sambuc /* For CopyObject, no further validation necessary */ 192*433d6423SLionel Sambuc 193*433d6423SLionel Sambuc if (WalkState->Opcode == AML_COPY_OP) 194*433d6423SLionel Sambuc { 195*433d6423SLionel Sambuc break; 196*433d6423SLionel Sambuc } 197*433d6423SLionel Sambuc 198*433d6423SLionel Sambuc /* Must have a Integer, Buffer, or String */ 199*433d6423SLionel Sambuc 200*433d6423SLionel Sambuc if ((SourceDesc->Common.Type != ACPI_TYPE_INTEGER) && 201*433d6423SLionel Sambuc (SourceDesc->Common.Type != ACPI_TYPE_BUFFER) && 202*433d6423SLionel Sambuc (SourceDesc->Common.Type != ACPI_TYPE_STRING) && 203*433d6423SLionel Sambuc !((SourceDesc->Common.Type == ACPI_TYPE_LOCAL_REFERENCE) && 204*433d6423SLionel Sambuc (SourceDesc->Reference.Class== ACPI_REFCLASS_TABLE))) 205*433d6423SLionel Sambuc { 206*433d6423SLionel Sambuc /* Conversion successful but still not a valid type */ 207*433d6423SLionel Sambuc 208*433d6423SLionel Sambuc ACPI_ERROR ((AE_INFO, 209*433d6423SLionel Sambuc "Cannot assign type %s to %s (must be type Int/Str/Buf)", 210*433d6423SLionel Sambuc AcpiUtGetObjectTypeName (SourceDesc), 211*433d6423SLionel Sambuc AcpiUtGetTypeName (TargetType))); 212*433d6423SLionel Sambuc Status = AE_AML_OPERAND_TYPE; 213*433d6423SLionel Sambuc } 214*433d6423SLionel Sambuc break; 215*433d6423SLionel Sambuc 216*433d6423SLionel Sambuc 217*433d6423SLionel Sambuc case ACPI_TYPE_LOCAL_ALIAS: 218*433d6423SLionel Sambuc case ACPI_TYPE_LOCAL_METHOD_ALIAS: 219*433d6423SLionel Sambuc 220*433d6423SLionel Sambuc /* 221*433d6423SLionel Sambuc * All aliases should have been resolved earlier, during the 222*433d6423SLionel Sambuc * operand resolution phase. 223*433d6423SLionel Sambuc */ 224*433d6423SLionel Sambuc ACPI_ERROR ((AE_INFO, "Store into an unresolved Alias object")); 225*433d6423SLionel Sambuc Status = AE_AML_INTERNAL; 226*433d6423SLionel Sambuc break; 227*433d6423SLionel Sambuc 228*433d6423SLionel Sambuc 229*433d6423SLionel Sambuc case ACPI_TYPE_PACKAGE: 230*433d6423SLionel Sambuc default: 231*433d6423SLionel Sambuc 232*433d6423SLionel Sambuc /* 233*433d6423SLionel Sambuc * All other types than Alias and the various Fields come here, 234*433d6423SLionel Sambuc * including the untyped case - ACPI_TYPE_ANY. 235*433d6423SLionel Sambuc */ 236*433d6423SLionel Sambuc break; 237*433d6423SLionel Sambuc } 238*433d6423SLionel Sambuc 239*433d6423SLionel Sambuc return_ACPI_STATUS (Status); 240*433d6423SLionel Sambuc } 241*433d6423SLionel Sambuc 242*433d6423SLionel Sambuc 243*433d6423SLionel Sambuc /******************************************************************************* 244*433d6423SLionel Sambuc * 245*433d6423SLionel Sambuc * FUNCTION: AcpiExStoreObjectToObject 246*433d6423SLionel Sambuc * 247*433d6423SLionel Sambuc * PARAMETERS: SourceDesc - Object to store 248*433d6423SLionel Sambuc * DestDesc - Object to receive a copy of the source 249*433d6423SLionel Sambuc * NewDesc - New object if DestDesc is obsoleted 250*433d6423SLionel Sambuc * WalkState - Current walk state 251*433d6423SLionel Sambuc * 252*433d6423SLionel Sambuc * RETURN: Status 253*433d6423SLionel Sambuc * 254*433d6423SLionel Sambuc * DESCRIPTION: "Store" an object to another object. This may include 255*433d6423SLionel Sambuc * converting the source type to the target type (implicit 256*433d6423SLionel Sambuc * conversion), and a copy of the value of the source to 257*433d6423SLionel Sambuc * the target. 258*433d6423SLionel Sambuc * 259*433d6423SLionel Sambuc * The Assignment of an object to another (not named) object 260*433d6423SLionel Sambuc * is handled here. 261*433d6423SLionel Sambuc * The Source passed in will replace the current value (if any) 262*433d6423SLionel Sambuc * with the input value. 263*433d6423SLionel Sambuc * 264*433d6423SLionel Sambuc * When storing into an object the data is converted to the 265*433d6423SLionel Sambuc * target object type then stored in the object. This means 266*433d6423SLionel Sambuc * that the target object type (for an initialized target) will 267*433d6423SLionel Sambuc * not be changed by a store operation. 268*433d6423SLionel Sambuc * 269*433d6423SLionel Sambuc * This module allows destination types of Number, String, 270*433d6423SLionel Sambuc * Buffer, and Package. 271*433d6423SLionel Sambuc * 272*433d6423SLionel Sambuc * Assumes parameters are already validated. NOTE: SourceDesc 273*433d6423SLionel Sambuc * resolution (from a reference object) must be performed by 274*433d6423SLionel Sambuc * the caller if necessary. 275*433d6423SLionel Sambuc * 276*433d6423SLionel Sambuc ******************************************************************************/ 277*433d6423SLionel Sambuc 278*433d6423SLionel Sambuc ACPI_STATUS 279*433d6423SLionel Sambuc AcpiExStoreObjectToObject ( 280*433d6423SLionel Sambuc ACPI_OPERAND_OBJECT *SourceDesc, 281*433d6423SLionel Sambuc ACPI_OPERAND_OBJECT *DestDesc, 282*433d6423SLionel Sambuc ACPI_OPERAND_OBJECT **NewDesc, 283*433d6423SLionel Sambuc ACPI_WALK_STATE *WalkState) 284*433d6423SLionel Sambuc { 285*433d6423SLionel Sambuc ACPI_OPERAND_OBJECT *ActualSrcDesc; 286*433d6423SLionel Sambuc ACPI_STATUS Status = AE_OK; 287*433d6423SLionel Sambuc 288*433d6423SLionel Sambuc 289*433d6423SLionel Sambuc ACPI_FUNCTION_TRACE_PTR (ExStoreObjectToObject, SourceDesc); 290*433d6423SLionel Sambuc 291*433d6423SLionel Sambuc 292*433d6423SLionel Sambuc ActualSrcDesc = SourceDesc; 293*433d6423SLionel Sambuc if (!DestDesc) 294*433d6423SLionel Sambuc { 295*433d6423SLionel Sambuc /* 296*433d6423SLionel Sambuc * There is no destination object (An uninitialized node or 297*433d6423SLionel Sambuc * package element), so we can simply copy the source object 298*433d6423SLionel Sambuc * creating a new destination object 299*433d6423SLionel Sambuc */ 300*433d6423SLionel Sambuc Status = AcpiUtCopyIobjectToIobject (ActualSrcDesc, NewDesc, WalkState); 301*433d6423SLionel Sambuc return_ACPI_STATUS (Status); 302*433d6423SLionel Sambuc } 303*433d6423SLionel Sambuc 304*433d6423SLionel Sambuc if (SourceDesc->Common.Type != DestDesc->Common.Type) 305*433d6423SLionel Sambuc { 306*433d6423SLionel Sambuc /* 307*433d6423SLionel Sambuc * The source type does not match the type of the destination. 308*433d6423SLionel Sambuc * Perform the "implicit conversion" of the source to the current type 309*433d6423SLionel Sambuc * of the target as per the ACPI specification. 310*433d6423SLionel Sambuc * 311*433d6423SLionel Sambuc * If no conversion performed, ActualSrcDesc = SourceDesc. 312*433d6423SLionel Sambuc * Otherwise, ActualSrcDesc is a temporary object to hold the 313*433d6423SLionel Sambuc * converted object. 314*433d6423SLionel Sambuc */ 315*433d6423SLionel Sambuc Status = AcpiExConvertToTargetType (DestDesc->Common.Type, 316*433d6423SLionel Sambuc SourceDesc, &ActualSrcDesc, WalkState); 317*433d6423SLionel Sambuc if (ACPI_FAILURE (Status)) 318*433d6423SLionel Sambuc { 319*433d6423SLionel Sambuc return_ACPI_STATUS (Status); 320*433d6423SLionel Sambuc } 321*433d6423SLionel Sambuc 322*433d6423SLionel Sambuc if (SourceDesc == ActualSrcDesc) 323*433d6423SLionel Sambuc { 324*433d6423SLionel Sambuc /* 325*433d6423SLionel Sambuc * No conversion was performed. Return the SourceDesc as the 326*433d6423SLionel Sambuc * new object. 327*433d6423SLionel Sambuc */ 328*433d6423SLionel Sambuc *NewDesc = SourceDesc; 329*433d6423SLionel Sambuc return_ACPI_STATUS (AE_OK); 330*433d6423SLionel Sambuc } 331*433d6423SLionel Sambuc } 332*433d6423SLionel Sambuc 333*433d6423SLionel Sambuc /* 334*433d6423SLionel Sambuc * We now have two objects of identical types, and we can perform a 335*433d6423SLionel Sambuc * copy of the *value* of the source object. 336*433d6423SLionel Sambuc */ 337*433d6423SLionel Sambuc switch (DestDesc->Common.Type) 338*433d6423SLionel Sambuc { 339*433d6423SLionel Sambuc case ACPI_TYPE_INTEGER: 340*433d6423SLionel Sambuc 341*433d6423SLionel Sambuc DestDesc->Integer.Value = ActualSrcDesc->Integer.Value; 342*433d6423SLionel Sambuc 343*433d6423SLionel Sambuc /* Truncate value if we are executing from a 32-bit ACPI table */ 344*433d6423SLionel Sambuc 345*433d6423SLionel Sambuc AcpiExTruncateFor32bitTable (DestDesc); 346*433d6423SLionel Sambuc break; 347*433d6423SLionel Sambuc 348*433d6423SLionel Sambuc case ACPI_TYPE_STRING: 349*433d6423SLionel Sambuc 350*433d6423SLionel Sambuc Status = AcpiExStoreStringToString (ActualSrcDesc, DestDesc); 351*433d6423SLionel Sambuc break; 352*433d6423SLionel Sambuc 353*433d6423SLionel Sambuc case ACPI_TYPE_BUFFER: 354*433d6423SLionel Sambuc 355*433d6423SLionel Sambuc Status = AcpiExStoreBufferToBuffer (ActualSrcDesc, DestDesc); 356*433d6423SLionel Sambuc break; 357*433d6423SLionel Sambuc 358*433d6423SLionel Sambuc case ACPI_TYPE_PACKAGE: 359*433d6423SLionel Sambuc 360*433d6423SLionel Sambuc Status = AcpiUtCopyIobjectToIobject (ActualSrcDesc, &DestDesc, 361*433d6423SLionel Sambuc WalkState); 362*433d6423SLionel Sambuc break; 363*433d6423SLionel Sambuc 364*433d6423SLionel Sambuc default: 365*433d6423SLionel Sambuc /* 366*433d6423SLionel Sambuc * All other types come here. 367*433d6423SLionel Sambuc */ 368*433d6423SLionel Sambuc ACPI_WARNING ((AE_INFO, "Store into type %s not implemented", 369*433d6423SLionel Sambuc AcpiUtGetObjectTypeName (DestDesc))); 370*433d6423SLionel Sambuc 371*433d6423SLionel Sambuc Status = AE_NOT_IMPLEMENTED; 372*433d6423SLionel Sambuc break; 373*433d6423SLionel Sambuc } 374*433d6423SLionel Sambuc 375*433d6423SLionel Sambuc if (ActualSrcDesc != SourceDesc) 376*433d6423SLionel Sambuc { 377*433d6423SLionel Sambuc /* Delete the intermediate (temporary) source object */ 378*433d6423SLionel Sambuc 379*433d6423SLionel Sambuc AcpiUtRemoveReference (ActualSrcDesc); 380*433d6423SLionel Sambuc } 381*433d6423SLionel Sambuc 382*433d6423SLionel Sambuc *NewDesc = DestDesc; 383*433d6423SLionel Sambuc return_ACPI_STATUS (Status); 384*433d6423SLionel Sambuc } 385*433d6423SLionel Sambuc 386*433d6423SLionel Sambuc 387