2 * (C) Copyright 2003-2005
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * This file is based on mpc4200fec.c,
6 * (C) Copyright Motorola, Inc., 2000
17 /* #define DEBUG 0x28 */
19 #if (CONFIG_COMMANDS & CFG_CMD_NET) && defined(CONFIG_NET_MULTI) && \
20 defined(CONFIG_MPC5xxx_FEC)
22 #if !(defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII))
23 #error "CONFIG_MII has to be defined!"
27 static void tfifo_print(char *devname, mpc5xxx_fec_priv *fec);
28 static void rfifo_print(char *devname, mpc5xxx_fec_priv *fec);
32 static uint32 local_crc32(char *string, unsigned int crc_value, int len);
36 uint8 data[1500]; /* actual data */
37 int length; /* actual length */
38 int used; /* buffer in use or not */
39 uint8 head[16]; /* MAC header(6 + 6 + 2) + 2(aligned) */
42 int fec5xxx_miiphy_read(char *devname, uint8 phyAddr, uint8 regAddr, uint16 * retVal);
43 int fec5xxx_miiphy_write(char *devname, uint8 phyAddr, uint8 regAddr, uint16 data);
45 /********************************************************************/
47 static void mpc5xxx_fec_phydump (char *devname)
50 uint8 phyAddr = CONFIG_PHY_ADDR;
52 #if CONFIG_PHY_TYPE == 0x79c874 /* AMD Am79C874 */
53 /* regs to print: 0...7, 16...19, 21, 23, 24 */
54 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0,
55 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0,
57 /* regs to print: 0...8, 16...20 */
58 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0,
59 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
63 for (i = 0; i < 32; i++) {
65 miiphy_read(devname, phyAddr, i, &phyStatus);
66 printf("Mii reg %d: 0x%04x\n", i, phyStatus);
72 /********************************************************************/
73 static int mpc5xxx_fec_rbd_init(mpc5xxx_fec_priv *fec)
79 for (ix = 0; ix < FEC_RBD_NUM; ix++) {
81 data = (char *)malloc(FEC_MAX_PKT_SIZE);
83 printf ("RBD INIT FAILED\n");
86 fec->rbdBase[ix].dataPointer = (uint32)data;
88 fec->rbdBase[ix].status = FEC_RBD_EMPTY;
89 fec->rbdBase[ix].dataLength = 0;
94 * have the last RBD to close the ring
96 fec->rbdBase[ix - 1].status |= FEC_RBD_WRAP;
102 /********************************************************************/
103 static void mpc5xxx_fec_tbd_init(mpc5xxx_fec_priv *fec)
107 for (ix = 0; ix < FEC_TBD_NUM; ix++) {
108 fec->tbdBase[ix].status = 0;
112 * Have the last TBD to close the ring
114 fec->tbdBase[ix - 1].status |= FEC_TBD_WRAP;
117 * Initialize some indices
120 fec->usedTbdIndex = 0;
121 fec->cleanTbdNum = FEC_TBD_NUM;
124 /********************************************************************/
125 static void mpc5xxx_fec_rbd_clean(mpc5xxx_fec_priv *fec, volatile FEC_RBD * pRbd)
128 * Reset buffer descriptor as empty
130 if ((fec->rbdIndex) == (FEC_RBD_NUM - 1))
131 pRbd->status = (FEC_RBD_WRAP | FEC_RBD_EMPTY);
133 pRbd->status = FEC_RBD_EMPTY;
135 pRbd->dataLength = 0;
138 * Now, we have an empty RxBD, restart the SmartDMA receive task
140 SDMA_TASK_ENABLE(FEC_RECV_TASK_NO);
145 fec->rbdIndex = (fec->rbdIndex + 1) % FEC_RBD_NUM;
148 /********************************************************************/
149 static void mpc5xxx_fec_tbd_scrub(mpc5xxx_fec_priv *fec)
151 volatile FEC_TBD *pUsedTbd;
154 printf ("tbd_scrub: fec->cleanTbdNum = %d, fec->usedTbdIndex = %d\n",
155 fec->cleanTbdNum, fec->usedTbdIndex);
159 * process all the consumed TBDs
161 while (fec->cleanTbdNum < FEC_TBD_NUM) {
162 pUsedTbd = &fec->tbdBase[fec->usedTbdIndex];
163 if (pUsedTbd->status & FEC_TBD_READY) {
165 printf("Cannot clean TBD %d, in use\n", fec->cleanTbdNum);
171 * clean this buffer descriptor
173 if (fec->usedTbdIndex == (FEC_TBD_NUM - 1))
174 pUsedTbd->status = FEC_TBD_WRAP;
176 pUsedTbd->status = 0;
179 * update some indeces for a correct handling of the TBD ring
182 fec->usedTbdIndex = (fec->usedTbdIndex + 1) % FEC_TBD_NUM;
186 /********************************************************************/
187 static void mpc5xxx_fec_set_hwaddr(mpc5xxx_fec_priv *fec, char *mac)
189 uint8 currByte; /* byte for which to compute the CRC */
190 int byte; /* loop - counter */
191 int bit; /* loop - counter */
192 uint32 crc = 0xffffffff; /* initial value */
195 * The algorithm used is the following:
196 * we loop on each of the six bytes of the provided address,
197 * and we compute the CRC by left-shifting the previous
198 * value by one position, so that each bit in the current
199 * byte of the address may contribute the calculation. If
200 * the latter and the MSB in the CRC are different, then
201 * the CRC value so computed is also ex-ored with the
202 * "polynomium generator". The current byte of the address
203 * is also shifted right by one bit at each iteration.
204 * This is because the CRC generatore in hardware is implemented
205 * as a shift-register with as many ex-ores as the radixes
206 * in the polynomium. This suggests that we represent the
207 * polynomiumm itself as a 32-bit constant.
209 for (byte = 0; byte < 6; byte++) {
210 currByte = mac[byte];
211 for (bit = 0; bit < 8; bit++) {
212 if ((currByte & 0x01) ^ (crc & 0x01)) {
214 crc = crc ^ 0xedb88320;
225 * Set individual hash table register
228 fec->eth->iaddr1 = (1 << (crc - 32));
229 fec->eth->iaddr2 = 0;
231 fec->eth->iaddr1 = 0;
232 fec->eth->iaddr2 = (1 << crc);
236 * Set physical address
238 fec->eth->paddr1 = (mac[0] << 24) + (mac[1] << 16) + (mac[2] << 8) + mac[3];
239 fec->eth->paddr2 = (mac[4] << 24) + (mac[5] << 16) + 0x8808;
242 /********************************************************************/
243 static int mpc5xxx_fec_init(struct eth_device *dev, bd_t * bis)
245 DECLARE_GLOBAL_DATA_PTR;
246 mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv;
247 struct mpc5xxx_sdma *sdma = (struct mpc5xxx_sdma *)MPC5XXX_SDMA;
250 printf ("mpc5xxx_fec_init... Begin\n");
254 * Initialize RxBD/TxBD rings
256 mpc5xxx_fec_rbd_init(fec);
257 mpc5xxx_fec_tbd_init(fec);
260 * Clear FEC-Lite interrupt event register(IEVENT)
262 fec->eth->ievent = 0xffffffff;
265 * Set interrupt mask register
267 fec->eth->imask = 0x00000000;
270 * Set FEC-Lite receive control register(R_CNTRL):
272 if (fec->xcv_type == SEVENWIRE) {
274 * Frame length=1518; 7-wire mode
276 fec->eth->r_cntrl = 0x05ee0020; /*0x05ee0000;FIXME */
279 * Frame length=1518; MII mode;
281 fec->eth->r_cntrl = 0x05ee0024; /*0x05ee0004;FIXME */
284 fec->eth->x_cntrl = 0x00000000; /* half-duplex, heartbeat disabled */
285 if (fec->xcv_type != SEVENWIRE) {
287 * Set MII_SPEED = (1/(mii_speed * 2)) * System Clock
288 * and do not drop the Preamble.
290 fec->eth->mii_speed = (((gd->ipb_clk >> 20) / 5) << 1); /* No MII for 7-wire mode */
294 * Set Opcode/Pause Duration Register
296 fec->eth->op_pause = 0x00010020; /*FIXME0xffff0020; */
299 * Set Rx FIFO alarm and granularity value
301 fec->eth->rfifo_cntrl = 0x0c000000
302 | (fec->eth->rfifo_cntrl & ~0x0f000000);
303 fec->eth->rfifo_alarm = 0x0000030c;
305 if (fec->eth->rfifo_status & 0x00700000 ) {
306 printf("mpc5xxx_fec_init() RFIFO error\n");
311 * Set Tx FIFO granularity value
313 fec->eth->tfifo_cntrl = 0x0c000000
314 | (fec->eth->tfifo_cntrl & ~0x0f000000);
316 printf("tfifo_status: 0x%08x\n", fec->eth->tfifo_status);
317 printf("tfifo_alarm: 0x%08x\n", fec->eth->tfifo_alarm);
321 * Set transmit fifo watermark register(X_WMRK), default = 64
323 fec->eth->tfifo_alarm = 0x00000080;
324 fec->eth->x_wmrk = 0x2;
327 * Set individual address filter for unicast address
328 * and set physical address registers.
330 mpc5xxx_fec_set_hwaddr(fec, (char *)dev->enetaddr);
333 * Set multicast address filter
335 fec->eth->gaddr1 = 0x00000000;
336 fec->eth->gaddr2 = 0x00000000;
339 * Turn ON cheater FSM: ????
341 fec->eth->xmit_fsm = 0x03000000;
343 #if defined(CONFIG_MPC5200)
345 * Turn off COMM bus prefetch in the MGT5200 BestComm. It doesn't
346 * work w/ the current receive task.
348 sdma->PtdCntrl |= 0x00000001;
352 * Set priority of different initiators
354 sdma->IPR0 = 7; /* always */
355 sdma->IPR3 = 6; /* Eth RX */
356 sdma->IPR4 = 5; /* Eth Tx */
359 * Clear SmartDMA task interrupt pending bits
361 SDMA_CLEAR_IEVENT(FEC_RECV_TASK_NO);
364 * Initialize SmartDMA parameters stored in SRAM
366 *(volatile int *)FEC_TBD_BASE = (int)fec->tbdBase;
367 *(volatile int *)FEC_RBD_BASE = (int)fec->rbdBase;
368 *(volatile int *)FEC_TBD_NEXT = (int)fec->tbdBase;
369 *(volatile int *)FEC_RBD_NEXT = (int)fec->rbdBase;
372 * Enable FEC-Lite controller
374 fec->eth->ecntrl |= 0x00000006;
377 if (fec->xcv_type != SEVENWIRE)
378 mpc5xxx_fec_phydump ();
382 * Enable SmartDMA receive task
384 SDMA_TASK_ENABLE(FEC_RECV_TASK_NO);
387 printf("mpc5xxx_fec_init... Done \n");
393 /********************************************************************/
394 static int mpc5xxx_fec_init_phy(struct eth_device *dev, bd_t * bis)
396 DECLARE_GLOBAL_DATA_PTR;
397 mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv;
398 const uint8 phyAddr = CONFIG_PHY_ADDR; /* Only one PHY */
401 printf ("mpc5xxx_fec_init_phy... Begin\n");
405 * Initialize GPIO pins
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 */
414 *(vu_long *)MPC5XXX_GPS_PORT_CONFIG |= 0x00020000;
415 #endif /* CONFIG_TOTAL5200 */
417 /* 100MBit with MD operation */
418 *(vu_long *)MPC5XXX_GPS_PORT_CONFIG |= 0x00050000;
422 * Clear FEC-Lite interrupt event register(IEVENT)
424 fec->eth->ievent = 0xffffffff;
427 * Set interrupt mask register
429 fec->eth->imask = 0x00000000;
431 if (fec->xcv_type != SEVENWIRE) {
433 * Set MII_SPEED = (1/(mii_speed * 2)) * System Clock
434 * and do not drop the Preamble.
436 fec->eth->mii_speed = (((gd->ipb_clk >> 20) / 5) << 1); /* No MII for 7-wire mode */
439 if (fec->xcv_type != SEVENWIRE) {
441 * Initialize PHY(LXT971A):
443 * Generally, on power up, the LXT971A reads its configuration
444 * pins to check for forced operation, If not cofigured for
445 * forced operation, it uses auto-negotiation/parallel detection
446 * to automatically determine line operating conditions.
447 * If the PHY device on the other side of the link supports
448 * auto-negotiation, the LXT971A auto-negotiates with it
449 * using Fast Link Pulse(FLP) Bursts. If the PHY partner does not
450 * support auto-negotiation, the LXT971A automatically detects
451 * the presence of either link pulses(10Mbps PHY) or Idle
452 * symbols(100Mbps) and sets its operating conditions accordingly.
454 * When auto-negotiation is controlled by software, the following
455 * steps are recommended.
458 * The physical address is dependent on hardware configuration.
465 * Reset PHY, then delay 300ns
467 miiphy_write(dev->name, phyAddr, 0x0, 0x8000);
470 if (fec->xcv_type == MII10) {
472 * Force 10Base-T, FDX operation
475 printf("Forcing 10 Mbps ethernet link... ");
477 miiphy_read(dev->name, phyAddr, 0x1, &phyStatus);
479 miiphy_write(dev->name, fec, phyAddr, 0x0, 0x0100);
481 miiphy_write(dev->name, phyAddr, 0x0, 0x0180);
484 do { /* wait for link status to go down */
486 if ((timeout--) == 0) {
488 printf("hmmm, should not have waited...");
492 miiphy_read(dev->name, phyAddr, 0x1, &phyStatus);
496 } while ((phyStatus & 0x0004)); /* !link up */
499 do { /* wait for link status to come back up */
501 if ((timeout--) == 0) {
502 printf("failed. Link is down.\n");
505 miiphy_read(dev->name, phyAddr, 0x1, &phyStatus);
509 } while (!(phyStatus & 0x0004)); /* !link up */
514 } else { /* MII100 */
516 * Set the auto-negotiation advertisement register bits
518 miiphy_write(dev->name, phyAddr, 0x4, 0x01e1);
521 * Set MDIO bit 0.12 = 1(&& bit 0.9=1?) to enable auto-negotiation
523 miiphy_write(dev->name, phyAddr, 0x0, 0x1200);
526 * Wait for AN completion
532 if ((timeout--) == 0) {
534 printf("PHY auto neg 0 failed...\n");
539 if (miiphy_read(dev->name, phyAddr, 0x1, &phyStatus) != 0) {
541 printf("PHY auto neg 1 failed 0x%04x...\n", phyStatus);
545 } while (!(phyStatus & 0x0004));
548 printf("PHY auto neg complete! \n");
555 if (fec->xcv_type != SEVENWIRE)
556 mpc5xxx_fec_phydump (dev->name);
561 printf("mpc5xxx_fec_init_phy... Done \n");
567 /********************************************************************/
568 static void mpc5xxx_fec_halt(struct eth_device *dev)
570 #if defined(CONFIG_MPC5200)
571 struct mpc5xxx_sdma *sdma = (struct mpc5xxx_sdma *)MPC5XXX_SDMA;
573 mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv;
574 int counter = 0xffff;
577 if (fec->xcv_type != SEVENWIRE)
578 mpc5xxx_fec_phydump ();
582 * mask FEC chip interrupts
587 * issue graceful stop command to the FEC transmitter if necessary
589 fec->eth->x_cntrl |= 0x00000001;
592 * wait for graceful stop to register
594 while ((counter--) && (!(fec->eth->ievent & 0x10000000))) ;
597 * Disable SmartDMA tasks
599 SDMA_TASK_DISABLE (FEC_XMIT_TASK_NO);
600 SDMA_TASK_DISABLE (FEC_RECV_TASK_NO);
602 #if defined(CONFIG_MPC5200)
604 * Turn on COMM bus prefetch in the MGT5200 BestComm after we're
605 * done. It doesn't work w/ the current receive task.
607 sdma->PtdCntrl &= ~0x00000001;
611 * Disable the Ethernet Controller
613 fec->eth->ecntrl &= 0xfffffffd;
616 * Clear FIFO status registers
618 fec->eth->rfifo_status &= 0x00700000;
619 fec->eth->tfifo_status &= 0x00700000;
621 fec->eth->reset_cntrl = 0x01000000;
624 * Issue a reset command to the FEC chip
626 fec->eth->ecntrl |= 0x1;
629 * wait at least 16 clock cycles
634 printf("Ethernet task stopped\n");
639 /********************************************************************/
641 static void tfifo_print(char *devname, mpc5xxx_fec_priv *fec)
643 uint16 phyAddr = CONFIG_PHY_ADDR;
646 if ((fec->eth->tfifo_lrf_ptr != fec->eth->tfifo_lwf_ptr)
647 || (fec->eth->tfifo_rdptr != fec->eth->tfifo_wrptr)) {
649 miiphy_read(devname, phyAddr, 0x1, &phyStatus);
650 printf("\nphyStatus: 0x%04x\n", phyStatus);
651 printf("ecntrl: 0x%08x\n", fec->eth->ecntrl);
652 printf("ievent: 0x%08x\n", fec->eth->ievent);
653 printf("x_status: 0x%08x\n", fec->eth->x_status);
654 printf("tfifo: status 0x%08x\n", fec->eth->tfifo_status);
656 printf(" control 0x%08x\n", fec->eth->tfifo_cntrl);
657 printf(" lrfp 0x%08x\n", fec->eth->tfifo_lrf_ptr);
658 printf(" lwfp 0x%08x\n", fec->eth->tfifo_lwf_ptr);
659 printf(" alarm 0x%08x\n", fec->eth->tfifo_alarm);
660 printf(" readptr 0x%08x\n", fec->eth->tfifo_rdptr);
661 printf(" writptr 0x%08x\n", fec->eth->tfifo_wrptr);
665 static void rfifo_print(char *devname, mpc5xxx_fec_priv *fec)
667 uint16 phyAddr = CONFIG_PHY_ADDR;
670 if ((fec->eth->rfifo_lrf_ptr != fec->eth->rfifo_lwf_ptr)
671 || (fec->eth->rfifo_rdptr != fec->eth->rfifo_wrptr)) {
673 miiphy_read(devname, phyAddr, 0x1, &phyStatus);
674 printf("\nphyStatus: 0x%04x\n", phyStatus);
675 printf("ecntrl: 0x%08x\n", fec->eth->ecntrl);
676 printf("ievent: 0x%08x\n", fec->eth->ievent);
677 printf("x_status: 0x%08x\n", fec->eth->x_status);
678 printf("rfifo: status 0x%08x\n", fec->eth->rfifo_status);
680 printf(" control 0x%08x\n", fec->eth->rfifo_cntrl);
681 printf(" lrfp 0x%08x\n", fec->eth->rfifo_lrf_ptr);
682 printf(" lwfp 0x%08x\n", fec->eth->rfifo_lwf_ptr);
683 printf(" alarm 0x%08x\n", fec->eth->rfifo_alarm);
684 printf(" readptr 0x%08x\n", fec->eth->rfifo_rdptr);
685 printf(" writptr 0x%08x\n", fec->eth->rfifo_wrptr);
690 /********************************************************************/
692 static int mpc5xxx_fec_send(struct eth_device *dev, volatile void *eth_data,
696 * This routine transmits one frame. This routine only accepts
697 * 6-byte Ethernet addresses.
699 mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv;
700 volatile FEC_TBD *pTbd;
703 printf("tbd status: 0x%04x\n", fec->tbdBase[0].status);
704 tfifo_print(dev->name, fec);
708 * Clear Tx BD ring at first
710 mpc5xxx_fec_tbd_scrub(fec);
713 * Check for valid length of data.
715 if ((data_length > 1500) || (data_length <= 0)) {
720 * Check the number of vacant TxBDs.
722 if (fec->cleanTbdNum < 1) {
724 printf("No available TxBDs ...\n");
730 * Get the first TxBD to send the mac header
732 pTbd = &fec->tbdBase[fec->tbdIndex];
733 pTbd->dataLength = data_length;
734 pTbd->dataPointer = (uint32)eth_data;
735 pTbd->status |= FEC_TBD_LAST | FEC_TBD_TC | FEC_TBD_READY;
736 fec->tbdIndex = (fec->tbdIndex + 1) % FEC_TBD_NUM;
739 printf("SDMA_TASK_ENABLE, fec->tbdIndex = %d \n", fec->tbdIndex);
745 if (fec->xcv_type != SEVENWIRE) {
747 miiphy_read(dev->name, 0, 0x1, &phyStatus);
751 * Enable SmartDMA transmit task
755 tfifo_print(dev->name, fec);
757 SDMA_TASK_ENABLE (FEC_XMIT_TASK_NO);
759 tfifo_print(dev->name, fec);
765 fec->cleanTbdNum -= 1;
767 #if (DEBUG & 0x129) && (DEBUG & 0x80000000)
768 printf ("smartDMA ethernet Tx task enabled\n");
771 * wait until frame is sent .
773 while (pTbd->status & FEC_TBD_READY) {
776 printf ("TDB status = %04x\n", pTbd->status);
784 /********************************************************************/
785 static int mpc5xxx_fec_recv(struct eth_device *dev)
788 * This command pulls one frame from the card
790 mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv;
791 volatile FEC_RBD *pRbd = &fec->rbdBase[fec->rbdIndex];
792 unsigned long ievent;
793 int frame_length, len = 0;
795 uchar buff[FEC_MAX_PKT_SIZE];
798 printf ("mpc5xxx_fec_recv %d Start...\n", fec->rbdIndex);
805 * Check if any critical events have happened
807 ievent = fec->eth->ievent;
808 fec->eth->ievent = ievent;
809 if (ievent & 0x20060000) {
810 /* BABT, Rx/Tx FIFO errors */
811 mpc5xxx_fec_halt(dev);
812 mpc5xxx_fec_init(dev, NULL);
815 if (ievent & 0x80000000) {
816 /* Heartbeat error */
817 fec->eth->x_cntrl |= 0x00000001;
819 if (ievent & 0x10000000) {
820 /* Graceful stop complete */
821 if (fec->eth->x_cntrl & 0x00000001) {
822 mpc5xxx_fec_halt(dev);
823 fec->eth->x_cntrl &= ~0x00000001;
824 mpc5xxx_fec_init(dev, NULL);
828 if (!(pRbd->status & FEC_RBD_EMPTY)) {
829 if ((pRbd->status & FEC_RBD_LAST) && !(pRbd->status & FEC_RBD_ERR) &&
830 ((pRbd->dataLength - 4) > 14)) {
833 * Get buffer address and size
835 frame = (NBUF *)pRbd->dataPointer;
836 frame_length = pRbd->dataLength - 4;
841 printf("recv data hdr:");
842 for (i = 0; i < 14; i++)
843 printf("%x ", *(frame->head + i));
848 * Fill the buffer and pass it to upper layers
850 memcpy(buff, frame->head, 14);
851 memcpy(buff + 14, frame->data, frame_length);
852 NetReceive(buff, frame_length);
856 * Reset buffer descriptor as empty
858 mpc5xxx_fec_rbd_clean(fec, pRbd);
860 SDMA_CLEAR_IEVENT (FEC_RECV_TASK_NO);
865 /********************************************************************/
866 int mpc5xxx_fec_initialize(bd_t * bis)
868 mpc5xxx_fec_priv *fec;
869 struct eth_device *dev;
871 char env_enetaddr[6];
874 fec = (mpc5xxx_fec_priv *)malloc(sizeof(*fec));
875 dev = (struct eth_device *)malloc(sizeof(*dev));
876 memset(dev, 0, sizeof *dev);
878 fec->eth = (ethernet_regs *)MPC5XXX_FEC;
879 fec->tbdBase = (FEC_TBD *)FEC_BD_BASE;
880 fec->rbdBase = (FEC_RBD *)(FEC_BD_BASE + FEC_TBD_NUM * sizeof(FEC_TBD));
881 #if defined(CONFIG_CANMB) || defined(CONFIG_HMI1001) || \
882 defined(CONFIG_ICECUBE) || defined(CONFIG_INKA4X0) || \
883 defined(CONFIG_MCC200) || defined(CONFIG_O2DNT) || \
884 defined(CONFIG_PM520) || defined(CONFIG_TOP5200) || \
885 defined(CONFIG_TQM5200)
886 # ifndef CONFIG_FEC_10MBIT
887 fec->xcv_type = MII100;
889 fec->xcv_type = MII10;
891 #elif defined(CONFIG_TOTAL5200)
892 fec->xcv_type = SEVENWIRE;
894 #error fec->xcv_type not initialized.
897 dev->priv = (void *)fec;
898 dev->iobase = MPC5XXX_FEC;
899 dev->init = mpc5xxx_fec_init;
900 dev->halt = mpc5xxx_fec_halt;
901 dev->send = mpc5xxx_fec_send;
902 dev->recv = mpc5xxx_fec_recv;
904 sprintf(dev->name, "FEC ETHERNET");
907 #if defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII)
908 miiphy_register (dev->name,
909 fec5xxx_miiphy_read, fec5xxx_miiphy_write);
913 * Try to set the mac address now. The fec mac address is
914 * a garbage after reset. When not using fec for booting
915 * the Linux fec driver will try to work with this garbage.
917 tmp = getenv("ethaddr");
919 for (i=0; i<6; i++) {
920 env_enetaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
922 tmp = (*end) ? end+1 : end;
924 mpc5xxx_fec_set_hwaddr(fec, env_enetaddr);
927 mpc5xxx_fec_init_phy(dev, bis);
932 /* MII-interface related functions */
933 /********************************************************************/
934 int fec5xxx_miiphy_read(char *devname, uint8 phyAddr, uint8 regAddr, uint16 * retVal)
936 ethernet_regs *eth = (ethernet_regs *)MPC5XXX_FEC;
937 uint32 reg; /* convenient holder for the PHY register */
938 uint32 phy; /* convenient holder for the PHY */
939 int timeout = 0xffff;
942 * reading from any PHY's register is done by properly
943 * programming the FEC's MII data register.
945 reg = regAddr << FEC_MII_DATA_RA_SHIFT;
946 phy = phyAddr << FEC_MII_DATA_PA_SHIFT;
948 eth->mii_data = (FEC_MII_DATA_ST | FEC_MII_DATA_OP_RD | FEC_MII_DATA_TA | phy | reg);
951 * wait for the related interrupt
953 while ((timeout--) && (!(eth->ievent & 0x00800000))) ;
957 printf ("Read MDIO failed...\n");
963 * clear mii interrupt bit
965 eth->ievent = 0x00800000;
968 * it's now safe to read the PHY's register
970 *retVal = (uint16) eth->mii_data;
975 /********************************************************************/
976 int fec5xxx_miiphy_write(char *devname, uint8 phyAddr, uint8 regAddr, uint16 data)
978 ethernet_regs *eth = (ethernet_regs *)MPC5XXX_FEC;
979 uint32 reg; /* convenient holder for the PHY register */
980 uint32 phy; /* convenient holder for the PHY */
981 int timeout = 0xffff;
983 reg = regAddr << FEC_MII_DATA_RA_SHIFT;
984 phy = phyAddr << FEC_MII_DATA_PA_SHIFT;
986 eth->mii_data = (FEC_MII_DATA_ST | FEC_MII_DATA_OP_WR |
987 FEC_MII_DATA_TA | phy | reg | data);
990 * wait for the MII interrupt
992 while ((timeout--) && (!(eth->ievent & 0x00800000))) ;
996 printf ("Write MDIO failed...\n");
1002 * clear MII interrupt bit
1004 eth->ievent = 0x00800000;
1010 static uint32 local_crc32(char *string, unsigned int crc_value, int len)
1014 unsigned int crc, count;
1020 * crc = 0xffffffff; * The initialized value should be 0xffffffff
1024 for (i = len; --i >= 0;) {
1026 for (count = 0; count < 8; count++) {
1027 if ((c & 0x01) ^ (crc & 0x01)) {
1029 crc = crc ^ 0xedb88320;
1038 * In big endian system, do byte swaping for crc value
1044 #endif /* CONFIG_MPC5xxx_FEC */