All of lore.kernel.org
 help / color / mirror / Atom feed
From: arinc9.unal@gmail.com
To: Sean Wang <sean.wang@mediatek.com>,
	Landen Chao <Landen.Chao@mediatek.com>,
	DENG Qingfang <dqfext@gmail.com>,
	Daniel Golle <daniel@makrotopia.org>,
	Andrew Lunn <andrew@lunn.ch>,
	Florian Fainelli <f.fainelli@gmail.com>,
	Vladimir Oltean <olteanv@gmail.com>,
	"David S. Miller" <davem@davemloft.net>,
	Eric Dumazet <edumazet@google.com>,
	Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
	Matthias Brugger <matthias.bgg@gmail.com>,
	AngeloGioacchino Del Regno
	<angelogioacchino.delregno@collabora.com>,
	Russell King <linux@armlinux.org.uk>
Cc: mithat.guner@xeront.com, "Richard van Schagen" <vschagen@cs.com>,
	linux-kernel@vger.kernel.org,
	"Richard van Schagen" <richard@routerhints.com>,
	"Arınç ÜNAL" <arinc.unal@arinc9.com>,
	linux-mediatek@lists.infradead.org,
	"Bartel Eerdekens" <bartel.eerdekens@constell8.be>,
	netdev@vger.kernel.org, erkin.bozoglu@xeront.com,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH net-next 04/30] net: dsa: mt7530: improve comments regarding port 5 and 6
Date: Mon, 22 May 2023 15:15:06 +0300	[thread overview]
Message-ID: <20230522121532.86610-5-arinc.unal@arinc9.com> (raw)
In-Reply-To: <20230522121532.86610-1-arinc.unal@arinc9.com>

From: Arınç ÜNAL <arinc.unal@arinc9.com>

There's no logic to numerically order the CPU ports. State the port number
and its capability of being used as a CPU port instead.

Remove the irrelevant PHY muxing information from
mt7530_mac_port_get_caps(). Explain the supported MII modes instead.

Remove the out of place PHY muxing information from
mt753x_phylink_mac_config(). The function is for both the MT7530 and MT7531
switches but there's no PHY muxing on MT7531.

These comments were gradually introduced with the commits below.
ca366d6c889b ("net: dsa: mt7530: Convert to PHYLINK API")
38f790a80560 ("net: dsa: mt7530: Add support for port 5")
88bdef8be9f6 ("net: dsa: mt7530: Extend device data ready for adding a new
hardware")
c288575f7810 ("net: dsa: mt7530: Add the support of MT7531 switch")

Signed-off-by: Arınç ÜNAL <arinc.unal@arinc9.com>
Acked-by: Daniel Golle <daniel@makrotopia.org>
---
 drivers/net/dsa/mt7530.c | 19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

diff --git a/drivers/net/dsa/mt7530.c b/drivers/net/dsa/mt7530.c
index 024b853f9558..b28d66a7c0b2 100644
--- a/drivers/net/dsa/mt7530.c
+++ b/drivers/net/dsa/mt7530.c
@@ -2499,7 +2499,9 @@ static void mt7530_mac_port_get_caps(struct dsa_switch *ds, int port,
 			  config->supported_interfaces);
 		break;
 
-	case 5: /* 2nd cpu port with phy of port 0 or 4 / external phy */
+	case 5: /* Port 5 which can be used as a CPU port supports rgmii with
+		 * delays, mii, and gmii.
+		 */
 		phy_interface_set_rgmii(config->supported_interfaces);
 		__set_bit(PHY_INTERFACE_MODE_MII,
 			  config->supported_interfaces);
@@ -2507,7 +2509,9 @@ static void mt7530_mac_port_get_caps(struct dsa_switch *ds, int port,
 			  config->supported_interfaces);
 		break;
 
-	case 6: /* 1st cpu port */
+	case 6: /* Port 6 which can be used as a CPU port supports rgmii and
+		 * trgmii.
+		 */
 		__set_bit(PHY_INTERFACE_MODE_RGMII,
 			  config->supported_interfaces);
 		__set_bit(PHY_INTERFACE_MODE_TRGMII,
@@ -2527,14 +2531,17 @@ static void mt7531_mac_port_get_caps(struct dsa_switch *ds, int port,
 			  config->supported_interfaces);
 		break;
 
-	case 5: /* 2nd cpu port supports either rgmii or sgmii/8023z */
+	case 5: /* Port 5 which can be used as a CPU port supports rgmii with
+		 * delays on MT7531BE, sgmii/802.3z on MT7531AE.
+		 */
 		if (!priv->p5_sgmii) {
 			phy_interface_set_rgmii(config->supported_interfaces);
 			break;
 		}
 		fallthrough;
 
-	case 6: /* 1st cpu port supports sgmii/8023z only */
+	case 6: /* Port 6 which can be used as a CPU port supports sgmii/802.3z.
+		 */
 		__set_bit(PHY_INTERFACE_MODE_SGMII,
 			  config->supported_interfaces);
 		__set_bit(PHY_INTERFACE_MODE_1000BASEX,
@@ -2726,7 +2733,7 @@ mt753x_phylink_mac_config(struct dsa_switch *ds, int port, unsigned int mode,
 		    state->interface != PHY_INTERFACE_MODE_INTERNAL)
 			goto unsupported;
 		break;
-	case 5: /* 2nd cpu port with phy of port 0 or 4 / external phy */
+	case 5: /* Port 5, can be used as a CPU port. */
 		if (priv->p5_interface == state->interface)
 			break;
 
@@ -2736,7 +2743,7 @@ mt753x_phylink_mac_config(struct dsa_switch *ds, int port, unsigned int mode,
 		if (priv->p5_intf_sel != P5_DISABLED)
 			priv->p5_interface = state->interface;
 		break;
-	case 6: /* 1st cpu port */
+	case 6: /* Port 6, can be used as a CPU port. */
 		if (priv->p6_interface == state->interface)
 			break;
 
-- 
2.39.2



WARNING: multiple messages have this Message-ID (diff)
From: arinc9.unal@gmail.com
To: Sean Wang <sean.wang@mediatek.com>,
	Landen Chao <Landen.Chao@mediatek.com>,
	DENG Qingfang <dqfext@gmail.com>,
	Daniel Golle <daniel@makrotopia.org>,
	Andrew Lunn <andrew@lunn.ch>,
	Florian Fainelli <f.fainelli@gmail.com>,
	Vladimir Oltean <olteanv@gmail.com>,
	"David S. Miller" <davem@davemloft.net>,
	Eric Dumazet <edumazet@google.com>,
	Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
	Matthias Brugger <matthias.bgg@gmail.com>,
	AngeloGioacchino Del Regno
	<angelogioacchino.delregno@collabora.com>,
	Russell King <linux@armlinux.org.uk>
Cc: "Arınç ÜNAL" <arinc.unal@arinc9.com>,
	"Richard van Schagen" <richard@routerhints.com>,
	"Richard van Schagen" <vschagen@cs.com>,
	"Frank Wunderlich" <frank-w@public-files.de>,
	"Bartel Eerdekens" <bartel.eerdekens@constell8.be>,
	erkin.bozoglu@xeront.com, mithat.guner@xeront.com,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-mediatek@lists.infradead.org
Subject: [PATCH net-next 04/30] net: dsa: mt7530: improve comments regarding port 5 and 6
Date: Mon, 22 May 2023 15:15:06 +0300	[thread overview]
Message-ID: <20230522121532.86610-5-arinc.unal@arinc9.com> (raw)
In-Reply-To: <20230522121532.86610-1-arinc.unal@arinc9.com>

From: Arınç ÜNAL <arinc.unal@arinc9.com>

There's no logic to numerically order the CPU ports. State the port number
and its capability of being used as a CPU port instead.

Remove the irrelevant PHY muxing information from
mt7530_mac_port_get_caps(). Explain the supported MII modes instead.

Remove the out of place PHY muxing information from
mt753x_phylink_mac_config(). The function is for both the MT7530 and MT7531
switches but there's no PHY muxing on MT7531.

These comments were gradually introduced with the commits below.
ca366d6c889b ("net: dsa: mt7530: Convert to PHYLINK API")
38f790a80560 ("net: dsa: mt7530: Add support for port 5")
88bdef8be9f6 ("net: dsa: mt7530: Extend device data ready for adding a new
hardware")
c288575f7810 ("net: dsa: mt7530: Add the support of MT7531 switch")

Signed-off-by: Arınç ÜNAL <arinc.unal@arinc9.com>
Acked-by: Daniel Golle <daniel@makrotopia.org>
---
 drivers/net/dsa/mt7530.c | 19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

diff --git a/drivers/net/dsa/mt7530.c b/drivers/net/dsa/mt7530.c
index 024b853f9558..b28d66a7c0b2 100644
--- a/drivers/net/dsa/mt7530.c
+++ b/drivers/net/dsa/mt7530.c
@@ -2499,7 +2499,9 @@ static void mt7530_mac_port_get_caps(struct dsa_switch *ds, int port,
 			  config->supported_interfaces);
 		break;
 
-	case 5: /* 2nd cpu port with phy of port 0 or 4 / external phy */
+	case 5: /* Port 5 which can be used as a CPU port supports rgmii with
+		 * delays, mii, and gmii.
+		 */
 		phy_interface_set_rgmii(config->supported_interfaces);
 		__set_bit(PHY_INTERFACE_MODE_MII,
 			  config->supported_interfaces);
@@ -2507,7 +2509,9 @@ static void mt7530_mac_port_get_caps(struct dsa_switch *ds, int port,
 			  config->supported_interfaces);
 		break;
 
-	case 6: /* 1st cpu port */
+	case 6: /* Port 6 which can be used as a CPU port supports rgmii and
+		 * trgmii.
+		 */
 		__set_bit(PHY_INTERFACE_MODE_RGMII,
 			  config->supported_interfaces);
 		__set_bit(PHY_INTERFACE_MODE_TRGMII,
@@ -2527,14 +2531,17 @@ static void mt7531_mac_port_get_caps(struct dsa_switch *ds, int port,
 			  config->supported_interfaces);
 		break;
 
-	case 5: /* 2nd cpu port supports either rgmii or sgmii/8023z */
+	case 5: /* Port 5 which can be used as a CPU port supports rgmii with
+		 * delays on MT7531BE, sgmii/802.3z on MT7531AE.
+		 */
 		if (!priv->p5_sgmii) {
 			phy_interface_set_rgmii(config->supported_interfaces);
 			break;
 		}
 		fallthrough;
 
-	case 6: /* 1st cpu port supports sgmii/8023z only */
+	case 6: /* Port 6 which can be used as a CPU port supports sgmii/802.3z.
+		 */
 		__set_bit(PHY_INTERFACE_MODE_SGMII,
 			  config->supported_interfaces);
 		__set_bit(PHY_INTERFACE_MODE_1000BASEX,
@@ -2726,7 +2733,7 @@ mt753x_phylink_mac_config(struct dsa_switch *ds, int port, unsigned int mode,
 		    state->interface != PHY_INTERFACE_MODE_INTERNAL)
 			goto unsupported;
 		break;
-	case 5: /* 2nd cpu port with phy of port 0 or 4 / external phy */
+	case 5: /* Port 5, can be used as a CPU port. */
 		if (priv->p5_interface == state->interface)
 			break;
 
@@ -2736,7 +2743,7 @@ mt753x_phylink_mac_config(struct dsa_switch *ds, int port, unsigned int mode,
 		if (priv->p5_intf_sel != P5_DISABLED)
 			priv->p5_interface = state->interface;
 		break;
-	case 6: /* 1st cpu port */
+	case 6: /* Port 6, can be used as a CPU port. */
 		if (priv->p6_interface == state->interface)
 			break;
 
-- 
2.39.2


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

WARNING: multiple messages have this Message-ID (diff)
From: arinc9.unal@gmail.com
To: Sean Wang <sean.wang@mediatek.com>,
	Landen Chao <Landen.Chao@mediatek.com>,
	DENG Qingfang <dqfext@gmail.com>,
	Daniel Golle <daniel@makrotopia.org>,
	Andrew Lunn <andrew@lunn.ch>,
	Florian Fainelli <f.fainelli@gmail.com>,
	Vladimir Oltean <olteanv@gmail.com>,
	"David S. Miller" <davem@davemloft.net>,
	Eric Dumazet <edumazet@google.com>,
	Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
	Matthias Brugger <matthias.bgg@gmail.com>,
	AngeloGioacchino Del Regno 
	<angelogioacchino.delregno@collabora.com>,
	Russell King <linux@armlinux.org.uk>
Cc: "Arınç ÜNAL" <arinc.unal@arinc9.com>,
	"Richard van Schagen" <richard@routerhints.com>,
	"Richard van Schagen" <vschagen@cs.com>,
	"Frank Wunderlich" <frank-w@public-files.de>,
	"Bartel Eerdekens" <bartel.eerdekens@constell8.be>,
	erkin.bozoglu@xeront.com, mithat.guner@xeront.com,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-mediatek@lists.infradead.org
Subject: [PATCH net-next 04/30] net: dsa: mt7530: improve comments regarding port 5 and 6
Date: Mon, 22 May 2023 15:15:06 +0300	[thread overview]
Message-ID: <20230522121532.86610-5-arinc.unal@arinc9.com> (raw)
In-Reply-To: <20230522121532.86610-1-arinc.unal@arinc9.com>

From: Arınç ÜNAL <arinc.unal@arinc9.com>

There's no logic to numerically order the CPU ports. State the port number
and its capability of being used as a CPU port instead.

Remove the irrelevant PHY muxing information from
mt7530_mac_port_get_caps(). Explain the supported MII modes instead.

Remove the out of place PHY muxing information from
mt753x_phylink_mac_config(). The function is for both the MT7530 and MT7531
switches but there's no PHY muxing on MT7531.

These comments were gradually introduced with the commits below.
ca366d6c889b ("net: dsa: mt7530: Convert to PHYLINK API")
38f790a80560 ("net: dsa: mt7530: Add support for port 5")
88bdef8be9f6 ("net: dsa: mt7530: Extend device data ready for adding a new
hardware")
c288575f7810 ("net: dsa: mt7530: Add the support of MT7531 switch")

Signed-off-by: Arınç ÜNAL <arinc.unal@arinc9.com>
Acked-by: Daniel Golle <daniel@makrotopia.org>
---
 drivers/net/dsa/mt7530.c | 19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

diff --git a/drivers/net/dsa/mt7530.c b/drivers/net/dsa/mt7530.c
index 024b853f9558..b28d66a7c0b2 100644
--- a/drivers/net/dsa/mt7530.c
+++ b/drivers/net/dsa/mt7530.c
@@ -2499,7 +2499,9 @@ static void mt7530_mac_port_get_caps(struct dsa_switch *ds, int port,
 			  config->supported_interfaces);
 		break;
 
-	case 5: /* 2nd cpu port with phy of port 0 or 4 / external phy */
+	case 5: /* Port 5 which can be used as a CPU port supports rgmii with
+		 * delays, mii, and gmii.
+		 */
 		phy_interface_set_rgmii(config->supported_interfaces);
 		__set_bit(PHY_INTERFACE_MODE_MII,
 			  config->supported_interfaces);
@@ -2507,7 +2509,9 @@ static void mt7530_mac_port_get_caps(struct dsa_switch *ds, int port,
 			  config->supported_interfaces);
 		break;
 
-	case 6: /* 1st cpu port */
+	case 6: /* Port 6 which can be used as a CPU port supports rgmii and
+		 * trgmii.
+		 */
 		__set_bit(PHY_INTERFACE_MODE_RGMII,
 			  config->supported_interfaces);
 		__set_bit(PHY_INTERFACE_MODE_TRGMII,
@@ -2527,14 +2531,17 @@ static void mt7531_mac_port_get_caps(struct dsa_switch *ds, int port,
 			  config->supported_interfaces);
 		break;
 
-	case 5: /* 2nd cpu port supports either rgmii or sgmii/8023z */
+	case 5: /* Port 5 which can be used as a CPU port supports rgmii with
+		 * delays on MT7531BE, sgmii/802.3z on MT7531AE.
+		 */
 		if (!priv->p5_sgmii) {
 			phy_interface_set_rgmii(config->supported_interfaces);
 			break;
 		}
 		fallthrough;
 
-	case 6: /* 1st cpu port supports sgmii/8023z only */
+	case 6: /* Port 6 which can be used as a CPU port supports sgmii/802.3z.
+		 */
 		__set_bit(PHY_INTERFACE_MODE_SGMII,
 			  config->supported_interfaces);
 		__set_bit(PHY_INTERFACE_MODE_1000BASEX,
@@ -2726,7 +2733,7 @@ mt753x_phylink_mac_config(struct dsa_switch *ds, int port, unsigned int mode,
 		    state->interface != PHY_INTERFACE_MODE_INTERNAL)
 			goto unsupported;
 		break;
-	case 5: /* 2nd cpu port with phy of port 0 or 4 / external phy */
+	case 5: /* Port 5, can be used as a CPU port. */
 		if (priv->p5_interface == state->interface)
 			break;
 
@@ -2736,7 +2743,7 @@ mt753x_phylink_mac_config(struct dsa_switch *ds, int port, unsigned int mode,
 		if (priv->p5_intf_sel != P5_DISABLED)
 			priv->p5_interface = state->interface;
 		break;
-	case 6: /* 1st cpu port */
+	case 6: /* Port 6, can be used as a CPU port. */
 		if (priv->p6_interface == state->interface)
 			break;
 
-- 
2.39.2


  parent reply	other threads:[~2023-05-22 12:16 UTC|newest]

Thread overview: 355+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-22 12:15 [PATCH net-next 00/30] net: dsa: mt7530: improve, trap BPDU & LLDP, and prefer CPU port arinc9.unal
2023-05-22 12:15 ` arinc9.unal
2023-05-22 12:15 ` arinc9.unal
2023-05-22 12:15 ` [PATCH net-next 01/30] net: dsa: mt7530: add missing @p5_interface to mt7530_priv description arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-23 23:29   ` Andrew Lunn
2023-05-23 23:29     ` Andrew Lunn
2023-05-23 23:29     ` Andrew Lunn
2023-05-22 12:15 ` [PATCH net-next 02/30] net: dsa: mt7530: use p5_interface_select as data type for p5_intf_sel arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-23 23:31   ` Andrew Lunn
2023-05-23 23:31     ` Andrew Lunn
2023-05-23 23:31     ` Andrew Lunn
2023-05-24  7:41     ` Arınç ÜNAL
2023-05-24  7:41       ` Arınç ÜNAL
2023-05-24  7:41       ` Arınç ÜNAL
2023-05-22 12:15 ` [PATCH net-next 03/30] net: dsa: mt7530: properly support MT7531AE and MT7531BE arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-24 14:48   ` Vladimir Oltean
2023-05-24 14:48     ` Vladimir Oltean
2023-05-24 14:48     ` Vladimir Oltean
2023-05-25  6:00     ` Arınç ÜNAL
2023-05-25  6:00       ` Arınç ÜNAL
2023-05-25  6:00       ` Arınç ÜNAL
2023-05-22 12:15 ` arinc9.unal [this message]
2023-05-22 12:15   ` [PATCH net-next 04/30] net: dsa: mt7530: improve comments regarding port 5 and 6 arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-23 23:35   ` Andrew Lunn
2023-05-23 23:35     ` Andrew Lunn
2023-05-23 23:35     ` Andrew Lunn
2023-05-24 14:49   ` Vladimir Oltean
2023-05-24 14:49     ` Vladimir Oltean
2023-05-24 14:49     ` Vladimir Oltean
2023-05-22 12:15 ` [PATCH net-next 05/30] net: dsa: mt7530: read XTAL value from correct register arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-23 23:37   ` Andrew Lunn
2023-05-23 23:37     ` Andrew Lunn
2023-05-23 23:37     ` Andrew Lunn
2023-05-24 16:57   ` Vladimir Oltean
2023-05-24 16:57     ` Vladimir Oltean
2023-05-24 16:57     ` Vladimir Oltean
2023-05-25  6:20     ` Arınç ÜNAL
2023-05-25  6:20       ` Arınç ÜNAL
2023-05-25  6:20       ` Arınç ÜNAL
2023-05-25 13:31       ` Vladimir Oltean
2023-05-25 13:31         ` Vladimir Oltean
2023-05-25 13:31         ` Vladimir Oltean
2023-06-04  6:34         ` Arınç ÜNAL
2023-06-04  6:34           ` Arınç ÜNAL
2023-06-04  6:34           ` Arınç ÜNAL
2023-06-04  7:11           ` Vladimir Oltean
2023-06-04  7:11             ` Vladimir Oltean
2023-06-04  7:11             ` Vladimir Oltean
2023-06-04 16:22             ` Arınç ÜNAL
2023-06-04 16:22               ` Arınç ÜNAL
2023-06-04 16:22               ` Arınç ÜNAL
2023-05-22 12:15 ` [PATCH net-next 06/30] net: dsa: mt7530: improve code path for setting up port 5 arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-24 17:35   ` Vladimir Oltean
2023-05-24 17:35     ` Vladimir Oltean
2023-05-24 17:35     ` Vladimir Oltean
2023-05-25  6:42     ` Arınç ÜNAL
2023-05-25  6:42       ` Arınç ÜNAL
2023-05-25  6:42       ` Arınç ÜNAL
2023-05-22 12:15 ` [PATCH net-next 07/30] net: dsa: mt7530: do not run mt7530_setup_port5() if port 5 is disabled arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-24 17:45   ` Vladimir Oltean
2023-05-24 17:45     ` Vladimir Oltean
2023-05-24 17:45     ` Vladimir Oltean
2023-05-22 12:15 ` [PATCH net-next 08/30] net: dsa: mt7530: change p{5,6}_interface to p{5,6}_configured arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-24 17:51   ` Vladimir Oltean
2023-05-24 17:51     ` Vladimir Oltean
2023-05-24 17:51     ` Vladimir Oltean
2023-05-25  6:49     ` Arınç ÜNAL
2023-05-25  6:49       ` Arınç ÜNAL
2023-05-25  6:49       ` Arınç ÜNAL
2023-05-26 13:01       ` Vladimir Oltean
2023-05-26 13:01         ` Vladimir Oltean
2023-05-26 13:01         ` Vladimir Oltean
2023-06-03 12:15         ` Arınç ÜNAL
2023-06-03 12:15           ` Arınç ÜNAL
2023-06-03 12:15           ` Arınç ÜNAL
2023-06-03 12:26           ` Russell King (Oracle)
2023-06-03 12:26             ` Russell King (Oracle)
2023-06-03 12:26             ` Russell King (Oracle)
2023-06-04 10:46             ` Arınç ÜNAL
2023-06-04 10:46               ` Arınç ÜNAL
2023-06-04 10:46               ` Arınç ÜNAL
2023-06-04 12:18               ` Russell King (Oracle)
2023-06-04 12:18                 ` Russell King (Oracle)
2023-06-04 12:18                 ` Russell King (Oracle)
2023-06-04 12:55                 ` Vladimir Oltean
2023-06-04 12:55                   ` Vladimir Oltean
2023-06-04 12:55                   ` Vladimir Oltean
2023-06-04 13:07                   ` Russell King (Oracle)
2023-06-04 13:07                     ` Russell King (Oracle)
2023-06-04 13:07                     ` Russell King (Oracle)
2023-06-04 13:14                     ` Arınç ÜNAL
2023-06-04 13:14                       ` Arınç ÜNAL
2023-06-04 13:14                       ` Arınç ÜNAL
2023-06-04 13:25                       ` Vladimir Oltean
2023-06-04 13:25                         ` Vladimir Oltean
2023-06-04 13:25                         ` Vladimir Oltean
2023-06-04 15:13                       ` Russell King (Oracle)
2023-06-04 15:13                         ` Russell King (Oracle)
2023-06-04 15:13                         ` Russell King (Oracle)
2023-06-04 16:00                         ` Russell King (Oracle)
2023-06-04 16:00                           ` Russell King (Oracle)
2023-06-04 16:00                           ` Russell King (Oracle)
2023-06-04 16:06                           ` Russell King (Oracle)
2023-06-04 16:06                             ` Russell King (Oracle)
2023-06-04 16:06                             ` Russell King (Oracle)
2023-06-04 16:14                             ` Arınç ÜNAL
2023-06-04 16:14                               ` Arınç ÜNAL
2023-06-04 16:14                               ` Arınç ÜNAL
2023-06-10 10:57                               ` Arınç ÜNAL
2023-06-10 10:57                                 ` Arınç ÜNAL
2023-06-10 17:55                                 ` Vladimir Oltean
2023-06-11  7:23                                   ` Arınç ÜNAL
2024-01-10 11:15                                     ` Arınç ÜNAL
2024-01-10 11:15                                       ` Arınç ÜNAL
2024-01-10 11:15                                       ` Arınç ÜNAL
2024-01-10 14:27                                       ` Vladimir Oltean
2024-01-10 14:27                                         ` Vladimir Oltean
2024-01-10 14:27                                         ` Vladimir Oltean
2024-01-10 17:15                                         ` Arınç ÜNAL
2024-01-10 17:15                                           ` Arınç ÜNAL
2024-01-10 17:15                                           ` Arınç ÜNAL
2024-01-10 18:05                                           ` Vladimir Oltean
2024-01-10 18:05                                             ` Vladimir Oltean
2024-01-10 18:05                                             ` Vladimir Oltean
2024-01-10 18:31                                             ` Russell King (Oracle)
2024-01-10 18:31                                               ` Russell King (Oracle)
2024-01-10 18:31                                               ` Russell King (Oracle)
2024-01-11  9:19                                               ` Vladimir Oltean
2024-01-11  9:19                                                 ` Vladimir Oltean
2024-01-11  9:19                                                 ` Vladimir Oltean
2023-06-05 14:36                         ` Arınç ÜNAL
2023-06-05 14:36                           ` Arınç ÜNAL
2023-06-05 14:36                           ` Arınç ÜNAL
2023-06-03 12:27           ` Vladimir Oltean
2023-06-03 12:27             ` Vladimir Oltean
2023-06-03 12:27             ` Vladimir Oltean
2023-05-22 12:15 ` [PATCH net-next 09/30] net: dsa: mt7530: empty default case on mt7530_setup_port5() arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-24 18:04   ` Vladimir Oltean
2023-05-24 18:04     ` Vladimir Oltean
2023-05-24 18:04     ` Vladimir Oltean
2023-05-24 18:05   ` Vladimir Oltean
2023-05-24 18:05     ` Vladimir Oltean
2023-05-24 18:05     ` Vladimir Oltean
2023-05-25  6:51     ` Arınç ÜNAL
2023-05-25  6:51       ` Arınç ÜNAL
2023-05-25  6:51       ` Arınç ÜNAL
2023-05-22 12:15 ` [PATCH net-next 10/30] net: dsa: mt7530: call port 6 setup from mt7530_mac_config() arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-24 18:08   ` Vladimir Oltean
2023-05-24 18:08     ` Vladimir Oltean
2023-05-24 18:08     ` Vladimir Oltean
2023-05-22 12:15 ` [PATCH net-next 11/30] net: dsa: mt7530: remove pad_setup function pointer arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-24 18:09   ` Vladimir Oltean
2023-05-24 18:09     ` Vladimir Oltean
2023-05-24 18:09     ` Vladimir Oltean
2023-05-22 12:15 ` [PATCH net-next 12/30] net: dsa: mt7530: move XTAL check to mt7530_setup() arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-23 23:40   ` Andrew Lunn
2023-05-23 23:40     ` Andrew Lunn
2023-05-23 23:40     ` Andrew Lunn
2023-05-24 18:15   ` Vladimir Oltean
2023-05-24 18:15     ` Vladimir Oltean
2023-05-24 18:15     ` Vladimir Oltean
2023-05-25  7:04     ` Arınç ÜNAL
2023-05-25  7:04       ` Arınç ÜNAL
2023-05-25  7:04       ` Arınç ÜNAL
2023-05-22 12:15 ` [PATCH net-next 13/30] net: dsa: mt7530: move enabling port 6 to mt7530_setup_port6() arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15 ` [PATCH net-next 14/30] net: dsa: mt7530: switch to if/else statements on mt7530_setup_port6() arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-26 13:08   ` Vladimir Oltean
2023-05-26 13:08     ` Vladimir Oltean
2023-05-26 13:08     ` Vladimir Oltean
2023-05-22 12:15 ` [PATCH net-next 15/30] net: dsa: mt7530: set TRGMII RD TAP if trgmii is being used arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-26 13:09   ` Vladimir Oltean
2023-05-26 13:09     ` Vladimir Oltean
2023-05-26 13:09     ` Vladimir Oltean
2023-05-22 12:15 ` [PATCH net-next 16/30] net: dsa: mt7530: move lowering port 5 RGMII driving to mt7530_setup() arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-26 13:17   ` Vladimir Oltean
2023-05-26 13:17     ` Vladimir Oltean
2023-05-26 13:17     ` Vladimir Oltean
2023-06-04  7:05     ` Arınç ÜNAL
2023-06-04  7:05       ` Arınç ÜNAL
2023-06-04  7:05       ` Arınç ÜNAL
2023-06-04  7:14       ` Vladimir Oltean
2023-06-04  7:14         ` Vladimir Oltean
2023-06-04  7:14         ` Vladimir Oltean
2023-05-22 12:15 ` [PATCH net-next 17/30] net: dsa: mt7530: fix port capabilities for MT7988 arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-26 13:20   ` Vladimir Oltean
2023-05-26 13:20     ` Vladimir Oltean
2023-05-26 13:20     ` Vladimir Oltean
2023-05-22 12:15 ` [PATCH net-next 18/30] net: dsa: mt7530: remove .mac_port_config for MT7988 and make it optional arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-26 13:21   ` Vladimir Oltean
2023-05-26 13:21     ` Vladimir Oltean
2023-05-26 13:21     ` Vladimir Oltean
2023-05-22 12:15 ` [PATCH net-next 19/30] net: dsa: mt7530: set interrupt register only for MT7530 arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-26 13:25   ` Vladimir Oltean
2023-05-26 13:25     ` Vladimir Oltean
2023-05-26 13:25     ` Vladimir Oltean
2023-06-04  7:18     ` Arınç ÜNAL
2023-06-04  7:18       ` Arınç ÜNAL
2023-06-04  7:18       ` Arınç ÜNAL
2023-05-22 12:15 ` [PATCH net-next 20/30] net: dsa: mt7530: properly reset MT7531 switch arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15 ` [PATCH net-next 21/30] net: dsa: mt7530: get rid of useless error returns on phylink code path arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15 ` [PATCH net-next 22/30] net: dsa: mt7530: rename p5_intf_sel and use only for MT7530 switch arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15 ` [PATCH net-next 23/30] net: dsa: mt7530: run mt7530_pll_setup() only with 40 MHz XTAL arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15 ` [PATCH net-next 24/30] net: dsa: mt7530: rename MT7530_MFC to MT753X_MFC arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-26 15:42   ` Vladimir Oltean
2023-05-26 15:42     ` Vladimir Oltean
2023-05-26 15:42     ` Vladimir Oltean
2023-05-26 15:50     ` Russell King (Oracle)
2023-05-26 15:50       ` Russell King (Oracle)
2023-05-26 15:50       ` Russell King (Oracle)
2023-06-04  8:06       ` Arınç ÜNAL
2023-06-04  8:06         ` Arınç ÜNAL
2023-06-04  8:06         ` Arınç ÜNAL
2023-06-04 13:17         ` Vladimir Oltean
2023-06-04 13:17           ` Vladimir Oltean
2023-06-04 13:17           ` Vladimir Oltean
2023-06-04 13:25           ` Arınç ÜNAL
2023-06-04 13:25             ` Arınç ÜNAL
2023-06-04 13:25             ` Arınç ÜNAL
2023-05-22 12:15 ` [PATCH net-next 25/30] net: dsa: mt7530: properly set MT7531_CPU_PMAP arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-26 15:51   ` Vladimir Oltean
2023-05-26 15:51     ` Vladimir Oltean
2023-05-26 15:51     ` Vladimir Oltean
2023-06-04  8:21     ` Arınç ÜNAL
2023-06-04  8:21       ` Arınç ÜNAL
2023-06-04  8:21       ` Arınç ÜNAL
2023-06-04 13:08       ` Vladimir Oltean
2023-06-04 13:08         ` Vladimir Oltean
2023-06-04 13:08         ` Vladimir Oltean
2023-06-04 13:33         ` Arınç ÜNAL
2023-06-04 13:33           ` Arınç ÜNAL
2023-06-04 13:33           ` Arınç ÜNAL
2023-05-22 12:15 ` [PATCH net-next 26/30] net: dsa: mt7530: properly set MT7530_CPU_PORT arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-26 16:55   ` Vladimir Oltean
2023-05-26 16:55     ` Vladimir Oltean
2023-05-26 16:55     ` Vladimir Oltean
2023-06-04  8:33     ` Arınç ÜNAL
2023-06-04  8:33       ` Arınç ÜNAL
2023-06-04  8:33       ` Arınç ÜNAL
2023-05-22 12:15 ` [PATCH net-next 27/30] net: dsa: mt7530: introduce BPDU trapping for MT7530 switch arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-26 17:02   ` Vladimir Oltean
2023-05-26 17:02     ` Vladimir Oltean
2023-05-26 17:02     ` Vladimir Oltean
2023-06-04  8:51     ` Arınç ÜNAL
2023-06-04  8:51       ` Arınç ÜNAL
2023-06-04  8:51       ` Arınç ÜNAL
2023-06-04  9:23       ` Vladimir Oltean
2023-06-04  9:23         ` Vladimir Oltean
2023-06-04  9:23         ` Vladimir Oltean
2023-06-04  9:39         ` Arınç ÜNAL
2023-06-04  9:39           ` Arınç ÜNAL
2023-06-04  9:39           ` Arınç ÜNAL
2023-06-04 12:47           ` Vladimir Oltean
2023-06-04 12:47             ` Vladimir Oltean
2023-06-04 12:47             ` Vladimir Oltean
2023-06-10  8:32             ` Arınç ÜNAL
2023-06-10  8:32               ` Arınç ÜNAL
2023-06-10 17:57               ` Vladimir Oltean
2023-05-22 12:15 ` [PATCH net-next 28/30] net: dsa: mt7530: introduce LLDP frame trapping arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15 ` [PATCH net-next 29/30] net: dsa: introduce preferred_default_local_cpu_port and use on MT7530 arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-26 17:17   ` Vladimir Oltean
2023-05-26 17:17     ` Vladimir Oltean
2023-05-26 17:17     ` Vladimir Oltean
2023-06-04 10:02     ` Arınç ÜNAL
2023-06-04 10:02       ` Arınç ÜNAL
2023-06-04 10:02       ` Arınç ÜNAL
2023-05-22 12:15 ` [PATCH net-next 30/30] MAINTAINERS: add me as maintainer of MEDIATEK SWITCH DRIVER arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-22 12:15   ` arinc9.unal
2023-05-24 14:37   ` Vladimir Oltean
2023-05-24 14:37     ` Vladimir Oltean
2023-05-24 14:37     ` Vladimir Oltean
2023-05-26 17:38   ` Vladimir Oltean
2023-05-26 17:38     ` Vladimir Oltean
2023-05-26 17:38     ` Vladimir Oltean
2023-05-22 12:25 ` [PATCH net-next 00/30] net: dsa: mt7530: improve, trap BPDU & LLDP, and prefer CPU port Andrew Lunn
2023-05-22 12:25   ` Andrew Lunn
2023-05-22 12:25   ` Andrew Lunn
2023-05-22 13:37   ` Arınç ÜNAL
2023-05-22 13:37     ` Arınç ÜNAL
2023-05-22 13:37     ` Arınç ÜNAL
2023-05-22 15:43     ` Vladimir Oltean
2023-05-22 15:43       ` Vladimir Oltean
2023-05-22 15:43       ` Vladimir Oltean
2023-05-22 14:09 ` Horatiu Vultur
2023-05-22 14:09   ` Horatiu Vultur
2023-05-22 14:09   ` Horatiu Vultur
2023-05-22 14:35   ` Arınç ÜNAL
2023-05-22 14:35     ` Arınç ÜNAL
2023-05-22 14:35     ` Arınç ÜNAL
2023-05-22 18:13   ` Russell King (Oracle)
2023-05-22 18:13     ` Russell King (Oracle)
2023-05-22 18:13     ` Russell King (Oracle)
2023-05-23  1:54     ` Jakub Kicinski
2023-05-23  1:54       ` Jakub Kicinski
2023-05-23  1:54       ` Jakub Kicinski
2023-05-26 17:47 ` Vladimir Oltean
2023-05-26 17:47   ` Vladimir Oltean
2023-05-26 17:47   ` Vladimir Oltean

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230522121532.86610-5-arinc.unal@arinc9.com \
    --to=arinc9.unal@gmail.com \
    --cc=Landen.Chao@mediatek.com \
    --cc=andrew@lunn.ch \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=arinc.unal@arinc9.com \
    --cc=bartel.eerdekens@constell8.be \
    --cc=daniel@makrotopia.org \
    --cc=davem@davemloft.net \
    --cc=dqfext@gmail.com \
    --cc=edumazet@google.com \
    --cc=erkin.bozoglu@xeront.com \
    --cc=f.fainelli@gmail.com \
    --cc=kuba@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linux@armlinux.org.uk \
    --cc=matthias.bgg@gmail.com \
    --cc=mithat.guner@xeront.com \
    --cc=netdev@vger.kernel.org \
    --cc=olteanv@gmail.com \
    --cc=pabeni@redhat.com \
    --cc=richard@routerhints.com \
    --cc=sean.wang@mediatek.com \
    --cc=vschagen@cs.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.