boards: add HSE and HSI support for STM32MP257F boards.

Add declaration of the HSE and HSI frequency that will be used to compute
the SystemCoreClock.

Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
This commit is contained in:
Arnaud Pouliquen 2025-07-21 13:40:32 +02:00 committed by Fabio Baltieri
parent 3ffd7419a0
commit 75a2e5625c
2 changed files with 18 additions and 0 deletions

View File

@ -45,6 +45,15 @@
};
};
&clk_hsi {
status = "okay";
};
&clk_hse {
clock-frequency = <DT_FREQ_M(40)>;
status = "okay";
};
&rcc {
clock-frequency = <DT_FREQ_M(400)>;
};

View File

@ -45,6 +45,15 @@
};
};
&clk_hsi {
status = "okay";
};
&clk_hse {
clock-frequency = <DT_FREQ_M(40)>;
status = "okay";
};
&rcc {
clock-frequency = <DT_FREQ_M(400)>;
};