1 /**************************************************************************
2 Etherboot - BOOTP/TFTP Bootstrap Program
3 Skeleton NIC driver for Etherboot
4 ***************************************************************************/
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2, or (at
10 * your option) any later version.
14 * This file is a modified version from the Galileo polled mode
15 * network driver for the ethernet contained within the GT64260
16 * chip. It has been modified to fit into the U-Boot framework, from
17 * the original (etherboot) setup. Also, additional cleanup and features
20 * - Josh Huber <huber@mclx.com>
25 #include <galileo/gt64260R.h>
26 #include <galileo/core.h>
27 #include <asm/cache.h>
32 #include "eth_addrtbl.h"
34 #if (CONFIG_COMMANDS & CFG_CMD_NET) && defined(CONFIG_NET_MULTI)
36 #define GT6426x_ETH_BUF_SIZE 1536
38 /* if you like verbose output, turn this on! */
41 /* Restart autoneg if we detect link is up on phy init. */
44 * The GT doc's say that after Rst is deasserted, and the PHY
45 * reports autoneg complete, it runs through its autoneg
46 * procedures. This doesn't seem to be the case for MII
47 * PHY's. To work around this check for link up && autoneg
48 * complete when initilizing the port. If they are both set,
49 * then restart PHY autoneg. Of course, it may be something
50 * completly different.
52 #ifdef CONFIG_ETHER_PORT_MII
53 # define RESTART_AUTONEG
56 /* do this if you dont want to use snooping */
57 #define USE_SOFTWARE_CACHE_MANAGEMENT
59 #ifdef USE_SOFTWARE_CACHE_MANAGEMENT
60 #define FLUSH_DCACHE(a,b) if(dcache_status()){clean_dcache_range((u32)(a),(u32)(b));}
61 #define FLUSH_AND_INVALIDATE_DCACHE(a,b) if(dcache_status()){flush_dcache_range((u32)(a),(u32)(b));}
62 #define INVALIDATE_DCACHE(a,b) if(dcache_status()){invalidate_dcache_range((u32)(a),(u32)(b));}
64 /* bummer - w/o flush, nothing works, even with snooping - FIXME */
65 /* #define FLUSH_DCACHE(a,b) */
66 #define FLUSH_DCACHE(a,b) if(dcache_status()){clean_dcache_range((u32)(a),(u32)(b));}
67 #define FLUSH_AND_INVALIDATE_DCACHE(a,b)
68 #define INVALIDATE_DCACHE(a,b)
71 eth0_tx_desc_single *eth_tx_desc;
72 eth0_rx_desc_single *eth_rx_desc;
74 char *eth_rx_buffer[NR];
77 unsigned int reg_base;
81 #ifdef CONFIG_INTEL_LXT97X
82 /* for intel LXT972 */
83 static const char ether_port_phy_addr[3]={0,1,2};
85 static const char ether_port_phy_addr[3]={4,5,6};
89 static inline unsigned short
90 miiphy_read_ret(unsigned short phy, unsigned short reg)
93 miiphy_read(phy,reg,&val);
98 /**************************************************************************
100 ***************************************************************************/
102 gt6426x_eth_reset(void *v)
104 /* we should do something here...
105 struct eth_device *wp = (struct eth_device *)v;
106 struct eth_dev_s *p = wp->priv;
110 /* put the card in its initial state */
113 static void gt6426x_handle_SMI(struct eth_dev_s *p, unsigned int icr)
116 printf("SMI interrupt: ");
119 printf("SMI done\n");
125 psr=GTREGREAD(ETHERNET0_PORT_STATUS_REGISTER + p->reg_base);
127 printf("PHY state change:\n"
130 psr&8?" Link":"nLink",
134 #ifdef CONFIG_INTEL_LXT97X /* non-standard mii reg (intel lxt972a) */
136 unsigned short mii_11;
137 mii_11=miiphy_read_ret(ether_port_phy_addr[p->dev],0x11);
139 printf(" mii:%s:%s:%s:%s %s:%s %s\n",
140 mii_11&(1<<14)?"100":" 10",
141 mii_11&(1<<10)?" Link":"nLink",
142 mii_11&(1<<9)?"FD":"HD",
143 mii_11&(1<<4)?" FC":"nFC",
145 mii_11&(1<<7)?"ANc":"ANnc",
146 mii_11&(1<<8)?"AN":"Manual",
150 #endif /* CONFIG_INTEL_LXT97X */
156 gt6426x_eth_receive(struct eth_dev_s *p,unsigned int icr)
161 eth0_rx_desc_single *rx=&p->eth_rx_desc[(p->rdn)];
163 INVALIDATE_DCACHE((unsigned int)rx,(unsigned int)(rx+1));
165 if (rx->command_status & 0x80000000) {
166 return 0; /* No packet received */
169 eth_len = (unsigned int)
170 (rx->buff_size_byte_count) & 0x0000ffff;
171 eth_data = (char *) p->eth_rx_buffer[p->rdn];
175 printf ("%s: Recived %d byte Packet @ 0x%p\n",
176 __FUNCTION__, eth_len, eth_data);
181 * eth0_rx_buffer[RDN_ETH0];
184 /* let the upper layer handle the packet */
185 NetReceive (eth_data, eth_len);
187 rx->buff_size_byte_count = GT6426x_ETH_BUF_SIZE<<16;
191 rx->command_status = 0x80000000;
193 FLUSH_DCACHE((unsigned int)rx,(unsigned int)(rx+1));
196 if (p->rdn == NR) {p->rdn = 0;}
201 GT_REG_WRITE (ETHERNET0_SDMA_COMMAND_REGISTER + p->reg_base, 0x00000080);
207 printf(" %02x", eth_data[i]);
210 printf(": %d bytes\n", eth_len);
212 INVALIDATE_DCACHE((unsigned int)eth_data,
213 (unsigned int)eth_data+eth_len);
217 /**************************************************************************
218 POLL - look for an rx frame, handle other conditions
219 ***************************************************************************/
221 gt6426x_eth_poll(void *v)
223 struct eth_device *wp = (struct eth_device *)v;
224 struct eth_dev_s *p = wp->priv;
225 unsigned int icr=GTREGREAD(ETHERNET0_INTERRUPT_CAUSE_REGISTER + p->reg_base);
228 GT_REG_WRITE(ETHERNET0_INTERRUPT_CAUSE_REGISTER +p->reg_base, 0);
230 printf("poll got ICR %08x\n", icr);
232 /* SMI done or PHY state change*/
233 if(icr&0x30000000) gt6426x_handle_SMI(p, icr);
235 /* always process. We aren't using RX interrupts */
236 return gt6426x_eth_receive(p, icr);
239 /**************************************************************************
240 TRANSMIT - Transmit a frame
241 ***************************************************************************/
243 gt6426x_eth_transmit(void *v, volatile char *p, unsigned int s)
245 struct eth_device *wp = (struct eth_device *)v;
246 struct eth_dev_s *dev = (struct eth_dev_s *)wp->priv;
248 unsigned int old_command_stat,old_psr;
250 eth0_tx_desc_single *tx=&dev->eth_tx_desc[dev->tdn];
252 /* wait for tx to be ready */
253 INVALIDATE_DCACHE((unsigned int)tx,(unsigned int)(tx+1));
254 while (tx->command_status & 0x80000000) {
257 INVALIDATE_DCACHE((unsigned int)tx,(unsigned int)(tx+1));
260 GT_REG_WRITE (ETHERNET0_CURRENT_TX_DESCRIPTOR_POINTER0 + dev->reg_base,
264 printf("copying to tx_buffer [%p], length %x, desc = %p\n",
265 dev->eth_tx_buffer, s, dev->eth_tx_desc);
267 memcpy(dev->eth_tx_buffer, (char *) p, s);
269 tx->buff_pointer = dev->eth_tx_buffer;
270 tx->bytecount_reserved = ((__u16)s) << 16;
274 * 18:16 - pad, last, first */
275 tx->command_status = (1<<31) | (1<<22) | (7<<16);
278 tx->next_desc = NULL;
281 (struct eth0_tx_desc_struct *)
282 &dev->eth_tx_desc[(dev->tdn+1)%NT].bytecount_reserved;
285 dev->eth_tx_desc[(dev->tdn+1)%NT].command_status = (7<<16); /* pad, last, first */
289 old_command_stat=tx->command_status,
290 old_psr=GTREGREAD(ETHERNET0_PORT_STATUS_REGISTER + dev->reg_base);
293 FLUSH_DCACHE((unsigned int)tx,
294 (unsigned int)&dev->eth_tx_desc[(dev->tdn+2)%NT]);
296 FLUSH_DCACHE((unsigned int)dev->eth_tx_buffer,(unsigned int)dev->eth_tx_buffer+s);
298 GT_REG_WRITE(ETHERNET0_SDMA_COMMAND_REGISTER + dev->reg_base, 0x01000000);
302 unsigned int command_stat=0;
303 printf("cmd_stat: %08x PSR: %08x\n", old_command_stat, old_psr);
304 /* wait for tx to be ready */
306 unsigned int psr=GTREGREAD(ETHERNET0_PORT_STATUS_REGISTER + dev->reg_base);
307 command_stat=tx->command_status;
308 if(command_stat!=old_command_stat || psr !=old_psr) {
309 printf("cmd_stat: %08x PSR: %08x\n", command_stat, psr);
310 old_command_stat = command_stat;
313 /* gt6426x_eth0_poll(); */
314 } while (command_stat & 0x80000000);
316 printf("sent %d byte frame\n", s);
318 if((command_stat & (3<<15)) == 3) {
319 printf("frame had error (stat=%08x)\n", command_stat);
326 /**************************************************************************
327 DISABLE - Turn off ethernet interface
328 ***************************************************************************/
330 gt6426x_eth_disable(void *v)
332 struct eth_device *wp = (struct eth_device *)v;
333 struct eth_dev_s *p = (struct eth_dev_s *)wp->priv;
335 GT_REG_WRITE(ETHERNET0_SDMA_COMMAND_REGISTER + p->reg_base, 0x80008000);
338 /**************************************************************************
339 MII utilities - write: write to an MII register via SMI
340 ***************************************************************************/
342 miiphy_write(unsigned char phy, unsigned char reg,
345 unsigned int temp= (reg<<21) | (phy<<16) | data;
347 while(GTREGREAD(ETHERNET_SMI_REGISTER) & (1<<28)); /* wait for !Busy */
349 GT_REG_WRITE(ETHERNET_SMI_REGISTER, temp);
353 /**************************************************************************
354 MII utilities - read: read from an MII register via SMI
355 ***************************************************************************/
357 miiphy_read(unsigned char phy, unsigned char reg,
360 unsigned int temp= (reg<<21) | (phy<<16) | 1<<26;
362 while(GTREGREAD(ETHERNET_SMI_REGISTER) & (1<<28)); /* wait for !Busy */
364 GT_REG_WRITE(ETHERNET_SMI_REGISTER, temp);
367 temp=GTREGREAD(ETHERNET_SMI_REGISTER);
368 if(temp & (1<<27)) break; /* wait for ReadValid */
370 *val = temp & 0xffff;
376 /**************************************************************************
377 MII utilities - dump mii registers
378 ***************************************************************************/
380 gt6426x_dump_mii(bd_t *bis, unsigned short phy)
382 printf("mii reg 0 - 3: %04x %04x %04x %04x\n",
383 miiphy_read_ret(phy, 0x0),
384 miiphy_read_ret(phy, 0x1),
385 miiphy_read_ret(phy, 0x2),
386 miiphy_read_ret(phy, 0x3)
388 printf(" 4 - 7: %04x %04x %04x %04x\n",
389 miiphy_read_ret(phy, 0x4),
390 miiphy_read_ret(phy, 0x5),
391 miiphy_read_ret(phy, 0x6),
392 miiphy_read_ret(phy, 0x7)
395 miiphy_read_ret(phy, 0x8)
397 printf(" 16-19: %04x %04x %04x %04x\n",
398 miiphy_read_ret(phy, 0x10),
399 miiphy_read_ret(phy, 0x11),
400 miiphy_read_ret(phy, 0x12),
401 miiphy_read_ret(phy, 0x13)
403 printf(" 20,30: %04x %04x\n",
404 miiphy_read_ret(phy, 20),
405 miiphy_read_ret(phy, 30)
410 #ifdef RESTART_AUTONEG
412 /* If link is up && autoneg compleate, and if
413 * GT and PHY disagree about link capabilitys,
414 * restart autoneg - something screwy with FD/HD
415 * unless we do this. */
417 check_phy_state(struct eth_dev_s *p)
419 int bmsr = miiphy_read_ret(ether_port_phy_addr[p->dev], PHY_BMSR);
420 int psr = GTREGREAD(ETHERNET0_PORT_STATUS_REGISTER + p->reg_base);
422 if ((psr & 1<<3) && (bmsr & PHY_BMSR_LS)) {
423 int nego = miiphy_read_ret(ether_port_phy_addr[p->dev], PHY_ANAR) &
424 miiphy_read_ret(ether_port_phy_addr[p->dev], PHY_ANLPAR);
427 if (nego & PHY_ANLPAR_TXFD) {
429 printf("MII: 100Base-TX, Full Duplex\n");
430 } else if (nego & PHY_ANLPAR_TX) {
432 printf("MII: 100Base-TX, Half Duplex\n");
433 } else if (nego & PHY_ANLPAR_10FD) {
435 printf("MII: 10Base-T, Full Duplex\n");
436 } else if (nego & PHY_ANLPAR_10) {
438 printf("MII: 10Base-T, Half Duplex\n");
440 printf("MII: Unknown link-foo! %x\n", nego);
444 if ((psr & 0x3) != want) {
445 printf("MII: GT thinks %x, PHY thinks %x, restarting autoneg..\n",
447 miiphy_write(ether_port_phy_addr[p->dev],0,
448 miiphy_read_ret(ether_port_phy_addr[p->dev],0) | (1<<9));
449 udelay(10000); /* the EVB's GT takes a while to notice phy
456 /**************************************************************************
457 PROBE - Look for an adapter, this routine's visible to the outside
458 ***************************************************************************/
460 gt6426x_eth_probe(void *v, bd_t *bis)
462 struct eth_device *wp = (struct eth_device *)v;
463 struct eth_dev_s *p = (struct eth_dev_s *)wp->priv;
465 unsigned int reg_base = p->reg_base;
469 if (( dev < 0 ) || ( dev >= GAL_ETH_DEVS ))
470 { /* This should never happen */
471 printf("%s: Invalid device %d\n", __FUNCTION__, dev );
476 printf ("%s: initializing %s\n", __FUNCTION__, wp->name );
477 printf ("\nCOMM_CONTROL = %08x , COMM_CONF = %08x\n",
478 GTREGREAD(COMM_UNIT_ARBITER_CONTROL),
479 GTREGREAD(COMM_UNIT_ARBITER_CONFIGURATION_REGISTER));
482 /* clear MIB counters */
484 temp=GTREGREAD(ETHERNET0_MIB_COUNTER_BASE + reg_base +i);
486 #ifdef CONFIG_INTEL_LXT97X
487 /* for intel LXT972 */
490 led 2: 0xc=link/rxact
491 led 3: 0x2=rxact (N/C)
492 strch: 0,2=30 ms, enable */
493 miiphy_write(ether_port_phy_addr[p->dev], 20, 0x1c22);
495 /* 2.7ns port rise time */
496 /*miiphy_write(ether_port_phy_addr[p->dev], 30, 0x0<<10); */
498 /* already set up in mpsc.c */
499 /*GT_REG_WRITE(MAIN_ROUTING_REGISTER, 0x7ffe38); / b400 */
501 /* already set up in sdram_init.S... */
502 /* MPSC0, MPSC1, RMII */
503 /*GT_REG_WRITE(SERIAL_PORT_MULTIPLEX, 0x1102); / f010 */
505 GT_REG_WRITE(ETHERNET_PHY_ADDRESS_REGISTER,
506 ether_port_phy_addr[0] |
507 (ether_port_phy_addr[1]<<5) |
508 (ether_port_phy_addr[2]<<10)); /* 2000 */
510 /* 13:12 - 10: 4x64bit burst (cache line size = 32 bytes)
511 * 9 - 1: RIFB - interrupt on frame boundaries only
512 * 6:7 - 00: big endian rx and tx
513 * 5:2 - 1111: 15 retries */
514 GT_REG_WRITE(ETHERNET0_SDMA_CONFIGURATION_REGISTER + reg_base,
515 (2<<12) | (1<<9) | (0xf<<2) ); /* 2440 */
517 #ifndef USE_SOFTWARE_CACHE_MANAGEMENT
518 /* enable rx/tx desc/buffer cache snoop */
519 GT_REG_READ(ETHERNET_0_ADDRESS_CONTROL_LOW + dev*0x20,
521 temp|= (1<<6)| (1<<14)| (1<<22)| (1<<30);
522 GT_REG_WRITE(ETHERNET_0_ADDRESS_CONTROL_LOW + dev*0x20,
526 /* 31 28 27 24 23 20 19 16
527 * 0000 0000 0000 0000 [0004]
529 * 1000 1101 0000 0000 [4d00]
531 * 19 - 0=speed autoneg
532 * 15:14 - framesize 1536 (GT6426x_ETH_BUF_SIZE)
533 * 11 - no force link pass
534 * 10 - 1=disable fctl autoneg
535 * 8 - override prio ?? */
537 #ifndef CONFIG_ETHER_PORT_MII
538 temp |= (1<<20); /* RMII */
541 GT_REG_WRITE(ETHERNET0_PORT_CONFIGURATION_EXTEND_REGISTER + reg_base,
544 /* hardcode E1 also? */
545 /* -- according to dox, this is safer due to extra pulldowns? */
547 GT_REG_WRITE(ETHERNET0_PORT_CONFIGURATION_EXTEND_REGISTER + (dev+1) * 0x400,
551 /* wake up MAC */ /* 2400 */
552 GT_REG_READ(ETHERNET0_PORT_CONFIGURATION_REGISTER + reg_base, &temp);
553 temp |= (1<<7); /* enable port */
554 #ifdef CONFIG_GT_USE_MAC_HASH_TABLE
555 temp |= (1<<12); /* hash size 1/2k */
557 temp |= 1; /* promisc */
559 GT_REG_WRITE(ETHERNET0_PORT_CONFIGURATION_REGISTER + reg_base, temp);
562 #ifdef RESTART_AUTONEG
566 printf("%s: Waiting for link up..\n", wp->name);
568 /* wait for link back up */
569 while(!(GTREGREAD(ETHERNET0_PORT_STATUS_REGISTER + reg_base) & 8)
571 udelay(1000); /* wait 1 ms */
574 printf("%s: Failed!\n", wp->name);
578 printf("%s: OK!\n", wp->name);
582 p->eth_tx_desc[p->tdn].command_status = 0;
584 /* Initialize Rx Side */
585 for (temp = 0; temp < NR; temp++) {
586 p->eth_rx_desc[temp].buff_pointer = p->eth_rx_buffer[temp];
587 p->eth_rx_desc[temp].buff_size_byte_count = GT6426x_ETH_BUF_SIZE<<16;
590 p->eth_rx_desc[temp].command_status = 0x80000000;
591 p->eth_rx_desc[temp].next_desc =
592 (struct eth0_rx_desc_struct *)
593 &p->eth_rx_desc[(temp+1)%NR].buff_size_byte_count;
596 FLUSH_DCACHE((unsigned int)&p->eth_tx_desc[0],
597 (unsigned int)&p->eth_tx_desc[NR]);
598 FLUSH_DCACHE((unsigned int)&p->eth_rx_desc[0],
599 (unsigned int)&p->eth_rx_desc[NR]);
601 GT_REG_WRITE(ETHERNET0_CURRENT_TX_DESCRIPTOR_POINTER0 + reg_base,
602 (unsigned int) p->eth_tx_desc);
603 GT_REG_WRITE(ETHERNET0_FIRST_RX_DESCRIPTOR_POINTER0 + reg_base,
604 (unsigned int) p->eth_rx_desc);
605 GT_REG_WRITE(ETHERNET0_CURRENT_RX_DESCRIPTOR_POINTER0 + reg_base,
606 (unsigned int) p->eth_rx_desc);
609 printf ("\nRx descriptor pointer is %08x %08x\n",
610 GTREGREAD(ETHERNET0_FIRST_RX_DESCRIPTOR_POINTER0 + reg_base),
611 GTREGREAD(ETHERNET0_CURRENT_RX_DESCRIPTOR_POINTER0 + reg_base));
612 printf ("\n\n%08x %08x\n",
613 (unsigned int)p->eth_rx_desc,p->eth_rx_desc[0].command_status);
615 printf ("Descriptor dump:\n");
616 printf ("cmd status: %08x\n",p->eth_rx_desc[0].command_status);
617 printf ("byte_count: %08x\n",p->eth_rx_desc[0].buff_size_byte_count);
618 printf ("buff_ptr: %08x\n",(unsigned int)p->eth_rx_desc[0].buff_pointer);
619 printf ("next_desc: %08x\n\n",(unsigned int)p->eth_rx_desc[0].next_desc);
620 printf ("%08x\n",*(unsigned int *) ((unsigned int)p->eth_rx_desc + 0x0));
621 printf ("%08x\n",*(unsigned int *) ((unsigned int)p->eth_rx_desc + 0x4));
622 printf ("%08x\n",*(unsigned int *) ((unsigned int)p->eth_rx_desc + 0x8));
624 *(unsigned int *) ((unsigned int)p->eth_rx_desc + 0xc));
628 gt6426x_dump_mii(bis,ether_port_phy_addr[p->dev]);
631 #ifdef CONFIG_GT_USE_MAC_HASH_TABLE
633 unsigned int hashtable_base;
634 u8 *b = (u8 *)(wp->enetaddr);
637 /* twist the MAC up into the way the discovery wants it */
638 macH= (b[0]<<8) | b[1];
639 macL= (b[2]<<24) | (b[3]<<16) | (b[4]<<8) | b[5];
641 /* mode 0, size 0x800 */
642 hashtable_base =initAddressTable(dev,0,1);
644 if(!hashtable_base) {
645 printf("initAddressTable failed\n");
649 addAddressTableEntry(dev, macH, macL, 1, 0);
650 GT_REG_WRITE(ETHERNET0_HASH_TABLE_POINTER_REGISTER + reg_base,
656 GT_REG_WRITE(ETHERNET0_SDMA_COMMAND_REGISTER + reg_base, 0x00000080);
657 printf("%s: gt6426x eth device %d init success \n", wp->name, dev );
661 /* enter all the galileo ethernet devs into MULTI-BOOT */
663 gt6426x_eth_initialize(bd_t *bis)
665 struct eth_device *dev;
668 char *s, *e, buf[64];
671 printf( "\n%s\n", __FUNCTION );
674 for (devnum = 0; devnum < GAL_ETH_DEVS; devnum++) {
675 dev = calloc(sizeof(*dev), 1);
677 printf( "%s: gal_enet%d allocation failure, %s\n",
678 __FUNCTION__, devnum, "eth_device structure");
682 /* must be less than NAMESIZE (16) */
683 sprintf(dev->name, "gal_enet%d", devnum);
686 printf( "Initializing %s\n", dev->name );
689 /* Extract the MAC address from the environment */
692 case 0: s = "ethaddr"; break;
693 #if (GAL_ETH_DEVS > 1)
694 case 1: s = "eth1addr"; break;
696 #if (GAL_ETH_DEVS > 2)
697 case 2: s = "eth2addr"; break;
699 default: /* this should never happen */
700 printf( "%s: Invalid device number %d\n",
701 __FUNCTION__, devnum );
705 temp = getenv_r (s, buf, sizeof(buf));
706 s = (temp > 0) ? buf : NULL;
709 printf ("Setting MAC %d to %s\n", devnum, s );
711 for (x = 0; x < 6; ++x) {
712 dev->enetaddr[x] = s ? simple_strtoul(s, &e, 16) : 0;
717 dev->init = (void*)gt6426x_eth_probe;
718 dev->halt = (void*)gt6426x_eth_reset;
719 dev->send = (void*)gt6426x_eth_transmit;
720 dev->recv = (void*)gt6426x_eth_poll;
722 dev->priv = (void*)p = calloc( sizeof(*p), 1 );
725 printf( "%s: %s allocation failure, %s\n",
726 __FUNCTION__, dev->name, "Private Device Structure");
734 p->reg_base = devnum * ETHERNET_PORTS_DIFFERENCE_OFFSETS;
737 (eth0_tx_desc_single *)
738 (((unsigned int) malloc(sizeof (eth0_tx_desc_single) *
739 (NT+1)) & 0xfffffff0) + 0x10);
742 printf( "%s: %s allocation failure, %s\n",
743 __FUNCTION__, dev->name, "Tx Descriptor");
749 (eth0_rx_desc_single *)
750 (((unsigned int) malloc(sizeof (eth0_rx_desc_single) *
751 (NR+1)) & 0xfffffff0) + 0x10);
754 printf( "%s: %s allocation failure, %s\n",
755 __FUNCTION__, dev->name, "Rx Descriptor");
762 (char *) (((unsigned int) malloc(GT6426x_ETH_BUF_SIZE) & 0xfffffff0) + 0x10);
763 if (!p->eth_tx_buffer)
765 printf( "%s: %s allocation failure, %s\n",
766 __FUNCTION__, dev->name, "Tx Bufffer");
769 free(p->eth_rx_desc);
773 for (temp = 0 ; temp < NR ; temp ++) {
774 p->eth_rx_buffer[temp] =
776 (((unsigned int) malloc(GT6426x_ETH_BUF_SIZE) & 0xfffffff0) + 0x10);
777 if (!p->eth_rx_buffer[temp])
779 printf( "%s: %s allocation failure, %s\n",
780 __FUNCTION__, dev->name, "Rx Buffers");
783 free(p->eth_tx_buffer);
784 free(p->eth_rx_desc);
785 free(p->eth_tx_desc);
787 free(p->eth_rx_buffer[--temp]);
796 #endif /* CFG_CMD_NET && CONFIG_NET_MULTI */