summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/armv7/socfpga
diff options
context:
space:
mode:
authorPavel Machek <pavel@denx.de>2014-07-14 14:14:17 +0200
committerTom Rini <trini@ti.com>2014-08-30 07:46:38 -0400
commit99b97106f3d2ff89af70559fdfa0360ac22c536c (patch)
treec749c495c3b58d00cd6d7374b900867aba6319a2 /arch/arm/cpu/armv7/socfpga
parent3ab019e1dc39c69ae7fd0e15b080ef6c59cd138f (diff)
downloadblackbird-obmc-uboot-99b97106f3d2ff89af70559fdfa0360ac22c536c.tar.gz
blackbird-obmc-uboot-99b97106f3d2ff89af70559fdfa0360ac22c536c.zip
socfpga: initialize designware ethernet
Enable initialization fo designware ethernet controller. With this patch, ethernet works in my configuration, provided I set ethernet address in the environment. Signed-off-by: Pavel Machek <pavel@denx.de>
Diffstat (limited to 'arch/arm/cpu/armv7/socfpga')
-rw-r--r--arch/arm/cpu/armv7/socfpga/misc.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/socfpga/misc.c b/arch/arm/cpu/armv7/socfpga/misc.c
index 5268f2c708..ecae393410 100644
--- a/arch/arm/cpu/armv7/socfpga/misc.c
+++ b/arch/arm/cpu/armv7/socfpga/misc.c
@@ -6,6 +6,8 @@
#include <common.h>
#include <asm/io.h>
+#include <miiphy.h>
+#include <netdev.h>
DECLARE_GLOBAL_DATA_PTR;
@@ -38,3 +40,18 @@ int misc_init_r(void)
{
return 0;
}
+
+
+/*
+ * DesignWare Ethernet initialization
+ */
+int cpu_eth_init(bd_t *bis)
+{
+#if !defined(CONFIG_SOCFPGA_VIRTUAL_TARGET) && !defined(CONFIG_SPL_BUILD)
+ /* initialize and register the emac */
+ return designware_initialize(CONFIG_EMAC_BASE,
+ CONFIG_PHY_INTERFACE_MODE);
+#else
+ return 0;
+#endif
+}
OpenPOWER on IntegriCloud