Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d57bc0fe authored by Sonic Zhang's avatar Sonic Zhang Committed by Mike Frysinger
Browse files

Blackfin: bf518f-ezbrd: fix dsa resources



On bf518-ezbrd with DSA Ethernet switch enabled, on chip MAC is
connecting to phy at address 3.  If allowing the netdevice framework to
probe both 3 phys of the switch when registering MAC phy, phy at address
1 is checked for link active status other than phy at address 3.  If
connecting a cable to port 2 and leave port 1 open, link status in phy
2 and 3 are online, while that in phy 1 is offline.  So, the phy layer
sets wrong offline status to net device on port 3.  In this case, no data
can be transferred via ethernet port 2.

Signed-off-by: default avatarSonic Zhang <sonic.zhang@analog.com>
Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
parent 874f6cfd
Loading
Loading
Loading
Loading
+8 −9
Original line number Original line Diff line number Diff line
@@ -104,24 +104,23 @@ static const unsigned short bfin_mac_peripherals[] = {


static struct bfin_phydev_platform_data bfin_phydev_data[] = {
static struct bfin_phydev_platform_data bfin_phydev_data[] = {
	{
	{
		.addr = 1,
#if defined(CONFIG_NET_DSA_KSZ8893M) || defined(CONFIG_NET_DSA_KSZ8893M_MODULE)
		.irq = IRQ_MAC_PHYINT,
	},
	{
		.addr = 2,
		.irq = IRQ_MAC_PHYINT,
	},
	{
		.addr = 3,
		.addr = 3,
#else
		.addr = 1,
#endif
		.irq = IRQ_MAC_PHYINT,
		.irq = IRQ_MAC_PHYINT,
	},
	},
};
};


static struct bfin_mii_bus_platform_data bfin_mii_bus_data = {
static struct bfin_mii_bus_platform_data bfin_mii_bus_data = {
	.phydev_number = 3,
	.phydev_number = 1,
	.phydev_data = bfin_phydev_data,
	.phydev_data = bfin_phydev_data,
	.phy_mode = PHY_INTERFACE_MODE_MII,
	.phy_mode = PHY_INTERFACE_MODE_MII,
	.mac_peripherals = bfin_mac_peripherals,
	.mac_peripherals = bfin_mac_peripherals,
#if defined(CONFIG_NET_DSA_KSZ8893M) || defined(CONFIG_NET_DSA_KSZ8893M_MODULE)
	.phy_mask = 0xfff7, /* Only probe the port phy connect to the on chip MAC */
#endif
};
};


static struct platform_device bfin_mii_bus = {
static struct platform_device bfin_mii_bus = {