summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatt DeVillier <matt.devillier@gmail.com>2020-12-18 20:45:22 -0600
committerMatt DeVillier <matt.devillier@gmail.com>2023-08-05 16:01:41 +0000
commite4f7c8fce8fbb7bcbe2bdfc1e4e013eae1ccf4a4 (patch)
tree9bf544356f537ed1a923b0fd58b072ea6c16ef85 /src
parent94ad304451c42c79b1a1fab5ede822aba40a909f (diff)
downloadcoreboot-e4f7c8fce8fbb7bcbe2bdfc1e4e013eae1ccf4a4.tar.gz
coreboot-e4f7c8fce8fbb7bcbe2bdfc1e4e013eae1ccf4a4.tar.bz2
coreboot-e4f7c8fce8fbb7bcbe2bdfc1e4e013eae1ccf4a4.zip
mb/google/eve: Use keyboard backlight for proof-of-life at boot
This feature was originally present and then dropped, but turns out that users prefer it. Set the backlight to 50% in romstage, back to zero in ramstage; skip enabling on the S3 resume path. TEST=build/boot google/eve, verify keyboard backlight turns on/off as expected. Change-Id: I33af888d614010538f69512bbd052ed2b83fcaa5 Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/76803 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/google/eve/ec.c4
-rw-r--r--src/mainboard/google/eve/romstage.c7
2 files changed, 11 insertions, 0 deletions
diff --git a/src/mainboard/google/eve/ec.c b/src/mainboard/google/eve/ec.c
index 499f56484bf3..7ed07460c805 100644
--- a/src/mainboard/google/eve/ec.c
+++ b/src/mainboard/google/eve/ec.c
@@ -15,4 +15,8 @@ void mainboard_ec_init(void)
};
google_chromeec_events_init(&info, acpi_is_wakeup_s3());
+
+ /* Turn off keyboard backlight after turning on in romstage */
+ if (!acpi_is_wakeup_s3())
+ google_chromeec_kbbacklight(0);
}
diff --git a/src/mainboard/google/eve/romstage.c b/src/mainboard/google/eve/romstage.c
index f3c0f1140b44..906f98e0bb6d 100644
--- a/src/mainboard/google/eve/romstage.c
+++ b/src/mainboard/google/eve/romstage.c
@@ -1,11 +1,14 @@
/* SPDX-License-Identifier: GPL-2.0-only */
+#include <acpi/acpi.h>
#include <boardid.h>
#include <string.h>
+#include <ec/google/chromeec/ec.h>
#include <fsp/soc_binding.h>
#include <soc/romstage.h>
#include <console/console.h>
#include "spd/spd.h"
+#include "ec.h"
void mainboard_memory_init_params(FSPM_UPD *mupd)
{
@@ -41,4 +44,8 @@ void mainboard_memory_init_params(FSPM_UPD *mupd)
printk(BIOS_WARNING, "Limiting memory to 1600MHz\n");
mem_cfg->DdrFreqLimit = 1600;
}
+
+ /* Turn on keyboard backlight to indicate we are booting */
+ if (!acpi_is_wakeup_s3())
+ google_chromeec_kbbacklight(50);
}