boards: stm32h747i_disco_m7: Fix USB domain clock

On board stm32h747i_disco_m7, USB clock is updated to enable USB1ULPI
clock.
Doing so, it should not delete 48MHz domain clock setting.

Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
This commit is contained in:
Erwan Gouriou 2023-01-23 11:59:42 +01:00 committed by Carles Cufí
commit e7a60e30b9

View file

@ -190,7 +190,8 @@ zephyr_udc0: &usbotg_hs {
pinctrl-names = "default";
maximum-speed = "high-speed";
/* Include the USB1ULPIEN clock enable bit */
clocks = <&rcc STM32_CLOCK_BUS_AHB1 0x06000000>;
clocks = <&rcc STM32_CLOCK_BUS_AHB1 0x06000000>,
<&rcc STM32_SRC_HSI48 USB_SEL(3)>;
phys = <&otghs_ulpi_phy>;
status = "okay";
};