mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Sergey Shtylyov <s.shtylyov@omp.ru>
To: Claudiu <claudiu.beznea@tuxon.dev>, <davem@davemloft.net>,
	<edumazet@google.com>, <kuba@kernel.org>, <pabeni@redhat.com>,
	<richardcochran@gmail.com>, <p.zabel@pengutronix.de>,
	<yoshihiro.shimoda.uh@renesas.com>,
	<wsa+renesas@sang-engineering.com>
Cc: <netdev@vger.kernel.org>, <linux-renesas-soc@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>, <geert+renesas@glider.be>,
	Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>
Subject: Re: [PATCH net-next v3 07/19] net: ravb: Move reference clock enable/disable on runtime PM APIs
Date: Fri, 5 Jan 2024 22:52:20 +0300	[thread overview]
Message-ID: <80b7337b-5fc2-07bc-a05f-b583ccaac3da@omp.ru> (raw)
In-Reply-To: <20240105082339.1468817-8-claudiu.beznea.uj@bp.renesas.com>

On 1/5/24 11:23 AM, Claudiu wrote:

> From: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>
> 
> Reference clock could be or not part of the power domain. If it is part of
> the power domain, the power domain takes care of propertly setting it. In
> case it is not part of the power domain and full runtime PM support is
> available in driver the clock will not be propertly disabled/enabled at
> runtime. For this, keep the prepare/unprepare operations in the driver's
> probe()/remove() functions and move the enable/disable in runtime PM
> functions.
> 
> Along with it, the other clock request operations were moved close to
> reference clock request and prepare to have all the clock requests
> specific code grouped together.
> 
> Reviewed-by: Sergey Shtylyov <s.shtylyov@omp.ru>

   It's not that I reviewed the squashed version of this patch...

> Signed-off-by: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>
> ---
> 
> Changes in v3:
> - squashed with patch 17/21 ("net: ravb: Keep clock request operations grouped
>   together") from v2
> - collected tags
> 
> Changes in v2:
> - this patch is new and follows the recommendations proposed in the
>   discussion of patch 08/13 ("net: ravb: Rely on PM domain to enable refclk")
>   from v2
> 
>  drivers/net/ethernet/renesas/ravb_main.c | 110 ++++++++++++-----------
>  1 file changed, 57 insertions(+), 53 deletions(-)
> 
> diff --git a/drivers/net/ethernet/renesas/ravb_main.c b/drivers/net/ethernet/renesas/ravb_main.c
> index 844ac3306e93..4673cc2faec0 100644
> --- a/drivers/net/ethernet/renesas/ravb_main.c
> +++ b/drivers/net/ethernet/renesas/ravb_main.c
[...]
> @@ -2697,10 +2692,37 @@ static int ravb_probe(struct platform_device *pdev)
>  		priv->num_rx_ring[RAVB_NC] = NC_RX_RING_SIZE;
>  	}
>  
> +	priv->clk = devm_clk_get(&pdev->dev, NULL);
> +	if (IS_ERR(priv->clk)) {
> +		error = PTR_ERR(priv->clk);
> +		goto out_reset_assert;
> +	}
> +
> +	if (info->gptp_ref_clk) {
> +		priv->gptp_clk = devm_clk_get(&pdev->dev, "gptp");
> +		if (IS_ERR(priv->gptp_clk)) {
> +			error = PTR_ERR(priv->gptp_clk);
> +			goto out_reset_assert;
> +		}
> +	}
> +
> +	priv->refclk = devm_clk_get_optional(&pdev->dev, "refclk");
> +	if (IS_ERR(priv->refclk)) {
> +		error = PTR_ERR(priv->refclk);
> +		goto out_reset_assert;
> +	}
> +	clk_prepare(priv->refclk);
> +
> +	platform_set_drvdata(pdev, ndev);

   Why exactly you had to move this line?

> +	pm_runtime_enable(&pdev->dev);
> +	error = pm_runtime_resume_and_get(&pdev->dev);
> +	if (error < 0)
> +		goto out_rpm_disable;
> +
>  	priv->addr = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
>  	if (IS_ERR(priv->addr)) {
>  		error = PTR_ERR(priv->addr);
> -		goto out_release;
> +		goto out_rpm_put;
>  	}
>  
>  	/* The Ether-specific entries in the device structure. */
[...]
> @@ -2871,8 +2872,6 @@ static int ravb_probe(struct platform_device *pdev)
>  	netdev_info(ndev, "Base address at %#x, %pM, IRQ %d.\n",
>  		    (u32)ndev->base_addr, ndev->dev_addr, ndev->irq);
>  
> -	platform_set_drvdata(pdev, ndev);

   Hm, wasn't calling it here racy?

> -
>  	return 0;
>  
>  out_napi_del:
[...]
> @@ -3060,21 +3058,27 @@ static int ravb_resume(struct device *dev)
>  	return ret;
>  }
>  
> -static int ravb_runtime_nop(struct device *dev)
> +static int ravb_runtime_suspend(struct device *dev)
>  {
> -	/* Runtime PM callback shared between ->runtime_suspend()
> -	 * and ->runtime_resume(). Simply returns success.
> -	 *
> -	 * This driver re-initializes all registers after
> -	 * pm_runtime_get_sync() anyway so there is no need
> -	 * to save and restore registers here.
> -	 */

   Perhaps even worth a separate patch to completely remove this function
which doesn't seem to make sense?

[...]

MBR, Sergey

  reply	other threads:[~2024-01-05 19:52 UTC|newest]

Thread overview: 48+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-05  8:23 [PATCH net-next v3 00/19] net: ravb: Add suspend to RAM and runtime PM support for RZ/G3S Claudiu
2024-01-05  8:23 ` [PATCH net-next v3 01/19] net: ravb: Let IP-specific receive function to interrogate descriptors Claudiu
2024-01-05  8:23 ` [PATCH net-next v3 02/19] net: ravb: Rely on PM domain to enable gptp_clk Claudiu
2024-01-05  8:23 ` [PATCH net-next v3 03/19] net: ravb: Make reset controller support mandatory Claudiu
2024-01-05  9:38   ` Geert Uytterhoeven
2024-01-08  7:05     ` claudiu beznea
2024-01-05  8:23 ` [PATCH net-next v3 04/19] net: ravb: Switch to SYSTEM_SLEEP_PM_OPS()/RUNTIME_PM_OPS() and pm_ptr() Claudiu
2024-01-05  8:23 ` [PATCH net-next v3 05/19] net: ravb: Use tabs instead of spaces Claudiu
2024-01-05  8:23 ` [PATCH net-next v3 06/19] net: ravb: Assert/de-assert reset on suspend/resume Claudiu
2024-01-05  8:23 ` [PATCH net-next v3 07/19] net: ravb: Move reference clock enable/disable on runtime PM APIs Claudiu
2024-01-05 19:52   ` Sergey Shtylyov [this message]
2024-01-08  8:03     ` claudiu beznea
2024-01-23 20:06       ` Sergey Shtylyov
2024-01-05  8:23 ` [PATCH net-next v3 08/19] net: ravb: Move the IRQs get and request in the probe function Claudiu
2024-01-05 20:57   ` Sergey Shtylyov
2024-01-08  8:23     ` claudiu beznea
2024-01-07 18:24   ` Sergey Shtylyov
2024-01-08  8:58     ` claudiu beznea
2024-01-09 20:47       ` Sergey Shtylyov
2024-01-10 11:55         ` claudiu beznea
2024-01-14 18:07           ` Sergey Shtylyov
2024-01-15  7:10             ` claudiu beznea
2024-01-05  8:23 ` [PATCH net-next v3 09/19] net: ravb: Split GTI computation and set operations Claudiu
2024-01-06 19:58   ` Sergey Shtylyov
2024-01-05  8:23 ` [PATCH net-next v3 10/19] net: ravb: Move delay mode set in the driver's ndo_open API Claudiu
2024-01-06 20:26   ` Sergey Shtylyov
2024-01-05  8:23 ` [PATCH net-next v3 11/19] net: ravb: Move DBAT configuration to " Claudiu
2024-01-06 20:34   ` Sergey Shtylyov
2024-01-05  8:23 ` [PATCH net-next v3 12/19] net: ravb: Move PTP initialization in the driver's ndo_open API for ccc_gac platorms Claudiu
2024-01-05  8:23 ` [PATCH net-next v3 13/19] net: ravb: Set config mode in ndo_open and reset mode in ndo_close Claudiu
2024-01-08 19:28   ` Sergey Shtylyov
2024-01-09  5:42     ` claudiu beznea
2024-01-05  8:23 ` [PATCH net-next v3 14/19] net: ravb: Simplify ravb_suspend() Claudiu
2024-01-05  8:23 ` [PATCH net-next v3 15/19] net: ravb: Simplify ravb_resume() Claudiu
2024-01-05  8:23 ` [PATCH net-next v3 16/19] net: ravb: Keep the reverse order of operations in ravb_close() Claudiu
2024-01-05  8:23 ` [PATCH net-next v3 17/19] net: ravb: Return cached statistics if the interface is down Claudiu
2024-01-08 20:22   ` Sergey Shtylyov
2024-01-10 13:17     ` claudiu beznea
2024-01-14 12:22       ` Sergey Shtylyov
2024-01-15  6:08         ` claudiu beznea
2024-01-05  8:23 ` [PATCH net-next v3 18/19] net: ravb: Do not apply RX CSUM settings to hardware " Claudiu
2024-01-08 20:34   ` Sergey Shtylyov
2024-01-08 20:36     ` Sergey Shtylyov
2024-01-08 20:49   ` Sergey Shtylyov
2024-01-05  8:23 ` [PATCH net-next v3 19/19] net: ravb: Add runtime PM support Claudiu
2024-01-09 19:53   ` Sergey Shtylyov
2024-01-10 13:23     ` claudiu beznea
2024-01-05  9:58 ` [PATCH net-next v3 00/19] net: ravb: Add suspend to RAM and runtime PM support for RZ/G3S Jiri Pirko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=80b7337b-5fc2-07bc-a05f-b583ccaac3da@omp.ru \
    --to=s.shtylyov@omp.ru \
    --cc=claudiu.beznea.uj@bp.renesas.com \
    --cc=claudiu.beznea@tuxon.dev \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=geert+renesas@glider.be \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=p.zabel@pengutronix.de \
    --cc=pabeni@redhat.com \
    --cc=richardcochran@gmail.com \
    --cc=wsa+renesas@sang-engineering.com \
    --cc=yoshihiro.shimoda.uh@renesas.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®