Skip to content

Commit c9d70a1

Browse files
arinc9kuba-moo
authored andcommitted
net: dsa: mt7530: correct port capabilities of MT7988
On the switch on the MT7988 SoC, as shown in Block Diagram 8.1.1.3 on page 125 of "MT7988A Wi-Fi 7 Generation Router Platform: Datasheet (Open Version) v0.1", there are only 4 PHYs. That's port 0 to 3. Set the case for ports which connect to switch PHYs to '0 ... 3'. Port 4 and 5 are not used at all in this design. Link: https://wiki.banana-pi.org/Banana_Pi_BPI-R4#Documents [1] Acked-by: Daniel Golle <[email protected]> Reviewed-by: Vladimir Oltean <[email protected]> Signed-off-by: Arınç ÜNAL <[email protected]> Link: https://lore.kernel.org/r/20240206-for-netnext-mt7530-improvements-2-v5-6-d7d92a185cb1@arinc9.com Signed-off-by: Jakub Kicinski <[email protected]>
1 parent 8c2703f commit c9d70a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/dsa/mt7530.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2577,7 +2577,7 @@ static void mt7988_mac_port_get_caps(struct dsa_switch *ds, int port,
25772577

25782578
switch (port) {
25792579
/* Ports which are connected to switch PHYs. There is no MII pinout. */
2580-
case 0 ... 4:
2580+
case 0 ... 3:
25812581
__set_bit(PHY_INTERFACE_MODE_INTERNAL,
25822582
config->supported_interfaces);
25832583
break;

0 commit comments

Comments
 (0)