* [PATCH] Fix PHY Lib support for gianfar and ucc_geth
@ 2008-02-05 22:35 Andy Fleming
2008-02-06 11:44 ` Jeff Garzik
0 siblings, 1 reply; 2+ messages in thread
From: Andy Fleming @ 2008-02-05 22:35 UTC (permalink / raw)
To: jeff, netdev; +Cc: Andy Fleming
The PHY Lib now uses mutexes instead of spin_locks. ucc_geth
and gianfar both grab the locks in their mdio_reset functions,
so they need to use mutex_(un)lock instead. This was not caught
until someone tested it on an SMP system.
Signed-off-by: Andy Fleming <afleming@freescale.com>
---
drivers/net/gianfar_mii.c | 4 ++--
drivers/net/ucc_geth_mii.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/net/gianfar_mii.c b/drivers/net/gianfar_mii.c
index 100bf41..6a647d9 100644
--- a/drivers/net/gianfar_mii.c
+++ b/drivers/net/gianfar_mii.c
@@ -127,7 +127,7 @@ int gfar_mdio_reset(struct mii_bus *bus)
struct gfar_mii __iomem *regs = (void __iomem *)bus->priv;
unsigned int timeout = PHY_INIT_TIMEOUT;
- spin_lock_bh(&bus->mdio_lock);
+ mutex_lock(&bus->mdio_lock);
/* Reset the management interface */
gfar_write(®s->miimcfg, MIIMCFG_RESET);
@@ -140,7 +140,7 @@ int gfar_mdio_reset(struct mii_bus *bus)
timeout--)
cpu_relax();
- spin_unlock_bh(&bus->mdio_lock);
+ mutex_unlock(&bus->mdio_lock);
if(timeout <= 0) {
printk(KERN_ERR "%s: The MII Bus is stuck!\n",
diff --git a/drivers/net/ucc_geth_mii.c b/drivers/net/ucc_geth_mii.c
index e3ba14a..c69e654 100644
--- a/drivers/net/ucc_geth_mii.c
+++ b/drivers/net/ucc_geth_mii.c
@@ -109,7 +109,7 @@ int uec_mdio_reset(struct mii_bus *bus)
struct ucc_mii_mng __iomem *regs = (void __iomem *)bus->priv;
unsigned int timeout = PHY_INIT_TIMEOUT;
- spin_lock_bh(&bus->mdio_lock);
+ mutex_lock(&bus->mdio_lock);
/* Reset the management interface */
out_be32(®s->miimcfg, MIIMCFG_RESET_MANAGEMENT);
@@ -121,7 +121,7 @@ int uec_mdio_reset(struct mii_bus *bus)
while ((in_be32(®s->miimind) & MIIMIND_BUSY) && timeout--)
cpu_relax();
- spin_unlock_bh(&bus->mdio_lock);
+ mutex_unlock(&bus->mdio_lock);
if (timeout <= 0) {
printk(KERN_ERR "%s: The MII Bus is stuck!\n", bus->name);
--
1.5.0.2.230.gfbe3d-dirty
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] Fix PHY Lib support for gianfar and ucc_geth
2008-02-05 22:35 [PATCH] Fix PHY Lib support for gianfar and ucc_geth Andy Fleming
@ 2008-02-06 11:44 ` Jeff Garzik
0 siblings, 0 replies; 2+ messages in thread
From: Jeff Garzik @ 2008-02-06 11:44 UTC (permalink / raw)
To: Andy Fleming; +Cc: netdev
Andy Fleming wrote:
> The PHY Lib now uses mutexes instead of spin_locks. ucc_geth
> and gianfar both grab the locks in their mdio_reset functions,
> so they need to use mutex_(un)lock instead. This was not caught
> until someone tested it on an SMP system.
>
> Signed-off-by: Andy Fleming <afleming@freescale.com>
> ---
> drivers/net/gianfar_mii.c | 4 ++--
> drivers/net/ucc_geth_mii.c | 4 ++--
> 2 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/net/gianfar_mii.c b/drivers/net/gianfar_mii.c
> index 100bf41..6a647d9 100644
> --- a/drivers/net/gianfar_mii.c
> +++ b/drivers/net/gianfar_mii.c
> @@ -127,7 +127,7 @@ int gfar_mdio_reset(struct mii_bus *bus)
> struct gfar_mii __iomem *regs = (void __iomem *)bus->priv;
> unsigned int timeout = PHY_INIT_TIMEOUT;
>
> - spin_lock_bh(&bus->mdio_lock);
> + mutex_lock(&bus->mdio_lock);
>
> /* Reset the management interface */
> gfar_write(®s->miimcfg, MIIMCFG_RESET);
> @@ -140,7 +140,7 @@ int gfar_mdio_reset(struct mii_bus *bus)
> timeout--)
> cpu_relax();
>
> - spin_unlock_bh(&bus->mdio_lock);
> + mutex_unlock(&bus->mdio_lock);
>
> if(timeout <= 0) {
> printk(KERN_ERR "%s: The MII Bus is stuck!\n",
> diff --git a/drivers/net/ucc_geth_mii.c b/drivers/net/ucc_geth_mii.c
> index e3ba14a..c69e654 100644
> --- a/drivers/net/ucc_geth_mii.c
> +++ b/drivers/net/ucc_geth_mii.c
> @@ -109,7 +109,7 @@ int uec_mdio_reset(struct mii_bus *bus)
> struct ucc_mii_mng __iomem *regs = (void __iomem *)bus->priv;
> unsigned int timeout = PHY_INIT_TIMEOUT;
>
> - spin_lock_bh(&bus->mdio_lock);
> + mutex_lock(&bus->mdio_lock);
>
> /* Reset the management interface */
> out_be32(®s->miimcfg, MIIMCFG_RESET_MANAGEMENT);
> @@ -121,7 +121,7 @@ int uec_mdio_reset(struct mii_bus *bus)
> while ((in_be32(®s->miimind) & MIIMIND_BUSY) && timeout--)
> cpu_relax();
>
> - spin_unlock_bh(&bus->mdio_lock);
> + mutex_unlock(&bus->mdio_lock);
>
applied
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-02-06 11:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-05 22:35 [PATCH] Fix PHY Lib support for gianfar and ucc_geth Andy Fleming
2008-02-06 11:44 ` Jeff Garzik
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).