Forum Discussion
angelsz15
New Contributor
6 months agoArria 10 SoC – USB devices always enumerating as Full-Speed (Yocto 4.1, dwc2)
Hello, My name is Ángel and I am currently working with an Intel SoC FPGA Arria 10. I am trying to connect an Intel RealSense SR300 camera to my system, but I am experiencing USB speed negotiation i...
AlanCLTan
Occasional Contributor
4 months agoHi angelsz15
Arria 10 SoC FPGA does not contain an integrated High‑Speed USB PHY. You will need to provide an external USB2.0 HS PHY.
Could you check are these defined in the device tree?:
phy_type = "ulpi";
dr_mode = "host";
phys = <&usb_phy0>;
phy-names = "usb2-phy";
snps,phyif = <0>; // ULPI
snps,hs_phy_type = "ulpi";
snps,fs_phy_type = "dedicated";Also, check for the PHY binding status:
dmesg | grep -i phy
dmesg | grep -i ulpi-Alan