diff options
author | Simon Glass <sjg@chromium.org> | 2017-01-16 07:03:29 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2017-02-06 11:38:46 +0800 |
commit | 5e148df95216c0ee2e349a1cfb5b171ecc58632c (patch) | |
tree | 996629ace38caa3e95f2f0af4527eb41f38db443 /common | |
parent | d688bd728f2238256a8f4728cf75a711ae38608f (diff) | |
download | u-boot-imx-5e148df95216c0ee2e349a1cfb5b171ecc58632c.zip u-boot-imx-5e148df95216c0ee2e349a1cfb5b171ecc58632c.tar.gz u-boot-imx-5e148df95216c0ee2e349a1cfb5b171ecc58632c.tar.bz2 |
spl: Allow CPU drivers to be used in SPL
Add a new Kconfig option to allow CPU drivers to be used in SPL.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/spl/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index b2ba492..bf53393 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -149,6 +149,16 @@ config SPL_SHA256_SUPPORT SHA256 variant is supported: SHA512 and others are not currently supported in U-Boot. +config SPL_CPU_SUPPORT + bool "Support CPU drivers" + depends on SPL + help + Enable this to support CPU drivers in SPL. These drivers can set + up CPUs and provide information about them such as the model and + name. This can be useful in SPL since setting up the CPUs earlier + may improve boot performance. Enable this option to build the + drivers in drivers/cpu as part of an SPL build. + config SPL_CRYPTO_SUPPORT bool "Support crypto drivers" depends on SPL |