mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-10 15:03:07 +00:00
d40691a5fb
net: dsa: mt7530: explain exposing MDIO bus of MT7531AE better net: dsa: mt7530: do not pass port variable to mt7531_rgmii_setup() net: dsa: mt7530: use priv->ds->num_ports instead of MT7530_NUM_PORTS net: dsa: mt7530: get rid of mac_port_validate member of mt753x_info net: dsa: mt7530: refactor MT7530_PMEEECR_P() net: dsa: mt7530: get rid of function sanity check net: dsa: mt7530: define MAC speed capabilities per switch model net: dsa: mt7530: return mt7530_setup_mdio & mt7531_setup_common on error net: dsa: mt7530: move MT753X_MTRAP operations for MT7530 net: dsa: mt7530: refactor MT7530_HWTRAP and MT7530_MHWTRAP net: dsa: mt7530: refactor MT7530_MFC and MT7531_CFC, add MT7531_QRY_FFP net: dsa: mt7530: rename mt753x_bpdu_port_fw enum to mt753x_to_cpu_fw net: dsa: mt7530: rename p5_intf_sel and use only for MT7530 switch net: dsa: mt7530: refactor MT7530_PMCR_P() net: dsa: mt7530: disable EEE abilities on failure on MT7531 and MT7988 Signed-off-by: Daniel Golle <daniel@makrotopia.org>
76 lines
2.6 KiB
Diff
76 lines
2.6 KiB
Diff
From 6cc2d4ccd77509df74b7b8ef46bbc6ba0a571318 Mon Sep 17 00:00:00 2001
|
||
From: =?UTF-8?q?Ar=C4=B1n=C3=A7=20=C3=9CNAL?= <arinc.unal@arinc9.com>
|
||
Date: Mon, 22 Apr 2024 10:15:16 +0300
|
||
Subject: [PATCH 09/15] net: dsa: mt7530: define MAC speed capabilities per
|
||
switch model
|
||
MIME-Version: 1.0
|
||
Content-Type: text/plain; charset=UTF-8
|
||
Content-Transfer-Encoding: 8bit
|
||
|
||
With the support of the MT7988 SoC switch, the MAC speed capabilities
|
||
defined on mt753x_phylink_get_caps() won't apply to all switch models
|
||
anymore. Move them to more appropriate locations instead of overwriting
|
||
config->mac_capabilities.
|
||
|
||
Remove the comment on mt753x_phylink_get_caps() as it's become invalid with
|
||
the support of MT7531 and MT7988 SoC switch.
|
||
|
||
Add break to case 6 of mt7988_mac_port_get_caps() to be explicit.
|
||
|
||
Signed-off-by: Arınç ÜNAL <arinc.unal@arinc9.com>
|
||
---
|
||
drivers/net/dsa/mt7530.c | 15 ++++++++++-----
|
||
1 file changed, 10 insertions(+), 5 deletions(-)
|
||
|
||
--- a/drivers/net/dsa/mt7530.c
|
||
+++ b/drivers/net/dsa/mt7530.c
|
||
@@ -2676,6 +2676,8 @@ mt7531_setup(struct dsa_switch *ds)
|
||
static void mt7530_mac_port_get_caps(struct dsa_switch *ds, int port,
|
||
struct phylink_config *config)
|
||
{
|
||
+ config->mac_capabilities |= MAC_10 | MAC_100 | MAC_1000FD;
|
||
+
|
||
switch (port) {
|
||
/* Ports which are connected to switch PHYs. There is no MII pinout. */
|
||
case 0 ... 4:
|
||
@@ -2707,6 +2709,8 @@ static void mt7531_mac_port_get_caps(str
|
||
{
|
||
struct mt7530_priv *priv = ds->priv;
|
||
|
||
+ config->mac_capabilities |= MAC_10 | MAC_100 | MAC_1000FD;
|
||
+
|
||
switch (port) {
|
||
/* Ports which are connected to switch PHYs. There is no MII pinout. */
|
||
case 0 ... 4:
|
||
@@ -2746,14 +2750,17 @@ static void mt7988_mac_port_get_caps(str
|
||
case 0 ... 3:
|
||
__set_bit(PHY_INTERFACE_MODE_INTERNAL,
|
||
config->supported_interfaces);
|
||
+
|
||
+ config->mac_capabilities |= MAC_10 | MAC_100 | MAC_1000FD;
|
||
break;
|
||
|
||
/* Port 6 is connected to SoC's XGMII MAC. There is no MII pinout. */
|
||
case 6:
|
||
__set_bit(PHY_INTERFACE_MODE_INTERNAL,
|
||
config->supported_interfaces);
|
||
- config->mac_capabilities = MAC_ASYM_PAUSE | MAC_SYM_PAUSE |
|
||
- MAC_10000FD;
|
||
+
|
||
+ config->mac_capabilities |= MAC_10000FD;
|
||
+ break;
|
||
}
|
||
}
|
||
|
||
@@ -2923,9 +2930,7 @@ static void mt753x_phylink_get_caps(stru
|
||
{
|
||
struct mt7530_priv *priv = ds->priv;
|
||
|
||
- /* This switch only supports full-duplex at 1Gbps */
|
||
- config->mac_capabilities = MAC_ASYM_PAUSE | MAC_SYM_PAUSE |
|
||
- MAC_10 | MAC_100 | MAC_1000FD;
|
||
+ config->mac_capabilities = MAC_ASYM_PAUSE | MAC_SYM_PAUSE;
|
||
|
||
/* This driver does not make use of the speed, duplex, pause or the
|
||
* advertisement in its mac_config, so it is safe to mark this driver
|