diff options
| author | Michal Simek <monstr@monstr.eu> | 2011-08-31 11:51:50 +0200 | 
|---|---|---|
| committer | Michal Simek <monstr@monstr.eu> | 2011-10-24 07:50:21 +0200 | 
| commit | e634138e73009c04a6d22208733af3b4cd356a1e (patch) | |
| tree | e4ac7fbfbada49b96a87ec9e3ef9d9be758b2468 | |
| parent | 4962e38e9a4a053792722918bb11c5408549aebd (diff) | |
| download | olio-uboot-2014.01-e634138e73009c04a6d22208733af3b4cd356a1e.tar.xz olio-uboot-2014.01-e634138e73009c04a6d22208733af3b4cd356a1e.zip | |
microblaze: Wire up axi_ethernet driver initialization
Initialize axi_ethernet driver.
Signed-off-by: Michal Simek <monstr@monstr.eu>
| -rw-r--r-- | board/xilinx/microblaze-generic/microblaze-generic.c | 6 | ||||
| -rw-r--r-- | include/configs/microblaze-generic.h | 4 | 
2 files changed, 10 insertions, 0 deletions
| diff --git a/board/xilinx/microblaze-generic/microblaze-generic.c b/board/xilinx/microblaze-generic/microblaze-generic.c index 9b2952f04..c4c13a668 100644 --- a/board/xilinx/microblaze-generic/microblaze-generic.c +++ b/board/xilinx/microblaze-generic/microblaze-generic.c @@ -72,6 +72,12 @@ int fsl_init2 (void) {  int board_eth_init(bd_t *bis)  {  	int ret = 0; + +#ifdef CONFIG_XILINX_AXIEMAC +	ret |= xilinx_axiemac_initialize(bis, XILINX_AXIEMAC_BASEADDR, +						XILINX_AXIDMA_BASEADDR); +#endif +  #ifdef CONFIG_XILINX_EMACLITE  	u32 txpp = 0;  	u32 rxpp = 0; diff --git a/include/configs/microblaze-generic.h b/include/configs/microblaze-generic.h index 09ff7c4fb..6b3fd7600 100644 --- a/include/configs/microblaze-generic.h +++ b/include/configs/microblaze-generic.h @@ -68,6 +68,10 @@  # define CONFIG_XILINX_LL_TEMAC		1  # define CONFIG_SYS_ENET  #endif +#if defined(XILINX_AXIEMAC_BASEADDR) +# define CONFIG_XILINX_AXIEMAC	1 +# define CONFIG_SYS_ENET +#endif  #undef ET_DEBUG |