Nick Vaccaro has uploaded this change for review. ( https://review.coreboot.org/25298
Change subject: mb/google/zoombini: always report EC is in RO mode ......................................................................
mb/google/zoombini: always report EC is in RO mode
Always report that EC is in RO mode. This is a temporary workaround for a hardware issue that is causing EC to appear to be in RW mode when it is not. This change will be reverted once transition is made to newer hardware.
BUG=b:74215817 BRANCH=master TEST=Verify meowth can boot to recovery's insert screen.
Change-Id: Ib3705bba0bb1f351da79e599566fbffab94428f3 Signed-off-by: Nick Vaccaro nvaccaro@google.com --- M src/mainboard/google/zoombini/chromeos.c 1 file changed, 1 insertion(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/98/25298/1
diff --git a/src/mainboard/google/zoombini/chromeos.c b/src/mainboard/google/zoombini/chromeos.c index 8ca643e..4a4ad35 100644 --- a/src/mainboard/google/zoombini/chromeos.c +++ b/src/mainboard/google/zoombini/chromeos.c @@ -29,8 +29,7 @@ {-1, ACTIVE_HIGH, get_lid_switch(), "lid"}, {-1, ACTIVE_HIGH, 0, "power"}, {-1, ACTIVE_HIGH, gfx_get_init_done(), "oprom"}, - {GPIO_EC_IN_RW, ACTIVE_HIGH, gpio_get(GPIO_EC_IN_RW), - "EC in RW"}, + {GPIO_EC_IN_RW, ACTIVE_HIGH, 0, "EC in RW"}, }; lb_add_gpios(gpios, chromeos_gpios, ARRAY_SIZE(chromeos_gpios)); }