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