diff options
-rw-r--r-- | src/mainboard/google/storm/Kconfig | 1 | ||||
-rw-r--r-- | src/mainboard/google/storm/Makefile.inc | 1 | ||||
-rw-r--r-- | src/mainboard/google/storm/chromeos.c | 10 |
3 files changed, 10 insertions, 2 deletions
diff --git a/src/mainboard/google/storm/Kconfig b/src/mainboard/google/storm/Kconfig index 1bac49d9b2..1cc83785ff 100644 --- a/src/mainboard/google/storm/Kconfig +++ b/src/mainboard/google/storm/Kconfig @@ -25,6 +25,7 @@ config BOARD_SPECIFIC_OPTIONS select BOARD_ID_AUTO select BOARD_ROMSIZE_KB_8192 select COMMON_CBFS_SPI_WRAPPER + select DRIVERS_I2C_WW_RING select HAVE_HARD_RESET select MAINBOARD_HAS_BOOTBLOCK_INIT select MAINBOARD_HAS_CHROMEOS diff --git a/src/mainboard/google/storm/Makefile.inc b/src/mainboard/google/storm/Makefile.inc index c0a523a8ae..5e03eebe49 100644 --- a/src/mainboard/google/storm/Makefile.inc +++ b/src/mainboard/google/storm/Makefile.inc @@ -22,6 +22,7 @@ bootblock-y += cdp.c bootblock-y += mmu.c bootblock-y += reset.c +verstage-y += boardid.c verstage-y += cdp.c verstage-y += chromeos.c verstage-y += gsbi.c diff --git a/src/mainboard/google/storm/chromeos.c b/src/mainboard/google/storm/chromeos.c index be949a515e..4a01fa8820 100644 --- a/src/mainboard/google/storm/chromeos.c +++ b/src/mainboard/google/storm/chromeos.c @@ -17,10 +17,14 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <boardid.h> #include <boot/coreboot_tables.h> #include <console/console.h> #include <delay.h> +#include <drivers/i2c/ww_ring/ww_ring.h> #include <gpio.h> +#include <soc/cdp.h> +#include <soc/gsbi.h> #include <string.h> #include <timer.h> #include <vendorcode/google/chromeos/chromeos.h> @@ -86,9 +90,11 @@ int get_recovery_mode_switch(void) break; } while (!stopwatch_expired(&sw)); - if (sampled_value) + if (sampled_value) { printk(BIOS_INFO, "recovery mode requested\n"); - + if (board_id() == BOARD_ID_WHIRLWIND_SP5) + ww_ring_display_pattern(GSBI_ID_7, 0); + } return sampled_value; } |