* [PATCH net-next 0/7] net: dsa: mt7530: support EcoNet EN751221
@ 2026-09-09 14:03 Caleb James DeLisle
2026-09-09 14:03 ` [PATCH net-next 1/7] net: dsa: mt7530: get ctrl phy addr using a function Caleb James DeLisle
` (6 more replies)
0 siblings, 7 replies; 13+ messages in thread
From: Caleb James DeLisle @ 2026-09-09 14:03 UTC (permalink / raw)
To: netdev
Cc: andrew, olteanv, davem, edumazet, kuba, pabeni, robh, krzk+dt,
conor+dt, matthias.bgg, angelogioacchino.delregno, chester.a.unal,
daniel, linux, arinc.unal, Landen.Chao, dqfext, sean.wang,
devicetree, linux-kernel, linux-arm-kernel, linux-mediatek,
naseefkm, b.larsson, Caleb James DeLisle
The EcoNet EN751221 has a unique switch configuration. Every chip made
with an EN751221 die has at least one on-die MT7530 that is MMIO based.
This switch has 3x 10/100 ports and 1x gigabit port.
Some popular chip packages such as the EN7513G and EN7526G have another
MT7530 implemented as a multi-chip-module that connects to port 5 of
the on-die switch and is controlled via the MDIO controller integrated
in the on-die MT7530.
In this configurations, the upstream switch is put into a "passthrough"
mode in which all traffic is forwarded between port 5 and port 6
without altering its DSA tags.
Furthermore, since the DSA core does not call mt753x_setup until all
switches are present, and the downstream switch only becomes available
when the upstream switch has configured its MDIO controller, the MDIO
controller setup on MMIO implementations must be done before
mt753x_setup, or else it will never complete.
Finally, the on-die switch and the MCM switch connect via a TRGMII link
which requires calibration. In order to calibrate this, PLL adjustment
must be possible on the on-die switch, necessitating changes to the
core_(set|clear|write|rmw) functions to support MMIO implementations.
Solve all of these issues, add the TRGMII calibration, and add support
for both switches.
Since this patchset will probably be subject to some discussion, please
consider accepting any patches that are non-controversial since it will
make future re-submissions easier.
Thanks!
Caleb James DeLisle (7):
net: dsa: mt7530: get ctrl phy addr using a function
dt-bindings: net: dsa: mediatek,mt7530: add passthrough mode
net: dsa: mediatek: add support for passthrough mode
net: dsa: mediatek: support PLL setup on MMIO MT7530
net: dsa: mediatek: support MDIO switch downstream of MMIO switch
dt-bindings: net: dsa: mediatek,mt7530: add econet,en751221
net: dsa: mediatek: support EN751221 switch
.../bindings/net/dsa/mediatek,mt7530.yaml | 50 +-
drivers/net/dsa/mt7530-mdio.c | 1 +
drivers/net/dsa/mt7530-mmio.c | 8 +-
drivers/net/dsa/mt7530.c | 575 ++++++++++++++++--
drivers/net/dsa/mt7530.h | 46 +-
5 files changed, 628 insertions(+), 52 deletions(-)
--
2.39.5
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH net-next 1/7] net: dsa: mt7530: get ctrl phy addr using a function
2026-09-09 14:03 [PATCH net-next 0/7] net: dsa: mt7530: support EcoNet EN751221 Caleb James DeLisle
@ 2026-09-09 14:03 ` Caleb James DeLisle
2026-09-09 14:03 ` [PATCH net-next 2/7] dt-bindings: net: dsa: mediatek,mt7530: add passthrough mode Caleb James DeLisle
` (5 subsequent siblings)
6 siblings, 0 replies; 13+ messages in thread
From: Caleb James DeLisle @ 2026-09-09 14:03 UTC (permalink / raw)
To: netdev
Cc: andrew, olteanv, davem, edumazet, kuba, pabeni, robh, krzk+dt,
conor+dt, matthias.bgg, angelogioacchino.delregno, chester.a.unal,
daniel, linux, arinc.unal, Landen.Chao, dqfext, sean.wang,
devicetree, linux-kernel, linux-arm-kernel, linux-mediatek,
naseefkm, b.larsson, Caleb James DeLisle
The MDIO MT7530 has 5 integrated PHYs, of these, the first PHY has
the additional registers that are used for such things as configuring
the clock configuration for the switch. The switch is typically on
MDIO address 31 and the PHYs are 0, 1, 2, 3, and 4 with 0 being the
special one. So taking the address of mdiodev (the switch) add 1 and
modulo 31 finds the first PHY.
However there are a number of MMIO based implementations of MT7530
and on these, mdiodev is NULL though they often still have a control
PHY for the purpose. Move MT753X_CTRL_PHY_ADDR to a function which
handles the NULL condition somewhat more gracefully and allows a
place for MMIO implementations to add special case handling to
provide their control PHY address.
Signed-off-by: Caleb James DeLisle <cjd@cjdns.fr>
---
drivers/net/dsa/mt7530.c | 54 +++++++++++++++++++++-------------------
drivers/net/dsa/mt7530.h | 2 --
2 files changed, 29 insertions(+), 27 deletions(-)
diff --git a/drivers/net/dsa/mt7530.c b/drivers/net/dsa/mt7530.c
index 28f94cd25b95..9a50a492e6f0 100644
--- a/drivers/net/dsa/mt7530.c
+++ b/drivers/net/dsa/mt7530.c
@@ -46,6 +46,16 @@ static const struct mt7530_mib_desc mt7530_mib[] = {
MIB_DESC(1, MT7530_PORT_MIB_RX_ARL_DROP, "RxArlDrop"),
};
+static int
+mt753x_ctrl_phy_addr(struct mt7530_priv *priv)
+{
+ if (WARN_ON_ONCE(!priv->mdiodev))
+ return 0;
+
+ /* Default is 1st PHY */
+ return (priv->mdiodev->addr + 1) & (PHY_MAX_ADDR - 1);
+}
+
static void
mt7530_mutex_lock(struct mt7530_priv *priv)
{
@@ -63,32 +73,30 @@ mt7530_mutex_unlock(struct mt7530_priv *priv)
static void
core_write(struct mt7530_priv *priv, u32 reg, u32 val)
{
+ int ctl_phy = mt753x_ctrl_phy_addr(priv);
struct mii_bus *bus = priv->bus;
int ret;
mt7530_mutex_lock(priv);
/* Write the desired MMD Devad */
- ret = bus->write(bus, MT753X_CTRL_PHY_ADDR(priv->mdiodev->addr),
- MII_MMD_CTRL, MDIO_MMD_VEND2);
+ ret = bus->write(bus, ctl_phy, MII_MMD_CTRL, MDIO_MMD_VEND2);
if (ret < 0)
goto err;
/* Write the desired MMD register address */
- ret = bus->write(bus, MT753X_CTRL_PHY_ADDR(priv->mdiodev->addr),
- MII_MMD_DATA, reg);
+ ret = bus->write(bus, ctl_phy, MII_MMD_DATA, reg);
if (ret < 0)
goto err;
/* Select the Function : DATA with no post increment */
- ret = bus->write(bus, MT753X_CTRL_PHY_ADDR(priv->mdiodev->addr),
+ ret = bus->write(bus, ctl_phy,
MII_MMD_CTRL, MDIO_MMD_VEND2 | MII_MMD_CTRL_NOINCR);
if (ret < 0)
goto err;
/* Write the data into MMD's selected register */
- ret = bus->write(bus, MT753X_CTRL_PHY_ADDR(priv->mdiodev->addr),
- MII_MMD_DATA, val);
+ ret = bus->write(bus, ctl_phy, MII_MMD_DATA, val);
err:
if (ret < 0)
dev_err(&bus->dev, "failed to write mmd register\n");
@@ -99,6 +107,7 @@ core_write(struct mt7530_priv *priv, u32 reg, u32 val)
static void
core_rmw(struct mt7530_priv *priv, u32 reg, u32 mask, u32 set)
{
+ int ctl_phy = mt753x_ctrl_phy_addr(priv);
struct mii_bus *bus = priv->bus;
u32 val;
int ret;
@@ -106,26 +115,23 @@ core_rmw(struct mt7530_priv *priv, u32 reg, u32 mask, u32 set)
mt7530_mutex_lock(priv);
/* Write the desired MMD Devad */
- ret = bus->write(bus, MT753X_CTRL_PHY_ADDR(priv->mdiodev->addr),
- MII_MMD_CTRL, MDIO_MMD_VEND2);
+ ret = bus->write(bus, ctl_phy, MII_MMD_CTRL, MDIO_MMD_VEND2);
if (ret < 0)
goto err;
/* Write the desired MMD register address */
- ret = bus->write(bus, MT753X_CTRL_PHY_ADDR(priv->mdiodev->addr),
- MII_MMD_DATA, reg);
+ ret = bus->write(bus, ctl_phy, MII_MMD_DATA, reg);
if (ret < 0)
goto err;
/* Select the Function : DATA with no post increment */
- ret = bus->write(bus, MT753X_CTRL_PHY_ADDR(priv->mdiodev->addr),
+ ret = bus->write(bus, ctl_phy,
MII_MMD_CTRL, MDIO_MMD_VEND2 | MII_MMD_CTRL_NOINCR);
if (ret < 0)
goto err;
/* Read the content of the MMD's selected register */
- ret = bus->read(bus, MT753X_CTRL_PHY_ADDR(priv->mdiodev->addr),
- MII_MMD_DATA);
+ ret = bus->read(bus, ctl_phy, MII_MMD_DATA);
if (ret < 0)
goto err;
val = ret;
@@ -133,8 +139,7 @@ core_rmw(struct mt7530_priv *priv, u32 reg, u32 mask, u32 set)
val &= ~mask;
val |= set;
/* Write the data into MMD's selected register */
- ret = bus->write(bus, MT753X_CTRL_PHY_ADDR(priv->mdiodev->addr),
- MII_MMD_DATA, val);
+ ret = bus->write(bus, ctl_phy, MII_MMD_DATA, val);
err:
if (ret < 0)
dev_err(&bus->dev, "failed to write mmd register\n");
@@ -2674,8 +2679,11 @@ mt7531_setup(struct dsa_switch *ds)
{
struct mt7530_priv *priv = ds->priv;
u32 val, id;
+ int ctl_phy;
int ret, i;
+ ctl_phy = mt753x_ctrl_phy_addr(priv);
+
/* Reset whole chip through gpio pin or memory-mapped registers for
* different type of hardware
*/
@@ -2743,25 +2751,21 @@ mt7531_setup(struct dsa_switch *ds)
* phy_[read,write]_mmd_indirect is called, we provide our own
* mt7531_ind_mmd_phy_[read,write] to complete this function.
*/
- ret = mt7531_ind_c45_phy_read(priv,
- MT753X_CTRL_PHY_ADDR(priv->mdiodev->addr),
- MDIO_MMD_VEND2, CORE_PLL_GROUP4);
+ ret = mt7531_ind_c45_phy_read(priv, ctl_phy, MDIO_MMD_VEND2,
+ CORE_PLL_GROUP4);
if (ret < 0)
return ret;
val = ret;
val |= MT7531_RG_SYSPLL_DMY2 | MT7531_PHY_PLL_BYPASS_MODE;
val &= ~MT7531_PHY_PLL_OFF;
- ret = mt7531_ind_c45_phy_write(priv,
- MT753X_CTRL_PHY_ADDR(priv->mdiodev->addr),
- MDIO_MMD_VEND2, CORE_PLL_GROUP4, val);
+ ret = mt7531_ind_c45_phy_write(priv, ctl_phy, MDIO_MMD_VEND2,
+ CORE_PLL_GROUP4, val);
if (ret < 0)
return ret;
/* Disable EEE advertisement on the switch PHYs. */
- for (i = MT753X_CTRL_PHY_ADDR(priv->mdiodev->addr);
- i < MT753X_CTRL_PHY_ADDR(priv->mdiodev->addr) + MT7530_NUM_PHYS;
- i++) {
+ for (i = ctl_phy; i < ctl_phy + MT7530_NUM_PHYS; i++) {
mt7531_ind_c45_phy_write(priv, i, MDIO_MMD_AN, MDIO_AN_EEE_ADV,
0);
}
diff --git a/drivers/net/dsa/mt7530.h b/drivers/net/dsa/mt7530.h
index 2bbbe617b52e..3dabbc99fbbc 100644
--- a/drivers/net/dsa/mt7530.h
+++ b/drivers/net/dsa/mt7530.h
@@ -747,8 +747,6 @@ enum mt7531_xtal_fsel {
#define MT7531_PHY_PLL_OFF BIT(5)
#define MT7531_PHY_PLL_BYPASS_MODE BIT(4)
-#define MT753X_CTRL_PHY_ADDR(addr) (((addr) + 1) & (PHY_MAX_ADDR - 1))
-
#define CORE_PLL_GROUP5 0x404
#define RG_LCDDS_PCW_NCPO1_MASK GENMASK(15, 0)
#define RG_LCDDS_PCW_NCPO1(x) FIELD_PREP(RG_LCDDS_PCW_NCPO1_MASK, x)
--
2.39.5
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH net-next 2/7] dt-bindings: net: dsa: mediatek,mt7530: add passthrough mode
2026-09-09 14:03 [PATCH net-next 0/7] net: dsa: mt7530: support EcoNet EN751221 Caleb James DeLisle
2026-09-09 14:03 ` [PATCH net-next 1/7] net: dsa: mt7530: get ctrl phy addr using a function Caleb James DeLisle
@ 2026-09-09 14:03 ` Caleb James DeLisle
2026-09-09 14:03 ` [PATCH net-next 3/7] net: dsa: mediatek: add support for " Caleb James DeLisle
` (4 subsequent siblings)
6 siblings, 0 replies; 13+ messages in thread
From: Caleb James DeLisle @ 2026-09-09 14:03 UTC (permalink / raw)
To: netdev
Cc: andrew, olteanv, davem, edumazet, kuba, pabeni, robh, krzk+dt,
conor+dt, matthias.bgg, angelogioacchino.delregno, chester.a.unal,
daniel, linux, arinc.unal, Landen.Chao, dqfext, sean.wang,
devicetree, linux-kernel, linux-arm-kernel, linux-mediatek,
naseefkm, b.larsson, Caleb James DeLisle
MT7530 switches can be configured to blindly pass packets between their
CPU/upstream port and a downstream DSA port, in particular, without
altering the MediaTek DSA Tag on the packets. This mode is used in some
integrations where an SoC integrated switch exists, but a more capable
MCM switch is added to effectively replace it.
Signed-off-by: Caleb James DeLisle <cjd@cjdns.fr>
---
.../devicetree/bindings/net/dsa/mediatek,mt7530.yaml | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/Documentation/devicetree/bindings/net/dsa/mediatek,mt7530.yaml b/Documentation/devicetree/bindings/net/dsa/mediatek,mt7530.yaml
index 90b3582b7619..e29fb8693498 100644
--- a/Documentation/devicetree/bindings/net/dsa/mediatek,mt7530.yaml
+++ b/Documentation/devicetree/bindings/net/dsa/mediatek,mt7530.yaml
@@ -73,6 +73,13 @@ description: |
Check out example 7.
+ The MT7530 and MT7531 switches are capable of being operated in "passthrough"
+ mode. In this mode, traffic is unconditionally passed between the CPU port
+ and the DSA port which links to a second switch. To use passthrough mode, the
+ upstream switch is configured with a DSA link to the downstream switch. In
+ passthrough mode the upstream switch is restricted, with no other ports or
+ switch configuration allowed.
+
properties:
compatible:
oneOf:
--
2.39.5
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH net-next 3/7] net: dsa: mediatek: add support for passthrough mode
2026-09-09 14:03 [PATCH net-next 0/7] net: dsa: mt7530: support EcoNet EN751221 Caleb James DeLisle
2026-09-09 14:03 ` [PATCH net-next 1/7] net: dsa: mt7530: get ctrl phy addr using a function Caleb James DeLisle
2026-09-09 14:03 ` [PATCH net-next 2/7] dt-bindings: net: dsa: mediatek,mt7530: add passthrough mode Caleb James DeLisle
@ 2026-09-09 14:03 ` Caleb James DeLisle
2026-09-10 14:11 ` sashiko-bot
2026-09-09 14:03 ` [PATCH net-next 4/7] net: dsa: mediatek: support PLL setup on MMIO MT7530 Caleb James DeLisle
` (3 subsequent siblings)
6 siblings, 1 reply; 13+ messages in thread
From: Caleb James DeLisle @ 2026-09-09 14:03 UTC (permalink / raw)
To: netdev
Cc: andrew, olteanv, davem, edumazet, kuba, pabeni, robh, krzk+dt,
conor+dt, matthias.bgg, angelogioacchino.delregno, chester.a.unal,
daniel, linux, arinc.unal, Landen.Chao, dqfext, sean.wang,
devicetree, linux-kernel, linux-arm-kernel, linux-mediatek,
naseefkm, b.larsson, Caleb James DeLisle
In some cases, hardware integrators add a second MT7530 switch to a
port of the CPU-connected MT7530 and configure the upstream switch to
pass all traffic to and from the downstream switch. Particularly,
without altering the MediaTek DSA tag. The typical reason for this is
because the downstream switch is more capable, but the upstream switch
is an irremovable part of the SoC.
To enable passthrough, the main switch has its CPU port, and the port
to the second switch, both configured as MT7530_VLAN_EG_DISABLED and
MT7530_VLAN_TRANSPARENT and it uses the port matrix to control
forwarding.
Support passing through to a downstream switch, and also support being
the downstream switch - meaning the upstream link is not a CPU port but
rather a DSA port.
As a point of information:
There exist features in the hardware which appear to enable full
two-switch hierarchies (i.e. ports on the upstream switch are also
available for use). The way that this is supposed to work is though a
PASSTHROUGH flag in the DSA tag on BIT(7). The downstream switch sets
a flag called "PT_OPTION" on the PVC register of its "CPU" port (the
port linking to the upstream switch). This causes the downstream switch
to set the PASSTHROUGH flag on all ingress traffic. The CPU then sets
the PASSTHROUGH flag on egress traffic meant for the downstream switch.
In this configuration, the upstream switch sets MT7530_VLAN_USER, and
PORT_SPEC_TAG on the (real) CPU port (as usual), but also sets it on
the port leading to the downstream switch. The PORT_SPEC_TAG flag on
the downstream link port causes incoming DSA tags to be copied over
rather than being replaced by tags identifying the traffic as having
come from the link port. Finally, an ACL is installed which causes the
upstream switch to forward all egress traffic with the PASSTHROUGH bit
to the link port.
However for reasons unknown, the PASSTHROUGH bit is cleared by the
upstream switch as it receives ingress traffic from the downstream
switch. So by the time the traffic reaches the CPU, it no longer bears
the PASSTHROUGH bit and its origin cannot be known.
Reference code defaults to passthrough mode as is implemented here, but
supports a limited hierarchical implementation for hardware that needs
it. In this mode it is not permitted to use the same port number on
both switches. This implementation does not implement that mode because
there is no known hardware using ports on both switches.
Signed-off-by: Caleb James DeLisle <cjd@cjdns.fr>
---
drivers/net/dsa/mt7530.c | 164 +++++++++++++++++++++++++++++++++++----
drivers/net/dsa/mt7530.h | 6 ++
2 files changed, 153 insertions(+), 17 deletions(-)
diff --git a/drivers/net/dsa/mt7530.c b/drivers/net/dsa/mt7530.c
index 9a50a492e6f0..58190e13813c 100644
--- a/drivers/net/dsa/mt7530.c
+++ b/drivers/net/dsa/mt7530.c
@@ -1286,13 +1286,41 @@ mt753x_trap_frames(struct mt7530_priv *priv)
TO_CPU_FW_CPU_ONLY);
}
+static int
+mt7530_port_change_mtu(struct dsa_switch *ds, int port, int new_mtu);
+
+/* If this switch is downstream of another switch that is in passthrough mode,
+ * the "CPU" port is actually a DSA port.
+ */
static void
mt753x_cpu_port_enable(struct dsa_switch *ds, int port)
{
struct mt7530_priv *priv = ds->priv;
- /* Enable Mediatek header mode on the cpu port */
- regmap_write(priv->regmap, MT7530_PVC_P(port), PORT_SPEC_TAG);
+ if (priv->is_passthrough) {
+ /* Disable parsing of the DSA tag, it will be forwarded blindly
+ * to the downstream switch.
+ */
+ regmap_write(priv->regmap, MT7530_PVC_P(port),
+ VLAN_ATTR(MT7530_VLAN_TRANSPARENT) |
+ PVC_EG_TAG(MT7530_VLAN_EG_DISABLED));
+
+ /* The port is not configured to parse DSA tags, so they are
+ * liable to be confused for length fields, so length check is
+ * disabled.
+ */
+ regmap_clear_bits(priv->regmap, MT753X_AGC, AGC_L2LEN_CHK);
+
+ /* In passthrough mode, MTU is only enforced downstream */
+ mt7530_port_change_mtu(ds, port, MT7530_MAX_MTU);
+
+ /* Loop detection has no value in passthrough mode */
+ regmap_set_bits(priv->regmap, MT753X_MTRAP,
+ MT7530_LOOP_DET_DISABLE);
+ } else {
+ /* Not passthrough, enable DSA tag handling on CPU port. */
+ regmap_write(priv->regmap, MT7530_PVC_P(port), PORT_SPEC_TAG);
+ }
/* Enable flooding on the CPU port */
regmap_set_bits(priv->regmap, MT753X_MFC,
@@ -1322,6 +1350,7 @@ static int
mt7530_port_enable(struct dsa_switch *ds, int port,
struct phy_device *phy)
{
+ int upstream_pt = dsa_switch_upstream_port(ds);
struct dsa_port *dp = dsa_to_port(ds, port);
struct mt7530_priv *priv = ds->priv;
@@ -1332,13 +1361,38 @@ mt7530_port_enable(struct dsa_switch *ds, int port,
* bridge.
*/
if (dsa_port_is_user(dp)) {
- struct dsa_port *cpu_dp = dp->cpu_dp;
+ priv->ports[port].pm |= PCR_MATRIX(BIT(upstream_pt));
+
+ } else if (dsa_port_is_dsa(dp) && dp->index != upstream_pt) {
+ priv->ports[port].pm |= PCR_MATRIX(BIT(upstream_pt));
+
+ /* Should not happen */
+ WARN_ON_ONCE(!priv->is_passthrough);
+
+ /* We are passing through to a downstream switch so we set both
+ * CPU and downstream link to pass traffic untouched so that
+ * the STAG from the downstream switch will pass to the upstream.
+ */
+ regmap_write(priv->regmap, MT7530_PVC_P(port),
+ VLAN_ATTR(MT7530_VLAN_TRANSPARENT) |
+ PVC_EG_TAG(MT7530_VLAN_EG_DISABLED));
+
+ /* We let the downstream switch flood */
+ regmap_set_bits(priv->regmap, MT753X_MFC, BC_FFP(BIT(port)) |
+ UNM_FFP(BIT(port)) | UNU_FFP(BIT(port)));
- priv->ports[port].pm |= PCR_MATRIX(BIT(cpu_dp->index));
+ /* Make the upstream port able to connect to the DSA port.
+ * This must be explicit because PORT_SPEC_TAG is unset.
+ */
+ regmap_write(priv->regmap, MT7530_PCR_P(upstream_pt),
+ PCR_MATRIX(BIT(port)));
}
priv->ports[port].enable = true;
- regmap_update_bits(priv->regmap, MT7530_PCR_P(port), PCR_MATRIX_MASK,
- priv->ports[port].pm);
+
+ /* In passthrough mode, CPU port mask is set above. */
+ if (!(priv->is_passthrough && dp->index == upstream_pt))
+ regmap_update_bits(priv->regmap, MT7530_PCR_P(port),
+ PCR_MATRIX_MASK, priv->ports[port].pm);
mutex_unlock(&priv->reg_mutex);
@@ -1390,7 +1444,7 @@ mt7530_port_change_mtu(struct dsa_switch *ds, int port, int new_mtu)
* largest MTU of the user ports. Because the switch only has a global
* RX length register, only allowing CPU port here is enough.
*/
- if (!dsa_is_cpu_port(ds, port))
+ if (!dsa_is_upstream_port(ds, port))
return 0;
regmap_read(priv->regmap, MT7530_GMACCR, &val);
@@ -2411,11 +2465,6 @@ mt7530_setup(struct dsa_switch *ds)
break;
}
- if (!dn) {
- dev_err(ds->dev, "parent OF node of DSA conduit not found");
- return -EINVAL;
- }
-
ds->assisted_learning_on_cpu_port = true;
ds->untag_vlan_aware_bridge_pvid = true;
ds->mtu_enforcement_ingress = true;
@@ -2517,7 +2566,7 @@ mt7530_setup(struct dsa_switch *ds)
/* Disable learning by default on all ports */
regmap_set_bits(priv->regmap, MT7530_PSC_P(i), SA_DIS);
- if (dsa_is_cpu_port(ds, i)) {
+ if (dsa_is_upstream_port(ds, i)) {
mt753x_cpu_port_enable(ds, i);
} else {
mt7530_port_disable(ds, i);
@@ -2541,7 +2590,7 @@ mt7530_setup(struct dsa_switch *ds)
return ret;
/* Check for PHY muxing on port 5 */
- if (dsa_is_unused_port(ds, 5)) {
+ if (dn && dsa_is_unused_port(ds, 5)) {
/* Scan the ethernet nodes. Look for GMAC1, lookup the used PHY.
* Set priv->p5_mode to the appropriate value if PHY muxing is
* detected.
@@ -2641,7 +2690,7 @@ mt7531_setup_common(struct dsa_switch *ds)
regmap_set_bits(priv->regmap, MT7531_DBG_CNT(i),
MT7531_DIS_CLR);
- if (dsa_is_cpu_port(ds, i)) {
+ if (dsa_is_upstream_port(ds, i)) {
mt753x_cpu_port_enable(ds, i);
} else {
mt7530_port_disable(ds, i);
@@ -3302,7 +3351,7 @@ mt753x_conduit_state_change(struct dsa_switch *ds,
/* Set the CPU port to trap frames to for MT7530. Trapped frames will be
* forwarded to the numerically smallest CPU port whose conduit
- * interface is up.
+ * interface is up. NOTE: "CPU port" can also mean an upstream DSA link.
*/
if (priv->id != ID_MT7530 && priv->id != ID_MT7621 &&
priv->id != ID_EN7528)
@@ -3397,6 +3446,76 @@ static int mt7988_setup(struct dsa_switch *ds)
return mt7531_setup_common(ds);
}
+/* 1 if passthrough, negative if error. */
+static int mt753x_check_passthrough(struct device *dev)
+{
+ struct device_node *ports, *port;
+ int passthrough_ports = 0;
+ int enabled_ports = 0;
+
+ ports = of_get_child_by_name(dev->of_node, "ports");
+ if (!ports)
+ ports = of_get_child_by_name(dev->of_node, "ethernet-ports");
+
+ if (!ports) {
+ dev_err(dev, "no ports child node found\n");
+ return -EINVAL;
+ }
+
+ for_each_available_child_of_node(ports, port) {
+ struct device_node *link;
+
+ enabled_ports++;
+
+ link = of_parse_phandle(port, "ethernet", 0);
+ if (!link)
+ link = of_parse_phandle(port, "link", 0);
+
+ if (!link)
+ continue;
+
+ of_node_put(link);
+
+ passthrough_ports++;
+ }
+
+ of_node_put(ports);
+
+ /*
+ * A switch is considered passthrough if exactly two available
+ * ports have an "ethernet" or "link" phandle.
+ */
+ if (passthrough_ports > 2 ||
+ (passthrough_ports == 2 && enabled_ports != 2)
+ ) {
+ dev_err(dev, "Only two ports allowed in passthrough mode\n");
+ return -EINVAL;
+ }
+
+ return passthrough_ports == 2;
+}
+
+/* No manipulation of forwarding rules allowed in passthrough mode */
+static const struct dsa_switch_ops mt7530_passthrough_switch_ops = {
+ .get_tag_protocol = mtk_get_tag_protocol,
+ .setup = mt753x_setup,
+ .teardown = mt753x_teardown,
+ .preferred_default_local_cpu_port = mt753x_preferred_default_local_cpu_port,
+ .get_strings = mt7530_get_strings,
+ .get_ethtool_stats = mt7530_get_ethtool_stats,
+ .get_sset_count = mt7530_get_sset_count,
+ .get_eth_mac_stats = mt7530_get_eth_mac_stats,
+ .get_rmon_stats = mt7530_get_rmon_stats,
+ .get_eth_ctrl_stats = mt7530_get_eth_ctrl_stats,
+ .get_stats64 = mt7530_get_stats64,
+ .port_enable = mt7530_port_enable,
+ .port_disable = mt7530_port_disable,
+ .phylink_get_caps = mt753x_phylink_get_caps,
+ .support_eee = dsa_supports_eee,
+ .set_mac_eee = mt753x_set_mac_eee,
+ .conduit_state_change = mt753x_conduit_state_change,
+};
+
static const struct dsa_switch_ops mt7530_switch_ops = {
.get_tag_protocol = mtk_get_tag_protocol,
.setup = mt753x_setup,
@@ -3529,8 +3648,12 @@ EXPORT_SYMBOL_GPL(mt753x_table);
int
mt7530_probe_common(struct mt7530_priv *priv)
{
+ int passthrough = mt753x_check_passthrough(priv->dev);
struct device *dev = priv->dev;
+ if (passthrough < 0)
+ return passthrough;
+
priv->ds = devm_kzalloc(dev, sizeof(*priv->ds), GFP_KERNEL);
if (!priv->ds)
return -ENOMEM;
@@ -3548,7 +3671,14 @@ mt7530_probe_common(struct mt7530_priv *priv)
priv->id = priv->info->id;
priv->dev = dev;
priv->ds->priv = priv;
- priv->ds->ops = &mt7530_switch_ops;
+
+ if (passthrough) {
+ priv->ds->ops = &mt7530_passthrough_switch_ops;
+ priv->is_passthrough = true;
+ } else {
+ priv->ds->ops = &mt7530_switch_ops;
+ }
+
priv->ds->phylink_mac_ops = &mt753x_phylink_mac_ops;
mutex_init(&priv->reg_mutex);
spin_lock_init(&priv->stats_lock);
diff --git a/drivers/net/dsa/mt7530.h b/drivers/net/dsa/mt7530.h
index 3dabbc99fbbc..108c831dd012 100644
--- a/drivers/net/dsa/mt7530.h
+++ b/drivers/net/dsa/mt7530.h
@@ -40,6 +40,7 @@ enum mt753x_id {
/* Register for ARL global control */
#define MT753X_AGC 0xc
#define LOCAL_EN BIT(7)
+#define AGC_L2LEN_CHK BIT(4)
/* Register for MAC forward control */
#define MT753X_MFC 0x10
@@ -583,6 +584,7 @@ enum mt7531_clk_skew {
#define MT753X_MTRAP 0x7804
#define MT7530_P5_PHY0_SEL BIT(20)
#define MT7530_CHG_TRAP BIT(16)
+#define MT7530_LOOP_DET_DISABLE BIT(14)
#define MT7530_P5_MAC_SEL BIT(13)
#define MT7530_P6_DIS BIT(8)
#define MT7530_P5_RGMII_MODE BIT(7)
@@ -897,6 +899,9 @@ struct mt753x_info {
* @p5_mode: Holding the current mode of port 5 of the MT7530 switch
* @p5_sgmii: Flag for distinguishing if port 5 of the MT7531 switch
* has got SGMII
+ * @is_passthrough: If this switch is to pass traffic between the upstream
+ * (CPU) port and a second downstream switch, without
+ * altering the DSA tag.
* @irq_domain: IRQ domain of the switch irq_chip
* @create_sgmii: Pointer to function creating SGMII PCS instance(s)
* @active_cpu_ports: Holding the active CPU ports
@@ -921,6 +926,7 @@ struct mt7530_priv {
bool p5_sgmii;
u8 mirror_rx;
u8 mirror_tx;
+ bool is_passthrough;
struct mt7530_port ports[MT7530_NUM_PORTS];
struct mt753x_pcs pcs[MT7530_NUM_PORTS];
/* protect among processes for registers access*/
--
2.39.5
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH net-next 4/7] net: dsa: mediatek: support PLL setup on MMIO MT7530
2026-09-09 14:03 [PATCH net-next 0/7] net: dsa: mt7530: support EcoNet EN751221 Caleb James DeLisle
` (2 preceding siblings ...)
2026-09-09 14:03 ` [PATCH net-next 3/7] net: dsa: mediatek: add support for " Caleb James DeLisle
@ 2026-09-09 14:03 ` Caleb James DeLisle
2026-09-09 14:03 ` [PATCH net-next 5/7] net: dsa: mediatek: support MDIO switch downstream of MMIO switch Caleb James DeLisle
` (2 subsequent siblings)
6 siblings, 0 replies; 13+ messages in thread
From: Caleb James DeLisle @ 2026-09-09 14:03 UTC (permalink / raw)
To: netdev
Cc: andrew, olteanv, davem, edumazet, kuba, pabeni, robh, krzk+dt,
conor+dt, matthias.bgg, angelogioacchino.delregno, chester.a.unal,
daniel, linux, arinc.unal, Landen.Chao, dqfext, sean.wang,
devicetree, linux-kernel, linux-arm-kernel, linux-mediatek,
naseefkm, b.larsson, Caleb James DeLisle
On MT7530 and MT7531, PHYs are an integral part of the switch. However,
on MT7530, certain configuration such as PLL setup is done via special
registers on one of the PHYs.
In an MMIO implementation, the MDIO bus is part of the switch itself.
This bus is already setup for PHY calibration so begin using it for
core switch PLL setup.
Signed-off-by: Caleb James DeLisle <cjd@cjdns.fr>
---
drivers/net/dsa/mt7530.c | 15 +++++++++++++++
drivers/net/dsa/mt7530.h | 4 ++++
2 files changed, 19 insertions(+)
diff --git a/drivers/net/dsa/mt7530.c b/drivers/net/dsa/mt7530.c
index 58190e13813c..a165b4c8ed8d 100644
--- a/drivers/net/dsa/mt7530.c
+++ b/drivers/net/dsa/mt7530.c
@@ -77,6 +77,12 @@ core_write(struct mt7530_priv *priv, u32 reg, u32 val)
struct mii_bus *bus = priv->bus;
int ret;
+ if (!bus)
+ bus = priv->child_bus;
+
+ if (WARN_ON_ONCE(!bus))
+ return;
+
mt7530_mutex_lock(priv);
/* Write the desired MMD Devad */
@@ -112,6 +118,12 @@ core_rmw(struct mt7530_priv *priv, u32 reg, u32 mask, u32 set)
u32 val;
int ret;
+ if (!bus)
+ bus = priv->child_bus;
+
+ if (WARN_ON_ONCE(!bus))
+ return;
+
mt7530_mutex_lock(priv);
/* Write the desired MMD Devad */
@@ -2429,8 +2441,11 @@ mt7530_setup_mdio(struct mt7530_priv *priv)
if (priv->irq_domain && !mnp)
mt7530_setup_mdio_irq(priv);
+ priv->child_bus = bus;
+
ret = devm_of_mdiobus_register(dev, bus, mnp);
if (ret) {
+ priv->child_bus = NULL;
dev_err(dev, "failed to register MDIO bus: %d\n", ret);
if (priv->irq_domain && !mnp)
mt7530_free_mdio_irq(priv);
diff --git a/drivers/net/dsa/mt7530.h b/drivers/net/dsa/mt7530.h
index 108c831dd012..5b7394f6383c 100644
--- a/drivers/net/dsa/mt7530.h
+++ b/drivers/net/dsa/mt7530.h
@@ -886,6 +886,9 @@ struct mt753x_info {
* @dev: The device pointer
* @ds: The pointer to the dsa core structure
* @bus: The bus used for the device and built-in PHY
+ * @child_bus: The bus created by the device, on MDIO implementations
+ * this is bus indirectly accesses `bus`, on MMIO
+ * implementations this bus is part of the switch.
* @regmap: The regmap instance representing all switch registers
* @rstc: The pointer to reset control used by MCM
* @core_pwr: The power supplied into the core
@@ -914,6 +917,7 @@ struct mt7530_priv {
struct device *dev;
struct dsa_switch *ds;
struct mii_bus *bus;
+ struct mii_bus *child_bus;
struct regmap *regmap;
struct reset_control *rstc;
struct regulator *core_pwr;
--
2.39.5
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH net-next 5/7] net: dsa: mediatek: support MDIO switch downstream of MMIO switch
2026-09-09 14:03 [PATCH net-next 0/7] net: dsa: mt7530: support EcoNet EN751221 Caleb James DeLisle
` (3 preceding siblings ...)
2026-09-09 14:03 ` [PATCH net-next 4/7] net: dsa: mediatek: support PLL setup on MMIO MT7530 Caleb James DeLisle
@ 2026-09-09 14:03 ` Caleb James DeLisle
2026-09-10 14:11 ` sashiko-bot
2026-09-09 14:03 ` [PATCH net-next 6/7] dt-bindings: net: dsa: mediatek,mt7530: add econet,en751221 Caleb James DeLisle
2026-09-09 14:03 ` [PATCH net-next 7/7] net: dsa: mediatek: support EN751221 switch Caleb James DeLisle
6 siblings, 1 reply; 13+ messages in thread
From: Caleb James DeLisle @ 2026-09-09 14:03 UTC (permalink / raw)
To: netdev
Cc: andrew, olteanv, davem, edumazet, kuba, pabeni, robh, krzk+dt,
conor+dt, matthias.bgg, angelogioacchino.delregno, chester.a.unal,
daniel, linux, arinc.unal, Landen.Chao, dqfext, sean.wang,
devicetree, linux-kernel, linux-arm-kernel, linux-mediatek,
naseefkm, b.larsson, Caleb James DeLisle
The MT7530 / MT7531 can connect via either MDIO or MMIO. In MMIO mode
the switch provides its own MDIO bus which connects to its integrated
PHYs, but also can be connected to other things, such as another
switch.
If the MDIO bus contains another switch, then the upstream switch
will register but it will not setup the DSA tree because the
downstream switch is missing. Without the complete DSA tree,
mt753x_setup() will not be called on the switch and therefore
mt7530_setup_mdio() is never called so the downstream switch never
registers.
Update mt7530_setup_mdio() so that it can be called multiple times,
export the symbol, and call it again after dsa_register_switch()
from mt7988_probe().
Signed-off-by: Caleb James DeLisle <cjd@cjdns.fr>
---
drivers/net/dsa/mt7530-mmio.c | 7 ++++++-
drivers/net/dsa/mt7530.c | 7 ++++++-
drivers/net/dsa/mt7530.h | 10 ++++++++++
3 files changed, 22 insertions(+), 2 deletions(-)
diff --git a/drivers/net/dsa/mt7530-mmio.c b/drivers/net/dsa/mt7530-mmio.c
index cf3bdb23a2d5..29fbd0fc50d1 100644
--- a/drivers/net/dsa/mt7530-mmio.c
+++ b/drivers/net/dsa/mt7530-mmio.c
@@ -61,7 +61,12 @@ mt7988_probe(struct platform_device *pdev)
if (IS_ERR(priv->regmap))
return PTR_ERR(priv->regmap);
- return dsa_register_switch(priv->ds);
+ ret = dsa_register_switch(priv->ds);
+
+ if (ret)
+ return ret;
+
+ return mt7530_setup_mdio(priv);
}
static void mt7988_remove(struct platform_device *pdev)
diff --git a/drivers/net/dsa/mt7530.c b/drivers/net/dsa/mt7530.c
index a165b4c8ed8d..0c0c5358b8b8 100644
--- a/drivers/net/dsa/mt7530.c
+++ b/drivers/net/dsa/mt7530.c
@@ -2404,7 +2404,7 @@ mt7530_free_mdio_irq(struct mt7530_priv *priv)
}
}
-static int
+int
mt7530_setup_mdio(struct mt7530_priv *priv)
{
struct device_node *mnp, *np = priv->dev->of_node;
@@ -2414,6 +2414,10 @@ mt7530_setup_mdio(struct mt7530_priv *priv)
static int idx;
int ret = 0;
+ /* Already done */
+ if (priv->child_bus)
+ return 0;
+
mnp = of_get_child_by_name(np, "mdio");
if (mnp && !of_device_is_available(mnp))
@@ -2455,6 +2459,7 @@ mt7530_setup_mdio(struct mt7530_priv *priv)
of_node_put(mnp);
return ret;
}
+EXPORT_SYMBOL_GPL(mt7530_setup_mdio);
static int
mt7530_setup(struct dsa_switch *ds)
diff --git a/drivers/net/dsa/mt7530.h b/drivers/net/dsa/mt7530.h
index 5b7394f6383c..c86bc4bca29b 100644
--- a/drivers/net/dsa/mt7530.h
+++ b/drivers/net/dsa/mt7530.h
@@ -969,6 +969,16 @@ struct mt7530_hw_stats {
int mt7530_probe_common(struct mt7530_priv *priv);
void mt7530_remove_common(struct mt7530_priv *priv);
+/*
+ * When an MMIO based switch has an MDIO bus which contains a downstream MDIO
+ * switch, the MDIO bus is not normally setup until mt753x_setup() has been
+ * called. But mt753x_setup() is not called until DSA sees that every switch in
+ * the tree has been probed. Calling mt7530_setup_mdio() after at the end of
+ * the MMIO probe function allows the downstream switch to register, completing
+ * the tree.
+ */
+int mt7530_setup_mdio(struct mt7530_priv *priv);
+
extern const struct mt753x_info mt753x_table[];
#endif /* __MT7530_H */
--
2.39.5
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH net-next 6/7] dt-bindings: net: dsa: mediatek,mt7530: add econet,en751221
2026-09-09 14:03 [PATCH net-next 0/7] net: dsa: mt7530: support EcoNet EN751221 Caleb James DeLisle
` (4 preceding siblings ...)
2026-09-09 14:03 ` [PATCH net-next 5/7] net: dsa: mediatek: support MDIO switch downstream of MMIO switch Caleb James DeLisle
@ 2026-09-09 14:03 ` Caleb James DeLisle
2026-09-10 14:11 ` sashiko-bot
2026-09-09 14:03 ` [PATCH net-next 7/7] net: dsa: mediatek: support EN751221 switch Caleb James DeLisle
6 siblings, 1 reply; 13+ messages in thread
From: Caleb James DeLisle @ 2026-09-09 14:03 UTC (permalink / raw)
To: netdev
Cc: andrew, olteanv, davem, edumazet, kuba, pabeni, robh, krzk+dt,
conor+dt, matthias.bgg, angelogioacchino.delregno, chester.a.unal,
daniel, linux, arinc.unal, Landen.Chao, dqfext, sean.wang,
devicetree, linux-kernel, linux-arm-kernel, linux-mediatek,
naseefkm, b.larsson, Caleb James DeLisle
The EcoNet EN751221 MIPS SoC integrates an MT7530 switch memory-mapped
in the SoC register space. It is similar to the econet,en7528-switch
except that ports 0..3 are 10/100 only, port 4 has a gigabit PHY, and
port 5 has no PHY, but is in some implementations connected to a
downstream MT7530 multi-chip module via a TRGMII link.
The downstream MT7530 is similar to the MT7621 multi-chip module and
has all gigabit ports.
Add the econet,en751221-switch compatible with the same constraints as
the other built-in switches and also add the econet,en751221
multi-chip-module switch whose port 6 is configured as a DSA link port.
Signed-off-by: Caleb James DeLisle <cjd@cjdns.fr>
---
.../bindings/net/dsa/mediatek,mt7530.yaml | 43 ++++++++++++++++++-
1 file changed, 41 insertions(+), 2 deletions(-)
diff --git a/Documentation/devicetree/bindings/net/dsa/mediatek,mt7530.yaml b/Documentation/devicetree/bindings/net/dsa/mediatek,mt7530.yaml
index e29fb8693498..106c4087528d 100644
--- a/Documentation/devicetree/bindings/net/dsa/mediatek,mt7530.yaml
+++ b/Documentation/devicetree/bindings/net/dsa/mediatek,mt7530.yaml
@@ -29,6 +29,12 @@ description: |
and the switch registers are directly mapped into SoC's memory map rather than
using MDIO. The DSA driver currently doesn't support MT7620 variants.
+ EcoNet EN751221 SoCs have a memory mapped MT7530 with 3x 10/100 PHYs and 1x
+ gigabit PHY. Some EN751221 chips such as EN7513G and EN7526G have a multi-chip
+ module implementation of the MT7530 as well as the on-die switch. In these
+ packages, the multi-chip module is connected to port 5 of the on-die switch
+ via a TRGMII link.
+
There is only the standalone version of MT7531.
Port 5 on MT7530 supports various configurations:
@@ -111,6 +117,14 @@ properties:
Built-in switch of the EcoNet EN7528 SoC
const: econet,en7528-switch
+ - description:
+ Built-in switch of EcoNet EN751221 SoC
+ const: econet,en751221-switch
+
+ - description:
+ Multi-chip module MT7530 in EN751221 SoC
+ const: econet,en751221
+
reg:
maxItems: 1
@@ -160,8 +174,8 @@ properties:
mediatek,mcm:
type: boolean
description:
- Used for MT7621AT, MT7621DAT, MT7621ST and MT7623AI SoCs which the MT7530
- switch is a part of the multi-chip module.
+ Used for MT7621AT, MT7621DAT, MT7621ST, MT7623AI and EN751221 SoCs which
+ the MT7530 switch is a part of the multi-chip module.
reset-gpios:
description: |
@@ -223,6 +237,20 @@ $defs:
phy-mode:
const: internal
+ mt7530-passthrough-dsa-port:
+ patternProperties:
+ "^(ethernet-)?ports$":
+ patternProperties:
+ "^(ethernet-)?port@[0-6]$":
+ if:
+ required: [ link ]
+ then:
+ properties:
+ reg:
+ const: 6
+ phy-mode:
+ const: trgmii
+
mt7530-dsa-port:
patternProperties:
"^(ethernet-)?ports$":
@@ -330,6 +358,7 @@ allOf:
- airoha,en7581-switch
- airoha,an7583-switch
- econet,en7528-switch
+ - econet,en751221-switch
then:
$ref: "#/$defs/builtin-dsa-port"
properties:
@@ -337,6 +366,16 @@ allOf:
mediatek,mcm: false
reset-names: false
+ - if:
+ properties:
+ compatible:
+ enum:
+ - econet,en751221
+ then:
+ $ref: "#/$defs/mt7530-passthrough-dsa-port"
+ required:
+ - mediatek,mcm
+
unevaluatedProperties: false
examples:
--
2.39.5
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH net-next 7/7] net: dsa: mediatek: support EN751221 switch
2026-09-09 14:03 [PATCH net-next 0/7] net: dsa: mt7530: support EcoNet EN751221 Caleb James DeLisle
` (5 preceding siblings ...)
2026-09-09 14:03 ` [PATCH net-next 6/7] dt-bindings: net: dsa: mediatek,mt7530: add econet,en751221 Caleb James DeLisle
@ 2026-09-09 14:03 ` Caleb James DeLisle
2026-09-10 14:11 ` sashiko-bot
2026-09-12 0:08 ` Jakub Kicinski
6 siblings, 2 replies; 13+ messages in thread
From: Caleb James DeLisle @ 2026-09-09 14:03 UTC (permalink / raw)
To: netdev
Cc: andrew, olteanv, davem, edumazet, kuba, pabeni, robh, krzk+dt,
conor+dt, matthias.bgg, angelogioacchino.delregno, chester.a.unal,
daniel, linux, arinc.unal, Landen.Chao, dqfext, sean.wang,
devicetree, linux-kernel, linux-arm-kernel, linux-mediatek,
naseefkm, b.larsson, Caleb James DeLisle
The EcoNet EN751221 has either one, or two, onboard MT7530 switches.
Every implementation of this SoC has one switch on die with the CPU,
but some chips - notably those with a "G" in the name, have a second
MT7530 as an MCM module.
The on-die MT7530 has 4 FE ports and 1 GE port. The MCM switch has all
gigabit ports.
The MCM switch connects to the SoC switch via a TRGMII link from port
5 on the SoC switch to port 6 on the MCM switch. This link undergoes
calibration on startup.
All known devices with the MCM present do not make any use of the ports
on the on-die switch, it is put into "passthrough" mode in which all
traffic is shuttled between port 6 and port 5 without alteration of the
DSA tags.
Add support for both the on-die and the MCM switch, and calibration of
the TRGMII link between them.
Signed-off-by: Caleb James DeLisle <cjd@cjdns.fr>
---
drivers/net/dsa/mt7530-mdio.c | 1 +
drivers/net/dsa/mt7530-mmio.c | 1 +
drivers/net/dsa/mt7530.c | 335 +++++++++++++++++++++++++++++++++-
drivers/net/dsa/mt7530.h | 24 +++
4 files changed, 357 insertions(+), 4 deletions(-)
diff --git a/drivers/net/dsa/mt7530-mdio.c b/drivers/net/dsa/mt7530-mdio.c
index 24ef54f3db2a..2fd987ff8510 100644
--- a/drivers/net/dsa/mt7530-mdio.c
+++ b/drivers/net/dsa/mt7530-mdio.c
@@ -139,6 +139,7 @@ mt7531_create_sgmii(struct mt7530_priv *priv)
}
static const struct of_device_id mt7530_of_match[] = {
+ { .compatible = "econet,en751221", .data = &mt753x_table[ID_EN751221_EXT], },
{ .compatible = "mediatek,mt7621", .data = &mt753x_table[ID_MT7621], },
{ .compatible = "mediatek,mt7530", .data = &mt753x_table[ID_MT7530], },
{ .compatible = "mediatek,mt7531", .data = &mt753x_table[ID_MT7531], },
diff --git a/drivers/net/dsa/mt7530-mmio.c b/drivers/net/dsa/mt7530-mmio.c
index 29fbd0fc50d1..1a29b1eefb2c 100644
--- a/drivers/net/dsa/mt7530-mmio.c
+++ b/drivers/net/dsa/mt7530-mmio.c
@@ -12,6 +12,7 @@
static const struct of_device_id mt7988_of_match[] = {
{ .compatible = "airoha,an7583-switch", .data = &mt753x_table[ID_AN7583], },
{ .compatible = "airoha,en7581-switch", .data = &mt753x_table[ID_EN7581], },
+ { .compatible = "econet,en751221-switch", .data = &mt753x_table[ID_EN751221], },
{ .compatible = "econet,en7528-switch", .data = &mt753x_table[ID_EN7528], },
{ .compatible = "mediatek,mt7988-switch", .data = &mt753x_table[ID_MT7988], },
{ /* sentinel */ }
diff --git a/drivers/net/dsa/mt7530.c b/drivers/net/dsa/mt7530.c
index 0c0c5358b8b8..6fd4719aab89 100644
--- a/drivers/net/dsa/mt7530.c
+++ b/drivers/net/dsa/mt7530.c
@@ -49,6 +49,9 @@ static const struct mt7530_mib_desc mt7530_mib[] = {
static int
mt753x_ctrl_phy_addr(struct mt7530_priv *priv)
{
+ if (priv->id == ID_EN751221)
+ return 12;
+
if (WARN_ON_ONCE(!priv->mdiodev))
return 0;
@@ -344,12 +347,19 @@ mt7530_setup_port6(struct dsa_switch *ds, phy_interface_t interface)
regmap_read(priv->regmap, MT753X_MTRAP, &xtal);
xtal &= MT7530_XTAL_MASK;
+ /* EN751221 on-die does not report clock speed in MTRAP */
+ if (priv->id == ID_EN751221)
+ xtal = MT7530_XTAL_25MHZ;
+
if (xtal == MT7530_XTAL_25MHZ)
ssc_delta = 0x57;
else
ssc_delta = 0x87;
- if (priv->id == ID_MT7621) {
+ if (priv->id == ID_EN751221_EXT || priv->id == ID_EN751221) {
+ /* PLL frequency: 362.5Mhz */
+ ncpo1 = 0x1d00;
+ } else if (priv->id == ID_MT7621) {
/* PLL frequency: 125MHz: 1.0GBit */
if (xtal == MT7530_XTAL_40MHZ)
ncpo1 = 0x0640;
@@ -466,6 +476,251 @@ mt7531_pll_setup(struct mt7530_priv *priv)
usleep_range(25, 35);
}
+static bool
+en751221_trgmii_cal_ok(struct mt7530_priv *rx, u32 reg, int chan, int i)
+{
+ u32 val = 0;
+
+ regmap_read(rx->regmap, reg, &val);
+ regmap_write(rx->regmap, reg, val | EDGE_CHK);
+ regmap_write(rx->regmap, reg, val & ~EDGE_CHK);
+ regmap_read(rx->regmap, reg, &val);
+
+ return FIELD_GET(RD_VALUE_MASK, val) == TGMII_TD_PAT &&
+ !FIELD_GET(RD_ERR_MASK, val);
+}
+
+static void
+en751221_trgmii_calibrate_direction(struct mt7530_priv *tx,
+ struct mt7530_priv *rx,
+ u8 *default_taps)
+{
+ int channel;
+
+ regmap_set_bits(tx->regmap, MT7530_TRGMII_TXCTRL, TRAIN_TXEN);
+
+ /* Put fail pattern on every channel */
+ for (channel = 0; channel < NUM_TRGMII_CTRL; channel++)
+ regmap_update_bits(tx->regmap, EN7530_TRGMII_TD_CTRL(channel),
+ TGMII_TD_PAT_MASK,
+ FIELD_PREP(TGMII_TD_PAT_MASK,
+ TGMII_TD_FAIL_PAT));
+
+ for (channel = 0; channel < NUM_TRGMII_CTRL; channel++) {
+ u32 rx_reg = MT7530_TRGMII_RD(channel);
+ int best_tap = -1, best_range = -1;
+ int first = -1;
+ u8 dac;
+ char log[TD_TAP_MAX + 1];
+
+ /* Put test pattern on correct channel */
+ regmap_update_bits(tx->regmap, EN7530_TRGMII_TD_CTRL(channel),
+ TGMII_TD_PAT_MASK,
+ FIELD_PREP(TGMII_TD_PAT_MASK, TGMII_TD_PAT));
+
+ for (dac = 0; dac < TD_TAP_MAX; dac++) {
+ /* Set TAP */
+ regmap_update_bits(rx->regmap, rx_reg, RD_TAP_MASK,
+ RD_TAP(dac));
+
+ /* Check if we can get a good read */
+ if (en751221_trgmii_cal_ok(rx, rx_reg, channel, dac)) {
+ log[dac] = '+';
+
+ if (first < 0)
+ first = dac;
+
+ if ((dac - first) > best_range) {
+ best_tap = (first + dac) / 2;
+ best_range = dac - first;
+ }
+ } else {
+ log[dac] = '.';
+ first = -1;
+ }
+ }
+
+ log[TD_TAP_MAX] = '\0';
+
+ if (best_tap > -1) {
+ regmap_update_bits(rx->regmap, rx_reg, RD_TAP_MASK,
+ RD_TAP(best_tap));
+
+ log[best_tap] = 'X';
+
+ dev_info(rx->dev,
+ "TRGMII lane %d: %s tap %d old %d\n",
+ channel, log, best_tap, default_taps[channel]);
+ } else {
+ regmap_update_bits(rx->regmap, rx_reg, RD_TAP_MASK,
+ RD_TAP(default_taps[channel]));
+
+ dev_warn(rx->dev,
+ "TRGMII lane %d: %s calibration failed, preserving tap %u\n",
+ channel, log, default_taps[channel]);
+ }
+
+ /* Return channel to failure pattern */
+ regmap_update_bits(tx->regmap, EN7530_TRGMII_TD_CTRL(channel),
+ TGMII_TD_PAT_MASK,
+ FIELD_PREP(TGMII_TD_PAT_MASK,
+ TGMII_TD_FAIL_PAT));
+ }
+
+ regmap_clear_bits(tx->regmap, MT7530_TRGMII_TXCTRL, TRAIN_TXEN);
+}
+
+static void
+en751221_set_tx_drive(struct mt7530_priv *priv, u8 drvp, u8 drvn, u8 clk_drvp,
+ u8 clk_drvn)
+{
+ int channel;
+
+ /* Tx driving for TRGMII path on SoC */
+ for (channel = 0; channel < NUM_TRGMII_CTRL; channel++)
+ regmap_write(priv->regmap, MT7530_TRGMII_TD_ODT(channel),
+ TD_DM_DRVP(drvp) | TD_DM_DRVN(drvn));
+
+ /* Undocumented 6th channel, probably drive strength for clock line. */
+ regmap_write(priv->regmap, MT7530_TRGMII_TD_ODT(5), TD_DM_DRVP(drvp) |
+ TD_DM_DRVN(drvn));
+}
+
+static void
+en751221_trgmii_pair_setup(struct mt7530_priv *ext, int ext_port,
+ struct mt7530_priv *ondie, int ondie_port)
+{
+ u8 default_taps_ondie[NUM_TRGMII_CTRL];
+ u8 default_taps_ext[NUM_TRGMII_CTRL];
+ u32 mcr_down, mcr_up;
+ int channel;
+ int reg_val;
+
+ /* BOTH: Put interfaces in a downed state */
+ mcr_down = PMCR_IFG_XMIT(PMCR_IFG_XMIT_64) | PMCR_MAC_MODE |
+ MT7530_FORCE_MODE | PMCR_MAC_RX_EN | PMCR_BACKOFF_EN |
+ PMCR_BACKPR_EN | PMCR_FORCE_SPEED_1000 | PMCR_FORCE_FDX;
+ regmap_write(ondie->regmap, MT753X_PMCR_P(ondie_port), mcr_down);
+ regmap_write(ext->regmap, MT753X_PMCR_P(ext_port), mcr_down);
+ usleep_range(5000, 6000);
+
+ /* BOTH: Reset TX */
+ regmap_set_bits(ext->regmap, MT7530_TRGMII_TXCTRL, TX_RST);
+ regmap_set_bits(ondie->regmap, MT7530_TRGMII_TXCTRL, TX_RST);
+ usleep_range(5000, 6000);
+ regmap_clear_bits(ext->regmap, MT7530_TRGMII_TXCTRL, TX_RST);
+ regmap_clear_bits(ondie->regmap, MT7530_TRGMII_TXCTRL, TX_RST);
+
+ /* BOTH: Reset RX controllers down */
+ regmap_set_bits(ext->regmap, MT7530_TRGMII_RCK_CTRL, RX_RST);
+ regmap_set_bits(ondie->regmap, MT7530_TRGMII_RCK_CTRL, RX_RST);
+
+ /* BOTH: Set TX drive strength, MCM uses more */
+ en751221_set_tx_drive(ondie, 8, 8, 7, 7);
+ en751221_set_tx_drive(ext, 11, 11, 16, 16);
+
+ /* BOTH: Reset RX controllers up */
+ regmap_clear_bits(ext->regmap, MT7530_TRGMII_RCK_CTRL, RX_RST);
+ regmap_clear_bits(ondie->regmap, MT7530_TRGMII_RCK_CTRL, RX_RST);
+
+ /* BOTH: Ports up */
+ mcr_up = mcr_down | PMCR_MAC_TX_EN | PMCR_FORCE_LNK;
+ regmap_write(ondie->regmap, MT753X_PMCR_P(ondie_port), mcr_up);
+ regmap_write(ext->regmap, MT753X_PMCR_P(ext_port), mcr_up);
+
+ /* MCM: Set Ext->SoC TX delay to 0 */
+ for (channel = 0; channel < NUM_TRGMII_CTRL; channel++)
+ regmap_clear_bits(ext->regmap, EN7530_TRGMII_TD_CTRL(channel),
+ TGMII_TD_TAP_MASK);
+
+ /* SOC: ODT */
+ regmap_set_bits(ondie->regmap, MT7530_TRGMII_RCK_RTT,
+ DQS1_GATE | DQS0_GATE | EN751221_B17);
+
+ /* SOC: Undocumented */
+ for (channel = 0; channel < NUM_TRGMII_CTRL; channel++)
+ regmap_write(ondie->regmap, (0x7a14 + channel * 8),
+ 0x3227700);
+
+ /* MCM: Spread spectrum clock*/
+ core_clear(ext, CORE_PLL_GROUP8, RG_LCDDS_SSC_EN);
+
+ /* BOTH: Zero clock delay */
+ regmap_clear_bits(ext->regmap, MT7530_TRGMII_RCK_CTRL,
+ DQSI0_TAP_MASK);
+ regmap_clear_bits(ondie->regmap, MT7530_TRGMII_RCK_CTRL,
+ DQSI0_TAP_MASK);
+
+ /* BOTH: Collect and then zero every RX TAP */
+ for (channel = 0; channel < NUM_TRGMII_CTRL; channel++) {
+ reg_val = 0;
+ regmap_read(ext->regmap, MT7530_TRGMII_RD(channel), ®_val);
+ default_taps_ext[channel] = FIELD_GET(RD_TAP_MASK, reg_val);
+ regmap_clear_bits(ext->regmap, MT7530_TRGMII_RD(channel),
+ RD_TAP_MASK);
+
+ reg_val = 0;
+ regmap_read(ondie->regmap, MT7530_TRGMII_RD(channel), ®_val);
+ default_taps_ondie[channel] = FIELD_GET(RD_TAP_MASK, reg_val);
+ regmap_clear_bits(ondie->regmap, MT7530_TRGMII_RD(channel),
+ RD_TAP_MASK);
+ }
+
+ en751221_trgmii_calibrate_direction(ondie, ext, default_taps_ext);
+ en751221_trgmii_calibrate_direction(ext, ondie, default_taps_ext);
+
+ dev_info(ondie->dev, "TRGMII inter-switch link initialized\n");
+}
+
+static void
+mt7530_cal_interswitch_trgmii(struct dsa_port *dp)
+{
+ struct dsa_switch *ds = dp->ds;
+ struct dsa_switch *peer_ds;
+ struct dsa_port *peer_dp;
+ struct mt7530_priv *peer;
+ struct mt7530_priv *priv;
+ struct dsa_link *dl;
+ u32 pmsr = 0;
+
+ priv = ds->priv;
+
+ if (priv->id != ID_EN751221_EXT)
+ return;
+
+ if (dp->type != DSA_PORT_TYPE_DSA)
+ return;
+
+ regmap_read(priv->regmap, MT7530_PMSR_P(dp->index), &pmsr);
+
+ if (!(pmsr & PMSR_LINK))
+ return;
+
+ list_for_each_entry(dl, &ds->dst->rtable, list) {
+ if (dl->dp != dp)
+ continue;
+
+ peer_dp = dl->link_dp;
+
+ if (peer_dp->type != DSA_PORT_TYPE_DSA)
+ continue;
+
+ peer_ds = dl->link_dp->ds;
+
+ if (!of_device_is_compatible(peer_ds->dev->of_node,
+ "econet,en751221-switch"))
+ continue;
+
+ peer = peer_ds->priv;
+
+ if (peer->id != ID_EN751221)
+ continue;
+
+ en751221_trgmii_pair_setup(priv, dp->index, peer,
+ peer_dp->index);
+ }
+}
+
static void
mt7530_mib_reset(struct dsa_switch *ds)
{
@@ -1408,7 +1663,8 @@ mt7530_port_enable(struct dsa_switch *ds, int port,
mutex_unlock(&priv->reg_mutex);
- if (priv->id != ID_MT7530 && priv->id != ID_MT7621)
+ if (priv->id != ID_MT7530 && priv->id != ID_MT7621 &&
+ priv->id != ID_EN751221 && priv->id != ID_EN751221_EXT)
return 0;
if (port == 5)
@@ -1435,7 +1691,8 @@ mt7530_port_disable(struct dsa_switch *ds, int port)
mutex_unlock(&priv->reg_mutex);
- if (priv->id != ID_MT7530 && priv->id != ID_MT7621)
+ if (priv->id != ID_MT7530 && priv->id != ID_MT7621 &&
+ priv->id != ID_EN751221 && priv->id != ID_EN751221_EXT)
return;
/* Do not set MT7530_P5_DIS when port 5 is being used for PHY muxing. */
@@ -2563,6 +2820,12 @@ mt7530_setup(struct dsa_switch *ds)
MT7530_CHG_TRAP | MT7530_PHY_INDIRECT_ACCESS,
MT7530_CHG_TRAP);
+ /* EN751221 MCM starts on the wrong frequency */
+ if (priv->id == ID_EN751221_EXT)
+ regmap_update_bits(priv->regmap, MT753X_MTRAP,
+ MT7530_CHG_TRAP | MT7530_CK_SEL,
+ MT7530_CHG_TRAP);
+
if ((val & MT7530_XTAL_MASK) == MT7530_XTAL_40MHZ)
mt7530_pll_setup(priv);
@@ -2983,6 +3246,44 @@ static void en7528_mac_port_get_caps(struct dsa_switch *ds, int port,
}
}
+static void en751221_mac_port_get_caps(struct dsa_switch *ds, int port,
+ struct phylink_config *config)
+{
+ switch (port) {
+ /* EN751221 ports 0..3 are connected to the integrated FE PHYs. */
+ case 0 ... 3:
+ __set_bit(PHY_INTERFACE_MODE_INTERNAL,
+ config->supported_interfaces);
+
+ config->mac_capabilities |= MAC_10 | MAC_100;
+ break;
+
+ /* Port 4 is connected to the standalone EN7512/EN7521 GPHY. */
+ case 4:
+ __set_bit(PHY_INTERFACE_MODE_INTERNAL,
+ config->supported_interfaces);
+
+ config->mac_capabilities |= MAC_10 | MAC_100 | MAC_1000FD;
+ break;
+
+ /* Port 5 is the 1 Gbit/s TRGMII cascade to the external MT7530. */
+ case 5:
+ __set_bit(PHY_INTERFACE_MODE_TRGMII,
+ config->supported_interfaces);
+
+ config->mac_capabilities |= MAC_1000FD;
+ break;
+
+ /* Port 6 is the 1 Gbit/s CPU link to GDM1. */
+ case 6:
+ __set_bit(PHY_INTERFACE_MODE_INTERNAL,
+ config->supported_interfaces);
+
+ config->mac_capabilities |= MAC_1000FD;
+ break;
+ }
+}
+
static void
mt7530_mac_config(struct dsa_switch *ds, int port, unsigned int mode,
phy_interface_t interface)
@@ -3132,6 +3433,9 @@ static void mt753x_phylink_mac_link_up(struct phylink_config *config,
}
regmap_set_bits(priv->regmap, MT753X_PMCR_P(dp->index), mcr);
+
+ if (interface == PHY_INTERFACE_MODE_TRGMII)
+ mt7530_cal_interswitch_trgmii(dp);
}
static void mt753x_phylink_mac_disable_tx_lpi(struct phylink_config *config)
@@ -3374,7 +3678,8 @@ mt753x_conduit_state_change(struct dsa_switch *ds,
* interface is up. NOTE: "CPU port" can also mean an upstream DSA link.
*/
if (priv->id != ID_MT7530 && priv->id != ID_MT7621 &&
- priv->id != ID_EN7528)
+ priv->id != ID_EN7528 && priv->id != ID_EN751221 &&
+ priv->id != ID_EN751221_EXT)
return;
mask = BIT(cpu_dp->index);
@@ -3662,6 +3967,28 @@ const struct mt753x_info mt753x_table[] = {
.phy_write_c45 = mt7531_ind_c45_phy_write,
.mac_port_get_caps = en7528_mac_port_get_caps,
},
+ [ID_EN751221] = {
+ .id = ID_EN751221,
+ .pcs_ops = &mt7530_pcs_ops,
+ .sw_setup = mt7988_setup,
+ .phy_read_c22 = mt7531_ind_c22_phy_read,
+ .phy_write_c22 = mt7531_ind_c22_phy_write,
+ .phy_read_c45 = mt7531_ind_c45_phy_read,
+ .phy_write_c45 = mt7531_ind_c45_phy_write,
+ .mac_port_get_caps = en751221_mac_port_get_caps,
+ .mac_port_config = mt7530_mac_config,
+ },
+ [ID_EN751221_EXT] = {
+ .id = ID_EN751221_EXT,
+ .pcs_ops = &mt7530_pcs_ops,
+ .sw_setup = mt7530_setup,
+ .phy_read_c22 = mt7530_phy_read_c22,
+ .phy_write_c22 = mt7530_phy_write_c22,
+ .phy_read_c45 = mt7530_phy_read_c45,
+ .phy_write_c45 = mt7530_phy_write_c45,
+ .mac_port_get_caps = mt7530_mac_port_get_caps,
+ .mac_port_config = mt7530_mac_config,
+ },
};
EXPORT_SYMBOL_GPL(mt753x_table);
diff --git a/drivers/net/dsa/mt7530.h b/drivers/net/dsa/mt7530.h
index c86bc4bca29b..1a4329749c0f 100644
--- a/drivers/net/dsa/mt7530.h
+++ b/drivers/net/dsa/mt7530.h
@@ -24,6 +24,8 @@ enum mt753x_id {
ID_EN7581 = 4,
ID_AN7583 = 5,
ID_EN7528 = 6,
+ ID_EN751221 = 7,
+ ID_EN751221_EXT = 8,
};
#define NUM_TRGMII_CTRL 5
@@ -356,6 +358,9 @@ enum mt7530_vlan_port_acc_frm {
#define MT753X_PMCR_P(x) (0x3000 + ((x) * 0x100))
#define PMCR_IFG_XMIT_MASK GENMASK(19, 18)
#define PMCR_IFG_XMIT(x) FIELD_PREP(PMCR_IFG_XMIT_MASK, x)
+#define PMCR_IFG_XMIT_96 0
+#define PMCR_IFG_XMIT_RAND 1
+#define PMCR_IFG_XMIT_64 2
#define PMCR_EXT_PHY BIT(17)
#define PMCR_MAC_MODE BIT(16)
#define MT7530_FORCE_MODE BIT(15)
@@ -584,6 +589,7 @@ enum mt7531_clk_skew {
#define MT753X_MTRAP 0x7804
#define MT7530_P5_PHY0_SEL BIT(20)
#define MT7530_CHG_TRAP BIT(16)
+#define MT7530_CK_SEL BIT(15)
#define MT7530_LOOP_DET_DISABLE BIT(14)
#define MT7530_P5_MAC_SEL BIT(13)
#define MT7530_P6_DIS BIT(8)
@@ -601,6 +607,8 @@ enum mt7531_xtal_fsel {
/* Register for TOP signal control */
#define MT7530_TOP_SIG_CTRL 0x7808
#define TOP_SIG_CTRL_NORMAL (BIT(17) | BIT(16))
+/* Undocumented */
+#define TOP_SIG_CTRL_B0 BIT(0)
#define MT7531_TOP_SIG_SR 0x780c
#define PAD_DUAL_SGMII_EN BIT(1)
@@ -647,18 +655,31 @@ enum mt7531_xtal_fsel {
#define MT7530_TRGMII_RCK_RTT 0x7a04
#define DQS1_GATE BIT(31)
#define DQS0_GATE BIT(30)
+/* Undocumented */
+#define EN751221_B17 BIT(17)
#define MT7530_TRGMII_RD(x) (0x7a10 + (x) * 8)
#define BSLIP_EN BIT(31)
#define EDGE_CHK BIT(30)
+#define RD_VALUE_MASK GENMASK(23, 16)
+#define RD_ERR_MASK GENMASK(11, 8)
#define RD_TAP_MASK GENMASK(6, 0)
#define RD_TAP(x) FIELD_PREP(RD_TAP_MASK, x)
+/* Training does not try anything beyond this */
+#define TD_TAP_MAX 64
#define MT7530_TRGMII_TXCTRL 0x7a40
#define TRAIN_TXEN BIT(31)
#define TXC_INV BIT(30)
#define TX_RST BIT(28)
+#define EN7530_TRGMII_TD_CTRL(x) (0x7a50 + (x) * 8)
+#define TGMII_TD_TAP_MASK GENMASK(11, 8)
+#define TGMII_TD_PAT_MASK GENMASK(7, 0)
+/* Use a 01010101 bit pattern */
+#define TGMII_TD_PAT 0x55
+#define TGMII_TD_FAIL_PAT 0xaa
+
#define MT7530_TRGMII_TD_ODT(i) (0x7a54 + 8 * (i))
#define TD_DM_DRVP_MASK GENMASK(3, 0)
#define TD_DM_DRVP(x) FIELD_PREP(TD_DM_DRVP_MASK, x)
@@ -764,6 +785,9 @@ enum mt7531_xtal_fsel {
#define RG_LCCDS_C(x) FIELD_PREP(RG_LCCDS_C_MASK, x)
#define RG_LCDDS_PCW_NCPO_CHG BIT(3)
+#define CORE_PLL_GROUP8 0x407
+#define RG_LCDDS_SSC_EN BIT(10)
+
#define CORE_PLL_GROUP10 0x409
#define RG_LCDDS_SSC_DELTA_MASK GENMASK(11, 0)
#define RG_LCDDS_SSC_DELTA(x) FIELD_PREP(RG_LCDDS_SSC_DELTA_MASK, x)
--
2.39.5
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH net-next 5/7] net: dsa: mediatek: support MDIO switch downstream of MMIO switch
2026-09-09 14:03 ` [PATCH net-next 5/7] net: dsa: mediatek: support MDIO switch downstream of MMIO switch Caleb James DeLisle
@ 2026-09-10 14:11 ` sashiko-bot
0 siblings, 0 replies; 13+ messages in thread
From: sashiko-bot @ 2026-09-10 14:11 UTC (permalink / raw)
To: Caleb James DeLisle; +Cc: conor+dt, robh, devicetree
Thank you for your contribution! Sashiko AI review found 4 potential issue(s) to consider:
- [High] Missing dsa_unregister_switch() on the error path in mt7988_probe() leads to a Use-After-Free in the DSA core.
- [High] Race condition between mt7988_probe() and mt753x_setup() leading to double initialization of the MDIO bus.
- [High] PHY IRQ setup is skipped when mt7530_setup_mdio() is called from mt7988_probe() and the DSA tree is initially incomplete.
- [Medium] Data race on the static variable idx when allocating MDIO bus IDs in mt7530_setup_mdio().
--
commit ff8217ffff0d9218375ba11bf6c77febbfa2ceba
Author: Caleb James DeLisle <cjd@cjdns.fr>
net: dsa: mediatek: support MDIO switch downstream of MMIO switch
This commit updates mt7530_setup_mdio() so it can be called multiple
times and exports it. It then calls mt7530_setup_mdio() at the end
of mt7988_probe() to allow a downstream MDIO switch to register
when the upstream switch connects via MMIO.
> diff --git a/drivers/net/dsa/mt7530-mmio.c b/drivers/net/dsa/mt7530-mmio.c
> index cf3bdb23a2d54..29fbd0fc50d1a 100644
> --- a/drivers/net/dsa/mt7530-mmio.c
> +++ b/drivers/net/dsa/mt7530-mmio.c
> @@ -61,7 +61,12 @@ mt7988_probe(struct platform_device *pdev)
> if (IS_ERR(priv->regmap))
> return PTR_ERR(priv->regmap);
>
> - return dsa_register_switch(priv->ds);
> + ret = dsa_register_switch(priv->ds);
> +
> + if (ret)
> + return ret;
> +
> + return mt7530_setup_mdio(priv);
[Severity: High]
Does this code leak the registered DSA switch on the error path?
If mt7530_setup_mdio() fails, the probe function returns the error directly
without calling dsa_unregister_switch(priv->ds).
This can cause devres cleanup to free the priv->ds structure while the DSA
subsystem still holds pointers to it, potentially leading to a use-after-free
if the DSA core attempts to access the partially registered switch later.
> }
>
> static void mt7988_remove(struct platform_device *pdev)
[ ... ]
> diff --git a/drivers/net/dsa/mt7530.c b/drivers/net/dsa/mt7530.c
> index a165b4c8ed8d7..0c0c5358b8b80 100644
> --- a/drivers/net/dsa/mt7530.c
> +++ b/drivers/net/dsa/mt7530.c
> @@ -2414,6 +2414,10 @@ mt7530_setup_mdio(struct mt7530_priv *priv)
> static int idx;
[Severity: Medium]
Does this code have a data race on idx when allocating MDIO bus IDs?
mt7988_probe() now calls mt7530_setup_mdio() directly without holding the
dsa2_mutex.
If multiple MMIO MT7530-compatible switches are probed concurrently, they
could execute the unlocked idx++ at the same time, potentially generating
duplicate MDIO bus IDs and causing sysfs registration to fail.
> int ret = 0;
>
> + /* Already done */
> + if (priv->child_bus)
> + return 0;
[Severity: High]
Can concurrent callers bypass this check and execute the MDIO setup logic
twice?
mt7988_probe() now calls mt7530_setup_mdio() outside of any lock. If a
sibling switch completes the DSA tree concurrently, dsa_tree_setup() can
call mt753x_setup() under the dsa2_mutex, which also calls
mt7530_setup_mdio().
Both threads could simultaneously observe priv->child_bus == NULL, leading
to corrupted pointer states and duplicate MDIO bus registrations.
[Severity: High]
Will this early return permanently skip PHY IRQ setup if the DSA tree is
initially incomplete?
If mt7988_probe() calls mt7530_setup_mdio() while the DSA tree is incomplete,
mt753x_setup() will not have run yet, so priv->irq_domain will be NULL and
IRQ setup is skipped.
Later, when the tree completes and mt753x_setup() is executed, it will set up
the irq_domain and call mt7530_setup_mdio() again.
However, since priv->child_bus is already set from the earlier probe call,
this check will return 0 immediately, and mt7530_setup_mdio_irq(priv) will
never be executed for those ports.
> +
> mnp = of_get_child_by_name(np, "mdio");
>
> if (mnp && !of_device_is_available(mnp))
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260909140346.2861572-1-cjd@cjdns.fr?part=5
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH net-next 3/7] net: dsa: mediatek: add support for passthrough mode
2026-09-09 14:03 ` [PATCH net-next 3/7] net: dsa: mediatek: add support for " Caleb James DeLisle
@ 2026-09-10 14:11 ` sashiko-bot
0 siblings, 0 replies; 13+ messages in thread
From: sashiko-bot @ 2026-09-10 14:11 UTC (permalink / raw)
To: Caleb James DeLisle; +Cc: robh, conor+dt, devicetree
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
New issues:
- [High] mt753x_check_passthrough() incorrectly rejects valid device tree topologies, breaking probe for cascaded switches.
Pre-existing issues:
- [High] mt753x_conduit_state_change() misconfigures trap rules on downstream switches by using a remote switch's port index.
--
commit 1d284e3e71056b81f501b69bacab596eedd52079
Author: Caleb James DeLisle <cjd@cjdns.fr>
net: dsa: mediatek: add support for passthrough mode
This commit adds passthrough mode support for MediaTek MT7530 switches. It
allows the main switch to pass all traffic to and from a downstream switch
without altering the DSA tag, which is useful when the downstream switch is
more capable but the upstream switch is an irremovable part of the SoC.
> diff --git a/drivers/net/dsa/mt7530.c b/drivers/net/dsa/mt7530.c
> index 9a50a492e6f08..58190e13813c1 100644
> --- a/drivers/net/dsa/mt7530.c
> +++ b/drivers/net/dsa/mt7530.c
[ ... ]
> @@ -3302,7 +3351,7 @@ mt753x_conduit_state_change(struct dsa_switch *ds,
>
> /* Set the CPU port to trap frames to for MT7530. Trapped frames will be
> * forwarded to the numerically smallest CPU port whose conduit
> - * interface is up.
> + * interface is up. NOTE: "CPU port" can also mean an upstream DSA link.
> */
> if (priv->id != ID_MT7530 && priv->id != ID_MT7621 &&
[Severity: High]
This isn't a bug introduced by this patch, but while noting that the CPU
port can mean an upstream DSA link, is it possible that the trap rules
are misconfigured on downstream switches by using a remote switch's index?
When a downstream switch is probed, mt753x_conduit_state_change() retrieves
the upstream conduit's port:
struct dsa_port *cpu_dp = conduit->dsa_ptr;
It then programs the local switch's MT753X_MFC register using the remote
switch's port index:
mask = BIT(cpu_dp->index);
...
val = MT7530_CPU_EN | MT7530_CPU_PORT(__ffs(priv->active_cpu_ports));
regmap_update_bits(priv->regmap, MT753X_MFC, ... val);
If the remote root switch uses port 6 as its CPU port, but the local
downstream switch's upstream link is port 5, wouldn't this route trapped
control frames (like BPDUs or IGMP) to a non-existent or incorrect port
on the downstream switch? Should this logic perhaps be using
dsa_switch_upstream_port(ds) to reference the local port?
[ ... ]
> @@ -3397,6 +3446,76 @@ static int mt7988_setup(struct dsa_switch *ds)
> return mt7531_setup_common(ds);
> }
>
> +/* 1 if passthrough, negative if error. */
> +static int mt753x_check_passthrough(struct device *dev)
> +{
[ ... ]
> + /*
> + * A switch is considered passthrough if exactly two available
> + * ports have an "ethernet" or "link" phandle.
> + */
> + if (passthrough_ports > 2 ||
> + (passthrough_ports == 2 && enabled_ports != 2)
> + ) {
> + dev_err(dev, "Only two ports allowed in passthrough mode\n");
> + return -EINVAL;
> + }
> +
> + return passthrough_ports == 2;
> +}
[Severity: High]
Does this logic inadvertently reject valid device tree topologies for
cascaded switches?
If a standard upstream switch has exactly one CPU port and one DSA link
(totaling 2 passthrough_ports), but also has multiple user ports
configured (making enabled_ports > 2), this check evaluates to true and
returns -EINVAL.
Could this cause the probe function to completely fail for standard
cascade topologies or single switches configured with two CPU ports?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260909140346.2861572-1-cjd@cjdns.fr?part=3
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH net-next 6/7] dt-bindings: net: dsa: mediatek,mt7530: add econet,en751221
2026-09-09 14:03 ` [PATCH net-next 6/7] dt-bindings: net: dsa: mediatek,mt7530: add econet,en751221 Caleb James DeLisle
@ 2026-09-10 14:11 ` sashiko-bot
0 siblings, 0 replies; 13+ messages in thread
From: sashiko-bot @ 2026-09-10 14:11 UTC (permalink / raw)
To: Caleb James DeLisle; +Cc: conor+dt, robh, devicetree
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
- [High] `mt753x_check_passthrough` implicitly bans valid standard DSA cascade and multi-CPU configurations for all MT753x switches.
- [Medium] The binding introduces incomplete and overly restrictive validation for the new en751221 switches, incorrectly using 'passthrough' terminology for a standard cascade link.
--
commit 9f411b8347b2bd00011347f799ab43d47066ae33
Author: Caleb James DeLisle <cjd@cjdns.fr>
dt-bindings: net: dsa: mediatek,mt7530: add econet,en751221
The EcoNet EN751221 MIPS SoC integrates an MT7530 switch memory-mapped
in the SoC register space. It is similar to the econet,en7528-switch
except that ports 0..3 are 10/100 only, port 4 has a gigabit PHY, and
port 5 has no PHY, but is in some implementations connected to a
downstream MT7530 multi-chip module via a TRGMII link.
> diff --git a/Documentation/devicetree/bindings/net/dsa/mediatek,mt7530.yaml b/Documentation/devicetree/bindings/net/dsa/mediatek,mt7530.yaml
> index e29fb86934981..106c4087528d7 100644
> --- a/Documentation/devicetree/bindings/net/dsa/mediatek,mt7530.yaml
> +++ b/Documentation/devicetree/bindings/net/dsa/mediatek,mt7530.yaml
[ ... ]
> @@ -223,6 +237,20 @@ $defs:
> phy-mode:
> const: internal
>
> + mt7530-passthrough-dsa-port:
> + patternProperties:
> + "^(ethernet-)?ports$":
> + patternProperties:
> + "^(ethernet-)?port@[0-6]$":
> + if:
> + required: [ link ]
> + then:
> + properties:
> + reg:
> + const: 6
> + phy-mode:
> + const: trgmii
> +
[Severity: Medium]
Does this block incorrectly enforce that any cascade link (port with 'link'
property) must be on port 6?
It appears this restricts any cascade link to port 6, breaking cascade links
on port 5, and misapplies the passthrough terminology.
> mt7530-dsa-port:
> patternProperties:
> "^(ethernet-)?ports$":
> @@ -330,6 +358,7 @@ allOf:
> - airoha,en7581-switch
> - airoha,an7583-switch
> - econet,en7528-switch
> + - econet,en751221-switch
> then:
> $ref: "#/$defs/builtin-dsa-port"
> properties:
[Severity: Medium]
Does this block omit validation for the cascade link on port 5?
The upstream switch uses this block, which only validates `ethernet` ports.
Because its actual cascade link on port 5 uses `link`, it falls through with
no `phy-mode` validation.
> @@ -337,6 +366,16 @@ allOf:
> mediatek,mcm: false
> reset-names: false
>
> + - if:
> + properties:
> + compatible:
> + enum:
> + - econet,en751221
> + then:
> + $ref: "#/$defs/mt7530-passthrough-dsa-port"
> + required:
> + - mediatek,mcm
> +
[Severity: Medium]
Does this apply an overly restrictive definition to the downstream switch?
This block fails to reference `#/$defs/mt7530-dsa-port`, meaning its standard
CPU/user ports bypass `phy-mode` validation.
Regarding a regression introduced in a prior patch within this same patchset
(commit 1d284e3e71056b81f501b69bacab596eedd52079, "net: dsa: mediatek: add
support for passthrough mode") that does not appear to be fixed by the end
of the series:
> diff --git a/drivers/net/dsa/mt7530.c b/drivers/net/dsa/mt7530.c
> index 9a50a492e6f08..58190e13813c1 100644
> --- a/drivers/net/dsa/mt7530.c
> +++ b/drivers/net/dsa/mt7530.c
[ ... ]
> @@ -3397,6 +3446,76 @@ static int mt7988_setup(struct dsa_switch *ds)
> return mt7531_setup_common(ds);
> }
>
> +/* 1 if passthrough, negative if error. */
> +static int mt753x_check_passthrough(struct device *dev)
> +{
[ ... ]
> + /*
> + * A switch is considered passthrough if exactly two available
> + * ports have an "ethernet" or "link" phandle.
> + */
> + if (passthrough_ports > 2 ||
> + (passthrough_ports == 2 && enabled_ports != 2)
> + ) {
> + dev_err(dev, "Only two ports allowed in passthrough mode\n");
> + return -EINVAL;
> + }
> +
> + return passthrough_ports == 2;
> +}
[Severity: High]
Does this logic implicitly ban valid standard DSA cascade and multi-CPU
configurations for all MT753x switches?
This block increments `passthrough_ports` for any port with `ethernet` or
`link` phandles. It incorrectly restricts any switch with exactly two
CPU/cascade ports to strictly having zero user ports, breaking standard
cascade setups.
[ ... ]
> @@ -3529,8 +3648,12 @@ EXPORT_SYMBOL_GPL(mt753x_table);
> int
> mt7530_probe_common(struct mt7530_priv *priv)
> {
> + int passthrough = mt753x_check_passthrough(priv->dev);
> struct device *dev = priv->dev;
>
> + if (passthrough < 0)
> + return passthrough;
> +
[Severity: High]
Does this unconditionally evaluate the faulty passthrough logic for all MT753x
switches during probe?
Any switch with exactly 2 CPU/cascade ports and at least 1 user port will fail
driver probe with `-EINVAL`, breaking networking functionality across the
driver.
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260909140346.2861572-1-cjd@cjdns.fr?part=6
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH net-next 7/7] net: dsa: mediatek: support EN751221 switch
2026-09-09 14:03 ` [PATCH net-next 7/7] net: dsa: mediatek: support EN751221 switch Caleb James DeLisle
@ 2026-09-10 14:11 ` sashiko-bot
2026-09-12 0:08 ` Jakub Kicinski
1 sibling, 0 replies; 13+ messages in thread
From: sashiko-bot @ 2026-09-10 14:11 UTC (permalink / raw)
To: Caleb James DeLisle; +Cc: robh, conor+dt, devicetree
Thank you for your contribution! Sashiko AI review found 5 potential issue(s) to consider:
- [High] Missing MDIO bus locking when `child_bus` is used in `core_write()` and `core_rmw()`.
- [High] TRGMII calibration races with the SoC switch's phylink state machine, leading to concurrent modification of the SoC switch's PMCR register.
- [Medium] Incorrect restoration array used for 'ondie' switch TRGMII calibration.
- [Medium] Ignored parameters and out-of-bounds drive strength values in TRGMII TX drive setup.
- [Low] Unused parameters in `en751221_trgmii_cal_ok`.
--
commit f83ec08496a229bd3e0f1b5361ff644674d8d493
Author: Caleb James DeLisle <cjd@cjdns.fr>
Subject: net: dsa: mediatek: support EN751221 switch
Adds support for the on-die and MCM switches on the EcoNet EN751221, along
with TRGMII link calibration between them.
> --- a/drivers/net/dsa/mt7530.c
> +++ b/drivers/net/dsa/mt7530.c
[ ... ]
> @@ -466,6 +476,251 @@ mt7531_pll_setup(struct mt7530_priv *priv)
> +static bool
> +en751221_trgmii_cal_ok(struct mt7530_priv *rx, u32 reg, int chan, int i)
> +{
[Severity: Low]
Are the chan and i parameters needed here? They appear to be unused within
the function body.
> + u32 val = 0;
> +
> + regmap_read(rx->regmap, reg, &val);
[ ... ]
> +static void
> +en751221_set_tx_drive(struct mt7530_priv *priv, u8 drvp, u8 drvn, u8 clk_drvp,
> + u8 clk_drvn)
> +{
> + int channel;
> +
> + /* Tx driving for TRGMII path on SoC */
> + for (channel = 0; channel < NUM_TRGMII_CTRL; channel++)
> + regmap_write(priv->regmap, MT7530_TRGMII_TD_ODT(channel),
> + TD_DM_DRVP(drvp) | TD_DM_DRVN(drvn));
> +
> + /* Undocumented 6th channel, probably drive strength for clock line. */
> + regmap_write(priv->regmap, MT7530_TRGMII_TD_ODT(5), TD_DM_DRVP(drvp) |
> + TD_DM_DRVN(drvn));
> +}
[Severity: Medium]
Should this be using the clk_drvp and clk_drvn parameters instead of drvp
and drvn? It looks like the intended clock drive parameters are being ignored
completely here.
[ ... ]
> +static void
> +en751221_trgmii_pair_setup(struct mt7530_priv *ext, int ext_port,
> + struct mt7530_priv *ondie, int ondie_port)
> +{
[ ... ]
> + /* BOTH: Put interfaces in a downed state */
> + mcr_down = PMCR_IFG_XMIT(PMCR_IFG_XMIT_64) | PMCR_MAC_MODE |
> + MT7530_FORCE_MODE | PMCR_MAC_RX_EN | PMCR_BACKOFF_EN |
> + PMCR_BACKPR_EN | PMCR_FORCE_SPEED_1000 | PMCR_FORCE_FDX;
> + regmap_write(ondie->regmap, MT753X_PMCR_P(ondie_port), mcr_down);
> + regmap_write(ext->regmap, MT753X_PMCR_P(ext_port), mcr_down);
[Severity: High]
Is it safe to modify the SoC switch's PMCR register directly from the MCM
switch's phylink execution context?
The SoC switch has its own phylink state machine. If it concurrently runs
mt753x_phylink_mac_link_up(), could it result in a data race that corrupts
the PMCR register and breaks calibration assumptions?
[ ... ]
> + /* BOTH: Set TX drive strength, MCM uses more */
> + en751221_set_tx_drive(ondie, 8, 8, 7, 7);
> + en751221_set_tx_drive(ext, 11, 11, 16, 16);
[Severity: Medium]
Does the value 16 fit in this hardware field?
The caller is passing 16 for clk_drvp and clk_drvn, which appear to
overflow the 4-bit fields defined by TD_DM_DRVP_MASK and TD_DM_DRVN_MASK.
[ ... ]
> + /* MCM: Spread spectrum clock*/
> + core_clear(ext, CORE_PLL_GROUP8, RG_LCDDS_SSC_EN);
[Severity: High]
Could this call to core_clear() corrupt the MDIO bus during indirect MMD
accesses?
core_clear() relies on mt7530_mutex_lock(priv). If the MMIO-based switch is
using priv->child_bus instead of priv->bus, mt7530_mutex_lock() will see
priv->bus is NULL and silently return without locking:
static void mt7530_mutex_lock(struct mt7530_priv *priv)
{
if (priv->bus)
mutex_lock_nested(&priv->bus->mdio_lock, ...);
}
Would this leave the child_bus completely unlocked during the sequence
of bus->write calls required for indirect MMD access, leading to data
corruption on the MDIO bus?
[ ... ]
> + /* BOTH: Collect and then zero every RX TAP */
> + for (channel = 0; channel < NUM_TRGMII_CTRL; channel++) {
> + reg_val = 0;
> + regmap_read(ext->regmap, MT7530_TRGMII_RD(channel), ®_val);
> + default_taps_ext[channel] = FIELD_GET(RD_TAP_MASK, reg_val);
> + regmap_clear_bits(ext->regmap, MT7530_TRGMII_RD(channel),
> + RD_TAP_MASK);
> +
> + reg_val = 0;
> + regmap_read(ondie->regmap, MT7530_TRGMII_RD(channel), ®_val);
> + default_taps_ondie[channel] = FIELD_GET(RD_TAP_MASK, reg_val);
> + regmap_clear_bits(ondie->regmap, MT7530_TRGMII_RD(channel),
> + RD_TAP_MASK);
> + }
> +
> + en751221_trgmii_calibrate_direction(ondie, ext, default_taps_ext);
> + en751221_trgmii_calibrate_direction(ext, ondie, default_taps_ext);
[Severity: Medium]
Should this second call pass default_taps_ondie instead of default_taps_ext?
If the calibration for the ondie receiver fails, it looks like it will fall
back to the taps collected from the ext switch rather than its own, which
might lead to a broken or unstable link.
> +
> + dev_info(ondie->dev, "TRGMII inter-switch link initialized\n");
> +}
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260909140346.2861572-1-cjd@cjdns.fr?part=7
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH net-next 7/7] net: dsa: mediatek: support EN751221 switch
2026-09-09 14:03 ` [PATCH net-next 7/7] net: dsa: mediatek: support EN751221 switch Caleb James DeLisle
2026-09-10 14:11 ` sashiko-bot
@ 2026-09-12 0:08 ` Jakub Kicinski
1 sibling, 0 replies; 13+ messages in thread
From: Jakub Kicinski @ 2026-09-12 0:08 UTC (permalink / raw)
To: Caleb James DeLisle
Cc: netdev, andrew, olteanv, davem, edumazet, pabeni, robh, krzk+dt,
conor+dt, matthias.bgg, angelogioacchino.delregno, chester.a.unal,
daniel, linux, arinc.unal, Landen.Chao, dqfext, sean.wang,
devicetree, linux-kernel, linux-arm-kernel, linux-mediatek,
naseefkm, b.larsson
On Wed, 9 Sep 2026 14:03:46 +0000 Caleb James DeLisle wrote:
> The EcoNet EN751221 has either one, or two, onboard MT7530 switches.
> Every implementation of this SoC has one switch on die with the CPU,
> but some chips - notably those with a "G" in the name, have a second
> MT7530 as an MCM module.
>
> The on-die MT7530 has 4 FE ports and 1 GE port. The MCM switch has all
> gigabit ports.
>
> The MCM switch connects to the SoC switch via a TRGMII link from port
> 5 on the SoC switch to port 6 on the MCM switch. This link undergoes
> calibration on startup.
>
> All known devices with the MCM present do not make any use of the ports
> on the on-die switch, it is put into "passthrough" mode in which all
> traffic is shuttled between port 6 and port 5 without alteration of the
> DSA tags.
>
> Add support for both the on-die and the MCM switch, and calibration of
> the TRGMII link between them.
../drivers/net/dsa/mt7530.c: In function ‘en751221_trgmii_pair_setup’:
../drivers/net/dsa/mt7530.c:593:12: warning: variable ‘default_taps_ondie’ set but not used [-Wunused-but-set-variable=]
593 | u8 default_taps_ondie[NUM_TRGMII_CTRL];
| ^~~~~~~~~~~~~~~~~~
--
pw-bot: cr
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2026-09-12 0:08 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-09 14:03 [PATCH net-next 0/7] net: dsa: mt7530: support EcoNet EN751221 Caleb James DeLisle
2026-09-09 14:03 ` [PATCH net-next 1/7] net: dsa: mt7530: get ctrl phy addr using a function Caleb James DeLisle
2026-09-09 14:03 ` [PATCH net-next 2/7] dt-bindings: net: dsa: mediatek,mt7530: add passthrough mode Caleb James DeLisle
2026-09-09 14:03 ` [PATCH net-next 3/7] net: dsa: mediatek: add support for " Caleb James DeLisle
2026-09-10 14:11 ` sashiko-bot
2026-09-09 14:03 ` [PATCH net-next 4/7] net: dsa: mediatek: support PLL setup on MMIO MT7530 Caleb James DeLisle
2026-09-09 14:03 ` [PATCH net-next 5/7] net: dsa: mediatek: support MDIO switch downstream of MMIO switch Caleb James DeLisle
2026-09-10 14:11 ` sashiko-bot
2026-09-09 14:03 ` [PATCH net-next 6/7] dt-bindings: net: dsa: mediatek,mt7530: add econet,en751221 Caleb James DeLisle
2026-09-10 14:11 ` sashiko-bot
2026-09-09 14:03 ` [PATCH net-next 7/7] net: dsa: mediatek: support EN751221 switch Caleb James DeLisle
2026-09-10 14:11 ` sashiko-bot
2026-09-12 0:08 ` Jakub Kicinski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).