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