Commit ae07485d authored by Frank Wunderlich's avatar Frank Wunderlich Committed by Jakub Kicinski

dt-bindings: net: dsa: make reset optional and add rgmii-mode to mt7531

A board may have no independent reset-line, so reset cannot be used
inside switch driver.

E.g. on Bananapi-R2 Pro switch and gmac are connected to same reset-line.

Resets should be acquired only to 1 device/driver. This prevents reset to
be bound to switch-driver if reset is already used for gmac. If reset is
only used by switch driver it resets the switch *and* the gmac after the
mdio bus comes up resulting in mdio bus goes down. It takes some time
until all is up again, switch driver tries to read from mdio, will fail
and defer the probe. On next try the reset does the same again.

Make reset optional for such boards.

Allow port 5 as cpu-port and phy-mode rgmii for mt7531.

- MT7530 supports RGMII on port 5 and RGMII/TRGMII on port 6.
- MT7531 supports on port 5 RGMII and SGMII (dual-sgmii) and
  SGMII on port 6.
Signed-off-by: default avatarFrank Wunderlich <frank-w@public-files.de>
Reviewed-by: default avatarRob Herring <robh@kernel.org>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 1f9a6abe
...@@ -55,6 +55,7 @@ description: | ...@@ -55,6 +55,7 @@ description: |
On mt7531: On mt7531:
- "1000base-x" - "1000base-x"
- "2500base-x" - "2500base-x"
- "rgmii"
- "sgmii" - "sgmii"
...@@ -124,8 +125,8 @@ patternProperties: ...@@ -124,8 +125,8 @@ patternProperties:
properties: properties:
reg: reg:
description: description:
Port address described must be 6 for CPU port and from 0 to Port address described must be 5 or 6 for CPU port and from 0
5 for user ports. to 5 for user ports.
allOf: allOf:
- $ref: dsa-port.yaml# - $ref: dsa-port.yaml#
...@@ -152,9 +153,6 @@ allOf: ...@@ -152,9 +153,6 @@ allOf:
required: required:
- resets - resets
- reset-names - reset-names
else:
required:
- reset-gpios
- dependencies: - dependencies:
interrupt-controller: [ interrupts ] interrupt-controller: [ interrupts ]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment