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:
parent
3b97a481c4
commit
e7a60e30b9
1 changed files with 2 additions and 1 deletions
|
@ -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";
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue