summaryrefslogtreecommitdiffstats
path: root/src/ec/lenovo/h8/acpi/ec.asl
diff options
context:
space:
mode:
authorPatrick Rudolph <siro@das-labor.org>2018-07-29 08:08:33 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-07-30 18:59:51 +0000
commitdbf5a5d0f8c63269a8f4fed72b70fbcc3d52e161 (patch)
tree8c3f74fc4e6cf04dd383c89d368dc31650068e62 /src/ec/lenovo/h8/acpi/ec.asl
parente67f626664a1c9c6f21fe903cb37a2a57992fbba (diff)
downloadcoreboot-dbf5a5d0f8c63269a8f4fed72b70fbcc3d52e161.tar.gz
coreboot-dbf5a5d0f8c63269a8f4fed72b70fbcc3d52e161.tar.bz2
coreboot-dbf5a5d0f8c63269a8f4fed72b70fbcc3d52e161.zip
ec/lenovo/h8/acpi: Fix ACPI error in _INI
Store the power on defaults in the _REG method after the ERAM region is ready for use. It might not be ready when accessed from _INI. Tested on Lenovo T430. Change-Id: I70f22f8ac61dd850180fa159313bb0f8e4ab31d9 Signed-off-by: Patrick Rudolph <siro@das-labor.org> Reviewed-on: https://review.coreboot.org/27710 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/ec/lenovo/h8/acpi/ec.asl')
-rw-r--r--src/ec/lenovo/h8/acpi/ec.asl14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ec/lenovo/h8/acpi/ec.asl b/src/ec/lenovo/h8/acpi/ec.asl
index 8a1b9c4343d1..327a2cfe1f5f 100644
--- a/src/ec/lenovo/h8/acpi/ec.asl
+++ b/src/ec/lenovo/h8/acpi/ec.asl
@@ -75,6 +75,20 @@ Device(EC)
DKR3, 1 /* Dock register 3 */
}
+ /* Called on OperationRegion driver changes */
+ Method (_REG, 2, NotSerialized)
+ {
+ /* Wait for ERAM driver loaded */
+ if (LEqual(Arg1, One)) {
+ /* Fill HKEY defaults on first boot */
+ if (LEqual(^HKEY.INIT, Zero)) {
+ Store (BTEB, ^HKEY.WBDC)
+ Store (WWEB, ^HKEY.WWAN)
+ Store (One, ^HKEY.INIT)
+ }
+ }
+ }
+
Method (_CRS, 0, Serialized)
{
Name (ECMD, ResourceTemplate()