Martin Roth has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/45854 )
Change subject: mb/google/zork: Temporary init for backlight in the OS ......................................................................
mb/google/zork: Temporary init for backlight in the OS
This needs to go into ACPI, but that's taking me a while, so I figured I'd push this temporarily.
Not for merge.
Signed-off-by: Martin Roth martinroth@chromium.org Change-Id: I6ecc3c9e397c9756a78e480d3f639c507879a0ea --- M src/mainboard/google/zork/smihandler.c 1 file changed, 4 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/54/45854/1
diff --git a/src/mainboard/google/zork/smihandler.c b/src/mainboard/google/zork/smihandler.c index 12a3b64..6fc6f92 100644 --- a/src/mainboard/google/zork/smihandler.c +++ b/src/mainboard/google/zork/smihandler.c @@ -33,5 +33,9 @@ if (CONFIG(EC_GOOGLE_CHROMEEC)) chromeec_smi_apmc(apmc, MAINBOARD_EC_SCI_EVENTS, MAINBOARD_EC_SMI_EVENTS); + /* Temporary fix - Needs to go into ACPI instead */ + /* Turn on the backlight when we go to ACPI mode */ + gpio_set(GPIO_85, 0); + return 0; }