2021-06-23 19:30:12 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021 Linaro Limited
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <st/u5/stm32u5.dtsi>
|
2021-10-27 19:04:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
/ {
|
|
|
|
soc {
|
2023-05-11 19:37:02 +08:00
|
|
|
compatible = "st,stm32u575", "st,stm32u5", "simple-bus";
|
|
|
|
|
2021-10-27 19:04:47 +08:00
|
|
|
usbotg_fs: otgfs@42040000 {
|
|
|
|
compatible = "st,stm32-otgfs";
|
|
|
|
reg = <0x42040000 0x80000>;
|
|
|
|
interrupts = <73 0>;
|
|
|
|
interrupt-names = "otgfs";
|
|
|
|
num-bidir-endpoints = <6>;
|
|
|
|
ram-size = <1280>;
|
|
|
|
maximum-speed = "full-speed";
|
2023-01-06 22:03:46 +08:00
|
|
|
clocks = <&rcc STM32_CLOCK_BUS_AHB2 0x00004000>,
|
|
|
|
<&rcc STM32_SRC_HSI48 ICKLK_SEL(0)>;
|
2021-10-27 19:04:47 +08:00
|
|
|
phys = <&otgfs_phy>;
|
|
|
|
status = "disabled";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
otgfs_phy: otgfs_phy {
|
|
|
|
compatible = "usb-nop-xceiv";
|
|
|
|
#phy-cells = <0>;
|
|
|
|
};
|
|
|
|
};
|