boards: arm: Add RTC clock source for 96b_aerocore2

The `96b_aerocore2` board doesn't have its RTC node enabled,
and is failing the following test:
`tests/benchmarks/footprints/benchmark.kernel.footprints.pm`
Enabled RTC node and lsi clock source for that platform.

Signed-off-by: Francois Ramu <francois.ramu@st.com>
This commit is contained in:
Francois Ramu 2023-12-11 17:52:15 +01:00 committed by Fabio Baltieri
parent c6773403b1
commit acf0fe82d4

View File

@ -42,6 +42,10 @@
};
&clk_lsi {
status = "okay";
};
&clk_hse {
clock-frequency = <DT_FREQ_M(24)>;
status = "okay";
@ -180,6 +184,12 @@ zephyr_udc0: &usbotg_fs {
status = "okay";
};
&rtc {
clocks = <&rcc STM32_CLOCK_BUS_APB1 0x10000000>,
<&rcc STM32_SRC_LSI RTC_SEL(2)>;
status = "okay";
};
&rng {
status = "okay";
};