2 * (C) Copyright 2003-2010
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * This file is based on mpc4200fec.c,
6 * (C) Copyright Motorola, Inc., 2000
11 #include <mpc5xxx_sdma.h>
16 #include "mpc5xxx_fec.h"
18 DECLARE_GLOBAL_DATA_PTR;
20 /* #define DEBUG 0x28 */
22 #if !(defined(CONFIG_MII) || defined(CONFIG_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 uint8 data[1500]; /* actual data */
33 int length; /* actual length */
34 int used; /* buffer in use or not */
35 uint8 head[16]; /* MAC header(6 + 6 + 2) + 2(aligned) */
38 int fec5xxx_miiphy_read(const char *devname, uint8 phyAddr, uint8 regAddr, uint16 *retVal);
39 int fec5xxx_miiphy_write(const char *devname, uint8 phyAddr, uint8 regAddr, uint16 data);
41 static int mpc5xxx_fec_init_phy(struct eth_device *dev, bd_t * bis);
43 /********************************************************************/
45 static void mpc5xxx_fec_phydump (char *devname)
48 uint8 phyAddr = CONFIG_PHY_ADDR;
50 #if CONFIG_PHY_TYPE == 0x79c874 /* AMD Am79C874 */
51 /* regs to print: 0...7, 16...19, 21, 23, 24 */
52 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0,
53 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0,
55 /* regs to print: 0...8, 16...20 */
56 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0,
57 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
61 for (i = 0; i < 32; i++) {
63 miiphy_read(devname, phyAddr, i, &phyStatus);
64 printf("Mii reg %d: 0x%04x\n", i, phyStatus);
70 /********************************************************************/
71 static int mpc5xxx_fec_rbd_init(mpc5xxx_fec_priv *fec)
77 for (ix = 0; ix < FEC_RBD_NUM; ix++) {
79 data = (char *)malloc(FEC_MAX_PKT_SIZE);
81 printf ("RBD INIT FAILED\n");
84 fec->rbdBase[ix].dataPointer = (uint32)data;
86 fec->rbdBase[ix].status = FEC_RBD_EMPTY;
87 fec->rbdBase[ix].dataLength = 0;
92 * have the last RBD to close the ring
94 fec->rbdBase[ix - 1].status |= FEC_RBD_WRAP;
100 /********************************************************************/
101 static void mpc5xxx_fec_tbd_init(mpc5xxx_fec_priv *fec)
105 for (ix = 0; ix < FEC_TBD_NUM; ix++) {
106 fec->tbdBase[ix].status = 0;
110 * Have the last TBD to close the ring
112 fec->tbdBase[ix - 1].status |= FEC_TBD_WRAP;
115 * Initialize some indices
118 fec->usedTbdIndex = 0;
119 fec->cleanTbdNum = FEC_TBD_NUM;
122 /********************************************************************/
123 static void mpc5xxx_fec_rbd_clean(mpc5xxx_fec_priv *fec, volatile FEC_RBD * pRbd)
126 * Reset buffer descriptor as empty
128 if ((fec->rbdIndex) == (FEC_RBD_NUM - 1))
129 pRbd->status = (FEC_RBD_WRAP | FEC_RBD_EMPTY);
131 pRbd->status = FEC_RBD_EMPTY;
133 pRbd->dataLength = 0;
136 * Now, we have an empty RxBD, restart the SmartDMA receive task
138 SDMA_TASK_ENABLE(FEC_RECV_TASK_NO);
143 fec->rbdIndex = (fec->rbdIndex + 1) % FEC_RBD_NUM;
146 /********************************************************************/
147 static void mpc5xxx_fec_tbd_scrub(mpc5xxx_fec_priv *fec)
149 volatile FEC_TBD *pUsedTbd;
152 printf ("tbd_scrub: fec->cleanTbdNum = %d, fec->usedTbdIndex = %d\n",
153 fec->cleanTbdNum, fec->usedTbdIndex);
157 * process all the consumed TBDs
159 while (fec->cleanTbdNum < FEC_TBD_NUM) {
160 pUsedTbd = &fec->tbdBase[fec->usedTbdIndex];
161 if (pUsedTbd->status & FEC_TBD_READY) {
163 printf("Cannot clean TBD %d, in use\n", fec->cleanTbdNum);
169 * clean this buffer descriptor
171 if (fec->usedTbdIndex == (FEC_TBD_NUM - 1))
172 pUsedTbd->status = FEC_TBD_WRAP;
174 pUsedTbd->status = 0;
177 * update some indeces for a correct handling of the TBD ring
180 fec->usedTbdIndex = (fec->usedTbdIndex + 1) % FEC_TBD_NUM;
184 /********************************************************************/
185 static void mpc5xxx_fec_set_hwaddr(mpc5xxx_fec_priv *fec, char *mac)
187 uint8 currByte; /* byte for which to compute the CRC */
188 int byte; /* loop - counter */
189 int bit; /* loop - counter */
190 uint32 crc = 0xffffffff; /* initial value */
193 * The algorithm used is the following:
194 * we loop on each of the six bytes of the provided address,
195 * and we compute the CRC by left-shifting the previous
196 * value by one position, so that each bit in the current
197 * byte of the address may contribute the calculation. If
198 * the latter and the MSB in the CRC are different, then
199 * the CRC value so computed is also ex-ored with the
200 * "polynomium generator". The current byte of the address
201 * is also shifted right by one bit at each iteration.
202 * This is because the CRC generatore in hardware is implemented
203 * as a shift-register with as many ex-ores as the radixes
204 * in the polynomium. This suggests that we represent the
205 * polynomiumm itself as a 32-bit constant.
207 for (byte = 0; byte < 6; byte++) {
208 currByte = mac[byte];
209 for (bit = 0; bit < 8; bit++) {
210 if ((currByte & 0x01) ^ (crc & 0x01)) {
212 crc = crc ^ 0xedb88320;
223 * Set individual hash table register
226 fec->eth->iaddr1 = (1 << (crc - 32));
227 fec->eth->iaddr2 = 0;
229 fec->eth->iaddr1 = 0;
230 fec->eth->iaddr2 = (1 << crc);
234 * Set physical address
236 fec->eth->paddr1 = (mac[0] << 24) + (mac[1] << 16) + (mac[2] << 8) + mac[3];
237 fec->eth->paddr2 = (mac[4] << 24) + (mac[5] << 16) + 0x8808;
240 /********************************************************************/
241 static int mpc5xxx_fec_init(struct eth_device *dev, bd_t * bis)
243 mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv;
244 struct mpc5xxx_sdma *sdma = (struct mpc5xxx_sdma *)MPC5XXX_SDMA;
247 printf ("mpc5xxx_fec_init... Begin\n");
250 mpc5xxx_fec_init_phy(dev, bis);
253 * Initialize RxBD/TxBD rings
255 mpc5xxx_fec_rbd_init(fec);
256 mpc5xxx_fec_tbd_init(fec);
259 * Clear FEC-Lite interrupt event register(IEVENT)
261 fec->eth->ievent = 0xffffffff;
264 * Set interrupt mask register
266 fec->eth->imask = 0x00000000;
269 * Set FEC-Lite receive control register(R_CNTRL):
271 if (fec->xcv_type == SEVENWIRE) {
273 * Frame length=1518; 7-wire mode
275 fec->eth->r_cntrl = 0x05ee0020; /*0x05ee0000;FIXME */
278 * Frame length=1518; MII mode;
280 fec->eth->r_cntrl = 0x05ee0024; /*0x05ee0004;FIXME */
283 fec->eth->x_cntrl = 0x00000000; /* half-duplex, heartbeat disabled */
286 * Set Opcode/Pause Duration Register
288 fec->eth->op_pause = 0x00010020; /*FIXME 0xffff0020; */
291 * Set Rx FIFO alarm and granularity value
293 fec->eth->rfifo_cntrl = 0x0c000000
294 | (fec->eth->rfifo_cntrl & ~0x0f000000);
295 fec->eth->rfifo_alarm = 0x0000030c;
297 if (fec->eth->rfifo_status & 0x00700000 ) {
298 printf("mpc5xxx_fec_init() RFIFO error\n");
303 * Set Tx FIFO granularity value
305 fec->eth->tfifo_cntrl = 0x0c000000
306 | (fec->eth->tfifo_cntrl & ~0x0f000000);
308 printf("tfifo_status: 0x%08x\n", fec->eth->tfifo_status);
309 printf("tfifo_alarm: 0x%08x\n", fec->eth->tfifo_alarm);
313 * Set transmit fifo watermark register(X_WMRK), default = 64
315 fec->eth->tfifo_alarm = 0x00000080;
316 fec->eth->x_wmrk = 0x2;
319 * Set individual address filter for unicast address
320 * and set physical address registers.
322 mpc5xxx_fec_set_hwaddr(fec, (char *)dev->enetaddr);
325 * Set multicast address filter
327 fec->eth->gaddr1 = 0x00000000;
328 fec->eth->gaddr2 = 0x00000000;
331 * Turn ON cheater FSM: ????
333 fec->eth->xmit_fsm = 0x03000000;
336 * Turn off COMM bus prefetch in the MPC5200 BestComm. It doesn't
337 * work w/ the current receive task.
339 sdma->PtdCntrl |= 0x00000001;
342 * Set priority of different initiators
344 sdma->IPR0 = 7; /* always */
345 sdma->IPR3 = 6; /* Eth RX */
346 sdma->IPR4 = 5; /* Eth Tx */
349 * Clear SmartDMA task interrupt pending bits
351 SDMA_CLEAR_IEVENT(FEC_RECV_TASK_NO);
354 * Initialize SmartDMA parameters stored in SRAM
356 *(volatile int *)FEC_TBD_BASE = (int)fec->tbdBase;
357 *(volatile int *)FEC_RBD_BASE = (int)fec->rbdBase;
358 *(volatile int *)FEC_TBD_NEXT = (int)fec->tbdBase;
359 *(volatile int *)FEC_RBD_NEXT = (int)fec->rbdBase;
362 * Enable FEC-Lite controller
364 fec->eth->ecntrl |= 0x00000006;
367 if (fec->xcv_type != SEVENWIRE)
368 mpc5xxx_fec_phydump (dev->name);
372 * Enable SmartDMA receive task
374 SDMA_TASK_ENABLE(FEC_RECV_TASK_NO);
377 printf("mpc5xxx_fec_init... Done \n");
383 /********************************************************************/
384 static int mpc5xxx_fec_init_phy(struct eth_device *dev, bd_t * bis)
386 mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv;
387 const uint8 phyAddr = CONFIG_PHY_ADDR; /* Only one PHY */
388 static int initialized = 0;
395 printf ("mpc5xxx_fec_init_phy... Begin\n");
399 * Initialize GPIO pins
401 if (fec->xcv_type == SEVENWIRE) {
402 /* 10MBit with 7-wire operation */
403 #if defined(CONFIG_TOTAL5200)
404 /* 7-wire and USB2 on Ethernet */
405 *(vu_long *)MPC5XXX_GPS_PORT_CONFIG |= 0x00030000;
406 #else /* !CONFIG_TOTAL5200 */
408 *(vu_long *)MPC5XXX_GPS_PORT_CONFIG |= 0x00020000;
409 #endif /* CONFIG_TOTAL5200 */
411 /* 100MBit with MD operation */
412 *(vu_long *)MPC5XXX_GPS_PORT_CONFIG |= 0x00050000;
416 * Clear FEC-Lite interrupt event register(IEVENT)
418 fec->eth->ievent = 0xffffffff;
421 * Set interrupt mask register
423 fec->eth->imask = 0x00000000;
426 * In original Promess-provided code PHY initialization is disabled with the
427 * following comment: "Phy initialization is DISABLED for now. There was a
428 * problem with running 100 Mbps on PRO board". Thus we temporarily disable
429 * PHY initialization for the Motion-PRO board, until a proper fix is found.
432 if (fec->xcv_type != SEVENWIRE) {
434 * Set MII_SPEED = (1/(mii_speed * 2)) * System Clock
435 * and do not drop the Preamble.
437 fec->eth->mii_speed = (((gd->ipb_clk >> 20) / 5) << 1); /* No MII for 7-wire mode */
440 if (fec->xcv_type != SEVENWIRE) {
442 * Initialize PHY(LXT971A):
444 * Generally, on power up, the LXT971A reads its configuration
445 * pins to check for forced operation, If not cofigured for
446 * forced operation, it uses auto-negotiation/parallel detection
447 * to automatically determine line operating conditions.
448 * If the PHY device on the other side of the link supports
449 * auto-negotiation, the LXT971A auto-negotiates with it
450 * using Fast Link Pulse(FLP) Bursts. If the PHY partner does not
451 * support auto-negotiation, the LXT971A automatically detects
452 * the presence of either link pulses(10Mbps PHY) or Idle
453 * symbols(100Mbps) and sets its operating conditions accordingly.
455 * When auto-negotiation is controlled by software, the following
456 * steps are recommended.
459 * The physical address is dependent on hardware configuration.
466 * Reset PHY, then delay 300ns
468 miiphy_write(dev->name, phyAddr, 0x0, 0x8000);
471 #if defined(CONFIG_UC101) || defined(CONFIG_MUCMC52)
472 /* Set the LED configuration Register for the UC101
474 miiphy_write(dev->name, phyAddr, 0x14, 0x4122);
476 if (fec->xcv_type == MII10) {
478 * Force 10Base-T, FDX operation
481 printf("Forcing 10 Mbps ethernet link... ");
483 miiphy_read(dev->name, phyAddr, 0x1, &phyStatus);
485 miiphy_write(dev->name, fec, phyAddr, 0x0, 0x0100);
487 miiphy_write(dev->name, phyAddr, 0x0, 0x0180);
490 do { /* wait for link status to go down */
492 if ((timeout--) == 0) {
494 printf("hmmm, should not have waited...");
498 miiphy_read(dev->name, phyAddr, 0x1, &phyStatus);
502 } while ((phyStatus & 0x0004)); /* !link up */
505 do { /* wait for link status to come back up */
507 if ((timeout--) == 0) {
508 printf("failed. Link is down.\n");
511 miiphy_read(dev->name, phyAddr, 0x1, &phyStatus);
515 } while (!(phyStatus & 0x0004)); /* !link up */
520 } else { /* MII100 */
522 * Set the auto-negotiation advertisement register bits
524 miiphy_write(dev->name, phyAddr, 0x4, 0x01e1);
527 * Set MDIO bit 0.12 = 1(&& bit 0.9=1?) to enable auto-negotiation
529 miiphy_write(dev->name, phyAddr, 0x0, 0x1200);
532 * Wait for AN completion
538 if ((timeout--) == 0) {
540 printf("PHY auto neg 0 failed...\n");
545 if (miiphy_read(dev->name, phyAddr, 0x1, &phyStatus) != 0) {
547 printf("PHY auto neg 1 failed 0x%04x...\n", phyStatus);
551 } while (!(phyStatus & 0x0004));
554 printf("PHY auto neg complete! \n");
561 if (fec->xcv_type != SEVENWIRE)
562 mpc5xxx_fec_phydump (dev->name);
567 printf("mpc5xxx_fec_init_phy... Done \n");
573 /********************************************************************/
574 static void mpc5xxx_fec_halt(struct eth_device *dev)
576 struct mpc5xxx_sdma *sdma = (struct mpc5xxx_sdma *)MPC5XXX_SDMA;
577 mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv;
578 int counter = 0xffff;
581 if (fec->xcv_type != SEVENWIRE)
582 mpc5xxx_fec_phydump (dev->name);
586 * mask FEC chip interrupts
591 * issue graceful stop command to the FEC transmitter if necessary
593 fec->eth->x_cntrl |= 0x00000001;
596 * wait for graceful stop to register
598 while ((counter--) && (!(fec->eth->ievent & 0x10000000))) ;
601 * Disable SmartDMA tasks
603 SDMA_TASK_DISABLE (FEC_XMIT_TASK_NO);
604 SDMA_TASK_DISABLE (FEC_RECV_TASK_NO);
607 * Turn on COMM bus prefetch in the MPC5200 BestComm after we're
608 * done. It doesn't work w/ the current receive task.
610 sdma->PtdCntrl &= ~0x00000001;
613 * Disable the Ethernet Controller
615 fec->eth->ecntrl &= 0xfffffffd;
618 * Clear FIFO status registers
620 fec->eth->rfifo_status &= 0x00700000;
621 fec->eth->tfifo_status &= 0x00700000;
623 fec->eth->reset_cntrl = 0x01000000;
626 * Issue a reset command to the FEC chip
628 fec->eth->ecntrl |= 0x1;
631 * wait at least 16 clock cycles
635 /* don't leave the MII speed set to zero */
636 if (fec->xcv_type != SEVENWIRE) {
638 * Set MII_SPEED = (1/(mii_speed * 2)) * System Clock
639 * and do not drop the Preamble.
641 fec->eth->mii_speed = (((gd->ipb_clk >> 20) / 5) << 1); /* No MII for 7-wire mode */
645 printf("Ethernet task stopped\n");
650 /********************************************************************/
652 static void tfifo_print(char *devname, mpc5xxx_fec_priv *fec)
654 uint16 phyAddr = CONFIG_PHY_ADDR;
657 if ((fec->eth->tfifo_lrf_ptr != fec->eth->tfifo_lwf_ptr)
658 || (fec->eth->tfifo_rdptr != fec->eth->tfifo_wrptr)) {
660 miiphy_read(devname, phyAddr, 0x1, &phyStatus);
661 printf("\nphyStatus: 0x%04x\n", phyStatus);
662 printf("ecntrl: 0x%08x\n", fec->eth->ecntrl);
663 printf("ievent: 0x%08x\n", fec->eth->ievent);
664 printf("x_status: 0x%08x\n", fec->eth->x_status);
665 printf("tfifo: status 0x%08x\n", fec->eth->tfifo_status);
667 printf(" control 0x%08x\n", fec->eth->tfifo_cntrl);
668 printf(" lrfp 0x%08x\n", fec->eth->tfifo_lrf_ptr);
669 printf(" lwfp 0x%08x\n", fec->eth->tfifo_lwf_ptr);
670 printf(" alarm 0x%08x\n", fec->eth->tfifo_alarm);
671 printf(" readptr 0x%08x\n", fec->eth->tfifo_rdptr);
672 printf(" writptr 0x%08x\n", fec->eth->tfifo_wrptr);
676 static void rfifo_print(char *devname, mpc5xxx_fec_priv *fec)
678 uint16 phyAddr = CONFIG_PHY_ADDR;
681 if ((fec->eth->rfifo_lrf_ptr != fec->eth->rfifo_lwf_ptr)
682 || (fec->eth->rfifo_rdptr != fec->eth->rfifo_wrptr)) {
684 miiphy_read(devname, phyAddr, 0x1, &phyStatus);
685 printf("\nphyStatus: 0x%04x\n", phyStatus);
686 printf("ecntrl: 0x%08x\n", fec->eth->ecntrl);
687 printf("ievent: 0x%08x\n", fec->eth->ievent);
688 printf("x_status: 0x%08x\n", fec->eth->x_status);
689 printf("rfifo: status 0x%08x\n", fec->eth->rfifo_status);
691 printf(" control 0x%08x\n", fec->eth->rfifo_cntrl);
692 printf(" lrfp 0x%08x\n", fec->eth->rfifo_lrf_ptr);
693 printf(" lwfp 0x%08x\n", fec->eth->rfifo_lwf_ptr);
694 printf(" alarm 0x%08x\n", fec->eth->rfifo_alarm);
695 printf(" readptr 0x%08x\n", fec->eth->rfifo_rdptr);
696 printf(" writptr 0x%08x\n", fec->eth->rfifo_wrptr);
701 /********************************************************************/
703 static int mpc5xxx_fec_send(struct eth_device *dev, volatile void *eth_data,
707 * This routine transmits one frame. This routine only accepts
708 * 6-byte Ethernet addresses.
710 mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv;
711 volatile FEC_TBD *pTbd;
714 printf("tbd status: 0x%04x\n", fec->tbdBase[0].status);
715 tfifo_print(dev->name, fec);
719 * Clear Tx BD ring at first
721 mpc5xxx_fec_tbd_scrub(fec);
724 * Check for valid length of data.
726 if ((data_length > 1500) || (data_length <= 0)) {
731 * Check the number of vacant TxBDs.
733 if (fec->cleanTbdNum < 1) {
735 printf("No available TxBDs ...\n");
741 * Get the first TxBD to send the mac header
743 pTbd = &fec->tbdBase[fec->tbdIndex];
744 pTbd->dataLength = data_length;
745 pTbd->dataPointer = (uint32)eth_data;
746 pTbd->status |= FEC_TBD_LAST | FEC_TBD_TC | FEC_TBD_READY;
747 fec->tbdIndex = (fec->tbdIndex + 1) % FEC_TBD_NUM;
750 printf("SDMA_TASK_ENABLE, fec->tbdIndex = %d \n", fec->tbdIndex);
756 if (fec->xcv_type != SEVENWIRE) {
758 miiphy_read(dev->name, 0, 0x1, &phyStatus);
762 * Enable SmartDMA transmit task
766 tfifo_print(dev->name, fec);
768 SDMA_TASK_ENABLE (FEC_XMIT_TASK_NO);
770 tfifo_print(dev->name, fec);
776 fec->cleanTbdNum -= 1;
778 #if (DEBUG & 0x129) && (DEBUG & 0x80000000)
779 printf ("smartDMA ethernet Tx task enabled\n");
782 * wait until frame is sent .
784 while (pTbd->status & FEC_TBD_READY) {
787 printf ("TDB status = %04x\n", pTbd->status);
795 /********************************************************************/
796 static int mpc5xxx_fec_recv(struct eth_device *dev)
799 * This command pulls one frame from the card
801 mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv;
802 volatile FEC_RBD *pRbd = &fec->rbdBase[fec->rbdIndex];
803 unsigned long ievent;
804 int frame_length, len = 0;
806 uchar buff[FEC_MAX_PKT_SIZE];
809 printf ("mpc5xxx_fec_recv %d Start...\n", fec->rbdIndex);
816 * Check if any critical events have happened
818 ievent = fec->eth->ievent;
819 fec->eth->ievent = ievent;
820 if (ievent & 0x20060000) {
821 /* BABT, Rx/Tx FIFO errors */
822 mpc5xxx_fec_halt(dev);
823 mpc5xxx_fec_init(dev, NULL);
826 if (ievent & 0x80000000) {
827 /* Heartbeat error */
828 fec->eth->x_cntrl |= 0x00000001;
830 if (ievent & 0x10000000) {
831 /* Graceful stop complete */
832 if (fec->eth->x_cntrl & 0x00000001) {
833 mpc5xxx_fec_halt(dev);
834 fec->eth->x_cntrl &= ~0x00000001;
835 mpc5xxx_fec_init(dev, NULL);
839 if (!(pRbd->status & FEC_RBD_EMPTY)) {
840 if ((pRbd->status & FEC_RBD_LAST) && !(pRbd->status & FEC_RBD_ERR) &&
841 ((pRbd->dataLength - 4) > 14)) {
844 * Get buffer address and size
846 frame = (NBUF *)pRbd->dataPointer;
847 frame_length = pRbd->dataLength - 4;
852 printf("recv data hdr:");
853 for (i = 0; i < 14; i++)
854 printf("%x ", *(frame->head + i));
859 * Fill the buffer and pass it to upper layers
861 memcpy(buff, frame->head, 14);
862 memcpy(buff + 14, frame->data, frame_length);
863 NetReceive(buff, frame_length);
867 * Reset buffer descriptor as empty
869 mpc5xxx_fec_rbd_clean(fec, pRbd);
871 SDMA_CLEAR_IEVENT (FEC_RECV_TASK_NO);
876 /********************************************************************/
877 int mpc5xxx_fec_initialize(bd_t * bis)
879 mpc5xxx_fec_priv *fec;
880 struct eth_device *dev;
882 char env_enetaddr[6];
885 fec = (mpc5xxx_fec_priv *)malloc(sizeof(*fec));
886 dev = (struct eth_device *)malloc(sizeof(*dev));
887 memset(dev, 0, sizeof *dev);
889 fec->eth = (ethernet_regs *)MPC5XXX_FEC;
890 fec->tbdBase = (FEC_TBD *)FEC_BD_BASE;
891 fec->rbdBase = (FEC_RBD *)(FEC_BD_BASE + FEC_TBD_NUM * sizeof(FEC_TBD));
892 #if defined(CONFIG_MPC5xxx_FEC_MII100)
893 fec->xcv_type = MII100;
894 #elif defined(CONFIG_MPC5xxx_FEC_MII10)
895 fec->xcv_type = MII10;
896 #elif defined(CONFIG_MPC5xxx_FEC_SEVENWIRE)
897 fec->xcv_type = SEVENWIRE;
899 #error fec->xcv_type not initialized.
901 if (fec->xcv_type != SEVENWIRE) {
903 * Set MII_SPEED = (1/(mii_speed * 2)) * System Clock
904 * and do not drop the Preamble.
906 fec->eth->mii_speed = (((gd->ipb_clk >> 20) / 5) << 1); /* No MII for 7-wire mode */
909 dev->priv = (void *)fec;
910 dev->iobase = MPC5XXX_FEC;
911 dev->init = mpc5xxx_fec_init;
912 dev->halt = mpc5xxx_fec_halt;
913 dev->send = mpc5xxx_fec_send;
914 dev->recv = mpc5xxx_fec_recv;
916 sprintf(dev->name, "FEC");
919 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
920 miiphy_register (dev->name,
921 fec5xxx_miiphy_read, fec5xxx_miiphy_write);
925 * Try to set the mac address now. The fec mac address is
926 * a garbage after reset. When not using fec for booting
927 * the Linux fec driver will try to work with this garbage.
929 tmp = getenv("ethaddr");
931 for (i=0; i<6; i++) {
932 env_enetaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
934 tmp = (*end) ? end+1 : end;
936 mpc5xxx_fec_set_hwaddr(fec, env_enetaddr);
942 /* MII-interface related functions */
943 /********************************************************************/
944 int fec5xxx_miiphy_read(const char *devname, uint8 phyAddr, uint8 regAddr, uint16 * retVal)
946 ethernet_regs *eth = (ethernet_regs *)MPC5XXX_FEC;
947 uint32 reg; /* convenient holder for the PHY register */
948 uint32 phy; /* convenient holder for the PHY */
949 int timeout = 0xffff;
952 * reading from any PHY's register is done by properly
953 * programming the FEC's MII data register.
955 reg = regAddr << FEC_MII_DATA_RA_SHIFT;
956 phy = phyAddr << FEC_MII_DATA_PA_SHIFT;
958 eth->mii_data = (FEC_MII_DATA_ST | FEC_MII_DATA_OP_RD | FEC_MII_DATA_TA | phy | reg);
961 * wait for the related interrupt
963 while ((timeout--) && (!(eth->ievent & 0x00800000))) ;
967 printf ("Read MDIO failed...\n");
973 * clear mii interrupt bit
975 eth->ievent = 0x00800000;
978 * it's now safe to read the PHY's register
980 *retVal = (uint16) eth->mii_data;
985 /********************************************************************/
986 int fec5xxx_miiphy_write(const char *devname, uint8 phyAddr, uint8 regAddr, uint16 data)
988 ethernet_regs *eth = (ethernet_regs *)MPC5XXX_FEC;
989 uint32 reg; /* convenient holder for the PHY register */
990 uint32 phy; /* convenient holder for the PHY */
991 int timeout = 0xffff;
993 reg = regAddr << FEC_MII_DATA_RA_SHIFT;
994 phy = phyAddr << FEC_MII_DATA_PA_SHIFT;
996 eth->mii_data = (FEC_MII_DATA_ST | FEC_MII_DATA_OP_WR |
997 FEC_MII_DATA_TA | phy | reg | data);
1000 * wait for the MII interrupt
1002 while ((timeout--) && (!(eth->ievent & 0x00800000))) ;
1006 printf ("Write MDIO failed...\n");
1012 * clear MII interrupt bit
1014 eth->ievent = 0x00800000;