From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vipin Kumar Date: Wed, 12 Dec 2012 15:31:09 +0530 Subject: [U-Boot] [PATCH resend 1/2] net/designware: Do not select MIIPORT for RGMII interface In-Reply-To: <21ad31fb0501d0cd56f978467ae31f153a22ec4b.1354777675.git.vipin.kumar@st.com> References: <21ad31fb0501d0cd56f978467ae31f153a22ec4b.1354777675.git.vipin.kumar@st.com> Message-ID: <50C855E5.5030509@st.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de ping On 12/6/2012 12:40 PM, Vipin KUMAR wrote: > Do not select MIIPORT for RGMII interface > > Signed-off-by: Vipin Kumar > --- > 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) {