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 08/19] net: ravb: Move the IRQs get and request in the probe function
Date: Fri, 5 Jan 2024 23:57:23 +0300	[thread overview]
Message-ID: <fa9c8db4-ed80-f64d-aae2-8b95281f302e@omp.ru> (raw)
In-Reply-To: <20240105082339.1468817-9-claudiu.beznea.uj@bp.renesas.com>

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

> From: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>
> 
> The runtime PM implementation will disable clocks at the end of
> ravb_probe(). As some IP variants switch to reset mode as a result of
> setting module standby through clock disable APIs, to implement runtime PM
> the resource parsing and requesting are moved in the probe function and IP
> settings are moved in the open function. This is done because at the end of
> the probe some IP variants will switch anyway to reset mode and the
> registers content is lost. Also keeping only register specific operations
> in the ravb_open()/ravb_close() functions will make them faster.
> 
> Commit moves IRQ requests to ravb_probe() to have all the IRQs ready when
> the interface is open. As now IRQs gets and requests are in a single place
> there is no need to keep intermediary data (like ravb_rx_irqs[] and
> ravb_tx_irqs[] arrays or IRQs in struct ravb_private).
> 
> This is a preparatory change to add runtime PM support for all IP variants.
> 
> Signed-off-by: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>
[...]
> diff --git a/drivers/net/ethernet/renesas/ravb.h b/drivers/net/ethernet/renesas/ravb.h
> index e0f8276cffed..e3506888cca6 100644
> --- a/drivers/net/ethernet/renesas/ravb.h
> +++ b/drivers/net/ethernet/renesas/ravb.h
> @@ -1089,10 +1089,6 @@ struct ravb_private {
>  	int msg_enable;
>  	int speed;
>  	int emac_irq;
> -	int erra_irq;
> -	int mgmta_irq;
> -	int rx_irqs[NUM_RX_QUEUE];
> -	int tx_irqs[NUM_TX_QUEUE];

   Good! :-)

[...]
> diff --git a/drivers/net/ethernet/renesas/ravb_main.c b/drivers/net/ethernet/renesas/ravb_main.c
> index 4673cc2faec0..ac6488ffa29a 100644
> --- a/drivers/net/ethernet/renesas/ravb_main.c
> +++ b/drivers/net/ethernet/renesas/ravb_main.c
[...]
> @@ -1727,85 +1717,21 @@ static const struct ethtool_ops ravb_ethtool_ops = {
>  	.set_wol		= ravb_set_wol,
>  };
>  
> -static inline int ravb_hook_irq(unsigned int irq, irq_handler_t handler,
> -				struct net_device *ndev, struct device *dev,
> -				const char *ch)
> -{
> -	char *name;
> -	int error;
> -
> -	name = devm_kasprintf(dev, GFP_KERNEL, "%s:%s", ndev->name, ch);

   Ugh! Should've fixed this outrage... :-/

[...]
> @@ -2616,6 +2509,90 @@ static void ravb_parse_delay_mode(struct device_node *np, struct net_device *nde
>  	}
>  }
>  
> +static int ravb_setup_irq(struct ravb_private *priv, const char *irq_name,
> +			  const char *ch, int *irq, irq_handler_t handler)
> +{
> +	struct platform_device *pdev = priv->pdev;
> +	struct net_device *ndev = priv->ndev;
> +	struct device *dev = &pdev->dev;
> +	const char *dev_name;
> +	unsigned long flags;
> +	int error;
> +
> +	if (irq_name) {
> +		dev_name = devm_kasprintf(dev, GFP_KERNEL, "%s:%s", ndev->name, ch);
> +		if (!dev_name)
> +			return -ENOMEM;
> +
> +		*irq = platform_get_irq_byname(pdev, irq_name);
> +		flags = 0;
> +	} else {
> +		dev_name = ndev->name;
> +		*irq = platform_get_irq(pdev, 0);
> +		flags = IRQF_SHARED;
> +	}
> +	if (*irq < 0)
> +		return *irq;
> +
> +	error = devm_request_irq(dev, *irq, handler, flags, dev_name, ndev);
> +	if (error)
> +		netdev_err(ndev, "cannot request IRQ %s\n", irq_name);

   What will be printed when irq_name is NULL? Shouldn't this be dev_name
instead?

> +
> +	return error;
> +}
> +
> +static int ravb_setup_irqs(struct ravb_private *priv)
> +{
> +	const struct ravb_hw_info *info = priv->info;
> +	struct net_device *ndev = priv->ndev;
> +	const char *irq_name, *emac_irq_name;
> +	int error, irq;
> +
> +	if (!info->multi_irqs)
> +		return ravb_setup_irq(priv, NULL, NULL, &ndev->irq, ravb_interrupt);
> +
> +	if (info->err_mgmt_irqs) {
> +		irq_name = "dia";
> +		emac_irq_name = "line3";
> +	} else {
> +		irq_name = "ch22";
> +		emac_irq_name = "ch24";
> +	}
> +
> +	error = ravb_setup_irq(priv, irq_name, "ch22:multi", &ndev->irq, ravb_multi_interrupt);
> +	if (error)
> +		return error;
> +
> +	error = ravb_setup_irq(priv, emac_irq_name, "ch24:emac", &priv->emac_irq,
> +			       ravb_emac_interrupt);
> +	if (error)
> +		return error;
> +
> +	if (info->err_mgmt_irqs) {
> +		error = ravb_setup_irq(priv, "err_a", "err_a", &irq, ravb_multi_interrupt);

   Hm, why pass 2 identical names?

> +		if (error)
> +			return error;
> +
> +		error = ravb_setup_irq(priv, "mgmt_a", "mgmt_a", &irq, ravb_multi_interrupt);

   Here as well?

> +		if (error)
> +			return error;
> +	}
> +
> +	error = ravb_setup_irq(priv, "ch0", "ch0:rx_be", &irq, ravb_be_interrupt);

   Hm, won't this result in "ch0:ch0:rx_be" as IRQ name?

> +	if (error)
> +		return error;
> +
> +	error = ravb_setup_irq(priv, "ch1", "ch1:rx_nc", &irq, ravb_nc_interrupt);

   Same question...

> +	if (error)
> +		return error;
> +
> +	error = ravb_setup_irq(priv, "ch18", "ch18:tx_be", &irq, ravb_be_interrupt);

   And here as well...

> +	if (error)
> +		return error;
> +
> +	return ravb_setup_irq(priv, "ch19", "ch19:tx_nc", &irq, ravb_nc_interrupt);

   Here too...

[...]

MBR, Sergey

  reply	other threads:[~2024-01-05 20:57 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
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 [this message]
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=fa9c8db4-ed80-f64d-aae2-8b95281f302e@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®