ec/google/chromeec/acpi: Use ASL 2.0 syntax to access arrays

Replace Index(FOO, 1337) with FOO[1337].

Change-Id: I2fb96e338b332f4fbb3bd23fb07bb1ca36c19c49
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60457
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Felix Singer 2021-12-29 14:02:47 +01:00
parent e55a7d160b
commit 38ac171ddd
1 changed files with 21 additions and 21 deletions

View File

@ -68,27 +68,27 @@ Method (BBIF, 2, Serialized)
Return (Arg1)
}
// Last Full Charge Capacity
Store (BTDF, Index (Arg1, 2))
Store (BTDF, Arg1[2])
// Design Voltage
Store (BTDV, Index (Arg1, 4))
Store (BTDV, Arg1[4])
// Design Capacity
Store (BTDA, Local0)
Store (Local0, Index (Arg1, 1))
Store (Local0, Arg1[1])
// Design Capacity of Warning
Divide (Multiply (Local0, DWRN), 100, , Local2)
Store (Local2, Index (Arg1, 5))
Store (Local2, Arg1[5])
// Design Capacity of Low
Divide (Multiply (Local0, DLOW), 100, , Local2)
Store (Local2, Index (Arg1, 6))
Store (Local2, Arg1[6])
// Get battery info from mainboard
Store (ToString(Concatenate(BMOD, 0x00)), Index (Arg1, 9))
Store (ToString(Concatenate(BSER, 0x00)), Index (Arg1, 10))
Store (ToString(Concatenate(BMFG, 0x00)), Index (Arg1, 12))
Store (ToString(Concatenate(BMOD, 0x00)), Arg1[9])
Store (ToString(Concatenate(BSER, 0x00)), Arg1[10])
Store (ToString(Concatenate(BMFG, 0x00)), Arg1[12])
Release (^BATM)
Return (Arg1)
@ -108,30 +108,30 @@ Method (BBIX, 2, Serialized)
Return (Arg1)
}
// Last Full Charge Capacity
Store (BTDF, Index (Arg1, 3))
Store (BTDF, Arg1[3])
// Design Voltage
Store (BTDV, Index (Arg1, 5))
Store (BTDV, Arg1[5])
// Design Capacity
Store (BTDA, Local0)
Store (Local0, Index (Arg1, 2))
Store (Local0, Arg1[2])
// Design Capacity of Warning
Divide (Multiply (Local0, DWRN), 100, , Local2)
Store (Local2, Index (Arg1, 6))
Store (Local2, Arg1[6])
// Design Capacity of Low
Divide (Multiply (Local0, DLOW), 100, , Local2)
Store (Local2, Index (Arg1, 7))
Store (Local2, Arg1[7])
// Cycle Count
Store (BTCC, Index (Arg1, 8))
Store (BTCC, Arg1[8])
// Get battery info from mainboard
Store (ToString(Concatenate(BMOD, 0x00)), Index (Arg1, 16))
Store (ToString(Concatenate(BSER, 0x00)), Index (Arg1, 17))
Store (ToString(Concatenate(BMFG, 0x00)), Index (Arg1, 19))
Store (ToString(Concatenate(BMOD, 0x00)), Arg1[16])
Store (ToString(Concatenate(BSER, 0x00)), Arg1[17])
Store (ToString(Concatenate(BMFG, 0x00)), Arg1[19])
Release (^BATM)
Return (Arg1)
@ -177,7 +177,7 @@ Method (BBST, 4, Serialized)
If (BFCR) {
Or (Local1, 0x04, Local1)
}
Store (Local1, Index (Arg1, 0))
Store (Local1, Arg1[0])
// Notify if battery state has changed since last time
If (LNotEqual (Local1, DeRefOf (Arg2))) {
@ -195,7 +195,7 @@ Method (BBST, 4, Serialized)
//
// 1: BATTERY PRESENT RATE
//
Store (BTPR, Index (Arg1, 1))
Store (BTPR, Arg1[1])
//
// 2: BATTERY REMAINING CAPACITY
@ -216,12 +216,12 @@ Method (BBST, 4, Serialized)
Store (Local2, Local1)
}
}
Store (Local1, Index (Arg1, 2))
Store (Local1, Arg1[2])
//
// 3: BATTERY PRESENT VOLTAGE
//
Store (BTVO, Index (Arg1, 3))
Store (BTVO, Arg1[3])
Release (^BATM)
Return (Arg1)