From: Robert Hancock <hidden> Date: 2021-02-16 22:56:11
Updates to the Broadcom PHY driver related to use with copper SFP modules.
Changed since v3:
-fixed kerneldoc error
Changed since v2:
-Create flag for PHY on SFP module and use that rather than accessing
attached_dev directly in PHY driver
Changed since v1:
-Reversed conditional to reduce indentation
-Added missing setting of MII_BCM54XX_AUXCTL_MISC_WREN in
MII_BCM54XX_AUXCTL_SHDWSEL_MISC register
Robert Hancock (3):
net: phy: broadcom: Set proper 1000BaseX/SGMII interface mode for
BCM54616S
net: phy: Add is_on_sfp_module flag and phy_on_sfp helper
net: phy: broadcom: Do not modify LED configuration for SFP module
PHYs
drivers/net/phy/broadcom.c | 108 ++++++++++++++++++++++++++++-------
drivers/net/phy/phy_device.c | 2 +
include/linux/brcmphy.h | 4 ++
include/linux/phy.h | 11 ++++
4 files changed, 104 insertions(+), 21 deletions(-)
--
2.27.0
From: Robert Hancock <hidden> Date: 2021-02-16 22:56:13
Add a flag and helper function to indicate that a PHY device is part of
an SFP module, which is set on attach. This can be used by PHY drivers
to handle SFP-specific quirks or behavior.
Signed-off-by: Robert Hancock <redacted>
---
drivers/net/phy/phy_device.c | 2 ++
include/linux/phy.h | 11 +++++++++++
2 files changed, 13 insertions(+)
@@ -1377,6 +1377,8 @@ int phy_attach_direct(struct net_device *dev, struct phy_device *phydev,if(phydev->sfp_bus_attached)dev->sfp_bus=phydev->sfp_bus;+elseif(dev->sfp_bus)+phydev->is_on_sfp_module=true;}/* Some Ethernet drivers try to connect to a PHY device before
@@ -565,6 +566,7 @@ struct phy_device {unsignedsysfs_links:1;unsignedloopback_enabled:1;unsigneddownshifted_rate:1;+unsignedis_on_sfp_module:1;unsignedautoneg:1;/* The most recently read link state */
@@ -103,6 +103,64 @@ static int bcm54612e_config_init(struct phy_device *phydev)return0;}+staticintbcm54616s_config_init(structphy_device*phydev)+{+intrc,val;++if(phydev->interface!=PHY_INTERFACE_MODE_SGMII&&+phydev->interface!=PHY_INTERFACE_MODE_1000BASEX)+return0;++/* Ensure proper interface mode is selected. */+/* Disable RGMII mode */+val=bcm54xx_auxctl_read(phydev,MII_BCM54XX_AUXCTL_SHDWSEL_MISC);+if(val<0)+returnval;+val&=~MII_BCM54XX_AUXCTL_SHDWSEL_MISC_RGMII_EN;+val|=MII_BCM54XX_AUXCTL_MISC_WREN;+rc=bcm54xx_auxctl_write(phydev,MII_BCM54XX_AUXCTL_SHDWSEL_MISC,+val);+if(rc<0)+returnrc;++/* Select 1000BASE-X register set (primary SerDes) */+val=bcm_phy_read_shadow(phydev,BCM54XX_SHD_MODE);+if(val<0)+returnval;+val|=BCM54XX_SHD_MODE_1000BX;+rc=bcm_phy_write_shadow(phydev,BCM54XX_SHD_MODE,val);+if(rc<0)+returnrc;++/* Power down SerDes interface */+rc=phy_set_bits(phydev,MII_BMCR,BMCR_PDOWN);+if(rc<0)+returnrc;++/* Select proper interface mode */+val&=~BCM54XX_SHD_INTF_SEL_MASK;+val|=phydev->interface==PHY_INTERFACE_MODE_SGMII?+BCM54XX_SHD_INTF_SEL_SGMII:+BCM54XX_SHD_INTF_SEL_GBIC;+rc=bcm_phy_write_shadow(phydev,BCM54XX_SHD_MODE,val);+if(rc<0)+returnrc;++/* Power up SerDes interface */+rc=phy_clear_bits(phydev,MII_BMCR,BMCR_PDOWN);+if(rc<0)+returnrc;++/* Select copper register set */+val&=~BCM54XX_SHD_MODE_1000BX;+rc=bcm_phy_write_shadow(phydev,BCM54XX_SHD_MODE,val);+if(rc<0)+returnrc;++/* Power up copper interface */+returnphy_clear_bits(phydev,MII_BMCR,BMCR_PDOWN);+}+/* Needs SMDSP clock enabled via bcm54xx_phydsp_config() */staticintbcm50610_a0_workaround(structphy_device*phydev){
@@ -283,15 +341,17 @@ static int bcm54xx_config_init(struct phy_device *phydev)bcm54xx_adjust_rxrefclk(phydev);-if(BRCM_PHY_MODEL(phydev)==PHY_ID_BCM54210E){+switch(BRCM_PHY_MODEL(phydev)){+casePHY_ID_BCM54210E:err=bcm54210e_config_init(phydev);-if(err)-returnerr;-}elseif(BRCM_PHY_MODEL(phydev)==PHY_ID_BCM54612E){+break;+casePHY_ID_BCM54612E:err=bcm54612e_config_init(phydev);-if(err)-returnerr;-}elseif(BRCM_PHY_MODEL(phydev)==PHY_ID_BCM54810){+break;+casePHY_ID_BCM54616S:+err=bcm54616s_config_init(phydev);+break;+casePHY_ID_BCM54810:/* For BCM54810, we need to disable BroadR-Reach function */val=bcm_phy_read_exp(phydev,BCM54810_EXP_BROADREACH_LRE_MISC_CTL);
@@ -299,9 +359,10 @@ static int bcm54xx_config_init(struct phy_device *phydev)err=bcm_phy_write_exp(phydev,BCM54810_EXP_BROADREACH_LRE_MISC_CTL,val);-if(err<0)-returnerr;+break;}+if(err)+returnerr;bcm54xx_phydsp_config(phydev);
From: Robert Hancock <hidden> Date: 2021-02-16 22:56:22
bcm54xx_config_init was modifying the PHY LED configuration to enable link
and activity indications. However, some SFP modules (such as Bel-Fuse
SFP-1GBT-06) have no LEDs but use the LED outputs to control the SFP LOS
signal, and modifying the LED settings will cause the LOS output to
malfunction. Skip this configuration for PHYs which are bound to an SFP
bus.
Signed-off-by: Robert Hancock <redacted>
---
drivers/net/phy/broadcom.c | 24 +++++++++++++++---------
1 file changed, 15 insertions(+), 9 deletions(-)
@@ -366,18 +366,24 @@ static int bcm54xx_config_init(struct phy_device *phydev)bcm54xx_phydsp_config(phydev);-/* Encode link speed into LED1 and LED3 pair (green/amber).+/* For non-SFP setups, encode link speed into LED1 and LED3 pair+*(green/amber).*AlsoflashthesetwoLEDsonactivity.Thismeansconfiguring*themforMULTICOLORandencodinglink/activityintothem.+*Don'tdothisfordevicesonanSFPmodule,sincesomeofthese+*usetheLEDoutputstocontroltheSFPLOSsignal,andchanging+*thesesettingswillcauseLOStomalfunction.*/-val=BCM5482_SHD_LEDS1_LED1(BCM_LED_SRC_MULTICOLOR1)|-BCM5482_SHD_LEDS1_LED3(BCM_LED_SRC_MULTICOLOR1);-bcm_phy_write_shadow(phydev,BCM5482_SHD_LEDS1,val);--val=BCM_LED_MULTICOLOR_IN_PHASE|-BCM5482_SHD_LEDS1_LED1(BCM_LED_MULTICOLOR_LINK_ACT)|-BCM5482_SHD_LEDS1_LED3(BCM_LED_MULTICOLOR_LINK_ACT);-bcm_phy_write_exp(phydev,BCM_EXP_MULTICOLOR,val);+if(!phy_on_sfp(phydev)){+val=BCM5482_SHD_LEDS1_LED1(BCM_LED_SRC_MULTICOLOR1)|+BCM5482_SHD_LEDS1_LED3(BCM_LED_SRC_MULTICOLOR1);+bcm_phy_write_shadow(phydev,BCM5482_SHD_LEDS1,val);++val=BCM_LED_MULTICOLOR_IN_PHASE|+BCM5482_SHD_LEDS1_LED1(BCM_LED_MULTICOLOR_LINK_ACT)|+BCM5482_SHD_LEDS1_LED3(BCM_LED_MULTICOLOR_LINK_ACT);+bcm_phy_write_exp(phydev,BCM_EXP_MULTICOLOR,val);+}return0;}
Hello:
This series was applied to netdev/net-next.git (refs/heads/master):
On Tue, 16 Feb 2021 16:54:51 -0600 you wrote:
Updates to the Broadcom PHY driver related to use with copper SFP modules.
Changed since v3:
-fixed kerneldoc error
Changed since v2:
-Create flag for PHY on SFP module and use that rather than accessing
attached_dev directly in PHY driver
[...]
From: Andrew Lunn <andrew@lunn.ch> Date: 2021-02-17 03:59:43
On Tue, Feb 16, 2021 at 04:54:53PM -0600, Robert Hancock wrote:
quoted hunk
Add a flag and helper function to indicate that a PHY device is part of
an SFP module, which is set on attach. This can be used by PHY drivers
to handle SFP-specific quirks or behavior.
Signed-off-by: Robert Hancock <redacted>
---
drivers/net/phy/phy_device.c | 2 ++
include/linux/phy.h | 11 +++++++++++
2 files changed, 13 insertions(+)
I get lost here. It this correct?
We have setups with two PHY. The marvell10g PHY can play the role of
media converter. It converts the signal from the MAC into signals
which can be connected to an SFP cage.
And then inside the cage, we can have a copper module with a second
PHY. It is this second PHY which we need to indicate is_on_sfp_module
true.
We probably want to media convert PHYs LEDs to work, since those
possible are connected to the front panel. So this needs to be
specific to the SFP module PHY, and i'm not sure it is. Russell?
Andrew
From: Russell King - ARM Linux admin <linux@armlinux.org.uk> Date: 2021-02-17 10:36:24
On Wed, Feb 17, 2021 at 04:58:26AM +0100, Andrew Lunn wrote:
On Tue, Feb 16, 2021 at 04:54:53PM -0600, Robert Hancock wrote:
quoted
Add a flag and helper function to indicate that a PHY device is part of
an SFP module, which is set on attach. This can be used by PHY drivers
to handle SFP-specific quirks or behavior.
Signed-off-by: Robert Hancock <redacted>
---
drivers/net/phy/phy_device.c | 2 ++
include/linux/phy.h | 11 +++++++++++
2 files changed, 13 insertions(+)
I get lost here. It this correct?
We have setups with two PHY. The marvell10g PHY can play the role of
media converter. It converts the signal from the MAC into signals
which can be connected to an SFP cage.
And then inside the cage, we can have a copper module with a second
PHY. It is this second PHY which we need to indicate is_on_sfp_module
true.
We don't support that setup, at least at the moment. There's no support
for stacking PHYs precisely because we have the net_device structure
containing a pointer to the PHY (which will be the first PHY in the
chain.) That has the effect of making the second PHY inaccessible to the
normal network APIs.
We probably want to media convert PHYs LEDs to work, since those
possible are connected to the front panel. So this needs to be
specific to the SFP module PHY, and i'm not sure it is. Russell?
The main reason I'm hessitant with using the net_device structure
to detect this is that we know that phylink has been converted to
work without the net_device structure - it will be NULL. This includes
attaching the "primary" PHY - phylib will be given a NULL net_device.
The good news is that if a SFP cage is attempted to be attached in
that situation, phylink will oops in phylink_sfp_attach(). So it
isn't something that we support. However, the point is that we can
end up in situations where phylib has a NULL net_device.
Florian mentioned in response to one of my previous emails that he's
working on sorting out the phylib dev_flags - I think we should wait
for that to be resolved first, so we can allocate a dev_flag (or
maybe we can do that already today?) that says "this PHY is part of
a SFP module". That will give us a clearly defined positive condition
that is more maintainable into the future.
I'm just worrying that if we sort out phylink_sfp_*tach() (which could
be trivial), if we introduce new dependencies into phylib on the
network device, we're moving backwards.
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!
On 2/17/2021 2:34 AM, Russell King - ARM Linux admin wrote:
On Wed, Feb 17, 2021 at 04:58:26AM +0100, Andrew Lunn wrote:
quoted
On Tue, Feb 16, 2021 at 04:54:53PM -0600, Robert Hancock wrote:
quoted
Add a flag and helper function to indicate that a PHY device is part of
an SFP module, which is set on attach. This can be used by PHY drivers
to handle SFP-specific quirks or behavior.
Signed-off-by: Robert Hancock <redacted>
---
drivers/net/phy/phy_device.c | 2 ++
include/linux/phy.h | 11 +++++++++++
2 files changed, 13 insertions(+)
I get lost here. It this correct?
We have setups with two PHY. The marvell10g PHY can play the role of
media converter. It converts the signal from the MAC into signals
which can be connected to an SFP cage.
And then inside the cage, we can have a copper module with a second
PHY. It is this second PHY which we need to indicate is_on_sfp_module
true.
We don't support that setup, at least at the moment. There's no support
for stacking PHYs precisely because we have the net_device structure
containing a pointer to the PHY (which will be the first PHY in the
chain.) That has the effect of making the second PHY inaccessible to the
normal network APIs.
quoted
We probably want to media convert PHYs LEDs to work, since those
possible are connected to the front panel. So this needs to be
specific to the SFP module PHY, and i'm not sure it is. Russell?
The main reason I'm hessitant with using the net_device structure
to detect this is that we know that phylink has been converted to
work without the net_device structure - it will be NULL. This includes
attaching the "primary" PHY - phylib will be given a NULL net_device.
The good news is that if a SFP cage is attempted to be attached in
that situation, phylink will oops in phylink_sfp_attach(). So it
isn't something that we support. However, the point is that we can
end up in situations where phylib has a NULL net_device.
Florian mentioned in response to one of my previous emails that he's
working on sorting out the phylib dev_flags - I think we should wait
for that to be resolved first, so we can allocate a dev_flag (or
maybe we can do that already today?) that says "this PHY is part of
a SFP module". That will give us a clearly defined positive condition
that is more maintainable into the future.
We could be allocating a generic flag today starting from bit 31 and
down and that would certainly be fine without necessarily making my
rework any harder.
The existing issues with phydev->dev_flags as I am sure you are all
aware is that the flags are not name-spaced per driver yet all Ethernet
MAC drivers make assumptions (tg3.c, bcmgenet.c, etc.) and it is not
possible to pass arbitrary configuration settings down the PHY driver,
etc. I would not hold my breath on this rework as I keep getting sucked
into various issues at work.
FWIW, this series appears to have already been applied.
--
Florian