blob: fd5b93e300d6c7d9842f77e5d53cde8e3ad58e6b [file] [log] [blame]
Kishon Vijay Abraham Ibdc707a2013-03-18 12:18:57 +05301synopsys DWC3 CORE
2
3DWC3- USB3 CONTROLLER
4
5Required properties:
6 - compatible: must be "synopsys,dwc3"
7 - reg : Address and length of the register set for the device
8 - interrupts: Interrupts used by the dwc3 controller.
Vijayavardhan Vennapusa8eb68732013-03-26 13:05:38 +05309 - interrupt-names : Required interrupt resource entries are:
10 "irq" : Interrupt for DWC3 core
11 "otg_irq" : Interrupt for DWC3 core's OTG Events
Kishon Vijay Abraham Ibdc707a2013-03-18 12:18:57 +053012
13Optional properties:
14 - tx-fifo-resize: determines if the FIFO *has* to be reallocated.
15
16This is usually a subnode to DWC3 glue to which it is connected.
17
18dwc3@4a030000 {
19 compatible = "synopsys,dwc3";
20 reg = <0x4a030000 0xcfff>;
Vijayavardhan Vennapusa8eb68732013-03-26 13:05:38 +053021 interrupts = <0 92 4>, <0 179 0>;
22 interrupt-names = "irq", "otg_irq";
Kishon Vijay Abraham Ibdc707a2013-03-18 12:18:57 +053023 tx-fifo-resize;
24};