diff options
author | Michal Simek <michal.simek@xilinx.com> | 2015-11-30 14:14:56 +0100 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2015-12-07 10:14:22 +0100 |
commit | 6889ca7198f68691ddd7923268040eb7f4e6d3ff (patch) | |
tree | e73bf853e2df4126878d56c654027b1737c1402e /board/xilinx/zynq/board.c | |
parent | 5a9284f7f503f21c0f231b96d62747662080050d (diff) | |
download | u-boot-imx-6889ca7198f68691ddd7923268040eb7f4e6d3ff.zip u-boot-imx-6889ca7198f68691ddd7923268040eb7f4e6d3ff.tar.gz u-boot-imx-6889ca7198f68691ddd7923268040eb7f4e6d3ff.tar.bz2 |
net: gem: Move driver to DM
- Enable DM_ETH by default for Zynq and ZynqMP
- Remove board_eth_init code
- Change miiphy_read function to return value instead of error code
based on DM requirement
- Do not enable EMIO DT support by default
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Jagan Teki <jteki@openedev.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'board/xilinx/zynq/board.c')
-rw-r--r-- | board/xilinx/zynq/board.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/board/xilinx/zynq/board.c b/board/xilinx/zynq/board.c index 237f2c2..572b146 100644 --- a/board/xilinx/zynq/board.c +++ b/board/xilinx/zynq/board.c @@ -119,19 +119,6 @@ int board_eth_init(bd_t *bis) ret |= xilinx_emaclite_initialize(bis, XILINX_EMACLITE_BASEADDR, txpp, rxpp); #endif - -#if defined(CONFIG_ZYNQ_GEM) -# if defined(CONFIG_ZYNQ_GEM0) - ret |= zynq_gem_initialize(bis, ZYNQ_GEM_BASEADDR0, - CONFIG_ZYNQ_GEM_PHY_ADDR0, - CONFIG_ZYNQ_GEM_EMIO0); -# endif -# if defined(CONFIG_ZYNQ_GEM1) - ret |= zynq_gem_initialize(bis, ZYNQ_GEM_BASEADDR1, - CONFIG_ZYNQ_GEM_PHY_ADDR1, - CONFIG_ZYNQ_GEM_EMIO1); -# endif -#endif return ret; } |