google/kukui: Support recovery mode
Get recovery mode switch from EC and pass it to payload. BUG=b:80501386 BRANCH=none Test: Boots correctly on Kukui. Change-Id: Ib92afca885e5a97ec4646f55f2279ef56a61af5a Signed-off-by: Tristan Shieh <tristan.shieh@mediatek.com> Reviewed-on: https://review.coreboot.org/29190 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Hung-Te Lin <hungte@chromium.org>
This commit is contained in:
parent
cf04c61170
commit
156a63881f
|
@ -1,6 +1,7 @@
|
||||||
if BOARD_GOOGLE_KUKUI
|
if BOARD_GOOGLE_KUKUI
|
||||||
|
|
||||||
config VBOOT
|
config VBOOT
|
||||||
|
select EC_GOOGLE_CHROMEEC_SWITCHES
|
||||||
select VBOOT_MOCK_SECDATA
|
select VBOOT_MOCK_SECDATA
|
||||||
|
|
||||||
config BOARD_SPECIFIC_OPTIONS
|
config BOARD_SPECIFIC_OPTIONS
|
||||||
|
@ -12,6 +13,8 @@ config BOARD_SPECIFIC_OPTIONS
|
||||||
select SPI_FLASH
|
select SPI_FLASH
|
||||||
select FATAL_ASSERTS
|
select FATAL_ASSERTS
|
||||||
select SPI_FLASH_INCLUDE_ALL_DRIVERS
|
select SPI_FLASH_INCLUDE_ALL_DRIVERS
|
||||||
|
select EC_GOOGLE_CHROMEEC
|
||||||
|
select EC_GOOGLE_CHROMEEC_SPI
|
||||||
|
|
||||||
config MAINBOARD_DIR
|
config MAINBOARD_DIR
|
||||||
string
|
string
|
||||||
|
|
|
@ -28,17 +28,13 @@ void setup_chromeos_gpios(void)
|
||||||
void fill_lb_gpios(struct lb_gpios *gpios)
|
void fill_lb_gpios(struct lb_gpios *gpios)
|
||||||
{
|
{
|
||||||
struct lb_gpio chromeos_gpios[] = {
|
struct lb_gpio chromeos_gpios[] = {
|
||||||
|
{-1, ACTIVE_HIGH, get_recovery_mode_switch(), "recovery"},
|
||||||
{EC_IN_RW.id, ACTIVE_HIGH, -1, "EC in RW"},
|
{EC_IN_RW.id, ACTIVE_HIGH, -1, "EC in RW"},
|
||||||
{EC_IRQ.id, ACTIVE_LOW, -1, "EC interrupt"},
|
{EC_IRQ.id, ACTIVE_LOW, -1, "EC interrupt"},
|
||||||
};
|
};
|
||||||
lb_add_gpios(gpios, chromeos_gpios, ARRAY_SIZE(chromeos_gpios));
|
lb_add_gpios(gpios, chromeos_gpios, ARRAY_SIZE(chromeos_gpios));
|
||||||
}
|
}
|
||||||
|
|
||||||
int get_recovery_mode_switch(void)
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
int get_write_protect_state(void)
|
int get_write_protect_state(void)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue