aboutsummaryrefslogtreecommitdiff
path: root/common/spl/Kconfig
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-07-19 10:15:31 -0600
committerTom Rini <trini@konsulko.com>2020-08-03 22:19:54 -0400
commitf38a29997d1cdb71a85fc9dcdbee86d952b45482 (patch)
tree3a320e2c33f35ff49a05fe7eb94529f1f5bcabc3 /common/spl/Kconfig
parent68941e3b2c217907a49aa66af8bb65729b913397 (diff)
downloadu-boot-f38a29997d1cdb71a85fc9dcdbee86d952b45482.zip
u-boot-f38a29997d1cdb71a85fc9dcdbee86d952b45482.tar.gz
u-boot-f38a29997d1cdb71a85fc9dcdbee86d952b45482.tar.bz2
spi: Allow separate control of SPI_FLASH_TINY for SPL/TPL
In some cases SPL needs to be able to erase but TPL just needs to read. Allow these to have separate settings for SPI_FLASH_TINY. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/spl/Kconfig')
-rw-r--r--common/spl/Kconfig10
1 files changed, 10 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig
index 72c7165..10605f1 100644
--- a/common/spl/Kconfig
+++ b/common/spl/Kconfig
@@ -1529,6 +1529,16 @@ config TPL_SPI_FLASH_SUPPORT
Enable support for using SPI flash in TPL. See SPL_SPI_FLASH_SUPPORT
for details.
+config TPL_SPI_FLASH_TINY
+ bool "Enable low footprint TPL SPI Flash support"
+ depends on TPL_SPI_FLASH_SUPPORT && !SPI_FLASH_BAR
+ default y if SPI_FLASH
+ help
+ Enable lightweight TPL SPI Flash support that supports just reading
+ data/images from flash. No support to write/erase flash. Enable
+ this if you have TPL size limitations and don't need full-fledged
+ SPI flash support.
+
config TPL_SPI_LOAD
bool "Support loading from SPI flash"
depends on TPL_SPI_FLASH_SUPPORT