linux-mmc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] mmc: renesas_sdhi: Add r8a77961 support
@ 2019-12-05 13:43 Geert Uytterhoeven
  2019-12-05 13:43 ` [PATCH 1/2] dt-bindings: mmc: renesas_sdhi: Document " Geert Uytterhoeven
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2019-12-05 13:43 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland
  Cc: Ulf Hansson, Wolfram Sang, linux-mmc, devicetree,
	linux-renesas-soc, Geert Uytterhoeven

	Hi all,

This patch series documents DT bindings for the SDHI controller in the
Renesas R-Car M3-W+ (R8A77961) SoC, and adds support for it to the
driver.

The second patch may be dropped, once "[PATCH] mmc: renesas_sdhi: remove
whitelist for internal DMAC"[1] has been accepted.

Thanks!

[1] https://lore.kernel.org/linux-mmc/20191203194859.917-1-wsa@the-dreams.de/

Geert Uytterhoeven (2):
  dt-bindings: mmc: renesas_sdhi: Document r8a77961 support
  mmc: renesas_sdhi_internal_dmac: Add r8a77961 support

 Documentation/devicetree/bindings/mmc/renesas,sdhi.txt | 3 ++-
 drivers/mmc/host/renesas_sdhi_internal_dmac.c          | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

-- 
2.17.1

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/2] dt-bindings: mmc: renesas_sdhi: Document r8a77961 support
  2019-12-05 13:43 [PATCH 0/2] mmc: renesas_sdhi: Add r8a77961 support Geert Uytterhoeven
@ 2019-12-05 13:43 ` Geert Uytterhoeven
  2019-12-10 13:09   ` Ulf Hansson
  2019-12-05 13:43 ` [PATCH 2/2] mmc: renesas_sdhi_internal_dmac: Add " Geert Uytterhoeven
  2019-12-05 17:54 ` [PATCH 0/2] mmc: renesas_sdhi: " Niklas Söderlund
  2 siblings, 1 reply; 5+ messages in thread
From: Geert Uytterhoeven @ 2019-12-05 13:43 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland
  Cc: Ulf Hansson, Wolfram Sang, linux-mmc, devicetree,
	linux-renesas-soc, Geert Uytterhoeven

Document support for the SDHI controller in the Renesas R-Car M3-W+
(R8A77961) SoC.

Update all references to R-Car M3-W from "r8a7796" to "r8a77960", to
avoid confusion between R-Car M3-W (R8A77960) and M3-W+.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
No driver update is needed if "[PATCH] mmc: renesas_sdhi: remove
whitelist for internal DMAC"[1] makes it in first.

[1] https://lore.kernel.org/linux-mmc/20191203194859.917-1-wsa@the-dreams.de/
---
 Documentation/devicetree/bindings/mmc/renesas,sdhi.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/mmc/renesas,sdhi.txt b/Documentation/devicetree/bindings/mmc/renesas,sdhi.txt
index bc08fc43a9be466b..e6cc47844207049b 100644
--- a/Documentation/devicetree/bindings/mmc/renesas,sdhi.txt
+++ b/Documentation/devicetree/bindings/mmc/renesas,sdhi.txt
@@ -23,7 +23,8 @@ Required properties:
 		"renesas,sdhi-r8a7793" - SDHI IP on R8A7793 SoC
 		"renesas,sdhi-r8a7794" - SDHI IP on R8A7794 SoC
 		"renesas,sdhi-r8a7795" - SDHI IP on R8A7795 SoC
-		"renesas,sdhi-r8a7796" - SDHI IP on R8A7796 SoC
+		"renesas,sdhi-r8a7796" - SDHI IP on R8A77960 SoC
+		"renesas,sdhi-r8a77961" - SDHI IP on R8A77961 SoC
 		"renesas,sdhi-r8a77965" - SDHI IP on R8A77965 SoC
 		"renesas,sdhi-r8a77970" - SDHI IP on R8A77970 SoC
 		"renesas,sdhi-r8a77980" - SDHI IP on R8A77980 SoC
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] mmc: renesas_sdhi_internal_dmac: Add r8a77961 support
  2019-12-05 13:43 [PATCH 0/2] mmc: renesas_sdhi: Add r8a77961 support Geert Uytterhoeven
  2019-12-05 13:43 ` [PATCH 1/2] dt-bindings: mmc: renesas_sdhi: Document " Geert Uytterhoeven
@ 2019-12-05 13:43 ` Geert Uytterhoeven
  2019-12-05 17:54 ` [PATCH 0/2] mmc: renesas_sdhi: " Niklas Söderlund
  2 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2019-12-05 13:43 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland
  Cc: Ulf Hansson, Wolfram Sang, linux-mmc, devicetree,
	linux-renesas-soc, Geert Uytterhoeven

Add the R-Car M3-W+ (R8A77961) SoC to the whitelist of supported
devices.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
Not needed if "[PATCH] mmc: renesas_sdhi: remove whitelist for internal
DMAC"[1] makes it in first.

[1] https://lore.kernel.org/linux-mmc/20191203194859.917-1-wsa@the-dreams.de/
---
 drivers/mmc/host/renesas_sdhi_internal_dmac.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mmc/host/renesas_sdhi_internal_dmac.c b/drivers/mmc/host/renesas_sdhi_internal_dmac.c
index 18839a10594c6e23..d5a878eff9607c64 100644
--- a/drivers/mmc/host/renesas_sdhi_internal_dmac.c
+++ b/drivers/mmc/host/renesas_sdhi_internal_dmac.c
@@ -313,6 +313,7 @@ static const struct soc_device_attribute soc_whitelist[] = {
 	{ .soc_id = "r8a77470" },
 	{ .soc_id = "r8a7795" },
 	{ .soc_id = "r8a7796" },
+	{ .soc_id = "r8a77961" },
 	{ .soc_id = "r8a77965" },
 	{ .soc_id = "r8a77970" },
 	{ .soc_id = "r8a77980" },
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 0/2] mmc: renesas_sdhi: Add r8a77961 support
  2019-12-05 13:43 [PATCH 0/2] mmc: renesas_sdhi: Add r8a77961 support Geert Uytterhoeven
  2019-12-05 13:43 ` [PATCH 1/2] dt-bindings: mmc: renesas_sdhi: Document " Geert Uytterhoeven
  2019-12-05 13:43 ` [PATCH 2/2] mmc: renesas_sdhi_internal_dmac: Add " Geert Uytterhoeven
@ 2019-12-05 17:54 ` Niklas Söderlund
  2 siblings, 0 replies; 5+ messages in thread
From: Niklas Söderlund @ 2019-12-05 17:54 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Rob Herring, Mark Rutland, Ulf Hansson, Wolfram Sang, linux-mmc,
	devicetree, linux-renesas-soc

Hi Geert,

Thanks for your series.

On 2019-12-05 14:43:47 +0100, Geert Uytterhoeven wrote:
> 	Hi all,
> 
> This patch series documents DT bindings for the SDHI controller in the
> Renesas R-Car M3-W+ (R8A77961) SoC, and adds support for it to the
> driver.
> 
> The second patch may be dropped, once "[PATCH] mmc: renesas_sdhi: remove
> whitelist for internal DMAC"[1] has been accepted.
> 
> Thanks!
> 
> [1] https://lore.kernel.org/linux-mmc/20191203194859.917-1-wsa@the-dreams.de/

For the whole series,

Reviewed-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
 
> Geert Uytterhoeven (2):
>   dt-bindings: mmc: renesas_sdhi: Document r8a77961 support
>   mmc: renesas_sdhi_internal_dmac: Add r8a77961 support
> 
>  Documentation/devicetree/bindings/mmc/renesas,sdhi.txt | 3 ++-
>  drivers/mmc/host/renesas_sdhi_internal_dmac.c          | 1 +
>  2 files changed, 3 insertions(+), 1 deletion(-)
> 
> -- 
> 2.17.1
> 
> Gr{oetje,eeting}s,
> 
> 						Geert
> 
> --
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
> 
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
> 							    -- Linus Torvalds

-- 
Regards,
Niklas Söderlund

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] dt-bindings: mmc: renesas_sdhi: Document r8a77961 support
  2019-12-05 13:43 ` [PATCH 1/2] dt-bindings: mmc: renesas_sdhi: Document " Geert Uytterhoeven
@ 2019-12-10 13:09   ` Ulf Hansson
  0 siblings, 0 replies; 5+ messages in thread
From: Ulf Hansson @ 2019-12-10 13:09 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Rob Herring, Mark Rutland, Wolfram Sang, linux-mmc, DTML, Linux-Renesas

On Thu, 5 Dec 2019 at 14:43, Geert Uytterhoeven <geert+renesas@glider.be> wrote:
>
> Document support for the SDHI controller in the Renesas R-Car M3-W+
> (R8A77961) SoC.
>
> Update all references to R-Car M3-W from "r8a7796" to "r8a77960", to
> avoid confusion between R-Car M3-W (R8A77960) and M3-W+.
>
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>

Applied for next, thanks!

Kind regards
Uffe


> ---
> No driver update is needed if "[PATCH] mmc: renesas_sdhi: remove
> whitelist for internal DMAC"[1] makes it in first.
>
> [1] https://lore.kernel.org/linux-mmc/20191203194859.917-1-wsa@the-dreams.de/
> ---
>  Documentation/devicetree/bindings/mmc/renesas,sdhi.txt | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/devicetree/bindings/mmc/renesas,sdhi.txt b/Documentation/devicetree/bindings/mmc/renesas,sdhi.txt
> index bc08fc43a9be466b..e6cc47844207049b 100644
> --- a/Documentation/devicetree/bindings/mmc/renesas,sdhi.txt
> +++ b/Documentation/devicetree/bindings/mmc/renesas,sdhi.txt
> @@ -23,7 +23,8 @@ Required properties:
>                 "renesas,sdhi-r8a7793" - SDHI IP on R8A7793 SoC
>                 "renesas,sdhi-r8a7794" - SDHI IP on R8A7794 SoC
>                 "renesas,sdhi-r8a7795" - SDHI IP on R8A7795 SoC
> -               "renesas,sdhi-r8a7796" - SDHI IP on R8A7796 SoC
> +               "renesas,sdhi-r8a7796" - SDHI IP on R8A77960 SoC
> +               "renesas,sdhi-r8a77961" - SDHI IP on R8A77961 SoC
>                 "renesas,sdhi-r8a77965" - SDHI IP on R8A77965 SoC
>                 "renesas,sdhi-r8a77970" - SDHI IP on R8A77970 SoC
>                 "renesas,sdhi-r8a77980" - SDHI IP on R8A77980 SoC
> --
> 2.17.1
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-12-10 13:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-05 13:43 [PATCH 0/2] mmc: renesas_sdhi: Add r8a77961 support Geert Uytterhoeven
2019-12-05 13:43 ` [PATCH 1/2] dt-bindings: mmc: renesas_sdhi: Document " Geert Uytterhoeven
2019-12-10 13:09   ` Ulf Hansson
2019-12-05 13:43 ` [PATCH 2/2] mmc: renesas_sdhi_internal_dmac: Add " Geert Uytterhoeven
2019-12-05 17:54 ` [PATCH 0/2] mmc: renesas_sdhi: " Niklas Söderlund

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).