]> Joshua Wise's Git repositories - netwatch.git/blob - net/3c90x.c
Lots of recommenting and restructuring. Still locks up after one xmit --- wtf?
[netwatch.git] / net / 3c90x.c
1 /*
2  * 3c90x.c -- This file implements the 3c90x driver for etherboot.  Written
3  * by Greg Beeley, Greg.Beeley@LightSys.org.  Modified by Steve Smith,
4  * Steve.Smith@Juno.Com. Alignment bug fix Neil Newell (nn@icenoir.net).
5  *
6  * This program Copyright (C) 1999 LightSys Technology Services, Inc.
7  * Portions Copyright (C) 1999 Steve Smith
8  *
9  * This program may be re-distributed in source or binary form, modified,
10  * sold, or copied for any purpose, provided that the above copyright message
11  * and this text are included with all source copies or derivative works, and
12  * provided that the above copyright message and this text are included in the
13  * documentation of any binary-only distributions.  This program is distributed
14  * WITHOUT ANY WARRANTY, without even the warranty of FITNESS FOR A PARTICULAR
15  * PURPOSE or MERCHANTABILITY.  Please read the associated documentation
16  * "3c90x.txt" before compiling and using this driver.
17  *
18  * --------
19  *
20  * Program written with the assistance of the 3com documentation for
21  * the 3c905B-TX card, as well as with some assistance from the 3c59x
22  * driver Donald Becker wrote for the Linux kernel, and with some assistance
23  * from the remainder of the Etherboot distribution.
24  *
25  * REVISION HISTORY:
26  *
27  * v0.10        1-26-1998       GRB     Initial implementation.
28  * v0.90        1-27-1998       GRB     System works.
29  * v1.00pre1    2-11-1998       GRB     Got prom boot issue fixed.
30  * v2.0         9-24-1999       SCS     Modified for 3c905 (from 3c905b code)
31  *                                      Re-wrote poll and transmit for
32  *                                      better error recovery and heavy
33  *                                      network traffic operation
34  * v2.01    5-26-2003 NN Fixed driver alignment issue which
35  *                  caused system lockups if driver structures
36  *                  not 8-byte aligned.
37  *
38  */
39
40 #include "etherboot-compat.h"
41 #include "net.h"
42 #include <timer.h>
43 #include <io.h>
44 #include <pci.h>
45 #include <pci-bother.h>
46 #include <minilib.h>
47 #include <output.h>
48
49 #define XCVR_MAGIC      (0x5A00)
50 /** any single transmission fails after 16 collisions or other errors
51  ** this is the number of times to retry the transmission -- this should
52  ** be plenty
53  **/
54 #define XMIT_RETRIES    1
55
56 /*** Register definitions for the 3c905 ***/
57 enum Registers
58     {
59     regPowerMgmtCtrl_w = 0x7c,        /** 905B Revision Only                 **/
60     regUpMaxBurst_w = 0x7a,           /** 905B Revision Only                 **/
61     regDnMaxBurst_w = 0x78,           /** 905B Revision Only                 **/
62     regDebugControl_w = 0x74,         /** 905B Revision Only                 **/
63     regDebugData_l = 0x70,            /** 905B Revision Only                 **/
64     regRealTimeCnt_l = 0x40,          /** Universal                          **/
65     regUpBurstThresh_b = 0x3e,        /** 905B Revision Only                 **/
66     regUpPoll_b = 0x3d,               /** 905B Revision Only                 **/
67     regUpPriorityThresh_b = 0x3c,     /** 905B Revision Only                 **/
68     regUpListPtr_l = 0x38,            /** Universal                          **/
69     regCountdown_w = 0x36,            /** Universal                          **/
70     regFreeTimer_w = 0x34,            /** Universal                          **/
71     regUpPktStatus_l = 0x30,          /** Universal with Exception, pg 130   **/
72     regTxFreeThresh_b = 0x2f,         /** 90X Revision Only                  **/
73     regDnPoll_b = 0x2d,               /** 905B Revision Only                 **/
74     regDnPriorityThresh_b = 0x2c,     /** 905B Revision Only                 **/
75     regDnBurstThresh_b = 0x2a,        /** 905B Revision Only                 **/
76     regDnListPtr_l = 0x24,            /** Universal with Exception, pg 107   **/
77     regDmaCtrl_l = 0x20,              /** Universal with Exception, pg 106   **/
78                                       /**                                    **/
79     regIntStatusAuto_w = 0x1e,        /** 905B Revision Only                 **/
80     regTxStatus_b = 0x1b,             /** Universal with Exception, pg 113   **/
81     regTimer_b = 0x1a,                /** Universal                          **/
82     regTxPktId_b = 0x18,              /** 905B Revision Only                 **/
83     regCommandIntStatus_w = 0x0e,     /** Universal (Command Variations)     **/
84     };
85
86 /** following are windowed registers **/
87 enum Registers7
88     {
89     regPowerMgmtEvent_7_w = 0x0c,     /** 905B Revision Only                 **/
90     regVlanEtherType_7_w = 0x04,      /** 905B Revision Only                 **/
91     regVlanMask_7_w = 0x00,           /** 905B Revision Only                 **/
92     };
93
94 enum Registers6
95     {
96     regBytesXmittedOk_6_w = 0x0c,     /** Universal                          **/
97     regBytesRcvdOk_6_w = 0x0a,        /** Universal                          **/
98     regUpperFramesOk_6_b = 0x09,      /** Universal                          **/
99     regFramesDeferred_6_b = 0x08,     /** Universal                          **/
100     regFramesRecdOk_6_b = 0x07,       /** Universal with Exceptions, pg 142  **/
101     regFramesXmittedOk_6_b = 0x06,    /** Universal                          **/
102     regRxOverruns_6_b = 0x05,         /** Universal                          **/
103     regLateCollisions_6_b = 0x04,     /** Universal                          **/
104     regSingleCollisions_6_b = 0x03,   /** Universal                          **/
105     regMultipleCollisions_6_b = 0x02, /** Universal                          **/
106     regSqeErrors_6_b = 0x01,          /** Universal                          **/
107     regCarrierLost_6_b = 0x00,        /** Universal                          **/
108     };
109
110 enum Registers5
111     {
112     regIndicationEnable_5_w = 0x0c,   /** Universal                          **/
113     regInterruptEnable_5_w = 0x0a,    /** Universal                          **/
114     regTxReclaimThresh_5_b = 0x09,    /** 905B Revision Only                 **/
115     regRxFilter_5_b = 0x08,           /** Universal                          **/
116     regRxEarlyThresh_5_w = 0x06,      /** Universal                          **/
117     regTxStartThresh_5_w = 0x00,      /** Universal                          **/
118     };
119
120 enum Registers4
121     {
122     regUpperBytesOk_4_b = 0x0d,       /** Universal                          **/
123     regBadSSD_4_b = 0x0c,             /** Universal                          **/
124     regMediaStatus_4_w = 0x0a,        /** Universal with Exceptions, pg 201  **/
125     regPhysicalMgmt_4_w = 0x08,       /** Universal                          **/
126     regNetworkDiagnostic_4_w = 0x06,  /** Universal with Exceptions, pg 203  **/
127     regFifoDiagnostic_4_w = 0x04,     /** Universal with Exceptions, pg 196  **/
128     regVcoDiagnostic_4_w = 0x02,      /** Undocumented?                      **/
129     };
130
131 enum Registers3
132     {
133     regTxFree_3_w = 0x0c,             /** Universal                          **/
134     regRxFree_3_w = 0x0a,             /** Universal with Exceptions, pg 125  **/
135     regResetMediaOptions_3_w = 0x08,  /** Media Options on B Revision,       **/
136                                       /** Reset Options on Non-B Revision    **/
137     regMacControl_3_w = 0x06,         /** Universal with Exceptions, pg 199  **/
138     regMaxPktSize_3_w = 0x04,         /** 905B Revision Only                 **/
139     regInternalConfig_3_l = 0x00,     /** Universal, different bit           **/
140                                       /** definitions, pg 59                 **/
141     };
142
143 enum Registers2
144     {
145     regResetOptions_2_w = 0x0c,       /** 905B Revision Only                 **/
146     regStationMask_2_3w = 0x06,       /** Universal with Exceptions, pg 127  **/
147     regStationAddress_2_3w = 0x00,    /** Universal with Exceptions, pg 127  **/
148     };
149
150 enum Registers1
151     {
152     regRxStatus_1_w = 0x0a,           /** 90X Revision Only, Pg 126          **/
153     };
154
155 enum Registers0
156     {
157     regEepromData_0_w = 0x0c,         /** Universal                          **/
158     regEepromCommand_0_w = 0x0a,      /** Universal                          **/
159     regBiosRomData_0_b = 0x08,        /** 905B Revision Only                 **/
160     regBiosRomAddr_0_l = 0x04,        /** 905B Revision Only                 **/
161     };
162
163
164 /*** The names for the eight register windows ***/
165 enum Windows
166     {
167     winPowerVlan7 = 0x07,
168     winStatistics6 = 0x06,
169     winTxRxControl5 = 0x05,
170     winDiagnostics4 = 0x04,
171     winTxRxOptions3 = 0x03,
172     winAddressing2 = 0x02,
173     winUnused1 = 0x01,
174     winEepromBios0 = 0x00,
175     };
176
177
178 /*** Command definitions for the 3c90X ***/
179 enum Commands
180     {
181     cmdGlobalReset = 0x00,             /** Universal with Exceptions, pg 151 **/
182     cmdSelectRegisterWindow = 0x01,    /** Universal                         **/
183     cmdEnableDcConverter = 0x02,       /**                                   **/
184     cmdRxDisable = 0x03,               /**                                   **/
185     cmdRxEnable = 0x04,                /** Universal                         **/
186     cmdRxReset = 0x05,                 /** Universal                         **/
187     cmdStallCtl = 0x06,                /** Universal                         **/
188     cmdTxEnable = 0x09,                /** Universal                         **/
189     cmdTxDisable = 0x0A,               /**                                   **/
190     cmdTxReset = 0x0B,                 /** Universal                         **/
191     cmdRequestInterrupt = 0x0C,        /**                                   **/
192     cmdAcknowledgeInterrupt = 0x0D,    /** Universal                         **/
193     cmdSetInterruptEnable = 0x0E,      /** Universal                         **/
194     cmdSetIndicationEnable = 0x0F,     /** Universal                         **/
195     cmdSetRxFilter = 0x10,             /** Universal                         **/
196     cmdSetRxEarlyThresh = 0x11,        /**                                   **/
197     cmdSetTxStartThresh = 0x13,        /**                                   **/
198     cmdStatisticsEnable = 0x15,        /**                                   **/
199     cmdStatisticsDisable = 0x16,       /**                                   **/
200     cmdDisableDcConverter = 0x17,      /**                                   **/
201     cmdSetTxReclaimThresh = 0x18,      /**                                   **/
202     cmdSetHashFilterBit = 0x19,        /**                                   **/
203     };
204
205
206 /*** Values for int status register bitmask **/
207 #define INT_INTERRUPTLATCH      (1<<0)
208 #define INT_HOSTERROR           (1<<1)
209 #define INT_TXCOMPLETE          (1<<2)
210 #define INT_RXCOMPLETE          (1<<4)
211 #define INT_RXEARLY             (1<<5)
212 #define INT_INTREQUESTED        (1<<6)
213 #define INT_UPDATESTATS         (1<<7)
214 #define INT_LINKEVENT           (1<<8)
215 #define INT_DNCOMPLETE          (1<<9)
216 #define INT_UPCOMPLETE          (1<<10)
217 #define INT_CMDINPROGRESS       (1<<12)
218 #define INT_WINDOWNUMBER        (7<<13)
219
220
221 /*** TX descriptor ***/
222 typedef struct
223     {
224     unsigned int        DnNextPtr;
225     unsigned int        FrameStartHeader;
226     unsigned int        HdrAddr;
227     unsigned int        HdrLength;
228     unsigned int        DataAddr;
229     unsigned int        DataLength;
230     }
231     TXD __attribute__ ((aligned(8))); /* 64-bit aligned for bus mastering */
232
233 /*** RX descriptor ***/
234 typedef struct
235     {
236     unsigned int        UpNextPtr;
237     unsigned int        UpPktStatus;
238     unsigned int        DataAddr;
239     unsigned int        DataLength;
240     }
241     RXD __attribute__ ((aligned(8))); /* 64-bit aligned for bus mastering */
242
243 /*** Global variables ***/
244 static struct
245     {
246     unsigned int        is3c556;
247     unsigned char       isBrev;
248     unsigned char       CurrentWindow;
249     unsigned int        IOAddr;
250     unsigned char       HWAddr[ETH_ALEN];
251     TXD                 TransmitDPD;
252     RXD                 ReceiveUPD;
253     }
254     INF_3C90X;
255 static struct nic nic;
256
257 #define _outl(v,a) outl((a),(v))
258 #define _outw(v,a) outw((a),(v))
259 #define _outb(v,a) outb((a),(v))
260
261 static int _issue_command(int ioaddr, int cmd, int param)
262 {
263         outw(ioaddr + regCommandIntStatus_w, (cmd << 11) | param);
264
265         while (inw(ioaddr + regCommandIntStatus_w) & INT_CMDINPROGRESS)
266                 ;
267
268         return 0;
269 }
270
271
272 /*** a3c90x_internal_SetWindow: selects a register window set.
273  ***/
274 static int _set_window(int ioaddr, int window)
275 {
276         if (INF_3C90X.CurrentWindow == window)
277                 return 0;
278
279         _issue_command(ioaddr, cmdSelectRegisterWindow, window);
280         INF_3C90X.CurrentWindow = window;
281
282         return 0;
283 }
284
285
286 /*** a3c90x_internal_ReadEeprom - read data from the serial eeprom.
287  ***/
288 static unsigned short
289 a3c90x_internal_ReadEeprom(int ioaddr, int address)
290 {
291         unsigned short val;
292
293         /** Select correct window **/
294         _set_window(INF_3C90X.IOAddr, winEepromBios0);
295
296         /** Make sure the eeprom isn't busy **/
297         do
298         {
299                 int i;
300                 for (i = 0; i < 165; i++)
301                         inb(0x80);      /* wait 165 usec */
302         }
303         while(0x8000 & inw(ioaddr + regEepromCommand_0_w));
304
305         /** Read the value. **/
306         if (INF_3C90X.is3c556)
307                 _outw(address + (0x230), ioaddr + regEepromCommand_0_w);
308         else
309                 _outw(address + 0x80, ioaddr + regEepromCommand_0_w);
310
311         do
312         {
313                 int i;
314                 for (i = 0; i < 165; i++)
315                         inb(0x80);      /* wait 165 usec */
316         }
317         while(0x8000 & inw(ioaddr + regEepromCommand_0_w));
318         val = inw(ioaddr + regEepromData_0_w);
319         
320         return val;
321 }
322
323
324 #ifdef  CFG_3C90X_BOOTROM_FIX
325 /*** a3c90x_internal_WriteEepromWord - write a physical word of
326  *** data to the onboard serial eeprom (not the BIOS prom, but the
327  *** nvram in the card that stores, among other things, the MAC
328  *** address).
329  ***/
330 static int
331 a3c90x_internal_WriteEepromWord(int ioaddr, int address, unsigned short value)
332     {
333         /** Select register window **/
334         _set_window(ioaddr, winEepromBios0);
335
336         /** Verify Eeprom not busy **/
337         while((1<<15) & inw(ioaddr + regEepromCommand_0_w));
338
339         /** Issue WriteEnable, and wait for completion. **/
340         _outw(0x30, ioaddr + regEepromCommand_0_w);
341         while((1<<15) & inw(ioaddr + regEepromCommand_0_w));
342
343         /** Issue EraseRegister, and wait for completion. **/
344         _outw(address + ((0x03)<<6), ioaddr + regEepromCommand_0_w);
345         while((1<<15) & inw(ioaddr + regEepromCommand_0_w));
346
347         /** Send the new data to the eeprom, and wait for completion. **/
348         _outw(value, ioaddr + regEepromData_0_w);
349         _outw(0x30, ioaddr + regEepromCommand_0_w);
350         while((1<<15) & inw(ioaddr + regEepromCommand_0_w));
351
352         /** Burn the new data into the eeprom, and wait for completion. **/
353         _outw(address + ((0x01)<<6), ioaddr + regEepromCommand_0_w);
354         while((1<<15) & inw(ioaddr + regEepromCommand_0_w));
355
356     return 0;
357     }
358 #endif
359
360 #ifdef  CFG_3C90X_BOOTROM_FIX
361 /*** a3c90x_internal_WriteEeprom - write data to the serial eeprom,
362  *** and re-compute the eeprom checksum.
363  ***/
364 static int
365 a3c90x_internal_WriteEeprom(int ioaddr, int address, unsigned short value)
366     {
367     int cksum = 0,v;
368     int i;
369     int maxAddress, cksumAddress;
370
371         if (INF_3C90X.isBrev)
372             {
373             maxAddress=0x1f;
374             cksumAddress=0x20;
375             }
376         else
377             {
378             maxAddress=0x16;
379             cksumAddress=0x17;
380             }
381
382         /** Write the value. **/
383         if (a3c90x_internal_WriteEepromWord(ioaddr, address, value) == -1)
384             return -1;
385
386         /** Recompute the checksum. **/
387         for(i=0;i<=maxAddress;i++)
388             {
389             v = a3c90x_internal_ReadEeprom(ioaddr, i);
390             cksum ^= (v & 0xFF);
391             cksum ^= ((v>>8) & 0xFF);
392             }
393         /** Write the checksum to the location in the eeprom **/
394         if (a3c90x_internal_WriteEepromWord(ioaddr, cksumAddress, cksum) == -1)
395             return -1;
396
397     return 0;
398     }
399 #endif
400
401 /*** a3c90x_reset: exported function that resets the card to its default
402  *** state.  This is so the Linux driver can re-set the card up the way
403  *** it wants to.  If CFG_3C90X_PRESERVE_XCVR is defined, then the reset will
404  *** not alter the selected transceiver that we used to download the boot
405  *** image.
406  ***/
407 static void a3c90x_reset(void)
408     {
409 #ifdef  CFG_3C90X_PRESERVE_XCVR
410     int cfg;
411     /** Read the current InternalConfig value. **/
412     _set_window(INF_3C90X.IOAddr, winTxRxOptions3);
413     cfg = inl(INF_3C90X.IOAddr + regInternalConfig_3_l);
414 #endif
415
416     /** Send the reset command to the card **/
417     outputf("3c90x: issuing RESET");
418     _issue_command(INF_3C90X.IOAddr, cmdGlobalReset, 0);
419
420     /** global reset command resets station mask, non-B revision cards
421      ** require explicit reset of values
422      **/
423     _set_window(INF_3C90X.IOAddr, winAddressing2);
424     _outw(0, INF_3C90X.IOAddr + regStationMask_2_3w+0);
425     _outw(0, INF_3C90X.IOAddr + regStationMask_2_3w+2);
426     _outw(0, INF_3C90X.IOAddr + regStationMask_2_3w+4);
427
428 #ifdef  CFG_3C90X_PRESERVE_XCVR
429     /** Re-set the original InternalConfig value from before reset **/
430     _set_window(INF_3C90X.IOAddr, winTxRxOptions3);
431     _outl(cfg, INF_3C90X.IOAddr + regInternalConfig_3_l);
432
433     /** enable DC converter for 10-Base-T **/
434     if ((cfg&0x0300) == 0x0300)
435         {
436         _issue_command(INF_3C90X.IOAddr, cmdEnableDcConverter, 0);
437         }
438 #endif
439
440     /** Issue transmit reset, wait for command completion **/
441     _issue_command(INF_3C90X.IOAddr, cmdTxReset, 0);
442     if (! INF_3C90X.isBrev)
443         _outb(0x01, INF_3C90X.IOAddr + regTxFreeThresh_b);
444     _issue_command(INF_3C90X.IOAddr, cmdTxEnable, 0);
445
446     /**
447      ** reset of the receiver on B-revision cards re-negotiates the link
448      ** takes several seconds (a computer eternity)
449      **/
450     if (INF_3C90X.isBrev)
451         _issue_command(INF_3C90X.IOAddr, cmdRxReset, 0x04);
452     else
453         _issue_command(INF_3C90X.IOAddr, cmdRxReset, 0x00);
454     while (inw(INF_3C90X.IOAddr + regCommandIntStatus_w) & INT_CMDINPROGRESS)
455        ;
456     _issue_command(INF_3C90X.IOAddr, cmdRxEnable, 0);
457
458     _issue_command(INF_3C90X.IOAddr, cmdSetInterruptEnable, 0);
459     /** enable rxComplete and txComplete **/
460     _issue_command(INF_3C90X.IOAddr, cmdSetIndicationEnable, 0x0014);
461     /** acknowledge any pending status flags **/
462     _issue_command(INF_3C90X.IOAddr, cmdAcknowledgeInterrupt, 0x661);
463
464     return;
465     }
466
467
468
469 /*** a3c90x_transmit: exported function that transmits a packet.  Does not
470  *** return any particular status.  Parameters are:
471  *** dest_addr[6] - destination address, ethernet;
472  *** proto - protocol type (ARP, IP, etc);
473  *** size - size of the non-header part of the packet that needs transmitted;
474  *** pkt - the pointer to the packet data itself.
475  ***/
476 static void
477 a3c90x_transmit(const char *dest_addr, unsigned int proto,
478                 unsigned int size, const char *pkt)
479 {
480         struct eth_hdr
481         {
482                 unsigned char dst_addr[ETH_ALEN];
483                 unsigned char src_addr[ETH_ALEN];
484                 unsigned short type;
485         } hdr;
486                 
487         unsigned char status;
488         unsigned int i, retries;
489
490         for (retries=0; retries < XMIT_RETRIES; retries++)
491         {
492                 if (retries != 0)
493                         outputf("3c90x: retrying packet send (%d)", retries);
494                 
495                 /** Stall the download engine **/
496                 outputf("3c90x: stalling transmit engine");
497                 _issue_command(INF_3C90X.IOAddr, cmdStallCtl, 2 /* Stall download */);
498
499                 hdr.type = htons(proto);
500                 memcpy(hdr.dst_addr, dest_addr, ETH_ALEN);
501                 memcpy(hdr.src_addr, INF_3C90X.HWAddr, ETH_ALEN);
502
503                 /** Setup the DPD (download descriptor) **/
504                 INF_3C90X.TransmitDPD.DnNextPtr = 0;
505                 /** set notification for transmission completion (bit 15) **/
506                 INF_3C90X.TransmitDPD.FrameStartHeader = (size + sizeof(hdr)) | 0x8000;
507                 INF_3C90X.TransmitDPD.HdrAddr = virt_to_bus(&hdr);
508                 INF_3C90X.TransmitDPD.HdrLength = sizeof(hdr);
509                 INF_3C90X.TransmitDPD.DataAddr = virt_to_bus(pkt);
510                 INF_3C90X.TransmitDPD.DataLength = size + (1<<31);
511
512                 /** Send the packet **/
513                 outputf("3c90x: pointing card at %08x", virt_to_bus(&(INF_3C90X.TransmitDPD)));
514                 outl(INF_3C90X.IOAddr + regDnListPtr_l, virt_to_bus(&(INF_3C90X.TransmitDPD)));
515
516                 outputf("3c90x: unstalling transmit engine");
517                 _issue_command(INF_3C90X.IOAddr, cmdStallCtl, 3 /* Unstall download */);
518                 
519                 outputf("3c90x: waiting for download pointer");
520                 oneshot_start_ms(100);
521                 while((inl(INF_3C90X.IOAddr + regDnListPtr_l) != 0) && oneshot_running())
522                         ;
523                 if (!oneshot_running())
524                 {
525                         outputf("3c90x: Download engine pointer timeout");
526                 }
527
528                 outputf("3c90x: waiting for TXCOMPLETE");
529                 oneshot_start_ms(10);   /* Give it 10 ms */
530                 while (!(inw(INF_3C90X.IOAddr + regCommandIntStatus_w) & INT_TXCOMPLETE) && oneshot_running())
531                         ;
532
533                 if (!(inw(INF_3C90X.IOAddr + regCommandIntStatus_w) & INT_TXCOMPLETE))
534                 {
535                         outputf("3c90x: tx timeout? stat %02x", inb(INF_3C90X.IOAddr + regTxStatus_b));
536                         _issue_command(INF_3C90X.IOAddr, cmdTxReset, 0);
537     if (! INF_3C90X.isBrev)
538         _outb(0x01, INF_3C90X.IOAddr + regTxFreeThresh_b);
539     _issue_command(INF_3C90X.IOAddr, cmdTxEnable, 0);
540     _issue_command(INF_3C90X.IOAddr, cmdSetInterruptEnable, 0);
541     _issue_command(INF_3C90X.IOAddr, cmdSetIndicationEnable, 0x0014);
542     _issue_command(INF_3C90X.IOAddr, cmdAcknowledgeInterrupt, 0x661);
543                         continue;
544                 }
545                 status = inb(INF_3C90X.IOAddr + regTxStatus_b);
546                 outb(INF_3C90X.IOAddr + regTxStatus_b, 0x00);
547                 
548                 _issue_command(INF_3C90X.IOAddr, cmdAcknowledgeInterrupt, INT_TXCOMPLETE);
549
550                 /** successful completion (sans "interrupt Requested" bit) **/
551                 if ((status & 0xbf) == 0x80)
552                         return;
553
554                 outputf("3c90x: Status (%hhX)", status);
555                 /** check error codes **/
556                 if (status & 0x02)
557                 {
558                         outputf("3c90x: Tx Reclaim Error (%hhX)", status);
559                         a3c90x_reset();
560                 } else if (status & 0x04) {
561                         outputf("3c90x: Tx Status Overflow (%hhX)", status);
562                         for (i=0; i<32; i++)
563                                 _outb(0x00, INF_3C90X.IOAddr + regTxStatus_b);
564                         /** must re-enable after max collisions before re-issuing tx **/
565                         _issue_command(INF_3C90X.IOAddr, cmdTxEnable, 0);
566                 } else if (status & 0x08) {
567                         outputf("3c90x: Tx Max Collisions (%hhX)", status);
568                         /** must re-enable after max collisions before re-issuing tx **/
569                         _issue_command(INF_3C90X.IOAddr, cmdTxEnable, 0);
570                 } else if (status & 0x10) {
571                         outputf("3c90x: Tx Underrun (%hhX)", status);
572                         a3c90x_reset();
573                 } else if (status & 0x20) {
574                         outputf("3c90x: Tx Jabber (%hhX)", status);
575                         a3c90x_reset();
576                 } else if ((status & 0x80) != 0x80) {
577                         outputf("3c90x: Internal Error - Incomplete Transmission (%hhX)", status);
578                         a3c90x_reset();
579                 }
580         }
581
582         /** failed after RETRY attempts **/
583         outputf("3c90x: Failed to send after %d retries", retries);
584         return;
585 }
586
587
588
589 /*** a3c90x_poll: exported routine that waits for a certain length of time
590  *** for a packet, and if it sees none, returns 0.  This routine should
591  *** copy the packet to nic->packet if it gets a packet and set the size
592  *** in nic->packetlen.  Return 1 if a packet was found.
593  ***/
594 static int
595 a3c90x_poll(struct nic *nic, int retrieve)
596     {
597     int i, errcode;
598
599     if (!(inw(INF_3C90X.IOAddr + regCommandIntStatus_w)&0x0010))
600         {
601         return 0;
602         }
603
604     if ( ! retrieve ) return 1;
605
606     /** we don't need to acknowledge rxComplete -- the upload engine
607      ** does it for us.
608      **/
609
610     /** Build the up-load descriptor **/
611     INF_3C90X.ReceiveUPD.UpNextPtr = 0;
612     INF_3C90X.ReceiveUPD.UpPktStatus = 0;
613     INF_3C90X.ReceiveUPD.DataAddr = virt_to_bus(nic->packet);
614     INF_3C90X.ReceiveUPD.DataLength = 1536 + (1<<31);
615
616     /** Submit the upload descriptor to the NIC **/
617     _outl(virt_to_bus(&(INF_3C90X.ReceiveUPD)),
618          INF_3C90X.IOAddr + regUpListPtr_l);
619
620     /** Wait for upload completion (upComplete(15) or upError (14)) **/
621     for(i=0;i<40000;i++);
622     while((INF_3C90X.ReceiveUPD.UpPktStatus & ((1<<14) | (1<<15))) == 0)
623         for(i=0;i<40000;i++);
624
625     /** Check for Error (else we have good packet) **/
626     if (INF_3C90X.ReceiveUPD.UpPktStatus & (1<<14))
627         {
628         errcode = INF_3C90X.ReceiveUPD.UpPktStatus;
629         if (errcode & (1<<16))
630             outputf("3C90X: Rx Overrun (%hX)",errcode>>16);
631         else if (errcode & (1<<17))
632             outputf("3C90X: Runt Frame (%hX)",errcode>>16);
633         else if (errcode & (1<<18))
634             outputf("3C90X: Alignment Error (%hX)",errcode>>16);
635         else if (errcode & (1<<19))
636             outputf("3C90X: CRC Error (%hX)",errcode>>16);
637         else if (errcode & (1<<20))
638             outputf("3C90X: Oversized Frame (%hX)",errcode>>16);
639         else
640             outputf("3C90X: Packet error (%hX)",errcode>>16);
641         return 0;
642         }
643
644     /** Ok, got packet.  Set length in nic->packetlen. **/
645     nic->packetlen = (INF_3C90X.ReceiveUPD.UpPktStatus & 0x1FFF);
646
647     return 1;
648     }
649
650
651
652 /*** a3c90x_disable: exported routine to disable the card.  What's this for?
653  *** the eepro100.c driver didn't have one, so I just left this one empty too.
654  *** Ideas anyone?
655  *** Must turn off receiver at least so stray packets will not corrupt memory
656  *** [Ken]
657  ***/
658 void a3c90x_disable(struct dev *dev)
659 {
660         /* reset and disable merge */
661         a3c90x_reset();
662         /* Disable the receiver and transmitter. */
663         _outw(cmdRxDisable, INF_3C90X.IOAddr + regCommandIntStatus_w);
664         _outw(cmdTxDisable, INF_3C90X.IOAddr + regCommandIntStatus_w);
665 }
666
667
668 /*** a3c90x_probe: exported routine to probe for the 3c905 card and perform
669  *** initialization.  If this routine is called, the pci functions did find the
670  *** card.  We just have to init it here.
671  ***/
672 static int a3c90x_probe(struct pci_dev * pci, void * data)
673 {
674     INF_3C90X.is3c556 = (pci->did == 0x6055);
675  
676     int i, c;
677     unsigned short eeprom[0x100];
678     unsigned int cfg;
679     unsigned int mopt;
680     unsigned int mstat;
681     unsigned short linktype;
682 #define HWADDR_OFFSET   10
683
684     unsigned long ioaddr = 0;
685     for (i = 0; i < 6; i++) {
686         if (pci->bars[i].type == PCI_BAR_IO) {
687             ioaddr = pci->bars[i].addr;
688             break;
689         }
690     }
691
692     if (ioaddr == 0)
693     {
694         outputf("3c90x: Unable to find I/O address");
695         return 0;
696     }
697     
698     /* Power it on */
699     pci_write16(pci->bus, pci->dev, pci->fn, 0xE0,
700         pci_read16(pci->bus, pci->dev, pci->fn, 0xE0) & ~0x3);
701     
702     outputf("3c90x: Picked I/O address %04x", ioaddr);
703 //    pci_bother_add(pci);
704     nic.ioaddr = ioaddr & ~3;
705     nic.irqno = 0;
706
707     INF_3C90X.IOAddr = ioaddr;
708     INF_3C90X.CurrentWindow = 255;
709     switch (a3c90x_internal_ReadEeprom(INF_3C90X.IOAddr, 0x03))
710         {
711         case 0x9000: /** 10 Base TPO             **/
712         case 0x9001: /** 10/100 T4               **/
713         case 0x9050: /** 10/100 TPO              **/
714         case 0x9051: /** 10 Base Combo           **/
715                 INF_3C90X.isBrev = 0;
716                 break;
717
718         case 0x9004: /** 10 Base TPO             **/
719         case 0x9005: /** 10 Base Combo           **/
720         case 0x9006: /** 10 Base TPO and Base2   **/
721         case 0x900A: /** 10 Base FL              **/
722         case 0x9055: /** 10/100 TPO              **/
723         case 0x9056: /** 10/100 T4               **/
724         case 0x905A: /** 10 Base FX              **/
725         default:
726                 INF_3C90X.isBrev = 1;
727                 break;
728         }
729
730     /** Load the EEPROM contents **/
731     if (INF_3C90X.isBrev)
732         {
733         for(i=0;i<=/*0x20*/0x7F;i++)
734             {
735             eeprom[i] = a3c90x_internal_ReadEeprom(INF_3C90X.IOAddr, i);
736             }
737
738 #ifdef  CFG_3C90X_BOOTROM_FIX
739         /** Set xcvrSelect in InternalConfig in eeprom. **/
740         /* only necessary for 3c905b revision cards with boot PROM bug!!! */
741         a3c90x_internal_WriteEeprom(INF_3C90X.IOAddr, 0x13, 0x0160);
742 #endif
743
744 #ifdef  CFG_3C90X_XCVR
745         if (CFG_3C90X_XCVR == 255)
746             {
747             /** Clear the LanWorks register **/
748             a3c90x_internal_WriteEeprom(INF_3C90X.IOAddr, 0x16, 0);
749             }
750         else
751             {
752             /** Set the selected permanent-xcvrSelect in the
753              ** LanWorks register
754              **/
755             a3c90x_internal_WriteEeprom(INF_3C90X.IOAddr, 0x16,
756                             XCVR_MAGIC + ((CFG_3C90X_XCVR) & 0x000F));
757             }
758 #endif
759         }
760     else
761         {
762         for(i=0;i<=/*0x17*/0x7F;i++)
763             {
764             eeprom[i] = a3c90x_internal_ReadEeprom(INF_3C90X.IOAddr, i);
765             }
766         }
767
768     /** Print identification message **/
769 #ifdef  CFG_3C90X_BOOTROM_FIX
770     if (INF_3C90X.isBrev)
771         {
772         outputf("NOTE: 3c905b bootrom fix enabled; has side "
773            "effects.  See 3c90x.txt for info.");
774         }
775 #endif
776
777     /** Retrieve the Hardware address and print it on the screen. **/
778     INF_3C90X.HWAddr[0] = eeprom[HWADDR_OFFSET + 0]>>8;
779     INF_3C90X.HWAddr[1] = eeprom[HWADDR_OFFSET + 0]&0xFF;
780     INF_3C90X.HWAddr[2] = eeprom[HWADDR_OFFSET + 1]>>8;
781     INF_3C90X.HWAddr[3] = eeprom[HWADDR_OFFSET + 1]&0xFF;
782     INF_3C90X.HWAddr[4] = eeprom[HWADDR_OFFSET + 2]>>8;
783     INF_3C90X.HWAddr[5] = eeprom[HWADDR_OFFSET + 2]&0xFF;
784     outputf("MAC Address = %02x:%02x:%02x:%02x:%02x:%02x",
785         INF_3C90X.HWAddr[0],
786         INF_3C90X.HWAddr[1],
787         INF_3C90X.HWAddr[2],
788         INF_3C90X.HWAddr[3],
789         INF_3C90X.HWAddr[4],
790         INF_3C90X.HWAddr[5]);
791
792     /** 3C556: Invert MII power **/
793     if (INF_3C90X.is3c556) {
794         unsigned int tmp;
795         _set_window(INF_3C90X.IOAddr, winAddressing2);
796         tmp = inw(INF_3C90X.IOAddr + regResetOptions_2_w);
797         tmp |= 0x4000;
798         _outw(tmp, INF_3C90X.IOAddr + regResetOptions_2_w);
799     }
800
801     /* Test if the link is good, if not continue */
802     _set_window(INF_3C90X.IOAddr, winDiagnostics4);
803     mstat = inw(INF_3C90X.IOAddr + regMediaStatus_4_w);
804     if((mstat & (1<<11)) == 0) {
805         outputf("Valid link not established");
806         return 0;
807     }
808
809     /** Program the MAC address into the station address registers **/
810     _set_window(INF_3C90X.IOAddr, winAddressing2);
811     _outw(htons(eeprom[HWADDR_OFFSET + 0]), INF_3C90X.IOAddr + regStationAddress_2_3w);
812     _outw(htons(eeprom[HWADDR_OFFSET + 1]), INF_3C90X.IOAddr + regStationAddress_2_3w+2);
813     _outw(htons(eeprom[HWADDR_OFFSET + 2]), INF_3C90X.IOAddr + regStationAddress_2_3w+4);
814     _outw(0, INF_3C90X.IOAddr + regStationMask_2_3w+0);
815     _outw(0, INF_3C90X.IOAddr + regStationMask_2_3w+2);
816     _outw(0, INF_3C90X.IOAddr + regStationMask_2_3w+4);
817
818     /** Fill in our entry in the etherboot arp table **/
819 /* XXX ? for lwip? 
820     for(i=0;i<ETH_ALEN;i++)
821         nic.node_addr[i] = (eeprom[HWADDR_OFFSET + i/2] >> (8*((i&1)^1))) & 0xff;
822 */
823
824     /** Read the media options register, print a message and set default
825      ** xcvr.
826      **
827      ** Uses Media Option command on B revision, Reset Option on non-B
828      ** revision cards -- same register address
829      **/
830     _set_window(INF_3C90X.IOAddr, winTxRxOptions3);
831     mopt = inw(INF_3C90X.IOAddr + regResetMediaOptions_3_w);
832
833     /** mask out VCO bit that is defined as 10baseFL bit on B-rev cards **/
834     if (! INF_3C90X.isBrev)
835         {
836         mopt &= 0x7F;
837         }
838
839     outputf("Connectors present: ");
840     c = 0;
841     linktype = 0x0008;
842     if (mopt & 0x01)
843         {
844         outputf("%s100Base-T4",(c++)?", ":"");
845         linktype = 0x0006;
846         }
847     if (mopt & 0x04)
848         {
849         outputf("%s100Base-FX",(c++)?", ":"");
850         linktype = 0x0005;
851         }
852     if (mopt & 0x10)
853         {
854         outputf("%s10Base-2",(c++)?", ":"");
855         linktype = 0x0003;
856         }
857     if (mopt & 0x20)
858         {
859         outputf("%sAUI",(c++)?", ":"");
860         linktype = 0x0001;
861         }
862     if (mopt & 0x40)
863         {
864         outputf("%sMII",(c++)?", ":"");
865         linktype = 0x0006;
866         }
867     if ((mopt & 0xA) == 0xA)
868         {
869         outputf("%s10Base-T / 100Base-TX",(c++)?", ":"");
870         linktype = 0x0008;
871         }
872     else if ((mopt & 0xA) == 0x2)
873         {
874         outputf("%s100Base-TX",(c++)?", ":"");
875         linktype = 0x0008;
876         }
877     else if ((mopt & 0xA) == 0x8)
878         {
879         outputf("%s10Base-T",(c++)?", ":"");
880         linktype = 0x0008;
881         }
882     outputf(".");
883
884     /** Determine transceiver type to use, depending on value stored in
885      ** eeprom 0x16
886      **/
887     if (INF_3C90X.isBrev)
888         {
889         if ((eeprom[0x16] & 0xFF00) == XCVR_MAGIC)
890             {
891             /** User-defined **/
892             linktype = eeprom[0x16] & 0x000F;
893             }
894         }
895     else
896         {
897 #ifdef  CFG_3C90X_XCVR
898             if (CFG_3C90X_XCVR != 255)
899                 linktype = CFG_3C90X_XCVR;
900 #endif  /* CFG_3C90X_XCVR */
901
902             /** I don't know what MII MAC only mode is!!! **/
903             if (linktype == 0x0009)
904                 {
905                 if (INF_3C90X.isBrev)
906                         outputf("WARNING: MII External MAC Mode only supported on B-revision "
907                                "cards!!!!\nFalling Back to MII Mode\n");
908                 linktype = 0x0006;
909                 }
910         }
911
912     /** enable DC converter for 10-Base-T **/
913     if (linktype == 0x0003)
914         {
915         _issue_command(INF_3C90X.IOAddr, cmdEnableDcConverter, 0);
916         }
917
918     /** Set the link to the type we just determined. **/
919     _set_window(INF_3C90X.IOAddr, winTxRxOptions3);
920     cfg = inl(INF_3C90X.IOAddr + regInternalConfig_3_l);
921     cfg &= ~(0xF<<20);
922     cfg |= (linktype<<20);
923     _outl(cfg, INF_3C90X.IOAddr + regInternalConfig_3_l);
924
925     /** Now that we set the xcvr type, reset the Tx and Rx, re-enable. **/
926     _issue_command(INF_3C90X.IOAddr, cmdTxReset, 0);
927     if (!INF_3C90X.isBrev)
928         _outb(0x01, INF_3C90X.IOAddr + regTxFreeThresh_b);
929
930     _issue_command(INF_3C90X.IOAddr, cmdTxEnable, 0);
931
932     /**
933      ** reset of the receiver on B-revision cards re-negotiates the link
934      ** takes several seconds (a computer eternity)
935      **/
936     if (INF_3C90X.isBrev)
937         _issue_command(INF_3C90X.IOAddr, cmdRxReset, 0x04);
938     else
939         _issue_command(INF_3C90X.IOAddr, cmdRxReset, 0x00);
940
941     /** Set the RX filter = receive only individual pkts & multicast & bcast. **/
942     _issue_command(INF_3C90X.IOAddr, cmdSetRxFilter, 0x01 + 0x02 + 0x04);
943     _issue_command(INF_3C90X.IOAddr, cmdRxEnable, 0);
944
945
946     /**
947      ** set Indication and Interrupt flags , acknowledge any IRQ's
948      **/
949     _issue_command(INF_3C90X.IOAddr, cmdSetInterruptEnable, 0);
950     _issue_command(INF_3C90X.IOAddr, cmdSetIndicationEnable, 0x0014);
951     _issue_command(INF_3C90X.IOAddr, cmdAcknowledgeInterrupt, 0x661);
952
953     /* * Set our exported functions **/
954     nic.poll     = a3c90x_poll;
955     nic.transmit = a3c90x_transmit;
956     eth_register(&nic);
957
958     return 1;
959 }
960
961 static struct pci_id a3c90x_nics[] = {
962 /* Original 90x revisions: */
963 PCI_ROM(0x10b7, 0x6055, "3c556",         "3C556"),              /* Huricane */
964 PCI_ROM(0x10b7, 0x9000, "3c905-tpo",     "3Com900-TPO"),        /* 10 Base TPO */
965 PCI_ROM(0x10b7, 0x9001, "3c905-t4",      "3Com900-Combo"),      /* 10/100 T4 */
966 PCI_ROM(0x10b7, 0x9050, "3c905-tpo100",  "3Com905-TX"),         /* 100 Base TX / 10/100 TPO */
967 PCI_ROM(0x10b7, 0x9051, "3c905-combo",   "3Com905-T4"),         /* 100 Base T4 / 10 Base Combo */
968 /* Newer 90xB revisions: */
969 PCI_ROM(0x10b7, 0x9004, "3c905b-tpo",    "3Com900B-TPO"),       /* 10 Base TPO */
970 PCI_ROM(0x10b7, 0x9005, "3c905b-combo",  "3Com900B-Combo"),     /* 10 Base Combo */
971 PCI_ROM(0x10b7, 0x9006, "3c905b-tpb2",   "3Com900B-2/T"),       /* 10 Base TP and Base2 */
972 PCI_ROM(0x10b7, 0x900a, "3c905b-fl",     "3Com900B-FL"),        /* 10 Base FL */
973 PCI_ROM(0x10b7, 0x9055, "3c905b-tpo100", "3Com905B-TX"),        /* 10/100 TPO */
974 PCI_ROM(0x10b7, 0x9056, "3c905b-t4",     "3Com905B-T4"),        /* 10/100 T4 */
975 PCI_ROM(0x10b7, 0x9058, "3c905b-9058",   "3Com905B-9058"),      /* Cyclone 10/100/BNC */
976 PCI_ROM(0x10b7, 0x905a, "3c905b-fx",     "3Com905B-FL"),        /* 100 Base FX / 10 Base FX */
977 /* Newer 90xC revision: */
978 PCI_ROM(0x10b7, 0x9200, "3c905c-tpo",    "3Com905C-TXM"),       /* 10/100 TPO (3C905C-TXM) */
979 PCI_ROM(0x10b7, 0x9202, "3c920b-emb-ati", "3c920B-EMB-WNM (ATI Radeon 9100 IGP)"),      /* 3c920B-EMB-WNM (ATI Radeon 9100 IGP) */
980 PCI_ROM(0x10b7, 0x9210, "3c920b-emb-wnm","3Com20B-EMB WNM"),
981 PCI_ROM(0x10b7, 0x9800, "3c980",         "3Com980-Cyclone"),    /* Cyclone */
982 PCI_ROM(0x10b7, 0x9805, "3c9805",        "3Com9805"),           /* Dual Port Server Cyclone */
983 PCI_ROM(0x10b7, 0x7646, "3csoho100-tx",  "3CSOHO100-TX"),       /* Hurricane */
984 PCI_ROM(0x10b7, 0x4500, "3c450",         "3Com450 HomePNA Tornado"),
985 PCI_ROM(0x10b7, 0x1201, "3c982a",        "3Com982A"),
986 PCI_ROM(0x10b7, 0x1202, "3c982b",        "3Com982B"),
987 };
988
989 struct pci_driver a3c90x_driver = {
990         .name     = "3C90X",
991         .probe    = a3c90x_probe,
992         .ids      = a3c90x_nics,
993         .id_count = sizeof(a3c90x_nics)/sizeof(a3c90x_nics[0]),
994 };
This page took 0.111077 seconds and 4 git commands to generate.