mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Claudiu Beznea <claudiu.beznea@tuxon.dev>
To: vkoul@kernel.org, geert+renesas@glider.be,
	biju.das.jz@bp.renesas.com, fabrizio.castro.jz@renesas.com,
	prabhakar.mahadev-lad.rj@bp.renesas.com
Cc: dmaengine@vger.kernel.org, linux-kernel@vger.kernel.org,
	Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>
Subject: Re: [PATCH v8 0/8] dmaengine: sh: rz-dmac: Add tx_status and pause/resume support
Date: Thu, 29 Jan 2026 11:44:18 +0200	[thread overview]
Message-ID: <721cc697-0091-4938-80e9-93005f38c98d@tuxon.dev> (raw)
In-Reply-To: <20260120133330.3738850-1-claudiu.beznea.uj@bp.renesas.com>

Hi,

Gentle ping on this series.

Thank you,
Claudiu

On 1/20/26 15:33, Claudiu wrote:
> From: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>
> 
> Hi,
> 
> Series adds tx_status and pause/resume support for the rz-dmac driver.
> Along with it were added fixes and improvements identified while working
> on the above mentioned enhancements.
> 
> Previous versions were addressed by Biju. The previous versions were
> posted here:
> 
> v4: https://lore.kernel.org/all/20240628151728.84470-1-biju.das.jz@bp.renesas.com/
> v3: https://lore.kernel.org/all/20230412152445.117439-1-biju.das.jz@bp.renesas.com/
> v2: https://lore.kernel.org/all/20230405140842.201883-1-biju.das.jz@bp.renesas.com/
> v1: https://lore.kernel.org/all/20230324094957.115071-1-biju.das.jz@bp.renesas.com/
> 
> Changes in v8:
> - rebased on top of https://lore.kernel.org/all/20260105114445.878262-1-cosmin-gabriel.tanislav.xa@renesas.com/
> - populated engine->residue_granularity in patch 7/8
> - report proper residue in case the channel is paused in patch 8/8
> 
> Changes in v7:
> - adjusted the pause/resume support
> - collected tags
> 
> Changes in v6:
> - added patches:
> -- dmaengine: sh: rz-dmac: Drop read of CHCTRL register
> -- dmaengine: sh: rz-dmac: Drop goto instruction and label
> - use vc lock in IRQ handler only for the error path
> - fixed typos
> - adjusted patch
>    "dmaengine: sh: rz-dmac: Add device_{pause,resume}() callbacks"
> 
> Changes in v5:
> - added patches
> -- dmaengine: sh: rz-dmac: Add rz_dmac_invalidate_lmdesc()
> -- dmaengine: sh: rz-dmac: Protect the driver specific lists
> -- dmaengine: sh: rz-dmac: Move all CHCTRL updates under spinlock
> -- dmaengine: sh: rz-dmac: Drop unnecessary local_irq_save() call
> -- dmaengine: sh: rz-dmac: Add device_{pause,resume}() callbacks
> -- dmaengine: sh: rz-dmac: Add rz_dmac_invalidate_lmdesc()
> - for pause/resume used the DMA controller support to pause/resume
>    transfers compared with previous versions
> - adjusted patches:
> -- dmaengine: sh: rz-dmac: Add device_tx_status() callback
> 
> Thank you,
> Claudiu
> 
> Biju Das (2):
>    dmaengine: sh: rz-dmac: Add rz_dmac_invalidate_lmdesc()
>    dmaengine: sh: rz-dmac: Add device_tx_status() callback
> 
> Claudiu Beznea (6):
>    dmaengine: sh: rz-dmac: Protect the driver specific lists
>    dmaengine: sh: rz-dmac: Move CHCTRL updates under spinlock
>    dmaengine: sh: rz-dmac: Drop read of CHCTRL register
>    dmaengine: sh: rz-dmac: Drop goto instruction and label
>    dmaengine: sh: rz-dmac: Drop unnecessary local_irq_save() call
>    dmaengine: sh: rz-dmac: Add device_{pause,resume}() callbacks
> 
>   drivers/dma/sh/rz-dmac.c | 289 ++++++++++++++++++++++++++++++++-------
>   1 file changed, 239 insertions(+), 50 deletions(-)
> 


      parent reply	other threads:[~2026-01-29  9:44 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-20 13:33 Claudiu
2026-01-20 13:33 ` [PATCH v8 1/8] dmaengine: sh: rz-dmac: Protect the driver specific lists Claudiu
2026-02-25 16:17   ` Frank Li
2026-01-20 13:33 ` [PATCH v8 2/8] dmaengine: sh: rz-dmac: Move CHCTRL updates under spinlock Claudiu
2026-02-25 16:19   ` Frank Li
2026-01-20 13:33 ` [PATCH v8 3/8] dmaengine: sh: rz-dmac: Drop read of CHCTRL register Claudiu
2026-02-25 16:20   ` Frank Li
2026-01-20 13:33 ` [PATCH v8 4/8] dmaengine: sh: rz-dmac: Drop goto instruction and label Claudiu
2026-02-25 16:23   ` Frank Li
2026-01-20 13:33 ` [PATCH v8 5/8] dmaengine: sh: rz-dmac: Drop unnecessary local_irq_save() call Claudiu
2026-02-25 16:23   ` Frank Li
2026-01-20 13:33 ` [PATCH v8 6/8] dmaengine: sh: rz-dmac: Add rz_dmac_invalidate_lmdesc() Claudiu
2026-02-25 16:26   ` Frank Li
2026-01-20 13:33 ` [PATCH v8 7/8] dmaengine: sh: rz-dmac: Add device_tx_status() callback Claudiu
2026-02-25 16:43   ` Frank Li
2026-03-02 13:49     ` Claudiu Beznea
2026-03-04 16:37       ` Frank Li
2026-01-20 13:33 ` [PATCH v8 8/8] dmaengine: sh: rz-dmac: Add device_{pause,resume}() callbacks Claudiu
2026-02-25 16:49   ` Frank Li
2026-03-02 13:50     ` Claudiu Beznea
2026-01-29  9:44 ` Claudiu Beznea [this message]

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=721cc697-0091-4938-80e9-93005f38c98d@tuxon.dev \
    --to=claudiu.beznea@tuxon.dev \
    --cc=biju.das.jz@bp.renesas.com \
    --cc=claudiu.beznea.uj@bp.renesas.com \
    --cc=dmaengine@vger.kernel.org \
    --cc=fabrizio.castro.jz@renesas.com \
    --cc=geert+renesas@glider.be \
    --cc=linux-kernel@vger.kernel.org \
    --cc=prabhakar.mahadev-lad.rj@bp.renesas.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

all inboxes | Powered by JetHome®