HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/46211 )
Change subject: mb/roda/rv11: Convert to ASL 2.0 syntax ......................................................................
mb/roda/rv11: Convert to ASL 2.0 syntax
Change-Id: Id12c20dbe949c4badfe07578c6d202cd4cfb8191 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/mainboard/roda/rv11/acpi/alsd.asl M src/mainboard/roda/rv11/acpi/thermal.asl 2 files changed, 23 insertions(+), 23 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/11/46211/1
diff --git a/src/mainboard/roda/rv11/acpi/alsd.asl b/src/mainboard/roda/rv11/acpi/alsd.asl index f910dc6..b3028e3 100644 --- a/src/mainboard/roda/rv11/acpi/alsd.asl +++ b/src/mainboard/roda/rv11/acpi/alsd.asl @@ -10,12 +10,12 @@
Method (_ALI, 0, NotSerialized) // _ALI: Ambient Light Illuminance { - Store (_SB.PCI0.LPCB.EC0.LUXH, Local0) - Or (ShiftLeft (Local0, 8), _SB.PCI0.LPCB.EC0.LUXL, Local0) - Store ("-----> _ALI: ", Debug) - Store (Local0, Debug) - Store (_SB.PCI0.LPCB.EC0.LUXH, Debug) - Store (_SB.PCI0.LPCB.EC0.LUXL, Debug) + Local0 = _SB.PCI0.LPCB.EC0.LUXH + Local0 = (Local0 << 8) | _SB.PCI0.LPCB.EC0.LUXL + Debug = "-----> _ALI: " + Debug = Local0 + Debug = _SB.PCI0.LPCB.EC0.LUXH + Debug = _SB.PCI0.LPCB.EC0.LUXL Return (Local0) }
diff --git a/src/mainboard/roda/rv11/acpi/thermal.asl b/src/mainboard/roda/rv11/acpi/thermal.asl index 7f356e3..1d18781 100644 --- a/src/mainboard/roda/rv11/acpi/thermal.asl +++ b/src/mainboard/roda/rv11/acpi/thermal.asl @@ -10,10 +10,10 @@ // Convert from Degrees C to 1/10 Kelvin for ACPI Method (CTOK, 1) { // 10th of Degrees C - Multiply (Arg0, 10, Local0) + Local0 = Arg0 * 10
// Convert to Kelvin - Add (Local0, 2732, Local0) + Local0 += 2732
Return (Local0) } @@ -49,17 +49,17 @@
Method (_TMP, 0, NotSerialized) // _TMP: Temperature { - Store (_SB.PCI0.LPCB.EC0.CPUT, Local0) + Local0 = _SB.PCI0.LPCB.EC0.CPUT
If (Local0 >= 0x80) { - Store ("-----> CPU Temperature (INVALID): ", Debug) - Store (Local0, Debug) + Debug = "-----> CPU Temperature (INVALID): " + Debug = Local0 Return (CTOK (0)) }
- Store ("-----> CPU Temperature: ", Debug) - Store (Local0, Debug) + Debug = "-----> CPU Temperature: " + Debug = Local0
Return (CTOK (Local0)) } @@ -82,17 +82,17 @@
Method (_TMP, 0, NotSerialized) // _TMP: Temperature { - Store (_SB.PCI0.LPCB.EC0.LOCT, Local0) + Local0 = _SB.PCI0.LPCB.EC0.LOCT
If (Local0 >= 0x80) { - Store ("-----> LOC Temperature (INVALID): ", Debug) - Store (Local0, Debug) + Debug = "-----> LOC Temperature (INVALID): " + Debug = Local0 Return (CTOK (0)) }
- Store ("-----> LOC Temperature: ", Debug) - Store (Local0, Debug) + Debug = "-----> LOC Temperature: " + Debug = Local0
Return (CTOK (Local0)) } @@ -114,17 +114,17 @@
Method (_TMP, 0, NotSerialized) // _TMP: Temperature { - Store (_SB.PCI0.LPCB.EC0.OEMT, Local0) + Local0 = _SB.PCI0.LPCB.EC0.OEMT
If (Local0 >= 0x80) { - Store ("-----> OEM Temperature (INVALID): ", Debug) - Store (Local0, Debug) + Debug = "-----> OEM Temperature (INVALID): " + Debug = Local0 Return (CTOK (0)) }
- Store ("-----> OEM Temperature: ", Debug) - Store (Local0, Debug) + Debug = "-----> OEM Temperature: " + Debug = Local0
Return (CTOK (Local0)) }