linux-renesas-soc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/4] arm64: V4H Sound support
@ 2023-01-26  2:18 Kuninori Morimoto
  2023-01-26  2:19 ` [PATCH 1/4] pinctrl: renesas: r8a779g0: Add Audio Clock support Kuninori Morimoto
                   ` (5 more replies)
  0 siblings, 6 replies; 12+ messages in thread
From: Kuninori Morimoto @ 2023-01-26  2:18 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Linux-Renesas


Hi Geert

This patch-set is for V4H Sound support.

Sound test on V4H needs Custom White Hawk and extra Sound board.
Sound Driver Gen4 part is not yet tested, but SoC parts are OK,
and these are for it.

Kuninori Morimoto (1):
  clk: renesas: r8a779g0: Add Audio clocks

Linh Phung (3):
  pinctrl: renesas: r8a779g0: Add Audio Clock support
  pinctrl: renesas: r8a779g0: Add Audio SSI support
  arm64: dts: renesas: r8a779g0: R-Car Sound support

 arch/arm64/boot/dts/renesas/r8a779g0.dtsi | 78 +++++++++++++++++++++++
 drivers/clk/renesas/r8a779g0-cpg-mssr.c   |  2 +
 drivers/pinctrl/renesas/pfc-r8a779g0.c    | 58 +++++++++++++++++
 3 files changed, 138 insertions(+)

-- 
2.25.1


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

* [PATCH 1/4] pinctrl: renesas: r8a779g0: Add Audio Clock support
  2023-01-26  2:18 [PATCH 0/4] arm64: V4H Sound support Kuninori Morimoto
@ 2023-01-26  2:19 ` Kuninori Morimoto
  2023-01-27 13:41   ` Geert Uytterhoeven
  2023-01-26  2:19 ` [PATCH 2/4] pinctrl: renesas: r8a779g0: Add Audio SSI support Kuninori Morimoto
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Kuninori Morimoto @ 2023-01-26  2:19 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Linux-Renesas


From: Linh Phung <linh.phung.jy@renesas.com>

This patch adds Audio Clock pins, groups, and functions
to r8a779g0 SoC.

Signed-off-by: Linh Phung <linh.phung.jy@renesas.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 drivers/pinctrl/renesas/pfc-r8a779g0.c | 29 ++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/drivers/pinctrl/renesas/pfc-r8a779g0.c b/drivers/pinctrl/renesas/pfc-r8a779g0.c
index 5dd1c2c7708a..7674b2a50f6c 100644
--- a/drivers/pinctrl/renesas/pfc-r8a779g0.c
+++ b/drivers/pinctrl/renesas/pfc-r8a779g0.c
@@ -1196,6 +1196,25 @@ static const struct sh_pfc_pin pinmux_pins[] = {
 	PINMUX_GPIO_GP_ALL(),
 };
 
+/* - AUDIO CLOCK ----------------------------------------- */
+static const unsigned int audio_clkin_pins[] = {
+	/* CLK IN */
+	RCAR_GP_PIN(1, 22),
+};
+
+static const unsigned int audio_clkin_mux[] = {
+	AUDIO_CLKIN_MARK,
+};
+
+static const unsigned int audio_clkout_pins[] = {
+	/* CLK OUT */
+	RCAR_GP_PIN(1, 21),
+};
+
+static const unsigned int audio_clkout_mux[] = {
+	AUDIO_CLKOUT_MARK,
+};
+
 /* - AVB0 ------------------------------------------------ */
 static const unsigned int avb0_link_pins[] = {
 	/* AVB0_LINK */
@@ -2461,6 +2480,9 @@ static const unsigned int tsn0_avtp_match_mux[] = {
 };
 
 static const struct sh_pfc_pin_group pinmux_groups[] = {
+	SH_PFC_PIN_GROUP(audio_clkin),
+	SH_PFC_PIN_GROUP(audio_clkout),
+
 	SH_PFC_PIN_GROUP(avb0_link),
 	SH_PFC_PIN_GROUP(avb0_magic),
 	SH_PFC_PIN_GROUP(avb0_phy_int),
@@ -2640,6 +2662,11 @@ static const struct sh_pfc_pin_group pinmux_groups[] = {
 	SH_PFC_PIN_GROUP(tsn0_avtp_match),
 };
 
+static const char * const audio_clk_groups[] = {
+	"audio_clkin",
+	"audio_clkout",
+};
+
 static const char * const avb0_groups[] = {
 	"avb0_link",
 	"avb0_magic",
@@ -2957,6 +2984,8 @@ static const char * const tsn0_groups[] = {
 };
 
 static const struct sh_pfc_function pinmux_functions[] = {
+	SH_PFC_FUNCTION(audio_clk),
+
 	SH_PFC_FUNCTION(avb0),
 	SH_PFC_FUNCTION(avb1),
 	SH_PFC_FUNCTION(avb2),
-- 
2.25.1


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

* [PATCH 2/4] pinctrl: renesas: r8a779g0: Add Audio SSI support
  2023-01-26  2:18 [PATCH 0/4] arm64: V4H Sound support Kuninori Morimoto
  2023-01-26  2:19 ` [PATCH 1/4] pinctrl: renesas: r8a779g0: Add Audio Clock support Kuninori Morimoto
@ 2023-01-26  2:19 ` Kuninori Morimoto
  2023-01-27 13:42   ` Geert Uytterhoeven
  2023-01-26  2:19 ` [PATCH 3/4] clk: renesas: r8a779g0: Add Audio clocks Kuninori Morimoto
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Kuninori Morimoto @ 2023-01-26  2:19 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Linux-Renesas


From: Linh Phung <linh.phung.jy@renesas.com>

This patch adds Audio SSI pins, groups, and functions
to r8a779g0 SoC.

Signed-off-by: Linh Phung <linh.phung.jy@renesas.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 drivers/pinctrl/renesas/pfc-r8a779g0.c | 29 ++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/drivers/pinctrl/renesas/pfc-r8a779g0.c b/drivers/pinctrl/renesas/pfc-r8a779g0.c
index 7674b2a50f6c..89e993ec0b85 100644
--- a/drivers/pinctrl/renesas/pfc-r8a779g0.c
+++ b/drivers/pinctrl/renesas/pfc-r8a779g0.c
@@ -2348,6 +2348,25 @@ static const unsigned int scif_clk_mux[] = {
 	SCIF_CLK_MARK,
 };
 
+/* - SSI ------------------------------------------------- */
+static const unsigned int ssi_data_pins[] = {
+	/* SSI_SD */
+	RCAR_GP_PIN(1, 20),
+};
+
+static const unsigned int ssi_data_mux[] = {
+	SSI_SD_MARK,
+};
+
+static const unsigned int ssi_ctrl_pins[] = {
+	/* SSI_SCK,  SSI_WS */
+	RCAR_GP_PIN(1, 18), RCAR_GP_PIN(1, 19),
+};
+
+static const unsigned int ssi_ctrl_mux[] = {
+	SSI_SCK_MARK, SSI_WS_MARK,
+};
+
 /* - TPU ------------------------------------------------------------------- */
 static const unsigned int tpu_to0_pins[] = {
 	/* TPU0TO0 */
@@ -2643,6 +2662,9 @@ static const struct sh_pfc_pin_group pinmux_groups[] = {
 	SH_PFC_PIN_GROUP(scif4_ctrl),
 	SH_PFC_PIN_GROUP(scif_clk),
 
+	SH_PFC_PIN_GROUP(ssi_data),
+	SH_PFC_PIN_GROUP(ssi_ctrl),
+
 	SH_PFC_PIN_GROUP(tpu_to0),		/* suffix might be updated */
 	SH_PFC_PIN_GROUP(tpu_to0_a),		/* suffix might be updated */
 	SH_PFC_PIN_GROUP(tpu_to1),		/* suffix might be updated */
@@ -2960,6 +2982,11 @@ static const char * const scif_clk_groups[] = {
 	"scif_clk",
 };
 
+static const char * const ssi_groups[] = {
+	"ssi_data",
+	"ssi_ctrl",
+};
+
 static const char * const tpu_groups[] = {
 	/* suffix might be updated */
 	"tpu_to0",
@@ -3043,6 +3070,8 @@ static const struct sh_pfc_function pinmux_functions[] = {
 	SH_PFC_FUNCTION(scif4),
 	SH_PFC_FUNCTION(scif_clk),
 
+	SH_PFC_FUNCTION(ssi),
+
 	SH_PFC_FUNCTION(tpu),
 
 	SH_PFC_FUNCTION(tsn0),
-- 
2.25.1


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

* [PATCH 3/4] clk: renesas: r8a779g0: Add Audio clocks
  2023-01-26  2:18 [PATCH 0/4] arm64: V4H Sound support Kuninori Morimoto
  2023-01-26  2:19 ` [PATCH 1/4] pinctrl: renesas: r8a779g0: Add Audio Clock support Kuninori Morimoto
  2023-01-26  2:19 ` [PATCH 2/4] pinctrl: renesas: r8a779g0: Add Audio SSI support Kuninori Morimoto
@ 2023-01-26  2:19 ` Kuninori Morimoto
  2023-01-26 13:56   ` Geert Uytterhoeven
  2023-01-26  2:19 ` [PATCH 4/4] arm64: dts: renesas: r8a779g0: R-Car Sound support Kuninori Morimoto
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Kuninori Morimoto @ 2023-01-26  2:19 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Linux-Renesas


From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

This patch adds module clocks for Audio (SSI/SSIU) blocks on
the Renesas R-Car V4H (R8A779G0) SoC.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 drivers/clk/renesas/r8a779g0-cpg-mssr.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/clk/renesas/r8a779g0-cpg-mssr.c b/drivers/clk/renesas/r8a779g0-cpg-mssr.c
index c6337a408e5e..1c95aa1cd07e 100644
--- a/drivers/clk/renesas/r8a779g0-cpg-mssr.c
+++ b/drivers/clk/renesas/r8a779g0-cpg-mssr.c
@@ -202,6 +202,8 @@ static const struct mssr_mod_clk r8a779g0_mod_clks[] __initconst = {
 	DEF_MOD("pfc1",		916,	R8A779G0_CLK_CL16M),
 	DEF_MOD("pfc2",		917,	R8A779G0_CLK_CL16M),
 	DEF_MOD("pfc3",		918,	R8A779G0_CLK_CL16M),
+	DEF_MOD("ssiu",		2926,	R8A779G0_CLK_S0D6_PER),
+	DEF_MOD("ssi",		2927,	R8A779G0_CLK_S0D6_PER),
 };
 
 /*
-- 
2.25.1


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

* [PATCH 4/4] arm64: dts: renesas: r8a779g0: R-Car Sound support
  2023-01-26  2:18 [PATCH 0/4] arm64: V4H Sound support Kuninori Morimoto
                   ` (2 preceding siblings ...)
  2023-01-26  2:19 ` [PATCH 3/4] clk: renesas: r8a779g0: Add Audio clocks Kuninori Morimoto
@ 2023-01-26  2:19 ` Kuninori Morimoto
  2023-01-26  2:26 ` [PATCH 0/4] arm64: V4H " Kuninori Morimoto
  2023-01-26  9:01 ` Geert Uytterhoeven
  5 siblings, 0 replies; 12+ messages in thread
From: Kuninori Morimoto @ 2023-01-26  2:19 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Linux-Renesas


From: Linh Phung <linh.phung.jy@renesas.com>

This patch adds Sound support for R-Car V4H.

Signed-off-by: Linh Phung <linh.phung.jy@renesas.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 arch/arm64/boot/dts/renesas/r8a779g0.dtsi | 78 +++++++++++++++++++++++
 1 file changed, 78 insertions(+)

diff --git a/arch/arm64/boot/dts/renesas/r8a779g0.dtsi b/arch/arm64/boot/dts/renesas/r8a779g0.dtsi
index 45d8d927ad26..46696af36b4d 100644
--- a/arch/arm64/boot/dts/renesas/r8a779g0.dtsi
+++ b/arch/arm64/boot/dts/renesas/r8a779g0.dtsi
@@ -172,6 +172,15 @@ scif_clk: scif {
 		clock-frequency = <0>;
 	};
 
+	/*
+	 * The clock from AUDIO_CLKIN pin are configured as 0 Hz fixed frequency
+	 */
+	audio_clkin: audio_clkin {
+		compatible = "fixed-clock";
+		#clock-cells = <0>;
+		clock-frequency = <0>;
+	};
+
 	soc: soc {
 		compatible = "simple-bus";
 		interrupt-parent = <&gic>;
@@ -1162,6 +1171,75 @@ dmac1: dma-controller@e7351000 {
 			dma-channels = <16>;
 		};
 
+		rcar_sound: sound@ec540000 {
+			/*
+			 * #sound-dai-cells is required
+			 *
+			 * Single DAI : #sound-dai-cells = <0>;	<&rcar_sound>;
+			 * Multi  DAI : #sound-dai-cells = <1>;	<&rcar_sound N>;
+			 */
+			/*
+			 * #clock-cells is required
+			 *
+			 * clkout		: #clock-cells = <0>;	<&rcar_sound>;
+			 * audio_clkout0/1/2/3	: #clock-cells = <1>;	<&rcar_sound N>;
+			 */
+			compatible = "renesas,rcar_sound-r8a779g0", "renesas,rcar_sound-gen4";
+			reg =	<0 0xec5a0000 0 0x020>,		/* ADG  */
+				<0 0xec540000 0 0x1000>,	/* SSIU */
+				<0 0xec541000 0 0x050>,		/* SSI  */
+				<0 0xec400000 0 0x40000>;	/* SDMC */
+			reg-names = "adg", "ssiu", "ssi", "sdmc";
+
+			clocks = <&cpg CPG_MOD 2926>, <&cpg CPG_MOD 2927>, <&audio_clkin>;
+			clock-names = "ssiu.0", "ssi.0", "clk_a";
+			power-domains = <&sysc R8A779G0_PD_ALWAYS_ON>;
+			resets = <&cpg 2926>, <&cpg 2927>;
+			reset-names = "ssiu.0", "ssi.0";
+			status = "disabled";
+
+			rcar_sound,ssiu {
+				ssiu00: ssiu-0 {
+					dmas = <&dmac0 0x6e>, <&dmac0 0x6f>;
+					dma-names = "tx", "rx";
+				};
+				ssiu01: ssiu-1 {
+					dmas = <&dmac0 0x6c>, <&dmac0 0x6d>;
+					dma-names = "tx", "rx";
+				};
+				ssiu02: ssiu-2 {
+					dmas = <&dmac0 0x6a>, <&dmac0 0x6b>;
+					dma-names = "tx", "rx";
+				};
+				ssiu03: ssiu-3 {
+					dmas = <&dmac0 0x68>, <&dmac0 0x69>;
+					dma-names = "tx", "rx";
+				};
+				ssiu04: ssiu-4 {
+					dmas = <&dmac0 0x66>, <&dmac0 0x67>;
+					dma-names = "tx", "rx";
+				};
+				ssiu05: ssiu-5 {
+					dmas = <&dmac0 0x64>, <&dmac0 0x65>;
+					dma-names = "tx", "rx";
+				};
+				ssiu06: ssiu-6 {
+					dmas = <&dmac0 0x62>, <&dmac0 0x63>;
+					dma-names = "tx", "rx";
+				};
+				ssiu07: ssiu-7 {
+					dmas = <&dmac0 0x60>, <&dmac0 0x61>;
+					dma-names = "tx", "rx";
+				};
+			};
+
+			rcar_sound,ssi {
+				ssi0: ssi-0 {
+					interrupts = <GIC_SPI 258 IRQ_TYPE_LEVEL_HIGH>;
+				};
+			};
+		};
+
 		mmc0: mmc@ee140000 {
 			compatible = "renesas,sdhi-r8a779g0",
 				     "renesas,rcar-gen4-sdhi";
-- 
2.25.1


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

* Re: [PATCH 0/4] arm64: V4H Sound support
  2023-01-26  2:18 [PATCH 0/4] arm64: V4H Sound support Kuninori Morimoto
                   ` (3 preceding siblings ...)
  2023-01-26  2:19 ` [PATCH 4/4] arm64: dts: renesas: r8a779g0: R-Car Sound support Kuninori Morimoto
@ 2023-01-26  2:26 ` Kuninori Morimoto
  2023-01-26  9:01 ` Geert Uytterhoeven
  5 siblings, 0 replies; 12+ messages in thread
From: Kuninori Morimoto @ 2023-01-26  2:26 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Linux-Renesas


Hi Geert

> This patch-set is for V4H Sound support.
> 
> Sound test on V4H needs Custom White Hawk and extra Sound board.
> Sound Driver Gen4 part is not yet tested, but SoC parts are OK,
> and these are for it.

It will indicate DT check warning, because V4H Sound support is not yet included.
Could you please drop [4/4] patch for now ? I will repost it, later.

Thank you for your help !!

Best regards
---
Kuninori Morimoto

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

* Re: [PATCH 0/4] arm64: V4H Sound support
  2023-01-26  2:18 [PATCH 0/4] arm64: V4H Sound support Kuninori Morimoto
                   ` (4 preceding siblings ...)
  2023-01-26  2:26 ` [PATCH 0/4] arm64: V4H " Kuninori Morimoto
@ 2023-01-26  9:01 ` Geert Uytterhoeven
  2023-01-26 23:23   ` Kuninori Morimoto
  5 siblings, 1 reply; 12+ messages in thread
From: Geert Uytterhoeven @ 2023-01-26  9:01 UTC (permalink / raw)
  To: Kuninori Morimoto; +Cc: Linux-Renesas

Hi Morimoto-san,

On Thu, Jan 26, 2023 at 3:18 AM Kuninori Morimoto
<kuninori.morimoto.gx@renesas.com> wrote:
> This patch-set is for V4H Sound support.

Thanks for your series!

> Sound test on V4H needs Custom White Hawk and extra Sound board.

Do you have more details?
I assume you can get digital sound from CN-40?

> Sound Driver Gen4 part is not yet tested, but SoC parts are OK,
> and these are for it.

What do you mean by "Sound Driver Gen4 part"?

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] 12+ messages in thread

* Re: [PATCH 3/4] clk: renesas: r8a779g0: Add Audio clocks
  2023-01-26  2:19 ` [PATCH 3/4] clk: renesas: r8a779g0: Add Audio clocks Kuninori Morimoto
@ 2023-01-26 13:56   ` Geert Uytterhoeven
  2023-01-27  4:25     ` Kuninori Morimoto
  0 siblings, 1 reply; 12+ messages in thread
From: Geert Uytterhoeven @ 2023-01-26 13:56 UTC (permalink / raw)
  To: Kuninori Morimoto; +Cc: Linux-Renesas

Hi Morimoto-san,

On Thu, Jan 26, 2023 at 3:19 AM Kuninori Morimoto
<kuninori.morimoto.gx@renesas.com> wrote:
> From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
>
> This patch adds module clocks for Audio (SSI/SSIU) blocks on
> the Renesas R-Car V4H (R8A779G0) SoC.
>
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

Thanks for your patch!

> --- a/drivers/clk/renesas/r8a779g0-cpg-mssr.c
> +++ b/drivers/clk/renesas/r8a779g0-cpg-mssr.c
> @@ -202,6 +202,8 @@ static const struct mssr_mod_clk r8a779g0_mod_clks[] __initconst = {
>         DEF_MOD("pfc1",         916,    R8A779G0_CLK_CL16M),
>         DEF_MOD("pfc2",         917,    R8A779G0_CLK_CL16M),
>         DEF_MOD("pfc3",         918,    R8A779G0_CLK_CL16M),
> +       DEF_MOD("ssiu",         2926,   R8A779G0_CLK_S0D6_PER),
> +       DEF_MOD("ssi",          2927,   R8A779G0_CLK_S0D6_PER),

LGTM, although I couldn't verify the parent clock.

>  };

Does this actually work as-is?
The arrays in drivers/clk/renesas/renesas-cpg-mssr.c do not yet contain
the register offsets for e.g. MSTPCR28 and beyond...

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] 12+ messages in thread

* Re: [PATCH 0/4] arm64: V4H Sound support
  2023-01-26  9:01 ` Geert Uytterhoeven
@ 2023-01-26 23:23   ` Kuninori Morimoto
  0 siblings, 0 replies; 12+ messages in thread
From: Kuninori Morimoto @ 2023-01-26 23:23 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Linux-Renesas


Hi Geert

> > Sound test on V4H needs Custom White Hawk and extra Sound board.
> 
> Do you have more details?
> I assume you can get digital sound from CN-40?

Yes, and need magical connection to extra Sound board.

> > Sound Driver Gen4 part is not yet tested, but SoC parts are OK,
> > and these are for it.
> 
> What do you mean by "Sound Driver Gen4 part"?

Current Sound driver doesn't support Gen4 yet.
We need patch for it. It is not included in this patch-set.

Thank you for your help !!

Best regards
---
Kuninori Morimoto

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

* Re: [PATCH 3/4] clk: renesas: r8a779g0: Add Audio clocks
  2023-01-26 13:56   ` Geert Uytterhoeven
@ 2023-01-27  4:25     ` Kuninori Morimoto
  0 siblings, 0 replies; 12+ messages in thread
From: Kuninori Morimoto @ 2023-01-27  4:25 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Linux-Renesas


Hi Geert

> Does this actually work as-is?
> The arrays in drivers/clk/renesas/renesas-cpg-mssr.c do not yet contain
> the register offsets for e.g. MSTPCR28 and beyond...

Thank you for pointing it.
I needs extra patch.

I will re-check and post the patches again.

Thank you for your help !!

Best regards
---
Kuninori Morimoto

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

* Re: [PATCH 1/4] pinctrl: renesas: r8a779g0: Add Audio Clock support
  2023-01-26  2:19 ` [PATCH 1/4] pinctrl: renesas: r8a779g0: Add Audio Clock support Kuninori Morimoto
@ 2023-01-27 13:41   ` Geert Uytterhoeven
  0 siblings, 0 replies; 12+ messages in thread
From: Geert Uytterhoeven @ 2023-01-27 13:41 UTC (permalink / raw)
  To: Kuninori Morimoto; +Cc: Linux-Renesas

On Thu, Jan 26, 2023 at 3:19 AM Kuninori Morimoto
<kuninori.morimoto.gx@renesas.com> wrote:
> From: Linh Phung <linh.phung.jy@renesas.com>
>
> This patch adds Audio Clock pins, groups, and functions
> to r8a779g0 SoC.
>
> Signed-off-by: Linh Phung <linh.phung.jy@renesas.com>
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
i.e. will queue in renesas-pinctrl.

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] 12+ messages in thread

* Re: [PATCH 2/4] pinctrl: renesas: r8a779g0: Add Audio SSI support
  2023-01-26  2:19 ` [PATCH 2/4] pinctrl: renesas: r8a779g0: Add Audio SSI support Kuninori Morimoto
@ 2023-01-27 13:42   ` Geert Uytterhoeven
  0 siblings, 0 replies; 12+ messages in thread
From: Geert Uytterhoeven @ 2023-01-27 13:42 UTC (permalink / raw)
  To: Kuninori Morimoto; +Cc: Linux-Renesas

On Thu, Jan 26, 2023 at 3:19 AM Kuninori Morimoto
<kuninori.morimoto.gx@renesas.com> wrote:
> From: Linh Phung <linh.phung.jy@renesas.com>
>
> This patch adds Audio SSI pins, groups, and functions
> to r8a779g0 SoC.
>
> Signed-off-by: Linh Phung <linh.phung.jy@renesas.com>
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
i.e. will queue in renesas-pinctrl.

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] 12+ messages in thread

end of thread, other threads:[~2023-01-27 13:42 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-26  2:18 [PATCH 0/4] arm64: V4H Sound support Kuninori Morimoto
2023-01-26  2:19 ` [PATCH 1/4] pinctrl: renesas: r8a779g0: Add Audio Clock support Kuninori Morimoto
2023-01-27 13:41   ` Geert Uytterhoeven
2023-01-26  2:19 ` [PATCH 2/4] pinctrl: renesas: r8a779g0: Add Audio SSI support Kuninori Morimoto
2023-01-27 13:42   ` Geert Uytterhoeven
2023-01-26  2:19 ` [PATCH 3/4] clk: renesas: r8a779g0: Add Audio clocks Kuninori Morimoto
2023-01-26 13:56   ` Geert Uytterhoeven
2023-01-27  4:25     ` Kuninori Morimoto
2023-01-26  2:19 ` [PATCH 4/4] arm64: dts: renesas: r8a779g0: R-Car Sound support Kuninori Morimoto
2023-01-26  2:26 ` [PATCH 0/4] arm64: V4H " Kuninori Morimoto
2023-01-26  9:01 ` Geert Uytterhoeven
2023-01-26 23:23   ` Kuninori Morimoto

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