Commit a0723b37 authored by Ioana Ciornei's avatar Ioana Ciornei Committed by Jakub Kicinski

net: phy: marvell: implement generic .handle_interrupt() callback

In an attempt to actually support shared IRQs in phylib, we now move the
responsibility of triggering the phylib state machine or just returning
IRQ_NONE, based on the IRQ status register, to the PHY driver. Having
3 different IRQ handling callbacks (.handle_interrupt(),
.did_interrupt() and .ack_interrupt() ) is confusing so let the PHY
driver implement directly an IRQ handler like any other device driver.
Make this driver follow the new convention.

Cc: Maxim Kochetkov <fido_max@inbox.ru>
Cc: Baruch Siach <baruch@tkos.co.il>
Cc: Robert Hancock <robert.hancock@calian.com>
Signed-off-by: default avatarIoana Ciornei <ioana.ciornei@nxp.com>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent cf499391
...@@ -327,6 +327,24 @@ static int marvell_config_intr(struct phy_device *phydev) ...@@ -327,6 +327,24 @@ static int marvell_config_intr(struct phy_device *phydev)
return err; return err;
} }
static irqreturn_t marvell_handle_interrupt(struct phy_device *phydev)
{
int irq_status;
irq_status = phy_read(phydev, MII_M1011_IEVENT);
if (irq_status < 0) {
phy_error(phydev);
return IRQ_NONE;
}
if (!(irq_status & MII_M1011_IMASK_INIT))
return IRQ_NONE;
phy_trigger_machine(phydev);
return IRQ_HANDLED;
}
static int marvell_set_polarity(struct phy_device *phydev, int polarity) static int marvell_set_polarity(struct phy_device *phydev, int polarity)
{ {
int reg; int reg;
...@@ -1659,18 +1677,6 @@ static int marvell_aneg_done(struct phy_device *phydev) ...@@ -1659,18 +1677,6 @@ static int marvell_aneg_done(struct phy_device *phydev)
return (retval < 0) ? retval : (retval & MII_M1011_PHY_STATUS_RESOLVED); return (retval < 0) ? retval : (retval & MII_M1011_PHY_STATUS_RESOLVED);
} }
static int m88e1121_did_interrupt(struct phy_device *phydev)
{
int imask;
imask = phy_read(phydev, MII_M1011_IEVENT);
if (imask & MII_M1011_IMASK_INIT)
return 1;
return 0;
}
static void m88e1318_get_wol(struct phy_device *phydev, static void m88e1318_get_wol(struct phy_device *phydev,
struct ethtool_wolinfo *wol) struct ethtool_wolinfo *wol)
{ {
...@@ -2699,6 +2705,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -2699,6 +2705,7 @@ static struct phy_driver marvell_drivers[] = {
.config_aneg = m88e1101_config_aneg, .config_aneg = m88e1101_config_aneg,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.handle_interrupt = marvell_handle_interrupt,
.resume = genphy_resume, .resume = genphy_resume,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.read_page = marvell_read_page, .read_page = marvell_read_page,
...@@ -2717,6 +2724,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -2717,6 +2724,7 @@ static struct phy_driver marvell_drivers[] = {
.config_aneg = marvell_config_aneg, .config_aneg = marvell_config_aneg,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.handle_interrupt = marvell_handle_interrupt,
.resume = genphy_resume, .resume = genphy_resume,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.read_page = marvell_read_page, .read_page = marvell_read_page,
...@@ -2738,6 +2746,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -2738,6 +2746,7 @@ static struct phy_driver marvell_drivers[] = {
.read_status = marvell_read_status, .read_status = marvell_read_status,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.handle_interrupt = marvell_handle_interrupt,
.resume = genphy_resume, .resume = genphy_resume,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.read_page = marvell_read_page, .read_page = marvell_read_page,
...@@ -2759,6 +2768,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -2759,6 +2768,7 @@ static struct phy_driver marvell_drivers[] = {
.read_status = marvell_read_status, .read_status = marvell_read_status,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.handle_interrupt = marvell_handle_interrupt,
.resume = genphy_resume, .resume = genphy_resume,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.read_page = marvell_read_page, .read_page = marvell_read_page,
...@@ -2779,6 +2789,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -2779,6 +2789,7 @@ static struct phy_driver marvell_drivers[] = {
.config_aneg = m88e1118_config_aneg, .config_aneg = m88e1118_config_aneg,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.handle_interrupt = marvell_handle_interrupt,
.resume = genphy_resume, .resume = genphy_resume,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.read_page = marvell_read_page, .read_page = marvell_read_page,
...@@ -2798,7 +2809,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -2798,7 +2809,7 @@ static struct phy_driver marvell_drivers[] = {
.read_status = marvell_read_status, .read_status = marvell_read_status,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.did_interrupt = m88e1121_did_interrupt, .handle_interrupt = marvell_handle_interrupt,
.resume = genphy_resume, .resume = genphy_resume,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.read_page = marvell_read_page, .read_page = marvell_read_page,
...@@ -2820,7 +2831,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -2820,7 +2831,7 @@ static struct phy_driver marvell_drivers[] = {
.read_status = marvell_read_status, .read_status = marvell_read_status,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.did_interrupt = m88e1121_did_interrupt, .handle_interrupt = marvell_handle_interrupt,
.get_wol = m88e1318_get_wol, .get_wol = m88e1318_get_wol,
.set_wol = m88e1318_set_wol, .set_wol = m88e1318_set_wol,
.resume = genphy_resume, .resume = genphy_resume,
...@@ -2842,6 +2853,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -2842,6 +2853,7 @@ static struct phy_driver marvell_drivers[] = {
.read_status = genphy_read_status, .read_status = genphy_read_status,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.handle_interrupt = marvell_handle_interrupt,
.resume = genphy_resume, .resume = genphy_resume,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.read_page = marvell_read_page, .read_page = marvell_read_page,
...@@ -2862,6 +2874,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -2862,6 +2874,7 @@ static struct phy_driver marvell_drivers[] = {
.config_aneg = m88e1118_config_aneg, .config_aneg = m88e1118_config_aneg,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.handle_interrupt = marvell_handle_interrupt,
.resume = genphy_resume, .resume = genphy_resume,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.read_page = marvell_read_page, .read_page = marvell_read_page,
...@@ -2880,6 +2893,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -2880,6 +2893,7 @@ static struct phy_driver marvell_drivers[] = {
.config_aneg = marvell_config_aneg, .config_aneg = marvell_config_aneg,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.handle_interrupt = marvell_handle_interrupt,
.resume = genphy_resume, .resume = genphy_resume,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.read_page = marvell_read_page, .read_page = marvell_read_page,
...@@ -2897,6 +2911,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -2897,6 +2911,7 @@ static struct phy_driver marvell_drivers[] = {
.config_init = m88e1116r_config_init, .config_init = m88e1116r_config_init,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.handle_interrupt = marvell_handle_interrupt,
.resume = genphy_resume, .resume = genphy_resume,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.read_page = marvell_read_page, .read_page = marvell_read_page,
...@@ -2919,7 +2934,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -2919,7 +2934,7 @@ static struct phy_driver marvell_drivers[] = {
.read_status = marvell_read_status, .read_status = marvell_read_status,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.did_interrupt = m88e1121_did_interrupt, .handle_interrupt = marvell_handle_interrupt,
.get_wol = m88e1318_get_wol, .get_wol = m88e1318_get_wol,
.set_wol = m88e1318_set_wol, .set_wol = m88e1318_set_wol,
.resume = marvell_resume, .resume = marvell_resume,
...@@ -2948,7 +2963,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -2948,7 +2963,7 @@ static struct phy_driver marvell_drivers[] = {
.read_status = marvell_read_status, .read_status = marvell_read_status,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.did_interrupt = m88e1121_did_interrupt, .handle_interrupt = marvell_handle_interrupt,
.resume = genphy_resume, .resume = genphy_resume,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.read_page = marvell_read_page, .read_page = marvell_read_page,
...@@ -2974,7 +2989,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -2974,7 +2989,7 @@ static struct phy_driver marvell_drivers[] = {
.read_status = marvell_read_status, .read_status = marvell_read_status,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.did_interrupt = m88e1121_did_interrupt, .handle_interrupt = marvell_handle_interrupt,
.resume = genphy_resume, .resume = genphy_resume,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.read_page = marvell_read_page, .read_page = marvell_read_page,
...@@ -2999,7 +3014,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -2999,7 +3014,7 @@ static struct phy_driver marvell_drivers[] = {
.read_status = marvell_read_status, .read_status = marvell_read_status,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.did_interrupt = m88e1121_did_interrupt, .handle_interrupt = marvell_handle_interrupt,
.resume = genphy_resume, .resume = genphy_resume,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.read_page = marvell_read_page, .read_page = marvell_read_page,
...@@ -3020,7 +3035,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -3020,7 +3035,7 @@ static struct phy_driver marvell_drivers[] = {
.read_status = marvell_read_status, .read_status = marvell_read_status,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.did_interrupt = m88e1121_did_interrupt, .handle_interrupt = marvell_handle_interrupt,
.resume = genphy_resume, .resume = genphy_resume,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.read_page = marvell_read_page, .read_page = marvell_read_page,
...@@ -3045,7 +3060,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -3045,7 +3060,7 @@ static struct phy_driver marvell_drivers[] = {
.read_status = marvell_read_status, .read_status = marvell_read_status,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.did_interrupt = m88e1121_did_interrupt, .handle_interrupt = marvell_handle_interrupt,
.resume = genphy_resume, .resume = genphy_resume,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.read_page = marvell_read_page, .read_page = marvell_read_page,
...@@ -3067,7 +3082,7 @@ static struct phy_driver marvell_drivers[] = { ...@@ -3067,7 +3082,7 @@ static struct phy_driver marvell_drivers[] = {
.read_status = marvell_read_status, .read_status = marvell_read_status,
.ack_interrupt = marvell_ack_interrupt, .ack_interrupt = marvell_ack_interrupt,
.config_intr = marvell_config_intr, .config_intr = marvell_config_intr,
.did_interrupt = m88e1121_did_interrupt, .handle_interrupt = marvell_handle_interrupt,
.resume = genphy_resume, .resume = genphy_resume,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.read_page = marvell_read_page, .read_page = marvell_read_page,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment