public inbox for cip-dev@lists.cip-project.org
 help / color / mirror / Atom feed
From: Pavel Machek <pavel@denx.de>
To: nobuhiro1.iwamatsu@toshiba.co.jp
Cc: tommaso.merciai.xr@bp.renesas.com, cip-dev@lists.cip-project.org,
	biju.das.jz@bp.renesas.com,
	prabhakar.mahadev-lad.rj@bp.renesas.com, tomm.merciai@gmail.com
Subject: Re: [PATCH 6.1.y-cip 00/17] Add support for RZ/G3E SDHI
Date: Tue, 24 Jun 2025 17:34:20 +0200	[thread overview]
Message-ID: <aFrFfEUVVtaEXrXJ@duo.ucw.cz> (raw)
In-Reply-To: <TY7PR01MB1481888A60B76147F355A71129278A@TY7PR01MB14818.jpnprd01.prod.outlook.com>

[-- Attachment #1: Type: text/plain, Size: 3354 bytes --]

Hi!

> > This patch series aims to add SDHI support for the Renesas RZ/G3E SoCs into
> > the linux-6.1.y-cip kernel.
> > 
> > The SD/MMC block on the RZ/G3E ("R9A09G047") SoC is similar to that of the
> > RZ/V2H, but the SD0 channel has only dedicated pins, so we must use
> > SD_STATUS register to control voltage and power enable (internal regulator).
> > 
> > For SD1 and SD2 channel we can either use gpio regulator or internal regulator
> > (using SD_STATUS register) for voltage switching.
> > 
> > This patchset applies on top of [1]
> > 
> > [1] https://patchwork.kernel.org/project/cip-dev/list/?series=974771
> > 
> > Thanks & Regards,
> > Tommaso
> > Biju Das (10):
> >   clk: renesas: r9a09g047: Add SDHI clocks/resets
> >   dt-bindings: mmc: renesas,sdhi: Document RZ/G3E support
> >   of: base: Add of_get_available_child_by_name()
> >   mmc: renesas_sdhi: Add support for RZ/G3E SoC
> >   mmc: renesas_sdhi: Use of_get_available_child_by_name()
> >   arm64: dts: renesas: r9a09g047: Add SDHI0-SDHI2 nodes
> >   arm64: dts: renesas: r9a09g057: Add support for enabling SDHI internal
> >     regulator
> >   arm64: dts: renesas: rzg3e-smarc-som: Enable SDHI{0,2}
> >   arm64: dts: renesas: rzg3e-smarc-som: Add support to enable SD on
> >     SDHI0
> >   arm64: dts: renesas: r9a09g047e57-smarc: Enable SDHI1
> > 
> > Krzysztof Kozlowski (1):
> >   mmc: renesas_sdhi: use typedef for dma_filter_fn
> > 
> > Wolfram Sang (6):
> >   mmc: tmio: add callback for dma irq
> >   mmc: renesas_sdhi: improve naming of DMA struct
> >   mmc: renesas_sdhi: remove accessor function for internal_dmac
> >   mmc: renesas_sdhi: take DMA end interrupts into account
> >   mmc: renesas_sdhi: add helper to access quirks
> >   mmc: renesas_sdhi: use plain numbers for end_flags
> > 
> >  .../devicetree/bindings/mmc/renesas,sdhi.yaml |  16 ++
> >  arch/arm64/boot/dts/renesas/r9a09g047.dtsi    |  60 +++++++
> >  .../boot/dts/renesas/r9a09g047e57-smarc.dts   |  49 ++++++
> >  arch/arm64/boot/dts/renesas/r9a09g057.dtsi    |  21 +++
> >  .../boot/dts/renesas/renesas-smarc2.dtsi      |  18 ++
> >  .../boot/dts/renesas/rzg3e-smarc-som.dtsi     | 154
> > ++++++++++++++++++
> >  drivers/clk/renesas/r9a09g047-cpg.c           |  31 ++++
> >  drivers/mmc/host/Kconfig                      |   2 +-
> >  drivers/mmc/host/renesas_sdhi.h               |  20 ++-
> >  drivers/mmc/host/renesas_sdhi_core.c          | 148
> > +++++++++++++++--
> >  drivers/mmc/host/renesas_sdhi_internal_dmac.c |  82 ++++++----
> >  drivers/mmc/host/tmio_mmc.h                   |  11 ++
> >  drivers/mmc/host/tmio_mmc_core.c              |   3 +
> >  drivers/of/base.c                             |  27 +++
> >  include/linux/of.h                            |   9 +
> >  15 files changed, 605 insertions(+), 46 deletions(-)
> > 
> I reviewed this series, looks good to me. I can apply, if there are no other comments.
> Test: https://gitlab.com/cip-project/cip-kernel/linux-cip/-/pipelines/1885943849
> 
> Reviewed-by: Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>

Thank you, I added the reviewed-by tag and pushed the series.

Best regards,
								Pavel
-- 
DENX Software Engineering GmbH,        Managing Director: Erika Unter
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

      reply	other threads:[~2025-06-24 15:34 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-23 14:46 [PATCH 6.1.y-cip 00/17] Add support for RZ/G3E SDHI Tommaso Merciai
2025-06-23 14:46 ` [PATCH 6.1.y-cip 01/17] clk: renesas: r9a09g047: Add SDHI clocks/resets Tommaso Merciai
2025-06-23 14:46 ` [PATCH 6.1.y-cip 02/17] dt-bindings: mmc: renesas,sdhi: Document RZ/G3E support Tommaso Merciai
2025-06-23 14:46 ` [PATCH 6.1.y-cip 03/17] of: base: Add of_get_available_child_by_name() Tommaso Merciai
2025-06-23 14:46 ` [PATCH 6.1.y-cip 04/17] mmc: tmio: add callback for dma irq Tommaso Merciai
2025-06-23 14:46 ` [PATCH 6.1.y-cip 05/17] mmc: renesas_sdhi: improve naming of DMA struct Tommaso Merciai
2025-06-23 14:46 ` [PATCH 6.1.y-cip 06/17] mmc: renesas_sdhi: remove accessor function for internal_dmac Tommaso Merciai
2025-06-23 14:46 ` [PATCH 6.1.y-cip 07/17] mmc: renesas_sdhi: take DMA end interrupts into account Tommaso Merciai
2025-06-24  8:44   ` Pavel Machek
2025-06-23 14:46 ` [PATCH 6.1.y-cip 08/17] mmc: renesas_sdhi: add helper to access quirks Tommaso Merciai
2025-06-23 14:46 ` [PATCH 6.1.y-cip 09/17] mmc: renesas_sdhi: use plain numbers for end_flags Tommaso Merciai
2025-06-23 14:46 ` [PATCH 6.1.y-cip 10/17] mmc: renesas_sdhi: use typedef for dma_filter_fn Tommaso Merciai
2025-06-23 14:46 ` [PATCH 6.1.y-cip 11/17] mmc: renesas_sdhi: Add support for RZ/G3E SoC Tommaso Merciai
2025-06-23 14:46 ` [PATCH 6.1.y-cip 12/17] mmc: renesas_sdhi: Use of_get_available_child_by_name() Tommaso Merciai
2025-06-23 14:46 ` [PATCH 6.1.y-cip 13/17] arm64: dts: renesas: r9a09g047: Add SDHI0-SDHI2 nodes Tommaso Merciai
2025-06-23 14:46 ` [PATCH 6.1.y-cip 14/17] arm64: dts: renesas: r9a09g057: Add support for enabling SDHI internal regulator Tommaso Merciai
2025-06-23 14:46 ` [PATCH 6.1.y-cip 15/17] arm64: dts: renesas: rzg3e-smarc-som: Enable SDHI{0,2} Tommaso Merciai
2025-06-23 14:46 ` [PATCH 6.1.y-cip 16/17] arm64: dts: renesas: rzg3e-smarc-som: Add support to enable SD on SDHI0 Tommaso Merciai
2025-06-23 14:46 ` [PATCH 6.1.y-cip 17/17] arm64: dts: renesas: r9a09g047e57-smarc: Enable SDHI1 Tommaso Merciai
2025-06-24  7:24 ` [PATCH 6.1.y-cip 00/17] Add support for RZ/G3E SDHI nobuhiro1.iwamatsu
2025-06-24 15:34   ` Pavel Machek [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=aFrFfEUVVtaEXrXJ@duo.ucw.cz \
    --to=pavel@denx.de \
    --cc=biju.das.jz@bp.renesas.com \
    --cc=cip-dev@lists.cip-project.org \
    --cc=nobuhiro1.iwamatsu@toshiba.co.jp \
    --cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
    --cc=tomm.merciai@gmail.com \
    --cc=tommaso.merciai.xr@bp.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