diff options
author | Rabin Vincent <rabinv@axis.com> | 2016-05-18 06:47:31 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-05-20 13:50:16 -0400 |
commit | 185be5aef1739fff0298f59b54f2ef7ccf5a849d (patch) | |
tree | b2135e78203ef0eb6b8bb6495c387a93aeff749e /drivers/net/phy | |
parent | 52103b70e13ae1381020b5a9fa15824a9b35baeb (diff) |
phy: fix crash in fixed_phy_add()
Since e7f4dc3536a ("mdio: Move allocation of interrupts into core"),
platforms which call fixed_phy_add() before fixed_mdio_bus_init() is
called (for example, because the platform code and the fixed_phy driver
use the same initcall level) crash in fixed_phy_add() since the
->mii_bus is not allocated.
Also since e7f4dc3536a, these interrupts are initalized to polling by
default. The few (old) platforms which directly use fixed_phy_add()
from their platform code all pass PHY_POLL for the irq argument, so we
can keep these platforms not crashing by simply not attempting to set
the irq if PHY_POLL is passed.
Also, even if problems have not been reported on more modern platforms
which used fixed_phy_register() from drivers' probe functions, we return
-EPROBE_DEFER if the MDIO bus is not yet registered so that the probe is
retried later.
Fixes: e7f4dc3536a400 ("mdio: Move allocation of interrupts into core")
Signed-off-by: Rabin Vincent <rabinv@axis.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r-- | drivers/net/phy/fixed_phy.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/net/phy/fixed_phy.c b/drivers/net/phy/fixed_phy.c index 9050f21e6f33..2d2e4339f0df 100644 --- a/drivers/net/phy/fixed_phy.c +++ b/drivers/net/phy/fixed_phy.c | |||
@@ -255,7 +255,8 @@ int fixed_phy_add(unsigned int irq, int phy_addr, | |||
255 | 255 | ||
256 | memset(fp->regs, 0xFF, sizeof(fp->regs[0]) * MII_REGS_NUM); | 256 | memset(fp->regs, 0xFF, sizeof(fp->regs[0]) * MII_REGS_NUM); |
257 | 257 | ||
258 | fmb->mii_bus->irq[phy_addr] = irq; | 258 | if (irq != PHY_POLL) |
259 | fmb->mii_bus->irq[phy_addr] = irq; | ||
259 | 260 | ||
260 | fp->addr = phy_addr; | 261 | fp->addr = phy_addr; |
261 | fp->status = *status; | 262 | fp->status = *status; |
@@ -314,6 +315,9 @@ struct phy_device *fixed_phy_register(unsigned int irq, | |||
314 | int phy_addr; | 315 | int phy_addr; |
315 | int ret; | 316 | int ret; |
316 | 317 | ||
318 | if (!fmb->mii_bus || fmb->mii_bus->state != MDIOBUS_REGISTERED) | ||
319 | return ERR_PTR(-EPROBE_DEFER); | ||
320 | |||
317 | /* Get the next available PHY address, up to PHY_MAX_ADDR */ | 321 | /* Get the next available PHY address, up to PHY_MAX_ADDR */ |
318 | spin_lock(&phy_fixed_addr_lock); | 322 | spin_lock(&phy_fixed_addr_lock); |
319 | if (phy_fixed_addr == PHY_MAX_ADDR) { | 323 | if (phy_fixed_addr == PHY_MAX_ADDR) { |