Kyösti Mälkki (kyosti.malkki@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6173
-gerrit
commit 2e71248f3e3cac34986321108725b400d4183051 Author: Kyösti Mälkki kyosti.malkki@gmail.com Date: Mon Jun 30 07:49:55 2014 +0300
spi flash: Organise options list
Change-Id: I21e4e2384d9b8bbd34f652e99af11dee993fb41c Signed-off-by: Kyösti Mälkki kyosti.malkki@gmail.com --- src/drivers/spi/Kconfig | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-)
diff --git a/src/drivers/spi/Kconfig b/src/drivers/spi/Kconfig index 5135dfb..6b31053 100644 --- a/src/drivers/spi/Kconfig +++ b/src/drivers/spi/Kconfig @@ -33,6 +33,20 @@ config SPI_FLASH_SMM help Select this option if you want SPI flash support in SMM.
+config SPI_FLASH_NO_FAST_READ + bool "Disable Fast Read command" + default n + help + Select this option if your setup requires to avoid "fast read"s + from the SPI flash parts. + +config SPI_FLASH_ADESTO + bool + default y + help + Select this option if your chipset driver needs to store certain + data in the SPI flash and your SPI flash is made by Adesto Technologies. + config SPI_FLASH_AMIC bool default y @@ -47,6 +61,13 @@ config SPI_FLASH_EON Select this option if your chipset driver needs to store certain data in the SPI flash and your SPI flash is made by EON.
+config SPI_FLASH_GIGADEVICE + bool + default y + help + Select this option if your chipset driver needs to store certain + data in the SPI flash and your SPI flash is made by Gigadevice. + config SPI_FLASH_MACRONIX bool default y @@ -82,25 +103,4 @@ config SPI_FLASH_WINBOND Select this option if your chipset driver needs to store certain data in the SPI flash and your SPI flash is made by Winbond.
-config SPI_FLASH_NO_FAST_READ - bool "Disable Fast Read command" - default n - help - Select this option if your setup requires to avoid "fast read"s - from the SPI flash parts. - -config SPI_FLASH_GIGADEVICE - bool - default y - help - Select this option if your chipset driver needs to store certain - data in the SPI flash and your SPI flash is made by Gigadevice. - -config SPI_FLASH_ADESTO - bool - default y - help - Select this option if your chipset driver needs to store certain - data in the SPI flash and your SPI flash is made by Adesto Technologies. - endif # SPI_FLASH