]> git.sur5r.net Git - u-boot/blob - cpu/mpc8xx/fec.c
d2e84089976b0dab3eb142a1a10c411ee5c7c78e
[u-boot] / cpu / mpc8xx / fec.c
1 /*
2  * (C) Copyright 2000
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24 #include <common.h>
25 #include <malloc.h>
26 #include <commproc.h>
27 #include <net.h>
28 #include <command.h>
29
30 #undef  ET_DEBUG
31
32 #if (CONFIG_COMMANDS & CFG_CMD_NET) && defined(FEC_ENET)
33
34 #ifdef CFG_DISCOVER_PHY
35 #include <miiphy.h>
36 static void mii_discover_phy(void);
37 #endif
38
39 /* Ethernet Transmit and Receive Buffers */
40 #define DBUF_LENGTH  1520
41
42 #define TX_BUF_CNT 2
43
44 #define TOUT_LOOP 100
45
46 #define PKT_MAXBUF_SIZE         1518
47 #define PKT_MINBUF_SIZE         64
48 #define PKT_MAXBLR_SIZE         1520
49
50
51 static char txbuf[DBUF_LENGTH];
52
53 static uint rxIdx;      /* index of the current RX buffer */
54 static uint txIdx;      /* index of the current TX buffer */
55
56 /*
57   * FEC Ethernet Tx and Rx buffer descriptors allocated at the
58   *  immr->udata_bd address on Dual-Port RAM
59   * Provide for Double Buffering
60   */
61
62 typedef volatile struct CommonBufferDescriptor {
63     cbd_t rxbd[PKTBUFSRX];              /* Rx BD */
64     cbd_t txbd[TX_BUF_CNT];             /* Tx BD */
65 } RTXBD;
66
67 static RTXBD *rtx = NULL;
68
69 static int fec_send(struct eth_device* dev, volatile void *packet, int length);
70 static int fec_recv(struct eth_device* dev);
71 static int fec_init(struct eth_device* dev, bd_t * bd);
72 static void fec_halt(struct eth_device* dev);
73
74 int fec_initialize(bd_t *bis)
75 {
76         struct eth_device* dev;
77
78         dev = (struct eth_device*) malloc(sizeof *dev);
79         memset(dev, 0, sizeof *dev);
80
81         sprintf(dev->name, "FEC ETHERNET");
82         dev->iobase = 0;
83         dev->priv   = 0;
84         dev->init   = fec_init;
85         dev->halt   = fec_halt;
86         dev->send   = fec_send;
87         dev->recv   = fec_recv;
88
89         eth_register(dev);
90
91         return 1;
92 }
93
94 static int fec_send(struct eth_device* dev, volatile void *packet, int length)
95 {
96         int j, rc;
97         volatile immap_t *immr = (immap_t *) CFG_IMMR;
98         volatile fec_t *fecp = &(immr->im_cpm.cp_fec);
99
100         /* section 16.9.23.3
101          * Wait for ready
102          */
103         j = 0;
104         while ((rtx->txbd[txIdx].cbd_sc & BD_ENET_TX_READY) && (j<TOUT_LOOP)) {
105                 udelay(1);
106                 j++;
107         }
108         if (j>=TOUT_LOOP) {
109                 printf("TX not ready\n");
110         }
111
112         rtx->txbd[txIdx].cbd_bufaddr = (uint)packet;
113         rtx->txbd[txIdx].cbd_datlen  = length;
114         rtx->txbd[txIdx].cbd_sc |= BD_ENET_TX_READY | BD_ENET_TX_LAST;
115         __asm__ ("eieio");
116
117         /* Activate transmit Buffer Descriptor polling */
118         fecp->fec_x_des_active = 0x01000000;    /* Descriptor polling active    */
119
120         j = 0;
121         while ((rtx->txbd[txIdx].cbd_sc & BD_ENET_TX_READY) && (j<TOUT_LOOP)) {
122 #if defined(CONFIG_ICU862)
123                 udelay(10);
124 #else
125                 udelay(1);
126 #endif
127                 j++;
128         }
129         if (j>=TOUT_LOOP) {
130                 printf("TX timeout\n");
131         }
132 #ifdef ET_DEBUG
133         printf("%s[%d] %s: cycles: %d    status: %x  retry cnt: %d\n",
134         __FILE__,__LINE__,__FUNCTION__,j,rtx->txbd[txIdx].cbd_sc,
135         (rtx->txbd[txIdx].cbd_sc & 0x003C)>>2);
136 #endif
137         /* return only status bits */;
138         rc = (rtx->txbd[txIdx].cbd_sc & BD_ENET_TX_STATS);
139
140         txIdx = (txIdx + 1) % TX_BUF_CNT;
141
142         return rc;
143 }
144
145 static int fec_recv(struct eth_device* dev)
146 {
147         int length;
148         volatile immap_t *immr = (immap_t *) CFG_IMMR;
149         volatile fec_t *fecp = &(immr->im_cpm.cp_fec);
150
151    for (;;) {
152         /* section 16.9.23.2 */
153         if (rtx->rxbd[rxIdx].cbd_sc & BD_ENET_RX_EMPTY) {
154                 length = -1;
155                 break;     /* nothing received - leave for() loop */
156         }
157
158         length = rtx->rxbd[rxIdx].cbd_datlen;
159
160         if (rtx->rxbd[rxIdx].cbd_sc & 0x003f) {
161 #ifdef ET_DEBUG
162                 printf("%s[%d] err: %x\n",
163                 __FUNCTION__,__LINE__,rtx->rxbd[rxIdx].cbd_sc);
164 #endif
165         } else {
166                 /* Pass the packet up to the protocol layers. */
167                 NetReceive(NetRxPackets[rxIdx], length - 4);
168         }
169
170         /* Give the buffer back to the FEC. */
171         rtx->rxbd[rxIdx].cbd_datlen = 0;
172
173         /* wrap around buffer index when necessary */
174         if ((rxIdx + 1) >= PKTBUFSRX) {
175                 rtx->rxbd[PKTBUFSRX - 1].cbd_sc = (BD_ENET_RX_WRAP | BD_ENET_RX_EMPTY);
176                 rxIdx = 0;
177         } else {
178                 rtx->rxbd[rxIdx].cbd_sc = BD_ENET_RX_EMPTY;
179                 rxIdx++;
180         }
181
182         __asm__ ("eieio");
183
184         /* Try to fill Buffer Descriptors */
185         fecp->fec_r_des_active = 0x01000000;    /* Descriptor polling active    */
186    }
187
188    return length;
189 }
190
191 /**************************************************************
192  *
193  * FEC Ethernet Initialization Routine
194  *
195  *************************************************************/
196
197 #define FEC_ECNTRL_PINMUX       0x00000004
198 #define FEC_ECNTRL_ETHER_EN     0x00000002
199 #define FEC_ECNTRL_RESET        0x00000001
200
201 #define FEC_RCNTRL_BC_REJ       0x00000010
202 #define FEC_RCNTRL_PROM         0x00000008
203 #define FEC_RCNTRL_MII_MODE     0x00000004
204 #define FEC_RCNTRL_DRT          0x00000002
205 #define FEC_RCNTRL_LOOP         0x00000001
206
207 #define FEC_TCNTRL_FDEN         0x00000004
208 #define FEC_TCNTRL_HBC          0x00000002
209 #define FEC_TCNTRL_GTS          0x00000001
210
211 #define FEC_RESET_DELAY         50
212
213 static int fec_init(struct eth_device* dev, bd_t * bd)
214 {
215
216         int i;
217         volatile immap_t *immr = (immap_t *) CFG_IMMR;
218         volatile fec_t *fecp = &(immr->im_cpm.cp_fec);
219
220 #if defined(CONFIG_FADS) && defined(CONFIG_MPC860T)
221         /* configure FADS for fast (FEC) ethernet, half-duplex */
222         /* The LXT970 needs about 50ms to recover from reset, so
223          * wait for it by discovering the PHY before leaving eth_init().
224          */
225         {
226                 volatile uint *bcsr4 = (volatile uint *) BCSR4;
227                 *bcsr4 = (*bcsr4 & ~(BCSR4_FETH_EN | BCSR4_FETHCFG1))
228                         | (BCSR4_FETHCFG0 | BCSR4_FETHFDE | BCSR4_FETHRST);
229
230                 /* reset the LXT970 PHY */
231                 *bcsr4 &= ~BCSR4_FETHRST;
232                 udelay (10);
233                 *bcsr4 |= BCSR4_FETHRST;
234                 udelay (10);
235         }
236 #endif
237         /* Whack a reset.
238          * A delay is required between a reset of the FEC block and
239          * initialization of other FEC registers because the reset takes
240          * some time to complete. If you don't delay, subsequent writes
241          * to FEC registers might get killed by the reset routine which is
242          * still in progress.
243          */
244         fecp->fec_ecntrl = FEC_ECNTRL_PINMUX | FEC_ECNTRL_RESET;
245         for (i = 0;
246              (fecp->fec_ecntrl & FEC_ECNTRL_RESET) && (i < FEC_RESET_DELAY);
247              ++i) {
248                 udelay (1);
249         }
250         if (i == FEC_RESET_DELAY) {
251                 printf ("FEC_RESET_DELAY timeout\n");
252                 return 0;
253         }
254
255         /* We use strictly polling mode only
256          */
257         fecp->fec_imask = 0;
258
259         /* Clear any pending interrupt
260          */
261         fecp->fec_ievent = 0xffc0;
262
263         /* No need to set the IVEC register */
264
265         /* Set station address
266          */
267 #define ea eth_get_dev()->enetaddr
268         fecp->fec_addr_low   =  (ea[0] << 24) | (ea[1] << 16) |
269                                 (ea[2] <<  8) | (ea[3]      ) ;
270         fecp->fec_addr_high  =  (ea[4] <<  8) | (ea[5]      ) ;
271 #undef ea
272
273         /* Clear multicast address hash table
274          */
275         fecp->fec_hash_table_high = 0;
276         fecp->fec_hash_table_low  = 0;
277
278         /* Set maximum receive buffer size.
279          */
280         fecp->fec_r_buff_size = PKT_MAXBLR_SIZE;
281
282         /* Set maximum frame length
283          */
284         fecp->fec_r_hash = PKT_MAXBUF_SIZE;
285
286         /*
287          * Setup Buffers and Buffer Desriptors
288          */
289         rxIdx = 0;
290         txIdx = 0;
291
292         if (!rtx) {
293 #ifdef CFG_ALLOC_DPRAM
294             rtx = (RTXBD *) (immr->im_cpm.cp_dpmem + dpram_alloc_align(sizeof(RTXBD),8));
295 #else
296             rtx = (RTXBD *) (immr->im_cpm.cp_dpmem + CPM_FEC_BASE);
297 #endif
298         }
299         /*
300          * Setup Receiver Buffer Descriptors (13.14.24.18)
301          * Settings:
302          *     Empty, Wrap
303          */
304         for (i = 0; i < PKTBUFSRX; i++) {
305                 rtx->rxbd[i].cbd_sc      = BD_ENET_RX_EMPTY;
306                 rtx->rxbd[i].cbd_datlen  = 0;   /* Reset */
307                 rtx->rxbd[i].cbd_bufaddr = (uint) NetRxPackets[i];
308         }
309         rtx->rxbd[PKTBUFSRX - 1].cbd_sc |= BD_ENET_RX_WRAP;
310
311         /*
312          * Setup Ethernet Transmitter Buffer Descriptors (13.14.24.19)
313          * Settings:
314          *    Last, Tx CRC
315          */
316         for (i = 0; i < TX_BUF_CNT; i++) {
317                 rtx->txbd[i].cbd_sc      = BD_ENET_TX_LAST | BD_ENET_TX_TC;
318                 rtx->txbd[i].cbd_datlen  = 0;   /* Reset */
319                 rtx->txbd[i].cbd_bufaddr = (uint) (&txbuf[0]);
320         }
321         rtx->txbd[TX_BUF_CNT - 1].cbd_sc |= BD_ENET_TX_WRAP;
322
323         /* Set receive and transmit descriptor base
324          */
325         fecp->fec_r_des_start = (unsigned int) (&rtx->rxbd[0]);
326         fecp->fec_x_des_start = (unsigned int) (&rtx->txbd[0]);
327
328         /* Enable MII mode
329          */
330 #if 0   /* Full duplex mode */
331         fecp->fec_r_cntrl = FEC_RCNTRL_MII_MODE;
332         fecp->fec_x_cntrl = FEC_TCNTRL_FDEN;
333 #else   /* Half duplex mode */
334         fecp->fec_r_cntrl = FEC_RCNTRL_MII_MODE | FEC_RCNTRL_DRT;
335         fecp->fec_x_cntrl = 0;
336 #endif
337
338         /* Enable big endian and don't care about SDMA FC.
339          */
340         fecp->fec_fun_code = 0x78000000;
341
342         /* Set MII speed to 2.5 MHz or slightly below.
343          * According to the MPC860T (Rev. D) Fast ethernet controller user
344          * manual (6.2.14),
345          * the MII management interface clock must be less than or equal
346          * to 2.5 MHz.
347          * This MDC frequency is equal to system clock / (2 * MII_SPEED).
348          * Then MII_SPEED = system_clock / 2 * 2,5 Mhz.
349          */
350         fecp->fec_mii_speed = ((bd->bi_busfreq + 4999999) / 5000000) << 1;
351
352 #if !defined(CONFIG_ICU862) && !defined(CONFIG_IAD210)
353         /* Configure all of port D for MII.
354          */
355         immr->im_ioport.iop_pdpar = 0x1fff;
356
357         /* Bits moved from Rev. D onward */
358         if ((get_immr (0) & 0xffff) < 0x0501) {
359                 immr->im_ioport.iop_pddir = 0x1c58;     /* Pre rev. D */
360         } else {
361                 immr->im_ioport.iop_pddir = 0x1fff;     /* Rev. D and later */
362         }
363 #else
364         /* Configure port A for MII.
365         */
366
367 #if defined(CONFIG_ICU862) && defined(CFG_DISCOVER_PHY)
368
369         /* On the ICU862 board the MII-MDC pin is routed to PD8 pin
370          * of CPU, so for this board we need to configure Utopia and
371          * enable PD8 to MII-MDC function */
372         immr->im_ioport.iop_pdpar |= 0x4080;
373 #endif
374
375         /* Has Utopia been configured? */
376         if (immr->im_ioport.iop_pdpar & (0x8000 >> 1)) {
377                 /*
378                  * YES - Use MUXED mode for UTOPIA bus.
379                  * This frees Port A for use by MII (see 862UM table 41-6).
380                  */
381                 immr->im_ioport.utmode &= ~0x80;
382         } else {
383                 /*
384                  * NO - set SPLIT mode for UTOPIA bus.
385                  *
386                  * This doesn't really effect UTOPIA (which isn't
387                  * enabled anyway) but just tells the 862
388                  * to use port A for MII (see 862UM table 41-6).
389                  */
390                 immr->im_ioport.utmode |= 0x80;
391         }
392 #endif  /* !defined(CONFIG_ICU862) */
393
394         rxIdx = 0;
395         txIdx = 0;
396
397         /* Now enable the transmit and receive processing
398          */
399         fecp->fec_ecntrl = FEC_ECNTRL_PINMUX | FEC_ECNTRL_ETHER_EN;
400
401 #ifdef CFG_DISCOVER_PHY
402         /* wait for the PHY to wake up after reset
403          */
404         mii_discover_phy();
405 #endif
406
407         /* And last, try to fill Rx Buffer Descriptors */
408         fecp->fec_r_des_active = 0x01000000;    /* Descriptor polling active    */
409
410         return 1;
411 }
412
413
414
415 static void fec_halt(struct eth_device* dev)
416 {
417 #if 0
418     volatile immap_t *immr = (immap_t *)CFG_IMMR;
419     immr->im_cpm.cp_scc[SCC_ENET].scc_gsmrl &= ~(SCC_GSMRL_ENR | SCC_GSMRL_ENT);
420 #endif
421 }
422
423 #if 0
424 void restart(void)
425 {
426    volatile immap_t *immr = (immap_t *)CFG_IMMR;
427    immr->im_cpm.cp_scc[SCC_ENET].scc_gsmrl |= (SCC_GSMRL_ENR | SCC_GSMRL_ENT);
428 }
429 #endif
430
431 #if defined(CFG_DISCOVER_PHY) || (CONFIG_COMMANDS & CFG_CMD_MII)
432
433 static  int     phyaddr = -1;   /* didn't find a PHY yet */
434 static  uint    phytype;
435
436 /* Make MII read/write commands for the FEC.
437 */
438
439 #define mk_mii_read(ADDR, REG)  (0x60020000 | ((ADDR << 23) | \
440                                                 (REG & 0x1f) << 18))
441
442 #define mk_mii_write(ADDR, REG, VAL)    (0x50020000 | ((ADDR << 23) | \
443                                                 (REG & 0x1f) << 18) | \
444                                                 (VAL & 0xffff))
445
446 /* Interrupt events/masks.
447 */
448 #define FEC_ENET_HBERR  ((uint)0x80000000)      /* Heartbeat error */
449 #define FEC_ENET_BABR   ((uint)0x40000000)      /* Babbling receiver */
450 #define FEC_ENET_BABT   ((uint)0x20000000)      /* Babbling transmitter */
451 #define FEC_ENET_GRA    ((uint)0x10000000)      /* Graceful stop complete */
452 #define FEC_ENET_TXF    ((uint)0x08000000)      /* Full frame transmitted */
453 #define FEC_ENET_TXB    ((uint)0x04000000)      /* A buffer was transmitted */
454 #define FEC_ENET_RXF    ((uint)0x02000000)      /* Full frame received */
455 #define FEC_ENET_RXB    ((uint)0x01000000)      /* A buffer was received */
456 #define FEC_ENET_MII    ((uint)0x00800000)      /* MII interrupt */
457 #define FEC_ENET_EBERR  ((uint)0x00400000)      /* SDMA bus error */
458
459 /* PHY identification
460  */
461 #define PHY_ID_LXT970           0x78100000      /* LXT970 */
462 #define PHY_ID_LXT971           0x001378e0      /* LXT971 and 972 */
463 #define PHY_ID_82555            0x02a80150      /* Intel 82555 */
464 #define PHY_ID_QS6612           0x01814400      /* QS6612 */
465 #define PHY_ID_AMD79C784        0x00225610      /* AMD 79C784 */
466 #define PHY_ID_LSI80225         0x0016f870      /* LSI 80225 */
467 #define PHY_ID_LSI80225B        0x0016f880      /* LSI 80225/B */
468
469
470 /* send command to phy using mii, wait for result */
471 static uint
472 mii_send(uint mii_cmd)
473 {
474         uint mii_reply;
475         volatile fec_t  *ep;
476
477         ep = &(((immap_t *)CFG_IMMR)->im_cpm.cp_fec);
478
479         ep->fec_mii_data = mii_cmd;     /* command to phy */
480
481         /* wait for mii complete */
482         while (!(ep->fec_ievent & FEC_ENET_MII))
483                 ;       /* spin until done */
484         mii_reply = ep->fec_mii_data;           /* result from phy */
485         ep->fec_ievent = FEC_ENET_MII;          /* clear MII complete */
486 #if 0
487         printf("%s[%d] %s: sent=0x%8.8x, reply=0x%8.8x\n",
488                 __FILE__,__LINE__,__FUNCTION__,mii_cmd,mii_reply);
489 #endif
490         return (mii_reply & 0xffff);            /* data read from phy */
491 }
492 #endif /* CFG_DISCOVER_PHY || (CONFIG_COMMANDS & CFG_CMD_MII) */
493
494 #if defined(CFG_DISCOVER_PHY)
495 static void
496 mii_discover_phy(void)
497 {
498 #define MAX_PHY_PASSES 11
499         uint phyno;
500         int  pass;
501
502         phyaddr = -1;   /* didn't find a PHY yet */
503         for (pass = 1; pass <= MAX_PHY_PASSES && phyaddr < 0; ++pass) {
504                 if (pass > 1) {
505                         /* PHY may need more time to recover from reset.
506                          * The LXT970 needs 50ms typical, no maximum is
507                          * specified, so wait 10ms before try again.
508                          * With 11 passes this gives it 100ms to wake up.
509                          */
510                         udelay(10000);  /* wait 10ms */
511                 }
512                 for (phyno = 0; phyno < 32 && phyaddr < 0; ++phyno) {
513                         phytype = mii_send(mk_mii_read(phyno, PHY_PHYIDR1));
514 #ifdef ET_DEBUG
515                         printf("PHY type 0x%x pass %d type ", phytype, pass);
516 #endif
517                         if (phytype != 0xffff) {
518                                 phyaddr = phyno;
519                                 phytype <<= 16;
520                                 phytype |= mii_send(mk_mii_read(phyno,
521                                                                 PHY_PHYIDR2));
522
523 #ifdef ET_DEBUG
524                                 printf("PHY @ 0x%x pass %d type ",phyno,pass);
525                                 switch (phytype & 0xfffffff0) {
526                                 case PHY_ID_LXT970:
527                                         printf("LXT970\n");
528                                         break;
529                                 case PHY_ID_LXT971:
530                                         printf("LXT971\n");
531                                         break;
532                                 case PHY_ID_82555:
533                                         printf("82555\n");
534                                         break;
535                                 case PHY_ID_QS6612:
536                                         printf("QS6612\n");
537                                         break;
538                                 case PHY_ID_AMD79C784:
539                                         printf("AMD79C784\n");
540                                         break;
541                                 case PHY_ID_LSI80225B:
542                                         printf("LSI L80225/B\n");
543                                         break;
544                                 default:
545                                         printf("0x%08x\n", phytype);
546                                         break;
547                                 }
548 #endif
549                         }
550                 }
551         }
552         if (phyaddr < 0) {
553                 printf("No PHY device found.\n");
554         }
555 }
556 #endif  /* CFG_DISCOVER_PHY */
557
558 #if (CONFIG_COMMANDS & CFG_CMD_MII) && !defined(CONFIG_BITBANGMII)
559
560 static int mii_init_done = 0;
561
562 /****************************************************************************
563  * mii_init -- Initialize the MII for MII command without ethernet
564  * This function is a subset of eth_init
565  ****************************************************************************
566  */
567 void mii_init (void)
568 {
569         DECLARE_GLOBAL_DATA_PTR;
570         bd_t *bd = gd->bd;
571
572         volatile immap_t *immr = (immap_t *) CFG_IMMR;
573         volatile fec_t *fecp = &(immr->im_cpm.cp_fec);
574         int i;
575
576         if (mii_init_done != 0) {
577                 return;
578         }
579
580         /* Whack a reset.
581          * A delay is required between a reset of the FEC block and
582          * initialization of other FEC registers because the reset takes
583          * some time to complete. If you don't delay, subsequent writes
584          * to FEC registers might get killed by the reset routine which is
585          * still in progress.
586          */
587
588         fecp->fec_ecntrl = FEC_ECNTRL_PINMUX | FEC_ECNTRL_RESET;
589         for (i = 0;
590              (fecp->fec_ecntrl & FEC_ECNTRL_RESET) && (i < FEC_RESET_DELAY);
591              ++i) {
592                 udelay (1);
593         }
594         if (i == FEC_RESET_DELAY) {
595                 printf ("FEC_RESET_DELAY timeout\n");
596                 return;
597         }
598
599         /* We use strictly polling mode only
600          */
601         fecp->fec_imask = 0;
602
603         /* Clear any pending interrupt
604          */
605         fecp->fec_ievent = 0xffc0;
606
607         /* Set MII speed to 2.5 MHz or slightly below.
608          * According to the MPC860T (Rev. D) Fast ethernet controller user
609          * manual (6.2.14),
610          * the MII management interface clock must be less than or equal
611          * to 2.5 MHz.
612          * This MDC frequency is equal to system clock / (2 * MII_SPEED).
613          * Then MII_SPEED = system_clock / 2 * 2,5 Mhz.
614          */
615         fecp->fec_mii_speed = ((bd->bi_busfreq + 4999999) / 5000000) << 1;
616
617 #if !defined(CONFIG_ICU862) && !defined(CONFIG_IAD210)
618         /* Configure all of port D for MII.
619          */
620         immr->im_ioport.iop_pdpar = 0x1fff;
621
622         /* Bits moved from Rev. D onward */
623         if ((get_immr (0) & 0xffff) < 0x0501) {
624                 immr->im_ioport.iop_pddir = 0x1c58;     /* Pre rev. D */
625         } else {
626                 immr->im_ioport.iop_pddir = 0x1fff;     /* Rev. D and later */
627         }
628 #else
629         /* Configure port A for MII.
630         */
631
632 #if defined(CONFIG_ICU862)
633
634         /* On the ICU862 board the MII-MDC pin is routed to PD8 pin
635          * of CPU, so for this board we need to configure Utopia and
636          * enable PD8 to MII-MDC function */
637         immr->im_ioport.iop_pdpar |= 0x4080;
638 #endif
639
640         /* Has Utopia been configured? */
641         if (immr->im_ioport.iop_pdpar & (0x8000 >> 1)) {
642                 /*
643                  * YES - Use MUXED mode for UTOPIA bus.
644                  * This frees Port A for use by MII (see 862UM table 41-6).
645                  */
646                 immr->im_ioport.utmode &= ~0x80;
647         } else {
648                 /*
649                  * NO - set SPLIT mode for UTOPIA bus.
650                  *
651                  * This doesn't really effect UTOPIA (which isn't
652                  * enabled anyway) but just tells the 862
653                  * to use port A for MII (see 862UM table 41-6).
654                  */
655                 immr->im_ioport.utmode |= 0x80;
656         }
657 #endif  /* !defined(CONFIG_ICU862) */
658         /* Now enable the transmit and receive processing
659          */
660         fecp->fec_ecntrl = FEC_ECNTRL_PINMUX | FEC_ECNTRL_ETHER_EN;
661
662         mii_init_done = 1;
663 }
664 /*****************************************************************************
665  * Read and write a MII PHY register, routines used by MII Utilities
666  *
667  * FIXME: These routines are expected to return 0 on success, but mii_send
668  *        does _not_ return an error code. Maybe 0xFFFF means error, i.e.
669  *        no PHY connected...
670  *        For now always return 0.
671  * FIXME: These routines only work after calling eth_init() at least once!
672  *        Otherwise they hang in mii_send() !!! Sorry!
673  *****************************************************************************/
674
675 int miiphy_read(unsigned char addr, unsigned char  reg, unsigned short *value)
676 {
677         short rdreg;    /* register working value */
678
679 #ifdef MII_DEBUG
680         printf ("miiphy_read(0x%x) @ 0x%x = ", reg, addr);
681 #endif
682         rdreg = mii_send(mk_mii_read(addr, reg));
683
684         *value = rdreg;
685
686 #ifdef MII_DEBUG
687         printf ("0x%04x\n", *value);
688 #endif
689
690         return 0;
691 }
692
693 int miiphy_write(unsigned char  addr, unsigned char  reg, unsigned short value)
694 {
695         short rdreg;    /* register working value */
696
697 #ifdef MII_DEBUG
698         printf ("miiphy_write(0x%x) @ 0x%x = ", reg, addr);
699 #endif
700
701         rdreg = mii_send(mk_mii_write(addr, reg, value));
702
703 #ifdef MII_DEBUG
704         printf ("0x%04x\n", value);
705 #endif
706
707         return 0;
708 }
709 #endif /* (CONFIG_COMMANDS & CFG_CMD_MII) && !defined(CONFIG_BITBANGMII)*/
710
711 #endif  /* CFG_CMD_NET, FEC_ENET */