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