diff options
author | Rick Chen <rick@andestech.com> | 2019-11-14 13:52:26 +0800 |
---|---|---|
committer | Andes <uboot@andestech.com> | 2019-12-10 08:23:10 +0800 |
commit | 31dae22faa65534cb71631f6c74cbdcf4930a339 (patch) | |
tree | 4c21414b33580c1ee1556453da98f93a85f4855d /common | |
parent | 8ba595b6bda56eac15d721554ea0ab8fc6a48f73 (diff) | |
download | u-boot-31dae22faa65534cb71631f6c74cbdcf4930a339.tar.gz |
spl: cache: Allow cache drivers in SPL
When ax25-ae350 try to enable v5l2 cache
driver in SPL configuration, it need this
option for cache support in SPL.
Signed-off-by: Rick Chen <rick@andestech.com>
Cc: KC Lin <kclin@andestech.com>
Cc: Alan Kao <alankao@andestech.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/spl/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index c8cb715c3a..a72412718b 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -439,6 +439,13 @@ config SPL_FIT_IMAGE_TINY ensure this information is available to the next image invoked). +config SPL_CACHE_SUPPORT + bool "Support CACHE drivers" + help + Enable CACHE drivers in SPL. These drivers can keep data so that + future requests for that data can be served faster. Enable this option + to build the drivers in drivers/cache as part of an SPL build. + config SPL_CPU_SUPPORT bool "Support CPU drivers" help |