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