From 6754e4ea2008f67c0630fdac976456649a5ac95a Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Tue, 10 Oct 2017 10:34:48 -0600 Subject: mainboard/google/kahlee: Add EC_IN_RW flag Depthcharge was complaining that the GPIO for this flag wasn't set. The GPIO also needs to be an input, not an output. BUG=b:67614692 TEST=Depthcharge no longer complains that there is no GPIO set for flag5. The system boots again. Change-Id: Ib854e97b0a3aa42a95ceb8a42a9776f0345ff8b1 Signed-off-by: Martin Roth Reviewed-on: https://review.coreboot.org/21936 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin Reviewed-by: Marc Jones --- src/mainboard/google/kahlee/chromeos.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/mainboard/google/kahlee/chromeos.c') diff --git a/src/mainboard/google/kahlee/chromeos.c b/src/mainboard/google/kahlee/chromeos.c index 4c152ba0e5..55130741d7 100644 --- a/src/mainboard/google/kahlee/chromeos.c +++ b/src/mainboard/google/kahlee/chromeos.c @@ -22,6 +22,7 @@ /* SPI Write protect */ #define CROS_WP_GPIO GPIO_142 +#define GPIO_EC_IN_RW GPIO_15 void fill_lb_gpios(struct lb_gpios *gpios) { @@ -30,6 +31,9 @@ void fill_lb_gpios(struct lb_gpios *gpios) {-1, ACTIVE_HIGH, get_recovery_mode_switch(), "recovery"}, {-1, ACTIVE_HIGH, get_lid_switch(), "lid"}, {-1, ACTIVE_HIGH, 0, "power"}, + {GPIO_EC_IN_RW, ACTIVE_HIGH, gpio_get(GPIO_EC_IN_RW), + "EC in RW"}, + }; lb_add_gpios(gpios, chromeos_gpios, ARRAY_SIZE(chromeos_gpios)); } -- cgit v1.2.3