diff options
author | Thomas Chou <thomas@wytron.com.tw> | 2015-11-07 14:31:08 +0800 |
---|---|---|
committer | Thomas Chou <thomas@wytron.com.tw> | 2015-11-12 08:26:58 +0800 |
commit | f1056910434d87051ff8af80a84e248dd1670abb (patch) | |
tree | bf6a6407ffb49e7bc01aa9f1d75cea3961991526 /drivers/mtd/Kconfig | |
parent | d85879938d3fc3557f6ff74a60f95e0975a314ce (diff) | |
download | u-boot-imx-f1056910434d87051ff8af80a84e248dd1670abb.zip u-boot-imx-f1056910434d87051ff8af80a84e248dd1670abb.tar.gz u-boot-imx-f1056910434d87051ff8af80a84e248dd1670abb.tar.bz2 |
cfi_flash: convert to driver model
Convert cfi flash to driver model.
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/mtd/Kconfig')
-rw-r--r-- | drivers/mtd/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/mtd/Kconfig b/drivers/mtd/Kconfig index 23dff48..57e4b86 100644 --- a/drivers/mtd/Kconfig +++ b/drivers/mtd/Kconfig @@ -8,6 +8,17 @@ config MTD flash, RAM and similar chips, often used for solid state file systems on embedded devices. +config CFI_FLASH + bool "Enable Driver Model for CFI Flash driver" + depends on MTD + help + The Common Flash Interface specification was developed by Intel, + AMD and other flash manufactures. It provides a universal method + for probing the capabilities of flash devices. If you wish to + support any device that is CFI-compliant, you need to enable this + option. Visit <http://www.amd.com/products/nvd/overview/cfi.html> + for more information on CFI. + endmenu source "drivers/mtd/nand/Kconfig" |