1/*
2 * Copyright (c) 2024 Opito
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <st/u5/stm32u5.dtsi>
8
9
10/ {
11	soc {
12		/* USB-C PD is not available on this part. */
13		/delete-node/ ucpd@4000dc00;
14
15		compatible = "st,stm32u545", "st,stm32u5", "simple-bus";
16
17		usb: usb@40006000 {
18			compatible = "st,stm32-usb";
19			reg = <0x40006000 0x400>;
20			interrupts = <73 0>;
21			interrupt-names = "usb";
22			num-bidir-endpoints = <8>;
23			ram-size = <1024>;
24			status = "disabled";
25			clocks = <&rcc STM32_CLOCK(APB2, 24U)>,
26				 <&rcc STM32_SRC_HSI48 ICKLK_SEL(0)>;
27			phys = <&usb_fs_phy>;
28		};
29	};
30
31	usb_fs_phy: usb_fs_phy {
32		compatible = "usb-nop-xceiv";
33		#phy-cells = <0>;
34	};
35};
36