Re: [U-Boot] [PATCH 3/3][Net][ARM] Switched dm644x_emac Ethernet driver to use newer API

2009-04-29 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:12 Tue 28 Apr , Ben Warren wrote: Added CONFIG_NET_MULTI to all Davinci boards Removed all calls to Davinci network driver from board code Added cpu_eth_init() to cpu/arm926ejs/cpu.c Signed-off-by: Ben Warren biggerbadder...@gmail.com --- board/davinci/common/misc.h |

Re: [U-Boot] [PATCH 3/3][Net][ARM] Switched dm644x_emac Ethernet driver to use newer API

2009-04-29 Thread Ben Warren
Hi J-C, Jean-Christophe PLAGNIOL-VILLARD wrote: snip +/* + * * Initializes on-chip ethernet controllers. + * * to override, implement board_eth_init() + **/ +int cpu_eth_init(bd_t *bis) +{ +#if defined(CONFIG_DRIVER_TI_EMAC) +dm644x_emac_initialize(); +#endif +return 0;

Re: [U-Boot] [PATCH 3/3][Net][ARM] Switched dm644x_emac Ethernet driver to use newer API

2009-04-29 Thread Jean-Christophe PLAGNIOL-VILLARD
On 13:29 Wed 29 Apr , Ben Warren wrote: Hi J-C, Jean-Christophe PLAGNIOL-VILLARD wrote: snip +/* + * * Initializes on-chip ethernet controllers. + * * to override, implement board_eth_init() + **/ +int cpu_eth_init(bd_t *bis) +{ +#if defined(CONFIG_DRIVER_TI_EMAC) +

Re: [U-Boot] [PATCH 3/3][Net][ARM] Switched dm644x_emac Ethernet driver to use newer API

2009-04-29 Thread Ben Warren
Jean-Christophe PLAGNIOL-VILLARD wrote: On 13:29 Wed 29 Apr , Ben Warren wrote: Hi J-C, Jean-Christophe PLAGNIOL-VILLARD wrote: snip +/* + * * Initializes on-chip ethernet controllers. + * * to override, implement board_eth_init() + **/ +int cpu_eth_init(bd_t *bis)

Re: [U-Boot] [PATCH 3/3][Net][ARM] Switched dm644x_emac Ethernet driver to use newer API

2009-04-29 Thread Jean-Christophe PLAGNIOL-VILLARD
On 15:11 Wed 29 Apr , Ben Warren wrote: Jean-Christophe PLAGNIOL-VILLARD wrote: On 13:29 Wed 29 Apr , Ben Warren wrote: Hi J-C, Jean-Christophe PLAGNIOL-VILLARD wrote: snip +/* + * * Initializes on-chip ethernet controllers. + * * to override, implement

Re: [U-Boot] [PATCH 3/3][Net][ARM] Switched dm644x_emac Ethernet driver to use newer API

2009-04-29 Thread David Brownell
On Wednesday 29 April 2009, Jean-Christophe PLAGNIOL-VILLARD wrote: as the clock function could be move to cpu.c it will have the stringly-link function I'll stuff that in a new cpu.c file, but those clock status display routines aren't mandatory.

[U-Boot] [PATCH 3/3][Net][ARM] Switched dm644x_emac Ethernet driver to use newer API

2009-04-28 Thread Ben Warren
Added CONFIG_NET_MULTI to all Davinci boards Removed all calls to Davinci network driver from board code Added cpu_eth_init() to cpu/arm926ejs/cpu.c Signed-off-by: Ben Warren biggerbadder...@gmail.com --- board/davinci/common/misc.h |1 - board/davinci/dvevm/dvevm.c |3