1 /*------------------------------------------------------------------------
3 * This is a driver for SMSC's LAN91C96 single-chip Ethernet device, based
4 * on the SMC91111 driver from U-boot.
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Rolf Offermanns <rof@sysgo.de>
10 * Copyright (C) 2001 Standard Microsystems Corporation (SMSC)
11 * Developed by Simple Network Magic Corporation (SNMC)
12 * Copyright (C) 1996 by Erik Stahlman (ES)
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 * Information contained in this file was obtained from the LAN91C96
29 * manual from SMC. To get a copy, if you really want one, you can find
30 * information under www.smsc.com.
33 * "Features" of the SMC chip:
34 * 6144 byte packet memory. ( for the 91C96 )
35 * EEPROM for configuration
36 * AUI/TP selection ( mine has 10Base2/10BaseT select )
39 * io = for the base address
43 * Erik Stahlman ( erik@vt.edu )
44 * Daris A Nevil ( dnevil@snmc.com )
47 * Hardware multicast code from Peter Cammaert ( pc@denkart.be )
50 * o SMSC LAN91C96 databook (www.smsc.com)
51 * o smc91111.c (u-boot driver)
52 * o smc9194.c (linux kernel driver)
53 * o lan91c96.c (Intel Diagnostic Manager driver)
56 * 04/30/03 Mathijs Haarman Modified smc91111.c (u-boot version)
58 *---------------------------------------------------------------------------
66 #ifdef CONFIG_DRIVER_LAN91C96
68 #if (CONFIG_COMMANDS & CFG_CMD_NET)
70 /*------------------------------------------------------------------------
72 * Configuration options, for the experienced user to change.
74 -------------------------------------------------------------------------*/
76 /* Use power-down feature of the chip */
80 * Wait time for memory to be free. This probably shouldn't be
81 * tuned that much, as waiting for this means nothing else happens
84 #define MEMORY_WAIT_TIME 16
89 #define PRINTK3(args...) printf(args)
91 #define PRINTK3(args...)
95 #define PRINTK2(args...) printf(args)
97 #define PRINTK2(args...)
101 #define PRINTK(args...) printf(args)
103 #define PRINTK(args...)
107 /*------------------------------------------------------------------------
109 * The internal workings of the driver. If you are changing anything
110 * here with the SMC stuff, you should have the datasheet and know
111 * what you are doing.
113 *------------------------------------------------------------------------
115 #define CARDNAME "LAN91C96"
117 #define SMC_BASE_ADDRESS CONFIG_LAN91C96_BASE
119 #define SMC_DEV_NAME "LAN91C96"
120 #define SMC_ALLOC_MAX_TRY 5
121 #define SMC_TX_TIMEOUT 30
125 #ifdef CONFIG_LAN91C96_USE_32_BIT
131 /*-----------------------------------------------------------------
133 * The driver can be entered at any of the following entry points.
135 *-----------------------------------------------------------------
138 extern int eth_init (bd_t * bd);
139 extern void eth_halt (void);
140 extern int eth_rx (void);
141 extern int eth_send (volatile void *packet, int length);
143 static int smc_hw_init (void);
147 * This is called by register_netdev(). It is responsible for
148 * checking the portlist for the SMC9000 series chipset. If it finds
149 * one, then it will initialize the device, find the hardware information,
150 * and sets up the appropriate device parameters.
151 * NOTE: Interrupts are *OFF* when this procedure is called.
153 * NB:This shouldn't be static since it is referred to externally.
158 * This is called by unregister_netdev(). It is responsible for
159 * cleaning up before the driver is finally unregistered and discarded.
161 void smc_destructor (void);
164 * The kernel calls this function when someone wants to use the device,
165 * typically 'ifconfig ethX up'.
167 static int smc_open (bd_t *bd);
171 * This is called by the kernel in response to 'ifconfig ethX down'. It
172 * is responsible for cleaning up everything that the open routine
173 * does, and maybe putting the card into a powerdown state.
175 static int smc_close (void);
178 * This is a separate procedure to handle the receipt of a packet, to
179 * leave the interrupt code looking slightly cleaner
181 static int smc_rcv (void);
183 /* See if a MAC address is defined in the current environment. If so use it. If not
184 . print a warning and set the environment and other globals with the default.
185 . If an EEPROM is present it really should be consulted.
187 int smc_get_ethaddr(bd_t *bd);
188 int get_rom_mac(unsigned char *v_rom_mac);
190 /* ------------------------------------------------------------
192 * ------------------------------------------------------------
195 static unsigned char smc_mac_addr[] = { 0xc0, 0x00, 0x00, 0x1b, 0x62, 0x9c };
198 * This function must be called before smc_open() if you want to override
199 * the default mac address.
202 void smc_set_mac_addr (const unsigned char *addr)
206 for (i = 0; i < sizeof (smc_mac_addr); i++) {
207 smc_mac_addr[i] = addr[i];
212 * smc_get_macaddr is no longer used. If you want to override the default
213 * mac address, call smc_get_mac_addr as a part of the board initialisation.
217 void smc_get_macaddr (byte * addr)
219 /* MAC ADDRESS AT FLASHBLOCK 1 / OFFSET 0x10 */
220 unsigned char *dnp1110_mac = (unsigned char *) (0xE8000000 + 0x20010);
224 for (i = 0; i < 6; i++) {
225 addr[0] = *(dnp1110_mac + 0);
226 addr[1] = *(dnp1110_mac + 1);
227 addr[2] = *(dnp1110_mac + 2);
228 addr[3] = *(dnp1110_mac + 3);
229 addr[4] = *(dnp1110_mac + 4);
230 addr[5] = *(dnp1110_mac + 5);
235 /***********************************************
236 * Show available memory *
237 ***********************************************/
238 void dump_memory_info (void)
243 old_bank = SMC_inw (LAN91C96_BANK_SELECT) & 0xF;
246 mem_info = SMC_inw (LAN91C96_MIR);
247 PRINTK2 ("Memory: %4d available\n", (mem_info >> 8) * 2048);
249 SMC_SELECT_BANK (old_bank);
253 * A rather simple routine to print out a packet for debugging purposes.
256 static void print_packet (byte *, int);
259 /* #define tx_done(dev) 1 */
262 /* this does a soft reset on the device */
263 static void smc_reset (void);
265 /* Enable Interrupts, Receive, and Transmit */
266 static void smc_enable (void);
268 /* this puts the device in an inactive state */
269 static void smc_shutdown (void);
272 static int poll4int (byte mask, int timeout)
274 int tmo = get_timer (0) + timeout * CFG_HZ;
276 word old_bank = SMC_inw (LAN91C96_BANK_SELECT);
278 PRINTK2 ("Polling...\n");
280 while ((SMC_inw (LAN91C96_INT_STATS) & mask) == 0) {
281 if (get_timer (0) >= tmo) {
287 /* restore old bank selection */
288 SMC_SELECT_BANK (old_bank);
297 * Function: smc_reset( void )
299 * This sets the SMC91111 chip to its normal state, hopefully from whatever
300 * mess that any other DOS driver has put it in.
302 * Maybe I should reset more registers to defaults in here? SOFTRST should
306 * 1. send a SOFT RESET
307 * 2. wait for it to finish
308 * 3. enable autorelease mode
309 * 4. reset the memory management unit
310 * 5. clear all interrupts
313 static void smc_reset (void)
315 PRINTK2 ("%s:smc_reset\n", SMC_DEV_NAME);
317 /* This resets the registers mostly to defaults, but doesn't
318 affect EEPROM. That seems unnecessary */
320 SMC_outw (LAN91C96_RCR_SOFT_RST, LAN91C96_RCR);
324 /* Disable transmit and receive functionality */
325 SMC_outw (0, LAN91C96_RCR);
326 SMC_outw (0, LAN91C96_TCR);
328 /* set the control register */
330 SMC_outw (SMC_inw (LAN91C96_CONTROL) | LAN91C96_CTR_BIT_8,
333 /* Disable all interrupts */
334 SMC_outb (0, LAN91C96_INT_MASK);
338 * Function: smc_enable
339 * Purpose: let the chip talk to the outside work
341 * 1. Initialize the Memory Configuration Register
342 * 2. Enable the transmitter
343 * 3. Enable the receiver
345 static void smc_enable ()
347 PRINTK2 ("%s:smc_enable\n", SMC_DEV_NAME);
350 /* Initialize the Memory Configuration Register. See page
351 49 of the LAN91C96 data sheet for details. */
352 SMC_outw (LAN91C96_MCR_TRANSMIT_PAGES, LAN91C96_MCR);
354 /* Initialize the Transmit Control Register */
355 SMC_outw (LAN91C96_TCR_TXENA, LAN91C96_TCR);
356 /* Initialize the Receive Control Register
358 * The promiscuous bit set because I could not receive ARP reply
359 * packets from the server when I send a ARP request. It only works
360 * when I set the promiscuous bit
362 SMC_outw (LAN91C96_RCR_RXEN | LAN91C96_RCR_PRMS, LAN91C96_RCR);
366 * Function: smc_shutdown
367 * Purpose: closes down the SMC91xxx chip.
369 * 1. zero the interrupt mask
370 * 2. clear the enable receive flag
371 * 3. clear the enable xmit flags
374 * (1) maybe utilize power down mode.
375 * Why not yet? Because while the chip will go into power down mode,
376 * the manual says that it will wake up in response to any I/O requests
377 * in the register space. Empirical results do not show this working.
379 static void smc_shutdown ()
381 PRINTK2 (CARDNAME ":smc_shutdown\n");
383 /* no more interrupts for me */
385 SMC_outb (0, LAN91C96_INT_MASK);
387 /* and tell the card to stay away from that nasty outside world */
389 SMC_outb (0, LAN91C96_RCR);
390 SMC_outb (0, LAN91C96_TCR);
395 * Function: smc_hardware_send_packet(struct net_device * )
397 * This sends the actual packet to the SMC9xxx chip.
400 * First, see if a saved_skb is available.
401 * ( this should NOT be called if there is no 'saved_skb'
402 * Now, find the packet number that the chip allocated
403 * Point the data pointers at it in memory
404 * Set the length word in the chip's memory
405 * Dump the packet to chip memory
406 * Check if a last byte is needed ( odd length packet )
407 * if so, set the control flag right
408 * Tell the card to send it
409 * Enable the transmit interrupt, so I know if it failed
410 * Free the kernel data if I actually sent it.
412 static int smc_send_packet (volatile void *packet, int packet_length)
415 unsigned long ioaddr;
424 PRINTK3 ("%s:smc_hardware_send_packet\n", SMC_DEV_NAME);
426 length = ETH_ZLEN < packet_length ? packet_length : ETH_ZLEN;
429 ** The MMU wants the number of pages to be the number of 256 bytes
430 ** 'pages', minus 1 ( since a packet can't ever have 0 pages :) )
432 ** The 91C111 ignores the size bits, but the code is left intact
433 ** for backwards and future compatibility.
435 ** Pkt size for allocating is data length +6 (for additional status
436 ** words, length and ctl!)
438 ** If odd size then last byte is included in this header.
440 numPages = ((length & 0xfffe) + 6);
441 numPages >>= 8; /* Divide by 256 */
444 printf ("%s: Far too big packet error. \n", SMC_DEV_NAME);
448 /* now, try to allocate the memory */
451 SMC_outw (LAN91C96_MMUCR_ALLOC_TX | numPages, LAN91C96_MMU);
455 time_out = MEMORY_WAIT_TIME;
457 status = SMC_inb (LAN91C96_INT_STATS);
458 if (status & LAN91C96_IST_ALLOC_INT) {
460 SMC_outb (LAN91C96_IST_ALLOC_INT, LAN91C96_INT_STATS);
463 } while (--time_out);
466 PRINTK2 ("%s: memory allocation, try %d failed ...\n",
468 if (try < SMC_ALLOC_MAX_TRY)
474 PRINTK2 ("%s: memory allocation, try %d succeeded ...\n",
477 /* I can send the packet now.. */
479 ioaddr = SMC_BASE_ADDRESS;
481 buf = (byte *) packet;
483 /* If I get here, I _know_ there is a packet slot waiting for me */
484 packet_no = SMC_inb (LAN91C96_ARR);
485 if (packet_no & LAN91C96_ARR_FAILED) {
486 /* or isn't there? BAD CHIP! */
487 printf ("%s: Memory allocation failed. \n", SMC_DEV_NAME);
491 /* we have a packet address, so tell the card to use it */
492 SMC_outb (packet_no, LAN91C96_PNR);
494 /* point to the beginning of the packet */
495 SMC_outw (LAN91C96_PTR_AUTO_INCR, LAN91C96_POINTER);
497 PRINTK3 ("%s: Trying to xmit packet of length %x\n",
498 SMC_DEV_NAME, length);
501 printf ("Transmitting Packet\n");
502 print_packet (buf, length);
505 /* send the packet length ( +6 for status, length and ctl byte )
506 and the status word ( set to zeros ) */
508 SMC_outl ((length + 6) << 16, LAN91C96_DATA_HIGH);
510 SMC_outw (0, LAN91C96_DATA_HIGH);
511 /* send the packet length ( +6 for status words, length, and ctl */
512 SMC_outw ((length + 6), LAN91C96_DATA_HIGH);
513 #endif /* USE_32_BIT */
515 /* send the actual data
516 * I _think_ it's faster to send the longs first, and then
517 * mop up by sending the last word. It depends heavily
518 * on alignment, at least on the 486. Maybe it would be
519 * a good idea to check which is optimal? But that could take
520 * almost as much time as is saved?
523 SMC_outsl (LAN91C96_DATA_HIGH, buf, length >> 2);
525 SMC_outw (*((word *) (buf + (length & 0xFFFFFFFC))),
528 SMC_outsw (LAN91C96_DATA_HIGH, buf, (length) >> 1);
529 #endif /* USE_32_BIT */
531 /* Send the last byte, if there is one. */
532 if ((length & 1) == 0) {
533 SMC_outw (0, LAN91C96_DATA_HIGH);
535 SMC_outw (buf[length - 1] | 0x2000, LAN91C96_DATA_HIGH);
538 /* and let the chipset deal with it */
539 SMC_outw (LAN91C96_MMUCR_ENQUEUE, LAN91C96_MMU);
541 /* poll for TX INT */
542 if (poll4int (LAN91C96_MSK_TX_INT, SMC_TX_TIMEOUT)) {
544 PRINTK2 ("%s: TX timeout, sending failed...\n", SMC_DEV_NAME);
547 SMC_outw (LAN91C96_MMUCR_RELEASE_TX, LAN91C96_MMU);
549 /* wait for MMU getting ready (low) */
550 while (SMC_inw (LAN91C96_MMU) & LAN91C96_MMUCR_NO_BUSY) {
554 PRINTK2 ("MMU ready\n");
560 SMC_outw (LAN91C96_IST_TX_INT, LAN91C96_INT_STATS);
562 PRINTK2 ("%s: Sent packet of length %d \n", SMC_DEV_NAME, length);
565 SMC_outw (LAN91C96_MMUCR_RELEASE_TX, LAN91C96_MMU);
567 /* wait for MMU getting ready (low) */
568 while (SMC_inw (LAN91C96_MMU) & LAN91C96_MMUCR_NO_BUSY) {
572 PRINTK2 ("MMU ready\n");
578 /*-------------------------------------------------------------------------
579 * smc_destructor( struct net_device * dev )
581 * dev, pointer to the device structure
585 *--------------------------------------------------------------------------
587 void smc_destructor ()
589 PRINTK2 (CARDNAME ":smc_destructor\n");
594 * Open and Initialize the board
596 * Set up everything, reset the card, etc ..
599 static int smc_open (bd_t *bd)
601 int i, err; /* used to set hw ethernet address */
603 PRINTK2 ("%s:smc_open\n", SMC_DEV_NAME);
605 /* reset the hardware */
612 err = smc_get_ethaddr (bd); /* set smc_mac_addr, and sync it with u-boot globals */
614 memset (bd->bi_enetaddr, 0, 6); /* hack to make error stick! upper code will abort if not set */
615 return (-1); /* upper code ignores this, but NOT bi_enetaddr */
618 for (i = 0; i < 6; i += 2) {
621 address = smc_mac_addr[i + 1] << 8;
622 address |= smc_mac_addr[i];
623 SMC_outw (address, LAN91C96_IA0 + i);
626 for (i = 0; i < 6; i++)
627 SMC_outb (smc_mac_addr[i], LAN91C96_IA0 + i);
632 /*-------------------------------------------------------------
634 * smc_rcv - receive a packet from the card
636 * There is ( at least ) a packet waiting to be read from
640 * o If an error, record it
641 * o otherwise, read in the packet
642 *-------------------------------------------------------------
644 static int smc_rcv ()
657 packet_number = SMC_inw (LAN91C96_FIFO);
659 if (packet_number & LAN91C96_FIFO_RXEMPTY) {
663 PRINTK3 ("%s:smc_rcv\n", SMC_DEV_NAME);
664 /* start reading from the start of the packet */
665 SMC_outw (LAN91C96_PTR_READ | LAN91C96_PTR_RCV |
666 LAN91C96_PTR_AUTO_INCR, LAN91C96_POINTER);
668 /* First two words are status and packet_length */
670 stat_len = SMC_inl (LAN91C96_DATA_HIGH);
671 status = stat_len & 0xffff;
672 packet_length = stat_len >> 16;
674 status = SMC_inw (LAN91C96_DATA_HIGH);
675 packet_length = SMC_inw (LAN91C96_DATA_HIGH);
678 packet_length &= 0x07ff; /* mask off top bits */
680 PRINTK2 ("RCV: STATUS %4x LENGTH %4x\n", status, packet_length);
682 if (!(status & FRAME_FILTER)) {
683 /* Adjust for having already read the first two words */
684 packet_length -= 4; /*4; */
687 /* set odd length for bug in LAN91C111, */
688 /* which never sets RS_ODDFRAME */
693 PRINTK3 (" Reading %d dwords (and %d bytes) \n",
694 packet_length >> 2, packet_length & 3);
695 /* QUESTION: Like in the TX routine, do I want
696 to send the DWORDs or the bytes first, or some
697 mixture. A mixture might improve already slow PIO
699 SMC_insl (LAN91C96_DATA_HIGH, NetRxPackets[0], packet_length >> 2);
700 /* read the left over bytes */
701 if (packet_length & 3) {
704 byte *tail = (byte *) (NetRxPackets[0] + (packet_length & ~3));
705 dword leftover = SMC_inl (LAN91C96_DATA_HIGH);
707 for (i = 0; i < (packet_length & 3); i++)
708 *tail++ = (byte) (leftover >> (8 * i)) & 0xff;
711 PRINTK3 (" Reading %d words and %d byte(s) \n",
712 (packet_length >> 1), packet_length & 1);
713 SMC_insw (LAN91C96_DATA_HIGH, NetRxPackets[0], packet_length >> 1);
715 #endif /* USE_32_BIT */
718 printf ("Receiving Packet\n");
719 print_packet (NetRxPackets[0], packet_length);
727 while (SMC_inw (LAN91C96_MMU) & LAN91C96_MMUCR_NO_BUSY)
728 udelay (1); /* Wait until not busy */
730 /* error or good, tell the card to get rid of this packet */
731 SMC_outw (LAN91C96_MMUCR_RELEASE_RX, LAN91C96_MMU);
733 while (SMC_inw (LAN91C96_MMU) & LAN91C96_MMUCR_NO_BUSY)
734 udelay (1); /* Wait until not busy */
737 /* Pass the packet up to the protocol layers. */
738 NetReceive (NetRxPackets[0], packet_length);
739 return packet_length;
746 /*----------------------------------------------------
749 * this makes the board clean up everything that it can
750 * and not talk to the outside world. Caused by
751 * an 'ifconfig ethX down'
753 -----------------------------------------------------*/
754 static int smc_close ()
756 PRINTK2 ("%s:smc_close\n", SMC_DEV_NAME);
758 /* clear everything */
765 static void print_packet (byte * buf, int length)
772 printf ("Packet of length %d \n", length);
775 remainder = length % 16;
777 for (i = 0; i < lines; i++) {
780 for (cur = 0; cur < 8; cur++) {
785 printf ("%02x%02x ", a, b);
789 for (i = 0; i < remainder / 2; i++) {
794 printf ("%02x%02x ", a, b);
799 #endif /* SMC_DEBUG > 2 */
801 int eth_init (bd_t * bd)
803 return (smc_open(bd));
816 int eth_send (volatile void *packet, int length)
818 return smc_send_packet (packet, length);
823 /*-------------------------------------------------------------------------
827 * Reset and enable the device, check if the I/O space location
836 *--------------------------------------------------------------------------
838 static int smc_hw_init ()
840 unsigned short status_test;
842 /* The attribute register of the LAN91C96 is located at address
843 0x0e000000 on the lubbock platform */
844 volatile unsigned *attaddr = (unsigned *) (0x0e000000);
846 /* first reset, then enable the device. Sequence is critical */
847 attaddr[LAN91C96_ECOR] |= LAN91C96_ECOR_SRESET;
849 attaddr[LAN91C96_ECOR] &= ~LAN91C96_ECOR_SRESET;
850 attaddr[LAN91C96_ECOR] |= LAN91C96_ECOR_ENABLE;
852 /* force 16-bit mode */
853 attaddr[LAN91C96_ECSR] &= ~LAN91C96_ECSR_IOIS8;
856 /* check if the I/O address is correct, the upper byte of the
857 bank select register should read 0x33 */
859 status_test = SMC_inw (LAN91C96_BANK_SELECT);
860 if ((status_test & 0xFF00) != 0x3300) {
861 printf ("Failed to initialize ethernetchip\n");
868 #endif /* COMMANDS & CFG_NET */
871 /* smc_get_ethaddr (bd_t * bd)
873 * This checks both the environment and the ROM for an ethernet address. If
874 * found, the environment takes precedence.
877 int smc_get_ethaddr (bd_t * bd)
885 char *v_mac, es[] = "11:22:33:44:55:66";
890 env_size = getenv_r ("ethaddr", s_env_mac, sizeof (s_env_mac));
891 if (env_size != sizeof(es)) { /* Ignore if env is bad or not set */
892 printf ("\n*** Warning: ethaddr is not set properly, ignoring!!\n");
897 for (reg = 0; reg < 6; ++reg) { /* turn string into mac value */
898 v_env_mac[reg] = s ? simple_strtoul (s, &e, 16) : 0;
900 s = (*e) ? e + 1 : e;
904 rom_valid = get_rom_mac (v_rom_mac); /* get ROM mac value if any */
906 if (!env_present) { /* if NO env */
907 if (rom_valid) { /* but ROM is valid */
908 v_mac = (char *)v_rom_mac;
909 sprintf (s_env_mac, "%02X:%02X:%02X:%02X:%02X:%02X",
910 v_mac[0], v_mac[1], v_mac[2], v_mac[3],
912 setenv ("ethaddr", s_env_mac);
913 } else { /* no env, bad ROM */
914 printf ("\n*** ERROR: ethaddr is NOT set !!\n");
917 } else { /* good env, don't care ROM */
918 v_mac = (char *)v_env_mac; /* always use a good env over a ROM */
921 if (env_present && rom_valid) { /* if both env and ROM are good */
922 if (memcmp (v_env_mac, v_rom_mac, 6) != 0) {
923 printf ("\nWarning: MAC addresses don't match:\n");
924 printf ("\tHW MAC address: "
925 "%02X:%02X:%02X:%02X:%02X:%02X\n",
926 v_rom_mac[0], v_rom_mac[1],
927 v_rom_mac[2], v_rom_mac[3],
928 v_rom_mac[4], v_rom_mac[5] );
929 printf ("\t\"ethaddr\" value: "
930 "%02X:%02X:%02X:%02X:%02X:%02X\n",
931 v_env_mac[0], v_env_mac[1],
932 v_env_mac[2], v_env_mac[3],
933 v_env_mac[4], v_env_mac[5]) ;
934 debug ("### Set MAC addr from environment\n");
937 memcpy (bd->bi_enetaddr, v_mac, 6); /* update global address to match env (allows env changing) */
938 smc_set_mac_addr ((unsigned char *)v_mac); /* use old function to update smc default */
939 PRINTK("Using MAC Address %02X:%02X:%02X:%02X:%02X:%02X\n", v_mac[0], v_mac[1],
940 v_mac[2], v_mac[3], v_mac[4], v_mac[5]);
946 * Note, this has omly been tested for the OMAP730 P2.
949 int get_rom_mac (unsigned char *v_rom_mac)
951 #ifdef HARDCODE_MAC /* used for testing or to supress run time warnings */
952 char hw_mac_addr[] = { 0x02, 0x80, 0xad, 0x20, 0x31, 0xb8 };
954 memcpy (v_rom_mac, hw_mac_addr, 6);
961 v_rom_mac[i] = SMC_inb (LAN91C96_IA0 + i);
967 #endif /* CONFIG_DRIVER_LAN91C96 */