5ffeddc920b3e4a1d4e426d983e120aa6e6bad32
[dragonfly.git] / sys / dev / netif / stge / if_stge.c
1 /*      $NetBSD: if_stge.c,v 1.32 2005/12/11 12:22:49 christos Exp $    */
2 /*      $FreeBSD: src/sys/dev/stge/if_stge.c,v 1.2 2006/08/12 01:21:36 yongari Exp $    */
3
4 /*-
5  * Copyright (c) 2001 The NetBSD Foundation, Inc.
6  * All rights reserved.
7  *
8  * This code is derived from software contributed to The NetBSD Foundation
9  * by Jason R. Thorpe.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. All advertising materials mentioning features or use of this software
20  *    must display the following acknowledgement:
21  *      This product includes software developed by the NetBSD
22  *      Foundation, Inc. and its contributors.
23  * 4. Neither the name of The NetBSD Foundation nor the names of its
24  *    contributors may be used to endorse or promote products derived
25  *    from this software without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37  * POSSIBILITY OF SUCH DAMAGE.
38  */
39
40 /*
41  * Device driver for the Sundance Tech. TC9021 10/100/1000
42  * Ethernet controller.
43  */
44
45 #include "opt_ifpoll.h"
46
47 #include <sys/param.h>
48 #include <sys/bus.h>
49 #include <sys/endian.h>
50 #include <sys/kernel.h>
51 #include <sys/interrupt.h>
52 #include <sys/malloc.h>
53 #include <sys/mbuf.h>
54 #include <sys/module.h>
55 #include <sys/rman.h>
56 #include <sys/serialize.h>
57 #include <sys/socket.h>
58 #include <sys/sockio.h>
59 #include <sys/sysctl.h>
60
61 #include <net/bpf.h>
62 #include <net/ethernet.h>
63 #include <net/if.h>
64 #include <net/if_arp.h>
65 #include <net/if_dl.h>
66 #include <net/if_media.h>
67 #include <net/if_poll.h>
68 #include <net/if_types.h>
69 #include <net/ifq_var.h>
70 #include <net/vlan/if_vlan_var.h>
71 #include <net/vlan/if_vlan_ether.h>
72
73 #include <dev/netif/mii_layer/mii.h>
74 #include <dev/netif/mii_layer/miivar.h>
75
76 #include <bus/pci/pcireg.h>
77 #include <bus/pci/pcivar.h>
78
79 #include "if_stgereg.h"
80 #include "if_stgevar.h"
81
82 #define STGE_CSUM_FEATURES      (CSUM_IP | CSUM_TCP | CSUM_UDP)
83
84 /* "device miibus" required.  See GENERIC if you get errors here. */
85 #include "miibus_if.h"
86
87 /*
88  * Devices supported by this driver.
89  */
90 static struct stge_product {
91         uint16_t        stge_vendorid;
92         uint16_t        stge_deviceid;
93         const char      *stge_name;
94 } stge_products[] = {
95         { VENDOR_SUNDANCETI,    DEVICEID_SUNDANCETI_ST1023,
96           "Sundance ST-1023 Gigabit Ethernet" },
97
98         { VENDOR_SUNDANCETI,    DEVICEID_SUNDANCETI_ST2021,
99           "Sundance ST-2021 Gigabit Ethernet" },
100
101         { VENDOR_TAMARACK,      DEVICEID_TAMARACK_TC9021,
102           "Tamarack TC9021 Gigabit Ethernet" },
103
104         { VENDOR_TAMARACK,      DEVICEID_TAMARACK_TC9021_ALT,
105           "Tamarack TC9021 Gigabit Ethernet" },
106
107         /*
108          * The Sundance sample boards use the Sundance vendor ID,
109          * but the Tamarack product ID.
110          */
111         { VENDOR_SUNDANCETI,    DEVICEID_TAMARACK_TC9021,
112           "Sundance TC9021 Gigabit Ethernet" },
113
114         { VENDOR_SUNDANCETI,    DEVICEID_TAMARACK_TC9021_ALT,
115           "Sundance TC9021 Gigabit Ethernet" },
116
117         { VENDOR_DLINK,         DEVICEID_DLINK_DL2000,
118           "D-Link DL-2000 Gigabit Ethernet" },
119
120         { VENDOR_ANTARES,       DEVICEID_ANTARES_TC9021,
121           "Antares Gigabit Ethernet" },
122
123         { 0, 0, NULL }
124 };
125
126 static int      stge_probe(device_t);
127 static int      stge_attach(device_t);
128 static int      stge_detach(device_t);
129 static void     stge_shutdown(device_t);
130 static int      stge_suspend(device_t);
131 static int      stge_resume(device_t);
132
133 static int      stge_encap(struct stge_softc *, struct mbuf **);
134 static void     stge_start(struct ifnet *);
135 static void     stge_watchdog(struct ifnet *);
136 static int      stge_ioctl(struct ifnet *, u_long, caddr_t, struct ucred *);
137 static void     stge_init(void *);
138 static void     stge_vlan_setup(struct stge_softc *);
139 static void     stge_stop(struct stge_softc *);
140 static void     stge_start_tx(struct stge_softc *);
141 static void     stge_start_rx(struct stge_softc *);
142 static void     stge_stop_tx(struct stge_softc *);
143 static void     stge_stop_rx(struct stge_softc *);
144
145 static void     stge_reset(struct stge_softc *, uint32_t);
146 static int      stge_eeprom_wait(struct stge_softc *);
147 static void     stge_read_eeprom(struct stge_softc *, int, uint16_t *);
148 static void     stge_tick(void *);
149 static void     stge_stats_update(struct stge_softc *);
150 static void     stge_set_filter(struct stge_softc *);
151 static void     stge_set_multi(struct stge_softc *);
152
153 static void     stge_link(struct stge_softc *);
154 static void     stge_intr(void *);
155 static __inline int stge_tx_error(struct stge_softc *);
156 static void     stge_txeof(struct stge_softc *);
157 static void     stge_rxeof(struct stge_softc *, int);
158 static __inline void stge_discard_rxbuf(struct stge_softc *, int);
159 static int      stge_newbuf(struct stge_softc *, int, int);
160 #ifndef __i386__
161 static __inline struct mbuf *stge_fixup_rx(struct stge_softc *, struct mbuf *);
162 #endif
163
164 static void     stge_mii_sync(struct stge_softc *);
165 static void     stge_mii_send(struct stge_softc *, uint32_t, int);
166 static int      stge_mii_readreg(struct stge_softc *, struct stge_mii_frame *);
167 static int      stge_mii_writereg(struct stge_softc *, struct stge_mii_frame *);
168 static int      stge_miibus_readreg(device_t, int, int);
169 static int      stge_miibus_writereg(device_t, int, int, int);
170 static void     stge_miibus_statchg(device_t);
171 static int      stge_mediachange(struct ifnet *);
172 static void     stge_mediastatus(struct ifnet *, struct ifmediareq *);
173
174 static int      stge_dma_alloc(struct stge_softc *);
175 static void     stge_dma_free(struct stge_softc *);
176 static void     stge_dma_wait(struct stge_softc *);
177 static void     stge_init_tx_ring(struct stge_softc *);
178 static int      stge_init_rx_ring(struct stge_softc *);
179 #ifdef IFPOLL_ENABLE
180 static void     stge_npoll(struct ifnet *, struct ifpoll_info *);
181 static void     stge_npoll_compat(struct ifnet *, void *, int);
182 #endif
183
184 static int      sysctl_hw_stge_rxint_nframe(SYSCTL_HANDLER_ARGS);
185 static int      sysctl_hw_stge_rxint_dmawait(SYSCTL_HANDLER_ARGS);
186
187 static device_method_t stge_methods[] = {
188         /* Device interface */
189         DEVMETHOD(device_probe,         stge_probe),
190         DEVMETHOD(device_attach,        stge_attach),
191         DEVMETHOD(device_detach,        stge_detach),
192         DEVMETHOD(device_shutdown,      stge_shutdown),
193         DEVMETHOD(device_suspend,       stge_suspend),
194         DEVMETHOD(device_resume,        stge_resume),
195
196         /* MII interface */
197         DEVMETHOD(miibus_readreg,       stge_miibus_readreg),
198         DEVMETHOD(miibus_writereg,      stge_miibus_writereg),
199         DEVMETHOD(miibus_statchg,       stge_miibus_statchg),
200
201         { 0, 0 }
202
203 };
204
205 static driver_t stge_driver = {
206         "stge",
207         stge_methods,
208         sizeof(struct stge_softc)
209 };
210
211 static devclass_t stge_devclass;
212
213 DECLARE_DUMMY_MODULE(if_stge);
214 MODULE_DEPEND(if_stge, miibus, 1, 1, 1);
215 DRIVER_MODULE(if_stge, pci, stge_driver, stge_devclass, NULL, NULL);
216 DRIVER_MODULE(miibus, stge, miibus_driver, miibus_devclass, NULL, NULL);
217
218 #define MII_SET(x)      \
219         CSR_WRITE_1(sc, STGE_PhyCtrl, CSR_READ_1(sc, STGE_PhyCtrl) | (x))
220 #define MII_CLR(x)      \
221         CSR_WRITE_1(sc, STGE_PhyCtrl, CSR_READ_1(sc, STGE_PhyCtrl) & ~(x))
222
223 /*
224  * Sync the PHYs by setting data bit and strobing the clock 32 times.
225  */
226 static void
227 stge_mii_sync(struct stge_softc *sc)
228 {
229         int i;
230
231         MII_SET(PC_MgmtDir | PC_MgmtData);
232
233         for (i = 0; i < 32; i++) {
234                 MII_SET(PC_MgmtClk);
235                 DELAY(1);
236                 MII_CLR(PC_MgmtClk);
237                 DELAY(1);
238         }
239 }
240
241 /*
242  * Clock a series of bits through the MII.
243  */
244 static void
245 stge_mii_send(struct stge_softc *sc, uint32_t bits, int cnt)
246 {
247         int i;
248
249         MII_CLR(PC_MgmtClk);
250
251         for (i = (0x1 << (cnt - 1)); i; i >>= 1) {
252                 if (bits & i)
253                         MII_SET(PC_MgmtData);
254                 else
255                         MII_CLR(PC_MgmtData);
256                 DELAY(1);
257                 MII_CLR(PC_MgmtClk);
258                 DELAY(1);
259                 MII_SET(PC_MgmtClk);
260         }
261 }
262
263 /*
264  * Read an PHY register through the MII.
265  */
266 static int
267 stge_mii_readreg(struct stge_softc *sc, struct stge_mii_frame *frame)
268 {
269         int i, ack;
270
271         /*
272          * Set up frame for RX.
273          */
274         frame->mii_stdelim = STGE_MII_STARTDELIM;
275         frame->mii_opcode = STGE_MII_READOP;
276         frame->mii_turnaround = 0;
277         frame->mii_data = 0;
278
279         CSR_WRITE_1(sc, STGE_PhyCtrl, 0 | sc->sc_PhyCtrl);
280         /*
281          * Turn on data xmit.
282          */
283         MII_SET(PC_MgmtDir);
284
285         stge_mii_sync(sc);
286
287         /*
288          * Send command/address info.
289          */
290         stge_mii_send(sc, frame->mii_stdelim, 2);
291         stge_mii_send(sc, frame->mii_opcode, 2);
292         stge_mii_send(sc, frame->mii_phyaddr, 5);
293         stge_mii_send(sc, frame->mii_regaddr, 5);
294
295         /* Turn off xmit. */
296         MII_CLR(PC_MgmtDir);
297
298         /* Idle bit */
299         MII_CLR((PC_MgmtClk | PC_MgmtData));
300         DELAY(1);
301         MII_SET(PC_MgmtClk);
302         DELAY(1);
303
304         /* Check for ack */
305         MII_CLR(PC_MgmtClk);
306         DELAY(1);
307         ack = CSR_READ_1(sc, STGE_PhyCtrl) & PC_MgmtData;
308         MII_SET(PC_MgmtClk);
309         DELAY(1);
310
311         /*
312          * Now try reading data bits. If the ack failed, we still
313          * need to clock through 16 cycles to keep the PHY(s) in sync.
314          */
315         if (ack) {
316                 for(i = 0; i < 16; i++) {
317                         MII_CLR(PC_MgmtClk);
318                         DELAY(1);
319                         MII_SET(PC_MgmtClk);
320                         DELAY(1);
321                 }
322                 goto fail;
323         }
324
325         for (i = 0x8000; i; i >>= 1) {
326                 MII_CLR(PC_MgmtClk);
327                 DELAY(1);
328                 if (!ack) {
329                         if (CSR_READ_1(sc, STGE_PhyCtrl) & PC_MgmtData)
330                                 frame->mii_data |= i;
331                         DELAY(1);
332                 }
333                 MII_SET(PC_MgmtClk);
334                 DELAY(1);
335         }
336
337 fail:
338         MII_CLR(PC_MgmtClk);
339         DELAY(1);
340         MII_SET(PC_MgmtClk);
341         DELAY(1);
342
343         if (ack)
344                 return(1);
345         return(0);
346 }
347
348 /*
349  * Write to a PHY register through the MII.
350  */
351 static int
352 stge_mii_writereg(struct stge_softc *sc, struct stge_mii_frame *frame)
353 {
354
355         /*
356          * Set up frame for TX.
357          */
358         frame->mii_stdelim = STGE_MII_STARTDELIM;
359         frame->mii_opcode = STGE_MII_WRITEOP;
360         frame->mii_turnaround = STGE_MII_TURNAROUND;
361
362         /*
363          * Turn on data output.
364          */
365         MII_SET(PC_MgmtDir);
366
367         stge_mii_sync(sc);
368
369         stge_mii_send(sc, frame->mii_stdelim, 2);
370         stge_mii_send(sc, frame->mii_opcode, 2);
371         stge_mii_send(sc, frame->mii_phyaddr, 5);
372         stge_mii_send(sc, frame->mii_regaddr, 5);
373         stge_mii_send(sc, frame->mii_turnaround, 2);
374         stge_mii_send(sc, frame->mii_data, 16);
375
376         /* Idle bit. */
377         MII_SET(PC_MgmtClk);
378         DELAY(1);
379         MII_CLR(PC_MgmtClk);
380         DELAY(1);
381
382         /*
383          * Turn off xmit.
384          */
385         MII_CLR(PC_MgmtDir);
386
387         return(0);
388 }
389
390 /*
391  * sc_miibus_readreg:   [mii interface function]
392  *
393  *      Read a PHY register on the MII of the TC9021.
394  */
395 static int
396 stge_miibus_readreg(device_t dev, int phy, int reg)
397 {
398         struct stge_softc *sc;
399         struct stge_mii_frame frame;
400         int error;
401
402         sc = device_get_softc(dev);
403
404         if (reg == STGE_PhyCtrl) {
405                 /* XXX allow ip1000phy read STGE_PhyCtrl register. */
406                 error = CSR_READ_1(sc, STGE_PhyCtrl);
407                 return (error);
408         }
409         bzero(&frame, sizeof(frame));
410         frame.mii_phyaddr = phy;
411         frame.mii_regaddr = reg;
412
413         error = stge_mii_readreg(sc, &frame);
414
415         if (error != 0) {
416                 /* Don't show errors for PHY probe request */
417                 if (reg != 1)
418                         device_printf(sc->sc_dev, "phy read fail\n");
419                 return (0);
420         }
421         return (frame.mii_data);
422 }
423
424 /*
425  * stge_miibus_writereg:        [mii interface function]
426  *
427  *      Write a PHY register on the MII of the TC9021.
428  */
429 static int
430 stge_miibus_writereg(device_t dev, int phy, int reg, int val)
431 {
432         struct stge_softc *sc;
433         struct stge_mii_frame frame;
434         int error;
435
436         sc = device_get_softc(dev);
437
438         bzero(&frame, sizeof(frame));
439         frame.mii_phyaddr = phy;
440         frame.mii_regaddr = reg;
441         frame.mii_data = val;
442
443         error = stge_mii_writereg(sc, &frame);
444
445         if (error != 0)
446                 device_printf(sc->sc_dev, "phy write fail\n");
447         return (0);
448 }
449
450 /*
451  * stge_miibus_statchg: [mii interface function]
452  *
453  *      Callback from MII layer when media changes.
454  */
455 static void
456 stge_miibus_statchg(device_t dev)
457 {
458         struct stge_softc *sc;
459         struct mii_data *mii;
460
461         sc = device_get_softc(dev);
462         mii = device_get_softc(sc->sc_miibus);
463
464         if (IFM_SUBTYPE(mii->mii_media_active) == IFM_NONE)
465                 return;
466
467         sc->sc_MACCtrl = 0;
468         if (((mii->mii_media_active & IFM_GMASK) & IFM_FDX) != 0)
469                 sc->sc_MACCtrl |= MC_DuplexSelect;
470         if (((mii->mii_media_active & IFM_GMASK) & IFM_FLAG0) != 0)
471                 sc->sc_MACCtrl |= MC_RxFlowControlEnable;
472         if (((mii->mii_media_active & IFM_GMASK) & IFM_FLAG1) != 0)
473                 sc->sc_MACCtrl |= MC_TxFlowControlEnable;
474
475         stge_link(sc);
476 }
477
478 /*
479  * stge_mediastatus:    [ifmedia interface function]
480  *
481  *      Get the current interface media status.
482  */
483 static void
484 stge_mediastatus(struct ifnet *ifp, struct ifmediareq *ifmr)
485 {
486         struct stge_softc *sc;
487         struct mii_data *mii;
488
489         sc = ifp->if_softc;
490         mii = device_get_softc(sc->sc_miibus);
491
492         mii_pollstat(mii);
493         ifmr->ifm_status = mii->mii_media_status;
494         ifmr->ifm_active = mii->mii_media_active;
495 }
496
497 /*
498  * stge_mediachange:    [ifmedia interface function]
499  *
500  *      Set hardware to newly-selected media.
501  */
502 static int
503 stge_mediachange(struct ifnet *ifp)
504 {
505         struct stge_softc *sc;
506         struct mii_data *mii;
507
508         sc = ifp->if_softc;
509         mii = device_get_softc(sc->sc_miibus);
510         mii_mediachg(mii);
511
512         return (0);
513 }
514
515 static int
516 stge_eeprom_wait(struct stge_softc *sc)
517 {
518         int i;
519
520         for (i = 0; i < STGE_TIMEOUT; i++) {
521                 DELAY(1000);
522                 if ((CSR_READ_2(sc, STGE_EepromCtrl) & EC_EepromBusy) == 0)
523                         return (0);
524         }
525         return (1);
526 }
527
528 /*
529  * stge_read_eeprom:
530  *
531  *      Read data from the serial EEPROM.
532  */
533 static void
534 stge_read_eeprom(struct stge_softc *sc, int offset, uint16_t *data)
535 {
536
537         if (stge_eeprom_wait(sc))
538                 device_printf(sc->sc_dev, "EEPROM failed to come ready\n");
539
540         CSR_WRITE_2(sc, STGE_EepromCtrl,
541             EC_EepromAddress(offset) | EC_EepromOpcode(EC_OP_RR));
542         if (stge_eeprom_wait(sc))
543                 device_printf(sc->sc_dev, "EEPROM read timed out\n");
544         *data = CSR_READ_2(sc, STGE_EepromData);
545 }
546
547
548 static int
549 stge_probe(device_t dev)
550 {
551         struct stge_product *sp;
552         uint16_t vendor, devid;
553
554         vendor = pci_get_vendor(dev);
555         devid = pci_get_device(dev);
556         
557         for (sp = stge_products; sp->stge_name != NULL; sp++) {
558                 if (vendor == sp->stge_vendorid &&
559                     devid == sp->stge_deviceid) {
560                         device_set_desc(dev, sp->stge_name);
561                         return (0);
562                 }
563         }
564
565         return (ENXIO);
566 }
567
568 static int
569 stge_attach(device_t dev)
570 {
571         struct stge_softc *sc;
572         struct ifnet *ifp;
573         uint8_t enaddr[ETHER_ADDR_LEN];
574         int error, i;
575         uint16_t cmd;
576         uint32_t val;
577
578         error = 0;
579         sc = device_get_softc(dev);
580         sc->sc_dev = dev;
581         ifp = &sc->arpcom.ac_if;
582
583         if_initname(ifp, device_get_name(dev), device_get_unit(dev));
584
585         callout_init(&sc->sc_tick_ch);
586
587 #ifndef BURN_BRIDGES
588         /*
589          * Handle power management nonsense.
590          */
591         if (pci_get_powerstate(dev) != PCI_POWERSTATE_D0) {
592                 uint32_t iobase, membase, irq;
593
594                 /* Save important PCI config data. */
595                 iobase = pci_read_config(dev, STGE_PCIR_LOIO, 4);
596                 membase = pci_read_config(dev, STGE_PCIR_LOMEM, 4);
597                 irq = pci_read_config(dev, PCIR_INTLINE, 4);
598
599                 /* Reset the power state. */
600                 device_printf(dev, "chip is in D%d power mode "
601                               "-- setting to D0\n", pci_get_powerstate(dev));
602
603                 pci_set_powerstate(dev, PCI_POWERSTATE_D0);
604
605                 /* Restore PCI config data. */
606                 pci_write_config(dev, STGE_PCIR_LOIO, iobase, 4);
607                 pci_write_config(dev, STGE_PCIR_LOMEM, membase, 4);
608                 pci_write_config(dev, PCIR_INTLINE, irq, 4);
609         }
610 #endif
611
612         /*
613          * Map the device.
614          */
615         pci_enable_busmaster(dev);
616         cmd = pci_read_config(dev, PCIR_COMMAND, 2);
617         val = pci_read_config(dev, STGE_PCIR_LOMEM, 4);
618
619         if ((val & 0x01) != 0) {
620                 sc->sc_res_rid = STGE_PCIR_LOMEM;
621                 sc->sc_res_type = SYS_RES_MEMORY;
622         } else {
623                 sc->sc_res_rid = STGE_PCIR_LOIO;
624                 sc->sc_res_type = SYS_RES_IOPORT;
625
626                 val = pci_read_config(dev, sc->sc_res_rid, 4);
627                 if ((val & 0x01) == 0) {
628                         device_printf(dev, "couldn't locate IO BAR\n");
629                         return ENXIO;
630                 }
631         }
632
633         sc->sc_res = bus_alloc_resource_any(dev, sc->sc_res_type,
634                                             &sc->sc_res_rid, RF_ACTIVE);
635         if (sc->sc_res == NULL) {
636                 device_printf(dev, "couldn't allocate resource\n");
637                 return ENXIO;
638         }
639         sc->sc_btag = rman_get_bustag(sc->sc_res);
640         sc->sc_bhandle = rman_get_bushandle(sc->sc_res);
641
642         sc->sc_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ,
643                                             &sc->sc_irq_rid,
644                                             RF_ACTIVE | RF_SHAREABLE);
645         if (sc->sc_irq == NULL) {
646                 device_printf(dev, "couldn't allocate IRQ\n");
647                 error = ENXIO;
648                 goto fail;
649         }
650
651         sc->sc_rev = pci_get_revid(dev);
652
653         sc->sc_rxint_nframe = STGE_RXINT_NFRAME_DEFAULT;
654         sc->sc_rxint_dmawait = STGE_RXINT_DMAWAIT_DEFAULT;
655
656         sysctl_ctx_init(&sc->sc_sysctl_ctx);
657         sc->sc_sysctl_tree = SYSCTL_ADD_NODE(&sc->sc_sysctl_ctx,
658                                              SYSCTL_STATIC_CHILDREN(_hw),
659                                              OID_AUTO,
660                                              device_get_nameunit(dev),
661                                              CTLFLAG_RD, 0, "");
662         if (sc->sc_sysctl_tree == NULL) {
663                 device_printf(dev, "can't add sysctl node\n");
664                 error = ENXIO;
665                 goto fail;
666         }
667
668         SYSCTL_ADD_PROC(&sc->sc_sysctl_ctx,
669             SYSCTL_CHILDREN(sc->sc_sysctl_tree), OID_AUTO,
670             "rxint_nframe", CTLTYPE_INT|CTLFLAG_RW, &sc->sc_rxint_nframe, 0,
671             sysctl_hw_stge_rxint_nframe, "I", "stge rx interrupt nframe");
672
673         SYSCTL_ADD_PROC(&sc->sc_sysctl_ctx,
674             SYSCTL_CHILDREN(sc->sc_sysctl_tree), OID_AUTO,
675             "rxint_dmawait", CTLTYPE_INT|CTLFLAG_RW, &sc->sc_rxint_dmawait, 0,
676             sysctl_hw_stge_rxint_dmawait, "I", "stge rx interrupt dmawait");
677
678         error = stge_dma_alloc(sc);
679         if (error != 0)
680                 goto fail;
681
682         /*
683          * Determine if we're copper or fiber.  It affects how we
684          * reset the card.
685          */
686         if (CSR_READ_4(sc, STGE_AsicCtrl) & AC_PhyMedia)
687                 sc->sc_usefiber = 1;
688         else
689                 sc->sc_usefiber = 0;
690
691         /* Load LED configuration from EEPROM. */
692         stge_read_eeprom(sc, STGE_EEPROM_LEDMode, &sc->sc_led);
693
694         /*
695          * Reset the chip to a known state.
696          */
697         stge_reset(sc, STGE_RESET_FULL);
698
699         /*
700          * Reading the station address from the EEPROM doesn't seem
701          * to work, at least on my sample boards.  Instead, since
702          * the reset sequence does AutoInit, read it from the station
703          * address registers. For Sundance 1023 you can only read it
704          * from EEPROM.
705          */
706         if (pci_get_device(dev) != DEVICEID_SUNDANCETI_ST1023) {
707                 uint16_t v;
708
709                 v = CSR_READ_2(sc, STGE_StationAddress0);
710                 enaddr[0] = v & 0xff;
711                 enaddr[1] = v >> 8;
712                 v = CSR_READ_2(sc, STGE_StationAddress1);
713                 enaddr[2] = v & 0xff;
714                 enaddr[3] = v >> 8;
715                 v = CSR_READ_2(sc, STGE_StationAddress2);
716                 enaddr[4] = v & 0xff;
717                 enaddr[5] = v >> 8;
718                 sc->sc_stge1023 = 0;
719         } else {
720                 uint16_t myaddr[ETHER_ADDR_LEN / 2];
721                 for (i = 0; i <ETHER_ADDR_LEN / 2; i++) {
722                         stge_read_eeprom(sc, STGE_EEPROM_StationAddress0 + i,
723                             &myaddr[i]);
724                         myaddr[i] = le16toh(myaddr[i]);
725                 }
726                 bcopy(myaddr, enaddr, sizeof(enaddr));
727                 sc->sc_stge1023 = 1;
728         }
729
730         ifp->if_softc = sc;
731         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
732         ifp->if_ioctl = stge_ioctl;
733         ifp->if_start = stge_start;
734         ifp->if_watchdog = stge_watchdog;
735         ifp->if_init = stge_init;
736 #ifdef IFPOLL_ENABLE
737         ifp->if_npoll = stge_npoll;
738 #endif
739         ifp->if_mtu = ETHERMTU;
740         ifq_set_maxlen(&ifp->if_snd, STGE_TX_RING_CNT - 1);
741         ifq_set_ready(&ifp->if_snd);
742         /* Revision B3 and earlier chips have checksum bug. */
743         if (sc->sc_rev >= 0x0c) {
744                 ifp->if_hwassist = STGE_CSUM_FEATURES;
745                 ifp->if_capabilities = IFCAP_HWCSUM;
746         } else {
747                 ifp->if_hwassist = 0;
748                 ifp->if_capabilities = 0;
749         }
750         ifp->if_capenable = ifp->if_capabilities;
751
752         /*
753          * Read some important bits from the PhyCtrl register.
754          */
755         sc->sc_PhyCtrl = CSR_READ_1(sc, STGE_PhyCtrl) &
756             (PC_PhyDuplexPolarity | PC_PhyLnkPolarity);
757
758         /* Set up MII bus. */
759         if ((error = mii_phy_probe(sc->sc_dev, &sc->sc_miibus, stge_mediachange,
760             stge_mediastatus)) != 0) {
761                 device_printf(sc->sc_dev, "no PHY found!\n");
762                 goto fail;
763         }
764
765         ether_ifattach(ifp, enaddr, NULL);
766
767 #ifdef IFPOLL_ENABLE
768         ifpoll_compat_setup(&sc->sc_npoll,
769             &sc->sc_sysctl_ctx, sc->sc_sysctl_tree, device_get_unit(dev),
770             ifp->if_serializer);
771 #endif
772
773         /* VLAN capability setup */
774         ifp->if_capabilities |= IFCAP_VLAN_MTU | IFCAP_VLAN_HWTAGGING;
775 #ifdef notyet
776         if (sc->sc_rev >= 0x0c)
777                 ifp->if_capabilities |= IFCAP_VLAN_HWCSUM;
778 #endif
779         ifp->if_capenable = ifp->if_capabilities;
780
781         /*
782          * Tell the upper layer(s) we support long frames.
783          * Must appear after the call to ether_ifattach() because
784          * ether_ifattach() sets ifi_hdrlen to the default value.
785          */
786         ifp->if_data.ifi_hdrlen = sizeof(struct ether_vlan_header);
787
788         /*
789          * The manual recommends disabling early transmit, so we
790          * do.  It's disabled anyway, if using IP checksumming,
791          * since the entire packet must be in the FIFO in order
792          * for the chip to perform the checksum.
793          */
794         sc->sc_txthresh = 0x0fff;
795
796         /*
797          * Disable MWI if the PCI layer tells us to.
798          */
799         sc->sc_DMACtrl = 0;
800         if ((cmd & PCIM_CMD_MWRICEN) == 0)
801                 sc->sc_DMACtrl |= DMAC_MWIDisable;
802
803         /*
804          * Hookup IRQ
805          */
806         error = bus_setup_intr(dev, sc->sc_irq, INTR_MPSAFE, stge_intr, sc,
807                                &sc->sc_ih, ifp->if_serializer);
808         if (error != 0) {
809                 ether_ifdetach(ifp);
810                 device_printf(sc->sc_dev, "couldn't set up IRQ\n");
811                 goto fail;
812         }
813
814         ifq_set_cpuid(&ifp->if_snd, rman_get_cpuid(sc->sc_irq));
815
816 fail:
817         if (error != 0)
818                 stge_detach(dev);
819
820         return (error);
821 }
822
823 static int
824 stge_detach(device_t dev)
825 {
826         struct stge_softc *sc = device_get_softc(dev);
827         struct ifnet *ifp = &sc->arpcom.ac_if;
828
829         if (device_is_attached(dev)) {
830                 lwkt_serialize_enter(ifp->if_serializer);
831                 /* XXX */
832                 sc->sc_detach = 1;
833                 stge_stop(sc);
834                 bus_teardown_intr(dev, sc->sc_irq, sc->sc_ih);
835                 lwkt_serialize_exit(ifp->if_serializer);
836
837                 ether_ifdetach(ifp);
838         }
839
840         if (sc->sc_sysctl_tree != NULL)
841                 sysctl_ctx_free(&sc->sc_sysctl_ctx);
842
843         if (sc->sc_miibus != NULL)
844                 device_delete_child(dev, sc->sc_miibus);
845         bus_generic_detach(dev);
846
847         stge_dma_free(sc);
848
849         if (sc->sc_irq != NULL) {
850                 bus_release_resource(dev, SYS_RES_IRQ, sc->sc_irq_rid,
851                                      sc->sc_irq);
852         }
853         if (sc->sc_res != NULL) {
854                 bus_release_resource(dev, sc->sc_res_type, sc->sc_res_rid,
855                                      sc->sc_res);
856         }
857
858         return (0);
859 }
860
861 static int
862 stge_dma_alloc(struct stge_softc *sc)
863 {
864         struct stge_txdesc *txd;
865         struct stge_rxdesc *rxd;
866         int error, i;
867
868         /* create parent tag. */
869         error = bus_dma_tag_create(NULL,        /* parent */
870                     1, 0,                       /* algnmnt, boundary */
871                     STGE_DMA_MAXADDR,           /* lowaddr */
872                     BUS_SPACE_MAXADDR,          /* highaddr */
873                     NULL, NULL,                 /* filter, filterarg */
874                     BUS_SPACE_MAXSIZE_32BIT,    /* maxsize */
875                     0,                          /* nsegments */
876                     BUS_SPACE_MAXSIZE_32BIT,    /* maxsegsize */
877                     0,                          /* flags */
878                     &sc->sc_cdata.stge_parent_tag);
879         if (error != 0) {
880                 device_printf(sc->sc_dev, "failed to create parent DMA tag\n");
881                 return error;
882         }
883
884         /* allocate Tx ring. */
885         sc->sc_rdata.stge_tx_ring =
886                 bus_dmamem_coherent_any(sc->sc_cdata.stge_parent_tag,
887                         STGE_RING_ALIGN, STGE_TX_RING_SZ,
888                         BUS_DMA_WAITOK | BUS_DMA_ZERO,
889                         &sc->sc_cdata.stge_tx_ring_tag,
890                         &sc->sc_cdata.stge_tx_ring_map,
891                         &sc->sc_rdata.stge_tx_ring_paddr);
892         if (sc->sc_rdata.stge_tx_ring == NULL) {
893                 device_printf(sc->sc_dev,
894                     "failed to allocate Tx ring\n");
895                 return ENOMEM;
896         }
897
898         /* allocate Rx ring. */
899         sc->sc_rdata.stge_rx_ring =
900                 bus_dmamem_coherent_any(sc->sc_cdata.stge_parent_tag,
901                         STGE_RING_ALIGN, STGE_RX_RING_SZ,
902                         BUS_DMA_WAITOK | BUS_DMA_ZERO,
903                         &sc->sc_cdata.stge_rx_ring_tag,
904                         &sc->sc_cdata.stge_rx_ring_map,
905                         &sc->sc_rdata.stge_rx_ring_paddr);
906         if (sc->sc_rdata.stge_rx_ring == NULL) {
907                 device_printf(sc->sc_dev,
908                     "failed to allocate Rx ring\n");
909                 return ENOMEM;
910         }
911
912         /* create tag for Tx buffers. */
913         error = bus_dma_tag_create(sc->sc_cdata.stge_parent_tag,/* parent */
914                     1, 0,                       /* algnmnt, boundary */
915                     BUS_SPACE_MAXADDR,          /* lowaddr */
916                     BUS_SPACE_MAXADDR,          /* highaddr */
917                     NULL, NULL,                 /* filter, filterarg */
918                     STGE_JUMBO_FRAMELEN,        /* maxsize */
919                     STGE_MAXTXSEGS,             /* nsegments */
920                     STGE_MAXSGSIZE,             /* maxsegsize */
921                     BUS_DMA_ALLOCNOW | BUS_DMA_WAITOK,/* flags */
922                     &sc->sc_cdata.stge_tx_tag);
923         if (error != 0) {
924                 device_printf(sc->sc_dev, "failed to allocate Tx DMA tag\n");
925                 return error;
926         }
927
928         /* create DMA maps for Tx buffers. */
929         for (i = 0; i < STGE_TX_RING_CNT; i++) {
930                 txd = &sc->sc_cdata.stge_txdesc[i];
931                 error = bus_dmamap_create(sc->sc_cdata.stge_tx_tag,
932                                 BUS_DMA_WAITOK, &txd->tx_dmamap);
933                 if (error != 0) {
934                         int j;
935
936                         for (j = 0; j < i; ++j) {
937                                 txd = &sc->sc_cdata.stge_txdesc[j];
938                                 bus_dmamap_destroy(sc->sc_cdata.stge_tx_tag,
939                                         txd->tx_dmamap);
940                         }
941                         bus_dma_tag_destroy(sc->sc_cdata.stge_tx_tag);
942                         sc->sc_cdata.stge_tx_tag = NULL;
943
944                         device_printf(sc->sc_dev,
945                             "failed to create Tx dmamap\n");
946                         return error;
947                 }
948         }
949
950         /* create tag for Rx buffers. */
951         error = bus_dma_tag_create(sc->sc_cdata.stge_parent_tag,/* parent */
952                     1, 0,                       /* algnmnt, boundary */
953                     BUS_SPACE_MAXADDR,          /* lowaddr */
954                     BUS_SPACE_MAXADDR,          /* highaddr */
955                     NULL, NULL,                 /* filter, filterarg */
956                     MCLBYTES,                   /* maxsize */
957                     1,                          /* nsegments */
958                     MCLBYTES,                   /* maxsegsize */
959                     BUS_DMA_ALLOCNOW | BUS_DMA_WAITOK,/* flags */
960                     &sc->sc_cdata.stge_rx_tag);
961         if (error != 0) {
962                 device_printf(sc->sc_dev, "failed to allocate Rx DMA tag\n");
963                 return error;
964         }
965
966         /* create DMA maps for Rx buffers. */
967         error = bus_dmamap_create(sc->sc_cdata.stge_rx_tag, BUS_DMA_WAITOK,
968                         &sc->sc_cdata.stge_rx_sparemap);
969         if (error != 0) {
970                 device_printf(sc->sc_dev, "failed to create spare Rx dmamap\n");
971                 bus_dma_tag_destroy(sc->sc_cdata.stge_rx_tag);
972                 sc->sc_cdata.stge_rx_tag = NULL;
973                 return error;
974         }
975         for (i = 0; i < STGE_RX_RING_CNT; i++) {
976                 rxd = &sc->sc_cdata.stge_rxdesc[i];
977                 error = bus_dmamap_create(sc->sc_cdata.stge_rx_tag,
978                                 BUS_DMA_WAITOK, &rxd->rx_dmamap);
979                 if (error != 0) {
980                         int j;
981
982                         for (j = 0; j < i; ++j) {
983                                 rxd = &sc->sc_cdata.stge_rxdesc[j];
984                                 bus_dmamap_destroy(sc->sc_cdata.stge_rx_tag,
985                                         rxd->rx_dmamap);
986                         }
987                         bus_dmamap_destroy(sc->sc_cdata.stge_rx_tag,
988                                 sc->sc_cdata.stge_rx_sparemap);
989                         bus_dma_tag_destroy(sc->sc_cdata.stge_rx_tag);
990                         sc->sc_cdata.stge_rx_tag = NULL;
991
992                         device_printf(sc->sc_dev,
993                             "failed to create Rx dmamap\n");
994                         return error;
995                 }
996         }
997         return 0;
998 }
999
1000 static void
1001 stge_dma_free(struct stge_softc *sc)
1002 {
1003         struct stge_txdesc *txd;
1004         struct stge_rxdesc *rxd;
1005         int i;
1006
1007         /* Tx ring */
1008         if (sc->sc_cdata.stge_tx_ring_tag) {
1009                 bus_dmamap_unload(sc->sc_cdata.stge_tx_ring_tag,
1010                     sc->sc_cdata.stge_tx_ring_map);
1011                 bus_dmamem_free(sc->sc_cdata.stge_tx_ring_tag,
1012                     sc->sc_rdata.stge_tx_ring,
1013                     sc->sc_cdata.stge_tx_ring_map);
1014                 bus_dma_tag_destroy(sc->sc_cdata.stge_tx_ring_tag);
1015         }
1016
1017         /* Rx ring */
1018         if (sc->sc_cdata.stge_rx_ring_tag) {
1019                 bus_dmamap_unload(sc->sc_cdata.stge_rx_ring_tag,
1020                     sc->sc_cdata.stge_rx_ring_map);
1021                 bus_dmamem_free(sc->sc_cdata.stge_rx_ring_tag,
1022                     sc->sc_rdata.stge_rx_ring,
1023                     sc->sc_cdata.stge_rx_ring_map);
1024                 bus_dma_tag_destroy(sc->sc_cdata.stge_rx_ring_tag);
1025         }
1026
1027         /* Tx buffers */
1028         if (sc->sc_cdata.stge_tx_tag) {
1029                 for (i = 0; i < STGE_TX_RING_CNT; i++) {
1030                         txd = &sc->sc_cdata.stge_txdesc[i];
1031                         bus_dmamap_destroy(sc->sc_cdata.stge_tx_tag,
1032                             txd->tx_dmamap);
1033                 }
1034                 bus_dma_tag_destroy(sc->sc_cdata.stge_tx_tag);
1035         }
1036
1037         /* Rx buffers */
1038         if (sc->sc_cdata.stge_rx_tag) {
1039                 for (i = 0; i < STGE_RX_RING_CNT; i++) {
1040                         rxd = &sc->sc_cdata.stge_rxdesc[i];
1041                         bus_dmamap_destroy(sc->sc_cdata.stge_rx_tag,
1042                             rxd->rx_dmamap);
1043                 }
1044                 bus_dmamap_destroy(sc->sc_cdata.stge_rx_tag,
1045                     sc->sc_cdata.stge_rx_sparemap);
1046                 bus_dma_tag_destroy(sc->sc_cdata.stge_rx_tag);
1047         }
1048
1049         /* Top level tag */
1050         if (sc->sc_cdata.stge_parent_tag)
1051                 bus_dma_tag_destroy(sc->sc_cdata.stge_parent_tag);
1052 }
1053
1054 /*
1055  * stge_shutdown:
1056  *
1057  *      Make sure the interface is stopped at reboot time.
1058  */
1059 static void
1060 stge_shutdown(device_t dev)
1061 {
1062         struct stge_softc *sc = device_get_softc(dev);
1063         struct ifnet *ifp = &sc->arpcom.ac_if;
1064
1065         lwkt_serialize_enter(ifp->if_serializer);
1066         stge_stop(sc);
1067         lwkt_serialize_exit(ifp->if_serializer);
1068 }
1069
1070 static int
1071 stge_suspend(device_t dev)
1072 {
1073         struct stge_softc *sc = device_get_softc(dev);
1074         struct ifnet *ifp = &sc->arpcom.ac_if;
1075
1076         lwkt_serialize_enter(ifp->if_serializer);
1077         stge_stop(sc);
1078         sc->sc_suspended = 1;
1079         lwkt_serialize_exit(ifp->if_serializer);
1080
1081         return (0);
1082 }
1083
1084 static int
1085 stge_resume(device_t dev)
1086 {
1087         struct stge_softc *sc = device_get_softc(dev);
1088         struct ifnet *ifp = &sc->arpcom.ac_if;
1089
1090         lwkt_serialize_enter(ifp->if_serializer);
1091         if (ifp->if_flags & IFF_UP)
1092                 stge_init(sc);
1093         sc->sc_suspended = 0;
1094         lwkt_serialize_exit(ifp->if_serializer);
1095
1096         return (0);
1097 }
1098
1099 static void
1100 stge_dma_wait(struct stge_softc *sc)
1101 {
1102         int i;
1103
1104         for (i = 0; i < STGE_TIMEOUT; i++) {
1105                 DELAY(2);
1106                 if ((CSR_READ_4(sc, STGE_DMACtrl) & DMAC_TxDMAInProg) == 0)
1107                         break;
1108         }
1109
1110         if (i == STGE_TIMEOUT)
1111                 device_printf(sc->sc_dev, "DMA wait timed out\n");
1112 }
1113
1114 static int
1115 stge_encap(struct stge_softc *sc, struct mbuf **m_head)
1116 {
1117         struct stge_txdesc *txd;
1118         struct stge_tfd *tfd;
1119         struct mbuf *m;
1120         bus_dma_segment_t txsegs[STGE_MAXTXSEGS];
1121         int error, i, si, nsegs;
1122         uint64_t csum_flags, tfc;
1123
1124         txd = STAILQ_FIRST(&sc->sc_cdata.stge_txfreeq);
1125         KKASSERT(txd != NULL);
1126
1127         error =  bus_dmamap_load_mbuf_defrag(sc->sc_cdata.stge_tx_tag,
1128                         txd->tx_dmamap, m_head,
1129                         txsegs, STGE_MAXTXSEGS, &nsegs, BUS_DMA_NOWAIT);
1130         if (error) {
1131                 m_freem(*m_head);
1132                 *m_head = NULL;
1133                 return (error);
1134         }
1135         bus_dmamap_sync(sc->sc_cdata.stge_tx_tag, txd->tx_dmamap,
1136             BUS_DMASYNC_PREWRITE);
1137
1138         m = *m_head;
1139
1140         csum_flags = 0;
1141         if ((m->m_pkthdr.csum_flags & STGE_CSUM_FEATURES) != 0) {
1142                 if (m->m_pkthdr.csum_flags & CSUM_IP)
1143                         csum_flags |= TFD_IPChecksumEnable;
1144                 if (m->m_pkthdr.csum_flags & CSUM_TCP)
1145                         csum_flags |= TFD_TCPChecksumEnable;
1146                 else if (m->m_pkthdr.csum_flags & CSUM_UDP)
1147                         csum_flags |= TFD_UDPChecksumEnable;
1148         }
1149
1150         si = sc->sc_cdata.stge_tx_prod;
1151         tfd = &sc->sc_rdata.stge_tx_ring[si];
1152         for (i = 0; i < nsegs; i++) {
1153                 tfd->tfd_frags[i].frag_word0 =
1154                     htole64(FRAG_ADDR(txsegs[i].ds_addr) |
1155                     FRAG_LEN(txsegs[i].ds_len));
1156         }
1157         sc->sc_cdata.stge_tx_cnt++;
1158
1159         tfc = TFD_FrameId(si) | TFD_WordAlign(TFD_WordAlign_disable) |
1160             TFD_FragCount(nsegs) | csum_flags;
1161         if (sc->sc_cdata.stge_tx_cnt >= STGE_TX_HIWAT)
1162                 tfc |= TFD_TxDMAIndicate;
1163
1164         /* Update producer index. */
1165         sc->sc_cdata.stge_tx_prod = (si + 1) % STGE_TX_RING_CNT;
1166
1167         /* Check if we have a VLAN tag to insert. */
1168         if (m->m_flags & M_VLANTAG)
1169                 tfc |= TFD_VLANTagInsert | TFD_VID(m->m_pkthdr.ether_vlantag);
1170         tfd->tfd_control = htole64(tfc);
1171
1172         /* Update Tx Queue. */
1173         STAILQ_REMOVE_HEAD(&sc->sc_cdata.stge_txfreeq, tx_q);
1174         STAILQ_INSERT_TAIL(&sc->sc_cdata.stge_txbusyq, txd, tx_q);
1175         txd->tx_m = m;
1176
1177         return (0);
1178 }
1179
1180 /*
1181  * stge_start:          [ifnet interface function]
1182  *
1183  *      Start packet transmission on the interface.
1184  */
1185 static void
1186 stge_start(struct ifnet *ifp)
1187 {
1188         struct stge_softc *sc;
1189         struct mbuf *m_head;
1190         int enq;
1191
1192         sc = ifp->if_softc;
1193
1194         ASSERT_SERIALIZED(ifp->if_serializer);
1195
1196         if ((ifp->if_flags & IFF_RUNNING) == 0 || ifq_is_oactive(&ifp->if_snd))
1197                 return;
1198
1199         enq = 0;
1200         while (!ifq_is_empty(&ifp->if_snd)) {
1201                 if (sc->sc_cdata.stge_tx_cnt >= STGE_TX_HIWAT) {
1202                         ifq_set_oactive(&ifp->if_snd);
1203                         break;
1204                 }
1205
1206                 m_head = ifq_dequeue(&ifp->if_snd, NULL);
1207                 if (m_head == NULL)
1208                         break;
1209
1210                 /*
1211                  * Pack the data into the transmit ring. If we
1212                  * don't have room, set the OACTIVE flag and wait
1213                  * for the NIC to drain the ring.
1214                  */
1215                 if (stge_encap(sc, &m_head)) {
1216                         if (sc->sc_cdata.stge_tx_cnt == 0) {
1217                                 continue;
1218                         } else {
1219                                 ifq_set_oactive(&ifp->if_snd);
1220                                 break;
1221                         }
1222                 }
1223                 enq = 1;
1224
1225                 /*
1226                  * If there's a BPF listener, bounce a copy of this frame
1227                  * to him.
1228                  */
1229                 ETHER_BPF_MTAP(ifp, m_head);
1230         }
1231
1232         if (enq) {
1233                 /* Transmit */
1234                 CSR_WRITE_4(sc, STGE_DMACtrl, DMAC_TxDMAPollNow);
1235
1236                 /* Set a timeout in case the chip goes out to lunch. */
1237                 ifp->if_timer = 5;
1238         }
1239 }
1240
1241 /*
1242  * stge_watchdog:       [ifnet interface function]
1243  *
1244  *      Watchdog timer handler.
1245  */
1246 static void
1247 stge_watchdog(struct ifnet *ifp)
1248 {
1249         ASSERT_SERIALIZED(ifp->if_serializer);
1250
1251         if_printf(ifp, "device timeout\n");
1252         ifp->if_oerrors++;
1253         stge_init(ifp->if_softc);
1254 }
1255
1256 /*
1257  * stge_ioctl:          [ifnet interface function]
1258  *
1259  *      Handle control requests from the operator.
1260  */
1261 static int
1262 stge_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data, struct ucred *cr)
1263 {
1264         struct stge_softc *sc;
1265         struct ifreq *ifr;
1266         struct mii_data *mii;
1267         int error, mask;
1268
1269         ASSERT_SERIALIZED(ifp->if_serializer);
1270
1271         sc = ifp->if_softc;
1272         ifr = (struct ifreq *)data;
1273         error = 0;
1274         switch (cmd) {
1275         case SIOCSIFMTU:
1276                 if (ifr->ifr_mtu < ETHERMIN || ifr->ifr_mtu > STGE_JUMBO_MTU)
1277                         error = EINVAL;
1278                 else if (ifp->if_mtu != ifr->ifr_mtu) {
1279                         ifp->if_mtu = ifr->ifr_mtu;
1280                         stge_init(sc);
1281                 }
1282                 break;
1283         case SIOCSIFFLAGS:
1284                 if ((ifp->if_flags & IFF_UP) != 0) {
1285                         if ((ifp->if_flags & IFF_RUNNING) != 0) {
1286                                 if (((ifp->if_flags ^ sc->sc_if_flags)
1287                                     & IFF_PROMISC) != 0)
1288                                         stge_set_filter(sc);
1289                         } else {
1290                                 if (sc->sc_detach == 0)
1291                                         stge_init(sc);
1292                         }
1293                 } else {
1294                         if ((ifp->if_flags & IFF_RUNNING) != 0)
1295                                 stge_stop(sc);
1296                 }
1297                 sc->sc_if_flags = ifp->if_flags;
1298                 break;
1299         case SIOCADDMULTI:
1300         case SIOCDELMULTI:
1301                 if ((ifp->if_flags & IFF_RUNNING) != 0)
1302                         stge_set_multi(sc);
1303                 break;
1304         case SIOCSIFMEDIA:
1305         case SIOCGIFMEDIA:
1306                 mii = device_get_softc(sc->sc_miibus);
1307                 error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, cmd);
1308                 break;
1309         case SIOCSIFCAP:
1310                 mask = ifr->ifr_reqcap ^ ifp->if_capenable;
1311                 if ((mask & IFCAP_HWCSUM) != 0) {
1312                         ifp->if_capenable ^= IFCAP_HWCSUM;
1313                         if ((IFCAP_HWCSUM & ifp->if_capenable) != 0 &&
1314                             (IFCAP_HWCSUM & ifp->if_capabilities) != 0)
1315                                 ifp->if_hwassist = STGE_CSUM_FEATURES;
1316                         else
1317                                 ifp->if_hwassist = 0;
1318                 }
1319                 if ((mask & IFCAP_VLAN_HWTAGGING) != 0) {
1320                         ifp->if_capenable ^= IFCAP_VLAN_HWTAGGING;
1321                         if (ifp->if_flags & IFF_RUNNING)
1322                                 stge_vlan_setup(sc);
1323                 }
1324 #if 0
1325                 VLAN_CAPABILITIES(ifp);
1326 #endif
1327                 break;
1328         default:
1329                 error = ether_ioctl(ifp, cmd, data);
1330                 break;
1331         }
1332
1333         return (error);
1334 }
1335
1336 static void
1337 stge_link(struct stge_softc *sc)
1338 {
1339         uint32_t v, ac;
1340         int i;
1341
1342         /*
1343          * Update STGE_MACCtrl register depending on link status.
1344          * (duplex, flow control etc)
1345          */
1346         v = ac = CSR_READ_4(sc, STGE_MACCtrl) & MC_MASK;
1347         v &= ~(MC_DuplexSelect|MC_RxFlowControlEnable|MC_TxFlowControlEnable);
1348         v |= sc->sc_MACCtrl;
1349         CSR_WRITE_4(sc, STGE_MACCtrl, v);
1350         if (((ac ^ sc->sc_MACCtrl) & MC_DuplexSelect) != 0) {
1351                 /* Duplex setting changed, reset Tx/Rx functions. */
1352                 ac = CSR_READ_4(sc, STGE_AsicCtrl);
1353                 ac |= AC_TxReset | AC_RxReset;
1354                 CSR_WRITE_4(sc, STGE_AsicCtrl, ac);
1355                 for (i = 0; i < STGE_TIMEOUT; i++) {
1356                         DELAY(100);
1357                         if ((CSR_READ_4(sc, STGE_AsicCtrl) & AC_ResetBusy) == 0)
1358                                 break;
1359                 }
1360                 if (i == STGE_TIMEOUT)
1361                         device_printf(sc->sc_dev, "reset failed to complete\n");
1362         }
1363 }
1364
1365 static __inline int
1366 stge_tx_error(struct stge_softc *sc)
1367 {
1368         uint32_t txstat;
1369         int error;
1370
1371         for (error = 0;;) {
1372                 txstat = CSR_READ_4(sc, STGE_TxStatus);
1373                 if ((txstat & TS_TxComplete) == 0)
1374                         break;
1375                 /* Tx underrun */
1376                 if ((txstat & TS_TxUnderrun) != 0) {
1377                         /*
1378                          * XXX
1379                          * There should be a more better way to recover
1380                          * from Tx underrun instead of a full reset.
1381                          */
1382                         if (sc->sc_nerr++ < STGE_MAXERR)
1383                                 device_printf(sc->sc_dev, "Tx underrun, "
1384                                     "resetting...\n");
1385                         if (sc->sc_nerr == STGE_MAXERR)
1386                                 device_printf(sc->sc_dev, "too many errors; "
1387                                     "not reporting any more\n");
1388                         error = -1;
1389                         break;
1390                 }
1391                 /* Maximum/Late collisions, Re-enable Tx MAC. */
1392                 if ((txstat & (TS_MaxCollisions|TS_LateCollision)) != 0)
1393                         CSR_WRITE_4(sc, STGE_MACCtrl,
1394                             (CSR_READ_4(sc, STGE_MACCtrl) & MC_MASK) |
1395                             MC_TxEnable);
1396         }
1397
1398         return (error);
1399 }
1400
1401 /*
1402  * stge_intr:
1403  *
1404  *      Interrupt service routine.
1405  */
1406 static void
1407 stge_intr(void *arg)
1408 {
1409         struct stge_softc *sc = arg;
1410         struct ifnet *ifp = &sc->arpcom.ac_if;
1411         int reinit;
1412         uint16_t status;
1413
1414         ASSERT_SERIALIZED(ifp->if_serializer);
1415
1416         status = CSR_READ_2(sc, STGE_IntStatus);
1417         if (sc->sc_suspended || (status & IS_InterruptStatus) == 0)
1418                 return;
1419
1420         /* Disable interrupts. */
1421         for (reinit = 0;;) {
1422                 status = CSR_READ_2(sc, STGE_IntStatusAck);
1423                 status &= sc->sc_IntEnable;
1424                 if (status == 0)
1425                         break;
1426                 /* Host interface errors. */
1427                 if ((status & IS_HostError) != 0) {
1428                         device_printf(sc->sc_dev,
1429                             "Host interface error, resetting...\n");
1430                         reinit = 1;
1431                         goto force_init;
1432                 }
1433
1434                 /* Receive interrupts. */
1435                 if ((status & IS_RxDMAComplete) != 0) {
1436                         stge_rxeof(sc, -1);
1437                         if ((status & IS_RFDListEnd) != 0)
1438                                 CSR_WRITE_4(sc, STGE_DMACtrl,
1439                                     DMAC_RxDMAPollNow);
1440                 }
1441
1442                 /* Transmit interrupts. */
1443                 if ((status & (IS_TxDMAComplete | IS_TxComplete)) != 0)
1444                         stge_txeof(sc);
1445
1446                 /* Transmission errors.*/
1447                 if ((status & IS_TxComplete) != 0) {
1448                         if ((reinit = stge_tx_error(sc)) != 0)
1449                                 break;
1450                 }
1451         }
1452
1453 force_init:
1454         if (reinit != 0)
1455                 stge_init(sc);
1456
1457         /* Re-enable interrupts. */
1458         CSR_WRITE_2(sc, STGE_IntEnable, sc->sc_IntEnable);
1459
1460         /* Try to get more packets going. */
1461         if (!ifq_is_empty(&ifp->if_snd))
1462                 if_devstart(ifp);
1463 }
1464
1465 /*
1466  * stge_txeof:
1467  *
1468  *      Helper; handle transmit interrupts.
1469  */
1470 static void
1471 stge_txeof(struct stge_softc *sc)
1472 {
1473         struct ifnet *ifp = &sc->arpcom.ac_if;
1474         struct stge_txdesc *txd;
1475         uint64_t control;
1476         int cons;
1477
1478         txd = STAILQ_FIRST(&sc->sc_cdata.stge_txbusyq);
1479         if (txd == NULL)
1480                 return;
1481
1482         /*
1483          * Go through our Tx list and free mbufs for those
1484          * frames which have been transmitted.
1485          */
1486         for (cons = sc->sc_cdata.stge_tx_cons;;
1487             cons = (cons + 1) % STGE_TX_RING_CNT) {
1488                 if (sc->sc_cdata.stge_tx_cnt <= 0)
1489                         break;
1490                 control = le64toh(sc->sc_rdata.stge_tx_ring[cons].tfd_control);
1491                 if ((control & TFD_TFDDone) == 0)
1492                         break;
1493                 sc->sc_cdata.stge_tx_cnt--;
1494
1495                 bus_dmamap_unload(sc->sc_cdata.stge_tx_tag, txd->tx_dmamap);
1496
1497                 /* Output counter is updated with statistics register */
1498                 m_freem(txd->tx_m);
1499                 txd->tx_m = NULL;
1500                 STAILQ_REMOVE_HEAD(&sc->sc_cdata.stge_txbusyq, tx_q);
1501                 STAILQ_INSERT_TAIL(&sc->sc_cdata.stge_txfreeq, txd, tx_q);
1502                 txd = STAILQ_FIRST(&sc->sc_cdata.stge_txbusyq);
1503         }
1504         sc->sc_cdata.stge_tx_cons = cons;
1505
1506         if (sc->sc_cdata.stge_tx_cnt < STGE_TX_HIWAT)
1507                 ifq_clr_oactive(&ifp->if_snd);
1508         if (sc->sc_cdata.stge_tx_cnt == 0)
1509                 ifp->if_timer = 0;
1510 }
1511
1512 static __inline void
1513 stge_discard_rxbuf(struct stge_softc *sc, int idx)
1514 {
1515         struct stge_rfd *rfd;
1516
1517         rfd = &sc->sc_rdata.stge_rx_ring[idx];
1518         rfd->rfd_status = 0;
1519 }
1520
1521 #ifndef __i386__
1522 /*
1523  * It seems that TC9021's DMA engine has alignment restrictions in
1524  * DMA scatter operations. The first DMA segment has no address
1525  * alignment restrictins but the rest should be aligned on 4(?) bytes
1526  * boundary. Otherwise it would corrupt random memory. Since we don't
1527  * know which one is used for the first segment in advance we simply
1528  * don't align at all.
1529  * To avoid copying over an entire frame to align, we allocate a new
1530  * mbuf and copy ethernet header to the new mbuf. The new mbuf is
1531  * prepended into the existing mbuf chain.
1532  */
1533 static __inline struct mbuf *
1534 stge_fixup_rx(struct stge_softc *sc, struct mbuf *m)
1535 {
1536         struct mbuf *n;
1537
1538         n = NULL;
1539         if (m->m_len <= (MCLBYTES - ETHER_HDR_LEN)) {
1540                 bcopy(m->m_data, m->m_data + ETHER_HDR_LEN, m->m_len);
1541                 m->m_data += ETHER_HDR_LEN;
1542                 n = m;
1543         } else {
1544                 MGETHDR(n, MB_DONTWAIT, MT_DATA);
1545                 if (n != NULL) {
1546                         bcopy(m->m_data, n->m_data, ETHER_HDR_LEN);
1547                         m->m_data += ETHER_HDR_LEN;
1548                         m->m_len -= ETHER_HDR_LEN;
1549                         n->m_len = ETHER_HDR_LEN;
1550                         M_MOVE_PKTHDR(n, m);
1551                         n->m_next = m;
1552                 } else
1553                         m_freem(m);
1554         }
1555
1556         return (n);
1557 }
1558 #endif
1559
1560 /*
1561  * stge_rxeof:
1562  *
1563  *      Helper; handle receive interrupts.
1564  */
1565 static void
1566 stge_rxeof(struct stge_softc *sc, int count)
1567 {
1568         struct ifnet *ifp = &sc->arpcom.ac_if;
1569         struct stge_rxdesc *rxd;
1570         struct mbuf *mp, *m;
1571         uint64_t status64;
1572         uint32_t status;
1573         int cons, prog;
1574
1575         prog = 0;
1576         for (cons = sc->sc_cdata.stge_rx_cons; prog < STGE_RX_RING_CNT;
1577             prog++, cons = (cons + 1) % STGE_RX_RING_CNT) {
1578 #ifdef IFPOLL_ENABLE
1579                 if (count >= 0 && count-- == 0)
1580                         break;
1581 #endif
1582
1583                 status64 = le64toh(sc->sc_rdata.stge_rx_ring[cons].rfd_status);
1584                 status = RFD_RxStatus(status64);
1585                 if ((status & RFD_RFDDone) == 0)
1586                         break;
1587
1588                 prog++;
1589                 rxd = &sc->sc_cdata.stge_rxdesc[cons];
1590                 mp = rxd->rx_m;
1591
1592                 /*
1593                  * If the packet had an error, drop it.  Note we count
1594                  * the error later in the periodic stats update.
1595                  */
1596                 if ((status & RFD_FrameEnd) != 0 && (status &
1597                     (RFD_RxFIFOOverrun | RFD_RxRuntFrame |
1598                     RFD_RxAlignmentError | RFD_RxFCSError |
1599                     RFD_RxLengthError)) != 0) {
1600                         stge_discard_rxbuf(sc, cons);
1601                         if (sc->sc_cdata.stge_rxhead != NULL) {
1602                                 m_freem(sc->sc_cdata.stge_rxhead);
1603                                 STGE_RXCHAIN_RESET(sc);
1604                         }
1605                         continue;
1606                 }
1607                 /*
1608                  * Add a new receive buffer to the ring.
1609                  */
1610                 if (stge_newbuf(sc, cons, 0) != 0) {
1611                         ifp->if_iqdrops++;
1612                         stge_discard_rxbuf(sc, cons);
1613                         if (sc->sc_cdata.stge_rxhead != NULL) {
1614                                 m_freem(sc->sc_cdata.stge_rxhead);
1615                                 STGE_RXCHAIN_RESET(sc);
1616                         }
1617                         continue;
1618                 }
1619
1620                 if ((status & RFD_FrameEnd) != 0)
1621                         mp->m_len = RFD_RxDMAFrameLen(status) -
1622                             sc->sc_cdata.stge_rxlen;
1623                 sc->sc_cdata.stge_rxlen += mp->m_len;
1624
1625                 /* Chain mbufs. */
1626                 if (sc->sc_cdata.stge_rxhead == NULL) {
1627                         sc->sc_cdata.stge_rxhead = mp;
1628                         sc->sc_cdata.stge_rxtail = mp;
1629                 } else {
1630                         mp->m_flags &= ~M_PKTHDR;
1631                         sc->sc_cdata.stge_rxtail->m_next = mp;
1632                         sc->sc_cdata.stge_rxtail = mp;
1633                 }
1634
1635                 if ((status & RFD_FrameEnd) != 0) {
1636                         m = sc->sc_cdata.stge_rxhead;
1637                         m->m_pkthdr.rcvif = ifp;
1638                         m->m_pkthdr.len = sc->sc_cdata.stge_rxlen;
1639
1640                         if (m->m_pkthdr.len > sc->sc_if_framesize) {
1641                                 m_freem(m);
1642                                 STGE_RXCHAIN_RESET(sc);
1643                                 continue;
1644                         }
1645                         /*
1646                          * Set the incoming checksum information for
1647                          * the packet.
1648                          */
1649                         if ((ifp->if_capenable & IFCAP_RXCSUM) != 0) {
1650                                 if ((status & RFD_IPDetected) != 0) {
1651                                         m->m_pkthdr.csum_flags |=
1652                                                 CSUM_IP_CHECKED;
1653                                         if ((status & RFD_IPError) == 0)
1654                                                 m->m_pkthdr.csum_flags |=
1655                                                     CSUM_IP_VALID;
1656                                 }
1657                                 if (((status & RFD_TCPDetected) != 0 &&
1658                                     (status & RFD_TCPError) == 0) ||
1659                                     ((status & RFD_UDPDetected) != 0 &&
1660                                     (status & RFD_UDPError) == 0)) {
1661                                         m->m_pkthdr.csum_flags |=
1662                                             (CSUM_DATA_VALID |
1663                                              CSUM_PSEUDO_HDR |
1664                                              CSUM_FRAG_NOT_CHECKED);
1665                                         m->m_pkthdr.csum_data = 0xffff;
1666                                 }
1667                         }
1668
1669 #ifndef __i386__
1670                         if (sc->sc_if_framesize > (MCLBYTES - ETHER_ALIGN)) {
1671                                 if ((m = stge_fixup_rx(sc, m)) == NULL) {
1672                                         STGE_RXCHAIN_RESET(sc);
1673                                         continue;
1674                                 }
1675                         }
1676 #endif
1677
1678                         /* Check for VLAN tagged packets. */
1679                         if ((status & RFD_VLANDetected) != 0 &&
1680                             (ifp->if_capenable & IFCAP_VLAN_HWTAGGING) != 0) {
1681                                 m->m_flags |= M_VLANTAG;
1682                                 m->m_pkthdr.ether_vlantag = RFD_TCI(status64);
1683                         }
1684                         /* Pass it on. */
1685                         ifp->if_input(ifp, m);
1686
1687                         STGE_RXCHAIN_RESET(sc);
1688                 }
1689         }
1690
1691         if (prog > 0) {
1692                 /* Update the consumer index. */
1693                 sc->sc_cdata.stge_rx_cons = cons;
1694         }
1695 }
1696
1697 #ifdef IFPOLL_ENABLE
1698
1699 static void
1700 stge_npoll_compat(struct ifnet *ifp, void *arg __unused, int count)
1701 {
1702         struct stge_softc *sc = ifp->if_softc;
1703
1704         ASSERT_SERIALIZED(ifp->if_serializer);
1705
1706         if (sc->sc_npoll.ifpc_stcount-- == 0) {
1707                 uint16_t status;
1708
1709                 sc->sc_npoll.ifpc_stcount = sc->sc_npoll.ifpc_stfrac;
1710
1711                 status = CSR_READ_2(sc, STGE_IntStatus);
1712                 status &= sc->sc_IntEnable;
1713                 if (status != 0) {
1714                         if (status & IS_HostError) {
1715                                 device_printf(sc->sc_dev,
1716                                 "Host interface error, "
1717                                 "resetting...\n");
1718                                 stge_init(sc);
1719                         }
1720                         if ((status & IS_TxComplete) != 0 &&
1721                             stge_tx_error(sc) != 0)
1722                                 stge_init(sc);
1723                 }
1724         }
1725
1726         stge_rxeof(sc, count);
1727         stge_txeof(sc);
1728
1729         if (!ifq_is_empty(&ifp->if_snd))
1730                 if_devstart(ifp);
1731 }
1732
1733 static void
1734 stge_npoll(struct ifnet *ifp, struct ifpoll_info *info)
1735 {
1736         struct stge_softc *sc = ifp->if_softc;
1737
1738         ASSERT_SERIALIZED(ifp->if_serializer);
1739
1740         if (info != NULL) {
1741                 int cpuid = sc->sc_npoll.ifpc_cpuid;
1742
1743                 info->ifpi_rx[cpuid].poll_func = stge_npoll_compat;
1744                 info->ifpi_rx[cpuid].arg = NULL;
1745                 info->ifpi_rx[cpuid].serializer = ifp->if_serializer;
1746
1747                 if (ifp->if_flags & IFF_RUNNING) {
1748                         CSR_WRITE_2(sc, STGE_IntEnable, 0);
1749                         sc->sc_npoll.ifpc_stcount = 0;
1750                 }
1751                 ifq_set_cpuid(&ifp->if_snd, cpuid);
1752         } else {
1753                 if (ifp->if_flags & IFF_RUNNING)
1754                         CSR_WRITE_2(sc, STGE_IntEnable, sc->sc_IntEnable);
1755                 ifq_set_cpuid(&ifp->if_snd, rman_get_cpuid(sc->sc_irq));
1756         }
1757 }
1758
1759 #endif  /* IFPOLL_ENABLE */
1760
1761 /*
1762  * stge_tick:
1763  *
1764  *      One second timer, used to tick the MII.
1765  */
1766 static void
1767 stge_tick(void *arg)
1768 {
1769         struct stge_softc *sc = arg;
1770         struct ifnet *ifp = &sc->arpcom.ac_if;
1771         struct mii_data *mii;
1772
1773         lwkt_serialize_enter(ifp->if_serializer);
1774
1775         mii = device_get_softc(sc->sc_miibus);
1776         mii_tick(mii);
1777
1778         /* Update statistics counters. */
1779         stge_stats_update(sc);
1780
1781         /*
1782          * Relcaim any pending Tx descriptors to release mbufs in a
1783          * timely manner as we don't generate Tx completion interrupts
1784          * for every frame. This limits the delay to a maximum of one
1785          * second.
1786          */
1787         if (sc->sc_cdata.stge_tx_cnt != 0)
1788                 stge_txeof(sc);
1789
1790         callout_reset(&sc->sc_tick_ch, hz, stge_tick, sc);
1791
1792         lwkt_serialize_exit(ifp->if_serializer);
1793 }
1794
1795 /*
1796  * stge_stats_update:
1797  *
1798  *      Read the TC9021 statistics counters.
1799  */
1800 static void
1801 stge_stats_update(struct stge_softc *sc)
1802 {
1803         struct ifnet *ifp = &sc->arpcom.ac_if;
1804
1805         CSR_READ_4(sc,STGE_OctetRcvOk);
1806
1807         ifp->if_ipackets += CSR_READ_4(sc, STGE_FramesRcvdOk);
1808
1809         ifp->if_ierrors += CSR_READ_2(sc, STGE_FramesLostRxErrors);
1810
1811         CSR_READ_4(sc, STGE_OctetXmtdOk);
1812
1813         ifp->if_opackets += CSR_READ_4(sc, STGE_FramesXmtdOk);
1814
1815         ifp->if_collisions +=
1816             CSR_READ_4(sc, STGE_LateCollisions) +
1817             CSR_READ_4(sc, STGE_MultiColFrames) +
1818             CSR_READ_4(sc, STGE_SingleColFrames);
1819
1820         ifp->if_oerrors +=
1821             CSR_READ_2(sc, STGE_FramesAbortXSColls) +
1822             CSR_READ_2(sc, STGE_FramesWEXDeferal);
1823 }
1824
1825 /*
1826  * stge_reset:
1827  *
1828  *      Perform a soft reset on the TC9021.
1829  */
1830 static void
1831 stge_reset(struct stge_softc *sc, uint32_t how)
1832 {
1833         uint32_t ac;
1834         uint8_t v;
1835         int i, dv;
1836
1837         dv = 5000;
1838         ac = CSR_READ_4(sc, STGE_AsicCtrl);
1839         switch (how) {
1840         case STGE_RESET_TX:
1841                 ac |= AC_TxReset | AC_FIFO;
1842                 dv = 100;
1843                 break;
1844         case STGE_RESET_RX:
1845                 ac |= AC_RxReset | AC_FIFO;
1846                 dv = 100;
1847                 break;
1848         case STGE_RESET_FULL:
1849         default:
1850                 /*
1851                  * Only assert RstOut if we're fiber.  We need GMII clocks
1852                  * to be present in order for the reset to complete on fiber
1853                  * cards.
1854                  */
1855                 ac |= AC_GlobalReset | AC_RxReset | AC_TxReset |
1856                     AC_DMA | AC_FIFO | AC_Network | AC_Host | AC_AutoInit |
1857                     (sc->sc_usefiber ? AC_RstOut : 0);
1858                 break;
1859         }
1860
1861         CSR_WRITE_4(sc, STGE_AsicCtrl, ac);
1862
1863         /* Account for reset problem at 10Mbps. */
1864         DELAY(dv);
1865
1866         for (i = 0; i < STGE_TIMEOUT; i++) {
1867                 if ((CSR_READ_4(sc, STGE_AsicCtrl) & AC_ResetBusy) == 0)
1868                         break;
1869                 DELAY(dv);
1870         }
1871
1872         if (i == STGE_TIMEOUT)
1873                 device_printf(sc->sc_dev, "reset failed to complete\n");
1874
1875         /* Set LED, from Linux IPG driver. */
1876         ac = CSR_READ_4(sc, STGE_AsicCtrl);
1877         ac &= ~(AC_LEDMode | AC_LEDSpeed | AC_LEDModeBit1);
1878         if ((sc->sc_led & 0x01) != 0)
1879                 ac |= AC_LEDMode;
1880         if ((sc->sc_led & 0x03) != 0)
1881                 ac |= AC_LEDModeBit1;
1882         if ((sc->sc_led & 0x08) != 0)
1883                 ac |= AC_LEDSpeed;
1884         CSR_WRITE_4(sc, STGE_AsicCtrl, ac);
1885
1886         /* Set PHY, from Linux IPG driver */
1887         v = CSR_READ_1(sc, STGE_PhySet);
1888         v &= ~(PS_MemLenb9b | PS_MemLen | PS_NonCompdet);
1889         v |= ((sc->sc_led & 0x70) >> 4);
1890         CSR_WRITE_1(sc, STGE_PhySet, v);
1891 }
1892
1893 /*
1894  * stge_init:           [ ifnet interface function ]
1895  *
1896  *      Initialize the interface.
1897  */
1898 static void
1899 stge_init(void *xsc)
1900 {
1901         struct stge_softc *sc = xsc;
1902         struct ifnet *ifp = &sc->arpcom.ac_if;
1903         struct mii_data *mii;
1904         uint16_t eaddr[3];
1905         uint32_t v;
1906         int error;
1907
1908         ASSERT_SERIALIZED(ifp->if_serializer);
1909
1910         mii = device_get_softc(sc->sc_miibus);
1911
1912         /*
1913          * Cancel any pending I/O.
1914          */
1915         stge_stop(sc);
1916
1917         /* Init descriptors. */
1918         error = stge_init_rx_ring(sc);
1919         if (error != 0) {
1920                 device_printf(sc->sc_dev,
1921                     "initialization failed: no memory for rx buffers\n");
1922                 stge_stop(sc);
1923                 goto out;
1924         }
1925         stge_init_tx_ring(sc);
1926
1927         /* Set the station address. */
1928         bcopy(IF_LLADDR(ifp), eaddr, ETHER_ADDR_LEN);
1929         CSR_WRITE_2(sc, STGE_StationAddress0, htole16(eaddr[0]));
1930         CSR_WRITE_2(sc, STGE_StationAddress1, htole16(eaddr[1]));
1931         CSR_WRITE_2(sc, STGE_StationAddress2, htole16(eaddr[2]));
1932
1933         /*
1934          * Set the statistics masks.  Disable all the RMON stats,
1935          * and disable selected stats in the non-RMON stats registers.
1936          */
1937         CSR_WRITE_4(sc, STGE_RMONStatisticsMask, 0xffffffff);
1938         CSR_WRITE_4(sc, STGE_StatisticsMask,
1939             (1U << 1) | (1U << 2) | (1U << 3) | (1U << 4) | (1U << 5) |
1940             (1U << 6) | (1U << 7) | (1U << 8) | (1U << 9) | (1U << 10) |
1941             (1U << 13) | (1U << 14) | (1U << 15) | (1U << 19) | (1U << 20) |
1942             (1U << 21));
1943
1944         /* Set up the receive filter. */
1945         stge_set_filter(sc);
1946         /* Program multicast filter. */
1947         stge_set_multi(sc);
1948
1949         /*
1950          * Give the transmit and receive ring to the chip.
1951          */
1952         CSR_WRITE_4(sc, STGE_TFDListPtrHi,
1953             STGE_ADDR_HI(STGE_TX_RING_ADDR(sc, 0)));
1954         CSR_WRITE_4(sc, STGE_TFDListPtrLo,
1955             STGE_ADDR_LO(STGE_TX_RING_ADDR(sc, 0)));
1956
1957         CSR_WRITE_4(sc, STGE_RFDListPtrHi,
1958             STGE_ADDR_HI(STGE_RX_RING_ADDR(sc, 0)));
1959         CSR_WRITE_4(sc, STGE_RFDListPtrLo,
1960             STGE_ADDR_LO(STGE_RX_RING_ADDR(sc, 0)));
1961
1962         /*
1963          * Initialize the Tx auto-poll period.  It's OK to make this number
1964          * large (255 is the max, but we use 127) -- we explicitly kick the
1965          * transmit engine when there's actually a packet.
1966          */
1967         CSR_WRITE_1(sc, STGE_TxDMAPollPeriod, 127);
1968
1969         /* ..and the Rx auto-poll period. */
1970         CSR_WRITE_1(sc, STGE_RxDMAPollPeriod, 1);
1971
1972         /* Initialize the Tx start threshold. */
1973         CSR_WRITE_2(sc, STGE_TxStartThresh, sc->sc_txthresh);
1974
1975         /* Rx DMA thresholds, from Linux */
1976         CSR_WRITE_1(sc, STGE_RxDMABurstThresh, 0x30);
1977         CSR_WRITE_1(sc, STGE_RxDMAUrgentThresh, 0x30);
1978
1979         /* Rx early threhold, from Linux */
1980         CSR_WRITE_2(sc, STGE_RxEarlyThresh, 0x7ff);
1981
1982         /* Tx DMA thresholds, from Linux */
1983         CSR_WRITE_1(sc, STGE_TxDMABurstThresh, 0x30);
1984         CSR_WRITE_1(sc, STGE_TxDMAUrgentThresh, 0x04);
1985
1986         /*
1987          * Initialize the Rx DMA interrupt control register.  We
1988          * request an interrupt after every incoming packet, but
1989          * defer it for sc_rxint_dmawait us. When the number of
1990          * interrupts pending reaches STGE_RXINT_NFRAME, we stop
1991          * deferring the interrupt, and signal it immediately.
1992          */
1993         CSR_WRITE_4(sc, STGE_RxDMAIntCtrl,
1994             RDIC_RxFrameCount(sc->sc_rxint_nframe) |
1995             RDIC_RxDMAWaitTime(STGE_RXINT_USECS2TICK(sc->sc_rxint_dmawait)));
1996
1997         /*
1998          * Initialize the interrupt mask.
1999          */
2000         sc->sc_IntEnable = IS_HostError | IS_TxComplete |
2001             IS_TxDMAComplete | IS_RxDMAComplete | IS_RFDListEnd;
2002 #ifdef IFPOLL_ENABLE
2003         /* Disable interrupts if we are polling. */
2004         if (ifp->if_flags & IFF_NPOLLING) {
2005                 CSR_WRITE_2(sc, STGE_IntEnable, 0);
2006                 sc->sc_npoll.ifpc_stcount = 0;
2007         } else
2008 #endif
2009         CSR_WRITE_2(sc, STGE_IntEnable, sc->sc_IntEnable);
2010
2011         /*
2012          * Configure the DMA engine.
2013          * XXX Should auto-tune TxBurstLimit.
2014          */
2015         CSR_WRITE_4(sc, STGE_DMACtrl, sc->sc_DMACtrl | DMAC_TxBurstLimit(3));
2016
2017         /*
2018          * Send a PAUSE frame when we reach 29,696 bytes in the Rx
2019          * FIFO, and send an un-PAUSE frame when we reach 3056 bytes
2020          * in the Rx FIFO.
2021          */
2022         CSR_WRITE_2(sc, STGE_FlowOnTresh, 29696 / 16);
2023         CSR_WRITE_2(sc, STGE_FlowOffThresh, 3056 / 16);
2024
2025         /*
2026          * Set the maximum frame size.
2027          */
2028         sc->sc_if_framesize = ifp->if_mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
2029         CSR_WRITE_2(sc, STGE_MaxFrameSize, sc->sc_if_framesize);
2030
2031         /*
2032          * Initialize MacCtrl -- do it before setting the media,
2033          * as setting the media will actually program the register.
2034          *
2035          * Note: We have to poke the IFS value before poking
2036          * anything else.
2037          */
2038         /* Tx/Rx MAC should be disabled before programming IFS.*/
2039         CSR_WRITE_4(sc, STGE_MACCtrl, MC_IFSSelect(MC_IFS96bit));
2040
2041         stge_vlan_setup(sc);
2042
2043         if (sc->sc_rev >= 6) {          /* >= B.2 */
2044                 /* Multi-frag frame bug work-around. */
2045                 CSR_WRITE_2(sc, STGE_DebugCtrl,
2046                     CSR_READ_2(sc, STGE_DebugCtrl) | 0x0200);
2047
2048                 /* Tx Poll Now bug work-around. */
2049                 CSR_WRITE_2(sc, STGE_DebugCtrl,
2050                     CSR_READ_2(sc, STGE_DebugCtrl) | 0x0010);
2051                 /* Tx Poll Now bug work-around. */
2052                 CSR_WRITE_2(sc, STGE_DebugCtrl,
2053                     CSR_READ_2(sc, STGE_DebugCtrl) | 0x0020);
2054         }
2055
2056         v = CSR_READ_4(sc, STGE_MACCtrl) & MC_MASK;
2057         v |= MC_StatisticsEnable | MC_TxEnable | MC_RxEnable;
2058         CSR_WRITE_4(sc, STGE_MACCtrl, v);
2059         /*
2060          * It seems that transmitting frames without checking the state of
2061          * Rx/Tx MAC wedge the hardware.
2062          */
2063         stge_start_tx(sc);
2064         stge_start_rx(sc);
2065
2066         /*
2067          * Set the current media.
2068          */
2069         mii_mediachg(mii);
2070
2071         /*
2072          * Start the one second MII clock.
2073          */
2074         callout_reset(&sc->sc_tick_ch, hz, stge_tick, sc);
2075
2076         /*
2077          * ...all done!
2078          */
2079         ifp->if_flags |= IFF_RUNNING;
2080         ifq_clr_oactive(&ifp->if_snd);
2081
2082  out:
2083         if (error != 0)
2084                 device_printf(sc->sc_dev, "interface not running\n");
2085 }
2086
2087 static void
2088 stge_vlan_setup(struct stge_softc *sc)
2089 {
2090         struct ifnet *ifp = &sc->arpcom.ac_if;
2091         uint32_t v;
2092
2093         /*
2094          * The NIC always copy a VLAN tag regardless of STGE_MACCtrl
2095          * MC_AutoVLANuntagging bit.
2096          * MC_AutoVLANtagging bit selects which VLAN source to use
2097          * between STGE_VLANTag and TFC. However TFC TFD_VLANTagInsert
2098          * bit has priority over MC_AutoVLANtagging bit. So we always
2099          * use TFC instead of STGE_VLANTag register.
2100          */
2101         v = CSR_READ_4(sc, STGE_MACCtrl) & MC_MASK;
2102         if ((ifp->if_capenable & IFCAP_VLAN_HWTAGGING) != 0)
2103                 v |= MC_AutoVLANuntagging;
2104         else
2105                 v &= ~MC_AutoVLANuntagging;
2106         CSR_WRITE_4(sc, STGE_MACCtrl, v);
2107 }
2108
2109 /*
2110  *      Stop transmission on the interface.
2111  */
2112 static void
2113 stge_stop(struct stge_softc *sc)
2114 {
2115         struct ifnet *ifp = &sc->arpcom.ac_if;
2116         struct stge_txdesc *txd;
2117         struct stge_rxdesc *rxd;
2118         uint32_t v;
2119         int i;
2120
2121         ASSERT_SERIALIZED(ifp->if_serializer);
2122
2123         /*
2124          * Stop the one second clock.
2125          */
2126         callout_stop(&sc->sc_tick_ch);
2127
2128         /*
2129          * Reset the chip to a known state.
2130          */
2131         stge_reset(sc, STGE_RESET_FULL);
2132
2133         /*
2134          * Disable interrupts.
2135          */
2136         CSR_WRITE_2(sc, STGE_IntEnable, 0);
2137
2138         /*
2139          * Stop receiver, transmitter, and stats update.
2140          */
2141         stge_stop_rx(sc);
2142         stge_stop_tx(sc);
2143         v = CSR_READ_4(sc, STGE_MACCtrl) & MC_MASK;
2144         v |= MC_StatisticsDisable;
2145         CSR_WRITE_4(sc, STGE_MACCtrl, v);
2146
2147         /*
2148          * Stop the transmit and receive DMA.
2149          */
2150         stge_dma_wait(sc);
2151         CSR_WRITE_4(sc, STGE_TFDListPtrHi, 0);
2152         CSR_WRITE_4(sc, STGE_TFDListPtrLo, 0);
2153         CSR_WRITE_4(sc, STGE_RFDListPtrHi, 0);
2154         CSR_WRITE_4(sc, STGE_RFDListPtrLo, 0);
2155
2156         /*
2157          * Free RX and TX mbufs still in the queues.
2158          */
2159         for (i = 0; i < STGE_RX_RING_CNT; i++) {
2160                 rxd = &sc->sc_cdata.stge_rxdesc[i];
2161                 if (rxd->rx_m != NULL) {
2162                         bus_dmamap_unload(sc->sc_cdata.stge_rx_tag,
2163                             rxd->rx_dmamap);
2164                         m_freem(rxd->rx_m);
2165                         rxd->rx_m = NULL;
2166                 }
2167         }
2168         for (i = 0; i < STGE_TX_RING_CNT; i++) {
2169                 txd = &sc->sc_cdata.stge_txdesc[i];
2170                 if (txd->tx_m != NULL) {
2171                         bus_dmamap_unload(sc->sc_cdata.stge_tx_tag,
2172                             txd->tx_dmamap);
2173                         m_freem(txd->tx_m);
2174                         txd->tx_m = NULL;
2175                 }
2176         }
2177
2178         /*
2179          * Mark the interface down and cancel the watchdog timer.
2180          */
2181         ifp->if_flags &= ~IFF_RUNNING;
2182         ifq_clr_oactive(&ifp->if_snd);
2183         ifp->if_timer = 0;
2184 }
2185
2186 static void
2187 stge_start_tx(struct stge_softc *sc)
2188 {
2189         uint32_t v;
2190         int i;
2191
2192         v = CSR_READ_4(sc, STGE_MACCtrl) & MC_MASK;
2193         if ((v & MC_TxEnabled) != 0)
2194                 return;
2195         v |= MC_TxEnable;
2196         CSR_WRITE_4(sc, STGE_MACCtrl, v);
2197         CSR_WRITE_1(sc, STGE_TxDMAPollPeriod, 127);
2198         for (i = STGE_TIMEOUT; i > 0; i--) {
2199                 DELAY(10);
2200                 v = CSR_READ_4(sc, STGE_MACCtrl) & MC_MASK;
2201                 if ((v & MC_TxEnabled) != 0)
2202                         break;
2203         }
2204         if (i == 0)
2205                 device_printf(sc->sc_dev, "Starting Tx MAC timed out\n");
2206 }
2207
2208 static void
2209 stge_start_rx(struct stge_softc *sc)
2210 {
2211         uint32_t v;
2212         int i;
2213
2214         v = CSR_READ_4(sc, STGE_MACCtrl) & MC_MASK;
2215         if ((v & MC_RxEnabled) != 0)
2216                 return;
2217         v |= MC_RxEnable;
2218         CSR_WRITE_4(sc, STGE_MACCtrl, v);
2219         CSR_WRITE_1(sc, STGE_RxDMAPollPeriod, 1);
2220         for (i = STGE_TIMEOUT; i > 0; i--) {
2221                 DELAY(10);
2222                 v = CSR_READ_4(sc, STGE_MACCtrl) & MC_MASK;
2223                 if ((v & MC_RxEnabled) != 0)
2224                         break;
2225         }
2226         if (i == 0)
2227                 device_printf(sc->sc_dev, "Starting Rx MAC timed out\n");
2228 }
2229
2230 static void
2231 stge_stop_tx(struct stge_softc *sc)
2232 {
2233         uint32_t v;
2234         int i;
2235
2236         v = CSR_READ_4(sc, STGE_MACCtrl) & MC_MASK;
2237         if ((v & MC_TxEnabled) == 0)
2238                 return;
2239         v |= MC_TxDisable;
2240         CSR_WRITE_4(sc, STGE_MACCtrl, v);
2241         for (i = STGE_TIMEOUT; i > 0; i--) {
2242                 DELAY(10);
2243                 v = CSR_READ_4(sc, STGE_MACCtrl) & MC_MASK;
2244                 if ((v & MC_TxEnabled) == 0)
2245                         break;
2246         }
2247         if (i == 0)
2248                 device_printf(sc->sc_dev, "Stopping Tx MAC timed out\n");
2249 }
2250
2251 static void
2252 stge_stop_rx(struct stge_softc *sc)
2253 {
2254         uint32_t v;
2255         int i;
2256
2257         v = CSR_READ_4(sc, STGE_MACCtrl) & MC_MASK;
2258         if ((v & MC_RxEnabled) == 0)
2259                 return;
2260         v |= MC_RxDisable;
2261         CSR_WRITE_4(sc, STGE_MACCtrl, v);
2262         for (i = STGE_TIMEOUT; i > 0; i--) {
2263                 DELAY(10);
2264                 v = CSR_READ_4(sc, STGE_MACCtrl) & MC_MASK;
2265                 if ((v & MC_RxEnabled) == 0)
2266                         break;
2267         }
2268         if (i == 0)
2269                 device_printf(sc->sc_dev, "Stopping Rx MAC timed out\n");
2270 }
2271
2272 static void
2273 stge_init_tx_ring(struct stge_softc *sc)
2274 {
2275         struct stge_ring_data *rd;
2276         struct stge_txdesc *txd;
2277         bus_addr_t addr;
2278         int i;
2279
2280         STAILQ_INIT(&sc->sc_cdata.stge_txfreeq);
2281         STAILQ_INIT(&sc->sc_cdata.stge_txbusyq);
2282
2283         sc->sc_cdata.stge_tx_prod = 0;
2284         sc->sc_cdata.stge_tx_cons = 0;
2285         sc->sc_cdata.stge_tx_cnt = 0;
2286
2287         rd = &sc->sc_rdata;
2288         bzero(rd->stge_tx_ring, STGE_TX_RING_SZ);
2289         for (i = 0; i < STGE_TX_RING_CNT; i++) {
2290                 if (i == (STGE_TX_RING_CNT - 1))
2291                         addr = STGE_TX_RING_ADDR(sc, 0);
2292                 else
2293                         addr = STGE_TX_RING_ADDR(sc, i + 1);
2294                 rd->stge_tx_ring[i].tfd_next = htole64(addr);
2295                 rd->stge_tx_ring[i].tfd_control = htole64(TFD_TFDDone);
2296                 txd = &sc->sc_cdata.stge_txdesc[i];
2297                 STAILQ_INSERT_TAIL(&sc->sc_cdata.stge_txfreeq, txd, tx_q);
2298         }
2299 }
2300
2301 static int
2302 stge_init_rx_ring(struct stge_softc *sc)
2303 {
2304         struct stge_ring_data *rd;
2305         bus_addr_t addr;
2306         int i;
2307
2308         sc->sc_cdata.stge_rx_cons = 0;
2309         STGE_RXCHAIN_RESET(sc);
2310
2311         rd = &sc->sc_rdata;
2312         bzero(rd->stge_rx_ring, STGE_RX_RING_SZ);
2313         for (i = 0; i < STGE_RX_RING_CNT; i++) {
2314                 if (stge_newbuf(sc, i, 1) != 0)
2315                         return (ENOBUFS);
2316                 if (i == (STGE_RX_RING_CNT - 1))
2317                         addr = STGE_RX_RING_ADDR(sc, 0);
2318                 else
2319                         addr = STGE_RX_RING_ADDR(sc, i + 1);
2320                 rd->stge_rx_ring[i].rfd_next = htole64(addr);
2321                 rd->stge_rx_ring[i].rfd_status = 0;
2322         }
2323         return (0);
2324 }
2325
2326 /*
2327  * stge_newbuf:
2328  *
2329  *      Add a receive buffer to the indicated descriptor.
2330  */
2331 static int
2332 stge_newbuf(struct stge_softc *sc, int idx, int waitok)
2333 {
2334         struct stge_rxdesc *rxd;
2335         struct stge_rfd *rfd;
2336         struct mbuf *m;
2337         bus_dma_segment_t seg;
2338         bus_dmamap_t map;
2339         int error, nseg;
2340
2341         m = m_getcl(waitok ? MB_WAIT : MB_DONTWAIT, MT_DATA, M_PKTHDR);
2342         if (m == NULL)
2343                 return ENOBUFS;
2344         m->m_len = m->m_pkthdr.len = MCLBYTES;
2345
2346         /*
2347          * The hardware requires 4bytes aligned DMA address when JUMBO
2348          * frame is used.
2349          */
2350         if (sc->sc_if_framesize <= (MCLBYTES - ETHER_ALIGN))
2351                 m_adj(m, ETHER_ALIGN);
2352
2353         error = bus_dmamap_load_mbuf_segment(sc->sc_cdata.stge_rx_tag,
2354                         sc->sc_cdata.stge_rx_sparemap, m,
2355                         &seg, 1, &nseg, BUS_DMA_NOWAIT);
2356         if (error) {
2357                 m_freem(m);
2358                 return error;
2359         }
2360
2361         rxd = &sc->sc_cdata.stge_rxdesc[idx];
2362         if (rxd->rx_m != NULL) {
2363                 bus_dmamap_sync(sc->sc_cdata.stge_rx_tag, rxd->rx_dmamap,
2364                     BUS_DMASYNC_POSTREAD);
2365                 bus_dmamap_unload(sc->sc_cdata.stge_rx_tag, rxd->rx_dmamap);
2366         }
2367
2368         map = rxd->rx_dmamap;
2369         rxd->rx_dmamap = sc->sc_cdata.stge_rx_sparemap;
2370         sc->sc_cdata.stge_rx_sparemap = map;
2371
2372         rxd->rx_m = m;
2373
2374         rfd = &sc->sc_rdata.stge_rx_ring[idx];
2375         rfd->rfd_frag.frag_word0 =
2376             htole64(FRAG_ADDR(seg.ds_addr) | FRAG_LEN(seg.ds_len));
2377         rfd->rfd_status = 0;
2378
2379         return 0;
2380 }
2381
2382 /*
2383  * stge_set_filter:
2384  *
2385  *      Set up the receive filter.
2386  */
2387 static void
2388 stge_set_filter(struct stge_softc *sc)
2389 {
2390         struct ifnet *ifp = &sc->arpcom.ac_if;
2391         uint16_t mode;
2392
2393         mode = CSR_READ_2(sc, STGE_ReceiveMode);
2394         mode |= RM_ReceiveUnicast;
2395         if ((ifp->if_flags & IFF_BROADCAST) != 0)
2396                 mode |= RM_ReceiveBroadcast;
2397         else
2398                 mode &= ~RM_ReceiveBroadcast;
2399         if ((ifp->if_flags & IFF_PROMISC) != 0)
2400                 mode |= RM_ReceiveAllFrames;
2401         else
2402                 mode &= ~RM_ReceiveAllFrames;
2403
2404         CSR_WRITE_2(sc, STGE_ReceiveMode, mode);
2405 }
2406
2407 static void
2408 stge_set_multi(struct stge_softc *sc)
2409 {
2410         struct ifnet *ifp = &sc->arpcom.ac_if;
2411         struct ifmultiaddr *ifma;
2412         uint32_t crc;
2413         uint32_t mchash[2];
2414         uint16_t mode;
2415         int count;
2416
2417         mode = CSR_READ_2(sc, STGE_ReceiveMode);
2418         if ((ifp->if_flags & (IFF_PROMISC | IFF_ALLMULTI)) != 0) {
2419                 if ((ifp->if_flags & IFF_PROMISC) != 0)
2420                         mode |= RM_ReceiveAllFrames;
2421                 else if ((ifp->if_flags & IFF_ALLMULTI) != 0)
2422                         mode |= RM_ReceiveMulticast;
2423                 CSR_WRITE_2(sc, STGE_ReceiveMode, mode);
2424                 return;
2425         }
2426
2427         /* clear existing filters. */
2428         CSR_WRITE_4(sc, STGE_HashTable0, 0);
2429         CSR_WRITE_4(sc, STGE_HashTable1, 0);
2430
2431         /*
2432          * Set up the multicast address filter by passing all multicast
2433          * addresses through a CRC generator, and then using the low-order
2434          * 6 bits as an index into the 64 bit multicast hash table.  The
2435          * high order bits select the register, while the rest of the bits
2436          * select the bit within the register.
2437          */
2438
2439         bzero(mchash, sizeof(mchash));
2440
2441         count = 0;
2442         TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
2443                 if (ifma->ifma_addr->sa_family != AF_LINK)
2444                         continue;
2445                 crc = ether_crc32_be(LLADDR((struct sockaddr_dl *)
2446                     ifma->ifma_addr), ETHER_ADDR_LEN);
2447
2448                 /* Just want the 6 least significant bits. */
2449                 crc &= 0x3f;
2450
2451                 /* Set the corresponding bit in the hash table. */
2452                 mchash[crc >> 5] |= 1 << (crc & 0x1f);
2453                 count++;
2454         }
2455
2456         mode &= ~(RM_ReceiveMulticast | RM_ReceiveAllFrames);
2457         if (count > 0)
2458                 mode |= RM_ReceiveMulticastHash;
2459         else
2460                 mode &= ~RM_ReceiveMulticastHash;
2461
2462         CSR_WRITE_4(sc, STGE_HashTable0, mchash[0]);
2463         CSR_WRITE_4(sc, STGE_HashTable1, mchash[1]);
2464         CSR_WRITE_2(sc, STGE_ReceiveMode, mode);
2465 }
2466
2467 static int
2468 sysctl_hw_stge_rxint_nframe(SYSCTL_HANDLER_ARGS)
2469 {
2470         return (sysctl_int_range(oidp, arg1, arg2, req,
2471             STGE_RXINT_NFRAME_MIN, STGE_RXINT_NFRAME_MAX));
2472 }
2473
2474 static int
2475 sysctl_hw_stge_rxint_dmawait(SYSCTL_HANDLER_ARGS)
2476 {
2477         return (sysctl_int_range(oidp, arg1, arg2, req,
2478             STGE_RXINT_DMAWAIT_MIN, STGE_RXINT_DMAWAIT_MAX));
2479 }