Skip to content

Commit f90160f

Browse files
atorguelinusw
authored andcommitted
pinctrl: stm32: add STM32F769 MCU support
This patch which adds STM32F769 pinctrl and GPIO support, relies on the generic STM32 pinctrl driver. Signed-off-by: Alexandre Torgue <alexandre.torgue@st.com> Acked-by: Patrice CHOTARD <patrice.chotard@st.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
1 parent b930151 commit f90160f

File tree

3 files changed

+1834
-0
lines changed

3 files changed

+1834
-0
lines changed

drivers/pinctrl/stm32/Kconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ config PINCTRL_STM32F746
2727
default MACH_STM32F746
2828
select PINCTRL_STM32
2929

30+
config PINCTRL_STM32F769
31+
bool "STMicroelectronics STM32F769 pin control" if COMPILE_TEST && !MACH_STM32F769
32+
depends on OF
33+
default MACH_STM32F769
34+
select PINCTRL_STM32
35+
3036
config PINCTRL_STM32H743
3137
bool "STMicroelectronics STM32H743 pin control" if COMPILE_TEST && !MACH_STM32H743
3238
depends on OF

drivers/pinctrl/stm32/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ obj-$(CONFIG_PINCTRL_STM32) += pinctrl-stm32.o
66
obj-$(CONFIG_PINCTRL_STM32F429) += pinctrl-stm32f429.o
77
obj-$(CONFIG_PINCTRL_STM32F469) += pinctrl-stm32f469.o
88
obj-$(CONFIG_PINCTRL_STM32F746) += pinctrl-stm32f746.o
9+
obj-$(CONFIG_PINCTRL_STM32F769) += pinctrl-stm32f769.o
910
obj-$(CONFIG_PINCTRL_STM32H743) += pinctrl-stm32h743.o
1011
obj-$(CONFIG_PINCTRL_STM32MP157) += pinctrl-stm32mp157.o

0 commit comments

Comments
 (0)