Skip to content
Snippets Groups Projects
Commit 9eb79bd8 authored by Ben Warren's avatar Ben Warren
Browse files

Moved initialization of MPC8XX SCC to cpu_eth_init()


Removed initialization of the driver from net/eth.c

Signed-off-by: default avatarBen Warren <biggerbadderben@gmail.com>
parent a9bec96d
No related branches found
No related tags found
No related merge requests found
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
#include <watchdog.h> #include <watchdog.h>
#include <command.h> #include <command.h>
#include <mpc8xx.h> #include <mpc8xx.h>
#include <commproc.h>
#include <netdev.h> #include <netdev.h>
#include <asm/cache.h> #include <asm/cache.h>
...@@ -643,6 +644,9 @@ void reset_8xx_watchdog (volatile immap_t * immr) ...@@ -643,6 +644,9 @@ void reset_8xx_watchdog (volatile immap_t * immr)
*/ */
int cpu_eth_init(bd_t *bis) int cpu_eth_init(bd_t *bis)
{ {
#if defined(SCC_ENET)
scc_initialize(bis);
#endif
#if defined(FEC_ENET) #if defined(FEC_ENET)
fec_initialize(bis); fec_initialize(bis);
#endif #endif
......
...@@ -64,6 +64,7 @@ int pcnet_initialize(bd_t *bis); ...@@ -64,6 +64,7 @@ int pcnet_initialize(bd_t *bis);
int plb2800_eth_initialize(bd_t *bis); int plb2800_eth_initialize(bd_t *bis);
int rtl8139_initialize(bd_t *bis); int rtl8139_initialize(bd_t *bis);
int rtl8169_initialize(bd_t *bis); int rtl8169_initialize(bd_t *bis);
int scc_initialize(bd_t *bis);
int skge_initialize(bd_t *bis); int skge_initialize(bd_t *bis);
int tsi108_eth_initialize(bd_t *bis); int tsi108_eth_initialize(bd_t *bis);
int uec_initialize(int index); int uec_initialize(int index);
......
...@@ -42,7 +42,6 @@ int board_eth_init(bd_t *bis) __attribute((weak, alias("__def_eth_init"))); ...@@ -42,7 +42,6 @@ int board_eth_init(bd_t *bis) __attribute((weak, alias("__def_eth_init")));
extern int mv6436x_eth_initialize(bd_t *); extern int mv6436x_eth_initialize(bd_t *);
extern int mv6446x_eth_initialize(bd_t *); extern int mv6446x_eth_initialize(bd_t *);
extern int ppc_4xx_eth_initialize(bd_t *); extern int ppc_4xx_eth_initialize(bd_t *);
extern int scc_initialize(bd_t*);
#ifdef CONFIG_API #ifdef CONFIG_API
extern void (*push_packet)(volatile void *, int); extern void (*push_packet)(volatile void *, int);
...@@ -156,9 +155,6 @@ int eth_initialize(bd_t *bis) ...@@ -156,9 +155,6 @@ int eth_initialize(bd_t *bis)
#endif #endif
#if defined(CONFIG_4xx) && !defined(CONFIG_IOP480) && !defined(CONFIG_AP1000) #if defined(CONFIG_4xx) && !defined(CONFIG_IOP480) && !defined(CONFIG_AP1000)
ppc_4xx_eth_initialize(bis); ppc_4xx_eth_initialize(bis);
#endif
#ifdef SCC_ENET
scc_initialize(bis);
#endif #endif
if (!eth_devices) { if (!eth_devices) {
puts ("No ethernet found.\n"); puts ("No ethernet found.\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment