All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/7] Add G2D nodes to Exynos4 machines
@ 2013-02-18  5:02 Sachin Kamat
  2013-02-18  5:02 ` [PATCH 1/7] ARM: dts: Add G2D node to exynos4210.dtsi Sachin Kamat
                   ` (7 more replies)
  0 siblings, 8 replies; 13+ messages in thread
From: Sachin Kamat @ 2013-02-18  5:02 UTC (permalink / raw)
  To: linux-samsung-soc, devicetree-discuss
  Cc: kgene.kim, s.nawrocki, patches, sachin.kamat

This patch series is based on Kukjin Kim's next/dt-exynos branch of
git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git
tree.

Changes since v1:
* Removed power-domain entry in patch 1/7 as the driver currently
  does not use it.
* Addressed review comments from Sylwester Nawrocki and Tomasz Figa
  in patch 7/7.

Sachin Kamat (7):
  ARM: dts: Add G2D node to exynos4210.dtsi
  ARM: dts: Add G2D node to SMDKV310
  ARM: dts: Add G2D node to exynos4210-origen
  ARM: dts: Add G2D node to exynos4x12.dtsi
  ARM: dts: Add G2D node to SMDK4412
  ARM: dts: Add G2D node to exynos4412-origen
  ARM: dts: Add Samsung G2D DT bindings documentation

 .../devicetree/bindings/gpu/samsung-g2d.txt        |   20 ++++++++++++++++++++
 arch/arm/boot/dts/exynos4210-origen.dts            |    4 ++++
 arch/arm/boot/dts/exynos4210-smdkv310.dts          |    4 ++++
 arch/arm/boot/dts/exynos4210.dtsi                  |    7 +++++++
 arch/arm/boot/dts/exynos4412-smdk4412.dts          |    8 ++++++++
 arch/arm/boot/dts/exynos4x12.dtsi                  |    7 +++++++
 6 files changed, 50 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/gpu/samsung-g2d.txt

-- 
1.7.4.1

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

* [PATCH 1/7] ARM: dts: Add G2D node to exynos4210.dtsi
  2013-02-18  5:02 [PATCH v2 0/7] Add G2D nodes to Exynos4 machines Sachin Kamat
@ 2013-02-18  5:02 ` Sachin Kamat
  2013-02-18  5:02 ` [PATCH 2/7] ARM: dts: Add G2D node to SMDKV310 Sachin Kamat
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 13+ messages in thread
From: Sachin Kamat @ 2013-02-18  5:02 UTC (permalink / raw)
  To: linux-samsung-soc, devicetree-discuss
  Cc: kgene.kim, s.nawrocki, patches, sachin.kamat

Added G2D DT node to Exynos4210.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 arch/arm/boot/dts/exynos4210.dtsi |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/exynos4210.dtsi b/arch/arm/boot/dts/exynos4210.dtsi
index e31bfc4..19aa167 100644
--- a/arch/arm/boot/dts/exynos4210.dtsi
+++ b/arch/arm/boot/dts/exynos4210.dtsi
@@ -47,6 +47,13 @@
 			     <0 12 0>, <0 13 0>, <0 14 0>, <0 15 0>;
 	};
 
+	g2d@12800000 {
+		compatible = "samsung,s5pv210-g2d";
+		reg = <0x12800000 0x1000>;
+		interrupts = <0 89 0>;
+		status = "disabled";
+	};
+
 	pinctrl_0: pinctrl@11400000 {
 		compatible = "samsung,pinctrl-exynos4210";
 		reg = <0x11400000 0x1000>;
-- 
1.7.4.1

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

* [PATCH 2/7] ARM: dts: Add G2D node to SMDKV310
  2013-02-18  5:02 [PATCH v2 0/7] Add G2D nodes to Exynos4 machines Sachin Kamat
  2013-02-18  5:02 ` [PATCH 1/7] ARM: dts: Add G2D node to exynos4210.dtsi Sachin Kamat
@ 2013-02-18  5:02 ` Sachin Kamat
  2013-02-18  5:02 ` [PATCH 3/7] ARM: dts: Add G2D node to exynos4210-origen Sachin Kamat
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 13+ messages in thread
From: Sachin Kamat @ 2013-02-18  5:02 UTC (permalink / raw)
  To: linux-samsung-soc, devicetree-discuss
  Cc: kgene.kim, s.nawrocki, patches, sachin.kamat

Added G2D DT node to SMDKV310 board.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 arch/arm/boot/dts/exynos4210-smdkv310.dts |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/exynos4210-smdkv310.dts b/arch/arm/boot/dts/exynos4210-smdkv310.dts
index 2b1e03a..7bb16aa 100644
--- a/arch/arm/boot/dts/exynos4210-smdkv310.dts
+++ b/arch/arm/boot/dts/exynos4210-smdkv310.dts
@@ -43,6 +43,10 @@
 		status = "okay";
 	};
 
+	g2d@12800000 {
+		status = "okay";
+	};
+
 	codec@13400000 {
 		samsung,mfc-r = <0x43000000 0x800000>;
 		samsung,mfc-l = <0x51000000 0x800000>;
-- 
1.7.4.1

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

* [PATCH 3/7] ARM: dts: Add G2D node to exynos4210-origen
  2013-02-18  5:02 [PATCH v2 0/7] Add G2D nodes to Exynos4 machines Sachin Kamat
  2013-02-18  5:02 ` [PATCH 1/7] ARM: dts: Add G2D node to exynos4210.dtsi Sachin Kamat
  2013-02-18  5:02 ` [PATCH 2/7] ARM: dts: Add G2D node to SMDKV310 Sachin Kamat
@ 2013-02-18  5:02 ` Sachin Kamat
  2013-02-18  5:02 ` [PATCH 4/7] ARM: dts: Add G2D node to exynos4x12.dtsi Sachin Kamat
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 13+ messages in thread
From: Sachin Kamat @ 2013-02-18  5:02 UTC (permalink / raw)
  To: linux-samsung-soc, devicetree-discuss
  Cc: kgene.kim, s.nawrocki, patches, sachin.kamat

Added G2D DT node to Origen4210 board.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 arch/arm/boot/dts/exynos4210-origen.dts |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/exynos4210-origen.dts b/arch/arm/boot/dts/exynos4210-origen.dts
index 052606b..e081d89 100644
--- a/arch/arm/boot/dts/exynos4210-origen.dts
+++ b/arch/arm/boot/dts/exynos4210-origen.dts
@@ -57,6 +57,10 @@
 		status = "okay";
 	};
 
+	g2d@12800000 {
+		status = "okay";
+	};
+
 	codec@13400000 {
 		samsung,mfc-r = <0x43000000 0x800000>;
 		samsung,mfc-l = <0x51000000 0x800000>;
-- 
1.7.4.1

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

* [PATCH 4/7] ARM: dts: Add G2D node to exynos4x12.dtsi
  2013-02-18  5:02 [PATCH v2 0/7] Add G2D nodes to Exynos4 machines Sachin Kamat
                   ` (2 preceding siblings ...)
  2013-02-18  5:02 ` [PATCH 3/7] ARM: dts: Add G2D node to exynos4210-origen Sachin Kamat
@ 2013-02-18  5:02 ` Sachin Kamat
  2013-02-18  5:02 ` [PATCH 5/7] ARM: dts: Add G2D node to SMDK4412 Sachin Kamat
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 13+ messages in thread
From: Sachin Kamat @ 2013-02-18  5:02 UTC (permalink / raw)
  To: linux-samsung-soc, devicetree-discuss
  Cc: kgene.kim, s.nawrocki, patches, sachin.kamat

Added G2D DT node to exynos4x12.dtsi file.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 arch/arm/boot/dts/exynos4x12.dtsi |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/exynos4x12.dtsi b/arch/arm/boot/dts/exynos4x12.dtsi
index 179a62e..3721eec 100644
--- a/arch/arm/boot/dts/exynos4x12.dtsi
+++ b/arch/arm/boot/dts/exynos4x12.dtsi
@@ -36,6 +36,13 @@
 			     <0 16 0>, <0 17 0>, <0 18 0>, <0 19 0>;
 	};
 
+	g2d@10800000 {
+		compatible = "samsung,exynos4212-g2d";
+		reg = <0x10800000 0x1000>;
+		interrupts = <0 89 0>;
+		status = "disabled";
+	};
+
 	pinctrl_0: pinctrl@11400000 {
 		compatible = "samsung,pinctrl-exynos4x12";
 		reg = <0x11400000 0x1000>;
-- 
1.7.4.1

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

* [PATCH 5/7] ARM: dts: Add G2D node to SMDK4412
  2013-02-18  5:02 [PATCH v2 0/7] Add G2D nodes to Exynos4 machines Sachin Kamat
                   ` (3 preceding siblings ...)
  2013-02-18  5:02 ` [PATCH 4/7] ARM: dts: Add G2D node to exynos4x12.dtsi Sachin Kamat
@ 2013-02-18  5:02 ` Sachin Kamat
  2013-02-18  5:02 ` [PATCH 6/7] ARM: dts: Add G2D node to exynos4412-origen Sachin Kamat
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 13+ messages in thread
From: Sachin Kamat @ 2013-02-18  5:02 UTC (permalink / raw)
  To: linux-samsung-soc, devicetree-discuss
  Cc: kgene.kim, s.nawrocki, patches, sachin.kamat

Added G2D DT node to SMDK4412 board.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 arch/arm/boot/dts/exynos4412-smdk4412.dts |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/exynos4412-smdk4412.dts b/arch/arm/boot/dts/exynos4412-smdk4412.dts
index 6ae4276..bba53a8 100644
--- a/arch/arm/boot/dts/exynos4412-smdk4412.dts
+++ b/arch/arm/boot/dts/exynos4412-smdk4412.dts
@@ -27,6 +27,10 @@
 		bootargs ="root=/dev/ram0 rw ramdisk=8192 initrd=0x41000000,8M console=ttySAC1,115200 init=/linuxrc";
 	};
 
+	g2d@10800000 {
+		status = "okay";
+	};
+
 	sdhci@12530000 {
 		bus-width = <4>;
 		pinctrl-0 = <&sd2_clk &sd2_cmd &sd2_bus4 &sd2_cd>;
-- 
1.7.4.1

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

* [PATCH 6/7] ARM: dts: Add G2D node to exynos4412-origen
  2013-02-18  5:02 [PATCH v2 0/7] Add G2D nodes to Exynos4 machines Sachin Kamat
                   ` (4 preceding siblings ...)
  2013-02-18  5:02 ` [PATCH 5/7] ARM: dts: Add G2D node to SMDK4412 Sachin Kamat
@ 2013-02-18  5:02 ` Sachin Kamat
  2013-02-18  5:02 ` [PATCH 7/7] ARM: dts: Add Samsung G2D DT bindings documentation Sachin Kamat
  2013-03-07  3:42 ` [PATCH v2 0/7] Add G2D nodes to Exynos4 machines Sachin Kamat
  7 siblings, 0 replies; 13+ messages in thread
From: Sachin Kamat @ 2013-02-18  5:02 UTC (permalink / raw)
  To: linux-samsung-soc, devicetree-discuss
  Cc: kgene.kim, s.nawrocki, patches, sachin.kamat

Added G2D DT node to Origen4412 board.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 arch/arm/boot/dts/exynos4412-smdk4412.dts |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/exynos4412-smdk4412.dts b/arch/arm/boot/dts/exynos4412-smdk4412.dts
index bba53a8..539670b 100644
--- a/arch/arm/boot/dts/exynos4412-smdk4412.dts
+++ b/arch/arm/boot/dts/exynos4412-smdk4412.dts
@@ -31,6 +31,10 @@
 		status = "okay";
 	};
 
+	g2d@10800000 {
+		status = "okay";
+	};
+
 	sdhci@12530000 {
 		bus-width = <4>;
 		pinctrl-0 = <&sd2_clk &sd2_cmd &sd2_bus4 &sd2_cd>;
-- 
1.7.4.1

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

* [PATCH 7/7] ARM: dts: Add Samsung G2D DT bindings documentation
  2013-02-18  5:02 [PATCH v2 0/7] Add G2D nodes to Exynos4 machines Sachin Kamat
                   ` (5 preceding siblings ...)
  2013-02-18  5:02 ` [PATCH 6/7] ARM: dts: Add G2D node to exynos4412-origen Sachin Kamat
@ 2013-02-18  5:02 ` Sachin Kamat
  2013-03-07  3:42 ` [PATCH v2 0/7] Add G2D nodes to Exynos4 machines Sachin Kamat
  7 siblings, 0 replies; 13+ messages in thread
From: Sachin Kamat @ 2013-02-18  5:02 UTC (permalink / raw)
  To: linux-samsung-soc, devicetree-discuss
  Cc: kgene.kim, s.nawrocki, patches, sachin.kamat, Tomasz Figa, Inki Dae

Added documentaion about G2D bindings.

Cc: Tomasz Figa <tomasz.figa@gmail.com>
Cc: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 .../devicetree/bindings/gpu/samsung-g2d.txt        |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/gpu/samsung-g2d.txt

diff --git a/Documentation/devicetree/bindings/gpu/samsung-g2d.txt b/Documentation/devicetree/bindings/gpu/samsung-g2d.txt
new file mode 100644
index 0000000..2b14a94
--- /dev/null
+++ b/Documentation/devicetree/bindings/gpu/samsung-g2d.txt
@@ -0,0 +1,20 @@
+* Samsung 2D Graphics Accelerator
+
+Required properties:
+  - compatible : value should be one among the following:
+	(a) "samsung,s5pv210-g2d" for G2D IP present in S5PV210 & Exynos4210 SoC
+	(b) "samsung,exynos4212-g2d" for G2D IP present in Exynos4x12 SoCs
+	(c) "samsung,exynos5250-g2d" for G2D IP present in Exynos5250 SoC
+
+  - reg : Physical base address of the IP registers and length of memory
+	  mapped region.
+
+  - interrupts : G2D interrupt number to the CPU.
+
+Example:
+	g2d@12800000 {
+		compatible = "samsung,s5pv210-g2d";
+		reg = <0x12800000 0x1000>;
+		interrupts = <0 89 0>;
+		status = "disabled";
+	};
-- 
1.7.4.1

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

* Re: [PATCH v2 0/7] Add G2D nodes to Exynos4 machines
  2013-02-18  5:02 [PATCH v2 0/7] Add G2D nodes to Exynos4 machines Sachin Kamat
                   ` (6 preceding siblings ...)
  2013-02-18  5:02 ` [PATCH 7/7] ARM: dts: Add Samsung G2D DT bindings documentation Sachin Kamat
@ 2013-03-07  3:42 ` Sachin Kamat
  2013-03-11  6:54   ` Kukjin Kim
  7 siblings, 1 reply; 13+ messages in thread
From: Sachin Kamat @ 2013-03-07  3:42 UTC (permalink / raw)
  To: linux-samsung-soc, devicetree-discuss
  Cc: kgene.kim, s.nawrocki, patches, sachin.kamat

Hi Kukjin,

Can you please look into this series as it is pending since quite some time.

On 18 February 2013 10:32, Sachin Kamat <sachin.kamat@linaro.org> wrote:
> This patch series is based on Kukjin Kim's next/dt-exynos branch of
> git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git
> tree.
>
> Changes since v1:
> * Removed power-domain entry in patch 1/7 as the driver currently
>   does not use it.
> * Addressed review comments from Sylwester Nawrocki and Tomasz Figa
>   in patch 7/7.
>
> Sachin Kamat (7):
>   ARM: dts: Add G2D node to exynos4210.dtsi
>   ARM: dts: Add G2D node to SMDKV310
>   ARM: dts: Add G2D node to exynos4210-origen
>   ARM: dts: Add G2D node to exynos4x12.dtsi
>   ARM: dts: Add G2D node to SMDK4412
>   ARM: dts: Add G2D node to exynos4412-origen
>   ARM: dts: Add Samsung G2D DT bindings documentation

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

* RE: [PATCH v2 0/7] Add G2D nodes to Exynos4 machines
  2013-03-07  3:42 ` [PATCH v2 0/7] Add G2D nodes to Exynos4 machines Sachin Kamat
@ 2013-03-11  6:54   ` Kukjin Kim
  2013-03-26 16:38     ` Sachin Kamat
  0 siblings, 1 reply; 13+ messages in thread
From: Kukjin Kim @ 2013-03-11  6:54 UTC (permalink / raw)
  To: 'Sachin Kamat', linux-samsung-soc, devicetree-discuss
  Cc: s.nawrocki, patches

Sachin Kamat wrote:
> 
> Hi Kukjin,
> 
> Can you please look into this series as it is pending since quite some time.
> 
Applied, I have another opinion about the compatible string though...

I think, it can be sorted out next time :-)

Thanks.

- Kukjin

> On 18 February 2013 10:32, Sachin Kamat <sachin.kamat@linaro.org> wrote:
> > This patch series is based on Kukjin Kim's next/dt-exynos branch of
> > git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git
> > tree.
> >
> > Changes since v1:
> > * Removed power-domain entry in patch 1/7 as the driver currently
> >   does not use it.
> > * Addressed review comments from Sylwester Nawrocki and Tomasz Figa
> >   in patch 7/7.
> >
> > Sachin Kamat (7):
> >   ARM: dts: Add G2D node to exynos4210.dtsi
> >   ARM: dts: Add G2D node to SMDKV310
> >   ARM: dts: Add G2D node to exynos4210-origen
> >   ARM: dts: Add G2D node to exynos4x12.dtsi
> >   ARM: dts: Add G2D node to SMDK4412
> >   ARM: dts: Add G2D node to exynos4412-origen
> >   ARM: dts: Add Samsung G2D DT bindings documentation

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

* Re: [PATCH v2 0/7] Add G2D nodes to Exynos4 machines
  2013-03-11  6:54   ` Kukjin Kim
@ 2013-03-26 16:38     ` Sachin Kamat
  2013-04-08  7:20       ` Kukjin Kim
  0 siblings, 1 reply; 13+ messages in thread
From: Sachin Kamat @ 2013-03-26 16:38 UTC (permalink / raw)
  To: Kukjin Kim; +Cc: linux-samsung-soc, devicetree-discuss

On 11 March 2013 12:24, Kukjin Kim <kgene.kim@samsung.com> wrote:
> Sachin Kamat wrote:
>>
>> Hi Kukjin,
>>
>> Can you please look into this series as it is pending since quite some time.
>>
> Applied, I have another opinion about the compatible string though...

Couldn't find this series in your latest for-next. Please let me know
which branch this is applied to.



>> On 18 February 2013 10:32, Sachin Kamat <sachin.kamat@linaro.org> wrote:
>> > This patch series is based on Kukjin Kim's next/dt-exynos branch of
>> > git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git
>> > tree.
>> >
>> > Changes since v1:
>> > * Removed power-domain entry in patch 1/7 as the driver currently
>> >   does not use it.
>> > * Addressed review comments from Sylwester Nawrocki and Tomasz Figa
>> >   in patch 7/7.
>> >
>> > Sachin Kamat (7):
>> >   ARM: dts: Add G2D node to exynos4210.dtsi
>> >   ARM: dts: Add G2D node to SMDKV310
>> >   ARM: dts: Add G2D node to exynos4210-origen
>> >   ARM: dts: Add G2D node to exynos4x12.dtsi
>> >   ARM: dts: Add G2D node to SMDK4412
>> >   ARM: dts: Add G2D node to exynos4412-origen
>> >   ARM: dts: Add Samsung G2D DT bindings documentation
>



-- 
With warm regards,
Sachin

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

* RE: [PATCH v2 0/7] Add G2D nodes to Exynos4 machines
  2013-03-26 16:38     ` Sachin Kamat
@ 2013-04-08  7:20       ` Kukjin Kim
  0 siblings, 0 replies; 13+ messages in thread
From: Kukjin Kim @ 2013-04-08  7:20 UTC (permalink / raw)
  To: 'Sachin Kamat'; +Cc: linux-samsung-soc, devicetree-discuss

Sachin Kamat wrote:
> 
> On 11 March 2013 12:24, Kukjin Kim <kgene.kim@samsung.com> wrote:
> > Sachin Kamat wrote:
> >>
> >> Hi Kukjin,
> >>
> >> Can you please look into this series as it is pending since quite some
> time.
> >>
> > Applied, I have another opinion about the compatible string though...
> 
> Couldn't find this series in your latest for-next. Please let me know
> which branch this is applied to.
> 
Please check again then if any problems, let me know. I think, it should be
fine :-)

Thanks for your gentle reminder.

- Kukjin

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

* [PATCH 5/7] ARM: dts: Add G2D node to SMDK4412
  2013-02-06 11:51 [PATCH 0/7] ARM: dts: Add G2D DT " Sachin Kamat
@ 2013-02-06 11:51 ` Sachin Kamat
  0 siblings, 0 replies; 13+ messages in thread
From: Sachin Kamat @ 2013-02-06 11:51 UTC (permalink / raw)
  To: linux-samsung-soc, devicetree-discuss
  Cc: kgene.kim, s.nawrocki, inki.dae, sachin.kamat, patches

Added G2D DT node to SMDK4412 board.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
This patch is added on top of below patch:
http://www.mail-archive.com/linux-samsung-soc@vger.kernel.org/msg15148.html
---
 arch/arm/boot/dts/exynos4412-smdk4412.dts |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/exynos4412-smdk4412.dts b/arch/arm/boot/dts/exynos4412-smdk4412.dts
index 6ae4276..bba53a8 100644
--- a/arch/arm/boot/dts/exynos4412-smdk4412.dts
+++ b/arch/arm/boot/dts/exynos4412-smdk4412.dts
@@ -27,6 +27,10 @@
 		bootargs ="root=/dev/ram0 rw ramdisk=8192 initrd=0x41000000,8M console=ttySAC1,115200 init=/linuxrc";
 	};
 
+	g2d@10800000 {
+		status = "okay";
+	};
+
 	sdhci@12530000 {
 		bus-width = <4>;
 		pinctrl-0 = <&sd2_clk &sd2_cmd &sd2_bus4 &sd2_cd>;
-- 
1.7.4.1

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

end of thread, other threads:[~2013-04-08  7:20 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-18  5:02 [PATCH v2 0/7] Add G2D nodes to Exynos4 machines Sachin Kamat
2013-02-18  5:02 ` [PATCH 1/7] ARM: dts: Add G2D node to exynos4210.dtsi Sachin Kamat
2013-02-18  5:02 ` [PATCH 2/7] ARM: dts: Add G2D node to SMDKV310 Sachin Kamat
2013-02-18  5:02 ` [PATCH 3/7] ARM: dts: Add G2D node to exynos4210-origen Sachin Kamat
2013-02-18  5:02 ` [PATCH 4/7] ARM: dts: Add G2D node to exynos4x12.dtsi Sachin Kamat
2013-02-18  5:02 ` [PATCH 5/7] ARM: dts: Add G2D node to SMDK4412 Sachin Kamat
2013-02-18  5:02 ` [PATCH 6/7] ARM: dts: Add G2D node to exynos4412-origen Sachin Kamat
2013-02-18  5:02 ` [PATCH 7/7] ARM: dts: Add Samsung G2D DT bindings documentation Sachin Kamat
2013-03-07  3:42 ` [PATCH v2 0/7] Add G2D nodes to Exynos4 machines Sachin Kamat
2013-03-11  6:54   ` Kukjin Kim
2013-03-26 16:38     ` Sachin Kamat
2013-04-08  7:20       ` Kukjin Kim
  -- strict thread matches above, loose matches on Subject: below --
2013-02-06 11:51 [PATCH 0/7] ARM: dts: Add G2D DT " Sachin Kamat
2013-02-06 11:51 ` [PATCH 5/7] ARM: dts: Add G2D node to SMDK4412 Sachin Kamat

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.