blob: 22ea114f01bd7674bcf9a948bfb06b7e5af85945 [file] [log] [blame]
Rafal Jaworowski8993e542007-07-27 14:43:59 +02001/*
Detlev Zundel6f5f89f2010-04-01 14:16:41 +02002 * (C) Copyright 2003-2010
Rafal Jaworowski8993e542007-07-27 14:43:59 +02003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * Derived from the MPC8xx FEC driver.
6 * Adapted for MPC512x by Grzegorz Bernacki <gjb@semihalf.com>
7 */
8
9#include <common.h>
Rafal Jaworowski8993e542007-07-27 14:43:59 +020010#include <malloc.h>
11#include <net.h>
Ben Warrena0aad082008-08-31 10:36:38 -070012#include <netdev.h>
Rafal Jaworowski8993e542007-07-27 14:43:59 +020013#include <miiphy.h>
Wolfgang Denk843efb12009-05-16 10:47:43 +020014#include <asm/io.h>
Ben Warren6b5049d2008-08-28 23:58:30 -070015#include "mpc512x_fec.h"
Rafal Jaworowski8993e542007-07-27 14:43:59 +020016
17DECLARE_GLOBAL_DATA_PTR;
18
19#define DEBUG 0
20
Wolfgang Denkafaac862007-08-12 14:27:39 +020021#if !(defined(CONFIG_MII) || defined(CONFIG_CMD_MII))
Rafal Jaworowski8993e542007-07-27 14:43:59 +020022#error "CONFIG_MII has to be defined!"
23#endif
24
Mike Frysinger5700bb62010-07-27 18:35:08 -040025int fec512x_miiphy_read(const char *devname, u8 phyAddr, u8 regAddr, u16 * retVal);
26int fec512x_miiphy_write(const char *devname, u8 phyAddr, u8 regAddr, u16 data);
Rafal Jaworowski8993e542007-07-27 14:43:59 +020027int mpc512x_fec_init_phy(struct eth_device *dev, bd_t * bis);
28
Grzegorz Bernacki7a888d62007-09-10 17:39:08 +020029static uchar rx_buff[FEC_BUFFER_SIZE];
Grzegorz Bernacki08e2e5f2007-09-07 17:09:21 +020030static int rx_buff_idx = 0;
31
Rafal Jaworowski8993e542007-07-27 14:43:59 +020032/********************************************************************/
33#if (DEBUG & 0x2)
34static void mpc512x_fec_phydump (char *devname)
35{
Wolfgang Denk3b74e7e2009-05-16 10:47:45 +020036 u16 phyStatus, i;
37 u8 phyAddr = CONFIG_PHY_ADDR;
38 u8 reg_mask[] = {
Rafal Jaworowski8993e542007-07-27 14:43:59 +020039 /* regs to print: 0...8, 21,27,31 */
40 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0,
41 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1,
42 };
43
44 for (i = 0; i < 32; i++) {
45 if (reg_mask[i]) {
46 miiphy_read (devname, phyAddr, i, &phyStatus);
47 printf ("Mii reg %d: 0x%04x\n", i, phyStatus);
48 }
49 }
50}
51#endif
52
53/********************************************************************/
54static int mpc512x_fec_bd_init (mpc512x_fec_priv *fec)
55{
56 int ix;
57
58 /*
59 * Receive BDs init
60 */
61 for (ix = 0; ix < FEC_RBD_NUM; ix++) {
Wolfgang Denk843efb12009-05-16 10:47:43 +020062 fec->bdBase->rbd[ix].dataPointer =
Wolfgang Denk3b74e7e2009-05-16 10:47:45 +020063 (u32)&fec->bdBase->recv_frames[ix];
Rafal Jaworowski8993e542007-07-27 14:43:59 +020064 fec->bdBase->rbd[ix].status = FEC_RBD_EMPTY;
65 fec->bdBase->rbd[ix].dataLength = 0;
66 }
67
68 /*
69 * have the last RBD to close the ring
70 */
71 fec->bdBase->rbd[ix - 1].status |= FEC_RBD_WRAP;
72 fec->rbdIndex = 0;
73
74 /*
75 * Trasmit BDs init
76 */
77 for (ix = 0; ix < FEC_TBD_NUM; ix++) {
Wolfgang Denkb1b54e32007-08-02 21:27:46 +020078 fec->bdBase->tbd[ix].status = 0;
79 }
Rafal Jaworowski8993e542007-07-27 14:43:59 +020080
Wolfgang Denkb1b54e32007-08-02 21:27:46 +020081 /*
82 * Have the last TBD to close the ring
83 */
84 fec->bdBase->tbd[ix - 1].status |= FEC_TBD_WRAP;
Rafal Jaworowski8993e542007-07-27 14:43:59 +020085
Wolfgang Denkb1b54e32007-08-02 21:27:46 +020086 /*
87 * Initialize some indices
88 */
89 fec->tbdIndex = 0;
90 fec->usedTbdIndex = 0;
91 fec->cleanTbdNum = FEC_TBD_NUM;
Rafal Jaworowski8993e542007-07-27 14:43:59 +020092
93 return 0;
94}
95
96/********************************************************************/
97static void mpc512x_fec_rbd_clean (mpc512x_fec_priv *fec, volatile FEC_RBD * pRbd)
98{
99 /*
100 * Reset buffer descriptor as empty
101 */
102 if ((fec->rbdIndex) == (FEC_RBD_NUM - 1))
103 pRbd->status = (FEC_RBD_WRAP | FEC_RBD_EMPTY);
104 else
105 pRbd->status = FEC_RBD_EMPTY;
106
107 pRbd->dataLength = 0;
108
109 /*
110 * Increment BD count
111 */
112 fec->rbdIndex = (fec->rbdIndex + 1) % FEC_RBD_NUM;
113
114 /*
115 * Now, we have an empty RxBD, notify FEC
Wolfgang Denk843efb12009-05-16 10:47:43 +0200116 * Set Descriptor polling active
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200117 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200118 out_be32(&fec->eth->r_des_active, 0x01000000);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200119}
120
121/********************************************************************/
122static void mpc512x_fec_tbd_scrub (mpc512x_fec_priv *fec)
123{
124 volatile FEC_TBD *pUsedTbd;
125
126#if (DEBUG & 0x1)
127 printf ("tbd_scrub: fec->cleanTbdNum = %d, fec->usedTbdIndex = %d\n",
128 fec->cleanTbdNum, fec->usedTbdIndex);
129#endif
130
131 /*
132 * process all the consumed TBDs
133 */
134 while (fec->cleanTbdNum < FEC_TBD_NUM) {
135 pUsedTbd = &fec->bdBase->tbd[fec->usedTbdIndex];
136 if (pUsedTbd->status & FEC_TBD_READY) {
137#if (DEBUG & 0x20)
138 printf ("Cannot clean TBD %d, in use\n", fec->usedTbdIndex);
139#endif
140 return;
141 }
142
143 /*
144 * clean this buffer descriptor
145 */
146 if (fec->usedTbdIndex == (FEC_TBD_NUM - 1))
147 pUsedTbd->status = FEC_TBD_WRAP;
148 else
149 pUsedTbd->status = 0;
150
151 /*
152 * update some indeces for a correct handling of the TBD ring
153 */
154 fec->cleanTbdNum++;
155 fec->usedTbdIndex = (fec->usedTbdIndex + 1) % FEC_TBD_NUM;
156 }
157}
158
159/********************************************************************/
Detlev Zundel55258562010-04-08 11:49:59 +0200160static void mpc512x_fec_set_hwaddr (mpc512x_fec_priv *fec, unsigned char *mac)
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200161{
Wolfgang Denk3b74e7e2009-05-16 10:47:45 +0200162 u8 currByte; /* byte for which to compute the CRC */
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200163 int byte; /* loop - counter */
164 int bit; /* loop - counter */
Wolfgang Denk3b74e7e2009-05-16 10:47:45 +0200165 u32 crc = 0xffffffff; /* initial value */
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200166
167 /*
168 * The algorithm used is the following:
169 * we loop on each of the six bytes of the provided address,
170 * and we compute the CRC by left-shifting the previous
171 * value by one position, so that each bit in the current
172 * byte of the address may contribute the calculation. If
173 * the latter and the MSB in the CRC are different, then
174 * the CRC value so computed is also ex-ored with the
175 * "polynomium generator". The current byte of the address
176 * is also shifted right by one bit at each iteration.
177 * This is because the CRC generatore in hardware is implemented
178 * as a shift-register with as many ex-ores as the radixes
179 * in the polynomium. This suggests that we represent the
180 * polynomiumm itself as a 32-bit constant.
181 */
182 for (byte = 0; byte < 6; byte++) {
183 currByte = mac[byte];
184 for (bit = 0; bit < 8; bit++) {
185 if ((currByte & 0x01) ^ (crc & 0x01)) {
186 crc >>= 1;
187 crc = crc ^ 0xedb88320;
188 } else {
189 crc >>= 1;
190 }
191 currByte >>= 1;
192 }
193 }
194
195 crc = crc >> 26;
196
197 /*
198 * Set individual hash table register
199 */
200 if (crc >= 32) {
Wolfgang Denk843efb12009-05-16 10:47:43 +0200201 out_be32(&fec->eth->iaddr1, (1 << (crc - 32)));
202 out_be32(&fec->eth->iaddr2, 0);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200203 } else {
Wolfgang Denk843efb12009-05-16 10:47:43 +0200204 out_be32(&fec->eth->iaddr1, 0);
205 out_be32(&fec->eth->iaddr2, (1 << crc));
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200206 }
207
208 /*
209 * Set physical address
210 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200211 out_be32(&fec->eth->paddr1, (mac[0] << 24) + (mac[1] << 16) +
212 (mac[2] << 8) + mac[3]);
213 out_be32(&fec->eth->paddr2, (mac[4] << 24) + (mac[5] << 16) +
214 0x8808);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200215}
216
217/********************************************************************/
218static int mpc512x_fec_init (struct eth_device *dev, bd_t * bis)
219{
220 mpc512x_fec_priv *fec = (mpc512x_fec_priv *)dev->priv;
221
222#if (DEBUG & 0x1)
223 printf ("mpc512x_fec_init... Begin\n");
224#endif
225
Detlev Zundel55258562010-04-08 11:49:59 +0200226 mpc512x_fec_set_hwaddr (fec, dev->enetaddr);
227 out_be32(&fec->eth->gaddr1, 0x00000000);
228 out_be32(&fec->eth->gaddr2, 0x00000000);
229
230 mpc512x_fec_init_phy (dev, bis);
231
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200232 /* Set interrupt mask register */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200233 out_be32(&fec->eth->imask, 0x00000000);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200234
235 /* Clear FEC-Lite interrupt event register(IEVENT) */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200236 out_be32(&fec->eth->ievent, 0xffffffff);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200237
238 /* Set transmit fifo watermark register(X_WMRK), default = 64 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200239 out_be32(&fec->eth->x_wmrk, 0x0);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200240
241 /* Set Opcode/Pause Duration Register */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200242 out_be32(&fec->eth->op_pause, 0x00010020);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200243
Grzegorz Bernacki7a888d62007-09-10 17:39:08 +0200244 /* Frame length=1522; MII mode */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200245 out_be32(&fec->eth->r_cntrl, (FEC_MAX_FRAME_LEN << 16) | 0x24);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200246
247 /* Half-duplex, heartbeat disabled */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200248 out_be32(&fec->eth->x_cntrl, 0x00000000);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200249
250 /* Enable MIB counters */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200251 out_be32(&fec->eth->mib_control, 0x0);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200252
253 /* Setup recv fifo start and buff size */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200254 out_be32(&fec->eth->r_fstart, 0x500);
255 out_be32(&fec->eth->r_buff_size, FEC_BUFFER_SIZE);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200256
257 /* Setup BD base addresses */
Wolfgang Denk3b74e7e2009-05-16 10:47:45 +0200258 out_be32(&fec->eth->r_des_start, (u32)fec->bdBase->rbd);
259 out_be32(&fec->eth->x_des_start, (u32)fec->bdBase->tbd);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200260
261 /* DMA Control */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200262 out_be32(&fec->eth->dma_control, 0xc0000000);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200263
264 /* Enable FEC */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200265 setbits_be32(&fec->eth->ecntrl, 0x00000006);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200266
267 /* Initilize addresses and status words of BDs */
268 mpc512x_fec_bd_init (fec);
269
Wolfgang Denkb1b54e32007-08-02 21:27:46 +0200270 /* Descriptor polling active */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200271 out_be32(&fec->eth->r_des_active, 0x01000000);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200272
273#if (DEBUG & 0x1)
274 printf("mpc512x_fec_init... Done \n");
275#endif
276 return 1;
277}
278
279/********************************************************************/
280int mpc512x_fec_init_phy (struct eth_device *dev, bd_t * bis)
281{
282 mpc512x_fec_priv *fec = (mpc512x_fec_priv *)dev->priv;
Wolfgang Denk3b74e7e2009-05-16 10:47:45 +0200283 const u8 phyAddr = CONFIG_PHY_ADDR; /* Only one PHY */
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200284 int timeout = 1;
Wolfgang Denk3b74e7e2009-05-16 10:47:45 +0200285 u16 phyStatus;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200286
287#if (DEBUG & 0x1)
288 printf ("mpc512x_fec_init_phy... Begin\n");
289#endif
290
291 /*
292 * Clear FEC-Lite interrupt event register(IEVENT)
293 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200294 out_be32(&fec->eth->ievent, 0xffffffff);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200295
296 /*
297 * Set interrupt mask register
298 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200299 out_be32(&fec->eth->imask, 0x00000000);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200300
301 if (fec->xcv_type != SEVENWIRE) {
302 /*
303 * Set MII_SPEED = (1/(mii_speed * 2)) * System Clock
304 * and do not drop the Preamble.
305 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200306 out_be32(&fec->eth->mii_speed,
Simon Glassfefb0982012-12-13 20:48:54 +0000307 (((gd->arch.ips_clk / 1000000) / 5) + 1) << 1);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200308
309 /*
310 * Reset PHY, then delay 300ns
311 */
312 miiphy_write (dev->name, phyAddr, 0x0, 0x8000);
313 udelay (1000);
314
315 if (fec->xcv_type == MII10) {
316 /*
317 * Force 10Base-T, FDX operation
318 */
319#if (DEBUG & 0x2)
320 printf ("Forcing 10 Mbps ethernet link... ");
321#endif
322 miiphy_read (dev->name, phyAddr, 0x1, &phyStatus);
Wolfgang Denkb1b54e32007-08-02 21:27:46 +0200323
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200324 miiphy_write (dev->name, phyAddr, 0x0, 0x0180);
325
326 timeout = 20;
327 do { /* wait for link status to go down */
328 udelay (10000);
329 if ((timeout--) == 0) {
330#if (DEBUG & 0x2)
331 printf ("hmmm, should not have waited...");
332#endif
333 break;
334 }
335 miiphy_read (dev->name, phyAddr, 0x1, &phyStatus);
336#if (DEBUG & 0x2)
337 printf ("=");
338#endif
339 } while ((phyStatus & 0x0004)); /* !link up */
340
341 timeout = 1000;
342 do { /* wait for link status to come back up */
343 udelay (10000);
344 if ((timeout--) == 0) {
345 printf ("failed. Link is down.\n");
346 break;
347 }
348 miiphy_read (dev->name, phyAddr, 0x1, &phyStatus);
349#if (DEBUG & 0x2)
350 printf ("+");
351#endif
352 } while (!(phyStatus & 0x0004)); /* !link up */
353
354#if (DEBUG & 0x2)
355 printf ("done.\n");
356#endif
Wolfgang Denkb1b54e32007-08-02 21:27:46 +0200357 } else { /* MII100 */
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200358 /*
359 * Set the auto-negotiation advertisement register bits
360 */
361 miiphy_write (dev->name, phyAddr, 0x4, 0x01e1);
362
363 /*
364 * Set MDIO bit 0.12 = 1(&& bit 0.9=1?) to enable auto-negotiation
365 */
366 miiphy_write (dev->name, phyAddr, 0x0, 0x1200);
367
368 /*
369 * Wait for AN completion
370 */
Wolfgang Denk7238ada2008-09-12 13:52:21 +0200371 timeout = 2500;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200372 do {
373 udelay (1000);
374
375 if ((timeout--) == 0) {
376#if (DEBUG & 0x2)
377 printf ("PHY auto neg 0 failed...\n");
378#endif
379 return -1;
380 }
381
382 if (miiphy_read (dev->name, phyAddr, 0x1, &phyStatus) != 0) {
383#if (DEBUG & 0x2)
384 printf ("PHY auto neg 1 failed 0x%04x...\n", phyStatus);
385#endif
386 return -1;
387 }
388 } while (!(phyStatus & 0x0004));
389
390#if (DEBUG & 0x2)
391 printf ("PHY auto neg complete! \n");
392#endif
393 }
394 }
395
396#if (DEBUG & 0x2)
397 if (fec->xcv_type != SEVENWIRE)
398 mpc512x_fec_phydump (dev->name);
399#endif
400
401#if (DEBUG & 0x1)
402 printf ("mpc512x_fec_init_phy... Done \n");
403#endif
404 return 1;
405}
406
407/********************************************************************/
408static void mpc512x_fec_halt (struct eth_device *dev)
409{
410 mpc512x_fec_priv *fec = (mpc512x_fec_priv *)dev->priv;
411 int counter = 0xffff;
412
413#if (DEBUG & 0x2)
414 if (fec->xcv_type != SEVENWIRE)
415 mpc512x_fec_phydump (dev->name);
416#endif
417
418 /*
419 * mask FEC chip interrupts
420 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200421 out_be32(&fec->eth->imask, 0);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200422
423 /*
424 * issue graceful stop command to the FEC transmitter if necessary
425 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200426 setbits_be32(&fec->eth->x_cntrl, 0x00000001);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200427
428 /*
429 * wait for graceful stop to register
430 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200431 while ((counter--) && (!(in_be32(&fec->eth->ievent) & 0x10000000)))
432 ;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200433
434 /*
435 * Disable the Ethernet Controller
436 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200437 clrbits_be32(&fec->eth->ecntrl, 0x00000002);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200438
439 /*
440 * Issue a reset command to the FEC chip
441 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200442 setbits_be32(&fec->eth->ecntrl, 0x1);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200443
444 /*
445 * wait at least 16 clock cycles
446 */
447 udelay (10);
448#if (DEBUG & 0x3)
449 printf ("Ethernet task stopped\n");
450#endif
451}
452
453/********************************************************************/
454
Anatolij Gustschinc2996082012-05-21 09:13:52 +0000455static int mpc512x_fec_send(struct eth_device *dev, void *eth_data,
456 int data_length)
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200457{
458 /*
459 * This routine transmits one frame. This routine only accepts
460 * 6-byte Ethernet addresses.
461 */
462 mpc512x_fec_priv *fec = (mpc512x_fec_priv *)dev->priv;
463 volatile FEC_TBD *pTbd;
464
465#if (DEBUG & 0x20)
466 printf("tbd status: 0x%04x\n", fec->tbdBase[fec->tbdIndex].status);
467#endif
468
469 /*
470 * Clear Tx BD ring at first
471 */
472 mpc512x_fec_tbd_scrub (fec);
473
474 /*
475 * Check for valid length of data.
476 */
477 if ((data_length > 1500) || (data_length <= 0)) {
478 return -1;
479 }
480
481 /*
482 * Check the number of vacant TxBDs.
483 */
484 if (fec->cleanTbdNum < 1) {
485#if (DEBUG & 0x20)
486 printf ("No available TxBDs ...\n");
487#endif
488 return -1;
489 }
490
491 /*
492 * Get the first TxBD to send the mac header
493 */
494 pTbd = &fec->bdBase->tbd[fec->tbdIndex];
495 pTbd->dataLength = data_length;
Wolfgang Denk3b74e7e2009-05-16 10:47:45 +0200496 pTbd->dataPointer = (u32)eth_data;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200497 pTbd->status |= FEC_TBD_LAST | FEC_TBD_TC | FEC_TBD_READY;
498 fec->tbdIndex = (fec->tbdIndex + 1) % FEC_TBD_NUM;
Wolfgang Denkb1b54e32007-08-02 21:27:46 +0200499
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200500 /* Activate transmit Buffer Descriptor polling */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200501 out_be32(&fec->eth->x_des_active, 0x01000000);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200502
503#if (DEBUG & 0x8)
504 printf ( "+" );
505#endif
506
507 fec->cleanTbdNum -= 1;
508
509 /*
510 * wait until frame is sent .
511 */
512 while (pTbd->status & FEC_TBD_READY) {
513 udelay (10);
514#if (DEBUG & 0x8)
515 printf ("TDB status = %04x\n", pTbd->status);
516#endif
517 }
518
519 return 0;
520}
521
522
523/********************************************************************/
524static int mpc512x_fec_recv (struct eth_device *dev)
525{
526 /*
527 * This command pulls one frame from the card
528 */
529 mpc512x_fec_priv *fec = (mpc512x_fec_priv *)dev->priv;
530 volatile FEC_RBD *pRbd = &fec->bdBase->rbd[fec->rbdIndex];
531 unsigned long ievent;
Grzegorz Bernacki08e2e5f2007-09-07 17:09:21 +0200532 int frame_length = 0;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200533
534#if (DEBUG & 0x1)
535 printf ("mpc512x_fec_recv %d Start...\n", fec->rbdIndex);
536#endif
537#if (DEBUG & 0x8)
538 printf( "-" );
539#endif
Wolfgang Denkb1b54e32007-08-02 21:27:46 +0200540
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200541 /*
542 * Check if any critical events have happened
543 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200544 ievent = in_be32(&fec->eth->ievent);
545 out_be32(&fec->eth->ievent, ievent);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200546 if (ievent & 0x20060000) {
547 /* BABT, Rx/Tx FIFO errors */
548 mpc512x_fec_halt (dev);
549 mpc512x_fec_init (dev, NULL);
550 return 0;
551 }
552 if (ievent & 0x80000000) {
553 /* Heartbeat error */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200554 setbits_be32(&fec->eth->x_cntrl, 0x00000001);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200555 }
556 if (ievent & 0x10000000) {
557 /* Graceful stop complete */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200558 if (in_be32(&fec->eth->x_cntrl) & 0x00000001) {
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200559 mpc512x_fec_halt (dev);
Wolfgang Denk843efb12009-05-16 10:47:43 +0200560 clrbits_be32(&fec->eth->x_cntrl, 0x00000001);;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200561 mpc512x_fec_init (dev, NULL);
562 }
563 }
564
565 if (!(pRbd->status & FEC_RBD_EMPTY)) {
Grzegorz Bernacki08e2e5f2007-09-07 17:09:21 +0200566 if (!(pRbd->status & FEC_RBD_ERR) &&
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200567 ((pRbd->dataLength - 4) > 14)) {
Wolfgang Denkb1b54e32007-08-02 21:27:46 +0200568
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200569 /*
570 * Get buffer size
571 */
Grzegorz Bernacki08e2e5f2007-09-07 17:09:21 +0200572 if (pRbd->status & FEC_RBD_LAST)
573 frame_length = pRbd->dataLength - 4;
574 else
575 frame_length = pRbd->dataLength;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200576#if (DEBUG & 0x20)
577 {
578 int i;
Grzegorz Bernacki08e2e5f2007-09-07 17:09:21 +0200579 printf ("recv data length 0x%08x data hdr: ",
580 pRbd->dataLength);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200581 for (i = 0; i < 14; i++)
Wolfgang Denk3b74e7e2009-05-16 10:47:45 +0200582 printf ("%x ", *((u8*)pRbd->dataPointer + i));
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200583 printf("\n");
584 }
585#endif
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200586 /*
587 * Fill the buffer and pass it to upper layers
588 */
Grzegorz Bernacki08e2e5f2007-09-07 17:09:21 +0200589 memcpy (&rx_buff[rx_buff_idx], (void*)pRbd->dataPointer,
590 frame_length - rx_buff_idx);
591 rx_buff_idx = frame_length;
592
593 if (pRbd->status & FEC_RBD_LAST) {
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500594 net_process_received_packet((uchar *)rx_buff,
595 frame_length);
Grzegorz Bernacki08e2e5f2007-09-07 17:09:21 +0200596 rx_buff_idx = 0;
597 }
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200598 }
599
600 /*
601 * Reset buffer descriptor as empty
602 */
603 mpc512x_fec_rbd_clean (fec, pRbd);
604 }
605
606 /* Try to fill Buffer Descriptors */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200607 out_be32(&fec->eth->r_des_active, 0x01000000);
608
Grzegorz Bernacki08e2e5f2007-09-07 17:09:21 +0200609 return frame_length;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200610}
611
612/********************************************************************/
613int mpc512x_fec_initialize (bd_t * bis)
614{
Wolfgang Denka927e492009-05-16 10:47:44 +0200615 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200616 mpc512x_fec_priv *fec;
617 struct eth_device *dev;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200618 void * bd;
619
620 fec = (mpc512x_fec_priv *) malloc (sizeof(*fec));
621 dev = (struct eth_device *) malloc (sizeof(*dev));
622 memset (dev, 0, sizeof *dev);
623
Wolfgang Denka927e492009-05-16 10:47:44 +0200624 fec->eth = &im->fec;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200625
626# ifndef CONFIG_FEC_10MBIT
627 fec->xcv_type = MII100;
628# else
629 fec->xcv_type = MII10;
630# endif
631 dev->priv = (void *)fec;
Wolfgang Denka927e492009-05-16 10:47:44 +0200632 dev->iobase = (int)&im->fec;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200633 dev->init = mpc512x_fec_init;
634 dev->halt = mpc512x_fec_halt;
635 dev->send = mpc512x_fec_send;
636 dev->recv = mpc512x_fec_recv;
637
Heiko Schocher48690d82010-07-20 17:45:02 +0200638 sprintf (dev->name, "FEC");
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200639 eth_register (dev);
640
Wolfgang Denkafaac862007-08-12 14:27:39 +0200641#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200642 miiphy_register (dev->name,
643 fec512x_miiphy_read, fec512x_miiphy_write);
644#endif
645
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200646 /* Clean up space FEC's MIB and FIFO RAM ...*/
Wolfgang Denk3b74e7e2009-05-16 10:47:45 +0200647 memset ((void *)&im->fec.mib, 0x00, sizeof(im->fec.mib));
648 memset ((void *)&im->fec.fifo, 0x00, sizeof(im->fec.fifo));
Wolfgang Denkb1b54e32007-08-02 21:27:46 +0200649
650 /*
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200651 * Malloc space for BDs (must be quad word-aligned)
Wolfgang Denkb1b54e32007-08-02 21:27:46 +0200652 * this pointer is lost, so cannot be freed
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200653 */
654 bd = malloc (sizeof(mpc512x_buff_descs) + 0x1f);
Wolfgang Denk3b74e7e2009-05-16 10:47:45 +0200655 fec->bdBase = (mpc512x_buff_descs*)((u32)bd & 0xfffffff0);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200656 memset ((void *) bd, 0x00, sizeof(mpc512x_buff_descs) + 0x1f);
657
658 /*
659 * Set interrupt mask register
660 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200661 out_be32(&fec->eth->imask, 0x00000000);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200662
663 /*
664 * Clear FEC-Lite interrupt event register(IEVENT)
665 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200666 out_be32(&fec->eth->ievent, 0xffffffff);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200667
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200668 return 1;
669}
670
671/* MII-interface related functions */
672/********************************************************************/
Mike Frysinger5700bb62010-07-27 18:35:08 -0400673int fec512x_miiphy_read(const char *devname, u8 phyAddr, u8 regAddr, u16 *retVal)
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200674{
Wolfgang Denka927e492009-05-16 10:47:44 +0200675 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
676 volatile fec512x_t *eth = &im->fec;
Wolfgang Denk3b74e7e2009-05-16 10:47:45 +0200677 u32 reg; /* convenient holder for the PHY register */
678 u32 phy; /* convenient holder for the PHY */
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200679 int timeout = 0xffff;
680
681 /*
682 * reading from any PHY's register is done by properly
683 * programming the FEC's MII data register.
684 */
685 reg = regAddr << FEC_MII_DATA_RA_SHIFT;
686 phy = phyAddr << FEC_MII_DATA_PA_SHIFT;
687
Wolfgang Denk843efb12009-05-16 10:47:43 +0200688 out_be32(&eth->mii_data, FEC_MII_DATA_ST |
689 FEC_MII_DATA_OP_RD |
690 FEC_MII_DATA_TA |
691 phy | reg);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200692
693 /*
694 * wait for the related interrupt
695 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200696 while ((timeout--) && (!(in_be32(&eth->ievent) & 0x00800000)))
697 ;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200698
699 if (timeout == 0) {
700#if (DEBUG & 0x2)
701 printf ("Read MDIO failed...\n");
702#endif
703 return -1;
704 }
705
706 /*
707 * clear mii interrupt bit
708 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200709 out_be32(&eth->ievent, 0x00800000);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200710
711 /*
712 * it's now safe to read the PHY's register
713 */
Wolfgang Denk3b74e7e2009-05-16 10:47:45 +0200714 *retVal = (u16) in_be32(&eth->mii_data);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200715
716 return 0;
717}
718
719/********************************************************************/
Mike Frysinger5700bb62010-07-27 18:35:08 -0400720int fec512x_miiphy_write(const char *devname, u8 phyAddr, u8 regAddr, u16 data)
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200721{
Wolfgang Denka927e492009-05-16 10:47:44 +0200722 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
723 volatile fec512x_t *eth = &im->fec;
Wolfgang Denk3b74e7e2009-05-16 10:47:45 +0200724 u32 reg; /* convenient holder for the PHY register */
725 u32 phy; /* convenient holder for the PHY */
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200726 int timeout = 0xffff;
727
728 reg = regAddr << FEC_MII_DATA_RA_SHIFT;
729 phy = phyAddr << FEC_MII_DATA_PA_SHIFT;
730
Wolfgang Denk843efb12009-05-16 10:47:43 +0200731 out_be32(&eth->mii_data, FEC_MII_DATA_ST |
732 FEC_MII_DATA_OP_WR |
733 FEC_MII_DATA_TA |
734 phy | reg | data);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200735
736 /*
737 * wait for the MII interrupt
738 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200739 while ((timeout--) && (!(in_be32(&eth->ievent) & 0x00800000)))
740 ;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200741
742 if (timeout == 0) {
743#if (DEBUG & 0x2)
744 printf ("Write MDIO failed...\n");
745#endif
746 return -1;
747 }
748
749 /*
750 * clear MII interrupt bit
751 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200752 out_be32(&eth->ievent, 0x00800000);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200753
754 return 0;
755}