public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] Enable Ethernet for Nomadik 8815 Eval Kit
@ 2009-02-07 16:50 Alessandro Rubini
  2009-02-07 23:27 ` [U-Boot] [PATCH v2] " Alessandro Rubini
  0 siblings, 1 reply; 2+ messages in thread
From: Alessandro Rubini @ 2009-02-07 16:50 UTC (permalink / raw)
  To: u-boot

From: Alessandro Rubini <rubini@unipv.it>

This trivially enables Ethernet support in the debug board
by setting up the proper chip select.

Signed-off-by: Alessandro Rubini <rubini@unipv.it>
Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
---
 board/st/nmdk8815/nmdk8815.c |    5 ++++-
 include/configs/nmdk8815.h   |    3 +++
 2 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/board/st/nmdk8815/nmdk8815.c b/board/st/nmdk8815/nmdk8815.c
index c54eac1..9a7242f 100644
--- a/board/st/nmdk8815/nmdk8815.c
+++ b/board/st/nmdk8815/nmdk8815.c
@@ -49,8 +49,11 @@ int board_init(void)
 	writel(0x00000000, NOMADIK_GPIO1_BASE + 0x28);
 	writel(readl(NOMADIK_SRC_BASE) | 0x8000, NOMADIK_SRC_BASE);
 
-	icache_enable();
+	/* Set up SMCS1 for Ethernet: sram-like, enabled, timing values */
+	writel(0x0000305b, NOMADIK_FSMC_BASE + 0x08); /* FSMC_BCR1 */
+	writel(0x00033f33, NOMADIK_FSMC_BASE + 0x0c); /* FSMC_BTR1 */
 
+	icache_enable();
 	return 0;
 }
 
diff --git a/include/configs/nmdk8815.h b/include/configs/nmdk8815.h
index 7a503e0..23a7323 100644
--- a/include/configs/nmdk8815.h
+++ b/include/configs/nmdk8815.h
@@ -35,8 +35,11 @@
 
 /* commands */
 #include <config_cmd_default.h>
+
+#define CONFIG_CMD_NET
 #define CONFIG_CMD_PING
 #define CONFIG_CMD_DHCP
+#define CONFIG_CMD_NFS
 /* There is no NOR flash, so undefine these commands */
 #undef CONFIG_CMD_FLASH
 #undef CONFIG_CMD_IMLS
-- 
1.6.0.2

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

* [U-Boot] [PATCH v2] Enable Ethernet for Nomadik 8815 Eval Kit
  2009-02-07 16:50 [U-Boot] [PATCH] Enable Ethernet for Nomadik 8815 Eval Kit Alessandro Rubini
@ 2009-02-07 23:27 ` Alessandro Rubini
  0 siblings, 0 replies; 2+ messages in thread
From: Alessandro Rubini @ 2009-02-07 23:27 UTC (permalink / raw)
  To: u-boot

From: Alessandro Rubini <rubini@unipv.it>

This trivially enables Ethernet support in the debug board
by setting up the proper chip select.

Signed-off-by: Alessandro Rubini <rubini@unipv.it>
Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
---

Changes from V1: use register names defined in the header introduced by
patch "Nand driver for Nomadik SoC" (argh... I hope I should not split
that one in two different patches, one for the header and one for the nand)

 board/st/nmdk8815/nmdk8815.c |    5 ++++-
 include/configs/nmdk8815.h   |    3 +++
 2 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/board/st/nmdk8815/nmdk8815.c b/board/st/nmdk8815/nmdk8815.c
index c54eac1..edf4626 100644
--- a/board/st/nmdk8815/nmdk8815.c
+++ b/board/st/nmdk8815/nmdk8815.c
@@ -49,8 +49,11 @@ int board_init(void)
 	writel(0x00000000, NOMADIK_GPIO1_BASE + 0x28);
 	writel(readl(NOMADIK_SRC_BASE) | 0x8000, NOMADIK_SRC_BASE);
 
-	icache_enable();
+	/* Set up SMCS1 for Ethernet: sram-like, enabled, timing values */
+	writel(0x0000305b, REG_FSMC_BCR1);
+	writel(0x00033f33, REG_FSMC_BTR1);
 
+	icache_enable();
 	return 0;
 }
 
diff --git a/include/configs/nmdk8815.h b/include/configs/nmdk8815.h
index 75311a5..a1ba3a9 100644
--- a/include/configs/nmdk8815.h
+++ b/include/configs/nmdk8815.h
@@ -37,8 +37,11 @@
 
 /* commands */
 #include <config_cmd_default.h>
+
+#define CONFIG_CMD_NET
 #define CONFIG_CMD_PING
 #define CONFIG_CMD_DHCP
+#define CONFIG_CMD_NFS
 /* There is no NOR flash, so undefine these commands */
 #undef CONFIG_CMD_FLASH
 #undef CONFIG_CMD_IMLS
-- 
1.6.0.2

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

end of thread, other threads:[~2009-02-07 23:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-07 16:50 [U-Boot] [PATCH] Enable Ethernet for Nomadik 8815 Eval Kit Alessandro Rubini
2009-02-07 23:27 ` [U-Boot] [PATCH v2] " Alessandro Rubini

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