diff options
author | Peter Chen <peter.chen@freescale.com> | 2015-08-07 03:08:02 -0400 |
---|---|---|
committer | Peter Chen <peter.chen@freescale.com> | 2015-08-13 22:03:57 -0400 |
commit | bd6e9d115df7fc6f11f3021c6fc05e3eaeb04a32 (patch) | |
tree | f5e777afc5387dc7c4dd5aa6db922cf13e308e46 | |
parent | ed6e5eb50f7f07561d6a40f18bc11484736098db (diff) |
Doc: usb: ci-hdrc-usb2: add tx(rx)-burst-config-dword for binding doc
It is used to override the default setting for burst size, changing
burst size takes effect only when the SBUSCFG.AHBBRST = 0.
Signed-off-by: Peter Chen <peter.chen@freescale.com>
-rw-r--r-- | Documentation/devicetree/bindings/usb/ci-hdrc-usb2.txt | 10 |
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 | ||
41 | Example: | 49 | Example: |
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 | }; |