1/*
2 * Copyright (c) 2021 Linaro Limited
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <st/u5/stm32u5.dtsi>
8
9
10/ {
11	soc {
12		compatible = "st,stm32u575", "st,stm32u5", "simple-bus";
13
14		usbotg_fs: otgfs@42040000 {
15			compatible = "st,stm32-otgfs";
16			reg = <0x42040000 0x80000>;
17			interrupts = <73 0>;
18			interrupt-names = "otgfs";
19			num-bidir-endpoints = <6>;
20			ram-size = <1280>;
21			maximum-speed = "full-speed";
22			clocks = <&rcc STM32_CLOCK_BUS_AHB2 0x00004000>,
23				 <&rcc STM32_SRC_HSI48 ICKLK_SEL(0)>;
24			phys = <&otgfs_phy>;
25			status = "disabled";
26		};
27	};
28
29	otgfs_phy: otgfs_phy {
30		compatible = "usb-nop-xceiv";
31		#phy-cells = <0>;
32	};
33};
34