[U-Boot] [Drivers PATCH 08/19] net/designware: Do not select MIIPORT for RGMII interface
Vipin Kumar
vipin.kumar at st.com
Fri Nov 2 18:39:47 CET 2012
Do not select MIIPORT for RGMII interface
Signed-off-by: Vipin Kumar <vipin.kumar at st.com>
---
drivers/net/designware.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/net/designware.c b/drivers/net/designware.c
index bf21a08..46f6601 100644
--- a/drivers/net/designware.c
+++ b/drivers/net/designware.c
@@ -113,7 +113,9 @@ static int mac_reset(struct eth_device *dev)
int timeout = CONFIG_MACRESET_TIMEOUT;
writel(DMAMAC_SRST, &dma_p->busmode);
- writel(MII_PORTSELECT, &mac_p->conf);
+
+ if (priv->interface != PHY_INTERFACE_MODE_RGMII)
+ writel(MII_PORTSELECT, &mac_p->conf);
start = get_timer(0);
while (get_timer(start) < timeout) {
--
1.7.11.4
More information about the U-Boot
mailing list