Skip to content
Permalink
Browse files
stmmac: intel: Honor phy LED set by system firmware on a Dell hardware
BIOS on Dell Edge Gateway 3200 already makes its own phy LED setting, so
instead of setting another value, keep it untouched and restore the saved
value on system resume.

Signed-off-by: Kai-Heng Feng <kai.heng.feng@canonical.com>
  • Loading branch information
khfeng authored and intel-lab-lkp committed Jan 14, 2022
1 parent f4a7c64 commit 83e7c70ef5632f6b94caf8221a20db0881ee6ce2
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 20 deletions.
@@ -857,6 +857,16 @@ static const struct dmi_system_id quark_pci_dmi[] = {
{}
};

static const struct dmi_system_id use_preset_led[] = {
{
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "Dell EMC"),
DMI_MATCH(DMI_PRODUCT_NAME, "Edge Gateway 3200"),
},
},
{}
};

static int quark_default_data(struct pci_dev *pdev,
struct plat_stmmacenet_data *plat)
{
@@ -989,6 +999,7 @@ static int intel_eth_pci_probe(struct pci_dev *pdev,
struct intel_priv_data *intel_priv;
struct plat_stmmacenet_data *plat;
struct stmmac_resources res;
struct stmmac_priv *priv;
int ret;

intel_priv = devm_kzalloc(&pdev->dev, sizeof(*intel_priv), GFP_KERNEL);
@@ -1075,6 +1086,11 @@ static int intel_eth_pci_probe(struct pci_dev *pdev,
goto err_dvr_probe;
}

if (dmi_check_system(use_preset_led)) {
priv = netdev_priv(dev_get_drvdata(&pdev->dev));
priv->use_preset_led = true;
}

return 0;

err_dvr_probe:
@@ -319,6 +319,8 @@ struct stmmac_priv {
/* XDP BPF Program */
unsigned long *af_xdp_zc_qps;
struct bpf_prog *xdp_prog;

bool use_preset_led;
};

enum stmmac_state {
@@ -49,6 +49,7 @@
#include "dwmac1000.h"
#include "dwxgmac2.h"
#include "hwif.h"
#include <linux/marvell_phy.h>

/* As long as the interface is active, we keep the timestamping counter enabled
* with fine resolution and binary rollover. This avoid non-monotonic behavior
@@ -1236,6 +1237,9 @@ static int stmmac_init_phy(struct net_device *dev)
return -ENODEV;
}

if (priv->use_preset_led)
phydev->dev_flags |= MARVELL_PHY_USE_PRESET_LED;

ret = phylink_connect_phy(priv->phylink, phydev);
}

@@ -304,6 +304,7 @@ struct marvell_priv {
u32 last;
u32 step;
s8 pair;
u16 led_def_config;
};

static int marvell_read_page(struct phy_device *phydev)
@@ -748,32 +749,49 @@ static int m88e1510_config_aneg(struct phy_device *phydev)

static void marvell_config_led(struct phy_device *phydev)
{
u16 def_config;
struct marvell_priv *priv = phydev->priv;
int err;

switch (MARVELL_PHY_FAMILY_ID(phydev->phy_id)) {
/* Default PHY LED config: LED[0] .. Link, LED[1] .. Activity */
case MARVELL_PHY_FAMILY_ID(MARVELL_PHY_ID_88E1121R):
case MARVELL_PHY_FAMILY_ID(MARVELL_PHY_ID_88E1318S):
def_config = MII_88E1121_PHY_LED_DEF;
break;
/* Default PHY LED config:
* LED[0] .. 1000Mbps Link
* LED[1] .. 100Mbps Link
* LED[2] .. Blink, Activity
*/
case MARVELL_PHY_FAMILY_ID(MARVELL_PHY_ID_88E1510):
if (phydev->dev_flags & MARVELL_PHY_LED0_LINK_LED1_ACTIVE)
def_config = MII_88E1510_PHY_LED0_LINK_LED1_ACTIVE;
else
def_config = MII_88E1510_PHY_LED_DEF;
break;
default:
if (priv->led_def_config == -1)
return;

if (priv->led_def_config)
goto write;

if (phydev->dev_flags & MARVELL_PHY_USE_PRESET_LED) {
priv->led_def_config = phy_read_paged(phydev, MII_MARVELL_LED_PAGE,
MII_PHY_LED_CTRL);
if (priv->led_def_config < 0) {
priv->led_def_config = -1;
return;
}
} else {
switch (MARVELL_PHY_FAMILY_ID(phydev->phy_id)) {
/* Default PHY LED config: LED[0] .. Link, LED[1] .. Activity */
case MARVELL_PHY_FAMILY_ID(MARVELL_PHY_ID_88E1121R):
case MARVELL_PHY_FAMILY_ID(MARVELL_PHY_ID_88E1318S):
priv->led_def_config = MII_88E1121_PHY_LED_DEF;
break;
/* Default PHY LED config:
* LED[0] .. 1000Mbps Link
* LED[1] .. 100Mbps Link
* LED[2] .. Blink, Activity
*/
case MARVELL_PHY_FAMILY_ID(MARVELL_PHY_ID_88E1510):
if (phydev->dev_flags & MARVELL_PHY_LED0_LINK_LED1_ACTIVE)
priv->led_def_config = MII_88E1510_PHY_LED0_LINK_LED1_ACTIVE;
else
priv->led_def_config = MII_88E1510_PHY_LED_DEF;
break;
default:
priv->led_def_config = -1;
return;
}
}

write:
err = phy_write_paged(phydev, MII_MARVELL_LED_PAGE, MII_PHY_LED_CTRL,
def_config);
priv->led_def_config);
if (err < 0)
phydev_warn(phydev, "Fail to config marvell phy LED.\n");
}
@@ -43,5 +43,6 @@
#define MARVELL_PHY_M1145_FLAGS_RESISTANCE BIT(0)
#define MARVELL_PHY_M1118_DNS323_LEDS BIT(1)
#define MARVELL_PHY_LED0_LINK_LED1_ACTIVE BIT(2)
#define MARVELL_PHY_USE_PRESET_LED BIT(3)

#endif /* _MARVELL_PHY_H */

0 comments on commit 83e7c70

Please sign in to comment.