devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Add watchdog DT node to Exynos5420 and fix watchdog DT node name for Exynos5
@ 2013-08-27 12:45 Leela Krishna Amudala
  2013-08-27 12:45 ` [PATCH 1/2] ARM: dts: Fix the " Leela Krishna Amudala
  2013-08-27 12:45 ` [PATCH 2/2] ARM: dts: add watchdog device tree node for exynos5420 Leela Krishna Amudala
  0 siblings, 2 replies; 3+ messages in thread
From: Leela Krishna Amudala @ 2013-08-27 12:45 UTC (permalink / raw)
  To: linux-samsung-soc; +Cc: kgene.kim, devicetree, t.figa

This patchset does the following things
	- Fixes the watchdog DT node name to follow convention
	- Adds watchdog DT node to Exynos5420 SoC

Note: This series is rebased and tested on Kgene's for-next branch

Leela Krishna Amudala (2):
  ARM: dts: Fix the watchdog DT node name for Exynos5
  ARM: dts: add watchdog device tree node for exynos5420

 arch/arm/boot/dts/exynos5.dtsi    |    2 +-
 arch/arm/boot/dts/exynos5250.dtsi |    3 ++-
 arch/arm/boot/dts/exynos5420.dtsi |    6 ++++++
 3 files changed, 9 insertions(+), 2 deletions(-)

-- 
1.7.10.4

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

* [PATCH 1/2] ARM: dts: Fix the watchdog DT node name for Exynos5
  2013-08-27 12:45 [PATCH 0/2] Add watchdog DT node to Exynos5420 and fix watchdog DT node name for Exynos5 Leela Krishna Amudala
@ 2013-08-27 12:45 ` Leela Krishna Amudala
  2013-08-27 12:45 ` [PATCH 2/2] ARM: dts: add watchdog device tree node for exynos5420 Leela Krishna Amudala
  1 sibling, 0 replies; 3+ messages in thread
From: Leela Krishna Amudala @ 2013-08-27 12:45 UTC (permalink / raw)
  To: linux-samsung-soc; +Cc: kgene.kim, devicetree, t.figa

Fixes the watchdog DT node name for Exynos5 as per the DT node naming
convention also update "status" property for Exynos5250 SoC.

Signed-off-by: Leela Krishna Amudala <l.krishna@samsung.com>
---
 arch/arm/boot/dts/exynos5.dtsi    |    2 +-
 arch/arm/boot/dts/exynos5250.dtsi |    3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/exynos5.dtsi b/arch/arm/boot/dts/exynos5.dtsi
index 074739d..a8bf0c2 100644
--- a/arch/arm/boot/dts/exynos5.dtsi
+++ b/arch/arm/boot/dts/exynos5.dtsi
@@ -102,7 +102,7 @@
 		status = "disabled";
 	};
 
-	watchdog {
+	watchdog@101D0000 {
 		compatible = "samsung,s3c2410-wdt";
 		reg = <0x101D0000 0x100>;
 		interrupts = <0 42 0>;
diff --git a/arch/arm/boot/dts/exynos5250.dtsi b/arch/arm/boot/dts/exynos5250.dtsi
index 864ae90..e623096 100644
--- a/arch/arm/boot/dts/exynos5250.dtsi
+++ b/arch/arm/boot/dts/exynos5250.dtsi
@@ -158,9 +158,10 @@
 		interrupts = <0 47 0>;
 	};
 
-	watchdog {
+	watchdog@101D0000 {
 		clocks = <&clock 336>;
 		clock-names = "watchdog";
+		status = "okay";
 	};
 
 	g2d@10850000 {
-- 
1.7.10.4

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

* [PATCH 2/2] ARM: dts: add watchdog device tree node for exynos5420
  2013-08-27 12:45 [PATCH 0/2] Add watchdog DT node to Exynos5420 and fix watchdog DT node name for Exynos5 Leela Krishna Amudala
  2013-08-27 12:45 ` [PATCH 1/2] ARM: dts: Fix the " Leela Krishna Amudala
@ 2013-08-27 12:45 ` Leela Krishna Amudala
  1 sibling, 0 replies; 3+ messages in thread
From: Leela Krishna Amudala @ 2013-08-27 12:45 UTC (permalink / raw)
  To: linux-samsung-soc; +Cc: kgene.kim, devicetree, t.figa

Add watchdog device tree node for exynos5420

Signed-off-by: Leela Krishna Amudala <l.krishna@samsung.com>
---
 arch/arm/boot/dts/exynos5420.dtsi |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/arm/boot/dts/exynos5420.dtsi b/arch/arm/boot/dts/exynos5420.dtsi
index d537cd7..9fadc23 100644
--- a/arch/arm/boot/dts/exynos5420.dtsi
+++ b/arch/arm/boot/dts/exynos5420.dtsi
@@ -186,6 +186,12 @@
 		status = "okay";
 	};
 
+	watchdog@101D0000 {
+		clocks = <&clock 316>;
+		clock-names = "watchdog";
+		status = "okay";
+	};
+
 	serial@12C00000 {
 		clocks = <&clock 257>, <&clock 128>;
 		clock-names = "uart", "clk_uart_baud0";
-- 
1.7.10.4

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

end of thread, other threads:[~2013-08-27 12:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-27 12:45 [PATCH 0/2] Add watchdog DT node to Exynos5420 and fix watchdog DT node name for Exynos5 Leela Krishna Amudala
2013-08-27 12:45 ` [PATCH 1/2] ARM: dts: Fix the " Leela Krishna Amudala
2013-08-27 12:45 ` [PATCH 2/2] ARM: dts: add watchdog device tree node for exynos5420 Leela Krishna Amudala

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