aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/devicetree/bindings/usb/ci-hdrc-usb2.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.txt b/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.txt
index d52a747fb859..d71ef07bca5d 100644
--- a/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.txt
+++ b/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.txt
@@ -37,6 +37,14 @@ Optional properties:
37 property is used to change AHB burst configuration, check the chipidea 37 property is used to change AHB burst configuration, check the chipidea
38 spec for meaning of each value. If this property is not existed, it 38 spec for meaning of each value. If this property is not existed, it
39 will use the reset value. 39 will use the reset value.
40- tx-burst-size-dword: it is vendor dependent, the tx burst size in dword
41 (4 bytes), This register represents the maximum length of a the burst
42 in 32-bit words while moving data from system memory to the USB
43 bus, changing this value takes effect only the SBUSCFG.AHBBRST is 0.
44- rx-burst-size-dword: it is vendor dependent, the rx burst size in dword
45 (4 bytes), This register represents the maximum length of a the burst
46 in 32-bit words while moving data from the USB bus to system memory,
47 changing this value takes effect only the SBUSCFG.AHBBRST is 0.
40 48
41Example: 49Example:
42 50
@@ -51,4 +59,6 @@ Example:
51 gadget-itc-setting = <0x4>; /* 4 micro-frames */ 59 gadget-itc-setting = <0x4>; /* 4 micro-frames */
52 /* Incremental burst of unspecified length */ 60 /* Incremental burst of unspecified length */
53 ahb-burst-config = <0x0>; 61 ahb-burst-config = <0x0>;
62 tx-burst-size-dword = <0x10>; /* 64 bytes */
63 rx-burst-size-dword = <0x10>;
54 }; 64 };