diff options
author | Yanjun Yang <yangyj.ee@gmail.com> | 2024-06-14 09:00:12 +0800 |
---|---|---|
committer | Alexandre Torgue <alexandre.torgue@foss.st.com> | 2024-07-05 11:46:02 +0200 |
commit | 0fc78aa67b3f9a7cc6b67ddbc511e4a5022cfd01 (patch) | |
tree | d7f59ece781b936cd2b2b3c6384a0abd80e036f0 | |
parent | 6331bddce649829afb2c2e462df812f8e8657a61 (diff) |
ARM: dts: stm32: Missing clocks for stm32f429's syscfg.
Without clock definition, SYSCFG will not work, EXTI interrupt for
port other than GPIOA will fail to operate.
Signed-off-by: Yanjun Yang <yangyj.ee@gmail.com>
Signed-off-by: Alexandre Torgue <alexandre.torgue@foss.st.com>
-rw-r--r-- | arch/arm/boot/dts/st/stm32f429.dtsi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/st/stm32f429.dtsi b/arch/arm/boot/dts/st/stm32f429.dtsi index 8efcda9ef8ae..ad91b74ddd0d 100644 --- a/arch/arm/boot/dts/st/stm32f429.dtsi +++ b/arch/arm/boot/dts/st/stm32f429.dtsi @@ -579,6 +579,7 @@ syscfg: syscon@40013800 { compatible = "st,stm32-syscfg", "syscon"; reg = <0x40013800 0x400>; + clocks = <&rcc 0 STM32F4_APB2_CLOCK(SYSCFG)>; }; exti: interrupt-controller@40013c00 { |