]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/pci/if_sis.c
- Better use of the busdma API.
[FreeBSD/FreeBSD.git] / sys / pci / if_sis.c
1 /*-
2  * Copyright (c) 2005 Poul-Henning Kamp <phk@FreeBSD.org>
3  * Copyright (c) 1997, 1998, 1999
4  *      Bill Paul <wpaul@ctr.columbia.edu>.  All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. All advertising materials mentioning features or use of this software
15  *    must display the following acknowledgement:
16  *      This product includes software developed by Bill Paul.
17  * 4. Neither the name of the author nor the names of any co-contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
25  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31  * THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD$");
36
37 /*
38  * SiS 900/SiS 7016 fast ethernet PCI NIC driver. Datasheets are
39  * available from http://www.sis.com.tw.
40  *
41  * This driver also supports the NatSemi DP83815. Datasheets are
42  * available from http://www.national.com.
43  *
44  * Written by Bill Paul <wpaul@ee.columbia.edu>
45  * Electrical Engineering Department
46  * Columbia University, New York City
47  */
48 /*
49  * The SiS 900 is a fairly simple chip. It uses bus master DMA with
50  * simple TX and RX descriptors of 3 longwords in size. The receiver
51  * has a single perfect filter entry for the station address and a
52  * 128-bit multicast hash table. The SiS 900 has a built-in MII-based
53  * transceiver while the 7016 requires an external transceiver chip.
54  * Both chips offer the standard bit-bang MII interface as well as
55  * an enchanced PHY interface which simplifies accessing MII registers.
56  *
57  * The only downside to this chipset is that RX descriptors must be
58  * longword aligned.
59  */
60
61 #ifdef HAVE_KERNEL_OPTION_HEADERS
62 #include "opt_device_polling.h"
63 #endif
64
65 #include <sys/param.h>
66 #include <sys/systm.h>
67 #include <sys/sockio.h>
68 #include <sys/mbuf.h>
69 #include <sys/malloc.h>
70 #include <sys/kernel.h>
71 #include <sys/module.h>
72 #include <sys/socket.h>
73 #include <sys/sysctl.h>
74
75 #include <net/if.h>
76 #include <net/if_arp.h>
77 #include <net/ethernet.h>
78 #include <net/if_dl.h>
79 #include <net/if_media.h>
80 #include <net/if_types.h>
81 #include <net/if_vlan_var.h>
82
83 #include <net/bpf.h>
84
85 #include <machine/bus.h>
86 #include <machine/resource.h>
87 #include <sys/bus.h>
88 #include <sys/rman.h>
89
90 #include <dev/mii/mii.h>
91 #include <dev/mii/miivar.h>
92
93 #include <dev/pci/pcireg.h>
94 #include <dev/pci/pcivar.h>
95
96 #define SIS_USEIOSPACE
97
98 #include <pci/if_sisreg.h>
99
100 MODULE_DEPEND(sis, pci, 1, 1, 1);
101 MODULE_DEPEND(sis, ether, 1, 1, 1);
102 MODULE_DEPEND(sis, miibus, 1, 1, 1);
103
104 /* "device miibus" required.  See GENERIC if you get errors here. */
105 #include "miibus_if.h"
106
107 #define SIS_LOCK(_sc)           mtx_lock(&(_sc)->sis_mtx)
108 #define SIS_UNLOCK(_sc)         mtx_unlock(&(_sc)->sis_mtx)
109 #define SIS_LOCK_ASSERT(_sc)    mtx_assert(&(_sc)->sis_mtx, MA_OWNED)
110
111 /*
112  * register space access macros
113  */
114 #define CSR_WRITE_4(sc, reg, val)       bus_write_4(sc->sis_res[0], reg, val)
115
116 #define CSR_READ_4(sc, reg)             bus_read_4(sc->sis_res[0], reg)
117
118 #define CSR_READ_2(sc, reg)             bus_read_2(sc->sis_res[0], reg)
119
120 /*
121  * Various supported device vendors/types and their names.
122  */
123 static struct sis_type sis_devs[] = {
124         { SIS_VENDORID, SIS_DEVICEID_900, "SiS 900 10/100BaseTX" },
125         { SIS_VENDORID, SIS_DEVICEID_7016, "SiS 7016 10/100BaseTX" },
126         { NS_VENDORID, NS_DEVICEID_DP83815, "NatSemi DP8381[56] 10/100BaseTX" },
127         { 0, 0, NULL }
128 };
129
130 static int sis_detach(device_t);
131 static void sis_ifmedia_sts(struct ifnet *, struct ifmediareq *);
132 static int sis_ifmedia_upd(struct ifnet *);
133 static void sis_init(void *);
134 static void sis_initl(struct sis_softc *);
135 static void sis_intr(void *);
136 static int sis_ioctl(struct ifnet *, u_long, caddr_t);
137 static int sis_newbuf(struct sis_softc *, struct sis_desc *, struct mbuf *);
138 static void sis_start(struct ifnet *);
139 static void sis_startl(struct ifnet *);
140 static void sis_stop(struct sis_softc *);
141 static void sis_watchdog(struct ifnet *);
142
143
144 static struct resource_spec sis_res_spec[] = {
145 #ifdef SIS_USEIOSPACE
146         { SYS_RES_IOPORT,       SIS_PCI_LOIO,   RF_ACTIVE},
147 #else
148         { SYS_RES_MEMORY,       SIS_PCI_LOMEM,  RF_ACTIVE},
149 #endif
150         { SYS_RES_IRQ,          0,              RF_ACTIVE | RF_SHAREABLE},
151         { -1, 0 }
152 };
153
154 #define SIS_SETBIT(sc, reg, x)                          \
155         CSR_WRITE_4(sc, reg,                            \
156                 CSR_READ_4(sc, reg) | (x))
157
158 #define SIS_CLRBIT(sc, reg, x)                          \
159         CSR_WRITE_4(sc, reg,                            \
160                 CSR_READ_4(sc, reg) & ~(x))
161
162 #define SIO_SET(x)                                      \
163         CSR_WRITE_4(sc, SIS_EECTL, CSR_READ_4(sc, SIS_EECTL) | x)
164
165 #define SIO_CLR(x)                                      \
166         CSR_WRITE_4(sc, SIS_EECTL, CSR_READ_4(sc, SIS_EECTL) & ~x)
167
168 static void
169 sis_dma_map_desc_next(void *arg, bus_dma_segment_t *segs, int nseg, int error)
170 {
171         struct sis_desc *r;
172
173         r = arg;
174         r->sis_next = segs->ds_addr;
175 }
176
177 static void
178 sis_dma_map_desc_ptr(void *arg, bus_dma_segment_t *segs, int nseg, int error)
179 {
180         struct sis_desc *r;
181
182         r = arg;
183         r->sis_ptr = segs->ds_addr;
184 }
185
186 static void
187 sis_dma_map_ring(void *arg, bus_dma_segment_t *segs, int nseg, int error)
188 {
189         u_int32_t *p;
190
191         p = arg;
192         *p = segs->ds_addr;
193 }
194
195 /*
196  * Routine to reverse the bits in a word. Stolen almost
197  * verbatim from /usr/games/fortune.
198  */
199 static uint16_t
200 sis_reverse(uint16_t n)
201 {
202         n = ((n >>  1) & 0x5555) | ((n <<  1) & 0xaaaa);
203         n = ((n >>  2) & 0x3333) | ((n <<  2) & 0xcccc);
204         n = ((n >>  4) & 0x0f0f) | ((n <<  4) & 0xf0f0);
205         n = ((n >>  8) & 0x00ff) | ((n <<  8) & 0xff00);
206
207         return(n);
208 }
209
210 static void
211 sis_delay(struct sis_softc *sc)
212 {
213         int                     idx;
214
215         for (idx = (300 / 33) + 1; idx > 0; idx--)
216                 CSR_READ_4(sc, SIS_CSR);
217 }
218
219 static void
220 sis_eeprom_idle(struct sis_softc *sc)
221 {
222         int             i;
223
224         SIO_SET(SIS_EECTL_CSEL);
225         sis_delay(sc);
226         SIO_SET(SIS_EECTL_CLK);
227         sis_delay(sc);
228
229         for (i = 0; i < 25; i++) {
230                 SIO_CLR(SIS_EECTL_CLK);
231                 sis_delay(sc);
232                 SIO_SET(SIS_EECTL_CLK);
233                 sis_delay(sc);
234         }
235
236         SIO_CLR(SIS_EECTL_CLK);
237         sis_delay(sc);
238         SIO_CLR(SIS_EECTL_CSEL);
239         sis_delay(sc);
240         CSR_WRITE_4(sc, SIS_EECTL, 0x00000000);
241 }
242
243 /*
244  * Send a read command and address to the EEPROM, check for ACK.
245  */
246 static void
247 sis_eeprom_putbyte(struct sis_softc *sc, int addr)
248 {
249         int             d, i;
250
251         d = addr | SIS_EECMD_READ;
252
253         /*
254          * Feed in each bit and stobe the clock.
255          */
256         for (i = 0x400; i; i >>= 1) {
257                 if (d & i) {
258                         SIO_SET(SIS_EECTL_DIN);
259                 } else {
260                         SIO_CLR(SIS_EECTL_DIN);
261                 }
262                 sis_delay(sc);
263                 SIO_SET(SIS_EECTL_CLK);
264                 sis_delay(sc);
265                 SIO_CLR(SIS_EECTL_CLK);
266                 sis_delay(sc);
267         }
268 }
269
270 /*
271  * Read a word of data stored in the EEPROM at address 'addr.'
272  */
273 static void
274 sis_eeprom_getword(struct sis_softc *sc, int addr, uint16_t *dest)
275 {
276         int             i;
277         u_int16_t               word = 0;
278
279         /* Force EEPROM to idle state. */
280         sis_eeprom_idle(sc);
281
282         /* Enter EEPROM access mode. */
283         sis_delay(sc);
284         SIO_CLR(SIS_EECTL_CLK);
285         sis_delay(sc);
286         SIO_SET(SIS_EECTL_CSEL);
287         sis_delay(sc);
288
289         /*
290          * Send address of word we want to read.
291          */
292         sis_eeprom_putbyte(sc, addr);
293
294         /*
295          * Start reading bits from EEPROM.
296          */
297         for (i = 0x8000; i; i >>= 1) {
298                 SIO_SET(SIS_EECTL_CLK);
299                 sis_delay(sc);
300                 if (CSR_READ_4(sc, SIS_EECTL) & SIS_EECTL_DOUT)
301                         word |= i;
302                 sis_delay(sc);
303                 SIO_CLR(SIS_EECTL_CLK);
304                 sis_delay(sc);
305         }
306
307         /* Turn off EEPROM access mode. */
308         sis_eeprom_idle(sc);
309
310         *dest = word;
311 }
312
313 /*
314  * Read a sequence of words from the EEPROM.
315  */
316 static void
317 sis_read_eeprom(struct sis_softc *sc, caddr_t dest, int off, int cnt, int swap)
318 {
319         int                     i;
320         u_int16_t               word = 0, *ptr;
321
322         for (i = 0; i < cnt; i++) {
323                 sis_eeprom_getword(sc, off + i, &word);
324                 ptr = (u_int16_t *)(dest + (i * 2));
325                 if (swap)
326                         *ptr = ntohs(word);
327                 else
328                         *ptr = word;
329         }
330 }
331
332 #if defined(__i386__) || defined(__amd64__)
333 static device_t
334 sis_find_bridge(device_t dev)
335 {
336         devclass_t              pci_devclass;
337         device_t                *pci_devices;
338         int                     pci_count = 0;
339         device_t                *pci_children;
340         int                     pci_childcount = 0;
341         device_t                *busp, *childp;
342         device_t                child = NULL;
343         int                     i, j;
344
345         if ((pci_devclass = devclass_find("pci")) == NULL)
346                 return(NULL);
347
348         devclass_get_devices(pci_devclass, &pci_devices, &pci_count);
349
350         for (i = 0, busp = pci_devices; i < pci_count; i++, busp++) {
351                 pci_childcount = 0;
352                 device_get_children(*busp, &pci_children, &pci_childcount);
353                 for (j = 0, childp = pci_children;
354                     j < pci_childcount; j++, childp++) {
355                         if (pci_get_vendor(*childp) == SIS_VENDORID &&
356                             pci_get_device(*childp) == 0x0008) {
357                                 child = *childp;
358                                 goto done;
359                         }
360                 }
361         }
362
363 done:
364         free(pci_devices, M_TEMP);
365         free(pci_children, M_TEMP);
366         return(child);
367 }
368
369 static void
370 sis_read_cmos(struct sis_softc *sc, device_t dev, caddr_t dest, int off, int cnt)
371 {
372         device_t                bridge;
373         u_int8_t                reg;
374         int                     i;
375         bus_space_tag_t         btag;
376
377         bridge = sis_find_bridge(dev);
378         if (bridge == NULL)
379                 return;
380         reg = pci_read_config(bridge, 0x48, 1);
381         pci_write_config(bridge, 0x48, reg|0x40, 1);
382
383         /* XXX */
384 #if defined(__i386__)
385         btag = I386_BUS_SPACE_IO;
386 #elif defined(__amd64__)
387         btag = AMD64_BUS_SPACE_IO;
388 #endif
389
390         for (i = 0; i < cnt; i++) {
391                 bus_space_write_1(btag, 0x0, 0x70, i + off);
392                 *(dest + i) = bus_space_read_1(btag, 0x0, 0x71);
393         }
394
395         pci_write_config(bridge, 0x48, reg & ~0x40, 1);
396         return;
397 }
398
399 static void
400 sis_read_mac(struct sis_softc *sc, device_t dev, caddr_t dest)
401 {
402         u_int32_t               filtsave, csrsave;
403
404         filtsave = CSR_READ_4(sc, SIS_RXFILT_CTL);
405         csrsave = CSR_READ_4(sc, SIS_CSR);
406
407         CSR_WRITE_4(sc, SIS_CSR, SIS_CSR_RELOAD | filtsave);
408         CSR_WRITE_4(sc, SIS_CSR, 0);
409                 
410         CSR_WRITE_4(sc, SIS_RXFILT_CTL, filtsave & ~SIS_RXFILTCTL_ENABLE);
411
412         CSR_WRITE_4(sc, SIS_RXFILT_CTL, SIS_FILTADDR_PAR0);
413         ((u_int16_t *)dest)[0] = CSR_READ_2(sc, SIS_RXFILT_DATA);
414         CSR_WRITE_4(sc, SIS_RXFILT_CTL,SIS_FILTADDR_PAR1);
415         ((u_int16_t *)dest)[1] = CSR_READ_2(sc, SIS_RXFILT_DATA);
416         CSR_WRITE_4(sc, SIS_RXFILT_CTL, SIS_FILTADDR_PAR2);
417         ((u_int16_t *)dest)[2] = CSR_READ_2(sc, SIS_RXFILT_DATA);
418
419         CSR_WRITE_4(sc, SIS_RXFILT_CTL, filtsave);
420         CSR_WRITE_4(sc, SIS_CSR, csrsave);
421         return;
422 }
423 #endif
424
425 /*
426  * Sync the PHYs by setting data bit and strobing the clock 32 times.
427  */
428 static void
429 sis_mii_sync(struct sis_softc *sc)
430 {
431         int             i;
432  
433         SIO_SET(SIS_MII_DIR|SIS_MII_DATA);
434  
435         for (i = 0; i < 32; i++) {
436                 SIO_SET(SIS_MII_CLK);
437                 DELAY(1);
438                 SIO_CLR(SIS_MII_CLK);
439                 DELAY(1);
440         }
441 }
442  
443 /*
444  * Clock a series of bits through the MII.
445  */
446 static void
447 sis_mii_send(struct sis_softc *sc, uint32_t bits, int cnt)
448 {
449         int                     i;
450  
451         SIO_CLR(SIS_MII_CLK);
452  
453         for (i = (0x1 << (cnt - 1)); i; i >>= 1) {
454                 if (bits & i) {
455                         SIO_SET(SIS_MII_DATA);
456                 } else {
457                         SIO_CLR(SIS_MII_DATA);
458                 }
459                 DELAY(1);
460                 SIO_CLR(SIS_MII_CLK);
461                 DELAY(1);
462                 SIO_SET(SIS_MII_CLK);
463         }
464 }
465  
466 /*
467  * Read an PHY register through the MII.
468  */
469 static int
470 sis_mii_readreg(struct sis_softc *sc, struct sis_mii_frame *frame)
471 {
472         int                     i, ack;
473  
474         /*
475          * Set up frame for RX.
476          */
477         frame->mii_stdelim = SIS_MII_STARTDELIM;
478         frame->mii_opcode = SIS_MII_READOP;
479         frame->mii_turnaround = 0;
480         frame->mii_data = 0;
481         
482         /*
483          * Turn on data xmit.
484          */
485         SIO_SET(SIS_MII_DIR);
486
487         sis_mii_sync(sc);
488  
489         /*
490          * Send command/address info.
491          */
492         sis_mii_send(sc, frame->mii_stdelim, 2);
493         sis_mii_send(sc, frame->mii_opcode, 2);
494         sis_mii_send(sc, frame->mii_phyaddr, 5);
495         sis_mii_send(sc, frame->mii_regaddr, 5);
496  
497         /* Idle bit */
498         SIO_CLR((SIS_MII_CLK|SIS_MII_DATA));
499         DELAY(1);
500         SIO_SET(SIS_MII_CLK);
501         DELAY(1);
502  
503         /* Turn off xmit. */
504         SIO_CLR(SIS_MII_DIR);
505  
506         /* Check for ack */
507         SIO_CLR(SIS_MII_CLK);
508         DELAY(1);
509         ack = CSR_READ_4(sc, SIS_EECTL) & SIS_MII_DATA;
510         SIO_SET(SIS_MII_CLK);
511         DELAY(1);
512  
513         /*
514          * Now try reading data bits. If the ack failed, we still
515          * need to clock through 16 cycles to keep the PHY(s) in sync.
516          */
517         if (ack) {
518                 for(i = 0; i < 16; i++) {
519                         SIO_CLR(SIS_MII_CLK);
520                         DELAY(1);
521                         SIO_SET(SIS_MII_CLK);
522                         DELAY(1);
523                 }
524                 goto fail;
525         }
526  
527         for (i = 0x8000; i; i >>= 1) {
528                 SIO_CLR(SIS_MII_CLK);
529                 DELAY(1);
530                 if (!ack) {
531                         if (CSR_READ_4(sc, SIS_EECTL) & SIS_MII_DATA)
532                                 frame->mii_data |= i;
533                         DELAY(1);
534                 }
535                 SIO_SET(SIS_MII_CLK);
536                 DELAY(1);
537         }
538
539 fail:
540
541         SIO_CLR(SIS_MII_CLK);
542         DELAY(1);
543         SIO_SET(SIS_MII_CLK);
544         DELAY(1);
545
546         if (ack)
547                 return(1);
548         return(0);
549 }
550  
551 /*
552  * Write to a PHY register through the MII.
553  */
554 static int
555 sis_mii_writereg(struct sis_softc *sc, struct sis_mii_frame *frame)
556 {
557  
558         /*
559          * Set up frame for TX.
560          */
561  
562         frame->mii_stdelim = SIS_MII_STARTDELIM;
563         frame->mii_opcode = SIS_MII_WRITEOP;
564         frame->mii_turnaround = SIS_MII_TURNAROUND;
565         
566         /*
567          * Turn on data output.
568          */
569         SIO_SET(SIS_MII_DIR);
570  
571         sis_mii_sync(sc);
572  
573         sis_mii_send(sc, frame->mii_stdelim, 2);
574         sis_mii_send(sc, frame->mii_opcode, 2);
575         sis_mii_send(sc, frame->mii_phyaddr, 5);
576         sis_mii_send(sc, frame->mii_regaddr, 5);
577         sis_mii_send(sc, frame->mii_turnaround, 2);
578         sis_mii_send(sc, frame->mii_data, 16);
579  
580         /* Idle bit. */
581         SIO_SET(SIS_MII_CLK);
582         DELAY(1);
583         SIO_CLR(SIS_MII_CLK);
584         DELAY(1);
585  
586         /*
587          * Turn off xmit.
588          */
589         SIO_CLR(SIS_MII_DIR);
590  
591         return(0);
592 }
593
594 static int
595 sis_miibus_readreg(device_t dev, int phy, int reg)
596 {
597         struct sis_softc        *sc;
598         struct sis_mii_frame    frame;
599
600         sc = device_get_softc(dev);
601
602         if (sc->sis_type == SIS_TYPE_83815) {
603                 if (phy != 0)
604                         return(0);
605                 /*
606                  * The NatSemi chip can take a while after
607                  * a reset to come ready, during which the BMSR
608                  * returns a value of 0. This is *never* supposed
609                  * to happen: some of the BMSR bits are meant to
610                  * be hardwired in the on position, and this can
611                  * confuse the miibus code a bit during the probe
612                  * and attach phase. So we make an effort to check
613                  * for this condition and wait for it to clear.
614                  */
615                 if (!CSR_READ_4(sc, NS_BMSR))
616                         DELAY(1000);
617                 return CSR_READ_4(sc, NS_BMCR + (reg * 4));
618         }
619
620         /*
621          * Chipsets < SIS_635 seem not to be able to read/write
622          * through mdio. Use the enhanced PHY access register
623          * again for them.
624          */
625         if (sc->sis_type == SIS_TYPE_900 &&
626             sc->sis_rev < SIS_REV_635) {
627                 int i, val = 0;
628
629                 if (phy != 0)
630                         return(0);
631
632                 CSR_WRITE_4(sc, SIS_PHYCTL,
633                     (phy << 11) | (reg << 6) | SIS_PHYOP_READ);
634                 SIS_SETBIT(sc, SIS_PHYCTL, SIS_PHYCTL_ACCESS);
635
636                 for (i = 0; i < SIS_TIMEOUT; i++) {
637                         if (!(CSR_READ_4(sc, SIS_PHYCTL) & SIS_PHYCTL_ACCESS))
638                                 break;
639                 }
640
641                 if (i == SIS_TIMEOUT) {
642                         if_printf(sc->sis_ifp, "PHY failed to come ready\n");
643                         return(0);
644                 }
645
646                 val = (CSR_READ_4(sc, SIS_PHYCTL) >> 16) & 0xFFFF;
647
648                 if (val == 0xFFFF)
649                         return(0);
650
651                 return(val);
652         } else {
653                 bzero((char *)&frame, sizeof(frame));
654
655                 frame.mii_phyaddr = phy;
656                 frame.mii_regaddr = reg;
657                 sis_mii_readreg(sc, &frame);
658
659                 return(frame.mii_data);
660         }
661 }
662
663 static int
664 sis_miibus_writereg(device_t dev, int phy, int reg, int data)
665 {
666         struct sis_softc        *sc;
667         struct sis_mii_frame    frame;
668
669         sc = device_get_softc(dev);
670
671         if (sc->sis_type == SIS_TYPE_83815) {
672                 if (phy != 0)
673                         return(0);
674                 CSR_WRITE_4(sc, NS_BMCR + (reg * 4), data);
675                 return(0);
676         }
677
678         /*
679          * Chipsets < SIS_635 seem not to be able to read/write
680          * through mdio. Use the enhanced PHY access register
681          * again for them.
682          */
683         if (sc->sis_type == SIS_TYPE_900 &&
684             sc->sis_rev < SIS_REV_635) {
685                 int i;
686
687                 if (phy != 0)
688                         return(0);
689
690                 CSR_WRITE_4(sc, SIS_PHYCTL, (data << 16) | (phy << 11) |
691                     (reg << 6) | SIS_PHYOP_WRITE);
692                 SIS_SETBIT(sc, SIS_PHYCTL, SIS_PHYCTL_ACCESS);
693
694                 for (i = 0; i < SIS_TIMEOUT; i++) {
695                         if (!(CSR_READ_4(sc, SIS_PHYCTL) & SIS_PHYCTL_ACCESS))
696                                 break;
697                 }
698
699                 if (i == SIS_TIMEOUT)
700                         if_printf(sc->sis_ifp, "PHY failed to come ready\n");
701         } else {
702                 bzero((char *)&frame, sizeof(frame));
703
704                 frame.mii_phyaddr = phy;
705                 frame.mii_regaddr = reg;
706                 frame.mii_data = data;
707                 sis_mii_writereg(sc, &frame);
708         }
709         return(0);
710 }
711
712 static void
713 sis_miibus_statchg(device_t dev)
714 {
715         struct sis_softc        *sc;
716
717         sc = device_get_softc(dev);
718         SIS_LOCK_ASSERT(sc);
719         sis_initl(sc);
720 }
721
722 static uint32_t
723 sis_mchash(struct sis_softc *sc, const uint8_t *addr)
724 {
725         uint32_t                crc;
726
727         /* Compute CRC for the address value. */
728         crc = ether_crc32_be(addr, ETHER_ADDR_LEN);
729
730         /*
731          * return the filter bit position
732          *
733          * The NatSemi chip has a 512-bit filter, which is
734          * different than the SiS, so we special-case it.
735          */
736         if (sc->sis_type == SIS_TYPE_83815)
737                 return (crc >> 23);
738         else if (sc->sis_rev >= SIS_REV_635 ||
739             sc->sis_rev == SIS_REV_900B)
740                 return (crc >> 24);
741         else
742                 return (crc >> 25);
743 }
744
745 static void
746 sis_setmulti_ns(struct sis_softc *sc)
747 {
748         struct ifnet            *ifp;
749         struct ifmultiaddr      *ifma;
750         u_int32_t               h = 0, i, filtsave;
751         int                     bit, index;
752
753         ifp = sc->sis_ifp;
754
755         if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
756                 SIS_CLRBIT(sc, SIS_RXFILT_CTL, NS_RXFILTCTL_MCHASH);
757                 SIS_SETBIT(sc, SIS_RXFILT_CTL, SIS_RXFILTCTL_ALLMULTI);
758                 return;
759         }
760
761         /*
762          * We have to explicitly enable the multicast hash table
763          * on the NatSemi chip if we want to use it, which we do.
764          */
765         SIS_SETBIT(sc, SIS_RXFILT_CTL, NS_RXFILTCTL_MCHASH);
766         SIS_CLRBIT(sc, SIS_RXFILT_CTL, SIS_RXFILTCTL_ALLMULTI);
767
768         filtsave = CSR_READ_4(sc, SIS_RXFILT_CTL);
769
770         /* first, zot all the existing hash bits */
771         for (i = 0; i < 32; i++) {
772                 CSR_WRITE_4(sc, SIS_RXFILT_CTL, NS_FILTADDR_FMEM_LO + (i*2));
773                 CSR_WRITE_4(sc, SIS_RXFILT_DATA, 0);
774         }
775
776         IF_ADDR_LOCK(ifp);
777         TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
778                 if (ifma->ifma_addr->sa_family != AF_LINK)
779                         continue;
780                 h = sis_mchash(sc,
781                     LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
782                 index = h >> 3;
783                 bit = h & 0x1F;
784                 CSR_WRITE_4(sc, SIS_RXFILT_CTL, NS_FILTADDR_FMEM_LO + index);
785                 if (bit > 0xF)
786                         bit -= 0x10;
787                 SIS_SETBIT(sc, SIS_RXFILT_DATA, (1 << bit));
788         }
789         IF_ADDR_UNLOCK(ifp);
790
791         CSR_WRITE_4(sc, SIS_RXFILT_CTL, filtsave);
792
793         return;
794 }
795
796 static void
797 sis_setmulti_sis(struct sis_softc *sc)
798 {
799         struct ifnet            *ifp;
800         struct ifmultiaddr      *ifma;
801         u_int32_t               h, i, n, ctl;
802         u_int16_t               hashes[16];
803
804         ifp = sc->sis_ifp;
805
806         /* hash table size */
807         if (sc->sis_rev >= SIS_REV_635 ||
808             sc->sis_rev == SIS_REV_900B)
809                 n = 16;
810         else
811                 n = 8;
812
813         ctl = CSR_READ_4(sc, SIS_RXFILT_CTL) & SIS_RXFILTCTL_ENABLE;
814
815         if (ifp->if_flags & IFF_BROADCAST)
816                 ctl |= SIS_RXFILTCTL_BROAD;
817
818         if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
819                 ctl |= SIS_RXFILTCTL_ALLMULTI;
820                 if (ifp->if_flags & IFF_PROMISC)
821                         ctl |= SIS_RXFILTCTL_BROAD|SIS_RXFILTCTL_ALLPHYS;
822                 for (i = 0; i < n; i++)
823                         hashes[i] = ~0;
824         } else {
825                 for (i = 0; i < n; i++)
826                         hashes[i] = 0;
827                 i = 0;
828                 IF_ADDR_LOCK(ifp);
829                 TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
830                         if (ifma->ifma_addr->sa_family != AF_LINK)
831                         continue;
832                         h = sis_mchash(sc,
833                             LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
834                         hashes[h >> 4] |= 1 << (h & 0xf);
835                         i++;
836                 }
837                 IF_ADDR_UNLOCK(ifp);
838                 if (i > n) {
839                         ctl |= SIS_RXFILTCTL_ALLMULTI;
840                         for (i = 0; i < n; i++)
841                                 hashes[i] = ~0;
842                 }
843         }
844
845         for (i = 0; i < n; i++) {
846                 CSR_WRITE_4(sc, SIS_RXFILT_CTL, (4 + i) << 16);
847                 CSR_WRITE_4(sc, SIS_RXFILT_DATA, hashes[i]);
848         }
849
850         CSR_WRITE_4(sc, SIS_RXFILT_CTL, ctl);
851 }
852
853 static void
854 sis_reset(struct sis_softc *sc)
855 {
856         int             i;
857
858         SIS_SETBIT(sc, SIS_CSR, SIS_CSR_RESET);
859
860         for (i = 0; i < SIS_TIMEOUT; i++) {
861                 if (!(CSR_READ_4(sc, SIS_CSR) & SIS_CSR_RESET))
862                         break;
863         }
864
865         if (i == SIS_TIMEOUT)
866                 if_printf(sc->sis_ifp, "reset never completed\n");
867
868         /* Wait a little while for the chip to get its brains in order. */
869         DELAY(1000);
870
871         /*
872          * If this is a NetSemi chip, make sure to clear
873          * PME mode.
874          */
875         if (sc->sis_type == SIS_TYPE_83815) {
876                 CSR_WRITE_4(sc, NS_CLKRUN, NS_CLKRUN_PMESTS);
877                 CSR_WRITE_4(sc, NS_CLKRUN, 0);
878         }
879
880         return;
881 }
882
883 /*
884  * Probe for an SiS chip. Check the PCI vendor and device
885  * IDs against our list and return a device name if we find a match.
886  */
887 static int
888 sis_probe(device_t dev)
889 {
890         struct sis_type         *t;
891
892         t = sis_devs;
893
894         while(t->sis_name != NULL) {
895                 if ((pci_get_vendor(dev) == t->sis_vid) &&
896                     (pci_get_device(dev) == t->sis_did)) {
897                         device_set_desc(dev, t->sis_name);
898                         return (BUS_PROBE_DEFAULT);
899                 }
900                 t++;
901         }
902
903         return(ENXIO);
904 }
905
906 /*
907  * Attach the interface. Allocate softc structures, do ifmedia
908  * setup and ethernet/BPF attach.
909  */
910 static int
911 sis_attach(device_t dev)
912 {
913         u_char                  eaddr[ETHER_ADDR_LEN];
914         struct sis_softc        *sc;
915         struct ifnet            *ifp;
916         int                     error = 0, waittime = 0;
917
918         waittime = 0;
919         sc = device_get_softc(dev);
920
921         sc->sis_self = dev;
922
923         mtx_init(&sc->sis_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
924             MTX_DEF);
925         callout_init_mtx(&sc->sis_stat_ch, &sc->sis_mtx, 0);
926
927         if (pci_get_device(dev) == SIS_DEVICEID_900)
928                 sc->sis_type = SIS_TYPE_900;
929         if (pci_get_device(dev) == SIS_DEVICEID_7016)
930                 sc->sis_type = SIS_TYPE_7016;
931         if (pci_get_vendor(dev) == NS_VENDORID)
932                 sc->sis_type = SIS_TYPE_83815;
933
934         sc->sis_rev = pci_read_config(dev, PCIR_REVID, 1);
935         /*
936          * Map control/status registers.
937          */
938         pci_enable_busmaster(dev);
939
940         error = bus_alloc_resources(dev, sis_res_spec, sc->sis_res);
941         if (error) {
942                 device_printf(dev, "couldn't allocate resources\n");
943                 goto fail;
944         }
945
946         /* Reset the adapter. */
947         sis_reset(sc);
948
949         if (sc->sis_type == SIS_TYPE_900 &&
950             (sc->sis_rev == SIS_REV_635 ||
951             sc->sis_rev == SIS_REV_900B)) {
952                 SIO_SET(SIS_CFG_RND_CNT);
953                 SIO_SET(SIS_CFG_PERR_DETECT);
954         }
955
956         /*
957          * Get station address from the EEPROM.
958          */
959         switch (pci_get_vendor(dev)) {
960         case NS_VENDORID:
961                 sc->sis_srr = CSR_READ_4(sc, NS_SRR);
962
963                 /* We can't update the device description, so spew */
964                 if (sc->sis_srr == NS_SRR_15C)
965                         device_printf(dev, "Silicon Revision: DP83815C\n");
966                 else if (sc->sis_srr == NS_SRR_15D)
967                         device_printf(dev, "Silicon Revision: DP83815D\n");
968                 else if (sc->sis_srr == NS_SRR_16A)
969                         device_printf(dev, "Silicon Revision: DP83816A\n");
970                 else
971                         device_printf(dev, "Silicon Revision %x\n", sc->sis_srr);
972
973                 /*
974                  * Reading the MAC address out of the EEPROM on
975                  * the NatSemi chip takes a bit more work than
976                  * you'd expect. The address spans 4 16-bit words,
977                  * with the first word containing only a single bit.
978                  * You have to shift everything over one bit to
979                  * get it aligned properly. Also, the bits are
980                  * stored backwards (the LSB is really the MSB,
981                  * and so on) so you have to reverse them in order
982                  * to get the MAC address into the form we want.
983                  * Why? Who the hell knows.
984                  */
985                 {
986                         u_int16_t               tmp[4];
987
988                         sis_read_eeprom(sc, (caddr_t)&tmp,
989                             NS_EE_NODEADDR, 4, 0);
990
991                         /* Shift everything over one bit. */
992                         tmp[3] = tmp[3] >> 1;
993                         tmp[3] |= tmp[2] << 15;
994                         tmp[2] = tmp[2] >> 1;
995                         tmp[2] |= tmp[1] << 15;
996                         tmp[1] = tmp[1] >> 1;
997                         tmp[1] |= tmp[0] << 15;
998
999                         /* Now reverse all the bits. */
1000                         tmp[3] = sis_reverse(tmp[3]);
1001                         tmp[2] = sis_reverse(tmp[2]);
1002                         tmp[1] = sis_reverse(tmp[1]);
1003
1004                         bcopy((char *)&tmp[1], eaddr, ETHER_ADDR_LEN);
1005                 }
1006                 break;
1007         case SIS_VENDORID:
1008         default:
1009 #if defined(__i386__) || defined(__amd64__)
1010                 /*
1011                  * If this is a SiS 630E chipset with an embedded
1012                  * SiS 900 controller, we have to read the MAC address
1013                  * from the APC CMOS RAM. Our method for doing this
1014                  * is very ugly since we have to reach out and grab
1015                  * ahold of hardware for which we cannot properly
1016                  * allocate resources. This code is only compiled on
1017                  * the i386 architecture since the SiS 630E chipset
1018                  * is for x86 motherboards only. Note that there are
1019                  * a lot of magic numbers in this hack. These are
1020                  * taken from SiS's Linux driver. I'd like to replace
1021                  * them with proper symbolic definitions, but that
1022                  * requires some datasheets that I don't have access
1023                  * to at the moment.
1024                  */
1025                 if (sc->sis_rev == SIS_REV_630S ||
1026                     sc->sis_rev == SIS_REV_630E ||
1027                     sc->sis_rev == SIS_REV_630EA1)
1028                         sis_read_cmos(sc, dev, (caddr_t)&eaddr, 0x9, 6);
1029
1030                 else if (sc->sis_rev == SIS_REV_635 ||
1031                          sc->sis_rev == SIS_REV_630ET)
1032                         sis_read_mac(sc, dev, (caddr_t)&eaddr);
1033                 else if (sc->sis_rev == SIS_REV_96x) {
1034                         /* Allow to read EEPROM from LAN. It is shared
1035                          * between a 1394 controller and the NIC and each
1036                          * time we access it, we need to set SIS_EECMD_REQ.
1037                          */
1038                         SIO_SET(SIS_EECMD_REQ);
1039                         for (waittime = 0; waittime < SIS_TIMEOUT;
1040                             waittime++) {
1041                                 /* Force EEPROM to idle state. */
1042                                 sis_eeprom_idle(sc);
1043                                 if (CSR_READ_4(sc, SIS_EECTL) & SIS_EECMD_GNT) {
1044                                         sis_read_eeprom(sc, (caddr_t)&eaddr,
1045                                             SIS_EE_NODEADDR, 3, 0);
1046                                         break;
1047                                 }
1048                                 DELAY(1);
1049                         }
1050                         /*
1051                          * Set SIS_EECTL_CLK to high, so a other master
1052                          * can operate on the i2c bus.
1053                          */
1054                         SIO_SET(SIS_EECTL_CLK);
1055                         /* Refuse EEPROM access by LAN */
1056                         SIO_SET(SIS_EECMD_DONE);
1057                 } else
1058 #endif
1059                         sis_read_eeprom(sc, (caddr_t)&eaddr,
1060                             SIS_EE_NODEADDR, 3, 0);
1061                 break;
1062         }
1063
1064         /*
1065          * Allocate the parent bus DMA tag appropriate for PCI.
1066          */
1067 #define SIS_NSEG_NEW 32
1068          error = bus_dma_tag_create(NULL,       /* parent */ 
1069                         1, 0,                   /* alignment, boundary */
1070                         BUS_SPACE_MAXADDR_32BIT,/* lowaddr */
1071                         BUS_SPACE_MAXADDR,      /* highaddr */
1072                         NULL, NULL,             /* filter, filterarg */
1073                         MAXBSIZE, SIS_NSEG_NEW, /* maxsize, nsegments */
1074                         BUS_SPACE_MAXSIZE_32BIT,/* maxsegsize */ 
1075                         BUS_DMA_ALLOCNOW,       /* flags */
1076                         NULL, NULL,             /* lockfunc, lockarg */
1077                         &sc->sis_parent_tag);
1078         if (error)
1079                 goto fail;
1080
1081         /*
1082          * Now allocate a tag for the DMA descriptor lists and a chunk
1083          * of DMA-able memory based on the tag.  Also obtain the physical
1084          * addresses of the RX and TX ring, which we'll need later.
1085          * All of our lists are allocated as a contiguous block
1086          * of memory.
1087          */
1088         error = bus_dma_tag_create(sc->sis_parent_tag,  /* parent */
1089                         1, 0,                   /* alignment, boundary */
1090                         BUS_SPACE_MAXADDR,      /* lowaddr */
1091                         BUS_SPACE_MAXADDR,      /* highaddr */
1092                         NULL, NULL,             /* filter, filterarg */
1093                         SIS_RX_LIST_SZ, 1,      /* maxsize,nsegments */
1094                         BUS_SPACE_MAXSIZE_32BIT,/* maxsegsize */
1095                         0,                      /* flags */
1096                         busdma_lock_mutex,      /* lockfunc */
1097                         &Giant,                 /* lockarg */
1098                         &sc->sis_rx_tag);
1099         if (error)
1100                 goto fail;
1101
1102         error = bus_dmamem_alloc(sc->sis_rx_tag,
1103             (void **)&sc->sis_rx_list, BUS_DMA_NOWAIT | BUS_DMA_ZERO,
1104             &sc->sis_rx_dmamap);
1105
1106         if (error) {
1107                 device_printf(dev, "no memory for rx list buffers!\n");
1108                 bus_dma_tag_destroy(sc->sis_rx_tag);
1109                 sc->sis_rx_tag = NULL;
1110                 goto fail;
1111         }
1112
1113         error = bus_dmamap_load(sc->sis_rx_tag,
1114             sc->sis_rx_dmamap, &(sc->sis_rx_list[0]),
1115             sizeof(struct sis_desc), sis_dma_map_ring,
1116             &sc->sis_rx_paddr, 0);
1117
1118         if (error) {
1119                 device_printf(dev, "cannot get address of the rx ring!\n");
1120                 bus_dmamem_free(sc->sis_rx_tag,
1121                     sc->sis_rx_list, sc->sis_rx_dmamap);
1122                 bus_dma_tag_destroy(sc->sis_rx_tag);
1123                 sc->sis_rx_tag = NULL;
1124                 goto fail;
1125         }
1126
1127         error = bus_dma_tag_create(sc->sis_parent_tag,  /* parent */
1128                         1, 0,                   /* alignment, boundary */
1129                         BUS_SPACE_MAXADDR,      /* lowaddr */
1130                         BUS_SPACE_MAXADDR,      /* highaddr */
1131                         NULL, NULL,             /* filter, filterarg */
1132                         SIS_TX_LIST_SZ, 1,      /* maxsize,nsegments */
1133                         BUS_SPACE_MAXSIZE_32BIT,/* maxsegsize */
1134                         0,                      /* flags */
1135                         busdma_lock_mutex,      /* lockfunc */
1136                         &Giant,                 /* lockarg */
1137                         &sc->sis_tx_tag);
1138         if (error)
1139                 goto fail;
1140
1141         error = bus_dmamem_alloc(sc->sis_tx_tag,
1142             (void **)&sc->sis_tx_list, BUS_DMA_NOWAIT | BUS_DMA_ZERO,
1143             &sc->sis_tx_dmamap);
1144
1145         if (error) {
1146                 device_printf(dev, "no memory for tx list buffers!\n");
1147                 bus_dma_tag_destroy(sc->sis_tx_tag);
1148                 sc->sis_tx_tag = NULL;
1149                 goto fail;
1150         }
1151
1152         error = bus_dmamap_load(sc->sis_tx_tag,
1153             sc->sis_tx_dmamap, &(sc->sis_tx_list[0]),
1154             sizeof(struct sis_desc), sis_dma_map_ring,
1155             &sc->sis_tx_paddr, 0);
1156
1157         if (error) {
1158                 device_printf(dev, "cannot get address of the tx ring!\n");
1159                 bus_dmamem_free(sc->sis_tx_tag,
1160                     sc->sis_tx_list, sc->sis_tx_dmamap);
1161                 bus_dma_tag_destroy(sc->sis_tx_tag);
1162                 sc->sis_tx_tag = NULL;
1163                 goto fail;
1164         }
1165
1166         error = bus_dma_tag_create(sc->sis_parent_tag,  /* parent */
1167                         1, 0,                   /* alignment, boundary */
1168                         BUS_SPACE_MAXADDR,      /* lowaddr */
1169                         BUS_SPACE_MAXADDR,      /* highaddr */
1170                         NULL, NULL,             /* filter, filterarg */
1171                         MCLBYTES, 1,            /* maxsize,nsegments */
1172                         BUS_SPACE_MAXSIZE_32BIT,/* maxsegsize */
1173                         0,                      /* flags */
1174                         busdma_lock_mutex,      /* lockfunc */
1175                         &Giant,                 /* lockarg */
1176                         &sc->sis_tag);
1177         if (error)
1178                 goto fail;
1179
1180         /*
1181          * Obtain the physical addresses of the RX and TX
1182          * rings which we'll need later in the init routine.
1183          */
1184
1185         ifp = sc->sis_ifp = if_alloc(IFT_ETHER);
1186         if (ifp == NULL) {
1187                 device_printf(dev, "can not if_alloc()\n");
1188                 error = ENOSPC;
1189                 goto fail;
1190         }
1191         ifp->if_softc = sc;
1192         if_initname(ifp, device_get_name(dev), device_get_unit(dev));
1193         ifp->if_mtu = ETHERMTU;
1194         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
1195         ifp->if_ioctl = sis_ioctl;
1196         ifp->if_start = sis_start;
1197         ifp->if_watchdog = sis_watchdog;
1198         ifp->if_init = sis_init;
1199         ifp->if_baudrate = 10000000;
1200         IFQ_SET_MAXLEN(&ifp->if_snd, SIS_TX_LIST_CNT - 1);
1201         ifp->if_snd.ifq_drv_maxlen = SIS_TX_LIST_CNT - 1;
1202         IFQ_SET_READY(&ifp->if_snd);
1203
1204         /*
1205          * Do MII setup.
1206          */
1207         if (mii_phy_probe(dev, &sc->sis_miibus,
1208             sis_ifmedia_upd, sis_ifmedia_sts)) {
1209                 device_printf(dev, "MII without any PHY!\n");
1210                 error = ENXIO;
1211                 goto fail;
1212         }
1213
1214         /*
1215          * Call MI attach routine.
1216          */
1217         ether_ifattach(ifp, eaddr);
1218         
1219         /*
1220          * Tell the upper layer(s) we support long frames.
1221          */
1222         ifp->if_data.ifi_hdrlen = sizeof(struct ether_vlan_header);
1223         ifp->if_capabilities |= IFCAP_VLAN_MTU;
1224         ifp->if_capenable = ifp->if_capabilities;
1225 #ifdef DEVICE_POLLING
1226         ifp->if_capabilities |= IFCAP_POLLING;
1227 #endif
1228
1229         /* Hook interrupt last to avoid having to lock softc */
1230         error = bus_setup_intr(dev, sc->sis_res[1], INTR_TYPE_NET | INTR_MPSAFE,
1231             sis_intr, sc, &sc->sis_intrhand);
1232
1233         if (error) {
1234                 device_printf(dev, "couldn't set up irq\n");
1235                 ether_ifdetach(ifp);
1236                 goto fail;
1237         }
1238
1239 fail:
1240         if (error)
1241                 sis_detach(dev);
1242
1243         return(error);
1244 }
1245
1246 /*
1247  * Shutdown hardware and free up resources. This can be called any
1248  * time after the mutex has been initialized. It is called in both
1249  * the error case in attach and the normal detach case so it needs
1250  * to be careful about only freeing resources that have actually been
1251  * allocated.
1252  */
1253 static int
1254 sis_detach(device_t dev)
1255 {
1256         struct sis_softc        *sc;
1257         struct ifnet            *ifp;
1258
1259         sc = device_get_softc(dev);
1260         KASSERT(mtx_initialized(&sc->sis_mtx), ("sis mutex not initialized"));
1261         ifp = sc->sis_ifp;
1262
1263 #ifdef DEVICE_POLLING
1264         if (ifp->if_capenable & IFCAP_POLLING)
1265                 ether_poll_deregister(ifp);
1266 #endif
1267
1268         /* These should only be active if attach succeeded. */
1269         if (device_is_attached(dev)) {
1270                 SIS_LOCK(sc);
1271                 sis_reset(sc);
1272                 sis_stop(sc);
1273                 SIS_UNLOCK(sc);
1274                 callout_drain(&sc->sis_stat_ch);
1275                 ether_ifdetach(ifp);
1276         }
1277         if (sc->sis_miibus)
1278                 device_delete_child(dev, sc->sis_miibus);
1279         bus_generic_detach(dev);
1280
1281         if (sc->sis_intrhand)
1282                 bus_teardown_intr(dev, sc->sis_res[1], sc->sis_intrhand);
1283         bus_release_resources(dev, sis_res_spec, sc->sis_res);
1284
1285         if (ifp)
1286                 if_free(ifp);
1287
1288         if (sc->sis_rx_tag) {
1289                 bus_dmamap_unload(sc->sis_rx_tag,
1290                     sc->sis_rx_dmamap);
1291                 bus_dmamem_free(sc->sis_rx_tag,
1292                     sc->sis_rx_list, sc->sis_rx_dmamap);
1293                 bus_dma_tag_destroy(sc->sis_rx_tag);
1294         }
1295         if (sc->sis_tx_tag) {
1296                 bus_dmamap_unload(sc->sis_tx_tag,
1297                     sc->sis_tx_dmamap);
1298                 bus_dmamem_free(sc->sis_tx_tag,
1299                     sc->sis_tx_list, sc->sis_tx_dmamap);
1300                 bus_dma_tag_destroy(sc->sis_tx_tag);
1301         }
1302         if (sc->sis_parent_tag)
1303                 bus_dma_tag_destroy(sc->sis_parent_tag);
1304         if (sc->sis_tag)
1305                 bus_dma_tag_destroy(sc->sis_tag);
1306
1307         mtx_destroy(&sc->sis_mtx);
1308
1309         return(0);
1310 }
1311
1312 /*
1313  * Initialize the TX and RX descriptors and allocate mbufs for them. Note that
1314  * we arrange the descriptors in a closed ring, so that the last descriptor
1315  * points back to the first.
1316  */
1317 static int
1318 sis_ring_init(struct sis_softc *sc)
1319 {
1320         int i, error;
1321         struct sis_desc *dp;
1322
1323         dp = &sc->sis_tx_list[0];
1324         for (i = 0; i < SIS_TX_LIST_CNT; i++, dp++) {
1325                 if (i == (SIS_TX_LIST_CNT - 1))
1326                         dp->sis_nextdesc = &sc->sis_tx_list[0];
1327                 else
1328                         dp->sis_nextdesc = dp + 1;
1329                 bus_dmamap_load(sc->sis_tx_tag,
1330                     sc->sis_tx_dmamap,
1331                     dp->sis_nextdesc, sizeof(struct sis_desc),
1332                     sis_dma_map_desc_next, dp, 0);
1333                 dp->sis_mbuf = NULL;
1334                 dp->sis_ptr = 0;
1335                 dp->sis_ctl = 0;
1336         }
1337
1338         sc->sis_tx_prod = sc->sis_tx_cons = sc->sis_tx_cnt = 0;
1339
1340         bus_dmamap_sync(sc->sis_tx_tag,
1341             sc->sis_tx_dmamap, BUS_DMASYNC_PREWRITE);
1342
1343         dp = &sc->sis_rx_list[0];
1344         for (i = 0; i < SIS_RX_LIST_CNT; i++, dp++) {
1345                 error = sis_newbuf(sc, dp, NULL);
1346                 if (error)
1347                         return(error);
1348                 if (i == (SIS_RX_LIST_CNT - 1))
1349                         dp->sis_nextdesc = &sc->sis_rx_list[0];
1350                 else
1351                         dp->sis_nextdesc = dp + 1;
1352                 bus_dmamap_load(sc->sis_rx_tag,
1353                     sc->sis_rx_dmamap,
1354                     dp->sis_nextdesc, sizeof(struct sis_desc),
1355                     sis_dma_map_desc_next, dp, 0);
1356                 }
1357
1358         bus_dmamap_sync(sc->sis_rx_tag,
1359             sc->sis_rx_dmamap, BUS_DMASYNC_PREWRITE);
1360
1361         sc->sis_rx_pdsc = &sc->sis_rx_list[0];
1362
1363         return(0);
1364 }
1365
1366 /*
1367  * Initialize an RX descriptor and attach an MBUF cluster.
1368  */
1369 static int
1370 sis_newbuf(struct sis_softc *sc, struct sis_desc *c, struct mbuf *m)
1371 {
1372
1373         if (c == NULL)
1374                 return(EINVAL);
1375
1376         if (m == NULL) {
1377                 m = m_getcl(M_DONTWAIT, MT_DATA, M_PKTHDR);
1378                 if (m == NULL)
1379                         return(ENOBUFS);
1380         } else
1381                 m->m_data = m->m_ext.ext_buf;
1382
1383         c->sis_mbuf = m;
1384         c->sis_ctl = SIS_RXLEN;
1385
1386         bus_dmamap_create(sc->sis_tag, 0, &c->sis_map);
1387         bus_dmamap_load(sc->sis_tag, c->sis_map,
1388             mtod(m, void *), MCLBYTES,
1389             sis_dma_map_desc_ptr, c, 0);
1390         bus_dmamap_sync(sc->sis_tag, c->sis_map, BUS_DMASYNC_PREREAD);
1391
1392         return(0);
1393 }
1394
1395 /*
1396  * A frame has been uploaded: pass the resulting mbuf chain up to
1397  * the higher level protocols.
1398  */
1399 static void
1400 sis_rxeof(struct sis_softc *sc)
1401 {
1402         struct mbuf             *m;
1403         struct ifnet            *ifp;
1404         struct sis_desc         *cur_rx;
1405         int                     total_len = 0;
1406         u_int32_t               rxstat;
1407
1408         SIS_LOCK_ASSERT(sc);
1409
1410         ifp = sc->sis_ifp;
1411
1412         for(cur_rx = sc->sis_rx_pdsc; SIS_OWNDESC(cur_rx);
1413             cur_rx = cur_rx->sis_nextdesc) {
1414
1415 #ifdef DEVICE_POLLING
1416                 if (ifp->if_capenable & IFCAP_POLLING) {
1417                         if (sc->rxcycles <= 0)
1418                                 break;
1419                         sc->rxcycles--;
1420                 }
1421 #endif
1422                 rxstat = cur_rx->sis_rxstat;
1423                 bus_dmamap_sync(sc->sis_tag,
1424                     cur_rx->sis_map, BUS_DMASYNC_POSTWRITE);
1425                 bus_dmamap_unload(sc->sis_tag, cur_rx->sis_map);
1426                 bus_dmamap_destroy(sc->sis_tag, cur_rx->sis_map);
1427                 m = cur_rx->sis_mbuf;
1428                 cur_rx->sis_mbuf = NULL;
1429                 total_len = SIS_RXBYTES(cur_rx);
1430
1431                 /*
1432                  * If an error occurs, update stats, clear the
1433                  * status word and leave the mbuf cluster in place:
1434                  * it should simply get re-used next time this descriptor
1435                  * comes up in the ring.
1436                  */
1437                 if (!(rxstat & SIS_CMDSTS_PKT_OK)) {
1438                         ifp->if_ierrors++;
1439                         if (rxstat & SIS_RXSTAT_COLL)
1440                                 ifp->if_collisions++;
1441                         sis_newbuf(sc, cur_rx, m);
1442                         continue;
1443                 }
1444
1445                 /* No errors; receive the packet. */    
1446 #if defined(__i386__) || defined(__amd64__)
1447                 /*
1448                  * On the x86 we do not have alignment problems, so try to
1449                  * allocate a new buffer for the receive ring, and pass up
1450                  * the one where the packet is already, saving the expensive
1451                  * copy done in m_devget().
1452                  * If we are on an architecture with alignment problems, or
1453                  * if the allocation fails, then use m_devget and leave the
1454                  * existing buffer in the receive ring.
1455                  */
1456                 if (sis_newbuf(sc, cur_rx, NULL) == 0)
1457                         m->m_pkthdr.len = m->m_len = total_len;
1458                 else
1459 #endif
1460                 {
1461                         struct mbuf             *m0;
1462                         m0 = m_devget(mtod(m, char *), total_len,
1463                                 ETHER_ALIGN, ifp, NULL);
1464                         sis_newbuf(sc, cur_rx, m);
1465                         if (m0 == NULL) {
1466                                 ifp->if_ierrors++;
1467                                 continue;
1468                         }
1469                         m = m0;
1470                 }
1471
1472                 ifp->if_ipackets++;
1473                 m->m_pkthdr.rcvif = ifp;
1474
1475                 SIS_UNLOCK(sc);
1476                 (*ifp->if_input)(ifp, m);
1477                 SIS_LOCK(sc);
1478         }
1479
1480         sc->sis_rx_pdsc = cur_rx;
1481 }
1482
1483 static void
1484 sis_rxeoc(struct sis_softc *sc)
1485 {
1486
1487         SIS_LOCK_ASSERT(sc);
1488         sis_rxeof(sc);
1489         sis_initl(sc);
1490 }
1491
1492 /*
1493  * A frame was downloaded to the chip. It's safe for us to clean up
1494  * the list buffers.
1495  */
1496
1497 static void
1498 sis_txeof(struct sis_softc *sc)
1499 {
1500         struct ifnet            *ifp;
1501         u_int32_t               idx;
1502
1503         SIS_LOCK_ASSERT(sc);
1504         ifp = sc->sis_ifp;
1505
1506         /*
1507          * Go through our tx list and free mbufs for those
1508          * frames that have been transmitted.
1509          */
1510         for (idx = sc->sis_tx_cons; sc->sis_tx_cnt > 0;
1511             sc->sis_tx_cnt--, SIS_INC(idx, SIS_TX_LIST_CNT) ) {
1512                 struct sis_desc *cur_tx = &sc->sis_tx_list[idx];
1513
1514                 if (SIS_OWNDESC(cur_tx))
1515                         break;
1516
1517                 if (cur_tx->sis_ctl & SIS_CMDSTS_MORE)
1518                         continue;
1519
1520                 if (!(cur_tx->sis_ctl & SIS_CMDSTS_PKT_OK)) {
1521                         ifp->if_oerrors++;
1522                         if (cur_tx->sis_txstat & SIS_TXSTAT_EXCESSCOLLS)
1523                                 ifp->if_collisions++;
1524                         if (cur_tx->sis_txstat & SIS_TXSTAT_OUTOFWINCOLL)
1525                                 ifp->if_collisions++;
1526                 }
1527
1528                 ifp->if_collisions +=
1529                     (cur_tx->sis_txstat & SIS_TXSTAT_COLLCNT) >> 16;
1530
1531                 ifp->if_opackets++;
1532                 if (cur_tx->sis_mbuf != NULL) {
1533                         m_freem(cur_tx->sis_mbuf);
1534                         cur_tx->sis_mbuf = NULL;
1535                         bus_dmamap_unload(sc->sis_tag, cur_tx->sis_map);
1536                         bus_dmamap_destroy(sc->sis_tag, cur_tx->sis_map);
1537                 }
1538         }
1539
1540         if (idx != sc->sis_tx_cons) {
1541                 /* we freed up some buffers */
1542                 sc->sis_tx_cons = idx;
1543                 ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
1544         }
1545
1546         ifp->if_timer = (sc->sis_tx_cnt == 0) ? 0 : 5;
1547
1548         return;
1549 }
1550
1551 static void
1552 sis_tick(void *xsc)
1553 {
1554         struct sis_softc        *sc;
1555         struct mii_data         *mii;
1556         struct ifnet            *ifp;
1557
1558         sc = xsc;
1559         SIS_LOCK_ASSERT(sc);
1560         sc->in_tick = 1;
1561         ifp = sc->sis_ifp;
1562
1563         mii = device_get_softc(sc->sis_miibus);
1564         mii_tick(mii);
1565
1566         if (!sc->sis_link && mii->mii_media_status & IFM_ACTIVE &&
1567             IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
1568                 sc->sis_link++;
1569                 if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
1570                         sis_startl(ifp);
1571         }
1572
1573         callout_reset(&sc->sis_stat_ch, hz,  sis_tick, sc);
1574         sc->in_tick = 0;
1575 }
1576
1577 #ifdef DEVICE_POLLING
1578 static poll_handler_t sis_poll;
1579
1580 static void
1581 sis_poll(struct ifnet *ifp, enum poll_cmd cmd, int count)
1582 {
1583         struct  sis_softc *sc = ifp->if_softc;
1584
1585         SIS_LOCK(sc);
1586         if (!(ifp->if_drv_flags & IFF_DRV_RUNNING)) {
1587                 SIS_UNLOCK(sc);
1588                 return;
1589         }
1590
1591         /*
1592          * On the sis, reading the status register also clears it.
1593          * So before returning to intr mode we must make sure that all
1594          * possible pending sources of interrupts have been served.
1595          * In practice this means run to completion the *eof routines,
1596          * and then call the interrupt routine
1597          */
1598         sc->rxcycles = count;
1599         sis_rxeof(sc);
1600         sis_txeof(sc);
1601         if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
1602                 sis_startl(ifp);
1603
1604         if (sc->rxcycles > 0 || cmd == POLL_AND_CHECK_STATUS) {
1605                 u_int32_t       status;
1606
1607                 /* Reading the ISR register clears all interrupts. */
1608                 status = CSR_READ_4(sc, SIS_ISR);
1609
1610                 if (status & (SIS_ISR_RX_ERR|SIS_ISR_RX_OFLOW))
1611                         sis_rxeoc(sc);
1612
1613                 if (status & (SIS_ISR_RX_IDLE))
1614                         SIS_SETBIT(sc, SIS_CSR, SIS_CSR_RX_ENABLE);
1615
1616                 if (status & SIS_ISR_SYSERR) {
1617                         sis_reset(sc);
1618                         sis_initl(sc);
1619                 }
1620         }
1621
1622         SIS_UNLOCK(sc);
1623 }
1624 #endif /* DEVICE_POLLING */
1625
1626 static void
1627 sis_intr(void *arg)
1628 {
1629         struct sis_softc        *sc;
1630         struct ifnet            *ifp;
1631         u_int32_t               status;
1632
1633         sc = arg;
1634         ifp = sc->sis_ifp;
1635
1636         if (sc->sis_stopped)    /* Most likely shared interrupt */
1637                 return;
1638
1639         SIS_LOCK(sc);
1640 #ifdef DEVICE_POLLING
1641         if (ifp->if_capenable & IFCAP_POLLING) {
1642                 SIS_UNLOCK(sc);
1643                 return;
1644         }
1645 #endif
1646
1647         /* Disable interrupts. */
1648         CSR_WRITE_4(sc, SIS_IER, 0);
1649
1650         for (;;) {
1651                 SIS_LOCK_ASSERT(sc);
1652                 /* Reading the ISR register clears all interrupts. */
1653                 status = CSR_READ_4(sc, SIS_ISR);
1654
1655                 if ((status & SIS_INTRS) == 0)
1656                         break;
1657
1658                 if (status &
1659                     (SIS_ISR_TX_DESC_OK | SIS_ISR_TX_ERR |
1660                      SIS_ISR_TX_OK | SIS_ISR_TX_IDLE) )
1661                         sis_txeof(sc);
1662
1663                 if (status & (SIS_ISR_RX_DESC_OK|SIS_ISR_RX_OK|SIS_ISR_RX_IDLE))
1664                         sis_rxeof(sc);
1665
1666                 if (status & (SIS_ISR_RX_ERR | SIS_ISR_RX_OFLOW))
1667                         sis_rxeoc(sc);
1668
1669                 if (status & (SIS_ISR_RX_IDLE))
1670                         SIS_SETBIT(sc, SIS_CSR, SIS_CSR_RX_ENABLE);
1671
1672                 if (status & SIS_ISR_SYSERR) {
1673                         sis_reset(sc);
1674                         sis_initl(sc);
1675                 }
1676         }
1677
1678         /* Re-enable interrupts. */
1679         CSR_WRITE_4(sc, SIS_IER, 1);
1680
1681         if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
1682                 sis_startl(ifp);
1683
1684         SIS_UNLOCK(sc);
1685 }
1686
1687 /*
1688  * Encapsulate an mbuf chain in a descriptor by coupling the mbuf data
1689  * pointers to the fragment pointers.
1690  */
1691 static int
1692 sis_encap(struct sis_softc *sc, struct mbuf **m_head, uint32_t *txidx)
1693 {
1694         struct sis_desc         *f = NULL;
1695         struct mbuf             *m;
1696         int                     frag, cur, cnt = 0, chainlen = 0;
1697
1698         /*
1699          * If there's no way we can send any packets, return now.
1700          */
1701         if (SIS_TX_LIST_CNT - sc->sis_tx_cnt < 2)
1702                 return (ENOBUFS);
1703
1704         /*
1705          * Count the number of frags in this chain to see if
1706          * we need to m_defrag.  Since the descriptor list is shared
1707          * by all packets, we'll m_defrag long chains so that they
1708          * do not use up the entire list, even if they would fit.
1709          */
1710
1711         for (m = *m_head; m != NULL; m = m->m_next)
1712                 chainlen++;
1713
1714         if ((chainlen > SIS_TX_LIST_CNT / 4) ||
1715             ((SIS_TX_LIST_CNT - (chainlen + sc->sis_tx_cnt)) < 2)) {
1716                 m = m_defrag(*m_head, M_DONTWAIT);
1717                 if (m == NULL)
1718                         return (ENOBUFS);
1719                 *m_head = m;
1720         }
1721         
1722         /*
1723          * Start packing the mbufs in this chain into
1724          * the fragment pointers. Stop when we run out
1725          * of fragments or hit the end of the mbuf chain.
1726          */
1727         cur = frag = *txidx;
1728
1729         for (m = *m_head; m != NULL; m = m->m_next) {
1730                 if (m->m_len != 0) {
1731                         if ((SIS_TX_LIST_CNT -
1732                             (sc->sis_tx_cnt + cnt)) < 2)
1733                                 return(ENOBUFS);
1734                         f = &sc->sis_tx_list[frag];
1735                         f->sis_ctl = SIS_CMDSTS_MORE | m->m_len;
1736                         bus_dmamap_create(sc->sis_tag, 0, &f->sis_map);
1737                         bus_dmamap_load(sc->sis_tag, f->sis_map,
1738                             mtod(m, void *), m->m_len,
1739                             sis_dma_map_desc_ptr, f, 0);
1740                         bus_dmamap_sync(sc->sis_tag,
1741                             f->sis_map, BUS_DMASYNC_PREREAD);
1742                         if (cnt != 0)
1743                                 f->sis_ctl |= SIS_CMDSTS_OWN;
1744                         cur = frag;
1745                         SIS_INC(frag, SIS_TX_LIST_CNT);
1746                         cnt++;
1747                 }
1748         }
1749
1750         if (m != NULL)
1751                 return(ENOBUFS);
1752
1753         sc->sis_tx_list[cur].sis_mbuf = *m_head;
1754         sc->sis_tx_list[cur].sis_ctl &= ~SIS_CMDSTS_MORE;
1755         sc->sis_tx_list[*txidx].sis_ctl |= SIS_CMDSTS_OWN;
1756         sc->sis_tx_cnt += cnt;
1757         *txidx = frag;
1758
1759         return(0);
1760 }
1761
1762 /*
1763  * Main transmit routine. To avoid having to do mbuf copies, we put pointers
1764  * to the mbuf data regions directly in the transmit lists. We also save a
1765  * copy of the pointers since the transmit list fragment pointers are
1766  * physical addresses.
1767  */
1768
1769 static void
1770 sis_start(struct ifnet *ifp)
1771 {
1772         struct sis_softc        *sc;
1773
1774         sc = ifp->if_softc;
1775         SIS_LOCK(sc);
1776         sis_startl(ifp);
1777         SIS_UNLOCK(sc);
1778 }
1779
1780 static void
1781 sis_startl(struct ifnet *ifp)
1782 {
1783         struct sis_softc        *sc;
1784         struct mbuf             *m_head = NULL;
1785         u_int32_t               idx, queued = 0;
1786
1787         sc = ifp->if_softc;
1788
1789         SIS_LOCK_ASSERT(sc);
1790
1791         if (!sc->sis_link)
1792                 return;
1793
1794         idx = sc->sis_tx_prod;
1795
1796         if (ifp->if_drv_flags & IFF_DRV_OACTIVE)
1797                 return;
1798
1799         while(sc->sis_tx_list[idx].sis_mbuf == NULL) {
1800                 IFQ_DRV_DEQUEUE(&ifp->if_snd, m_head);
1801                 if (m_head == NULL)
1802                         break;
1803
1804                 if (sis_encap(sc, &m_head, &idx)) {
1805                         IFQ_DRV_PREPEND(&ifp->if_snd, m_head);
1806                         ifp->if_drv_flags |= IFF_DRV_OACTIVE;
1807                         break;
1808                 }
1809
1810                 queued++;
1811
1812                 /*
1813                  * If there's a BPF listener, bounce a copy of this frame
1814                  * to him.
1815                  */
1816                 BPF_MTAP(ifp, m_head);
1817
1818         }
1819
1820         if (queued) {
1821                 /* Transmit */
1822                 sc->sis_tx_prod = idx;
1823                 SIS_SETBIT(sc, SIS_CSR, SIS_CSR_TX_ENABLE);
1824
1825                 /*
1826                  * Set a timeout in case the chip goes out to lunch.
1827                  */
1828                 ifp->if_timer = 5;
1829         }
1830 }
1831
1832 static void
1833 sis_init(void *xsc)
1834 {
1835         struct sis_softc        *sc = xsc;
1836
1837         SIS_LOCK(sc);
1838         sis_initl(sc);
1839         SIS_UNLOCK(sc);
1840 }
1841
1842 static void
1843 sis_initl(struct sis_softc *sc)
1844 {
1845         struct ifnet            *ifp = sc->sis_ifp;
1846         struct mii_data         *mii;
1847
1848         SIS_LOCK_ASSERT(sc);
1849
1850         /*
1851          * Cancel pending I/O and free all RX/TX buffers.
1852          */
1853         sis_stop(sc);
1854         sc->sis_stopped = 0;
1855
1856 #ifdef notyet
1857         if (sc->sis_type == SIS_TYPE_83815 && sc->sis_srr >= NS_SRR_16A) {
1858                 /*
1859                  * Configure 400usec of interrupt holdoff.  This is based
1860                  * on emperical tests on a Soekris 4801.
1861                  */
1862                 CSR_WRITE_4(sc, NS_IHR, 0x100 | 4);
1863         }
1864 #endif
1865
1866         mii = device_get_softc(sc->sis_miibus);
1867
1868         /* Set MAC address */
1869         if (sc->sis_type == SIS_TYPE_83815) {
1870                 CSR_WRITE_4(sc, SIS_RXFILT_CTL, NS_FILTADDR_PAR0);
1871                 CSR_WRITE_4(sc, SIS_RXFILT_DATA,
1872                     ((u_int16_t *)IF_LLADDR(sc->sis_ifp))[0]);
1873                 CSR_WRITE_4(sc, SIS_RXFILT_CTL, NS_FILTADDR_PAR1);
1874                 CSR_WRITE_4(sc, SIS_RXFILT_DATA,
1875                     ((u_int16_t *)IF_LLADDR(sc->sis_ifp))[1]);
1876                 CSR_WRITE_4(sc, SIS_RXFILT_CTL, NS_FILTADDR_PAR2);
1877                 CSR_WRITE_4(sc, SIS_RXFILT_DATA,
1878                     ((u_int16_t *)IF_LLADDR(sc->sis_ifp))[2]);
1879         } else {
1880                 CSR_WRITE_4(sc, SIS_RXFILT_CTL, SIS_FILTADDR_PAR0);
1881                 CSR_WRITE_4(sc, SIS_RXFILT_DATA,
1882                     ((u_int16_t *)IF_LLADDR(sc->sis_ifp))[0]);
1883                 CSR_WRITE_4(sc, SIS_RXFILT_CTL, SIS_FILTADDR_PAR1);
1884                 CSR_WRITE_4(sc, SIS_RXFILT_DATA,
1885                     ((u_int16_t *)IF_LLADDR(sc->sis_ifp))[1]);
1886                 CSR_WRITE_4(sc, SIS_RXFILT_CTL, SIS_FILTADDR_PAR2);
1887                 CSR_WRITE_4(sc, SIS_RXFILT_DATA,
1888                     ((u_int16_t *)IF_LLADDR(sc->sis_ifp))[2]);
1889         }
1890
1891         /* Init circular TX/RX lists. */
1892         if (sis_ring_init(sc) != 0) {
1893                 if_printf(ifp,
1894                     "initialization failed: no memory for rx buffers\n");
1895                 sis_stop(sc);
1896                 return;
1897         }
1898
1899         /*
1900          * Short Cable Receive Errors (MP21.E)
1901          * also: Page 78 of the DP83815 data sheet (september 2002 version)
1902          * recommends the following register settings "for optimum
1903          * performance." for rev 15C.  The driver from NS also sets
1904          * the PHY_CR register for later versions.
1905          */
1906         if (sc->sis_type == SIS_TYPE_83815 && sc->sis_srr <= NS_SRR_15D) {
1907                 CSR_WRITE_4(sc, NS_PHY_PAGE, 0x0001);
1908                 CSR_WRITE_4(sc, NS_PHY_CR, 0x189C);
1909                 if (sc->sis_srr == NS_SRR_15C) {
1910                         /* set val for c2 */
1911                         CSR_WRITE_4(sc, NS_PHY_TDATA, 0x0000);
1912                         /* load/kill c2 */
1913                         CSR_WRITE_4(sc, NS_PHY_DSPCFG, 0x5040);
1914                         /* rais SD off, from 4 to c */
1915                         CSR_WRITE_4(sc, NS_PHY_SDCFG, 0x008C);
1916                 }
1917                 CSR_WRITE_4(sc, NS_PHY_PAGE, 0);
1918         }
1919
1920
1921         /*
1922          * For the NatSemi chip, we have to explicitly enable the
1923          * reception of ARP frames, as well as turn on the 'perfect
1924          * match' filter where we store the station address, otherwise
1925          * we won't receive unicasts meant for this host.
1926          */
1927         if (sc->sis_type == SIS_TYPE_83815) {
1928                 SIS_SETBIT(sc, SIS_RXFILT_CTL, NS_RXFILTCTL_ARP);
1929                 SIS_SETBIT(sc, SIS_RXFILT_CTL, NS_RXFILTCTL_PERFECT);
1930         }
1931
1932          /* If we want promiscuous mode, set the allframes bit. */
1933         if (ifp->if_flags & IFF_PROMISC) {
1934                 SIS_SETBIT(sc, SIS_RXFILT_CTL, SIS_RXFILTCTL_ALLPHYS);
1935         } else {
1936                 SIS_CLRBIT(sc, SIS_RXFILT_CTL, SIS_RXFILTCTL_ALLPHYS);
1937         }
1938
1939         /*
1940          * Set the capture broadcast bit to capture broadcast frames.
1941          */
1942         if (ifp->if_flags & IFF_BROADCAST) {
1943                 SIS_SETBIT(sc, SIS_RXFILT_CTL, SIS_RXFILTCTL_BROAD);
1944         } else {
1945                 SIS_CLRBIT(sc, SIS_RXFILT_CTL, SIS_RXFILTCTL_BROAD);
1946         }
1947
1948         /*
1949          * Load the multicast filter.
1950          */
1951         if (sc->sis_type == SIS_TYPE_83815)
1952                 sis_setmulti_ns(sc);
1953         else
1954                 sis_setmulti_sis(sc);
1955
1956         /* Turn the receive filter on */
1957         SIS_SETBIT(sc, SIS_RXFILT_CTL, SIS_RXFILTCTL_ENABLE);
1958
1959         /*
1960          * Load the address of the RX and TX lists.
1961          */
1962         CSR_WRITE_4(sc, SIS_RX_LISTPTR, sc->sis_rx_paddr);
1963         CSR_WRITE_4(sc, SIS_TX_LISTPTR, sc->sis_tx_paddr);
1964
1965         /* SIS_CFG_EDB_MASTER_EN indicates the EDB bus is used instead of
1966          * the PCI bus. When this bit is set, the Max DMA Burst Size
1967          * for TX/RX DMA should be no larger than 16 double words.
1968          */
1969         if (CSR_READ_4(sc, SIS_CFG) & SIS_CFG_EDB_MASTER_EN) {
1970                 CSR_WRITE_4(sc, SIS_RX_CFG, SIS_RXCFG64);
1971         } else {
1972                 CSR_WRITE_4(sc, SIS_RX_CFG, SIS_RXCFG256);
1973         }
1974
1975         /* Accept Long Packets for VLAN support */
1976         SIS_SETBIT(sc, SIS_RX_CFG, SIS_RXCFG_RX_JABBER);
1977
1978         /* Set TX configuration */
1979         if (IFM_SUBTYPE(mii->mii_media_active) == IFM_10_T) {
1980                 CSR_WRITE_4(sc, SIS_TX_CFG, SIS_TXCFG_10);
1981         } else {
1982                 CSR_WRITE_4(sc, SIS_TX_CFG, SIS_TXCFG_100);
1983         }
1984
1985         /* Set full/half duplex mode. */
1986         if ((mii->mii_media_active & IFM_GMASK) == IFM_FDX) {
1987                 SIS_SETBIT(sc, SIS_TX_CFG,
1988                     (SIS_TXCFG_IGN_HBEAT|SIS_TXCFG_IGN_CARR));
1989                 SIS_SETBIT(sc, SIS_RX_CFG, SIS_RXCFG_RX_TXPKTS);
1990         } else {
1991                 SIS_CLRBIT(sc, SIS_TX_CFG,
1992                     (SIS_TXCFG_IGN_HBEAT|SIS_TXCFG_IGN_CARR));
1993                 SIS_CLRBIT(sc, SIS_RX_CFG, SIS_RXCFG_RX_TXPKTS);
1994         }
1995
1996         if (sc->sis_type == SIS_TYPE_83816) {
1997                 /*
1998                  * MPII03.D: Half Duplex Excessive Collisions.
1999                  * Also page 49 in 83816 manual
2000                  */
2001                 SIS_SETBIT(sc, SIS_TX_CFG, SIS_TXCFG_MPII03D);
2002         }
2003
2004         if (sc->sis_type == SIS_TYPE_83815 && sc->sis_srr < NS_SRR_16A &&
2005              IFM_SUBTYPE(mii->mii_media_active) == IFM_100_TX) {
2006                 uint32_t reg;
2007
2008                 /*
2009                  * Short Cable Receive Errors (MP21.E) 
2010                  */
2011                 CSR_WRITE_4(sc, NS_PHY_PAGE, 0x0001);
2012                 reg = CSR_READ_4(sc, NS_PHY_DSPCFG) & 0xfff;
2013                 CSR_WRITE_4(sc, NS_PHY_DSPCFG, reg | 0x1000);
2014                 DELAY(100000);
2015                 reg = CSR_READ_4(sc, NS_PHY_TDATA) & 0xff;
2016                 if ((reg & 0x0080) == 0 || (reg > 0xd8 && reg <= 0xff)) {
2017                         device_printf(sc->sis_self,
2018                             "Applying short cable fix (reg=%x)\n", reg);
2019                         CSR_WRITE_4(sc, NS_PHY_TDATA, 0x00e8);
2020                         reg = CSR_READ_4(sc, NS_PHY_DSPCFG);
2021                         SIS_SETBIT(sc, NS_PHY_DSPCFG, reg | 0x20);
2022                 }
2023                 CSR_WRITE_4(sc, NS_PHY_PAGE, 0);
2024         }
2025
2026         /*
2027          * Enable interrupts.
2028          */
2029         CSR_WRITE_4(sc, SIS_IMR, SIS_INTRS);
2030 #ifdef DEVICE_POLLING
2031         /*
2032          * ... only enable interrupts if we are not polling, make sure
2033          * they are off otherwise.
2034          */
2035         if (ifp->if_capenable & IFCAP_POLLING)
2036                 CSR_WRITE_4(sc, SIS_IER, 0);
2037         else
2038 #endif
2039         CSR_WRITE_4(sc, SIS_IER, 1);
2040
2041         /* Enable receiver and transmitter. */
2042         SIS_CLRBIT(sc, SIS_CSR, SIS_CSR_TX_DISABLE|SIS_CSR_RX_DISABLE);
2043         SIS_SETBIT(sc, SIS_CSR, SIS_CSR_RX_ENABLE);
2044
2045 #ifdef notdef
2046         mii_mediachg(mii);
2047 #endif
2048
2049         ifp->if_drv_flags |= IFF_DRV_RUNNING;
2050         ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
2051
2052         if (!sc->in_tick)
2053                 callout_reset(&sc->sis_stat_ch, hz,  sis_tick, sc);
2054 }
2055
2056 /*
2057  * Set media options.
2058  */
2059 static int
2060 sis_ifmedia_upd(struct ifnet *ifp)
2061 {
2062         struct sis_softc        *sc;
2063         struct mii_data         *mii;
2064
2065         sc = ifp->if_softc;
2066
2067         SIS_LOCK(sc);
2068         mii = device_get_softc(sc->sis_miibus);
2069         sc->sis_link = 0;
2070         if (mii->mii_instance) {
2071                 struct mii_softc        *miisc;
2072                 LIST_FOREACH(miisc, &mii->mii_phys, mii_list)
2073                         mii_phy_reset(miisc);
2074         }
2075         mii_mediachg(mii);
2076         SIS_UNLOCK(sc);
2077
2078         return(0);
2079 }
2080
2081 /*
2082  * Report current media status.
2083  */
2084 static void
2085 sis_ifmedia_sts(struct ifnet *ifp, struct ifmediareq *ifmr)
2086 {
2087         struct sis_softc        *sc;
2088         struct mii_data         *mii;
2089
2090         sc = ifp->if_softc;
2091
2092         SIS_LOCK(sc);
2093         mii = device_get_softc(sc->sis_miibus);
2094         mii_pollstat(mii);
2095         SIS_UNLOCK(sc);
2096         ifmr->ifm_active = mii->mii_media_active;
2097         ifmr->ifm_status = mii->mii_media_status;
2098 }
2099
2100 static int
2101 sis_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
2102 {
2103         struct sis_softc        *sc = ifp->if_softc;
2104         struct ifreq            *ifr = (struct ifreq *) data;
2105         struct mii_data         *mii;
2106         int                     error = 0;
2107
2108         switch(command) {
2109         case SIOCSIFFLAGS:
2110                 SIS_LOCK(sc);
2111                 if (ifp->if_flags & IFF_UP) {
2112                         sis_initl(sc);
2113                 } else if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
2114                         sis_stop(sc);
2115                 }
2116                 SIS_UNLOCK(sc);
2117                 error = 0;
2118                 break;
2119         case SIOCADDMULTI:
2120         case SIOCDELMULTI:
2121                 SIS_LOCK(sc);
2122                 if (sc->sis_type == SIS_TYPE_83815)
2123                         sis_setmulti_ns(sc);
2124                 else
2125                         sis_setmulti_sis(sc);
2126                 SIS_UNLOCK(sc);
2127                 error = 0;
2128                 break;
2129         case SIOCGIFMEDIA:
2130         case SIOCSIFMEDIA:
2131                 mii = device_get_softc(sc->sis_miibus);
2132                 error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
2133                 break;
2134         case SIOCSIFCAP:
2135                 /* ok, disable interrupts */
2136 #ifdef DEVICE_POLLING
2137                 if (ifr->ifr_reqcap & IFCAP_POLLING &&
2138                     !(ifp->if_capenable & IFCAP_POLLING)) {
2139                         error = ether_poll_register(sis_poll, ifp);
2140                         if (error)
2141                                 return(error);
2142                         SIS_LOCK(sc);
2143                         /* Disable interrupts */
2144                         CSR_WRITE_4(sc, SIS_IER, 0);
2145                         ifp->if_capenable |= IFCAP_POLLING;
2146                         SIS_UNLOCK(sc);
2147                         return (error);
2148                         
2149                 }
2150                 if (!(ifr->ifr_reqcap & IFCAP_POLLING) &&
2151                     ifp->if_capenable & IFCAP_POLLING) {
2152                         error = ether_poll_deregister(ifp);
2153                         /* Enable interrupts. */
2154                         SIS_LOCK(sc);
2155                         CSR_WRITE_4(sc, SIS_IER, 1);
2156                         ifp->if_capenable &= ~IFCAP_POLLING;
2157                         SIS_UNLOCK(sc);
2158                         return (error);
2159                 }
2160 #endif /* DEVICE_POLLING */
2161                 break;
2162         default:
2163                 error = ether_ioctl(ifp, command, data);
2164                 break;
2165         }
2166
2167         return(error);
2168 }
2169
2170 static void
2171 sis_watchdog(struct ifnet *ifp)
2172 {
2173         struct sis_softc *sc;
2174
2175         sc = ifp->if_softc;
2176
2177         SIS_LOCK(sc);
2178         if (sc->sis_stopped) {
2179                 SIS_UNLOCK(sc);
2180                 return;
2181         }
2182
2183         ifp->if_oerrors++;
2184         if_printf(ifp, "watchdog timeout\n");
2185
2186         sis_stop(sc);
2187         sis_reset(sc);
2188         sis_initl(sc);
2189
2190         if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
2191                 sis_startl(ifp);
2192
2193         SIS_UNLOCK(sc);
2194 }
2195
2196 /*
2197  * Stop the adapter and free any mbufs allocated to the
2198  * RX and TX lists.
2199  */
2200 static void
2201 sis_stop(struct sis_softc *sc)
2202 {
2203         int i;
2204         struct ifnet *ifp;
2205         struct sis_desc *dp;
2206
2207         if (sc->sis_stopped)
2208                 return;
2209         SIS_LOCK_ASSERT(sc);
2210         ifp = sc->sis_ifp;
2211         ifp->if_timer = 0;
2212
2213         callout_stop(&sc->sis_stat_ch);
2214
2215         ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
2216         CSR_WRITE_4(sc, SIS_IER, 0);
2217         CSR_WRITE_4(sc, SIS_IMR, 0);
2218         CSR_READ_4(sc, SIS_ISR); /* clear any interrupts already pending */
2219         SIS_SETBIT(sc, SIS_CSR, SIS_CSR_TX_DISABLE|SIS_CSR_RX_DISABLE);
2220         DELAY(1000);
2221         CSR_WRITE_4(sc, SIS_TX_LISTPTR, 0);
2222         CSR_WRITE_4(sc, SIS_RX_LISTPTR, 0);
2223
2224         sc->sis_link = 0;
2225
2226         /*
2227          * Free data in the RX lists.
2228          */
2229         dp = &sc->sis_rx_list[0];
2230         for (i = 0; i < SIS_RX_LIST_CNT; i++, dp++) {
2231                 if (dp->sis_mbuf == NULL)
2232                         continue;
2233                 bus_dmamap_unload(sc->sis_tag, dp->sis_map);
2234                 bus_dmamap_destroy(sc->sis_tag, dp->sis_map);
2235                 m_freem(dp->sis_mbuf);
2236                 dp->sis_mbuf = NULL;
2237         }
2238         bzero(sc->sis_rx_list, SIS_RX_LIST_SZ);
2239
2240         /*
2241          * Free the TX list buffers.
2242          */
2243         dp = &sc->sis_tx_list[0];
2244         for (i = 0; i < SIS_TX_LIST_CNT; i++, dp++) {
2245                 if (dp->sis_mbuf == NULL)
2246                         continue;
2247                 bus_dmamap_unload(sc->sis_tag, dp->sis_map);
2248                 bus_dmamap_destroy(sc->sis_tag, dp->sis_map);
2249                 m_freem(dp->sis_mbuf);
2250                 dp->sis_mbuf = NULL;
2251         }
2252
2253         bzero(sc->sis_tx_list, SIS_TX_LIST_SZ);
2254
2255         sc->sis_stopped = 1;
2256 }
2257
2258 /*
2259  * Stop all chip I/O so that the kernel's probe routines don't
2260  * get confused by errant DMAs when rebooting.
2261  */
2262 static void
2263 sis_shutdown(device_t dev)
2264 {
2265         struct sis_softc        *sc;
2266
2267         sc = device_get_softc(dev);
2268         SIS_LOCK(sc);
2269         sis_reset(sc);
2270         sis_stop(sc);
2271         SIS_UNLOCK(sc);
2272 }
2273
2274 static device_method_t sis_methods[] = {
2275         /* Device interface */
2276         DEVMETHOD(device_probe,         sis_probe),
2277         DEVMETHOD(device_attach,        sis_attach),
2278         DEVMETHOD(device_detach,        sis_detach),
2279         DEVMETHOD(device_shutdown,      sis_shutdown),
2280
2281         /* bus interface */
2282         DEVMETHOD(bus_print_child,      bus_generic_print_child),
2283         DEVMETHOD(bus_driver_added,     bus_generic_driver_added),
2284
2285         /* MII interface */
2286         DEVMETHOD(miibus_readreg,       sis_miibus_readreg),
2287         DEVMETHOD(miibus_writereg,      sis_miibus_writereg),
2288         DEVMETHOD(miibus_statchg,       sis_miibus_statchg),
2289
2290         { 0, 0 }
2291 };
2292
2293 static driver_t sis_driver = {
2294         "sis",
2295         sis_methods,
2296         sizeof(struct sis_softc)
2297 };
2298
2299 static devclass_t sis_devclass;
2300
2301 DRIVER_MODULE(sis, pci, sis_driver, sis_devclass, 0, 0);
2302 DRIVER_MODULE(miibus, sis, miibus_driver, miibus_devclass, 0, 0);