[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220823104343.6141-1-marex@denx.de>
Date: Tue, 23 Aug 2022 12:43:43 +0200
From: Marek Vasut <marex@...x.de>
To: netdev@...r.kernel.org
Cc: Marek Vasut <marex@...x.de>,
Arun Ramadoss <arun.ramadoss@...rochip.com>,
"David S . Miller" <davem@...emloft.net>,
Florian Fainelli <f.fainelli@...il.com>,
Vladimir Oltean <olteanv@...il.com>
Subject: [PATCH] net: dsa: microchip: Support GMII on user ports
The user ports on KSZ879x indicate they are of GMII interface type instead
of INTERNAL interface type. Add GMII into the list of supported user port
interfaces to avoid the following failure on probe:
"
ksz8795-switch spi0.0 lan1 (uninitialized): validation of gmii with support 0000000,00000000,000062cf and advertisement 0000000,00000000,000062cf failed: -EINVAL
ksz8795-switch spi0.0 lan1 (uninitialized): failed to connect to PHY: -EINVAL
ksz8795-switch spi0.0 lan1 (uninitialized): error -22 setting up PHY for tree 0, switch 0, port 0
"
Signed-off-by: Marek Vasut <marex@...x.de>
---
Cc: Arun Ramadoss <arun.ramadoss@...rochip.com>
Cc: David S. Miller <davem@...emloft.net>
Cc: Florian Fainelli <f.fainelli@...il.com>
Cc: Vladimir Oltean <olteanv@...il.com>
---
drivers/net/dsa/microchip/ksz_common.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/drivers/net/dsa/microchip/ksz_common.c b/drivers/net/dsa/microchip/ksz_common.c
index ed7d137cba994..4a77c8b0e664e 100644
--- a/drivers/net/dsa/microchip/ksz_common.c
+++ b/drivers/net/dsa/microchip/ksz_common.c
@@ -803,9 +803,12 @@ static void ksz_phylink_get_caps(struct dsa_switch *ds, int port,
if (dev->info->supports_rgmii[port])
phy_interface_set_rgmii(config->supported_interfaces);
- if (dev->info->internal_phy[port])
+ if (dev->info->internal_phy[port]) {
+ __set_bit(PHY_INTERFACE_MODE_GMII,
+ config->supported_interfaces);
__set_bit(PHY_INTERFACE_MODE_INTERNAL,
config->supported_interfaces);
+ }
if (dev->dev_ops->get_caps)
dev->dev_ops->get_caps(dev, port, config);
--
2.35.1
Powered by blists - more mailing lists