dwc3.txt 762 B

1234567891011121314151617181920212223242526
  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. - interrupt-names : Required interrupt resource entries are:
  8. "irq" : Interrupt for DWC3 core
  9. "otg_irq" : Interrupt for DWC3 core's OTG Events
  10. Optional properties:
  11. - tx-fifo-resize: determines if the FIFO *has* to be reallocated.
  12. - host-only-mode: if present then dwc3 should be run in HOST only mode.
  13. This is usually a subnode to DWC3 glue to which it is connected.
  14. dwc3@4a030000 {
  15. compatible = "synopsys,dwc3";
  16. reg = <0x4a030000 0xcfff>;
  17. interrupts = <0 92 4>, <0 179 0>;
  18. interrupt-names = "irq", "otg_irq";
  19. tx-fifo-resize;
  20. };