mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 13:30:55 +07:00
amd-xgbe-phy: On suspend, save CTRL1 reg for use on resume
Reads to registers are undefined when the PCS is powered down. To be safe, save the CTRL1 register used for power down during suspend and restore that value during resume. Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
94c043e533
commit
03e50fd7b1
@ -350,6 +350,8 @@ struct amd_xgbe_phy_priv {
|
|||||||
struct work_struct an_work;
|
struct work_struct an_work;
|
||||||
struct workqueue_struct *an_workqueue;
|
struct workqueue_struct *an_workqueue;
|
||||||
unsigned int parallel_detect;
|
unsigned int parallel_detect;
|
||||||
|
|
||||||
|
unsigned int lpm_ctrl; /* CTRL1 for resume */
|
||||||
};
|
};
|
||||||
|
|
||||||
static int amd_xgbe_an_enable_kr_training(struct phy_device *phydev)
|
static int amd_xgbe_an_enable_kr_training(struct phy_device *phydev)
|
||||||
@ -1250,6 +1252,7 @@ static int amd_xgbe_phy_read_status(struct phy_device *phydev)
|
|||||||
|
|
||||||
static int amd_xgbe_phy_suspend(struct phy_device *phydev)
|
static int amd_xgbe_phy_suspend(struct phy_device *phydev)
|
||||||
{
|
{
|
||||||
|
struct amd_xgbe_phy_priv *priv = phydev->priv;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
mutex_lock(&phydev->lock);
|
mutex_lock(&phydev->lock);
|
||||||
@ -1258,6 +1261,8 @@ static int amd_xgbe_phy_suspend(struct phy_device *phydev)
|
|||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto unlock;
|
goto unlock;
|
||||||
|
|
||||||
|
priv->lpm_ctrl = ret;
|
||||||
|
|
||||||
ret |= MDIO_CTRL1_LPOWER;
|
ret |= MDIO_CTRL1_LPOWER;
|
||||||
phy_write_mmd(phydev, MDIO_MMD_PCS, MDIO_CTRL1, ret);
|
phy_write_mmd(phydev, MDIO_MMD_PCS, MDIO_CTRL1, ret);
|
||||||
|
|
||||||
@ -1271,23 +1276,16 @@ static int amd_xgbe_phy_suspend(struct phy_device *phydev)
|
|||||||
|
|
||||||
static int amd_xgbe_phy_resume(struct phy_device *phydev)
|
static int amd_xgbe_phy_resume(struct phy_device *phydev)
|
||||||
{
|
{
|
||||||
int ret;
|
struct amd_xgbe_phy_priv *priv = phydev->priv;
|
||||||
|
|
||||||
mutex_lock(&phydev->lock);
|
mutex_lock(&phydev->lock);
|
||||||
|
|
||||||
ret = phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_CTRL1);
|
priv->lpm_ctrl &= ~MDIO_CTRL1_LPOWER;
|
||||||
if (ret < 0)
|
phy_write_mmd(phydev, MDIO_MMD_PCS, MDIO_CTRL1, priv->lpm_ctrl);
|
||||||
goto unlock;
|
|
||||||
|
|
||||||
ret &= ~MDIO_CTRL1_LPOWER;
|
|
||||||
phy_write_mmd(phydev, MDIO_MMD_PCS, MDIO_CTRL1, ret);
|
|
||||||
|
|
||||||
ret = 0;
|
|
||||||
|
|
||||||
unlock:
|
|
||||||
mutex_unlock(&phydev->lock);
|
mutex_unlock(&phydev->lock);
|
||||||
|
|
||||||
return ret;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int amd_xgbe_phy_probe(struct phy_device *phydev)
|
static int amd_xgbe_phy_probe(struct phy_device *phydev)
|
||||||
|
Loading…
Reference in New Issue
Block a user