All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/4] Tegra: All Tamonten-derived boards use onboard NAND
@ 2013-02-14  7:54 Thierry Reding
  2013-02-14  7:54 ` [U-Boot] [PATCH 2/4] Tegra: Medcom-Wide: Enable NAND and boot script support Thierry Reding
                   ` (3 more replies)
  0 siblings, 4 replies; 17+ messages in thread
From: Thierry Reding @ 2013-02-14  7:54 UTC (permalink / raw)
  To: u-boot

Move the nand-controller node to the tegra20-tamonten.dtsi so that it
can be shared between all derived boards.

Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
---
This depends on Tom's "Tegra: MMC: Add DT support for MMC to T20 boards"
patches.

 board/avionic-design/dts/tegra20-tamonten.dtsi | 11 +++++++++++
 board/avionic-design/dts/tegra20-tec.dts       | 11 -----------
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/board/avionic-design/dts/tegra20-tamonten.dtsi b/board/avionic-design/dts/tegra20-tamonten.dtsi
index 4766aba..0a95ac1 100644
--- a/board/avionic-design/dts/tegra20-tamonten.dtsi
+++ b/board/avionic-design/dts/tegra20-tamonten.dtsi
@@ -279,6 +279,17 @@
 		status = "okay";
 	};
 
+	nand-controller at 70008000 {
+		nvidia,wp-gpios = <&gpio 23 0>; /* PC7 */
+		nvidia,width = <8>;
+		nvidia,timing = <26 100 20 80 20 10 12 10 70>;
+
+		nand at 0 {
+			reg = <0>;
+			compatible = "hynix,hy27uf4g2b", "nand-flash";
+		};
+	};
+
 	i2c at 7000c000 {
 		clock-frequency = <400000>;
 		status = "okay";
diff --git a/board/avionic-design/dts/tegra20-tec.dts b/board/avionic-design/dts/tegra20-tec.dts
index 376d279..694682c 100644
--- a/board/avionic-design/dts/tegra20-tec.dts
+++ b/board/avionic-design/dts/tegra20-tec.dts
@@ -32,17 +32,6 @@
 		clock-frequency = <216000000>;
 	};
 
-	nand-controller at 70008000 {
-		nvidia,wp-gpios = <&gpio 23 0>; /* PC7 */
-		nvidia,width = <8>;
-		nvidia,timing = <26 100 20 80 20 10 12 10 70>;
-
-		nand at 0 {
-			reg = <0>;
-			compatible = "hynix,hy27uf4g2b", "nand-flash";
-		};
-	};
-
 	i2c at 7000c000 {
 		status = "disabled";
 	};
-- 
1.8.1.2

^ permalink raw reply related	[flat|nested] 17+ messages in thread
* [U-Boot] [PATCH 1/4] Tegra: All Tamonten-derived boards use onboard NAND
@ 2013-04-03 14:52 Thierry Reding
  2013-04-03 14:52 ` [U-Boot] [PATCH 2/4] Tegra: Medcom-Wide: Enable NAND and boot script support Thierry Reding
  0 siblings, 1 reply; 17+ messages in thread
From: Thierry Reding @ 2013-04-03 14:52 UTC (permalink / raw)
  To: u-boot

Move the nand-controller node to the tegra20-tamonten.dtsi so that it
can be shared between all derived boards.

Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
---
 board/avionic-design/dts/tegra20-tamonten.dtsi | 11 +++++++++++
 board/avionic-design/dts/tegra20-tec.dts       | 11 -----------
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/board/avionic-design/dts/tegra20-tamonten.dtsi b/board/avionic-design/dts/tegra20-tamonten.dtsi
index 86c7bab..f379622 100644
--- a/board/avionic-design/dts/tegra20-tamonten.dtsi
+++ b/board/avionic-design/dts/tegra20-tamonten.dtsi
@@ -279,6 +279,17 @@
 		status = "okay";
 	};
 
+	nand-controller at 70008000 {
+		nvidia,wp-gpios = <&gpio 23 0>; /* PC7 */
+		nvidia,width = <8>;
+		nvidia,timing = <26 100 20 80 20 10 12 10 70>;
+
+		nand at 0 {
+			reg = <0>;
+			compatible = "hynix,hy27uf4g2b", "nand-flash";
+		};
+	};
+
 	i2c at 7000c000 {
 		clock-frequency = <400000>;
 		status = "okay";
diff --git a/board/avionic-design/dts/tegra20-tec.dts b/board/avionic-design/dts/tegra20-tec.dts
index 1d7cf89..4c1b08d 100644
--- a/board/avionic-design/dts/tegra20-tec.dts
+++ b/board/avionic-design/dts/tegra20-tec.dts
@@ -32,17 +32,6 @@
 		clock-frequency = <216000000>;
 	};
 
-	nand-controller at 70008000 {
-		nvidia,wp-gpios = <&gpio 23 0>; /* PC7 */
-		nvidia,width = <8>;
-		nvidia,timing = <26 100 20 80 20 10 12 10 70>;
-
-		nand at 0 {
-			reg = <0>;
-			compatible = "hynix,hy27uf4g2b", "nand-flash";
-		};
-	};
-
 	i2c at 7000c000 {
 		status = "disabled";
 	};
-- 
1.8.2

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

end of thread, other threads:[~2013-04-03 14:52 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-14  7:54 [U-Boot] [PATCH 1/4] Tegra: All Tamonten-derived boards use onboard NAND Thierry Reding
2013-02-14  7:54 ` [U-Boot] [PATCH 2/4] Tegra: Medcom-Wide: Enable NAND and boot script support Thierry Reding
2013-02-14 17:19   ` Stephen Warren
2013-02-14 19:23     ` Thierry Reding
2013-02-14  7:54 ` [U-Boot] [PATCH 3/4] Tegra: Plutux: " Thierry Reding
2013-02-14  7:54 ` [U-Boot] [PATCH 4/4] Tegra: TEC: Enable " Thierry Reding
2013-03-04 20:46 ` [U-Boot] [PATCH 1/4] Tegra: All Tamonten-derived boards use onboard NAND Tom Warren
2013-03-04 22:41   ` Thierry Reding
2013-03-04 23:26     ` Tom Warren
2013-03-04 23:39       ` Stephen Warren
2013-03-08 16:36         ` Tom Warren
2013-03-08 16:44           ` Tom Rini
2013-03-08 16:48             ` Tom Warren
2013-03-08 16:57               ` Tom Rini
2013-03-08 16:58                 ` Tom Warren
2013-03-08 17:04                   ` Tom Warren
  -- strict thread matches above, loose matches on Subject: below --
2013-04-03 14:52 Thierry Reding
2013-04-03 14:52 ` [U-Boot] [PATCH 2/4] Tegra: Medcom-Wide: Enable NAND and boot script support Thierry Reding

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.