diff options
author | Vikas Manocha <vikas.manocha@st.com> | 2017-04-10 15:02:57 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-05-08 11:57:02 -0400 |
commit | 774171020beaf3af19dcc8056c9de38653bc121b (patch) | |
tree | e2f3f1648560c3ac736ad83bbaa3b94ec7842ba5 /drivers/gpio/Kconfig | |
parent | 6c9a10034a21680c4b2595d9b6468a767dedebca (diff) | |
download | u-boot-774171020beaf3af19dcc8056c9de38653bc121b.tar.gz u-boot-774171020beaf3af19dcc8056c9de38653bc121b.tar.xz u-boot-774171020beaf3af19dcc8056c9de38653bc121b.zip |
dm: gpio: Add driver for stm32f7 gpio controller
This patch adds gpio driver supporting driver model for stm32f7 gpio.
Signed-off-by: Vikas Manocha <vikas.manocha@st.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Cc: Christophe KERELLO <christophe.kerello@st.com>
[trini: Add depends on STM32]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/gpio/Kconfig')
-rw-r--r-- | drivers/gpio/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index c95e9acd5f..99516119ff 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -171,6 +171,15 @@ config PIC32_GPIO help Say yes here to support Microchip PIC32 GPIOs. +config STM32F7_GPIO + bool "ST STM32 GPIO driver" + depends on DM_GPIO && STM32 + default y + help + Device model driver support for STM32 GPIO controller. It should be + usable on many stm32 families like stm32f4 & stm32H7. + Tested on STM32F7. + config MVEBU_GPIO bool "Marvell MVEBU GPIO driver" depends on DM_GPIO && ARCH_MVEBU |