public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] pinctrl: pfc: r8a7791: add mux data for IIC(B) cores
@ 2014-02-23 12:38 Wolfram Sang
  2014-02-25  1:41 ` Laurent Pinchart
  2014-02-25  9:47 ` Linus Walleij
  0 siblings, 2 replies; 3+ messages in thread
From: Wolfram Sang @ 2014-02-23 12:38 UTC (permalink / raw)
  To: linux-sh
  Cc: Magnus Damm, Laurent Pinchart, Wolfram Sang, Linus Walleij,
	linux-kernel

From: Wolfram Sang <wsa@sang-engineering.com>

Signed-off-by: Wolfram Sang <wsa@sang-engineering.com>
---
 drivers/pinctrl/sh-pfc/pfc-r8a7791.c | 64 ++++++++++++++++++++++++++++++++++++
 1 file changed, 64 insertions(+)

diff --git a/drivers/pinctrl/sh-pfc/pfc-r8a7791.c b/drivers/pinctrl/sh-pfc/pfc-r8a7791.c
index 77d103f..cd28cec 100644
--- a/drivers/pinctrl/sh-pfc/pfc-r8a7791.c
+++ b/drivers/pinctrl/sh-pfc/pfc-r8a7791.c
@@ -1943,6 +1943,50 @@ static const unsigned int i2c4_c_pins[] = {
 static const unsigned int i2c4_c_mux[] = {
 	SCL4_C_MARK, SDA4_C_MARK,
 };
+/* - I2C7 ------------------------------------------------------------------- */
+static const unsigned int i2c7_pins[] = {
+	/* SCL, SDA */
+	RCAR_GP_PIN(5, 15), RCAR_GP_PIN(5, 16),
+};
+static const unsigned int i2c7_mux[] = {
+	SCL7_MARK, SDA7_MARK,
+};
+static const unsigned int i2c7_b_pins[] = {
+	/* SCL, SDA */
+	RCAR_GP_PIN(2, 2), RCAR_GP_PIN(2, 3),
+};
+static const unsigned int i2c7_b_mux[] = {
+	SCL7_B_MARK, SDA7_B_MARK,
+};
+static const unsigned int i2c7_c_pins[] = {
+	/* SCL, SDA */
+	RCAR_GP_PIN(6, 28), RCAR_GP_PIN(6, 29),
+};
+static const unsigned int i2c7_c_mux[] = {
+	SCL7_C_MARK, SDA7_C_MARK,
+};
+/* - I2C8 ------------------------------------------------------------------- */
+static const unsigned int i2c8_pins[] = {
+	/* SCL, SDA */
+	RCAR_GP_PIN(4, 13), RCAR_GP_PIN(4, 14),
+};
+static const unsigned int i2c8_mux[] = {
+	SCL8_MARK, SDA8_MARK,
+};
+static const unsigned int i2c8_b_pins[] = {
+	/* SCL, SDA */
+	RCAR_GP_PIN(2, 4), RCAR_GP_PIN(2, 5),
+};
+static const unsigned int i2c8_b_mux[] = {
+	SCL8_B_MARK, SDA8_B_MARK,
+};
+static const unsigned int i2c8_c_pins[] = {
+	/* SCL, SDA */
+	RCAR_GP_PIN(6, 22), RCAR_GP_PIN(6, 23),
+};
+static const unsigned int i2c8_c_mux[] = {
+	SCL8_C_MARK, SDA8_C_MARK,
+};
 /* - INTC ------------------------------------------------------------------- */
 static const unsigned int intc_irq0_pins[] = {
 	/* IRQ */
@@ -3123,6 +3167,12 @@ static const struct sh_pfc_pin_group pinmux_groups[] = {
 	SH_PFC_PIN_GROUP(i2c4),
 	SH_PFC_PIN_GROUP(i2c4_b),
 	SH_PFC_PIN_GROUP(i2c4_c),
+	SH_PFC_PIN_GROUP(i2c7),
+	SH_PFC_PIN_GROUP(i2c7_b),
+	SH_PFC_PIN_GROUP(i2c7_c),
+	SH_PFC_PIN_GROUP(i2c8),
+	SH_PFC_PIN_GROUP(i2c8_b),
+	SH_PFC_PIN_GROUP(i2c8_c),
 	SH_PFC_PIN_GROUP(intc_irq0),
 	SH_PFC_PIN_GROUP(intc_irq1),
 	SH_PFC_PIN_GROUP(intc_irq2),
@@ -3335,6 +3385,18 @@ static const char * const i2c4_groups[] = {
 	"i2c4_c",
 };
 
+static const char * const i2c7_groups[] = {
+	"i2c7",
+	"i2c7_b",
+	"i2c7_c",
+};
+
+static const char * const i2c8_groups[] = {
+	"i2c8",
+	"i2c8_b",
+	"i2c8_c",
+};
+
 static const char * const intc_groups[] = {
 	"intc_irq0",
 	"intc_irq1",
@@ -3566,6 +3628,8 @@ static const struct sh_pfc_function pinmux_functions[] = {
 	SH_PFC_FUNCTION(i2c2),
 	SH_PFC_FUNCTION(i2c3),
 	SH_PFC_FUNCTION(i2c4),
+	SH_PFC_FUNCTION(i2c7),
+	SH_PFC_FUNCTION(i2c8),
 	SH_PFC_FUNCTION(intc),
 	SH_PFC_FUNCTION(mmc),
 	SH_PFC_FUNCTION(msiof0),
-- 
1.8.5.1


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

* Re: [PATCH] pinctrl: pfc: r8a7791: add mux data for IIC(B) cores
  2014-02-23 12:38 [PATCH] pinctrl: pfc: r8a7791: add mux data for IIC(B) cores Wolfram Sang
@ 2014-02-25  1:41 ` Laurent Pinchart
  2014-02-25  9:47 ` Linus Walleij
  1 sibling, 0 replies; 3+ messages in thread
From: Laurent Pinchart @ 2014-02-25  1:41 UTC (permalink / raw)
  To: Wolfram Sang; +Cc: linux-sh, Magnus Damm, Linus Walleij, linux-kernel

Hi Wolfram,

Thank you for the patch.

On Sunday 23 February 2014 13:38:12 Wolfram Sang wrote:
> From: Wolfram Sang <wsa@sang-engineering.com>
> 
> Signed-off-by: Wolfram Sang <wsa@sang-engineering.com>

Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

> ---
>  drivers/pinctrl/sh-pfc/pfc-r8a7791.c | 64 +++++++++++++++++++++++++++++++++
>  1 file changed, 64 insertions(+)
> 
> diff --git a/drivers/pinctrl/sh-pfc/pfc-r8a7791.c
> b/drivers/pinctrl/sh-pfc/pfc-r8a7791.c index 77d103f..cd28cec 100644
> --- a/drivers/pinctrl/sh-pfc/pfc-r8a7791.c
> +++ b/drivers/pinctrl/sh-pfc/pfc-r8a7791.c
> @@ -1943,6 +1943,50 @@ static const unsigned int i2c4_c_pins[] = {
>  static const unsigned int i2c4_c_mux[] = {
>  	SCL4_C_MARK, SDA4_C_MARK,
>  };
> +/* - I2C7 -------------------------------------------------------------- */
> +static const unsigned int i2c7_pins[] = {
> +	/* SCL, SDA */
> +	RCAR_GP_PIN(5, 15), RCAR_GP_PIN(5, 16),
> +};
> +static const unsigned int i2c7_mux[] = {
> +	SCL7_MARK, SDA7_MARK,
> +};
> +static const unsigned int i2c7_b_pins[] = {
> +	/* SCL, SDA */
> +	RCAR_GP_PIN(2, 2), RCAR_GP_PIN(2, 3),
> +};
> +static const unsigned int i2c7_b_mux[] = {
> +	SCL7_B_MARK, SDA7_B_MARK,
> +};
> +static const unsigned int i2c7_c_pins[] = {
> +	/* SCL, SDA */
> +	RCAR_GP_PIN(6, 28), RCAR_GP_PIN(6, 29),
> +};
> +static const unsigned int i2c7_c_mux[] = {
> +	SCL7_C_MARK, SDA7_C_MARK,
> +};
> +/* - I2C8 -------------------------------------------------------------- */
> +static const unsigned int i2c8_pins[] = {
> +	/* SCL, SDA */
> +	RCAR_GP_PIN(4, 13), RCAR_GP_PIN(4, 14),
> +};
> +static const unsigned int i2c8_mux[] = {
> +	SCL8_MARK, SDA8_MARK,
> +};
> +static const unsigned int i2c8_b_pins[] = {
> +	/* SCL, SDA */
> +	RCAR_GP_PIN(2, 4), RCAR_GP_PIN(2, 5),
> +};
> +static const unsigned int i2c8_b_mux[] = {
> +	SCL8_B_MARK, SDA8_B_MARK,
> +};
> +static const unsigned int i2c8_c_pins[] = {
> +	/* SCL, SDA */
> +	RCAR_GP_PIN(6, 22), RCAR_GP_PIN(6, 23),
> +};
> +static const unsigned int i2c8_c_mux[] = {
> +	SCL8_C_MARK, SDA8_C_MARK,
> +};
>  /* - INTC -------------------------------------------------------------- */
> static const unsigned int intc_irq0_pins[] = {
>  	/* IRQ */
> @@ -3123,6 +3167,12 @@ static const struct sh_pfc_pin_group pinmux_groups[]
> = { SH_PFC_PIN_GROUP(i2c4),
>  	SH_PFC_PIN_GROUP(i2c4_b),
>  	SH_PFC_PIN_GROUP(i2c4_c),
> +	SH_PFC_PIN_GROUP(i2c7),
> +	SH_PFC_PIN_GROUP(i2c7_b),
> +	SH_PFC_PIN_GROUP(i2c7_c),
> +	SH_PFC_PIN_GROUP(i2c8),
> +	SH_PFC_PIN_GROUP(i2c8_b),
> +	SH_PFC_PIN_GROUP(i2c8_c),
>  	SH_PFC_PIN_GROUP(intc_irq0),
>  	SH_PFC_PIN_GROUP(intc_irq1),
>  	SH_PFC_PIN_GROUP(intc_irq2),
> @@ -3335,6 +3385,18 @@ static const char * const i2c4_groups[] = {
>  	"i2c4_c",
>  };
> 
> +static const char * const i2c7_groups[] = {
> +	"i2c7",
> +	"i2c7_b",
> +	"i2c7_c",
> +};
> +
> +static const char * const i2c8_groups[] = {
> +	"i2c8",
> +	"i2c8_b",
> +	"i2c8_c",
> +};
> +
>  static const char * const intc_groups[] = {
>  	"intc_irq0",
>  	"intc_irq1",
> @@ -3566,6 +3628,8 @@ static const struct sh_pfc_function pinmux_functions[]
> = { SH_PFC_FUNCTION(i2c2),
>  	SH_PFC_FUNCTION(i2c3),
>  	SH_PFC_FUNCTION(i2c4),
> +	SH_PFC_FUNCTION(i2c7),
> +	SH_PFC_FUNCTION(i2c8),
>  	SH_PFC_FUNCTION(intc),
>  	SH_PFC_FUNCTION(mmc),
>  	SH_PFC_FUNCTION(msiof0),

-- 
Regards,

Laurent Pinchart


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

* Re: [PATCH] pinctrl: pfc: r8a7791: add mux data for IIC(B) cores
  2014-02-23 12:38 [PATCH] pinctrl: pfc: r8a7791: add mux data for IIC(B) cores Wolfram Sang
  2014-02-25  1:41 ` Laurent Pinchart
@ 2014-02-25  9:47 ` Linus Walleij
  1 sibling, 0 replies; 3+ messages in thread
From: Linus Walleij @ 2014-02-25  9:47 UTC (permalink / raw)
  To: Wolfram Sang
  Cc: linux-sh@vger.kernel.org, Magnus Damm, Laurent Pinchart,
	linux-kernel@vger.kernel.org

On Sun, Feb 23, 2014 at 1:38 PM, Wolfram Sang <wsa@the-dreams.de> wrote:

> From: Wolfram Sang <wsa@sang-engineering.com>
>
> Signed-off-by: Wolfram Sang <wsa@sang-engineering.com>

Applied with Laurent's ACK.

Yours,
Linus Walleij

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

end of thread, other threads:[~2014-02-25  9:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-23 12:38 [PATCH] pinctrl: pfc: r8a7791: add mux data for IIC(B) cores Wolfram Sang
2014-02-25  1:41 ` Laurent Pinchart
2014-02-25  9:47 ` Linus Walleij

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox