From: "Verma, Devendra" <devverma@amd.com>
To: Frank Li <Frank.li@oss.nxp.com>,
Devendra K Verma <devendra.verma@amd.com>
Cc: bhelgaas@google.com, mani@kernel.org, vkoul@kernel.org,
Frank.Li@kernel.org, dmaengine@vger.kernel.org,
linux-kernel@vger.kernel.org, michal.simek@amd.com, "Verma,
Devendra" <Devendra.Verma@amd.com>
Subject: Re: [PATCH RESEND v4] dmaengine: dw-edma: Enable HDMA 64R/W Channels
Date: Fri, 26 Jun 2026 18:46:12 +0530 [thread overview]
Message-ID: <18960153-149c-42b4-aca5-9e266ee5ea87@amd.com> (raw)
In-Reply-To: <aj1PuyaxAHOILiwg@lizhi-Precision-Tower-5810>
On 25-Jun-26 21:26, Frank Li wrote:
> On Tue, Jun 23, 2026 at 04:56:47PM +0530, Devendra K Verma wrote:
>> As per 'Designware Cores PCI Express Controller Databook',
>> Section 7.1 - Overview, HDMA supports 64 Read and 64 Write
>> channels. Current controller driver supports up to 8 read and
>> write channels only. In order to utilize all the channels the
>> controller driver need to have the channel related structs
>> and variables as per the number of channels supported by IP.
>> Following changes are made to enable 64 Read / 64 Write
>> channel support:
>>
>> o Defined HDMA specific macros to reflect the channel count.
>> o The count of ll_regions and dt_regions in dw_edma_chip and
>> dw_edma_pcie_data shall be in accordance to number of read
>> and write channels.
>> o In dw_edma_probe() configure the channels as per the channels
>> of the IP used.
>> o Changed mask types to u64 for higher channel counts.
>>
>> Signed-off-by: Devendra K Verma <devendra.verma@amd.com>
>> ---
> ...
>>
>> @@ -118,7 +129,8 @@ dw_hdma_v0_core_handle_int(struct dw_edma_irq *dw_irq, enum dw_edma_dir dir,
>> unsigned long total, pos, val;
>> irqreturn_t ret = IRQ_NONE;
>> struct dw_edma_chan *chan;
>> - unsigned long off, mask;
>> + unsigned long off;
>> + u64 mask;
>>
>> if (dir == EDMA_DIR_WRITE) {
>> total = dw->wr_ch_cnt;
>> @@ -130,7 +142,11 @@ dw_hdma_v0_core_handle_int(struct dw_edma_irq *dw_irq, enum dw_edma_dir dir,
>> mask = dw_irq->rd_mask;
>> }
>>
>> - for_each_set_bit(pos, &mask, total) {
>> + while (mask) {
>
> can you use DECLARE_BITMAP(status_mask, 64); and keep original for_each_set_bit()
> ref:
>
> https://lore.kernel.org/dmaengine/aj1JrufD1vIZH06s@lizhi-Precision-Tower-5810/T/#u
>
> Frank
>
Hi Frank, thank you for the suggestion!
This is also appreciation comment in the way you review and provide
example for the ease of reviewer and patch developers which helps
in speed up evaluation and implementation for that particular
suggestion.
I will push the changes in next review.
-Devendra
next prev parent reply other threads:[~2026-06-26 13:16 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-23 11:26 Devendra K Verma
2026-06-25 15:56 ` Frank Li
2026-06-26 13:16 ` Verma, Devendra [this message]
-- strict thread matches above, loose matches on Subject: below --
2026-06-23 11:23 Devendra K Verma
2026-06-23 11:28 ` Verma, Devendra
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=18960153-149c-42b4-aca5-9e266ee5ea87@amd.com \
--to=devverma@amd.com \
--cc=Frank.Li@kernel.org \
--cc=Frank.li@oss.nxp.com \
--cc=bhelgaas@google.com \
--cc=devendra.verma@amd.com \
--cc=dmaengine@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mani@kernel.org \
--cc=michal.simek@amd.com \
--cc=vkoul@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
Powered by JetHome