diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2008-08-12 22:11:53 -0700 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-09-02 21:18:16 -0700 |
commit | 3ae071e44256144d6c1e3febb65f6c56bd433769 (patch) | |
tree | 1b1b6a861bef8d20e05750ab347d86619894a7c3 /board/atmel/at91sam9263ek/at91sam9263ek.c | |
parent | 89973f8a82c28ad893c4c3cc56839a8e10fe5f13 (diff) | |
download | u-boot-imx-3ae071e44256144d6c1e3febb65f6c56bd433769.zip u-boot-imx-3ae071e44256144d6c1e3febb65f6c56bd433769.tar.gz u-boot-imx-3ae071e44256144d6c1e3febb65f6c56bd433769.tar.bz2 |
Moved initialization of Ethernet controllers on Atmel AT91 to board_eth_init()
Removed at91sam9_eth_initialize() from net/eth.c
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'board/atmel/at91sam9263ek/at91sam9263ek.c')
-rw-r--r-- | board/atmel/at91sam9263ek/at91sam9263ek.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/board/atmel/at91sam9263ek/at91sam9263ek.c b/board/atmel/at91sam9263ek/at91sam9263ek.c index 927fc91..c705074 100644 --- a/board/atmel/at91sam9263ek/at91sam9263ek.c +++ b/board/atmel/at91sam9263ek/at91sam9263ek.c @@ -31,11 +31,13 @@ #include <asm/arch/at91_rstc.h> #include <asm/arch/gpio.h> #include <asm/arch/io.h> +#include <asm/arch/hardware.h> #include <lcd.h> #include <atmel_lcdc.h> #if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB) #include <net.h> #endif +#include <netdev.h> DECLARE_GLOBAL_DATA_PTR; @@ -308,3 +310,12 @@ void reset_phy(void) #endif } #endif + +int board_eth_init(bd_t *bis) +{ + int rc = 0; +#ifdef CONFIG_MACB + rc = macb_eth_initialize(0, (void *)AT91_BASE_EMAC, 0x00); +#endif + return rc; +} |