summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2009-09-18 19:08:44 -0400
committerTom Rix <Tom.Rix@windriver.com>2009-10-03 09:04:35 -0500
commite5e7819f9ff2bb6345c3132bcca701a412f49572 (patch)
treef11a02cef657066fdc906495a75e9ad2d16df31f
parentbdc810a771289a94e1dc959ff2cf0074d7f42f11 (diff)
downloadu-boot-imx-e5e7819f9ff2bb6345c3132bcca701a412f49572.zip
u-boot-imx-e5e7819f9ff2bb6345c3132bcca701a412f49572.tar.gz
u-boot-imx-e5e7819f9ff2bb6345c3132bcca701a412f49572.tar.bz2
sbc8548: enable use of PCI network cards
Create a board_eth_init to allow a place to hook in the PCI ethernet init after all the eTSEC are up and configured. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
-rw-r--r--board/sbc8548/sbc8548.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/board/sbc8548/sbc8548.c b/board/sbc8548/sbc8548.c
index 4192eea..fc78a7c 100644
--- a/board/sbc8548/sbc8548.c
+++ b/board/sbc8548/sbc8548.c
@@ -33,6 +33,8 @@
#include <asm/fsl_pci.h>
#include <asm/fsl_ddr_sdram.h>
#include <spd_sdram.h>
+#include <netdev.h>
+#include <tsec.h>
#include <miiphy.h>
#include <libfdt.h>
#include <fdt_support.h>
@@ -491,6 +493,13 @@ pci_init_board(void)
}
+int board_eth_init(bd_t *bis)
+{
+ tsec_standard_init(bis);
+ pci_eth_init(bis);
+ return 0; /* otherwise cpu_eth_init gets run */
+}
+
int last_stage_init(void)
{
return 0;