netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] net: axienet: allow setups without MDIO
@ 2021-03-24 13:05 Daniel Mack
  2021-03-25 12:44 ` Radhey Shyam Pandey
  2021-03-26  0:30 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Daniel Mack @ 2021-03-24 13:05 UTC (permalink / raw)
  To: radhey.shyam.pandey; +Cc: davem, kuba, netdev, Daniel Mack

In setups with fixed-link settings there is no mdio node in DTS.
axienet_probe() already handles that gracefully but lp->mii_bus is
then NULL.

Fix code that tries to blindly grab the MDIO lock by introducing two helper
functions that make the locking conditional.

Signed-off-by: Daniel Mack <daniel@zonque.org>
---
v2:
  * Also fix axienet_dma_err_handler, as pointed out by Andrew Lunn

 drivers/net/ethernet/xilinx/xilinx_axienet.h      | 12 ++++++++++++
 drivers/net/ethernet/xilinx/xilinx_axienet_main.c | 12 ++++++------
 2 files changed, 18 insertions(+), 6 deletions(-)

diff --git a/drivers/net/ethernet/xilinx/xilinx_axienet.h b/drivers/net/ethernet/xilinx/xilinx_axienet.h
index 1e966a39967e5..aca7f82f6791b 100644
--- a/drivers/net/ethernet/xilinx/xilinx_axienet.h
+++ b/drivers/net/ethernet/xilinx/xilinx_axienet.h
@@ -504,6 +504,18 @@ static inline u32 axinet_ior_read_mcr(struct axienet_local *lp)
 	return axienet_ior(lp, XAE_MDIO_MCR_OFFSET);
 }
 
+static inline void axienet_lock_mii(struct axienet_local *lp)
+{
+	if (lp->mii_bus)
+		mutex_lock(&lp->mii_bus->mdio_lock);
+}
+
+static inline void axienet_unlock_mii(struct axienet_local *lp)
+{
+	if (lp->mii_bus)
+		mutex_unlock(&lp->mii_bus->mdio_lock);
+}
+
 /**
  * axienet_iow - Memory mapped Axi Ethernet register write
  * @lp:         Pointer to axienet local structure
diff --git a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
index 3a8775e0ca552..61380c6b65b86 100644
--- a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
+++ b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
@@ -1053,9 +1053,9 @@ static int axienet_open(struct net_device *ndev)
 	 * including the MDIO. MDIO must be disabled before resetting.
 	 * Hold MDIO bus lock to avoid MDIO accesses during the reset.
 	 */
-	mutex_lock(&lp->mii_bus->mdio_lock);
+	axienet_lock_mii(lp);
 	ret = axienet_device_reset(ndev);
-	mutex_unlock(&lp->mii_bus->mdio_lock);
+	axienet_unlock_mii(lp);
 
 	ret = phylink_of_phy_connect(lp->phylink, lp->dev->of_node, 0);
 	if (ret) {
@@ -1148,9 +1148,9 @@ static int axienet_stop(struct net_device *ndev)
 	}
 
 	/* Do a reset to ensure DMA is really stopped */
-	mutex_lock(&lp->mii_bus->mdio_lock);
+	axienet_lock_mii(lp);
 	__axienet_device_reset(lp);
-	mutex_unlock(&lp->mii_bus->mdio_lock);
+	axienet_unlock_mii(lp);
 
 	cancel_work_sync(&lp->dma_err_task);
 
@@ -1709,9 +1709,9 @@ static void axienet_dma_err_handler(struct work_struct *work)
 	 * including the MDIO. MDIO must be disabled before resetting.
 	 * Hold MDIO bus lock to avoid MDIO accesses during the reset.
 	 */
-	mutex_lock(&lp->mii_bus->mdio_lock);
+	axienet_lock_mii(lp);
 	__axienet_device_reset(lp);
-	mutex_unlock(&lp->mii_bus->mdio_lock);
+	axienet_unlock_mii(lp);
 
 	for (i = 0; i < lp->tx_bd_num; i++) {
 		cur_p = &lp->tx_bd_v[i];
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* RE: [PATCH v2] net: axienet: allow setups without MDIO
  2021-03-24 13:05 [PATCH v2] net: axienet: allow setups without MDIO Daniel Mack
@ 2021-03-25 12:44 ` Radhey Shyam Pandey
  2021-03-26  0:30 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Radhey Shyam Pandey @ 2021-03-25 12:44 UTC (permalink / raw)
  To: Daniel Mack; +Cc: davem@davemloft.net, kuba@kernel.org, netdev@vger.kernel.org

> -----Original Message-----
> From: Daniel Mack <daniel@zonque.org>
> Sent: Wednesday, March 24, 2021 6:36 PM
> To: Radhey Shyam Pandey <radheys@xilinx.com>
> Cc: davem@davemloft.net; kuba@kernel.org; netdev@vger.kernel.org;
> Daniel Mack <daniel@zonque.org>
> Subject: [PATCH v2] net: axienet: allow setups without MDIO
> 
> In setups with fixed-link settings there is no mdio node in DTS.
> axienet_probe() already handles that gracefully but lp->mii_bus is then
> NULL.
> 
> Fix code that tries to blindly grab the MDIO lock by introducing two helper
> functions that make the locking conditional.
> 
> Signed-off-by: Daniel Mack <daniel@zonque.org>

Reviewed-by: Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
Thanks!
> ---
> v2:
>   * Also fix axienet_dma_err_handler, as pointed out by Andrew Lunn
> 
>  drivers/net/ethernet/xilinx/xilinx_axienet.h      | 12 ++++++++++++
>  drivers/net/ethernet/xilinx/xilinx_axienet_main.c | 12 ++++++------
>  2 files changed, 18 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/net/ethernet/xilinx/xilinx_axienet.h
> b/drivers/net/ethernet/xilinx/xilinx_axienet.h
> index 1e966a39967e5..aca7f82f6791b 100644
> --- a/drivers/net/ethernet/xilinx/xilinx_axienet.h
> +++ b/drivers/net/ethernet/xilinx/xilinx_axienet.h
> @@ -504,6 +504,18 @@ static inline u32 axinet_ior_read_mcr(struct
> axienet_local *lp)
>  	return axienet_ior(lp, XAE_MDIO_MCR_OFFSET);  }
> 
> +static inline void axienet_lock_mii(struct axienet_local *lp) {
> +	if (lp->mii_bus)
> +		mutex_lock(&lp->mii_bus->mdio_lock);
> +}
> +
> +static inline void axienet_unlock_mii(struct axienet_local *lp) {
> +	if (lp->mii_bus)
> +		mutex_unlock(&lp->mii_bus->mdio_lock);
> +}
> +
>  /**
>   * axienet_iow - Memory mapped Axi Ethernet register write
>   * @lp:         Pointer to axienet local structure
> diff --git a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
> b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
> index 3a8775e0ca552..61380c6b65b86 100644
> --- a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
> +++ b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
> @@ -1053,9 +1053,9 @@ static int axienet_open(struct net_device *ndev)
>  	 * including the MDIO. MDIO must be disabled before resetting.
>  	 * Hold MDIO bus lock to avoid MDIO accesses during the reset.
>  	 */
> -	mutex_lock(&lp->mii_bus->mdio_lock);
> +	axienet_lock_mii(lp);
>  	ret = axienet_device_reset(ndev);
> -	mutex_unlock(&lp->mii_bus->mdio_lock);
> +	axienet_unlock_mii(lp);
> 
>  	ret = phylink_of_phy_connect(lp->phylink, lp->dev->of_node, 0);
>  	if (ret) {
> @@ -1148,9 +1148,9 @@ static int axienet_stop(struct net_device *ndev)
>  	}
> 
>  	/* Do a reset to ensure DMA is really stopped */
> -	mutex_lock(&lp->mii_bus->mdio_lock);
> +	axienet_lock_mii(lp);
>  	__axienet_device_reset(lp);
> -	mutex_unlock(&lp->mii_bus->mdio_lock);
> +	axienet_unlock_mii(lp);
> 
>  	cancel_work_sync(&lp->dma_err_task);
> 
> @@ -1709,9 +1709,9 @@ static void axienet_dma_err_handler(struct
> work_struct *work)
>  	 * including the MDIO. MDIO must be disabled before resetting.
>  	 * Hold MDIO bus lock to avoid MDIO accesses during the reset.
>  	 */
> -	mutex_lock(&lp->mii_bus->mdio_lock);
> +	axienet_lock_mii(lp);
>  	__axienet_device_reset(lp);
> -	mutex_unlock(&lp->mii_bus->mdio_lock);
> +	axienet_unlock_mii(lp);
> 
>  	for (i = 0; i < lp->tx_bd_num; i++) {
>  		cur_p = &lp->tx_bd_v[i];
> --
> 2.30.2


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] net: axienet: allow setups without MDIO
  2021-03-24 13:05 [PATCH v2] net: axienet: allow setups without MDIO Daniel Mack
  2021-03-25 12:44 ` Radhey Shyam Pandey
@ 2021-03-26  0:30 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2021-03-26  0:30 UTC (permalink / raw)
  To: Daniel Mack; +Cc: radhey.shyam.pandey, davem, kuba, netdev

Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Wed, 24 Mar 2021 14:05:36 +0100 you wrote:
> In setups with fixed-link settings there is no mdio node in DTS.
> axienet_probe() already handles that gracefully but lp->mii_bus is
> then NULL.
> 
> Fix code that tries to blindly grab the MDIO lock by introducing two helper
> functions that make the locking conditional.
> 
> [...]

Here is the summary with links:
  - [v2] net: axienet: allow setups without MDIO
    https://git.kernel.org/netdev/net/c/de9c7854e6e1

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-03-26  0:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-24 13:05 [PATCH v2] net: axienet: allow setups without MDIO Daniel Mack
2021-03-25 12:44 ` Radhey Shyam Pandey
2021-03-26  0:30 ` patchwork-bot+netdevbpf

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).