blob: e8e669bd90406a9bb6359018e2c3b9535857365a [file] [log] [blame]
Vipin KUMAR5b1b1882010-06-29 10:53:34 +05301/*
2 * (C) Copyright 2010
3 * Vipin Kumar, ST Micoelectronics, vipin.kumar@st.com.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/*
25 * Designware ethernet IP driver for u-boot
26 */
27
28#include <common.h>
29#include <miiphy.h>
30#include <malloc.h>
31#include <linux/err.h>
32#include <asm/io.h>
33#include "designware.h"
34
Vipin Kumar13edd172012-03-26 00:09:56 +000035static int configure_phy(struct eth_device *dev);
36
Vipin KUMAR5b1b1882010-06-29 10:53:34 +053037static void tx_descs_init(struct eth_device *dev)
38{
39 struct dw_eth_dev *priv = dev->priv;
40 struct eth_dma_regs *dma_p = priv->dma_regs_p;
41 struct dmamacdescr *desc_table_p = &priv->tx_mac_descrtable[0];
42 char *txbuffs = &priv->txbuffs[0];
43 struct dmamacdescr *desc_p;
44 u32 idx;
45
46 for (idx = 0; idx < CONFIG_TX_DESCR_NUM; idx++) {
47 desc_p = &desc_table_p[idx];
48 desc_p->dmamac_addr = &txbuffs[idx * CONFIG_ETH_BUFSIZE];
49 desc_p->dmamac_next = &desc_table_p[idx + 1];
50
51#if defined(CONFIG_DW_ALTDESCRIPTOR)
52 desc_p->txrx_status &= ~(DESC_TXSTS_TXINT | DESC_TXSTS_TXLAST |
53 DESC_TXSTS_TXFIRST | DESC_TXSTS_TXCRCDIS | \
54 DESC_TXSTS_TXCHECKINSCTRL | \
55 DESC_TXSTS_TXRINGEND | DESC_TXSTS_TXPADDIS);
56
57 desc_p->txrx_status |= DESC_TXSTS_TXCHAIN;
58 desc_p->dmamac_cntl = 0;
59 desc_p->txrx_status &= ~(DESC_TXSTS_MSK | DESC_TXSTS_OWNBYDMA);
60#else
61 desc_p->dmamac_cntl = DESC_TXCTRL_TXCHAIN;
62 desc_p->txrx_status = 0;
63#endif
64 }
65
66 /* Correcting the last pointer of the chain */
67 desc_p->dmamac_next = &desc_table_p[0];
68
69 writel((ulong)&desc_table_p[0], &dma_p->txdesclistaddr);
70}
71
72static void rx_descs_init(struct eth_device *dev)
73{
74 struct dw_eth_dev *priv = dev->priv;
75 struct eth_dma_regs *dma_p = priv->dma_regs_p;
76 struct dmamacdescr *desc_table_p = &priv->rx_mac_descrtable[0];
77 char *rxbuffs = &priv->rxbuffs[0];
78 struct dmamacdescr *desc_p;
79 u32 idx;
80
81 for (idx = 0; idx < CONFIG_RX_DESCR_NUM; idx++) {
82 desc_p = &desc_table_p[idx];
83 desc_p->dmamac_addr = &rxbuffs[idx * CONFIG_ETH_BUFSIZE];
84 desc_p->dmamac_next = &desc_table_p[idx + 1];
85
86 desc_p->dmamac_cntl =
87 (MAC_MAX_FRAME_SZ & DESC_RXCTRL_SIZE1MASK) | \
88 DESC_RXCTRL_RXCHAIN;
89
90 desc_p->txrx_status = DESC_RXSTS_OWNBYDMA;
91 }
92
93 /* Correcting the last pointer of the chain */
94 desc_p->dmamac_next = &desc_table_p[0];
95
96 writel((ulong)&desc_table_p[0], &dma_p->rxdesclistaddr);
97}
98
99static void descs_init(struct eth_device *dev)
100{
101 tx_descs_init(dev);
102 rx_descs_init(dev);
103}
104
105static int mac_reset(struct eth_device *dev)
106{
107 struct dw_eth_dev *priv = dev->priv;
108 struct eth_mac_regs *mac_p = priv->mac_regs_p;
109 struct eth_dma_regs *dma_p = priv->dma_regs_p;
110
Amit Virdicafabe12012-03-26 00:09:59 +0000111 ulong start;
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530112 int timeout = CONFIG_MACRESET_TIMEOUT;
113
114 writel(DMAMAC_SRST, &dma_p->busmode);
115 writel(MII_PORTSELECT, &mac_p->conf);
116
Amit Virdicafabe12012-03-26 00:09:59 +0000117 start = get_timer(0);
118 while (get_timer(start) < timeout) {
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530119 if (!(readl(&dma_p->busmode) & DMAMAC_SRST))
120 return 0;
Amit Virdicafabe12012-03-26 00:09:59 +0000121
122 /* Try again after 10usec */
123 udelay(10);
124 };
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530125
126 return -1;
127}
128
129static int dw_write_hwaddr(struct eth_device *dev)
130{
131 struct dw_eth_dev *priv = dev->priv;
132 struct eth_mac_regs *mac_p = priv->mac_regs_p;
133 u32 macid_lo, macid_hi;
134 u8 *mac_id = &dev->enetaddr[0];
135
136 macid_lo = mac_id[0] + (mac_id[1] << 8) + \
137 (mac_id[2] << 16) + (mac_id[3] << 24);
138 macid_hi = mac_id[4] + (mac_id[5] << 8);
139
140 writel(macid_hi, &mac_p->macaddr0hi);
141 writel(macid_lo, &mac_p->macaddr0lo);
142
143 return 0;
144}
145
146static int dw_eth_init(struct eth_device *dev, bd_t *bis)
147{
148 struct dw_eth_dev *priv = dev->priv;
149 struct eth_mac_regs *mac_p = priv->mac_regs_p;
150 struct eth_dma_regs *dma_p = priv->dma_regs_p;
151 u32 conf;
152
Vipin Kumar13edd172012-03-26 00:09:56 +0000153 if (priv->phy_configured != 1)
154 configure_phy(dev);
155
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530156 /* Reset ethernet hardware */
157 if (mac_reset(dev) < 0)
158 return -1;
159
Vipin KUMARc7f6dbe2012-03-26 00:09:52 +0000160 /* Resore the HW MAC address as it has been lost during MAC reset */
161 dw_write_hwaddr(dev);
162
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530163 writel(FIXEDBURST | PRIORXTX_41 | BURST_16,
164 &dma_p->busmode);
165
166 writel(FLUSHTXFIFO | readl(&dma_p->opmode), &dma_p->opmode);
167 writel(STOREFORWARD | TXSECONDFRAME, &dma_p->opmode);
168
169 conf = FRAMEBURSTENABLE | DISABLERXOWN;
170
171 if (priv->speed != SPEED_1000M)
172 conf |= MII_PORTSELECT;
173
174 if (priv->duplex == FULL_DUPLEX)
175 conf |= FULLDPLXMODE;
176
177 writel(conf, &mac_p->conf);
178
179 descs_init(dev);
180
181 /*
182 * Start/Enable xfer at dma as well as mac level
183 */
184 writel(readl(&dma_p->opmode) | RXSTART, &dma_p->opmode);
185 writel(readl(&dma_p->opmode) | TXSTART, &dma_p->opmode);
186
Armando Viscontiaa510052012-03-26 00:09:55 +0000187 writel(readl(&mac_p->conf) | RXENABLE | TXENABLE, &mac_p->conf);
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530188
189 return 0;
190}
191
192static int dw_eth_send(struct eth_device *dev, volatile void *packet,
193 int length)
194{
195 struct dw_eth_dev *priv = dev->priv;
196 struct eth_dma_regs *dma_p = priv->dma_regs_p;
197 u32 desc_num = priv->tx_currdescnum;
198 struct dmamacdescr *desc_p = &priv->tx_mac_descrtable[desc_num];
199
200 /* Check if the descriptor is owned by CPU */
201 if (desc_p->txrx_status & DESC_TXSTS_OWNBYDMA) {
202 printf("CPU not owner of tx frame\n");
203 return -1;
204 }
205
206 memcpy((void *)desc_p->dmamac_addr, (void *)packet, length);
207
208#if defined(CONFIG_DW_ALTDESCRIPTOR)
209 desc_p->txrx_status |= DESC_TXSTS_TXFIRST | DESC_TXSTS_TXLAST;
210 desc_p->dmamac_cntl |= (length << DESC_TXCTRL_SIZE1SHFT) & \
211 DESC_TXCTRL_SIZE1MASK;
212
213 desc_p->txrx_status &= ~(DESC_TXSTS_MSK);
214 desc_p->txrx_status |= DESC_TXSTS_OWNBYDMA;
215#else
216 desc_p->dmamac_cntl |= ((length << DESC_TXCTRL_SIZE1SHFT) & \
217 DESC_TXCTRL_SIZE1MASK) | DESC_TXCTRL_TXLAST | \
218 DESC_TXCTRL_TXFIRST;
219
220 desc_p->txrx_status = DESC_TXSTS_OWNBYDMA;
221#endif
222
223 /* Test the wrap-around condition. */
224 if (++desc_num >= CONFIG_TX_DESCR_NUM)
225 desc_num = 0;
226
227 priv->tx_currdescnum = desc_num;
228
229 /* Start the transmission */
230 writel(POLL_DATA, &dma_p->txpolldemand);
231
232 return 0;
233}
234
235static int dw_eth_recv(struct eth_device *dev)
236{
237 struct dw_eth_dev *priv = dev->priv;
238 u32 desc_num = priv->rx_currdescnum;
239 struct dmamacdescr *desc_p = &priv->rx_mac_descrtable[desc_num];
240
241 u32 status = desc_p->txrx_status;
242 int length = 0;
243
244 /* Check if the owner is the CPU */
245 if (!(status & DESC_RXSTS_OWNBYDMA)) {
246
247 length = (status & DESC_RXSTS_FRMLENMSK) >> \
248 DESC_RXSTS_FRMLENSHFT;
249
250 NetReceive(desc_p->dmamac_addr, length);
251
252 /*
253 * Make the current descriptor valid again and go to
254 * the next one
255 */
256 desc_p->txrx_status |= DESC_RXSTS_OWNBYDMA;
257
258 /* Test the wrap-around condition. */
259 if (++desc_num >= CONFIG_RX_DESCR_NUM)
260 desc_num = 0;
261 }
262
263 priv->rx_currdescnum = desc_num;
264
265 return length;
266}
267
268static void dw_eth_halt(struct eth_device *dev)
269{
270 struct dw_eth_dev *priv = dev->priv;
271
272 mac_reset(dev);
273 priv->tx_currdescnum = priv->rx_currdescnum = 0;
274}
275
276static int eth_mdio_read(struct eth_device *dev, u8 addr, u8 reg, u16 *val)
277{
278 struct dw_eth_dev *priv = dev->priv;
279 struct eth_mac_regs *mac_p = priv->mac_regs_p;
Amit Virdicafabe12012-03-26 00:09:59 +0000280 ulong start;
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530281 u32 miiaddr;
282 int timeout = CONFIG_MDIO_TIMEOUT;
283
284 miiaddr = ((addr << MIIADDRSHIFT) & MII_ADDRMSK) | \
285 ((reg << MIIREGSHIFT) & MII_REGMSK);
286
287 writel(miiaddr | MII_CLKRANGE_150_250M | MII_BUSY, &mac_p->miiaddr);
288
Amit Virdicafabe12012-03-26 00:09:59 +0000289 start = get_timer(0);
290 while (get_timer(start) < timeout) {
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530291 if (!(readl(&mac_p->miiaddr) & MII_BUSY)) {
292 *val = readl(&mac_p->miidata);
293 return 0;
294 }
Amit Virdicafabe12012-03-26 00:09:59 +0000295
296 /* Try again after 10usec */
297 udelay(10);
298 };
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530299
300 return -1;
301}
302
303static int eth_mdio_write(struct eth_device *dev, u8 addr, u8 reg, u16 val)
304{
305 struct dw_eth_dev *priv = dev->priv;
306 struct eth_mac_regs *mac_p = priv->mac_regs_p;
Amit Virdicafabe12012-03-26 00:09:59 +0000307 ulong start;
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530308 u32 miiaddr;
309 int ret = -1, timeout = CONFIG_MDIO_TIMEOUT;
310 u16 value;
311
312 writel(val, &mac_p->miidata);
313 miiaddr = ((addr << MIIADDRSHIFT) & MII_ADDRMSK) | \
314 ((reg << MIIREGSHIFT) & MII_REGMSK) | MII_WRITE;
315
316 writel(miiaddr | MII_CLKRANGE_150_250M | MII_BUSY, &mac_p->miiaddr);
317
Amit Virdicafabe12012-03-26 00:09:59 +0000318 start = get_timer(0);
319 while (get_timer(start) < timeout) {
Vipin KUMARc7f6dbe2012-03-26 00:09:52 +0000320 if (!(readl(&mac_p->miiaddr) & MII_BUSY)) {
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530321 ret = 0;
Vipin KUMARc7f6dbe2012-03-26 00:09:52 +0000322 break;
323 }
Amit Virdicafabe12012-03-26 00:09:59 +0000324
325 /* Try again after 10usec */
326 udelay(10);
327 };
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530328
329 /* Needed as a fix for ST-Phy */
330 eth_mdio_read(dev, addr, reg, &value);
331
332 return ret;
333}
334
335#if defined(CONFIG_DW_SEARCH_PHY)
336static int find_phy(struct eth_device *dev)
337{
338 int phy_addr = 0;
339 u16 ctrl, oldctrl;
340
341 do {
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500342 eth_mdio_read(dev, phy_addr, MII_BMCR, &ctrl);
343 oldctrl = ctrl & BMCR_ANENABLE;
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530344
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500345 ctrl ^= BMCR_ANENABLE;
346 eth_mdio_write(dev, phy_addr, MII_BMCR, ctrl);
347 eth_mdio_read(dev, phy_addr, MII_BMCR, &ctrl);
348 ctrl &= BMCR_ANENABLE;
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530349
350 if (ctrl == oldctrl) {
351 phy_addr++;
352 } else {
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500353 ctrl ^= BMCR_ANENABLE;
354 eth_mdio_write(dev, phy_addr, MII_BMCR, ctrl);
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530355
356 return phy_addr;
357 }
358 } while (phy_addr < 32);
359
360 return -1;
361}
362#endif
363
364static int dw_reset_phy(struct eth_device *dev)
365{
366 struct dw_eth_dev *priv = dev->priv;
367 u16 ctrl;
Amit Virdicafabe12012-03-26 00:09:59 +0000368 ulong start;
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530369 int timeout = CONFIG_PHYRESET_TIMEOUT;
370 u32 phy_addr = priv->address;
371
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500372 eth_mdio_write(dev, phy_addr, MII_BMCR, BMCR_RESET);
Amit Virdicafabe12012-03-26 00:09:59 +0000373
374 start = get_timer(0);
375 while (get_timer(start) < timeout) {
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500376 eth_mdio_read(dev, phy_addr, MII_BMCR, &ctrl);
377 if (!(ctrl & BMCR_RESET))
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530378 break;
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530379
Amit Virdicafabe12012-03-26 00:09:59 +0000380 /* Try again after 10usec */
381 udelay(10);
382 };
383
384 if (get_timer(start) >= CONFIG_PHYRESET_TIMEOUT)
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530385 return -1;
386
387#ifdef CONFIG_PHY_RESET_DELAY
388 udelay(CONFIG_PHY_RESET_DELAY);
389#endif
390 return 0;
391}
392
393static int configure_phy(struct eth_device *dev)
394{
395 struct dw_eth_dev *priv = dev->priv;
396 int phy_addr;
Mike Frysingeree7f5bf2011-06-02 05:19:37 +0000397 u16 bmcr;
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530398#if defined(CONFIG_DW_AUTONEG)
399 u16 bmsr;
400 u32 timeout;
Amit Virdicafabe12012-03-26 00:09:59 +0000401 ulong start;
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530402 u16 anlpar, btsr;
Mike Frysingeree7f5bf2011-06-02 05:19:37 +0000403#else
404 u16 ctrl;
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530405#endif
406
407#if defined(CONFIG_DW_SEARCH_PHY)
408 phy_addr = find_phy(dev);
Vipin KUMAR024333c2012-03-26 00:09:54 +0000409 if (phy_addr >= 0)
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530410 priv->address = phy_addr;
411 else
412 return -1;
Mike Frysingerf0ece9e2011-06-02 05:19:38 +0000413#else
414 phy_addr = priv->address;
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530415#endif
416 if (dw_reset_phy(dev) < 0)
417 return -1;
418
419#if defined(CONFIG_DW_AUTONEG)
Armando Visconti20a5dde2012-03-26 00:09:58 +0000420 /* Set Auto-Neg Advertisement capabilities to 10/100 half/full */
421 eth_mdio_write(dev, phy_addr, MII_ADVERTISE, 0x1E1);
422
Vikas Manochae25c90b2012-03-26 00:09:57 +0000423 bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530424#else
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500425 bmcr = BMCR_SPEED100 | BMCR_FULLDPLX;
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530426
427#if defined(CONFIG_DW_SPEED10M)
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500428 bmcr &= ~BMCR_SPEED100;
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530429#endif
430#if defined(CONFIG_DW_DUPLEXHALF)
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500431 bmcr &= ~BMCR_FULLDPLX;
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530432#endif
433#endif
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500434 if (eth_mdio_write(dev, phy_addr, MII_BMCR, bmcr) < 0)
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530435 return -1;
436
437 /* Read the phy status register and populate priv structure */
438#if defined(CONFIG_DW_AUTONEG)
439 timeout = CONFIG_AUTONEG_TIMEOUT;
Amit Virdicafabe12012-03-26 00:09:59 +0000440 start = get_timer(0);
441
442 while (get_timer(start) < timeout) {
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500443 eth_mdio_read(dev, phy_addr, MII_BMSR, &bmsr);
444 if (bmsr & BMSR_ANEGCOMPLETE)
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530445 break;
Amit Virdicafabe12012-03-26 00:09:59 +0000446
447 /* Try again after 10usec */
448 udelay(10);
449 };
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530450
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500451 eth_mdio_read(dev, phy_addr, MII_LPA, &anlpar);
452 eth_mdio_read(dev, phy_addr, MII_STAT1000, &btsr);
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530453
Vipin Kumar13edd172012-03-26 00:09:56 +0000454 if (bmsr & BMSR_ANEGCOMPLETE) {
Vikas Manochae25c90b2012-03-26 00:09:57 +0000455 if (btsr & PHY_1000BTSR_1000FD) {
Vipin Kumar13edd172012-03-26 00:09:56 +0000456 priv->speed = SPEED_1000M;
Vikas Manochae25c90b2012-03-26 00:09:57 +0000457 bmcr |= BMCR_SPEED1000;
458 priv->duplex = FULL_DUPLEX;
459 bmcr |= BMCR_FULLDPLX;
460 } else if (btsr & PHY_1000BTSR_1000HD) {
461 priv->speed = SPEED_1000M;
462 bmcr |= BMCR_SPEED1000;
463 priv->duplex = HALF_DUPLEX;
464 bmcr &= ~BMCR_FULLDPLX;
465 } else if (anlpar & LPA_100FULL) {
466 priv->speed = SPEED_100M;
467 bmcr |= BMCR_SPEED100;
468 priv->duplex = FULL_DUPLEX;
469 bmcr |= BMCR_FULLDPLX;
470 } else if (anlpar & LPA_100HALF) {
471 priv->speed = SPEED_100M;
472 bmcr |= BMCR_SPEED100;
473 priv->duplex = HALF_DUPLEX;
474 bmcr &= ~BMCR_FULLDPLX;
475 } else if (anlpar & LPA_10FULL) {
476 priv->speed = SPEED_10M;
477 bmcr &= ~BMCR_SPEED100;
478 priv->duplex = FULL_DUPLEX;
479 bmcr |= BMCR_FULLDPLX;
Vipin Kumar13edd172012-03-26 00:09:56 +0000480 } else {
Vipin Kumar13edd172012-03-26 00:09:56 +0000481 priv->speed = SPEED_10M;
Vikas Manochae25c90b2012-03-26 00:09:57 +0000482 bmcr &= ~BMCR_SPEED100;
Vipin Kumar13edd172012-03-26 00:09:56 +0000483 priv->duplex = HALF_DUPLEX;
Vikas Manochae25c90b2012-03-26 00:09:57 +0000484 bmcr &= ~BMCR_FULLDPLX;
Vipin Kumar13edd172012-03-26 00:09:56 +0000485 }
Vikas Manochae25c90b2012-03-26 00:09:57 +0000486 if (eth_mdio_write(dev, phy_addr, MII_BMCR, bmcr) < 0)
487 return -1;
Vipin Kumar13edd172012-03-26 00:09:56 +0000488 } else
489 return -1;
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530490#else
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500491 if (eth_mdio_read(dev, phy_addr, MII_BMCR, &ctrl) < 0)
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530492 return -1;
493
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500494 if (ctrl & BMCR_FULLDPLX)
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530495 priv->duplex = FULL_DUPLEX;
496 else
497 priv->duplex = HALF_DUPLEX;
498
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500499 if (ctrl & BMCR_SPEED1000)
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530500 priv->speed = SPEED_1000M;
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500501 else if (ctrl & BMCR_SPEED100)
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530502 priv->speed = SPEED_100M;
503 else
504 priv->speed = SPEED_10M;
505#endif
Vipin Kumar13edd172012-03-26 00:09:56 +0000506 priv->phy_configured = 1;
507
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530508 return 0;
509}
510
511#if defined(CONFIG_MII)
Mike Frysinger5700bb62010-07-27 18:35:08 -0400512static int dw_mii_read(const char *devname, u8 addr, u8 reg, u16 *val)
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530513{
514 struct eth_device *dev;
515
516 dev = eth_get_dev_by_name(devname);
517 if (dev)
518 eth_mdio_read(dev, addr, reg, val);
519
520 return 0;
521}
522
Mike Frysinger5700bb62010-07-27 18:35:08 -0400523static int dw_mii_write(const char *devname, u8 addr, u8 reg, u16 val)
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530524{
525 struct eth_device *dev;
526
527 dev = eth_get_dev_by_name(devname);
528 if (dev)
529 eth_mdio_write(dev, addr, reg, val);
530
531 return 0;
532}
533#endif
534
535int designware_initialize(u32 id, ulong base_addr, u32 phy_addr)
536{
537 struct eth_device *dev;
538 struct dw_eth_dev *priv;
539
540 dev = (struct eth_device *) malloc(sizeof(struct eth_device));
541 if (!dev)
542 return -ENOMEM;
543
544 /*
545 * Since the priv structure contains the descriptors which need a strict
546 * buswidth alignment, memalign is used to allocate memory
547 */
548 priv = (struct dw_eth_dev *) memalign(16, sizeof(struct dw_eth_dev));
549 if (!priv) {
550 free(dev);
551 return -ENOMEM;
552 }
553
554 memset(dev, 0, sizeof(struct eth_device));
555 memset(priv, 0, sizeof(struct dw_eth_dev));
556
557 sprintf(dev->name, "mii%d", id);
558 dev->iobase = (int)base_addr;
559 dev->priv = priv;
560
Simon Glass7616e782011-06-13 16:13:10 -0700561 eth_getenv_enetaddr_by_index("eth", id, &dev->enetaddr[0]);
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530562
563 priv->dev = dev;
564 priv->mac_regs_p = (struct eth_mac_regs *)base_addr;
565 priv->dma_regs_p = (struct eth_dma_regs *)(base_addr +
566 DW_DMA_BASE_OFFSET);
567 priv->address = phy_addr;
Vipin Kumar13edd172012-03-26 00:09:56 +0000568 priv->phy_configured = 0;
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530569
570 if (mac_reset(dev) < 0)
571 return -1;
572
Vipin Kumar13edd172012-03-26 00:09:56 +0000573 configure_phy(dev);
Vipin KUMAR5b1b1882010-06-29 10:53:34 +0530574
575 dev->init = dw_eth_init;
576 dev->send = dw_eth_send;
577 dev->recv = dw_eth_recv;
578 dev->halt = dw_eth_halt;
579 dev->write_hwaddr = dw_write_hwaddr;
580
581 eth_register(dev);
582
583#if defined(CONFIG_MII)
584 miiphy_register(dev->name, dw_mii_read, dw_mii_write);
585#endif
586 return 1;
587}