diff options
author | Aleksander Jan Bajkowski <olek2@wp.pl> | 2021-09-15 00:21:05 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-09-15 13:02:01 +0300 |
commit | c68872146489946509b6bc1667e29192bff46d8d (patch) | |
tree | a001ab3f400fa74c549c1c85c4bd1a2d246db5c1 /Documentation/devicetree/bindings/net/lantiq,etop-xway.yaml | |
parent | dac0bad93741434d6a69c42206c498e26500ad88 (diff) | |
download | linux-c68872146489946509b6bc1667e29192bff46d8d.tar.xz |
dt-bindings: net: lantiq: Add the burst length properties
The new added properties are used for configuring burst length.
Signed-off-by: Aleksander Jan Bajkowski <olek2@wp.pl>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Documentation/devicetree/bindings/net/lantiq,etop-xway.yaml')
-rw-r--r-- | Documentation/devicetree/bindings/net/lantiq,etop-xway.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/net/lantiq,etop-xway.yaml b/Documentation/devicetree/bindings/net/lantiq,etop-xway.yaml index 4412abfb4987..437502c5ca96 100644 --- a/Documentation/devicetree/bindings/net/lantiq,etop-xway.yaml +++ b/Documentation/devicetree/bindings/net/lantiq,etop-xway.yaml @@ -29,6 +29,18 @@ properties: - const: tx - const: rx + lantiq,tx-burst-length: + $ref: /schemas/types.yaml#/definitions/uint32 + description: | + TX programmable burst length. + enum: [2, 4, 8] + + lantiq,rx-burst-length: + $ref: /schemas/types.yaml#/definitions/uint32 + description: | + RX programmable burst length. + enum: [2, 4, 8] + phy-mode: true required: @@ -37,6 +49,8 @@ required: - interrupt-parent - interrupts - interrupt-names + - lantiq,tx-burst-length + - lantiq,rx-burst-length - phy-mode additionalProperties: false @@ -49,5 +63,7 @@ examples: interrupt-parent = <&icu0>; interrupts = <73>, <78>; interrupt-names = "tx", "rx"; + lantiq,tx-burst-length = <8>; + lantiq,rx-burst-length = <8>; phy-mode = "rmii"; }; |