Skip to content

Commit

Permalink
Merge branch 'phy-improve-stopping-PHY'
Browse files Browse the repository at this point in the history
Heiner Kallweit says:

====================
net: phy: improve stopping PHY

This patchset improves and simplifies stopping the PHY.

Heiner Kallweit (3):
  net: phy: stop PHY if needed when entering phy_disconnect
  net: phy: ensure phylib state machine is stopped after calling phy_stop
  net: phy: remove phy_stop_interrupts

v2:
- break down the patch to a patchset
v3:
- don't warn if driver didn't call phy_stop before phy_disconnect
====================

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Jan 18, 2019
2 parents 340a6f3 + bb658ab commit 209f94e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 21 deletions.
18 changes: 1 addition & 17 deletions drivers/net/phy/phy.c
Original file line number Diff line number Diff line change
Expand Up @@ -818,23 +818,6 @@ int phy_start_interrupts(struct phy_device *phydev)
}
EXPORT_SYMBOL(phy_start_interrupts);

/**
* phy_stop_interrupts - disable interrupts from a PHY device
* @phydev: target phy_device struct
*/
int phy_stop_interrupts(struct phy_device *phydev)
{
int err = phy_disable_interrupts(phydev);

if (err)
phy_error(phydev);

free_irq(phydev->irq, phydev);

return err;
}
EXPORT_SYMBOL(phy_stop_interrupts);

/**
* phy_stop - Bring down the PHY link, and stop checking the status
* @phydev: target phy_device struct
Expand All @@ -858,6 +841,7 @@ void phy_stop(struct phy_device *phydev)
mutex_unlock(&phydev->lock);

phy_state_machine(&phydev->state_queue.work);
phy_stop_machine(phydev);

/* Cannot call flush_scheduled_work() here as desired because
* of rtnl_lock(), but PHY_HALTED shall guarantee irq handler
Expand Down
7 changes: 4 additions & 3 deletions drivers/net/phy/phy_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -999,10 +999,11 @@ EXPORT_SYMBOL(phy_connect);
*/
void phy_disconnect(struct phy_device *phydev)
{
if (phydev->irq > 0)
phy_stop_interrupts(phydev);
if (phy_is_started(phydev))
phy_stop(phydev);

phy_stop_machine(phydev);
if (phy_interrupt_is_valid(phydev))
free_irq(phydev->irq, phydev);

phydev->adjust_link = NULL;

Expand Down
1 change: 0 additions & 1 deletion include/linux/phy.h
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,6 @@ int phy_aneg_done(struct phy_device *phydev);
int phy_speed_down(struct phy_device *phydev, bool sync);
int phy_speed_up(struct phy_device *phydev);

int phy_stop_interrupts(struct phy_device *phydev);
int phy_restart_aneg(struct phy_device *phydev);
int phy_reset_after_clk_enable(struct phy_device *phydev);

Expand Down

0 comments on commit 209f94e

Please sign in to comment.