Rename printf -> kprintf in sys/ and add some defines where necessary
[dragonfly.git] / sys / dev / netif / fe / if_fe.c
1 /*
2  * All Rights Reserved, Copyright (C) Fujitsu Limited 1995
3  *
4  * This software may be used, modified, copied, distributed, and sold, in
5  * both source and binary form provided that the above copyright, these
6  * terms and the following disclaimer are retained.  The name of the author
7  * and/or the contributor may not be used to endorse or promote products
8  * derived from this software without specific prior written permission.
9  *
10  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND THE CONTRIBUTOR ``AS IS'' AND
11  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
12  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
13  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR THE CONTRIBUTOR BE LIABLE
14  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
15  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
16  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION.
17  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
18  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
19  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
20  * SUCH DAMAGE.
21  */
22
23 /*
24  * $FreeBSD: src/sys/dev/fe/if_fe.c,v 1.65.2.1 2000/09/22 10:01:47 nyan Exp $
25  * $DragonFly: src/sys/dev/netif/fe/if_fe.c,v 1.28 2006/12/22 23:26:20 swildner Exp $
26  *
27  * Device driver for Fujitsu MB86960A/MB86965A based Ethernet cards.
28  * Contributed by M. Sekiguchi. <seki@sysrap.cs.fujitsu.co.jp>
29  *
30  * This version is intended to be a generic template for various
31  * MB86960A/MB86965A based Ethernet cards.  It currently supports
32  * Fujitsu FMV-180 series for ISA and Allied-Telesis AT1700/RE2000
33  * series for ISA, as well as Fujitsu MBH10302 PC card.
34  * There are some currently-
35  * unused hooks embedded, which are primarily intended to support
36  * other types of Ethernet cards, but the author is not sure whether
37  * they are useful.
38  *
39  * This version also includes some alignments to support RE1000,
40  * C-NET(98)P2 and so on. These cards are not for AT-compatibles,
41  * but for NEC PC-98 bus -- a proprietary bus architecture available
42  * only in Japan. Confusingly, it is different from the Microsoft's
43  * PC98 architecture. :-{
44  * Further work for PC-98 version will be available as a part of
45  * FreeBSD(98) project.
46  *
47  * This software is a derivative work of if_ed.c version 1.56 by David
48  * Greenman available as a part of FreeBSD 2.0 RELEASE source distribution.
49  *
50  * The following lines are retained from the original if_ed.c:
51  *
52  * Copyright (C) 1993, David Greenman. This software may be used, modified,
53  *   copied, distributed, and sold, in both source and binary form provided
54  *   that the above copyright and these terms are retained. Under no
55  *   circumstances is the author responsible for the proper functioning
56  *   of this software, nor does the author assume any responsibility
57  *   for damages incurred with its use.
58  */
59
60 /*
61  * TODO:
62  *  o   To support ISA PnP auto configuration for FMV-183/184.
63  *  o   To support REX-9886/87(PC-98 only).
64  *  o   To reconsider mbuf usage.
65  *  o   To reconsider transmission buffer usage, including
66  *      transmission buffer size (currently 4KB x 2) and pros-and-
67  *      cons of multiple frame transmission.
68  *  o   To test IPX codes.
69  *  o   To test new-bus frontend.
70  */
71
72 #include "opt_fe.h"
73 #include "opt_inet.h"
74 #include "opt_ipx.h"
75
76 #include <sys/param.h>
77 #include <sys/systm.h>
78 #include <sys/socket.h>
79 #include <sys/sockio.h>
80 #include <sys/mbuf.h>
81 #include <sys/interrupt.h>
82 #include <sys/linker_set.h>
83 #include <sys/module.h>
84 #include <sys/bus.h>
85 #include <sys/rman.h>
86 #include <sys/thread2.h>
87
88 #include <net/ethernet.h>
89 #include <net/if.h>
90 #include <net/ifq_var.h>
91 #include <net/if_dl.h>
92 #include <net/if_mib.h>
93 #include <net/if_media.h>
94
95 #include <netinet/in.h>
96 #include <netinet/if_ether.h>
97
98 #include <net/bpf.h>
99
100 #include <machine_base/isa/ic/mb86960.h>
101 #include "if_fereg.h"
102 #include "if_fevar.h"
103
104 /*
105  * Transmit just one packet per a "send" command to 86960.
106  * This option is intended for performance test.  An EXPERIMENTAL option.
107  */
108 #ifndef FE_SINGLE_TRANSMISSION
109 #define FE_SINGLE_TRANSMISSION 0
110 #endif
111
112 /*
113  * Maximum loops when interrupt.
114  * This option prevents an infinite loop due to hardware failure.
115  * (Some laptops make an infinite loop after PC-Card is ejected.)
116  */
117 #ifndef FE_MAX_LOOP
118 #define FE_MAX_LOOP 0x800
119 #endif
120
121 /*
122  * If you define this option, 8-bit cards are also supported.
123  */
124 /*#define FE_8BIT_SUPPORT*/
125
126 /*
127  * Device configuration flags.
128  */
129
130 /* DLCR6 settings.  */
131 #define FE_FLAGS_DLCR6_VALUE    0x007F
132
133 /* Force DLCR6 override.  */
134 #define FE_FLAGS_OVERRIDE_DLCR6 0x0080
135
136
137 devclass_t fe_devclass;
138
139 /*
140  * Special filter values.
141  */
142 static struct fe_filter const fe_filter_nothing = { FE_FILTER_NOTHING };
143 static struct fe_filter const fe_filter_all     = { FE_FILTER_ALL };
144
145 /* Standard driver entry points.  These can be static.  */
146 static void             fe_init         (void *);
147 static void             fe_intr         (void *);
148 static int              fe_ioctl        (struct ifnet *, u_long, caddr_t,
149                                          struct ucred *);
150 static void             fe_start        (struct ifnet *);
151 static void             fe_watchdog     (struct ifnet *);
152 static int              fe_medchange    (struct ifnet *);
153 static void             fe_medstat      (struct ifnet *, struct ifmediareq *);
154
155 /* Local functions.  Order of declaration is confused.  FIXME.  */
156 static int      fe_get_packet   ( struct fe_softc *, u_short );
157 static void     fe_tint         ( struct fe_softc *, u_char );
158 static void     fe_rint         ( struct fe_softc *, u_char );
159 static void     fe_xmit         ( struct fe_softc * );
160 static void     fe_write_mbufs  ( struct fe_softc *, struct mbuf * );
161 static void     fe_setmode      ( struct fe_softc * );
162 static void     fe_loadmar      ( struct fe_softc * );
163
164 #ifdef DIAGNOSTIC
165 static void     fe_emptybuffer  ( struct fe_softc * );
166 #endif
167
168 DECLARE_DUMMY_MODULE(if_fe);
169
170 /*
171  * Fe driver specific constants which relate to 86960/86965.
172  */
173
174 /* Interrupt masks  */
175 #define FE_TMASK ( FE_D2_COLL16 | FE_D2_TXDONE )
176 #define FE_RMASK ( FE_D3_OVRFLO | FE_D3_CRCERR \
177                  | FE_D3_ALGERR | FE_D3_SRTPKT | FE_D3_PKTRDY )
178
179 /* Maximum number of iterations for a receive interrupt.  */
180 #define FE_MAX_RECV_COUNT ( ( 65536 - 2048 * 2 ) / 64 )
181         /*
182          * Maximum size of SRAM is 65536,
183          * minimum size of transmission buffer in fe is 2x2KB,
184          * and minimum amount of received packet including headers
185          * added by the chip is 64 bytes.
186          * Hence FE_MAX_RECV_COUNT is the upper limit for number
187          * of packets in the receive buffer.
188          */
189
190 /*
191  * Miscellaneous definitions not directly related to hardware.
192  */
193
194 /* The following line must be delete when "net/if_media.h" support it.  */
195 #ifndef IFM_10_FL
196 #define IFM_10_FL       /* 13 */ IFM_10_5
197 #endif
198
199 #if 0
200 /* Mapping between media bitmap (in fe_softc.mbitmap) and ifm_media.  */
201 static int const bit2media [] = {
202                         IFM_HDX | IFM_ETHER | IFM_AUTO,
203                         IFM_HDX | IFM_ETHER | IFM_MANUAL,
204                         IFM_HDX | IFM_ETHER | IFM_10_T,
205                         IFM_HDX | IFM_ETHER | IFM_10_2,
206                         IFM_HDX | IFM_ETHER | IFM_10_5,
207                         IFM_HDX | IFM_ETHER | IFM_10_FL,
208                         IFM_FDX | IFM_ETHER | IFM_10_T,
209         /* More can be come here... */
210                         0
211 };
212 #else
213 /* Mapping between media bitmap (in fe_softc.mbitmap) and ifm_media.  */
214 static int const bit2media [] = {
215                         IFM_ETHER | IFM_AUTO,
216                         IFM_ETHER | IFM_MANUAL,
217                         IFM_ETHER | IFM_10_T,
218                         IFM_ETHER | IFM_10_2,
219                         IFM_ETHER | IFM_10_5,
220                         IFM_ETHER | IFM_10_FL,
221                         IFM_ETHER | IFM_10_T,
222         /* More can be come here... */
223                         0
224 };
225 #endif
226
227 /*
228  * Check for specific bits in specific registers have specific values.
229  * A common utility function called from various sub-probe routines.
230  */
231 int
232 fe_simple_probe (struct fe_softc const * sc,
233                  struct fe_simple_probe_struct const * sp)
234 {
235         struct fe_simple_probe_struct const *p;
236
237         for (p  = sp; p->mask != 0; p++) {
238                 if ((fe_inb(sc, p->port) & p->mask) != p->bits)
239                         return 0;
240         }
241         return 1;
242 }
243
244 /* Test if a given 6 byte value is a valid Ethernet station (MAC)
245    address.  "Vendor" is an expected vendor code (first three bytes,)
246    or a zero when nothing expected.  */
247 int
248 valid_Ether_p (u_char const * addr, unsigned vendor)
249 {
250 #ifdef FE_DEBUG
251         kprintf("fe?: validating %6D against %06x\n", addr, ":", vendor);
252 #endif
253
254         /* All zero is not allowed as a vendor code.  */
255         if (addr[0] == 0 && addr[1] == 0 && addr[2] == 0) return 0;
256
257         switch (vendor) {
258             case 0x000000:
259                 /* Legal Ethernet address (stored in ROM) must have
260                    its Group and Local bits cleared.  */
261                 if ((addr[0] & 0x03) != 0) return 0;
262                 break;
263             case 0x020000:
264                 /* Same as above, but a local address is allowed in
265                    this context.  */
266                 if ((addr[0] & 0x01) != 0) return 0;
267                 break;
268             default:
269                 /* Make sure the vendor part matches if one is given.  */
270                 if (   addr[0] != ((vendor >> 16) & 0xFF)
271                     || addr[1] != ((vendor >>  8) & 0xFF)
272                     || addr[2] != ((vendor      ) & 0xFF)) return 0;
273                 break;
274         }
275
276         /* Host part must not be all-zeros nor all-ones.  */
277         if (addr[3] == 0xFF && addr[4] == 0xFF && addr[5] == 0xFF) return 0;
278         if (addr[3] == 0x00 && addr[4] == 0x00 && addr[5] == 0x00) return 0;
279
280         /* Given addr looks like an Ethernet address.  */
281         return 1;
282 }
283
284 /* Fill our softc struct with default value.  */
285 void
286 fe_softc_defaults (struct fe_softc *sc)
287 {
288         /* Prepare for typical register prototypes.  We assume a
289            "typical" board has <32KB> of <fast> SRAM connected with a
290            <byte-wide> data lines.  */
291         sc->proto_dlcr4 = FE_D4_LBC_DISABLE | FE_D4_CNTRL;
292         sc->proto_dlcr5 = 0;
293         sc->proto_dlcr6 = FE_D6_BUFSIZ_32KB | FE_D6_TXBSIZ_2x4KB
294                 | FE_D6_BBW_BYTE | FE_D6_SBW_WORD | FE_D6_SRAM_100ns;
295         sc->proto_dlcr7 = FE_D7_BYTSWP_LH;
296         sc->proto_bmpr13 = 0;
297
298         /* Assume the probe process (to be done later) is stable.  */
299         sc->stability = 0;
300
301         /* A typical board needs no hooks.  */
302         sc->init = NULL;
303         sc->stop = NULL;
304
305         /* Assume the board has no software-controllable media selection.  */
306         sc->mbitmap = MB_HM;
307         sc->defmedia = MB_HM;
308         sc->msel = NULL;
309 }
310
311 /* Common error reporting routine used in probe routines for
312    "soft configured IRQ"-type boards.  */
313 void
314 fe_irq_failure (char const *name, int unit, int irq, char const *list)
315 {
316         kprintf("fe%d: %s board is detected, but %s IRQ was given\n",
317                unit, name, (irq == NO_IRQ ? "no" : "invalid"));
318         if (list != NULL) {
319                 kprintf("fe%d: specify an IRQ from %s in kernel config\n",
320                        unit, list);
321         }
322 }
323
324 /*
325  * Hardware (vendor) specific hooks.
326  */
327
328 /*
329  * Generic media selection scheme for MB86965 based boards.
330  */
331 void
332 fe_msel_965 (struct fe_softc *sc)
333 {
334         u_char b13;
335
336         /* Find the appropriate bits for BMPR13 tranceiver control.  */
337         switch (IFM_SUBTYPE(sc->media.ifm_media)) {
338             case IFM_AUTO: b13 = FE_B13_PORT_AUTO | FE_B13_TPTYPE_UTP; break;
339             case IFM_10_T: b13 = FE_B13_PORT_TP   | FE_B13_TPTYPE_UTP; break;
340             default:       b13 = FE_B13_PORT_AUI;  break;
341         }
342
343         /* Write it into the register.  It takes effect immediately.  */
344         fe_outb(sc, FE_BMPR13, sc->proto_bmpr13 | b13);
345 }
346
347
348 /*
349  * Fujitsu MB86965 JLI mode support routines.
350  */
351
352 /*
353  * Routines to read all bytes from the config EEPROM through MB86965A.
354  * It is a MicroWire (3-wire) serial EEPROM with 6-bit address.
355  * (93C06 or 93C46.)
356  */
357 static void
358 fe_strobe_eeprom_jli (struct fe_softc *sc, u_short bmpr16)
359 {
360         /*
361          * We must guarantee 1us (or more) interval to access slow
362          * EEPROMs.  The following redundant code provides enough
363          * delay with ISA timing.  (Even if the bus clock is "tuned.")
364          * Some modification will be needed on faster busses.
365          */
366         fe_outb(sc, bmpr16, FE_B16_SELECT);
367         fe_outb(sc, bmpr16, FE_B16_SELECT | FE_B16_CLOCK);
368         fe_outb(sc, bmpr16, FE_B16_SELECT | FE_B16_CLOCK);
369         fe_outb(sc, bmpr16, FE_B16_SELECT);
370 }
371
372 void
373 fe_read_eeprom_jli (struct fe_softc * sc, u_char * data)
374 {
375         u_char n, val, bit;
376         u_char save16, save17;
377
378         /* Save the current value of the EEPROM interface registers.  */
379         save16 = fe_inb(sc, FE_BMPR16);
380         save17 = fe_inb(sc, FE_BMPR17);
381
382         /* Read bytes from EEPROM; two bytes per an iteration.  */
383         for (n = 0; n < JLI_EEPROM_SIZE / 2; n++) {
384
385                 /* Reset the EEPROM interface.  */
386                 fe_outb(sc, FE_BMPR16, 0x00);
387                 fe_outb(sc, FE_BMPR17, 0x00);
388
389                 /* Start EEPROM access.  */
390                 fe_outb(sc, FE_BMPR16, FE_B16_SELECT);
391                 fe_outb(sc, FE_BMPR17, FE_B17_DATA);
392                 fe_strobe_eeprom_jli(sc, FE_BMPR16);
393
394                 /* Pass the iteration count as well as a READ command.  */
395                 val = 0x80 | n;
396                 for (bit = 0x80; bit != 0x00; bit >>= 1) {
397                         fe_outb(sc, FE_BMPR17, (val & bit) ? FE_B17_DATA : 0);
398                         fe_strobe_eeprom_jli(sc, FE_BMPR16);
399                 }
400                 fe_outb(sc, FE_BMPR17, 0x00);
401
402                 /* Read a byte.  */
403                 val = 0;
404                 for (bit = 0x80; bit != 0x00; bit >>= 1) {
405                         fe_strobe_eeprom_jli(sc, FE_BMPR16);
406                         if (fe_inb(sc, FE_BMPR17) & FE_B17_DATA)
407                                 val |= bit;
408                 }
409                 *data++ = val;
410
411                 /* Read one more byte.  */
412                 val = 0;
413                 for (bit = 0x80; bit != 0x00; bit >>= 1) {
414                         fe_strobe_eeprom_jli(sc, FE_BMPR16);
415                         if (fe_inb(sc, FE_BMPR17) & FE_B17_DATA)
416                                 val |= bit;
417                 }
418                 *data++ = val;
419         }
420
421 #if 0
422         /* Reset the EEPROM interface, again.  */
423         fe_outb(sc, FE_BMPR16, 0x00);
424         fe_outb(sc, FE_BMPR17, 0x00);
425 #else
426         /* Make sure to restore the original value of EEPROM interface
427            registers, since we are not yet sure we have MB86965A on
428            the address.  */
429         fe_outb(sc, FE_BMPR17, save17);
430         fe_outb(sc, FE_BMPR16, save16);
431 #endif
432
433 #if 1
434         /* Report what we got.  */
435         if (bootverbose) {
436                 int i;
437                 data -= JLI_EEPROM_SIZE;
438                 for (i = 0; i < JLI_EEPROM_SIZE; i += 16) {
439                         kprintf("fe%d: EEPROM(JLI):%3x: %16D\n",
440                                sc->sc_unit, i, data + i, " ");
441                 }
442         }
443 #endif
444 }
445
446 void
447 fe_init_jli (struct fe_softc * sc)
448 {
449         /* "Reset" by writing into a magic location.  */
450         DELAY(200);
451         fe_outb(sc, 0x1E, fe_inb(sc, 0x1E));
452         DELAY(300);
453 }
454
455
456 /*
457  * SSi 78Q8377A support routines.
458  */
459
460 /*
461  * Routines to read all bytes from the config EEPROM through 78Q8377A.
462  * It is a MicroWire (3-wire) serial EEPROM with 8-bit address.  (I.e.,
463  * 93C56 or 93C66.)
464  *
465  * As I don't have SSi manuals, (hmm, an old song again!) I'm not exactly
466  * sure the following code is correct...  It is just stolen from the
467  * C-NET(98)P2 support routine in FreeBSD(98).
468  */
469
470 void
471 fe_read_eeprom_ssi (struct fe_softc *sc, u_char *data)
472 {
473         u_char val, bit;
474         int n;
475         u_char save6, save7, save12;
476
477         /* Save the current value for the DLCR registers we are about
478            to destroy.  */
479         save6 = fe_inb(sc, FE_DLCR6);
480         save7 = fe_inb(sc, FE_DLCR7);
481
482         /* Put the 78Q8377A into a state that we can access the EEPROM.  */
483         fe_outb(sc, FE_DLCR6,
484             FE_D6_BBW_WORD | FE_D6_SBW_WORD | FE_D6_DLC_DISABLE);
485         fe_outb(sc, FE_DLCR7,
486             FE_D7_BYTSWP_LH | FE_D7_RBS_BMPR | FE_D7_RDYPNS | FE_D7_POWER_UP);
487
488         /* Save the current value for the BMPR12 register, too.  */
489         save12 = fe_inb(sc, FE_DLCR12);
490
491         /* Read bytes from EEPROM; two bytes per an iteration.  */
492         for (n = 0; n < SSI_EEPROM_SIZE / 2; n++) {
493
494                 /* Start EEPROM access  */
495                 fe_outb(sc, FE_DLCR12, SSI_EEP);
496                 fe_outb(sc, FE_DLCR12, SSI_EEP | SSI_CSL);
497
498                 /* Send the following four bits to the EEPROM in the
499                    specified order: a dummy bit, a start bit, and
500                    command bits (10) for READ.  */
501                 fe_outb(sc, FE_DLCR12, SSI_EEP | SSI_CSL                    );
502                 fe_outb(sc, FE_DLCR12, SSI_EEP | SSI_CSL | SSI_CLK          );  /* 0 */
503                 fe_outb(sc, FE_DLCR12, SSI_EEP | SSI_CSL           | SSI_DAT);
504                 fe_outb(sc, FE_DLCR12, SSI_EEP | SSI_CSL | SSI_CLK | SSI_DAT);  /* 1 */
505                 fe_outb(sc, FE_DLCR12, SSI_EEP | SSI_CSL           | SSI_DAT);
506                 fe_outb(sc, FE_DLCR12, SSI_EEP | SSI_CSL | SSI_CLK | SSI_DAT);  /* 1 */
507                 fe_outb(sc, FE_DLCR12, SSI_EEP | SSI_CSL                    );
508                 fe_outb(sc, FE_DLCR12, SSI_EEP | SSI_CSL | SSI_CLK          );  /* 0 */
509
510                 /* Pass the iteration count to the chip.  */
511                 for (bit = 0x80; bit != 0x00; bit >>= 1) {
512                     val = ( n & bit ) ? SSI_DAT : 0;
513                     fe_outb(sc, FE_DLCR12, SSI_EEP | SSI_CSL           | val);
514                     fe_outb(sc, FE_DLCR12, SSI_EEP | SSI_CSL | SSI_CLK | val);
515                 }
516
517                 /* Read a byte.  */
518                 val = 0;
519                 for (bit = 0x80; bit != 0x00; bit >>= 1) {
520                     fe_outb(sc, FE_DLCR12, SSI_EEP | SSI_CSL);
521                     fe_outb(sc, FE_DLCR12, SSI_EEP | SSI_CSL | SSI_CLK);
522                     if (fe_inb(sc, FE_DLCR12) & SSI_DIN)
523                         val |= bit;
524                 }
525                 *data++ = val;
526
527                 /* Read one more byte.  */
528                 val = 0;
529                 for (bit = 0x80; bit != 0x00; bit >>= 1) {
530                     fe_outb(sc, FE_DLCR12, SSI_EEP | SSI_CSL);
531                     fe_outb(sc, FE_DLCR12, SSI_EEP | SSI_CSL | SSI_CLK);
532                     if (fe_inb(sc, FE_DLCR12) & SSI_DIN)
533                         val |= bit;
534                 }
535                 *data++ = val;
536
537                 fe_outb(sc, FE_DLCR12, SSI_EEP);
538         }
539
540         /* Reset the EEPROM interface.  (For now.)  */
541         fe_outb(sc, FE_DLCR12, 0x00);
542
543         /* Restore the saved register values, for the case that we
544            didn't have 78Q8377A at the given address.  */
545         fe_outb(sc, FE_DLCR12, save12);
546         fe_outb(sc, FE_DLCR7, save7);
547         fe_outb(sc, FE_DLCR6, save6);
548
549 #if 1
550         /* Report what we got.  */
551         if (bootverbose) {
552                 int i;
553                 data -= SSI_EEPROM_SIZE;
554                 for (i = 0; i < SSI_EEPROM_SIZE; i += 16) {
555                         kprintf("fe%d: EEPROM(SSI):%3x: %16D\n",
556                                sc->sc_unit, i, data + i, " ");
557                 }
558         }
559 #endif
560 }
561
562 /*
563  * TDK/LANX boards support routines.
564  */
565
566 /* It is assumed that the CLK line is low and SDA is high (float) upon entry.  */
567 #define LNX_PH(D,K,N) \
568         ((LNX_SDA_##D | LNX_CLK_##K) << N)
569 #define LNX_CYCLE(D1,D2,D3,D4,K1,K2,K3,K4) \
570         (LNX_PH(D1,K1,0)|LNX_PH(D2,K2,8)|LNX_PH(D3,K3,16)|LNX_PH(D4,K4,24))
571
572 #define LNX_CYCLE_START LNX_CYCLE(HI,LO,LO,HI, HI,HI,LO,LO)
573 #define LNX_CYCLE_STOP  LNX_CYCLE(LO,LO,HI,HI, LO,HI,HI,LO)
574 #define LNX_CYCLE_HI    LNX_CYCLE(HI,HI,HI,HI, LO,HI,LO,LO)
575 #define LNX_CYCLE_LO    LNX_CYCLE(LO,LO,LO,HI, LO,HI,LO,LO)
576 #define LNX_CYCLE_INIT  LNX_CYCLE(LO,HI,HI,HI, LO,LO,LO,LO)
577
578 static void
579 fe_eeprom_cycle_lnx (struct fe_softc *sc, u_short reg20, u_long cycle)
580 {
581         fe_outb(sc, reg20, (cycle      ) & 0xFF);
582         DELAY(15);
583         fe_outb(sc, reg20, (cycle >>  8) & 0xFF);
584         DELAY(15);
585         fe_outb(sc, reg20, (cycle >> 16) & 0xFF);
586         DELAY(15);
587         fe_outb(sc, reg20, (cycle >> 24) & 0xFF);
588         DELAY(15);
589 }
590
591 static u_char
592 fe_eeprom_receive_lnx (struct fe_softc *sc, u_short reg20)
593 {
594         u_char dat;
595
596         fe_outb(sc, reg20, LNX_CLK_HI | LNX_SDA_FL);
597         DELAY(15);
598         dat = fe_inb(sc, reg20);
599         fe_outb(sc, reg20, LNX_CLK_LO | LNX_SDA_FL);
600         DELAY(15);
601         return (dat & LNX_SDA_IN);
602 }
603
604 void
605 fe_read_eeprom_lnx (struct fe_softc *sc, u_char *data)
606 {
607         int i;
608         u_char n, bit, val;
609         u_char save20;
610         u_short reg20 = 0x14;
611
612         save20 = fe_inb(sc, reg20);
613
614         /* NOTE: DELAY() timing constants are approximately three
615            times longer (slower) than the required minimum.  This is
616            to guarantee a reliable operation under some tough
617            conditions...  Fortunately, this routine is only called
618            during the boot phase, so the speed is less important than
619            stability.  */
620
621 #if 1
622         /* Reset the X24C01's internal state machine and put it into
623            the IDLE state.  We usually don't need this, but *if*
624            someone (e.g., probe routine of other driver) write some
625            garbage into the register at 0x14, synchronization will be
626            lost, and the normal EEPROM access protocol won't work.
627            Moreover, as there are no easy way to reset, we need a
628            _manoeuvre_ here.  (It even lacks a reset pin, so pushing
629            the RESET button on the PC doesn't help!)  */
630         fe_eeprom_cycle_lnx(sc, reg20, LNX_CYCLE_INIT);
631         for (i = 0; i < 10; i++)
632                 fe_eeprom_cycle_lnx(sc, reg20, LNX_CYCLE_START);
633         fe_eeprom_cycle_lnx(sc, reg20, LNX_CYCLE_STOP);
634         DELAY(10000);
635 #endif
636
637         /* Issue a start condition.  */
638         fe_eeprom_cycle_lnx(sc, reg20, LNX_CYCLE_START);
639
640         /* Send seven bits of the starting address (zero, in this
641            case) and a command bit for READ.  */
642         val = 0x01;
643         for (bit = 0x80; bit != 0x00; bit >>= 1) {
644                 if (val & bit) {
645                         fe_eeprom_cycle_lnx(sc, reg20, LNX_CYCLE_HI);
646                 } else {
647                         fe_eeprom_cycle_lnx(sc, reg20, LNX_CYCLE_LO);
648                 }
649         }
650
651         /* Receive an ACK bit.  */
652         if (fe_eeprom_receive_lnx(sc, reg20)) {
653                 /* ACK was not received.  EEPROM is not present (i.e.,
654                    this board was not a TDK/LANX) or not working
655                    properly.  */
656                 if (bootverbose) {
657                         kprintf("fe%d: no ACK received from EEPROM(LNX)\n",
658                                sc->sc_unit);
659                 }
660                 /* Clear the given buffer to indicate we could not get
661                    any info. and return.  */
662                 bzero(data, LNX_EEPROM_SIZE);
663                 goto RET;
664         }
665
666         /* Read bytes from EEPROM.  */
667         for (n = 0; n < LNX_EEPROM_SIZE; n++) {
668
669                 /* Read a byte and store it into the buffer.  */
670                 val = 0x00;
671                 for (bit = 0x80; bit != 0x00; bit >>= 1) {
672                         if (fe_eeprom_receive_lnx(sc, reg20))
673                                 val |= bit;
674                 }
675                 *data++ = val;
676
677                 /* Acknowledge if we have to read more.  */
678                 if (n < LNX_EEPROM_SIZE - 1) {
679                         fe_eeprom_cycle_lnx(sc, reg20, LNX_CYCLE_LO);
680                 }
681         }
682
683         /* Issue a STOP condition, de-activating the clock line.
684            It will be safer to keep the clock line low than to leave
685            it high.  */
686         fe_eeprom_cycle_lnx(sc, reg20, LNX_CYCLE_STOP);
687
688     RET:
689         fe_outb(sc, reg20, save20);
690         
691 #if 1
692         /* Report what we got.  */
693         if (bootverbose) {
694                 data -= LNX_EEPROM_SIZE;
695                 for (i = 0; i < LNX_EEPROM_SIZE; i += 16) {
696                         kprintf("fe%d: EEPROM(LNX):%3x: %16D\n",
697                                sc->sc_unit, i, data + i, " ");
698                 }
699         }
700 #endif
701 }
702
703 void
704 fe_init_lnx (struct fe_softc * sc)
705 {
706         /* Reset the 86960.  Do we need this?  FIXME.  */
707         fe_outb(sc, 0x12, 0x06);
708         DELAY(100);
709         fe_outb(sc, 0x12, 0x07);
710         DELAY(100);
711
712         /* Setup IRQ control register on the ASIC.  */
713         fe_outb(sc, 0x14, sc->priv_info);
714 }
715
716
717 /*
718  * Ungermann-Bass boards support routine.
719  */
720 void
721 fe_init_ubn (struct fe_softc * sc)
722 {
723         /* Do we need this?  FIXME.  */
724         fe_outb(sc, FE_DLCR7,
725                 sc->proto_dlcr7 | FE_D7_RBS_BMPR | FE_D7_POWER_UP);
726         fe_outb(sc, 0x18, 0x00);
727         DELAY(200);
728
729         /* Setup IRQ control register on the ASIC.  */
730         fe_outb(sc, 0x14, sc->priv_info);
731 }
732
733
734 /*
735  * Install interface into kernel networking data structures
736  */
737 int
738 fe_attach (device_t dev)
739 {
740         struct fe_softc *sc = device_get_softc(dev);
741         int flags = device_get_flags(dev);
742         int b, error;
743
744         /*
745          * Initialize ifnet structure
746          */
747         sc->sc_if.if_softc    = sc;
748         if_initname(&(sc->sc_if), "fe", sc->sc_unit);
749         sc->sc_if.if_start    = fe_start;
750         sc->sc_if.if_ioctl    = fe_ioctl;
751         sc->sc_if.if_watchdog = fe_watchdog;
752         sc->sc_if.if_init     = fe_init;
753         sc->sc_if.if_linkmib  = &sc->mibdata;
754         sc->sc_if.if_linkmiblen = sizeof (sc->mibdata);
755
756 #if 0 /* I'm not sure... */
757         sc->mibdata.dot3Compliance = DOT3COMPLIANCE_COLLS;
758 #endif
759
760         /*
761          * Set fixed interface flags.
762          */
763         sc->sc_if.if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
764         ifq_set_maxlen(&sc->sc_if.if_snd, IFQ_MAXLEN);
765         ifq_set_ready(&sc->sc_if.if_snd);
766
767 #if FE_SINGLE_TRANSMISSION
768         /* Override txb config to allocate minimum.  */
769         sc->proto_dlcr6 &= ~FE_D6_TXBSIZ
770         sc->proto_dlcr6 |=  FE_D6_TXBSIZ_2x2KB;
771 #endif
772
773         /* Modify hardware config if it is requested.  */
774         if (flags & FE_FLAGS_OVERRIDE_DLCR6)
775                 sc->proto_dlcr6 = flags & FE_FLAGS_DLCR6_VALUE;
776
777         /* Find TX buffer size, based on the hardware dependent proto.  */
778         switch (sc->proto_dlcr6 & FE_D6_TXBSIZ) {
779           case FE_D6_TXBSIZ_2x2KB: sc->txb_size = 2048; break;
780           case FE_D6_TXBSIZ_2x4KB: sc->txb_size = 4096; break;
781           case FE_D6_TXBSIZ_2x8KB: sc->txb_size = 8192; break;
782           default:
783                 /* Oops, we can't work with single buffer configuration.  */
784                 if (bootverbose) {
785                         kprintf("fe%d: strange TXBSIZ config; fixing\n",
786                                sc->sc_unit);
787                 }
788                 sc->proto_dlcr6 &= ~FE_D6_TXBSIZ;
789                 sc->proto_dlcr6 |=  FE_D6_TXBSIZ_2x2KB;
790                 sc->txb_size = 2048;
791                 break;
792         }
793
794         /* Initialize the if_media interface.  */
795         ifmedia_init(&sc->media, 0, fe_medchange, fe_medstat);
796         for (b = 0; bit2media[b] != 0; b++) {
797                 if (sc->mbitmap & (1 << b)) {
798                         ifmedia_add(&sc->media, bit2media[b], 0, NULL);
799                 }
800         }
801         for (b = 0; bit2media[b] != 0; b++) {
802                 if (sc->defmedia & (1 << b)) {
803                         ifmedia_set(&sc->media, bit2media[b]);
804                         break;
805                 }
806         }
807 #if 0   /* Turned off; this is called later, when the interface UPs.  */
808         fe_medchange(sc);
809 #endif
810
811         /* Attach and stop the interface. */
812         ether_ifattach(&sc->sc_if, sc->sc_enaddr, NULL);
813         fe_stop(sc);
814
815         error = bus_setup_intr(dev, sc->irq_res, INTR_NETSAFE,
816                                fe_intr, sc, &sc->irq_handle, 
817                                sc->sc_if.if_serializer);
818         if (error) {
819                 if_detach(&sc->sc_if);
820                 fe_release_resource(dev);
821                 return ENXIO;
822         }
823
824   
825         /* Print additional info when attached.  */
826         device_printf(dev, "type %s%s\n", sc->typestr,
827                       (sc->proto_dlcr4 & FE_D4_DSC) ? ", full duplex" : "");
828         if (bootverbose) {
829                 int buf, txb, bbw, sbw, ram;
830
831                 buf = txb = bbw = sbw = ram = -1;
832                 switch ( sc->proto_dlcr6 & FE_D6_BUFSIZ ) {
833                   case FE_D6_BUFSIZ_8KB:  buf =  8; break;
834                   case FE_D6_BUFSIZ_16KB: buf = 16; break;
835                   case FE_D6_BUFSIZ_32KB: buf = 32; break;
836                   case FE_D6_BUFSIZ_64KB: buf = 64; break;
837                 }
838                 switch ( sc->proto_dlcr6 & FE_D6_TXBSIZ ) {
839                   case FE_D6_TXBSIZ_2x2KB: txb = 2; break;
840                   case FE_D6_TXBSIZ_2x4KB: txb = 4; break;
841                   case FE_D6_TXBSIZ_2x8KB: txb = 8; break;
842                 }
843                 switch ( sc->proto_dlcr6 & FE_D6_BBW ) {
844                   case FE_D6_BBW_BYTE: bbw =  8; break;
845                   case FE_D6_BBW_WORD: bbw = 16; break;
846                 }
847                 switch ( sc->proto_dlcr6 & FE_D6_SBW ) {
848                   case FE_D6_SBW_BYTE: sbw =  8; break;
849                   case FE_D6_SBW_WORD: sbw = 16; break;
850                 }
851                 switch ( sc->proto_dlcr6 & FE_D6_SRAM ) {
852                   case FE_D6_SRAM_100ns: ram = 100; break;
853                   case FE_D6_SRAM_150ns: ram = 150; break;
854                 }
855                 device_printf(dev, "SRAM %dKB %dbit %dns, TXB %dKBx2, %dbit I/O\n",
856                               buf, bbw, ram, txb, sbw);
857         }
858         if (sc->stability & UNSTABLE_IRQ)
859                 device_printf(dev, "warning: IRQ number may be incorrect\n");
860         if (sc->stability & UNSTABLE_MAC)
861                 device_printf(dev, "warning: above MAC address may be incorrect\n");
862         if (sc->stability & UNSTABLE_TYPE)
863                 device_printf(dev, "warning: hardware type was not validated\n");
864
865         return 0;
866 }
867
868 int
869 fe_alloc_port(device_t dev, int size)
870 {
871         struct fe_softc *sc = device_get_softc(dev);
872         struct resource *res;
873         int rid;
874
875         rid = 0;
876         res = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid,
877                                  0ul, ~0ul, size, RF_ACTIVE);
878         if (res) {
879                 sc->port_used = size;
880                 sc->port_res = res;
881                 sc->iot = rman_get_bustag(res);
882                 sc->ioh = rman_get_bushandle(res);
883                 return (0);
884         }
885
886         return (ENOENT);
887 }
888
889 int
890 fe_alloc_irq(device_t dev, int flags)
891 {
892         struct fe_softc *sc = device_get_softc(dev);
893         struct resource *res;
894         int rid;
895
896         rid = 0;
897         res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, RF_ACTIVE | flags);
898         if (res) {
899                 sc->irq_res = res;
900                 return (0);
901         }
902
903         return (ENOENT);
904 }
905
906 void
907 fe_release_resource(device_t dev)
908 {
909         struct fe_softc *sc = device_get_softc(dev);
910
911         if (sc->port_res) {
912                 bus_release_resource(dev, SYS_RES_IOPORT, 0, sc->port_res);
913                 sc->port_res = NULL;
914         }
915         if (sc->irq_res) {
916                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->irq_res);
917                 sc->irq_res = NULL;
918         }
919 }
920
921 /*
922  * Reset interface, after some (hardware) trouble is deteced.
923  */
924 static void
925 fe_reset (struct fe_softc *sc)
926 {
927         /* Record how many packets are lost by this accident.  */
928         sc->sc_if.if_oerrors += sc->txb_sched + sc->txb_count;
929         sc->mibdata.dot3StatsInternalMacTransmitErrors++;
930
931         /* Put the interface into known initial state.  */
932         fe_stop(sc);
933         if (sc->sc_if.if_flags & IFF_UP)
934                 fe_init(sc);
935 }
936
937 /*
938  * Stop everything on the interface.
939  *
940  * All buffered packets, both transmitting and receiving,
941  * if any, will be lost by stopping the interface.
942  */
943 void
944 fe_stop (struct fe_softc *sc)
945 {
946         /* Disable interrupts.  */
947         fe_outb(sc, FE_DLCR2, 0x00);
948         fe_outb(sc, FE_DLCR3, 0x00);
949
950         /* Stop interface hardware.  */
951         DELAY(200);
952         fe_outb(sc, FE_DLCR6, sc->proto_dlcr6 | FE_D6_DLC_DISABLE);
953         DELAY(200);
954
955         /* Clear all interrupt status.  */
956         fe_outb(sc, FE_DLCR0, 0xFF);
957         fe_outb(sc, FE_DLCR1, 0xFF);
958
959         /* Put the chip in stand-by mode.  */
960         DELAY(200);
961         fe_outb(sc, FE_DLCR7, sc->proto_dlcr7 | FE_D7_POWER_DOWN);
962         DELAY(200);
963
964         /* Reset transmitter variables and interface flags.  */
965         sc->sc_if.if_flags &= ~(IFF_OACTIVE | IFF_RUNNING);
966         sc->sc_if.if_timer = 0;
967         sc->txb_free = sc->txb_size;
968         sc->txb_count = 0;
969         sc->txb_sched = 0;
970
971         /* MAR loading can be delayed.  */
972         sc->filter_change = 0;
973
974         /* Call a device-specific hook.  */
975         if (sc->stop)
976                 sc->stop(sc);
977 }
978
979 /*
980  * Device timeout/watchdog routine. Entered if the device neglects to
981  * generate an interrupt after a transmit has been started on it.
982  */
983 static void
984 fe_watchdog ( struct ifnet *ifp )
985 {
986         struct fe_softc *sc = (struct fe_softc *)ifp;
987
988         /* A "debug" message.  */
989         kprintf("%s: transmission timeout (%d+%d)%s\n",
990                ifp->if_xname, sc->txb_sched, sc->txb_count,
991                (ifp->if_flags & IFF_UP) ? "" : " when down");
992         if (sc->sc_if.if_opackets == 0 && sc->sc_if.if_ipackets == 0)
993                 kprintf("%s: wrong IRQ setting in config?\n", ifp->if_xname);
994         fe_reset(sc);
995 }
996
997 /*
998  * Initialize device.
999  */
1000 static void
1001 fe_init (void * xsc)
1002 {
1003         struct fe_softc *sc = xsc;
1004
1005         /* Start initializing 86960.  */
1006         /* Call a hook before we start initializing the chip.  */
1007         if (sc->init)
1008                 sc->init(sc);
1009
1010         /*
1011          * Make sure to disable the chip, also.
1012          * This may also help re-programming the chip after
1013          * hot insertion of PCMCIAs.
1014          */
1015         DELAY(200);
1016         fe_outb(sc, FE_DLCR6, sc->proto_dlcr6 | FE_D6_DLC_DISABLE);
1017         DELAY(200);
1018
1019         /* Power up the chip and select register bank for DLCRs.  */
1020         DELAY(200);
1021         fe_outb(sc, FE_DLCR7,
1022                 sc->proto_dlcr7 | FE_D7_RBS_DLCR | FE_D7_POWER_UP);
1023         DELAY(200);
1024
1025         /* Feed the station address.  */
1026         fe_outblk(sc, FE_DLCR8, sc->sc_enaddr, ETHER_ADDR_LEN);
1027
1028         /* Clear multicast address filter to receive nothing.  */
1029         fe_outb(sc, FE_DLCR7,
1030                 sc->proto_dlcr7 | FE_D7_RBS_MAR | FE_D7_POWER_UP);
1031         fe_outblk(sc, FE_MAR8, fe_filter_nothing.data, FE_FILTER_LEN);
1032
1033         /* Select the BMPR bank for runtime register access.  */
1034         fe_outb(sc, FE_DLCR7,
1035                 sc->proto_dlcr7 | FE_D7_RBS_BMPR | FE_D7_POWER_UP);
1036
1037         /* Initialize registers.  */
1038         fe_outb(sc, FE_DLCR0, 0xFF);    /* Clear all bits.  */
1039         fe_outb(sc, FE_DLCR1, 0xFF);    /* ditto.  */
1040         fe_outb(sc, FE_DLCR2, 0x00);
1041         fe_outb(sc, FE_DLCR3, 0x00);
1042         fe_outb(sc, FE_DLCR4, sc->proto_dlcr4);
1043         fe_outb(sc, FE_DLCR5, sc->proto_dlcr5);
1044         fe_outb(sc, FE_BMPR10, 0x00);
1045         fe_outb(sc, FE_BMPR11, FE_B11_CTRL_SKIP | FE_B11_MODE1);
1046         fe_outb(sc, FE_BMPR12, 0x00);
1047         fe_outb(sc, FE_BMPR13, sc->proto_bmpr13);
1048         fe_outb(sc, FE_BMPR14, 0x00);
1049         fe_outb(sc, FE_BMPR15, 0x00);
1050
1051         /* Enable interrupts.  */
1052         fe_outb(sc, FE_DLCR2, FE_TMASK);
1053         fe_outb(sc, FE_DLCR3, FE_RMASK);
1054
1055         /* Select requested media, just before enabling DLC.  */
1056         if (sc->msel)
1057                 sc->msel(sc);
1058
1059         /* Enable transmitter and receiver.  */
1060         DELAY(200);
1061         fe_outb(sc, FE_DLCR6, sc->proto_dlcr6 | FE_D6_DLC_ENABLE);
1062         DELAY(200);
1063
1064 #ifdef DIAGNOSTIC
1065         /*
1066          * Make sure to empty the receive buffer.
1067          *
1068          * This may be redundant, but *if* the receive buffer were full
1069          * at this point, then the driver would hang.  I have experienced
1070          * some strange hang-up just after UP.  I hope the following
1071          * code solve the problem.
1072          *
1073          * I have changed the order of hardware initialization.
1074          * I think the receive buffer cannot have any packets at this
1075          * point in this version.  The following code *must* be
1076          * redundant now.  FIXME.
1077          *
1078          * I've heard a rumore that on some PC card implementation of
1079          * 8696x, the receive buffer can have some data at this point.
1080          * The following message helps discovering the fact.  FIXME.
1081          */
1082         if (!(fe_inb(sc, FE_DLCR5) & FE_D5_BUFEMP)) {
1083                 kprintf("fe%d: receive buffer has some data after reset\n",
1084                        sc->sc_unit);
1085                 fe_emptybuffer(sc);
1086         }
1087
1088         /* Do we need this here?  Actually, no.  I must be paranoia.  */
1089         fe_outb(sc, FE_DLCR0, 0xFF);    /* Clear all bits.  */
1090         fe_outb(sc, FE_DLCR1, 0xFF);    /* ditto.  */
1091 #endif
1092
1093         /* Set 'running' flag, because we are now running.   */
1094         sc->sc_if.if_flags |= IFF_RUNNING;
1095
1096         /*
1097          * At this point, the interface is running properly,
1098          * except that it receives *no* packets.  we then call
1099          * fe_setmode() to tell the chip what packets to be
1100          * received, based on the if_flags and multicast group
1101          * list.  It completes the initialization process.
1102          */
1103         fe_setmode(sc);
1104
1105 #if 0
1106         /* ...and attempt to start output queued packets.  */
1107         /* TURNED OFF, because the semi-auto media prober wants to UP
1108            the interface keeping it idle.  The upper layer will soon
1109            start the interface anyway, and there are no significant
1110            delay.  */
1111         fe_start(&sc->sc_if);
1112 #endif
1113 }
1114
1115 /*
1116  * This routine actually starts the transmission on the interface
1117  */
1118 static void
1119 fe_xmit (struct fe_softc *sc)
1120 {
1121         /*
1122          * Set a timer just in case we never hear from the board again.
1123          * We use longer timeout for multiple packet transmission.
1124          * I'm not sure this timer value is appropriate.  FIXME.
1125          */
1126         sc->sc_if.if_timer = 1 + sc->txb_count;
1127
1128         /* Update txb variables.  */
1129         sc->txb_sched = sc->txb_count;
1130         sc->txb_count = 0;
1131         sc->txb_free = sc->txb_size;
1132         sc->tx_excolls = 0;
1133
1134         /* Start transmitter, passing packets in TX buffer.  */
1135         fe_outb(sc, FE_BMPR10, sc->txb_sched | FE_B10_START);
1136 }
1137
1138 /*
1139  * Start output on interface.
1140  * We make two assumptions here:
1141  *  1) that the current priority is set to splimp _before_ this code
1142  *     is called *and* is returned to the appropriate priority after
1143  *     return
1144  *  2) that the IFF_OACTIVE flag is checked before this code is called
1145  *     (i.e. that the output part of the interface is idle)
1146  */
1147 void
1148 fe_start (struct ifnet *ifp)
1149 {
1150         struct fe_softc *sc = ifp->if_softc;
1151         struct mbuf *m;
1152
1153 #ifdef DIAGNOSTIC
1154         /* Just a sanity check.  */
1155         if ((sc->txb_count == 0) != (sc->txb_free == sc->txb_size)) {
1156                 /*
1157                  * Txb_count and txb_free co-works to manage the
1158                  * transmission buffer.  Txb_count keeps track of the
1159                  * used potion of the buffer, while txb_free does unused
1160                  * potion.  So, as long as the driver runs properly,
1161                  * txb_count is zero if and only if txb_free is same
1162                  * as txb_size (which represents whole buffer.)
1163                  */
1164                 kprintf("fe%d: inconsistent txb variables (%d, %d)\n",
1165                         sc->sc_unit, sc->txb_count, sc->txb_free);
1166                 /*
1167                  * So, what should I do, then?
1168                  *
1169                  * We now know txb_count and txb_free contradicts.  We
1170                  * cannot, however, tell which is wrong.  More
1171                  * over, we cannot peek 86960 transmission buffer or
1172                  * reset the transmission buffer.  (In fact, we can
1173                  * reset the entire interface.  I don't want to do it.)
1174                  *
1175                  * If txb_count is incorrect, leaving it as-is will cause
1176                  * sending of garbage after next interrupt.  We have to
1177                  * avoid it.  Hence, we reset the txb_count here.  If
1178                  * txb_free was incorrect, resetting txb_count just loose
1179                  * some packets.  We can live with it.
1180                  */
1181                 sc->txb_count = 0;
1182         }
1183 #endif
1184
1185         /*
1186          * First, see if there are buffered packets and an idle
1187          * transmitter - should never happen at this point.
1188          */
1189         if ((sc->txb_count > 0) && (sc->txb_sched == 0)) {
1190                 kprintf("fe%d: transmitter idle with %d buffered packets\n",
1191                        sc->sc_unit, sc->txb_count);
1192                 fe_xmit(sc);
1193         }
1194
1195         /*
1196          * Stop accepting more transmission packets temporarily, when
1197          * a filter change request is delayed.  Updating the MARs on
1198          * 86960 flushes the transmission buffer, so it is delayed
1199          * until all buffered transmission packets have been sent
1200          * out.
1201          */
1202         if (sc->filter_change) {
1203                 /*
1204                  * Filter change request is delayed only when the DLC is
1205                  * working.  DLC soon raise an interrupt after finishing
1206                  * the work.
1207                  */
1208                 goto indicate_active;
1209         }
1210
1211         for (;;) {
1212
1213                 /*
1214                  * See if there is room to put another packet in the buffer.
1215                  * We *could* do better job by peeking the send queue to
1216                  * know the length of the next packet.  Current version just
1217                  * tests against the worst case (i.e., longest packet).  FIXME.
1218                  *
1219                  * When adding the packet-peek feature, don't forget adding a
1220                  * test on txb_count against QUEUEING_MAX.
1221                  * There is a little chance the packet count exceeds
1222                  * the limit.  Assume transmission buffer is 8KB (2x8KB
1223                  * configuration) and an application sends a bunch of small
1224                  * (i.e., minimum packet sized) packets rapidly.  An 8KB
1225                  * buffer can hold 130 blocks of 62 bytes long...
1226                  */
1227                 if (sc->txb_free
1228                     < ETHER_MAX_LEN - ETHER_CRC_LEN + FE_DATA_LEN_LEN) {
1229                         /* No room.  */
1230                         goto indicate_active;
1231                 }
1232
1233 #if FE_SINGLE_TRANSMISSION
1234                 if (sc->txb_count > 0) {
1235                         /* Just one packet per a transmission buffer.  */
1236                         goto indicate_active;
1237                 }
1238 #endif
1239
1240                 /*
1241                  * Get the next mbuf chain for a packet to send.
1242                  */
1243                 m = ifq_dequeue(&sc->sc_if.if_snd, NULL);
1244                 if (m == NULL) {
1245                         /* No more packets to send.  */
1246                         goto indicate_inactive;
1247                 }
1248
1249                 /*
1250                  * Copy the mbuf chain into the transmission buffer.
1251                  * txb_* variables are updated as necessary.
1252                  */
1253                 fe_write_mbufs(sc, m);
1254
1255                 /* Start transmitter if it's idle.  */
1256                 if ((sc->txb_count > 0) && (sc->txb_sched == 0))
1257                         fe_xmit(sc);
1258
1259                 /*
1260                  * Tap off here if there is a bpf listener,
1261                  * and the device is *not* in promiscuous mode.
1262                  * (86960 receives self-generated packets if 
1263                  * and only if it is in "receive everything"
1264                  * mode.)
1265                  */
1266                 if ((sc->sc_if.if_flags & IFF_PROMISC) == 0)
1267                         BPF_MTAP(&sc->sc_if, m);
1268
1269                 m_freem(m);
1270         }
1271
1272   indicate_inactive:
1273         /*
1274          * We are using the !OACTIVE flag to indicate to
1275          * the outside world that we can accept an
1276          * additional packet rather than that the
1277          * transmitter is _actually_ active.  Indeed, the
1278          * transmitter may be active, but if we haven't
1279          * filled all the buffers with data then we still
1280          * want to accept more.
1281          */
1282         sc->sc_if.if_flags &= ~IFF_OACTIVE;
1283         return;
1284
1285   indicate_active:
1286         /*
1287          * The transmitter is active, and there are no room for
1288          * more outgoing packets in the transmission buffer.
1289          */
1290         sc->sc_if.if_flags |= IFF_OACTIVE;
1291         return;
1292 }
1293
1294 /*
1295  * Drop (skip) a packet from receive buffer in 86960 memory.
1296  */
1297 static void
1298 fe_droppacket (struct fe_softc * sc, int len)
1299 {
1300         int i;
1301
1302         /*
1303          * 86960 manual says that we have to read 8 bytes from the buffer
1304          * before skip the packets and that there must be more than 8 bytes
1305          * remaining in the buffer when issue a skip command.
1306          * Remember, we have already read 4 bytes before come here.
1307          */
1308         if (len > 12) {
1309                 /* Read 4 more bytes, and skip the rest of the packet.  */
1310 #ifdef FE_8BIT_SUPPORT
1311                 if ((sc->proto_dlcr6 & FE_D6_SBW) == FE_D6_SBW_BYTE)
1312                 {
1313                         fe_inb(sc, FE_BMPR8);
1314                         fe_inb(sc, FE_BMPR8);
1315                         fe_inb(sc, FE_BMPR8);
1316                         fe_inb(sc, FE_BMPR8);
1317                 }
1318                 else
1319 #endif
1320                 {
1321                         fe_inw(sc, FE_BMPR8);
1322                         fe_inw(sc, FE_BMPR8);
1323                 }
1324                 fe_outb(sc, FE_BMPR14, FE_B14_SKIP);
1325         } else {
1326                 /* We should not come here unless receiving RUNTs.  */
1327 #ifdef FE_8BIT_SUPPORT
1328                 if ((sc->proto_dlcr6 & FE_D6_SBW) == FE_D6_SBW_BYTE)
1329                 {
1330                         for (i = 0; i < len; i++)
1331                                 fe_inb(sc, FE_BMPR8);
1332                 }
1333                 else
1334 #endif
1335                 {
1336                         for (i = 0; i < len; i += 2)
1337                                 fe_inw(sc, FE_BMPR8);
1338                 }
1339         }
1340 }
1341
1342 #ifdef DIAGNOSTIC
1343 /*
1344  * Empty receiving buffer.
1345  */
1346 static void
1347 fe_emptybuffer (struct fe_softc * sc)
1348 {
1349         int i;
1350         u_char saved_dlcr5;
1351
1352 #ifdef FE_DEBUG
1353         kprintf("fe%d: emptying receive buffer\n", sc->sc_unit);
1354 #endif
1355
1356         /*
1357          * Stop receiving packets, temporarily.
1358          */
1359         saved_dlcr5 = fe_inb(sc, FE_DLCR5);
1360         fe_outb(sc, FE_DLCR5, sc->proto_dlcr5);
1361         DELAY(1300);
1362
1363         /*
1364          * When we come here, the receive buffer management may
1365          * have been broken.  So, we cannot use skip operation.
1366          * Just discard everything in the buffer.
1367          */
1368 #ifdef FE_8BIT_SUPPORT
1369         if ((sc->proto_dlcr6 & FE_D6_SBW) == FE_D6_SBW_BYTE)
1370         {
1371                 for (i = 0; i < 65536; i++) {
1372                         if (fe_inb(sc, FE_DLCR5) & FE_D5_BUFEMP)
1373                                 break;
1374                         fe_inb(sc, FE_BMPR8);
1375                 }
1376         }
1377         else
1378 #endif
1379         {
1380                 for (i = 0; i < 65536; i += 2) {
1381                         if (fe_inb(sc, FE_DLCR5) & FE_D5_BUFEMP)
1382                                 break;
1383                         fe_inw(sc, FE_BMPR8);
1384                 }
1385         }
1386
1387         /*
1388          * Double check.
1389          */
1390         if (fe_inb(sc, FE_DLCR5) & FE_D5_BUFEMP) {
1391                 kprintf("fe%d: could not empty receive buffer\n", sc->sc_unit);
1392                 /* Hmm.  What should I do if this happens?  FIXME.  */
1393         }
1394
1395         /*
1396          * Restart receiving packets.
1397          */
1398         fe_outb(sc, FE_DLCR5, saved_dlcr5);
1399 }
1400 #endif
1401
1402 /*
1403  * Transmission interrupt handler
1404  * The control flow of this function looks silly.  FIXME.
1405  */
1406 static void
1407 fe_tint (struct fe_softc * sc, u_char tstat)
1408 {
1409         int left;
1410         int col;
1411
1412         /*
1413          * Handle "excessive collision" interrupt.
1414          */
1415         if (tstat & FE_D0_COLL16) {
1416
1417                 /*
1418                  * Find how many packets (including this collided one)
1419                  * are left unsent in transmission buffer.
1420                  */
1421                 left = fe_inb(sc, FE_BMPR10);
1422                 kprintf("fe%d: excessive collision (%d/%d)\n",
1423                        sc->sc_unit, left, sc->txb_sched);
1424
1425                 /*
1426                  * Clear the collision flag (in 86960) here
1427                  * to avoid confusing statistics.
1428                  */
1429                 fe_outb(sc, FE_DLCR0, FE_D0_COLLID);
1430
1431                 /*
1432                  * Restart transmitter, skipping the
1433                  * collided packet.
1434                  *
1435                  * We *must* skip the packet to keep network running
1436                  * properly.  Excessive collision error is an
1437                  * indication of the network overload.  If we
1438                  * tried sending the same packet after excessive
1439                  * collision, the network would be filled with
1440                  * out-of-time packets.  Packets belonging
1441                  * to reliable transport (such as TCP) are resent
1442                  * by some upper layer.
1443                  */
1444                 fe_outb(sc, FE_BMPR11, FE_B11_CTRL_SKIP | FE_B11_MODE1);
1445
1446                 /* Update statistics.  */
1447                 sc->tx_excolls++;
1448         }
1449
1450         /*
1451          * Handle "transmission complete" interrupt.
1452          */
1453         if (tstat & FE_D0_TXDONE) {
1454
1455                 /*
1456                  * Add in total number of collisions on last
1457                  * transmission.  We also clear "collision occurred" flag
1458                  * here.
1459                  *
1460                  * 86960 has a design flaw on collision count on multiple
1461                  * packet transmission.  When we send two or more packets
1462                  * with one start command (that's what we do when the
1463                  * transmission queue is crowded), 86960 informs us number
1464                  * of collisions occurred on the last packet on the
1465                  * transmission only.  Number of collisions on previous
1466                  * packets are lost.  I have told that the fact is clearly
1467                  * stated in the Fujitsu document.
1468                  *
1469                  * I considered not to mind it seriously.  Collision
1470                  * count is not so important, anyway.  Any comments?  FIXME.
1471                  */
1472
1473                 if (fe_inb(sc, FE_DLCR0) & FE_D0_COLLID) {
1474
1475                         /* Clear collision flag.  */
1476                         fe_outb(sc, FE_DLCR0, FE_D0_COLLID);
1477
1478                         /* Extract collision count from 86960.  */
1479                         col = fe_inb(sc, FE_DLCR4);
1480                         col = (col & FE_D4_COL) >> FE_D4_COL_SHIFT;
1481                         if (col == 0) {
1482                                 /*
1483                                  * Status register indicates collisions,
1484                                  * while the collision count is zero.
1485                                  * This can happen after multiple packet
1486                                  * transmission, indicating that one or more
1487                                  * previous packet(s) had been collided.
1488                                  *
1489                                  * Since the accurate number of collisions
1490                                  * has been lost, we just guess it as 1;
1491                                  * Am I too optimistic?  FIXME.
1492                                  */
1493                                 col = 1;
1494                         }
1495                         sc->sc_if.if_collisions += col;
1496                         if (col == 1)
1497                                 sc->mibdata.dot3StatsSingleCollisionFrames++;
1498                         else
1499                                 sc->mibdata.dot3StatsMultipleCollisionFrames++;
1500                         sc->mibdata.dot3StatsCollFrequencies[col-1]++;
1501                 }
1502
1503                 /*
1504                  * Update transmission statistics.
1505                  * Be sure to reflect number of excessive collisions.
1506                  */
1507                 col = sc->tx_excolls;
1508                 sc->sc_if.if_opackets += sc->txb_sched - col;
1509                 sc->sc_if.if_oerrors += col;
1510                 sc->sc_if.if_collisions += col * 16;
1511                 sc->mibdata.dot3StatsExcessiveCollisions += col;
1512                 sc->mibdata.dot3StatsCollFrequencies[15] += col;
1513                 sc->txb_sched = 0;
1514
1515                 /*
1516                  * The transmitter is no more active.
1517                  * Reset output active flag and watchdog timer.
1518                  */
1519                 sc->sc_if.if_flags &= ~IFF_OACTIVE;
1520                 sc->sc_if.if_timer = 0;
1521
1522                 /*
1523                  * If more data is ready to transmit in the buffer, start
1524                  * transmitting them.  Otherwise keep transmitter idle,
1525                  * even if more data is queued.  This gives receive
1526                  * process a slight priority.
1527                  */
1528                 if (sc->txb_count > 0)
1529                         fe_xmit(sc);
1530         }
1531 }
1532
1533 /*
1534  * Ethernet interface receiver interrupt.
1535  */
1536 static void
1537 fe_rint (struct fe_softc * sc, u_char rstat)
1538 {
1539         u_short len;
1540         u_char status;
1541         int i;
1542
1543         /*
1544          * Update statistics if this interrupt is caused by an error.
1545          * Note that, when the system was not sufficiently fast, the
1546          * receive interrupt might not be acknowledged immediately.  If
1547          * one or more errornous frames were received before this routine
1548          * was scheduled, they are ignored, and the following error stats
1549          * give less than real values.
1550          */
1551         if (rstat & (FE_D1_OVRFLO | FE_D1_CRCERR | FE_D1_ALGERR | FE_D1_SRTPKT)) {
1552                 if (rstat & FE_D1_OVRFLO)
1553                         sc->mibdata.dot3StatsInternalMacReceiveErrors++;
1554                 if (rstat & FE_D1_CRCERR)
1555                         sc->mibdata.dot3StatsFCSErrors++;
1556                 if (rstat & FE_D1_ALGERR)
1557                         sc->mibdata.dot3StatsAlignmentErrors++;
1558 #if 0
1559                 /* The reference MAC receiver defined in 802.3
1560                    silently ignores short frames (RUNTs) without
1561                    notifying upper layer.  RFC 1650 (dot3 MIB) is
1562                    based on the 802.3, and it has no stats entry for
1563                    RUNTs...  */
1564                 if (rstat & FE_D1_SRTPKT)
1565                         sc->mibdata.dot3StatsFrameTooShorts++; /* :-) */
1566 #endif
1567                 sc->sc_if.if_ierrors++;
1568         }
1569
1570         /*
1571          * MB86960 has a flag indicating "receive queue empty."
1572          * We just loop, checking the flag, to pull out all received
1573          * packets.
1574          *
1575          * We limit the number of iterations to avoid infinite-loop.
1576          * The upper bound is set to unrealistic high value.
1577          */
1578         for (i = 0; i < FE_MAX_RECV_COUNT * 2; i++) {
1579
1580                 /* Stop the iteration if 86960 indicates no packets.  */
1581                 if (fe_inb(sc, FE_DLCR5) & FE_D5_BUFEMP)
1582                         return;
1583
1584                 /*
1585                  * Extract a receive status byte.
1586                  * As our 86960 is in 16 bit bus access mode, we have to
1587                  * use inw() to get the status byte.  The significant
1588                  * value is returned in lower 8 bits.
1589                  */
1590 #ifdef FE_8BIT_SUPPORT
1591                 if ((sc->proto_dlcr6 & FE_D6_SBW) == FE_D6_SBW_BYTE)
1592                 {
1593                         status = fe_inb(sc, FE_BMPR8);
1594                         fe_inb(sc, FE_BMPR8);
1595                 }
1596                 else
1597 #endif
1598                 {
1599                         status = (u_char) fe_inw(sc, FE_BMPR8);
1600                 }       
1601
1602                 /*
1603                  * Extract the packet length.
1604                  * It is a sum of a header (14 bytes) and a payload.
1605                  * CRC has been stripped off by the 86960.
1606                  */
1607 #ifdef FE_8BIT_SUPPORT
1608                 if ((sc->proto_dlcr6 & FE_D6_SBW) == FE_D6_SBW_BYTE)
1609                 {
1610                         len  =  fe_inb(sc, FE_BMPR8);
1611                         len |= (fe_inb(sc, FE_BMPR8) << 8);
1612                 }
1613                 else
1614 #endif
1615                 {
1616                         len = fe_inw(sc, FE_BMPR8);
1617                 }
1618
1619                 /*
1620                  * AS our 86960 is programed to ignore errored frame,
1621                  * we must not see any error indication in the
1622                  * receive buffer.  So, any error condition is a
1623                  * serious error, e.g., out-of-sync of the receive
1624                  * buffer pointers.
1625                  */
1626                 if ((status & 0xF0) != 0x20 ||
1627                     len > ETHER_MAX_LEN - ETHER_CRC_LEN ||
1628                     len < ETHER_MIN_LEN - ETHER_CRC_LEN) {
1629                         kprintf("fe%d: RX buffer out-of-sync\n", sc->sc_unit);
1630                         sc->sc_if.if_ierrors++;
1631                         sc->mibdata.dot3StatsInternalMacReceiveErrors++;
1632                         fe_reset(sc);
1633                         return;
1634                 }
1635
1636                 /*
1637                  * Go get a packet.
1638                  */
1639                 if (fe_get_packet(sc, len) < 0) {
1640                         /*
1641                          * Negative return from fe_get_packet()
1642                          * indicates no available mbuf.  We stop
1643                          * receiving packets, even if there are more
1644                          * in the buffer.  We hope we can get more
1645                          * mbuf next time.
1646                          */
1647                         sc->sc_if.if_ierrors++;
1648                         sc->mibdata.dot3StatsMissedFrames++;
1649                         fe_droppacket(sc, len);
1650                         return;
1651                 }
1652
1653                 /* Successfully received a packet.  Update stat.  */
1654                 sc->sc_if.if_ipackets++;
1655         }
1656
1657         /* Maximum number of frames has been received.  Something
1658            strange is happening here... */
1659         kprintf("fe%d: unusual receive flood\n", sc->sc_unit);
1660         sc->mibdata.dot3StatsInternalMacReceiveErrors++;
1661         fe_reset(sc);
1662 }
1663
1664 /*
1665  * Ethernet interface interrupt processor
1666  */
1667 static void
1668 fe_intr (void *arg)
1669 {
1670         struct fe_softc *sc = arg;
1671         u_char tstat, rstat;
1672         int loop_count = FE_MAX_LOOP;
1673
1674         /* Loop until there are no more new interrupt conditions.  */
1675         while (loop_count-- > 0) {
1676                 /*
1677                  * Get interrupt conditions, masking unneeded flags.
1678                  */
1679                 tstat = fe_inb(sc, FE_DLCR0) & FE_TMASK;
1680                 rstat = fe_inb(sc, FE_DLCR1) & FE_RMASK;
1681                 if (tstat == 0 && rstat == 0)
1682                         return;
1683
1684                 /*
1685                  * Reset the conditions we are acknowledging.
1686                  */
1687                 fe_outb(sc, FE_DLCR0, tstat);
1688                 fe_outb(sc, FE_DLCR1, rstat);
1689
1690                 /*
1691                  * Handle transmitter interrupts.
1692                  */
1693                 if (tstat)
1694                         fe_tint(sc, tstat);
1695
1696                 /*
1697                  * Handle receiver interrupts
1698                  */
1699                 if (rstat)
1700                         fe_rint(sc, rstat);
1701
1702                 /*
1703                  * Update the multicast address filter if it is
1704                  * needed and possible.  We do it now, because
1705                  * we can make sure the transmission buffer is empty,
1706                  * and there is a good chance that the receive queue
1707                  * is empty.  It will minimize the possibility of
1708                  * packet loss.
1709                  */
1710                 if (sc->filter_change &&
1711                     sc->txb_count == 0 && sc->txb_sched == 0) {
1712                         fe_loadmar(sc);
1713                         sc->sc_if.if_flags &= ~IFF_OACTIVE;
1714                 }
1715
1716                 /*
1717                  * If it looks like the transmitter can take more data,
1718                  * attempt to start output on the interface. This is done
1719                  * after handling the receiver interrupt to give the
1720                  * receive operation priority.
1721                  *
1722                  * BTW, I'm not sure in what case the OACTIVE is on at
1723                  * this point.  Is the following test redundant?
1724                  *
1725                  * No.  This routine polls for both transmitter and
1726                  * receiver interrupts.  86960 can raise a receiver
1727                  * interrupt when the transmission buffer is full.
1728                  */
1729                 if ((sc->sc_if.if_flags & IFF_OACTIVE) == 0)
1730                         fe_start(&sc->sc_if);
1731         }
1732
1733         kprintf("fe%d: too many loops\n", sc->sc_unit);
1734 }
1735
1736 /*
1737  * Process an ioctl request. This code needs some work - it looks
1738  * pretty ugly.
1739  */
1740 static int
1741 fe_ioctl (struct ifnet * ifp, u_long command, caddr_t data, struct ucred *cr)
1742 {
1743         struct fe_softc *sc = ifp->if_softc;
1744         struct ifreq *ifr = (struct ifreq *)data;
1745         int error = 0;
1746
1747         switch (command) {
1748           case SIOCSIFFLAGS:
1749                 /*
1750                  * Switch interface state between "running" and
1751                  * "stopped", reflecting the UP flag.
1752                  */
1753                 if (sc->sc_if.if_flags & IFF_UP) {
1754                         if ((sc->sc_if.if_flags & IFF_RUNNING) == 0)
1755                                 fe_init(sc);
1756                 } else {
1757                         if ((sc->sc_if.if_flags & IFF_RUNNING) != 0)
1758                                 fe_stop(sc);
1759                 }
1760
1761                 /*
1762                  * Promiscuous and/or multicast flags may have changed,
1763                  * so reprogram the multicast filter and/or receive mode.
1764                  */
1765                 fe_setmode(sc);
1766
1767                 /* Done.  */
1768                 break;
1769
1770           case SIOCADDMULTI:
1771           case SIOCDELMULTI:
1772                 /*
1773                  * Multicast list has changed; set the hardware filter
1774                  * accordingly.
1775                  */
1776                 fe_setmode(sc);
1777                 break;
1778
1779           case SIOCSIFMEDIA:
1780           case SIOCGIFMEDIA:
1781                 /* Let if_media to handle these commands and to call
1782                    us back.  */
1783                 error = ifmedia_ioctl(ifp, ifr, &sc->media, command);
1784                 break;
1785
1786           default:
1787                 error = ether_ioctl(ifp, command, data);
1788                 break;
1789         }
1790         return (error);
1791 }
1792
1793 /*
1794  * Retrieve packet from receive buffer and send to the next level up via
1795  * ether_input().
1796  * Returns 0 if success, -1 if error (i.e., mbuf allocation failure).
1797  */
1798 static int
1799 fe_get_packet (struct fe_softc * sc, u_short len)
1800 {
1801         struct ether_header *eh;
1802         struct mbuf *m;
1803
1804         /*
1805          * NFS wants the data be aligned to the word (4 byte)
1806          * boundary.  Ethernet header has 14 bytes.  There is a
1807          * 2-byte gap.
1808          */
1809 #define NFS_MAGIC_OFFSET 2
1810
1811         /*
1812          * This function assumes that an Ethernet packet fits in an
1813          * mbuf (with a cluster attached when necessary.)  On FreeBSD
1814          * 2.0 for x86, which is the primary target of this driver, an
1815          * mbuf cluster has 4096 bytes, and we are happy.  On ancient
1816          * BSDs, such as vanilla 4.3 for 386, a cluster size was 1024,
1817          * however.  If the following #error message were printed upon
1818          * compile, you need to rewrite this function.
1819          */
1820 #if ( MCLBYTES < ETHER_MAX_LEN - ETHER_CRC_LEN + NFS_MAGIC_OFFSET )
1821 #error "Too small MCLBYTES to use fe driver."
1822 #endif
1823
1824         /*
1825          * Our strategy has one more problem.  There is a policy on
1826          * mbuf cluster allocation.  It says that we must have at
1827          * least MINCLSIZE (208 bytes on FreeBSD 2.0 for x86) to
1828          * allocate a cluster.  For a packet of a size between
1829          * (MHLEN - 2) to (MINCLSIZE - 2), our code violates the rule...
1830          * On the other hand, the current code is short, simple,
1831          * and fast, however.  It does no harmful thing, just waists
1832          * some memory.  Any comments?  FIXME.
1833          */
1834
1835         /* Allocate an mbuf with packet header info.  */
1836         MGETHDR(m, MB_DONTWAIT, MT_DATA);
1837         if (m == NULL)
1838                 return -1;
1839
1840         /* Attach a cluster if this packet doesn't fit in a normal mbuf.  */
1841         if (len > MHLEN - NFS_MAGIC_OFFSET) {
1842                 MCLGET(m, MB_DONTWAIT);
1843                 if (!(m->m_flags & M_EXT)) {
1844                         m_freem(m);
1845                         return -1;
1846                 }
1847         }
1848
1849         /* Initialize packet header info.  */
1850         m->m_pkthdr.rcvif = &sc->sc_if;
1851         m->m_pkthdr.len = len;
1852
1853         /* Set the length of this packet.  */
1854         m->m_len = len;
1855
1856         /* The following silliness is to make NFS happy */
1857         m->m_data += NFS_MAGIC_OFFSET;
1858
1859         /* Get (actually just point to) the header part.  */
1860         eh = mtod(m, struct ether_header *);
1861
1862         /* Get a packet.  */
1863 #ifdef FE_8BIT_SUPPORT
1864         if ((sc->proto_dlcr6 & FE_D6_SBW) == FE_D6_SBW_BYTE)
1865         {
1866                 fe_insb(sc, FE_BMPR8, (u_int8_t *)eh, len);
1867         }
1868         else
1869 #endif
1870         {
1871                 fe_insw(sc, FE_BMPR8, (u_int16_t *)eh, (len + 1) >> 1);
1872         }
1873
1874         /* Feed the packet to upper layer.  */
1875         sc->sc_if.if_input(&sc->sc_if, m);
1876         return 0;
1877 }
1878
1879 /*
1880  * Write an mbuf chain to the transmission buffer memory using 16 bit PIO.
1881  * Returns number of bytes actually written, including length word.
1882  *
1883  * If an mbuf chain is too long for an Ethernet frame, it is not sent.
1884  * Packets shorter than Ethernet minimum are legal, and we pad them
1885  * before sending out.  An exception is "partial" packets which are
1886  * shorter than mandatory Ethernet header.
1887  */
1888 static void
1889 fe_write_mbufs (struct fe_softc *sc, struct mbuf *m)
1890 {
1891         u_short length, len;
1892         struct mbuf *mp;
1893         u_char *data;
1894         u_short savebyte;       /* WARNING: Architecture dependent!  */
1895 #define NO_PENDING_BYTE 0xFFFF
1896
1897         static u_char padding [ETHER_MIN_LEN - ETHER_CRC_LEN - ETHER_HDR_LEN];
1898
1899 #ifdef DIAGNOSTIC
1900         /* First, count up the total number of bytes to copy */
1901         length = 0;
1902         for (mp = m; mp != NULL; mp = mp->m_next)
1903                 length += mp->m_len;
1904
1905         /* Check if this matches the one in the packet header.  */
1906         if (length != m->m_pkthdr.len) {
1907                 kprintf("fe%d: packet length mismatch? (%d/%d)\n", sc->sc_unit,
1908                        length, m->m_pkthdr.len);
1909         }
1910 #else
1911         /* Just use the length value in the packet header.  */
1912         length = m->m_pkthdr.len;
1913 #endif
1914
1915 #ifdef DIAGNOSTIC
1916         /*
1917          * Should never send big packets.  If such a packet is passed,
1918          * it should be a bug of upper layer.  We just ignore it.
1919          * ... Partial (too short) packets, neither.
1920          */
1921         if (length < ETHER_HDR_LEN ||
1922             length > ETHER_MAX_LEN - ETHER_CRC_LEN) {
1923                 kprintf("fe%d: got an out-of-spec packet (%u bytes) to send\n",
1924                         sc->sc_unit, length);
1925                 sc->sc_if.if_oerrors++;
1926                 sc->mibdata.dot3StatsInternalMacTransmitErrors++;
1927                 return;
1928         }
1929 #endif
1930
1931         /*
1932          * Put the length word for this frame.
1933          * Does 86960 accept odd length?  -- Yes.
1934          * Do we need to pad the length to minimum size by ourselves?
1935          * -- Generally yes.  But for (or will be) the last
1936          * packet in the transmission buffer, we can skip the
1937          * padding process.  It may gain performance slightly.  FIXME.
1938          */
1939 #ifdef FE_8BIT_SUPPORT
1940         if ((sc->proto_dlcr6 & FE_D6_SBW) == FE_D6_SBW_BYTE)
1941         {
1942                 len = max(length, ETHER_MIN_LEN - ETHER_CRC_LEN);
1943                 fe_outb(sc, FE_BMPR8,  len & 0x00ff);
1944                 fe_outb(sc, FE_BMPR8, (len & 0xff00) >> 8);
1945         }
1946         else
1947 #endif
1948         {
1949                 fe_outw(sc, FE_BMPR8,
1950                         max(length, ETHER_MIN_LEN - ETHER_CRC_LEN));
1951         }
1952
1953         /*
1954          * Update buffer status now.
1955          * Truncate the length up to an even number, since we use outw().
1956          */
1957 #ifdef FE_8BIT_SUPPORT
1958         if ((sc->proto_dlcr6 & FE_D6_SBW) != FE_D6_SBW_BYTE)
1959 #endif
1960         {
1961                 length = (length + 1) & ~1;
1962         }
1963         sc->txb_free -= FE_DATA_LEN_LEN +
1964             max(length, ETHER_MIN_LEN - ETHER_CRC_LEN);
1965         sc->txb_count++;
1966
1967         /*
1968          * Transfer the data from mbuf chain to the transmission buffer.
1969          * MB86960 seems to require that data be transferred as words, and
1970          * only words.  So that we require some extra code to patch
1971          * over odd-length mbufs.
1972          */
1973 #ifdef FE_8BIT_SUPPORT
1974         if ((sc->proto_dlcr6 & FE_D6_SBW) == FE_D6_SBW_BYTE)
1975         {
1976                 /* 8-bit cards are easy.  */
1977                 for (mp = m; mp != 0; mp = mp->m_next) {
1978                         if (mp->m_len)
1979                                 fe_outsb(sc, FE_BMPR8, mtod(mp, caddr_t),
1980                                          mp->m_len);
1981                 }
1982         }
1983         else
1984 #endif
1985         {
1986                 /* 16-bit cards are a pain.  */
1987                 savebyte = NO_PENDING_BYTE;
1988                 for (mp = m; mp != 0; mp = mp->m_next) {
1989
1990                         /* Ignore empty mbuf.  */
1991                         len = mp->m_len;
1992                         if (len == 0)
1993                                 continue;
1994
1995                         /* Find the actual data to send.  */
1996                         data = mtod(mp, caddr_t);
1997
1998                         /* Finish the last byte.  */
1999                         if (savebyte != NO_PENDING_BYTE) {
2000                                 fe_outw(sc, FE_BMPR8, savebyte | (*data << 8));
2001                                 data++;
2002                                 len--;
2003                                 savebyte = NO_PENDING_BYTE;
2004                         }
2005
2006                         /* output contiguous words */
2007                         if (len > 1) {
2008                                 fe_outsw(sc, FE_BMPR8, (u_int16_t *)data,
2009                                          len >> 1);
2010                                 data += len & ~1;
2011                                 len &= 1;
2012                         }
2013
2014                         /* Save a remaining byte, if there is one.  */
2015                         if (len > 0)
2016                                 savebyte = *data;
2017                 }
2018
2019                 /* Spit the last byte, if the length is odd.  */
2020                 if (savebyte != NO_PENDING_BYTE)
2021                         fe_outw(sc, FE_BMPR8, savebyte);
2022         }
2023
2024         /* Pad to the Ethernet minimum length, if the packet is too short.  */
2025         if (length < ETHER_MIN_LEN - ETHER_CRC_LEN) {
2026 #ifdef FE_8BIT_SUPPORT
2027                 if ((sc->proto_dlcr6 & FE_D6_SBW) == FE_D6_SBW_BYTE)
2028                 {
2029                         fe_outsb(sc, FE_BMPR8, padding,
2030                                  ETHER_MIN_LEN - ETHER_CRC_LEN - length);
2031                 }
2032                 else
2033 #endif
2034                 {
2035                         fe_outsw(sc, FE_BMPR8, (u_int16_t *)padding,
2036                                  (ETHER_MIN_LEN - ETHER_CRC_LEN - length) >> 1);
2037                 }
2038         }
2039 }
2040
2041 /*
2042  * Compute hash value for an Ethernet address
2043  */
2044 static int
2045 fe_hash ( u_char * ep )
2046 {
2047 #define FE_HASH_MAGIC_NUMBER 0xEDB88320L
2048
2049         u_long hash = 0xFFFFFFFFL;
2050         int i, j;
2051         u_char b;
2052         u_long m;
2053
2054         for ( i = ETHER_ADDR_LEN; --i >= 0; ) {
2055                 b = *ep++;
2056                 for ( j = 8; --j >= 0; ) {
2057                         m = hash;
2058                         hash >>= 1;
2059                         if ( ( m ^ b ) & 1 ) hash ^= FE_HASH_MAGIC_NUMBER;
2060                         b >>= 1;
2061                 }
2062         }
2063         return ( ( int )( hash >> 26 ) );
2064 }
2065
2066 /*
2067  * Compute the multicast address filter from the
2068  * list of multicast addresses we need to listen to.
2069  */
2070 static struct fe_filter
2071 fe_mcaf ( struct fe_softc *sc )
2072 {
2073         int index;
2074         struct fe_filter filter;
2075         struct ifmultiaddr *ifma;
2076
2077         filter = fe_filter_nothing;
2078         LIST_FOREACH(ifma, &sc->arpcom.ac_if.if_multiaddrs, ifma_link) {
2079                 if (ifma->ifma_addr->sa_family != AF_LINK)
2080                         continue;
2081                 index = fe_hash(LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
2082 #ifdef FE_DEBUG
2083                 kprintf("fe%d: hash(%6D) == %d\n",
2084                         sc->sc_unit, enm->enm_addrlo , ":", index);
2085 #endif
2086
2087                 filter.data[index >> 3] |= 1 << (index & 7);
2088         }
2089         return ( filter );
2090 }
2091
2092 /*
2093  * Calculate a new "multicast packet filter" and put the 86960
2094  * receiver in appropriate mode.
2095  */
2096 static void
2097 fe_setmode (struct fe_softc *sc)
2098 {
2099         int flags = sc->sc_if.if_flags;
2100
2101         /*
2102          * If the interface is not running, we postpone the update
2103          * process for receive modes and multicast address filter
2104          * until the interface is restarted.  It reduces some
2105          * complicated job on maintaining chip states.  (Earlier versions
2106          * of this driver had a bug on that point...)
2107          *
2108          * To complete the trick, fe_init() calls fe_setmode() after
2109          * restarting the interface.
2110          */
2111         if (!(flags & IFF_RUNNING))
2112                 return;
2113
2114         /*
2115          * Promiscuous mode is handled separately.
2116          */
2117         if (flags & IFF_PROMISC) {
2118                 /*
2119                  * Program 86960 to receive all packets on the segment
2120                  * including those directed to other stations.
2121                  * Multicast filter stored in MARs are ignored
2122                  * under this setting, so we don't need to update it.
2123                  *
2124                  * Promiscuous mode in FreeBSD 2 is used solely by
2125                  * BPF, and BPF only listens to valid (no error) packets.
2126                  * So, we ignore erroneous ones even in this mode.
2127                  * (Older versions of fe driver mistook the point.)
2128                  */
2129                 fe_outb(sc, FE_DLCR5,
2130                         sc->proto_dlcr5 | FE_D5_AFM0 | FE_D5_AFM1);
2131                 sc->filter_change = 0;
2132                 return;
2133         }
2134
2135         /*
2136          * Turn the chip to the normal (non-promiscuous) mode.
2137          */
2138         fe_outb(sc, FE_DLCR5, sc->proto_dlcr5 | FE_D5_AFM1);
2139
2140         /*
2141          * Find the new multicast filter value.
2142          */
2143         if (flags & IFF_ALLMULTI)
2144                 sc->filter = fe_filter_all;
2145         else
2146                 sc->filter = fe_mcaf(sc);
2147         sc->filter_change = 1;
2148
2149         /*
2150          * We have to update the multicast filter in the 86960, A.S.A.P.
2151          *
2152          * Note that the DLC (Data Link Control unit, i.e. transmitter
2153          * and receiver) must be stopped when feeding the filter, and
2154          * DLC trashes all packets in both transmission and receive
2155          * buffers when stopped.
2156          *
2157          * To reduce the packet loss, we delay the filter update
2158          * process until buffers are empty.
2159          */
2160         if (sc->txb_sched == 0 && sc->txb_count == 0 &&
2161             !(fe_inb(sc, FE_DLCR1) & FE_D1_PKTRDY)) {
2162                 /*
2163                  * Buffers are (apparently) empty.  Load
2164                  * the new filter value into MARs now.
2165                  */
2166                 fe_loadmar(sc);
2167         } else {
2168                 /*
2169                  * Buffers are not empty.  Mark that we have to update
2170                  * the MARs.  The new filter will be loaded by feintr()
2171                  * later.
2172                  */
2173         }
2174 }
2175
2176 /*
2177  * Load a new multicast address filter into MARs.
2178  *
2179  * The caller must have splimp'ed before fe_loadmar.
2180  * This function starts the DLC upon return.  So it can be called only
2181  * when the chip is working, i.e., from the driver's point of view, when
2182  * a device is RUNNING.  (I mistook the point in previous versions.)
2183  */
2184 static void
2185 fe_loadmar (struct fe_softc * sc)
2186 {
2187         /* Stop the DLC (transmitter and receiver).  */
2188         DELAY(200);
2189         fe_outb(sc, FE_DLCR6, sc->proto_dlcr6 | FE_D6_DLC_DISABLE);
2190         DELAY(200);
2191
2192         /* Select register bank 1 for MARs.  */
2193         fe_outb(sc, FE_DLCR7, sc->proto_dlcr7 | FE_D7_RBS_MAR | FE_D7_POWER_UP);
2194
2195         /* Copy filter value into the registers.  */
2196         fe_outblk(sc, FE_MAR8, sc->filter.data, FE_FILTER_LEN);
2197
2198         /* Restore the bank selection for BMPRs (i.e., runtime registers).  */
2199         fe_outb(sc, FE_DLCR7,
2200                 sc->proto_dlcr7 | FE_D7_RBS_BMPR | FE_D7_POWER_UP);
2201
2202         /* Restart the DLC.  */
2203         DELAY(200);
2204         fe_outb(sc, FE_DLCR6, sc->proto_dlcr6 | FE_D6_DLC_ENABLE);
2205         DELAY(200);
2206
2207         /* We have just updated the filter.  */
2208         sc->filter_change = 0;
2209 }
2210
2211 /* Change the media selection.  */
2212 static int
2213 fe_medchange (struct ifnet *ifp)
2214 {
2215         struct fe_softc *sc = (struct fe_softc *)ifp->if_softc;
2216
2217 #ifdef DIAGNOSTIC
2218         /* If_media should not pass any request for a media which this
2219            interface doesn't support.  */
2220         int b;
2221
2222         for (b = 0; bit2media[b] != 0; b++) {
2223                 if (bit2media[b] == sc->media.ifm_media) break;
2224         }
2225         if (((1 << b) & sc->mbitmap) == 0) {
2226                 kprintf("fe%d: got an unsupported media request (0x%x)\n",
2227                        sc->sc_unit, sc->media.ifm_media);
2228                 return EINVAL;
2229         }
2230 #endif
2231
2232         /* We don't actually change media when the interface is down.
2233            fe_init() will do the job, instead.  Should we also wait
2234            until the transmission buffer being empty?  Changing the
2235            media when we are sending a frame will cause two garbages
2236            on wires, one on old media and another on new.  FIXME */
2237         if (sc->sc_if.if_flags & IFF_UP) {
2238                 if (sc->msel) sc->msel(sc);
2239         }
2240
2241         return 0;
2242 }
2243
2244 /* I don't know how I can support media status callback... FIXME.  */
2245 static void
2246 fe_medstat (struct ifnet *ifp __unused, struct ifmediareq *ifmr __unused)
2247 {
2248 }