boards: arm: Add RTC clock source for mikroe_mini_m4_for_stm32

The `mikroe_mini_m4_for_stm32` board doesn't have its RTC node
enabled, and is failing the following test:

`tests/benchmarks/footprints/benchmark.kernel.footprints.pm`

This board seems to have been missed out from 44b8370, let's
enable the rtc & clk_lsi here.

Signed-off-by: Yong Cong Sin <ycsin@meta.com>
This commit is contained in:
Yong Cong Sin 2023-12-11 13:06:53 +08:00 committed by Fabio Baltieri
parent 0ebeca2eb7
commit 54573e7c4c
1 changed files with 10 additions and 0 deletions

View File

@ -38,6 +38,10 @@
};
};
&clk_lsi {
status = "okay";
};
&clk_hse {
clock-frequency = <DT_FREQ_M(16)>;
status = "okay";
@ -99,3 +103,9 @@ zephyr_udc0: &usbotg_fs {
&cryp {
status = "okay";
};
&rtc {
clocks = <&rcc STM32_CLOCK_BUS_APB1 0x10000000>,
<&rcc STM32_SRC_LSI RTC_SEL(2)>;
status = "okay";
};