mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-22 09:22:37 +00:00
1e2f0169df
This patch introduces the MACH_STM32H743 to make possible to only select STM32H743 pinctrl driver By default, all the MACH_STM32Fxxx flags will be set with STM32 defconfig. Signed-off-by: Alexandre TORGUE <alexandre.torgue@st.com>
27 lines
555 B
Plaintext
27 lines
555 B
Plaintext
config ARCH_STM32
|
|
bool "STMicrolectronics STM32"
|
|
depends on ARM_SINGLE_ARMV7M
|
|
select ARCH_HAS_RESET_CONTROLLER
|
|
select ARMV7M_SYSTICK
|
|
select CLKSRC_STM32
|
|
select PINCTRL
|
|
select RESET_CONTROLLER
|
|
select STM32_EXTI
|
|
help
|
|
Support for STMicroelectronics STM32 processors.
|
|
|
|
config MACH_STM32F429
|
|
bool "STMicrolectronics STM32F429"
|
|
depends on ARCH_STM32
|
|
default y
|
|
|
|
config MACH_STM32F746
|
|
bool "STMicrolectronics STM32F746"
|
|
depends on ARCH_STM32
|
|
default y
|
|
|
|
config MACH_STM32H743
|
|
bool "STMicrolectronics STM32H743"
|
|
depends on ARCH_STM32
|
|
default y
|