Message ID | 20211215034128.18199-1-luizluca@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | a5dba0f207e59dfe7a985e52ca4ce2ca9a33750a |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] net: dsa: rtl8365mb: add GMII as user port mode | expand |
Hello: This patch was applied to netdev/net-next.git (master) by David S. Miller <davem@davemloft.net>: On Wed, 15 Dec 2021 00:41:28 -0300 you wrote: > From: Luiz Angelo Daros de Luca <luizluca@gmail.com> > > Recent net-next fails to initialize ports with: > > realtek-smi switch: phy mode gmii is unsupported on port 0 > realtek-smi switch lan5 (uninitialized): validation of gmii with > support 0000000,00000000,000062ef and advertisement > 0000000,00000000,000062ef failed: -22 > realtek-smi switch lan5 (uninitialized): failed to connect to PHY: > -EINVAL > realtek-smi switch lan5 (uninitialized): error -22 setting up PHY > for tree 1, switch 0, port 0 > > [...] Here is the summary with links: - [net-next] net: dsa: rtl8365mb: add GMII as user port mode https://git.kernel.org/netdev/net-next/c/a5dba0f207e5 You are awesome, thank you!
diff --git a/drivers/net/dsa/rtl8365mb.c b/drivers/net/dsa/rtl8365mb.c index 2ac68c867636..3b729544798b 100644 --- a/drivers/net/dsa/rtl8365mb.c +++ b/drivers/net/dsa/rtl8365mb.c @@ -900,7 +900,8 @@ static bool rtl8365mb_phy_mode_supported(struct dsa_switch *ds, int port, { if (dsa_is_user_port(ds, port) && (interface == PHY_INTERFACE_MODE_NA || - interface == PHY_INTERFACE_MODE_INTERNAL)) + interface == PHY_INTERFACE_MODE_INTERNAL || + interface == PHY_INTERFACE_MODE_GMII)) /* Internal PHY */ return true; else if (dsa_is_cpu_port(ds, port) &&