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>
33 #include "eth_addrtbl.h"
35 #if defined(CONFIG_CMD_NET)
37 #define GT6426x_ETH_BUF_SIZE 1536
39 /* if you like verbose output, turn this on! */
42 /* Restart autoneg if we detect link is up on phy init. */
45 * The GT doc's say that after Rst is deasserted, and the PHY
46 * reports autoneg complete, it runs through its autoneg
47 * procedures. This doesn't seem to be the case for MII
48 * PHY's. To work around this check for link up && autoneg
49 * complete when initilizing the port. If they are both set,
50 * then restart PHY autoneg. Of course, it may be something
51 * completly different.
53 #ifdef CONFIG_ETHER_PORT_MII
54 # define RESTART_AUTONEG
57 /* do this if you dont want to use snooping */
58 #define USE_SOFTWARE_CACHE_MANAGEMENT
60 #ifdef USE_SOFTWARE_CACHE_MANAGEMENT
61 #define FLUSH_DCACHE(a,b) if(dcache_status()){clean_dcache_range((u32)(a),(u32)(b));}
62 #define FLUSH_AND_INVALIDATE_DCACHE(a,b) if(dcache_status()){flush_dcache_range((u32)(a),(u32)(b));}
63 #define INVALIDATE_DCACHE(a,b) if(dcache_status()){invalidate_dcache_range((u32)(a),(u32)(b));}
65 /* bummer - w/o flush, nothing works, even with snooping - FIXME */
66 /* #define FLUSH_DCACHE(a,b) */
67 #define FLUSH_DCACHE(a,b) if(dcache_status()){clean_dcache_range((u32)(a),(u32)(b));}
68 #define FLUSH_AND_INVALIDATE_DCACHE(a,b)
69 #define INVALIDATE_DCACHE(a,b)
72 eth0_tx_desc_single *eth_tx_desc;
73 eth0_rx_desc_single *eth_rx_desc;
75 char *eth_rx_buffer[NR];
78 unsigned int reg_base;
82 #ifdef CONFIG_INTEL_LXT97X
83 /* for intel LXT972 */
84 static const char ether_port_phy_addr[3]={0,1,2};
86 static const char ether_port_phy_addr[3]={4,5,6};
89 /* MII PHY access routines are common for all i/f, use gal_ent0 */
90 #define GT6426x_MII_DEVNAME "gal_enet0"
92 int gt6426x_miiphy_read(const char *devname, unsigned char phy,
93 unsigned char reg, unsigned short *val);
95 static inline unsigned short
96 miiphy_read_ret(unsigned short phy, unsigned short reg)
99 gt6426x_miiphy_read(GT6426x_MII_DEVNAME,phy,reg,&val);
104 /**************************************************************************
105 RESET - Reset adapter
106 ***************************************************************************/
108 gt6426x_eth_reset(void *v)
110 /* we should do something here...
111 struct eth_device *wp = (struct eth_device *)v;
112 struct eth_dev_s *p = wp->priv;
116 /* put the card in its initial state */
119 static void gt6426x_handle_SMI(struct eth_dev_s *p, unsigned int icr)
122 printf("SMI interrupt: ");
125 printf("SMI done\n");
133 psr=GTREGREAD(ETHERNET0_PORT_STATUS_REGISTER + p->reg_base);
134 printf("PHY state change:\n"
136 psr & 1 ? "100" : " 10",
137 psr & 8 ? " Link" : "nLink",
138 psr & 2 ? "FD" : "HD",
139 psr & 4 ? " FC" : "nFC");
141 #ifdef CONFIG_INTEL_LXT97X /* non-standard mii reg (intel lxt972a) */
143 unsigned short mii_11;
144 mii_11 = miiphy_read_ret(ether_port_phy_addr[p->dev], 0x11);
146 printf(" mii:%s:%s:%s:%s %s:%s %s\n",
147 mii_11 & (1 << 14) ? "100" : " 10",
148 mii_11 & (1 << 10) ? " Link" : "nLink",
149 mii_11 & (1 << 9) ? "FD" : "HD",
150 mii_11 & (1 << 4) ? " FC" : "nFC",
152 mii_11 & (1 << 7) ? "ANc" : "ANnc",
153 mii_11 & (1 << 8) ? "AN" : "Manual",
157 #endif /* CONFIG_INTEL_LXT97X */
163 gt6426x_eth_receive(struct eth_dev_s *p,unsigned int icr)
168 eth0_rx_desc_single *rx = &p->eth_rx_desc[(p->rdn)];
170 INVALIDATE_DCACHE((unsigned int)rx,(unsigned int)(rx+1));
172 if (rx->command_status & 0x80000000) {
173 return 0; /* No packet received */
176 eth_len = (unsigned int)
177 (rx->buff_size_byte_count) & 0x0000ffff;
178 eth_data = (char *) p->eth_rx_buffer[p->rdn];
182 printf ("%s: Recived %d byte Packet @ 0x%p\n",
183 __FUNCTION__, eth_len, eth_data);
188 * eth0_rx_buffer[RDN_ETH0];
191 /* let the upper layer handle the packet */
192 NetReceive ((uchar *)eth_data, eth_len);
194 rx->buff_size_byte_count = GT6426x_ETH_BUF_SIZE<<16;
198 rx->command_status = 0x80000000;
200 FLUSH_DCACHE((unsigned int)rx,(unsigned int)(rx+1));
203 if (p->rdn == NR) {p->rdn = 0;}
208 GT_REG_WRITE (ETHERNET0_SDMA_COMMAND_REGISTER + p->reg_base, 0x00000080);
214 printf(" %02x", eth_data[i]);
217 printf(": %d bytes\n", eth_len);
219 INVALIDATE_DCACHE((unsigned int)eth_data,
220 (unsigned int)eth_data+eth_len);
224 /**************************************************************************
225 POLL - look for an rx frame, handle other conditions
226 ***************************************************************************/
228 gt6426x_eth_poll(void *v)
230 struct eth_device *wp = (struct eth_device *)v;
231 struct eth_dev_s *p = wp->priv;
232 unsigned int icr=GTREGREAD(ETHERNET0_INTERRUPT_CAUSE_REGISTER + p->reg_base);
235 GT_REG_WRITE(ETHERNET0_INTERRUPT_CAUSE_REGISTER +p->reg_base, 0);
237 printf("poll got ICR %08x\n", icr);
239 /* SMI done or PHY state change*/
240 if(icr&0x30000000) gt6426x_handle_SMI(p, icr);
242 /* always process. We aren't using RX interrupts */
243 return gt6426x_eth_receive(p, icr);
246 /**************************************************************************
247 TRANSMIT - Transmit a frame
248 ***************************************************************************/
250 gt6426x_eth_transmit(void *v, volatile char *p, unsigned int s)
252 struct eth_device *wp = (struct eth_device *)v;
253 struct eth_dev_s *dev = (struct eth_dev_s *)wp->priv;
255 unsigned int old_command_stat,old_psr;
257 eth0_tx_desc_single *tx = &dev->eth_tx_desc[dev->tdn];
259 /* wait for tx to be ready */
260 INVALIDATE_DCACHE((unsigned int)tx,(unsigned int)(tx+1));
261 while (tx->command_status & 0x80000000) {
264 INVALIDATE_DCACHE((unsigned int)tx,(unsigned int)(tx+1));
267 GT_REG_WRITE (ETHERNET0_CURRENT_TX_DESCRIPTOR_POINTER0 + dev->reg_base,
271 printf("copying to tx_buffer [%p], length %x, desc = %p\n",
272 dev->eth_tx_buffer, s, dev->eth_tx_desc);
274 memcpy(dev->eth_tx_buffer, (char *) p, s);
276 tx->buff_pointer = (uchar *)dev->eth_tx_buffer;
277 tx->bytecount_reserved = ((__u16)s) << 16;
281 * 18:16 - pad, last, first */
282 tx->command_status = (1<<31) | (1<<22) | (7<<16);
285 tx->next_desc = NULL;
288 (struct eth0_tx_desc_struct *)
289 &dev->eth_tx_desc[(dev->tdn+1)%NT].bytecount_reserved;
292 dev->eth_tx_desc[(dev->tdn+1)%NT].command_status = (7<<16); /* pad, last, first */
296 old_command_stat=tx->command_status,
297 old_psr=GTREGREAD(ETHERNET0_PORT_STATUS_REGISTER + dev->reg_base);
300 FLUSH_DCACHE((unsigned int)tx,
301 (unsigned int)&dev->eth_tx_desc[(dev->tdn+2)%NT]);
303 FLUSH_DCACHE((unsigned int)dev->eth_tx_buffer,(unsigned int)dev->eth_tx_buffer+s);
305 GT_REG_WRITE(ETHERNET0_SDMA_COMMAND_REGISTER + dev->reg_base, 0x01000000);
309 unsigned int command_stat=0;
310 printf("cmd_stat: %08x PSR: %08x\n", old_command_stat, old_psr);
311 /* wait for tx to be ready */
313 unsigned int psr=GTREGREAD(ETHERNET0_PORT_STATUS_REGISTER + dev->reg_base);
314 command_stat=tx->command_status;
315 if(command_stat!=old_command_stat || psr !=old_psr) {
316 printf("cmd_stat: %08x PSR: %08x\n", command_stat, psr);
317 old_command_stat = command_stat;
320 /* gt6426x_eth0_poll(); */
321 } while (command_stat & 0x80000000);
323 printf("sent %d byte frame\n", s);
325 if((command_stat & (3<<15)) == 3) {
326 printf("frame had error (stat=%08x)\n", command_stat);
333 /**************************************************************************
334 DISABLE - Turn off ethernet interface
335 ***************************************************************************/
337 gt6426x_eth_disable(void *v)
339 struct eth_device *wp = (struct eth_device *)v;
340 struct eth_dev_s *p = (struct eth_dev_s *)wp->priv;
342 GT_REG_WRITE(ETHERNET0_SDMA_COMMAND_REGISTER + p->reg_base, 0x80008000);
345 /**************************************************************************
346 MII utilities - write: write to an MII register via SMI
347 ***************************************************************************/
349 gt6426x_miiphy_write(const char *devname, unsigned char phy,
350 unsigned char reg, unsigned short data)
352 unsigned int temp= (reg<<21) | (phy<<16) | data;
354 while(GTREGREAD(ETHERNET_SMI_REGISTER) & (1<<28)); /* wait for !Busy */
356 GT_REG_WRITE(ETHERNET_SMI_REGISTER, temp);
360 /**************************************************************************
361 MII utilities - read: read from an MII register via SMI
362 ***************************************************************************/
364 gt6426x_miiphy_read(const char *devname, unsigned char phy,
365 unsigned char reg, unsigned short *val)
367 unsigned int temp= (reg<<21) | (phy<<16) | 1<<26;
369 while(GTREGREAD(ETHERNET_SMI_REGISTER) & (1<<28)); /* wait for !Busy */
371 GT_REG_WRITE(ETHERNET_SMI_REGISTER, temp);
374 temp=GTREGREAD(ETHERNET_SMI_REGISTER);
375 if(temp & (1<<27)) break; /* wait for ReadValid */
377 *val = temp & 0xffff;
383 /**************************************************************************
384 MII utilities - dump mii registers
385 ***************************************************************************/
387 gt6426x_dump_mii(bd_t *bis, unsigned short phy)
389 printf("mii reg 0 - 3: %04x %04x %04x %04x\n",
390 miiphy_read_ret(phy, 0x0),
391 miiphy_read_ret(phy, 0x1),
392 miiphy_read_ret(phy, 0x2),
393 miiphy_read_ret(phy, 0x3)
395 printf(" 4 - 7: %04x %04x %04x %04x\n",
396 miiphy_read_ret(phy, 0x4),
397 miiphy_read_ret(phy, 0x5),
398 miiphy_read_ret(phy, 0x6),
399 miiphy_read_ret(phy, 0x7)
402 miiphy_read_ret(phy, 0x8)
404 printf(" 16-19: %04x %04x %04x %04x\n",
405 miiphy_read_ret(phy, 0x10),
406 miiphy_read_ret(phy, 0x11),
407 miiphy_read_ret(phy, 0x12),
408 miiphy_read_ret(phy, 0x13)
410 printf(" 20,30: %04x %04x\n",
411 miiphy_read_ret(phy, 20),
412 miiphy_read_ret(phy, 30)
417 #ifdef RESTART_AUTONEG
419 /* If link is up && autoneg compleate, and if
420 * GT and PHY disagree about link capabilitys,
421 * restart autoneg - something screwy with FD/HD
422 * unless we do this. */
424 check_phy_state(struct eth_dev_s *p)
426 int bmsr = miiphy_read_ret(ether_port_phy_addr[p->dev], MII_BMSR);
427 int psr = GTREGREAD(ETHERNET0_PORT_STATUS_REGISTER + p->reg_base);
429 if ((psr & 1<<3) && (bmsr & BMSR_LSTATUS)) {
430 int nego = miiphy_read_ret(ether_port_phy_addr[p->dev], MII_ADVERTISE) &
431 miiphy_read_ret(ether_port_phy_addr[p->dev], MII_LPA);
434 if (nego & LPA_100FULL) {
436 printf("MII: 100Base-TX, Full Duplex\n");
437 } else if (nego & LPA_100HALF) {
439 printf("MII: 100Base-TX, Half Duplex\n");
440 } else if (nego & LPA_10FULL) {
442 printf("MII: 10Base-T, Full Duplex\n");
443 } else if (nego & LPA_10HALF) {
445 printf("MII: 10Base-T, Half Duplex\n");
447 printf("MII: Unknown link-foo! %x\n", nego);
451 if ((psr & 0x3) != want) {
452 printf("MII: GT thinks %x, PHY thinks %x, restarting autoneg..\n",
454 miiphy_write(GT6426x_MII_DEVNAME,ether_port_phy_addr[p->dev],0,
455 miiphy_read_ret(ether_port_phy_addr[p->dev],0) | (1<<9));
456 udelay(10000); /* the EVB's GT takes a while to notice phy
463 /**************************************************************************
464 PROBE - Look for an adapter, this routine's visible to the outside
465 ***************************************************************************/
467 gt6426x_eth_probe(void *v, bd_t *bis)
469 struct eth_device *wp = (struct eth_device *)v;
470 struct eth_dev_s *p = (struct eth_dev_s *)wp->priv;
472 unsigned int reg_base = p->reg_base;
476 if (( dev < 0 ) || ( dev >= GAL_ETH_DEVS ))
477 { /* This should never happen */
478 printf("%s: Invalid device %d\n", __FUNCTION__, dev );
483 printf ("%s: initializing %s\n", __FUNCTION__, wp->name );
484 printf ("\nCOMM_CONTROL = %08x , COMM_CONF = %08x\n",
485 GTREGREAD(COMM_UNIT_ARBITER_CONTROL),
486 GTREGREAD(COMM_UNIT_ARBITER_CONFIGURATION_REGISTER));
489 /* clear MIB counters */
491 temp=GTREGREAD(ETHERNET0_MIB_COUNTER_BASE + reg_base +i);
493 #ifdef CONFIG_INTEL_LXT97X
494 /* for intel LXT972 */
497 led 2: 0xc=link/rxact
498 led 3: 0x2=rxact (N/C)
499 strch: 0,2=30 ms, enable */
500 miiphy_write(GT6426x_MII_DEVNAME,ether_port_phy_addr[p->dev], 20, 0x1c22);
502 /* 2.7ns port rise time */
503 /*miiphy_write(ether_port_phy_addr[p->dev], 30, 0x0<<10); */
505 /* already set up in mpsc.c */
506 /*GT_REG_WRITE(MAIN_ROUTING_REGISTER, 0x7ffe38); / b400 */
508 /* already set up in sdram_init.S... */
509 /* MPSC0, MPSC1, RMII */
510 /*GT_REG_WRITE(SERIAL_PORT_MULTIPLEX, 0x1102); / f010 */
512 GT_REG_WRITE(ETHERNET_PHY_ADDRESS_REGISTER,
513 ether_port_phy_addr[0] |
514 (ether_port_phy_addr[1]<<5) |
515 (ether_port_phy_addr[2]<<10)); /* 2000 */
517 /* 13:12 - 10: 4x64bit burst (cache line size = 32 bytes)
518 * 9 - 1: RIFB - interrupt on frame boundaries only
519 * 6:7 - 00: big endian rx and tx
520 * 5:2 - 1111: 15 retries */
521 GT_REG_WRITE(ETHERNET0_SDMA_CONFIGURATION_REGISTER + reg_base,
522 (2<<12) | (1<<9) | (0xf<<2) ); /* 2440 */
524 #ifndef USE_SOFTWARE_CACHE_MANAGEMENT
525 /* enable rx/tx desc/buffer cache snoop */
526 GT_REG_READ(ETHERNET_0_ADDRESS_CONTROL_LOW + dev*0x20,
528 temp|= (1<<6)| (1<<14)| (1<<22)| (1<<30);
529 GT_REG_WRITE(ETHERNET_0_ADDRESS_CONTROL_LOW + dev*0x20,
533 /* 31 28 27 24 23 20 19 16
534 * 0000 0000 0000 0000 [0004]
536 * 1000 1101 0000 0000 [4d00]
538 * 19 - 0=speed autoneg
539 * 15:14 - framesize 1536 (GT6426x_ETH_BUF_SIZE)
540 * 11 - no force link pass
541 * 10 - 1=disable fctl autoneg
542 * 8 - override prio ?? */
544 #ifndef CONFIG_ETHER_PORT_MII
545 temp |= (1<<20); /* RMII */
548 GT_REG_WRITE(ETHERNET0_PORT_CONFIGURATION_EXTEND_REGISTER + reg_base,
551 /* hardcode E1 also? */
552 /* -- according to dox, this is safer due to extra pulldowns? */
554 GT_REG_WRITE(ETHERNET0_PORT_CONFIGURATION_EXTEND_REGISTER + (dev+1) * 0x400,
558 /* wake up MAC */ /* 2400 */
559 GT_REG_READ(ETHERNET0_PORT_CONFIGURATION_REGISTER + reg_base, &temp);
560 temp |= (1<<7); /* enable port */
561 #ifdef CONFIG_GT_USE_MAC_HASH_TABLE
562 temp |= (1<<12); /* hash size 1/2k */
564 temp |= 1; /* promisc */
566 GT_REG_WRITE(ETHERNET0_PORT_CONFIGURATION_REGISTER + reg_base, temp);
569 #ifdef RESTART_AUTONEG
573 printf("%s: Waiting for link up..\n", wp->name);
575 /* wait for link back up */
576 while(!(GTREGREAD(ETHERNET0_PORT_STATUS_REGISTER + reg_base) & 8)
578 udelay(1000); /* wait 1 ms */
581 printf("%s: Failed!\n", wp->name);
585 printf("%s: OK!\n", wp->name);
589 p->eth_tx_desc[p->tdn].command_status = 0;
591 /* Initialize Rx Side */
592 for (temp = 0; temp < NR; temp++) {
593 p->eth_rx_desc[temp].buff_pointer = (uchar *)p->eth_rx_buffer[temp];
594 p->eth_rx_desc[temp].buff_size_byte_count = GT6426x_ETH_BUF_SIZE<<16;
597 p->eth_rx_desc[temp].command_status = 0x80000000;
598 p->eth_rx_desc[temp].next_desc =
599 (struct eth0_rx_desc_struct *)
600 &p->eth_rx_desc[(temp+1)%NR].buff_size_byte_count;
603 FLUSH_DCACHE((unsigned int)&p->eth_tx_desc[0],
604 (unsigned int)&p->eth_tx_desc[NR]);
605 FLUSH_DCACHE((unsigned int)&p->eth_rx_desc[0],
606 (unsigned int)&p->eth_rx_desc[NR]);
608 GT_REG_WRITE(ETHERNET0_CURRENT_TX_DESCRIPTOR_POINTER0 + reg_base,
609 (unsigned int) p->eth_tx_desc);
610 GT_REG_WRITE(ETHERNET0_FIRST_RX_DESCRIPTOR_POINTER0 + reg_base,
611 (unsigned int) p->eth_rx_desc);
612 GT_REG_WRITE(ETHERNET0_CURRENT_RX_DESCRIPTOR_POINTER0 + reg_base,
613 (unsigned int) p->eth_rx_desc);
616 printf ("\nRx descriptor pointer is %08x %08x\n",
617 GTREGREAD(ETHERNET0_FIRST_RX_DESCRIPTOR_POINTER0 + reg_base),
618 GTREGREAD(ETHERNET0_CURRENT_RX_DESCRIPTOR_POINTER0 + reg_base));
619 printf ("\n\n%08x %08x\n",
620 (unsigned int)p->eth_rx_desc,p->eth_rx_desc[0].command_status);
622 printf ("Descriptor dump:\n");
623 printf ("cmd status: %08x\n",p->eth_rx_desc[0].command_status);
624 printf ("byte_count: %08x\n",p->eth_rx_desc[0].buff_size_byte_count);
625 printf ("buff_ptr: %08x\n",(unsigned int)p->eth_rx_desc[0].buff_pointer);
626 printf ("next_desc: %08x\n\n",(unsigned int)p->eth_rx_desc[0].next_desc);
627 printf ("%08x\n",*(unsigned int *) ((unsigned int)p->eth_rx_desc + 0x0));
628 printf ("%08x\n",*(unsigned int *) ((unsigned int)p->eth_rx_desc + 0x4));
629 printf ("%08x\n",*(unsigned int *) ((unsigned int)p->eth_rx_desc + 0x8));
631 *(unsigned int *) ((unsigned int)p->eth_rx_desc + 0xc));
635 gt6426x_dump_mii(bis,ether_port_phy_addr[p->dev]);
638 #ifdef CONFIG_GT_USE_MAC_HASH_TABLE
640 unsigned int hashtable_base;
641 u8 *b = (u8 *)(wp->enetaddr);
644 /* twist the MAC up into the way the discovery wants it */
645 macH= (b[0]<<8) | b[1];
646 macL= (b[2]<<24) | (b[3]<<16) | (b[4]<<8) | b[5];
648 /* mode 0, size 0x800 */
649 hashtable_base =initAddressTable(dev,0,1);
651 if(!hashtable_base) {
652 printf("initAddressTable failed\n");
656 addAddressTableEntry(dev, macH, macL, 1, 0);
657 GT_REG_WRITE(ETHERNET0_HASH_TABLE_POINTER_REGISTER + reg_base,
663 GT_REG_WRITE(ETHERNET0_SDMA_COMMAND_REGISTER + reg_base, 0x00000080);
664 printf("%s: gt6426x eth device %d init success \n", wp->name, dev );
668 /* enter all the galileo ethernet devs into MULTI-BOOT */
670 gt6426x_eth_initialize(bd_t *bis)
672 struct eth_device *dev;
675 char *s, *e, buf[64];
678 printf( "\n%s\n", __FUNCTION );
681 for (devnum = 0; devnum < GAL_ETH_DEVS; devnum++) {
682 dev = calloc(sizeof(*dev), 1);
684 printf( "%s: gal_enet%d allocation failure, %s\n",
685 __FUNCTION__, devnum, "eth_device structure");
689 /* must be less than sizeof(dev->name) */
690 sprintf(dev->name, "gal_enet%d", devnum);
693 printf( "Initializing %s\n", dev->name );
696 /* Extract the MAC address from the environment */
699 case 0: s = "ethaddr"; break;
700 #if (GAL_ETH_DEVS > 1)
701 case 1: s = "eth1addr"; break;
703 #if (GAL_ETH_DEVS > 2)
704 case 2: s = "eth2addr"; break;
706 default: /* this should never happen */
707 printf( "%s: Invalid device number %d\n",
708 __FUNCTION__, devnum );
712 temp = getenv_f(s, buf, sizeof(buf));
713 s = (temp > 0) ? buf : NULL;
716 printf ("Setting MAC %d to %s\n", devnum, s );
718 for (x = 0; x < 6; ++x) {
719 dev->enetaddr[x] = s ? simple_strtoul(s, &e, 16) : 0;
724 dev->init = (void*)gt6426x_eth_probe;
725 dev->halt = (void*)gt6426x_eth_reset;
726 dev->send = (void*)gt6426x_eth_transmit;
727 dev->recv = (void*)gt6426x_eth_poll;
729 p = calloc( sizeof(*p), 1 );
730 dev->priv = (void*)p;
733 printf( "%s: %s allocation failure, %s\n",
734 __FUNCTION__, dev->name, "Private Device Structure");
742 p->reg_base = devnum * ETHERNET_PORTS_DIFFERENCE_OFFSETS;
745 (eth0_tx_desc_single *)
746 (((unsigned int) malloc(sizeof (eth0_tx_desc_single) *
747 (NT+1)) & 0xfffffff0) + 0x10);
750 printf( "%s: %s allocation failure, %s\n",
751 __FUNCTION__, dev->name, "Tx Descriptor");
757 (eth0_rx_desc_single *)
758 (((unsigned int) malloc(sizeof (eth0_rx_desc_single) *
759 (NR+1)) & 0xfffffff0) + 0x10);
762 printf( "%s: %s allocation failure, %s\n",
763 __FUNCTION__, dev->name, "Rx Descriptor");
770 (char *) (((unsigned int) malloc(GT6426x_ETH_BUF_SIZE) & 0xfffffff0) + 0x10);
771 if (!p->eth_tx_buffer)
773 printf( "%s: %s allocation failure, %s\n",
774 __FUNCTION__, dev->name, "Tx Bufffer");
777 free(p->eth_rx_desc);
781 for (temp = 0 ; temp < NR ; temp ++) {
782 p->eth_rx_buffer[temp] =
784 (((unsigned int) malloc(GT6426x_ETH_BUF_SIZE) & 0xfffffff0) + 0x10);
785 if (!p->eth_rx_buffer[temp])
787 printf( "%s: %s allocation failure, %s\n",
788 __FUNCTION__, dev->name, "Rx Buffers");
791 free(p->eth_tx_buffer);
792 free(p->eth_rx_desc);
793 free(p->eth_tx_desc);
795 free(p->eth_rx_buffer[--temp]);
802 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
803 miiphy_register(dev->name,
804 gt6426x_miiphy_read, gt6426x_miiphy_write);