2 #error multicast support is not yet implemented
4 /*------------------------------------------------------------------------
6 * This is a Etherboot driver for SMC's 9000 series of Ethernet cards.
8 * Copyright (C) 1998 Daniel Engström <daniel.engstrom@riksnett.no>
9 * Based on the Linux SMC9000 driver, smc9194.c by Eric Stahlman
10 * Copyright (C) 1996 by Erik Stahlman <eric@vt.edu>
12 * This software may be used and distributed according to the terms
13 * of the GNU Public License, incorporated herein by reference.
15 * "Features" of the SMC chip:
16 * 4608 byte packet memory. ( for the 91C92/4. Others have more )
17 * EEPROM for configuration
21 * Erik Stahlman <erik@vt.edu>
22 * Daniel Engström <daniel.engstrom@riksnett.no>
25 * 98-09-25 Daniel Engström Etherboot driver crated from Eric's
28 *---------------------------------------------------------------------------*/
29 #define LINUX_OUT_MACROS 1
30 #define SMC9000_DEBUG 0
33 #define PRINTK2 printf
35 #define PRINTK2(args...)
38 #include <gpxe/ethernet.h>
39 #include "etherboot.h"
48 static const char smc9000_version
[] = "Version 0.99 98-09-30";
49 static const char *interfaces
[ 2 ] = { "TP", "AUI" };
50 static const char *chip_ids
[ 15 ] = {
52 /* 3 */ "SMC91C90/91C92",
57 /* 8 */ "SMC91C100FD",
58 /* 9 */ "SMC91C11xFD",
62 static const char smc91c96_id
[] = "SMC91C96";
64 /*------------------------------------------------------------
65 . Reads a register from the MII Management serial interface
66 .-------------------------------------------------------------*/
67 static word
smc_read_phy_register(int ioaddr
, byte phyaddr
, byte phyreg
)
78 // 32 consecutive ones on MDO to establish sync
79 for (i
= 0; i
< 32; ++i
)
80 bits
[clk_idx
++] = MII_MDOE
| MII_MDO
;
83 bits
[clk_idx
++] = MII_MDOE
;
84 bits
[clk_idx
++] = MII_MDOE
| MII_MDO
;
87 bits
[clk_idx
++] = MII_MDOE
| MII_MDO
;
88 bits
[clk_idx
++] = MII_MDOE
;
90 // Output the PHY address, msb first
92 for (i
= 0; i
< 5; ++i
)
95 bits
[clk_idx
++] = MII_MDOE
| MII_MDO
;
97 bits
[clk_idx
++] = MII_MDOE
;
99 // Shift to next lowest bit
103 // Output the phy register number, msb first
105 for (i
= 0; i
< 5; ++i
)
108 bits
[clk_idx
++] = MII_MDOE
| MII_MDO
;
110 bits
[clk_idx
++] = MII_MDOE
;
112 // Shift to next lowest bit
116 // Tristate and turnaround (2 bit times)
118 //bits[clk_idx++] = 0;
120 // Input starts at this bit time
123 // Will input 16 bits
124 for (i
= 0; i
< 16; ++i
)
130 // Save the current bank
131 oldBank
= inw( ioaddr
+BANK_SELECT
);
134 SMC_SELECT_BANK(ioaddr
, 3);
136 // Get the current MII register value
137 mii_reg
= inw( ioaddr
+MII_REG
);
139 // Turn off all MII Interface bits
140 mii_reg
&= ~(MII_MDOE
|MII_MCLK
|MII_MDI
|MII_MDO
);
142 // Clock all 64 cycles
143 for (i
= 0; i
< sizeof(bits
); ++i
)
145 // Clock Low - output data
146 outw( mii_reg
| bits
[i
], ioaddr
+MII_REG
);
150 // Clock Hi - input data
151 outw( mii_reg
| bits
[i
] | MII_MCLK
, ioaddr
+MII_REG
);
153 bits
[i
] |= inw( ioaddr
+MII_REG
) & MII_MDI
;
156 // Return to idle state
157 // Set clock to low, data to low, and output tristated
158 outw( mii_reg
, ioaddr
+MII_REG
);
161 // Restore original bank select
162 SMC_SELECT_BANK(ioaddr
, oldBank
);
164 // Recover input data
166 for (i
= 0; i
< 16; ++i
)
170 if (bits
[input_idx
++] & MII_MDI
)
175 printf("smc_read_phy_register(): phyaddr=%x,phyreg=%x,phydata=%x\n",
176 phyaddr
, phyreg
, phydata
);
183 /*------------------------------------------------------------
184 . Writes a register to the MII Management serial interface
185 .-------------------------------------------------------------*/
186 static void smc_write_phy_register(int ioaddr
,
187 byte phyaddr
, byte phyreg
, word phydata
)
196 // 32 consecutive ones on MDO to establish sync
197 for (i
= 0; i
< 32; ++i
)
198 bits
[clk_idx
++] = MII_MDOE
| MII_MDO
;
201 bits
[clk_idx
++] = MII_MDOE
;
202 bits
[clk_idx
++] = MII_MDOE
| MII_MDO
;
204 // Write command <01>
205 bits
[clk_idx
++] = MII_MDOE
;
206 bits
[clk_idx
++] = MII_MDOE
| MII_MDO
;
208 // Output the PHY address, msb first
210 for (i
= 0; i
< 5; ++i
)
213 bits
[clk_idx
++] = MII_MDOE
| MII_MDO
;
215 bits
[clk_idx
++] = MII_MDOE
;
217 // Shift to next lowest bit
221 // Output the phy register number, msb first
223 for (i
= 0; i
< 5; ++i
)
226 bits
[clk_idx
++] = MII_MDOE
| MII_MDO
;
228 bits
[clk_idx
++] = MII_MDOE
;
230 // Shift to next lowest bit
234 // Tristate and turnaround (2 bit times)
238 // Write out 16 bits of data, msb first
240 for (i
= 0; i
< 16; ++i
)
243 bits
[clk_idx
++] = MII_MDOE
| MII_MDO
;
245 bits
[clk_idx
++] = MII_MDOE
;
247 // Shift to next lowest bit
251 // Final clock bit (tristate)
254 // Save the current bank
255 oldBank
= inw( ioaddr
+BANK_SELECT
);
258 SMC_SELECT_BANK(ioaddr
, 3);
260 // Get the current MII register value
261 mii_reg
= inw( ioaddr
+MII_REG
);
263 // Turn off all MII Interface bits
264 mii_reg
&= ~(MII_MDOE
|MII_MCLK
|MII_MDI
|MII_MDO
);
267 for (i
= 0; i
< sizeof(bits
); ++i
)
269 // Clock Low - output data
270 outw( mii_reg
| bits
[i
], ioaddr
+MII_REG
);
274 // Clock Hi - input data
275 outw( mii_reg
| bits
[i
] | MII_MCLK
, ioaddr
+MII_REG
);
277 bits
[i
] |= inw( ioaddr
+MII_REG
) & MII_MDI
;
280 // Return to idle state
281 // Set clock to low, data to low, and output tristated
282 outw( mii_reg
, ioaddr
+MII_REG
);
285 // Restore original bank select
286 SMC_SELECT_BANK(ioaddr
, oldBank
);
289 printf("smc_write_phy_register(): phyaddr=%x,phyreg=%x,phydata=%x\n",
290 phyaddr
, phyreg
, phydata
);
295 /*------------------------------------------------------------
296 . Finds and reports the PHY address
297 .-------------------------------------------------------------*/
298 static int smc_detect_phy(int ioaddr
, byte
*pphyaddr
)
305 // Scan all 32 PHY addresses if necessary
306 for (phyaddr
= 0; phyaddr
< 32; ++phyaddr
)
308 // Read the PHY identifiers
309 phy_id1
= smc_read_phy_register(ioaddr
, phyaddr
, PHY_ID1_REG
);
310 phy_id2
= smc_read_phy_register(ioaddr
, phyaddr
, PHY_ID2_REG
);
312 // Make sure it is a valid identifier
313 if ((phy_id2
> 0x0000) && (phy_id2
< 0xffff) &&
314 (phy_id1
> 0x0000) && (phy_id1
< 0xffff))
316 if ((phy_id1
!= 0x8000) && (phy_id2
!= 0x8000))
318 // Save the PHY's address
328 printf("No PHY found\n");
333 if ( (phy_id1
== 0x0016) && ((phy_id2
& 0xFFF0) == 0xF840 ) )
335 printf("PHY=LAN83C183 (LAN91C111 Internal)\n");
338 if ( (phy_id1
== 0x0282) && ((phy_id2
& 0xFFF0) == 0x1C50) )
340 printf("PHY=LAN83C180\n");
346 /*------------------------------------------------------------
347 . Configures the specified PHY using Autonegotiation. Calls
348 . smc_phy_fixed() if the user has requested a certain config.
349 .-------------------------------------------------------------*/
350 static void smc_phy_configure(int ioaddr
)
354 word my_phy_caps
; // My PHY capabilities
355 word my_ad_caps
; // My Advertised capabilities
358 int rpc_cur_mode
= RPC_DEFAULT
;
361 // Find the address and type of our phy
362 if (!smc_detect_phy(ioaddr
, &phyaddr
))
367 // Reset the PHY, setting all other bits to zero
368 smc_write_phy_register(ioaddr
, phyaddr
, PHY_CNTL_REG
, PHY_CNTL_RST
);
370 // Wait for the reset to complete, or time out
371 timeout
= 6; // Wait up to 3 seconds
374 if (!(smc_read_phy_register(ioaddr
, phyaddr
, PHY_CNTL_REG
)
381 mdelay(500); // wait 500 millisecs
386 PRINTK2("PHY reset timed out\n");
390 // Read PHY Register 18, Status Output
391 lastPhy18
= smc_read_phy_register(ioaddr
, phyaddr
, PHY_INT_REG
);
393 // Enable PHY Interrupts (for register 18)
394 // Interrupts listed here are disabled
395 smc_write_phy_register(ioaddr
, phyaddr
, PHY_MASK_REG
,
396 PHY_INT_LOSSSYNC
| PHY_INT_CWRD
| PHY_INT_SSD
|
397 PHY_INT_ESD
| PHY_INT_RPOL
| PHY_INT_JAB
|
398 PHY_INT_SPDDET
| PHY_INT_DPLXDET
);
400 /* Configure the Receive/Phy Control register */
401 SMC_SELECT_BANK(ioaddr
, 0);
402 outw( rpc_cur_mode
, ioaddr
+ RPC_REG
);
404 // Copy our capabilities from PHY_STAT_REG to PHY_AD_REG
405 my_phy_caps
= smc_read_phy_register(ioaddr
, phyaddr
, PHY_STAT_REG
);
406 my_ad_caps
= PHY_AD_CSMA
; // I am CSMA capable
408 if (my_phy_caps
& PHY_STAT_CAP_T4
)
409 my_ad_caps
|= PHY_AD_T4
;
411 if (my_phy_caps
& PHY_STAT_CAP_TXF
)
412 my_ad_caps
|= PHY_AD_TX_FDX
;
414 if (my_phy_caps
& PHY_STAT_CAP_TXH
)
415 my_ad_caps
|= PHY_AD_TX_HDX
;
417 if (my_phy_caps
& PHY_STAT_CAP_TF
)
418 my_ad_caps
|= PHY_AD_10_FDX
;
420 if (my_phy_caps
& PHY_STAT_CAP_TH
)
421 my_ad_caps
|= PHY_AD_10_HDX
;
423 // Update our Auto-Neg Advertisement Register
424 smc_write_phy_register(ioaddr
, phyaddr
, PHY_AD_REG
, my_ad_caps
);
426 PRINTK2("phy caps=%x\n", my_phy_caps
);
427 PRINTK2("phy advertised caps=%x\n", my_ad_caps
);
429 // Restart auto-negotiation process in order to advertise my caps
430 smc_write_phy_register( ioaddr
, phyaddr
, PHY_CNTL_REG
,
431 PHY_CNTL_ANEG_EN
| PHY_CNTL_ANEG_RST
);
433 // Wait for the auto-negotiation to complete. This may take from
435 // Wait for the reset to complete, or time out
436 timeout
= 20; // Wait up to 10 seconds
439 status
= smc_read_phy_register(ioaddr
, phyaddr
, PHY_STAT_REG
);
440 if (status
& PHY_STAT_ANEG_ACK
)
442 // auto-negotiate complete
446 mdelay(500); // wait 500 millisecs
448 // Restart auto-negotiation if remote fault
449 if (status
& PHY_STAT_REM_FLT
)
451 PRINTK2("PHY remote fault detected\n");
453 // Restart auto-negotiation
454 PRINTK2("PHY restarting auto-negotiation\n");
455 smc_write_phy_register( ioaddr
, phyaddr
, PHY_CNTL_REG
,
456 PHY_CNTL_ANEG_EN
| PHY_CNTL_ANEG_RST
|
457 PHY_CNTL_SPEED
| PHY_CNTL_DPLX
);
463 PRINTK2("PHY auto-negotiate timed out\n");
467 // Fail if we detected an auto-negotiate remote fault
468 if (status
& PHY_STAT_REM_FLT
)
470 PRINTK2("PHY remote fault detected\n");
474 // Set our sysctl parameters to match auto-negotiation results
475 if ( lastPhy18
& PHY_INT_SPDDET
)
477 PRINTK2("PHY 100BaseT\n");
478 rpc_cur_mode
|= RPC_SPEED
;
482 PRINTK2("PHY 10BaseT\n");
483 rpc_cur_mode
&= ~RPC_SPEED
;
486 if ( lastPhy18
& PHY_INT_DPLXDET
)
488 PRINTK2("PHY Full Duplex\n");
489 rpc_cur_mode
|= RPC_DPLX
;
493 PRINTK2("PHY Half Duplex\n");
494 rpc_cur_mode
&= ~RPC_DPLX
;
497 // Re-Configure the Receive/Phy Control register
498 outw( rpc_cur_mode
, ioaddr
+ RPC_REG
);
502 * Function: smc_reset( int ioaddr )
504 * This sets the SMC91xx chip to its normal state, hopefully from whatever
505 * mess that any other DOS driver has put it in.
507 * Maybe I should reset more registers to defaults in here? SOFTRESET should
511 * 1. send a SOFT RESET
512 * 2. wait for it to finish
513 * 3. reset the memory management unit
514 * 4. clear all interrupts
517 static void smc_reset(int ioaddr
)
519 /* This resets the registers mostly to defaults, but doesn't
520 * affect EEPROM. That seems unnecessary */
521 SMC_SELECT_BANK(ioaddr
, 0);
522 _outw( RCR_SOFTRESET
, ioaddr
+ RCR
);
524 /* this should pause enough for the chip to be happy */
527 /* Set the transmit and receive configuration registers to
529 _outw(RCR_CLEAR
, ioaddr
+ RCR
);
530 _outw(TCR_CLEAR
, ioaddr
+ TCR
);
533 SMC_SELECT_BANK(ioaddr
, 2);
534 _outw( MC_RESET
, ioaddr
+ MMU_CMD
);
536 /* Note: It doesn't seem that waiting for the MMU busy is needed here,
537 * but this is a place where future chipsets _COULD_ break. Be wary
538 * of issuing another MMU command right after this */
539 _outb(0, ioaddr
+ INT_MASK
);
543 /*----------------------------------------------------------------------
544 * Function: smc9000_probe_addr( int ioaddr )
547 * Tests to see if a given ioaddr points to an SMC9xxx chip.
548 * Returns a 1 on success
551 * (1) see if the high byte of BANK_SELECT is 0x33
552 * (2) compare the ioaddr with the base register's address
553 * (3) see if I recognize the chip ID in the appropriate register
555 * ---------------------------------------------------------------------
557 static int smc9000_probe_addr( isa_probe_addr_t ioaddr
)
560 word revision_register
;
561 word base_address_register
;
563 /* First, see if the high byte is 0x33 */
564 bank
= inw(ioaddr
+ BANK_SELECT
);
565 if ((bank
& 0xFF00) != 0x3300) {
568 /* The above MIGHT indicate a device, but I need to write to further
570 _outw(0x0, ioaddr
+ BANK_SELECT
);
571 bank
= inw(ioaddr
+ BANK_SELECT
);
572 if ((bank
& 0xFF00) != 0x3300) {
576 /* well, we've already written once, so hopefully another time won't
577 * hurt. This time, I need to switch the bank register to bank 1,
578 * so I can access the base address register */
579 SMC_SELECT_BANK(ioaddr
, 1);
580 base_address_register
= inw(ioaddr
+ BASE
);
582 if (ioaddr
!= (base_address_register
>> 3 & 0x3E0)) {
583 DBG("SMC9000: IOADDR %hX doesn't match configuration (%hX)."
584 "Probably not a SMC chip\n",
585 ioaddr
, base_address_register
>> 3 & 0x3E0);
586 /* well, the base address register didn't match. Must not have
587 * been a SMC chip after all. */
592 /* check if the revision register is something that I recognize.
593 * These might need to be added to later, as future revisions
595 SMC_SELECT_BANK(ioaddr
, 3);
596 revision_register
= inw(ioaddr
+ REVISION
);
597 if (!chip_ids
[(revision_register
>> 4) & 0xF]) {
598 /* I don't recognize this chip, so... */
599 DBG( "SMC9000: IO %hX: Unrecognized revision register:"
600 " %hX, Contact author.\n", ioaddr
, revision_register
);
604 /* at this point I'll assume that the chip is an SMC9xxx.
605 * It might be prudent to check a listing of MAC addresses
606 * against the hardware address, or do some other tests. */
611 /**************************************************************************
612 * ETH_TRANSMIT - Transmit a frame
613 ***************************************************************************/
614 static void smc9000_transmit(
616 const char *d
, /* Destination */
617 unsigned int t
, /* Type */
618 unsigned int s
, /* size */
619 const char *p
) /* Packet */
621 word length
; /* real, length incl. header */
623 unsigned long time_out
;
628 /* We dont pad here since we can have the hardware doing it for us */
629 length
= (s
+ ETH_HLEN
+ 1)&~1;
631 /* convert to MMU pages */
632 numPages
= length
/ 256;
635 DBG("SMC9000: Far too big packet error. \n");
639 /* dont try more than, say 30 times */
641 /* now, try to allocate the memory */
642 SMC_SELECT_BANK(nic
->ioaddr
, 2);
643 _outw(MC_ALLOC
| numPages
, nic
->ioaddr
+ MMU_CMD
);
646 /* wait for the memory allocation to finnish */
647 for (time_out
= currticks() + 5*TICKS_PER_SEC
; currticks() < time_out
; ) {
648 status
= inb(nic
->ioaddr
+ INTERRUPT
);
649 if ( status
& IM_ALLOC_INT
) {
650 /* acknowledge the interrupt */
651 _outb(IM_ALLOC_INT
, nic
->ioaddr
+ INTERRUPT
);
656 if ((status
& IM_ALLOC_INT
) != 0 ) {
657 /* We've got the memory */
660 printf("SMC9000: Memory allocation timed out, resetting MMU.\n");
661 _outw(MC_RESET
, nic
->ioaddr
+ MMU_CMD
);
665 /* If I get here, I _know_ there is a packet slot waiting for me */
666 packet_no
= inb(nic
->ioaddr
+ PNR_ARR
+ 1);
667 if (packet_no
& 0x80) {
668 /* or isn't there? BAD CHIP! */
669 printf("SMC9000: Memory allocation failed. \n");
673 /* we have a packet address, so tell the card to use it */
674 _outb(packet_no
, nic
->ioaddr
+ PNR_ARR
);
676 /* point to the beginning of the packet */
677 _outw(PTR_AUTOINC
, nic
->ioaddr
+ POINTER
);
679 #if SMC9000_DEBUG > 2
680 printf("Trying to xmit packet of length %hX\n", length
);
683 /* send the packet length ( +6 for status, length and ctl byte )
684 * and the status word ( set to zeros ) */
685 _outw(0, nic
->ioaddr
+ DATA_1
);
687 /* send the packet length ( +6 for status words, length, and ctl) */
688 _outb((length
+6) & 0xFF, nic
->ioaddr
+ DATA_1
);
689 _outb((length
+6) >> 8 , nic
->ioaddr
+ DATA_1
);
691 /* Write the contents of the packet */
693 /* The ethernet header first... */
694 outsw(nic
->ioaddr
+ DATA_1
, d
, ETH_ALEN
>> 1);
695 outsw(nic
->ioaddr
+ DATA_1
, nic
->node_addr
, ETH_ALEN
>> 1);
696 _outw(htons(t
), nic
->ioaddr
+ DATA_1
);
698 /* ... the data ... */
699 outsw(nic
->ioaddr
+ DATA_1
, p
, s
>> 1);
701 /* ... and the last byte, if there is one. */
703 _outw(0, nic
->ioaddr
+ DATA_1
);
705 _outb(p
[s
-1], nic
->ioaddr
+ DATA_1
);
706 _outb(0x20, nic
->ioaddr
+ DATA_1
);
709 /* and let the chipset deal with it */
710 _outw(MC_ENQUEUE
, nic
->ioaddr
+ MMU_CMD
);
712 status
= 0; time_out
= currticks() + 5*TICKS_PER_SEC
;
714 status
= inb(nic
->ioaddr
+ INTERRUPT
);
716 if ((status
& IM_TX_INT
) != 0) {
720 _outb(IM_TX_INT
, nic
->ioaddr
+ INTERRUPT
);
722 packet_no
= inw(nic
->ioaddr
+ FIFO_PORTS
);
725 /* select this as the packet to read from */
726 _outb( packet_no
, nic
->ioaddr
+ PNR_ARR
);
728 /* read the first word from this packet */
729 _outw( PTR_AUTOINC
| PTR_READ
, nic
->ioaddr
+ POINTER
);
731 tx_status
= inw( nic
->ioaddr
+ DATA_1
);
733 if (0 == (tx_status
& TS_SUCCESS
)) {
734 DBG("SMC9000: TX FAIL STATUS: %hX \n", tx_status
);
735 /* re-enable transmit */
736 SMC_SELECT_BANK(nic
->ioaddr
, 0);
737 _outw(inw(nic
->ioaddr
+ TCR
) | TCR_ENABLE
, nic
->ioaddr
+ TCR
);
740 /* kill the packet */
741 SMC_SELECT_BANK(nic
->ioaddr
, 2);
742 _outw(MC_FREEPKT
, nic
->ioaddr
+ MMU_CMD
);
746 }while(currticks() < time_out
);
748 printf("SMC9000: TX timed out, resetting board\n");
749 smc_reset(nic
->ioaddr
);
753 /**************************************************************************
754 * ETH_POLL - Wait for a frame
755 ***************************************************************************/
756 static int smc9000_poll(struct nic
*nic
, int retrieve
)
758 SMC_SELECT_BANK(nic
->ioaddr
, 2);
759 if (inw(nic
->ioaddr
+ FIFO_PORTS
) & FP_RXEMPTY
)
762 if ( ! retrieve
) return 1;
764 /* start reading from the start of the packet */
765 _outw(PTR_READ
| PTR_RCV
| PTR_AUTOINC
, nic
->ioaddr
+ POINTER
);
767 /* First read the status and check that we're ok */
768 if (!(inw(nic
->ioaddr
+ DATA_1
) & RS_ERRORS
)) {
769 /* Next: read the packet length and mask off the top bits */
770 nic
->packetlen
= (inw(nic
->ioaddr
+ DATA_1
) & 0x07ff);
772 /* the packet length includes the 3 extra words */
774 #if SMC9000_DEBUG > 2
775 printf(" Reading %d words (and %d byte(s))\n",
776 (nic
->packetlen
>> 1), nic
->packetlen
& 1);
778 /* read the packet (and the last "extra" word) */
779 insw(nic
->ioaddr
+ DATA_1
, nic
->packet
, (nic
->packetlen
+2) >> 1);
780 /* is there an odd last byte ? */
781 if (nic
->packet
[nic
->packetlen
+1] & 0x20)
784 /* error or good, tell the card to get rid of this packet */
785 _outw(MC_RELEASE
, nic
->ioaddr
+ MMU_CMD
);
789 printf("SMC9000: RX error\n");
790 /* error or good, tell the card to get rid of this packet */
791 _outw(MC_RELEASE
, nic
->ioaddr
+ MMU_CMD
);
795 static void smc9000_disable ( struct nic
*nic
, struct isa_device
*isa __unused
) {
797 smc_reset(nic
->ioaddr
);
799 /* no more interrupts for me */
800 SMC_SELECT_BANK(nic
->ioaddr
, 2);
801 _outb( 0, nic
->ioaddr
+ INT_MASK
);
803 /* and tell the card to stay away from that nasty outside world */
804 SMC_SELECT_BANK(nic
->ioaddr
, 0);
805 _outb( RCR_CLEAR
, nic
->ioaddr
+ RCR
);
806 _outb( TCR_CLEAR
, nic
->ioaddr
+ TCR
);
809 static void smc9000_irq(struct nic
*nic __unused
, irq_action_t action __unused
)
821 static struct nic_operations smc9000_operations
= {
822 .connect
= dummy_connect
,
823 .poll
= smc9000_poll
,
824 .transmit
= smc9000_transmit
,
829 /**************************************************************************
830 * ETH_PROBE - Look for an adapter
831 ***************************************************************************/
833 static int smc9000_probe ( struct nic
*nic
, struct isa_device
*isa
) {
835 unsigned short revision
;
838 const char * version_string
;
839 const char * if_string
;
843 isa_fill_nic ( nic
, isa
);
844 nic
->ioaddr
= isa
->ioaddr
;
847 * Get the MAC address ( bank 1, regs 4 - 9 )
849 SMC_SELECT_BANK(nic
->ioaddr
, 1);
850 for ( i
= 0; i
< 6; i
+= 2 ) {
853 address
= inw(nic
->ioaddr
+ ADDR0
+ i
);
854 nic
->node_addr
[i
+1] = address
>> 8;
855 nic
->node_addr
[i
] = address
& 0xFF;
858 /* get the memory information */
859 SMC_SELECT_BANK(nic
->ioaddr
, 0);
860 memory
= ( inw(nic
->ioaddr
+ MCR
) >> 9 ) & 0x7; /* multiplier */
861 memory
*= 256 * (inw(nic
->ioaddr
+ MIR
) & 0xFF);
864 * Now, I want to find out more about the chip. This is sort of
865 * redundant, but it's cleaner to have it in both, rather than having
866 * one VERY long probe procedure.
868 SMC_SELECT_BANK(nic
->ioaddr
, 3);
869 revision
= inw(nic
->ioaddr
+ REVISION
);
870 version_string
= chip_ids
[(revision
>> 4) & 0xF];
872 if (((revision
& 0xF0) >> 4 == CHIP_9196
) &&
873 ((revision
& 0x0F) >= REV_9196
)) {
874 /* This is a 91c96. 'c96 has the same chip id as 'c94 (4) but
875 * a revision starting at 6 */
876 version_string
= smc91c96_id
;
879 if ( !version_string
) {
880 /* I shouldn't get here because this call was done before.... */
884 /* is it using AUI or 10BaseT ? */
885 SMC_SELECT_BANK(nic
->ioaddr
, 1);
886 if (inw(nic
->ioaddr
+ CONFIG
) & CFG_AUI_SELECT
)
891 if_string
= interfaces
[media
- 1];
893 /* now, reset the chip, and put it into a known state */
894 smc_reset(nic
->ioaddr
);
896 printf("SMC9000 %s\n", smc9000_version
);
897 DBG("Copyright (C) 1998 Daniel Engstr\x94m\n");
898 DBG("Copyright (C) 1996 Eric Stahlman\n");
900 printf("%s rev:%d I/O port:%hX Interface:%s RAM:%d bytes \n",
901 version_string
, revision
& 0xF,
902 nic
->ioaddr
, if_string
, memory
);
904 DBG ( "Ethernet MAC address: %s\n", eth_ntoa ( nic
->node_addr
) );
906 SMC_SELECT_BANK(nic
->ioaddr
, 0);
908 /* see the header file for options in TCR/RCR NORMAL*/
909 _outw(TCR_NORMAL
, nic
->ioaddr
+ TCR
);
910 _outw(RCR_NORMAL
, nic
->ioaddr
+ RCR
);
912 /* Select which interface to use */
913 SMC_SELECT_BANK(nic
->ioaddr
, 1);
915 _outw( inw( nic
->ioaddr
+ CONFIG
) & ~CFG_AUI_SELECT
,
916 nic
->ioaddr
+ CONFIG
);
918 else if ( media
== 2 ) {
919 _outw( inw( nic
->ioaddr
+ CONFIG
) | CFG_AUI_SELECT
,
920 nic
->ioaddr
+ CONFIG
);
923 smc_phy_configure(nic
->ioaddr
);
925 nic
->nic_op
= &smc9000_operations
;
930 * The SMC9000 can be at any of the following port addresses. To
931 * change for a slightly different card, you can add it to the array.
934 static isa_probe_addr_t smc9000_probe_addrs
[] = {
935 0x200, 0x220, 0x240, 0x260, 0x280, 0x2A0, 0x2C0, 0x2E0,
936 0x300, 0x320, 0x340, 0x360, 0x380, 0x3A0, 0x3C0, 0x3E0,
939 ISA_DRIVER ( smc9000_driver
, smc9000_probe_addrs
, smc9000_probe_addr
,
940 GENERIC_ISAPNP_VENDOR
, 0x8228 );
942 DRIVER ( "SMC9000", nic_driver
, isa_driver
, smc9000_driver
,
943 smc9000_probe
, smc9000_disable
);
945 ISA_ROM ( "smc9000", "SMC9000" );