2018-01-26 16:26:18

by Patrice CHOTARD

[permalink] [raw]
Subject: [PATCH] ARM: dts: stm32: Fix HSE clock frequency for stm32h743i-disco board

From: Patrice Chotard <[email protected]>

The HSE oscillator frequency was wrongly set to 125MHz instead of 25MHz.

Signed-off-by: Patrice Chotard <[email protected]>
---
arch/arm/boot/dts/stm32h743i-disco.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/stm32h743i-disco.dts b/arch/arm/boot/dts/stm32h743i-disco.dts
index 79e841d94079..45e088c55741 100644
--- a/arch/arm/boot/dts/stm32h743i-disco.dts
+++ b/arch/arm/boot/dts/stm32h743i-disco.dts
@@ -63,7 +63,7 @@
};

&clk_hse {
- clock-frequency = <125000000>;
+ clock-frequency = <25000000>;
};

&usart2 {
--
1.9.1



2018-02-27 15:57:36

by Alexandre Torgue

[permalink] [raw]
Subject: Re: [PATCH] ARM: dts: stm32: Fix HSE clock frequency for stm32h743i-disco board

Hi Patrice,

On 01/26/2018 05:23 PM, [email protected] wrote:
> From: Patrice Chotard <[email protected]>
>
> The HSE oscillator frequency was wrongly set to 125MHz instead of 25MHz.
>
> Signed-off-by: Patrice Chotard <[email protected]>
> ---
> arch/arm/boot/dts/stm32h743i-disco.dts | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/stm32h743i-disco.dts b/arch/arm/boot/dts/stm32h743i-disco.dts
> index 79e841d94079..45e088c55741 100644
> --- a/arch/arm/boot/dts/stm32h743i-disco.dts
> +++ b/arch/arm/boot/dts/stm32h743i-disco.dts
> @@ -63,7 +63,7 @@
> };
>
> &clk_hse {
> - clock-frequency = <125000000>;
> + clock-frequency = <25000000>;
> };
>
> &usart2 {
>

Applied on stm32-next.

thanks
alex