dwc3.txt 581 B

12345678910111213141516171819202122
  1. synopsys DWC3 CORE
  2. DWC3- USB3 CONTROLLER
  3. Required properties:
  4. - compatible: must be "synopsys,dwc3"
  5. - reg : Address and length of the register set for the device
  6. - interrupts: Interrupts used by the dwc3 controller.
  7. - usb-phy : array of phandle for the PHY device
  8. Optional properties:
  9. - tx-fifo-resize: determines if the FIFO *has* to be reallocated.
  10. This is usually a subnode to DWC3 glue to which it is connected.
  11. dwc3@4a030000 {
  12. compatible = "synopsys,dwc3";
  13. reg = <0x4a030000 0xcfff>;
  14. interrupts = <0 92 4>
  15. usb-phy = <&usb2_phy>, <&usb3,phy>;
  16. tx-fifo-resize;
  17. };