MPC5XXX, Motion-PRO: Fix PHY initialization problem.
[platform/kernel/u-boot.git] / cpu / mpc5xxx / fec.c
1 /*
2  * (C) Copyright 2003-2005
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * This file is based on mpc4200fec.c,
6  * (C) Copyright Motorola, Inc., 2000
7  */
8
9 #include <common.h>
10 #include <mpc5xxx.h>
11 #include <malloc.h>
12 #include <net.h>
13 #include <miiphy.h>
14 #include "sdma.h"
15 #include "fec.h"
16
17 DECLARE_GLOBAL_DATA_PTR;
18
19 /* #define DEBUG        0x28 */
20
21 #if (CONFIG_COMMANDS & CFG_CMD_NET) && defined(CONFIG_NET_MULTI) && \
22         defined(CONFIG_MPC5xxx_FEC)
23
24 #if !(defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII))
25 #error "CONFIG_MII has to be defined!"
26 #endif
27
28 #if (DEBUG & 0x60)
29 static void tfifo_print(char *devname, mpc5xxx_fec_priv *fec);
30 static void rfifo_print(char *devname, mpc5xxx_fec_priv *fec);
31 #endif /* DEBUG */
32
33 #if (DEBUG & 0x40)
34 static uint32 local_crc32(char *string, unsigned int crc_value, int len);
35 #endif
36
37 typedef struct {
38     uint8 data[1500];           /* actual data */
39     int length;                 /* actual length */
40     int used;                   /* buffer in use or not */
41     uint8 head[16];             /* MAC header(6 + 6 + 2) + 2(aligned) */
42 } NBUF;
43
44 int fec5xxx_miiphy_read(char *devname, uint8 phyAddr, uint8 regAddr, uint16 * retVal);
45 int fec5xxx_miiphy_write(char *devname, uint8 phyAddr, uint8 regAddr, uint16 data);
46
47 /********************************************************************/
48 #if (DEBUG & 0x2)
49 static void mpc5xxx_fec_phydump (char *devname)
50 {
51         uint16 phyStatus, i;
52         uint8 phyAddr = CONFIG_PHY_ADDR;
53         uint8 reg_mask[] = {
54 #if CONFIG_PHY_TYPE == 0x79c874 /* AMD Am79C874 */
55                 /* regs to print: 0...7, 16...19, 21, 23, 24 */
56                 1, 1, 1, 1,  1, 1, 1, 1,     0, 0, 0, 0,  0, 0, 0, 0,
57                 1, 1, 1, 1,  0, 1, 0, 1,     1, 0, 0, 0,  0, 0, 0, 0,
58 #else
59                 /* regs to print: 0...8, 16...20 */
60                 1, 1, 1, 1,  1, 1, 1, 1,     1, 0, 0, 0,  0, 0, 0, 0,
61                 1, 1, 1, 1,  1, 0, 0, 0,     0, 0, 0, 0,  0, 0, 0, 0,
62 #endif
63         };
64
65         for (i = 0; i < 32; i++) {
66                 if (reg_mask[i]) {
67                         miiphy_read(devname, phyAddr, i, &phyStatus);
68                         printf("Mii reg %d: 0x%04x\n", i, phyStatus);
69                 }
70         }
71 }
72 #endif
73
74 /********************************************************************/
75 static int mpc5xxx_fec_rbd_init(mpc5xxx_fec_priv *fec)
76 {
77         int ix;
78         char *data;
79         static int once = 0;
80
81         for (ix = 0; ix < FEC_RBD_NUM; ix++) {
82                 if (!once) {
83                         data = (char *)malloc(FEC_MAX_PKT_SIZE);
84                         if (data == NULL) {
85                                 printf ("RBD INIT FAILED\n");
86                                 return -1;
87                         }
88                         fec->rbdBase[ix].dataPointer = (uint32)data;
89                 }
90                 fec->rbdBase[ix].status = FEC_RBD_EMPTY;
91                 fec->rbdBase[ix].dataLength = 0;
92         }
93         once ++;
94
95         /*
96          * have the last RBD to close the ring
97          */
98         fec->rbdBase[ix - 1].status |= FEC_RBD_WRAP;
99         fec->rbdIndex = 0;
100
101         return 0;
102 }
103
104 /********************************************************************/
105 static void mpc5xxx_fec_tbd_init(mpc5xxx_fec_priv *fec)
106 {
107         int ix;
108
109         for (ix = 0; ix < FEC_TBD_NUM; ix++) {
110                 fec->tbdBase[ix].status = 0;
111         }
112
113         /*
114          * Have the last TBD to close the ring
115          */
116         fec->tbdBase[ix - 1].status |= FEC_TBD_WRAP;
117
118         /*
119          * Initialize some indices
120          */
121         fec->tbdIndex = 0;
122         fec->usedTbdIndex = 0;
123         fec->cleanTbdNum = FEC_TBD_NUM;
124 }
125
126 /********************************************************************/
127 static void mpc5xxx_fec_rbd_clean(mpc5xxx_fec_priv *fec, volatile FEC_RBD * pRbd)
128 {
129         /*
130          * Reset buffer descriptor as empty
131          */
132         if ((fec->rbdIndex) == (FEC_RBD_NUM - 1))
133                 pRbd->status = (FEC_RBD_WRAP | FEC_RBD_EMPTY);
134         else
135                 pRbd->status = FEC_RBD_EMPTY;
136
137         pRbd->dataLength = 0;
138
139         /*
140          * Now, we have an empty RxBD, restart the SmartDMA receive task
141          */
142         SDMA_TASK_ENABLE(FEC_RECV_TASK_NO);
143
144         /*
145          * Increment BD count
146          */
147         fec->rbdIndex = (fec->rbdIndex + 1) % FEC_RBD_NUM;
148 }
149
150 /********************************************************************/
151 static void mpc5xxx_fec_tbd_scrub(mpc5xxx_fec_priv *fec)
152 {
153         volatile FEC_TBD *pUsedTbd;
154
155 #if (DEBUG & 0x1)
156         printf ("tbd_scrub: fec->cleanTbdNum = %d, fec->usedTbdIndex = %d\n",
157                 fec->cleanTbdNum, fec->usedTbdIndex);
158 #endif
159
160         /*
161          * process all the consumed TBDs
162          */
163         while (fec->cleanTbdNum < FEC_TBD_NUM) {
164                 pUsedTbd = &fec->tbdBase[fec->usedTbdIndex];
165                 if (pUsedTbd->status & FEC_TBD_READY) {
166 #if (DEBUG & 0x20)
167                         printf("Cannot clean TBD %d, in use\n", fec->cleanTbdNum);
168 #endif
169                         return;
170                 }
171
172                 /*
173                  * clean this buffer descriptor
174                  */
175                 if (fec->usedTbdIndex == (FEC_TBD_NUM - 1))
176                         pUsedTbd->status = FEC_TBD_WRAP;
177                 else
178                         pUsedTbd->status = 0;
179
180                 /*
181                  * update some indeces for a correct handling of the TBD ring
182                  */
183                 fec->cleanTbdNum++;
184                 fec->usedTbdIndex = (fec->usedTbdIndex + 1) % FEC_TBD_NUM;
185         }
186 }
187
188 /********************************************************************/
189 static void mpc5xxx_fec_set_hwaddr(mpc5xxx_fec_priv *fec, char *mac)
190 {
191         uint8 currByte;                 /* byte for which to compute the CRC */
192         int byte;                       /* loop - counter */
193         int bit;                        /* loop - counter */
194         uint32 crc = 0xffffffff;        /* initial value */
195
196         /*
197          * The algorithm used is the following:
198          * we loop on each of the six bytes of the provided address,
199          * and we compute the CRC by left-shifting the previous
200          * value by one position, so that each bit in the current
201          * byte of the address may contribute the calculation. If
202          * the latter and the MSB in the CRC are different, then
203          * the CRC value so computed is also ex-ored with the
204          * "polynomium generator". The current byte of the address
205          * is also shifted right by one bit at each iteration.
206          * This is because the CRC generatore in hardware is implemented
207          * as a shift-register with as many ex-ores as the radixes
208          * in the polynomium. This suggests that we represent the
209          * polynomiumm itself as a 32-bit constant.
210          */
211         for (byte = 0; byte < 6; byte++) {
212                 currByte = mac[byte];
213                 for (bit = 0; bit < 8; bit++) {
214                         if ((currByte & 0x01) ^ (crc & 0x01)) {
215                                 crc >>= 1;
216                                 crc = crc ^ 0xedb88320;
217                         } else {
218                                 crc >>= 1;
219                         }
220                         currByte >>= 1;
221                 }
222         }
223
224         crc = crc >> 26;
225
226         /*
227          * Set individual hash table register
228          */
229         if (crc >= 32) {
230                 fec->eth->iaddr1 = (1 << (crc - 32));
231                 fec->eth->iaddr2 = 0;
232         } else {
233                 fec->eth->iaddr1 = 0;
234                 fec->eth->iaddr2 = (1 << crc);
235         }
236
237         /*
238          * Set physical address
239          */
240         fec->eth->paddr1 = (mac[0] << 24) + (mac[1] << 16) + (mac[2] << 8) + mac[3];
241         fec->eth->paddr2 = (mac[4] << 24) + (mac[5] << 16) + 0x8808;
242 }
243
244 /********************************************************************/
245 static int mpc5xxx_fec_init(struct eth_device *dev, bd_t * bis)
246 {
247         mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv;
248         struct mpc5xxx_sdma *sdma = (struct mpc5xxx_sdma *)MPC5XXX_SDMA;
249
250 #if (DEBUG & 0x1)
251         printf ("mpc5xxx_fec_init... Begin\n");
252 #endif
253
254         /*
255          * Initialize RxBD/TxBD rings
256          */
257         mpc5xxx_fec_rbd_init(fec);
258         mpc5xxx_fec_tbd_init(fec);
259
260         /*
261          * Clear FEC-Lite interrupt event register(IEVENT)
262          */
263         fec->eth->ievent = 0xffffffff;
264
265         /*
266          * Set interrupt mask register
267          */
268         fec->eth->imask = 0x00000000;
269
270         /*
271          * Set FEC-Lite receive control register(R_CNTRL):
272          */
273         if (fec->xcv_type == SEVENWIRE) {
274                 /*
275                  * Frame length=1518; 7-wire mode
276                  */
277                 fec->eth->r_cntrl = 0x05ee0020; /*0x05ee0000;FIXME */
278         } else {
279                 /*
280                  * Frame length=1518; MII mode;
281                  */
282                 fec->eth->r_cntrl = 0x05ee0024; /*0x05ee0004;FIXME */
283         }
284
285         fec->eth->x_cntrl = 0x00000000; /* half-duplex, heartbeat disabled */
286         if (fec->xcv_type != SEVENWIRE) {
287                 /*
288                  * Set MII_SPEED = (1/(mii_speed * 2)) * System Clock
289                  * and do not drop the Preamble.
290                  */
291                 fec->eth->mii_speed = (((gd->ipb_clk >> 20) / 5) << 1); /* No MII for 7-wire mode */
292         }
293
294         /*
295          * Set Opcode/Pause Duration Register
296          */
297         fec->eth->op_pause = 0x00010020;        /*FIXME0xffff0020; */
298
299         /*
300          * Set Rx FIFO alarm and granularity value
301          */
302         fec->eth->rfifo_cntrl = 0x0c000000
303                                 | (fec->eth->rfifo_cntrl & ~0x0f000000);
304         fec->eth->rfifo_alarm = 0x0000030c;
305 #if (DEBUG & 0x22)
306         if (fec->eth->rfifo_status & 0x00700000 ) {
307                 printf("mpc5xxx_fec_init() RFIFO error\n");
308         }
309 #endif
310
311         /*
312          * Set Tx FIFO granularity value
313          */
314         fec->eth->tfifo_cntrl = 0x0c000000
315                                 | (fec->eth->tfifo_cntrl & ~0x0f000000);
316 #if (DEBUG & 0x2)
317         printf("tfifo_status: 0x%08x\n", fec->eth->tfifo_status);
318         printf("tfifo_alarm: 0x%08x\n", fec->eth->tfifo_alarm);
319 #endif
320
321         /*
322          * Set transmit fifo watermark register(X_WMRK), default = 64
323          */
324         fec->eth->tfifo_alarm = 0x00000080;
325         fec->eth->x_wmrk = 0x2;
326
327         /*
328          * Set individual address filter for unicast address
329          * and set physical address registers.
330          */
331         mpc5xxx_fec_set_hwaddr(fec, (char *)dev->enetaddr);
332
333         /*
334          * Set multicast address filter
335          */
336         fec->eth->gaddr1 = 0x00000000;
337         fec->eth->gaddr2 = 0x00000000;
338
339         /*
340          * Turn ON cheater FSM: ????
341          */
342         fec->eth->xmit_fsm = 0x03000000;
343
344 #if defined(CONFIG_MPC5200)
345         /*
346          * Turn off COMM bus prefetch in the MGT5200 BestComm. It doesn't
347          * work w/ the current receive task.
348          */
349          sdma->PtdCntrl |= 0x00000001;
350 #endif
351
352         /*
353          * Set priority of different initiators
354          */
355         sdma->IPR0 = 7;         /* always */
356         sdma->IPR3 = 6;         /* Eth RX */
357         sdma->IPR4 = 5;         /* Eth Tx */
358
359         /*
360          * Clear SmartDMA task interrupt pending bits
361          */
362         SDMA_CLEAR_IEVENT(FEC_RECV_TASK_NO);
363
364         /*
365          * Initialize SmartDMA parameters stored in SRAM
366          */
367         *(volatile int *)FEC_TBD_BASE = (int)fec->tbdBase;
368         *(volatile int *)FEC_RBD_BASE = (int)fec->rbdBase;
369         *(volatile int *)FEC_TBD_NEXT = (int)fec->tbdBase;
370         *(volatile int *)FEC_RBD_NEXT = (int)fec->rbdBase;
371
372         /*
373          * Enable FEC-Lite controller
374          */
375         fec->eth->ecntrl |= 0x00000006;
376
377 #if (DEBUG & 0x2)
378         if (fec->xcv_type != SEVENWIRE)
379                 mpc5xxx_fec_phydump (dev->name);
380 #endif
381
382         /*
383          * Enable SmartDMA receive task
384          */
385         SDMA_TASK_ENABLE(FEC_RECV_TASK_NO);
386
387 #if (DEBUG & 0x1)
388         printf("mpc5xxx_fec_init... Done \n");
389 #endif
390
391         return 1;
392 }
393
394 /********************************************************************/
395 static int mpc5xxx_fec_init_phy(struct eth_device *dev, bd_t * bis)
396 {
397         mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv;
398         const uint8 phyAddr = CONFIG_PHY_ADDR;  /* Only one PHY */
399
400 #if (DEBUG & 0x1)
401         printf ("mpc5xxx_fec_init_phy... Begin\n");
402 #endif
403
404         /*
405          * Initialize GPIO pins
406          */
407         if (fec->xcv_type == SEVENWIRE) {
408                 /*  10MBit with 7-wire operation */
409 #if defined(CONFIG_TOTAL5200)
410                 /* 7-wire and USB2 on Ethernet */
411                 *(vu_long *)MPC5XXX_GPS_PORT_CONFIG |= 0x00030000;
412 #else   /* !CONFIG_TOTAL5200 */
413                 /* 7-wire only */
414                 *(vu_long *)MPC5XXX_GPS_PORT_CONFIG |= 0x00020000;
415 #endif  /* CONFIG_TOTAL5200 */
416         } else {
417                 /* 100MBit with MD operation */
418                 *(vu_long *)MPC5XXX_GPS_PORT_CONFIG |= 0x00050000;
419         }
420
421         /*
422          * Clear FEC-Lite interrupt event register(IEVENT)
423          */
424         fec->eth->ievent = 0xffffffff;
425
426         /*
427          * Set interrupt mask register
428          */
429         fec->eth->imask = 0x00000000;
430
431 /*
432  * In original Promess-provided code PHY initialization is disabled with the
433  * following comment: "Phy initialization is DISABLED for now.  There was a
434  * problem with running 100 Mbps on PRO board". Thus we temporarily disable
435  * PHY initialization for the Motion-PRO board, until a proper fix is found.
436  */
437
438         if (fec->xcv_type != SEVENWIRE) {
439                 /*
440                  * Set MII_SPEED = (1/(mii_speed * 2)) * System Clock
441                  * and do not drop the Preamble.
442                  */
443                 fec->eth->mii_speed = (((gd->ipb_clk >> 20) / 5) << 1); /* No MII for 7-wire mode */
444         }
445
446         if (fec->xcv_type != SEVENWIRE) {
447                 /*
448                  * Initialize PHY(LXT971A):
449                  *
450                  *   Generally, on power up, the LXT971A reads its configuration
451                  *   pins to check for forced operation, If not cofigured for
452                  *   forced operation, it uses auto-negotiation/parallel detection
453                  *   to automatically determine line operating conditions.
454                  *   If the PHY device on the other side of the link supports
455                  *   auto-negotiation, the LXT971A auto-negotiates with it
456                  *   using Fast Link Pulse(FLP) Bursts. If the PHY partner does not
457                  *   support auto-negotiation, the LXT971A automatically detects
458                  *   the presence of either link pulses(10Mbps PHY) or Idle
459                  *   symbols(100Mbps) and sets its operating conditions accordingly.
460                  *
461                  *   When auto-negotiation is controlled by software, the following
462                  *   steps are recommended.
463                  *
464                  * Note:
465                  *   The physical address is dependent on hardware configuration.
466                  *
467                  */
468                 int timeout = 1;
469                 uint16 phyStatus;
470
471                 /*
472                  * Reset PHY, then delay 300ns
473                  */
474                 miiphy_write(dev->name, phyAddr, 0x0, 0x8000);
475                 udelay(1000);
476
477                 if (fec->xcv_type == MII10) {
478                         /*
479                          * Force 10Base-T, FDX operation
480                          */
481 #if (DEBUG & 0x2)
482                         printf("Forcing 10 Mbps ethernet link... ");
483 #endif
484                         miiphy_read(dev->name, phyAddr, 0x1, &phyStatus);
485                         /*
486                         miiphy_write(dev->name, fec, phyAddr, 0x0, 0x0100);
487                         */
488                         miiphy_write(dev->name, phyAddr, 0x0, 0x0180);
489
490                         timeout = 20;
491                         do {    /* wait for link status to go down */
492                                 udelay(10000);
493                                 if ((timeout--) == 0) {
494 #if (DEBUG & 0x2)
495                                         printf("hmmm, should not have waited...");
496 #endif
497                                         break;
498                                 }
499                                 miiphy_read(dev->name, phyAddr, 0x1, &phyStatus);
500 #if (DEBUG & 0x2)
501                                 printf("=");
502 #endif
503                         } while ((phyStatus & 0x0004)); /* !link up */
504
505                         timeout = 1000;
506                         do {    /* wait for link status to come back up */
507                                 udelay(10000);
508                                 if ((timeout--) == 0) {
509                                         printf("failed. Link is down.\n");
510                                         break;
511                                 }
512                                 miiphy_read(dev->name, phyAddr, 0x1, &phyStatus);
513 #if (DEBUG & 0x2)
514                                 printf("+");
515 #endif
516                         } while (!(phyStatus & 0x0004));        /* !link up */
517
518 #if (DEBUG & 0x2)
519                         printf ("done.\n");
520 #endif
521                 } else {        /* MII100 */
522                         /*
523                          * Set the auto-negotiation advertisement register bits
524                          */
525                         miiphy_write(dev->name, phyAddr, 0x4, 0x01e1);
526
527                         /*
528                          * Set MDIO bit 0.12 = 1(&& bit 0.9=1?) to enable auto-negotiation
529                          */
530                         miiphy_write(dev->name, phyAddr, 0x0, 0x1200);
531
532                         /*
533                          * Wait for AN completion
534                          */
535                         timeout = 5000;
536                         do {
537                                 udelay(1000);
538
539                                 if ((timeout--) == 0) {
540 #if (DEBUG & 0x2)
541                                         printf("PHY auto neg 0 failed...\n");
542 #endif
543                                         return -1;
544                                 }
545
546                                 if (miiphy_read(dev->name, phyAddr, 0x1, &phyStatus) != 0) {
547 #if (DEBUG & 0x2)
548                                         printf("PHY auto neg 1 failed 0x%04x...\n", phyStatus);
549 #endif
550                                         return -1;
551                                 }
552                         } while (!(phyStatus & 0x0004));
553
554 #if (DEBUG & 0x2)
555                         printf("PHY auto neg complete! \n");
556 #endif
557                 }
558
559         }
560
561 #if (DEBUG & 0x2)
562         if (fec->xcv_type != SEVENWIRE)
563                 mpc5xxx_fec_phydump (dev->name);
564 #endif
565
566
567 #if (DEBUG & 0x1)
568         printf("mpc5xxx_fec_init_phy... Done \n");
569 #endif
570
571         return 1;
572 }
573
574 /********************************************************************/
575 static void mpc5xxx_fec_halt(struct eth_device *dev)
576 {
577 #if defined(CONFIG_MPC5200)
578         struct mpc5xxx_sdma *sdma = (struct mpc5xxx_sdma *)MPC5XXX_SDMA;
579 #endif
580         mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv;
581         int counter = 0xffff;
582
583 #if (DEBUG & 0x2)
584         if (fec->xcv_type != SEVENWIRE)
585                 mpc5xxx_fec_phydump (dev->name);
586 #endif
587
588         /*
589          * mask FEC chip interrupts
590          */
591         fec->eth->imask = 0;
592
593         /*
594          * issue graceful stop command to the FEC transmitter if necessary
595          */
596         fec->eth->x_cntrl |= 0x00000001;
597
598         /*
599          * wait for graceful stop to register
600          */
601         while ((counter--) && (!(fec->eth->ievent & 0x10000000))) ;
602
603         /*
604          * Disable SmartDMA tasks
605          */
606         SDMA_TASK_DISABLE (FEC_XMIT_TASK_NO);
607         SDMA_TASK_DISABLE (FEC_RECV_TASK_NO);
608
609 #if defined(CONFIG_MPC5200)
610         /*
611          * Turn on COMM bus prefetch in the MGT5200 BestComm after we're
612          * done. It doesn't work w/ the current receive task.
613          */
614          sdma->PtdCntrl &= ~0x00000001;
615 #endif
616
617         /*
618          * Disable the Ethernet Controller
619          */
620         fec->eth->ecntrl &= 0xfffffffd;
621
622         /*
623          * Clear FIFO status registers
624          */
625         fec->eth->rfifo_status &= 0x00700000;
626         fec->eth->tfifo_status &= 0x00700000;
627
628         fec->eth->reset_cntrl = 0x01000000;
629
630         /*
631          * Issue a reset command to the FEC chip
632          */
633         fec->eth->ecntrl |= 0x1;
634
635         /*
636          * wait at least 16 clock cycles
637          */
638         udelay(10);
639
640 #if (DEBUG & 0x3)
641         printf("Ethernet task stopped\n");
642 #endif
643 }
644
645 #if (DEBUG & 0x60)
646 /********************************************************************/
647
648 static void tfifo_print(char *devname, mpc5xxx_fec_priv *fec)
649 {
650         uint16 phyAddr = CONFIG_PHY_ADDR;
651         uint16 phyStatus;
652
653         if ((fec->eth->tfifo_lrf_ptr != fec->eth->tfifo_lwf_ptr)
654                 || (fec->eth->tfifo_rdptr != fec->eth->tfifo_wrptr)) {
655
656                 miiphy_read(devname, phyAddr, 0x1, &phyStatus);
657                 printf("\nphyStatus: 0x%04x\n", phyStatus);
658                 printf("ecntrl:   0x%08x\n", fec->eth->ecntrl);
659                 printf("ievent:   0x%08x\n", fec->eth->ievent);
660                 printf("x_status: 0x%08x\n", fec->eth->x_status);
661                 printf("tfifo: status  0x%08x\n", fec->eth->tfifo_status);
662
663                 printf("       control 0x%08x\n", fec->eth->tfifo_cntrl);
664                 printf("       lrfp    0x%08x\n", fec->eth->tfifo_lrf_ptr);
665                 printf("       lwfp    0x%08x\n", fec->eth->tfifo_lwf_ptr);
666                 printf("       alarm   0x%08x\n", fec->eth->tfifo_alarm);
667                 printf("       readptr 0x%08x\n", fec->eth->tfifo_rdptr);
668                 printf("       writptr 0x%08x\n", fec->eth->tfifo_wrptr);
669         }
670 }
671
672 static void rfifo_print(char *devname, mpc5xxx_fec_priv *fec)
673 {
674         uint16 phyAddr = CONFIG_PHY_ADDR;
675         uint16 phyStatus;
676
677         if ((fec->eth->rfifo_lrf_ptr != fec->eth->rfifo_lwf_ptr)
678                 || (fec->eth->rfifo_rdptr != fec->eth->rfifo_wrptr)) {
679
680                 miiphy_read(devname, phyAddr, 0x1, &phyStatus);
681                 printf("\nphyStatus: 0x%04x\n", phyStatus);
682                 printf("ecntrl:   0x%08x\n", fec->eth->ecntrl);
683                 printf("ievent:   0x%08x\n", fec->eth->ievent);
684                 printf("x_status: 0x%08x\n", fec->eth->x_status);
685                 printf("rfifo: status  0x%08x\n", fec->eth->rfifo_status);
686
687                 printf("       control 0x%08x\n", fec->eth->rfifo_cntrl);
688                 printf("       lrfp    0x%08x\n", fec->eth->rfifo_lrf_ptr);
689                 printf("       lwfp    0x%08x\n", fec->eth->rfifo_lwf_ptr);
690                 printf("       alarm   0x%08x\n", fec->eth->rfifo_alarm);
691                 printf("       readptr 0x%08x\n", fec->eth->rfifo_rdptr);
692                 printf("       writptr 0x%08x\n", fec->eth->rfifo_wrptr);
693         }
694 }
695 #endif /* DEBUG */
696
697 /********************************************************************/
698
699 static int mpc5xxx_fec_send(struct eth_device *dev, volatile void *eth_data,
700                 int data_length)
701 {
702         /*
703          * This routine transmits one frame.  This routine only accepts
704          * 6-byte Ethernet addresses.
705          */
706         mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv;
707         volatile FEC_TBD *pTbd;
708
709 #if (DEBUG & 0x20)
710         printf("tbd status: 0x%04x\n", fec->tbdBase[0].status);
711         tfifo_print(dev->name, fec);
712 #endif
713
714         /*
715          * Clear Tx BD ring at first
716          */
717         mpc5xxx_fec_tbd_scrub(fec);
718
719         /*
720          * Check for valid length of data.
721          */
722         if ((data_length > 1500) || (data_length <= 0)) {
723                 return -1;
724         }
725
726         /*
727          * Check the number of vacant TxBDs.
728          */
729         if (fec->cleanTbdNum < 1) {
730 #if (DEBUG & 0x20)
731                 printf("No available TxBDs ...\n");
732 #endif
733                 return -1;
734         }
735
736         /*
737          * Get the first TxBD to send the mac header
738          */
739         pTbd = &fec->tbdBase[fec->tbdIndex];
740         pTbd->dataLength = data_length;
741         pTbd->dataPointer = (uint32)eth_data;
742         pTbd->status |= FEC_TBD_LAST | FEC_TBD_TC | FEC_TBD_READY;
743         fec->tbdIndex = (fec->tbdIndex + 1) % FEC_TBD_NUM;
744
745 #if (DEBUG & 0x100)
746         printf("SDMA_TASK_ENABLE, fec->tbdIndex = %d \n", fec->tbdIndex);
747 #endif
748
749         /*
750          * Kick the MII i/f
751          */
752         if (fec->xcv_type != SEVENWIRE) {
753                 uint16 phyStatus;
754                 miiphy_read(dev->name, 0, 0x1, &phyStatus);
755         }
756
757         /*
758          * Enable SmartDMA transmit task
759          */
760
761 #if (DEBUG & 0x20)
762         tfifo_print(dev->name, fec);
763 #endif
764         SDMA_TASK_ENABLE (FEC_XMIT_TASK_NO);
765 #if (DEBUG & 0x20)
766         tfifo_print(dev->name, fec);
767 #endif
768 #if (DEBUG & 0x8)
769         printf( "+" );
770 #endif
771
772         fec->cleanTbdNum -= 1;
773
774 #if (DEBUG & 0x129) && (DEBUG & 0x80000000)
775         printf ("smartDMA ethernet Tx task enabled\n");
776 #endif
777         /*
778          * wait until frame is sent .
779          */
780         while (pTbd->status & FEC_TBD_READY) {
781                 udelay(10);
782 #if (DEBUG & 0x8)
783                 printf ("TDB status = %04x\n", pTbd->status);
784 #endif
785         }
786
787         return 0;
788 }
789
790
791 /********************************************************************/
792 static int mpc5xxx_fec_recv(struct eth_device *dev)
793 {
794         /*
795          * This command pulls one frame from the card
796          */
797         mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv;
798         volatile FEC_RBD *pRbd = &fec->rbdBase[fec->rbdIndex];
799         unsigned long ievent;
800         int frame_length, len = 0;
801         NBUF *frame;
802         uchar buff[FEC_MAX_PKT_SIZE];
803
804 #if (DEBUG & 0x1)
805         printf ("mpc5xxx_fec_recv %d Start...\n", fec->rbdIndex);
806 #endif
807 #if (DEBUG & 0x8)
808         printf( "-" );
809 #endif
810
811         /*
812          * Check if any critical events have happened
813          */
814         ievent = fec->eth->ievent;
815         fec->eth->ievent = ievent;
816         if (ievent & 0x20060000) {
817                 /* BABT, Rx/Tx FIFO errors */
818                 mpc5xxx_fec_halt(dev);
819                 mpc5xxx_fec_init(dev, NULL);
820                 return 0;
821         }
822         if (ievent & 0x80000000) {
823                 /* Heartbeat error */
824                 fec->eth->x_cntrl |= 0x00000001;
825         }
826         if (ievent & 0x10000000) {
827                 /* Graceful stop complete */
828                 if (fec->eth->x_cntrl & 0x00000001) {
829                         mpc5xxx_fec_halt(dev);
830                         fec->eth->x_cntrl &= ~0x00000001;
831                         mpc5xxx_fec_init(dev, NULL);
832                 }
833         }
834
835         if (!(pRbd->status & FEC_RBD_EMPTY)) {
836                 if ((pRbd->status & FEC_RBD_LAST) && !(pRbd->status & FEC_RBD_ERR) &&
837                         ((pRbd->dataLength - 4) > 14)) {
838
839                         /*
840                          * Get buffer address and size
841                          */
842                         frame = (NBUF *)pRbd->dataPointer;
843                         frame_length = pRbd->dataLength - 4;
844
845 #if (DEBUG & 0x20)
846                         {
847                                 int i;
848                                 printf("recv data hdr:");
849                                 for (i = 0; i < 14; i++)
850                                         printf("%x ", *(frame->head + i));
851                                 printf("\n");
852                         }
853 #endif
854                         /*
855                          *  Fill the buffer and pass it to upper layers
856                          */
857                         memcpy(buff, frame->head, 14);
858                         memcpy(buff + 14, frame->data, frame_length);
859                         NetReceive(buff, frame_length);
860                         len = frame_length;
861                 }
862                 /*
863                  * Reset buffer descriptor as empty
864                  */
865                 mpc5xxx_fec_rbd_clean(fec, pRbd);
866         }
867         SDMA_CLEAR_IEVENT (FEC_RECV_TASK_NO);
868         return len;
869 }
870
871
872 /********************************************************************/
873 int mpc5xxx_fec_initialize(bd_t * bis)
874 {
875         mpc5xxx_fec_priv *fec;
876         struct eth_device *dev;
877         char *tmp, *end;
878         char env_enetaddr[6];
879         int i;
880
881         fec = (mpc5xxx_fec_priv *)malloc(sizeof(*fec));
882         dev = (struct eth_device *)malloc(sizeof(*dev));
883         memset(dev, 0, sizeof *dev);
884
885         fec->eth = (ethernet_regs *)MPC5XXX_FEC;
886         fec->tbdBase = (FEC_TBD *)FEC_BD_BASE;
887         fec->rbdBase = (FEC_RBD *)(FEC_BD_BASE + FEC_TBD_NUM * sizeof(FEC_TBD));
888 #if defined(CONFIG_CANMB)   || defined(CONFIG_HMI1001)  || \
889     defined(CONFIG_ICECUBE) || defined(CONFIG_INKA4X0)  || \
890     defined(CONFIG_MCC200)  || defined(CONFIG_MOTIONPRO)        || \
891     defined(CONFIG_O2DNT)   || defined(CONFIG_PM520)    || \
892     defined(CONFIG_TOP5200) || defined(CONFIG_TQM5200)  || \
893     defined(CONFIG_UC101)   || defined(CONFIG_V38B)
894 # ifndef CONFIG_FEC_10MBIT
895         fec->xcv_type = MII100;
896 # else
897         fec->xcv_type = MII10;
898 # endif
899 #elif defined(CONFIG_TOTAL5200)
900         fec->xcv_type = SEVENWIRE;
901 #else
902 #error fec->xcv_type not initialized.
903 #endif
904
905         dev->priv = (void *)fec;
906         dev->iobase = MPC5XXX_FEC;
907         dev->init = mpc5xxx_fec_init;
908         dev->halt = mpc5xxx_fec_halt;
909         dev->send = mpc5xxx_fec_send;
910         dev->recv = mpc5xxx_fec_recv;
911
912         sprintf(dev->name, "FEC ETHERNET");
913         eth_register(dev);
914
915 #if defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII)
916         miiphy_register (dev->name,
917                         fec5xxx_miiphy_read, fec5xxx_miiphy_write);
918 #endif
919
920         /*
921          * Try to set the mac address now. The fec mac address is
922          * a garbage after reset. When not using fec for booting
923          * the Linux fec driver will try to work with this garbage.
924          */
925         tmp = getenv("ethaddr");
926         if (tmp) {
927                 for (i=0; i<6; i++) {
928                         env_enetaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
929                         if (tmp)
930                                 tmp = (*end) ? end+1 : end;
931                 }
932                 mpc5xxx_fec_set_hwaddr(fec, env_enetaddr);
933         }
934
935         mpc5xxx_fec_init_phy(dev, bis);
936
937         return 1;
938 }
939
940 /* MII-interface related functions */
941 /********************************************************************/
942 int fec5xxx_miiphy_read(char *devname, uint8 phyAddr, uint8 regAddr, uint16 * retVal)
943 {
944         ethernet_regs *eth = (ethernet_regs *)MPC5XXX_FEC;
945         uint32 reg;             /* convenient holder for the PHY register */
946         uint32 phy;             /* convenient holder for the PHY */
947         int timeout = 0xffff;
948
949         /*
950          * reading from any PHY's register is done by properly
951          * programming the FEC's MII data register.
952          */
953         reg = regAddr << FEC_MII_DATA_RA_SHIFT;
954         phy = phyAddr << FEC_MII_DATA_PA_SHIFT;
955
956         eth->mii_data = (FEC_MII_DATA_ST | FEC_MII_DATA_OP_RD | FEC_MII_DATA_TA | phy | reg);
957
958         /*
959          * wait for the related interrupt
960          */
961         while ((timeout--) && (!(eth->ievent & 0x00800000))) ;
962
963         if (timeout == 0) {
964 #if (DEBUG & 0x2)
965                 printf ("Read MDIO failed...\n");
966 #endif
967                 return -1;
968         }
969
970         /*
971          * clear mii interrupt bit
972          */
973         eth->ievent = 0x00800000;
974
975         /*
976          * it's now safe to read the PHY's register
977          */
978         *retVal = (uint16) eth->mii_data;
979
980         return 0;
981 }
982
983 /********************************************************************/
984 int fec5xxx_miiphy_write(char *devname, uint8 phyAddr, uint8 regAddr, uint16 data)
985 {
986         ethernet_regs *eth = (ethernet_regs *)MPC5XXX_FEC;
987         uint32 reg;             /* convenient holder for the PHY register */
988         uint32 phy;             /* convenient holder for the PHY */
989         int timeout = 0xffff;
990
991         reg = regAddr << FEC_MII_DATA_RA_SHIFT;
992         phy = phyAddr << FEC_MII_DATA_PA_SHIFT;
993
994         eth->mii_data = (FEC_MII_DATA_ST | FEC_MII_DATA_OP_WR |
995                         FEC_MII_DATA_TA | phy | reg | data);
996
997         /*
998          * wait for the MII interrupt
999          */
1000         while ((timeout--) && (!(eth->ievent & 0x00800000))) ;
1001
1002         if (timeout == 0) {
1003 #if (DEBUG & 0x2)
1004                 printf ("Write MDIO failed...\n");
1005 #endif
1006                 return -1;
1007         }
1008
1009         /*
1010          * clear MII interrupt bit
1011          */
1012         eth->ievent = 0x00800000;
1013
1014         return 0;
1015 }
1016
1017 #if (DEBUG & 0x40)
1018 static uint32 local_crc32(char *string, unsigned int crc_value, int len)
1019 {
1020         int i;
1021         char c;
1022         unsigned int crc, count;
1023
1024         /*
1025          * crc32 algorithm
1026          */
1027         /*
1028          * crc = 0xffffffff; * The initialized value should be 0xffffffff
1029          */
1030         crc = crc_value;
1031
1032         for (i = len; --i >= 0;) {
1033                 c = *string++;
1034                 for (count = 0; count < 8; count++) {
1035                         if ((c & 0x01) ^ (crc & 0x01)) {
1036                                 crc >>= 1;
1037                                 crc = crc ^ 0xedb88320;
1038                         } else {
1039                                 crc >>= 1;
1040                         }
1041                         c >>= 1;
1042                 }
1043         }
1044
1045         /*
1046          * In big endian system, do byte swaping for crc value
1047          */
1048          /**/ return crc;
1049 }
1050 #endif  /* DEBUG */
1051
1052 #endif /* CONFIG_MPC5xxx_FEC */