diff options
author | Simon Glass <sjg@chromium.org> | 2017-01-16 07:03:33 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2017-02-06 11:38:46 +0800 |
commit | bbe41abf7f0e4362dbadb2928489923db101691f (patch) | |
tree | 36ec450708dbfb8710797803f0bc120d03a3ad45 /common | |
parent | 4a6c81ff42fc19ca82e8acc9562c6e077b9d11f1 (diff) | |
download | u-boot-bbe41abf7f0e4362dbadb2928489923db101691f.tar.gz u-boot-bbe41abf7f0e4362dbadb2928489923db101691f.tar.xz u-boot-bbe41abf7f0e4362dbadb2928489923db101691f.zip |
spl: Allow PCH drivers to be used in SPL
Add an option for building Platorm Controller Hub drivers 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 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 3e71817b69..cf714c2726 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -444,6 +444,15 @@ config SPL_PCI_SUPPORT necessary driver support. This enables the drivers in drivers/pci as part of an SPL build. +config SPL_PCH_SUPPORT + bool "Support PCH drivers" + depends on SPL + help + Enable support for PCH (Platform Controller Hub) devices in SPL. + These are used to set up GPIOs and the SPI peripheral early in + boot. This enables the drivers in drivers/pch as part of an SPL + build. + config SPL_POST_MEM_SUPPORT bool "Support POST drivers" depends on SPL |