From ed6382ac9455feaa89dac27a3b96b4e9b553864d Mon Sep 17 00:00:00 2001 From: Jagan Date: Wed, 30 May 2012 12:37:37 +0530 Subject: [PATCH] Xilinx: ARM: NET: Ethernet speed changed from 100 to 1000 MBPS This patch add support to operate u-boot ethernet on 1Gig, as the Linux operates the same. we synchronise both the speeds. Signed-off-by: Jagan --- board/xilinx/zynq_common/xgmac.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/board/xilinx/zynq_common/xgmac.c b/board/xilinx/zynq_common/xgmac.c index 618e9cdc8a2..ac96a782bb9 100644 --- a/board/xilinx/zynq_common/xgmac.c +++ b/board/xilinx/zynq_common/xgmac.c @@ -295,8 +295,10 @@ int Xgmac_init(struct eth_device *dev, bd_t * bis) /***** Try to establish a link at the highest speed possible *****/ #ifdef CONFIG_EP107 - Xgmac_set_eth_advertise(EmacPssInstancePtr, 100); + /* CR-659040 */ + Xgmac_set_eth_advertise(EmacPssInstancePtr, 1000); #else + /* CR-659040 */ /* Could be 1000 if an unknown bug is fixed */ Xgmac_set_eth_advertise(EmacPssInstancePtr, 1000); #endif -- 2.47.3