1 /*-----------------------------------------------------------------------------+
3 * This source code has been made available to you by IBM on an AS-IS
4 * basis. Anyone receiving this source is licensed under IBM
5 * copyrights to use it in any way he or she deems fit, including
6 * copying it, modifying it, compiling it, and redistributing it either
7 * with or without modifications. No license under IBM patents or
8 * patent applications is to be implied by the copyright license.
10 * Any user of this software should understand that IBM cannot provide
11 * technical support for this software and will not be responsible for
12 * any consequences resulting from the use of this software.
14 * Any person who transfers this source code or any derivative work
15 * must include the IBM copyright notice, this paragraph, and the
16 * preceding two paragraphs in the transferred software.
18 * COPYRIGHT I B M CORPORATION 1995
19 * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M
20 *-----------------------------------------------------------------------------*/
21 /*-----------------------------------------------------------------------------+
23 * File Name: enetemac.c
25 * Function: Device driver for the ethernet EMAC3 macro on the 405GP.
31 * Date Description of Change BY
32 * --------- --------------------- ---
33 * 05-May-99 Created MKW
34 * 27-Jun-99 Clean up JWB
35 * 16-Jul-99 Added MAL error recovery and better IP packet handling MKW
36 * 29-Jul-99 Added Full duplex support MKW
37 * 06-Aug-99 Changed names for Mal CR reg MKW
38 * 23-Aug-99 Turned off SYE when running at 10Mbs MKW
39 * 24-Aug-99 Marked descriptor empty after call_xlc MKW
40 * 07-Sep-99 Set MAL RX buffer size reg to ENET_MAX_MTU_ALIGNED / 16 MCG
41 * to avoid chaining maximum sized packets. Push starting
42 * RX descriptor address up to the next cache line boundary.
43 * 16-Jan-00 Added support for booting with IP of 0x0 MKW
44 * 15-Mar-00 Updated enetInit() to enable broadcast addresses in the
45 * EMAC_RXM register. JWB
46 * 12-Mar-01 anne-sophie.harnois@nextream.fr
47 * - Variables are compatible with those already defined in
49 * - Receive buffer descriptor ring is used to send buffers
51 * - Info print about send/received/handled packet number if
52 * INFO_405_ENET is set
53 * 17-Apr-01 stefan.roese@esd-electronics.com
54 * - MAL reset in "eth_halt" included
55 * - Enet speed and duplex output now in one line
56 * 08-May-01 stefan.roese@esd-electronics.com
57 * - MAL error handling added (eth_init called again)
58 * 13-Nov-01 stefan.roese@esd-electronics.com
59 * - Set IST bit in EMAC_M1 reg upon 100MBit or full duplex
60 * 04-Jan-02 stefan.roese@esd-electronics.com
61 * - Wait for PHY auto negotiation to complete added
62 * 06-Feb-02 stefan.roese@esd-electronics.com
63 * - Bug fixed in waiting for auto negotiation to complete
64 * 26-Feb-02 stefan.roese@esd-electronics.com
65 * - rx and tx buffer descriptors now allocated (no fixed address
67 * 17-Jun-02 stefan.roese@esd-electronics.com
68 * - MAL error debug printf 'M' removed (rx de interrupt may
69 * occur upon many incoming packets with only 4 rx buffers).
70 *-----------------------------------------------------------------------------*
71 * 17-Nov-03 travis.sawyer@sandburst.com
72 * - ported from 405gp_enet.c to utilized upto 4 EMAC ports
73 * in the 440GX. This port should work with the 440GP
75 * 15-Aug-05 sr@denx.de
76 * - merged 405gp_enet.c and 440gx_enet.c to generic 4xx_enet.c
77 now handling all 4xx cpu's.
78 *-----------------------------------------------------------------------------*/
83 #include <asm/processor.h>
86 #include <ppc4xx_enet.h>
93 * Only compile for platform with AMCC EMAC ethernet controller and
94 * network support enabled.
95 * Remark: CONFIG_405 describes Xilinx PPC405 FPGA without EMAC controller!
97 #if (CONFIG_COMMANDS & CFG_CMD_NET) && !defined(CONFIG_405) && !defined(CONFIG_IOP480)
99 #if !(defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII))
100 #error "CONFIG_MII has to be defined!"
103 #define EMAC_RESET_TIMEOUT 1000 /* 1000 ms reset timeout */
104 #define PHY_AUTONEGOTIATE_TIMEOUT 4000 /* 4000 ms autonegotiate timeout */
106 /* Ethernet Transmit and Receive Buffers */
108 * In the same way ENET_MAX_MTU and ENET_MAX_MTU_ALIGNED are set from
109 * PKTSIZE and PKTSIZE_ALIGN (include/net.h)
111 #define ENET_MAX_MTU PKTSIZE
112 #define ENET_MAX_MTU_ALIGNED PKTSIZE_ALIGN
114 /* define the number of channels implemented */
115 #define EMAC_RXCHL EMAC_NUM_DEV
116 #define EMAC_TXCHL EMAC_NUM_DEV
118 /*-----------------------------------------------------------------------------+
119 * Defines for MAL/EMAC interrupt conditions as reported in the UIC (Universal
120 * Interrupt Controller).
121 *-----------------------------------------------------------------------------*/
122 #define MAL_UIC_ERR ( UIC_MAL_SERR | UIC_MAL_TXDE | UIC_MAL_RXDE)
123 #define MAL_UIC_DEF (UIC_MAL_RXEOB | MAL_UIC_ERR)
124 #define EMAC_UIC_DEF UIC_ENET
125 #define EMAC_UIC_DEF1 UIC_ENET1
126 #define SEL_UIC_DEF(p) (p ? UIC_ENET1 : UIC_ENET )
130 #define BI_PHYMODE_NONE 0
131 #define BI_PHYMODE_ZMII 1
132 #define BI_PHYMODE_RGMII 2
135 /*-----------------------------------------------------------------------------+
136 * Global variables. TX and RX descriptors and buffers.
137 *-----------------------------------------------------------------------------*/
139 static uint32_t mal_ier;
141 #if !defined(CONFIG_NET_MULTI)
142 struct eth_device *emac0_dev;
146 /*-----------------------------------------------------------------------------+
147 * Prototypes and externals.
148 *-----------------------------------------------------------------------------*/
149 static void enet_rcv (struct eth_device *dev, unsigned long malisr);
151 int enetInt (struct eth_device *dev);
152 static void mal_err (struct eth_device *dev, unsigned long isr,
153 unsigned long uic, unsigned long maldef,
154 unsigned long mal_errr);
155 static void emac_err (struct eth_device *dev, unsigned long isr);
158 /*-----------------------------------------------------------------------------+
160 | Disable MAL channel, and EMACn
161 +-----------------------------------------------------------------------------*/
162 static void ppc_4xx_eth_halt (struct eth_device *dev)
164 EMAC_4XX_HW_PST hw_p = dev->priv;
165 uint32_t failsafe = 10000;
167 out32 (EMAC_IER + hw_p->hw_addr, 0x00000000); /* disable emac interrupts */
169 /* 1st reset MAL channel */
170 /* Note: writing a 0 to a channel has no effect */
171 #if defined(CONFIG_405EP) || defined(CONFIG_440EP) || defined(CONFIG_440GR)
172 mtdcr (maltxcarr, (MAL_CR_MMSR >> (hw_p->devnum * 2)));
174 mtdcr (maltxcarr, (MAL_CR_MMSR >> hw_p->devnum));
176 mtdcr (malrxcarr, (MAL_CR_MMSR >> hw_p->devnum));
179 while (mfdcr (malrxcasr) & (MAL_CR_MMSR >> hw_p->devnum)) {
180 udelay (1000); /* Delay 1 MS so as not to hammer the register */
187 out32 (EMAC_M0 + hw_p->hw_addr, EMAC_M0_SRST);
189 hw_p->print_speed = 1; /* print speed message again next time */
194 extern int phy_setup_aneg (unsigned char addr);
195 extern int miiphy_reset (unsigned char addr);
197 #if defined (CONFIG_440GX)
198 int ppc_4xx_eth_setup_bridge(int devnum, bd_t * bis)
201 unsigned long zmiifer;
202 unsigned long rmiifer;
204 mfsdr(sdr_pfc1, pfc1);
205 pfc1 = SDR0_PFC1_EPS_DECODE(pfc1);
212 zmiifer |= ZMII_FER_RMII << ZMII_FER_V(0);
213 zmiifer |= ZMII_FER_RMII << ZMII_FER_V(1);
214 zmiifer |= ZMII_FER_RMII << ZMII_FER_V(2);
215 zmiifer |= ZMII_FER_RMII << ZMII_FER_V(3);
216 bis->bi_phymode[0] = BI_PHYMODE_ZMII;
217 bis->bi_phymode[1] = BI_PHYMODE_ZMII;
218 bis->bi_phymode[2] = BI_PHYMODE_ZMII;
219 bis->bi_phymode[3] = BI_PHYMODE_ZMII;
222 zmiifer = ZMII_FER_SMII << ZMII_FER_V(0);
223 zmiifer = ZMII_FER_SMII << ZMII_FER_V(1);
224 zmiifer = ZMII_FER_SMII << ZMII_FER_V(2);
225 zmiifer = ZMII_FER_SMII << ZMII_FER_V(3);
226 bis->bi_phymode[0] = BI_PHYMODE_ZMII;
227 bis->bi_phymode[1] = BI_PHYMODE_ZMII;
228 bis->bi_phymode[2] = BI_PHYMODE_ZMII;
229 bis->bi_phymode[3] = BI_PHYMODE_ZMII;
232 zmiifer |= ZMII_FER_RMII << ZMII_FER_V(0);
233 rmiifer |= RGMII_FER_RGMII << RGMII_FER_V(2);
234 bis->bi_phymode[0] = BI_PHYMODE_ZMII;
235 bis->bi_phymode[1] = BI_PHYMODE_NONE;
236 bis->bi_phymode[2] = BI_PHYMODE_RGMII;
237 bis->bi_phymode[3] = BI_PHYMODE_NONE;
240 zmiifer |= ZMII_FER_SMII << ZMII_FER_V(0);
241 zmiifer |= ZMII_FER_SMII << ZMII_FER_V(1);
242 rmiifer |= RGMII_FER_RGMII << RGMII_FER_V (2);
243 rmiifer |= RGMII_FER_RGMII << RGMII_FER_V (3);
244 bis->bi_phymode[0] = BI_PHYMODE_ZMII;
245 bis->bi_phymode[1] = BI_PHYMODE_ZMII;
246 bis->bi_phymode[2] = BI_PHYMODE_RGMII;
247 bis->bi_phymode[3] = BI_PHYMODE_RGMII;
250 zmiifer |= ZMII_FER_SMII << ZMII_FER_V (0);
251 zmiifer |= ZMII_FER_SMII << ZMII_FER_V (1);
252 zmiifer |= ZMII_FER_SMII << ZMII_FER_V (2);
253 rmiifer |= RGMII_FER_RGMII << RGMII_FER_V(3);
254 bis->bi_phymode[0] = BI_PHYMODE_ZMII;
255 bis->bi_phymode[1] = BI_PHYMODE_ZMII;
256 bis->bi_phymode[2] = BI_PHYMODE_ZMII;
257 bis->bi_phymode[3] = BI_PHYMODE_RGMII;
260 zmiifer |= ZMII_FER_SMII << ZMII_FER_V (0);
261 zmiifer |= ZMII_FER_SMII << ZMII_FER_V (1);
262 rmiifer |= RGMII_FER_RGMII << RGMII_FER_V(2);
263 bis->bi_phymode[0] = BI_PHYMODE_ZMII;
264 bis->bi_phymode[1] = BI_PHYMODE_ZMII;
265 bis->bi_phymode[2] = BI_PHYMODE_RGMII;
269 zmiifer = ZMII_FER_MII << ZMII_FER_V(devnum);
271 bis->bi_phymode[0] = BI_PHYMODE_ZMII;
272 bis->bi_phymode[1] = BI_PHYMODE_ZMII;
273 bis->bi_phymode[2] = BI_PHYMODE_ZMII;
274 bis->bi_phymode[3] = BI_PHYMODE_ZMII;
278 /* Ensure we setup mdio for this devnum and ONLY this devnum */
279 zmiifer |= (ZMII_FER_MDI) << ZMII_FER_V(devnum);
281 out32 (ZMII_FER, zmiifer);
282 out32 (RGMII_FER, rmiifer);
289 static int ppc_4xx_eth_init (struct eth_device *dev, bd_t * bis)
292 unsigned long reg = 0;
295 unsigned long duplex;
296 unsigned long failsafe;
298 unsigned short devnum;
299 unsigned short reg_short;
300 #if defined(CONFIG_440GX)
305 EMAC_4XX_HW_PST hw_p = dev->priv;
307 /* before doing anything, figure out if we have a MAC address */
309 if (memcmp (dev->enetaddr, "\0\0\0\0\0\0", 6) == 0)
312 #if defined(CONFIG_440GX)
313 /* Need to get the OPB frequency so we can access the PHY */
314 get_sys_info (&sysinfo);
318 mtmsr (msr & ~(MSR_EE)); /* disable interrupts */
320 devnum = hw_p->devnum;
325 * hw_p->stats.pkts_handled <= hw_p->stats.pkts_rx <= hw_p->stats.pkts_handled+PKTBUFSRX
326 * In the most cases hw_p->stats.pkts_handled = hw_p->stats.pkts_rx, but it
327 * is possible that new packets (without relationship with
328 * current transfer) have got the time to arrived before
329 * netloop calls eth_halt
331 printf ("About preceeding transfer (eth%d):\n"
332 "- Sent packet number %d\n"
333 "- Received packet number %d\n"
334 "- Handled packet number %d\n",
337 hw_p->stats.pkts_rx, hw_p->stats.pkts_handled);
339 hw_p->stats.pkts_tx = 0;
340 hw_p->stats.pkts_rx = 0;
341 hw_p->stats.pkts_handled = 0;
344 hw_p->tx_err_index = 0; /* Transmit Error Index for tx_err_log */
345 hw_p->rx_err_index = 0; /* Receive Error Index for rx_err_log */
347 hw_p->rx_slot = 0; /* MAL Receive Slot */
348 hw_p->rx_i_index = 0; /* Receive Interrupt Queue Index */
349 hw_p->rx_u_index = 0; /* Receive User Queue Index */
351 hw_p->tx_slot = 0; /* MAL Transmit Slot */
352 hw_p->tx_i_index = 0; /* Transmit Interrupt Queue Index */
353 hw_p->tx_u_index = 0; /* Transmit User Queue Index */
355 #if defined(CONFIG_440)
357 /* NOTE: 440GX spec states that mode is mutually exclusive */
358 /* NOTE: Therefore, disable all other EMACS, since we handle */
359 /* NOTE: only one emac at a time */
364 #if defined(CONFIG_440EP) || defined(CONFIG_440GR)
365 out32 (ZMII_FER, (ZMII_FER_RMII | ZMII_FER_MDI) << ZMII_FER_V (devnum));
366 #elif defined(CONFIG_440GX)
367 ethgroup = ppc_4xx_eth_setup_bridge(devnum, bis);
368 #elif defined(CONFIG_440GP)
370 out32 (ZMII_FER, ZMII_RMII | ZMII_MDI0);
372 if ((devnum == 0) || (devnum == 1)) {
373 out32 (ZMII_FER, (ZMII_FER_SMII | ZMII_FER_MDI) << ZMII_FER_V (devnum));
375 else { /* ((devnum == 2) || (devnum == 3)) */
376 out32 (ZMII_FER, ZMII_FER_MDI << ZMII_FER_V (devnum));
377 out32 (RGMII_FER, ((RGMII_FER_RGMII << RGMII_FER_V (2)) |
378 (RGMII_FER_RGMII << RGMII_FER_V (3))));
382 out32 (ZMII_SSR, ZMII_SSR_SP << ZMII_SSR_V(devnum));
383 #endif /* defined(CONFIG_440) */
385 __asm__ volatile ("eieio");
387 /* reset emac so we have access to the phy */
389 out32 (EMAC_M0 + hw_p->hw_addr, EMAC_M0_SRST);
390 __asm__ volatile ("eieio");
393 while ((in32 (EMAC_M0 + hw_p->hw_addr) & (EMAC_M0_SRST)) && failsafe) {
398 #if defined(CONFIG_440GX)
399 /* Whack the M1 register */
401 mode_reg &= ~0x00000038;
402 if (sysinfo.freqOPB <= 50000000);
403 else if (sysinfo.freqOPB <= 66666667)
404 mode_reg |= EMAC_M1_OBCI_66;
405 else if (sysinfo.freqOPB <= 83333333)
406 mode_reg |= EMAC_M1_OBCI_83;
407 else if (sysinfo.freqOPB <= 100000000)
408 mode_reg |= EMAC_M1_OBCI_100;
410 mode_reg |= EMAC_M1_OBCI_GT100;
412 out32 (EMAC_M1 + hw_p->hw_addr, mode_reg);
413 #endif /* defined(CONFIG_440GX) */
415 /* wait for PHY to complete auto negotiation */
417 #ifndef CONFIG_CS8952_PHY
420 reg = CONFIG_PHY_ADDR;
422 #if defined (CONFIG_PHY1_ADDR)
424 reg = CONFIG_PHY1_ADDR;
427 #if defined (CONFIG_440GX)
429 reg = CONFIG_PHY2_ADDR;
432 reg = CONFIG_PHY3_ADDR;
436 reg = CONFIG_PHY_ADDR;
440 bis->bi_phynum[devnum] = reg;
442 #if defined(CONFIG_PHY_RESET)
444 * Reset the phy, only if its the first time through
445 * otherwise, just check the speeds & feeds
447 if (hw_p->first_init == 0) {
450 #if defined(CONFIG_440GX)
451 #if defined(CONFIG_CIS8201_PHY)
453 * Cicada 8201 PHY needs to have an extended register whacked
456 if ( ((devnum == 2) || (devnum ==3)) && (4 == ethgroup) ) {
457 #if defined(CONFIG_CIS8201_SHORT_ETCH)
458 miiphy_write (reg, 23, 0x1300);
460 miiphy_write (reg, 23, 0x1000);
463 * Vitesse VSC8201/Cicada CIS8201 errata:
464 * Interoperability problem with Intel 82547EI phys
465 * This work around (provided by Vitesse) changes
466 * the default timer convergence from 8ms to 12ms
468 miiphy_write (reg, 0x1f, 0x2a30);
469 miiphy_write (reg, 0x08, 0x0200);
470 miiphy_write (reg, 0x1f, 0x52b5);
471 miiphy_write (reg, 0x02, 0x0004);
472 miiphy_write (reg, 0x01, 0x0671);
473 miiphy_write (reg, 0x00, 0x8fae);
474 miiphy_write (reg, 0x1f, 0x2a30);
475 miiphy_write (reg, 0x08, 0x0000);
476 miiphy_write (reg, 0x1f, 0x0000);
477 /* end Vitesse/Cicada errata */
481 /* Start/Restart autonegotiation */
482 phy_setup_aneg (reg);
485 #endif /* defined(CONFIG_PHY_RESET) */
487 miiphy_read (reg, PHY_BMSR, ®_short);
490 * Wait if PHY is capable of autonegotiation and autonegotiation is not complete
492 if ((reg_short & PHY_BMSR_AUTN_ABLE)
493 && !(reg_short & PHY_BMSR_AUTN_COMP)) {
494 puts ("Waiting for PHY auto negotiation to complete");
496 while (!(reg_short & PHY_BMSR_AUTN_COMP)) {
500 if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
501 puts (" TIMEOUT !\n");
505 if ((i++ % 1000) == 0) {
508 udelay (1000); /* 1 ms */
509 miiphy_read (reg, PHY_BMSR, ®_short);
513 udelay (500000); /* another 500 ms (results in faster booting) */
515 #endif /* #ifndef CONFIG_CS8952_PHY */
517 speed = miiphy_speed (reg);
518 duplex = miiphy_duplex (reg);
520 if (hw_p->print_speed) {
521 hw_p->print_speed = 0;
522 printf ("ENET Speed is %d Mbps - %s duplex connection\n",
523 (int) speed, (duplex == HALF) ? "HALF" : "FULL");
526 #if defined(CONFIG_440)
527 #if defined(CONFIG_440EP) || defined(CONFIG_440GR)
530 reg = (reg & ~SDR0_MFR_ZMII_MODE_MASK) | SDR0_MFR_ZMII_MODE_RMII_100M;
532 reg = (reg & ~SDR0_MFR_ZMII_MODE_MASK) | SDR0_MFR_ZMII_MODE_RMII_10M;
537 /* Set ZMII/RGMII speed according to the phy link speed */
538 reg = in32 (ZMII_SSR);
539 if ( (speed == 100) || (speed == 1000) )
540 out32 (ZMII_SSR, reg | (ZMII_SSR_SP << ZMII_SSR_V (devnum)));
542 out32 (ZMII_SSR, reg & (~(ZMII_SSR_SP << ZMII_SSR_V (devnum))));
544 if ((devnum == 2) || (devnum == 3)) {
546 reg = (RGMII_SSR_SP_1000MBPS << RGMII_SSR_V (devnum));
547 else if (speed == 100)
548 reg = (RGMII_SSR_SP_100MBPS << RGMII_SSR_V (devnum));
550 reg = (RGMII_SSR_SP_10MBPS << RGMII_SSR_V (devnum));
552 out32 (RGMII_SSR, reg);
554 #endif /* defined(CONFIG_440) */
556 /* set the Mal configuration reg */
557 #if defined(CONFIG_440GX)
558 mtdcr (malmcr, MAL_CR_PLBB | MAL_CR_OPBBL | MAL_CR_LEA |
559 MAL_CR_PLBLT_DEFAULT | MAL_CR_EOPIE | 0x00330000);
561 mtdcr (malmcr, MAL_CR_PLBB | MAL_CR_OPBBL | MAL_CR_LEA | MAL_CR_PLBLT_DEFAULT);
562 /* Errata 1.12: MAL_1 -- Disable MAL bursting */
563 if (get_pvr() == PVR_440GP_RB) {
564 mtdcr (malmcr, mfdcr(malmcr) & ~MAL_CR_PLBB);
568 /* Free "old" buffers */
569 if (hw_p->alloc_tx_buf)
570 free (hw_p->alloc_tx_buf);
571 if (hw_p->alloc_rx_buf)
572 free (hw_p->alloc_rx_buf);
575 * Malloc MAL buffer desciptors, make sure they are
576 * aligned on cache line boundary size
577 * (401/403/IOP480 = 16, 405 = 32)
578 * and doesn't cross cache block boundaries.
581 (mal_desc_t *) malloc ((sizeof (mal_desc_t) * NUM_TX_BUFF) +
582 ((2 * CFG_CACHELINE_SIZE) - 2));
583 if (NULL == hw_p->alloc_tx_buf)
585 if (((int) hw_p->alloc_tx_buf & CACHELINE_MASK) != 0) {
587 (mal_desc_t *) ((int) hw_p->alloc_tx_buf +
590 alloc_tx_buf & CACHELINE_MASK));
592 hw_p->tx = hw_p->alloc_tx_buf;
596 (mal_desc_t *) malloc ((sizeof (mal_desc_t) * NUM_RX_BUFF) +
597 ((2 * CFG_CACHELINE_SIZE) - 2));
598 if (NULL == hw_p->alloc_rx_buf) {
599 free(hw_p->alloc_tx_buf);
600 hw_p->alloc_tx_buf = NULL;
604 if (((int) hw_p->alloc_rx_buf & CACHELINE_MASK) != 0) {
606 (mal_desc_t *) ((int) hw_p->alloc_rx_buf +
609 alloc_rx_buf & CACHELINE_MASK));
611 hw_p->rx = hw_p->alloc_rx_buf;
614 for (i = 0; i < NUM_TX_BUFF; i++) {
615 hw_p->tx[i].ctrl = 0;
616 hw_p->tx[i].data_len = 0;
617 if (hw_p->first_init == 0) {
619 (char *) malloc (ENET_MAX_MTU_ALIGNED);
620 if (NULL == hw_p->txbuf_ptr) {
621 free(hw_p->alloc_rx_buf);
622 free(hw_p->alloc_tx_buf);
623 hw_p->alloc_rx_buf = NULL;
624 hw_p->alloc_tx_buf = NULL;
625 for(j = 0; j < i; j++) {
626 free(hw_p->tx[i].data_ptr);
627 hw_p->tx[i].data_ptr = NULL;
631 hw_p->tx[i].data_ptr = hw_p->txbuf_ptr;
632 if ((NUM_TX_BUFF - 1) == i)
633 hw_p->tx[i].ctrl |= MAL_TX_CTRL_WRAP;
634 hw_p->tx_run[i] = -1;
636 printf ("TX_BUFF %d @ 0x%08lx\n", i,
637 (ulong) hw_p->tx[i].data_ptr);
641 for (i = 0; i < NUM_RX_BUFF; i++) {
642 hw_p->rx[i].ctrl = 0;
643 hw_p->rx[i].data_len = 0;
644 /* rx[i].data_ptr = (char *) &rx_buff[i]; */
645 hw_p->rx[i].data_ptr = (char *) NetRxPackets[i];
646 if ((NUM_RX_BUFF - 1) == i)
647 hw_p->rx[i].ctrl |= MAL_RX_CTRL_WRAP;
648 hw_p->rx[i].ctrl |= MAL_RX_CTRL_EMPTY | MAL_RX_CTRL_INTR;
649 hw_p->rx_ready[i] = -1;
651 printf ("RX_BUFF %d @ 0x%08lx\n", i, (ulong) rx[i].data_ptr);
657 reg |= dev->enetaddr[0]; /* set high address */
659 reg |= dev->enetaddr[1];
661 out32 (EMAC_IAH + hw_p->hw_addr, reg);
664 reg |= dev->enetaddr[2]; /* set low address */
666 reg |= dev->enetaddr[3];
668 reg |= dev->enetaddr[4];
670 reg |= dev->enetaddr[5];
672 out32 (EMAC_IAL + hw_p->hw_addr, reg);
676 /* setup MAL tx & rx channel pointers */
677 #if defined (CONFIG_405EP) || defined (CONFIG_440EP) || defined (CONFIG_440GR)
678 mtdcr (maltxctp2r, hw_p->tx);
680 mtdcr (maltxctp1r, hw_p->tx);
682 #if defined(CONFIG_440)
683 mtdcr (maltxbattr, 0x0);
684 mtdcr (malrxbattr, 0x0);
686 mtdcr (malrxctp1r, hw_p->rx);
687 /* set RX buffer size */
688 mtdcr (malrcbs1, ENET_MAX_MTU_ALIGNED / 16);
690 #if defined (CONFIG_440GX)
692 /* setup MAL tx & rx channel pointers */
693 mtdcr (maltxbattr, 0x0);
694 mtdcr (malrxbattr, 0x0);
695 mtdcr (maltxctp2r, hw_p->tx);
696 mtdcr (malrxctp2r, hw_p->rx);
697 /* set RX buffer size */
698 mtdcr (malrcbs2, ENET_MAX_MTU_ALIGNED / 16);
701 /* setup MAL tx & rx channel pointers */
702 mtdcr (maltxbattr, 0x0);
703 mtdcr (maltxctp3r, hw_p->tx);
704 mtdcr (malrxbattr, 0x0);
705 mtdcr (malrxctp3r, hw_p->rx);
706 /* set RX buffer size */
707 mtdcr (malrcbs3, ENET_MAX_MTU_ALIGNED / 16);
709 #endif /* CONFIG_440GX */
712 /* setup MAL tx & rx channel pointers */
713 #if defined(CONFIG_440)
714 mtdcr (maltxbattr, 0x0);
715 mtdcr (malrxbattr, 0x0);
717 mtdcr (maltxctp0r, hw_p->tx);
718 mtdcr (malrxctp0r, hw_p->rx);
719 /* set RX buffer size */
720 mtdcr (malrcbs0, ENET_MAX_MTU_ALIGNED / 16);
724 /* Enable MAL transmit and receive channels */
725 #if defined(CONFIG_405EP) || defined(CONFIG_440EP) || defined(CONFIG_440GR)
726 mtdcr (maltxcasr, (MAL_TXRX_CASR >> (hw_p->devnum*2)));
728 mtdcr (maltxcasr, (MAL_TXRX_CASR >> hw_p->devnum));
730 mtdcr (malrxcasr, (MAL_TXRX_CASR >> hw_p->devnum));
732 /* set transmit enable & receive enable */
733 out32 (EMAC_M0 + hw_p->hw_addr, EMAC_M0_TXE | EMAC_M0_RXE);
735 /* set receive fifo to 4k and tx fifo to 2k */
736 mode_reg = in32 (EMAC_M1 + hw_p->hw_addr);
737 mode_reg |= EMAC_M1_RFS_4K | EMAC_M1_TX_FIFO_2K;
740 if (speed == _1000BASET)
741 mode_reg = mode_reg | EMAC_M1_MF_1000MBPS | EMAC_M1_IST;
742 else if (speed == _100BASET)
743 mode_reg = mode_reg | EMAC_M1_MF_100MBPS | EMAC_M1_IST;
745 mode_reg = mode_reg & ~0x00C00000; /* 10 MBPS */
747 mode_reg = mode_reg | 0x80000000 | EMAC_M1_IST;
749 out32 (EMAC_M1 + hw_p->hw_addr, mode_reg);
751 /* Enable broadcast and indvidual address */
752 /* TBS: enabling runts as some misbehaved nics will send runts */
753 out32 (EMAC_RXM + hw_p->hw_addr, EMAC_RMR_BAE | EMAC_RMR_IAE);
755 /* we probably need to set the tx mode1 reg? maybe at tx time */
757 /* set transmit request threshold register */
758 out32 (EMAC_TRTR + hw_p->hw_addr, 0x18000000); /* 256 byte threshold */
760 /* set receive low/high water mark register */
761 #if defined(CONFIG_440)
762 /* 440GP has a 64 byte burst length */
763 out32 (EMAC_RX_HI_LO_WMARK + hw_p->hw_addr, 0x80009000);
765 /* 405s have a 16 byte burst length */
766 out32 (EMAC_RX_HI_LO_WMARK + hw_p->hw_addr, 0x0f002000);
767 #endif /* defined(CONFIG_440) */
768 out32 (EMAC_TXM1 + hw_p->hw_addr, 0xf8640000);
770 /* Set fifo limit entry in tx mode 0 */
771 out32 (EMAC_TXM0 + hw_p->hw_addr, 0x00000003);
773 out32 (EMAC_I_FRAME_GAP_REG + hw_p->hw_addr, 0x00000008);
776 hw_p->emac_ier = EMAC_ISR_PTLE | EMAC_ISR_BFCS | EMAC_ISR_ORE | EMAC_ISR_IRE;
777 if (speed == _100BASET)
778 hw_p->emac_ier = hw_p->emac_ier | EMAC_ISR_SYE;
780 out32 (EMAC_ISR + hw_p->hw_addr, 0xffffffff); /* clear pending interrupts */
781 out32 (EMAC_IER + hw_p->hw_addr, hw_p->emac_ier);
783 if (hw_p->first_init == 0) {
785 * Connect interrupt service routines
787 irq_install_handler (VECNUM_ETH0 + (hw_p->devnum * 2),
788 (interrupt_handler_t *) enetInt, dev);
791 mtmsr (msr); /* enable interrupts again */
794 hw_p->first_init = 1;
800 static int ppc_4xx_eth_send (struct eth_device *dev, volatile void *ptr,
803 struct enet_frame *ef_ptr;
804 ulong time_start, time_now;
805 unsigned long temp_txm0;
806 EMAC_4XX_HW_PST hw_p = dev->priv;
808 ef_ptr = (struct enet_frame *) ptr;
810 /*-----------------------------------------------------------------------+
811 * Copy in our address into the frame.
812 *-----------------------------------------------------------------------*/
813 (void) memcpy (ef_ptr->source_addr, dev->enetaddr, ENET_ADDR_LENGTH);
815 /*-----------------------------------------------------------------------+
816 * If frame is too long or too short, modify length.
817 *-----------------------------------------------------------------------*/
818 /* TBS: where does the fragment go???? */
819 if (len > ENET_MAX_MTU)
822 /* memcpy ((void *) &tx_buff[tx_slot], (const void *) ptr, len); */
823 memcpy ((void *) hw_p->txbuf_ptr, (const void *) ptr, len);
825 /*-----------------------------------------------------------------------+
826 * set TX Buffer busy, and send it
827 *-----------------------------------------------------------------------*/
828 hw_p->tx[hw_p->tx_slot].ctrl = (MAL_TX_CTRL_LAST |
829 EMAC_TX_CTRL_GFCS | EMAC_TX_CTRL_GP) &
830 ~(EMAC_TX_CTRL_ISA | EMAC_TX_CTRL_RSA);
831 if ((NUM_TX_BUFF - 1) == hw_p->tx_slot)
832 hw_p->tx[hw_p->tx_slot].ctrl |= MAL_TX_CTRL_WRAP;
834 hw_p->tx[hw_p->tx_slot].data_len = (short) len;
835 hw_p->tx[hw_p->tx_slot].ctrl |= MAL_TX_CTRL_READY;
837 __asm__ volatile ("eieio");
839 out32 (EMAC_TXM0 + hw_p->hw_addr,
840 in32 (EMAC_TXM0 + hw_p->hw_addr) | EMAC_TXM0_GNP0);
842 hw_p->stats.pkts_tx++;
845 /*-----------------------------------------------------------------------+
846 * poll unitl the packet is sent and then make sure it is OK
847 *-----------------------------------------------------------------------*/
848 time_start = get_timer (0);
850 temp_txm0 = in32 (EMAC_TXM0 + hw_p->hw_addr);
851 /* loop until either TINT turns on or 3 seconds elapse */
852 if ((temp_txm0 & EMAC_TXM0_GNP0) != 0) {
853 /* transmit is done, so now check for errors
854 * If there is an error, an interrupt should
855 * happen when we return
857 time_now = get_timer (0);
858 if ((time_now - time_start) > 3000) {
867 #if defined (CONFIG_440)
869 int enetInt (struct eth_device *dev)
872 int rc = -1; /* default to not us */
873 unsigned long mal_isr;
874 unsigned long emac_isr = 0;
875 unsigned long mal_rx_eob;
876 unsigned long my_uic0msr, my_uic1msr;
878 #if defined(CONFIG_440GX)
879 unsigned long my_uic2msr;
881 EMAC_4XX_HW_PST hw_p;
884 * Because the mal is generic, we need to get the current
887 #if defined(CONFIG_NET_MULTI)
896 /* enter loop that stays in interrupt code until nothing to service */
900 my_uic0msr = mfdcr (uic0msr);
901 my_uic1msr = mfdcr (uic1msr);
902 #if defined(CONFIG_440GX)
903 my_uic2msr = mfdcr (uic2msr);
905 if (!(my_uic0msr & (UIC_MRE | UIC_MTE))
907 (UIC_ETH0 | UIC_ETH1 | UIC_MS | UIC_MTDE |
912 #if defined (CONFIG_440GX)
913 if (!(my_uic0msr & (UIC_MRE | UIC_MTE))
914 && !(my_uic2msr & (UIC_ETH2 | UIC_ETH3))) {
919 /* get and clear controller status interrupts */
920 /* look at Mal and EMAC interrupts */
921 if ((my_uic0msr & (UIC_MRE | UIC_MTE))
922 || (my_uic1msr & (UIC_MS | UIC_MTDE | UIC_MRDE))) {
923 /* we have a MAL interrupt */
924 mal_isr = mfdcr (malesr);
925 /* look for mal error */
926 if (my_uic1msr & (UIC_MS | UIC_MTDE | UIC_MRDE)) {
927 mal_err (dev, mal_isr, my_uic0msr,
928 MAL_UIC_DEF, MAL_UIC_ERR);
934 /* port by port dispatch of emac interrupts */
935 if (hw_p->devnum == 0) {
936 if (UIC_ETH0 & my_uic1msr) { /* look for EMAC errors */
937 emac_isr = in32 (EMAC_ISR + hw_p->hw_addr);
938 if ((hw_p->emac_ier & emac_isr) != 0) {
939 emac_err (dev, emac_isr);
944 if ((hw_p->emac_ier & emac_isr)
945 || (my_uic1msr & (UIC_MS | UIC_MTDE | UIC_MRDE))) {
946 mtdcr (uic0sr, UIC_MRE | UIC_MTE); /* Clear */
947 mtdcr (uic1sr, UIC_ETH0 | UIC_MS | UIC_MTDE | UIC_MRDE); /* Clear */
948 return (rc); /* we had errors so get out */
952 if (hw_p->devnum == 1) {
953 if (UIC_ETH1 & my_uic1msr) { /* look for EMAC errors */
954 emac_isr = in32 (EMAC_ISR + hw_p->hw_addr);
955 if ((hw_p->emac_ier & emac_isr) != 0) {
956 emac_err (dev, emac_isr);
961 if ((hw_p->emac_ier & emac_isr)
962 || (my_uic1msr & (UIC_MS | UIC_MTDE | UIC_MRDE))) {
963 mtdcr (uic0sr, UIC_MRE | UIC_MTE); /* Clear */
964 mtdcr (uic1sr, UIC_ETH1 | UIC_MS | UIC_MTDE | UIC_MRDE); /* Clear */
965 return (rc); /* we had errors so get out */
968 #if defined (CONFIG_440GX)
969 if (hw_p->devnum == 2) {
970 if (UIC_ETH2 & my_uic2msr) { /* look for EMAC errors */
971 emac_isr = in32 (EMAC_ISR + hw_p->hw_addr);
972 if ((hw_p->emac_ier & emac_isr) != 0) {
973 emac_err (dev, emac_isr);
978 if ((hw_p->emac_ier & emac_isr)
979 || (my_uic1msr & (UIC_MS | UIC_MTDE | UIC_MRDE))) {
980 mtdcr (uic0sr, UIC_MRE | UIC_MTE); /* Clear */
981 mtdcr (uic1sr, UIC_MS | UIC_MTDE | UIC_MRDE); /* Clear */
982 mtdcr (uic2sr, UIC_ETH2);
983 return (rc); /* we had errors so get out */
987 if (hw_p->devnum == 3) {
988 if (UIC_ETH3 & my_uic2msr) { /* look for EMAC errors */
989 emac_isr = in32 (EMAC_ISR + hw_p->hw_addr);
990 if ((hw_p->emac_ier & emac_isr) != 0) {
991 emac_err (dev, emac_isr);
996 if ((hw_p->emac_ier & emac_isr)
997 || (my_uic1msr & (UIC_MS | UIC_MTDE | UIC_MRDE))) {
998 mtdcr (uic0sr, UIC_MRE | UIC_MTE); /* Clear */
999 mtdcr (uic1sr, UIC_MS | UIC_MTDE | UIC_MRDE); /* Clear */
1000 mtdcr (uic2sr, UIC_ETH3);
1001 return (rc); /* we had errors so get out */
1004 #endif /* CONFIG_440GX */
1005 /* handle MAX TX EOB interrupt from a tx */
1006 if (my_uic0msr & UIC_MTE) {
1007 mal_rx_eob = mfdcr (maltxeobisr);
1008 mtdcr (maltxeobisr, mal_rx_eob);
1009 mtdcr (uic0sr, UIC_MTE);
1011 /* handle MAL RX EOB interupt from a receive */
1012 /* check for EOB on valid channels */
1013 if (my_uic0msr & UIC_MRE) {
1014 mal_rx_eob = mfdcr (malrxeobisr);
1015 if ((mal_rx_eob & (0x80000000 >> hw_p->devnum)) != 0) { /* call emac routine for channel x */
1017 mtdcr(malrxeobisr, mal_rx_eob); */
1018 enet_rcv (dev, emac_isr);
1019 /* indicate that we serviced an interrupt */
1024 mtdcr (uic0sr, UIC_MRE); /* Clear */
1025 mtdcr (uic1sr, UIC_MS | UIC_MTDE | UIC_MRDE); /* Clear */
1026 switch (hw_p->devnum) {
1028 mtdcr (uic1sr, UIC_ETH0);
1031 mtdcr (uic1sr, UIC_ETH1);
1033 #if defined (CONFIG_440GX)
1035 mtdcr (uic2sr, UIC_ETH2);
1038 mtdcr (uic2sr, UIC_ETH3);
1040 #endif /* CONFIG_440GX */
1049 #else /* CONFIG_440 */
1051 int enetInt (struct eth_device *dev)
1054 int rc = -1; /* default to not us */
1055 unsigned long mal_isr;
1056 unsigned long emac_isr = 0;
1057 unsigned long mal_rx_eob;
1058 unsigned long my_uicmsr;
1060 EMAC_4XX_HW_PST hw_p;
1063 * Because the mal is generic, we need to get the current
1066 #if defined(CONFIG_NET_MULTI)
1067 dev = eth_get_dev();
1074 /* enter loop that stays in interrupt code until nothing to service */
1078 my_uicmsr = mfdcr (uicmsr);
1080 if ((my_uicmsr & (MAL_UIC_DEF | EMAC_UIC_DEF)) == 0) { /* not for us */
1083 /* get and clear controller status interrupts */
1084 /* look at Mal and EMAC interrupts */
1085 if ((MAL_UIC_DEF & my_uicmsr) != 0) { /* we have a MAL interrupt */
1086 mal_isr = mfdcr (malesr);
1087 /* look for mal error */
1088 if ((my_uicmsr & MAL_UIC_ERR) != 0) {
1089 mal_err (dev, mal_isr, my_uicmsr, MAL_UIC_DEF, MAL_UIC_ERR);
1095 /* port by port dispatch of emac interrupts */
1097 if ((SEL_UIC_DEF(hw_p->devnum) & my_uicmsr) != 0) { /* look for EMAC errors */
1098 emac_isr = in32 (EMAC_ISR + hw_p->hw_addr);
1099 if ((hw_p->emac_ier & emac_isr) != 0) {
1100 emac_err (dev, emac_isr);
1105 if (((hw_p->emac_ier & emac_isr) != 0) || ((MAL_UIC_ERR & my_uicmsr) != 0)) {
1106 mtdcr (uicsr, MAL_UIC_DEF | SEL_UIC_DEF(hw_p->devnum)); /* Clear */
1107 return (rc); /* we had errors so get out */
1110 /* handle MAX TX EOB interrupt from a tx */
1111 if (my_uicmsr & UIC_MAL_TXEOB) {
1112 mal_rx_eob = mfdcr (maltxeobisr);
1113 mtdcr (maltxeobisr, mal_rx_eob);
1114 mtdcr (uicsr, UIC_MAL_TXEOB);
1116 /* handle MAL RX EOB interupt from a receive */
1117 /* check for EOB on valid channels */
1118 if (my_uicmsr & UIC_MAL_RXEOB)
1120 mal_rx_eob = mfdcr (malrxeobisr);
1121 if ((mal_rx_eob & (0x80000000 >> hw_p->devnum)) != 0) { /* call emac routine for channel x */
1123 mtdcr(malrxeobisr, mal_rx_eob); */
1124 enet_rcv (dev, emac_isr);
1125 /* indicate that we serviced an interrupt */
1130 mtdcr (uicsr, MAL_UIC_DEF|EMAC_UIC_DEF|EMAC_UIC_DEF1); /* Clear */
1137 #endif /* CONFIG_440 */
1139 /*-----------------------------------------------------------------------------+
1141 *-----------------------------------------------------------------------------*/
1142 static void mal_err (struct eth_device *dev, unsigned long isr,
1143 unsigned long uic, unsigned long maldef,
1144 unsigned long mal_errr)
1146 EMAC_4XX_HW_PST hw_p = dev->priv;
1148 mtdcr (malesr, isr); /* clear interrupt */
1150 /* clear DE interrupt */
1151 mtdcr (maltxdeir, 0xC0000000);
1152 mtdcr (malrxdeir, 0x80000000);
1154 #ifdef INFO_4XX_ENET
1155 printf ("\nMAL error occured.... ISR = %lx UIC = = %lx MAL_DEF = %lx MAL_ERR= %lx \n", isr, uic, maldef, mal_errr);
1158 eth_init (hw_p->bis); /* start again... */
1161 /*-----------------------------------------------------------------------------+
1162 * EMAC Error Routine
1163 *-----------------------------------------------------------------------------*/
1164 static void emac_err (struct eth_device *dev, unsigned long isr)
1166 EMAC_4XX_HW_PST hw_p = dev->priv;
1168 printf ("EMAC%d error occured.... ISR = %lx\n", hw_p->devnum, isr);
1169 out32 (EMAC_ISR + hw_p->hw_addr, isr);
1172 /*-----------------------------------------------------------------------------+
1173 * enet_rcv() handles the ethernet receive data
1174 *-----------------------------------------------------------------------------*/
1175 static void enet_rcv (struct eth_device *dev, unsigned long malisr)
1177 struct enet_frame *ef_ptr;
1178 unsigned long data_len;
1179 unsigned long rx_eob_isr;
1180 EMAC_4XX_HW_PST hw_p = dev->priv;
1186 rx_eob_isr = mfdcr (malrxeobisr);
1187 if ((0x80000000 >> hw_p->devnum) & rx_eob_isr) {
1189 mtdcr (malrxeobisr, rx_eob_isr);
1192 while (1) { /* do all */
1195 if ((MAL_RX_CTRL_EMPTY & hw_p->rx[i].ctrl)
1196 || (loop_count >= NUM_RX_BUFF))
1200 if (NUM_RX_BUFF == hw_p->rx_slot)
1203 data_len = (unsigned long) hw_p->rx[i].data_len; /* Get len */
1205 if (data_len > ENET_MAX_MTU) /* Check len */
1208 if (EMAC_RX_ERRORS & hw_p->rx[i].ctrl) { /* Check Errors */
1210 hw_p->stats.rx_err_log[hw_p->
1213 hw_p->rx_err_index++;
1214 if (hw_p->rx_err_index ==
1216 hw_p->rx_err_index =
1219 } /* data_len < max mtu */
1221 if (!data_len) { /* no data */
1222 hw_p->rx[i].ctrl |= MAL_RX_CTRL_EMPTY; /* Free Recv Buffer */
1224 hw_p->stats.data_len_err++; /* Error at Rx */
1229 /* Check if user has already eaten buffer */
1230 /* if not => ERROR */
1231 else if (hw_p->rx_ready[hw_p->rx_i_index] != -1) {
1232 if (hw_p->is_receiving)
1233 printf ("ERROR : Receive buffers are full!\n");
1236 hw_p->stats.rx_frames++;
1237 hw_p->stats.rx += data_len;
1238 ef_ptr = (struct enet_frame *) hw_p->rx[i].
1240 #ifdef INFO_4XX_ENET
1241 hw_p->stats.pkts_rx++;
1246 hw_p->rx_ready[hw_p->rx_i_index] = i;
1248 if (NUM_RX_BUFF == hw_p->rx_i_index)
1249 hw_p->rx_i_index = 0;
1252 * free receive buffer only when
1253 * buffer has been handled (eth_rx)
1254 rx[i].ctrl |= MAL_RX_CTRL_EMPTY;
1258 } /* if EMACK_RXCHL */
1262 static int ppc_4xx_eth_rx (struct eth_device *dev)
1267 EMAC_4XX_HW_PST hw_p = dev->priv;
1269 hw_p->is_receiving = 1; /* tell driver */
1273 * use ring buffer and
1274 * get index from rx buffer desciptor queue
1276 user_index = hw_p->rx_ready[hw_p->rx_u_index];
1277 if (user_index == -1) {
1279 break; /* nothing received - leave for() loop */
1283 mtmsr (msr & ~(MSR_EE));
1285 length = hw_p->rx[user_index].data_len;
1287 /* Pass the packet up to the protocol layers. */
1288 /* NetReceive(NetRxPackets[rxIdx], length - 4); */
1289 /* NetReceive(NetRxPackets[i], length); */
1290 NetReceive (NetRxPackets[user_index], length - 4);
1291 /* Free Recv Buffer */
1292 hw_p->rx[user_index].ctrl |= MAL_RX_CTRL_EMPTY;
1293 /* Free rx buffer descriptor queue */
1294 hw_p->rx_ready[hw_p->rx_u_index] = -1;
1296 if (NUM_RX_BUFF == hw_p->rx_u_index)
1297 hw_p->rx_u_index = 0;
1299 #ifdef INFO_4XX_ENET
1300 hw_p->stats.pkts_handled++;
1303 mtmsr (msr); /* Enable IRQ's */
1306 hw_p->is_receiving = 0; /* tell driver */
1311 int ppc_4xx_eth_initialize (bd_t * bis)
1313 static int virgin = 0;
1314 struct eth_device *dev;
1316 EMAC_4XX_HW_PST hw = NULL;
1318 #if defined(CONFIG_440GX)
1321 mfsdr (sdr_pfc1, pfc1);
1322 pfc1 &= ~(0x01e00000);
1324 mtsdr (sdr_pfc1, pfc1);
1326 /* set phy num and mode */
1327 bis->bi_phynum[0] = CONFIG_PHY_ADDR;
1328 #if defined(CONFIG_PHY1_ADDR)
1329 bis->bi_phynum[1] = CONFIG_PHY1_ADDR;
1331 #if defined(CONFIG_440GX)
1332 bis->bi_phynum[2] = CONFIG_PHY2_ADDR;
1333 bis->bi_phynum[3] = CONFIG_PHY3_ADDR;
1334 bis->bi_phymode[0] = 0;
1335 bis->bi_phymode[1] = 0;
1336 bis->bi_phymode[2] = 2;
1337 bis->bi_phymode[3] = 2;
1339 #if defined (CONFIG_440GX)
1340 ppc_4xx_eth_setup_bridge(0, bis);
1344 for (eth_num = 0; eth_num < EMAC_NUM_DEV; eth_num++) {
1346 /* See if we can actually bring up the interface, otherwise, skip it */
1348 default: /* fall through */
1350 if (memcmp (bis->bi_enetaddr, "\0\0\0\0\0\0", 6) == 0) {
1351 bis->bi_phymode[eth_num] = BI_PHYMODE_NONE;
1355 #ifdef CONFIG_HAS_ETH1
1357 if (memcmp (bis->bi_enet1addr, "\0\0\0\0\0\0", 6) == 0) {
1358 bis->bi_phymode[eth_num] = BI_PHYMODE_NONE;
1363 #ifdef CONFIG_HAS_ETH2
1365 if (memcmp (bis->bi_enet2addr, "\0\0\0\0\0\0", 6) == 0) {
1366 bis->bi_phymode[eth_num] = BI_PHYMODE_NONE;
1371 #ifdef CONFIG_HAS_ETH3
1373 if (memcmp (bis->bi_enet3addr, "\0\0\0\0\0\0", 6) == 0) {
1374 bis->bi_phymode[eth_num] = BI_PHYMODE_NONE;
1381 /* Allocate device structure */
1382 dev = (struct eth_device *) malloc (sizeof (*dev));
1384 printf ("ppc_4xx_eth_initialize: "
1385 "Cannot allocate eth_device %d\n", eth_num);
1388 memset(dev, 0, sizeof(*dev));
1390 /* Allocate our private use data */
1391 hw = (EMAC_4XX_HW_PST) malloc (sizeof (*hw));
1393 printf ("ppc_4xx_eth_initialize: "
1394 "Cannot allocate private hw data for eth_device %d",
1399 memset(hw, 0, sizeof(*hw));
1402 default: /* fall through */
1405 memcpy (dev->enetaddr, bis->bi_enetaddr, 6);
1407 #ifdef CONFIG_HAS_ETH1
1409 hw->hw_addr = 0x100;
1410 memcpy (dev->enetaddr, bis->bi_enet1addr, 6);
1413 #ifdef CONFIG_HAS_ETH2
1415 hw->hw_addr = 0x400;
1416 memcpy (dev->enetaddr, bis->bi_enet2addr, 6);
1419 #ifdef CONFIG_HAS_ETH3
1421 hw->hw_addr = 0x600;
1422 memcpy (dev->enetaddr, bis->bi_enet3addr, 6);
1427 hw->devnum = eth_num;
1428 hw->print_speed = 1;
1430 sprintf (dev->name, "ppc_4xx_eth%d", eth_num);
1431 dev->priv = (void *) hw;
1432 dev->init = ppc_4xx_eth_init;
1433 dev->halt = ppc_4xx_eth_halt;
1434 dev->send = ppc_4xx_eth_send;
1435 dev->recv = ppc_4xx_eth_rx;
1438 /* set the MAL IER ??? names may change with new spec ??? */
1440 MAL_IER_DE | MAL_IER_NE | MAL_IER_TE |
1441 MAL_IER_OPBE | MAL_IER_PLBE;
1442 mtdcr (malesr, 0xffffffff); /* clear pending interrupts */
1443 mtdcr (maltxdeir, 0xffffffff); /* clear pending interrupts */
1444 mtdcr (malrxdeir, 0xffffffff); /* clear pending interrupts */
1445 mtdcr (malier, mal_ier);
1447 /* install MAL interrupt handler */
1448 irq_install_handler (VECNUM_MS,
1449 (interrupt_handler_t *) enetInt,
1451 irq_install_handler (VECNUM_MTE,
1452 (interrupt_handler_t *) enetInt,
1454 irq_install_handler (VECNUM_MRE,
1455 (interrupt_handler_t *) enetInt,
1457 irq_install_handler (VECNUM_TXDE,
1458 (interrupt_handler_t *) enetInt,
1460 irq_install_handler (VECNUM_RXDE,
1461 (interrupt_handler_t *) enetInt,
1466 #if defined(CONFIG_NET_MULTI)
1472 } /* end for each supported device */
1477 #if !defined(CONFIG_NET_MULTI)
1478 void eth_halt (void) {
1480 ppc_4xx_eth_halt(emac0_dev);
1486 int eth_init (bd_t *bis)
1488 ppc_4xx_eth_initialize(bis);
1489 return(ppc_4xx_eth_init(emac0_dev, bis));
1492 int eth_send(volatile void *packet, int length)
1495 return (ppc_4xx_eth_send(emac0_dev, packet, length));
1500 return (ppc_4xx_eth_rx(emac0_dev));
1502 #endif /* !defined(CONFIG_NET_MULTI) */
1504 #endif /* #if (CONFIG_COMMANDS & CFG_CMD_NET) */