Initial import from FreeBSD RELENG_4:
[dragonfly.git] / sys / dev / netif / vr / if_vr.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_vr.c,v 1.26.2.13 2003/02/06 04:46:20 silby Exp $
33  */
34
35 /*
36  * VIA Rhine fast ethernet PCI NIC driver
37  *
38  * Supports various network adapters based on the VIA Rhine
39  * and Rhine II PCI controllers, including the D-Link DFE530TX.
40  * Datasheets are available at http://www.via.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 VIA Rhine controllers are similar in some respects to the
49  * the DEC tulip chips, except less complicated. The controller
50  * uses an MII bus and an external physical layer interface. The
51  * receiver has a one entry perfect filter and a 64-bit hash table
52  * multicast filter. Transmit and receive descriptors are similar
53  * to the tulip.
54  *
55  * The Rhine has a serious flaw in its transmit DMA mechanism:
56  * transmit buffers must be longword aligned. Unfortunately,
57  * FreeBSD doesn't guarantee that mbufs will be filled in starting
58  * at longword boundaries, so we have to do a buffer copy before
59  * transmission.
60  */
61
62 #include <sys/param.h>
63 #include <sys/systm.h>
64 #include <sys/sockio.h>
65 #include <sys/mbuf.h>
66 #include <sys/malloc.h>
67 #include <sys/kernel.h>
68 #include <sys/socket.h>
69
70 #include <net/if.h>
71 #include <net/if_arp.h>
72 #include <net/ethernet.h>
73 #include <net/if_dl.h>
74 #include <net/if_media.h>
75
76 #include <net/bpf.h>
77
78 #include <vm/vm.h>              /* for vtophys */
79 #include <vm/pmap.h>            /* for vtophys */
80 #include <machine/clock.h>      /* for DELAY */
81 #include <machine/bus_pio.h>
82 #include <machine/bus_memio.h>
83 #include <machine/bus.h>
84 #include <machine/resource.h>
85 #include <sys/bus.h>
86 #include <sys/rman.h>
87
88 #include <dev/mii/mii.h>
89 #include <dev/mii/miivar.h>
90
91 #include <pci/pcireg.h>
92 #include <pci/pcivar.h>
93
94 #define VR_USEIOSPACE
95
96 #include <pci/if_vrreg.h>
97
98 /* "controller miibus0" required.  See GENERIC if you get errors here. */
99 #include "miibus_if.h"
100
101 #ifndef lint
102 static const char rcsid[] =
103   "$FreeBSD: src/sys/pci/if_vr.c,v 1.26.2.13 2003/02/06 04:46:20 silby Exp $";
104 #endif
105
106 #undef VR_USESWSHIFT
107
108 /*
109  * Various supported device vendors/types and their names.
110  */
111 static struct vr_type vr_devs[] = {
112         { VIA_VENDORID, VIA_DEVICEID_RHINE,
113                 "VIA VT3043 Rhine I 10/100BaseTX" },
114         { VIA_VENDORID, VIA_DEVICEID_RHINE_II,
115                 "VIA VT86C100A Rhine II 10/100BaseTX" },
116         { VIA_VENDORID, VIA_DEVICEID_RHINE_II_2,
117                 "VIA VT6102 Rhine II 10/100BaseTX" },
118         { VIA_VENDORID, VIA_DEVICEID_RHINE_III,
119                 "VIA VT6105 Rhine III 10/100BaseTX" },
120         { VIA_VENDORID, VIA_DEVICEID_RHINE_III_M,
121                 "VIA VT6105M Rhine III 10/100BaseTX" },
122         { DELTA_VENDORID, DELTA_DEVICEID_RHINE_II,
123                 "Delta Electronics Rhine II 10/100BaseTX" },
124         { ADDTRON_VENDORID, ADDTRON_DEVICEID_RHINE_II,
125                 "Addtron Technology Rhine II 10/100BaseTX" },
126         { 0, 0, NULL }
127 };
128
129 static int vr_probe             __P((device_t));
130 static int vr_attach            __P((device_t));
131 static int vr_detach            __P((device_t));
132
133 static int vr_newbuf            __P((struct vr_softc *,
134                                         struct vr_chain_onefrag *,
135                                         struct mbuf *));
136 static int vr_encap             __P((struct vr_softc *, struct vr_chain *,
137                                                 struct mbuf * ));
138
139 static void vr_rxeof            __P((struct vr_softc *));
140 static void vr_rxeoc            __P((struct vr_softc *));
141 static void vr_txeof            __P((struct vr_softc *));
142 static void vr_txeoc            __P((struct vr_softc *));
143 static void vr_tick             __P((void *));
144 static void vr_intr             __P((void *));
145 static void vr_start            __P((struct ifnet *));
146 static int vr_ioctl             __P((struct ifnet *, u_long, caddr_t));
147 static void vr_init             __P((void *));
148 static void vr_stop             __P((struct vr_softc *));
149 static void vr_watchdog         __P((struct ifnet *));
150 static void vr_shutdown         __P((device_t));
151 static int vr_ifmedia_upd       __P((struct ifnet *));
152 static void vr_ifmedia_sts      __P((struct ifnet *, struct ifmediareq *));
153
154 #ifdef VR_USESWSHIFT
155 static void vr_mii_sync         __P((struct vr_softc *));
156 static void vr_mii_send         __P((struct vr_softc *, u_int32_t, int));
157 #endif
158 static int vr_mii_readreg       __P((struct vr_softc *, struct vr_mii_frame *));
159 static int vr_mii_writereg      __P((struct vr_softc *, struct vr_mii_frame *));
160 static int vr_miibus_readreg    __P((device_t, int, int));
161 static int vr_miibus_writereg   __P((device_t, int, int, int));
162 static void vr_miibus_statchg   __P((device_t));
163
164 static void vr_setcfg           __P((struct vr_softc *, int));
165 static u_int8_t vr_calchash     __P((u_int8_t *));
166 static void vr_setmulti         __P((struct vr_softc *));
167 static void vr_reset            __P((struct vr_softc *));
168 static int vr_list_rx_init      __P((struct vr_softc *));
169 static int vr_list_tx_init      __P((struct vr_softc *));
170
171 #ifdef VR_USEIOSPACE
172 #define VR_RES                  SYS_RES_IOPORT
173 #define VR_RID                  VR_PCI_LOIO
174 #else
175 #define VR_RES                  SYS_RES_MEMORY
176 #define VR_RID                  VR_PCI_LOMEM
177 #endif
178
179 static device_method_t vr_methods[] = {
180         /* Device interface */
181         DEVMETHOD(device_probe,         vr_probe),
182         DEVMETHOD(device_attach,        vr_attach),
183         DEVMETHOD(device_detach,        vr_detach),
184         DEVMETHOD(device_shutdown,      vr_shutdown),
185
186         /* bus interface */
187         DEVMETHOD(bus_print_child,      bus_generic_print_child),
188         DEVMETHOD(bus_driver_added,     bus_generic_driver_added),
189
190         /* MII interface */
191         DEVMETHOD(miibus_readreg,       vr_miibus_readreg),
192         DEVMETHOD(miibus_writereg,      vr_miibus_writereg),
193         DEVMETHOD(miibus_statchg,       vr_miibus_statchg),
194
195         { 0, 0 }
196 };
197
198 static driver_t vr_driver = {
199         "vr",
200         vr_methods,
201         sizeof(struct vr_softc)
202 };
203
204 static devclass_t vr_devclass;
205
206 DRIVER_MODULE(if_vr, pci, vr_driver, vr_devclass, 0, 0);
207 DRIVER_MODULE(miibus, vr, miibus_driver, miibus_devclass, 0, 0);
208
209 #define VR_SETBIT(sc, reg, x)                           \
210         CSR_WRITE_1(sc, reg,                            \
211                 CSR_READ_1(sc, reg) | x)
212
213 #define VR_CLRBIT(sc, reg, x)                           \
214         CSR_WRITE_1(sc, reg,                            \
215                 CSR_READ_1(sc, reg) & ~x)
216
217 #define VR_SETBIT16(sc, reg, x)                         \
218         CSR_WRITE_2(sc, reg,                            \
219                 CSR_READ_2(sc, reg) | x)
220
221 #define VR_CLRBIT16(sc, reg, x)                         \
222         CSR_WRITE_2(sc, reg,                            \
223                 CSR_READ_2(sc, reg) & ~x)
224
225 #define VR_SETBIT32(sc, reg, x)                         \
226         CSR_WRITE_4(sc, reg,                            \
227                 CSR_READ_4(sc, reg) | x)
228
229 #define VR_CLRBIT32(sc, reg, x)                         \
230         CSR_WRITE_4(sc, reg,                            \
231                 CSR_READ_4(sc, reg) & ~x)
232
233 #define SIO_SET(x)                                      \
234         CSR_WRITE_1(sc, VR_MIICMD,                      \
235                 CSR_READ_1(sc, VR_MIICMD) | x)
236
237 #define SIO_CLR(x)                                      \
238         CSR_WRITE_1(sc, VR_MIICMD,                      \
239                 CSR_READ_1(sc, VR_MIICMD) & ~x)
240
241 #ifdef VR_USESWSHIFT
242 /*
243  * Sync the PHYs by setting data bit and strobing the clock 32 times.
244  */
245 static void vr_mii_sync(sc)
246         struct vr_softc         *sc;
247 {
248         register int            i;
249
250         SIO_SET(VR_MIICMD_DIR|VR_MIICMD_DATAIN);
251
252         for (i = 0; i < 32; i++) {
253                 SIO_SET(VR_MIICMD_CLK);
254                 DELAY(1);
255                 SIO_CLR(VR_MIICMD_CLK);
256                 DELAY(1);
257         }
258
259         return;
260 }
261
262 /*
263  * Clock a series of bits through the MII.
264  */
265 static void vr_mii_send(sc, bits, cnt)
266         struct vr_softc         *sc;
267         u_int32_t               bits;
268         int                     cnt;
269 {
270         int                     i;
271
272         SIO_CLR(VR_MIICMD_CLK);
273
274         for (i = (0x1 << (cnt - 1)); i; i >>= 1) {
275                 if (bits & i) {
276                         SIO_SET(VR_MIICMD_DATAIN);
277                 } else {
278                         SIO_CLR(VR_MIICMD_DATAIN);
279                 }
280                 DELAY(1);
281                 SIO_CLR(VR_MIICMD_CLK);
282                 DELAY(1);
283                 SIO_SET(VR_MIICMD_CLK);
284         }
285 }
286 #endif
287
288 /*
289  * Read an PHY register through the MII.
290  */
291 static int vr_mii_readreg(sc, frame)
292         struct vr_softc         *sc;
293         struct vr_mii_frame     *frame;
294         
295 #ifdef VR_USESWSHIFT    
296 {
297         int                     i, ack, s;
298
299         s = splimp();
300
301         /*
302          * Set up frame for RX.
303          */
304         frame->mii_stdelim = VR_MII_STARTDELIM;
305         frame->mii_opcode = VR_MII_READOP;
306         frame->mii_turnaround = 0;
307         frame->mii_data = 0;
308         
309         CSR_WRITE_1(sc, VR_MIICMD, 0);
310         VR_SETBIT(sc, VR_MIICMD, VR_MIICMD_DIRECTPGM);
311
312         /*
313          * Turn on data xmit.
314          */
315         SIO_SET(VR_MIICMD_DIR);
316
317         vr_mii_sync(sc);
318
319         /*
320          * Send command/address info.
321          */
322         vr_mii_send(sc, frame->mii_stdelim, 2);
323         vr_mii_send(sc, frame->mii_opcode, 2);
324         vr_mii_send(sc, frame->mii_phyaddr, 5);
325         vr_mii_send(sc, frame->mii_regaddr, 5);
326
327         /* Idle bit */
328         SIO_CLR((VR_MIICMD_CLK|VR_MIICMD_DATAIN));
329         DELAY(1);
330         SIO_SET(VR_MIICMD_CLK);
331         DELAY(1);
332
333         /* Turn off xmit. */
334         SIO_CLR(VR_MIICMD_DIR);
335
336         /* Check for ack */
337         SIO_CLR(VR_MIICMD_CLK);
338         DELAY(1);
339         ack = CSR_READ_4(sc, VR_MIICMD) & VR_MIICMD_DATAOUT;
340         SIO_SET(VR_MIICMD_CLK);
341         DELAY(1);
342
343         /*
344          * Now try reading data bits. If the ack failed, we still
345          * need to clock through 16 cycles to keep the PHY(s) in sync.
346          */
347         if (ack) {
348                 for(i = 0; i < 16; i++) {
349                         SIO_CLR(VR_MIICMD_CLK);
350                         DELAY(1);
351                         SIO_SET(VR_MIICMD_CLK);
352                         DELAY(1);
353                 }
354                 goto fail;
355         }
356
357         for (i = 0x8000; i; i >>= 1) {
358                 SIO_CLR(VR_MIICMD_CLK);
359                 DELAY(1);
360                 if (!ack) {
361                         if (CSR_READ_4(sc, VR_MIICMD) & VR_MIICMD_DATAOUT)
362                                 frame->mii_data |= i;
363                         DELAY(1);
364                 }
365                 SIO_SET(VR_MIICMD_CLK);
366                 DELAY(1);
367         }
368
369 fail:
370
371         SIO_CLR(VR_MIICMD_CLK);
372         DELAY(1);
373         SIO_SET(VR_MIICMD_CLK);
374         DELAY(1);
375
376         splx(s);
377
378         if (ack)
379                 return(1);
380         return(0);
381 }
382 #else
383 {
384         int                     s, i;
385
386         s = splimp();
387
388         /* Set the PHY-adress */
389         CSR_WRITE_1(sc, VR_PHYADDR, (CSR_READ_1(sc, VR_PHYADDR)& 0xe0)|
390             frame->mii_phyaddr);
391
392         /* Set the register-adress */
393         CSR_WRITE_1(sc, VR_MIIADDR, frame->mii_regaddr);
394         VR_SETBIT(sc, VR_MIICMD, VR_MIICMD_READ_ENB);
395         
396         for (i = 0; i < 10000; i++) {
397                 if ((CSR_READ_1(sc, VR_MIICMD) & VR_MIICMD_READ_ENB) == 0)
398                         break;
399                 DELAY(1);
400         }
401
402         frame->mii_data = CSR_READ_2(sc, VR_MIIDATA);
403
404         (void)splx(s);
405
406         return(0);
407 }
408 #endif
409
410
411 /*
412  * Write to a PHY register through the MII.
413  */
414 static int vr_mii_writereg(sc, frame)
415         struct vr_softc         *sc;
416         struct vr_mii_frame     *frame;
417         
418 #ifdef VR_USESWSHIFT    
419 {
420         int                     s;
421
422         s = splimp();
423
424         CSR_WRITE_1(sc, VR_MIICMD, 0);
425         VR_SETBIT(sc, VR_MIICMD, VR_MIICMD_DIRECTPGM);
426
427         /*
428          * Set up frame for TX.
429          */
430
431         frame->mii_stdelim = VR_MII_STARTDELIM;
432         frame->mii_opcode = VR_MII_WRITEOP;
433         frame->mii_turnaround = VR_MII_TURNAROUND;
434         
435         /*
436          * Turn on data output.
437          */
438         SIO_SET(VR_MIICMD_DIR);
439
440         vr_mii_sync(sc);
441
442         vr_mii_send(sc, frame->mii_stdelim, 2);
443         vr_mii_send(sc, frame->mii_opcode, 2);
444         vr_mii_send(sc, frame->mii_phyaddr, 5);
445         vr_mii_send(sc, frame->mii_regaddr, 5);
446         vr_mii_send(sc, frame->mii_turnaround, 2);
447         vr_mii_send(sc, frame->mii_data, 16);
448
449         /* Idle bit. */
450         SIO_SET(VR_MIICMD_CLK);
451         DELAY(1);
452         SIO_CLR(VR_MIICMD_CLK);
453         DELAY(1);
454
455         /*
456          * Turn off xmit.
457          */
458         SIO_CLR(VR_MIICMD_DIR);
459
460         splx(s);
461
462         return(0);
463 }
464 #else
465 {
466         int                     s, i;
467
468         s = splimp();
469
470         /* Set the PHY-adress */
471         CSR_WRITE_1(sc, VR_PHYADDR, (CSR_READ_1(sc, VR_PHYADDR)& 0xe0)|
472                     frame->mii_phyaddr);
473
474         /* Set the register-adress and data to write */
475         CSR_WRITE_1(sc, VR_MIIADDR, frame->mii_regaddr);
476         CSR_WRITE_2(sc, VR_MIIDATA, frame->mii_data);
477
478         VR_SETBIT(sc, VR_MIICMD, VR_MIICMD_WRITE_ENB);
479
480         for (i = 0; i < 10000; i++) {
481                 if ((CSR_READ_1(sc, VR_MIICMD) & VR_MIICMD_WRITE_ENB) == 0)
482                         break;
483                 DELAY(1);
484         }
485
486         (void)splx(s);
487
488         return(0);
489 }
490 #endif
491
492 static int vr_miibus_readreg(dev, phy, reg)
493         device_t                dev;
494         int                     phy, reg;
495 {
496         struct vr_softc         *sc;
497         struct vr_mii_frame     frame;
498
499         sc = device_get_softc(dev);
500
501         switch (sc->vr_revid) {
502                 case REV_ID_VT6102_APOLLO:
503                         if (phy != 1)
504                                 return 0;
505                 default:
506                         break;
507                 }
508
509         bzero((char *)&frame, sizeof(frame));
510
511         frame.mii_phyaddr = phy;
512         frame.mii_regaddr = reg;
513         vr_mii_readreg(sc, &frame);
514
515         return(frame.mii_data);
516 }
517
518 static int vr_miibus_writereg(dev, phy, reg, data)
519         device_t                dev;
520         u_int16_t               phy, reg, data;
521 {
522         struct vr_softc         *sc;
523         struct vr_mii_frame     frame;
524
525         sc = device_get_softc(dev);
526
527         switch (sc->vr_revid) {
528                 case REV_ID_VT6102_APOLLO:
529                         if (phy != 1)
530                                 return 0;
531                 default:
532                         break;
533                 }
534
535         bzero((char *)&frame, sizeof(frame));
536
537         frame.mii_phyaddr = phy;
538         frame.mii_regaddr = reg;
539         frame.mii_data = data;
540
541         vr_mii_writereg(sc, &frame);
542
543         return(0);
544 }
545
546 static void vr_miibus_statchg(dev)
547         device_t                dev;
548 {
549         struct vr_softc         *sc;
550         struct mii_data         *mii;
551
552         sc = device_get_softc(dev);
553         mii = device_get_softc(sc->vr_miibus);
554         vr_setcfg(sc, mii->mii_media_active);
555
556         return;
557 }
558
559 /*
560  * Calculate CRC of a multicast group address, return the lower 6 bits.
561  */
562 static u_int8_t vr_calchash(addr)
563         u_int8_t                *addr;
564 {
565         u_int32_t               crc, carry;
566         int                     i, j;
567         u_int8_t                c;
568
569         /* Compute CRC for the address value. */
570         crc = 0xFFFFFFFF; /* initial value */
571
572         for (i = 0; i < 6; i++) {
573                 c = *(addr + i);
574                 for (j = 0; j < 8; j++) {
575                         carry = ((crc & 0x80000000) ? 1 : 0) ^ (c & 0x01);
576                         crc <<= 1;
577                         c >>= 1;
578                         if (carry)
579                                 crc = (crc ^ 0x04c11db6) | carry;
580                 }
581         }
582
583         /* return the filter bit position */
584         return((crc >> 26) & 0x0000003F);
585 }
586
587 /*
588  * Program the 64-bit multicast hash filter.
589  */
590 static void vr_setmulti(sc)
591         struct vr_softc         *sc;
592 {
593         struct ifnet            *ifp;
594         int                     h = 0;
595         u_int32_t               hashes[2] = { 0, 0 };
596         struct ifmultiaddr      *ifma;
597         u_int8_t                rxfilt;
598         int                     mcnt = 0;
599
600         ifp = &sc->arpcom.ac_if;
601
602         rxfilt = CSR_READ_1(sc, VR_RXCFG);
603
604         if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
605                 rxfilt |= VR_RXCFG_RX_MULTI;
606                 CSR_WRITE_1(sc, VR_RXCFG, rxfilt);
607                 CSR_WRITE_4(sc, VR_MAR0, 0xFFFFFFFF);
608                 CSR_WRITE_4(sc, VR_MAR1, 0xFFFFFFFF);
609                 return;
610         }
611
612         /* first, zot all the existing hash bits */
613         CSR_WRITE_4(sc, VR_MAR0, 0);
614         CSR_WRITE_4(sc, VR_MAR1, 0);
615
616         /* now program new ones */
617         for (ifma = ifp->if_multiaddrs.lh_first; ifma != NULL;
618                                 ifma = ifma->ifma_link.le_next) {
619                 if (ifma->ifma_addr->sa_family != AF_LINK)
620                         continue;
621                 h = vr_calchash(LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
622                 if (h < 32)
623                         hashes[0] |= (1 << h);
624                 else
625                         hashes[1] |= (1 << (h - 32));
626                 mcnt++;
627         }
628
629         if (mcnt)
630                 rxfilt |= VR_RXCFG_RX_MULTI;
631         else
632                 rxfilt &= ~VR_RXCFG_RX_MULTI;
633
634         CSR_WRITE_4(sc, VR_MAR0, hashes[0]);
635         CSR_WRITE_4(sc, VR_MAR1, hashes[1]);
636         CSR_WRITE_1(sc, VR_RXCFG, rxfilt);
637
638         return;
639 }
640
641 /*
642  * In order to fiddle with the
643  * 'full-duplex' and '100Mbps' bits in the netconfig register, we
644  * first have to put the transmit and/or receive logic in the idle state.
645  */
646 static void vr_setcfg(sc, media)
647         struct vr_softc         *sc;
648         int                     media;
649 {
650         int                     restart = 0;
651
652         if (CSR_READ_2(sc, VR_COMMAND) & (VR_CMD_TX_ON|VR_CMD_RX_ON)) {
653                 restart = 1;
654                 VR_CLRBIT16(sc, VR_COMMAND, (VR_CMD_TX_ON|VR_CMD_RX_ON));
655         }
656
657         if ((media & IFM_GMASK) == IFM_FDX)
658                 VR_SETBIT16(sc, VR_COMMAND, VR_CMD_FULLDUPLEX);
659         else
660                 VR_CLRBIT16(sc, VR_COMMAND, VR_CMD_FULLDUPLEX);
661
662         if (restart)
663                 VR_SETBIT16(sc, VR_COMMAND, VR_CMD_TX_ON|VR_CMD_RX_ON);
664
665         return;
666 }
667
668 static void vr_reset(sc)
669         struct vr_softc         *sc;
670 {
671         register int            i;
672
673         VR_SETBIT16(sc, VR_COMMAND, VR_CMD_RESET);
674
675         for (i = 0; i < VR_TIMEOUT; i++) {
676                 DELAY(10);
677                 if (!(CSR_READ_2(sc, VR_COMMAND) & VR_CMD_RESET))
678                         break;
679         }
680         if (i == VR_TIMEOUT) {
681                 if (sc->vr_revid < REV_ID_VT3065_A)
682                         printf("vr%d: reset never completed!\n", sc->vr_unit);
683                 else {
684                         /* Use newer force reset command */
685                         printf("vr%d: Using force reset command.\n", sc->vr_unit);
686                         VR_SETBIT(sc, VR_MISC_CR1, VR_MISCCR1_FORSRST);
687                 }
688         }
689
690         /* Wait a little while for the chip to get its brains in order. */
691         DELAY(1000);
692
693         return;
694 }
695
696 /*
697  * Probe for a VIA Rhine chip. Check the PCI vendor and device
698  * IDs against our list and return a device name if we find a match.
699  */
700 static int vr_probe(dev)
701         device_t                dev;
702 {
703         struct vr_type          *t;
704
705         t = vr_devs;
706
707         while(t->vr_name != NULL) {
708                 if ((pci_get_vendor(dev) == t->vr_vid) &&
709                     (pci_get_device(dev) == t->vr_did)) {
710                         device_set_desc(dev, t->vr_name);
711                         return(0);
712                 }
713                 t++;
714         }
715
716         return(ENXIO);
717 }
718
719 /*
720  * Attach the interface. Allocate softc structures, do ifmedia
721  * setup and ethernet/BPF attach.
722  */
723 static int vr_attach(dev)
724         device_t                dev;
725 {
726         int                     i, s;
727         u_char                  eaddr[ETHER_ADDR_LEN];
728         u_int32_t               command;
729         struct vr_softc         *sc;
730         struct ifnet            *ifp;
731         int                     unit, error = 0, rid;
732
733         s = splimp();
734
735         sc = device_get_softc(dev);
736         unit = device_get_unit(dev);
737         bzero(sc, sizeof(struct vr_softc *));
738
739         /*
740          * Handle power management nonsense.
741          */
742
743         command = pci_read_config(dev, VR_PCI_CAPID, 4) & 0x000000FF;
744         if (command == 0x01) {
745
746                 command = pci_read_config(dev, VR_PCI_PWRMGMTCTRL, 4);
747                 if (command & VR_PSTATE_MASK) {
748                         u_int32_t               iobase, membase, irq;
749
750                         /* Save important PCI config data. */
751                         iobase = pci_read_config(dev, VR_PCI_LOIO, 4);
752                         membase = pci_read_config(dev, VR_PCI_LOMEM, 4);
753                         irq = pci_read_config(dev, VR_PCI_INTLINE, 4);
754
755                         /* Reset the power state. */
756                         printf("vr%d: chip is in D%d power mode "
757                         "-- setting to D0\n", unit, command & VR_PSTATE_MASK);
758                         command &= 0xFFFFFFFC;
759                         pci_write_config(dev, VR_PCI_PWRMGMTCTRL, command, 4);
760
761                         /* Restore PCI config data. */
762                         pci_write_config(dev, VR_PCI_LOIO, iobase, 4);
763                         pci_write_config(dev, VR_PCI_LOMEM, membase, 4);
764                         pci_write_config(dev, VR_PCI_INTLINE, irq, 4);
765                 }
766         }
767
768         /*
769          * Map control/status registers.
770          */
771         command = pci_read_config(dev, PCIR_COMMAND, 4);
772         command |= (PCIM_CMD_PORTEN|PCIM_CMD_MEMEN|PCIM_CMD_BUSMASTEREN);
773         pci_write_config(dev, PCIR_COMMAND, command, 4);
774         command = pci_read_config(dev, PCIR_COMMAND, 4);
775         sc->vr_revid = pci_read_config(dev, VR_PCI_REVID, 4) & 0x000000FF;
776
777 #ifdef VR_USEIOSPACE
778         if (!(command & PCIM_CMD_PORTEN)) {
779                 printf("vr%d: failed to enable I/O ports!\n", unit);
780                 free(sc, M_DEVBUF);
781                 goto fail;
782         }
783 #else
784         if (!(command & PCIM_CMD_MEMEN)) {
785                 printf("vr%d: failed to enable memory mapping!\n", unit);
786                 goto fail;
787         }
788 #endif
789
790         rid = VR_RID;
791         sc->vr_res = bus_alloc_resource(dev, VR_RES, &rid,
792             0, ~0, 1, RF_ACTIVE);
793
794         if (sc->vr_res == NULL) {
795                 printf("vr%d: couldn't map ports/memory\n", unit);
796                 error = ENXIO;
797                 goto fail;
798         }
799
800         sc->vr_btag = rman_get_bustag(sc->vr_res);
801         sc->vr_bhandle = rman_get_bushandle(sc->vr_res);
802
803         /* Allocate interrupt */
804         rid = 0;
805         sc->vr_irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1,
806             RF_SHAREABLE | RF_ACTIVE);
807
808         if (sc->vr_irq == NULL) {
809                 printf("vr%d: couldn't map interrupt\n", unit);
810                 bus_release_resource(dev, VR_RES, VR_RID, sc->vr_res);
811                 error = ENXIO;
812                 goto fail;
813         }
814
815         error = bus_setup_intr(dev, sc->vr_irq, INTR_TYPE_NET,
816             vr_intr, sc, &sc->vr_intrhand);
817
818         if (error) {
819                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->vr_irq);
820                 bus_release_resource(dev, VR_RES, VR_RID, sc->vr_res);
821                 printf("vr%d: couldn't set up irq\n", unit);
822                 goto fail;
823         }
824
825         /*
826          * Windows may put the chip in suspend mode when it
827          * shuts down. Be sure to kick it in the head to wake it
828          * up again.
829          */
830         VR_CLRBIT(sc, VR_STICKHW, (VR_STICKHW_DS0|VR_STICKHW_DS1));
831
832         /* Reset the adapter. */
833         vr_reset(sc);
834
835         /*
836          * Turn on bit2 (MIION) in PCI configuration register 0x53 during
837          * initialization and disable AUTOPOLL.
838          */
839         pci_write_config(dev, VR_PCI_MODE,
840             pci_read_config(dev, VR_PCI_MODE, 4) | (VR_MODE3_MIION << 24), 4);
841         VR_CLRBIT(sc, VR_MIICMD, VR_MIICMD_AUTOPOLL);
842
843         /*
844          * Get station address. The way the Rhine chips work,
845          * you're not allowed to directly access the EEPROM once
846          * they've been programmed a special way. Consequently,
847          * we need to read the node address from the PAR0 and PAR1
848          * registers.
849          */
850         VR_SETBIT(sc, VR_EECSR, VR_EECSR_LOAD);
851         DELAY(200);
852         for (i = 0; i < ETHER_ADDR_LEN; i++)
853                 eaddr[i] = CSR_READ_1(sc, VR_PAR0 + i);
854
855         /*
856          * A Rhine chip was detected. Inform the world.
857          */
858         printf("vr%d: Ethernet address: %6D\n", unit, eaddr, ":");
859
860         sc->vr_unit = unit;
861         bcopy(eaddr, (char *)&sc->arpcom.ac_enaddr, ETHER_ADDR_LEN);
862
863         sc->vr_ldata = contigmalloc(sizeof(struct vr_list_data), M_DEVBUF,
864             M_NOWAIT, 0, 0xffffffff, PAGE_SIZE, 0);
865
866         if (sc->vr_ldata == NULL) {
867                 printf("vr%d: no memory for list buffers!\n", unit);
868                 bus_teardown_intr(dev, sc->vr_irq, sc->vr_intrhand);
869                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->vr_irq);
870                 bus_release_resource(dev, VR_RES, VR_RID, sc->vr_res);
871                 error = ENXIO;
872                 goto fail;
873         }
874
875         bzero(sc->vr_ldata, sizeof(struct vr_list_data));
876
877         ifp = &sc->arpcom.ac_if;
878         ifp->if_softc = sc;
879         ifp->if_unit = unit;
880         ifp->if_name = "vr";
881         ifp->if_mtu = ETHERMTU;
882         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
883         ifp->if_ioctl = vr_ioctl;
884         ifp->if_output = ether_output;
885         ifp->if_start = vr_start;
886         ifp->if_watchdog = vr_watchdog;
887         ifp->if_init = vr_init;
888         ifp->if_baudrate = 10000000;
889         ifp->if_snd.ifq_maxlen = VR_TX_LIST_CNT - 1;
890
891         /*
892          * Do MII setup.
893          */
894         if (mii_phy_probe(dev, &sc->vr_miibus,
895             vr_ifmedia_upd, vr_ifmedia_sts)) {
896                 printf("vr%d: MII without any phy!\n", sc->vr_unit);
897                 bus_teardown_intr(dev, sc->vr_irq, sc->vr_intrhand);
898                 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->vr_irq);
899                 bus_release_resource(dev, VR_RES, VR_RID, sc->vr_res);
900                 contigfree(sc->vr_ldata,
901                     sizeof(struct vr_list_data), M_DEVBUF);
902                 error = ENXIO;
903                 goto fail;
904         }
905
906         callout_handle_init(&sc->vr_stat_ch);
907
908         /*
909          * Call MI attach routine.
910          */
911         ether_ifattach(ifp, ETHER_BPF_SUPPORTED);
912
913 fail:
914         splx(s);
915         return(error);
916 }
917
918 static int vr_detach(dev)
919         device_t                dev;
920 {
921         struct vr_softc         *sc;
922         struct ifnet            *ifp;
923         int                     s;
924
925         s = splimp();
926
927         sc = device_get_softc(dev);
928         ifp = &sc->arpcom.ac_if;
929
930         vr_stop(sc);
931         ether_ifdetach(ifp, ETHER_BPF_SUPPORTED);
932
933         bus_generic_detach(dev);
934         device_delete_child(dev, sc->vr_miibus);
935
936         bus_teardown_intr(dev, sc->vr_irq, sc->vr_intrhand);
937         bus_release_resource(dev, SYS_RES_IRQ, 0, sc->vr_irq);
938         bus_release_resource(dev, VR_RES, VR_RID, sc->vr_res);
939
940         contigfree(sc->vr_ldata, sizeof(struct vr_list_data), M_DEVBUF);
941
942         splx(s);
943
944         return(0);
945 }
946
947 /*
948  * Initialize the transmit descriptors.
949  */
950 static int vr_list_tx_init(sc)
951         struct vr_softc         *sc;
952 {
953         struct vr_chain_data    *cd;
954         struct vr_list_data     *ld;
955         int                     i;
956
957         cd = &sc->vr_cdata;
958         ld = sc->vr_ldata;
959         for (i = 0; i < VR_TX_LIST_CNT; i++) {
960                 cd->vr_tx_chain[i].vr_ptr = &ld->vr_tx_list[i];
961                 if (i == (VR_TX_LIST_CNT - 1))
962                         cd->vr_tx_chain[i].vr_nextdesc = 
963                                 &cd->vr_tx_chain[0];
964                 else
965                         cd->vr_tx_chain[i].vr_nextdesc =
966                                 &cd->vr_tx_chain[i + 1];
967         }
968
969         cd->vr_tx_free = &cd->vr_tx_chain[0];
970         cd->vr_tx_tail = cd->vr_tx_head = NULL;
971
972         return(0);
973 }
974
975
976 /*
977  * Initialize the RX descriptors and allocate mbufs for them. Note that
978  * we arrange the descriptors in a closed ring, so that the last descriptor
979  * points back to the first.
980  */
981 static int vr_list_rx_init(sc)
982         struct vr_softc         *sc;
983 {
984         struct vr_chain_data    *cd;
985         struct vr_list_data     *ld;
986         int                     i;
987
988         cd = &sc->vr_cdata;
989         ld = sc->vr_ldata;
990
991         for (i = 0; i < VR_RX_LIST_CNT; i++) {
992                 cd->vr_rx_chain[i].vr_ptr =
993                         (struct vr_desc *)&ld->vr_rx_list[i];
994                 if (vr_newbuf(sc, &cd->vr_rx_chain[i], NULL) == ENOBUFS)
995                         return(ENOBUFS);
996                 if (i == (VR_RX_LIST_CNT - 1)) {
997                         cd->vr_rx_chain[i].vr_nextdesc =
998                                         &cd->vr_rx_chain[0];
999                         ld->vr_rx_list[i].vr_next =
1000                                         vtophys(&ld->vr_rx_list[0]);
1001                 } else {
1002                         cd->vr_rx_chain[i].vr_nextdesc =
1003                                         &cd->vr_rx_chain[i + 1];
1004                         ld->vr_rx_list[i].vr_next =
1005                                         vtophys(&ld->vr_rx_list[i + 1]);
1006                 }
1007         }
1008
1009         cd->vr_rx_head = &cd->vr_rx_chain[0];
1010
1011         return(0);
1012 }
1013
1014 /*
1015  * Initialize an RX descriptor and attach an MBUF cluster.
1016  * Note: the length fields are only 11 bits wide, which means the
1017  * largest size we can specify is 2047. This is important because
1018  * MCLBYTES is 2048, so we have to subtract one otherwise we'll
1019  * overflow the field and make a mess.
1020  */
1021 static int vr_newbuf(sc, c, m)
1022         struct vr_softc         *sc;
1023         struct vr_chain_onefrag *c;
1024         struct mbuf             *m;
1025 {
1026         struct mbuf             *m_new = NULL;
1027
1028         if (m == NULL) {
1029                 MGETHDR(m_new, M_DONTWAIT, MT_DATA);
1030                 if (m_new == NULL)
1031                         return(ENOBUFS);
1032
1033                 MCLGET(m_new, M_DONTWAIT);
1034                 if (!(m_new->m_flags & M_EXT)) {
1035                         m_freem(m_new);
1036                         return(ENOBUFS);
1037                 }
1038                 m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
1039         } else {
1040                 m_new = m;
1041                 m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
1042                 m_new->m_data = m_new->m_ext.ext_buf;
1043         }
1044
1045         m_adj(m_new, sizeof(u_int64_t));
1046
1047         c->vr_mbuf = m_new;
1048         c->vr_ptr->vr_status = VR_RXSTAT;
1049         c->vr_ptr->vr_data = vtophys(mtod(m_new, caddr_t));
1050         c->vr_ptr->vr_ctl = VR_RXCTL | VR_RXLEN;
1051
1052         return(0);
1053 }
1054
1055 /*
1056  * A frame has been uploaded: pass the resulting mbuf chain up to
1057  * the higher level protocols.
1058  */
1059 static void vr_rxeof(sc)
1060         struct vr_softc         *sc;
1061 {
1062         struct ether_header     *eh;
1063         struct mbuf             *m;
1064         struct ifnet            *ifp;
1065         struct vr_chain_onefrag *cur_rx;
1066         int                     total_len = 0;
1067         u_int32_t               rxstat;
1068
1069         ifp = &sc->arpcom.ac_if;
1070
1071         while(!((rxstat = sc->vr_cdata.vr_rx_head->vr_ptr->vr_status) &
1072                                                         VR_RXSTAT_OWN)) {
1073                 struct mbuf             *m0 = NULL;
1074
1075                 cur_rx = sc->vr_cdata.vr_rx_head;
1076                 sc->vr_cdata.vr_rx_head = cur_rx->vr_nextdesc;
1077                 m = cur_rx->vr_mbuf;
1078
1079                 /*
1080                  * If an error occurs, update stats, clear the
1081                  * status word and leave the mbuf cluster in place:
1082                  * it should simply get re-used next time this descriptor
1083                  * comes up in the ring.
1084                  */
1085                 if (rxstat & VR_RXSTAT_RXERR) {
1086                         ifp->if_ierrors++;
1087                         printf("vr%d: rx error (%02x):",
1088                                sc->vr_unit, rxstat & 0x000000ff);
1089                         if (rxstat & VR_RXSTAT_CRCERR)
1090                                 printf(" crc error");
1091                         if (rxstat & VR_RXSTAT_FRAMEALIGNERR)
1092                                 printf(" frame alignment error\n");
1093                         if (rxstat & VR_RXSTAT_FIFOOFLOW)
1094                                 printf(" FIFO overflow");
1095                         if (rxstat & VR_RXSTAT_GIANT)
1096                                 printf(" received giant packet");
1097                         if (rxstat & VR_RXSTAT_RUNT)
1098                                 printf(" received runt packet");
1099                         if (rxstat & VR_RXSTAT_BUSERR)
1100                                 printf(" system bus error");
1101                         if (rxstat & VR_RXSTAT_BUFFERR)
1102                                 printf("rx buffer error");
1103                         printf("\n");
1104                         vr_newbuf(sc, cur_rx, m);
1105                         continue;
1106                 }
1107
1108                 /* No errors; receive the packet. */    
1109                 total_len = VR_RXBYTES(cur_rx->vr_ptr->vr_status);
1110
1111                 /*
1112                  * XXX The VIA Rhine chip includes the CRC with every
1113                  * received frame, and there's no way to turn this
1114                  * behavior off (at least, I can't find anything in
1115                  * the manual that explains how to do it) so we have
1116                  * to trim off the CRC manually.
1117                  */
1118                 total_len -= ETHER_CRC_LEN;
1119
1120                 m0 = m_devget(mtod(m, char *) - ETHER_ALIGN,
1121                     total_len + ETHER_ALIGN, 0, ifp, NULL);
1122                 vr_newbuf(sc, cur_rx, m);
1123                 if (m0 == NULL) {
1124                         ifp->if_ierrors++;
1125                         continue;
1126                 }
1127                 m_adj(m0, ETHER_ALIGN);
1128                 m = m0;
1129
1130                 ifp->if_ipackets++;
1131                 eh = mtod(m, struct ether_header *);
1132
1133                 /* Remove header from mbuf and pass it on. */
1134                 m_adj(m, sizeof(struct ether_header));
1135                 ether_input(ifp, eh, m);
1136         }
1137
1138         return;
1139 }
1140
1141 void vr_rxeoc(sc)
1142         struct vr_softc         *sc;
1143 {
1144         struct ifnet            *ifp;
1145         int                     i;
1146
1147         ifp = &sc->arpcom.ac_if;
1148
1149         ifp->if_ierrors++;
1150
1151         VR_CLRBIT16(sc, VR_COMMAND, VR_CMD_RX_ON);      
1152         DELAY(10000);
1153
1154         for (i = 0x400;
1155              i && (CSR_READ_2(sc, VR_COMMAND) & VR_CMD_RX_ON);
1156              i--)
1157                 ;       /* Wait for receiver to stop */
1158
1159         if (!i) {
1160                 printf("vr%d: rx shutdown error!\n", sc->vr_unit);
1161                 sc->vr_flags |= VR_F_RESTART;
1162                 return;
1163                 }
1164
1165         vr_rxeof(sc);
1166
1167         CSR_WRITE_4(sc, VR_RXADDR, vtophys(sc->vr_cdata.vr_rx_head->vr_ptr));
1168         VR_SETBIT16(sc, VR_COMMAND, VR_CMD_RX_ON);
1169         VR_SETBIT16(sc, VR_COMMAND, VR_CMD_RX_GO);
1170
1171         return;
1172 }
1173
1174 /*
1175  * A frame was downloaded to the chip. It's safe for us to clean up
1176  * the list buffers.
1177  */
1178
1179 static void vr_txeof(sc)
1180         struct vr_softc         *sc;
1181 {
1182         struct vr_chain         *cur_tx;
1183         struct ifnet            *ifp;
1184
1185         ifp = &sc->arpcom.ac_if;
1186
1187         /* Reset the timeout timer; if_txeoc will clear it. */
1188         ifp->if_timer = 5;
1189
1190         /* Sanity check. */
1191         if (sc->vr_cdata.vr_tx_head == NULL)
1192                 return;
1193
1194         /*
1195          * Go through our tx list and free mbufs for those
1196          * frames that have been transmitted.
1197          */
1198         while(sc->vr_cdata.vr_tx_head->vr_mbuf != NULL) {
1199                 u_int32_t               txstat;
1200                 int                     i;
1201
1202                 cur_tx = sc->vr_cdata.vr_tx_head;
1203                 txstat = cur_tx->vr_ptr->vr_status;
1204
1205                 if ((txstat & VR_TXSTAT_ABRT) ||
1206                     (txstat & VR_TXSTAT_UDF)) {
1207                         for (i = 0x400;
1208                              i && (CSR_READ_2(sc, VR_COMMAND) & VR_CMD_TX_ON);
1209                              i--)
1210                                 ;       /* Wait for chip to shutdown */
1211                         if (!i) {
1212                                 printf("vr%d: tx shutdown timeout\n", sc->vr_unit);
1213                                 sc->vr_flags |= VR_F_RESTART;
1214                                 break;
1215                         }
1216                         VR_TXOWN(cur_tx) = VR_TXSTAT_OWN;
1217                         CSR_WRITE_4(sc, VR_TXADDR, vtophys(cur_tx->vr_ptr));
1218                         break;
1219                 }
1220
1221                 if (txstat & VR_TXSTAT_OWN)
1222                         break;
1223
1224                 if (txstat & VR_TXSTAT_ERRSUM) {
1225                         ifp->if_oerrors++;
1226                         if (txstat & VR_TXSTAT_DEFER)
1227                                 ifp->if_collisions++;
1228                         if (txstat & VR_TXSTAT_LATECOLL)
1229                                 ifp->if_collisions++;
1230                 }
1231
1232                 ifp->if_collisions +=(txstat & VR_TXSTAT_COLLCNT) >> 3;
1233
1234                 ifp->if_opackets++;
1235                 if (cur_tx->vr_mbuf != NULL) {
1236                         m_freem(cur_tx->vr_mbuf);
1237                         cur_tx->vr_mbuf = NULL;
1238                 }
1239
1240                 if (sc->vr_cdata.vr_tx_head == sc->vr_cdata.vr_tx_tail) {
1241                         sc->vr_cdata.vr_tx_head = NULL;
1242                         sc->vr_cdata.vr_tx_tail = NULL;
1243                         break;
1244                 }
1245
1246                 sc->vr_cdata.vr_tx_head = cur_tx->vr_nextdesc;
1247         }
1248
1249         return;
1250 }
1251
1252 /*
1253  * TX 'end of channel' interrupt handler.
1254  */
1255 static void vr_txeoc(sc)
1256         struct vr_softc         *sc;
1257 {
1258         struct ifnet            *ifp;
1259
1260         ifp = &sc->arpcom.ac_if;
1261
1262         if (sc->vr_cdata.vr_tx_head == NULL) {
1263                 ifp->if_flags &= ~IFF_OACTIVE;
1264                 sc->vr_cdata.vr_tx_tail = NULL;
1265                 ifp->if_timer = 0;
1266         }
1267
1268         return;
1269 }
1270
1271 static void vr_tick(xsc)
1272         void                    *xsc;
1273 {
1274         struct vr_softc         *sc;
1275         struct mii_data         *mii;
1276         int                     s;
1277
1278         s = splimp();
1279
1280         sc = xsc;
1281         if (sc->vr_flags & VR_F_RESTART) {
1282                 printf("vr%d: restarting\n", sc->vr_unit);
1283                 vr_stop(sc);
1284                 vr_reset(sc);
1285                 vr_init(sc);
1286                 sc->vr_flags &= ~VR_F_RESTART;
1287         }
1288
1289         mii = device_get_softc(sc->vr_miibus);
1290         mii_tick(mii);
1291
1292         sc->vr_stat_ch = timeout(vr_tick, sc, hz);
1293
1294         splx(s);
1295
1296         return;
1297 }
1298
1299 static void vr_intr(arg)
1300         void                    *arg;
1301 {
1302         struct vr_softc         *sc;
1303         struct ifnet            *ifp;
1304         u_int16_t               status;
1305
1306         sc = arg;
1307         ifp = &sc->arpcom.ac_if;
1308
1309         /* Supress unwanted interrupts. */
1310         if (!(ifp->if_flags & IFF_UP)) {
1311                 vr_stop(sc);
1312                 return;
1313         }
1314
1315         /* Disable interrupts. */
1316         CSR_WRITE_2(sc, VR_IMR, 0x0000);
1317
1318         for (;;) {
1319
1320                 status = CSR_READ_2(sc, VR_ISR);
1321                 if (status)
1322                         CSR_WRITE_2(sc, VR_ISR, status);
1323
1324                 if ((status & VR_INTRS) == 0)
1325                         break;
1326
1327                 if (status & VR_ISR_RX_OK)
1328                         vr_rxeof(sc);
1329
1330                 if (status & VR_ISR_RX_DROPPED) {
1331                         printf("vr%d: rx packet lost\n", sc->vr_unit);
1332                         ifp->if_ierrors++;
1333                         }
1334
1335                 if ((status & VR_ISR_RX_ERR) || (status & VR_ISR_RX_NOBUF) ||
1336                     (status & VR_ISR_RX_NOBUF) || (status & VR_ISR_RX_OFLOW)) {
1337                         printf("vr%d: receive error (%04x)",
1338                                sc->vr_unit, status);
1339                         if (status & VR_ISR_RX_NOBUF)
1340                                 printf(" no buffers");
1341                         if (status & VR_ISR_RX_OFLOW)
1342                                 printf(" overflow");
1343                         if (status & VR_ISR_RX_DROPPED)
1344                                 printf(" packet lost");
1345                         printf("\n");
1346                         vr_rxeoc(sc);
1347                 }
1348
1349                 if ((status & VR_ISR_BUSERR) || (status & VR_ISR_TX_UNDERRUN)) {
1350                         vr_reset(sc);
1351                         vr_init(sc);
1352                         break;
1353                 }
1354
1355                 if ((status & VR_ISR_TX_OK) || (status & VR_ISR_TX_ABRT) ||
1356                     (status & VR_ISR_TX_ABRT2) || (status & VR_ISR_UDFI)) {
1357                         vr_txeof(sc);
1358                         if ((status & VR_ISR_UDFI) ||
1359                             (status & VR_ISR_TX_ABRT2) ||
1360                             (status & VR_ISR_TX_ABRT)) {
1361                                 ifp->if_oerrors++;
1362                                 if (sc->vr_cdata.vr_tx_head != NULL) {
1363                                         VR_SETBIT16(sc, VR_COMMAND, VR_CMD_TX_ON);
1364                                         VR_SETBIT16(sc, VR_COMMAND, VR_CMD_TX_GO);
1365                                 }
1366                         } else
1367                                 vr_txeoc(sc);
1368                 }
1369
1370         }
1371
1372         /* Re-enable interrupts. */
1373         CSR_WRITE_2(sc, VR_IMR, VR_INTRS);
1374
1375         if (ifp->if_snd.ifq_head != NULL) {
1376                 vr_start(ifp);
1377         }
1378
1379         return;
1380 }
1381
1382 /*
1383  * Encapsulate an mbuf chain in a descriptor by coupling the mbuf data
1384  * pointers to the fragment pointers.
1385  */
1386 static int vr_encap(sc, c, m_head)
1387         struct vr_softc         *sc;
1388         struct vr_chain         *c;
1389         struct mbuf             *m_head;
1390 {
1391         int                     frag = 0;
1392         struct vr_desc          *f = NULL;
1393         int                     total_len;
1394         struct mbuf             *m;
1395
1396         m = m_head;
1397         total_len = 0;
1398
1399         /*
1400          * The VIA Rhine wants packet buffers to be longword
1401          * aligned, but very often our mbufs aren't. Rather than
1402          * waste time trying to decide when to copy and when not
1403          * to copy, just do it all the time.
1404          */
1405         if (m != NULL) {
1406                 struct mbuf             *m_new = NULL;
1407
1408                 MGETHDR(m_new, M_DONTWAIT, MT_DATA);
1409                 if (m_new == NULL) {
1410                         printf("vr%d: no memory for tx list\n", sc->vr_unit);
1411                         return(1);
1412                 }
1413                 if (m_head->m_pkthdr.len > MHLEN) {
1414                         MCLGET(m_new, M_DONTWAIT);
1415                         if (!(m_new->m_flags & M_EXT)) {
1416                                 m_freem(m_new);
1417                                 printf("vr%d: no memory for tx list\n",
1418                                                 sc->vr_unit);
1419                                 return(1);
1420                         }
1421                 }
1422                 m_copydata(m_head, 0, m_head->m_pkthdr.len,     
1423                                         mtod(m_new, caddr_t));
1424                 m_new->m_pkthdr.len = m_new->m_len = m_head->m_pkthdr.len;
1425                 m_freem(m_head);
1426                 m_head = m_new;
1427                 /*
1428                  * The Rhine chip doesn't auto-pad, so we have to make
1429                  * sure to pad short frames out to the minimum frame length
1430                  * ourselves.
1431                  */
1432                 if (m_head->m_len < VR_MIN_FRAMELEN) {
1433                         m_new->m_pkthdr.len += VR_MIN_FRAMELEN - m_new->m_len;
1434                         m_new->m_len = m_new->m_pkthdr.len;
1435                 }
1436                 f = c->vr_ptr;
1437                 f->vr_data = vtophys(mtod(m_new, caddr_t));
1438                 f->vr_ctl = total_len = m_new->m_len;
1439                 f->vr_ctl |= VR_TXCTL_TLINK|VR_TXCTL_FIRSTFRAG;
1440                 f->vr_status = 0;
1441                 frag = 1;
1442         }
1443
1444         c->vr_mbuf = m_head;
1445         c->vr_ptr->vr_ctl |= VR_TXCTL_LASTFRAG|VR_TXCTL_FINT;
1446         c->vr_ptr->vr_next = vtophys(c->vr_nextdesc->vr_ptr);
1447
1448         return(0);
1449 }
1450
1451 /*
1452  * Main transmit routine. To avoid having to do mbuf copies, we put pointers
1453  * to the mbuf data regions directly in the transmit lists. We also save a
1454  * copy of the pointers since the transmit list fragment pointers are
1455  * physical addresses.
1456  */
1457
1458 static void vr_start(ifp)
1459         struct ifnet            *ifp;
1460 {
1461         struct vr_softc         *sc;
1462         struct mbuf             *m_head = NULL;
1463         struct vr_chain         *cur_tx = NULL, *start_tx;
1464
1465         sc = ifp->if_softc;
1466
1467         if (ifp->if_flags & IFF_OACTIVE)
1468                 return;
1469
1470         /*
1471          * Check for an available queue slot. If there are none,
1472          * punt.
1473          */
1474         if (sc->vr_cdata.vr_tx_free->vr_mbuf != NULL) {
1475                 ifp->if_flags |= IFF_OACTIVE;
1476                 return;
1477         }
1478
1479         start_tx = sc->vr_cdata.vr_tx_free;
1480
1481         while(sc->vr_cdata.vr_tx_free->vr_mbuf == NULL) {
1482                 IF_DEQUEUE(&ifp->if_snd, m_head);
1483                 if (m_head == NULL)
1484                         break;
1485
1486                 /* Pick a descriptor off the free list. */
1487                 cur_tx = sc->vr_cdata.vr_tx_free;
1488                 sc->vr_cdata.vr_tx_free = cur_tx->vr_nextdesc;
1489
1490                 /* Pack the data into the descriptor. */
1491                 if (vr_encap(sc, cur_tx, m_head)) {
1492                         IF_PREPEND(&ifp->if_snd, m_head);
1493                         ifp->if_flags |= IFF_OACTIVE;
1494                         cur_tx = NULL;
1495                         break;
1496                 }
1497
1498                 if (cur_tx != start_tx)
1499                         VR_TXOWN(cur_tx) = VR_TXSTAT_OWN;
1500
1501                 /*
1502                  * If there's a BPF listener, bounce a copy of this frame
1503                  * to him.
1504                  */
1505                 if (ifp->if_bpf)
1506                         bpf_mtap(ifp, cur_tx->vr_mbuf);
1507
1508                 VR_TXOWN(cur_tx) = VR_TXSTAT_OWN;
1509                 VR_SETBIT16(sc, VR_COMMAND, /*VR_CMD_TX_ON|*/VR_CMD_TX_GO);
1510         }
1511
1512         /*
1513          * If there are no frames queued, bail.
1514          */
1515         if (cur_tx == NULL)
1516                 return;
1517
1518         sc->vr_cdata.vr_tx_tail = cur_tx;
1519
1520         if (sc->vr_cdata.vr_tx_head == NULL)
1521                 sc->vr_cdata.vr_tx_head = start_tx;
1522
1523         /*
1524          * Set a timeout in case the chip goes out to lunch.
1525          */
1526         ifp->if_timer = 5;
1527
1528         return;
1529 }
1530
1531 static void vr_init(xsc)
1532         void                    *xsc;
1533 {
1534         struct vr_softc         *sc = xsc;
1535         struct ifnet            *ifp = &sc->arpcom.ac_if;
1536         struct mii_data         *mii;
1537         int                     s, i;
1538
1539         s = splimp();
1540
1541         mii = device_get_softc(sc->vr_miibus);
1542
1543         /*
1544          * Cancel pending I/O and free all RX/TX buffers.
1545          */
1546         vr_stop(sc);
1547         vr_reset(sc);
1548
1549         /*
1550          * Set our station address.
1551          */
1552         for (i = 0; i < ETHER_ADDR_LEN; i++)
1553                 CSR_WRITE_1(sc, VR_PAR0 + i, sc->arpcom.ac_enaddr[i]);
1554         
1555         /* Set DMA size */
1556         VR_CLRBIT(sc, VR_BCR0, VR_BCR0_DMA_LENGTH);
1557         VR_SETBIT(sc, VR_BCR0, VR_BCR0_DMA_STORENFWD);
1558
1559         /* 
1560          * BCR0 and BCR1 can override the RXCFG and TXCFG registers,
1561          * so we must set both.
1562          */
1563         VR_CLRBIT(sc, VR_BCR0, VR_BCR0_RX_THRESH);
1564         VR_SETBIT(sc, VR_BCR0, VR_BCR0_RXTHRESH128BYTES);
1565
1566         VR_CLRBIT(sc, VR_BCR1, VR_BCR1_TX_THRESH);
1567         VR_SETBIT(sc, VR_BCR1, VR_BCR1_TXTHRESHSTORENFWD);
1568
1569         VR_CLRBIT(sc, VR_RXCFG, VR_RXCFG_RX_THRESH);
1570         VR_SETBIT(sc, VR_RXCFG, VR_RXTHRESH_128BYTES);
1571
1572         VR_CLRBIT(sc, VR_TXCFG, VR_TXCFG_TX_THRESH);
1573         VR_SETBIT(sc, VR_TXCFG, VR_TXTHRESH_STORENFWD);
1574
1575         /* Init circular RX list. */
1576         if (vr_list_rx_init(sc) == ENOBUFS) {
1577                 printf("vr%d: initialization failed: no "
1578                         "memory for rx buffers\n", sc->vr_unit);
1579                 vr_stop(sc);
1580                 (void)splx(s);
1581                 return;
1582         }
1583
1584         /*
1585          * Init tx descriptors.
1586          */
1587         vr_list_tx_init(sc);
1588
1589         /* If we want promiscuous mode, set the allframes bit. */
1590         if (ifp->if_flags & IFF_PROMISC)
1591                 VR_SETBIT(sc, VR_RXCFG, VR_RXCFG_RX_PROMISC);
1592         else
1593                 VR_CLRBIT(sc, VR_RXCFG, VR_RXCFG_RX_PROMISC);
1594
1595         /* Set capture broadcast bit to capture broadcast frames. */
1596         if (ifp->if_flags & IFF_BROADCAST)
1597                 VR_SETBIT(sc, VR_RXCFG, VR_RXCFG_RX_BROAD);
1598         else
1599                 VR_CLRBIT(sc, VR_RXCFG, VR_RXCFG_RX_BROAD);
1600
1601         /*
1602          * Program the multicast filter, if necessary.
1603          */
1604         vr_setmulti(sc);
1605
1606         /*
1607          * Load the address of the RX list.
1608          */
1609         CSR_WRITE_4(sc, VR_RXADDR, vtophys(sc->vr_cdata.vr_rx_head->vr_ptr));
1610
1611         /* Enable receiver and transmitter. */
1612         CSR_WRITE_2(sc, VR_COMMAND, VR_CMD_TX_NOPOLL|VR_CMD_START|
1613                                     VR_CMD_TX_ON|VR_CMD_RX_ON|
1614                                     VR_CMD_RX_GO);
1615
1616         CSR_WRITE_4(sc, VR_TXADDR, vtophys(&sc->vr_ldata->vr_tx_list[0]));
1617
1618         /*
1619          * Enable interrupts.
1620          */
1621         CSR_WRITE_2(sc, VR_ISR, 0xFFFF);
1622         CSR_WRITE_2(sc, VR_IMR, VR_INTRS);
1623
1624         mii_mediachg(mii);
1625
1626         ifp->if_flags |= IFF_RUNNING;
1627         ifp->if_flags &= ~IFF_OACTIVE;
1628
1629         (void)splx(s);
1630
1631         sc->vr_stat_ch = timeout(vr_tick, sc, hz);
1632
1633         return;
1634 }
1635
1636 /*
1637  * Set media options.
1638  */
1639 static int vr_ifmedia_upd(ifp)
1640         struct ifnet            *ifp;
1641 {
1642         struct vr_softc         *sc;
1643
1644         sc = ifp->if_softc;
1645
1646         if (ifp->if_flags & IFF_UP)
1647                 vr_init(sc);
1648
1649         return(0);
1650 }
1651
1652 /*
1653  * Report current media status.
1654  */
1655 static void vr_ifmedia_sts(ifp, ifmr)
1656         struct ifnet            *ifp;
1657         struct ifmediareq       *ifmr;
1658 {
1659         struct vr_softc         *sc;
1660         struct mii_data         *mii;
1661
1662         sc = ifp->if_softc;
1663         mii = device_get_softc(sc->vr_miibus);
1664         mii_pollstat(mii);
1665         ifmr->ifm_active = mii->mii_media_active;
1666         ifmr->ifm_status = mii->mii_media_status;
1667
1668         return;
1669 }
1670
1671 static int vr_ioctl(ifp, command, data)
1672         struct ifnet            *ifp;
1673         u_long                  command;
1674         caddr_t                 data;
1675 {
1676         struct vr_softc         *sc = ifp->if_softc;
1677         struct ifreq            *ifr = (struct ifreq *) data;
1678         struct mii_data         *mii;
1679         int                     s, error = 0;
1680
1681         s = splimp();
1682
1683         switch(command) {
1684         case SIOCSIFADDR:
1685         case SIOCGIFADDR:
1686         case SIOCSIFMTU:
1687                 error = ether_ioctl(ifp, command, data);
1688                 break;
1689         case SIOCSIFFLAGS:
1690                 if (ifp->if_flags & IFF_UP) {
1691                         vr_init(sc);
1692                 } else {
1693                         if (ifp->if_flags & IFF_RUNNING)
1694                                 vr_stop(sc);
1695                 }
1696                 error = 0;
1697                 break;
1698         case SIOCADDMULTI:
1699         case SIOCDELMULTI:
1700                 vr_setmulti(sc);
1701                 error = 0;
1702                 break;
1703         case SIOCGIFMEDIA:
1704         case SIOCSIFMEDIA:
1705                 mii = device_get_softc(sc->vr_miibus);
1706                 error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
1707                 break;
1708         default:
1709                 error = EINVAL;
1710                 break;
1711         }
1712
1713         (void)splx(s);
1714
1715         return(error);
1716 }
1717
1718 static void vr_watchdog(ifp)
1719         struct ifnet            *ifp;
1720 {
1721         struct vr_softc         *sc;
1722
1723         sc = ifp->if_softc;
1724
1725         ifp->if_oerrors++;
1726         printf("vr%d: watchdog timeout\n", sc->vr_unit);
1727
1728         vr_stop(sc);
1729         vr_reset(sc);
1730         vr_init(sc);
1731
1732         if (ifp->if_snd.ifq_head != NULL)
1733                 vr_start(ifp);
1734
1735         return;
1736 }
1737
1738 /*
1739  * Stop the adapter and free any mbufs allocated to the
1740  * RX and TX lists.
1741  */
1742 static void vr_stop(sc)
1743         struct vr_softc         *sc;
1744 {
1745         register int            i;
1746         struct ifnet            *ifp;
1747
1748         ifp = &sc->arpcom.ac_if;
1749         ifp->if_timer = 0;
1750
1751         untimeout(vr_tick, sc, sc->vr_stat_ch);
1752
1753         VR_SETBIT16(sc, VR_COMMAND, VR_CMD_STOP);
1754         VR_CLRBIT16(sc, VR_COMMAND, (VR_CMD_RX_ON|VR_CMD_TX_ON));
1755         CSR_WRITE_2(sc, VR_IMR, 0x0000);
1756         CSR_WRITE_4(sc, VR_TXADDR, 0x00000000);
1757         CSR_WRITE_4(sc, VR_RXADDR, 0x00000000);
1758
1759         /*
1760          * Free data in the RX lists.
1761          */
1762         for (i = 0; i < VR_RX_LIST_CNT; i++) {
1763                 if (sc->vr_cdata.vr_rx_chain[i].vr_mbuf != NULL) {
1764                         m_freem(sc->vr_cdata.vr_rx_chain[i].vr_mbuf);
1765                         sc->vr_cdata.vr_rx_chain[i].vr_mbuf = NULL;
1766                 }
1767         }
1768         bzero((char *)&sc->vr_ldata->vr_rx_list,
1769                 sizeof(sc->vr_ldata->vr_rx_list));
1770
1771         /*
1772          * Free the TX list buffers.
1773          */
1774         for (i = 0; i < VR_TX_LIST_CNT; i++) {
1775                 if (sc->vr_cdata.vr_tx_chain[i].vr_mbuf != NULL) {
1776                         m_freem(sc->vr_cdata.vr_tx_chain[i].vr_mbuf);
1777                         sc->vr_cdata.vr_tx_chain[i].vr_mbuf = NULL;
1778                 }
1779         }
1780
1781         bzero((char *)&sc->vr_ldata->vr_tx_list,
1782                 sizeof(sc->vr_ldata->vr_tx_list));
1783
1784         ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
1785
1786         return;
1787 }
1788
1789 /*
1790  * Stop all chip I/O so that the kernel's probe routines don't
1791  * get confused by errant DMAs when rebooting.
1792  */
1793 static void vr_shutdown(dev)
1794         device_t                dev;
1795 {
1796         struct vr_softc         *sc;
1797
1798         sc = device_get_softc(dev);
1799
1800         vr_stop(sc);
1801
1802         return;
1803 }