diff options
| author | Wolfgang Denk <wd@denx.de> | 2011-10-28 00:14:16 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-10-28 00:14:16 +0200 | 
| commit | 606a76f8ef479e42ae4d06f8f3ce87e9a1c72acf (patch) | |
| tree | 0308f6a10f937f8603f73c07568b68bcd6208b49 | |
| parent | 88a85fb9f3578f513d7053ac9a3f1ff7521b2771 (diff) | |
| parent | 1fbd0c36daeb2340210bbd68ee2f62f26a8bdfa0 (diff) | |
| download | olio-uboot-2014.01-606a76f8ef479e42ae4d06f8f3ce87e9a1c72acf.tar.xz olio-uboot-2014.01-606a76f8ef479e42ae4d06f8f3ce87e9a1c72acf.zip | |
Merge branch 'master' of git://git.denx.de/u-boot-microblaze
* 'master' of git://git.denx.de/u-boot-microblaze:
  microblaze: Fix strict-aliasing rules for in_be32
  microblaze: Wire up axi_ethernet driver initialization
| -rw-r--r-- | arch/microblaze/include/asm/io.h | 2 | ||||
| -rw-r--r-- | board/xilinx/microblaze-generic/microblaze-generic.c | 6 | ||||
| -rw-r--r-- | include/configs/microblaze-generic.h | 4 | 
3 files changed, 11 insertions, 1 deletions
| diff --git a/arch/microblaze/include/asm/io.h b/arch/microblaze/include/asm/io.h index 7e190d15c..584cbce35 100644 --- a/arch/microblaze/include/asm/io.h +++ b/arch/microblaze/include/asm/io.h @@ -25,7 +25,7 @@  #define readw(addr) \    ({ unsigned short __v = (*(volatile unsigned short *) (addr)); __v; })  #define readl(addr) \ -  ({ unsigned long __v = (*(volatile unsigned long *) (addr)); __v; }) +	({ unsigned int __v = (*(volatile unsigned int *) (addr)); __v; })  #define writeb(b, addr) \    (void)((*(volatile unsigned char *) (addr)) = (b)) 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 |