]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
Moved initialization of NS8382X Ethernet controller to board_eth_init()
authorBen Warren <biggerbadderben@gmail.com>
Sun, 31 Aug 2008 17:03:22 +0000 (10:03 -0700)
committerBen Warren <biggerbadderben@gmail.com>
Wed, 3 Sep 2008 04:18:16 +0000 (21:18 -0700)
Affected boards:
bc3450
cpci5200
mecp5200
pf2000
icecube
o2dnt
pm520
sandpoint8245
total5200
tqm5200

Removed initialization of the driver from net/eth.c

Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13 files changed:
board/bc3450/bc3450.c
board/esd/cpci5200/cpci5200.c
board/esd/mecp5200/mecp5200.c
board/esd/pf5200/pf5200.c
board/icecube/icecube.c
board/o2dnt/o2dnt.c
board/pm520/pm520.c
board/sandpoint/sandpoint.c
board/total5200/total5200.c
board/tqc/tqm5200/tqm5200.c
drivers/net/ns8382x.c
include/netdev.h
net/eth.c

index a728dc64d7494d6a890ca5551d6cbee2f8382fb6..e27c23416f3df3ad54093beedf12692afe31b9aa 100644 (file)
@@ -33,6 +33,7 @@
 #include <common.h>
 #include <mpc5xxx.h>
 #include <pci.h>
+#include <netdev.h>
 
 #ifdef CONFIG_VIDEO_SM501
 #include <sm501.h>
@@ -669,3 +670,8 @@ int board_get_height (void)
 }
 
 #endif /* CONFIG_VIDEO_SM501 */
+
+int board_eth_init(bd_t *bis)
+{
+       return pci_eth_init(bis);
+}
index 20130acfe858fec4eb24a7407ee15cd997bdd614..2a42e65de0dd9fc4250eff9f2c2569c9aeec6325 100644 (file)
@@ -32,6 +32,7 @@
 #include <mpc5xxx.h>
 #include <pci.h>
 #include <command.h>
+#include <netdev.h>
 
 #include "mt46v16m16-75.h"
 
@@ -259,6 +260,11 @@ void init_ata_reset(void)
        }
 }
 
+int board_eth_init(bd_t *bis)
+{
+       return pci_eth_init(bis);
+}
+
 int do_writepci(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
 {
        unsigned int addr;
index 6d776b7a63c273f870dcbb4147e9c957782f35d7..ff44abdac5bb7e5271413ab32da2ea130092cc52 100644 (file)
@@ -32,6 +32,7 @@
 #include <mpc5xxx.h>
 #include <pci.h>
 #include <command.h>
+#include <netdev.h>
 
 #include "mt46v16m16-75.h"
 
@@ -259,3 +260,8 @@ void init_power_switch(void)
                __asm__ volatile ("sync");
        }
 }
+
+int board_eth_init(bd_t *bis)
+{
+       return pci_eth_init(bis);
+}
index 7970f8988fce6cfd8a5ecc0275d6d7358c8ae696..c4c0221d02f6363e9da440ec47ac9451460d9a52 100644 (file)
@@ -32,6 +32,7 @@
 #include <mpc5xxx.h>
 #include <pci.h>
 #include <command.h>
+#include <netdev.h>
 
 #include "mt46v16m16-75.h"
 
@@ -264,6 +265,11 @@ void init_power_switch(void)
        __asm__ volatile ("sync");
 }
 
+int board_eth_init(bd_t *bis)
+{
+       return pci_eth_init(bis);
+}
+
 void power_set_reset(int power)
 {
        debug("ide_set_reset(%d)\n", power);
index 760db736872a5a0890e78229b64f05ace66b0c26..2ab86be300a596129018ffc6d4b1a813fbfbc1b0 100644 (file)
@@ -29,6 +29,7 @@
 #include <pci.h>
 #include <asm/processor.h>
 #include <libfdt.h>
+#include <netdev.h>
 
 #if defined(CONFIG_LITE5200B)
 #include "mt46v32m16.h"
@@ -390,3 +391,8 @@ ft_board_setup(void *blob, bd_t *bd)
        ft_cpu_setup(blob, bd);
 }
 #endif
+
+int board_eth_init(bd_t *bis)
+{
+       return pci_eth_init(bis);
+}
index a4eed3a43611d5e77e2116b2a29432bd9985a20c..37832dea8c1d845b3a4b01c1da5e5d0c08b3dcfd 100644 (file)
@@ -27,6 +27,7 @@
 #include <common.h>
 #include <mpc5xxx.h>
 #include <pci.h>
+#include <netdev.h>
 
 #define SDRAM_MODE      0x00CD0000
 #define SDRAM_CONTROL   0x504F0000
@@ -180,3 +181,8 @@ void pci_init_board(void)
        pci_mpc5xxx_init(&hose);
 }
 #endif
+
+int board_eth_init(bd_t *bis)
+{
+       return pci_eth_init(bis);
+}
index 83d9bcd025f35f183eb45fdab32f6356fa4c2dff..c9610fbafbf762cfa231f0ef38d708b56938fb4f 100644 (file)
@@ -27,6 +27,7 @@
 #include <common.h>
 #include <mpc5xxx.h>
 #include <pci.h>
+#include <netdev.h>
 
 #if defined(CONFIG_MPC5200_DDR)
 #include "mt46v16m16-75.h"
@@ -321,3 +322,8 @@ void doc_init (void)
        doc_probe (CFG_DOC_BASE);
 }
 #endif
+
+int board_eth_init(bd_t *bis)
+{
+       return pci_eth_init(bis);
+}
index 7429647b80fd4fa78f86a13dfefb968e68faca73..832baa263b6ed5df0d45af1a3c0860598691ca91 100644 (file)
@@ -24,6 +24,7 @@
 #include <common.h>
 #include <mpc824x.h>
 #include <pci.h>
+#include <netdev.h>
 
 int checkboard (void)
 {
@@ -99,3 +100,8 @@ void pci_init_board(void)
 {
        pci_mpc824x_init(&hose);
 }
+
+int board_eth_init(bd_t *bis)
+{
+       return pci_eth_init(bis);
+}
index 1ae24c4f3a3b250a1a0974c406def5a91d28a5a8..c1848fc5a11d6f3e8923fac6fc8e2df3e7f0f15d 100644 (file)
@@ -27,6 +27,7 @@
 #include <common.h>
 #include <mpc5xxx.h>
 #include <pci.h>
+#include <netdev.h>
 
 #include "sdram.h"
 
@@ -308,3 +309,8 @@ int board_get_height (void)
 }
 
 #endif /* CONFIG_VIDEO_SED13806 */
+
+int board_eth_init(bd_t *bis)
+{
+       return pci_eth_init(bis);
+}
index 8b8e461374986c596eab91c45d80aa6e1f391865..d75aa9b879dff700a160c77c01c4ba3271827ade 100644 (file)
@@ -32,6 +32,7 @@
 #include <pci.h>
 #include <asm/processor.h>
 #include <libfdt.h>
+#include <netdev.h>
 
 #ifdef CONFIG_VIDEO_SM501
 #include <sm501.h>
@@ -749,3 +750,8 @@ void ft_board_setup(void *blob, bd_t *bd)
        fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
 }
 #endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */
+
+int board_eth_init(bd_t *bis)
+{
+       return pci_eth_init(bis);
+}
index bb5843815fc7bc46bbc622577005b5264a36a472..a2d61afec7a66b535b080b078494b78397c49605 100644 (file)
@@ -53,6 +53,7 @@
 #include <common.h>
 #include <malloc.h>
 #include <net.h>
+#include <netdev.h>
 #include <asm/io.h>
 #include <pci.h>
 
index 5f6b38f3dbc6b25897f70e57a80804ac6a35cf36..97eff7a700ea40e862fd55f033d88797558f427b 100644 (file)
@@ -46,6 +46,7 @@ int greth_initialize(bd_t *bis);
 int macb_eth_initialize(int id, void *regs, unsigned int phy_addr);
 int mcdmafec_initialize(bd_t *bis);
 int mcffec_initialize(bd_t *bis);
+int ns8382x_initialize(bd_t *bis);
 int rtl8139_initialize(bd_t *bis);
 int rtl8169_initialize(bd_t *bis);
 int skge_initialize(bd_t *bis);
@@ -59,6 +60,9 @@ int uli526x_initialize(bd_t *bis);
 static inline int pci_eth_init(bd_t *bis)
 {
        int num = 0;
+#ifdef CONFIG_NS8382X
+       num += ns8382x_initialize(bis);
+#endif
 #if defined(CONFIG_RTL8139)
        num += rtl8139_initialize(bis);
 #endif
index 65ebf2df02f562622cd09e5b362bfa57b617355e..b846cad4ffa32d8eec3185167ef2af3eb9bce0ef 100644 (file)
--- a/net/eth.c
+++ b/net/eth.c
@@ -56,7 +56,6 @@ extern int mpc8220_fec_initialize(bd_t*);
 extern int mv6436x_eth_initialize(bd_t *);
 extern int mv6446x_eth_initialize(bd_t *);
 extern int natsemi_initialize(bd_t*);
-extern int ns8382x_initialize(bd_t*);
 extern int pcnet_initialize(bd_t*);
 extern int plb2800_eth_initialize(bd_t*);
 extern int ppc_4xx_eth_initialize(bd_t *);
@@ -237,9 +236,6 @@ int eth_initialize(bd_t *bis)
 #endif
 #ifdef CONFIG_NATSEMI
        natsemi_initialize(bis);
-#endif
-#ifdef CONFIG_NS8382X
-       ns8382x_initialize(bis);
 #endif
        if (!eth_devices) {
                puts ("No ethernet found.\n");