]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/pci/if_rl.c
Remove __P.
[FreeBSD/FreeBSD.git] / sys / pci / if_rl.c
1 /*
2  * Copyright (c) 1997, 1998
3  *      Bill Paul <wpaul@ctr.columbia.edu>.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by Bill Paul.
16  * 4. Neither the name of the author nor the names of any co-contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30  * THE POSSIBILITY OF SUCH DAMAGE.
31  *
32  * $FreeBSD$
33  */
34
35 /*
36  * RealTek 8129/8139 PCI NIC driver
37  *
38  * Supports several extremely cheap PCI 10/100 adapters based on
39  * the RealTek chipset. Datasheets can be obtained from
40  * www.realtek.com.tw.
41  *
42  * Written by Bill Paul <wpaul@ctr.columbia.edu>
43  * Electrical Engineering Department
44  * Columbia University, New York City
45  */
46
47 /*
48  * The RealTek 8139 PCI NIC redefines the meaning of 'low end.' This is
49  * probably the worst PCI ethernet controller ever made, with the possible
50  * exception of the FEAST chip made by SMC. The 8139 supports bus-master
51  * DMA, but it has a terrible interface that nullifies any performance
52  * gains that bus-master DMA usually offers.
53  *
54  * For transmission, the chip offers a series of four TX descriptor
55  * registers. Each transmit frame must be in a contiguous buffer, aligned
56  * on a longword (32-bit) boundary. This means we almost always have to
57  * do mbuf copies in order to transmit a frame, except in the unlikely
58  * case where a) the packet fits into a single mbuf, and b) the packet
59  * is 32-bit aligned within the mbuf's data area. The presence of only
60  * four descriptor registers means that we can never have more than four
61  * packets queued for transmission at any one time.
62  *
63  * Reception is not much better. The driver has to allocate a single large
64  * buffer area (up to 64K in size) into which the chip will DMA received
65  * frames. Because we don't know where within this region received packets
66  * will begin or end, we have no choice but to copy data from the buffer
67  * area into mbufs in order to pass the packets up to the higher protocol
68  * levels.
69  *
70  * It's impossible given this rotten design to really achieve decent
71  * performance at 100Mbps, unless you happen to have a 400Mhz PII or
72  * some equally overmuscled CPU to drive it.
73  *
74  * On the bright side, the 8139 does have a built-in PHY, although
75  * rather than using an MDIO serial interface like most other NICs, the
76  * PHY registers are directly accessible through the 8139's register
77  * space. The 8139 supports autonegotiation, as well as a 64-bit multicast
78  * filter.
79  *
80  * The 8129 chip is an older version of the 8139 that uses an external PHY
81  * chip. The 8129 has a serial MDIO interface for accessing the MII where
82  * the 8139 lets you directly access the on-board PHY registers. We need
83  * to select which interface to use depending on the chip type.
84  */
85
86 #include <sys/param.h>
87 #include <sys/systm.h>
88 #include <sys/sockio.h>
89 #include <sys/mbuf.h>
90 #include <sys/malloc.h>
91 #include <sys/kernel.h>
92 #include <sys/socket.h>
93
94 #include <net/if.h>
95 #include <net/if_arp.h>
96 #include <net/ethernet.h>
97 #include <net/if_dl.h>
98 #include <net/if_media.h>
99
100 #include <net/bpf.h>
101
102 #include <machine/bus_pio.h>
103 #include <machine/bus_memio.h>
104 #include <machine/bus.h>
105 #include <machine/resource.h>
106 #include <sys/bus.h>
107 #include <sys/rman.h>
108
109 #include <dev/mii/mii.h>
110 #include <dev/mii/miivar.h>
111
112 #include <pci/pcireg.h>
113 #include <pci/pcivar.h>
114
115 MODULE_DEPEND(rl, miibus, 1, 1, 1);
116
117 /* "controller miibus0" required.  See GENERIC if you get errors here. */
118 #include "miibus_if.h"
119
120 /*
121  * Default to using PIO access for this driver. On SMP systems,
122  * there appear to be problems with memory mapped mode: it looks like
123  * doing too many memory mapped access back to back in rapid succession
124  * can hang the bus. I'm inclined to blame this on crummy design/construction
125  * on the part of RealTek. Memory mapped mode does appear to work on
126  * uniprocessor systems though.
127  */
128 #define RL_USEIOSPACE
129
130 #include <pci/if_rlreg.h>
131
132 #ifndef lint
133 static const char rcsid[] =
134   "$FreeBSD$";
135 #endif
136
137 /*
138  * Various supported device vendors/types and their names.
139  */
140 static struct rl_type rl_devs[] = {
141         { RT_VENDORID, RT_DEVICEID_8129,
142                 "RealTek 8129 10/100BaseTX" },
143         { RT_VENDORID, RT_DEVICEID_8139,
144                 "RealTek 8139 10/100BaseTX" },
145         { RT_VENDORID, RT_DEVICEID_8138,
146                 "RealTek 8139 10/100BaseTX CardBus" },
147         { ACCTON_VENDORID, ACCTON_DEVICEID_5030,
148                 "Accton MPX 5030/5038 10/100BaseTX" },
149         { DELTA_VENDORID, DELTA_DEVICEID_8139,
150                 "Delta Electronics 8139 10/100BaseTX" },
151         { ADDTRON_VENDORID, ADDTRON_DEVICEID_8139,
152                 "Addtron Technolgy 8139 10/100BaseTX" },
153         { DLINK_VENDORID, DLINK_DEVICEID_530TXPLUS,
154                 "D-Link DFE-530TX+ 10/100BaseTX" },
155         { 0, 0, NULL }
156 };
157
158 static int rl_probe             (device_t);
159 static int rl_attach            (device_t);
160 static int rl_detach            (device_t);
161
162 static int rl_encap             (struct rl_softc *, struct mbuf * );
163
164 static void rl_rxeof            (struct rl_softc *);
165 static void rl_txeof            (struct rl_softc *);
166 static void rl_intr             (void *);
167 static void rl_tick             (void *);
168 static void rl_start            (struct ifnet *);
169 static int rl_ioctl             (struct ifnet *, u_long, caddr_t);
170 static void rl_init             (void *);
171 static void rl_stop             (struct rl_softc *);
172 static void rl_watchdog         (struct ifnet *);
173 static int rl_suspend           (device_t);
174 static int rl_resume            (device_t);
175 static void rl_shutdown         (device_t);
176 static int rl_ifmedia_upd       (struct ifnet *);
177 static void rl_ifmedia_sts      (struct ifnet *, struct ifmediareq *);
178
179 static void rl_eeprom_putbyte   (struct rl_softc *, int);
180 static void rl_eeprom_getword   (struct rl_softc *, int, u_int16_t *);
181 static void rl_read_eeprom      (struct rl_softc *, caddr_t, int, int, int);
182 static void rl_mii_sync         (struct rl_softc *);
183 static void rl_mii_send         (struct rl_softc *, u_int32_t, int);
184 static int rl_mii_readreg       (struct rl_softc *, struct rl_mii_frame *);
185 static int rl_mii_writereg      (struct rl_softc *, struct rl_mii_frame *);
186
187 static int rl_miibus_readreg    (device_t, int, int);
188 static int rl_miibus_writereg   (device_t, int, int, int);
189 static void rl_miibus_statchg   (device_t);
190
191 static u_int8_t rl_calchash     (caddr_t);
192 static void rl_setmulti         (struct rl_softc *);
193 static void rl_reset            (struct rl_softc *);
194 static int rl_list_tx_init      (struct rl_softc *);
195
196 static void rl_dma_map_rxbuf    (void *, bus_dma_segment_t *, int, int);
197 static void rl_dma_map_txbuf    (void *, bus_dma_segment_t *, int, int);
198
199 #ifdef RL_USEIOSPACE
200 #define RL_RES                  SYS_RES_IOPORT
201 #define RL_RID                  RL_PCI_LOIO
202 #else
203 #define RL_RES                  SYS_RES_MEMORY
204 #define RL_RID                  RL_PCI_LOMEM
205 #endif
206
207 static device_method_t rl_methods[] = {
208         /* Device interface */
209         DEVMETHOD(device_probe,         rl_probe),
210         DEVMETHOD(device_attach,        rl_attach),
211         DEVMETHOD(device_detach,        rl_detach),
212         DEVMETHOD(device_suspend,       rl_suspend),
213         DEVMETHOD(device_resume,        rl_resume),
214         DEVMETHOD(device_shutdown,      rl_shutdown),
215
216         /* bus interface */
217         DEVMETHOD(bus_print_child,      bus_generic_print_child),
218         DEVMETHOD(bus_driver_added,     bus_generic_driver_added),
219
220         /* MII interface */
221         DEVMETHOD(miibus_readreg,       rl_miibus_readreg),
222         DEVMETHOD(miibus_writereg,      rl_miibus_writereg),
223         DEVMETHOD(miibus_statchg,       rl_miibus_statchg),
224
225         { 0, 0 }
226 };
227
228 static driver_t rl_driver = {
229         "rl",
230         rl_methods,
231         sizeof(struct rl_softc)
232 };
233
234 static devclass_t rl_devclass;
235
236 DRIVER_MODULE(if_rl, pci, rl_driver, rl_devclass, 0, 0);
237 DRIVER_MODULE(if_rl, cardbus, rl_driver, rl_devclass, 0, 0);
238 DRIVER_MODULE(miibus, rl, miibus_driver, miibus_devclass, 0, 0);
239
240 #define EE_SET(x)                                       \
241         CSR_WRITE_1(sc, RL_EECMD,                       \
242                 CSR_READ_1(sc, RL_EECMD) | x)
243
244 #define EE_CLR(x)                                       \
245         CSR_WRITE_1(sc, RL_EECMD,                       \
246                 CSR_READ_1(sc, RL_EECMD) & ~x)
247
248 static void
249 rl_dma_map_rxbuf(arg, segs, nseg, error)
250         void *arg;
251         bus_dma_segment_t *segs;
252         int nseg, error;
253 {
254         struct rl_softc *sc;
255
256         sc = arg;
257         CSR_WRITE_4(sc, RL_RXADDR, segs->ds_addr & 0xFFFFFFFF);
258
259         return;
260 }
261
262 static void
263 rl_dma_map_txbuf(arg, segs, nseg, error)
264         void *arg;
265         bus_dma_segment_t *segs;
266         int nseg, error;
267 {
268         struct rl_softc *sc;
269
270         sc = arg;
271         CSR_WRITE_4(sc, RL_CUR_TXADDR(sc), segs->ds_addr & 0xFFFFFFFF);
272
273         return;
274 }
275
276 /*
277  * Send a read command and address to the EEPROM, check for ACK.
278  */
279 static void rl_eeprom_putbyte(sc, addr)
280         struct rl_softc         *sc;
281         int                     addr;
282 {
283         register int            d, i;
284
285         d = addr | sc->rl_eecmd_read;
286
287         /*
288          * Feed in each bit and strobe the clock.
289          */
290         for (i = 0x400; i; i >>= 1) {
291                 if (d & i) {
292                         EE_SET(RL_EE_DATAIN);
293                 } else {
294                         EE_CLR(RL_EE_DATAIN);
295                 }
296                 DELAY(100);
297                 EE_SET(RL_EE_CLK);
298                 DELAY(150);
299                 EE_CLR(RL_EE_CLK);
300                 DELAY(100);
301         }
302
303         return;
304 }
305
306 /*
307  * Read a word of data stored in the EEPROM at address 'addr.'
308  */
309 static void rl_eeprom_getword(sc, addr, dest)
310         struct rl_softc         *sc;
311         int                     addr;
312         u_int16_t               *dest;
313 {
314         register int            i;
315         u_int16_t               word = 0;
316
317         /* Enter EEPROM access mode. */
318         CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_PROGRAM|RL_EE_SEL);
319
320         /*
321          * Send address of word we want to read.
322          */
323         rl_eeprom_putbyte(sc, addr);
324
325         CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_PROGRAM|RL_EE_SEL);
326
327         /*
328          * Start reading bits from EEPROM.
329          */
330         for (i = 0x8000; i; i >>= 1) {
331                 EE_SET(RL_EE_CLK);
332                 DELAY(100);
333                 if (CSR_READ_1(sc, RL_EECMD) & RL_EE_DATAOUT)
334                         word |= i;
335                 EE_CLR(RL_EE_CLK);
336                 DELAY(100);
337         }
338
339         /* Turn off EEPROM access mode. */
340         CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_OFF);
341
342         *dest = word;
343
344         return;
345 }
346
347 /*
348  * Read a sequence of words from the EEPROM.
349  */
350 static void rl_read_eeprom(sc, dest, off, cnt, swap)
351         struct rl_softc         *sc;
352         caddr_t                 dest;
353         int                     off;
354         int                     cnt;
355         int                     swap;
356 {
357         int                     i;
358         u_int16_t               word = 0, *ptr;
359
360         for (i = 0; i < cnt; i++) {
361                 rl_eeprom_getword(sc, off + i, &word);
362                 ptr = (u_int16_t *)(dest + (i * 2));
363                 if (swap)
364                         *ptr = ntohs(word);
365                 else
366                         *ptr = word;
367         }
368
369         return;
370 }
371
372
373 /*
374  * MII access routines are provided for the 8129, which
375  * doesn't have a built-in PHY. For the 8139, we fake things
376  * up by diverting rl_phy_readreg()/rl_phy_writereg() to the
377  * direct access PHY registers.
378  */
379 #define MII_SET(x)                                      \
380         CSR_WRITE_1(sc, RL_MII,                         \
381                 CSR_READ_1(sc, RL_MII) | x)
382
383 #define MII_CLR(x)                                      \
384         CSR_WRITE_1(sc, RL_MII,                         \
385                 CSR_READ_1(sc, RL_MII) & ~x)
386
387 /*
388  * Sync the PHYs by setting data bit and strobing the clock 32 times.
389  */
390 static void rl_mii_sync(sc)
391         struct rl_softc         *sc;
392 {
393         register int            i;
394
395         MII_SET(RL_MII_DIR|RL_MII_DATAOUT);
396
397         for (i = 0; i < 32; i++) {
398                 MII_SET(RL_MII_CLK);
399                 DELAY(1);
400                 MII_CLR(RL_MII_CLK);
401                 DELAY(1);
402         }
403
404         return;
405 }
406
407 /*
408  * Clock a series of bits through the MII.
409  */
410 static void rl_mii_send(sc, bits, cnt)
411         struct rl_softc         *sc;
412         u_int32_t               bits;
413         int                     cnt;
414 {
415         int                     i;
416
417         MII_CLR(RL_MII_CLK);
418
419         for (i = (0x1 << (cnt - 1)); i; i >>= 1) {
420                 if (bits & i) {
421                         MII_SET(RL_MII_DATAOUT);
422                 } else {
423                         MII_CLR(RL_MII_DATAOUT);
424                 }
425                 DELAY(1);
426                 MII_CLR(RL_MII_CLK);
427                 DELAY(1);
428                 MII_SET(RL_MII_CLK);
429         }
430 }
431
432 /*
433  * Read an PHY register through the MII.
434  */
435 static int rl_mii_readreg(sc, frame)
436         struct rl_softc         *sc;
437         struct rl_mii_frame     *frame;
438         
439 {
440         int                     i, ack;
441
442         RL_LOCK(sc);
443
444         /*
445          * Set up frame for RX.
446          */
447         frame->mii_stdelim = RL_MII_STARTDELIM;
448         frame->mii_opcode = RL_MII_READOP;
449         frame->mii_turnaround = 0;
450         frame->mii_data = 0;
451         
452         CSR_WRITE_2(sc, RL_MII, 0);
453
454         /*
455          * Turn on data xmit.
456          */
457         MII_SET(RL_MII_DIR);
458
459         rl_mii_sync(sc);
460
461         /*
462          * Send command/address info.
463          */
464         rl_mii_send(sc, frame->mii_stdelim, 2);
465         rl_mii_send(sc, frame->mii_opcode, 2);
466         rl_mii_send(sc, frame->mii_phyaddr, 5);
467         rl_mii_send(sc, frame->mii_regaddr, 5);
468
469         /* Idle bit */
470         MII_CLR((RL_MII_CLK|RL_MII_DATAOUT));
471         DELAY(1);
472         MII_SET(RL_MII_CLK);
473         DELAY(1);
474
475         /* Turn off xmit. */
476         MII_CLR(RL_MII_DIR);
477
478         /* Check for ack */
479         MII_CLR(RL_MII_CLK);
480         DELAY(1);
481         MII_SET(RL_MII_CLK);
482         DELAY(1);
483         ack = CSR_READ_2(sc, RL_MII) & RL_MII_DATAIN;
484
485         /*
486          * Now try reading data bits. If the ack failed, we still
487          * need to clock through 16 cycles to keep the PHY(s) in sync.
488          */
489         if (ack) {
490                 for(i = 0; i < 16; i++) {
491                         MII_CLR(RL_MII_CLK);
492                         DELAY(1);
493                         MII_SET(RL_MII_CLK);
494                         DELAY(1);
495                 }
496                 goto fail;
497         }
498
499         for (i = 0x8000; i; i >>= 1) {
500                 MII_CLR(RL_MII_CLK);
501                 DELAY(1);
502                 if (!ack) {
503                         if (CSR_READ_2(sc, RL_MII) & RL_MII_DATAIN)
504                                 frame->mii_data |= i;
505                         DELAY(1);
506                 }
507                 MII_SET(RL_MII_CLK);
508                 DELAY(1);
509         }
510
511 fail:
512
513         MII_CLR(RL_MII_CLK);
514         DELAY(1);
515         MII_SET(RL_MII_CLK);
516         DELAY(1);
517
518         RL_UNLOCK(sc);
519
520         if (ack)
521                 return(1);
522         return(0);
523 }
524
525 /*
526  * Write to a PHY register through the MII.
527  */
528 static int rl_mii_writereg(sc, frame)
529         struct rl_softc         *sc;
530         struct rl_mii_frame     *frame;
531         
532 {
533         RL_LOCK(sc);
534
535         /*
536          * Set up frame for TX.
537          */
538
539         frame->mii_stdelim = RL_MII_STARTDELIM;
540         frame->mii_opcode = RL_MII_WRITEOP;
541         frame->mii_turnaround = RL_MII_TURNAROUND;
542         
543         /*
544          * Turn on data output.
545          */
546         MII_SET(RL_MII_DIR);
547
548         rl_mii_sync(sc);
549
550         rl_mii_send(sc, frame->mii_stdelim, 2);
551         rl_mii_send(sc, frame->mii_opcode, 2);
552         rl_mii_send(sc, frame->mii_phyaddr, 5);
553         rl_mii_send(sc, frame->mii_regaddr, 5);
554         rl_mii_send(sc, frame->mii_turnaround, 2);
555         rl_mii_send(sc, frame->mii_data, 16);
556
557         /* Idle bit. */
558         MII_SET(RL_MII_CLK);
559         DELAY(1);
560         MII_CLR(RL_MII_CLK);
561         DELAY(1);
562
563         /*
564          * Turn off xmit.
565          */
566         MII_CLR(RL_MII_DIR);
567
568         RL_UNLOCK(sc);
569
570         return(0);
571 }
572
573 static int rl_miibus_readreg(dev, phy, reg)
574         device_t                dev;
575         int                     phy, reg;
576 {
577         struct rl_softc         *sc;
578         struct rl_mii_frame     frame;
579         u_int16_t               rval = 0;
580         u_int16_t               rl8139_reg = 0;
581
582         sc = device_get_softc(dev);
583         RL_LOCK(sc);
584
585         if (sc->rl_type == RL_8139) {
586                 /* Pretend the internal PHY is only at address 0 */
587                 if (phy) {
588                         RL_UNLOCK(sc);
589                         return(0);
590                 }
591                 switch(reg) {
592                 case MII_BMCR:
593                         rl8139_reg = RL_BMCR;
594                         break;
595                 case MII_BMSR:
596                         rl8139_reg = RL_BMSR;
597                         break;
598                 case MII_ANAR:
599                         rl8139_reg = RL_ANAR;
600                         break;
601                 case MII_ANER:
602                         rl8139_reg = RL_ANER;
603                         break;
604                 case MII_ANLPAR:
605                         rl8139_reg = RL_LPAR;
606                         break;
607                 case MII_PHYIDR1:
608                 case MII_PHYIDR2:
609                         RL_UNLOCK(sc);
610                         return(0);
611                         break;
612                 default:
613                         printf("rl%d: bad phy register\n", sc->rl_unit);
614                         RL_UNLOCK(sc);
615                         return(0);
616                 }
617                 rval = CSR_READ_2(sc, rl8139_reg);
618                 RL_UNLOCK(sc);
619                 return(rval);
620         }
621
622         bzero((char *)&frame, sizeof(frame));
623
624         frame.mii_phyaddr = phy;
625         frame.mii_regaddr = reg;
626         rl_mii_readreg(sc, &frame);
627         RL_UNLOCK(sc);
628
629         return(frame.mii_data);
630 }
631
632 static int rl_miibus_writereg(dev, phy, reg, data)
633         device_t                dev;
634         int                     phy, reg, data;
635 {
636         struct rl_softc         *sc;
637         struct rl_mii_frame     frame;
638         u_int16_t               rl8139_reg = 0;
639
640         sc = device_get_softc(dev);
641         RL_LOCK(sc);
642
643         if (sc->rl_type == RL_8139) {
644                 /* Pretend the internal PHY is only at address 0 */
645                 if (phy) {
646                         RL_UNLOCK(sc);
647                         return(0);
648                 }
649                 switch(reg) {
650                 case MII_BMCR:
651                         rl8139_reg = RL_BMCR;
652                         break;
653                 case MII_BMSR:
654                         rl8139_reg = RL_BMSR;
655                         break;
656                 case MII_ANAR:
657                         rl8139_reg = RL_ANAR;
658                         break;
659                 case MII_ANER:
660                         rl8139_reg = RL_ANER;
661                         break;
662                 case MII_ANLPAR:
663                         rl8139_reg = RL_LPAR;
664                         break;
665                 case MII_PHYIDR1:
666                 case MII_PHYIDR2:
667                         RL_UNLOCK(sc);
668                         return(0);
669                         break;
670                 default:
671                         printf("rl%d: bad phy register\n", sc->rl_unit);
672                         RL_UNLOCK(sc);
673                         return(0);
674                 }
675                 CSR_WRITE_2(sc, rl8139_reg, data);
676                 RL_UNLOCK(sc);
677                 return(0);
678         }
679
680         bzero((char *)&frame, sizeof(frame));
681
682         frame.mii_phyaddr = phy;
683         frame.mii_regaddr = reg;
684         frame.mii_data = data;
685
686         rl_mii_writereg(sc, &frame);
687
688         RL_UNLOCK(sc);
689         return(0);
690 }
691
692 static void rl_miibus_statchg(dev)
693         device_t                dev;
694 {
695         return;
696 }
697
698 /*
699  * Calculate CRC of a multicast group address, return the upper 6 bits.
700  */
701 static u_int8_t rl_calchash(addr)
702         caddr_t                 addr;
703 {
704         u_int32_t               crc, carry;
705         int                     i, j;
706         u_int8_t                c;
707
708         /* Compute CRC for the address value. */
709         crc = 0xFFFFFFFF; /* initial value */
710
711         for (i = 0; i < 6; i++) {
712                 c = *(addr + i);
713                 for (j = 0; j < 8; j++) {
714                         carry = ((crc & 0x80000000) ? 1 : 0) ^ (c & 0x01);
715                         crc <<= 1;
716                         c >>= 1;
717                         if (carry)
718                                 crc = (crc ^ 0x04c11db6) | carry;
719                 }
720         }
721
722         /* return the filter bit position */
723         return(crc >> 26);
724 }
725
726 /*
727  * Program the 64-bit multicast hash filter.
728  */
729 static void rl_setmulti(sc)
730         struct rl_softc         *sc;
731 {
732         struct ifnet            *ifp;
733         int                     h = 0;
734         u_int32_t               hashes[2] = { 0, 0 };
735         struct ifmultiaddr      *ifma;
736         u_int32_t               rxfilt;
737         int                     mcnt = 0;
738
739         ifp = &sc->arpcom.ac_if;
740
741         rxfilt = CSR_READ_4(sc, RL_RXCFG);
742
743         if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
744                 rxfilt |= RL_RXCFG_RX_MULTI;
745                 CSR_WRITE_4(sc, RL_RXCFG, rxfilt);
746                 CSR_WRITE_4(sc, RL_MAR0, 0xFFFFFFFF);
747                 CSR_WRITE_4(sc, RL_MAR4, 0xFFFFFFFF);
748                 return;
749         }
750
751         /* first, zot all the existing hash bits */
752         CSR_WRITE_4(sc, RL_MAR0, 0);
753         CSR_WRITE_4(sc, RL_MAR4, 0);
754
755         /* now program new ones */
756         TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
757                 if (ifma->ifma_addr->sa_family != AF_LINK)
758                         continue;
759                 h = rl_calchash(LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
760                 if (h < 32)
761                         hashes[0] |= (1 << h);
762                 else
763                         hashes[1] |= (1 << (h - 32));
764                 mcnt++;
765         }
766
767         if (mcnt)
768                 rxfilt |= RL_RXCFG_RX_MULTI;
769         else
770                 rxfilt &= ~RL_RXCFG_RX_MULTI;
771
772         CSR_WRITE_4(sc, RL_RXCFG, rxfilt);
773         CSR_WRITE_4(sc, RL_MAR0, hashes[0]);
774         CSR_WRITE_4(sc, RL_MAR4, hashes[1]);
775
776         return;
777 }
778
779 static void rl_reset(sc)
780         struct rl_softc         *sc;
781 {
782         register int            i;
783
784         CSR_WRITE_1(sc, RL_COMMAND, RL_CMD_RESET);
785
786         for (i = 0; i < RL_TIMEOUT; i++) {
787                 DELAY(10);
788                 if (!(CSR_READ_1(sc, RL_COMMAND) & RL_CMD_RESET))
789                         break;
790         }
791         if (i == RL_TIMEOUT)
792                 printf("rl%d: reset never completed!\n", sc->rl_unit);
793
794         return;
795 }
796
797 /*
798  * Probe for a RealTek 8129/8139 chip. Check the PCI vendor and device
799  * IDs against our list and return a device name if we find a match.
800  */
801 static int rl_probe(dev)
802         device_t                dev;
803 {
804         struct rl_type          *t;
805
806         t = rl_devs;
807
808         while(t->rl_name != NULL) {
809                 if ((pci_get_vendor(dev) == t->rl_vid) &&
810                     (pci_get_device(dev) == t->rl_did)) {
811                         device_set_desc(dev, t->rl_name);
812                         return(0);
813                 }
814                 t++;
815         }
816
817         return(ENXIO);
818 }
819
820 /*
821  * Attach the interface. Allocate softc structures, do ifmedia
822  * setup and ethernet/BPF attach.
823  */
824 static int rl_attach(dev)
825         device_t                dev;
826 {
827         u_char                  eaddr[ETHER_ADDR_LEN];
828         u_int32_t               command;
829         struct rl_softc         *sc;
830         struct ifnet            *ifp;
831         u_int16_t               rl_did = 0;
832         int                     unit, error = 0, rid;
833
834         sc = device_get_softc(dev);
835         unit = device_get_unit(dev);
836         bzero(sc, sizeof(struct rl_softc));
837
838         mtx_init(&sc->rl_mtx, device_get_nameunit(dev), MTX_DEF | MTX_RECURSE);
839         RL_LOCK(sc);
840
841         /*
842          * Handle power management nonsense.
843          */
844
845         if (pci_get_powerstate(dev) != PCI_POWERSTATE_D0) {
846                 u_int32_t               iobase, membase, irq;
847
848                 /* Save important PCI config data. */
849                 iobase = pci_read_config(dev, RL_PCI_LOIO, 4);
850                 membase = pci_read_config(dev, RL_PCI_LOMEM, 4);
851                 irq = pci_read_config(dev, RL_PCI_INTLINE, 4);
852
853                 /* Reset the power state. */
854                 printf("rl%d: chip is is in D%d power mode "
855                     "-- setting to D0\n", unit,
856                     pci_get_powerstate(dev));
857
858                 pci_set_powerstate(dev, PCI_POWERSTATE_D0);
859
860                 /* Restore PCI config data. */
861                 pci_write_config(dev, RL_PCI_LOIO, iobase, 4);
862                 pci_write_config(dev, RL_PCI_LOMEM, membase, 4);
863                 pci_write_config(dev, RL_PCI_INTLINE, irq, 4);
864         }
865
866         /*
867          * Map control/status registers.
868          */
869         pci_enable_busmaster(dev);
870         pci_enable_io(dev, SYS_RES_IOPORT);
871         pci_enable_io(dev, SYS_RES_MEMORY);
872         command = pci_read_config(dev, PCIR_COMMAND, 4);
873
874 #ifdef RL_USEIOSPACE
875         if (!(command & PCIM_CMD_PORTEN)) {
876                 printf("rl%d: failed to enable I/O ports!\n", unit);
877                 error = ENXIO;
878                 goto fail;
879         }
880 #else
881         if (!(command & PCIM_CMD_MEMEN)) {
882                 printf("rl%d: failed to enable memory mapping!\n", unit);
883                 error = ENXIO;
884                 goto fail;
885         }
886 #endif
887
888         rid = RL_RID; 
889         sc->rl_res = bus_alloc_resource(dev, RL_RES, &rid,
890             0, ~0, 1, RF_ACTIVE);
891
892         if (sc->rl_res == NULL) {
893                 printf ("rl%d: couldn't map ports/memory\n", unit);
894                 error = ENXIO;
895                 goto fail;
896         }
897
898         /* Detect the Realtek 8139B. For some reason, this chip is very
899          * unstable when left to autoselect the media
900          * The best workaround is to set the device to the required
901          * media type or to set it to the 10 Meg speed.
902          */
903
904         if ((rman_get_end(sc->rl_res)-rman_get_start(sc->rl_res))==0xff) {
905                 printf("rl%d: Realtek 8139B detected. Warning, this may be unstable in autoselect mode\n", unit);
906         }
907
908         sc->rl_btag = rman_get_bustag(sc->rl_res);
909         sc->rl_bhandle = rman_get_bushandle(sc->rl_res);
910
911         rid = 0;
912         sc->rl_irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1,
913             RF_SHAREABLE | RF_ACTIVE);
914
915         if (sc->rl_irq == NULL) {
916                 printf("rl%d: couldn't map interrupt\n", unit);
917                 bus_release_resource(dev, RL_RES, RL_RID, sc->rl_res);
918                 error = ENXIO;
919                 goto fail;
920         }
921
922         error = bus_setup_intr(dev, sc->rl_irq, INTR_TYPE_NET,
923             rl_intr, sc, &sc->rl_intrhand);
924
925         if (error) {
926                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->rl_irq);
927                 bus_release_resource(dev, RL_RES, RL_RID, sc->rl_res);
928                 printf("rl%d: couldn't set up irq\n", unit);
929                 goto fail;
930         }
931
932         callout_handle_init(&sc->rl_stat_ch);
933
934         /* Reset the adapter. */
935         rl_reset(sc);
936         sc->rl_eecmd_read = RL_EECMD_READ_6BIT;
937         rl_read_eeprom(sc, (caddr_t)&rl_did, 0, 1, 0);
938         if (rl_did != 0x8129)
939                 sc->rl_eecmd_read = RL_EECMD_READ_8BIT;
940
941         /*
942          * Get station address from the EEPROM.
943          */
944         rl_read_eeprom(sc, (caddr_t)&eaddr, RL_EE_EADDR, 3, 0);
945
946         /*
947          * A RealTek chip was detected. Inform the world.
948          */
949         printf("rl%d: Ethernet address: %6D\n", unit, eaddr, ":");
950
951         sc->rl_unit = unit;
952         bcopy(eaddr, (char *)&sc->arpcom.ac_enaddr, ETHER_ADDR_LEN);
953
954         /*
955          * Now read the exact device type from the EEPROM to find
956          * out if it's an 8129 or 8139.
957          */
958         rl_read_eeprom(sc, (caddr_t)&rl_did, RL_EE_PCI_DID, 1, 0);
959
960         if (rl_did == RT_DEVICEID_8139 || rl_did == ACCTON_DEVICEID_5030 ||
961             rl_did == DELTA_DEVICEID_8139 || rl_did == ADDTRON_DEVICEID_8139 ||
962             rl_did == RT_DEVICEID_8138 || rl_did == DLINK_DEVICEID_530TXPLUS)
963                 sc->rl_type = RL_8139;
964         else if (rl_did == RT_DEVICEID_8129)
965                 sc->rl_type = RL_8129;
966         else {
967                 printf("rl%d: unknown device ID: %x\n", unit, rl_did);
968                 bus_teardown_intr(dev, sc->rl_irq, sc->rl_intrhand);
969                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->rl_irq);
970                 bus_release_resource(dev, RL_RES, RL_RID, sc->rl_res);
971                 error = ENXIO;
972                 goto fail;
973         }
974
975         /*
976          * Allocate the parent bus DMA tag appropriate for PCI.
977          */
978 #define RL_NSEG_NEW 32
979          error = bus_dma_tag_create(NULL,       /* parent */ 
980                         1, 0,                   /* alignment, boundary */
981                         BUS_SPACE_MAXADDR_32BIT,/* lowaddr */
982                         BUS_SPACE_MAXADDR,      /* highaddr */
983                         NULL, NULL,             /* filter, filterarg */
984                         MAXBSIZE, RL_NSEG_NEW,  /* maxsize, nsegments */
985                         BUS_SPACE_MAXSIZE_32BIT,/* maxsegsize */ 
986                         BUS_DMA_ALLOCNOW,       /* flags */
987                         &sc->rl_parent_tag);
988
989         /*
990          * Now allocate a tag for the DMA descriptor lists.
991          * All of our lists are allocated as a contiguous block
992          * of memory.
993          */
994         error = bus_dma_tag_create(sc->rl_parent_tag,   /* parent */
995                         1, 0,                   /* alignment, boundary */
996                         BUS_SPACE_MAXADDR,      /* lowaddr */
997                         BUS_SPACE_MAXADDR,      /* highaddr */
998                         NULL, NULL,             /* filter, filterarg */
999                         RL_RXBUFLEN + 1518, 1,  /* maxsize,nsegments */
1000                         BUS_SPACE_MAXSIZE_32BIT,/* maxsegsize */
1001                         0,                      /* flags */
1002                         &sc->rl_tag);
1003
1004         /*
1005          * Now allocate a chunk of DMA-able memory based on the
1006          * tag we just created.
1007          */
1008         error = bus_dmamem_alloc(sc->rl_tag,
1009             (void **)&sc->rl_cdata.rl_rx_buf, BUS_DMA_NOWAIT,
1010             &sc->rl_cdata.rl_rx_dmamap);
1011
1012         if (sc->rl_cdata.rl_rx_buf == NULL) {
1013                 printf("rl%d: no memory for list buffers!\n", unit);
1014                 bus_teardown_intr(dev, sc->rl_irq, sc->rl_intrhand);
1015                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->rl_irq);
1016                 bus_release_resource(dev, RL_RES, RL_RID, sc->rl_res);
1017                 bus_dma_tag_destroy(sc->rl_tag);
1018                 error = ENXIO;
1019                 goto fail;
1020         }
1021
1022         /* Leave a few bytes before the start of the RX ring buffer. */
1023         sc->rl_cdata.rl_rx_buf_ptr = sc->rl_cdata.rl_rx_buf;
1024         sc->rl_cdata.rl_rx_buf += sizeof(u_int64_t);
1025
1026         /* Do MII setup */
1027         if (mii_phy_probe(dev, &sc->rl_miibus,
1028             rl_ifmedia_upd, rl_ifmedia_sts)) {
1029                 printf("rl%d: MII without any phy!\n", sc->rl_unit);
1030                 bus_teardown_intr(dev, sc->rl_irq, sc->rl_intrhand);
1031                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->rl_irq);
1032                 bus_release_resource(dev, RL_RES, RL_RID, sc->rl_res);
1033                 bus_dmamem_free(sc->rl_tag,
1034                     sc->rl_cdata.rl_rx_buf, sc->rl_cdata.rl_rx_dmamap);
1035                 bus_dma_tag_destroy(sc->rl_tag);
1036                 error = ENXIO;
1037                 goto fail;
1038         }
1039
1040         ifp = &sc->arpcom.ac_if;
1041         ifp->if_softc = sc;
1042         ifp->if_unit = unit;
1043         ifp->if_name = "rl";
1044         ifp->if_mtu = ETHERMTU;
1045         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
1046         ifp->if_ioctl = rl_ioctl;
1047         ifp->if_output = ether_output;
1048         ifp->if_start = rl_start;
1049         ifp->if_watchdog = rl_watchdog;
1050         ifp->if_init = rl_init;
1051         ifp->if_baudrate = 10000000;
1052         ifp->if_snd.ifq_maxlen = IFQ_MAXLEN;
1053
1054         /*
1055          * Call MI attach routine.
1056          */
1057         ether_ifattach(ifp, ETHER_BPF_SUPPORTED);
1058         RL_UNLOCK(sc);
1059         return(0);
1060
1061 fail:
1062         RL_UNLOCK(sc);
1063         mtx_destroy(&sc->rl_mtx);
1064         return(error);
1065 }
1066
1067 static int rl_detach(dev)
1068         device_t                dev;
1069 {
1070         struct rl_softc         *sc;
1071         struct ifnet            *ifp;
1072
1073         sc = device_get_softc(dev);
1074         RL_LOCK(sc);
1075         ifp = &sc->arpcom.ac_if;
1076
1077         ether_ifdetach(ifp, ETHER_BPF_SUPPORTED);
1078         rl_stop(sc);
1079
1080         bus_generic_detach(dev);
1081         device_delete_child(dev, sc->rl_miibus);
1082
1083         bus_teardown_intr(dev, sc->rl_irq, sc->rl_intrhand);
1084         bus_release_resource(dev, SYS_RES_IRQ, 0, sc->rl_irq);
1085         bus_release_resource(dev, RL_RES, RL_RID, sc->rl_res);
1086
1087         bus_dmamap_unload(sc->rl_tag, sc->rl_cdata.rl_rx_dmamap);
1088         bus_dmamem_free(sc->rl_tag, sc->rl_cdata.rl_rx_buf,
1089             sc->rl_cdata.rl_rx_dmamap);
1090         bus_dma_tag_destroy(sc->rl_tag);
1091         bus_dma_tag_destroy(sc->rl_parent_tag);
1092
1093         RL_UNLOCK(sc);
1094         mtx_destroy(&sc->rl_mtx);
1095
1096         return(0);
1097 }
1098
1099 /*
1100  * Initialize the transmit descriptors.
1101  */
1102 static int rl_list_tx_init(sc)
1103         struct rl_softc         *sc;
1104 {
1105         struct rl_chain_data    *cd;
1106         int                     i;
1107
1108         cd = &sc->rl_cdata;
1109         for (i = 0; i < RL_TX_LIST_CNT; i++) {
1110                 cd->rl_tx_chain[i] = NULL;
1111                 CSR_WRITE_4(sc,
1112                     RL_TXADDR0 + (i * sizeof(u_int32_t)), 0x0000000);
1113         }
1114
1115         sc->rl_cdata.cur_tx = 0;
1116         sc->rl_cdata.last_tx = 0;
1117
1118         return(0);
1119 }
1120
1121 /*
1122  * A frame has been uploaded: pass the resulting mbuf chain up to
1123  * the higher level protocols.
1124  *
1125  * You know there's something wrong with a PCI bus-master chip design
1126  * when you have to use m_devget().
1127  *
1128  * The receive operation is badly documented in the datasheet, so I'll
1129  * attempt to document it here. The driver provides a buffer area and
1130  * places its base address in the RX buffer start address register.
1131  * The chip then begins copying frames into the RX buffer. Each frame
1132  * is preceded by a 32-bit RX status word which specifies the length
1133  * of the frame and certain other status bits. Each frame (starting with
1134  * the status word) is also 32-bit aligned. The frame length is in the
1135  * first 16 bits of the status word; the lower 15 bits correspond with
1136  * the 'rx status register' mentioned in the datasheet.
1137  *
1138  * Note: to make the Alpha happy, the frame payload needs to be aligned
1139  * on a 32-bit boundary. To achieve this, we pass RL_ETHER_ALIGN (2 bytes)
1140  * as the offset argument to m_devget(). 
1141  */
1142 static void rl_rxeof(sc)
1143         struct rl_softc         *sc;
1144 {
1145         struct ether_header     *eh;
1146         struct mbuf             *m;
1147         struct ifnet            *ifp;
1148         int                     total_len = 0;
1149         u_int32_t               rxstat;
1150         caddr_t                 rxbufpos;
1151         int                     wrap = 0;
1152         u_int16_t               cur_rx;
1153         u_int16_t               limit;
1154         u_int16_t               rx_bytes = 0, max_bytes;
1155
1156         ifp = &sc->arpcom.ac_if;
1157
1158         bus_dmamap_sync(sc->rl_tag, sc->rl_cdata.rl_rx_dmamap,
1159             BUS_DMASYNC_POSTWRITE);
1160
1161         cur_rx = (CSR_READ_2(sc, RL_CURRXADDR) + 16) % RL_RXBUFLEN;
1162
1163         /* Do not try to read past this point. */
1164         limit = CSR_READ_2(sc, RL_CURRXBUF) % RL_RXBUFLEN;
1165
1166         if (limit < cur_rx)
1167                 max_bytes = (RL_RXBUFLEN - cur_rx) + limit;
1168         else
1169                 max_bytes = limit - cur_rx;
1170
1171         while((CSR_READ_1(sc, RL_COMMAND) & RL_CMD_EMPTY_RXBUF) == 0) {
1172                 rxbufpos = sc->rl_cdata.rl_rx_buf + cur_rx;
1173                 rxstat = *(u_int32_t *)rxbufpos;
1174
1175                 /*
1176                  * Here's a totally undocumented fact for you. When the
1177                  * RealTek chip is in the process of copying a packet into
1178                  * RAM for you, the length will be 0xfff0. If you spot a
1179                  * packet header with this value, you need to stop. The
1180                  * datasheet makes absolutely no mention of this and
1181                  * RealTek should be shot for this.
1182                  */
1183                 if ((u_int16_t)(rxstat >> 16) == RL_RXSTAT_UNFINISHED)
1184                         break;
1185         
1186                 if (!(rxstat & RL_RXSTAT_RXOK)) {
1187                         ifp->if_ierrors++;
1188                         rl_init(sc);
1189                         return;
1190                 }
1191
1192                 /* No errors; receive the packet. */    
1193                 total_len = rxstat >> 16;
1194                 rx_bytes += total_len + 4;
1195
1196                 /*
1197                  * XXX The RealTek chip includes the CRC with every
1198                  * received frame, and there's no way to turn this
1199                  * behavior off (at least, I can't find anything in
1200                  * the manual that explains how to do it) so we have
1201                  * to trim off the CRC manually.
1202                  */
1203                 total_len -= ETHER_CRC_LEN;
1204
1205                 /*
1206                  * Avoid trying to read more bytes than we know
1207                  * the chip has prepared for us.
1208                  */
1209                 if (rx_bytes > max_bytes)
1210                         break;
1211
1212                 rxbufpos = sc->rl_cdata.rl_rx_buf +
1213                         ((cur_rx + sizeof(u_int32_t)) % RL_RXBUFLEN);
1214
1215                 if (rxbufpos == (sc->rl_cdata.rl_rx_buf + RL_RXBUFLEN))
1216                         rxbufpos = sc->rl_cdata.rl_rx_buf;
1217
1218                 wrap = (sc->rl_cdata.rl_rx_buf + RL_RXBUFLEN) - rxbufpos;
1219
1220                 if (total_len > wrap) {
1221                         m = m_devget(rxbufpos, total_len, RL_ETHER_ALIGN, ifp,
1222                             NULL);
1223                         if (m == NULL) {
1224                                 ifp->if_ierrors++;
1225                         } else {
1226                                 m_copyback(m, wrap, total_len - wrap,
1227                                         sc->rl_cdata.rl_rx_buf);
1228                         }
1229                         cur_rx = (total_len - wrap + ETHER_CRC_LEN);
1230                 } else {
1231                         m = m_devget(rxbufpos, total_len, RL_ETHER_ALIGN, ifp,
1232                             NULL);
1233                         if (m == NULL) {
1234                                 ifp->if_ierrors++;
1235                         }
1236                         cur_rx += total_len + 4 + ETHER_CRC_LEN;
1237                 }
1238
1239                 /*
1240                  * Round up to 32-bit boundary.
1241                  */
1242                 cur_rx = (cur_rx + 3) & ~3;
1243                 CSR_WRITE_2(sc, RL_CURRXADDR, cur_rx - 16);
1244
1245                 if (m == NULL)
1246                         continue;
1247
1248                 eh = mtod(m, struct ether_header *);
1249                 ifp->if_ipackets++;
1250
1251                 /* Remove header from mbuf and pass it on. */
1252                 m_adj(m, sizeof(struct ether_header));
1253                 ether_input(ifp, eh, m);
1254         }
1255
1256         return;
1257 }
1258
1259 /*
1260  * A frame was downloaded to the chip. It's safe for us to clean up
1261  * the list buffers.
1262  */
1263 static void rl_txeof(sc)
1264         struct rl_softc         *sc;
1265 {
1266         struct ifnet            *ifp;
1267         u_int32_t               txstat;
1268
1269         ifp = &sc->arpcom.ac_if;
1270
1271         /* Clear the timeout timer. */
1272         ifp->if_timer = 0;
1273
1274         /*
1275          * Go through our tx list and free mbufs for those
1276          * frames that have been uploaded.
1277          */
1278         do {
1279                 txstat = CSR_READ_4(sc, RL_LAST_TXSTAT(sc));
1280                 if (!(txstat & (RL_TXSTAT_TX_OK|
1281                     RL_TXSTAT_TX_UNDERRUN|RL_TXSTAT_TXABRT)))
1282                         break;
1283
1284                 ifp->if_collisions += (txstat & RL_TXSTAT_COLLCNT) >> 24;
1285
1286                 if (RL_LAST_TXMBUF(sc) != NULL) {
1287                         bus_dmamap_unload(sc->rl_tag, RL_LAST_DMAMAP(sc));
1288                         bus_dmamap_destroy(sc->rl_tag, RL_LAST_DMAMAP(sc));
1289                         m_freem(RL_LAST_TXMBUF(sc));
1290                         RL_LAST_TXMBUF(sc) = NULL;
1291                 }
1292                 if (txstat & RL_TXSTAT_TX_OK)
1293                         ifp->if_opackets++;
1294                 else {
1295                         int                     oldthresh;
1296                         ifp->if_oerrors++;
1297                         if ((txstat & RL_TXSTAT_TXABRT) ||
1298                             (txstat & RL_TXSTAT_OUTOFWIN))
1299                                 CSR_WRITE_4(sc, RL_TXCFG, RL_TXCFG_CONFIG);
1300                         oldthresh = sc->rl_txthresh;
1301                         /* error recovery */
1302                         rl_reset(sc);
1303                         rl_init(sc);
1304                         /*
1305                          * If there was a transmit underrun,
1306                          * bump the TX threshold.
1307                          */
1308                         if (txstat & RL_TXSTAT_TX_UNDERRUN)
1309                                 sc->rl_txthresh = oldthresh + 32;
1310                         return;
1311                 }
1312                 RL_INC(sc->rl_cdata.last_tx);
1313                 ifp->if_flags &= ~IFF_OACTIVE;
1314         } while (sc->rl_cdata.last_tx != sc->rl_cdata.cur_tx);
1315
1316         return;
1317 }
1318
1319 static void rl_tick(xsc)
1320         void                    *xsc;
1321 {
1322         struct rl_softc         *sc;
1323         struct mii_data         *mii;
1324
1325         sc = xsc;
1326         RL_LOCK(sc);
1327         mii = device_get_softc(sc->rl_miibus);
1328
1329         mii_tick(mii);
1330
1331         sc->rl_stat_ch = timeout(rl_tick, sc, hz);
1332         RL_UNLOCK(sc);
1333
1334         return;
1335 }
1336
1337 static void rl_intr(arg)
1338         void                    *arg;
1339 {
1340         struct rl_softc         *sc;
1341         struct ifnet            *ifp;
1342         u_int16_t               status;
1343
1344         sc = arg;
1345
1346         if (sc->suspended) {
1347                 return;
1348         }
1349
1350         RL_LOCK(sc);
1351         ifp = &sc->arpcom.ac_if;
1352
1353         /* Disable interrupts. */
1354         CSR_WRITE_2(sc, RL_IMR, 0x0000);
1355
1356         for (;;) {
1357
1358                 status = CSR_READ_2(sc, RL_ISR);
1359                 if (status)
1360                         CSR_WRITE_2(sc, RL_ISR, status);
1361
1362                 if ((status & RL_INTRS) == 0)
1363                         break;
1364
1365                 if (status & RL_ISR_RX_OK)
1366                         rl_rxeof(sc);
1367
1368                 if (status & RL_ISR_RX_ERR)
1369                         rl_rxeof(sc);
1370
1371                 if ((status & RL_ISR_TX_OK) || (status & RL_ISR_TX_ERR))
1372                         rl_txeof(sc);
1373
1374                 if (status & RL_ISR_SYSTEM_ERR) {
1375                         rl_reset(sc);
1376                         rl_init(sc);
1377                 }
1378
1379         }
1380
1381         /* Re-enable interrupts. */
1382         CSR_WRITE_2(sc, RL_IMR, RL_INTRS);
1383
1384         if (ifp->if_snd.ifq_head != NULL)
1385                 rl_start(ifp);
1386
1387         RL_UNLOCK(sc);
1388
1389         return;
1390 }
1391
1392 /*
1393  * Encapsulate an mbuf chain in a descriptor by coupling the mbuf data
1394  * pointers to the fragment pointers.
1395  */
1396 static int rl_encap(sc, m_head)
1397         struct rl_softc         *sc;
1398         struct mbuf             *m_head;
1399 {
1400         struct mbuf             *m_new = NULL;
1401
1402         /*
1403          * The RealTek is brain damaged and wants longword-aligned
1404          * TX buffers, plus we can only have one fragment buffer
1405          * per packet. We have to copy pretty much all the time.
1406          */
1407
1408         MGETHDR(m_new, M_DONTWAIT, MT_DATA);
1409         if (m_new == NULL)
1410                 return(1);
1411         if (m_head->m_pkthdr.len > MHLEN) {
1412                 MCLGET(m_new, M_DONTWAIT);
1413                 if (!(m_new->m_flags & M_EXT)) {
1414                         m_freem(m_new);
1415                         return(1);
1416                 }
1417         }
1418         m_copydata(m_head, 0, m_head->m_pkthdr.len, mtod(m_new, caddr_t));
1419         m_new->m_pkthdr.len = m_new->m_len = m_head->m_pkthdr.len;
1420         m_freem(m_head);
1421         m_head = m_new;
1422
1423         /* Pad frames to at least 60 bytes. */
1424         if (m_head->m_pkthdr.len < RL_MIN_FRAMELEN) {
1425                 /*
1426                  * Make security concious people happy: zero out the
1427                  * bytes in the pad area, since we don't know what
1428                  * this mbuf cluster buffer's previous user might
1429                  * have left in it.
1430                  */
1431                 bzero(mtod(m_head, char *) + m_head->m_pkthdr.len,
1432                      RL_MIN_FRAMELEN - m_head->m_pkthdr.len);
1433                 m_head->m_pkthdr.len +=
1434                     (RL_MIN_FRAMELEN - m_head->m_pkthdr.len);
1435                 m_head->m_len = m_head->m_pkthdr.len;
1436         }
1437
1438         RL_CUR_TXMBUF(sc) = m_head;
1439
1440         return(0);
1441 }
1442
1443 /*
1444  * Main transmit routine.
1445  */
1446
1447 static void rl_start(ifp)
1448         struct ifnet            *ifp;
1449 {
1450         struct rl_softc         *sc;
1451         struct mbuf             *m_head = NULL;
1452
1453         sc = ifp->if_softc;
1454         RL_LOCK(sc);
1455
1456         while(RL_CUR_TXMBUF(sc) == NULL) {
1457                 IF_DEQUEUE(&ifp->if_snd, m_head);
1458                 if (m_head == NULL)
1459                         break;
1460
1461                 if (rl_encap(sc, m_head)) {
1462                         IF_PREPEND(&ifp->if_snd, m_head);
1463                         ifp->if_flags |= IFF_OACTIVE;
1464                         break;
1465                 }
1466
1467                 /*
1468                  * If there's a BPF listener, bounce a copy of this frame
1469                  * to him.
1470                  */
1471                 if (ifp->if_bpf)
1472                         bpf_mtap(ifp, RL_CUR_TXMBUF(sc));
1473
1474                 /*
1475                  * Transmit the frame.
1476                  */
1477                 bus_dmamap_create(sc->rl_tag, 0, &RL_CUR_DMAMAP(sc));
1478                 bus_dmamap_load(sc->rl_tag, RL_CUR_DMAMAP(sc),
1479                     mtod(RL_CUR_TXMBUF(sc), void *),
1480                     RL_CUR_TXMBUF(sc)->m_pkthdr.len, rl_dma_map_txbuf, sc, 0);
1481                 bus_dmamap_sync(sc->rl_tag, RL_CUR_DMAMAP(sc),
1482                     BUS_DMASYNC_PREREAD);
1483                 CSR_WRITE_4(sc, RL_CUR_TXSTAT(sc),
1484                     RL_TXTHRESH(sc->rl_txthresh) |
1485                     RL_CUR_TXMBUF(sc)->m_pkthdr.len);
1486
1487                 RL_INC(sc->rl_cdata.cur_tx);
1488         }
1489
1490         /*
1491          * We broke out of the loop because all our TX slots are
1492          * full. Mark the NIC as busy until it drains some of the
1493          * packets from the queue.
1494          */
1495         if (RL_CUR_TXMBUF(sc) != NULL)
1496                 ifp->if_flags |= IFF_OACTIVE;
1497
1498         /*
1499          * Set a timeout in case the chip goes out to lunch.
1500          */
1501         ifp->if_timer = 5;
1502         RL_UNLOCK(sc);
1503
1504         return;
1505 }
1506
1507 static void rl_init(xsc)
1508         void                    *xsc;
1509 {
1510         struct rl_softc         *sc = xsc;
1511         struct ifnet            *ifp = &sc->arpcom.ac_if;
1512         struct mii_data         *mii;
1513         int                     i;
1514         u_int32_t               rxcfg = 0;
1515
1516         RL_LOCK(sc);
1517         mii = device_get_softc(sc->rl_miibus);
1518
1519         /*
1520          * Cancel pending I/O and free all RX/TX buffers.
1521          */
1522         rl_stop(sc);
1523
1524         /* Init our MAC address */
1525         for (i = 0; i < ETHER_ADDR_LEN; i++) {
1526                 CSR_WRITE_1(sc, RL_IDR0 + i, sc->arpcom.ac_enaddr[i]);
1527         }
1528
1529         /* Init the RX buffer pointer register. */
1530         bus_dmamap_load(sc->rl_tag, sc->rl_cdata.rl_rx_dmamap,
1531             sc->rl_cdata.rl_rx_buf, RL_RXBUFLEN, rl_dma_map_rxbuf, sc, 0);
1532         bus_dmamap_sync(sc->rl_tag, sc->rl_cdata.rl_rx_dmamap,
1533             BUS_DMASYNC_PREWRITE);
1534
1535         /* Init TX descriptors. */
1536         rl_list_tx_init(sc);
1537
1538         /*
1539          * Enable transmit and receive.
1540          */
1541         CSR_WRITE_1(sc, RL_COMMAND, RL_CMD_TX_ENB|RL_CMD_RX_ENB);
1542
1543         /*
1544          * Set the initial TX and RX configuration.
1545          */
1546         CSR_WRITE_4(sc, RL_TXCFG, RL_TXCFG_CONFIG);
1547         CSR_WRITE_4(sc, RL_RXCFG, RL_RXCFG_CONFIG);
1548
1549         /* Set the individual bit to receive frames for this host only. */
1550         rxcfg = CSR_READ_4(sc, RL_RXCFG);
1551         rxcfg |= RL_RXCFG_RX_INDIV;
1552
1553         /* If we want promiscuous mode, set the allframes bit. */
1554         if (ifp->if_flags & IFF_PROMISC) {
1555                 rxcfg |= RL_RXCFG_RX_ALLPHYS;
1556                 CSR_WRITE_4(sc, RL_RXCFG, rxcfg);
1557         } else {
1558                 rxcfg &= ~RL_RXCFG_RX_ALLPHYS;
1559                 CSR_WRITE_4(sc, RL_RXCFG, rxcfg);
1560         }
1561
1562         /*
1563          * Set capture broadcast bit to capture broadcast frames.
1564          */
1565         if (ifp->if_flags & IFF_BROADCAST) {
1566                 rxcfg |= RL_RXCFG_RX_BROAD;
1567                 CSR_WRITE_4(sc, RL_RXCFG, rxcfg);
1568         } else {
1569                 rxcfg &= ~RL_RXCFG_RX_BROAD;
1570                 CSR_WRITE_4(sc, RL_RXCFG, rxcfg);
1571         }
1572
1573         /*
1574          * Program the multicast filter, if necessary.
1575          */
1576         rl_setmulti(sc);
1577
1578         /*
1579          * Enable interrupts.
1580          */
1581         CSR_WRITE_2(sc, RL_IMR, RL_INTRS);
1582
1583         /* Set initial TX threshold */
1584         sc->rl_txthresh = RL_TX_THRESH_INIT;
1585
1586         /* Start RX/TX process. */
1587         CSR_WRITE_4(sc, RL_MISSEDPKT, 0);
1588
1589         /* Enable receiver and transmitter. */
1590         CSR_WRITE_1(sc, RL_COMMAND, RL_CMD_TX_ENB|RL_CMD_RX_ENB);
1591
1592         mii_mediachg(mii);
1593
1594         CSR_WRITE_1(sc, RL_CFG1, RL_CFG1_DRVLOAD|RL_CFG1_FULLDUPLEX);
1595
1596         ifp->if_flags |= IFF_RUNNING;
1597         ifp->if_flags &= ~IFF_OACTIVE;
1598
1599         sc->rl_stat_ch = timeout(rl_tick, sc, hz);
1600         RL_UNLOCK(sc);
1601
1602         return;
1603 }
1604
1605 /*
1606  * Set media options.
1607  */
1608 static int rl_ifmedia_upd(ifp)
1609         struct ifnet            *ifp;
1610 {
1611         struct rl_softc         *sc;
1612         struct mii_data         *mii;
1613
1614         sc = ifp->if_softc;
1615         mii = device_get_softc(sc->rl_miibus);
1616         mii_mediachg(mii);
1617
1618         return(0);
1619 }
1620
1621 /*
1622  * Report current media status.
1623  */
1624 static void rl_ifmedia_sts(ifp, ifmr)
1625         struct ifnet            *ifp;
1626         struct ifmediareq       *ifmr;
1627 {
1628         struct rl_softc         *sc;
1629         struct mii_data         *mii;
1630
1631         sc = ifp->if_softc;
1632         mii = device_get_softc(sc->rl_miibus);
1633
1634         mii_pollstat(mii);
1635         ifmr->ifm_active = mii->mii_media_active;
1636         ifmr->ifm_status = mii->mii_media_status;
1637
1638         return;
1639 }
1640
1641 static int rl_ioctl(ifp, command, data)
1642         struct ifnet            *ifp;
1643         u_long                  command;
1644         caddr_t                 data;
1645 {
1646         struct rl_softc         *sc = ifp->if_softc;
1647         struct ifreq            *ifr = (struct ifreq *) data;
1648         struct mii_data         *mii;
1649         int                     error = 0;
1650
1651         RL_LOCK(sc);
1652
1653         switch(command) {
1654         case SIOCSIFADDR:
1655         case SIOCGIFADDR:
1656         case SIOCSIFMTU:
1657                 error = ether_ioctl(ifp, command, data);
1658                 break;
1659         case SIOCSIFFLAGS:
1660                 if (ifp->if_flags & IFF_UP) {
1661                         rl_init(sc);
1662                 } else {
1663                         if (ifp->if_flags & IFF_RUNNING)
1664                                 rl_stop(sc);
1665                 }
1666                 error = 0;
1667                 break;
1668         case SIOCADDMULTI:
1669         case SIOCDELMULTI:
1670                 rl_setmulti(sc);
1671                 error = 0;
1672                 break;
1673         case SIOCGIFMEDIA:
1674         case SIOCSIFMEDIA:
1675                 mii = device_get_softc(sc->rl_miibus);
1676                 error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
1677                 break;
1678         default:
1679                 error = EINVAL;
1680                 break;
1681         }
1682
1683         RL_UNLOCK(sc);
1684
1685         return(error);
1686 }
1687
1688 static void rl_watchdog(ifp)
1689         struct ifnet            *ifp;
1690 {
1691         struct rl_softc         *sc;
1692
1693         sc = ifp->if_softc;
1694         RL_LOCK(sc);
1695         printf("rl%d: watchdog timeout\n", sc->rl_unit);
1696         ifp->if_oerrors++;
1697
1698         rl_txeof(sc);
1699         rl_rxeof(sc);
1700         rl_init(sc);
1701         RL_UNLOCK(sc);
1702
1703         return;
1704 }
1705
1706 /*
1707  * Stop the adapter and free any mbufs allocated to the
1708  * RX and TX lists.
1709  */
1710 static void rl_stop(sc)
1711         struct rl_softc         *sc;
1712 {
1713         register int            i;
1714         struct ifnet            *ifp;
1715
1716         RL_LOCK(sc);
1717         ifp = &sc->arpcom.ac_if;
1718         ifp->if_timer = 0;
1719
1720         untimeout(rl_tick, sc, sc->rl_stat_ch);
1721
1722         CSR_WRITE_1(sc, RL_COMMAND, 0x00);
1723         CSR_WRITE_2(sc, RL_IMR, 0x0000);
1724         bus_dmamap_unload(sc->rl_tag, sc->rl_cdata.rl_rx_dmamap);
1725
1726         /*
1727          * Free the TX list buffers.
1728          */
1729         for (i = 0; i < RL_TX_LIST_CNT; i++) {
1730                 if (sc->rl_cdata.rl_tx_chain[i] != NULL) {
1731                         bus_dmamap_unload(sc->rl_tag,
1732                             sc->rl_cdata.rl_tx_dmamap[i]);
1733                         bus_dmamap_destroy(sc->rl_tag,
1734                             sc->rl_cdata.rl_tx_dmamap[i]);
1735                         m_freem(sc->rl_cdata.rl_tx_chain[i]);
1736                         sc->rl_cdata.rl_tx_chain[i] = NULL;
1737                         CSR_WRITE_4(sc, RL_TXADDR0 + i, 0x0000000);
1738                 }
1739         }
1740
1741         ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
1742         RL_UNLOCK(sc);
1743         return;
1744 }
1745
1746 /*
1747  * Device suspend routine.  Stop the interface and save some PCI
1748  * settings in case the BIOS doesn't restore them properly on
1749  * resume.
1750  */
1751 static int rl_suspend(dev)
1752         device_t                dev;
1753 {
1754         register int            i;
1755         struct rl_softc         *sc;
1756
1757         sc = device_get_softc(dev);
1758
1759         rl_stop(sc);
1760
1761         for (i = 0; i < 5; i++)
1762                 sc->saved_maps[i] = pci_read_config(dev, PCIR_MAPS + i * 4, 4);
1763         sc->saved_biosaddr = pci_read_config(dev, PCIR_BIOS, 4);
1764         sc->saved_intline = pci_read_config(dev, PCIR_INTLINE, 1);
1765         sc->saved_cachelnsz = pci_read_config(dev, PCIR_CACHELNSZ, 1);
1766         sc->saved_lattimer = pci_read_config(dev, PCIR_LATTIMER, 1);
1767
1768         sc->suspended = 1;
1769
1770         return (0);
1771 }
1772
1773 /*
1774  * Device resume routine.  Restore some PCI settings in case the BIOS
1775  * doesn't, re-enable busmastering, and restart the interface if
1776  * appropriate.
1777  */
1778 static int rl_resume(dev)
1779         device_t                dev;
1780 {
1781         register int            i;
1782         struct rl_softc         *sc;
1783         struct ifnet            *ifp;
1784
1785         sc = device_get_softc(dev);
1786         ifp = &sc->arpcom.ac_if;
1787
1788         /* better way to do this? */
1789         for (i = 0; i < 5; i++)
1790                 pci_write_config(dev, PCIR_MAPS + i * 4, sc->saved_maps[i], 4);
1791         pci_write_config(dev, PCIR_BIOS, sc->saved_biosaddr, 4);
1792         pci_write_config(dev, PCIR_INTLINE, sc->saved_intline, 1);
1793         pci_write_config(dev, PCIR_CACHELNSZ, sc->saved_cachelnsz, 1);
1794         pci_write_config(dev, PCIR_LATTIMER, sc->saved_lattimer, 1);
1795
1796         /* reenable busmastering */
1797         pci_enable_busmaster(dev);
1798         pci_enable_io(dev, RL_RES);
1799
1800         /* reinitialize interface if necessary */
1801         if (ifp->if_flags & IFF_UP)
1802                 rl_init(sc);
1803
1804         sc->suspended = 0;
1805
1806         return (0);
1807 }
1808
1809 /*
1810  * Stop all chip I/O so that the kernel's probe routines don't
1811  * get confused by errant DMAs when rebooting.
1812  */
1813 static void rl_shutdown(dev)
1814         device_t                dev;
1815 {
1816         struct rl_softc         *sc;
1817
1818         sc = device_get_softc(dev);
1819
1820         rl_stop(sc);
1821
1822         return;
1823 }