wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /*-----------------------------------------------------------------------------+ |
| 2 | * |
| 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. |
| 9 | * |
| 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. |
| 13 | * |
| 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. |
| 17 | * |
| 18 | * COPYRIGHT I B M CORPORATION 1995 |
| 19 | * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M |
| 20 | *-----------------------------------------------------------------------------*/ |
| 21 | /*-----------------------------------------------------------------------------+ |
| 22 | * |
| 23 | * File Name: enetemac.c |
| 24 | * |
| 25 | * Function: Device driver for the ethernet EMAC3 macro on the 405GP. |
| 26 | * |
| 27 | * Author: Mark Wisner |
| 28 | * |
| 29 | * Change Activity- |
| 30 | * |
| 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 |
| 48 | * include/net.h |
| 49 | * - Receive buffer descriptor ring is used to send buffers |
| 50 | * to the user |
| 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 |
| 66 | * used anymore) |
| 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 | |
| 72 | #include <common.h> |
| 73 | #include <asm/processor.h> |
| 74 | #include <ppc4xx.h> |
| 75 | #include <commproc.h> |
| 76 | #include <405gp_enet.h> |
| 77 | #include <405_mal.h> |
| 78 | #include <miiphy.h> |
| 79 | #include <net.h> |
| 80 | #include <malloc.h> |
| 81 | #include "vecnum.h" |
| 82 | |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 83 | #if defined(CONFIG_405GP) || defined(CONFIG_440) || defined(CONFIG_405EP) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 84 | |
| 85 | #define EMAC_RESET_TIMEOUT 1000 /* 1000 ms reset timeout */ |
| 86 | #define PHY_AUTONEGOTIATE_TIMEOUT 2000 /* 2000 ms autonegotiate timeout */ |
| 87 | |
| 88 | #define NUM_TX_BUFF 1 |
| 89 | /* AS.HARNOIS |
| 90 | * Use PKTBUFSRX (include/net.h) instead of setting NUM_RX_BUFF again |
| 91 | * These both variables are used to define the same thing! |
| 92 | * #define NUM_RX_BUFF 4 |
| 93 | */ |
| 94 | #define NUM_RX_BUFF PKTBUFSRX |
| 95 | |
| 96 | /* Ethernet Transmit and Receive Buffers */ |
| 97 | /* AS.HARNOIS |
| 98 | * In the same way ENET_MAX_MTU and ENET_MAX_MTU_ALIGNED are set from |
| 99 | * PKTSIZE and PKTSIZE_ALIGN (include/net.h) |
| 100 | */ |
| 101 | #define ENET_MAX_MTU PKTSIZE |
| 102 | #define ENET_MAX_MTU_ALIGNED PKTSIZE_ALIGN |
| 103 | |
| 104 | static char *txbuf_ptr; |
| 105 | |
| 106 | /* define the number of channels implemented */ |
| 107 | #define EMAC_RXCHL 1 |
| 108 | #define EMAC_TXCHL 1 |
| 109 | |
| 110 | /*-----------------------------------------------------------------------------+ |
| 111 | * Defines for MAL/EMAC interrupt conditions as reported in the UIC (Universal |
| 112 | * Interrupt Controller). |
| 113 | *-----------------------------------------------------------------------------*/ |
| 114 | #define MAL_UIC_ERR ( UIC_MAL_SERR | UIC_MAL_TXDE | UIC_MAL_RXDE) |
| 115 | #define MAL_UIC_DEF (UIC_MAL_RXEOB | MAL_UIC_ERR) |
| 116 | #define EMAC_UIC_DEF UIC_ENET |
| 117 | |
| 118 | /*-----------------------------------------------------------------------------+ |
| 119 | * Global variables. TX and RX descriptors and buffers. |
| 120 | *-----------------------------------------------------------------------------*/ |
| 121 | static volatile mal_desc_t *tx; |
| 122 | static volatile mal_desc_t *rx; |
| 123 | static mal_desc_t *alloc_tx_buf = NULL; |
| 124 | static mal_desc_t *alloc_rx_buf = NULL; |
| 125 | |
| 126 | /* IER globals */ |
| 127 | static unsigned long emac_ier; |
| 128 | static unsigned long mal_ier; |
| 129 | |
| 130 | |
| 131 | /* Statistic Areas */ |
| 132 | #define MAX_ERR_LOG 10 |
| 133 | struct emac_stats { |
| 134 | int data_len_err; |
| 135 | int rx_frames; |
| 136 | int rx; |
| 137 | int rx_prot_err; |
| 138 | }; |
| 139 | |
| 140 | static struct stats { /* Statistic Block */ |
| 141 | struct emac_stats emac; |
| 142 | int int_err; |
| 143 | short tx_err_log[MAX_ERR_LOG]; |
| 144 | short rx_err_log[MAX_ERR_LOG]; |
| 145 | } stats; |
| 146 | |
| 147 | static int first_init = 0; |
| 148 | |
| 149 | static int tx_err_index = 0; /* Transmit Error Index for tx_err_log */ |
| 150 | static int rx_err_index = 0; /* Receive Error Index for rx_err_log */ |
| 151 | |
| 152 | static int rx_slot = 0; /* MAL Receive Slot */ |
| 153 | static int rx_i_index = 0; /* Receive Interrupt Queue Index */ |
| 154 | static int rx_u_index = 0; /* Receive User Queue Index */ |
| 155 | static int rx_ready[NUM_RX_BUFF]; /* Receive Ready Queue */ |
| 156 | |
| 157 | static int tx_slot = 0; /* MAL Transmit Slot */ |
| 158 | static int tx_i_index = 0; /* Transmit Interrupt Queue Index */ |
| 159 | static int tx_u_index = 0; /* Transmit User Queue Index */ |
| 160 | static int tx_run[NUM_TX_BUFF]; /* Transmit Running Queue */ |
| 161 | |
| 162 | #undef INFO_405_ENET 1 |
| 163 | #ifdef INFO_405_ENET |
| 164 | static int packetSent = 0; |
| 165 | static int packetReceived = 0; |
| 166 | static int packetHandled = 0; |
| 167 | #endif |
| 168 | |
| 169 | static char emac_hwd_addr[ENET_ADDR_LENGTH]; |
| 170 | |
| 171 | static bd_t *bis_save = NULL; /* for eth_init upon mal error */ |
| 172 | |
| 173 | static int is_receiving = 0; /* sync with eth interrupt */ |
| 174 | static int print_speed = 1; /* print speed message upon start */ |
| 175 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 176 | /*-----------------------------------------------------------------------------+ |
| 177 | * Prototypes and externals. |
| 178 | *-----------------------------------------------------------------------------*/ |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 179 | static void enet_rcv (unsigned long malisr); |
| 180 | static int enetInt(void); |
| 181 | static void mal_err (unsigned long isr, unsigned long uic, unsigned long mal_def, |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 182 | unsigned long mal_errr); |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 183 | static void emac_err (unsigned long isr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 184 | |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 185 | static void ppc_4xx_eth_halt (struct eth_device *dev) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 186 | { |
| 187 | mtdcr (malier, 0x00000000); /* disable mal interrupts */ |
| 188 | out32 (EMAC_IER, 0x00000000); /* disable emac interrupts */ |
| 189 | |
| 190 | /* 1st reset MAL */ |
| 191 | mtdcr (malmcr, MAL_CR_MMSR); |
| 192 | |
| 193 | /* wait for reset */ |
| 194 | while (mfdcr (malmcr) & MAL_CR_MMSR) { |
| 195 | }; |
| 196 | |
| 197 | /* EMAC RESET */ |
| 198 | out32 (EMAC_M0, EMAC_M0_SRST); |
| 199 | |
| 200 | print_speed = 1; /* print speed message again next time */ |
| 201 | } |
| 202 | |
| 203 | |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 204 | static int ppc_4xx_eth_init (struct eth_device *dev, bd_t * bis) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 205 | { |
| 206 | int i; |
| 207 | unsigned long reg; |
| 208 | unsigned long msr; |
| 209 | unsigned long speed; |
| 210 | unsigned long duplex; |
| 211 | unsigned mode_reg; |
| 212 | unsigned short reg_short; |
| 213 | |
| 214 | msr = mfmsr (); |
| 215 | mtmsr (msr & ~(MSR_EE)); /* disable interrupts */ |
| 216 | |
| 217 | #ifdef INFO_405_ENET |
| 218 | /* AS.HARNOIS |
| 219 | * We should have : |
| 220 | * packetHandled <= packetReceived <= packetHandled+PKTBUFSRX |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 221 | * In the most cases packetHandled = packetReceived, but it |
| 222 | * is possible that new packets (without relationship with |
| 223 | * current transfer) have got the time to arrived before |
| 224 | * netloop calls eth_halt |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 225 | */ |
| 226 | printf ("About preceeding transfer:\n" |
| 227 | "- Sent packet number %d\n" |
| 228 | "- Received packet number %d\n" |
| 229 | "- Handled packet number %d\n", |
| 230 | packetSent, packetReceived, packetHandled); |
| 231 | packetSent = 0; |
| 232 | packetReceived = 0; |
| 233 | packetHandled = 0; |
| 234 | #endif |
| 235 | |
| 236 | /* MAL RESET */ |
| 237 | mtdcr (malmcr, MAL_CR_MMSR); |
| 238 | /* wait for reset */ |
| 239 | while (mfdcr (malmcr) & MAL_CR_MMSR) { |
| 240 | }; |
| 241 | |
| 242 | tx_err_index = 0; /* Transmit Error Index for tx_err_log */ |
| 243 | rx_err_index = 0; /* Receive Error Index for rx_err_log */ |
| 244 | |
| 245 | rx_slot = 0; /* MAL Receive Slot */ |
| 246 | rx_i_index = 0; /* Receive Interrupt Queue Index */ |
| 247 | rx_u_index = 0; /* Receive User Queue Index */ |
| 248 | |
| 249 | tx_slot = 0; /* MAL Transmit Slot */ |
| 250 | tx_i_index = 0; /* Transmit Interrupt Queue Index */ |
| 251 | tx_u_index = 0; /* Transmit User Queue Index */ |
| 252 | |
| 253 | #if defined(CONFIG_440) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 254 | /* set RMII mode */ |
| 255 | out32 (ZMII_FER, ZMII_RMII | ZMII_MDI0); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 256 | #endif /* CONFIG_440 */ |
| 257 | |
| 258 | /* EMAC RESET */ |
| 259 | out32 (EMAC_M0, EMAC_M0_SRST); |
| 260 | |
| 261 | /* wait for PHY to complete auto negotiation */ |
| 262 | reg_short = 0; |
| 263 | #ifndef CONFIG_CS8952_PHY |
| 264 | miiphy_read (CONFIG_PHY_ADDR, PHY_BMSR, ®_short); |
| 265 | |
| 266 | /* |
| 267 | * Wait if PHY is able of autonegotiation and autonegotiation is not complete |
| 268 | */ |
| 269 | if ((reg_short & PHY_BMSR_AUTN_ABLE) |
| 270 | && !(reg_short & PHY_BMSR_AUTN_COMP)) { |
| 271 | puts ("Waiting for PHY auto negotiation to complete"); |
| 272 | i = 0; |
| 273 | while (!(reg_short & PHY_BMSR_AUTN_COMP)) { |
| 274 | if ((i++ % 100) == 0) |
| 275 | putc ('.'); |
| 276 | udelay (10000); /* 10 ms */ |
| 277 | miiphy_read (CONFIG_PHY_ADDR, PHY_BMSR, ®_short); |
| 278 | |
| 279 | /* |
| 280 | * Timeout reached ? |
| 281 | */ |
| 282 | if (i * 10 > PHY_AUTONEGOTIATE_TIMEOUT) { |
| 283 | puts (" TIMEOUT !\n"); |
| 284 | break; |
| 285 | } |
| 286 | } |
| 287 | puts (" done\n"); |
| 288 | udelay (500000); /* another 500 ms (results in faster booting) */ |
| 289 | } |
| 290 | #endif |
| 291 | speed = miiphy_speed (CONFIG_PHY_ADDR); |
| 292 | duplex = miiphy_duplex (CONFIG_PHY_ADDR); |
| 293 | if (print_speed) { |
| 294 | print_speed = 0; |
| 295 | printf ("ENET Speed is %d Mbps - %s duplex connection\n", |
| 296 | (int) speed, (duplex == HALF) ? "HALF" : "FULL"); |
| 297 | } |
| 298 | |
| 299 | /* set the Mal configuration reg */ |
| 300 | #if defined(CONFIG_440) |
| 301 | /* Errata 1.12: MAL_1 -- Disable MAL bursting */ |
| 302 | if( get_pvr() == PVR_440GP_RB ) |
| 303 | mtdcr (malmcr, MAL_CR_OPBBL | MAL_CR_LEA | MAL_CR_PLBLT_DEFAULT); |
| 304 | else |
| 305 | #else |
| 306 | mtdcr (malmcr, MAL_CR_PLBB | MAL_CR_OPBBL | MAL_CR_LEA | MAL_CR_PLBLT_DEFAULT); |
| 307 | #endif |
| 308 | |
| 309 | /* Free "old" buffers */ |
| 310 | if (alloc_tx_buf) free(alloc_tx_buf); |
| 311 | if (alloc_rx_buf) free(alloc_rx_buf); |
| 312 | |
| 313 | /* |
| 314 | * Malloc MAL buffer desciptors, make sure they are |
| 315 | * aligned on cache line boundary size |
| 316 | * (401/403/IOP480 = 16, 405 = 32) |
| 317 | * and doesn't cross cache block boundaries. |
| 318 | */ |
| 319 | alloc_tx_buf = (mal_desc_t *)malloc((sizeof(mal_desc_t) * NUM_TX_BUFF) + |
| 320 | ((2 * CFG_CACHELINE_SIZE) - 2)); |
| 321 | if (((int)alloc_tx_buf & CACHELINE_MASK) != 0) { |
| 322 | tx = (mal_desc_t *)((int)alloc_tx_buf + CFG_CACHELINE_SIZE - |
| 323 | ((int)alloc_tx_buf & CACHELINE_MASK)); |
| 324 | } else { |
| 325 | tx = alloc_tx_buf; |
| 326 | } |
| 327 | |
| 328 | alloc_rx_buf = (mal_desc_t *)malloc((sizeof(mal_desc_t) * NUM_RX_BUFF) + |
| 329 | ((2 * CFG_CACHELINE_SIZE) - 2)); |
| 330 | if (((int)alloc_rx_buf & CACHELINE_MASK) != 0) { |
| 331 | rx = (mal_desc_t *)((int)alloc_rx_buf + CFG_CACHELINE_SIZE - |
| 332 | ((int)alloc_rx_buf & CACHELINE_MASK)); |
| 333 | } else { |
| 334 | rx = alloc_rx_buf; |
| 335 | } |
| 336 | |
| 337 | for (i = 0; i < NUM_TX_BUFF; i++) { |
| 338 | tx[i].ctrl = 0; |
| 339 | tx[i].data_len = 0; |
| 340 | if (first_init == 0) |
| 341 | txbuf_ptr = (char *) malloc (ENET_MAX_MTU_ALIGNED); |
| 342 | tx[i].data_ptr = txbuf_ptr; |
| 343 | if ((NUM_TX_BUFF - 1) == i) |
| 344 | tx[i].ctrl |= MAL_TX_CTRL_WRAP; |
| 345 | tx_run[i] = -1; |
| 346 | #if 0 |
| 347 | printf ("TX_BUFF %d @ 0x%08lx\n", i, (ulong) tx[i].data_ptr); |
| 348 | #endif |
| 349 | } |
| 350 | |
| 351 | for (i = 0; i < NUM_RX_BUFF; i++) { |
| 352 | rx[i].ctrl = 0; |
| 353 | rx[i].data_len = 0; |
| 354 | /* rx[i].data_ptr = (char *) &rx_buff[i]; */ |
| 355 | rx[i].data_ptr = (char *) NetRxPackets[i]; |
| 356 | if ((NUM_RX_BUFF - 1) == i) |
| 357 | rx[i].ctrl |= MAL_RX_CTRL_WRAP; |
| 358 | rx[i].ctrl |= MAL_RX_CTRL_EMPTY | MAL_RX_CTRL_INTR; |
| 359 | rx_ready[i] = -1; |
| 360 | #if 0 |
| 361 | printf ("RX_BUFF %d @ 0x%08lx\n", i, (ulong) rx[i].data_ptr); |
| 362 | #endif |
| 363 | } |
| 364 | |
| 365 | memcpy (emac_hwd_addr, bis->bi_enetaddr, ENET_ADDR_LENGTH); |
| 366 | |
| 367 | reg = 0x00000000; |
| 368 | |
| 369 | reg |= emac_hwd_addr[0]; /* set high address */ |
| 370 | reg = reg << 8; |
| 371 | reg |= emac_hwd_addr[1]; |
| 372 | |
| 373 | out32 (EMAC_IAH, reg); |
| 374 | |
| 375 | reg = 0x00000000; |
| 376 | reg |= emac_hwd_addr[2]; /* set low address */ |
| 377 | reg = reg << 8; |
| 378 | reg |= emac_hwd_addr[3]; |
| 379 | reg = reg << 8; |
| 380 | reg |= emac_hwd_addr[4]; |
| 381 | reg = reg << 8; |
| 382 | reg |= emac_hwd_addr[5]; |
| 383 | |
| 384 | out32 (EMAC_IAL, reg); |
| 385 | |
| 386 | /* setup MAL tx & rx channel pointers */ |
| 387 | mtdcr (maltxctp0r, tx); |
| 388 | mtdcr (malrxctp0r, rx); |
| 389 | |
| 390 | /* Reset transmit and receive channels */ |
| 391 | mtdcr (malrxcarr, 0x80000000); /* 2 channels */ |
| 392 | mtdcr (maltxcarr, 0x80000000); /* 2 channels */ |
| 393 | |
| 394 | /* Enable MAL transmit and receive channels */ |
| 395 | mtdcr (maltxcasr, 0x80000000); /* 1 channel */ |
| 396 | mtdcr (malrxcasr, 0x80000000); /* 1 channel */ |
| 397 | |
| 398 | /* set RX buffer size */ |
| 399 | mtdcr (malrcbs0, ENET_MAX_MTU_ALIGNED / 16); |
| 400 | |
| 401 | /* set transmit enable & receive enable */ |
| 402 | out32 (EMAC_M0, EMAC_M0_TXE | EMAC_M0_RXE); |
| 403 | |
| 404 | /* set receive fifo to 4k and tx fifo to 2k */ |
| 405 | mode_reg = EMAC_M1_RFS_4K | EMAC_M1_TX_FIFO_2K; |
| 406 | |
| 407 | /* set speed */ |
| 408 | if (speed == _100BASET) |
| 409 | mode_reg = mode_reg | EMAC_M1_MF_100MBPS | EMAC_M1_IST; |
| 410 | else |
| 411 | mode_reg = mode_reg & ~0x00C00000; /* 10 MBPS */ |
| 412 | if (duplex == FULL) |
| 413 | mode_reg = mode_reg | 0x80000000 | EMAC_M1_IST; |
| 414 | |
| 415 | out32 (EMAC_M1, mode_reg); |
| 416 | |
| 417 | /* Enable broadcast and indvidual address */ |
| 418 | out32 (EMAC_RXM, EMAC_RMR_BAE | EMAC_RMR_IAE |
| 419 | /*| EMAC_RMR_ARRP| EMAC_RMR_SFCS | EMAC_RMR_SP */ ); |
| 420 | |
| 421 | /* we probably need to set the tx mode1 reg? maybe at tx time */ |
| 422 | |
| 423 | /* set transmit request threshold register */ |
| 424 | out32 (EMAC_TRTR, 0x18000000); /* 256 byte threshold */ |
| 425 | |
| 426 | /* set receive low/high water mark register */ |
| 427 | #if defined(CONFIG_440) |
| 428 | /* 440GP has a 64 byte burst length */ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 429 | out32 (EMAC_RX_HI_LO_WMARK, 0x80009000); |
| 430 | out32 (EMAC_TXM1, 0xf8640000); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 431 | #else /* CONFIG_440 */ |
| 432 | /* 405s have a 16 byte burst length */ |
| 433 | out32 (EMAC_RX_HI_LO_WMARK, 0x0f002000); |
| 434 | #endif /* CONFIG_440 */ |
| 435 | |
| 436 | /* Frame gap set */ |
| 437 | out32 (EMAC_I_FRAME_GAP_REG, 0x00000008); |
| 438 | |
| 439 | if (first_init == 0) { |
| 440 | /* |
| 441 | * Connect interrupt service routines |
| 442 | */ |
| 443 | irq_install_handler (VECNUM_EWU0, (interrupt_handler_t *) enetInt, NULL); |
| 444 | irq_install_handler (VECNUM_MS, (interrupt_handler_t *) enetInt, NULL); |
| 445 | irq_install_handler (VECNUM_MTE, (interrupt_handler_t *) enetInt, NULL); |
| 446 | irq_install_handler (VECNUM_MRE, (interrupt_handler_t *) enetInt, NULL); |
| 447 | irq_install_handler (VECNUM_TXDE, (interrupt_handler_t *) enetInt, NULL); |
| 448 | irq_install_handler (VECNUM_RXDE, (interrupt_handler_t *) enetInt, NULL); |
| 449 | irq_install_handler (VECNUM_ETH0, (interrupt_handler_t *) enetInt, NULL); |
| 450 | } |
| 451 | |
| 452 | /* set up interrupt handler */ |
| 453 | /* setup interrupt controler to take interrupts from the MAL & |
| 454 | EMAC */ |
| 455 | mtdcr (uicsr, 0xffffffff); /* clear pending interrupts */ |
| 456 | mtdcr (uicer, mfdcr (uicer) | MAL_UIC_DEF | EMAC_UIC_DEF); |
| 457 | |
| 458 | /* set the MAL IER ??? names may change with new spec ??? */ |
| 459 | mal_ier = MAL_IER_DE | MAL_IER_NE | MAL_IER_TE | MAL_IER_OPBE | |
| 460 | MAL_IER_PLBE; |
| 461 | mtdcr (malesr, 0xffffffff); /* clear pending interrupts */ |
| 462 | mtdcr (maltxdeir, 0xffffffff); /* clear pending interrupts */ |
| 463 | mtdcr (malrxdeir, 0xffffffff); /* clear pending interrupts */ |
| 464 | mtdcr (malier, mal_ier); |
| 465 | |
| 466 | /* Set EMAC IER */ |
| 467 | emac_ier = EMAC_ISR_PTLE | EMAC_ISR_BFCS | |
| 468 | EMAC_ISR_PTLE | EMAC_ISR_ORE | EMAC_ISR_IRE; |
| 469 | if (speed == _100BASET) |
| 470 | emac_ier = emac_ier | EMAC_ISR_SYE; |
| 471 | |
| 472 | out32 (EMAC_ISR, 0xffffffff); /* clear pending interrupts */ |
| 473 | out32 (EMAC_IER, emac_ier); |
| 474 | |
| 475 | mtmsr (msr); /* enable interrupts again */ |
| 476 | |
| 477 | bis_save = bis; |
| 478 | first_init = 1; |
| 479 | |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 480 | return (1); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 484 | static int ppc_4xx_eth_send (struct eth_device *dev, volatile void *ptr, int len) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 485 | { |
| 486 | struct enet_frame *ef_ptr; |
| 487 | ulong time_start, time_now; |
| 488 | unsigned long temp_txm0; |
| 489 | |
| 490 | ef_ptr = (struct enet_frame *) ptr; |
| 491 | |
| 492 | /*-----------------------------------------------------------------------+ |
| 493 | * Copy in our address into the frame. |
| 494 | *-----------------------------------------------------------------------*/ |
| 495 | (void) memcpy (ef_ptr->source_addr, emac_hwd_addr, ENET_ADDR_LENGTH); |
| 496 | |
| 497 | /*-----------------------------------------------------------------------+ |
| 498 | * If frame is too long or too short, modify length. |
| 499 | *-----------------------------------------------------------------------*/ |
| 500 | if (len > ENET_MAX_MTU) |
| 501 | len = ENET_MAX_MTU; |
| 502 | |
| 503 | /* memcpy ((void *) &tx_buff[tx_slot], (const void *) ptr, len); */ |
| 504 | memcpy ((void *) txbuf_ptr, (const void *) ptr, len); |
| 505 | |
| 506 | /*-----------------------------------------------------------------------+ |
| 507 | * set TX Buffer busy, and send it |
| 508 | *-----------------------------------------------------------------------*/ |
| 509 | tx[tx_slot].ctrl = (MAL_TX_CTRL_LAST | |
| 510 | EMAC_TX_CTRL_GFCS | EMAC_TX_CTRL_GP) & |
| 511 | ~(EMAC_TX_CTRL_ISA | EMAC_TX_CTRL_RSA); |
| 512 | if ((NUM_TX_BUFF - 1) == tx_slot) |
| 513 | tx[tx_slot].ctrl |= MAL_TX_CTRL_WRAP; |
| 514 | |
| 515 | tx[tx_slot].data_len = (short) len; |
| 516 | tx[tx_slot].ctrl |= MAL_TX_CTRL_READY; |
| 517 | |
| 518 | __asm__ volatile ("eieio"); |
| 519 | out32 (EMAC_TXM0, in32 (EMAC_TXM0) | EMAC_TXM0_GNP0); |
| 520 | #ifdef INFO_405_ENET |
| 521 | packetSent++; |
| 522 | #endif |
| 523 | |
| 524 | /*-----------------------------------------------------------------------+ |
| 525 | * poll unitl the packet is sent and then make sure it is OK |
| 526 | *-----------------------------------------------------------------------*/ |
| 527 | time_start = get_timer (0); |
| 528 | while (1) { |
| 529 | temp_txm0 = in32 (EMAC_TXM0); |
| 530 | /* loop until either TINT turns on or 3 seconds elapse */ |
| 531 | if ((temp_txm0 & EMAC_TXM0_GNP0) != 0) { |
| 532 | /* transmit is done, so now check for errors |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 533 | * If there is an error, an interrupt should |
| 534 | * happen when we return |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 535 | */ |
| 536 | time_now = get_timer (0); |
| 537 | if ((time_now - time_start) > 3000) { |
| 538 | return (-1); |
| 539 | } |
| 540 | } else { |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 541 | return (len); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 542 | } |
| 543 | } |
| 544 | } |
| 545 | |
| 546 | |
| 547 | #if defined(CONFIG_440) |
| 548 | /*-----------------------------------------------------------------------------+ |
| 549 | | EnetInt. |
| 550 | | EnetInt is the interrupt handler. It will determine the |
| 551 | | cause of the interrupt and call the apporpriate servive |
| 552 | | routine. |
| 553 | +-----------------------------------------------------------------------------*/ |
| 554 | int enetInt () |
| 555 | { |
| 556 | int serviced; |
| 557 | int rc = -1; /* default to not us */ |
| 558 | unsigned long mal_isr; |
| 559 | unsigned long emac_isr = 0; |
| 560 | unsigned long mal_rx_eob; |
| 561 | unsigned long my_uic0msr, my_uic1msr; |
| 562 | |
| 563 | /* enter loop that stays in interrupt code until nothing to service */ |
| 564 | do { |
| 565 | serviced = 0; |
| 566 | |
| 567 | my_uic0msr = mfdcr (uic0msr); |
| 568 | my_uic1msr = mfdcr (uic1msr); |
| 569 | |
| 570 | if (!(my_uic0msr & UIC_MRE) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 571 | && !(my_uic1msr & (UIC_ETH0 | UIC_MS | UIC_MTDE | UIC_MRDE))) { |
| 572 | /* not for us */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 573 | return (rc); |
| 574 | } |
| 575 | |
| 576 | /* get and clear controller status interrupts */ |
| 577 | /* look at Mal and EMAC interrupts */ |
| 578 | if ((my_uic0msr & UIC_MRE) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 579 | || (my_uic1msr & (UIC_MS | UIC_MTDE | UIC_MRDE))) { |
| 580 | /* we have a MAL interrupt */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 581 | mal_isr = mfdcr (malesr); |
| 582 | /* look for mal error */ |
| 583 | if (my_uic1msr & (UIC_MS | UIC_MTDE | UIC_MRDE)) { |
| 584 | mal_err (mal_isr, my_uic0msr, MAL_UIC_DEF, MAL_UIC_ERR); |
| 585 | serviced = 1; |
| 586 | rc = 0; |
| 587 | } |
| 588 | } |
| 589 | if (UIC_ETH0 & my_uic1msr) { /* look for EMAC errors */ |
| 590 | emac_isr = in32 (EMAC_ISR); |
| 591 | if ((emac_ier & emac_isr) != 0) { |
| 592 | emac_err (emac_isr); |
| 593 | serviced = 1; |
| 594 | rc = 0; |
| 595 | } |
| 596 | } |
| 597 | if ((emac_ier & emac_isr) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 598 | || (my_uic1msr & (UIC_MS | UIC_MTDE | UIC_MRDE))) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 599 | mtdcr (uic0sr, UIC_MRE); /* Clear */ |
| 600 | mtdcr (uic1sr, UIC_ETH0 | UIC_MS | UIC_MTDE | UIC_MRDE); /* Clear */ |
| 601 | return (rc); /* we had errors so get out */ |
| 602 | } |
| 603 | |
| 604 | /* handle MAL RX EOB interupt from a receive */ |
| 605 | /* check for EOB on valid channels */ |
| 606 | if (my_uic0msr & UIC_MRE) { |
| 607 | mal_rx_eob = mfdcr (malrxeobisr); |
| 608 | if ((mal_rx_eob & 0x80000000) != 0) { /* call emac routine for channel 0 */ |
| 609 | /* clear EOB |
| 610 | mtdcr(malrxeobisr, mal_rx_eob); */ |
| 611 | enet_rcv (emac_isr); |
| 612 | /* indicate that we serviced an interrupt */ |
| 613 | serviced = 1; |
| 614 | rc = 0; |
| 615 | } |
| 616 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 617 | mtdcr (uic0sr, UIC_MRE); /* Clear */ |
| 618 | mtdcr (uic1sr, UIC_ETH0 | UIC_MS | UIC_MTDE | UIC_MRDE); /* Clear */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 619 | } while (serviced); |
| 620 | |
| 621 | return (rc); |
| 622 | } |
| 623 | #else /* CONFIG_440 */ |
| 624 | /*-----------------------------------------------------------------------------+ |
| 625 | * EnetInt. |
| 626 | * EnetInt is the interrupt handler. It will determine the |
| 627 | * cause of the interrupt and call the apporpriate servive |
| 628 | * routine. |
| 629 | *-----------------------------------------------------------------------------*/ |
| 630 | int enetInt () |
| 631 | { |
| 632 | int serviced; |
| 633 | int rc = -1; /* default to not us */ |
| 634 | unsigned long mal_isr; |
| 635 | unsigned long emac_isr = 0; |
| 636 | unsigned long mal_rx_eob; |
| 637 | unsigned long my_uicmsr; |
| 638 | |
| 639 | /* enter loop that stays in interrupt code until nothing to service */ |
| 640 | do { |
| 641 | serviced = 0; |
| 642 | |
| 643 | my_uicmsr = mfdcr (uicmsr); |
| 644 | if ((my_uicmsr & (MAL_UIC_DEF | EMAC_UIC_DEF)) == 0) { /* not for us */ |
| 645 | return (rc); |
| 646 | } |
| 647 | |
| 648 | |
| 649 | /* get and clear controller status interrupts */ |
| 650 | /* look at Mal and EMAC interrupts */ |
| 651 | if ((MAL_UIC_DEF & my_uicmsr) != 0) { /* we have a MAL interrupt */ |
| 652 | mal_isr = mfdcr (malesr); |
| 653 | /* look for mal error */ |
| 654 | if ((my_uicmsr & MAL_UIC_ERR) != 0) { |
| 655 | mal_err (mal_isr, my_uicmsr, MAL_UIC_DEF, MAL_UIC_ERR); |
| 656 | serviced = 1; |
| 657 | rc = 0; |
| 658 | } |
| 659 | } |
| 660 | if ((EMAC_UIC_DEF & my_uicmsr) != 0) { /* look for EMAC errors */ |
| 661 | emac_isr = in32 (EMAC_ISR); |
| 662 | if ((emac_ier & emac_isr) != 0) { |
| 663 | emac_err (emac_isr); |
| 664 | serviced = 1; |
| 665 | rc = 0; |
| 666 | } |
| 667 | } |
| 668 | if (((emac_ier & emac_isr) != 0) | ((MAL_UIC_ERR & my_uicmsr) != 0)) { |
| 669 | mtdcr (uicsr, MAL_UIC_DEF | EMAC_UIC_DEF); /* Clear */ |
| 670 | return (rc); /* we had errors so get out */ |
| 671 | } |
| 672 | |
| 673 | |
| 674 | /* handle MAL RX EOB interupt from a receive */ |
| 675 | /* check for EOB on valid channels */ |
| 676 | if ((my_uicmsr & UIC_MAL_RXEOB) != 0) { |
| 677 | mal_rx_eob = mfdcr (malrxeobisr); |
| 678 | if ((mal_rx_eob & 0x80000000) != 0) { /* call emac routine for channel 0 */ |
| 679 | /* clear EOB |
| 680 | mtdcr(malrxeobisr, mal_rx_eob); */ |
| 681 | enet_rcv (emac_isr); |
| 682 | /* indicate that we serviced an interrupt */ |
| 683 | serviced = 1; |
| 684 | rc = 0; |
| 685 | } |
| 686 | } |
| 687 | mtdcr (uicsr, MAL_UIC_DEF | EMAC_UIC_DEF); /* Clear */ |
| 688 | } |
| 689 | while (serviced); |
| 690 | |
| 691 | return (rc); |
| 692 | } |
| 693 | #endif /* CONFIG_440 */ |
| 694 | |
| 695 | /*-----------------------------------------------------------------------------+ |
| 696 | * MAL Error Routine |
| 697 | *-----------------------------------------------------------------------------*/ |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 698 | static void mal_err (unsigned long isr, unsigned long uic, unsigned long maldef, |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 699 | unsigned long mal_errr) |
| 700 | { |
| 701 | mtdcr (malesr, isr); /* clear interrupt */ |
| 702 | |
| 703 | /* clear DE interrupt */ |
| 704 | mtdcr (maltxdeir, 0xC0000000); |
| 705 | mtdcr (malrxdeir, 0x80000000); |
| 706 | |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 707 | #ifdef INFO_405_ENET |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 708 | printf ("\nMAL error occured.... ISR = %lx UIC = = %lx MAL_DEF = %lx MAL_ERR= %lx \n", |
| 709 | isr, uic, maldef, mal_errr); |
| 710 | #else |
| 711 | #if 0 |
| 712 | /* |
| 713 | * MAL error is RX DE error (out of rx buffers)! This is OK here, upon |
| 714 | * many incoming packets with only 4 rx buffers. |
| 715 | */ |
| 716 | printf ("M"); /* just to see something upon mal error */ |
| 717 | #endif |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 718 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 719 | |
| 720 | eth_init (bis_save); /* start again... */ |
| 721 | } |
| 722 | |
| 723 | /*-----------------------------------------------------------------------------+ |
| 724 | * EMAC Error Routine |
| 725 | *-----------------------------------------------------------------------------*/ |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 726 | static void emac_err (unsigned long isr) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 727 | { |
| 728 | printf ("EMAC error occured.... ISR = %lx\n", isr); |
| 729 | out32 (EMAC_ISR, isr); |
| 730 | } |
| 731 | |
| 732 | /*-----------------------------------------------------------------------------+ |
| 733 | * enet_rcv() handles the ethernet receive data |
| 734 | *-----------------------------------------------------------------------------*/ |
| 735 | static void enet_rcv (unsigned long malisr) |
| 736 | { |
| 737 | struct enet_frame *ef_ptr; |
| 738 | unsigned long data_len; |
| 739 | unsigned long rx_eob_isr; |
| 740 | |
| 741 | int handled = 0; |
| 742 | int i; |
| 743 | int loop_count = 0; |
| 744 | |
| 745 | rx_eob_isr = mfdcr (malrxeobisr); |
| 746 | if ((0x80000000 >> (EMAC_RXCHL - 1)) & rx_eob_isr) { |
| 747 | /* clear EOB */ |
| 748 | mtdcr (malrxeobisr, rx_eob_isr); |
| 749 | |
| 750 | /* EMAC RX done */ |
| 751 | while (1) { /* do all */ |
| 752 | i = rx_slot; |
| 753 | |
| 754 | if ((MAL_RX_CTRL_EMPTY & rx[i].ctrl) |
| 755 | || (loop_count >= NUM_RX_BUFF)) |
| 756 | break; |
| 757 | loop_count++; |
| 758 | rx_slot++; |
| 759 | if (NUM_RX_BUFF == rx_slot) |
| 760 | rx_slot = 0; |
| 761 | handled++; |
| 762 | data_len = (unsigned long) rx[i].data_len; /* Get len */ |
| 763 | if (data_len) { |
| 764 | if (data_len > ENET_MAX_MTU) /* Check len */ |
| 765 | data_len = 0; |
| 766 | else { |
| 767 | if (EMAC_RX_ERRORS & rx[i].ctrl) { /* Check Errors */ |
| 768 | data_len = 0; |
| 769 | stats.rx_err_log[rx_err_index] = rx[i].ctrl; |
| 770 | rx_err_index++; |
| 771 | if (rx_err_index == MAX_ERR_LOG) |
| 772 | rx_err_index = 0; |
| 773 | } /* emac_erros */ |
| 774 | } /* data_len < max mtu */ |
| 775 | } /* if data_len */ |
| 776 | if (!data_len) { /* no data */ |
| 777 | rx[i].ctrl |= MAL_RX_CTRL_EMPTY; /* Free Recv Buffer */ |
| 778 | |
| 779 | stats.emac.data_len_err++; /* Error at Rx */ |
| 780 | } |
| 781 | |
| 782 | /* !data_len */ |
| 783 | /* AS.HARNOIS */ |
| 784 | /* Check if user has already eaten buffer */ |
| 785 | /* if not => ERROR */ |
| 786 | else if (rx_ready[rx_i_index] != -1) { |
| 787 | if (is_receiving) |
| 788 | printf ("ERROR : Receive buffers are full!\n"); |
| 789 | break; |
| 790 | } else { |
| 791 | stats.emac.rx_frames++; |
| 792 | stats.emac.rx += data_len; |
| 793 | ef_ptr = (struct enet_frame *) rx[i].data_ptr; |
| 794 | #ifdef INFO_405_ENET |
| 795 | packetReceived++; |
| 796 | #endif |
| 797 | /* AS.HARNOIS |
| 798 | * use ring buffer |
| 799 | */ |
| 800 | rx_ready[rx_i_index] = i; |
| 801 | rx_i_index++; |
| 802 | if (NUM_RX_BUFF == rx_i_index) |
| 803 | rx_i_index = 0; |
| 804 | |
| 805 | /* printf("X"); /|* test-only *|/ */ |
| 806 | |
| 807 | /* AS.HARNOIS |
| 808 | * free receive buffer only when |
| 809 | * buffer has been handled (eth_rx) |
| 810 | rx[i].ctrl |= MAL_RX_CTRL_EMPTY; |
| 811 | */ |
| 812 | } /* if data_len */ |
| 813 | } /* while */ |
| 814 | } /* if EMACK_RXCHL */ |
| 815 | } |
| 816 | |
| 817 | |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 818 | static int ppc_4xx_eth_rx (struct eth_device *dev) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 819 | { |
| 820 | int length; |
| 821 | int user_index; |
| 822 | unsigned long msr; |
| 823 | |
| 824 | is_receiving = 1; /* tell driver */ |
| 825 | |
| 826 | for (;;) { |
| 827 | /* AS.HARNOIS |
| 828 | * use ring buffer and |
| 829 | * get index from rx buffer desciptor queue |
| 830 | */ |
| 831 | user_index = rx_ready[rx_u_index]; |
| 832 | if (user_index == -1) { |
| 833 | length = -1; |
| 834 | break; /* nothing received - leave for() loop */ |
| 835 | } |
| 836 | |
| 837 | msr = mfmsr (); |
| 838 | mtmsr (msr & ~(MSR_EE)); |
| 839 | |
| 840 | length = rx[user_index].data_len; |
| 841 | |
| 842 | /* Pass the packet up to the protocol layers. */ |
| 843 | /* NetReceive(NetRxPackets[rxIdx], length - 4); */ |
| 844 | /* NetReceive(NetRxPackets[i], length); */ |
| 845 | NetReceive (NetRxPackets[user_index], length - 4); |
| 846 | /* Free Recv Buffer */ |
| 847 | rx[user_index].ctrl |= MAL_RX_CTRL_EMPTY; |
| 848 | /* Free rx buffer descriptor queue */ |
| 849 | rx_ready[rx_u_index] = -1; |
| 850 | rx_u_index++; |
| 851 | if (NUM_RX_BUFF == rx_u_index) |
| 852 | rx_u_index = 0; |
| 853 | |
| 854 | #ifdef INFO_405_ENET |
| 855 | packetHandled++; |
| 856 | #endif |
| 857 | |
| 858 | mtmsr (msr); /* Enable IRQ's */ |
| 859 | } |
| 860 | |
| 861 | is_receiving = 0; /* tell driver */ |
| 862 | |
| 863 | return length; |
| 864 | } |
| 865 | |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 866 | #if defined(CONFIG_NET_MULTI) |
| 867 | int ppc_4xx_eth_initialize(bd_t *bis) |
| 868 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 869 | struct eth_device *dev; |
| 870 | int eth_num = 0; |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 871 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 872 | dev = malloc (sizeof *dev); |
| 873 | if (dev == NULL) { |
| 874 | printf(__FUNCTION__ ": Cannot allocate eth_device\n"); |
| 875 | return (-1); |
| 876 | } |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 877 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 878 | sprintf(dev->name, "ppc_4xx_eth%d", eth_num); |
| 879 | dev->priv = (void *) eth_num; |
| 880 | dev->init = ppc_4xx_eth_init; |
| 881 | dev->halt = ppc_4xx_eth_halt; |
| 882 | dev->send = ppc_4xx_eth_send; |
| 883 | dev->recv = ppc_4xx_eth_rx; |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 884 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 885 | eth_register (dev); |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 886 | } |
| 887 | #else /* !defined(CONFIG_NET_MULTI) */ |
| 888 | void eth_halt (void) |
| 889 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 890 | ppc_4xx_eth_halt(NULL); |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 891 | } |
| 892 | |
| 893 | int eth_init (bd_t *bis) |
| 894 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 895 | return (ppc_4xx_eth_init(NULL, bis)); |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 896 | } |
| 897 | int eth_send(volatile void *packet, int length) |
| 898 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 899 | return (ppc_4xx_eth_send(NULL, packet, length)); |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 900 | } |
| 901 | |
| 902 | int eth_rx(void) |
| 903 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 904 | return (ppc_4xx_eth_rx(NULL)); |
wdenk | a3ed399 | 2003-06-05 19:37:36 +0000 | [diff] [blame] | 905 | } |
| 906 | #endif /* !defined(CONFIG_NET_MULTI) */ |
| 907 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 908 | #endif /* CONFIG_405GP */ |