diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2008-06-23 22:57:27 -0700 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-07-06 00:20:59 -0700 |
commit | dd35479a50f6c7c31ea491c07c5200c6dfd06a24 (patch) | |
tree | e9e32e2c807c0a1bd1e85bc6702a21cb2dd88911 /cpu/mpc85xx | |
parent | 914f58c5766860373a7d232e961cee5a4b54a55b (diff) | |
download | u-boot-imx-dd35479a50f6c7c31ea491c07c5200c6dfd06a24.zip u-boot-imx-dd35479a50f6c7c31ea491c07c5200c6dfd06a24.tar.gz u-boot-imx-dd35479a50f6c7c31ea491c07c5200c6dfd06a24.tar.bz2 |
Add mechanisms for CPU and board-specific Ethernet initialization
This patch is the first step in cleaning up net/eth.c, by moving Ethernet
initialization to CPU or board-specific code. Initial implementation is
only on the Freescale TSEC controller, but others will be added soon.
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'cpu/mpc85xx')
-rw-r--r-- | cpu/mpc85xx/cpu.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/cpu/mpc85xx/cpu.c b/cpu/mpc85xx/cpu.c index baf8b81..fcdb587 100644 --- a/cpu/mpc85xx/cpu.c +++ b/cpu/mpc85xx/cpu.c @@ -353,3 +353,33 @@ void upmconfig (uint upm, uint * table, uint size) } out_be32(mxmr, loopval); /* OP_NORMAL */ } + +#if defined(CONFIG_TSEC_ENET) || defined(CONFIGMPC85XX_FEC) +/* Default initializations for TSEC controllers. To override, + * create a board-specific function called: + * int board_eth_init(bd_t *bis) + */ + +extern int tsec_initialize(bd_t * bis, int index, char *devname); + +int cpu_eth_init(bd_t *bis) +{ +#if defined(CONFIG_TSEC1) + tsec_initialize(bis, 0, CONFIG_TSEC1_NAME); +#endif +#if defined(CONFIG_TSEC2) + tsec_initialize(bis, 1, CONFIG_TSEC2_NAME); +#endif +#if defined(CONFIG_MPC85XX_FEC) + tsec_initialize(bis, 2, CONFIG_MPC85XX_FEC_NAME); +#else +#if defined(CONFIG_TSEC3) + tsec_initialize(bis, 2, CONFIG_TSEC3_NAME); +#endif +#if defined(CONFIG_TSEC4) + tsec_initialize(bis, 3, CONFIG_TSEC4_NAME); +#endif +#endif + return 0; +} +#endif |