linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arm: dts: exynos4: add missing pinctrls for I2C controllers
@ 2014-04-16 12:40 Tomasz Stanislawski
  2014-04-16 13:01 ` Tomasz Figa
  0 siblings, 1 reply; 3+ messages in thread
From: Tomasz Stanislawski @ 2014-04-16 12:40 UTC (permalink / raw)
  To: linux-arm-kernel

This patch adds missing pinctrls for I2C controllers 2-7.

Signed-off-by: Tomasz Stanislawski <t.stanislaws@samsung.com>
---
 arch/arm/boot/dts/exynos4.dtsi |   12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/arch/arm/boot/dts/exynos4.dtsi b/arch/arm/boot/dts/exynos4.dtsi
index 0401f4d..288aa81 100644
--- a/arch/arm/boot/dts/exynos4.dtsi
+++ b/arch/arm/boot/dts/exynos4.dtsi
@@ -357,6 +357,8 @@
 		interrupts = <0 60 0>;
 		clocks = <&clock CLK_I2C2>;
 		clock-names = "i2c";
+		pinctrl-names = "default";
+		pinctrl-0 = <&i2c2_bus>;
 		status = "disabled";
 	};

@@ -368,6 +370,8 @@
 		interrupts = <0 61 0>;
 		clocks = <&clock CLK_I2C3>;
 		clock-names = "i2c";
+		pinctrl-names = "default";
+		pinctrl-0 = <&i2c3_bus>;
 		status = "disabled";
 	};

@@ -379,6 +383,8 @@
 		interrupts = <0 62 0>;
 		clocks = <&clock CLK_I2C4>;
 		clock-names = "i2c";
+		pinctrl-names = "default";
+		pinctrl-0 = <&i2c4_bus>;
 		status = "disabled";
 	};

@@ -390,6 +396,8 @@
 		interrupts = <0 63 0>;
 		clocks = <&clock CLK_I2C5>;
 		clock-names = "i2c";
+		pinctrl-names = "default";
+		pinctrl-0 = <&i2c5_bus>;
 		status = "disabled";
 	};

@@ -401,6 +409,8 @@
 		interrupts = <0 64 0>;
 		clocks = <&clock CLK_I2C6>;
 		clock-names = "i2c";
+		pinctrl-names = "default";
+		pinctrl-0 = <&i2c6_bus>;
 		status = "disabled";
 	};

@@ -412,6 +422,8 @@
 		interrupts = <0 65 0>;
 		clocks = <&clock CLK_I2C7>;
 		clock-names = "i2c";
+		pinctrl-names = "default";
+		pinctrl-0 = <&i2c7_bus>;
 		status = "disabled";
 	};

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

* [PATCH] arm: dts: exynos4: add missing pinctrls for I2C controllers
  2014-04-16 12:40 [PATCH] arm: dts: exynos4: add missing pinctrls for I2C controllers Tomasz Stanislawski
@ 2014-04-16 13:01 ` Tomasz Figa
  2014-05-06  2:35   ` Kukjin Kim
  0 siblings, 1 reply; 3+ messages in thread
From: Tomasz Figa @ 2014-04-16 13:01 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Tomasz,

On 16.04.2014 14:40, Tomasz Stanislawski wrote:
> This patch adds missing pinctrls for I2C controllers 2-7.
>
> Signed-off-by: Tomasz Stanislawski <t.stanislaws@samsung.com>
> ---
>   arch/arm/boot/dts/exynos4.dtsi |   12 ++++++++++++
>   1 file changed, 12 insertions(+)
>
> diff --git a/arch/arm/boot/dts/exynos4.dtsi b/arch/arm/boot/dts/exynos4.dtsi
> index 0401f4d..288aa81 100644
> --- a/arch/arm/boot/dts/exynos4.dtsi
> +++ b/arch/arm/boot/dts/exynos4.dtsi
> @@ -357,6 +357,8 @@
>   		interrupts = <0 60 0>;
>   		clocks = <&clock CLK_I2C2>;
>   		clock-names = "i2c";
> +		pinctrl-names = "default";
> +		pinctrl-0 = <&i2c2_bus>;
>   		status = "disabled";
>   	};
>
> @@ -368,6 +370,8 @@
>   		interrupts = <0 61 0>;
>   		clocks = <&clock CLK_I2C3>;
>   		clock-names = "i2c";
> +		pinctrl-names = "default";
> +		pinctrl-0 = <&i2c3_bus>;
>   		status = "disabled";
>   	};
>
> @@ -379,6 +383,8 @@
>   		interrupts = <0 62 0>;
>   		clocks = <&clock CLK_I2C4>;
>   		clock-names = "i2c";
> +		pinctrl-names = "default";
> +		pinctrl-0 = <&i2c4_bus>;
>   		status = "disabled";
>   	};
>
> @@ -390,6 +396,8 @@
>   		interrupts = <0 63 0>;
>   		clocks = <&clock CLK_I2C5>;
>   		clock-names = "i2c";
> +		pinctrl-names = "default";
> +		pinctrl-0 = <&i2c5_bus>;
>   		status = "disabled";
>   	};
>
> @@ -401,6 +409,8 @@
>   		interrupts = <0 64 0>;
>   		clocks = <&clock CLK_I2C6>;
>   		clock-names = "i2c";
> +		pinctrl-names = "default";
> +		pinctrl-0 = <&i2c6_bus>;
>   		status = "disabled";
>   	};
>
> @@ -412,6 +422,8 @@
>   		interrupts = <0 65 0>;
>   		clocks = <&clock CLK_I2C7>;
>   		clock-names = "i2c";
> +		pinctrl-names = "default";
> +		pinctrl-0 = <&i2c7_bus>;
>   		status = "disabled";
>   	};
>
>

Reviewed-by: Tomasz Figa <t.figa@samsung.com>

--
Best regards,
Tomasz

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

* [PATCH] arm: dts: exynos4: add missing pinctrls for I2C controllers
  2014-04-16 13:01 ` Tomasz Figa
@ 2014-05-06  2:35   ` Kukjin Kim
  0 siblings, 0 replies; 3+ messages in thread
From: Kukjin Kim @ 2014-05-06  2:35 UTC (permalink / raw)
  To: linux-arm-kernel

Tomasz Figa wrote:
> 
> Hi Tomasz,
> 
> On 16.04.2014 14:40, Tomasz Stanislawski wrote:
> > This patch adds missing pinctrls for I2C controllers 2-7.
> >
> > Signed-off-by: Tomasz Stanislawski <t.stanislaws@samsung.com>
> > ---
> >   arch/arm/boot/dts/exynos4.dtsi |   12 ++++++++++++
> >   1 file changed, 12 insertions(+)
> >
> > diff --git a/arch/arm/boot/dts/exynos4.dtsi
> b/arch/arm/boot/dts/exynos4.dtsi
> > index 0401f4d..288aa81 100644
> > --- a/arch/arm/boot/dts/exynos4.dtsi
> > +++ b/arch/arm/boot/dts/exynos4.dtsi
> > @@ -357,6 +357,8 @@
> >   		interrupts = <0 60 0>;
> >   		clocks = <&clock CLK_I2C2>;
> >   		clock-names = "i2c";
> > +		pinctrl-names = "default";
> > +		pinctrl-0 = <&i2c2_bus>;
> >   		status = "disabled";
> >   	};
> >
> > @@ -368,6 +370,8 @@
> >   		interrupts = <0 61 0>;
> >   		clocks = <&clock CLK_I2C3>;
> >   		clock-names = "i2c";
> > +		pinctrl-names = "default";
> > +		pinctrl-0 = <&i2c3_bus>;
> >   		status = "disabled";
> >   	};
> >
> > @@ -379,6 +383,8 @@
> >   		interrupts = <0 62 0>;
> >   		clocks = <&clock CLK_I2C4>;
> >   		clock-names = "i2c";
> > +		pinctrl-names = "default";
> > +		pinctrl-0 = <&i2c4_bus>;
> >   		status = "disabled";
> >   	};
> >
> > @@ -390,6 +396,8 @@
> >   		interrupts = <0 63 0>;
> >   		clocks = <&clock CLK_I2C5>;
> >   		clock-names = "i2c";
> > +		pinctrl-names = "default";
> > +		pinctrl-0 = <&i2c5_bus>;
> >   		status = "disabled";
> >   	};
> >
> > @@ -401,6 +409,8 @@
> >   		interrupts = <0 64 0>;
> >   		clocks = <&clock CLK_I2C6>;
> >   		clock-names = "i2c";
> > +		pinctrl-names = "default";
> > +		pinctrl-0 = <&i2c6_bus>;
> >   		status = "disabled";
> >   	};
> >
> > @@ -412,6 +422,8 @@
> >   		interrupts = <0 65 0>;
> >   		clocks = <&clock CLK_I2C7>;
> >   		clock-names = "i2c";
> > +		pinctrl-names = "default";
> > +		pinctrl-0 = <&i2c7_bus>;
> >   		status = "disabled";
> >   	};
> >
> >
> 
> Reviewed-by: Tomasz Figa <t.figa@samsung.com>
> 
Applied, thanks.

- Kukjin

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

end of thread, other threads:[~2014-05-06  2:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-16 12:40 [PATCH] arm: dts: exynos4: add missing pinctrls for I2C controllers Tomasz Stanislawski
2014-04-16 13:01 ` Tomasz Figa
2014-05-06  2:35   ` Kukjin Kim

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