mb/lenovo/x201: Convert to ASL 2.0 syntax

Generated 'build/dsdt.dsl' files are identical.

Change-Id: I3b553e1b68ee8f236fcab311a076001b94a47975
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/46204
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Elyes HAOUAS 2020-10-08 09:57:40 +02:00 committed by Michael Niewöhner
parent 965f98c8dc
commit 23af35f040
3 changed files with 24 additions and 24 deletions

View File

@ -12,18 +12,18 @@ Scope (\_SB)
{
if (Arg0) {
/* connect dock */
Store (1, \GP28)
Store (1, \_SB.PCI0.LPCB.EC.DKR1)
Store (1, \_SB.PCI0.LPCB.EC.DKR2)
Store (1, \_SB.PCI0.LPCB.EC.DKR3)
\GP28 = 1
\_SB.PCI0.LPCB.EC.DKR1 = 1
\_SB.PCI0.LPCB.EC.DKR2 = 1
\_SB.PCI0.LPCB.EC.DKR3 = 1
} else {
/* disconnect dock */
Store (0, \GP28)
Store (0, \_SB.PCI0.LPCB.EC.DKR1)
Store (0, \_SB.PCI0.LPCB.EC.DKR2)
Store (0, \_SB.PCI0.LPCB.EC.DKR3)
\GP28 = 0
\_SB.PCI0.LPCB.EC.DKR1 = 0
\_SB.PCI0.LPCB.EC.DKR2 = 0
\_SB.PCI0.LPCB.EC.DKR3 = 0
}
Xor(Arg0, \_SB.PCI0.LPCB.EC.DKR1, Local0)
Local0 = Arg0 ^ \_SB.PCI0.LPCB.EC.DKR1
Return (Local0)
}

View File

@ -5,8 +5,8 @@ Scope (\_GPE)
Method(_L18, 0, NotSerialized)
{
/* Read EC register to clear wake status */
Store(\_SB.PCI0.LPCB.EC.WAKE, Local0)
Local0 = \_SB.PCI0.LPCB.EC.WAKE
/* So that we don't get a warning that Local0 is unused. */
Increment (Local0)
Local0++
}
}

View File

@ -16,8 +16,8 @@ Method(_PTS,1)
Method(_WAK,1)
{
/* ME may not be up yet. */
Store (0, \_TZ.MEB1)
Store (0, \_TZ.MEB2)
\_TZ.MEB1 = 0
\_TZ.MEB2 = 0
/* Wake the HKEY to init BT/WWAN */
\_SB.PCI0.LPCB.EC.HKEY.WAKE (Arg0)
@ -56,47 +56,47 @@ Scope(\_SB)
*/
/* Let's assume we're running at least Windows 2000 */
Store (2000, OSYS)
OSYS = 2000
If (CondRefOf(_OSI)) {
If (_OSI("Windows 2001")) {
Store (2001, OSYS)
OSYS = 2001
}
If (_OSI("Windows 2001 SP1")) {
Store (2001, OSYS)
OSYS = 2001
}
If (_OSI("Windows 2001 SP2")) {
Store (2002, OSYS)
OSYS = 2002
}
If (_OSI("Windows 2001.1")) {
Store (2001, OSYS)
OSYS = 2001
}
If (_OSI("Windows 2001.1 SP1")) {
Store (2001, OSYS)
OSYS = 2001
}
If (_OSI("Windows 2006")) {
Store (2006, OSYS)
OSYS = 2006
}
If (_OSI("Windows 2006.1")) {
Store (2006, OSYS)
OSYS = 2006
}
If (_OSI("Windows 2006 SP1")) {
Store (2006, OSYS)
OSYS = 2006
}
If (_OSI("Windows 2009")) {
Store (2009, OSYS)
OSYS = 2009
}
If (_OSI("Windows 2012")) {
Store (2012, OSYS)
OSYS = 2012
}
}
}