aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2014-06-30 07:49:55 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2014-07-05 11:35:53 +0200
commitab605108184e53964e6f6a2300a1983aa7166422 (patch)
tree6399d2393884fdf045e156c59a3352f63e005156
parentc06af9eb8b662f23a7f93ff781f7a5b5edefbb9c (diff)
spi flash: Organise options list
Change-Id: I21e4e2384d9b8bbd34f652e99af11dee993fb41c Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/6173 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
-rw-r--r--src/drivers/spi/Kconfig42
1 files changed, 21 insertions, 21 deletions
diff --git a/src/drivers/spi/Kconfig b/src/drivers/spi/Kconfig
index 5135dfb762..6b31053497 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