aboutsummaryrefslogtreecommitdiff
path: root/src/ec
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-10-06 18:02:47 +0200
committerMichael Niewöhner <foss@mniewoehner.de>2021-01-24 21:50:30 +0000
commit5b880a1333442f9a44027a872115684397b8e699 (patch)
tree436c198438d808701e07b552ae56505f3eaa6a12 /src/ec
parentfafd512842226561a01696b2fd4c70bec0a440e5 (diff)
ec/compal: Convert to ASL 2.0 syntax
Change-Id: I934f9d1664f657597f15daed2d2d0c41cd124d21 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46096 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Diffstat (limited to 'src/ec')
-rw-r--r--src/ec/compal/ene932/acpi/ac.asl2
-rw-r--r--src/ec/compal/ene932/acpi/battery.asl68
-rw-r--r--src/ec/compal/ene932/acpi/ec.asl12
3 files changed, 41 insertions, 41 deletions
diff --git a/src/ec/compal/ene932/acpi/ac.asl b/src/ec/compal/ene932/acpi/ac.asl
index b086bf5cd2..cc14b33add 100644
--- a/src/ec/compal/ene932/acpi/ac.asl
+++ b/src/ec/compal/ene932/acpi/ac.asl
@@ -9,7 +9,7 @@ Device (AC)
Method (_PSR)
{
- Store(ADPT, Local0)
+ Local0 = ADPT
Return(Local0)
}
diff --git a/src/ec/compal/ene932/acpi/battery.asl b/src/ec/compal/ene932/acpi/battery.asl
index b3bf157e1b..9c70b594bc 100644
--- a/src/ec/compal/ene932/acpi/battery.asl
+++ b/src/ec/compal/ene932/acpi/battery.asl
@@ -38,13 +38,13 @@ Device (BATX)
// Method to enable full battery workaround
Method (BFWE)
{
- Store (One, BFWK)
+ BFWK = 1
}
// Method to disable full battery workaround
Method (BFWD)
{
- Store (Zero, BFWK)
+ BFWK = 0
}
Method (_STA, 0, Serialized)
@@ -59,22 +59,22 @@ Device (BATX)
Method (_BIF, 0, Serialized)
{
// Update fields from EC
- Store (BAM0, Index (PBIF, 0))
- Store (BDC0, Index (PBIF, 1))
- Store (BFC0, Index (PBIF, 2))
- Store (BDV0, Index (PBIF, 4))
- Divide(BFC0, 0x64, , Local1)
- Multiply(Local1, 0x0A, Local1)
- Store(Local1, Index(PBIF, 5))
- Divide(BFC0, 0x64, , Local1)
- Multiply(Local1, 0x03, Local1)
- Store (Local1, Index (PBIF, 6))
-
- Store (ToString(Concatenate(BATD, 0x00)), Index (PBIF, 9)) // model
- Store (ToHexString(BSN0), Index (PBIF, 10)) // serial
- Store (ToString(BMFN), Index (PBIF, 12)) // vendor
-
- Store(BDN0, BTNM) // Save the battery number
+ PBIF [0] = BAM0
+ PBIF [1] = BDC0
+ PBIF [2] = BFC0
+ PBIF [4] = BDV0
+ Local1 = BFC0 / 100
+ Local1 *= 10
+ PBIF [5] = Local1
+ Local1 = BFC0 / 100
+ Local1 *= 3
+ PBIF [6] = Local1
+
+ PBIF [9] = ToString (Concatenate (BATD, 0x00)) // model
+ PBIF [10] = ToHexString (BSN0) // serial
+ PBIF [12] = ToString (BMFN) // vendor
+
+ BTNM = BDN0 // Save the battery number
Return (PBIF)
}
@@ -90,47 +90,47 @@ Device (BATX)
//
// Get battery state from EC and save it for the charging workaround
- Store (BST0, Local0)
- Store (Local0, Index (PBST, 0))
+ Local0 = BST0
+ PBST [0] = Local0
//
// 1: BATTERY PRESENT RATE/CURRENT
//
- Store (BAC0, Local1)
- Subtract(0xFFFF, Local1, Local1)
- Store (Local1, Index (PBST, 1))
+ Local1 = BAC0
+ Local1 = 0xFFFF - Local1
+ PBST [1] = Local1
//
// 2: BATTERY REMAINING CAPACITY
//
- Multiply(BFC0, GAU0, Local1)
- Divide(Local1, 0x64, Local2, Local1)
+ Local1 = BFC0 * GAU0
+ Local2 = Local1 % 100
+ Local1 /= 100
- If (LAnd (BFWK, LAnd (ADPT, LNot (Local0)))) {
+ If (BFWK && ADPT && !Local0) {
// On AC power and battery is neither charging
// nor discharging. Linux expects a full battery
// to report same capacity as last full charge.
// https://bugzilla.kernel.org/show_bug.cgi?id=12632
- Store (GAU0, Local2)
+ Local2 = GAU0
// See if within ~3% of full
- ShiftRight (Local2, 5, Local3)
- If (LAnd (LGreater (Local1, Subtract (Local2, Local3)),
- LLess (Local1, Add (Local2, Local3))))
+ Local3 = Local2 >> 5
+ If ((Local1 > (Local2 - Local3)) && (Local1 < (Local2 + Local3)))
{
- Store (Local2, Local1)
+ Local1 = Local2
}
}
- Store (Local1, Index (PBST, 2))
+ PBST [2] = Local1
//
// 3: BATTERY PRESENT VOLTAGE
//
- Store (BPV0, Index (PBST, 3))
+ PBST [3] = BPV0
// Check the Battery Number
- If(LNotEqual(BDN0, BTNM)) {
+ If(BDN0 != BTNM) {
Notify(BATX, 0x81)
}
diff --git a/src/ec/compal/ene932/acpi/ec.asl b/src/ec/compal/ene932/acpi/ec.asl
index c4fa3a38d3..f3fb9979fe 100644
--- a/src/ec/compal/ene932/acpi/ec.asl
+++ b/src/ec/compal/ene932/acpi/ec.asl
@@ -252,12 +252,12 @@ Device (EC0)
Method (_REG, 2, NotSerialized)
{
// Initialize AC power state
- Store (ADPT, \PWRS)
+ \PWRS = ADPT
// Force a read of CPU temperature
- Store (CTML, Local0)
+ Local0 = CTML
/* So that we don't get a warning that Local0 is unused. */
- Increment (Local0)
+ Local0++
}
@@ -322,7 +322,7 @@ Device (EC0)
// AC Power Connected
Method (_Q37, 0, NotSerialized)
{
- Store (One, \PWRS)
+ \PWRS = 1
Notify (AC, 0x80)
Notify (BATX, 0x80)
// TODO ADD CPU power profile
@@ -332,7 +332,7 @@ Device (EC0)
// AC Power Removed
Method (_Q38, 0, NotSerialized)
{
- Store (Zero, \PWRS)
+ \PWRS = 0
Notify (AC, 0x80)
Notify (BATX, 0x80)
// TODO ADD CPU power profile
@@ -363,7 +363,7 @@ Device (EC0)
{
IF(WLEX) //if Wlan exist
{
- //TODO Store(WLAT, LANE)
+ //TODO LANE = WLAT
}
}