diff options
| author | Rafal Jaworowski <raj@semihalf.com> | 2007-07-27 14:43:59 +0200 | 
|---|---|---|
| committer | Rafal Jaworowski <raj@semihalf.com> | 2007-07-27 14:43:59 +0200 | 
| commit | 8993e54b6f397973794f3d6f47d3b3c0c98dd4f6 (patch) | |
| tree | c5ce1d56f002d132d527f66afc9a35adb077b56f /net/eth.c | |
| parent | 1863cfb7b100ba0ee3401799457a01dc058745f8 (diff) | |
| download | olio-uboot-2014.01-8993e54b6f397973794f3d6f47d3b3c0c98dd4f6.tar.xz olio-uboot-2014.01-8993e54b6f397973794f3d6f47d3b3c0c98dd4f6.zip | |
[ADS5121] Support for the ADS5121 board
The following MPC5121e subsystems are supported:
- low-level CPU init
- NOR Boot Flash (common CFI driver)
- DDR SDRAM
- FEC
- I2C
- Watchdog
Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
Signed-off-by: Jan Wrobel <wrr@semihalf.com>
Diffstat (limited to 'net/eth.c')
| -rw-r--r-- | net/eth.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| @@ -40,6 +40,7 @@ extern int eth_3com_initialize(bd_t*);  extern int fec_initialize(bd_t*);  extern int inca_switch_initialize(bd_t*);  extern int mpc5xxx_fec_initialize(bd_t*); +extern int mpc512x_fec_initialize(bd_t*);  extern int mpc8220_fec_initialize(bd_t*);  extern int mv6436x_eth_initialize(bd_t *);  extern int mv6446x_eth_initialize(bd_t *); @@ -168,6 +169,9 @@ int eth_initialize(bd_t *bis)  #if defined(CONFIG_MPC5xxx_FEC)  	mpc5xxx_fec_initialize(bis);  #endif +#if defined(CONFIG_MPC512x_FEC) +	mpc512x_fec_initialize (bis); +#endif  #if defined(CONFIG_MPC8220_FEC)  	mpc8220_fec_initialize(bis);  #endif |