summaryrefslogtreecommitdiffstats
path: root/board/Marvell
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2015-08-11 12:50:58 +0200
committerLuka Perkov <luka.perkov@sartura.hr>2015-08-17 18:49:52 +0200
commitce2cb1d3ed92e91b24db516802be3688f7c28e26 (patch)
treea05ae24123cc2a5315db922d1666f34dda017459 /board/Marvell
parent41e705ac799a40d6f58d0e38e5a295fb20d5a226 (diff)
downloadblackbird-obmc-uboot-ce2cb1d3ed92e91b24db516802be3688f7c28e26.tar.gz
blackbird-obmc-uboot-ce2cb1d3ed92e91b24db516802be3688f7c28e26.zip
arm: mvebu: db-88f6820-gp: Enable PCI support
This patch enabled the MVEBU PCIe support on the db-88f6820-gp A38x eval board. It also enabled the Intel E1000 driver support and adds the initialization of PCIe network controllers to the board code. Signed-off-by: Stefan Roese <sr@denx.de> Cc: Anton Schubert <anton.schubert@gmx.de> Cc: Luka Perkov <luka.perkov@sartura.hr> Cc: Dirk Eibach <eibach@gdsys.de>
Diffstat (limited to 'board/Marvell')
-rw-r--r--board/Marvell/db-88f6820-gp/db-88f6820-gp.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/board/Marvell/db-88f6820-gp/db-88f6820-gp.c b/board/Marvell/db-88f6820-gp/db-88f6820-gp.c
index 0eb17f62a2..84ca55c7d5 100644
--- a/board/Marvell/db-88f6820-gp/db-88f6820-gp.c
+++ b/board/Marvell/db-88f6820-gp/db-88f6820-gp.c
@@ -7,6 +7,7 @@
#include <common.h>
#include <i2c.h>
#include <miiphy.h>
+#include <netdev.h>
#include <asm/io.h>
#include <asm/arch/cpu.h>
#include <asm/arch/soc.h>
@@ -130,3 +131,9 @@ int checkboard(void)
return 0;
}
+
+int board_eth_init(bd_t *bis)
+{
+ cpu_eth_init(bis); /* Built in controller(s) come first */
+ return pci_eth_init(bis);
+}
OpenPOWER on IntegriCloud