aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-10-08 09:57:40 +0200
committerMichael Niewöhner <foss@mniewoehner.de>2021-01-24 21:39:18 +0000
commit23af35f04060560bde3e151699c582ad37e9f1af (patch)
treed88b387f6e6f5fa51372f008635b0a15a59dc05b /src/mainboard/lenovo
parent965f98c8dc92e2af4a77f39a473a5116f079b698 (diff)
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>
Diffstat (limited to 'src/mainboard/lenovo')
-rw-r--r--src/mainboard/lenovo/x201/acpi/dock.asl18
-rw-r--r--src/mainboard/lenovo/x201/acpi/gpe.asl4
-rw-r--r--src/mainboard/lenovo/x201/acpi/platform.asl26
3 files changed, 24 insertions, 24 deletions
diff --git a/src/mainboard/lenovo/x201/acpi/dock.asl b/src/mainboard/lenovo/x201/acpi/dock.asl
index 0bf5a2542e..311e620ab7 100644
--- a/src/mainboard/lenovo/x201/acpi/dock.asl
+++ b/src/mainboard/lenovo/x201/acpi/dock.asl
@@ -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)
}
diff --git a/src/mainboard/lenovo/x201/acpi/gpe.asl b/src/mainboard/lenovo/x201/acpi/gpe.asl
index 62e7b37bb4..9984636860 100644
--- a/src/mainboard/lenovo/x201/acpi/gpe.asl
+++ b/src/mainboard/lenovo/x201/acpi/gpe.asl
@@ -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++
}
}
diff --git a/src/mainboard/lenovo/x201/acpi/platform.asl b/src/mainboard/lenovo/x201/acpi/platform.asl
index b03f45f8f0..44b06c6a05 100644
--- a/src/mainboard/lenovo/x201/acpi/platform.asl
+++ b/src/mainboard/lenovo/x201/acpi/platform.asl
@@ -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
}
}
}