9fed52a9534c0c299b57853afdcf521fc93bb0cd
[dragonfly.git] / sys / dev / netif / re / if_re.c
1 /*
2  * Copyright (c) 2004
3  *      Joerg Sonnenberger <joerg@bec.de>.  All rights reserved.
4  *
5  * Copyright (c) 1997, 1998-2003
6  *      Bill Paul <wpaul@windriver.com>.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by Bill Paul.
19  * 4. Neither the name of the author nor the names of any co-contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
27  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
33  * THE POSSIBILITY OF SUCH DAMAGE.
34  *
35  * $FreeBSD: src/sys/dev/re/if_re.c,v 1.25 2004/06/09 14:34:01 naddy Exp $
36  * $DragonFly: src/sys/dev/netif/re/if_re.c,v 1.20 2005/12/04 18:07:49 dillon Exp $
37  */
38
39 /*
40  * RealTek 8139C+/8169/8169S/8110S PCI NIC driver
41  *
42  * Written by Bill Paul <wpaul@windriver.com>
43  * Senior Networking Software Engineer
44  * Wind River Systems
45  */
46
47 /*
48  * This driver is designed to support RealTek's next generation of
49  * 10/100 and 10/100/1000 PCI ethernet controllers. There are currently
50  * four devices in this family: the RTL8139C+, the RTL8169, the RTL8169S
51  * and the RTL8110S.
52  *
53  * The 8139C+ is a 10/100 ethernet chip. It is backwards compatible
54  * with the older 8139 family, however it also supports a special
55  * C+ mode of operation that provides several new performance enhancing
56  * features. These include:
57  *
58  *      o Descriptor based DMA mechanism. Each descriptor represents
59  *        a single packet fragment. Data buffers may be aligned on
60  *        any byte boundary.
61  *
62  *      o 64-bit DMA
63  *
64  *      o TCP/IP checksum offload for both RX and TX
65  *
66  *      o High and normal priority transmit DMA rings
67  *
68  *      o VLAN tag insertion and extraction
69  *
70  *      o TCP large send (segmentation offload)
71  *
72  * Like the 8139, the 8139C+ also has a built-in 10/100 PHY. The C+
73  * programming API is fairly straightforward. The RX filtering, EEPROM
74  * access and PHY access is the same as it is on the older 8139 series
75  * chips.
76  *
77  * The 8169 is a 64-bit 10/100/1000 gigabit ethernet MAC. It has almost the
78  * same programming API and feature set as the 8139C+ with the following
79  * differences and additions:
80  *
81  *      o 1000Mbps mode
82  *
83  *      o Jumbo frames
84  *
85  *      o GMII and TBI ports/registers for interfacing with copper
86  *        or fiber PHYs
87  *
88  *      o RX and TX DMA rings can have up to 1024 descriptors
89  *        (the 8139C+ allows a maximum of 64)
90  *
91  *      o Slight differences in register layout from the 8139C+
92  *
93  * The TX start and timer interrupt registers are at different locations
94  * on the 8169 than they are on the 8139C+. Also, the status word in the
95  * RX descriptor has a slightly different bit layout. The 8169 does not
96  * have a built-in PHY. Most reference boards use a Marvell 88E1000 'Alaska'
97  * copper gigE PHY.
98  *
99  * The 8169S/8110S 10/100/1000 devices have built-in copper gigE PHYs
100  * (the 'S' stands for 'single-chip'). These devices have the same
101  * programming API as the older 8169, but also have some vendor-specific
102  * registers for the on-board PHY. The 8110S is a LAN-on-motherboard
103  * part designed to be pin-compatible with the RealTek 8100 10/100 chip.
104  * 
105  * This driver takes advantage of the RX and TX checksum offload and
106  * VLAN tag insertion/extraction features. It also implements TX
107  * interrupt moderation using the timer interrupt registers, which
108  * significantly reduces TX interrupt load. There is also support
109  * for jumbo frames, however the 8169/8169S/8110S can not transmit
110  * jumbo frames larger than 7440, so the max MTU possible with this
111  * driver is 7422 bytes.
112  */
113
114 #include "opt_polling.h"
115
116 #include <sys/param.h>
117 #include <sys/endian.h>
118 #include <sys/systm.h>
119 #include <sys/sockio.h>
120 #include <sys/mbuf.h>
121 #include <sys/malloc.h>
122 #include <sys/module.h>
123 #include <sys/kernel.h>
124 #include <sys/socket.h>
125 #include <sys/serialize.h>
126 #include <sys/thread2.h>
127
128 #include <net/if.h>
129 #include <net/ifq_var.h>
130 #include <net/if_arp.h>
131 #include <net/ethernet.h>
132 #include <net/if_dl.h>
133 #include <net/if_media.h>
134 #include <net/if_types.h>
135 #include <net/vlan/if_vlan_var.h>
136
137 #include <net/bpf.h>
138
139 #include <machine/bus_pio.h>
140 #include <machine/bus_memio.h>
141 #include <machine/bus.h>
142 #include <machine/resource.h>
143 #include <sys/bus.h>
144 #include <sys/rman.h>
145
146 #include <dev/netif/mii_layer/mii.h>
147 #include <dev/netif/mii_layer/miivar.h>
148
149 #include <bus/pci/pcireg.h>
150 #include <bus/pci/pcivar.h>
151
152 /* "controller miibus0" required.  See GENERIC if you get errors here. */
153 #include "miibus_if.h"
154
155 #include <dev/netif/re/if_rereg.h>
156
157 /*
158  * The hardware supports checksumming but, as usual, some chipsets screw it
159  * all up and produce bogus packets, so we disable it by default.
160  */
161 #define RE_CSUM_FEATURES    (CSUM_IP | CSUM_TCP | CSUM_UDP)
162 #define RE_DISABLE_HWCSUM
163
164 /*
165  * Various supported device vendors/types and their names.
166  */
167 static struct re_type re_devs[] = {
168         { DLINK_VENDORID, DLINK_DEVICEID_528T, RE_HWREV_8169S,
169                 "D-Link DGE-528(T) Gigabit Ethernet Adapter" },
170         { RT_VENDORID, RT_DEVICEID_8139, RE_HWREV_8139CPLUS,
171                 "RealTek 8139C+ 10/100BaseTX" },
172         { RT_VENDORID, RT_DEVICEID_8169, RE_HWREV_8169,
173                 "RealTek 8169 Gigabit Ethernet" },
174         { RT_VENDORID, RT_DEVICEID_8169, RE_HWREV_8169S,
175                 "RealTek 8169S Single-chip Gigabit Ethernet" },
176         { RT_VENDORID, RT_DEVICEID_8169, RE_HWREV_8110S,
177                 "RealTek 8110S Single-chip Gigabit Ethernet" },
178         { 0, 0, 0, NULL }
179 };
180
181 static struct re_hwrev re_hwrevs[] = {
182         { RE_HWREV_8139CPLUS, RE_8139CPLUS, "C+"},
183         { RE_HWREV_8169, RE_8169, "8169"},
184         { RE_HWREV_8169S, RE_8169, "8169S"},
185         { RE_HWREV_8110S, RE_8169, "8110S"},
186         { 0, 0, NULL }
187 };
188
189 static int      re_probe(device_t);
190 static int      re_attach(device_t);
191 static int      re_detach(device_t);
192
193 static int      re_encap(struct re_softc *, struct mbuf **, int *, int *);
194
195 static void     re_dma_map_addr(void *, bus_dma_segment_t *, int, int);
196 static void     re_dma_map_desc(void *, bus_dma_segment_t *, int,
197                                 bus_size_t, int);
198 static int      re_allocmem(device_t, struct re_softc *);
199 static int      re_newbuf(struct re_softc *, int, struct mbuf *);
200 static int      re_rx_list_init(struct re_softc *);
201 static int      re_tx_list_init(struct re_softc *);
202 static void     re_rxeof(struct re_softc *);
203 static void     re_txeof(struct re_softc *);
204 static void     re_intr(void *);
205 static void     re_tick(void *);
206 static void     re_tick_serialized(void *);
207 static void     re_start(struct ifnet *);
208 static int      re_ioctl(struct ifnet *, u_long, caddr_t, struct ucred *);
209 static void     re_init(void *);
210 static void     re_stop(struct re_softc *);
211 static void     re_watchdog(struct ifnet *);
212 static int      re_suspend(device_t);
213 static int      re_resume(device_t);
214 static void     re_shutdown(device_t);
215 static int      re_ifmedia_upd(struct ifnet *);
216 static void     re_ifmedia_sts(struct ifnet *, struct ifmediareq *);
217
218 static void     re_eeprom_putbyte(struct re_softc *, int);
219 static void     re_eeprom_getword(struct re_softc *, int, u_int16_t *);
220 static void     re_read_eeprom(struct re_softc *, caddr_t, int, int, int);
221 static int      re_gmii_readreg(device_t, int, int);
222 static int      re_gmii_writereg(device_t, int, int, int);
223
224 static int      re_miibus_readreg(device_t, int, int);
225 static int      re_miibus_writereg(device_t, int, int, int);
226 static void     re_miibus_statchg(device_t);
227
228 static void     re_setmulti(struct re_softc *);
229 static void     re_reset(struct re_softc *);
230
231 static int      re_diag(struct re_softc *);
232 #ifdef DEVICE_POLLING
233 static void     re_poll(struct ifnet *ifp, enum poll_cmd cmd, int count);
234 #endif
235
236 static device_method_t re_methods[] = {
237         /* Device interface */
238         DEVMETHOD(device_probe,         re_probe),
239         DEVMETHOD(device_attach,        re_attach),
240         DEVMETHOD(device_detach,        re_detach),
241         DEVMETHOD(device_suspend,       re_suspend),
242         DEVMETHOD(device_resume,        re_resume),
243         DEVMETHOD(device_shutdown,      re_shutdown),
244
245         /* bus interface */
246         DEVMETHOD(bus_print_child,      bus_generic_print_child),
247         DEVMETHOD(bus_driver_added,     bus_generic_driver_added),
248
249         /* MII interface */
250         DEVMETHOD(miibus_readreg,       re_miibus_readreg),
251         DEVMETHOD(miibus_writereg,      re_miibus_writereg),
252         DEVMETHOD(miibus_statchg,       re_miibus_statchg),
253
254         { 0, 0 }
255 };
256
257 static driver_t re_driver = {
258         "re",
259         re_methods,
260         sizeof(struct re_softc)
261 };
262
263 static devclass_t re_devclass;
264
265 DECLARE_DUMMY_MODULE(if_re);
266 DRIVER_MODULE(if_re, pci, re_driver, re_devclass, 0, 0);
267 DRIVER_MODULE(if_re, cardbus, re_driver, re_devclass, 0, 0);
268 DRIVER_MODULE(miibus, re, miibus_driver, miibus_devclass, 0, 0);
269
270 #define EE_SET(x)       \
271         CSR_WRITE_1(sc, RE_EECMD, CSR_READ_1(sc, RE_EECMD) | (x))
272
273 #define EE_CLR(x)       \
274         CSR_WRITE_1(sc, RE_EECMD, CSR_READ_1(sc, RE_EECMD) & ~(x))
275
276 /*
277  * Send a read command and address to the EEPROM, check for ACK.
278  */
279 static void
280 re_eeprom_putbyte(struct re_softc *sc, int addr)
281 {
282         int d, i;
283
284         d = addr | sc->re_eecmd_read;
285
286         /*
287          * Feed in each bit and strobe the clock.
288          */
289         for (i = 0x400; i != 0; i >>= 1) {
290                 if (d & i)
291                         EE_SET(RE_EE_DATAIN);
292                 else
293                         EE_CLR(RE_EE_DATAIN);
294                 DELAY(100);
295                 EE_SET(RE_EE_CLK);
296                 DELAY(150);
297                 EE_CLR(RE_EE_CLK);
298                 DELAY(100);
299         }
300 }
301
302 /*
303  * Read a word of data stored in the EEPROM at address 'addr.'
304  */
305 static void
306 re_eeprom_getword(struct re_softc *sc, int addr, uint16_t *dest)
307 {
308         int i;
309         uint16_t word = 0;
310
311         /* Enter EEPROM access mode. */
312         CSR_WRITE_1(sc, RE_EECMD, RE_EEMODE_PROGRAM|RE_EE_SEL);
313
314         /*
315          * Send address of word we want to read.
316          */
317         re_eeprom_putbyte(sc, addr);
318
319         CSR_WRITE_1(sc, RE_EECMD, RE_EEMODE_PROGRAM|RE_EE_SEL);
320
321         /*
322          * Start reading bits from EEPROM.
323          */
324         for (i = 0x8000; i != 0; i >>= 1) {
325                 EE_SET(RE_EE_CLK);
326                 DELAY(100);
327                 if (CSR_READ_1(sc, RE_EECMD) & RE_EE_DATAOUT)
328                         word |= i;
329                 EE_CLR(RE_EE_CLK);
330                 DELAY(100);
331         }
332
333         /* Turn off EEPROM access mode. */
334         CSR_WRITE_1(sc, RE_EECMD, RE_EEMODE_OFF);
335
336         *dest = word;
337 }
338
339 /*
340  * Read a sequence of words from the EEPROM.
341  */
342 static void
343 re_read_eeprom(struct re_softc *sc, caddr_t dest, int off, int cnt, int swap)
344 {
345         int i;
346         uint16_t word = 0, *ptr;
347
348         for (i = 0; i < cnt; i++) {
349                 re_eeprom_getword(sc, off + i, &word);
350                 ptr = (u_int16_t *)(dest + (i * 2));
351                 if (swap)
352                         *ptr = be16toh(word);
353                 else
354                         *ptr = word;
355         }
356 }
357
358 static int
359 re_gmii_readreg(device_t dev, int phy, int reg)
360 {
361         struct re_softc *sc = device_get_softc(dev);
362         u_int32_t rval;
363         int i;
364
365         if (phy != 1)
366                 return(0);
367
368         /* Let the rgephy driver read the GMEDIASTAT register */
369
370         if (reg == RE_GMEDIASTAT)
371                 return(CSR_READ_1(sc, RE_GMEDIASTAT));
372
373         CSR_WRITE_4(sc, RE_PHYAR, reg << 16);
374         DELAY(1000);
375
376         for (i = 0; i < RE_TIMEOUT; i++) {
377                 rval = CSR_READ_4(sc, RE_PHYAR);
378                 if (rval & RE_PHYAR_BUSY)
379                         break;
380                 DELAY(100);
381         }
382
383         if (i == RE_TIMEOUT) {
384                 device_printf(dev, "PHY read failed\n");
385                 return(0);
386         }
387
388         return(rval & RE_PHYAR_PHYDATA);
389 }
390
391 static int
392 re_gmii_writereg(device_t dev, int phy, int reg, int data)
393 {
394         struct re_softc *sc = device_get_softc(dev);
395         uint32_t rval;
396         int i;
397
398         CSR_WRITE_4(sc, RE_PHYAR,
399                     (reg << 16) | (data & RE_PHYAR_PHYDATA) | RE_PHYAR_BUSY);
400         DELAY(1000);
401
402         for (i = 0; i < RE_TIMEOUT; i++) {
403                 rval = CSR_READ_4(sc, RE_PHYAR);
404                 if ((rval & RE_PHYAR_BUSY) == 0)
405                         break;
406                 DELAY(100);
407         }
408
409         if (i == RE_TIMEOUT)
410                 device_printf(dev, "PHY write failed\n");
411
412         return(0);
413 }
414
415 static int
416 re_miibus_readreg(device_t dev, int phy, int reg)
417 {
418         struct re_softc *sc = device_get_softc(dev);
419         uint16_t rval = 0;
420         uint16_t re8139_reg = 0;
421
422         if (sc->re_type == RE_8169) {
423                 rval = re_gmii_readreg(dev, phy, reg);
424                 return(rval);
425         }
426
427         /* Pretend the internal PHY is only at address 0 */
428         if (phy)
429                 return(0);
430
431         switch(reg) {
432         case MII_BMCR:
433                 re8139_reg = RE_BMCR;
434                 break;
435         case MII_BMSR:
436                 re8139_reg = RE_BMSR;
437                 break;
438         case MII_ANAR:
439                 re8139_reg = RE_ANAR;
440                 break;
441         case MII_ANER:
442                 re8139_reg = RE_ANER;
443                 break;
444         case MII_ANLPAR:
445                 re8139_reg = RE_LPAR;
446                 break;
447         case MII_PHYIDR1:
448         case MII_PHYIDR2:
449                 return(0);
450         /*
451          * Allow the rlphy driver to read the media status
452          * register. If we have a link partner which does not
453          * support NWAY, this is the register which will tell
454          * us the results of parallel detection.
455          */
456         case RE_MEDIASTAT:
457                 return(CSR_READ_1(sc, RE_MEDIASTAT));
458         default:
459                 device_printf(dev, "bad phy register\n");
460                 return(0);
461         }
462         rval = CSR_READ_2(sc, re8139_reg);
463         return(rval);
464 }
465
466 static int
467 re_miibus_writereg(device_t dev, int phy, int reg, int data)
468 {
469         struct re_softc *sc= device_get_softc(dev);
470         u_int16_t re8139_reg = 0;
471
472         if (sc->re_type == RE_8169)
473                 return(re_gmii_writereg(dev, phy, reg, data));
474
475         /* Pretend the internal PHY is only at address 0 */
476         if (phy)
477                 return(0);
478
479         switch(reg) {
480         case MII_BMCR:
481                 re8139_reg = RE_BMCR;
482                 break;
483         case MII_BMSR:
484                 re8139_reg = RE_BMSR;
485                 break;
486         case MII_ANAR:
487                 re8139_reg = RE_ANAR;
488                 break;
489         case MII_ANER:
490                 re8139_reg = RE_ANER;
491                 break;
492         case MII_ANLPAR:
493                 re8139_reg = RE_LPAR;
494                 break;
495         case MII_PHYIDR1:
496         case MII_PHYIDR2:
497                 return(0);
498         default:
499                 device_printf(dev, "bad phy register\n");
500                 return(0);
501         }
502         CSR_WRITE_2(sc, re8139_reg, data);
503         return(0);
504 }
505
506 static void
507 re_miibus_statchg(device_t dev)
508 {
509 }
510
511 /*
512  * Program the 64-bit multicast hash filter.
513  */
514 static void
515 re_setmulti(struct re_softc *sc)
516 {
517         struct ifnet *ifp = &sc->arpcom.ac_if;
518         int h = 0;
519         uint32_t hashes[2] = { 0, 0 };
520         struct ifmultiaddr *ifma;
521         uint32_t rxfilt;
522         int mcnt = 0;
523
524         rxfilt = CSR_READ_4(sc, RE_RXCFG);
525
526         if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
527                 rxfilt |= RE_RXCFG_RX_MULTI;
528                 CSR_WRITE_4(sc, RE_RXCFG, rxfilt);
529                 CSR_WRITE_4(sc, RE_MAR0, 0xFFFFFFFF);
530                 CSR_WRITE_4(sc, RE_MAR4, 0xFFFFFFFF);
531                 return;
532         }
533
534         /* first, zot all the existing hash bits */
535         CSR_WRITE_4(sc, RE_MAR0, 0);
536         CSR_WRITE_4(sc, RE_MAR4, 0);
537
538         /* now program new ones */
539         LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
540                 if (ifma->ifma_addr->sa_family != AF_LINK)
541                         continue;
542                 h = ether_crc32_be(LLADDR((struct sockaddr_dl *)
543                     ifma->ifma_addr), ETHER_ADDR_LEN) >> 26;
544                 if (h < 32)
545                         hashes[0] |= (1 << h);
546                 else
547                         hashes[1] |= (1 << (h - 32));
548                 mcnt++;
549         }
550
551         if (mcnt)
552                 rxfilt |= RE_RXCFG_RX_MULTI;
553         else
554                 rxfilt &= ~RE_RXCFG_RX_MULTI;
555
556         CSR_WRITE_4(sc, RE_RXCFG, rxfilt);
557         CSR_WRITE_4(sc, RE_MAR0, hashes[0]);
558         CSR_WRITE_4(sc, RE_MAR4, hashes[1]);
559 }
560
561 static void
562 re_reset(struct re_softc *sc)
563 {
564         int i;
565
566         CSR_WRITE_1(sc, RE_COMMAND, RE_CMD_RESET);
567
568         for (i = 0; i < RE_TIMEOUT; i++) {
569                 DELAY(10);
570                 if ((CSR_READ_1(sc, RE_COMMAND) & RE_CMD_RESET) == 0)
571                         break;
572         }
573         if (i == RE_TIMEOUT)
574                 if_printf(&sc->arpcom.ac_if, "reset never completed!\n");
575
576         CSR_WRITE_1(sc, 0x82, 1);
577 }
578
579 /*
580  * The following routine is designed to test for a defect on some
581  * 32-bit 8169 cards. Some of these NICs have the REQ64# and ACK64#
582  * lines connected to the bus, however for a 32-bit only card, they
583  * should be pulled high. The result of this defect is that the
584  * NIC will not work right if you plug it into a 64-bit slot: DMA
585  * operations will be done with 64-bit transfers, which will fail
586  * because the 64-bit data lines aren't connected.
587  *
588  * There's no way to work around this (short of talking a soldering
589  * iron to the board), however we can detect it. The method we use
590  * here is to put the NIC into digital loopback mode, set the receiver
591  * to promiscuous mode, and then try to send a frame. We then compare
592  * the frame data we sent to what was received. If the data matches,
593  * then the NIC is working correctly, otherwise we know the user has
594  * a defective NIC which has been mistakenly plugged into a 64-bit PCI
595  * slot. In the latter case, there's no way the NIC can work correctly,
596  * so we print out a message on the console and abort the device attach.
597  */
598
599 static int
600 re_diag(struct re_softc *sc)
601 {
602         struct ifnet *ifp = &sc->arpcom.ac_if;
603         struct mbuf *m0;
604         struct ether_header *eh;
605         struct re_desc *cur_rx;
606         uint16_t status;
607         uint32_t rxstat;
608         int total_len, i, error = 0;
609         uint8_t dst[ETHER_ADDR_LEN] = { 0x00, 'h', 'e', 'l', 'l', 'o' };
610         uint8_t src[ETHER_ADDR_LEN] = { 0x00, 'w', 'o', 'r', 'l', 'd' };
611
612         /* Allocate a single mbuf */
613
614         MGETHDR(m0, MB_DONTWAIT, MT_DATA);
615         if (m0 == NULL)
616                 return(ENOBUFS);
617
618         /*
619          * Initialize the NIC in test mode. This sets the chip up
620          * so that it can send and receive frames, but performs the
621          * following special functions:
622          * - Puts receiver in promiscuous mode
623          * - Enables digital loopback mode
624          * - Leaves interrupts turned off
625          */
626
627         ifp->if_flags |= IFF_PROMISC;
628         sc->re_testmode = 1;
629         re_init(sc);
630         re_stop(sc);
631         DELAY(100000);
632         re_init(sc);
633
634         /* Put some data in the mbuf */
635
636         eh = mtod(m0, struct ether_header *);
637         bcopy (dst, eh->ether_dhost, ETHER_ADDR_LEN);
638         bcopy (src, eh->ether_shost, ETHER_ADDR_LEN);
639         eh->ether_type = htons(ETHERTYPE_IP);
640         m0->m_pkthdr.len = m0->m_len = ETHER_MIN_LEN - ETHER_CRC_LEN;
641
642         /*
643          * Queue the packet, start transmission.
644          * Note: ifq_handoff() ultimately calls re_start() for us.
645          */
646
647         CSR_WRITE_2(sc, RE_ISR, 0xFFFF);
648         error = ifq_handoff(ifp, m0, NULL);
649         if (error) {
650                 m0 = NULL;
651                 goto done;
652         }
653         m0 = NULL;
654
655         /* Wait for it to propagate through the chip */
656
657         DELAY(100000);
658         for (i = 0; i < RE_TIMEOUT; i++) {
659                 status = CSR_READ_2(sc, RE_ISR);
660                 if ((status & (RE_ISR_TIMEOUT_EXPIRED|RE_ISR_RX_OK)) ==
661                     (RE_ISR_TIMEOUT_EXPIRED|RE_ISR_RX_OK))
662                         break;
663                 DELAY(10);
664         }
665
666         if (i == RE_TIMEOUT) {
667                 if_printf(ifp, "diagnostic failed to receive packet "
668                           "in loopback mode\n");
669                 error = EIO;
670                 goto done;
671         }
672
673         /*
674          * The packet should have been dumped into the first
675          * entry in the RX DMA ring. Grab it from there.
676          */
677
678         bus_dmamap_sync(sc->re_ldata.re_rx_list_tag,
679                         sc->re_ldata.re_rx_list_map, BUS_DMASYNC_POSTREAD);
680         bus_dmamap_sync(sc->re_ldata.re_mtag, sc->re_ldata.re_rx_dmamap[0],
681                         BUS_DMASYNC_POSTWRITE);
682         bus_dmamap_unload(sc->re_ldata.re_mtag, sc->re_ldata.re_rx_dmamap[0]);
683
684         m0 = sc->re_ldata.re_rx_mbuf[0];
685         sc->re_ldata.re_rx_mbuf[0] = NULL;
686         eh = mtod(m0, struct ether_header *);
687
688         cur_rx = &sc->re_ldata.re_rx_list[0];
689         total_len = RE_RXBYTES(cur_rx);
690         rxstat = le32toh(cur_rx->re_cmdstat);
691
692         if (total_len != ETHER_MIN_LEN) {
693                 if_printf(ifp, "diagnostic failed, received short packet\n");
694                 error = EIO;
695                 goto done;
696         }
697
698         /* Test that the received packet data matches what we sent. */
699
700         if (bcmp(eh->ether_dhost, dst, ETHER_ADDR_LEN) ||
701             bcmp(eh->ether_shost, &src, ETHER_ADDR_LEN) ||
702             be16toh(eh->ether_type) != ETHERTYPE_IP) {
703                 if_printf(ifp, "WARNING, DMA FAILURE!\n");
704                 if_printf(ifp, "expected TX data: %6D/%6D/0x%x\n",
705                     dst, ":", src, ":", ETHERTYPE_IP);
706                 if_printf(ifp, "received RX data: %6D/%6D/0x%x\n",
707                     eh->ether_dhost, ":",  eh->ether_shost, ":",
708                     ntohs(eh->ether_type));
709                 if_printf(ifp, "You may have a defective 32-bit NIC plugged "
710                     "into a 64-bit PCI slot.\n");
711                 if_printf(ifp, "Please re-install the NIC in a 32-bit slot "
712                     "for proper operation.\n");
713                 if_printf(ifp, "Read the re(4) man page for more details.\n");
714                 error = EIO;
715         }
716
717 done:
718         /* Turn interface off, release resources */
719
720         sc->re_testmode = 0;
721         ifp->if_flags &= ~IFF_PROMISC;
722         re_stop(sc);
723         if (m0 != NULL)
724                 m_freem(m0);
725
726         return (error);
727 }
728
729 /*
730  * Probe for a RealTek 8139C+/8169/8110 chip. Check the PCI vendor and device
731  * IDs against our list and return a device name if we find a match.
732  */
733 static int
734 re_probe(device_t dev)
735 {
736         struct re_type *t;
737         struct re_softc *sc;
738         int rid;
739         uint32_t hwrev;
740         uint16_t vendor, product;
741
742         t = re_devs;
743
744         vendor = pci_get_vendor(dev);
745         product = pci_get_device(dev);
746
747         for (t = re_devs; t->re_name != NULL; t++) {
748                 if (product == t->re_did && vendor == t->re_vid)
749                         break;
750         }
751
752         /*
753          * Check if we found a RealTek device.
754          */
755         if (t->re_name == NULL)
756                 return(ENXIO);
757
758         /*
759          * Temporarily map the I/O space so we can read the chip ID register.
760          */
761         sc = malloc(sizeof(*sc), M_TEMP, M_WAITOK | M_ZERO);
762         rid = RE_PCI_LOIO;
763         sc->re_res = bus_alloc_resource_any(dev, SYS_RES_IOPORT, &rid,
764                                             RF_ACTIVE);
765         if (sc->re_res == NULL) {
766                 device_printf(dev, "couldn't map ports/memory\n");
767                 free(sc, M_TEMP);
768                 return(ENXIO);
769         }
770
771         sc->re_btag = rman_get_bustag(sc->re_res);
772         sc->re_bhandle = rman_get_bushandle(sc->re_res);
773
774         hwrev = CSR_READ_4(sc, RE_TXCFG) & RE_TXCFG_HWREV;
775         bus_release_resource(dev, SYS_RES_IOPORT, RE_PCI_LOIO, sc->re_res);
776         free(sc, M_TEMP);
777
778         /*
779          * and continue matching for the specific chip...
780          */
781         for (; t->re_name != NULL; t++) {
782                 if (product == t->re_did && vendor == t->re_vid &&
783                     t->re_basetype == hwrev) {
784                         device_set_desc(dev, t->re_name);
785                         return(0);
786                 }
787         }
788         return(ENXIO);
789 }
790
791 /*
792  * This routine takes the segment list provided as the result of
793  * a bus_dma_map_load() operation and assigns the addresses/lengths
794  * to RealTek DMA descriptors. This can be called either by the RX
795  * code or the TX code. In the RX case, we'll probably wind up mapping
796  * at most one segment. For the TX case, there could be any number of
797  * segments since TX packets may span multiple mbufs. In either case,
798  * if the number of segments is larger than the re_maxsegs limit
799  * specified by the caller, we abort the mapping operation. Sadly,
800  * whoever designed the buffer mapping API did not provide a way to
801  * return an error from here, so we have to fake it a bit.
802  */
803
804 static void
805 re_dma_map_desc(void *arg, bus_dma_segment_t *segs, int nseg,
806                 bus_size_t mapsize, int error)
807 {
808         struct re_dmaload_arg *ctx;
809         struct re_desc *d = NULL;
810         int i = 0, idx;
811         uint32_t cmdstat;
812
813         if (error)
814                 return;
815
816         ctx = arg;
817
818         /* Signal error to caller if there's too many segments */
819         if (nseg > ctx->re_maxsegs) {
820                 ctx->re_maxsegs = 0;
821                 return;
822         }
823
824         /*
825          * Map the segment array into descriptors. Note that we set the
826          * start-of-frame and end-of-frame markers for either TX or RX, but
827          * they really only have meaning in the TX case. (In the RX case,
828          * it's the chip that tells us where packets begin and end.)
829          * We also keep track of the end of the ring and set the
830          * end-of-ring bits as needed, and we set the ownership bits
831          * in all except the very first descriptor. (The caller will
832          * set this descriptor later when it start transmission or
833          * reception.)
834          */
835         idx = ctx->re_idx;
836         for (;;) {
837                 d = &ctx->re_ring[idx];
838                 if (le32toh(d->re_cmdstat) & RE_RDESC_STAT_OWN) {
839                         ctx->re_maxsegs = 0;
840                         return;
841                 }
842                 cmdstat = segs[i].ds_len;
843                 d->re_bufaddr_lo = htole32(RE_ADDR_LO(segs[i].ds_addr));
844                 d->re_bufaddr_hi = htole32(RE_ADDR_HI(segs[i].ds_addr));
845                 if (i == 0)
846                         cmdstat |= RE_TDESC_CMD_SOF;
847                 else
848                         cmdstat |= RE_TDESC_CMD_OWN;
849                 if (idx == (RE_RX_DESC_CNT - 1))
850                         cmdstat |= RE_TDESC_CMD_EOR;
851                 d->re_cmdstat = htole32(cmdstat | ctx->re_flags);
852                 i++;
853                 if (i == nseg)
854                         break;
855                 RE_DESC_INC(idx);
856         }
857
858         d->re_cmdstat |= htole32(RE_TDESC_CMD_EOF);
859         ctx->re_maxsegs = nseg;
860         ctx->re_idx = idx;
861 }
862
863 /*
864  * Map a single buffer address.
865  */
866
867 static void
868 re_dma_map_addr(void *arg, bus_dma_segment_t *segs, int nseg, int error)
869 {
870         uint32_t *addr;
871
872         if (error)
873                 return;
874
875         KASSERT(nseg == 1, ("too many DMA segments, %d should be 1", nseg));
876         addr = arg;
877         *addr = segs->ds_addr;
878 }
879
880 static int
881 re_allocmem(device_t dev, struct re_softc *sc)
882 {
883         int error, i, nseg;
884
885         /*
886          * Allocate map for RX mbufs.
887          */
888         nseg = 32;
889         error = bus_dma_tag_create(sc->re_parent_tag, ETHER_ALIGN, 0,
890             BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL,
891             NULL, MCLBYTES * nseg, nseg, MCLBYTES, BUS_DMA_ALLOCNOW,
892             &sc->re_ldata.re_mtag);
893         if (error) {
894                 device_printf(dev, "could not allocate dma tag\n");
895                 return(error);
896         }
897
898         /*
899          * Allocate map for TX descriptor list.
900          */
901         error = bus_dma_tag_create(sc->re_parent_tag, RE_RING_ALIGN,
902             0, BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL,
903             NULL, RE_TX_LIST_SZ, 1, RE_TX_LIST_SZ, BUS_DMA_ALLOCNOW,
904             &sc->re_ldata.re_tx_list_tag);
905         if (error) {
906                 device_printf(dev, "could not allocate dma tag\n");
907                 return(error);
908         }
909
910         /* Allocate DMA'able memory for the TX ring */
911
912         error = bus_dmamem_alloc(sc->re_ldata.re_tx_list_tag,
913             (void **)&sc->re_ldata.re_tx_list, BUS_DMA_WAITOK | BUS_DMA_ZERO,
914             &sc->re_ldata.re_tx_list_map);
915         if (error) {
916                 device_printf(dev, "could not allocate TX ring\n");
917                 return(error);
918         }
919
920         /* Load the map for the TX ring. */
921
922         error = bus_dmamap_load(sc->re_ldata.re_tx_list_tag,
923              sc->re_ldata.re_tx_list_map, sc->re_ldata.re_tx_list,
924              RE_TX_LIST_SZ, re_dma_map_addr,
925              &sc->re_ldata.re_tx_list_addr, BUS_DMA_NOWAIT);
926         if (error) {
927                 device_printf(dev, "could not get addres of TX ring\n");
928                 return(error);
929         }
930
931         /* Create DMA maps for TX buffers */
932
933         for (i = 0; i < RE_TX_DESC_CNT; i++) {
934                 error = bus_dmamap_create(sc->re_ldata.re_mtag, 0,
935                             &sc->re_ldata.re_tx_dmamap[i]);
936                 if (error) {
937                         device_printf(dev, "can't create DMA map for TX\n");
938                         return(error);
939                 }
940         }
941
942         /*
943          * Allocate map for RX descriptor list.
944          */
945         error = bus_dma_tag_create(sc->re_parent_tag, RE_RING_ALIGN,
946             0, BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL,
947             NULL, RE_TX_LIST_SZ, 1, RE_TX_LIST_SZ, BUS_DMA_ALLOCNOW,
948             &sc->re_ldata.re_rx_list_tag);
949         if (error) {
950                 device_printf(dev, "could not allocate dma tag\n");
951                 return(error);
952         }
953
954         /* Allocate DMA'able memory for the RX ring */
955
956         error = bus_dmamem_alloc(sc->re_ldata.re_rx_list_tag,
957             (void **)&sc->re_ldata.re_rx_list, BUS_DMA_WAITOK | BUS_DMA_ZERO,
958             &sc->re_ldata.re_rx_list_map);
959         if (error) {
960                 device_printf(dev, "could not allocate RX ring\n");
961                 return(error);
962         }
963
964         /* Load the map for the RX ring. */
965
966         error = bus_dmamap_load(sc->re_ldata.re_rx_list_tag,
967              sc->re_ldata.re_rx_list_map, sc->re_ldata.re_rx_list,
968              RE_TX_LIST_SZ, re_dma_map_addr,
969              &sc->re_ldata.re_rx_list_addr, BUS_DMA_NOWAIT);
970         if (error) {
971                 device_printf(dev, "could not get address of RX ring\n");
972                 return(error);
973         }
974
975         /* Create DMA maps for RX buffers */
976
977         for (i = 0; i < RE_RX_DESC_CNT; i++) {
978                 error = bus_dmamap_create(sc->re_ldata.re_mtag, 0,
979                             &sc->re_ldata.re_rx_dmamap[i]);
980                 if (error) {
981                         device_printf(dev, "can't create DMA map for RX\n");
982                         return(ENOMEM);
983                 }
984         }
985
986         return(0);
987 }
988
989 /*
990  * Attach the interface. Allocate softc structures, do ifmedia
991  * setup and ethernet/BPF attach.
992  */
993 static int
994 re_attach(device_t dev)
995 {
996         struct re_softc *sc = device_get_softc(dev);
997         struct ifnet *ifp;
998         struct re_hwrev *hw_rev;
999         uint8_t eaddr[ETHER_ADDR_LEN];
1000         int hwrev;
1001         u_int16_t re_did = 0;
1002         int error = 0, rid, i;
1003
1004         callout_init(&sc->re_timer);
1005
1006 #ifndef BURN_BRIDGES
1007         /*
1008          * Handle power management nonsense.
1009          */
1010
1011         if (pci_get_powerstate(dev) != PCI_POWERSTATE_D0) {
1012                 uint32_t membase, irq;
1013
1014                 /* Save important PCI config data. */
1015                 membase = pci_read_config(dev, RE_PCI_LOMEM, 4);
1016                 irq = pci_read_config(dev, PCIR_INTLINE, 4);
1017
1018                 /* Reset the power state. */
1019                 device_printf(dev, "chip is is in D%d power mode "
1020                     "-- setting to D0\n", pci_get_powerstate(dev));
1021
1022                 pci_set_powerstate(dev, PCI_POWERSTATE_D0);
1023
1024                 /* Restore PCI config data. */
1025                 pci_write_config(dev, RE_PCI_LOMEM, membase, 4);
1026                 pci_write_config(dev, PCIR_INTLINE, irq, 4);
1027         }
1028 #endif
1029         /*
1030          * Map control/status registers.
1031          */
1032         pci_enable_busmaster(dev);
1033
1034         rid = RE_PCI_LOIO;
1035         sc->re_res = bus_alloc_resource_any(dev, SYS_RES_IOPORT, &rid,
1036                                             RF_ACTIVE);
1037
1038         if (sc->re_res == NULL) {
1039                 device_printf(dev, "couldn't map ports/memory\n");
1040                 error = ENXIO;
1041                 goto fail;
1042         }
1043
1044         sc->re_btag = rman_get_bustag(sc->re_res);
1045         sc->re_bhandle = rman_get_bushandle(sc->re_res);
1046
1047         /* Allocate interrupt */
1048         rid = 0;
1049         sc->re_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
1050                                             RF_SHAREABLE | RF_ACTIVE);
1051
1052         if (sc->re_irq == NULL) {
1053                 device_printf(dev, "couldn't map interrupt\n");
1054                 error = ENXIO;
1055                 goto fail;
1056         }
1057
1058         /* Reset the adapter. */
1059         re_reset(sc);
1060
1061         hwrev = CSR_READ_4(sc, RE_TXCFG) & RE_TXCFG_HWREV;
1062         for (hw_rev = re_hwrevs; hw_rev->re_desc != NULL; hw_rev++) {
1063                 if (hw_rev->re_rev == hwrev) {
1064                         sc->re_type = hw_rev->re_type;
1065                         break;
1066                 }
1067         }
1068
1069         if (sc->re_type == RE_8169) {
1070                 /* Set RX length mask */
1071                 sc->re_rxlenmask = RE_RDESC_STAT_GFRAGLEN;
1072
1073                 /* Force station address autoload from the EEPROM */
1074                 CSR_WRITE_1(sc, RE_EECMD, RE_EEMODE_AUTOLOAD);
1075                 for (i = 0; i < RE_TIMEOUT; i++) {
1076                         if ((CSR_READ_1(sc, RE_EECMD) & RE_EEMODE_AUTOLOAD) == 0)
1077                                 break;
1078                         DELAY(100);
1079                 }
1080                 if (i == RE_TIMEOUT)
1081                         device_printf(dev, "eeprom autoload timed out\n");
1082
1083                 for (i = 0; i < ETHER_ADDR_LEN; i++)
1084                         eaddr[i] = CSR_READ_1(sc, RE_IDR0 + i);
1085         } else {
1086                 uint16_t as[3];
1087
1088                 /* Set RX length mask */
1089                 sc->re_rxlenmask = RE_RDESC_STAT_FRAGLEN;
1090
1091                 sc->re_eecmd_read = RE_EECMD_READ_6BIT;
1092                 re_read_eeprom(sc, (caddr_t)&re_did, 0, 1, 0);
1093                 if (re_did != 0x8129)
1094                         sc->re_eecmd_read = RE_EECMD_READ_8BIT;
1095
1096                 /*
1097                  * Get station address from the EEPROM.
1098                  */
1099                 re_read_eeprom(sc, (caddr_t)as, RE_EE_EADDR, 3, 0);
1100                 for (i = 0; i < 3; i++) {
1101                         eaddr[(i * 2) + 0] = as[i] & 0xff;
1102                         eaddr[(i * 2) + 1] = as[i] >> 8;
1103                 }
1104         }
1105
1106         /*
1107          * Allocate the parent bus DMA tag appropriate for PCI.
1108          */
1109 #define RE_NSEG_NEW 32
1110         error = bus_dma_tag_create(NULL,        /* parent */
1111                         1, 0,                   /* alignment, boundary */
1112                         BUS_SPACE_MAXADDR_32BIT,/* lowaddr */
1113                         BUS_SPACE_MAXADDR,      /* highaddr */
1114                         NULL, NULL,             /* filter, filterarg */
1115                         MAXBSIZE, RE_NSEG_NEW,  /* maxsize, nsegments */
1116                         BUS_SPACE_MAXSIZE_32BIT,/* maxsegsize */
1117                         BUS_DMA_ALLOCNOW,       /* flags */
1118                         &sc->re_parent_tag);
1119         if (error)
1120                 goto fail;
1121
1122         error = re_allocmem(dev, sc);
1123
1124         if (error)
1125                 goto fail;
1126
1127         /* Do MII setup */
1128         if (mii_phy_probe(dev, &sc->re_miibus,
1129             re_ifmedia_upd, re_ifmedia_sts)) {
1130                 device_printf(dev, "MII without any phy!\n");
1131                 error = ENXIO;
1132                 goto fail;
1133         }
1134
1135         ifp = &sc->arpcom.ac_if;
1136         ifp->if_softc = sc;
1137         if_initname(ifp, device_get_name(dev), device_get_unit(dev));
1138         ifp->if_mtu = ETHERMTU;
1139         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
1140         ifp->if_ioctl = re_ioctl;
1141         ifp->if_capabilities = IFCAP_VLAN_MTU;
1142         ifp->if_start = re_start;
1143         ifp->if_capabilities |= IFCAP_HWCSUM|IFCAP_VLAN_HWTAGGING;
1144 #ifdef DEVICE_POLLING
1145         ifp->if_poll = re_poll;
1146 #endif
1147         ifp->if_watchdog = re_watchdog;
1148         ifp->if_init = re_init;
1149         if (sc->re_type == RE_8169)
1150                 ifp->if_baudrate = 1000000000;
1151         else
1152                 ifp->if_baudrate = 100000000;
1153         ifq_set_maxlen(&ifp->if_snd, RE_IFQ_MAXLEN);
1154         ifq_set_ready(&ifp->if_snd);
1155 #ifdef RE_DISABLE_HWCSUM
1156         ifp->if_capenable = ifp->if_capabilities & ~IFCAP_HWCSUM;
1157         ifp->if_hwassist = 0;
1158 #else
1159         ifp->if_capenable = ifp->if_capabilities;
1160         ifp->if_hwassist = RE_CSUM_FEATURES;
1161 #endif
1162
1163         /*
1164          * Call MI attach routine.
1165          */
1166         ether_ifattach(ifp, eaddr, NULL);
1167
1168         lwkt_serialize_enter(ifp->if_serializer);
1169         /* Perform hardware diagnostic. */
1170         error = re_diag(sc);
1171         lwkt_serialize_exit(ifp->if_serializer);
1172
1173         if (error) {
1174                 device_printf(dev, "hardware diagnostic failure\n");
1175                 ether_ifdetach(ifp);
1176                 goto fail;
1177         }
1178
1179         /* Hook interrupt last to avoid having to lock softc */
1180         error = bus_setup_intr(dev, sc->re_irq, INTR_NETSAFE, re_intr, sc,
1181                                &sc->re_intrhand, ifp->if_serializer);
1182
1183         if (error) {
1184                 device_printf(dev, "couldn't set up irq\n");
1185                 ether_ifdetach(ifp);
1186                 goto fail;
1187         }
1188
1189 fail:
1190         if (error)
1191                 re_detach(dev);
1192
1193         return (error);
1194 }
1195
1196 /*
1197  * Shutdown hardware and free up resources. This can be called any
1198  * time after the mutex has been initialized. It is called in both
1199  * the error case in attach and the normal detach case so it needs
1200  * to be careful about only freeing resources that have actually been
1201  * allocated.
1202  */
1203 static int
1204 re_detach(device_t dev)
1205 {
1206         struct re_softc *sc = device_get_softc(dev);
1207         struct ifnet *ifp = &sc->arpcom.ac_if;
1208         int i;
1209
1210         lwkt_serialize_enter(ifp->if_serializer);
1211
1212         /* These should only be active if attach succeeded */
1213         if (device_is_attached(dev)) {
1214                 re_stop(sc);
1215                 ether_ifdetach(ifp);
1216         }
1217         if (sc->re_miibus)
1218                 device_delete_child(dev, sc->re_miibus);
1219         bus_generic_detach(dev);
1220
1221         if (sc->re_intrhand)
1222                 bus_teardown_intr(dev, sc->re_irq, sc->re_intrhand);
1223
1224         if (sc->re_irq)
1225                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->re_irq);
1226         if (sc->re_res)
1227                 bus_release_resource(dev, SYS_RES_IOPORT, RE_PCI_LOIO,
1228                                      sc->re_res);
1229
1230         /* Unload and free the RX DMA ring memory and map */
1231
1232         if (sc->re_ldata.re_rx_list_tag) {
1233                 bus_dmamap_unload(sc->re_ldata.re_rx_list_tag,
1234                     sc->re_ldata.re_rx_list_map);
1235                 bus_dmamem_free(sc->re_ldata.re_rx_list_tag,
1236                     sc->re_ldata.re_rx_list,
1237                     sc->re_ldata.re_rx_list_map);
1238                 bus_dma_tag_destroy(sc->re_ldata.re_rx_list_tag);
1239         }
1240
1241         /* Unload and free the TX DMA ring memory and map */
1242
1243         if (sc->re_ldata.re_tx_list_tag) {
1244                 bus_dmamap_unload(sc->re_ldata.re_tx_list_tag,
1245                     sc->re_ldata.re_tx_list_map);
1246                 bus_dmamem_free(sc->re_ldata.re_tx_list_tag,
1247                     sc->re_ldata.re_tx_list,
1248                     sc->re_ldata.re_tx_list_map);
1249                 bus_dma_tag_destroy(sc->re_ldata.re_tx_list_tag);
1250         }
1251
1252         /* Destroy all the RX and TX buffer maps */
1253
1254         if (sc->re_ldata.re_mtag) {
1255                 for (i = 0; i < RE_TX_DESC_CNT; i++)
1256                         bus_dmamap_destroy(sc->re_ldata.re_mtag,
1257                             sc->re_ldata.re_tx_dmamap[i]);
1258                 for (i = 0; i < RE_RX_DESC_CNT; i++)
1259                         bus_dmamap_destroy(sc->re_ldata.re_mtag,
1260                             sc->re_ldata.re_rx_dmamap[i]);
1261                 bus_dma_tag_destroy(sc->re_ldata.re_mtag);
1262         }
1263
1264         /* Unload and free the stats buffer and map */
1265
1266         if (sc->re_ldata.re_stag) {
1267                 bus_dmamap_unload(sc->re_ldata.re_stag,
1268                     sc->re_ldata.re_rx_list_map);
1269                 bus_dmamem_free(sc->re_ldata.re_stag,
1270                     sc->re_ldata.re_stats,
1271                     sc->re_ldata.re_smap);
1272                 bus_dma_tag_destroy(sc->re_ldata.re_stag);
1273         }
1274
1275         if (sc->re_parent_tag)
1276                 bus_dma_tag_destroy(sc->re_parent_tag);
1277
1278         lwkt_serialize_exit(ifp->if_serializer);
1279         return(0);
1280 }
1281
1282 static int
1283 re_newbuf(struct re_softc *sc, int idx, struct mbuf *m)
1284 {
1285         struct re_dmaload_arg arg;
1286         struct mbuf *n = NULL;
1287         int error;
1288
1289         if (m == NULL) {
1290                 n = m_getcl(MB_DONTWAIT, MT_DATA, M_PKTHDR);
1291                 if (n == NULL)
1292                         return(ENOBUFS);
1293                 m = n;
1294         } else
1295                 m->m_data = m->m_ext.ext_buf;
1296
1297         /*
1298          * Initialize mbuf length fields and fixup
1299          * alignment so that the frame payload is
1300          * longword aligned.
1301          */
1302         m->m_len = m->m_pkthdr.len = MCLBYTES;
1303         m_adj(m, ETHER_ALIGN);
1304
1305         arg.sc = sc;
1306         arg.re_idx = idx;
1307         arg.re_maxsegs = 1;
1308         arg.re_flags = 0;
1309         arg.re_ring = sc->re_ldata.re_rx_list;
1310
1311         error = bus_dmamap_load_mbuf(sc->re_ldata.re_mtag,
1312             sc->re_ldata.re_rx_dmamap[idx], m, re_dma_map_desc,
1313             &arg, BUS_DMA_NOWAIT);
1314         if (error || arg.re_maxsegs != 1) {
1315                 if (n != NULL)
1316                         m_freem(n);
1317                 return (ENOMEM);
1318         }
1319
1320         sc->re_ldata.re_rx_list[idx].re_cmdstat |= htole32(RE_RDESC_CMD_OWN);
1321         sc->re_ldata.re_rx_mbuf[idx] = m;
1322
1323         bus_dmamap_sync(sc->re_ldata.re_mtag, sc->re_ldata.re_rx_dmamap[idx],
1324                         BUS_DMASYNC_PREREAD);
1325
1326         return(0);
1327 }
1328
1329 static int
1330 re_tx_list_init(struct re_softc *sc)
1331 {
1332         bzero(sc->re_ldata.re_tx_list, RE_TX_LIST_SZ);
1333         bzero(&sc->re_ldata.re_tx_mbuf, RE_TX_DESC_CNT * sizeof(struct mbuf *));
1334
1335         bus_dmamap_sync(sc->re_ldata.re_tx_list_tag,
1336                         sc->re_ldata.re_tx_list_map, BUS_DMASYNC_PREWRITE);
1337         sc->re_ldata.re_tx_prodidx = 0;
1338         sc->re_ldata.re_tx_considx = 0;
1339         sc->re_ldata.re_tx_free = RE_TX_DESC_CNT;
1340
1341         return(0);
1342 }
1343
1344 static int
1345 re_rx_list_init(struct re_softc *sc)
1346 {
1347         int i, error;
1348
1349         bzero(sc->re_ldata.re_rx_list, RE_RX_LIST_SZ);
1350         bzero(&sc->re_ldata.re_rx_mbuf, RE_RX_DESC_CNT * sizeof(struct mbuf *));
1351
1352         for (i = 0; i < RE_RX_DESC_CNT; i++) {
1353                 error = re_newbuf(sc, i, NULL);
1354                 if (error)
1355                         return(error);
1356         }
1357
1358         /* Flush the RX descriptors */
1359
1360         bus_dmamap_sync(sc->re_ldata.re_rx_list_tag,
1361             sc->re_ldata.re_rx_list_map,
1362             BUS_DMASYNC_PREWRITE|BUS_DMASYNC_PREREAD);
1363
1364         sc->re_ldata.re_rx_prodidx = 0;
1365         sc->re_head = sc->re_tail = NULL;
1366
1367         return(0);
1368 }
1369
1370 /*
1371  * RX handler for C+ and 8169. For the gigE chips, we support
1372  * the reception of jumbo frames that have been fragmented
1373  * across multiple 2K mbuf cluster buffers.
1374  */
1375 static void
1376 re_rxeof(struct re_softc *sc)
1377 {
1378         struct ifnet *ifp = &sc->arpcom.ac_if;
1379         struct mbuf *m;
1380         struct re_desc  *cur_rx;
1381         uint32_t rxstat, rxvlan;
1382         int i, total_len;
1383
1384         /* Invalidate the descriptor memory */
1385
1386         bus_dmamap_sync(sc->re_ldata.re_rx_list_tag,
1387                         sc->re_ldata.re_rx_list_map, BUS_DMASYNC_POSTREAD);
1388
1389         for (i = sc->re_ldata.re_rx_prodidx;
1390              RE_OWN(&sc->re_ldata.re_rx_list[i]) == 0 ; RE_DESC_INC(i)) {
1391                 cur_rx = &sc->re_ldata.re_rx_list[i];
1392                 m = sc->re_ldata.re_rx_mbuf[i];
1393                 total_len = RE_RXBYTES(cur_rx);
1394                 rxstat = le32toh(cur_rx->re_cmdstat);
1395                 rxvlan = le32toh(cur_rx->re_vlanctl);
1396
1397                 /* Invalidate the RX mbuf and unload its map */
1398
1399                 bus_dmamap_sync(sc->re_ldata.re_mtag,
1400                                 sc->re_ldata.re_rx_dmamap[i],
1401                                 BUS_DMASYNC_POSTWRITE);
1402                 bus_dmamap_unload(sc->re_ldata.re_mtag,
1403                                   sc->re_ldata.re_rx_dmamap[i]);
1404
1405                 if ((rxstat & RE_RDESC_STAT_EOF) == 0) {
1406                         m->m_len = MCLBYTES - ETHER_ALIGN;
1407                         if (sc->re_head == NULL) {
1408                                 sc->re_head = sc->re_tail = m;
1409                         } else {
1410                                 sc->re_tail->m_next = m;
1411                                 sc->re_tail = m;
1412                         }
1413                         re_newbuf(sc, i, NULL);
1414                         continue;
1415                 }
1416
1417                 /*
1418                  * NOTE: for the 8139C+, the frame length field
1419                  * is always 12 bits in size, but for the gigE chips,
1420                  * it is 13 bits (since the max RX frame length is 16K).
1421                  * Unfortunately, all 32 bits in the status word
1422                  * were already used, so to make room for the extra
1423                  * length bit, RealTek took out the 'frame alignment
1424                  * error' bit and shifted the other status bits
1425                  * over one slot. The OWN, EOR, FS and LS bits are
1426                  * still in the same places. We have already extracted
1427                  * the frame length and checked the OWN bit, so rather
1428                  * than using an alternate bit mapping, we shift the
1429                  * status bits one space to the right so we can evaluate
1430                  * them using the 8169 status as though it was in the
1431                  * same format as that of the 8139C+.
1432                  */
1433                 if (sc->re_type == RE_8169)
1434                         rxstat >>= 1;
1435
1436                 if (rxstat & RE_RDESC_STAT_RXERRSUM) {
1437                         ifp->if_ierrors++;
1438                         /*
1439                          * If this is part of a multi-fragment packet,
1440                          * discard all the pieces.
1441                          */
1442                         if (sc->re_head != NULL) {
1443                                 m_freem(sc->re_head);
1444                                 sc->re_head = sc->re_tail = NULL;
1445                         }
1446                         re_newbuf(sc, i, m);
1447                         continue;
1448                 }
1449
1450                 /*
1451                  * If allocating a replacement mbuf fails,
1452                  * reload the current one.
1453                  */
1454
1455                 if (re_newbuf(sc, i, NULL)) {
1456                         ifp->if_ierrors++;
1457                         if (sc->re_head != NULL) {
1458                                 m_freem(sc->re_head);
1459                                 sc->re_head = sc->re_tail = NULL;
1460                         }
1461                         re_newbuf(sc, i, m);
1462                         continue;
1463                 }
1464
1465                 if (sc->re_head != NULL) {
1466                         m->m_len = total_len % (MCLBYTES - ETHER_ALIGN);
1467                         /* 
1468                          * Special case: if there's 4 bytes or less
1469                          * in this buffer, the mbuf can be discarded:
1470                          * the last 4 bytes is the CRC, which we don't
1471                          * care about anyway.
1472                          */
1473                         if (m->m_len <= ETHER_CRC_LEN) {
1474                                 sc->re_tail->m_len -=
1475                                     (ETHER_CRC_LEN - m->m_len);
1476                                 m_freem(m);
1477                         } else {
1478                                 m->m_len -= ETHER_CRC_LEN;
1479                                 sc->re_tail->m_next = m;
1480                         }
1481                         m = sc->re_head;
1482                         sc->re_head = sc->re_tail = NULL;
1483                         m->m_pkthdr.len = total_len - ETHER_CRC_LEN;
1484                 } else
1485                         m->m_pkthdr.len = m->m_len =
1486                             (total_len - ETHER_CRC_LEN);
1487
1488                 ifp->if_ipackets++;
1489                 m->m_pkthdr.rcvif = ifp;
1490
1491                 /* Do RX checksumming if enabled */
1492
1493                 if (ifp->if_capenable & IFCAP_RXCSUM) {
1494
1495                         /* Check IP header checksum */
1496                         if (rxstat & RE_RDESC_STAT_PROTOID)
1497                                 m->m_pkthdr.csum_flags |= CSUM_IP_CHECKED;
1498                         if ((rxstat & RE_RDESC_STAT_IPSUMBAD) == 0)
1499                                 m->m_pkthdr.csum_flags |= CSUM_IP_VALID;
1500
1501                         /* Check TCP/UDP checksum */
1502                         if ((RE_TCPPKT(rxstat) &&
1503                             (rxstat & RE_RDESC_STAT_TCPSUMBAD) == 0) ||
1504                             (RE_UDPPKT(rxstat) &&
1505                             (rxstat & RE_RDESC_STAT_UDPSUMBAD)) == 0) {
1506                                 m->m_pkthdr.csum_flags |=
1507                                     CSUM_DATA_VALID|CSUM_PSEUDO_HDR;
1508                                 m->m_pkthdr.csum_data = 0xffff;
1509                         }
1510                 }
1511
1512                 if (rxvlan & RE_RDESC_VLANCTL_TAG) {
1513                         VLAN_INPUT_TAG(m,
1514                            be16toh((rxvlan & RE_RDESC_VLANCTL_DATA)));
1515                 } else {
1516                         ifp->if_input(ifp, m);
1517                 }
1518         }
1519
1520         /* Flush the RX DMA ring */
1521
1522         bus_dmamap_sync(sc->re_ldata.re_rx_list_tag,
1523                         sc->re_ldata.re_rx_list_map,
1524                         BUS_DMASYNC_PREWRITE|BUS_DMASYNC_PREREAD);
1525
1526         sc->re_ldata.re_rx_prodidx = i;
1527 }
1528
1529 static void
1530 re_txeof(struct re_softc *sc)
1531 {
1532         struct ifnet *ifp = &sc->arpcom.ac_if;
1533         uint32_t txstat;
1534         int idx;
1535
1536         /* Invalidate the TX descriptor list */
1537
1538         bus_dmamap_sync(sc->re_ldata.re_tx_list_tag,
1539             sc->re_ldata.re_tx_list_map,
1540             BUS_DMASYNC_POSTREAD);
1541
1542         for (idx = sc->re_ldata.re_tx_considx;
1543              idx != sc->re_ldata.re_tx_prodidx; RE_DESC_INC(idx)) {
1544                 txstat = le32toh(sc->re_ldata.re_tx_list[idx].re_cmdstat);
1545                 if (txstat & RE_TDESC_CMD_OWN)
1546                         break;
1547
1548                 /*
1549                  * We only stash mbufs in the last descriptor
1550                  * in a fragment chain, which also happens to
1551                  * be the only place where the TX status bits
1552                  * are valid.
1553                  */
1554                 if (txstat & RE_TDESC_CMD_EOF) {
1555                         m_freem(sc->re_ldata.re_tx_mbuf[idx]);
1556                         sc->re_ldata.re_tx_mbuf[idx] = NULL;
1557                         bus_dmamap_unload(sc->re_ldata.re_mtag,
1558                             sc->re_ldata.re_tx_dmamap[idx]);
1559                         if (txstat & (RE_TDESC_STAT_EXCESSCOL|
1560                             RE_TDESC_STAT_COLCNT))
1561                                 ifp->if_collisions++;
1562                         if (txstat & RE_TDESC_STAT_TXERRSUM)
1563                                 ifp->if_oerrors++;
1564                         else
1565                                 ifp->if_opackets++;
1566                 }
1567                 sc->re_ldata.re_tx_free++;
1568         }
1569
1570         /* No changes made to the TX ring, so no flush needed */
1571         if (idx != sc->re_ldata.re_tx_considx) {
1572                 sc->re_ldata.re_tx_considx = idx;
1573                 ifp->if_flags &= ~IFF_OACTIVE;
1574                 ifp->if_timer = 0;
1575         }
1576
1577         /*
1578          * If not all descriptors have been released reaped yet,
1579          * reload the timer so that we will eventually get another
1580          * interrupt that will cause us to re-enter this routine.
1581          * This is done in case the transmitter has gone idle.
1582          */
1583         if (sc->re_ldata.re_tx_free != RE_TX_DESC_CNT)
1584                 CSR_WRITE_4(sc, RE_TIMERCNT, 1);
1585 }
1586
1587 static void
1588 re_tick(void *xsc)
1589 {
1590         struct re_softc *sc = xsc;
1591
1592         lwkt_serialize_enter(sc->arpcom.ac_if.if_serializer);
1593         re_tick_serialized(xsc);
1594         lwkt_serialize_exit(sc->arpcom.ac_if.if_serializer);
1595 }
1596
1597 static void
1598 re_tick_serialized(void *xsc)
1599 {
1600         struct re_softc *sc = xsc;
1601         struct mii_data *mii;
1602
1603         mii = device_get_softc(sc->re_miibus);
1604         mii_tick(mii);
1605
1606         callout_reset(&sc->re_timer, hz, re_tick, sc);
1607 }
1608
1609 #ifdef DEVICE_POLLING
1610
1611 static void
1612 re_poll(struct ifnet *ifp, enum poll_cmd cmd, int count)
1613 {
1614         struct re_softc *sc = ifp->if_softc;
1615
1616         switch(cmd) {
1617         case POLL_REGISTER:
1618                 /* disable interrupts */
1619                 CSR_WRITE_2(sc, RE_IMR, 0x0000);
1620                 break;
1621         case POLL_DEREGISTER:
1622                 /* enable interrupts */
1623                 CSR_WRITE_2(sc, RE_IMR, RE_INTRS_CPLUS);
1624                 break;
1625         default:
1626                 sc->rxcycles = count;
1627                 re_rxeof(sc);
1628                 re_txeof(sc);
1629
1630                 if (!ifq_is_empty(&ifp->if_snd))
1631                         (*ifp->if_start)(ifp);
1632
1633                 if (cmd == POLL_AND_CHECK_STATUS) { /* also check status register */
1634                         uint16_t       status;
1635
1636                         status = CSR_READ_2(sc, RE_ISR);
1637                         if (status == 0xffff)
1638                                 return;
1639                         if (status)
1640                                 CSR_WRITE_2(sc, RE_ISR, status);
1641
1642                         /*
1643                          * XXX check behaviour on receiver stalls.
1644                          */
1645
1646                         if (status & RE_ISR_SYSTEM_ERR) {
1647                                 re_reset(sc);
1648                                 re_init(sc);
1649                         }
1650                 }
1651                 break;
1652         }
1653 }
1654 #endif /* DEVICE_POLLING */
1655
1656 static void
1657 re_intr(void *arg)
1658 {
1659         struct re_softc *sc = arg;
1660         struct ifnet *ifp = &sc->arpcom.ac_if;
1661         uint16_t status;
1662
1663         if (sc->suspended || (ifp->if_flags & IFF_UP) == 0)
1664                 return;
1665
1666         for (;;) {
1667                 status = CSR_READ_2(sc, RE_ISR);
1668                 /* If the card has gone away the read returns 0xffff. */
1669                 if (status == 0xffff)
1670                         break;
1671                 if (status)
1672                         CSR_WRITE_2(sc, RE_ISR, status);
1673
1674                 if ((status & RE_INTRS_CPLUS) == 0)
1675                         break;
1676
1677                 if (status & RE_ISR_RX_OK)
1678                         re_rxeof(sc);
1679
1680                 if (status & RE_ISR_RX_ERR)
1681                         re_rxeof(sc);
1682
1683                 if ((status & RE_ISR_TIMEOUT_EXPIRED) ||
1684                     (status & RE_ISR_TX_ERR) ||
1685                     (status & RE_ISR_TX_DESC_UNAVAIL))
1686                         re_txeof(sc);
1687
1688                 if (status & RE_ISR_SYSTEM_ERR) {
1689                         re_reset(sc);
1690                         re_init(sc);
1691                 }
1692
1693                 if (status & RE_ISR_LINKCHG)
1694                         re_tick_serialized(sc);
1695         }
1696
1697         if (!ifq_is_empty(&ifp->if_snd))
1698                 (*ifp->if_start)(ifp);
1699 }
1700
1701 static int
1702 re_encap(struct re_softc *sc, struct mbuf **m_head, int *idx, int *called_defrag)
1703 {
1704         struct ifnet *ifp = &sc->arpcom.ac_if;
1705         struct mbuf *m, *m_new = NULL;
1706         struct re_dmaload_arg   arg;
1707         bus_dmamap_t            map;
1708         int                     error;
1709
1710         *called_defrag = 0;
1711         if (sc->re_ldata.re_tx_free <= 4)
1712                 return(EFBIG);
1713
1714         m = *m_head;
1715
1716         /*
1717          * Set up checksum offload. Note: checksum offload bits must
1718          * appear in all descriptors of a multi-descriptor transmit
1719          * attempt. (This is according to testing done with an 8169
1720          * chip. I'm not sure if this is a requirement or a bug.)
1721          */
1722
1723         arg.re_flags = 0;
1724
1725         if (m->m_pkthdr.csum_flags & CSUM_IP)
1726                 arg.re_flags |= RE_TDESC_CMD_IPCSUM;
1727         if (m->m_pkthdr.csum_flags & CSUM_TCP)
1728                 arg.re_flags |= RE_TDESC_CMD_TCPCSUM;
1729         if (m->m_pkthdr.csum_flags & CSUM_UDP)
1730                 arg.re_flags |= RE_TDESC_CMD_UDPCSUM;
1731
1732         arg.sc = sc;
1733         arg.re_idx = *idx;
1734         arg.re_maxsegs = sc->re_ldata.re_tx_free;
1735         if (arg.re_maxsegs > 4)
1736                 arg.re_maxsegs -= 4;
1737         arg.re_ring = sc->re_ldata.re_tx_list;
1738
1739         map = sc->re_ldata.re_tx_dmamap[*idx];
1740         error = bus_dmamap_load_mbuf(sc->re_ldata.re_mtag, map,
1741             m, re_dma_map_desc, &arg, BUS_DMA_NOWAIT);
1742
1743         if (error && error != EFBIG) {
1744                 if_printf(ifp, "can't map mbuf (error %d)\n", error);
1745                 return(ENOBUFS);
1746         }
1747
1748         /* Too many segments to map, coalesce into a single mbuf */
1749
1750         if (error || arg.re_maxsegs == 0) {
1751                 m_new = m_defrag_nofree(m, MB_DONTWAIT);
1752                 if (m_new == NULL)
1753                         return(1);
1754                 else {
1755                         m = m_new;
1756                         *m_head = m;
1757                 }
1758
1759                 *called_defrag = 1;
1760                 arg.sc = sc;
1761                 arg.re_idx = *idx;
1762                 arg.re_maxsegs = sc->re_ldata.re_tx_free;
1763                 arg.re_ring = sc->re_ldata.re_tx_list;
1764
1765                 error = bus_dmamap_load_mbuf(sc->re_ldata.re_mtag, map,
1766                     m, re_dma_map_desc, &arg, BUS_DMA_NOWAIT);
1767                 if (error) {
1768                         m_freem(m);
1769                         if_printf(ifp, "can't map mbuf (error %d)\n", error);
1770                         return(EFBIG);
1771                 }
1772         }
1773
1774         /*
1775          * Insure that the map for this transmission
1776          * is placed at the array index of the last descriptor
1777          * in this chain.
1778          */
1779         sc->re_ldata.re_tx_dmamap[*idx] =
1780             sc->re_ldata.re_tx_dmamap[arg.re_idx];
1781         sc->re_ldata.re_tx_dmamap[arg.re_idx] = map;
1782
1783         sc->re_ldata.re_tx_mbuf[arg.re_idx] = m;
1784         sc->re_ldata.re_tx_free -= arg.re_maxsegs;
1785
1786         /*
1787          * Set up hardware VLAN tagging. Note: vlan tag info must
1788          * appear in the first descriptor of a multi-descriptor
1789          * transmission attempt.
1790          */
1791
1792         if ((m->m_flags & (M_PROTO1|M_PKTHDR)) == (M_PROTO1|M_PKTHDR) &&
1793             m->m_pkthdr.rcvif != NULL &&
1794             m->m_pkthdr.rcvif->if_type == IFT_L2VLAN) {
1795                 struct ifvlan *ifv;
1796                 ifv = m->m_pkthdr.rcvif->if_softc;
1797                 if (ifv != NULL)
1798                         sc->re_ldata.re_tx_list[*idx].re_vlanctl =
1799                             htole32(htobe16(ifv->ifv_tag) | RE_TDESC_VLANCTL_TAG);
1800         }
1801
1802         /* Transfer ownership of packet to the chip. */
1803
1804         sc->re_ldata.re_tx_list[arg.re_idx].re_cmdstat |=
1805             htole32(RE_TDESC_CMD_OWN);
1806         if (*idx != arg.re_idx)
1807                 sc->re_ldata.re_tx_list[*idx].re_cmdstat |=
1808                     htole32(RE_TDESC_CMD_OWN);
1809
1810         RE_DESC_INC(arg.re_idx);
1811         *idx = arg.re_idx;
1812
1813         return(0);
1814 }
1815
1816 /*
1817  * Main transmit routine for C+ and gigE NICs.
1818  */
1819
1820 static void
1821 re_start(struct ifnet *ifp)
1822 {
1823         struct re_softc *sc = ifp->if_softc;
1824         struct mbuf *m_head;
1825         struct mbuf *m_head2;
1826         int called_defrag, idx, need_trans;
1827
1828         idx = sc->re_ldata.re_tx_prodidx;
1829
1830         need_trans = 0;
1831         while (sc->re_ldata.re_tx_mbuf[idx] == NULL) {
1832                 m_head = ifq_poll(&ifp->if_snd);
1833                 if (m_head == NULL)
1834                         break;
1835                 m_head2 = m_head;
1836                 if (re_encap(sc, &m_head2, &idx, &called_defrag)) {
1837                         /*
1838                          * If we could not encapsulate the defragged packet,
1839                          * the returned m_head2 is garbage and we must dequeue
1840                          * and throw away the original packet.
1841                          */
1842                         if (called_defrag) {
1843                                 ifq_dequeue(&ifp->if_snd, m_head);
1844                                 m_freem(m_head);
1845                         }
1846                         ifp->if_flags |= IFF_OACTIVE;
1847                         break;
1848                 }
1849
1850                 /*
1851                  * Clean out the packet we encapsulated.  If we defragged
1852                  * the packet the m_head2 is the one that got encapsulated
1853                  * and the original must be thrown away.  Otherwise m_head2
1854                  * *IS* the original.
1855                  */
1856                 ifq_dequeue(&ifp->if_snd, m_head);
1857                 if (called_defrag)
1858                         m_freem(m_head);
1859                 need_trans = 1;
1860
1861                 /*
1862                  * If there's a BPF listener, bounce a copy of this frame
1863                  * to him.
1864                  */
1865                 BPF_MTAP(ifp, m_head2);
1866         }
1867
1868         if (!need_trans) {
1869                 return;
1870         }
1871
1872         /* Flush the TX descriptors */
1873         bus_dmamap_sync(sc->re_ldata.re_tx_list_tag,
1874                         sc->re_ldata.re_tx_list_map,
1875                         BUS_DMASYNC_PREWRITE|BUS_DMASYNC_PREREAD);
1876
1877         sc->re_ldata.re_tx_prodidx = idx;
1878
1879         /*
1880          * RealTek put the TX poll request register in a different
1881          * location on the 8169 gigE chip. I don't know why.
1882          */
1883         if (sc->re_type == RE_8169)
1884                 CSR_WRITE_2(sc, RE_GTXSTART, RE_TXSTART_START);
1885         else
1886                 CSR_WRITE_2(sc, RE_TXSTART, RE_TXSTART_START);
1887
1888         /*
1889          * Use the countdown timer for interrupt moderation.
1890          * 'TX done' interrupts are disabled. Instead, we reset the
1891          * countdown timer, which will begin counting until it hits
1892          * the value in the TIMERINT register, and then trigger an
1893          * interrupt. Each time we write to the TIMERCNT register,
1894          * the timer count is reset to 0.
1895          */
1896         CSR_WRITE_4(sc, RE_TIMERCNT, 1);
1897
1898         /*
1899          * Set a timeout in case the chip goes out to lunch.
1900          */
1901         ifp->if_timer = 5;
1902 }
1903
1904 static void
1905 re_init(void *xsc)
1906 {
1907         struct re_softc *sc = xsc;
1908         struct ifnet *ifp = &sc->arpcom.ac_if;
1909         struct mii_data *mii;
1910         uint32_t rxcfg = 0;
1911
1912         mii = device_get_softc(sc->re_miibus);
1913
1914         /*
1915          * Cancel pending I/O and free all RX/TX buffers.
1916          */
1917         re_stop(sc);
1918
1919         /*
1920          * Enable C+ RX and TX mode, as well as VLAN stripping and
1921          * RX checksum offload. We must configure the C+ register
1922          * before all others.
1923          */
1924         CSR_WRITE_2(sc, RE_CPLUS_CMD, RE_CPLUSCMD_RXENB | RE_CPLUSCMD_TXENB |
1925                     RE_CPLUSCMD_PCI_MRW | RE_CPLUSCMD_VLANSTRIP |
1926                     (ifp->if_capenable & IFCAP_RXCSUM ?
1927                      RE_CPLUSCMD_RXCSUM_ENB : 0));
1928
1929         /*
1930          * Init our MAC address.  Even though the chipset
1931          * documentation doesn't mention it, we need to enter "Config
1932          * register write enable" mode to modify the ID registers.
1933          */
1934         CSR_WRITE_1(sc, RE_EECMD, RE_EEMODE_WRITECFG);
1935         CSR_WRITE_STREAM_4(sc, RE_IDR0,
1936             *(u_int32_t *)(&sc->arpcom.ac_enaddr[0]));
1937         CSR_WRITE_STREAM_4(sc, RE_IDR4,
1938             *(u_int32_t *)(&sc->arpcom.ac_enaddr[4]));
1939         CSR_WRITE_1(sc, RE_EECMD, RE_EEMODE_OFF);
1940
1941         /*
1942          * For C+ mode, initialize the RX descriptors and mbufs.
1943          */
1944         re_rx_list_init(sc);
1945         re_tx_list_init(sc);
1946
1947         /*
1948          * Enable transmit and receive.
1949          */
1950         CSR_WRITE_1(sc, RE_COMMAND, RE_CMD_TX_ENB|RE_CMD_RX_ENB);
1951
1952         /*
1953          * Set the initial TX and RX configuration.
1954          */
1955         if (sc->re_testmode) {
1956                 if (sc->re_type == RE_8169)
1957                         CSR_WRITE_4(sc, RE_TXCFG,
1958                                     RE_TXCFG_CONFIG | RE_LOOPTEST_ON);
1959                 else
1960                         CSR_WRITE_4(sc, RE_TXCFG,
1961                                     RE_TXCFG_CONFIG | RE_LOOPTEST_ON_CPLUS);
1962         } else
1963                 CSR_WRITE_4(sc, RE_TXCFG, RE_TXCFG_CONFIG);
1964         CSR_WRITE_4(sc, RE_RXCFG, RE_RXCFG_CONFIG);
1965
1966         /* Set the individual bit to receive frames for this host only. */
1967         rxcfg = CSR_READ_4(sc, RE_RXCFG);
1968         rxcfg |= RE_RXCFG_RX_INDIV;
1969
1970         /* If we want promiscuous mode, set the allframes bit. */
1971         if (ifp->if_flags & IFF_PROMISC) {
1972                 rxcfg |= RE_RXCFG_RX_ALLPHYS;
1973                 CSR_WRITE_4(sc, RE_RXCFG, rxcfg);
1974         } else {
1975                 rxcfg &= ~RE_RXCFG_RX_ALLPHYS;
1976                 CSR_WRITE_4(sc, RE_RXCFG, rxcfg);
1977         }
1978
1979         /*
1980          * Set capture broadcast bit to capture broadcast frames.
1981          */
1982         if (ifp->if_flags & IFF_BROADCAST) {
1983                 rxcfg |= RE_RXCFG_RX_BROAD;
1984                 CSR_WRITE_4(sc, RE_RXCFG, rxcfg);
1985         } else {
1986                 rxcfg &= ~RE_RXCFG_RX_BROAD;
1987                 CSR_WRITE_4(sc, RE_RXCFG, rxcfg);
1988         }
1989
1990         /*
1991          * Program the multicast filter, if necessary.
1992          */
1993         re_setmulti(sc);
1994
1995 #ifdef DEVICE_POLLING
1996         /*
1997          * Disable interrupts if we are polling.
1998          */
1999         if (ifp->if_flags & IFF_POLLING)
2000                 CSR_WRITE_2(sc, RE_IMR, 0);
2001         else    /* otherwise ... */
2002 #endif /* DEVICE_POLLING */
2003         /*
2004          * Enable interrupts.
2005          */
2006         if (sc->re_testmode)
2007                 CSR_WRITE_2(sc, RE_IMR, 0);
2008         else
2009                 CSR_WRITE_2(sc, RE_IMR, RE_INTRS_CPLUS);
2010
2011         /* Set initial TX threshold */
2012         sc->re_txthresh = RE_TX_THRESH_INIT;
2013
2014         /* Start RX/TX process. */
2015         CSR_WRITE_4(sc, RE_MISSEDPKT, 0);
2016 #ifdef notdef
2017         /* Enable receiver and transmitter. */
2018         CSR_WRITE_1(sc, RE_COMMAND, RE_CMD_TX_ENB|RE_CMD_RX_ENB);
2019 #endif
2020         /*
2021          * Load the addresses of the RX and TX lists into the chip.
2022          */
2023
2024         CSR_WRITE_4(sc, RE_RXLIST_ADDR_HI,
2025             RE_ADDR_HI(sc->re_ldata.re_rx_list_addr));
2026         CSR_WRITE_4(sc, RE_RXLIST_ADDR_LO,
2027             RE_ADDR_LO(sc->re_ldata.re_rx_list_addr));
2028
2029         CSR_WRITE_4(sc, RE_TXLIST_ADDR_HI,
2030             RE_ADDR_HI(sc->re_ldata.re_tx_list_addr));
2031         CSR_WRITE_4(sc, RE_TXLIST_ADDR_LO,
2032             RE_ADDR_LO(sc->re_ldata.re_tx_list_addr));
2033
2034         CSR_WRITE_1(sc, RE_EARLY_TX_THRESH, 16);
2035
2036         /*
2037          * Initialize the timer interrupt register so that
2038          * a timer interrupt will be generated once the timer
2039          * reaches a certain number of ticks. The timer is
2040          * reloaded on each transmit. This gives us TX interrupt
2041          * moderation, which dramatically improves TX frame rate.
2042          */
2043
2044         if (sc->re_type == RE_8169)
2045                 CSR_WRITE_4(sc, RE_TIMERINT_8169, 0x800);
2046         else
2047                 CSR_WRITE_4(sc, RE_TIMERINT, 0x400);
2048
2049         /*
2050          * For 8169 gigE NICs, set the max allowed RX packet
2051          * size so we can receive jumbo frames.
2052          */
2053         if (sc->re_type == RE_8169)
2054                 CSR_WRITE_2(sc, RE_MAXRXPKTLEN, 16383);
2055
2056         if (sc->re_testmode) {
2057                 return;
2058         }
2059
2060         mii_mediachg(mii);
2061
2062         CSR_WRITE_1(sc, RE_CFG1, RE_CFG1_DRVLOAD|RE_CFG1_FULLDUPLEX);
2063
2064         ifp->if_flags |= IFF_RUNNING;
2065         ifp->if_flags &= ~IFF_OACTIVE;
2066
2067         callout_reset(&sc->re_timer, hz, re_tick, sc);
2068 }
2069
2070 /*
2071  * Set media options.
2072  */
2073 static int
2074 re_ifmedia_upd(struct ifnet *ifp)
2075 {
2076         struct re_softc *sc = ifp->if_softc;
2077         struct mii_data *mii;
2078
2079         mii = device_get_softc(sc->re_miibus);
2080         mii_mediachg(mii);
2081
2082         return(0);
2083 }
2084
2085 /*
2086  * Report current media status.
2087  */
2088 static void
2089 re_ifmedia_sts(struct ifnet *ifp, struct ifmediareq *ifmr)
2090 {
2091         struct re_softc *sc = ifp->if_softc;
2092         struct mii_data *mii;
2093
2094         mii = device_get_softc(sc->re_miibus);
2095
2096         mii_pollstat(mii);
2097         ifmr->ifm_active = mii->mii_media_active;
2098         ifmr->ifm_status = mii->mii_media_status;
2099 }
2100
2101 static int
2102 re_ioctl(struct ifnet *ifp, u_long command, caddr_t data, struct ucred *cr)
2103 {
2104         struct re_softc *sc = ifp->if_softc;
2105         struct ifreq *ifr = (struct ifreq *) data;
2106         struct mii_data *mii;
2107         int error = 0;
2108
2109         switch(command) {
2110         case SIOCSIFMTU:
2111                 if (ifr->ifr_mtu > RE_JUMBO_MTU)
2112                         error = EINVAL;
2113                 ifp->if_mtu = ifr->ifr_mtu;
2114                 break;
2115         case SIOCSIFFLAGS:
2116                 if (ifp->if_flags & IFF_UP)
2117                         re_init(sc);
2118                 else if (ifp->if_flags & IFF_RUNNING)
2119                                 re_stop(sc);
2120                 error = 0;
2121                 break;
2122         case SIOCADDMULTI:
2123         case SIOCDELMULTI:
2124                 re_setmulti(sc);
2125                 error = 0;
2126                 break;
2127         case SIOCGIFMEDIA:
2128         case SIOCSIFMEDIA:
2129                 mii = device_get_softc(sc->re_miibus);
2130                 error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
2131                 break;
2132         case SIOCSIFCAP:
2133                 ifp->if_capenable &= ~(IFCAP_HWCSUM);
2134                 ifp->if_capenable |=
2135                     ifr->ifr_reqcap & (IFCAP_HWCSUM);
2136                 if (ifp->if_capenable & IFCAP_TXCSUM)
2137                         ifp->if_hwassist = RE_CSUM_FEATURES;
2138                 else
2139                         ifp->if_hwassist = 0;
2140                 if (ifp->if_flags & IFF_RUNNING)
2141                         re_init(sc);
2142                 break;
2143         default:
2144                 error = ether_ioctl(ifp, command, data);
2145                 break;
2146         }
2147         return(error);
2148 }
2149
2150 static void
2151 re_watchdog(struct ifnet *ifp)
2152 {
2153         struct re_softc *sc = ifp->if_softc;
2154
2155         if_printf(ifp, "watchdog timeout\n");
2156
2157         ifp->if_oerrors++;
2158
2159         re_txeof(sc);
2160         re_rxeof(sc);
2161
2162         re_init(sc);
2163
2164         if (!ifq_is_empty(&ifp->if_snd))
2165                 ifp->if_start(ifp);
2166 }
2167
2168 /*
2169  * Stop the adapter and free any mbufs allocated to the
2170  * RX and TX lists.
2171  */
2172 static void
2173 re_stop(struct re_softc *sc)
2174 {
2175         struct ifnet *ifp = &sc->arpcom.ac_if;
2176         int i;
2177
2178         ifp->if_timer = 0;
2179         callout_stop(&sc->re_timer);
2180
2181         ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
2182
2183         CSR_WRITE_1(sc, RE_COMMAND, 0x00);
2184         CSR_WRITE_2(sc, RE_IMR, 0x0000);
2185
2186         if (sc->re_head != NULL) {
2187                 m_freem(sc->re_head);
2188                 sc->re_head = sc->re_tail = NULL;
2189         }
2190
2191         /* Free the TX list buffers. */
2192         for (i = 0; i < RE_TX_DESC_CNT; i++) {
2193                 if (sc->re_ldata.re_tx_mbuf[i] != NULL) {
2194                         bus_dmamap_unload(sc->re_ldata.re_mtag,
2195                                           sc->re_ldata.re_tx_dmamap[i]);
2196                         m_freem(sc->re_ldata.re_tx_mbuf[i]);
2197                         sc->re_ldata.re_tx_mbuf[i] = NULL;
2198                 }
2199         }
2200
2201         /* Free the RX list buffers. */
2202         for (i = 0; i < RE_RX_DESC_CNT; i++) {
2203                 if (sc->re_ldata.re_rx_mbuf[i] != NULL) {
2204                         bus_dmamap_unload(sc->re_ldata.re_mtag,
2205                                           sc->re_ldata.re_rx_dmamap[i]);
2206                         m_freem(sc->re_ldata.re_rx_mbuf[i]);
2207                         sc->re_ldata.re_rx_mbuf[i] = NULL;
2208                 }
2209         }
2210 }
2211
2212 /*
2213  * Device suspend routine.  Stop the interface and save some PCI
2214  * settings in case the BIOS doesn't restore them properly on
2215  * resume.
2216  */
2217 static int
2218 re_suspend(device_t dev)
2219 {
2220 #ifndef BURN_BRIDGES
2221         int i;
2222 #endif
2223         struct re_softc *sc = device_get_softc(dev);
2224
2225         re_stop(sc);
2226
2227 #ifndef BURN_BRIDGES
2228         for (i = 0; i < 5; i++)
2229                 sc->saved_maps[i] = pci_read_config(dev, PCIR_MAPS + i * 4, 4);
2230         sc->saved_biosaddr = pci_read_config(dev, PCIR_BIOS, 4);
2231         sc->saved_intline = pci_read_config(dev, PCIR_INTLINE, 1);
2232         sc->saved_cachelnsz = pci_read_config(dev, PCIR_CACHELNSZ, 1);
2233         sc->saved_lattimer = pci_read_config(dev, PCIR_LATTIMER, 1);
2234 #endif
2235
2236         sc->suspended = 1;
2237
2238         return (0);
2239 }
2240
2241 /*
2242  * Device resume routine.  Restore some PCI settings in case the BIOS
2243  * doesn't, re-enable busmastering, and restart the interface if
2244  * appropriate.
2245  */
2246 static int
2247 re_resume(device_t dev)
2248 {
2249         struct re_softc *sc = device_get_softc(dev);
2250         struct ifnet *ifp = &sc->arpcom.ac_if;
2251 #ifndef BURN_BRIDGES
2252         int i;
2253 #endif
2254
2255 #ifndef BURN_BRIDGES
2256         /* better way to do this? */
2257         for (i = 0; i < 5; i++)
2258                 pci_write_config(dev, PCIR_MAPS + i * 4, sc->saved_maps[i], 4);
2259         pci_write_config(dev, PCIR_BIOS, sc->saved_biosaddr, 4);
2260         pci_write_config(dev, PCIR_INTLINE, sc->saved_intline, 1);
2261         pci_write_config(dev, PCIR_CACHELNSZ, sc->saved_cachelnsz, 1);
2262         pci_write_config(dev, PCIR_LATTIMER, sc->saved_lattimer, 1);
2263
2264         /* reenable busmastering */
2265         pci_enable_busmaster(dev);
2266         pci_enable_io(dev, SYS_RES_IOPORT);
2267 #endif
2268
2269         /* reinitialize interface if necessary */
2270         if (ifp->if_flags & IFF_UP)
2271                 re_init(sc);
2272
2273         sc->suspended = 0;
2274
2275         return (0);
2276 }
2277
2278 /*
2279  * Stop all chip I/O so that the kernel's probe routines don't
2280  * get confused by errant DMAs when rebooting.
2281  */
2282 static void
2283 re_shutdown(device_t dev)
2284 {
2285         struct re_softc *sc = device_get_softc(dev);
2286
2287         re_stop(sc);
2288 }