Kishon Vijay Abraham I | 5088b6f | 2013-01-25 16:36:53 +0530 | [diff] [blame] | 1 | synopsys DWC3 CORE |
| 2 | |
| 3 | DWC3- USB3 CONTROLLER |
| 4 | |
| 5 | Required properties: |
Felipe Balbi | 22a5aa1 | 2013-07-02 21:20:24 +0300 | [diff] [blame] | 6 | - compatible: must be "snps,dwc3" |
Kishon Vijay Abraham I | 5088b6f | 2013-01-25 16:36:53 +0530 | [diff] [blame] | 7 | - reg : Address and length of the register set for the device |
| 8 | - interrupts: Interrupts used by the dwc3 controller. |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 9 | |
| 10 | Optional properties: |
Kumar Gala | 23381db | 2013-08-09 10:40:32 -0500 | [diff] [blame] | 11 | - usb-phy : array of phandle for the PHY device. The first element |
| 12 | in the array is expected to be a handle to the USB2/HS PHY and |
| 13 | the second element is expected to be a handle to the USB3/SS PHY |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 14 | - phys: from the *Generic PHY* bindings |
| 15 | - phy-names: from the *Generic PHY* bindings |
Kishon Vijay Abraham I | 5088b6f | 2013-01-25 16:36:53 +0530 | [diff] [blame] | 16 | - tx-fifo-resize: determines if the FIFO *has* to be reallocated. |
Huang Rui | 3b81221 | 2014-10-28 19:54:25 +0800 | [diff] [blame] | 17 | - snps,disable_scramble_quirk: true when SW should disable data scrambling. |
| 18 | Only really useful for FPGA builds. |
Huang Rui | 80caf7d | 2014-10-28 19:54:26 +0800 | [diff] [blame] | 19 | - snps,has-lpm-erratum: true when DWC3 was configured with LPM Erratum enabled |
| 20 | - snps,lpm-nyet-threshold: LPM NYET threshold |
Huang Rui | 9a5b2f3 | 2014-10-28 19:54:27 +0800 | [diff] [blame] | 21 | - snps,u2exit_lfps_quirk: set if we want to enable u2exit lfps quirk |
Huang Rui | b5a65c4 | 2014-10-28 19:54:28 +0800 | [diff] [blame] | 22 | - snps,u2ss_inp3_quirk: set if we enable P3 OK for U2/SS Inactive quirk |
Huang Rui | df31f5b | 2014-10-28 19:54:29 +0800 | [diff] [blame] | 23 | - snps,req_p1p2p3_quirk: when set, the core will always request for |
| 24 | P1/P2/P3 transition sequence. |
Huang Rui | a2a1d0f | 2014-10-28 19:54:30 +0800 | [diff] [blame] | 25 | - snps,del_p1p2p3_quirk: when set core will delay P1/P2/P3 until a certain |
| 26 | amount of 8B10B errors occur. |
Huang Rui | 41c06ff | 2014-10-28 19:54:31 +0800 | [diff] [blame] | 27 | - snps,del_phy_power_chg_quirk: when set core will delay PHY power change |
| 28 | from P0 to P1/P2/P3. |
Huang Rui | fb67afc | 2014-10-28 19:54:32 +0800 | [diff] [blame] | 29 | - snps,lfps_filter_quirk: when set core will filter LFPS reception. |
Huang Rui | 14f4ac5 | 2014-10-28 19:54:33 +0800 | [diff] [blame^] | 30 | - snps,rx_detect_poll_quirk: when set core will disable a 400us delay to start |
| 31 | Polling LFPS after RX.Detect. |
Kishon Vijay Abraham I | 5088b6f | 2013-01-25 16:36:53 +0530 | [diff] [blame] | 32 | |
| 33 | This is usually a subnode to DWC3 glue to which it is connected. |
| 34 | |
| 35 | dwc3@4a030000 { |
Felipe Balbi | 22a5aa1 | 2013-07-02 21:20:24 +0300 | [diff] [blame] | 36 | compatible = "snps,dwc3"; |
Kishon Vijay Abraham I | 5088b6f | 2013-01-25 16:36:53 +0530 | [diff] [blame] | 37 | reg = <0x4a030000 0xcfff>; |
| 38 | interrupts = <0 92 4> |
| 39 | usb-phy = <&usb2_phy>, <&usb3,phy>; |
| 40 | tx-fifo-resize; |
| 41 | }; |