From: Jagan Date: Wed, 30 May 2012 07:07:37 +0000 (+0530) Subject: Xilinx: ARM: NET: Ethernet speed changed from 100 to 1000 MBPS X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ed6382ac9455feaa89dac27a3b96b4e9b553864d;p=thirdparty%2Fu-boot.git 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 --- 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