mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-20 17:01:50 +01:00
Implement STM32MP25 reset drivers using stm32-core-reset API. This reset stm32-reset-core API and will be able to use DT binding index started from 0. This patch also moves legacy reset into stm32 directory reset. Signed-off-by: Gabriel Fernandez <gabriel.fernandez@foss.st.com> Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com> Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
24 lines
719 B
Plaintext
24 lines
719 B
Plaintext
config RESET_STM32
|
|
bool "Enable the STM32 reset"
|
|
depends on ARCH_STM32
|
|
default y
|
|
help
|
|
Support for reset controllers on STMicroelectronics STM32 family SoCs.
|
|
This reset driver is compatible with STM32 F4/F7 and H7 SoCs.
|
|
|
|
config RESET_STM32MP1
|
|
bool "Enable the STM32MP1 reset"
|
|
depends on STM32MP13X || STM32MP15X
|
|
default y
|
|
help
|
|
Support for reset controllers on STMicroelectronics STM32MP1 family SoCs.
|
|
This reset driver is compatible with STM32MP13 and STM32MP15 SoCs.
|
|
|
|
config RESET_STM32MP25
|
|
bool "Enable the STM32MP25 reset"
|
|
depends on STM32MP25X
|
|
default y
|
|
help
|
|
Support for reset controllers on STMicroelectronics STM32MP2 family SoCs.
|
|
This reset driver is compatible with STM32MP25 SoCs.
|