Patrick Georgi (pgeorgi@google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10702
-gerrit
commit b4396bdf3e59dff19d8c7a6ced23dc4cbb749b32 Author: Patrick Georgi pgeorgi@chromium.org Date: Mon Jun 29 22:49:26 2015 +0200
qualcomm/ipq806x: centralize vboot configuration
vboot configuration (separate stage or not, which stage loads romstage) depends on SoC properties (eg. amount of SRAM), not on board specifics, so move this part of the configuration to the SoC.
Change-Id: I70b4cd1794ddf2aba7cdae94859ea1d76ae019f4 Signed-off-by: Patrick Georgi pgeorgi@chromium.org --- src/mainboard/google/storm/Kconfig | 1 - src/soc/qualcomm/ipq806x/Kconfig | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/mainboard/google/storm/Kconfig b/src/mainboard/google/storm/Kconfig index c6c75ee..1989640 100644 --- a/src/mainboard/google/storm/Kconfig +++ b/src/mainboard/google/storm/Kconfig @@ -29,7 +29,6 @@ config BOARD_SPECIFIC_OPTIONS select DRIVERS_I2C_WW_RING select HAVE_HARD_RESET select MAINBOARD_HAS_CHROMEOS - select RETURN_FROM_VERSTAGE select SPI_FLASH select SPI_FLASH_SPANSION select SPI_FLASH_STMICRO diff --git a/src/soc/qualcomm/ipq806x/Kconfig b/src/soc/qualcomm/ipq806x/Kconfig index 7f8937c..ecc52e2 100644 --- a/src/soc/qualcomm/ipq806x/Kconfig +++ b/src/soc/qualcomm/ipq806x/Kconfig @@ -10,6 +10,8 @@ config SOC_QC_IPQ806X select HAVE_UART_SPECIAL select SPI_ATOMIC_SEQUENCING select GENERIC_GPIO_LIB + select SEPARATE_VERSTAGE + select RETURN_FROM_VERSTAGE
if SOC_QC_IPQ806X