From: "Niklas Söderlund" <niklas.soderlund@ragnatech.se>
To: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Cc: Paul Barker <paul@pbarker.dev>,
Andrew Lunn <andrew+netdev@lunn.ch>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>,
netdev@vger.kernel.org, linux-renesas-soc@vger.kernel.org,
linux-kernel@vger.kernel.org,
Biju Das <biju.das.jz@bp.renesas.com>,
Fabrizio Castro <fabrizio.castro.jz@renesas.com>,
Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>,
stable@vger.kernel.org
Subject: Re: [PATCH 1/3] net: ravb: Make DBAT entry count configurable per-SoC
Date: Wed, 15 Oct 2025 19:29:04 +0200 [thread overview]
Message-ID: <20251015172904.GH439570@ragnatech.se> (raw)
In-Reply-To: <CA+V-a8vRXN+2CDQu=FkN_teTDLywzGPn_=8obvKC+3tmwYo4hA@mail.gmail.com>
On 2025-10-15 18:05:34 +0100, Lad, Prabhakar wrote:
> Hi Niklas,
>
> Thank you for the review.
>
> On Wed, Oct 15, 2025 at 4:36 PM Niklas Söderlund
> <niklas.soderlund@ragnatech.se> wrote:
> >
> > Hi Prabhakar,
> >
> > Thanks for your work.
> >
> > On 2025-10-15 16:00:24 +0100, Prabhakar wrote:
> > > From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
> > >
> > > The number of CDARq (Current Descriptor Address Register) registers is not
> > > fixed to 22 across all SoC variants. For example, the GBETH implementation
> > > uses only two entries. Hardcoding the value leads to incorrect resource
> > > allocation on such platforms.
> > >
> > > Pass the DBAT entry count through the per-SoC hardware info struct and use
> > > it during probe instead of relying on a fixed constant. This ensures
> > > correct descriptor table sizing and initialization across different SoCs.
> > >
> > > Fixes: feab85c7ccea ("ravb: Add support for RZ/G2L SoC")
> > > Cc: stable@vger.kernel.org
> > > Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
> >
> > I have not verified with documentation the setting of 2 for
> > gbeth_hw_info. But the change itself is good.
> >
> > > ---
> > > drivers/net/ethernet/renesas/ravb.h | 2 +-
> > > drivers/net/ethernet/renesas/ravb_main.c | 9 +++++++--
> > > 2 files changed, 8 insertions(+), 3 deletions(-)
> > >
> > > diff --git a/drivers/net/ethernet/renesas/ravb.h b/drivers/net/ethernet/renesas/ravb.h
> > > index 7b48060c250b..d65cd83ddd16 100644
> > > --- a/drivers/net/ethernet/renesas/ravb.h
> > > +++ b/drivers/net/ethernet/renesas/ravb.h
> > > @@ -1017,7 +1017,6 @@ enum CSR2_BIT {
> > > #define CSR2_CSUM_ENABLE (CSR2_RTCP4 | CSR2_RUDP4 | CSR2_RICMP4 | \
> > > CSR2_RTCP6 | CSR2_RUDP6 | CSR2_RICMP6)
> > >
> > > -#define DBAT_ENTRY_NUM 22
> > > #define RX_QUEUE_OFFSET 4
> > > #define NUM_RX_QUEUE 2
> > > #define NUM_TX_QUEUE 2
> > > @@ -1062,6 +1061,7 @@ struct ravb_hw_info {
> > > u32 rx_max_frame_size;
> > > u32 rx_buffer_size;
> > > u32 rx_desc_size;
> > > + u32 dbat_entry_num;
> >
> > I have been wondering for some time if we shall not start to document
> > these fields as they always take so much time to get back to what each
> > of them represent. How do you feel about starting a header?
> >
> > /**
> > * dbat_entry_num: Describe me here.
> > */
> >
> I agree, let's take this separately into a different patch as it will
> make things easier to backport. What do you think?
Works for me.
>
> Cheers,
> Prabhakar
>
> > Without, but preferably with, this added.
> >
> > Reviewed-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
> >
> > > unsigned aligned_tx: 1;
> > > unsigned coalesce_irqs:1; /* Needs software IRQ coalescing */
> > >
> > > diff --git a/drivers/net/ethernet/renesas/ravb_main.c b/drivers/net/ethernet/renesas/ravb_main.c
> > > index 9d3bd65b85ff..69d382e8757d 100644
> > > --- a/drivers/net/ethernet/renesas/ravb_main.c
> > > +++ b/drivers/net/ethernet/renesas/ravb_main.c
> > > @@ -2694,6 +2694,7 @@ static const struct ravb_hw_info ravb_gen2_hw_info = {
> > > .rx_buffer_size = SZ_2K +
> > > SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
> > > .rx_desc_size = sizeof(struct ravb_ex_rx_desc),
> > > + .dbat_entry_num = 22,
> > > .aligned_tx = 1,
> > > .gptp = 1,
> > > .nc_queues = 1,
> > > @@ -2717,6 +2718,7 @@ static const struct ravb_hw_info ravb_gen3_hw_info = {
> > > .rx_buffer_size = SZ_2K +
> > > SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
> > > .rx_desc_size = sizeof(struct ravb_ex_rx_desc),
> > > + .dbat_entry_num = 22,
> > > .internal_delay = 1,
> > > .tx_counters = 1,
> > > .multi_irqs = 1,
> > > @@ -2743,6 +2745,7 @@ static const struct ravb_hw_info ravb_gen4_hw_info = {
> > > .rx_buffer_size = SZ_2K +
> > > SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
> > > .rx_desc_size = sizeof(struct ravb_ex_rx_desc),
> > > + .dbat_entry_num = 22,
> > > .internal_delay = 1,
> > > .tx_counters = 1,
> > > .multi_irqs = 1,
> > > @@ -2769,6 +2772,7 @@ static const struct ravb_hw_info ravb_rzv2m_hw_info = {
> > > .rx_buffer_size = SZ_2K +
> > > SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
> > > .rx_desc_size = sizeof(struct ravb_ex_rx_desc),
> > > + .dbat_entry_num = 22,
> > > .multi_irqs = 1,
> > > .err_mgmt_irqs = 1,
> > > .gptp = 1,
> > > @@ -2794,6 +2798,7 @@ static const struct ravb_hw_info gbeth_hw_info = {
> > > .rx_max_frame_size = SZ_8K,
> > > .rx_buffer_size = SZ_2K,
> > > .rx_desc_size = sizeof(struct ravb_rx_desc),
> > > + .dbat_entry_num = 2,
> > > .aligned_tx = 1,
> > > .coalesce_irqs = 1,
> > > .tx_counters = 1,
> > > @@ -3025,7 +3030,7 @@ static int ravb_probe(struct platform_device *pdev)
> > > ravb_parse_delay_mode(np, ndev);
> > >
> > > /* Allocate descriptor base address table */
> > > - priv->desc_bat_size = sizeof(struct ravb_desc) * DBAT_ENTRY_NUM;
> > > + priv->desc_bat_size = sizeof(struct ravb_desc) * info->dbat_entry_num;
> > > priv->desc_bat = dma_alloc_coherent(ndev->dev.parent, priv->desc_bat_size,
> > > &priv->desc_bat_dma, GFP_KERNEL);
> > > if (!priv->desc_bat) {
> > > @@ -3035,7 +3040,7 @@ static int ravb_probe(struct platform_device *pdev)
> > > error = -ENOMEM;
> > > goto out_rpm_put;
> > > }
> > > - for (q = RAVB_BE; q < DBAT_ENTRY_NUM; q++)
> > > + for (q = RAVB_BE; q < info->dbat_entry_num; q++)
> > > priv->desc_bat[q].die_dt = DT_EOS;
> > >
> > > /* Initialise HW timestamp list */
> > > --
> > > 2.43.0
> > >
> >
> > --
> > Kind Regards,
> > Niklas Söderlund
--
Kind Regards,
Niklas Söderlund
next prev parent reply other threads:[~2025-10-15 17:29 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-15 15:00 [PATCH 0/3] net: ravb: Fix SoC-specific configuration and descriptor handling issues Prabhakar
2025-10-15 15:00 ` [PATCH 1/3] net: ravb: Make DBAT entry count configurable per-SoC Prabhakar
2025-10-15 15:35 ` Niklas Söderlund
2025-10-15 17:05 ` Lad, Prabhakar
2025-10-15 17:29 ` Niklas Söderlund [this message]
2025-10-15 15:00 ` [PATCH 2/3] net: ravb: Allocate correct number of queues based on SoC support Prabhakar
2025-10-15 15:45 ` Niklas Söderlund
2025-10-15 15:00 ` [PATCH 3/3] net: ravb: Enforce descriptor type ordering to prevent early DMA start Prabhakar
2025-10-15 15:56 ` Niklas Söderlund
2025-10-15 17:01 ` Lad, Prabhakar
2025-10-15 17:28 ` Niklas Söderlund
2025-10-16 12:00 ` Fabrizio Castro
2025-10-16 12:39 ` niklas.soderlund
2025-10-17 10:22 ` Fabrizio Castro
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=20251015172904.GH439570@ragnatech.se \
--to=niklas.soderlund@ragnatech.se \
--cc=andrew+netdev@lunn.ch \
--cc=biju.das.jz@bp.renesas.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=fabrizio.castro.jz@renesas.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=paul@pbarker.dev \
--cc=prabhakar.csengg@gmail.com \
--cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
--cc=sergei.shtylyov@cogentembedded.com \
--cc=stable@vger.kernel.org \
/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;
as well as URLs for NNTP newsgroup(s).