diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2018-03-12 10:46:10 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-03-19 16:14:21 -0400 |
commit | 2514c2d0e6abe98157c1de83bce5c8bb69ac3a77 (patch) | |
tree | fd63532eebfbdb66828710730708d7828b7495b6 /drivers/gpio/Kconfig | |
parent | 35746c0138c7a9900fb2678358904c10797a563a (diff) | |
download | u-boot-2514c2d0e6abe98157c1de83bce5c8bb69ac3a77.tar.gz u-boot-2514c2d0e6abe98157c1de83bce5c8bb69ac3a77.tar.xz u-boot-2514c2d0e6abe98157c1de83bce5c8bb69ac3a77.zip |
arm: stm32: add new architecture for STM32MP family
- add new arch stm32mp for STM32 MPU/Soc based on Cortex A
- support for stm32mp157 SOC
- SPL is used as first boot stage loader
- using driver model for all the drivers, even in SPL
- all security feature are deactivated (ETZC and TZC)
- reused STM32 MCU drivers when it is possible
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'drivers/gpio/Kconfig')
-rw-r--r-- | drivers/gpio/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index cc75aece6a..b7e4ffb09d 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -234,7 +234,7 @@ config PIC32_GPIO config STM32F7_GPIO bool "ST STM32 GPIO driver" - depends on DM_GPIO && STM32 + depends on DM_GPIO && (STM32 || ARCH_STM32MP) default y help Device model driver support for STM32 GPIO controller. It should be |