/**@file GPIO Common library @copyright INTEL CONFIDENTIAL Copyright 2013 - 2021 Intel Corporation. The source code contained or described herein and all documents related to the source code ("Material") are owned by Intel Corporation or its suppliers or licensors. Title to the Material remains with Intel Corporation or its suppliers and licensors. The Material may contain trade secrets and proprietary and confidential information of Intel Corporation and its suppliers and licensors, and is protected by worldwide copyright and trade secret laws and treaty provisions. No part of the Material may be used, copied, reproduced, modified, published, uploaded, posted, transmitted, distributed, or disclosed in any way without Intel's prior express written permission. No license under any patent, copyright, trade secret or other intellectual property right is granted to or conferred upon you by disclosure or delivery of the Materials, either expressly, by implication, inducement, estoppel or otherwise. Any license under such intellectual property rights must be express and approved by Intel in writing. Unless otherwise agreed by Intel in writing, you may not remove or alter this notice or any other notice embedded in Materials by Intel or Intel's suppliers or licensors in any way. This file contains an 'Intel Peripheral Driver' and is uniquely identified as "Intel Reference Module" and is licensed for Intel CPUs and chipsets under the terms of your license agreement with Intel or your vendor. This file may be modified by the user, subject to additional terms of the license agreement. @par Specification Reference: **/ // // GPIO Access Library // Scope(\_SB) { // // Get GPIO register address // This is internal library function // Method(GADR, 0x2, NotSerialized) { // // Arg0 - GPIO Group index // Arg1 - GPIO register type, must match what is used by GINF method // //Local0 = GpioCommunityAddress Store( Add(GINF(Arg0,GPIO_COM_FIELD), SBRG), Local0) //Local1 = Register Offset Store(GINF(Arg0,Arg1), Local1) Return( Add (Local0, Local1)) } // // Get GPIO absolute number for selected GpioPad // Method(GNUM, 0x1, NotSerialized) { // // Arg0 - GpioPad // // Local0 - Gpio pad number Store (GNMB(Arg0), Local0) // Local1 - Gpio group index for GpioPad Store (GGRP(Arg0), Local1) Return (Add(GINF(Local1,GPIO_DRIVER_PIN_BASE_NUMBER),Local0)) } // // Get interrupt number for selected GpioPad // Method(INUM, 0x1, NotSerialized) { // // Arg0 - GpioPad // return (And(GPC1(Arg0),B_GPIO_PCR_INTSEL)) } // // Get GPIO group index for GpioPad // Method(GGRP,1,serialized) { // // Arg0 - GpioPad // ShiftRight( And(Arg0,0x00FF0000), 16, Local0) return (Local0) } // // Get GPIO pin number for GpioPad // Method(GNMB,1,serialized) { // // Arg0 - GpioPad // return (And(Arg0,0x0000FFFF)) } // // GEI0/1/2 and GED0/1/2 (part of PCH NVS) are objects for informing how GPIO groups are mapped to GPE0. // If Group is mapped to 1-Tier GPE information is also stored on what Group DW // is mapped to GPE_DWx. Because GPE_DWx register is 32 bits large if groups have more than // 32 pads only part of it can be mapped. // // GEIx - GroupIndex mapped to GPE0_DWx // GEDx - DoubleWorld part of Group: 0 - pins 31-0, 1 - pins 63-32, ... // // // Get GPE number for selected GpioPad // Method(GGPE, 0x1, NotSerialized) { // // Arg0 - GPIO pad // //Local0 - GPIO group index Store (GGRP(Arg0), Local0) //Local1 - GPIO pad number Store (GNMB(Arg0), Local1) //Local2 - GPIO group DW Store(ShiftRight (Local1,5), Local2) If (IS_GPIO_GROUP_IN_2_TIER_GPE(Local0, Local2)) { // // Pads mapped to 2-tier GPE will all generate GPE_111 // Return (0x6F) } Else { // // Get mapping for certain group, Local3 = GPE0_DWx // If (IS_GPIO_GROUP_MAPPED_TO_GPE_DWX(Local0, Local2, GEI0, GED0)) { Store(0, Local3) } ElseIf (IS_GPIO_GROUP_MAPPED_TO_GPE_DWX(Local0, Local2, GEI1, GED1)) { Store(1, Local3) } ElseIf (IS_GPIO_GROUP_MAPPED_TO_GPE_DWX(Local0, Local2, GEI2, GED2)) { Store(2, Local3) } Else { // Code should never get here BreakPoint Return (0) } // // For 1-tier GPE calculate GPE number // GPE number = Local1 + 32 * (Local3 - Local2) // Return (Add(Multiply(Subtract (Local3, Local2),32),Local1)) } } // // Get Pad Configuration DW0 register value // Method(GPC0, 0x1, Serialized) { // // Arg0 - GPIO pad // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local2 = (GpioCommunityAddress + PadCfgOffset) + (GPIn * S_GPIO_PCR_PADCFG) Store(GET_GPIO_PAD_PADCFG_REG_ADDRESS(Local0,Local1),Local2) OperationRegion(PDW0, SystemMemory, Local2, 4) Field(PDW0, AnyAcc, NoLock, Preserve) { Offset(0x0), TEMP,32 } Return(TEMP) } // // Set Pad Configuration DW0 register value // Method(SPC0, 0x2, Serialized) { // // Arg0 - GPIO pad // Arg1 - Value for DW0 register // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local2 = (GpioCommunityAddress + PadCfgOffset) + (GPIn * S_GPIO_PCR_PADCFG) Store( GET_GPIO_PAD_PADCFG_REG_ADDRESS(Local0,Local1),Local2) OperationRegion(PDW0, SystemMemory, Local2, 4) Field(PDW0, AnyAcc, NoLock, Preserve) { Offset(0x0), TEMP,32 } Store(Arg1,TEMP) } // // Get Pad Configuration DW1 register value // Method(GPC1, 0x1, Serialized) { // // Arg0 - GPIO pad // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local2 = (GpioCommunityAddress + PadCfgOffset) + (GPIn * S_GPIO_PCR_PADCFG) + 0x4 Store( Add( GET_GPIO_PAD_PADCFG_REG_ADDRESS(Local0,Local1),0x4),Local2) OperationRegion(PDW1, SystemMemory, Local2, 4) Field(PDW1, AnyAcc, NoLock, Preserve) { Offset(0x0), TEMP,32 } Return(TEMP) } // // Set Pad Configuration DW1 register value // Method(SPC1, 0x2, Serialized) { // // Arg0 - GPIO pad // Arg1 - Value for DW1 register // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local0 = (GpioCommunityAddress + PadCfgOffset) + (GPIn * S_GPIO_PCR_PADCFG) + 0x4 Store( Add( GET_GPIO_PAD_PADCFG_REG_ADDRESS(Local0,Local1),0x4),Local2) OperationRegion(PDW1, SystemMemory, Local2, 4) Field(PDW1, AnyAcc, NoLock, Preserve) { Offset(0x0), TEMP,32 } Store(Arg1,TEMP) } // // Set RX Override // Method(SRXO, 0x2, Serialized) { // // Arg0 - GPIO pad // Arg1 - 0=no override, 1=drive RX to 1 internally // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local2 = (GpioCommunityAddress + PadCfgOffset) + (GPIn * S_GPIO_PCR_PADCFG) Store( GET_GPIO_PAD_PADCFG_REG_ADDRESS(Local0,Local1),Local2) OperationRegion(PDW0, SystemMemory, Local2, 4) Field(PDW0, AnyAcc, NoLock, Preserve) { Offset(0x0), ,28, TEMP,1, ,3 } Store(Arg1,TEMP) } // // Get GPI Input Value // Method(GGIV, 0x1, Serialized) { // // Arg0 - GPIO pad // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local2 = (GpioCommunityAddress + PadCfgOffset) + (GPIn * S_GPIO_PCR_PADCFG) Store( GET_GPIO_PAD_PADCFG_REG_ADDRESS(Local0,Local1),Local2) OperationRegion(PDW0, SystemMemory, Local2, 4) Field(PDW0, AnyAcc, NoLock, Preserve) { Offset(0x0), , 1, TEMP,1, , 30 } Return(TEMP) } // // Get GPO Output Value // Method(GGOV, 0x1, Serialized) { // // Arg0 - GPIO pad // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local2 = (GpioCommunityAddress + PadCfgOffset) + (GPIn * S_GPIO_PCR_PADCFG) Store( GET_GPIO_PAD_PADCFG_REG_ADDRESS(Local0,Local1),Local2) OperationRegion(PDW0, SystemMemory, Local2, 4) Field(PDW0, AnyAcc, NoLock, Preserve) { Offset(0x0), TEMP,1, , 31 } Return(TEMP) } // // Set GPO Output Value // Method(SGOV, 0x2, Serialized) { // // Arg0 - GPIO pad // Arg1 - Value of GPIO Tx State // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local2 = (GpioCommunityAddress + PadCfgOffset) + (GPIn * S_GPIO_PCR_PADCFG) Store( GET_GPIO_PAD_PADCFG_REG_ADDRESS(Local0,Local1),Local2) OperationRegion(PDW0, SystemMemory, Local2, 4) Field(PDW0, AnyAcc, NoLock, Preserve) { Offset(0x0), TEMP,1, , 31 } Store(Arg1,TEMP) } // // Get GPI Input Invert Bit // Method(GGII, 0x1, Serialized) { // // Arg0 - GPIO pad // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local2 = (GpioCommunityAddress + PadCfgOffset) + (GPIn * S_GPIO_PCR_PADCFG) Store( GET_GPIO_PAD_PADCFG_REG_ADDRESS(Local0,Local1),Local2) OperationRegion(PDW0, SystemMemory, Local2, 4) Field(PDW0, AnyAcc, NoLock, Preserve) { Offset(0x0), , 23, TEMP,1, , 8 } Return(TEMP) } // // Set GPI Input Invert Bit // Method(SGII, 0x2, Serialized) { // // Arg0 - GPIO pad // Arg1 - Value of RXINV bit for selected pad // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local2 = (GpioCommunityAddress + PadCfgOffset) + (GPIn * S_GPIO_PCR_PADCFG) Store( GET_GPIO_PAD_PADCFG_REG_ADDRESS(Local0,Local1),Local2) OperationRegion(PDW0, SystemMemory, Local2, 4) Field(PDW0, AnyAcc, NoLock, Preserve) { Offset(0x0), , 23, TEMP,1, , 8 } Store(Arg1,TEMP) } // // Get GPIO Pad Mode // Method(GPMV, 0x1, Serialized) { // // Arg0 - GPIO pad // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local2 = (GpioCommunityAddress + PadCfgOffset) + (GPIn * S_GPIO_PCR_PADCFG) Store( GET_GPIO_PAD_PADCFG_REG_ADDRESS(Local0,Local1),Local2) OperationRegion(PDW0, SystemMemory, Local2, 4) Field(PDW0, AnyAcc, NoLock, Preserve) { Offset(0x0), , 10, TEMP,3, , 19 } Return(TEMP) } // // Set GPIO Pad Mode // Method(SPMV, 0x2, Serialized) { // // Arg0 - GPIO pad // Arg1 - Value for Pad Mode for selected pad // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local2 = (GpioCommunityAddress + PadCfgOffset) + (GPIn * S_GPIO_PCR_PADCFG) Store( GET_GPIO_PAD_PADCFG_REG_ADDRESS(Local0,Local1),Local2) OperationRegion(PDW0, SystemMemory, Local2, 4) Field(PDW0, AnyAcc, NoLock, Preserve) { Offset(0x0), , 10, TEMP,3, , 19 } Store(Arg1,TEMP) } // // Get GPIO Host Software Pad Ownership // Method(GHPO, 0x1, Serialized) { // // Arg0 - GPIO pad // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local3 - Register offset = HostSwOwnRegOffset + (GpioPadNumber >> 5)*0x4 Add (GET_HOSTSW_OWN_REG_ADDRESS(Local0), Multiply (ShiftRight(Local1,5), 0x4), Local3) // Local4 - Pad bit position within register, Local4 = GpioPad & 0x1F = GpioPad % 32 And (Local1, 0x1F, Local4) OperationRegion(PREG, SystemMemory, Local3, 4) Field(PREG, AnyAcc, NoLock, Preserve) { Offset(0x0), TEMP,32 } // HostSwOwnValue = (TEMP >> Local4) & 0x1 Return( And( ShiftRight(TEMP,Local4),0x1)) } // // Set GPIO Host Software Pad Ownership // Method(SHPO, 0x2, Serialized) { // // Arg0 - GPIO pad // Arg1 - Value for GPIO Host Software Pad Ownership // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local3 - Register offset = HostSwOwnRegOffset + (GpioPadNumber >> 5)*0x4 Add (GET_HOSTSW_OWN_REG_ADDRESS(Local0), Multiply (ShiftRight(Local1,5), 0x4), Local3) // Local4 - Pad bit position within register, Local4 = GpioPad & 0x1F = GpioPad % 32 And (Local1, 0x1F, Local4) OperationRegion(PREG, SystemMemory, Local3, 4) Field(PREG, AnyAcc, NoLock, Preserve) { Offset(0x0), TEMP,32 } If (Arg1) { //TEMP = TEMP | (1 << PadBitPosition) Or(TEMP, ShiftLeft(1,Local4), TEMP) } Else { //TEMP = TEMP & ~(1 << PadBitPosition) And(TEMP, Not(ShiftLeft(1,Local4)),TEMP) } } // // Get GPIO Pad Ownership // Method(GGPO, 0x1, Serialized) { // // Arg0 - GPIO pad // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local2 = PadOwnAddress + (PadNumber >> 3) * 0x4 Store( Add( GET_PAD_OWN_REG_ADDRESS(Local0) , Multiply( ShiftRight(Local1,3),0x4)),Local2) OperationRegion(PREG, SystemMemory, Local2, 4) Field(PREG, AnyAcc, NoLock, Preserve) { Offset(0x0), TEMP,32 } // PadOwnValue = (TEMP >> ((Local1 & 0x7) * 4)) & 0x3 Return( And( ShiftRight(TEMP,Multiply(And(Local1,0x7),0x4)),0x3)) } // // Set GPIO GPIRoutIOxAPIC value // Method(SGRA, 0x2, Serialized) { // // Arg0 - GPIO pad // Arg1 - Value for GPIRoutIOxAPIC // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local2 = (GpioCommunityAddress + PadCfgOffset) + (GPIn * S_GPIO_PCR_PADCFG) Store( GET_GPIO_PAD_PADCFG_REG_ADDRESS(Local0,Local1),Local2) OperationRegion(PDW0, SystemMemory, Local2, 4) Field(PDW0, AnyAcc, NoLock, Preserve) { Offset(0x0), , 20, TEMP,1, , 11 } Store(Arg1,TEMP) } // // Set GPIO weak pull-up/down value // Method(SGWP, 0x2, Serialized) { // // Arg0 - GPIO pad // Arg1 - Value for weak pull-up/down // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local2 = (GpioCommunityAddress + PadCfgOffset) + 0x4 + (GPIn * S_GPIO_PCR_PADCFG) Store( Add( GET_GPIO_PAD_PADCFG_REG_ADDRESS(Local0,Local1),0x4),Local2) OperationRegion(PDW0, SystemMemory, Local2, 4) Field(PDW0, AnyAcc, NoLock, Preserve) { Offset(0x0), , 10, TEMP,4, , 18 } Store(Arg1,TEMP) } // // ISME and CAGS methods are used to properly handle 2-tier GPE // Example: /* Method(_L6F, 0) // Method which is called for all 2-tier GPE, must be within _GPE scope { If (\_SB.ISME(GpioPad)) { \_SB.DeviceXYZ.GPEH() // Custom function to handle GPE for certain GPIO pad \_SB.CAGS(GpioPad) // Clear 2-Tier GPE status } } */ // // Clear a particular GPE status for 2-tier // Method(CAGS, 0x1, Serialized) { // // Arg0 - GPIO pad // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) //Local4 - GPIO group DW Store(ShiftRight (Local1,5), Local4) //Check if 2-tier If (IS_GPIO_GROUP_IN_2_TIER_GPE(Local0, Local4)) { //Get GPI_GPE_STS for GPP_x Store (GET_GPE_STS_REG_ADDRESS(Local0), Local3) If (LNotEqual(And(Local3,NO_REGISTER_FOR_PROPERTY), NO_REGISTER_FOR_PROPERTY)) { OperationRegion(GPPX, SystemMemory, Add(Local3,Multiply(Local4,4)), 4) Field(GPPX, AnyAcc, NoLock, Preserve) { Offset(0x0), STSX,32, } // Local2 - GpioPad bit mask within register ShiftLeft(1, Mod(Local1,32), Local2) // Clear GPIO status by writing 1b for a pad Store(Local2, STSX) } } } // // Check if GPIO pad was source of 2-Tier GPE event // Method(ISME, 0x1, Serialized) { // // Arg0 - GPIO pad // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) //Local4 - GPIO group DW Store(ShiftRight (Local1,5), Local4) If (LNot(IS_GPIO_GROUP_IN_2_TIER_GPE(Local0,Local4))) { Return(0) } If (LEqual(And(GET_GPE_STS_REG_ADDRESS(Local0),NO_REGISTER_FOR_PROPERTY), NO_REGISTER_FOR_PROPERTY)) { Return(0) } // Local2 - Register offset = GpeStsRegOffset + GpioGroupDw*0x4 Add (GET_GPE_STS_REG_ADDRESS(Local0), Multiply (Local4, 0x4), Local2) // Local3 - Pad bit position within register, Local3 = GpioPadNumber & 0x1F = GpioPadNumber % 32 And (Local1, 0x1F, Local3) OperationRegion(GPPX, SystemMemory, Local2, 0x24) Field(GPPX, AnyAcc, NoLock, Preserve) { Offset(0x0), STSX,32, Offset(0x20), GENX,32 } //Return result of GPI_GPE_EN&GPI_GPE_STS for this pad Return(And(ShiftRight(And(STSX,GENX),Local3),0x1)) } // // Do Interrupt Pin Isolation // This method should be called before power gating external device // which uses Gpio pad as an interrupt // Method(DIPI, 0x1, Serialized) { // // Arg0 - GPIO pad // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local2 = (GpioCommunityAddress + PadCfgOffset) + (GPIn * S_GPIO_PCR_PADCFG) Store( GET_GPIO_PAD_PADCFG_REG_ADDRESS(Local0,Local1),Local2) OperationRegion(PDW0, SystemMemory, Local2, 4) Field(PDW0, AnyAcc, NoLock, Preserve) { Offset(0x0), , 9, RDIS,1, , 15, RCFG,2, , 5 } If(LNotEqual(RCFG,2)) { // Save RxEvCfg state in RXEV object: // RXEV[GroupIndex][PadNumber] = RCFG Store(RCFG, Index( DeRefOf(Index(RXEV,Local0)), Local1)) // Set RxEvCfg to 2 Store(2,RCFG) // Set GPIORxDis to 1 Store(1,RDIS) } } // // Undo Interrupt Pin Isolation // This method should be called after un-power gating external device // which uses Gpio pad as an interrupt // Method(UIPI, 0x1, Serialized) { // // Arg0 - GPIO pad // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local2 = (GpioCommunityAddress + PadCfgOffset) + (GPIn * S_GPIO_PCR_PADCFG) Store( GET_GPIO_PAD_PADCFG_REG_ADDRESS(Local0,Local1),Local2) OperationRegion(PDW0, SystemMemory, Local2, 4) Field(PDW0, AnyAcc, NoLock, Preserve) { Offset(0x0), , 9, RDIS,1, , 15, RCFG,2, , 5 } // Get RxEvCfg original value from RXEV object // Local3 = RXEV[GroupIndex][PadNumber] Store( DeRefOf(Index( DeRefOf(Index (RXEV, Local0)), Local1)), Local3) If(LNotEqual(Local3,2)) { // Set GPIORxDis to 0 Store(0,RDIS) // Set RxEvCfg to original value Store(Local3,RCFG) } } // // RX Level/Edge Configuration // Method(GRXE, 0x2, Serialized) { // // Arg0 - GPIO pad // Arg1 - RxEvCfg Value // 0h = Level // 1h = Edge // 2h = Disable // 3h = Either rising edge or failing edge // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local2 = (GpioCommunityAddress + PadCfgOffset) + (GPIn * S_GPIO_PCR_PADCFG) Store( GET_GPIO_PAD_PADCFG_REG_ADDRESS(Local0,Local1),Local2) OperationRegion(PDW0, SystemMemory, Local2, 4) Field(PDW0, AnyAcc, NoLock, Preserve) { Offset(0x0), , 25, RCFG,2, , 5 } // Set RxEvCfg Store(Arg1, RCFG) } // // Get Gpio Lock Config register value // Method(GLOC, 0x2, Serialized) { // // Arg0 - GPIO pad // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local1 = (GpioCommunityAddress + PadLockCfgOffset) Store(GET_LOCK_CONFIG_REG_ADDRESS(Local0), Local2) OperationRegion(PREG, SystemMemory, Local2, 4) Field(PREG, AnyAcc, NoLock, Preserve) { Offset(0x0), TEMP,32 } // Gpio Lock Configuration = (TEMP >> Local1) & 0x1 Return( And( ShiftRight(TEMP,Local1),0x1)) } // // Get Gpio Lock Tx register value // Method(GLOT, 0x2, Serialized) { // // Arg0 - GPIO pad // // Local0 - GPIO group index Store (GGRP(Arg0), Local0) // Local1 - GPIO pad number Store (GNMB(Arg0), Local1) // Local1 = (GpioCommunityAddress + PadLockCfgOffset) Store(GET_LOCK_TX_REG_ADDRESS(Local0), Local2) OperationRegion(PREG, SystemMemory, Local2, 4) Field(PREG, AnyAcc, NoLock, Preserve) { Offset(0x0), TEMP,32 } // Gpio Lock Configuration = (TEMP >> Local1) & 0x1 Return( And( ShiftRight(TEMP,Local1),0x1)) } }