BPF has been in the kernel for ages and is supported by all NICs but I4B.
[dragonfly.git] / sys / dev / netif / xl / if_xl.c
1 /*
2  * Copyright (c) 1997, 1998, 1999
3  *      Bill Paul <wpaul@ctr.columbia.edu>.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by Bill Paul.
16  * 4. Neither the name of the author nor the names of any co-contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30  * THE POSSIBILITY OF SUCH DAMAGE.
31  *
32  * $FreeBSD: src/sys/pci/if_xl.c,v 1.72.2.28 2003/10/08 06:01:57 murray Exp $
33  * $DragonFly: src/sys/dev/netif/xl/if_xl.c,v 1.9 2004/03/14 15:36:53 joerg Exp $
34  */
35
36 /*
37  * 3Com 3c90x Etherlink XL PCI NIC driver
38  *
39  * Supports the 3Com "boomerang", "cyclone" and "hurricane" PCI
40  * bus-master chips (3c90x cards and embedded controllers) including
41  * the following:
42  *
43  * 3Com 3c900-TPO       10Mbps/RJ-45
44  * 3Com 3c900-COMBO     10Mbps/RJ-45,AUI,BNC
45  * 3Com 3c905-TX        10/100Mbps/RJ-45
46  * 3Com 3c905-T4        10/100Mbps/RJ-45
47  * 3Com 3c900B-TPO      10Mbps/RJ-45
48  * 3Com 3c900B-COMBO    10Mbps/RJ-45,AUI,BNC
49  * 3Com 3c900B-TPC      10Mbps/RJ-45,BNC
50  * 3Com 3c900B-FL       10Mbps/Fiber-optic
51  * 3Com 3c905B-COMBO    10/100Mbps/RJ-45,AUI,BNC
52  * 3Com 3c905B-TX       10/100Mbps/RJ-45
53  * 3Com 3c905B-FL/FX    10/100Mbps/Fiber-optic
54  * 3Com 3c905C-TX       10/100Mbps/RJ-45 (Tornado ASIC)
55  * 3Com 3c980-TX        10/100Mbps server adapter (Hurricane ASIC)
56  * 3Com 3c980C-TX       10/100Mbps server adapter (Tornado ASIC)
57  * 3Com 3cSOHO100-TX    10/100Mbps/RJ-45 (Hurricane ASIC)
58  * 3Com 3c450-TX        10/100Mbps/RJ-45 (Tornado ASIC)
59  * 3Com 3c555           10/100Mbps/RJ-45 (MiniPCI, Laptop Hurricane)
60  * 3Com 3c556           10/100Mbps/RJ-45 (MiniPCI, Hurricane ASIC)
61  * 3Com 3c556B          10/100Mbps/RJ-45 (MiniPCI, Hurricane ASIC)
62  * 3Com 3c575TX         10/100Mbps/RJ-45 (Cardbus, Hurricane ASIC)
63  * 3Com 3c575B          10/100Mbps/RJ-45 (Cardbus, Hurricane ASIC)
64  * 3Com 3c575C          10/100Mbps/RJ-45 (Cardbus, Hurricane ASIC)
65  * 3Com 3cxfem656       10/100Mbps/RJ-45 (Cardbus, Hurricane ASIC)
66  * 3Com 3cxfem656b      10/100Mbps/RJ-45 (Cardbus, Hurricane ASIC)
67  * 3Com 3cxfem656c      10/100Mbps/RJ-45 (Cardbus, Tornado ASIC)
68  * Dell Optiplex GX1 on-board 3c918 10/100Mbps/RJ-45
69  * Dell on-board 3c920 10/100Mbps/RJ-45
70  * Dell Precision on-board 3c905B 10/100Mbps/RJ-45
71  * Dell Latitude laptop docking station embedded 3c905-TX
72  *
73  * Written by Bill Paul <wpaul@ctr.columbia.edu>
74  * Electrical Engineering Department
75  * Columbia University, New York City
76  */
77
78 /*
79  * The 3c90x series chips use a bus-master DMA interface for transfering
80  * packets to and from the controller chip. Some of the "vortex" cards
81  * (3c59x) also supported a bus master mode, however for those chips
82  * you could only DMA packets to/from a contiguous memory buffer. For
83  * transmission this would mean copying the contents of the queued mbuf
84  * chain into an mbuf cluster and then DMAing the cluster. This extra
85  * copy would sort of defeat the purpose of the bus master support for
86  * any packet that doesn't fit into a single mbuf.
87  *
88  * By contrast, the 3c90x cards support a fragment-based bus master
89  * mode where mbuf chains can be encapsulated using TX descriptors.
90  * This is similar to other PCI chips such as the Texas Instruments
91  * ThunderLAN and the Intel 82557/82558.
92  *
93  * The "vortex" driver (if_vx.c) happens to work for the "boomerang"
94  * bus master chips because they maintain the old PIO interface for
95  * backwards compatibility, but starting with the 3c905B and the
96  * "cyclone" chips, the compatibility interface has been dropped.
97  * Since using bus master DMA is a big win, we use this driver to
98  * support the PCI "boomerang" chips even though they work with the
99  * "vortex" driver in order to obtain better performance.
100  *
101  * This driver is in the /sys/pci directory because it only supports
102  * PCI-based NICs.
103  */
104
105 #include <sys/param.h>
106 #include <sys/systm.h>
107 #include <sys/sockio.h>
108 #include <sys/endian.h>
109 #include <sys/mbuf.h>
110 #include <sys/kernel.h>
111 #include <sys/socket.h>
112
113 #include <net/if.h>
114 #include <net/if_arp.h>
115 #include <net/ethernet.h>
116 #include <net/if_dl.h>
117 #include <net/if_media.h>
118 #include <net/vlan/if_vlan_var.h>
119
120 #include <net/bpf.h>
121
122 #include <machine/bus_memio.h>
123 #include <machine/bus_pio.h>
124 #include <machine/bus.h>
125 #include <machine/clock.h>      /* for DELAY */
126 #include <machine/resource.h>
127 #include <sys/bus.h>
128 #include <sys/rman.h>
129
130 #include "../mii_layer/mii.h"
131 #include "../mii_layer/miivar.h"
132
133 #include <bus/pci/pcireg.h>
134 #include <bus/pci/pcivar.h>
135
136 /* "controller miibus0" required.  See GENERIC if you get errors here. */
137 #include "miibus_if.h"
138
139 #include "if_xlreg.h"
140
141 #define XL905B_CSUM_FEATURES    (CSUM_IP | CSUM_TCP | CSUM_UDP)
142
143 /*
144  * Various supported device vendors/types and their names.
145  */
146 static struct xl_type xl_devs[] = {
147         { TC_VENDORID, TC_DEVICEID_BOOMERANG_10BT,
148                 "3Com 3c900-TPO Etherlink XL" },
149         { TC_VENDORID, TC_DEVICEID_BOOMERANG_10BT_COMBO,
150                 "3Com 3c900-COMBO Etherlink XL" },
151         { TC_VENDORID, TC_DEVICEID_BOOMERANG_10_100BT,
152                 "3Com 3c905-TX Fast Etherlink XL" },
153         { TC_VENDORID, TC_DEVICEID_BOOMERANG_100BT4,
154                 "3Com 3c905-T4 Fast Etherlink XL" },
155         { TC_VENDORID, TC_DEVICEID_KRAKATOA_10BT,
156                 "3Com 3c900B-TPO Etherlink XL" },
157         { TC_VENDORID, TC_DEVICEID_KRAKATOA_10BT_COMBO,
158                 "3Com 3c900B-COMBO Etherlink XL" },
159         { TC_VENDORID, TC_DEVICEID_KRAKATOA_10BT_TPC,
160                 "3Com 3c900B-TPC Etherlink XL" },
161         { TC_VENDORID, TC_DEVICEID_CYCLONE_10FL,
162                 "3Com 3c900B-FL Etherlink XL" },
163         { TC_VENDORID, TC_DEVICEID_HURRICANE_10_100BT,
164                 "3Com 3c905B-TX Fast Etherlink XL" },
165         { TC_VENDORID, TC_DEVICEID_CYCLONE_10_100BT4,
166                 "3Com 3c905B-T4 Fast Etherlink XL" },
167         { TC_VENDORID, TC_DEVICEID_CYCLONE_10_100FX,
168                 "3Com 3c905B-FX/SC Fast Etherlink XL" },
169         { TC_VENDORID, TC_DEVICEID_CYCLONE_10_100_COMBO,
170                 "3Com 3c905B-COMBO Fast Etherlink XL" },
171         { TC_VENDORID, TC_DEVICEID_TORNADO_10_100BT,
172                 "3Com 3c905C-TX Fast Etherlink XL" },
173         { TC_VENDORID, TC_DEVICEID_TORNADO_10_100BT_920B,
174                 "3Com 3c920B-EMB Integrated Fast Etherlink XL" },
175         { TC_VENDORID, TC_DEVICEID_HURRICANE_10_100BT_SERV,
176                 "3Com 3c980 Fast Etherlink XL" },
177         { TC_VENDORID, TC_DEVICEID_TORNADO_10_100BT_SERV,
178                 "3Com 3c980C Fast Etherlink XL" },
179         { TC_VENDORID, TC_DEVICEID_HURRICANE_SOHO100TX,
180                 "3Com 3cSOHO100-TX OfficeConnect" },
181         { TC_VENDORID, TC_DEVICEID_TORNADO_HOMECONNECT,
182                 "3Com 3c450-TX HomeConnect" },
183         { TC_VENDORID, TC_DEVICEID_HURRICANE_555,
184                 "3Com 3c555 Fast Etherlink XL" },
185         { TC_VENDORID, TC_DEVICEID_HURRICANE_556,
186                 "3Com 3c556 Fast Etherlink XL" },
187         { TC_VENDORID, TC_DEVICEID_HURRICANE_556B,
188                 "3Com 3c556B Fast Etherlink XL" },
189         { TC_VENDORID, TC_DEVICEID_HURRICANE_575A,
190                 "3Com 3c575TX Fast Etherlink XL" },
191         { TC_VENDORID, TC_DEVICEID_HURRICANE_575B,
192                 "3Com 3c575B Fast Etherlink XL" },
193         { TC_VENDORID, TC_DEVICEID_HURRICANE_575C,
194                 "3Com 3c575C Fast Etherlink XL" },
195         { TC_VENDORID, TC_DEVICEID_HURRICANE_656,
196                 "3Com 3c656 Fast Etherlink XL" },
197         { TC_VENDORID, TC_DEVICEID_HURRICANE_656B,
198                 "3Com 3c656B Fast Etherlink XL" },
199         { TC_VENDORID, TC_DEVICEID_TORNADO_656C,
200                 "3Com 3c656C Fast Etherlink XL" },
201         { 0, 0, NULL }
202 };
203
204 static int xl_probe             (device_t);
205 static int xl_attach            (device_t);
206 static int xl_detach            (device_t);
207
208 static int xl_newbuf            (struct xl_softc *, struct xl_chain_onefrag *);
209 static void xl_stats_update     (void *);
210 static int xl_encap             (struct xl_softc *, struct xl_chain *,
211                                                 struct mbuf *);
212 static void xl_rxeof            (struct xl_softc *);
213 static int xl_rx_resync         (struct xl_softc *);
214 static void xl_txeof            (struct xl_softc *);
215 static void xl_txeof_90xB       (struct xl_softc *);
216 static void xl_txeoc            (struct xl_softc *);
217 static void xl_intr             (void *);
218 static void xl_start            (struct ifnet *);
219 static void xl_start_90xB       (struct ifnet *);
220 static int xl_ioctl             (struct ifnet *, u_long, caddr_t);
221 static void xl_init             (void *);
222 static void xl_stop             (struct xl_softc *);
223 static void xl_watchdog         (struct ifnet *);
224 static void xl_shutdown         (device_t);
225 static int xl_suspend           (device_t); 
226 static int xl_resume            (device_t);
227
228 static int xl_ifmedia_upd       (struct ifnet *);
229 static void xl_ifmedia_sts      (struct ifnet *, struct ifmediareq *);
230
231 static int xl_eeprom_wait       (struct xl_softc *);
232 static int xl_read_eeprom       (struct xl_softc *, caddr_t, int, int, int);
233 static void xl_mii_sync         (struct xl_softc *);
234 static void xl_mii_send         (struct xl_softc *, u_int32_t, int);
235 static int xl_mii_readreg       (struct xl_softc *, struct xl_mii_frame *);
236 static int xl_mii_writereg      (struct xl_softc *, struct xl_mii_frame *);
237
238 static void xl_setcfg           (struct xl_softc *);
239 static void xl_setmode          (struct xl_softc *, int);
240 static u_int8_t xl_calchash     (caddr_t);
241 static void xl_setmulti         (struct xl_softc *);
242 static void xl_setmulti_hash    (struct xl_softc *);
243 static void xl_reset            (struct xl_softc *);
244 static int xl_list_rx_init      (struct xl_softc *);
245 static int xl_list_tx_init      (struct xl_softc *);
246 static int xl_list_tx_init_90xB (struct xl_softc *);
247 static void xl_wait             (struct xl_softc *);
248 static void xl_mediacheck       (struct xl_softc *);
249 static void xl_choose_xcvr      (struct xl_softc *, int);
250 static void xl_dma_map_addr     (void *, bus_dma_segment_t *, int, int);
251 static void xl_dma_map_rxbuf    (void *, bus_dma_segment_t *, int, bus_size_t,
252                                                 int);
253 static void xl_dma_map_txbuf    (void *, bus_dma_segment_t *, int, bus_size_t,
254                                                 int);
255 #ifdef notdef
256 static void xl_testpacket       (struct xl_softc *);
257 #endif
258
259 static int xl_miibus_readreg    (device_t, int, int);
260 static int xl_miibus_writereg   (device_t, int, int, int);
261 static void xl_miibus_statchg   (device_t);
262 static void xl_miibus_mediainit (device_t);
263
264 static device_method_t xl_methods[] = {
265         /* Device interface */
266         DEVMETHOD(device_probe,         xl_probe),
267         DEVMETHOD(device_attach,        xl_attach),
268         DEVMETHOD(device_detach,        xl_detach),
269         DEVMETHOD(device_shutdown,      xl_shutdown),
270         DEVMETHOD(device_suspend,       xl_suspend),
271         DEVMETHOD(device_resume,        xl_resume),
272
273         /* bus interface */
274         DEVMETHOD(bus_print_child,      bus_generic_print_child),
275         DEVMETHOD(bus_driver_added,     bus_generic_driver_added),
276
277         /* MII interface */
278         DEVMETHOD(miibus_readreg,       xl_miibus_readreg),
279         DEVMETHOD(miibus_writereg,      xl_miibus_writereg),
280         DEVMETHOD(miibus_statchg,       xl_miibus_statchg),
281         DEVMETHOD(miibus_mediainit,     xl_miibus_mediainit),
282
283         { 0, 0 }
284 };
285
286 static driver_t xl_driver = {
287         "xl",
288         xl_methods,
289         sizeof(struct xl_softc)
290 };
291
292 static devclass_t xl_devclass;
293
294 DECLARE_DUMMY_MODULE(if_xl);
295 MODULE_DEPEND(if_xl, miibus, 1, 1, 1);
296 DRIVER_MODULE(if_xl, pci, xl_driver, xl_devclass, 0, 0);
297 DRIVER_MODULE(miibus, xl, miibus_driver, miibus_devclass, 0, 0);
298
299 static void
300 xl_dma_map_addr(arg, segs, nseg, error)
301         void *arg;
302         bus_dma_segment_t *segs;
303         int nseg, error;
304 {
305         u_int32_t *paddr;
306         
307         paddr = arg;
308         *paddr = segs->ds_addr;
309 }
310
311 static void
312 xl_dma_map_rxbuf(arg, segs, nseg, mapsize, error)
313         void *arg;
314         bus_dma_segment_t *segs;
315         int nseg;
316         bus_size_t mapsize;
317         int error;
318 {
319         u_int32_t *paddr;
320
321         if (error)
322                 return;
323         KASSERT(nseg == 1, ("xl_dma_map_rxbuf: too many DMA segments"));
324         paddr = arg;
325         *paddr = segs->ds_addr;
326 }
327
328 static void
329 xl_dma_map_txbuf(arg, segs, nseg, mapsize, error)
330         void *arg;
331         bus_dma_segment_t *segs;
332         int nseg;
333         bus_size_t mapsize;
334         int error;
335 {
336         struct xl_list *l;
337         int i, total_len;
338
339         if (error)
340                 return;
341
342         KASSERT(nseg <= XL_MAXFRAGS, ("too many DMA segments"));
343
344         total_len = 0;
345         l = arg;
346         for (i = 0; i < nseg; i++) {
347                 KASSERT(segs[i].ds_len <= MCLBYTES, ("segment size too large"));
348                 l->xl_frag[i].xl_addr = htole32(segs[i].ds_addr);
349                 l->xl_frag[i].xl_len = htole32(segs[i].ds_len);
350                 total_len += segs[i].ds_len;
351         }
352         l->xl_frag[nseg - 1].xl_len = htole32(segs[nseg - 1].ds_len |
353             XL_LAST_FRAG);
354         l->xl_status = htole32(total_len);
355         l->xl_next = 0;
356 }
357
358 /*
359  * Murphy's law says that it's possible the chip can wedge and
360  * the 'command in progress' bit may never clear. Hence, we wait
361  * only a finite amount of time to avoid getting caught in an
362  * infinite loop. Normally this delay routine would be a macro,
363  * but it isn't called during normal operation so we can afford
364  * to make it a function.
365  */
366 static void
367 xl_wait(sc)
368         struct xl_softc         *sc;
369 {
370         int             i;
371
372         for (i = 0; i < XL_TIMEOUT; i++) {
373                 if (!(CSR_READ_2(sc, XL_STATUS) & XL_STAT_CMDBUSY))
374                         break;
375         }
376
377         if (i == XL_TIMEOUT)
378                 printf("xl%d: command never completed!\n", sc->xl_unit);
379
380         return;
381 }
382
383 /*
384  * MII access routines are provided for adapters with external
385  * PHYs (3c905-TX, 3c905-T4, 3c905B-T4) and those with built-in
386  * autoneg logic that's faked up to look like a PHY (3c905B-TX).
387  * Note: if you don't perform the MDIO operations just right,
388  * it's possible to end up with code that works correctly with
389  * some chips/CPUs/processor speeds/bus speeds/etc but not
390  * with others.
391  */
392 #define MII_SET(x)                                      \
393         CSR_WRITE_2(sc, XL_W4_PHY_MGMT,                 \
394                 CSR_READ_2(sc, XL_W4_PHY_MGMT) | (x))
395
396 #define MII_CLR(x)                                      \
397         CSR_WRITE_2(sc, XL_W4_PHY_MGMT,                 \
398                 CSR_READ_2(sc, XL_W4_PHY_MGMT) & ~(x))
399
400 /*
401  * Sync the PHYs by setting data bit and strobing the clock 32 times.
402  */
403 static void
404 xl_mii_sync(sc)
405         struct xl_softc         *sc;
406 {
407         int             i;
408
409         XL_SEL_WIN(4);
410         MII_SET(XL_MII_DIR|XL_MII_DATA);
411
412         for (i = 0; i < 32; i++) {
413                 MII_SET(XL_MII_CLK);
414                 MII_SET(XL_MII_DATA);
415                 MII_SET(XL_MII_DATA);
416                 MII_CLR(XL_MII_CLK);
417                 MII_SET(XL_MII_DATA);
418                 MII_SET(XL_MII_DATA);
419         }
420
421         return;
422 }
423
424 /*
425  * Clock a series of bits through the MII.
426  */
427 static void
428 xl_mii_send(sc, bits, cnt)
429         struct xl_softc         *sc;
430         u_int32_t               bits;
431         int                     cnt;
432 {
433         int                     i;
434
435         XL_SEL_WIN(4);
436         MII_CLR(XL_MII_CLK);
437
438         for (i = (0x1 << (cnt - 1)); i; i >>= 1) {
439                 if (bits & i) {
440                         MII_SET(XL_MII_DATA);
441                 } else {
442                         MII_CLR(XL_MII_DATA);
443                 }
444                 MII_CLR(XL_MII_CLK);
445                 MII_SET(XL_MII_CLK);
446         }
447 }
448
449 /*
450  * Read an PHY register through the MII.
451  */
452 static int
453 xl_mii_readreg(sc, frame)
454         struct xl_softc         *sc;
455         struct xl_mii_frame     *frame;
456         
457 {
458         int                     i, ack, s;
459
460         s = splimp();
461
462         /*
463          * Set up frame for RX.
464          */
465         frame->mii_stdelim = XL_MII_STARTDELIM;
466         frame->mii_opcode = XL_MII_READOP;
467         frame->mii_turnaround = 0;
468         frame->mii_data = 0;
469         
470         /*
471          * Select register window 4.
472          */
473
474         XL_SEL_WIN(4);
475
476         CSR_WRITE_2(sc, XL_W4_PHY_MGMT, 0);
477         /*
478          * Turn on data xmit.
479          */
480         MII_SET(XL_MII_DIR);
481
482         xl_mii_sync(sc);
483
484         /*
485          * Send command/address info.
486          */
487         xl_mii_send(sc, frame->mii_stdelim, 2);
488         xl_mii_send(sc, frame->mii_opcode, 2);
489         xl_mii_send(sc, frame->mii_phyaddr, 5);
490         xl_mii_send(sc, frame->mii_regaddr, 5);
491
492         /* Idle bit */
493         MII_CLR((XL_MII_CLK|XL_MII_DATA));
494         MII_SET(XL_MII_CLK);
495
496         /* Turn off xmit. */
497         MII_CLR(XL_MII_DIR);
498
499         /* Check for ack */
500         MII_CLR(XL_MII_CLK);
501         ack = CSR_READ_2(sc, XL_W4_PHY_MGMT) & XL_MII_DATA;
502         MII_SET(XL_MII_CLK);
503
504         /*
505          * Now try reading data bits. If the ack failed, we still
506          * need to clock through 16 cycles to keep the PHY(s) in sync.
507          */
508         if (ack) {
509                 for(i = 0; i < 16; i++) {
510                         MII_CLR(XL_MII_CLK);
511                         MII_SET(XL_MII_CLK);
512                 }
513                 goto fail;
514         }
515
516         for (i = 0x8000; i; i >>= 1) {
517                 MII_CLR(XL_MII_CLK);
518                 if (!ack) {
519                         if (CSR_READ_2(sc, XL_W4_PHY_MGMT) & XL_MII_DATA)
520                                 frame->mii_data |= i;
521                 }
522                 MII_SET(XL_MII_CLK);
523         }
524
525 fail:
526
527         MII_CLR(XL_MII_CLK);
528         MII_SET(XL_MII_CLK);
529
530         splx(s);
531
532         if (ack)
533                 return(1);
534         return(0);
535 }
536
537 /*
538  * Write to a PHY register through the MII.
539  */
540 static int
541 xl_mii_writereg(sc, frame)
542         struct xl_softc         *sc;
543         struct xl_mii_frame     *frame;
544         
545 {
546         int                     s;
547
548         s = splimp();
549
550         /*
551          * Set up frame for TX.
552          */
553
554         frame->mii_stdelim = XL_MII_STARTDELIM;
555         frame->mii_opcode = XL_MII_WRITEOP;
556         frame->mii_turnaround = XL_MII_TURNAROUND;
557         
558         /*
559          * Select the window 4.
560          */
561         XL_SEL_WIN(4);
562
563         /*
564          * Turn on data output.
565          */
566         MII_SET(XL_MII_DIR);
567
568         xl_mii_sync(sc);
569
570         xl_mii_send(sc, frame->mii_stdelim, 2);
571         xl_mii_send(sc, frame->mii_opcode, 2);
572         xl_mii_send(sc, frame->mii_phyaddr, 5);
573         xl_mii_send(sc, frame->mii_regaddr, 5);
574         xl_mii_send(sc, frame->mii_turnaround, 2);
575         xl_mii_send(sc, frame->mii_data, 16);
576
577         /* Idle bit. */
578         MII_SET(XL_MII_CLK);
579         MII_CLR(XL_MII_CLK);
580
581         /*
582          * Turn off xmit.
583          */
584         MII_CLR(XL_MII_DIR);
585
586         splx(s);
587
588         return(0);
589 }
590
591 static int
592 xl_miibus_readreg(dev, phy, reg)
593         device_t                dev;
594         int                     phy, reg;
595 {
596         struct xl_softc         *sc;
597         struct xl_mii_frame     frame;
598
599         sc = device_get_softc(dev);
600
601         /*
602          * Pretend that PHYs are only available at MII address 24.
603          * This is to guard against problems with certain 3Com ASIC
604          * revisions that incorrectly map the internal transceiver
605          * control registers at all MII addresses. This can cause
606          * the miibus code to attach the same PHY several times over.
607          */
608         if ((!(sc->xl_flags & XL_FLAG_PHYOK)) && phy != 24)
609                 return(0);
610
611         bzero((char *)&frame, sizeof(frame));
612
613         frame.mii_phyaddr = phy;
614         frame.mii_regaddr = reg;
615         xl_mii_readreg(sc, &frame);
616
617         return(frame.mii_data);
618 }
619
620 static int
621 xl_miibus_writereg(dev, phy, reg, data)
622         device_t                dev;
623         int                     phy, reg, data;
624 {
625         struct xl_softc         *sc;
626         struct xl_mii_frame     frame;
627
628         sc = device_get_softc(dev);
629
630         if ((!(sc->xl_flags & XL_FLAG_PHYOK)) && phy != 24)
631                 return(0);
632
633         bzero((char *)&frame, sizeof(frame));
634
635         frame.mii_phyaddr = phy;
636         frame.mii_regaddr = reg;
637         frame.mii_data = data;
638
639         xl_mii_writereg(sc, &frame);
640
641         return(0);
642 }
643
644 static void
645 xl_miibus_statchg(dev)
646         device_t                dev;
647 {
648         struct xl_softc         *sc;
649         struct mii_data         *mii;
650
651         
652         sc = device_get_softc(dev);
653         mii = device_get_softc(sc->xl_miibus);
654
655         xl_setcfg(sc);
656
657         /* Set ASIC's duplex mode to match the PHY. */
658         XL_SEL_WIN(3);
659         if ((mii->mii_media_active & IFM_GMASK) == IFM_FDX)
660                 CSR_WRITE_1(sc, XL_W3_MAC_CTRL, XL_MACCTRL_DUPLEX);
661         else
662                 CSR_WRITE_1(sc, XL_W3_MAC_CTRL,
663                         (CSR_READ_1(sc, XL_W3_MAC_CTRL) & ~XL_MACCTRL_DUPLEX));
664
665         return;
666 }
667
668 /*
669  * Special support for the 3c905B-COMBO. This card has 10/100 support
670  * plus BNC and AUI ports. This means we will have both an miibus attached
671  * plus some non-MII media settings. In order to allow this, we have to
672  * add the extra media to the miibus's ifmedia struct, but we can't do
673  * that during xl_attach() because the miibus hasn't been attached yet.
674  * So instead, we wait until the miibus probe/attach is done, at which
675  * point we will get a callback telling is that it's safe to add our
676  * extra media.
677  */
678 static void
679 xl_miibus_mediainit(dev)
680         device_t                dev;
681 {
682         struct xl_softc         *sc;
683         struct mii_data         *mii;
684         struct ifmedia          *ifm;
685         
686         sc = device_get_softc(dev);
687         mii = device_get_softc(sc->xl_miibus);
688         ifm = &mii->mii_media;
689
690         if (sc->xl_media & (XL_MEDIAOPT_AUI|XL_MEDIAOPT_10FL)) {
691                 /*
692                  * Check for a 10baseFL board in disguise.
693                  */
694                 if (sc->xl_type == XL_TYPE_905B &&
695                     sc->xl_media == XL_MEDIAOPT_10FL) {
696                         if (bootverbose)
697                                 printf("xl%d: found 10baseFL\n", sc->xl_unit);
698                         ifmedia_add(ifm, IFM_ETHER|IFM_10_FL, 0, NULL);
699                         ifmedia_add(ifm, IFM_ETHER|IFM_10_FL|IFM_HDX, 0, NULL);
700                         if (sc->xl_caps & XL_CAPS_FULL_DUPLEX)
701                                 ifmedia_add(ifm,
702                                     IFM_ETHER|IFM_10_FL|IFM_FDX, 0, NULL);
703                 } else {
704                         if (bootverbose)
705                                 printf("xl%d: found AUI\n", sc->xl_unit);
706                         ifmedia_add(ifm, IFM_ETHER|IFM_10_5, 0, NULL);
707                 }
708         }
709
710         if (sc->xl_media & XL_MEDIAOPT_BNC) {
711                 if (bootverbose)
712                         printf("xl%d: found BNC\n", sc->xl_unit);
713                 ifmedia_add(ifm, IFM_ETHER|IFM_10_2, 0, NULL);
714         }
715
716         return;
717 }
718
719 /*
720  * The EEPROM is slow: give it time to come ready after issuing
721  * it a command.
722  */
723 static int
724 xl_eeprom_wait(sc)
725         struct xl_softc         *sc;
726 {
727         int                     i;
728
729         for (i = 0; i < 100; i++) {
730                 if (CSR_READ_2(sc, XL_W0_EE_CMD) & XL_EE_BUSY)
731                         DELAY(162);
732                 else
733                         break;
734         }
735
736         if (i == 100) {
737                 printf("xl%d: eeprom failed to come ready\n", sc->xl_unit);
738                 return(1);
739         }
740
741         return(0);
742 }
743
744 /*
745  * Read a sequence of words from the EEPROM. Note that ethernet address
746  * data is stored in the EEPROM in network byte order.
747  */
748 static int
749 xl_read_eeprom(sc, dest, off, cnt, swap)
750         struct xl_softc         *sc;
751         caddr_t                 dest;
752         int                     off;
753         int                     cnt;
754         int                     swap;
755 {
756         int                     err = 0, i;
757         u_int16_t               word = 0, *ptr;
758 #define EEPROM_5BIT_OFFSET(A) ((((A) << 2) & 0x7F00) | ((A) & 0x003F))
759 #define EEPROM_8BIT_OFFSET(A) ((A) & 0x003F)
760         /* WARNING! DANGER!
761          * It's easy to accidentally overwrite the rom content!
762          * Note: the 3c575 uses 8bit EEPROM offsets.
763          */
764         XL_SEL_WIN(0);
765
766         if (xl_eeprom_wait(sc))
767                 return(1);
768
769         if (sc->xl_flags & XL_FLAG_EEPROM_OFFSET_30)
770                 off += 0x30;
771
772         for (i = 0; i < cnt; i++) {
773                 if (sc->xl_flags & XL_FLAG_8BITROM)
774                         CSR_WRITE_2(sc, XL_W0_EE_CMD, 
775                             XL_EE_8BIT_READ | EEPROM_8BIT_OFFSET(off + i));
776                 else
777                         CSR_WRITE_2(sc, XL_W0_EE_CMD,
778                             XL_EE_READ | EEPROM_5BIT_OFFSET(off + i));
779                 err = xl_eeprom_wait(sc);
780                 if (err)
781                         break;
782                 word = CSR_READ_2(sc, XL_W0_EE_DATA);
783                 ptr = (u_int16_t *)(dest + (i * 2));
784                 if (swap)
785                         *ptr = ntohs(word);
786                 else
787                         *ptr = word;    
788         }
789
790         return(err ? 1 : 0);
791 }
792
793 /*
794  * This routine is taken from the 3Com Etherlink XL manual,
795  * page 10-7. It calculates a CRC of the supplied multicast
796  * group address and returns the lower 8 bits, which are used
797  * as the multicast filter position.
798  * Note: the 3c905B currently only supports a 64-bit hash table,
799  * which means we really only need 6 bits, but the manual indicates
800  * that future chip revisions will have a 256-bit hash table,
801  * hence the routine is set up to calculate 8 bits of position
802  * info in case we need it some day.
803  * Note II, The Sequel: _CURRENT_ versions of the 3c905B have a
804  * 256 bit hash table. This means we have to use all 8 bits regardless.
805  * On older cards, the upper 2 bits will be ignored. Grrrr....
806  */
807 static u_int8_t xl_calchash(addr)
808         caddr_t                 addr;
809 {
810         u_int32_t               crc, carry;
811         int                     i, j;
812         u_int8_t                c;
813
814         /* Compute CRC for the address value. */
815         crc = 0xFFFFFFFF; /* initial value */
816
817         for (i = 0; i < 6; i++) {
818                 c = *(addr + i);
819                 for (j = 0; j < 8; j++) {
820                         carry = ((crc & 0x80000000) ? 1 : 0) ^ (c & 0x01);
821                         crc <<= 1;
822                         c >>= 1;
823                         if (carry)
824                                 crc = (crc ^ 0x04c11db6) | carry;
825                 }
826         }
827
828         /* return the filter bit position */
829         return(crc & 0x000000FF);
830 }
831
832 /*
833  * NICs older than the 3c905B have only one multicast option, which
834  * is to enable reception of all multicast frames.
835  */
836 static void
837 xl_setmulti(sc)
838         struct xl_softc         *sc;
839 {
840         struct ifnet            *ifp;
841         struct ifmultiaddr      *ifma;
842         u_int8_t                rxfilt;
843         int                     mcnt = 0;
844
845         ifp = &sc->arpcom.ac_if;
846
847         XL_SEL_WIN(5);
848         rxfilt = CSR_READ_1(sc, XL_W5_RX_FILTER);
849
850         if (ifp->if_flags & IFF_ALLMULTI) {
851                 rxfilt |= XL_RXFILTER_ALLMULTI;
852                 CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_SET_FILT|rxfilt);
853                 return;
854         }
855
856         for (ifma = ifp->if_multiaddrs.lh_first; ifma != NULL;
857                                 ifma = ifma->ifma_link.le_next)
858                 mcnt++;
859
860         if (mcnt)
861                 rxfilt |= XL_RXFILTER_ALLMULTI;
862         else
863                 rxfilt &= ~XL_RXFILTER_ALLMULTI;
864
865         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_SET_FILT|rxfilt);
866
867         return;
868 }
869
870 /*
871  * 3c905B adapters have a hash filter that we can program.
872  */
873 static void
874 xl_setmulti_hash(sc)
875         struct xl_softc         *sc;
876 {
877         struct ifnet            *ifp;
878         int                     h = 0, i;
879         struct ifmultiaddr      *ifma;
880         u_int8_t                rxfilt;
881         int                     mcnt = 0;
882
883         ifp = &sc->arpcom.ac_if;
884
885         XL_SEL_WIN(5);
886         rxfilt = CSR_READ_1(sc, XL_W5_RX_FILTER);
887
888         if (ifp->if_flags & IFF_ALLMULTI) {
889                 rxfilt |= XL_RXFILTER_ALLMULTI;
890                 CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_SET_FILT|rxfilt);
891                 return;
892         } else
893                 rxfilt &= ~XL_RXFILTER_ALLMULTI;
894
895
896         /* first, zot all the existing hash bits */
897         for (i = 0; i < XL_HASHFILT_SIZE; i++)
898                 CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_SET_HASH|i);
899
900         /* now program new ones */
901         for (ifma = ifp->if_multiaddrs.lh_first; ifma != NULL;
902                                 ifma = ifma->ifma_link.le_next) {
903                 if (ifma->ifma_addr->sa_family != AF_LINK)
904                         continue;
905                 h = xl_calchash(LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
906                 CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_SET_HASH|XL_HASH_SET|h);
907                 mcnt++;
908         }
909
910         if (mcnt)
911                 rxfilt |= XL_RXFILTER_MULTIHASH;
912         else
913                 rxfilt &= ~XL_RXFILTER_MULTIHASH;
914
915         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_SET_FILT|rxfilt);
916
917         return;
918 }
919
920 #ifdef notdef
921 static void
922 xl_testpacket(sc)
923         struct xl_softc         *sc;
924 {
925         struct mbuf             *m;
926         struct ifnet            *ifp;
927
928         ifp = &sc->arpcom.ac_if;
929
930         MGETHDR(m, M_DONTWAIT, MT_DATA);
931
932         if (m == NULL)
933                 return;
934
935         bcopy(&sc->arpcom.ac_enaddr,
936                 mtod(m, struct ether_header *)->ether_dhost, ETHER_ADDR_LEN);
937         bcopy(&sc->arpcom.ac_enaddr,
938                 mtod(m, struct ether_header *)->ether_shost, ETHER_ADDR_LEN);
939         mtod(m, struct ether_header *)->ether_type = htons(3);
940         mtod(m, unsigned char *)[14] = 0;
941         mtod(m, unsigned char *)[15] = 0;
942         mtod(m, unsigned char *)[16] = 0xE3;
943         m->m_len = m->m_pkthdr.len = sizeof(struct ether_header) + 3;
944         IF_ENQUEUE(&ifp->if_snd, m);
945         xl_start(ifp);
946
947         return;
948 }
949 #endif
950
951 static void
952 xl_setcfg(sc)
953         struct xl_softc         *sc;
954 {
955         u_int32_t               icfg;
956
957         XL_SEL_WIN(3);
958         icfg = CSR_READ_4(sc, XL_W3_INTERNAL_CFG);
959         icfg &= ~XL_ICFG_CONNECTOR_MASK;
960         if (sc->xl_media & XL_MEDIAOPT_MII ||
961                 sc->xl_media & XL_MEDIAOPT_BT4)
962                 icfg |= (XL_XCVR_MII << XL_ICFG_CONNECTOR_BITS);
963         if (sc->xl_media & XL_MEDIAOPT_BTX)
964                 icfg |= (XL_XCVR_AUTO << XL_ICFG_CONNECTOR_BITS);
965
966         CSR_WRITE_4(sc, XL_W3_INTERNAL_CFG, icfg);
967         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_COAX_STOP);
968
969         return;
970 }
971
972 static void
973 xl_setmode(sc, media)
974         struct xl_softc         *sc;
975         int                     media;
976 {
977         u_int32_t               icfg;
978         u_int16_t               mediastat;
979
980         printf("xl%d: selecting ", sc->xl_unit);
981
982         XL_SEL_WIN(4);
983         mediastat = CSR_READ_2(sc, XL_W4_MEDIA_STATUS);
984         XL_SEL_WIN(3);
985         icfg = CSR_READ_4(sc, XL_W3_INTERNAL_CFG);
986
987         if (sc->xl_media & XL_MEDIAOPT_BT) {
988                 if (IFM_SUBTYPE(media) == IFM_10_T) {
989                         printf("10baseT transceiver, ");
990                         sc->xl_xcvr = XL_XCVR_10BT;
991                         icfg &= ~XL_ICFG_CONNECTOR_MASK;
992                         icfg |= (XL_XCVR_10BT << XL_ICFG_CONNECTOR_BITS);
993                         mediastat |= XL_MEDIASTAT_LINKBEAT|
994                                         XL_MEDIASTAT_JABGUARD;
995                         mediastat &= ~XL_MEDIASTAT_SQEENB;
996                 }
997         }
998
999         if (sc->xl_media & XL_MEDIAOPT_BFX) {
1000                 if (IFM_SUBTYPE(media) == IFM_100_FX) {
1001                         printf("100baseFX port, ");
1002                         sc->xl_xcvr = XL_XCVR_100BFX;
1003                         icfg &= ~XL_ICFG_CONNECTOR_MASK;
1004                         icfg |= (XL_XCVR_100BFX << XL_ICFG_CONNECTOR_BITS);
1005                         mediastat |= XL_MEDIASTAT_LINKBEAT;
1006                         mediastat &= ~XL_MEDIASTAT_SQEENB;
1007                 }
1008         }
1009
1010         if (sc->xl_media & (XL_MEDIAOPT_AUI|XL_MEDIAOPT_10FL)) {
1011                 if (IFM_SUBTYPE(media) == IFM_10_5) {
1012                         printf("AUI port, ");
1013                         sc->xl_xcvr = XL_XCVR_AUI;
1014                         icfg &= ~XL_ICFG_CONNECTOR_MASK;
1015                         icfg |= (XL_XCVR_AUI << XL_ICFG_CONNECTOR_BITS);
1016                         mediastat &= ~(XL_MEDIASTAT_LINKBEAT|
1017                                         XL_MEDIASTAT_JABGUARD);
1018                         mediastat |= ~XL_MEDIASTAT_SQEENB;
1019                 }
1020                 if (IFM_SUBTYPE(media) == IFM_10_FL) {
1021                         printf("10baseFL transceiver, ");
1022                         sc->xl_xcvr = XL_XCVR_AUI;
1023                         icfg &= ~XL_ICFG_CONNECTOR_MASK;
1024                         icfg |= (XL_XCVR_AUI << XL_ICFG_CONNECTOR_BITS);
1025                         mediastat &= ~(XL_MEDIASTAT_LINKBEAT|
1026                                         XL_MEDIASTAT_JABGUARD);
1027                         mediastat |= ~XL_MEDIASTAT_SQEENB;
1028                 }
1029         }
1030
1031         if (sc->xl_media & XL_MEDIAOPT_BNC) {
1032                 if (IFM_SUBTYPE(media) == IFM_10_2) {
1033                         printf("BNC port, ");
1034                         sc->xl_xcvr = XL_XCVR_COAX;
1035                         icfg &= ~XL_ICFG_CONNECTOR_MASK;
1036                         icfg |= (XL_XCVR_COAX << XL_ICFG_CONNECTOR_BITS);
1037                         mediastat &= ~(XL_MEDIASTAT_LINKBEAT|
1038                                         XL_MEDIASTAT_JABGUARD|
1039                                         XL_MEDIASTAT_SQEENB);
1040                 }
1041         }
1042
1043         if ((media & IFM_GMASK) == IFM_FDX ||
1044                         IFM_SUBTYPE(media) == IFM_100_FX) {
1045                 printf("full duplex\n");
1046                 XL_SEL_WIN(3);
1047                 CSR_WRITE_1(sc, XL_W3_MAC_CTRL, XL_MACCTRL_DUPLEX);
1048         } else {
1049                 printf("half duplex\n");
1050                 XL_SEL_WIN(3);
1051                 CSR_WRITE_1(sc, XL_W3_MAC_CTRL,
1052                         (CSR_READ_1(sc, XL_W3_MAC_CTRL) & ~XL_MACCTRL_DUPLEX));
1053         }
1054
1055         if (IFM_SUBTYPE(media) == IFM_10_2)
1056                 CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_COAX_START);
1057         else
1058                 CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_COAX_STOP);
1059         CSR_WRITE_4(sc, XL_W3_INTERNAL_CFG, icfg);
1060         XL_SEL_WIN(4);
1061         CSR_WRITE_2(sc, XL_W4_MEDIA_STATUS, mediastat);
1062         DELAY(800);
1063         XL_SEL_WIN(7);
1064
1065         return;
1066 }
1067
1068 static void
1069 xl_reset(sc)
1070         struct xl_softc         *sc;
1071 {
1072         int             i;
1073
1074         XL_SEL_WIN(0);
1075         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RESET | 
1076                     ((sc->xl_flags & XL_FLAG_WEIRDRESET) ?
1077                      XL_RESETOPT_DISADVFD:0));
1078
1079         /*
1080          * If we're using memory mapped register mode, pause briefly
1081          * after issuing the reset command before trying to access any
1082          * other registers. With my 3c575C cardbus card, failing to do
1083          * this results in the system locking up while trying to poll
1084          * the command busy bit in the status register.
1085          */
1086         if (sc->xl_flags & XL_FLAG_USE_MMIO)
1087                 DELAY(100000);
1088
1089         for (i = 0; i < XL_TIMEOUT; i++) {
1090                 DELAY(10);
1091                 if (!(CSR_READ_2(sc, XL_STATUS) & XL_STAT_CMDBUSY))
1092                         break;
1093         }
1094
1095         if (i == XL_TIMEOUT)
1096                 printf("xl%d: reset didn't complete\n", sc->xl_unit);
1097
1098         /* Reset TX and RX. */
1099         /* Note: the RX reset takes an absurd amount of time
1100          * on newer versions of the Tornado chips such as those
1101          * on the 3c905CX and newer 3c908C cards. We wait an
1102          * extra amount of time so that xl_wait() doesn't complain
1103          * and annoy the users.
1104          */
1105         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_RESET);
1106         DELAY(100000);
1107         xl_wait(sc);
1108         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_TX_RESET);
1109         xl_wait(sc);
1110
1111         if (sc->xl_flags & XL_FLAG_INVERT_LED_PWR || 
1112             sc->xl_flags & XL_FLAG_INVERT_MII_PWR) {
1113                 XL_SEL_WIN(2);
1114                 CSR_WRITE_2(sc, XL_W2_RESET_OPTIONS, CSR_READ_2(sc,
1115                     XL_W2_RESET_OPTIONS) 
1116                     | ((sc->xl_flags & XL_FLAG_INVERT_LED_PWR)?XL_RESETOPT_INVERT_LED:0)
1117                     | ((sc->xl_flags & XL_FLAG_INVERT_MII_PWR)?XL_RESETOPT_INVERT_MII:0)
1118                     );
1119         }
1120
1121         /* Wait a little while for the chip to get its brains in order. */
1122         DELAY(100000);
1123         return;
1124 }
1125
1126 /*
1127  * Probe for a 3Com Etherlink XL chip. Check the PCI vendor and device
1128  * IDs against our list and return a device name if we find a match.
1129  */
1130 static int
1131 xl_probe(dev)
1132         device_t                dev;
1133 {
1134         struct xl_type          *t;
1135
1136         t = xl_devs;
1137
1138         while(t->xl_name != NULL) {
1139                 if ((pci_get_vendor(dev) == t->xl_vid) &&
1140                     (pci_get_device(dev) == t->xl_did)) {
1141                         device_set_desc(dev, t->xl_name);
1142                         return(0);
1143                 }
1144                 t++;
1145         }
1146
1147         return(ENXIO);
1148 }
1149
1150 /*
1151  * This routine is a kludge to work around possible hardware faults
1152  * or manufacturing defects that can cause the media options register
1153  * (or reset options register, as it's called for the first generation
1154  * 3c90x adapters) to return an incorrect result. I have encountered
1155  * one Dell Latitude laptop docking station with an integrated 3c905-TX
1156  * which doesn't have any of the 'mediaopt' bits set. This screws up
1157  * the attach routine pretty badly because it doesn't know what media
1158  * to look for. If we find ourselves in this predicament, this routine
1159  * will try to guess the media options values and warn the user of a
1160  * possible manufacturing defect with his adapter/system/whatever.
1161  */
1162 static void
1163 xl_mediacheck(sc)
1164         struct xl_softc         *sc;
1165 {
1166
1167         /*
1168          * If some of the media options bits are set, assume they are
1169          * correct. If not, try to figure it out down below.
1170          * XXX I should check for 10baseFL, but I don't have an adapter
1171          * to test with.
1172          */
1173         if (sc->xl_media & (XL_MEDIAOPT_MASK & ~XL_MEDIAOPT_VCO)) {
1174                 /*
1175                  * Check the XCVR value. If it's not in the normal range
1176                  * of values, we need to fake it up here.
1177                  */
1178                 if (sc->xl_xcvr <= XL_XCVR_AUTO)
1179                         return;
1180                 else {
1181                         printf("xl%d: bogus xcvr value "
1182                         "in EEPROM (%x)\n", sc->xl_unit, sc->xl_xcvr);
1183                         printf("xl%d: choosing new default based "
1184                                 "on card type\n", sc->xl_unit);
1185                 }
1186         } else {
1187                 if (sc->xl_type == XL_TYPE_905B &&
1188                     sc->xl_media & XL_MEDIAOPT_10FL)
1189                         return;
1190                 printf("xl%d: WARNING: no media options bits set in "
1191                         "the media options register!!\n", sc->xl_unit);
1192                 printf("xl%d: this could be a manufacturing defect in "
1193                         "your adapter or system\n", sc->xl_unit);
1194                 printf("xl%d: attempting to guess media type; you "
1195                         "should probably consult your vendor\n", sc->xl_unit);
1196         }
1197
1198         xl_choose_xcvr(sc, 1);
1199
1200         return;
1201 }
1202
1203 static void
1204 xl_choose_xcvr(sc, verbose)
1205         struct xl_softc         *sc;
1206         int                     verbose;
1207 {
1208         u_int16_t               devid;
1209
1210         /*
1211          * Read the device ID from the EEPROM.
1212          * This is what's loaded into the PCI device ID register, so it has
1213          * to be correct otherwise we wouldn't have gotten this far.
1214          */
1215         xl_read_eeprom(sc, (caddr_t)&devid, XL_EE_PRODID, 1, 0);
1216
1217         switch(devid) {
1218         case TC_DEVICEID_BOOMERANG_10BT:        /* 3c900-TPO */
1219         case TC_DEVICEID_KRAKATOA_10BT:         /* 3c900B-TPO */
1220                 sc->xl_media = XL_MEDIAOPT_BT;
1221                 sc->xl_xcvr = XL_XCVR_10BT;
1222                 if (verbose)
1223                         printf("xl%d: guessing 10BaseT "
1224                             "transceiver\n", sc->xl_unit);
1225                 break;
1226         case TC_DEVICEID_BOOMERANG_10BT_COMBO:  /* 3c900-COMBO */
1227         case TC_DEVICEID_KRAKATOA_10BT_COMBO:   /* 3c900B-COMBO */
1228                 sc->xl_media = XL_MEDIAOPT_BT|XL_MEDIAOPT_BNC|XL_MEDIAOPT_AUI;
1229                 sc->xl_xcvr = XL_XCVR_10BT;
1230                 if (verbose)
1231                         printf("xl%d: guessing COMBO "
1232                             "(AUI/BNC/TP)\n", sc->xl_unit);
1233                 break;
1234         case TC_DEVICEID_KRAKATOA_10BT_TPC:     /* 3c900B-TPC */
1235                 sc->xl_media = XL_MEDIAOPT_BT|XL_MEDIAOPT_BNC;
1236                 sc->xl_xcvr = XL_XCVR_10BT;
1237                 if (verbose)
1238                         printf("xl%d: guessing TPC (BNC/TP)\n", sc->xl_unit);
1239                 break;
1240         case TC_DEVICEID_CYCLONE_10FL:          /* 3c900B-FL */
1241                 sc->xl_media = XL_MEDIAOPT_10FL;
1242                 sc->xl_xcvr = XL_XCVR_AUI;
1243                 if (verbose)
1244                         printf("xl%d: guessing 10baseFL\n", sc->xl_unit);
1245                 break;
1246         case TC_DEVICEID_BOOMERANG_10_100BT:    /* 3c905-TX */
1247         case TC_DEVICEID_HURRICANE_555:         /* 3c555 */
1248         case TC_DEVICEID_HURRICANE_556:         /* 3c556 */
1249         case TC_DEVICEID_HURRICANE_556B:        /* 3c556B */
1250         case TC_DEVICEID_HURRICANE_575A:        /* 3c575TX */
1251         case TC_DEVICEID_HURRICANE_575B:        /* 3c575B */
1252         case TC_DEVICEID_HURRICANE_575C:        /* 3c575C */
1253         case TC_DEVICEID_HURRICANE_656:         /* 3c656 */
1254         case TC_DEVICEID_HURRICANE_656B:        /* 3c656B */
1255         case TC_DEVICEID_TORNADO_656C:          /* 3c656C */
1256         case TC_DEVICEID_TORNADO_10_100BT_920B: /* 3c920B-EMB */
1257                 sc->xl_media = XL_MEDIAOPT_MII;
1258                 sc->xl_xcvr = XL_XCVR_MII;
1259                 if (verbose)
1260                         printf("xl%d: guessing MII\n", sc->xl_unit);
1261                 break;
1262         case TC_DEVICEID_BOOMERANG_100BT4:      /* 3c905-T4 */
1263         case TC_DEVICEID_CYCLONE_10_100BT4:     /* 3c905B-T4 */
1264                 sc->xl_media = XL_MEDIAOPT_BT4;
1265                 sc->xl_xcvr = XL_XCVR_MII;
1266                 if (verbose)
1267                         printf("xl%d: guessing 100BaseT4/MII\n", sc->xl_unit);
1268                 break;
1269         case TC_DEVICEID_HURRICANE_10_100BT:    /* 3c905B-TX */
1270         case TC_DEVICEID_HURRICANE_10_100BT_SERV:/*3c980-TX */
1271         case TC_DEVICEID_TORNADO_10_100BT_SERV: /* 3c980C-TX */
1272         case TC_DEVICEID_HURRICANE_SOHO100TX:   /* 3cSOHO100-TX */
1273         case TC_DEVICEID_TORNADO_10_100BT:      /* 3c905C-TX */
1274         case TC_DEVICEID_TORNADO_HOMECONNECT:   /* 3c450-TX */
1275                 sc->xl_media = XL_MEDIAOPT_BTX;
1276                 sc->xl_xcvr = XL_XCVR_AUTO;
1277                 if (verbose)
1278                         printf("xl%d: guessing 10/100 internal\n", sc->xl_unit);
1279                 break;
1280         case TC_DEVICEID_CYCLONE_10_100_COMBO:  /* 3c905B-COMBO */
1281                 sc->xl_media = XL_MEDIAOPT_BTX|XL_MEDIAOPT_BNC|XL_MEDIAOPT_AUI;
1282                 sc->xl_xcvr = XL_XCVR_AUTO;
1283                 if (verbose)
1284                         printf("xl%d: guessing 10/100 "
1285                             "plus BNC/AUI\n", sc->xl_unit);
1286                 break;
1287         default:
1288                 printf("xl%d: unknown device ID: %x -- "
1289                         "defaulting to 10baseT\n", sc->xl_unit, devid);
1290                 sc->xl_media = XL_MEDIAOPT_BT;
1291                 break;
1292         }
1293
1294         return;
1295 }
1296
1297 /*
1298  * Attach the interface. Allocate softc structures, do ifmedia
1299  * setup and ethernet/BPF attach.
1300  */
1301 static int
1302 xl_attach(dev)
1303         device_t                dev;
1304 {
1305         int                     s;
1306         u_char                  eaddr[ETHER_ADDR_LEN];
1307         u_int16_t               xcvr[2];
1308         u_int32_t               command;
1309         struct xl_softc         *sc;
1310         struct ifnet            *ifp;
1311         int                     media = IFM_ETHER|IFM_100_TX|IFM_FDX;
1312         int                     unit, error = 0, rid, res;
1313
1314         s = splimp();
1315
1316         sc = device_get_softc(dev);
1317         unit = device_get_unit(dev);
1318
1319         ifmedia_init(&sc->ifmedia, 0, xl_ifmedia_upd, xl_ifmedia_sts);
1320
1321         sc->xl_flags = 0;
1322         if (pci_get_device(dev) == TC_DEVICEID_HURRICANE_555)
1323                 sc->xl_flags |= XL_FLAG_EEPROM_OFFSET_30 | XL_FLAG_PHYOK;
1324         if (pci_get_device(dev) == TC_DEVICEID_HURRICANE_556 ||
1325             pci_get_device(dev) == TC_DEVICEID_HURRICANE_556B)
1326                 sc->xl_flags |= XL_FLAG_FUNCREG | XL_FLAG_PHYOK |
1327                     XL_FLAG_EEPROM_OFFSET_30 | XL_FLAG_WEIRDRESET |
1328                     XL_FLAG_INVERT_LED_PWR | XL_FLAG_INVERT_MII_PWR;
1329         if (pci_get_device(dev) == TC_DEVICEID_HURRICANE_555 ||
1330             pci_get_device(dev) == TC_DEVICEID_HURRICANE_556)
1331                 sc->xl_flags |= XL_FLAG_8BITROM;
1332         if (pci_get_device(dev) == TC_DEVICEID_HURRICANE_556B)
1333                 sc->xl_flags |= XL_FLAG_NO_XCVR_PWR;
1334
1335         if (pci_get_device(dev) == TC_DEVICEID_HURRICANE_575A ||
1336             pci_get_device(dev) == TC_DEVICEID_HURRICANE_575B ||
1337             pci_get_device(dev) == TC_DEVICEID_HURRICANE_575C ||
1338             pci_get_device(dev) == TC_DEVICEID_HURRICANE_656B ||
1339             pci_get_device(dev) == TC_DEVICEID_TORNADO_656C)
1340                 sc->xl_flags |= XL_FLAG_FUNCREG | XL_FLAG_PHYOK |
1341                     XL_FLAG_EEPROM_OFFSET_30 | XL_FLAG_8BITROM;
1342         if (pci_get_device(dev) == TC_DEVICEID_HURRICANE_656)
1343                 sc->xl_flags |= XL_FLAG_FUNCREG | XL_FLAG_PHYOK;
1344         if (pci_get_device(dev) == TC_DEVICEID_HURRICANE_575B)
1345                 sc->xl_flags |= XL_FLAG_INVERT_LED_PWR;
1346         if (pci_get_device(dev) == TC_DEVICEID_HURRICANE_575C)
1347                 sc->xl_flags |= XL_FLAG_INVERT_MII_PWR;
1348         if (pci_get_device(dev) == TC_DEVICEID_TORNADO_656C)
1349                 sc->xl_flags |= XL_FLAG_INVERT_MII_PWR;
1350         if (pci_get_device(dev) == TC_DEVICEID_HURRICANE_656 ||
1351             pci_get_device(dev) == TC_DEVICEID_HURRICANE_656B)
1352                 sc->xl_flags |= XL_FLAG_INVERT_MII_PWR |
1353                     XL_FLAG_INVERT_LED_PWR;
1354         if (pci_get_device(dev) == TC_DEVICEID_TORNADO_10_100BT_920B)
1355                 sc->xl_flags |= XL_FLAG_PHYOK;
1356 #ifndef BURN_BRIDGES
1357         /*
1358          * If this is a 3c905B, we have to check one extra thing.
1359          * The 905B supports power management and may be placed in
1360          * a low-power mode (D3 mode), typically by certain operating
1361          * systems which shall not be named. The PCI BIOS is supposed
1362          * to reset the NIC and bring it out of low-power mode, but
1363          * some do not. Consequently, we have to see if this chip
1364          * supports power management, and if so, make sure it's not
1365          * in low-power mode. If power management is available, the
1366          * capid byte will be 0x01.
1367          *
1368          * I _think_ that what actually happens is that the chip
1369          * loses its PCI configuration during the transition from
1370          * D3 back to D0; this means that it should be possible for
1371          * us to save the PCI iobase, membase and IRQ, put the chip
1372          * back in the D0 state, then restore the PCI config ourselves.
1373          */
1374
1375         if (pci_get_powerstate(dev) != PCI_POWERSTATE_D0) {
1376                 u_int32_t               iobase, membase, irq;
1377
1378                 /* Save important PCI config data. */
1379                 iobase = pci_read_config(dev, XL_PCI_LOIO, 4);
1380                 membase = pci_read_config(dev, XL_PCI_LOMEM, 4);
1381                 irq = pci_read_config(dev, XL_PCI_INTLINE, 4);
1382
1383                 /* Reset the power state. */
1384                 printf("xl%d: chip is in D%d power mode "
1385                     "-- setting to D0\n", unit,
1386                     pci_get_powerstate(dev));
1387
1388                 pci_set_powerstate(dev, PCI_POWERSTATE_D0);
1389
1390                 /* Restore PCI config data. */
1391                 pci_write_config(dev, XL_PCI_LOIO, iobase, 4);
1392                 pci_write_config(dev, XL_PCI_LOMEM, membase, 4);
1393                 pci_write_config(dev, XL_PCI_INTLINE, irq, 4);
1394         }
1395 #endif
1396         /*
1397          * Map control/status registers.
1398          */
1399         pci_enable_busmaster(dev);
1400         pci_enable_io(dev, SYS_RES_IOPORT);
1401         pci_enable_io(dev, SYS_RES_MEMORY);
1402         command = pci_read_config(dev, PCIR_COMMAND, 4);
1403
1404         if (!(command & PCIM_CMD_PORTEN) && !(command & PCIM_CMD_MEMEN)) {
1405                 printf("xl%d: failed to enable I/O ports and memory mappings!\n", unit);
1406                 error = ENXIO;
1407                 goto fail;
1408         }
1409
1410         rid = XL_PCI_LOMEM;
1411         res = SYS_RES_MEMORY;
1412
1413 #if 0
1414         sc->xl_res = bus_alloc_resource(dev, res, &rid,
1415             0, ~0, 1, RF_ACTIVE);
1416 #endif
1417
1418         if (sc->xl_res != NULL) {
1419                 sc->xl_flags |= XL_FLAG_USE_MMIO;
1420                 if (bootverbose)
1421                         printf("xl%d: using memory mapped I/O\n", unit);
1422         } else {
1423                 rid = XL_PCI_LOIO;
1424                 res = SYS_RES_IOPORT;
1425                 sc->xl_res = bus_alloc_resource(dev, res, &rid,
1426                     0, ~0, 1, RF_ACTIVE);
1427                 if (sc->xl_res == NULL) {
1428                         printf ("xl%d: couldn't map ports/memory\n", unit);
1429                         error = ENXIO;
1430                         goto fail;
1431                 }
1432                 if (bootverbose)
1433                         printf("xl%d: using port I/O\n", unit);
1434         }
1435
1436         sc->xl_btag = rman_get_bustag(sc->xl_res);
1437         sc->xl_bhandle = rman_get_bushandle(sc->xl_res);
1438
1439         if (sc->xl_flags & XL_FLAG_FUNCREG) {
1440                 rid = XL_PCI_FUNCMEM;
1441                 sc->xl_fres = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid,
1442                     0, ~0, 1, RF_ACTIVE);
1443
1444                 if (sc->xl_fres == NULL) {
1445                         printf ("xl%d: couldn't map ports/memory\n", unit);
1446                         error = ENXIO;
1447                         goto fail;
1448                 }
1449
1450                 sc->xl_ftag = rman_get_bustag(sc->xl_fres);
1451                 sc->xl_fhandle = rman_get_bushandle(sc->xl_fres);
1452         }
1453
1454         /* Allocate interrupt */
1455         rid = 0;
1456         sc->xl_irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1,
1457             RF_SHAREABLE | RF_ACTIVE);
1458         if (sc->xl_irq == NULL) {
1459                 printf("xl%d: couldn't map interrupt\n", unit);
1460                 error = ENXIO;
1461                 goto fail;
1462         }
1463
1464         /* Reset the adapter. */
1465         xl_reset(sc);
1466
1467         /*
1468          * Get station address from the EEPROM.
1469          */
1470         if (xl_read_eeprom(sc, (caddr_t)&eaddr, XL_EE_OEM_ADR0, 3, 1)) {
1471                 printf("xl%d: failed to read station address\n", sc->xl_unit);
1472                 error = ENXIO;
1473                 goto fail;
1474         }
1475
1476         /*
1477          * A 3Com chip was detected. Inform the world.
1478          */
1479         printf("xl%d: Ethernet address: %6D\n", unit, eaddr, ":");
1480
1481         sc->xl_unit = unit;
1482         callout_handle_init(&sc->xl_stat_ch);
1483
1484         /*
1485          * Now allocate a tag for the DMA descriptor lists and a chunk
1486          * of DMA-able memory based on the tag.  Also obtain the DMA
1487          * addresses of the RX and TX ring, which we'll need later.
1488          * All of our lists are allocated as a contiguous block
1489          * of memory.
1490          */
1491         error = bus_dma_tag_create(NULL, 8, 0,
1492             BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
1493             XL_RX_LIST_SZ, 1, XL_RX_LIST_SZ, 0, 
1494             &sc->xl_ldata.xl_rx_tag);
1495         if (error) {
1496                 printf("xl%d: failed to allocate rx dma tag\n", unit);
1497                 goto fail;
1498         }
1499
1500         error = bus_dmamem_alloc(sc->xl_ldata.xl_rx_tag,
1501             (void **)&sc->xl_ldata.xl_rx_list, BUS_DMA_NOWAIT,
1502             &sc->xl_ldata.xl_rx_dmamap);
1503         if (error) {
1504                 printf("xl%d: no memory for rx list buffers!\n", unit);
1505                 bus_dma_tag_destroy(sc->xl_ldata.xl_rx_tag);
1506                 sc->xl_ldata.xl_rx_tag = NULL;
1507                 goto fail;
1508         }
1509
1510         error = bus_dmamap_load(sc->xl_ldata.xl_rx_tag,
1511             sc->xl_ldata.xl_rx_dmamap, sc->xl_ldata.xl_rx_list,
1512             XL_RX_LIST_SZ, xl_dma_map_addr,
1513             &sc->xl_ldata.xl_rx_dmaaddr, BUS_DMA_NOWAIT);
1514         if (error) {
1515                 printf("xl%d: cannot get dma address of the rx ring!\n", unit);
1516                 bus_dmamem_free(sc->xl_ldata.xl_rx_tag, sc->xl_ldata.xl_rx_list,
1517                     sc->xl_ldata.xl_rx_dmamap);
1518                 bus_dma_tag_destroy(sc->xl_ldata.xl_rx_tag);
1519                 sc->xl_ldata.xl_rx_tag = NULL;
1520                 goto fail;
1521         }
1522
1523         error = bus_dma_tag_create(NULL, 8, 0,
1524             BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
1525             XL_TX_LIST_SZ, 1, XL_TX_LIST_SZ, 0, 
1526             &sc->xl_ldata.xl_tx_tag);
1527         if (error) {
1528                 printf("xl%d: failed to allocate tx dma tag\n", unit);
1529                 goto fail;
1530         }
1531
1532         error = bus_dmamem_alloc(sc->xl_ldata.xl_tx_tag,
1533             (void **)&sc->xl_ldata.xl_tx_list, BUS_DMA_NOWAIT,
1534             &sc->xl_ldata.xl_tx_dmamap);
1535         if (error) {
1536                 printf("xl%d: no memory for list buffers!\n", unit);
1537                 bus_dma_tag_destroy(sc->xl_ldata.xl_tx_tag);
1538                 sc->xl_ldata.xl_tx_tag = NULL;
1539                 goto fail;
1540         }
1541
1542         error = bus_dmamap_load(sc->xl_ldata.xl_tx_tag,
1543             sc->xl_ldata.xl_tx_dmamap, sc->xl_ldata.xl_tx_list,
1544             XL_TX_LIST_SZ, xl_dma_map_addr,
1545             &sc->xl_ldata.xl_tx_dmaaddr, BUS_DMA_NOWAIT);
1546         if (error) {
1547                 printf("xl%d: cannot get dma address of the tx ring!\n", unit);
1548                 bus_dmamem_free(sc->xl_ldata.xl_tx_tag, sc->xl_ldata.xl_tx_list,
1549                     sc->xl_ldata.xl_tx_dmamap);
1550                 bus_dma_tag_destroy(sc->xl_ldata.xl_tx_tag);
1551                 sc->xl_ldata.xl_tx_tag = NULL;
1552                 goto fail;
1553         }
1554
1555         /*
1556          * Allocate a DMA tag for the mapping of mbufs.
1557          */
1558         error = bus_dma_tag_create(NULL, 1, 0,
1559             BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
1560             MCLBYTES * XL_MAXFRAGS, XL_MAXFRAGS, MCLBYTES, 0,
1561             &sc->xl_mtag);
1562         if (error) {
1563                 printf("xl%d: failed to allocate mbuf dma tag\n", unit);
1564                 goto fail;
1565         }
1566
1567         bzero(sc->xl_ldata.xl_tx_list, XL_TX_LIST_SZ);
1568         bzero(sc->xl_ldata.xl_rx_list, XL_RX_LIST_SZ);
1569
1570         /* We need a spare DMA map for the RX ring. */
1571         error = bus_dmamap_create(sc->xl_mtag, 0, &sc->xl_tmpmap);
1572         if (error)
1573                 goto fail;
1574
1575         /*
1576          * Figure out the card type. 3c905B adapters have the
1577          * 'supportsNoTxLength' bit set in the capabilities
1578          * word in the EEPROM.
1579          * Note: my 3c575C cardbus card lies. It returns a value
1580          * of 0x1578 for its capabilities word, which is somewhat
1581          * nonsensical. Another way to distinguish a 3c90x chip
1582          * from a 3c90xB/C chip is to check for the 'supportsLargePackets'
1583          * bit. This will only be set for 3c90x boomerage chips.
1584          */
1585         xl_read_eeprom(sc, (caddr_t)&sc->xl_caps, XL_EE_CAPS, 1, 0);
1586         if (sc->xl_caps & XL_CAPS_NO_TXLENGTH ||
1587             !(sc->xl_caps & XL_CAPS_LARGE_PKTS))
1588                 sc->xl_type = XL_TYPE_905B;
1589         else
1590                 sc->xl_type = XL_TYPE_90X;
1591
1592         ifp = &sc->arpcom.ac_if;
1593         ifp->if_softc = sc;
1594         if_initname(ifp, "xl", unit);
1595         ifp->if_mtu = ETHERMTU;
1596         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
1597         ifp->if_ioctl = xl_ioctl;
1598         ifp->if_output = ether_output;
1599         ifp->if_capabilities = 0;
1600         if (sc->xl_type == XL_TYPE_905B) {
1601                 ifp->if_start = xl_start_90xB;
1602                 ifp->if_capabilities |= IFCAP_HWCSUM;
1603         } else {
1604                 ifp->if_start = xl_start;
1605         }
1606         ifp->if_watchdog = xl_watchdog;
1607         ifp->if_init = xl_init;
1608         ifp->if_baudrate = 10000000;
1609         ifp->if_snd.ifq_maxlen = XL_TX_LIST_CNT - 1;
1610         /*
1611          * NOTE: features disabled by default.  This seems to corrupt
1612          * tx packet data one out of a million packets or so and then
1613          * generates a good checksum so the receiver doesn't
1614          * know the packet is bad 
1615          */
1616         ifp->if_capenable = 0; /*ifp->if_capabilities;*/
1617         if (ifp->if_capenable & IFCAP_TXCSUM)
1618                 ifp->if_hwassist = XL905B_CSUM_FEATURES;
1619
1620         /*
1621          * Now we have to see what sort of media we have.
1622          * This includes probing for an MII interace and a
1623          * possible PHY.
1624          */
1625         XL_SEL_WIN(3);
1626         sc->xl_media = CSR_READ_2(sc, XL_W3_MEDIA_OPT);
1627         if (bootverbose)
1628                 printf("xl%d: media options word: %x\n", sc->xl_unit,
1629                                                          sc->xl_media);
1630
1631         xl_read_eeprom(sc, (char *)&xcvr, XL_EE_ICFG_0, 2, 0);
1632         sc->xl_xcvr = xcvr[0] | xcvr[1] << 16;
1633         sc->xl_xcvr &= XL_ICFG_CONNECTOR_MASK;
1634         sc->xl_xcvr >>= XL_ICFG_CONNECTOR_BITS;
1635
1636         xl_mediacheck(sc);
1637
1638         if (sc->xl_media & XL_MEDIAOPT_MII || sc->xl_media & XL_MEDIAOPT_BTX
1639                         || sc->xl_media & XL_MEDIAOPT_BT4) {
1640                 if (bootverbose)
1641                         printf("xl%d: found MII/AUTO\n", sc->xl_unit);
1642                 xl_setcfg(sc);
1643                 if (mii_phy_probe(dev, &sc->xl_miibus,
1644                     xl_ifmedia_upd, xl_ifmedia_sts)) {
1645                         printf("xl%d: no PHY found!\n", sc->xl_unit);
1646                         error = ENXIO;
1647                         goto fail;
1648                 }
1649
1650                 goto done;
1651         }
1652
1653         /*
1654          * Sanity check. If the user has selected "auto" and this isn't
1655          * a 10/100 card of some kind, we need to force the transceiver
1656          * type to something sane.
1657          */
1658         if (sc->xl_xcvr == XL_XCVR_AUTO)
1659                 xl_choose_xcvr(sc, bootverbose);
1660
1661         /*
1662          * Do ifmedia setup.
1663          */
1664         if (sc->xl_media & XL_MEDIAOPT_BT) {
1665                 if (bootverbose)
1666                         printf("xl%d: found 10baseT\n", sc->xl_unit);
1667                 ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_10_T, 0, NULL);
1668                 ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_10_T|IFM_HDX, 0, NULL);
1669                 if (sc->xl_caps & XL_CAPS_FULL_DUPLEX)
1670                         ifmedia_add(&sc->ifmedia,
1671                             IFM_ETHER|IFM_10_T|IFM_FDX, 0, NULL);
1672         }
1673
1674         if (sc->xl_media & (XL_MEDIAOPT_AUI|XL_MEDIAOPT_10FL)) {
1675                 /*
1676                  * Check for a 10baseFL board in disguise.
1677                  */
1678                 if (sc->xl_type == XL_TYPE_905B &&
1679                     sc->xl_media == XL_MEDIAOPT_10FL) {
1680                         if (bootverbose)
1681                                 printf("xl%d: found 10baseFL\n", sc->xl_unit);
1682                         ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_10_FL, 0, NULL);
1683                         ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_10_FL|IFM_HDX,
1684                             0, NULL);
1685                         if (sc->xl_caps & XL_CAPS_FULL_DUPLEX)
1686                                 ifmedia_add(&sc->ifmedia,
1687                                     IFM_ETHER|IFM_10_FL|IFM_FDX, 0, NULL);
1688                 } else {
1689                         if (bootverbose)
1690                                 printf("xl%d: found AUI\n", sc->xl_unit);
1691                         ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_10_5, 0, NULL);
1692                 }
1693         }
1694
1695         if (sc->xl_media & XL_MEDIAOPT_BNC) {
1696                 if (bootverbose)
1697                         printf("xl%d: found BNC\n", sc->xl_unit);
1698                 ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_10_2, 0, NULL);
1699         }
1700
1701         if (sc->xl_media & XL_MEDIAOPT_BFX) {
1702                 if (bootverbose)
1703                         printf("xl%d: found 100baseFX\n", sc->xl_unit);
1704                 ifp->if_baudrate = 100000000;
1705                 ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_100_FX, 0, NULL);
1706         }
1707
1708         /* Choose a default media. */
1709         switch(sc->xl_xcvr) {
1710         case XL_XCVR_10BT:
1711                 media = IFM_ETHER|IFM_10_T;
1712                 xl_setmode(sc, media);
1713                 break;
1714         case XL_XCVR_AUI:
1715                 if (sc->xl_type == XL_TYPE_905B &&
1716                     sc->xl_media == XL_MEDIAOPT_10FL) {
1717                         media = IFM_ETHER|IFM_10_FL;
1718                         xl_setmode(sc, media);
1719                 } else {
1720                         media = IFM_ETHER|IFM_10_5;
1721                         xl_setmode(sc, media);
1722                 }
1723                 break;
1724         case XL_XCVR_COAX:
1725                 media = IFM_ETHER|IFM_10_2;
1726                 xl_setmode(sc, media);
1727                 break;
1728         case XL_XCVR_AUTO:
1729         case XL_XCVR_100BTX:
1730         case XL_XCVR_MII:
1731                 /* Chosen by miibus */
1732                 break;
1733         case XL_XCVR_100BFX:
1734                 media = IFM_ETHER|IFM_100_FX;
1735                 break;
1736         default:
1737                 printf("xl%d: unknown XCVR type: %d\n", sc->xl_unit,
1738                                                         sc->xl_xcvr);
1739                 /*
1740                  * This will probably be wrong, but it prevents
1741                  * the ifmedia code from panicking.
1742                  */
1743                 media = IFM_ETHER|IFM_10_T;
1744                 break;
1745         }
1746
1747         if (sc->xl_miibus == NULL)
1748                 ifmedia_set(&sc->ifmedia, media);
1749
1750 done:
1751
1752         if (sc->xl_flags & XL_FLAG_NO_XCVR_PWR) {
1753                 XL_SEL_WIN(0);
1754                 CSR_WRITE_2(sc, XL_W0_MFG_ID, XL_NO_XCVR_PWR_MAGICBITS);
1755         }
1756
1757         /*
1758          * Call MI attach routine.
1759          */
1760         ether_ifattach(ifp, eaddr);
1761
1762         /*
1763          * Tell the upper layer(s) we support long frames.
1764          */
1765         ifp->if_data.ifi_hdrlen = sizeof(struct ether_vlan_header);
1766
1767         /* Hook interrupt last to avoid having to lock softc */
1768         error = bus_setup_intr(dev, sc->xl_irq, INTR_TYPE_NET,
1769             xl_intr, sc, &sc->xl_intrhand);
1770         if (error) {
1771                 printf("xl%d: couldn't set up irq\n", unit);
1772                 ether_ifdetach(ifp);
1773                 goto fail;
1774         }
1775
1776 fail:
1777         if (error)
1778                 xl_detach(dev);
1779
1780         splx(s);
1781
1782         return(error);
1783 }
1784
1785 /*
1786  * Shutdown hardware and free up resources. This can be called any
1787  * time after the mutex has been initialized. It is called in both
1788  * the error case in attach and the normal detach case so it needs
1789  * to be careful about only freeing resources that have actually been
1790  * allocated.
1791  */
1792 static int
1793 xl_detach(dev)
1794         device_t                dev;
1795 {
1796         struct xl_softc         *sc;
1797         struct ifnet            *ifp;
1798         int                     rid, res;
1799         int                     s;
1800
1801         s = splimp();
1802
1803         sc = device_get_softc(dev);
1804         ifp = &sc->arpcom.ac_if;
1805
1806         if (sc->xl_flags & XL_FLAG_USE_MMIO) {
1807                 rid = XL_PCI_LOMEM;  
1808                 res = SYS_RES_MEMORY;
1809         } else {
1810                 rid = XL_PCI_LOIO;   
1811                 res = SYS_RES_IOPORT;
1812         }
1813
1814         xl_reset(sc);
1815         xl_stop(sc);
1816         ether_ifdetach(ifp);
1817         
1818         if (sc->xl_miibus)
1819                 device_delete_child(dev, sc->xl_miibus);
1820         bus_generic_detach(dev);
1821         ifmedia_removeall(&sc->ifmedia);
1822
1823         if (sc->xl_intrhand)
1824                 bus_teardown_intr(dev, sc->xl_irq, sc->xl_intrhand);
1825         if (sc->xl_irq)
1826                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->xl_irq);
1827         if (sc->xl_fres != NULL)
1828                 bus_release_resource(dev, SYS_RES_MEMORY,
1829                     XL_PCI_FUNCMEM, sc->xl_fres);
1830         if (sc->xl_res)
1831                 bus_release_resource(dev, res, rid, sc->xl_res);
1832
1833         if (sc->xl_mtag) {
1834                 bus_dmamap_destroy(sc->xl_mtag, sc->xl_tmpmap);
1835                 bus_dma_tag_destroy(sc->xl_mtag);
1836         }
1837         if (sc->xl_ldata.xl_rx_tag) {
1838                 bus_dmamap_unload(sc->xl_ldata.xl_rx_tag,
1839                     sc->xl_ldata.xl_rx_dmamap);
1840                 bus_dmamem_free(sc->xl_ldata.xl_rx_tag, sc->xl_ldata.xl_rx_list,
1841                     sc->xl_ldata.xl_rx_dmamap);
1842                 bus_dma_tag_destroy(sc->xl_ldata.xl_rx_tag);
1843         }
1844         if (sc->xl_ldata.xl_tx_tag) {
1845                 bus_dmamap_unload(sc->xl_ldata.xl_tx_tag,
1846                     sc->xl_ldata.xl_tx_dmamap);
1847                 bus_dmamem_free(sc->xl_ldata.xl_tx_tag, sc->xl_ldata.xl_tx_list,
1848                     sc->xl_ldata.xl_tx_dmamap);
1849                 bus_dma_tag_destroy(sc->xl_ldata.xl_tx_tag);
1850         }
1851
1852         splx(s);
1853
1854         return(0);
1855 }
1856
1857 /*
1858  * Initialize the transmit descriptors.
1859  */
1860 static int
1861 xl_list_tx_init(sc)
1862         struct xl_softc         *sc;
1863 {
1864         struct xl_chain_data    *cd;
1865         struct xl_list_data     *ld;
1866         int                     error, i;
1867
1868         cd = &sc->xl_cdata;
1869         ld = &sc->xl_ldata;
1870         for (i = 0; i < XL_TX_LIST_CNT; i++) {
1871                 cd->xl_tx_chain[i].xl_ptr = &ld->xl_tx_list[i];
1872                 error = bus_dmamap_create(sc->xl_mtag, 0,
1873                     &cd->xl_tx_chain[i].xl_map);
1874                 if (error)
1875                         return(error);
1876                 cd->xl_tx_chain[i].xl_phys = ld->xl_tx_dmaaddr +
1877                     i * sizeof(struct xl_list);
1878                 if (i == (XL_TX_LIST_CNT - 1))
1879                         cd->xl_tx_chain[i].xl_next = NULL;
1880                 else
1881                         cd->xl_tx_chain[i].xl_next = &cd->xl_tx_chain[i + 1];
1882         }
1883
1884         cd->xl_tx_free = &cd->xl_tx_chain[0];
1885         cd->xl_tx_tail = cd->xl_tx_head = NULL;
1886
1887         bus_dmamap_sync(ld->xl_tx_tag, ld->xl_tx_dmamap, BUS_DMASYNC_PREWRITE);
1888         return(0);
1889 }
1890
1891 /*
1892  * Initialize the transmit descriptors.
1893  */
1894 static int
1895 xl_list_tx_init_90xB(sc)
1896         struct xl_softc         *sc;
1897 {
1898         struct xl_chain_data    *cd;
1899         struct xl_list_data     *ld;
1900         int                     error, i;
1901
1902         cd = &sc->xl_cdata;
1903         ld = &sc->xl_ldata;
1904         for (i = 0; i < XL_TX_LIST_CNT; i++) {
1905                 cd->xl_tx_chain[i].xl_ptr = &ld->xl_tx_list[i];
1906                 error = bus_dmamap_create(sc->xl_mtag, 0,
1907                     &cd->xl_tx_chain[i].xl_map);
1908                 if (error)
1909                         return(error);
1910                 cd->xl_tx_chain[i].xl_phys = ld->xl_tx_dmaaddr +
1911                     i * sizeof(struct xl_list);
1912                 if (i == (XL_TX_LIST_CNT - 1))
1913                         cd->xl_tx_chain[i].xl_next = &cd->xl_tx_chain[0];
1914                 else
1915                         cd->xl_tx_chain[i].xl_next = &cd->xl_tx_chain[i + 1];
1916                 if (i == 0)
1917                         cd->xl_tx_chain[i].xl_prev =
1918                             &cd->xl_tx_chain[XL_TX_LIST_CNT - 1];
1919                 else
1920                         cd->xl_tx_chain[i].xl_prev =
1921                             &cd->xl_tx_chain[i - 1];
1922         }
1923
1924         bzero(ld->xl_tx_list, XL_TX_LIST_SZ);
1925         ld->xl_tx_list[0].xl_status = htole32(XL_TXSTAT_EMPTY);
1926
1927         cd->xl_tx_prod = 1;
1928         cd->xl_tx_cons = 1;
1929         cd->xl_tx_cnt = 0;
1930
1931         bus_dmamap_sync(ld->xl_tx_tag, ld->xl_tx_dmamap, BUS_DMASYNC_PREWRITE);
1932         return(0);
1933 }
1934
1935 /*
1936  * Initialize the RX descriptors and allocate mbufs for them. Note that
1937  * we arrange the descriptors in a closed ring, so that the last descriptor
1938  * points back to the first.
1939  */
1940 static int
1941 xl_list_rx_init(sc)
1942         struct xl_softc         *sc;
1943 {
1944         struct xl_chain_data    *cd;
1945         struct xl_list_data     *ld;
1946         int                     error, i, next;
1947         u_int32_t               nextptr;
1948
1949         cd = &sc->xl_cdata;
1950         ld = &sc->xl_ldata;
1951
1952         for (i = 0; i < XL_RX_LIST_CNT; i++) {
1953                 cd->xl_rx_chain[i].xl_ptr = &ld->xl_rx_list[i];
1954                 error = bus_dmamap_create(sc->xl_mtag, 0,
1955                     &cd->xl_rx_chain[i].xl_map);
1956                 if (error)
1957                         return(error);
1958                 error = xl_newbuf(sc, &cd->xl_rx_chain[i]);
1959                 if (error)
1960                         return(error);
1961                 if (i == (XL_RX_LIST_CNT - 1))
1962                         next = 0;
1963                 else
1964                         next = i + 1;
1965                 nextptr = ld->xl_rx_dmaaddr +
1966                     next * sizeof(struct xl_list_onefrag);
1967                 cd->xl_rx_chain[i].xl_next = &cd->xl_rx_chain[next];
1968                 ld->xl_rx_list[i].xl_next = htole32(nextptr);
1969         }
1970
1971         bus_dmamap_sync(ld->xl_rx_tag, ld->xl_rx_dmamap, BUS_DMASYNC_PREWRITE);
1972         cd->xl_rx_head = &cd->xl_rx_chain[0];
1973
1974         return(0);
1975 }
1976
1977 /*
1978  * Initialize an RX descriptor and attach an MBUF cluster.
1979  * If we fail to do so, we need to leave the old mbuf and
1980  * the old DMA map untouched so that it can be reused.
1981  */
1982 static int
1983 xl_newbuf(sc, c)
1984         struct xl_softc         *sc;
1985         struct xl_chain_onefrag *c;
1986 {
1987         struct mbuf             *m_new = NULL;
1988         bus_dmamap_t            map;
1989         int                     error;
1990         u_int32_t               baddr;
1991
1992         m_new = m_getcl(M_DONTWAIT, MT_DATA, M_PKTHDR);
1993         if (m_new == NULL)
1994                 return(ENOBUFS);
1995
1996         m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
1997
1998         /* Force longword alignment for packet payload. */
1999         m_adj(m_new, ETHER_ALIGN);
2000
2001         error = bus_dmamap_load_mbuf(sc->xl_mtag, sc->xl_tmpmap, m_new,
2002             xl_dma_map_rxbuf, &baddr, BUS_DMA_NOWAIT);
2003         if (error) {
2004                 m_freem(m_new);
2005                 printf("xl%d: can't map mbuf (error %d)\n", sc->xl_unit, error);
2006                 return(error);
2007         }
2008
2009         bus_dmamap_unload(sc->xl_mtag, c->xl_map);
2010         map = c->xl_map;
2011         c->xl_map = sc->xl_tmpmap;
2012         sc->xl_tmpmap = map;
2013         c->xl_mbuf = m_new;
2014         c->xl_ptr->xl_frag.xl_len = htole32(m_new->m_len | XL_LAST_FRAG);
2015         c->xl_ptr->xl_status = 0;
2016         c->xl_ptr->xl_frag.xl_addr = htole32(baddr);
2017         bus_dmamap_sync(sc->xl_mtag, c->xl_map, BUS_DMASYNC_PREREAD);
2018         return(0);
2019 }
2020
2021 static int
2022 xl_rx_resync(sc)
2023         struct xl_softc         *sc;
2024 {
2025         struct xl_chain_onefrag *pos;
2026         int                     i;
2027
2028         pos = sc->xl_cdata.xl_rx_head;
2029
2030         for (i = 0; i < XL_RX_LIST_CNT; i++) {
2031                 if (pos->xl_ptr->xl_status)
2032                         break;
2033                 pos = pos->xl_next;
2034         }
2035
2036         if (i == XL_RX_LIST_CNT)
2037                 return(0);
2038
2039         sc->xl_cdata.xl_rx_head = pos;
2040
2041         return(EAGAIN);
2042 }
2043
2044 /*
2045  * A frame has been uploaded: pass the resulting mbuf chain up to
2046  * the higher level protocols.
2047  */
2048 static void
2049 xl_rxeof(sc)
2050         struct xl_softc         *sc;
2051 {
2052         struct ether_header     *eh;
2053         struct mbuf             *m;
2054         struct ifnet            *ifp;
2055         struct xl_chain_onefrag *cur_rx;
2056         int                     total_len = 0;
2057         u_int32_t               rxstat;
2058
2059         ifp = &sc->arpcom.ac_if;
2060
2061 again:
2062
2063         bus_dmamap_sync(sc->xl_ldata.xl_rx_tag, sc->xl_ldata.xl_rx_dmamap,
2064             BUS_DMASYNC_POSTREAD);
2065         while((rxstat = le32toh(sc->xl_cdata.xl_rx_head->xl_ptr->xl_status))) {
2066                 cur_rx = sc->xl_cdata.xl_rx_head;
2067                 sc->xl_cdata.xl_rx_head = cur_rx->xl_next;
2068                 total_len = rxstat & XL_RXSTAT_LENMASK;
2069
2070                 /*
2071                  * Since we have told the chip to allow large frames,
2072                  * we need to trap giant frame errors in software. We allow
2073                  * a little more than the normal frame size to account for
2074                  * frames with VLAN tags.
2075                  */
2076                 if (total_len > XL_MAX_FRAMELEN)
2077                         rxstat |= (XL_RXSTAT_UP_ERROR|XL_RXSTAT_OVERSIZE);
2078
2079                 /*
2080                  * If an error occurs, update stats, clear the
2081                  * status word and leave the mbuf cluster in place:
2082                  * it should simply get re-used next time this descriptor
2083                  * comes up in the ring.
2084                  */
2085                 if (rxstat & XL_RXSTAT_UP_ERROR) {
2086                         ifp->if_ierrors++;
2087                         cur_rx->xl_ptr->xl_status = 0;
2088                         bus_dmamap_sync(sc->xl_ldata.xl_rx_tag,
2089                             sc->xl_ldata.xl_rx_dmamap, BUS_DMASYNC_PREWRITE);
2090                         continue;
2091                 }
2092
2093                 /*
2094                  * If the error bit was not set, the upload complete
2095                  * bit should be set which means we have a valid packet.
2096                  * If not, something truly strange has happened.
2097                  */
2098                 if (!(rxstat & XL_RXSTAT_UP_CMPLT)) {
2099                         printf("xl%d: bad receive status -- "
2100                             "packet dropped\n", sc->xl_unit);
2101                         ifp->if_ierrors++;
2102                         cur_rx->xl_ptr->xl_status = 0;
2103                         bus_dmamap_sync(sc->xl_ldata.xl_rx_tag,
2104                             sc->xl_ldata.xl_rx_dmamap, BUS_DMASYNC_PREWRITE);
2105                         continue;
2106                 }
2107
2108                 /* No errors; receive the packet. */    
2109                 bus_dmamap_sync(sc->xl_mtag, cur_rx->xl_map,
2110                     BUS_DMASYNC_POSTREAD);
2111                 m = cur_rx->xl_mbuf;
2112
2113                 /*
2114                  * Try to conjure up a new mbuf cluster. If that
2115                  * fails, it means we have an out of memory condition and
2116                  * should leave the buffer in place and continue. This will
2117                  * result in a lost packet, but there's little else we
2118                  * can do in this situation.
2119                  */
2120                 if (xl_newbuf(sc, cur_rx)) {
2121                         ifp->if_ierrors++;
2122                         cur_rx->xl_ptr->xl_status = 0;
2123                         bus_dmamap_sync(sc->xl_ldata.xl_rx_tag,
2124                             sc->xl_ldata.xl_rx_dmamap, BUS_DMASYNC_PREWRITE);
2125                         continue;
2126                 }
2127                 bus_dmamap_sync(sc->xl_ldata.xl_rx_tag,
2128                     sc->xl_ldata.xl_rx_dmamap, BUS_DMASYNC_PREWRITE);
2129
2130                 ifp->if_ipackets++;
2131                 eh = mtod(m, struct ether_header *);
2132                 m->m_pkthdr.rcvif = ifp;
2133                 m->m_pkthdr.len = m->m_len = total_len;
2134
2135                 /* Remove header from mbuf and pass it on. */
2136                 m_adj(m, sizeof(struct ether_header));
2137
2138                 if (ifp->if_capenable & IFCAP_RXCSUM) {
2139                         /* Do IP checksum checking. */
2140                         if (rxstat & XL_RXSTAT_IPCKOK)
2141                                 m->m_pkthdr.csum_flags |= CSUM_IP_CHECKED;
2142                         if (!(rxstat & XL_RXSTAT_IPCKERR))
2143                                 m->m_pkthdr.csum_flags |= CSUM_IP_VALID;
2144                         if ((rxstat & XL_RXSTAT_TCPCOK &&
2145                              !(rxstat & XL_RXSTAT_TCPCKERR)) ||
2146                             (rxstat & XL_RXSTAT_UDPCKOK &&
2147                              !(rxstat & XL_RXSTAT_UDPCKERR))) {
2148                                 m->m_pkthdr.csum_flags |=
2149                                         CSUM_DATA_VALID|CSUM_PSEUDO_HDR;
2150                                 m->m_pkthdr.csum_data = 0xffff;
2151                         }
2152                 }
2153
2154                 ether_input(ifp, eh, m);
2155         }
2156
2157         /*
2158          * Handle the 'end of channel' condition. When the upload
2159          * engine hits the end of the RX ring, it will stall. This
2160          * is our cue to flush the RX ring, reload the uplist pointer
2161          * register and unstall the engine.
2162          * XXX This is actually a little goofy. With the ThunderLAN
2163          * chip, you get an interrupt when the receiver hits the end
2164          * of the receive ring, which tells you exactly when you
2165          * you need to reload the ring pointer. Here we have to
2166          * fake it. I'm mad at myself for not being clever enough
2167          * to avoid the use of a goto here.
2168          */
2169         if (CSR_READ_4(sc, XL_UPLIST_PTR) == 0 ||
2170                 CSR_READ_4(sc, XL_UPLIST_STATUS) & XL_PKTSTAT_UP_STALLED) {
2171                 CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_UP_STALL);
2172                 xl_wait(sc);
2173                 CSR_WRITE_4(sc, XL_UPLIST_PTR, sc->xl_ldata.xl_rx_dmaaddr);
2174                 sc->xl_cdata.xl_rx_head = &sc->xl_cdata.xl_rx_chain[0];
2175                 CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_UP_UNSTALL);
2176                 goto again;
2177         }
2178
2179         return;
2180 }
2181
2182 /*
2183  * A frame was downloaded to the chip. It's safe for us to clean up
2184  * the list buffers.
2185  */
2186 static void
2187 xl_txeof(sc)
2188         struct xl_softc         *sc;
2189 {
2190         struct xl_chain         *cur_tx;
2191         struct ifnet            *ifp;
2192
2193         ifp = &sc->arpcom.ac_if;
2194
2195         /* Clear the timeout timer. */
2196         ifp->if_timer = 0;
2197
2198         /*
2199          * Go through our tx list and free mbufs for those
2200          * frames that have been uploaded. Note: the 3c905B
2201          * sets a special bit in the status word to let us
2202          * know that a frame has been downloaded, but the
2203          * original 3c900/3c905 adapters don't do that.
2204          * Consequently, we have to use a different test if
2205          * xl_type != XL_TYPE_905B.
2206          */
2207         while(sc->xl_cdata.xl_tx_head != NULL) {
2208                 cur_tx = sc->xl_cdata.xl_tx_head;
2209
2210                 if (CSR_READ_4(sc, XL_DOWNLIST_PTR))
2211                         break;
2212
2213                 sc->xl_cdata.xl_tx_head = cur_tx->xl_next;
2214                 bus_dmamap_sync(sc->xl_mtag, cur_tx->xl_map,
2215                     BUS_DMASYNC_POSTWRITE);
2216                 bus_dmamap_unload(sc->xl_mtag, cur_tx->xl_map);
2217                 m_freem(cur_tx->xl_mbuf);
2218                 cur_tx->xl_mbuf = NULL;
2219                 ifp->if_opackets++;
2220
2221                 cur_tx->xl_next = sc->xl_cdata.xl_tx_free;
2222                 sc->xl_cdata.xl_tx_free = cur_tx;
2223         }
2224
2225         if (sc->xl_cdata.xl_tx_head == NULL) {
2226                 ifp->if_flags &= ~IFF_OACTIVE;
2227                 sc->xl_cdata.xl_tx_tail = NULL;
2228         } else {
2229                 if (CSR_READ_4(sc, XL_DMACTL) & XL_DMACTL_DOWN_STALLED ||
2230                         !CSR_READ_4(sc, XL_DOWNLIST_PTR)) {
2231                         CSR_WRITE_4(sc, XL_DOWNLIST_PTR,
2232                                 sc->xl_cdata.xl_tx_head->xl_phys);
2233                         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_DOWN_UNSTALL);
2234                 }
2235         }
2236
2237         return;
2238 }
2239
2240 static void
2241 xl_txeof_90xB(sc)
2242         struct xl_softc         *sc;
2243 {
2244         struct xl_chain         *cur_tx = NULL;
2245         struct ifnet            *ifp;
2246         int                     idx;
2247
2248         ifp = &sc->arpcom.ac_if;
2249
2250         bus_dmamap_sync(sc->xl_ldata.xl_tx_tag, sc->xl_ldata.xl_tx_dmamap,
2251             BUS_DMASYNC_POSTREAD);
2252         idx = sc->xl_cdata.xl_tx_cons;
2253         while(idx != sc->xl_cdata.xl_tx_prod) {
2254
2255                 cur_tx = &sc->xl_cdata.xl_tx_chain[idx];
2256
2257                 if (!(le32toh(cur_tx->xl_ptr->xl_status) &
2258                       XL_TXSTAT_DL_COMPLETE))
2259                         break;
2260
2261                 if (cur_tx->xl_mbuf != NULL) {
2262                         bus_dmamap_sync(sc->xl_mtag, cur_tx->xl_map,
2263                             BUS_DMASYNC_POSTWRITE);
2264                         bus_dmamap_unload(sc->xl_mtag, cur_tx->xl_map);
2265                         m_freem(cur_tx->xl_mbuf);
2266                         cur_tx->xl_mbuf = NULL;
2267                 }
2268
2269                 ifp->if_opackets++;
2270
2271                 sc->xl_cdata.xl_tx_cnt--;
2272                 XL_INC(idx, XL_TX_LIST_CNT);
2273                 ifp->if_timer = 0;
2274         }
2275
2276         sc->xl_cdata.xl_tx_cons = idx;
2277
2278         if (cur_tx != NULL)
2279                 ifp->if_flags &= ~IFF_OACTIVE;
2280
2281         return;
2282 }
2283
2284 /*
2285  * TX 'end of channel' interrupt handler. Actually, we should
2286  * only get a 'TX complete' interrupt if there's a transmit error,
2287  * so this is really TX error handler.
2288  */
2289 static void
2290 xl_txeoc(sc)
2291         struct xl_softc         *sc;
2292 {
2293         u_int8_t                txstat;
2294
2295         while((txstat = CSR_READ_1(sc, XL_TX_STATUS))) {
2296                 if (txstat & XL_TXSTATUS_UNDERRUN ||
2297                         txstat & XL_TXSTATUS_JABBER ||
2298                         txstat & XL_TXSTATUS_RECLAIM) {
2299                         printf("xl%d: transmission error: %x\n",
2300                                                 sc->xl_unit, txstat);
2301                         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_TX_RESET);
2302                         xl_wait(sc);
2303                         if (sc->xl_type == XL_TYPE_905B) {
2304                                 if (sc->xl_cdata.xl_tx_cnt) {
2305                                         int                     i;
2306                                         struct xl_chain         *c;
2307                                         i = sc->xl_cdata.xl_tx_cons;
2308                                         c = &sc->xl_cdata.xl_tx_chain[i];
2309                                         CSR_WRITE_4(sc, XL_DOWNLIST_PTR,
2310                                             c->xl_phys);
2311                                         CSR_WRITE_1(sc, XL_DOWN_POLL, 64);
2312                                 }
2313                         } else {
2314                                 if (sc->xl_cdata.xl_tx_head != NULL)
2315                                         CSR_WRITE_4(sc, XL_DOWNLIST_PTR,
2316                                             sc->xl_cdata.xl_tx_head->xl_phys);
2317                         }
2318                         /*
2319                          * Remember to set this for the
2320                          * first generation 3c90X chips.
2321                          */
2322                         CSR_WRITE_1(sc, XL_TX_FREETHRESH, XL_PACKET_SIZE >> 8);
2323                         if (txstat & XL_TXSTATUS_UNDERRUN &&
2324                             sc->xl_tx_thresh < XL_PACKET_SIZE) {
2325                                 sc->xl_tx_thresh += XL_MIN_FRAMELEN;
2326                                 printf("xl%d: tx underrun, increasing tx start"
2327                                     " threshold to %d bytes\n", sc->xl_unit,
2328                                     sc->xl_tx_thresh);
2329                         }
2330                         CSR_WRITE_2(sc, XL_COMMAND,
2331                             XL_CMD_TX_SET_START|sc->xl_tx_thresh);
2332                         if (sc->xl_type == XL_TYPE_905B) {
2333                                 CSR_WRITE_2(sc, XL_COMMAND,
2334                                 XL_CMD_SET_TX_RECLAIM|(XL_PACKET_SIZE >> 4));
2335                         }
2336                         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_TX_ENABLE);
2337                         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_DOWN_UNSTALL);
2338                 } else {
2339                         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_TX_ENABLE);
2340                         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_DOWN_UNSTALL);
2341                 }
2342                 /*
2343                  * Write an arbitrary byte to the TX_STATUS register
2344                  * to clear this interrupt/error and advance to the next.
2345                  */
2346                 CSR_WRITE_1(sc, XL_TX_STATUS, 0x01);
2347         }
2348
2349         return;
2350 }
2351
2352 static void
2353 xl_intr(arg)
2354         void                    *arg;
2355 {
2356         struct xl_softc         *sc;
2357         struct ifnet            *ifp;
2358         u_int16_t               status;
2359
2360         sc = arg;
2361         ifp = &sc->arpcom.ac_if;
2362
2363         while((status = CSR_READ_2(sc, XL_STATUS)) & XL_INTRS && status != 0xFFFF) {
2364
2365                 CSR_WRITE_2(sc, XL_COMMAND,
2366                     XL_CMD_INTR_ACK|(status & XL_INTRS));
2367
2368                 if (status & XL_STAT_UP_COMPLETE) {
2369                         int                     curpkts;
2370
2371                         curpkts = ifp->if_ipackets;
2372                         xl_rxeof(sc);
2373                         if (curpkts == ifp->if_ipackets) {
2374                                 while (xl_rx_resync(sc))
2375                                         xl_rxeof(sc);
2376                         }
2377                 }
2378
2379                 if (status & XL_STAT_DOWN_COMPLETE) {
2380                         if (sc->xl_type == XL_TYPE_905B)
2381                                 xl_txeof_90xB(sc);
2382                         else
2383                                 xl_txeof(sc);
2384                 }
2385
2386                 if (status & XL_STAT_TX_COMPLETE) {
2387                         ifp->if_oerrors++;
2388                         xl_txeoc(sc);
2389                 }
2390
2391                 if (status & XL_STAT_ADFAIL) {
2392                         xl_reset(sc);
2393                         xl_init(sc);
2394                 }
2395
2396                 if (status & XL_STAT_STATSOFLOW) {
2397                         sc->xl_stats_no_timeout = 1;
2398                         xl_stats_update(sc);
2399                         sc->xl_stats_no_timeout = 0;
2400                 }
2401         }
2402
2403         if (ifp->if_snd.ifq_head != NULL)
2404                 (*ifp->if_start)(ifp);
2405
2406         return;
2407 }
2408
2409 static void
2410 xl_stats_update(xsc)
2411         void                    *xsc;
2412 {
2413         struct xl_softc         *sc;
2414         struct ifnet            *ifp;
2415         struct xl_stats         xl_stats;
2416         u_int8_t                *p;
2417         int                     i;
2418         struct mii_data         *mii = NULL;
2419
2420         bzero((char *)&xl_stats, sizeof(struct xl_stats));
2421
2422         sc = xsc;
2423         ifp = &sc->arpcom.ac_if;
2424         if (sc->xl_miibus != NULL)
2425                 mii = device_get_softc(sc->xl_miibus);
2426
2427         p = (u_int8_t *)&xl_stats;
2428
2429         /* Read all the stats registers. */
2430         XL_SEL_WIN(6);
2431
2432         for (i = 0; i < 16; i++)
2433                 *p++ = CSR_READ_1(sc, XL_W6_CARRIER_LOST + i);
2434
2435         ifp->if_ierrors += xl_stats.xl_rx_overrun;
2436
2437         ifp->if_collisions += xl_stats.xl_tx_multi_collision +
2438                                 xl_stats.xl_tx_single_collision +
2439                                 xl_stats.xl_tx_late_collision;
2440
2441         /*
2442          * Boomerang and cyclone chips have an extra stats counter
2443          * in window 4 (BadSSD). We have to read this too in order
2444          * to clear out all the stats registers and avoid a statsoflow
2445          * interrupt.
2446          */
2447         XL_SEL_WIN(4);
2448         CSR_READ_1(sc, XL_W4_BADSSD);
2449
2450         if ((mii != NULL) && (!sc->xl_stats_no_timeout))
2451                 mii_tick(mii);
2452
2453         XL_SEL_WIN(7);
2454
2455         if (!sc->xl_stats_no_timeout)
2456                 sc->xl_stat_ch = timeout(xl_stats_update, sc, hz);
2457
2458         return;
2459 }
2460
2461 /*
2462  * Encapsulate an mbuf chain in a descriptor by coupling the mbuf data
2463  * pointers to the fragment pointers.
2464  */
2465 static int
2466 xl_encap(sc, c, m_head)
2467         struct xl_softc         *sc;
2468         struct xl_chain         *c;
2469         struct mbuf             *m_head;
2470 {
2471         int                     error;
2472         u_int32_t               status;
2473         struct ifnet            *ifp;
2474
2475         ifp = &sc->arpcom.ac_if;
2476
2477         /*
2478          * Start packing the mbufs in this chain into
2479          * the fragment pointers. Stop when we run out
2480          * of fragments or hit the end of the mbuf chain.
2481          */
2482         error = bus_dmamap_load_mbuf(sc->xl_mtag, c->xl_map, m_head,
2483             xl_dma_map_txbuf, c->xl_ptr, BUS_DMA_NOWAIT);
2484
2485         if (error && error != EFBIG) {
2486                 m_freem(m_head);
2487                 printf("xl%d: can't map mbuf (error %d)\n", sc->xl_unit, error);
2488                 return(1);
2489         }
2490
2491         /*
2492          * Handle special case: we used up all 63 fragments,
2493          * but we have more mbufs left in the chain. Copy the
2494          * data into an mbuf cluster. Note that we don't
2495          * bother clearing the values in the other fragment
2496          * pointers/counters; it wouldn't gain us anything,
2497          * and would waste cycles.
2498          */
2499         if (error) {
2500                 struct mbuf             *m_new;
2501
2502                 m_new = m_defrag(m_head, M_DONTWAIT);
2503                 if (m_new == NULL) {
2504                         m_freem(m_head);
2505                         return(1);
2506                 } else {
2507                         m_head = m_new;
2508                 }
2509
2510                 error = bus_dmamap_load_mbuf(sc->xl_mtag, c->xl_map,
2511                         m_head, xl_dma_map_txbuf, c->xl_ptr, BUS_DMA_NOWAIT);
2512                 if (error) {
2513                         m_freem(m_head);
2514                         printf("xl%d: can't map mbuf (error %d)\n",
2515                             sc->xl_unit, error);
2516                         return(1);
2517                 }
2518         }
2519
2520         if (sc->xl_type == XL_TYPE_905B) {
2521                 status = XL_TXSTAT_RND_DEFEAT;
2522
2523                 if (m_head->m_pkthdr.csum_flags) {
2524                         if (m_head->m_pkthdr.csum_flags & CSUM_IP)
2525                                 status |= XL_TXSTAT_IPCKSUM;
2526                         if (m_head->m_pkthdr.csum_flags & CSUM_TCP)
2527                                 status |= XL_TXSTAT_TCPCKSUM;
2528                         if (m_head->m_pkthdr.csum_flags & CSUM_UDP)
2529                                 status |= XL_TXSTAT_UDPCKSUM;
2530                 }
2531                 c->xl_ptr->xl_status = htole32(status);
2532         }
2533
2534         c->xl_mbuf = m_head;
2535         bus_dmamap_sync(sc->xl_mtag, c->xl_map, BUS_DMASYNC_PREWRITE);
2536         return(0);
2537 }
2538
2539 /*
2540  * Main transmit routine. To avoid having to do mbuf copies, we put pointers
2541  * to the mbuf data regions directly in the transmit lists. We also save a
2542  * copy of the pointers since the transmit list fragment pointers are
2543  * physical addresses.
2544  */
2545 static void
2546 xl_start(ifp)
2547         struct ifnet            *ifp;
2548 {
2549         struct xl_softc         *sc;
2550         struct mbuf             *m_head = NULL;
2551         struct xl_chain         *prev = NULL, *cur_tx = NULL, *start_tx;
2552         struct xl_chain         *prev_tx;
2553         u_int32_t               status;
2554         int                     error;
2555
2556         sc = ifp->if_softc;
2557         /*
2558          * Check for an available queue slot. If there are none,
2559          * punt.
2560          */
2561         if (sc->xl_cdata.xl_tx_free == NULL) {
2562                 xl_txeoc(sc);
2563                 xl_txeof(sc);
2564                 if (sc->xl_cdata.xl_tx_free == NULL) {
2565                         ifp->if_flags |= IFF_OACTIVE;
2566                         return;
2567                 }
2568         }
2569
2570         start_tx = sc->xl_cdata.xl_tx_free;
2571
2572         while(sc->xl_cdata.xl_tx_free != NULL) {
2573                 IF_DEQUEUE(&ifp->if_snd, m_head);
2574                 if (m_head == NULL)
2575                         break;
2576
2577                 /* Pick a descriptor off the free list. */
2578                 prev_tx = cur_tx;
2579                 cur_tx = sc->xl_cdata.xl_tx_free;
2580
2581                 /* Pack the data into the descriptor. */
2582                 error = xl_encap(sc, cur_tx, m_head);
2583                 if (error) {
2584                         cur_tx = prev_tx;
2585                         continue;
2586                 }
2587
2588                 sc->xl_cdata.xl_tx_free = cur_tx->xl_next;
2589                 cur_tx->xl_next = NULL;
2590
2591                 /* Chain it together. */
2592                 if (prev != NULL) {
2593                         prev->xl_next = cur_tx;
2594                         prev->xl_ptr->xl_next = htole32(cur_tx->xl_phys);
2595                 }
2596                 prev = cur_tx;
2597
2598                 /*
2599                  * If there's a BPF listener, bounce a copy of this frame
2600                  * to him.
2601                  */
2602                 if (ifp->if_bpf)
2603                         bpf_mtap(ifp, cur_tx->xl_mbuf);
2604         }
2605
2606         /*
2607          * If there are no packets queued, bail.
2608          */
2609         if (cur_tx == NULL) {
2610                 return;
2611         }
2612
2613         /*
2614          * Place the request for the upload interrupt
2615          * in the last descriptor in the chain. This way, if
2616          * we're chaining several packets at once, we'll only
2617          * get an interupt once for the whole chain rather than
2618          * once for each packet.
2619          */
2620         cur_tx->xl_ptr->xl_status = htole32(le32toh(cur_tx->xl_ptr->xl_status) |
2621             XL_TXSTAT_DL_INTR);
2622         bus_dmamap_sync(sc->xl_ldata.xl_tx_tag, sc->xl_ldata.xl_tx_dmamap,
2623             BUS_DMASYNC_PREWRITE);
2624
2625         /*
2626          * Queue the packets. If the TX channel is clear, update
2627          * the downlist pointer register.
2628          */
2629         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_DOWN_STALL);
2630         xl_wait(sc);
2631
2632         if (sc->xl_cdata.xl_tx_head != NULL) {
2633                 sc->xl_cdata.xl_tx_tail->xl_next = start_tx;
2634                 sc->xl_cdata.xl_tx_tail->xl_ptr->xl_next =
2635                     htole32(start_tx->xl_phys);
2636                 status = sc->xl_cdata.xl_tx_tail->xl_ptr->xl_status;
2637                 sc->xl_cdata.xl_tx_tail->xl_ptr->xl_status =
2638                     htole32(le32toh(status) & ~XL_TXSTAT_DL_INTR);
2639                 sc->xl_cdata.xl_tx_tail = cur_tx;
2640         } else {
2641                 sc->xl_cdata.xl_tx_head = start_tx;
2642                 sc->xl_cdata.xl_tx_tail = cur_tx;
2643         }
2644         if (!CSR_READ_4(sc, XL_DOWNLIST_PTR))
2645                 CSR_WRITE_4(sc, XL_DOWNLIST_PTR, start_tx->xl_phys);
2646
2647         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_DOWN_UNSTALL);
2648
2649         XL_SEL_WIN(7);
2650
2651         /*
2652          * Set a timeout in case the chip goes out to lunch.
2653          */
2654         ifp->if_timer = 5;
2655
2656         /*
2657          * XXX Under certain conditions, usually on slower machines
2658          * where interrupts may be dropped, it's possible for the
2659          * adapter to chew up all the buffers in the receive ring
2660          * and stall, without us being able to do anything about it.
2661          * To guard against this, we need to make a pass over the
2662          * RX queue to make sure there aren't any packets pending.
2663          * Doing it here means we can flush the receive ring at the
2664          * same time the chip is DMAing the transmit descriptors we
2665          * just gave it.
2666          *
2667          * 3Com goes to some lengths to emphasize the Parallel Tasking (tm)
2668          * nature of their chips in all their marketing literature;
2669          * we may as well take advantage of it. :)
2670          */
2671         xl_rxeof(sc);
2672
2673         return;
2674 }
2675
2676 static void
2677 xl_start_90xB(ifp)
2678         struct ifnet            *ifp;
2679 {
2680         struct xl_softc         *sc;
2681         struct mbuf             *m_head = NULL;
2682         struct xl_chain         *prev = NULL, *cur_tx = NULL, *start_tx;
2683         struct xl_chain         *prev_tx;
2684         int                     error, idx;
2685
2686         sc = ifp->if_softc;
2687
2688         if (ifp->if_flags & IFF_OACTIVE) {
2689                 return;
2690         }
2691
2692         idx = sc->xl_cdata.xl_tx_prod;
2693         start_tx = &sc->xl_cdata.xl_tx_chain[idx];
2694
2695         while (sc->xl_cdata.xl_tx_chain[idx].xl_mbuf == NULL) {
2696
2697                 if ((XL_TX_LIST_CNT - sc->xl_cdata.xl_tx_cnt) < 3) {
2698                         ifp->if_flags |= IFF_OACTIVE;
2699                         break;
2700                 }
2701
2702                 IF_DEQUEUE(&ifp->if_snd, m_head);
2703                 if (m_head == NULL)
2704                         break;
2705
2706                 prev_tx = cur_tx;
2707                 cur_tx = &sc->xl_cdata.xl_tx_chain[idx];
2708
2709                 /* Pack the data into the descriptor. */
2710                 error = xl_encap(sc, cur_tx, m_head);
2711                 if (error) {
2712                         cur_tx = prev_tx;
2713                         continue;
2714                 }
2715
2716                 /* Chain it together. */
2717                 if (prev != NULL)
2718                         prev->xl_ptr->xl_next = htole32(cur_tx->xl_phys);
2719                 prev = cur_tx;
2720
2721                 /*
2722                  * If there's a BPF listener, bounce a copy of this frame
2723                  * to him.
2724                  */
2725                 if (ifp->if_bpf)
2726                         bpf_mtap(ifp, cur_tx->xl_mbuf);
2727
2728                 XL_INC(idx, XL_TX_LIST_CNT);
2729                 sc->xl_cdata.xl_tx_cnt++;
2730         }
2731
2732         /*
2733          * If there are no packets queued, bail.
2734          */
2735         if (cur_tx == NULL) {
2736                 return;
2737         }
2738
2739         /*
2740          * Place the request for the upload interrupt
2741          * in the last descriptor in the chain. This way, if
2742          * we're chaining several packets at once, we'll only
2743          * get an interupt once for the whole chain rather than
2744          * once for each packet.
2745          */
2746         cur_tx->xl_ptr->xl_status = htole32(le32toh(cur_tx->xl_ptr->xl_status) |
2747             XL_TXSTAT_DL_INTR);
2748         bus_dmamap_sync(sc->xl_ldata.xl_tx_tag, sc->xl_ldata.xl_tx_dmamap,
2749             BUS_DMASYNC_PREWRITE);
2750
2751         /* Start transmission */
2752         sc->xl_cdata.xl_tx_prod = idx;
2753         start_tx->xl_prev->xl_ptr->xl_next = htole32(start_tx->xl_phys);
2754
2755         /*
2756          * Set a timeout in case the chip goes out to lunch.
2757          */
2758         ifp->if_timer = 5;
2759
2760         return;
2761 }
2762
2763 static void
2764 xl_init(xsc)
2765         void                    *xsc;
2766 {
2767         struct xl_softc         *sc = xsc;
2768         struct ifnet            *ifp = &sc->arpcom.ac_if;
2769         int                     error, i;
2770         u_int16_t               rxfilt = 0;
2771         struct mii_data         *mii = NULL;
2772         int                     s;
2773
2774         s = splimp();
2775
2776         /*
2777          * Cancel pending I/O and free all RX/TX buffers.
2778          */
2779         xl_stop(sc);
2780
2781         if (sc->xl_miibus == NULL) {
2782                 CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_RESET);
2783                 xl_wait(sc);
2784         }
2785         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_TX_RESET);
2786         xl_wait(sc);
2787         DELAY(10000);
2788
2789         if (sc->xl_miibus != NULL)
2790                 mii = device_get_softc(sc->xl_miibus);
2791
2792         /* Init our MAC address */
2793         XL_SEL_WIN(2);
2794         for (i = 0; i < ETHER_ADDR_LEN; i++) {
2795                 CSR_WRITE_1(sc, XL_W2_STATION_ADDR_LO + i,
2796                                 sc->arpcom.ac_enaddr[i]);
2797         }
2798
2799         /* Clear the station mask. */
2800         for (i = 0; i < 3; i++)
2801                 CSR_WRITE_2(sc, XL_W2_STATION_MASK_LO + (i * 2), 0);
2802 #ifdef notdef
2803         /* Reset TX and RX. */
2804         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_RESET);
2805         xl_wait(sc);
2806         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_TX_RESET);
2807         xl_wait(sc);
2808 #endif
2809         /* Init circular RX list. */
2810         error = xl_list_rx_init(sc);
2811         if (error) {
2812                 printf("xl%d: initialization of the rx ring failed (%d)\n",
2813                     sc->xl_unit, error);
2814                 xl_stop(sc);
2815                 splx(s);
2816                 return;
2817         }
2818
2819         /* Init TX descriptors. */
2820         if (sc->xl_type == XL_TYPE_905B)
2821                 error = xl_list_tx_init_90xB(sc);
2822         else
2823                 error = xl_list_tx_init(sc);
2824         if (error) {
2825                 printf("xl%d: initialization of the tx ring failed (%d)\n",
2826                     sc->xl_unit, error);
2827                 xl_stop(sc);
2828                 splx(s);
2829         }
2830
2831         /*
2832          * Set the TX freethresh value.
2833          * Note that this has no effect on 3c905B "cyclone"
2834          * cards but is required for 3c900/3c905 "boomerang"
2835          * cards in order to enable the download engine.
2836          */
2837         CSR_WRITE_1(sc, XL_TX_FREETHRESH, XL_PACKET_SIZE >> 8);
2838
2839         /* Set the TX start threshold for best performance. */
2840         sc->xl_tx_thresh = XL_MIN_FRAMELEN;
2841         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_TX_SET_START|sc->xl_tx_thresh);
2842
2843         /*
2844          * If this is a 3c905B, also set the tx reclaim threshold.
2845          * This helps cut down on the number of tx reclaim errors
2846          * that could happen on a busy network. The chip multiplies
2847          * the register value by 16 to obtain the actual threshold
2848          * in bytes, so we divide by 16 when setting the value here.
2849          * The existing threshold value can be examined by reading
2850          * the register at offset 9 in window 5.
2851          */
2852         if (sc->xl_type == XL_TYPE_905B) {
2853                 CSR_WRITE_2(sc, XL_COMMAND,
2854                     XL_CMD_SET_TX_RECLAIM|(XL_PACKET_SIZE >> 4));
2855         }
2856
2857         /* Set RX filter bits. */
2858         XL_SEL_WIN(5);
2859         rxfilt = CSR_READ_1(sc, XL_W5_RX_FILTER);
2860
2861         /* Set the individual bit to receive frames for this host only. */
2862         rxfilt |= XL_RXFILTER_INDIVIDUAL;
2863
2864         /* If we want promiscuous mode, set the allframes bit. */
2865         if (ifp->if_flags & IFF_PROMISC) {
2866                 rxfilt |= XL_RXFILTER_ALLFRAMES;
2867                 CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_SET_FILT|rxfilt);
2868         } else {
2869                 rxfilt &= ~XL_RXFILTER_ALLFRAMES;
2870                 CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_SET_FILT|rxfilt);
2871         }
2872
2873         /*
2874          * Set capture broadcast bit to capture broadcast frames.
2875          */
2876         if (ifp->if_flags & IFF_BROADCAST) {
2877                 rxfilt |= XL_RXFILTER_BROADCAST;
2878                 CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_SET_FILT|rxfilt);
2879         } else {
2880                 rxfilt &= ~XL_RXFILTER_BROADCAST;
2881                 CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_SET_FILT|rxfilt);
2882         }
2883
2884         /*
2885          * Program the multicast filter, if necessary.
2886          */
2887         if (sc->xl_type == XL_TYPE_905B)
2888                 xl_setmulti_hash(sc);
2889         else
2890                 xl_setmulti(sc);
2891
2892         /*
2893          * Load the address of the RX list. We have to
2894          * stall the upload engine before we can manipulate
2895          * the uplist pointer register, then unstall it when
2896          * we're finished. We also have to wait for the
2897          * stall command to complete before proceeding.
2898          * Note that we have to do this after any RX resets
2899          * have completed since the uplist register is cleared
2900          * by a reset.
2901          */
2902         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_UP_STALL);
2903         xl_wait(sc);
2904         CSR_WRITE_4(sc, XL_UPLIST_PTR, sc->xl_ldata.xl_rx_dmaaddr);
2905         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_UP_UNSTALL);
2906         xl_wait(sc);
2907
2908
2909         if (sc->xl_type == XL_TYPE_905B) {
2910                 /* Set polling interval */
2911                 CSR_WRITE_1(sc, XL_DOWN_POLL, 64);
2912                 /* Load the address of the TX list */
2913                 CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_DOWN_STALL);
2914                 xl_wait(sc);
2915                 CSR_WRITE_4(sc, XL_DOWNLIST_PTR,
2916                     sc->xl_cdata.xl_tx_chain[0].xl_phys);
2917                 CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_DOWN_UNSTALL);
2918                 xl_wait(sc);
2919         }
2920
2921         /*
2922          * If the coax transceiver is on, make sure to enable
2923          * the DC-DC converter.
2924          */
2925         XL_SEL_WIN(3);
2926         if (sc->xl_xcvr == XL_XCVR_COAX)
2927                 CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_COAX_START);
2928         else
2929                 CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_COAX_STOP);
2930
2931         /*
2932          * increase packet size to allow reception of 802.1q or ISL packets.
2933          * For the 3c90x chip, set the 'allow large packets' bit in the MAC
2934          * control register. For 3c90xB/C chips, use the RX packet size
2935          * register.
2936          */
2937         
2938         if (sc->xl_type == XL_TYPE_905B) 
2939                 CSR_WRITE_2(sc, XL_W3_MAXPKTSIZE, XL_PACKET_SIZE);
2940         else {
2941                 u_int8_t macctl;
2942                 macctl = CSR_READ_1(sc, XL_W3_MAC_CTRL);
2943                 macctl |= XL_MACCTRL_ALLOW_LARGE_PACK;
2944                 CSR_WRITE_1(sc, XL_W3_MAC_CTRL, macctl);
2945         }
2946
2947         /* Clear out the stats counters. */
2948         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_STATS_DISABLE);
2949         sc->xl_stats_no_timeout = 1;
2950         xl_stats_update(sc);
2951         sc->xl_stats_no_timeout = 0;
2952         XL_SEL_WIN(4);
2953         CSR_WRITE_2(sc, XL_W4_NET_DIAG, XL_NETDIAG_UPPER_BYTES_ENABLE);
2954         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_STATS_ENABLE);
2955
2956         /*
2957          * Enable interrupts.
2958          */
2959         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_INTR_ACK|0xFF);
2960         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_STAT_ENB|XL_INTRS);
2961         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_INTR_ENB|XL_INTRS);
2962         if (sc->xl_flags & XL_FLAG_FUNCREG)
2963             bus_space_write_4(sc->xl_ftag, sc->xl_fhandle, 4, 0x8000);
2964
2965         /* Set the RX early threshold */
2966         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_SET_THRESH|(XL_PACKET_SIZE >>2));
2967         CSR_WRITE_2(sc, XL_DMACTL, XL_DMACTL_UP_RX_EARLY);
2968
2969         /* Enable receiver and transmitter. */
2970         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_TX_ENABLE);
2971         xl_wait(sc);
2972         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_ENABLE);
2973         xl_wait(sc);
2974
2975         if (mii != NULL)
2976                 mii_mediachg(mii);
2977
2978         /* Select window 7 for normal operations. */
2979         XL_SEL_WIN(7);
2980
2981         ifp->if_flags |= IFF_RUNNING;
2982         ifp->if_flags &= ~IFF_OACTIVE;
2983
2984         sc->xl_stat_ch = timeout(xl_stats_update, sc, hz);
2985
2986         splx(s);
2987
2988         return;
2989 }
2990
2991 /*
2992  * Set media options.
2993  */
2994 static int
2995 xl_ifmedia_upd(ifp)
2996         struct ifnet            *ifp;
2997 {
2998         struct xl_softc         *sc;
2999         struct ifmedia          *ifm = NULL;
3000         struct mii_data         *mii = NULL;
3001
3002         sc = ifp->if_softc;
3003         if (sc->xl_miibus != NULL)
3004                 mii = device_get_softc(sc->xl_miibus);
3005         if (mii == NULL)
3006                 ifm = &sc->ifmedia;
3007         else
3008                 ifm = &mii->mii_media;
3009
3010         switch(IFM_SUBTYPE(ifm->ifm_media)) {
3011         case IFM_100_FX:
3012         case IFM_10_FL:
3013         case IFM_10_2:
3014         case IFM_10_5:
3015                 xl_setmode(sc, ifm->ifm_media);
3016                 return(0);
3017                 break;
3018         default:
3019                 break;
3020         }
3021
3022         if (sc->xl_media & XL_MEDIAOPT_MII || sc->xl_media & XL_MEDIAOPT_BTX
3023                 || sc->xl_media & XL_MEDIAOPT_BT4) {
3024                 xl_init(sc);
3025         } else {
3026                 xl_setmode(sc, ifm->ifm_media);
3027         }
3028
3029         return(0);
3030 }
3031
3032 /*
3033  * Report current media status.
3034  */
3035 static void
3036 xl_ifmedia_sts(ifp, ifmr)
3037         struct ifnet            *ifp;
3038         struct ifmediareq       *ifmr;
3039 {
3040         struct xl_softc         *sc;
3041         u_int32_t               icfg;
3042         struct mii_data         *mii = NULL;
3043
3044         sc = ifp->if_softc;
3045         if (sc->xl_miibus != NULL)
3046                 mii = device_get_softc(sc->xl_miibus);
3047
3048         XL_SEL_WIN(3);
3049         icfg = CSR_READ_4(sc, XL_W3_INTERNAL_CFG) & XL_ICFG_CONNECTOR_MASK;
3050         icfg >>= XL_ICFG_CONNECTOR_BITS;
3051
3052         ifmr->ifm_active = IFM_ETHER;
3053
3054         switch(icfg) {
3055         case XL_XCVR_10BT:
3056                 ifmr->ifm_active = IFM_ETHER|IFM_10_T;
3057                 if (CSR_READ_1(sc, XL_W3_MAC_CTRL) & XL_MACCTRL_DUPLEX)
3058                         ifmr->ifm_active |= IFM_FDX;
3059                 else
3060                         ifmr->ifm_active |= IFM_HDX;
3061                 break;
3062         case XL_XCVR_AUI:
3063                 if (sc->xl_type == XL_TYPE_905B &&
3064                     sc->xl_media == XL_MEDIAOPT_10FL) {
3065                         ifmr->ifm_active = IFM_ETHER|IFM_10_FL;
3066                         if (CSR_READ_1(sc, XL_W3_MAC_CTRL) & XL_MACCTRL_DUPLEX)
3067                                 ifmr->ifm_active |= IFM_FDX;
3068                         else
3069                                 ifmr->ifm_active |= IFM_HDX;
3070                 } else
3071                         ifmr->ifm_active = IFM_ETHER|IFM_10_5;
3072                 break;
3073         case XL_XCVR_COAX:
3074                 ifmr->ifm_active = IFM_ETHER|IFM_10_2;
3075                 break;
3076         /*
3077          * XXX MII and BTX/AUTO should be separate cases.
3078          */
3079
3080         case XL_XCVR_100BTX:
3081         case XL_XCVR_AUTO:
3082         case XL_XCVR_MII:
3083                 if (mii != NULL) {
3084                         mii_pollstat(mii);
3085                         ifmr->ifm_active = mii->mii_media_active;
3086                         ifmr->ifm_status = mii->mii_media_status;
3087                 }
3088                 break;
3089         case XL_XCVR_100BFX:
3090                 ifmr->ifm_active = IFM_ETHER|IFM_100_FX;
3091                 break;
3092         default:
3093                 printf("xl%d: unknown XCVR type: %d\n", sc->xl_unit, icfg);
3094                 break;
3095         }
3096
3097         return;
3098 }
3099
3100 static int
3101 xl_ioctl(ifp, command, data)
3102         struct ifnet            *ifp;
3103         u_long                  command;
3104         caddr_t                 data;
3105 {
3106         struct xl_softc         *sc = ifp->if_softc;
3107         struct ifreq            *ifr = (struct ifreq *) data;
3108         int                     error = 0;
3109         struct mii_data         *mii = NULL;
3110         u_int8_t                rxfilt;
3111         int                     s;
3112
3113         s = splimp();
3114
3115         switch(command) {
3116         case SIOCSIFADDR:
3117         case SIOCGIFADDR:
3118         case SIOCSIFMTU:
3119                 error = ether_ioctl(ifp, command, data);
3120                 break;
3121         case SIOCSIFFLAGS:
3122                 XL_SEL_WIN(5);
3123                 rxfilt = CSR_READ_1(sc, XL_W5_RX_FILTER);
3124                 if (ifp->if_flags & IFF_UP) {
3125                         if (ifp->if_flags & IFF_RUNNING &&
3126                             ifp->if_flags & IFF_PROMISC &&
3127                             !(sc->xl_if_flags & IFF_PROMISC)) {
3128                                 rxfilt |= XL_RXFILTER_ALLFRAMES;
3129                                 CSR_WRITE_2(sc, XL_COMMAND,
3130                                     XL_CMD_RX_SET_FILT|rxfilt);
3131                                 XL_SEL_WIN(7);
3132                         } else if (ifp->if_flags & IFF_RUNNING &&
3133                             !(ifp->if_flags & IFF_PROMISC) &&
3134                             sc->xl_if_flags & IFF_PROMISC) {
3135                                 rxfilt &= ~XL_RXFILTER_ALLFRAMES;
3136                                 CSR_WRITE_2(sc, XL_COMMAND,
3137                                     XL_CMD_RX_SET_FILT|rxfilt);
3138                                 XL_SEL_WIN(7);
3139                         } else
3140                                 xl_init(sc);
3141                 } else {
3142                         if (ifp->if_flags & IFF_RUNNING)
3143                                 xl_stop(sc);
3144                 }
3145                 sc->xl_if_flags = ifp->if_flags;
3146                 error = 0;
3147                 break;
3148         case SIOCADDMULTI:
3149         case SIOCDELMULTI:
3150                 if (sc->xl_type == XL_TYPE_905B)
3151                         xl_setmulti_hash(sc);
3152                 else
3153                         xl_setmulti(sc);
3154                 error = 0;
3155                 break;
3156         case SIOCGIFMEDIA:
3157         case SIOCSIFMEDIA:
3158                 if (sc->xl_miibus != NULL)
3159                         mii = device_get_softc(sc->xl_miibus);
3160                 if (mii == NULL)
3161                         error = ifmedia_ioctl(ifp, ifr,
3162                             &sc->ifmedia, command);
3163                 else
3164                         error = ifmedia_ioctl(ifp, ifr,
3165                             &mii->mii_media, command);
3166                 break;
3167         case SIOCSIFCAP:
3168                 ifp->if_capenable = ifr->ifr_reqcap;
3169                 if (ifp->if_capenable & IFCAP_TXCSUM)
3170                         ifp->if_hwassist = XL905B_CSUM_FEATURES;
3171                 else
3172                         ifp->if_hwassist = 0;
3173                 break;
3174         default:
3175                 error = EINVAL;
3176                 break;
3177         }
3178
3179         splx(s);
3180         return(error);
3181 }
3182
3183 static void
3184 xl_watchdog(ifp)
3185         struct ifnet            *ifp;
3186 {
3187         struct xl_softc         *sc;
3188         u_int16_t               status = 0;
3189
3190         sc = ifp->if_softc;
3191
3192         ifp->if_oerrors++;
3193         XL_SEL_WIN(4);
3194         status = CSR_READ_2(sc, XL_W4_MEDIA_STATUS);
3195         printf("xl%d: watchdog timeout\n", sc->xl_unit);
3196
3197         if (status & XL_MEDIASTAT_CARRIER)
3198                 printf("xl%d: no carrier - transceiver cable problem?\n",
3199                                                                 sc->xl_unit);
3200         xl_txeoc(sc);
3201         xl_txeof(sc);
3202         xl_rxeof(sc);
3203         xl_reset(sc);
3204         xl_init(sc);
3205
3206         if (ifp->if_snd.ifq_head != NULL)
3207                 (*ifp->if_start)(ifp);
3208
3209         return;
3210 }
3211
3212 /*
3213  * Stop the adapter and free any mbufs allocated to the
3214  * RX and TX lists.
3215  */
3216 static void
3217 xl_stop(sc)
3218         struct xl_softc         *sc;
3219 {
3220         int             i;
3221         struct ifnet            *ifp;
3222
3223         ifp = &sc->arpcom.ac_if;
3224         ifp->if_timer = 0;
3225
3226         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_DISABLE);
3227         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_STATS_DISABLE);
3228         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_INTR_ENB);
3229         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_DISCARD);
3230         xl_wait(sc);
3231         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_TX_DISABLE);
3232         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_COAX_STOP);
3233         DELAY(800);
3234
3235 #ifdef foo
3236         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_RX_RESET);
3237         xl_wait(sc);
3238         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_TX_RESET);
3239         xl_wait(sc);
3240 #endif
3241
3242         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_INTR_ACK|XL_STAT_INTLATCH);
3243         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_STAT_ENB|0);
3244         CSR_WRITE_2(sc, XL_COMMAND, XL_CMD_INTR_ENB|0);
3245         if (sc->xl_flags & XL_FLAG_FUNCREG) bus_space_write_4 (sc->xl_ftag, sc->xl_fhandle, 4, 0x8000);
3246
3247         /* Stop the stats updater. */
3248         untimeout(xl_stats_update, sc, sc->xl_stat_ch);
3249
3250         /*
3251          * Free data in the RX lists.
3252          */
3253         for (i = 0; i < XL_RX_LIST_CNT; i++) {
3254                 if (sc->xl_cdata.xl_rx_chain[i].xl_mbuf != NULL) {
3255                         bus_dmamap_unload(sc->xl_mtag,
3256                             sc->xl_cdata.xl_rx_chain[i].xl_map);
3257                         bus_dmamap_destroy(sc->xl_mtag,
3258                             sc->xl_cdata.xl_rx_chain[i].xl_map);
3259                         m_freem(sc->xl_cdata.xl_rx_chain[i].xl_mbuf);
3260                         sc->xl_cdata.xl_rx_chain[i].xl_mbuf = NULL;
3261                 }
3262         }
3263         bzero(sc->xl_ldata.xl_rx_list, XL_RX_LIST_SZ);
3264         /*
3265          * Free the TX list buffers.
3266          */
3267         for (i = 0; i < XL_TX_LIST_CNT; i++) {
3268                 if (sc->xl_cdata.xl_tx_chain[i].xl_mbuf != NULL) {
3269                         bus_dmamap_unload(sc->xl_mtag,
3270                             sc->xl_cdata.xl_tx_chain[i].xl_map);
3271                         bus_dmamap_destroy(sc->xl_mtag,
3272                             sc->xl_cdata.xl_tx_chain[i].xl_map);
3273                         m_freem(sc->xl_cdata.xl_tx_chain[i].xl_mbuf);
3274                         sc->xl_cdata.xl_tx_chain[i].xl_mbuf = NULL;
3275                 }
3276         }
3277         bzero(sc->xl_ldata.xl_tx_list, XL_TX_LIST_SZ);
3278
3279         ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
3280
3281         return;
3282 }
3283
3284 /*
3285  * Stop all chip I/O so that the kernel's probe routines don't
3286  * get confused by errant DMAs when rebooting.
3287  */
3288 static void
3289 xl_shutdown(dev)
3290         device_t                dev;
3291 {
3292         struct xl_softc         *sc;
3293
3294         sc = device_get_softc(dev);
3295
3296         xl_reset(sc);
3297         xl_stop(sc);
3298
3299         return;
3300 }
3301
3302 static int
3303 xl_suspend(dev)
3304         device_t                dev;
3305 {
3306         struct xl_softc         *sc;
3307         int                     s;
3308
3309         s = splimp();
3310
3311         sc = device_get_softc(dev);
3312
3313         xl_stop(sc);
3314
3315         splx(s);
3316
3317         return(0);
3318 }
3319
3320 static int
3321 xl_resume(dev)
3322         device_t                dev;
3323 {
3324         struct xl_softc         *sc;
3325         struct ifnet            *ifp;
3326         int                     s;
3327
3328         s = splimp();
3329
3330         sc = device_get_softc(dev);
3331         ifp = &sc->arpcom.ac_if;
3332
3333         xl_reset(sc);
3334         if (ifp->if_flags & IFF_UP)
3335                 xl_init(sc);
3336
3337         splx(s);
3338         return(0);
3339 }