jme: Change how IFCAP_RSS is handled
[dragonfly.git] / sys / dev / netif / jme / if_jme.c
1 /*-
2  * Copyright (c) 2008, Pyun YongHyeon <yongari@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice unmodified, this list of conditions, and the following
10  *    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  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  * $FreeBSD: src/sys/dev/jme/if_jme.c,v 1.2 2008/07/18 04:20:48 yongari Exp $
28  */
29
30 #include "opt_polling.h"
31 #include "opt_rss.h"
32 #include "opt_jme.h"
33
34 #include <sys/param.h>
35 #include <sys/endian.h>
36 #include <sys/kernel.h>
37 #include <sys/bus.h>
38 #include <sys/interrupt.h>
39 #include <sys/malloc.h>
40 #include <sys/proc.h>
41 #include <sys/rman.h>
42 #include <sys/serialize.h>
43 #include <sys/serialize2.h>
44 #include <sys/socket.h>
45 #include <sys/sockio.h>
46 #include <sys/sysctl.h>
47
48 #include <net/ethernet.h>
49 #include <net/if.h>
50 #include <net/bpf.h>
51 #include <net/if_arp.h>
52 #include <net/if_dl.h>
53 #include <net/if_media.h>
54 #include <net/ifq_var.h>
55 #include <net/toeplitz.h>
56 #include <net/toeplitz2.h>
57 #include <net/vlan/if_vlan_var.h>
58 #include <net/vlan/if_vlan_ether.h>
59
60 #include <netinet/in.h>
61
62 #include <dev/netif/mii_layer/miivar.h>
63 #include <dev/netif/mii_layer/jmphyreg.h>
64
65 #include <bus/pci/pcireg.h>
66 #include <bus/pci/pcivar.h>
67 #include <bus/pci/pcidevs.h>
68
69 #include <dev/netif/jme/if_jmereg.h>
70 #include <dev/netif/jme/if_jmevar.h>
71
72 #include "miibus_if.h"
73
74 /* Define the following to disable printing Rx errors. */
75 #undef  JME_SHOW_ERRORS
76
77 #define JME_CSUM_FEATURES       (CSUM_IP | CSUM_TCP | CSUM_UDP)
78
79 #ifdef JME_RSS_DEBUG
80 #define JME_RSS_DPRINTF(sc, lvl, fmt, ...) \
81 do { \
82         if ((sc)->jme_rss_debug >= (lvl)) \
83                 if_printf(&(sc)->arpcom.ac_if, fmt, __VA_ARGS__); \
84 } while (0)
85 #else   /* !JME_RSS_DEBUG */
86 #define JME_RSS_DPRINTF(sc, lvl, fmt, ...)      ((void)0)
87 #endif  /* JME_RSS_DEBUG */
88
89 static int      jme_probe(device_t);
90 static int      jme_attach(device_t);
91 static int      jme_detach(device_t);
92 static int      jme_shutdown(device_t);
93 static int      jme_suspend(device_t);
94 static int      jme_resume(device_t);
95
96 static int      jme_miibus_readreg(device_t, int, int);
97 static int      jme_miibus_writereg(device_t, int, int, int);
98 static void     jme_miibus_statchg(device_t);
99
100 static void     jme_init(void *);
101 static int      jme_ioctl(struct ifnet *, u_long, caddr_t, struct ucred *);
102 static void     jme_start(struct ifnet *);
103 static void     jme_watchdog(struct ifnet *);
104 static void     jme_mediastatus(struct ifnet *, struct ifmediareq *);
105 static int      jme_mediachange(struct ifnet *);
106 #ifdef DEVICE_POLLING
107 static void     jme_poll(struct ifnet *, enum poll_cmd, int);
108 #endif
109 static void     jme_serialize(struct ifnet *, enum ifnet_serialize);
110 static void     jme_deserialize(struct ifnet *, enum ifnet_serialize);
111 static int      jme_tryserialize(struct ifnet *, enum ifnet_serialize);
112 #ifdef INVARIANTS
113 static void     jme_serialize_assert(struct ifnet *, enum ifnet_serialize,
114                     boolean_t);
115 #endif
116
117 static void     jme_intr(void *);
118 static void     jme_msix_tx(void *);
119 static void     jme_msix_rx(void *);
120 static void     jme_txeof(struct jme_softc *);
121 static void     jme_rxeof(struct jme_softc *, int, int);
122 static void     jme_rx_intr(struct jme_softc *, uint32_t);
123
124 static int      jme_msix_setup(device_t);
125 static void     jme_msix_teardown(device_t, int);
126 static int      jme_intr_setup(device_t);
127 static void     jme_intr_teardown(device_t);
128 static void     jme_msix_try_alloc(device_t);
129 static void     jme_msix_free(device_t);
130 static int      jme_intr_alloc(device_t);
131 static void     jme_intr_free(device_t);
132 static int      jme_dma_alloc(struct jme_softc *);
133 static void     jme_dma_free(struct jme_softc *);
134 static int      jme_init_rx_ring(struct jme_softc *, int);
135 static void     jme_init_tx_ring(struct jme_softc *);
136 static void     jme_init_ssb(struct jme_softc *);
137 static int      jme_newbuf(struct jme_softc *, int, struct jme_rxdesc *, int);
138 static int      jme_encap(struct jme_softc *, struct mbuf **);
139 static void     jme_rxpkt(struct jme_softc *, int);
140 static int      jme_rxring_dma_alloc(struct jme_softc *, int);
141 static int      jme_rxbuf_dma_alloc(struct jme_softc *, int);
142
143 static void     jme_tick(void *);
144 static void     jme_stop(struct jme_softc *);
145 static void     jme_reset(struct jme_softc *);
146 static void     jme_set_msinum(struct jme_softc *);
147 static void     jme_set_vlan(struct jme_softc *);
148 static void     jme_set_filter(struct jme_softc *);
149 static void     jme_stop_tx(struct jme_softc *);
150 static void     jme_stop_rx(struct jme_softc *);
151 static void     jme_mac_config(struct jme_softc *);
152 static void     jme_reg_macaddr(struct jme_softc *, uint8_t[]);
153 static int      jme_eeprom_macaddr(struct jme_softc *, uint8_t[]);
154 static int      jme_eeprom_read_byte(struct jme_softc *, uint8_t, uint8_t *);
155 #ifdef notyet
156 static void     jme_setwol(struct jme_softc *);
157 static void     jme_setlinkspeed(struct jme_softc *);
158 #endif
159 static void     jme_set_tx_coal(struct jme_softc *);
160 static void     jme_set_rx_coal(struct jme_softc *);
161 static void     jme_enable_rss(struct jme_softc *);
162 static void     jme_disable_rss(struct jme_softc *);
163
164 static void     jme_sysctl_node(struct jme_softc *);
165 static int      jme_sysctl_tx_coal_to(SYSCTL_HANDLER_ARGS);
166 static int      jme_sysctl_tx_coal_pkt(SYSCTL_HANDLER_ARGS);
167 static int      jme_sysctl_rx_coal_to(SYSCTL_HANDLER_ARGS);
168 static int      jme_sysctl_rx_coal_pkt(SYSCTL_HANDLER_ARGS);
169
170 /*
171  * Devices supported by this driver.
172  */
173 static const struct jme_dev {
174         uint16_t        jme_vendorid;
175         uint16_t        jme_deviceid;
176         uint32_t        jme_caps;
177         const char      *jme_name;
178 } jme_devs[] = {
179         { PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMC250,
180             JME_CAP_JUMBO,
181             "JMicron Inc, JMC250 Gigabit Ethernet" },
182         { PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMC260,
183             JME_CAP_FASTETH,
184             "JMicron Inc, JMC260 Fast Ethernet" },
185         { 0, 0, 0, NULL }
186 };
187
188 static device_method_t jme_methods[] = {
189         /* Device interface. */
190         DEVMETHOD(device_probe,         jme_probe),
191         DEVMETHOD(device_attach,        jme_attach),
192         DEVMETHOD(device_detach,        jme_detach),
193         DEVMETHOD(device_shutdown,      jme_shutdown),
194         DEVMETHOD(device_suspend,       jme_suspend),
195         DEVMETHOD(device_resume,        jme_resume),
196
197         /* Bus interface. */
198         DEVMETHOD(bus_print_child,      bus_generic_print_child),
199         DEVMETHOD(bus_driver_added,     bus_generic_driver_added),
200
201         /* MII interface. */
202         DEVMETHOD(miibus_readreg,       jme_miibus_readreg),
203         DEVMETHOD(miibus_writereg,      jme_miibus_writereg),
204         DEVMETHOD(miibus_statchg,       jme_miibus_statchg),
205
206         { NULL, NULL }
207 };
208
209 static driver_t jme_driver = {
210         "jme",
211         jme_methods,
212         sizeof(struct jme_softc)
213 };
214
215 static devclass_t jme_devclass;
216
217 DECLARE_DUMMY_MODULE(if_jme);
218 MODULE_DEPEND(if_jme, miibus, 1, 1, 1);
219 DRIVER_MODULE(if_jme, pci, jme_driver, jme_devclass, NULL, NULL);
220 DRIVER_MODULE(miibus, jme, miibus_driver, miibus_devclass, NULL, NULL);
221
222 static const struct {
223         uint32_t        jme_coal;
224         uint32_t        jme_comp;
225         uint32_t        jme_empty;
226 } jme_rx_status[JME_NRXRING_MAX] = {
227         { INTR_RXQ0_COAL | INTR_RXQ0_COAL_TO, INTR_RXQ0_COMP,
228           INTR_RXQ0_DESC_EMPTY },
229         { INTR_RXQ1_COAL | INTR_RXQ1_COAL_TO, INTR_RXQ1_COMP,
230           INTR_RXQ1_DESC_EMPTY },
231         { INTR_RXQ2_COAL | INTR_RXQ2_COAL_TO, INTR_RXQ2_COMP,
232           INTR_RXQ2_DESC_EMPTY },
233         { INTR_RXQ3_COAL | INTR_RXQ3_COAL_TO, INTR_RXQ3_COMP,
234           INTR_RXQ3_DESC_EMPTY }
235 };
236
237 static int      jme_rx_desc_count = JME_RX_DESC_CNT_DEF;
238 static int      jme_tx_desc_count = JME_TX_DESC_CNT_DEF;
239 static int      jme_rx_ring_count = 0;
240 static int      jme_msi_enable = 1;
241 static int      jme_msix_enable = 1;
242
243 TUNABLE_INT("hw.jme.rx_desc_count", &jme_rx_desc_count);
244 TUNABLE_INT("hw.jme.tx_desc_count", &jme_tx_desc_count);
245 TUNABLE_INT("hw.jme.rx_ring_count", &jme_rx_ring_count);
246 TUNABLE_INT("hw.jme.msi.enable", &jme_msi_enable);
247 TUNABLE_INT("hw.jme.msix.enable", &jme_msix_enable);
248
249 /*
250  *      Read a PHY register on the MII of the JMC250.
251  */
252 static int
253 jme_miibus_readreg(device_t dev, int phy, int reg)
254 {
255         struct jme_softc *sc = device_get_softc(dev);
256         uint32_t val;
257         int i;
258
259         /* For FPGA version, PHY address 0 should be ignored. */
260         if (sc->jme_caps & JME_CAP_FPGA) {
261                 if (phy == 0)
262                         return (0);
263         } else {
264                 if (sc->jme_phyaddr != phy)
265                         return (0);
266         }
267
268         CSR_WRITE_4(sc, JME_SMI, SMI_OP_READ | SMI_OP_EXECUTE |
269             SMI_PHY_ADDR(phy) | SMI_REG_ADDR(reg));
270
271         for (i = JME_PHY_TIMEOUT; i > 0; i--) {
272                 DELAY(1);
273                 if (((val = CSR_READ_4(sc, JME_SMI)) & SMI_OP_EXECUTE) == 0)
274                         break;
275         }
276         if (i == 0) {
277                 device_printf(sc->jme_dev, "phy read timeout: "
278                               "phy %d, reg %d\n", phy, reg);
279                 return (0);
280         }
281
282         return ((val & SMI_DATA_MASK) >> SMI_DATA_SHIFT);
283 }
284
285 /*
286  *      Write a PHY register on the MII of the JMC250.
287  */
288 static int
289 jme_miibus_writereg(device_t dev, int phy, int reg, int val)
290 {
291         struct jme_softc *sc = device_get_softc(dev);
292         int i;
293
294         /* For FPGA version, PHY address 0 should be ignored. */
295         if (sc->jme_caps & JME_CAP_FPGA) {
296                 if (phy == 0)
297                         return (0);
298         } else {
299                 if (sc->jme_phyaddr != phy)
300                         return (0);
301         }
302
303         CSR_WRITE_4(sc, JME_SMI, SMI_OP_WRITE | SMI_OP_EXECUTE |
304             ((val << SMI_DATA_SHIFT) & SMI_DATA_MASK) |
305             SMI_PHY_ADDR(phy) | SMI_REG_ADDR(reg));
306
307         for (i = JME_PHY_TIMEOUT; i > 0; i--) {
308                 DELAY(1);
309                 if (((val = CSR_READ_4(sc, JME_SMI)) & SMI_OP_EXECUTE) == 0)
310                         break;
311         }
312         if (i == 0) {
313                 device_printf(sc->jme_dev, "phy write timeout: "
314                               "phy %d, reg %d\n", phy, reg);
315         }
316
317         return (0);
318 }
319
320 /*
321  *      Callback from MII layer when media changes.
322  */
323 static void
324 jme_miibus_statchg(device_t dev)
325 {
326         struct jme_softc *sc = device_get_softc(dev);
327         struct ifnet *ifp = &sc->arpcom.ac_if;
328         struct mii_data *mii;
329         struct jme_txdesc *txd;
330         bus_addr_t paddr;
331         int i, r;
332
333         ASSERT_IFNET_SERIALIZED_ALL(ifp);
334
335         if ((ifp->if_flags & IFF_RUNNING) == 0)
336                 return;
337
338         mii = device_get_softc(sc->jme_miibus);
339
340         sc->jme_flags &= ~JME_FLAG_LINK;
341         if ((mii->mii_media_status & IFM_AVALID) != 0) {
342                 switch (IFM_SUBTYPE(mii->mii_media_active)) {
343                 case IFM_10_T:
344                 case IFM_100_TX:
345                         sc->jme_flags |= JME_FLAG_LINK;
346                         break;
347                 case IFM_1000_T:
348                         if (sc->jme_caps & JME_CAP_FASTETH)
349                                 break;
350                         sc->jme_flags |= JME_FLAG_LINK;
351                         break;
352                 default:
353                         break;
354                 }
355         }
356
357         /*
358          * Disabling Rx/Tx MACs have a side-effect of resetting
359          * JME_TXNDA/JME_RXNDA register to the first address of
360          * Tx/Rx descriptor address. So driver should reset its
361          * internal procucer/consumer pointer and reclaim any
362          * allocated resources.  Note, just saving the value of
363          * JME_TXNDA and JME_RXNDA registers before stopping MAC
364          * and restoring JME_TXNDA/JME_RXNDA register is not
365          * sufficient to make sure correct MAC state because
366          * stopping MAC operation can take a while and hardware
367          * might have updated JME_TXNDA/JME_RXNDA registers
368          * during the stop operation.
369          */
370
371         /* Disable interrupts */
372         CSR_WRITE_4(sc, JME_INTR_MASK_CLR, JME_INTRS);
373
374         /* Stop driver */
375         ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
376         ifp->if_timer = 0;
377         callout_stop(&sc->jme_tick_ch);
378
379         /* Stop receiver/transmitter. */
380         jme_stop_rx(sc);
381         jme_stop_tx(sc);
382
383         for (r = 0; r < sc->jme_rx_ring_cnt; ++r) {
384                 struct jme_rxdata *rdata = &sc->jme_cdata.jme_rx_data[r];
385
386                 jme_rxeof(sc, r, -1);
387                 if (rdata->jme_rxhead != NULL)
388                         m_freem(rdata->jme_rxhead);
389                 JME_RXCHAIN_RESET(sc, r);
390
391                 /*
392                  * Reuse configured Rx descriptors and reset
393                  * procuder/consumer index.
394                  */
395                 rdata->jme_rx_cons = 0;
396         }
397
398         jme_txeof(sc);
399         if (sc->jme_cdata.jme_tx_cnt != 0) {
400                 /* Remove queued packets for transmit. */
401                 for (i = 0; i < sc->jme_tx_desc_cnt; i++) {
402                         txd = &sc->jme_cdata.jme_txdesc[i];
403                         if (txd->tx_m != NULL) {
404                                 bus_dmamap_unload(
405                                     sc->jme_cdata.jme_tx_tag,
406                                     txd->tx_dmamap);
407                                 m_freem(txd->tx_m);
408                                 txd->tx_m = NULL;
409                                 txd->tx_ndesc = 0;
410                                 ifp->if_oerrors++;
411                         }
412                 }
413         }
414         jme_init_tx_ring(sc);
415
416         /* Initialize shadow status block. */
417         jme_init_ssb(sc);
418
419         /* Program MAC with resolved speed/duplex/flow-control. */
420         if (sc->jme_flags & JME_FLAG_LINK) {
421                 jme_mac_config(sc);
422
423                 CSR_WRITE_4(sc, JME_TXCSR, sc->jme_txcsr);
424
425                 /* Set Tx ring address to the hardware. */
426                 paddr = sc->jme_cdata.jme_tx_ring_paddr;
427                 CSR_WRITE_4(sc, JME_TXDBA_HI, JME_ADDR_HI(paddr));
428                 CSR_WRITE_4(sc, JME_TXDBA_LO, JME_ADDR_LO(paddr));
429
430                 for (r = 0; r < sc->jme_rx_ring_cnt; ++r) {
431                         CSR_WRITE_4(sc, JME_RXCSR,
432                             sc->jme_rxcsr | RXCSR_RXQ_N_SEL(r));
433
434                         /* Set Rx ring address to the hardware. */
435                         paddr = sc->jme_cdata.jme_rx_data[r].jme_rx_ring_paddr;
436                         CSR_WRITE_4(sc, JME_RXDBA_HI, JME_ADDR_HI(paddr));
437                         CSR_WRITE_4(sc, JME_RXDBA_LO, JME_ADDR_LO(paddr));
438                 }
439
440                 /* Restart receiver/transmitter. */
441                 CSR_WRITE_4(sc, JME_RXCSR, sc->jme_rxcsr | RXCSR_RX_ENB |
442                     RXCSR_RXQ_START);
443                 CSR_WRITE_4(sc, JME_TXCSR, sc->jme_txcsr | TXCSR_TX_ENB);
444         }
445
446         ifp->if_flags |= IFF_RUNNING;
447         ifp->if_flags &= ~IFF_OACTIVE;
448         callout_reset(&sc->jme_tick_ch, hz, jme_tick, sc);
449
450 #ifdef DEVICE_POLLING
451         if (!(ifp->if_flags & IFF_POLLING))
452 #endif
453         /* Reenable interrupts. */
454         CSR_WRITE_4(sc, JME_INTR_MASK_SET, JME_INTRS);
455 }
456
457 /*
458  *      Get the current interface media status.
459  */
460 static void
461 jme_mediastatus(struct ifnet *ifp, struct ifmediareq *ifmr)
462 {
463         struct jme_softc *sc = ifp->if_softc;
464         struct mii_data *mii = device_get_softc(sc->jme_miibus);
465
466         ASSERT_IFNET_SERIALIZED_ALL(ifp);
467
468         mii_pollstat(mii);
469         ifmr->ifm_status = mii->mii_media_status;
470         ifmr->ifm_active = mii->mii_media_active;
471 }
472
473 /*
474  *      Set hardware to newly-selected media.
475  */
476 static int
477 jme_mediachange(struct ifnet *ifp)
478 {
479         struct jme_softc *sc = ifp->if_softc;
480         struct mii_data *mii = device_get_softc(sc->jme_miibus);
481         int error;
482
483         ASSERT_IFNET_SERIALIZED_ALL(ifp);
484
485         if (mii->mii_instance != 0) {
486                 struct mii_softc *miisc;
487
488                 LIST_FOREACH(miisc, &mii->mii_phys, mii_list)
489                         mii_phy_reset(miisc);
490         }
491         error = mii_mediachg(mii);
492
493         return (error);
494 }
495
496 static int
497 jme_probe(device_t dev)
498 {
499         const struct jme_dev *sp;
500         uint16_t vid, did;
501
502         vid = pci_get_vendor(dev);
503         did = pci_get_device(dev);
504         for (sp = jme_devs; sp->jme_name != NULL; ++sp) {
505                 if (vid == sp->jme_vendorid && did == sp->jme_deviceid) {
506                         struct jme_softc *sc = device_get_softc(dev);
507
508                         sc->jme_caps = sp->jme_caps;
509                         device_set_desc(dev, sp->jme_name);
510                         return (0);
511                 }
512         }
513         return (ENXIO);
514 }
515
516 static int
517 jme_eeprom_read_byte(struct jme_softc *sc, uint8_t addr, uint8_t *val)
518 {
519         uint32_t reg;
520         int i;
521
522         *val = 0;
523         for (i = JME_TIMEOUT; i > 0; i--) {
524                 reg = CSR_READ_4(sc, JME_SMBCSR);
525                 if ((reg & SMBCSR_HW_BUSY_MASK) == SMBCSR_HW_IDLE)
526                         break;
527                 DELAY(1);
528         }
529
530         if (i == 0) {
531                 device_printf(sc->jme_dev, "EEPROM idle timeout!\n");
532                 return (ETIMEDOUT);
533         }
534
535         reg = ((uint32_t)addr << SMBINTF_ADDR_SHIFT) & SMBINTF_ADDR_MASK;
536         CSR_WRITE_4(sc, JME_SMBINTF, reg | SMBINTF_RD | SMBINTF_CMD_TRIGGER);
537         for (i = JME_TIMEOUT; i > 0; i--) {
538                 DELAY(1);
539                 reg = CSR_READ_4(sc, JME_SMBINTF);
540                 if ((reg & SMBINTF_CMD_TRIGGER) == 0)
541                         break;
542         }
543
544         if (i == 0) {
545                 device_printf(sc->jme_dev, "EEPROM read timeout!\n");
546                 return (ETIMEDOUT);
547         }
548
549         reg = CSR_READ_4(sc, JME_SMBINTF);
550         *val = (reg & SMBINTF_RD_DATA_MASK) >> SMBINTF_RD_DATA_SHIFT;
551
552         return (0);
553 }
554
555 static int
556 jme_eeprom_macaddr(struct jme_softc *sc, uint8_t eaddr[])
557 {
558         uint8_t fup, reg, val;
559         uint32_t offset;
560         int match;
561
562         offset = 0;
563         if (jme_eeprom_read_byte(sc, offset++, &fup) != 0 ||
564             fup != JME_EEPROM_SIG0)
565                 return (ENOENT);
566         if (jme_eeprom_read_byte(sc, offset++, &fup) != 0 ||
567             fup != JME_EEPROM_SIG1)
568                 return (ENOENT);
569         match = 0;
570         do {
571                 if (jme_eeprom_read_byte(sc, offset, &fup) != 0)
572                         break;
573                 if (JME_EEPROM_MKDESC(JME_EEPROM_FUNC0, JME_EEPROM_PAGE_BAR1) ==
574                     (fup & (JME_EEPROM_FUNC_MASK | JME_EEPROM_PAGE_MASK))) {
575                         if (jme_eeprom_read_byte(sc, offset + 1, &reg) != 0)
576                                 break;
577                         if (reg >= JME_PAR0 &&
578                             reg < JME_PAR0 + ETHER_ADDR_LEN) {
579                                 if (jme_eeprom_read_byte(sc, offset + 2,
580                                     &val) != 0)
581                                         break;
582                                 eaddr[reg - JME_PAR0] = val;
583                                 match++;
584                         }
585                 }
586                 /* Check for the end of EEPROM descriptor. */
587                 if ((fup & JME_EEPROM_DESC_END) == JME_EEPROM_DESC_END)
588                         break;
589                 /* Try next eeprom descriptor. */
590                 offset += JME_EEPROM_DESC_BYTES;
591         } while (match != ETHER_ADDR_LEN && offset < JME_EEPROM_END);
592
593         if (match == ETHER_ADDR_LEN)
594                 return (0);
595
596         return (ENOENT);
597 }
598
599 static void
600 jme_reg_macaddr(struct jme_softc *sc, uint8_t eaddr[])
601 {
602         uint32_t par0, par1;
603
604         /* Read station address. */
605         par0 = CSR_READ_4(sc, JME_PAR0);
606         par1 = CSR_READ_4(sc, JME_PAR1);
607         par1 &= 0xFFFF;
608         if ((par0 == 0 && par1 == 0) || (par0 & 0x1)) {
609                 device_printf(sc->jme_dev,
610                     "generating fake ethernet address.\n");
611                 par0 = karc4random();
612                 /* Set OUI to JMicron. */
613                 eaddr[0] = 0x00;
614                 eaddr[1] = 0x1B;
615                 eaddr[2] = 0x8C;
616                 eaddr[3] = (par0 >> 16) & 0xff;
617                 eaddr[4] = (par0 >> 8) & 0xff;
618                 eaddr[5] = par0 & 0xff;
619         } else {
620                 eaddr[0] = (par0 >> 0) & 0xFF;
621                 eaddr[1] = (par0 >> 8) & 0xFF;
622                 eaddr[2] = (par0 >> 16) & 0xFF;
623                 eaddr[3] = (par0 >> 24) & 0xFF;
624                 eaddr[4] = (par1 >> 0) & 0xFF;
625                 eaddr[5] = (par1 >> 8) & 0xFF;
626         }
627 }
628
629 static int
630 jme_attach(device_t dev)
631 {
632         struct jme_softc *sc = device_get_softc(dev);
633         struct ifnet *ifp = &sc->arpcom.ac_if;
634         uint32_t reg;
635         uint16_t did;
636         uint8_t pcie_ptr, rev;
637         int error = 0, i, j;
638         uint8_t eaddr[ETHER_ADDR_LEN];
639
640         lwkt_serialize_init(&sc->jme_serialize);
641         lwkt_serialize_init(&sc->jme_cdata.jme_tx_serialize);
642         for (i = 0; i < JME_NRXRING_MAX; ++i) {
643                 lwkt_serialize_init(
644                     &sc->jme_cdata.jme_rx_data[i].jme_rx_serialize);
645         }
646
647         sc->jme_rx_desc_cnt = device_getenv_int(dev, "rx_desc_count",
648             jme_rx_desc_count);
649         sc->jme_rx_desc_cnt = roundup(sc->jme_rx_desc_cnt, JME_NDESC_ALIGN);
650         if (sc->jme_rx_desc_cnt > JME_NDESC_MAX)
651                 sc->jme_rx_desc_cnt = JME_NDESC_MAX;
652
653         sc->jme_tx_desc_cnt = device_getenv_int(dev, "tx_desc_count",
654             jme_tx_desc_count);
655         sc->jme_tx_desc_cnt = roundup(sc->jme_tx_desc_cnt, JME_NDESC_ALIGN);
656         if (sc->jme_tx_desc_cnt > JME_NDESC_MAX)
657                 sc->jme_tx_desc_cnt = JME_NDESC_MAX;
658
659         /*
660          * Calculate rx rings
661          */
662         sc->jme_rx_ring_cnt = device_getenv_int(dev, "rx_ring_count",
663             jme_rx_ring_count);
664         sc->jme_rx_ring_cnt = if_ring_count2(sc->jme_rx_ring_cnt,
665             JME_NRXRING_MAX);
666
667         i = 0;
668         sc->jme_serialize_arr[i++] = &sc->jme_serialize;
669         sc->jme_serialize_arr[i++] = &sc->jme_cdata.jme_tx_serialize;
670         for (j = 0; j < sc->jme_rx_ring_cnt; ++j) {
671                 sc->jme_serialize_arr[i++] =
672                     &sc->jme_cdata.jme_rx_data[j].jme_rx_serialize;
673         }
674         KKASSERT(i <= JME_NSERIALIZE);
675         sc->jme_serialize_cnt = i;
676
677         sc->jme_cdata.jme_sc = sc;
678         for (i = 0; i < sc->jme_rx_ring_cnt; ++i) {
679                 struct jme_rxdata *rdata = &sc->jme_cdata.jme_rx_data[i];
680
681                 rdata->jme_sc = sc;
682                 rdata->jme_rx_coal = jme_rx_status[i].jme_coal;
683                 rdata->jme_rx_comp = jme_rx_status[i].jme_comp;
684                 rdata->jme_rx_empty = jme_rx_status[i].jme_empty;
685                 rdata->jme_rx_idx = i;
686         }
687
688         sc->jme_dev = dev;
689         sc->jme_lowaddr = BUS_SPACE_MAXADDR;
690
691         if_initname(ifp, device_get_name(dev), device_get_unit(dev));
692
693         callout_init(&sc->jme_tick_ch);
694
695 #ifndef BURN_BRIDGES
696         if (pci_get_powerstate(dev) != PCI_POWERSTATE_D0) {
697                 uint32_t irq, mem;
698
699                 irq = pci_read_config(dev, PCIR_INTLINE, 4);
700                 mem = pci_read_config(dev, JME_PCIR_BAR, 4);
701
702                 device_printf(dev, "chip is in D%d power mode "
703                     "-- setting to D0\n", pci_get_powerstate(dev));
704
705                 pci_set_powerstate(dev, PCI_POWERSTATE_D0);
706
707                 pci_write_config(dev, PCIR_INTLINE, irq, 4);
708                 pci_write_config(dev, JME_PCIR_BAR, mem, 4);
709         }
710 #endif  /* !BURN_BRIDGE */
711
712         /* Enable bus mastering */
713         pci_enable_busmaster(dev);
714
715         /*
716          * Allocate IO memory
717          *
718          * JMC250 supports both memory mapped and I/O register space
719          * access.  Because I/O register access should use different
720          * BARs to access registers it's waste of time to use I/O
721          * register spce access.  JMC250 uses 16K to map entire memory
722          * space.
723          */
724         sc->jme_mem_rid = JME_PCIR_BAR;
725         sc->jme_mem_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
726                                                  &sc->jme_mem_rid, RF_ACTIVE);
727         if (sc->jme_mem_res == NULL) {
728                 device_printf(dev, "can't allocate IO memory\n");
729                 return ENXIO;
730         }
731         sc->jme_mem_bt = rman_get_bustag(sc->jme_mem_res);
732         sc->jme_mem_bh = rman_get_bushandle(sc->jme_mem_res);
733
734         /*
735          * Allocate IRQ
736          */
737         error = jme_intr_alloc(dev);
738         if (error)
739                 goto fail;
740
741         /*
742          * Extract revisions
743          */
744         reg = CSR_READ_4(sc, JME_CHIPMODE);
745         if (((reg & CHIPMODE_FPGA_REV_MASK) >> CHIPMODE_FPGA_REV_SHIFT) !=
746             CHIPMODE_NOT_FPGA) {
747                 sc->jme_caps |= JME_CAP_FPGA;
748                 if (bootverbose) {
749                         device_printf(dev, "FPGA revision: 0x%04x\n",
750                                       (reg & CHIPMODE_FPGA_REV_MASK) >>
751                                       CHIPMODE_FPGA_REV_SHIFT);
752                 }
753         }
754
755         /* NOTE: FM revision is put in the upper 4 bits */
756         rev = ((reg & CHIPMODE_REVFM_MASK) >> CHIPMODE_REVFM_SHIFT) << 4;
757         rev |= (reg & CHIPMODE_REVECO_MASK) >> CHIPMODE_REVECO_SHIFT;
758         if (bootverbose)
759                 device_printf(dev, "Revision (FM/ECO): 0x%02x\n", rev);
760
761         did = pci_get_device(dev);
762         switch (did) {
763         case PCI_PRODUCT_JMICRON_JMC250:
764                 if (rev == JME_REV1_A2)
765                         sc->jme_workaround |= JME_WA_EXTFIFO | JME_WA_HDX;
766                 break;
767
768         case PCI_PRODUCT_JMICRON_JMC260:
769                 if (rev == JME_REV2)
770                         sc->jme_lowaddr = BUS_SPACE_MAXADDR_32BIT;
771                 break;
772
773         default:
774                 panic("unknown device id 0x%04x\n", did);
775         }
776         if (rev >= JME_REV2) {
777                 sc->jme_clksrc = GHC_TXOFL_CLKSRC | GHC_TXMAC_CLKSRC;
778                 sc->jme_clksrc_1000 = GHC_TXOFL_CLKSRC_1000 |
779                                       GHC_TXMAC_CLKSRC_1000;
780         }
781
782         /* Reset the ethernet controller. */
783         jme_reset(sc);
784
785         /* Map MSI/MSI-X vectors */
786         jme_set_msinum(sc);
787
788         /* Get station address. */
789         reg = CSR_READ_4(sc, JME_SMBCSR);
790         if (reg & SMBCSR_EEPROM_PRESENT)
791                 error = jme_eeprom_macaddr(sc, eaddr);
792         if (error != 0 || (reg & SMBCSR_EEPROM_PRESENT) == 0) {
793                 if (error != 0 && (bootverbose)) {
794                         device_printf(dev, "ethernet hardware address "
795                                       "not found in EEPROM.\n");
796                 }
797                 jme_reg_macaddr(sc, eaddr);
798         }
799
800         /*
801          * Save PHY address.
802          * Integrated JR0211 has fixed PHY address whereas FPGA version
803          * requires PHY probing to get correct PHY address.
804          */
805         if ((sc->jme_caps & JME_CAP_FPGA) == 0) {
806                 sc->jme_phyaddr = CSR_READ_4(sc, JME_GPREG0) &
807                     GPREG0_PHY_ADDR_MASK;
808                 if (bootverbose) {
809                         device_printf(dev, "PHY is at address %d.\n",
810                             sc->jme_phyaddr);
811                 }
812         } else {
813                 sc->jme_phyaddr = 0;
814         }
815
816         /* Set max allowable DMA size. */
817         pcie_ptr = pci_get_pciecap_ptr(dev);
818         if (pcie_ptr != 0) {
819                 uint16_t ctrl;
820
821                 sc->jme_caps |= JME_CAP_PCIE;
822                 ctrl = pci_read_config(dev, pcie_ptr + PCIER_DEVCTRL, 2);
823                 if (bootverbose) {
824                         device_printf(dev, "Read request size : %d bytes.\n",
825                             128 << ((ctrl >> 12) & 0x07));
826                         device_printf(dev, "TLP payload size : %d bytes.\n",
827                             128 << ((ctrl >> 5) & 0x07));
828                 }
829                 switch (ctrl & PCIEM_DEVCTL_MAX_READRQ_MASK) {
830                 case PCIEM_DEVCTL_MAX_READRQ_128:
831                         sc->jme_tx_dma_size = TXCSR_DMA_SIZE_128;
832                         break;
833                 case PCIEM_DEVCTL_MAX_READRQ_256:
834                         sc->jme_tx_dma_size = TXCSR_DMA_SIZE_256;
835                         break;
836                 default:
837                         sc->jme_tx_dma_size = TXCSR_DMA_SIZE_512;
838                         break;
839                 }
840                 sc->jme_rx_dma_size = RXCSR_DMA_SIZE_128;
841         } else {
842                 sc->jme_tx_dma_size = TXCSR_DMA_SIZE_512;
843                 sc->jme_rx_dma_size = RXCSR_DMA_SIZE_128;
844         }
845
846 #ifdef notyet
847         if (pci_find_extcap(dev, PCIY_PMG, &pmc) == 0)
848                 sc->jme_caps |= JME_CAP_PMCAP;
849 #endif
850
851         /*
852          * Create sysctl tree
853          */
854         jme_sysctl_node(sc);
855
856         /* Allocate DMA stuffs */
857         error = jme_dma_alloc(sc);
858         if (error)
859                 goto fail;
860
861         ifp->if_softc = sc;
862         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
863         ifp->if_init = jme_init;
864         ifp->if_ioctl = jme_ioctl;
865         ifp->if_start = jme_start;
866 #ifdef DEVICE_POLLING
867         ifp->if_poll = jme_poll;
868 #endif
869         ifp->if_watchdog = jme_watchdog;
870         ifp->if_serialize = jme_serialize;
871         ifp->if_deserialize = jme_deserialize;
872         ifp->if_tryserialize = jme_tryserialize;
873 #ifdef INVARIANTS
874         ifp->if_serialize_assert = jme_serialize_assert;
875 #endif
876         ifq_set_maxlen(&ifp->if_snd, sc->jme_tx_desc_cnt - JME_TXD_RSVD);
877         ifq_set_ready(&ifp->if_snd);
878
879         /* JMC250 supports Tx/Rx checksum offload and hardware vlan tagging. */
880         ifp->if_capabilities = IFCAP_HWCSUM |
881                                IFCAP_VLAN_MTU |
882                                IFCAP_VLAN_HWTAGGING;
883         if (sc->jme_rx_ring_cnt > JME_NRXRING_MIN)
884                 ifp->if_capabilities |= IFCAP_RSS;
885         ifp->if_capenable = ifp->if_capabilities;
886
887         /*
888          * Disable TXCSUM by default to improve bulk data
889          * transmit performance (+20Mbps improvement).
890          */
891         ifp->if_capenable &= ~IFCAP_TXCSUM;
892
893         if (ifp->if_capenable & IFCAP_TXCSUM)
894                 ifp->if_hwassist = JME_CSUM_FEATURES;
895
896         /* Set up MII bus. */
897         error = mii_phy_probe(dev, &sc->jme_miibus,
898                               jme_mediachange, jme_mediastatus);
899         if (error) {
900                 device_printf(dev, "no PHY found!\n");
901                 goto fail;
902         }
903
904         /*
905          * Save PHYADDR for FPGA mode PHY.
906          */
907         if (sc->jme_caps & JME_CAP_FPGA) {
908                 struct mii_data *mii = device_get_softc(sc->jme_miibus);
909
910                 if (mii->mii_instance != 0) {
911                         struct mii_softc *miisc;
912
913                         LIST_FOREACH(miisc, &mii->mii_phys, mii_list) {
914                                 if (miisc->mii_phy != 0) {
915                                         sc->jme_phyaddr = miisc->mii_phy;
916                                         break;
917                                 }
918                         }
919                         if (sc->jme_phyaddr != 0) {
920                                 device_printf(sc->jme_dev,
921                                     "FPGA PHY is at %d\n", sc->jme_phyaddr);
922                                 /* vendor magic. */
923                                 jme_miibus_writereg(dev, sc->jme_phyaddr,
924                                     JMPHY_CONF, JMPHY_CONF_DEFFIFO);
925
926                                 /* XXX should we clear JME_WA_EXTFIFO */
927                         }
928                 }
929         }
930
931         ether_ifattach(ifp, eaddr, NULL);
932
933         /* Tell the upper layer(s) we support long frames. */
934         ifp->if_data.ifi_hdrlen = sizeof(struct ether_vlan_header);
935
936         error = jme_intr_setup(dev);
937         if (error) {
938                 ether_ifdetach(ifp);
939                 goto fail;
940         }
941
942         return 0;
943 fail:
944         jme_detach(dev);
945         return (error);
946 }
947
948 static int
949 jme_detach(device_t dev)
950 {
951         struct jme_softc *sc = device_get_softc(dev);
952
953         if (device_is_attached(dev)) {
954                 struct ifnet *ifp = &sc->arpcom.ac_if;
955
956                 ifnet_serialize_all(ifp);
957                 jme_stop(sc);
958                 jme_intr_teardown(dev);
959                 ifnet_deserialize_all(ifp);
960
961                 ether_ifdetach(ifp);
962         }
963
964         if (sc->jme_sysctl_tree != NULL)
965                 sysctl_ctx_free(&sc->jme_sysctl_ctx);
966
967         if (sc->jme_miibus != NULL)
968                 device_delete_child(dev, sc->jme_miibus);
969         bus_generic_detach(dev);
970
971         jme_intr_free(dev);
972
973         if (sc->jme_mem_res != NULL) {
974                 bus_release_resource(dev, SYS_RES_MEMORY, sc->jme_mem_rid,
975                                      sc->jme_mem_res);
976         }
977
978         jme_dma_free(sc);
979
980         return (0);
981 }
982
983 static void
984 jme_sysctl_node(struct jme_softc *sc)
985 {
986         int coal_max;
987 #ifdef JME_RSS_DEBUG
988         char rx_ring_pkt[32];
989         int r;
990 #endif
991
992         sysctl_ctx_init(&sc->jme_sysctl_ctx);
993         sc->jme_sysctl_tree = SYSCTL_ADD_NODE(&sc->jme_sysctl_ctx,
994                                 SYSCTL_STATIC_CHILDREN(_hw), OID_AUTO,
995                                 device_get_nameunit(sc->jme_dev),
996                                 CTLFLAG_RD, 0, "");
997         if (sc->jme_sysctl_tree == NULL) {
998                 device_printf(sc->jme_dev, "can't add sysctl node\n");
999                 return;
1000         }
1001
1002         SYSCTL_ADD_PROC(&sc->jme_sysctl_ctx,
1003             SYSCTL_CHILDREN(sc->jme_sysctl_tree), OID_AUTO,
1004             "tx_coal_to", CTLTYPE_INT | CTLFLAG_RW,
1005             sc, 0, jme_sysctl_tx_coal_to, "I", "jme tx coalescing timeout");
1006
1007         SYSCTL_ADD_PROC(&sc->jme_sysctl_ctx,
1008             SYSCTL_CHILDREN(sc->jme_sysctl_tree), OID_AUTO,
1009             "tx_coal_pkt", CTLTYPE_INT | CTLFLAG_RW,
1010             sc, 0, jme_sysctl_tx_coal_pkt, "I", "jme tx coalescing packet");
1011
1012         SYSCTL_ADD_PROC(&sc->jme_sysctl_ctx,
1013             SYSCTL_CHILDREN(sc->jme_sysctl_tree), OID_AUTO,
1014             "rx_coal_to", CTLTYPE_INT | CTLFLAG_RW,
1015             sc, 0, jme_sysctl_rx_coal_to, "I", "jme rx coalescing timeout");
1016
1017         SYSCTL_ADD_PROC(&sc->jme_sysctl_ctx,
1018             SYSCTL_CHILDREN(sc->jme_sysctl_tree), OID_AUTO,
1019             "rx_coal_pkt", CTLTYPE_INT | CTLFLAG_RW,
1020             sc, 0, jme_sysctl_rx_coal_pkt, "I", "jme rx coalescing packet");
1021
1022         SYSCTL_ADD_INT(&sc->jme_sysctl_ctx,
1023                        SYSCTL_CHILDREN(sc->jme_sysctl_tree), OID_AUTO,
1024                        "rx_desc_count", CTLFLAG_RD, &sc->jme_rx_desc_cnt,
1025                        0, "RX desc count");
1026         SYSCTL_ADD_INT(&sc->jme_sysctl_ctx,
1027                        SYSCTL_CHILDREN(sc->jme_sysctl_tree), OID_AUTO,
1028                        "tx_desc_count", CTLFLAG_RD, &sc->jme_tx_desc_cnt,
1029                        0, "TX desc count");
1030         SYSCTL_ADD_INT(&sc->jme_sysctl_ctx,
1031                        SYSCTL_CHILDREN(sc->jme_sysctl_tree), OID_AUTO,
1032                        "rx_ring_count", CTLFLAG_RD, &sc->jme_rx_ring_cnt,
1033                        0, "RX ring count");
1034 #ifdef JME_RSS_DEBUG
1035         SYSCTL_ADD_INT(&sc->jme_sysctl_ctx,
1036                        SYSCTL_CHILDREN(sc->jme_sysctl_tree), OID_AUTO,
1037                        "rss_debug", CTLFLAG_RW, &sc->jme_rss_debug,
1038                        0, "RSS debug level");
1039         for (r = 0; r < sc->jme_rx_ring_cnt; ++r) {
1040                 ksnprintf(rx_ring_pkt, sizeof(rx_ring_pkt), "rx_ring%d_pkt", r);
1041                 SYSCTL_ADD_UINT(&sc->jme_sysctl_ctx,
1042                                 SYSCTL_CHILDREN(sc->jme_sysctl_tree), OID_AUTO,
1043                                 rx_ring_pkt, CTLFLAG_RW,
1044                                 &sc->jme_rx_ring_pkt[r],
1045                                 0, "RXed packets");
1046         }
1047 #endif
1048
1049         /*
1050          * Set default coalesce valves
1051          */
1052         sc->jme_tx_coal_to = PCCTX_COAL_TO_DEFAULT;
1053         sc->jme_tx_coal_pkt = PCCTX_COAL_PKT_DEFAULT;
1054         sc->jme_rx_coal_to = PCCRX_COAL_TO_DEFAULT;
1055         sc->jme_rx_coal_pkt = PCCRX_COAL_PKT_DEFAULT;
1056
1057         /*
1058          * Adjust coalesce valves, in case that the number of TX/RX
1059          * descs are set to small values by users.
1060          *
1061          * NOTE: coal_max will not be zero, since number of descs
1062          * must aligned by JME_NDESC_ALIGN (16 currently)
1063          */
1064         coal_max = sc->jme_tx_desc_cnt / 6;
1065         if (coal_max < sc->jme_tx_coal_pkt)
1066                 sc->jme_tx_coal_pkt = coal_max;
1067
1068         coal_max = sc->jme_rx_desc_cnt / 4;
1069         if (coal_max < sc->jme_rx_coal_pkt)
1070                 sc->jme_rx_coal_pkt = coal_max;
1071 }
1072
1073 static int
1074 jme_dma_alloc(struct jme_softc *sc)
1075 {
1076         struct jme_txdesc *txd;
1077         bus_dmamem_t dmem;
1078         int error, i;
1079
1080         sc->jme_cdata.jme_txdesc =
1081         kmalloc(sc->jme_tx_desc_cnt * sizeof(struct jme_txdesc),
1082                 M_DEVBUF, M_WAITOK | M_ZERO);
1083         for (i = 0; i < sc->jme_rx_ring_cnt; ++i) {
1084                 sc->jme_cdata.jme_rx_data[i].jme_rxdesc =
1085                 kmalloc(sc->jme_rx_desc_cnt * sizeof(struct jme_rxdesc),
1086                         M_DEVBUF, M_WAITOK | M_ZERO);
1087         }
1088
1089         /* Create parent ring tag. */
1090         error = bus_dma_tag_create(NULL,/* parent */
1091             1, JME_RING_BOUNDARY,       /* algnmnt, boundary */
1092             sc->jme_lowaddr,            /* lowaddr */
1093             BUS_SPACE_MAXADDR,          /* highaddr */
1094             NULL, NULL,                 /* filter, filterarg */
1095             BUS_SPACE_MAXSIZE_32BIT,    /* maxsize */
1096             0,                          /* nsegments */
1097             BUS_SPACE_MAXSIZE_32BIT,    /* maxsegsize */
1098             0,                          /* flags */
1099             &sc->jme_cdata.jme_ring_tag);
1100         if (error) {
1101                 device_printf(sc->jme_dev,
1102                     "could not create parent ring DMA tag.\n");
1103                 return error;
1104         }
1105
1106         /*
1107          * Create DMA stuffs for TX ring
1108          */
1109         error = bus_dmamem_coherent(sc->jme_cdata.jme_ring_tag,
1110                         JME_TX_RING_ALIGN, 0,
1111                         BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR,
1112                         JME_TX_RING_SIZE(sc),
1113                         BUS_DMA_WAITOK | BUS_DMA_ZERO, &dmem);
1114         if (error) {
1115                 device_printf(sc->jme_dev, "could not allocate Tx ring.\n");
1116                 return error;
1117         }
1118         sc->jme_cdata.jme_tx_ring_tag = dmem.dmem_tag;
1119         sc->jme_cdata.jme_tx_ring_map = dmem.dmem_map;
1120         sc->jme_cdata.jme_tx_ring = dmem.dmem_addr;
1121         sc->jme_cdata.jme_tx_ring_paddr = dmem.dmem_busaddr;
1122
1123         /*
1124          * Create DMA stuffs for RX rings
1125          */
1126         for (i = 0; i < sc->jme_rx_ring_cnt; ++i) {
1127                 error = jme_rxring_dma_alloc(sc, i);
1128                 if (error)
1129                         return error;
1130         }
1131
1132         /* Create parent buffer tag. */
1133         error = bus_dma_tag_create(NULL,/* parent */
1134             1, 0,                       /* algnmnt, boundary */
1135             sc->jme_lowaddr,            /* lowaddr */
1136             BUS_SPACE_MAXADDR,          /* highaddr */
1137             NULL, NULL,                 /* filter, filterarg */
1138             BUS_SPACE_MAXSIZE_32BIT,    /* maxsize */
1139             0,                          /* nsegments */
1140             BUS_SPACE_MAXSIZE_32BIT,    /* maxsegsize */
1141             0,                          /* flags */
1142             &sc->jme_cdata.jme_buffer_tag);
1143         if (error) {
1144                 device_printf(sc->jme_dev,
1145                     "could not create parent buffer DMA tag.\n");
1146                 return error;
1147         }
1148
1149         /*
1150          * Create DMA stuffs for shadow status block
1151          */
1152         error = bus_dmamem_coherent(sc->jme_cdata.jme_buffer_tag,
1153                         JME_SSB_ALIGN, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR,
1154                         JME_SSB_SIZE, BUS_DMA_WAITOK | BUS_DMA_ZERO, &dmem);
1155         if (error) {
1156                 device_printf(sc->jme_dev,
1157                     "could not create shadow status block.\n");
1158                 return error;
1159         }
1160         sc->jme_cdata.jme_ssb_tag = dmem.dmem_tag;
1161         sc->jme_cdata.jme_ssb_map = dmem.dmem_map;
1162         sc->jme_cdata.jme_ssb_block = dmem.dmem_addr;
1163         sc->jme_cdata.jme_ssb_block_paddr = dmem.dmem_busaddr;
1164
1165         /*
1166          * Create DMA stuffs for TX buffers
1167          */
1168
1169         /* Create tag for Tx buffers. */
1170         error = bus_dma_tag_create(sc->jme_cdata.jme_buffer_tag,/* parent */
1171             1, 0,                       /* algnmnt, boundary */
1172             BUS_SPACE_MAXADDR,          /* lowaddr */
1173             BUS_SPACE_MAXADDR,          /* highaddr */
1174             NULL, NULL,                 /* filter, filterarg */
1175             JME_JUMBO_FRAMELEN,         /* maxsize */
1176             JME_MAXTXSEGS,              /* nsegments */
1177             JME_MAXSEGSIZE,             /* maxsegsize */
1178             BUS_DMA_ALLOCNOW | BUS_DMA_WAITOK | BUS_DMA_ONEBPAGE,/* flags */
1179             &sc->jme_cdata.jme_tx_tag);
1180         if (error != 0) {
1181                 device_printf(sc->jme_dev, "could not create Tx DMA tag.\n");
1182                 return error;
1183         }
1184
1185         /* Create DMA maps for Tx buffers. */
1186         for (i = 0; i < sc->jme_tx_desc_cnt; i++) {
1187                 txd = &sc->jme_cdata.jme_txdesc[i];
1188                 error = bus_dmamap_create(sc->jme_cdata.jme_tx_tag,
1189                                 BUS_DMA_WAITOK | BUS_DMA_ONEBPAGE,
1190                                 &txd->tx_dmamap);
1191                 if (error) {
1192                         int j;
1193
1194                         device_printf(sc->jme_dev,
1195                             "could not create %dth Tx dmamap.\n", i);
1196
1197                         for (j = 0; j < i; ++j) {
1198                                 txd = &sc->jme_cdata.jme_txdesc[j];
1199                                 bus_dmamap_destroy(sc->jme_cdata.jme_tx_tag,
1200                                                    txd->tx_dmamap);
1201                         }
1202                         bus_dma_tag_destroy(sc->jme_cdata.jme_tx_tag);
1203                         sc->jme_cdata.jme_tx_tag = NULL;
1204                         return error;
1205                 }
1206         }
1207
1208         /*
1209          * Create DMA stuffs for RX buffers
1210          */
1211         for (i = 0; i < sc->jme_rx_ring_cnt; ++i) {
1212                 error = jme_rxbuf_dma_alloc(sc, i);
1213                 if (error)
1214                         return error;
1215         }
1216         return 0;
1217 }
1218
1219 static void
1220 jme_dma_free(struct jme_softc *sc)
1221 {
1222         struct jme_txdesc *txd;
1223         struct jme_rxdesc *rxd;
1224         struct jme_rxdata *rdata;
1225         int i, r;
1226
1227         /* Tx ring */
1228         if (sc->jme_cdata.jme_tx_ring_tag != NULL) {
1229                 bus_dmamap_unload(sc->jme_cdata.jme_tx_ring_tag,
1230                     sc->jme_cdata.jme_tx_ring_map);
1231                 bus_dmamem_free(sc->jme_cdata.jme_tx_ring_tag,
1232                     sc->jme_cdata.jme_tx_ring,
1233                     sc->jme_cdata.jme_tx_ring_map);
1234                 bus_dma_tag_destroy(sc->jme_cdata.jme_tx_ring_tag);
1235                 sc->jme_cdata.jme_tx_ring_tag = NULL;
1236         }
1237
1238         /* Rx ring */
1239         for (r = 0; r < sc->jme_rx_ring_cnt; ++r) {
1240                 rdata = &sc->jme_cdata.jme_rx_data[r];
1241                 if (rdata->jme_rx_ring_tag != NULL) {
1242                         bus_dmamap_unload(rdata->jme_rx_ring_tag,
1243                                           rdata->jme_rx_ring_map);
1244                         bus_dmamem_free(rdata->jme_rx_ring_tag,
1245                                         rdata->jme_rx_ring,
1246                                         rdata->jme_rx_ring_map);
1247                         bus_dma_tag_destroy(rdata->jme_rx_ring_tag);
1248                         rdata->jme_rx_ring_tag = NULL;
1249                 }
1250         }
1251
1252         /* Tx buffers */
1253         if (sc->jme_cdata.jme_tx_tag != NULL) {
1254                 for (i = 0; i < sc->jme_tx_desc_cnt; i++) {
1255                         txd = &sc->jme_cdata.jme_txdesc[i];
1256                         bus_dmamap_destroy(sc->jme_cdata.jme_tx_tag,
1257                             txd->tx_dmamap);
1258                 }
1259                 bus_dma_tag_destroy(sc->jme_cdata.jme_tx_tag);
1260                 sc->jme_cdata.jme_tx_tag = NULL;
1261         }
1262
1263         /* Rx buffers */
1264         for (r = 0; r < sc->jme_rx_ring_cnt; ++r) {
1265                 rdata = &sc->jme_cdata.jme_rx_data[r];
1266                 if (rdata->jme_rx_tag != NULL) {
1267                         for (i = 0; i < sc->jme_rx_desc_cnt; i++) {
1268                                 rxd = &rdata->jme_rxdesc[i];
1269                                 bus_dmamap_destroy(rdata->jme_rx_tag,
1270                                                    rxd->rx_dmamap);
1271                         }
1272                         bus_dmamap_destroy(rdata->jme_rx_tag,
1273                                            rdata->jme_rx_sparemap);
1274                         bus_dma_tag_destroy(rdata->jme_rx_tag);
1275                         rdata->jme_rx_tag = NULL;
1276                 }
1277         }
1278
1279         /* Shadow status block. */
1280         if (sc->jme_cdata.jme_ssb_tag != NULL) {
1281                 bus_dmamap_unload(sc->jme_cdata.jme_ssb_tag,
1282                     sc->jme_cdata.jme_ssb_map);
1283                 bus_dmamem_free(sc->jme_cdata.jme_ssb_tag,
1284                     sc->jme_cdata.jme_ssb_block,
1285                     sc->jme_cdata.jme_ssb_map);
1286                 bus_dma_tag_destroy(sc->jme_cdata.jme_ssb_tag);
1287                 sc->jme_cdata.jme_ssb_tag = NULL;
1288         }
1289
1290         if (sc->jme_cdata.jme_buffer_tag != NULL) {
1291                 bus_dma_tag_destroy(sc->jme_cdata.jme_buffer_tag);
1292                 sc->jme_cdata.jme_buffer_tag = NULL;
1293         }
1294         if (sc->jme_cdata.jme_ring_tag != NULL) {
1295                 bus_dma_tag_destroy(sc->jme_cdata.jme_ring_tag);
1296                 sc->jme_cdata.jme_ring_tag = NULL;
1297         }
1298
1299         if (sc->jme_cdata.jme_txdesc != NULL) {
1300                 kfree(sc->jme_cdata.jme_txdesc, M_DEVBUF);
1301                 sc->jme_cdata.jme_txdesc = NULL;
1302         }
1303         for (r = 0; r < sc->jme_rx_ring_cnt; ++r) {
1304                 rdata = &sc->jme_cdata.jme_rx_data[r];
1305                 if (rdata->jme_rxdesc != NULL) {
1306                         kfree(rdata->jme_rxdesc, M_DEVBUF);
1307                         rdata->jme_rxdesc = NULL;
1308                 }
1309         }
1310 }
1311
1312 /*
1313  *      Make sure the interface is stopped at reboot time.
1314  */
1315 static int
1316 jme_shutdown(device_t dev)
1317 {
1318         return jme_suspend(dev);
1319 }
1320
1321 #ifdef notyet
1322 /*
1323  * Unlike other ethernet controllers, JMC250 requires
1324  * explicit resetting link speed to 10/100Mbps as gigabit
1325  * link will cunsume more power than 375mA.
1326  * Note, we reset the link speed to 10/100Mbps with
1327  * auto-negotiation but we don't know whether that operation
1328  * would succeed or not as we have no control after powering
1329  * off. If the renegotiation fail WOL may not work. Running
1330  * at 1Gbps draws more power than 375mA at 3.3V which is
1331  * specified in PCI specification and that would result in
1332  * complete shutdowning power to ethernet controller.
1333  *
1334  * TODO
1335  *  Save current negotiated media speed/duplex/flow-control
1336  *  to softc and restore the same link again after resuming.
1337  *  PHY handling such as power down/resetting to 100Mbps
1338  *  may be better handled in suspend method in phy driver.
1339  */
1340 static void
1341 jme_setlinkspeed(struct jme_softc *sc)
1342 {
1343         struct mii_data *mii;
1344         int aneg, i;
1345
1346         JME_LOCK_ASSERT(sc);
1347
1348         mii = device_get_softc(sc->jme_miibus);
1349         mii_pollstat(mii);
1350         aneg = 0;
1351         if ((mii->mii_media_status & IFM_AVALID) != 0) {
1352                 switch IFM_SUBTYPE(mii->mii_media_active) {
1353                 case IFM_10_T:
1354                 case IFM_100_TX:
1355                         return;
1356                 case IFM_1000_T:
1357                         aneg++;
1358                 default:
1359                         break;
1360                 }
1361         }
1362         jme_miibus_writereg(sc->jme_dev, sc->jme_phyaddr, MII_100T2CR, 0);
1363         jme_miibus_writereg(sc->jme_dev, sc->jme_phyaddr, MII_ANAR,
1364             ANAR_TX_FD | ANAR_TX | ANAR_10_FD | ANAR_10 | ANAR_CSMA);
1365         jme_miibus_writereg(sc->jme_dev, sc->jme_phyaddr, MII_BMCR,
1366             BMCR_AUTOEN | BMCR_STARTNEG);
1367         DELAY(1000);
1368         if (aneg != 0) {
1369                 /* Poll link state until jme(4) get a 10/100 link. */
1370                 for (i = 0; i < MII_ANEGTICKS_GIGE; i++) {
1371                         mii_pollstat(mii);
1372                         if ((mii->mii_media_status & IFM_AVALID) != 0) {
1373                                 switch (IFM_SUBTYPE(mii->mii_media_active)) {
1374                                 case IFM_10_T:
1375                                 case IFM_100_TX:
1376                                         jme_mac_config(sc);
1377                                         return;
1378                                 default:
1379                                         break;
1380                                 }
1381                         }
1382                         JME_UNLOCK(sc);
1383                         pause("jmelnk", hz);
1384                         JME_LOCK(sc);
1385                 }
1386                 if (i == MII_ANEGTICKS_GIGE)
1387                         device_printf(sc->jme_dev, "establishing link failed, "
1388                             "WOL may not work!");
1389         }
1390         /*
1391          * No link, force MAC to have 100Mbps, full-duplex link.
1392          * This is the last resort and may/may not work.
1393          */
1394         mii->mii_media_status = IFM_AVALID | IFM_ACTIVE;
1395         mii->mii_media_active = IFM_ETHER | IFM_100_TX | IFM_FDX;
1396         jme_mac_config(sc);
1397 }
1398
1399 static void
1400 jme_setwol(struct jme_softc *sc)
1401 {
1402         struct ifnet *ifp = &sc->arpcom.ac_if;
1403         uint32_t gpr, pmcs;
1404         uint16_t pmstat;
1405         int pmc;
1406
1407         if (pci_find_extcap(sc->jme_dev, PCIY_PMG, &pmc) != 0) {
1408                 /* No PME capability, PHY power down. */
1409                 jme_miibus_writereg(sc->jme_dev, sc->jme_phyaddr,
1410                     MII_BMCR, BMCR_PDOWN);
1411                 return;
1412         }
1413
1414         gpr = CSR_READ_4(sc, JME_GPREG0) & ~GPREG0_PME_ENB;
1415         pmcs = CSR_READ_4(sc, JME_PMCS);
1416         pmcs &= ~PMCS_WOL_ENB_MASK;
1417         if ((ifp->if_capenable & IFCAP_WOL_MAGIC) != 0) {
1418                 pmcs |= PMCS_MAGIC_FRAME | PMCS_MAGIC_FRAME_ENB;
1419                 /* Enable PME message. */
1420                 gpr |= GPREG0_PME_ENB;
1421                 /* For gigabit controllers, reset link speed to 10/100. */
1422                 if ((sc->jme_caps & JME_CAP_FASTETH) == 0)
1423                         jme_setlinkspeed(sc);
1424         }
1425
1426         CSR_WRITE_4(sc, JME_PMCS, pmcs);
1427         CSR_WRITE_4(sc, JME_GPREG0, gpr);
1428
1429         /* Request PME. */
1430         pmstat = pci_read_config(sc->jme_dev, pmc + PCIR_POWER_STATUS, 2);
1431         pmstat &= ~(PCIM_PSTAT_PME | PCIM_PSTAT_PMEENABLE);
1432         if ((ifp->if_capenable & IFCAP_WOL) != 0)
1433                 pmstat |= PCIM_PSTAT_PME | PCIM_PSTAT_PMEENABLE;
1434         pci_write_config(sc->jme_dev, pmc + PCIR_POWER_STATUS, pmstat, 2);
1435         if ((ifp->if_capenable & IFCAP_WOL) == 0) {
1436                 /* No WOL, PHY power down. */
1437                 jme_miibus_writereg(sc->jme_dev, sc->jme_phyaddr,
1438                     MII_BMCR, BMCR_PDOWN);
1439         }
1440 }
1441 #endif
1442
1443 static int
1444 jme_suspend(device_t dev)
1445 {
1446         struct jme_softc *sc = device_get_softc(dev);
1447         struct ifnet *ifp = &sc->arpcom.ac_if;
1448
1449         ifnet_serialize_all(ifp);
1450         jme_stop(sc);
1451 #ifdef notyet
1452         jme_setwol(sc);
1453 #endif
1454         ifnet_deserialize_all(ifp);
1455
1456         return (0);
1457 }
1458
1459 static int
1460 jme_resume(device_t dev)
1461 {
1462         struct jme_softc *sc = device_get_softc(dev);
1463         struct ifnet *ifp = &sc->arpcom.ac_if;
1464 #ifdef notyet
1465         int pmc;
1466 #endif
1467
1468         ifnet_serialize_all(ifp);
1469
1470 #ifdef notyet
1471         if (pci_find_extcap(sc->jme_dev, PCIY_PMG, &pmc) != 0) {
1472                 uint16_t pmstat;
1473
1474                 pmstat = pci_read_config(sc->jme_dev,
1475                     pmc + PCIR_POWER_STATUS, 2);
1476                 /* Disable PME clear PME status. */
1477                 pmstat &= ~PCIM_PSTAT_PMEENABLE;
1478                 pci_write_config(sc->jme_dev,
1479                     pmc + PCIR_POWER_STATUS, pmstat, 2);
1480         }
1481 #endif
1482
1483         if (ifp->if_flags & IFF_UP)
1484                 jme_init(sc);
1485
1486         ifnet_deserialize_all(ifp);
1487
1488         return (0);
1489 }
1490
1491 static int
1492 jme_encap(struct jme_softc *sc, struct mbuf **m_head)
1493 {
1494         struct jme_txdesc *txd;
1495         struct jme_desc *desc;
1496         struct mbuf *m;
1497         bus_dma_segment_t txsegs[JME_MAXTXSEGS];
1498         int maxsegs, nsegs;
1499         int error, i, prod, symbol_desc;
1500         uint32_t cflags, flag64;
1501
1502         M_ASSERTPKTHDR((*m_head));
1503
1504         prod = sc->jme_cdata.jme_tx_prod;
1505         txd = &sc->jme_cdata.jme_txdesc[prod];
1506
1507         if (sc->jme_lowaddr != BUS_SPACE_MAXADDR_32BIT)
1508                 symbol_desc = 1;
1509         else
1510                 symbol_desc = 0;
1511
1512         maxsegs = (sc->jme_tx_desc_cnt - sc->jme_cdata.jme_tx_cnt) -
1513                   (JME_TXD_RSVD + symbol_desc);
1514         if (maxsegs > JME_MAXTXSEGS)
1515                 maxsegs = JME_MAXTXSEGS;
1516         KASSERT(maxsegs >= (sc->jme_txd_spare - symbol_desc),
1517                 ("not enough segments %d\n", maxsegs));
1518
1519         error = bus_dmamap_load_mbuf_defrag(sc->jme_cdata.jme_tx_tag,
1520                         txd->tx_dmamap, m_head,
1521                         txsegs, maxsegs, &nsegs, BUS_DMA_NOWAIT);
1522         if (error)
1523                 goto fail;
1524
1525         bus_dmamap_sync(sc->jme_cdata.jme_tx_tag, txd->tx_dmamap,
1526                         BUS_DMASYNC_PREWRITE);
1527
1528         m = *m_head;
1529         cflags = 0;
1530
1531         /* Configure checksum offload. */
1532         if (m->m_pkthdr.csum_flags & CSUM_IP)
1533                 cflags |= JME_TD_IPCSUM;
1534         if (m->m_pkthdr.csum_flags & CSUM_TCP)
1535                 cflags |= JME_TD_TCPCSUM;
1536         if (m->m_pkthdr.csum_flags & CSUM_UDP)
1537                 cflags |= JME_TD_UDPCSUM;
1538
1539         /* Configure VLAN. */
1540         if (m->m_flags & M_VLANTAG) {
1541                 cflags |= (m->m_pkthdr.ether_vlantag & JME_TD_VLAN_MASK);
1542                 cflags |= JME_TD_VLAN_TAG;
1543         }
1544
1545         desc = &sc->jme_cdata.jme_tx_ring[prod];
1546         desc->flags = htole32(cflags);
1547         desc->addr_hi = htole32(m->m_pkthdr.len);
1548         if (sc->jme_lowaddr != BUS_SPACE_MAXADDR_32BIT) {
1549                 /*
1550                  * Use 64bits TX desc chain format.
1551                  *
1552                  * The first TX desc of the chain, which is setup here,
1553                  * is just a symbol TX desc carrying no payload.
1554                  */
1555                 flag64 = JME_TD_64BIT;
1556                 desc->buflen = 0;
1557                 desc->addr_lo = 0;
1558
1559                 /* No effective TX desc is consumed */
1560                 i = 0;
1561         } else {
1562                 /*
1563                  * Use 32bits TX desc chain format.
1564                  *
1565                  * The first TX desc of the chain, which is setup here,
1566                  * is an effective TX desc carrying the first segment of
1567                  * the mbuf chain.
1568                  */
1569                 flag64 = 0;
1570                 desc->buflen = htole32(txsegs[0].ds_len);
1571                 desc->addr_lo = htole32(JME_ADDR_LO(txsegs[0].ds_addr));
1572
1573                 /* One effective TX desc is consumed */
1574                 i = 1;
1575         }
1576         sc->jme_cdata.jme_tx_cnt++;
1577         KKASSERT(sc->jme_cdata.jme_tx_cnt - i <
1578                  sc->jme_tx_desc_cnt - JME_TXD_RSVD);
1579         JME_DESC_INC(prod, sc->jme_tx_desc_cnt);
1580
1581         txd->tx_ndesc = 1 - i;
1582         for (; i < nsegs; i++) {
1583                 desc = &sc->jme_cdata.jme_tx_ring[prod];
1584                 desc->flags = htole32(JME_TD_OWN | flag64);
1585                 desc->buflen = htole32(txsegs[i].ds_len);
1586                 desc->addr_hi = htole32(JME_ADDR_HI(txsegs[i].ds_addr));
1587                 desc->addr_lo = htole32(JME_ADDR_LO(txsegs[i].ds_addr));
1588
1589                 sc->jme_cdata.jme_tx_cnt++;
1590                 KKASSERT(sc->jme_cdata.jme_tx_cnt <=
1591                          sc->jme_tx_desc_cnt - JME_TXD_RSVD);
1592                 JME_DESC_INC(prod, sc->jme_tx_desc_cnt);
1593         }
1594
1595         /* Update producer index. */
1596         sc->jme_cdata.jme_tx_prod = prod;
1597         /*
1598          * Finally request interrupt and give the first descriptor
1599          * owenership to hardware.
1600          */
1601         desc = txd->tx_desc;
1602         desc->flags |= htole32(JME_TD_OWN | JME_TD_INTR);
1603
1604         txd->tx_m = m;
1605         txd->tx_ndesc += nsegs;
1606
1607         return 0;
1608 fail:
1609         m_freem(*m_head);
1610         *m_head = NULL;
1611         return error;
1612 }
1613
1614 static void
1615 jme_start(struct ifnet *ifp)
1616 {
1617         struct jme_softc *sc = ifp->if_softc;
1618         struct mbuf *m_head;
1619         int enq = 0;
1620
1621         ASSERT_SERIALIZED(&sc->jme_cdata.jme_tx_serialize);
1622
1623         if ((sc->jme_flags & JME_FLAG_LINK) == 0) {
1624                 ifq_purge(&ifp->if_snd);
1625                 return;
1626         }
1627
1628         if ((ifp->if_flags & (IFF_RUNNING | IFF_OACTIVE)) != IFF_RUNNING)
1629                 return;
1630
1631         if (sc->jme_cdata.jme_tx_cnt >= JME_TX_DESC_HIWAT(sc))
1632                 jme_txeof(sc);
1633
1634         while (!ifq_is_empty(&ifp->if_snd)) {
1635                 /*
1636                  * Check number of available TX descs, always
1637                  * leave JME_TXD_RSVD free TX descs.
1638                  */
1639                 if (sc->jme_cdata.jme_tx_cnt + sc->jme_txd_spare >
1640                     sc->jme_tx_desc_cnt - JME_TXD_RSVD) {
1641                         ifp->if_flags |= IFF_OACTIVE;
1642                         break;
1643                 }
1644
1645                 m_head = ifq_dequeue(&ifp->if_snd, NULL);
1646                 if (m_head == NULL)
1647                         break;
1648
1649                 /*
1650                  * Pack the data into the transmit ring. If we
1651                  * don't have room, set the OACTIVE flag and wait
1652                  * for the NIC to drain the ring.
1653                  */
1654                 if (jme_encap(sc, &m_head)) {
1655                         KKASSERT(m_head == NULL);
1656                         ifp->if_oerrors++;
1657                         ifp->if_flags |= IFF_OACTIVE;
1658                         break;
1659                 }
1660                 enq++;
1661
1662                 /*
1663                  * If there's a BPF listener, bounce a copy of this frame
1664                  * to him.
1665                  */
1666                 ETHER_BPF_MTAP(ifp, m_head);
1667         }
1668
1669         if (enq > 0) {
1670                 /*
1671                  * Reading TXCSR takes very long time under heavy load
1672                  * so cache TXCSR value and writes the ORed value with
1673                  * the kick command to the TXCSR. This saves one register
1674                  * access cycle.
1675                  */
1676                 CSR_WRITE_4(sc, JME_TXCSR, sc->jme_txcsr | TXCSR_TX_ENB |
1677                     TXCSR_TXQ_N_START(TXCSR_TXQ0));
1678                 /* Set a timeout in case the chip goes out to lunch. */
1679                 ifp->if_timer = JME_TX_TIMEOUT;
1680         }
1681 }
1682
1683 static void
1684 jme_watchdog(struct ifnet *ifp)
1685 {
1686         struct jme_softc *sc = ifp->if_softc;
1687
1688         ASSERT_IFNET_SERIALIZED_ALL(ifp);
1689
1690         if ((sc->jme_flags & JME_FLAG_LINK) == 0) {
1691                 if_printf(ifp, "watchdog timeout (missed link)\n");
1692                 ifp->if_oerrors++;
1693                 jme_init(sc);
1694                 return;
1695         }
1696
1697         jme_txeof(sc);
1698         if (sc->jme_cdata.jme_tx_cnt == 0) {
1699                 if_printf(ifp, "watchdog timeout (missed Tx interrupts) "
1700                           "-- recovering\n");
1701                 if (!ifq_is_empty(&ifp->if_snd))
1702                         if_devstart(ifp);
1703                 return;
1704         }
1705
1706         if_printf(ifp, "watchdog timeout\n");
1707         ifp->if_oerrors++;
1708         jme_init(sc);
1709         if (!ifq_is_empty(&ifp->if_snd))
1710                 if_devstart(ifp);
1711 }
1712
1713 static int
1714 jme_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data, struct ucred *cr)
1715 {
1716         struct jme_softc *sc = ifp->if_softc;
1717         struct mii_data *mii = device_get_softc(sc->jme_miibus);
1718         struct ifreq *ifr = (struct ifreq *)data;
1719         int error = 0, mask;
1720
1721         ASSERT_IFNET_SERIALIZED_ALL(ifp);
1722
1723         switch (cmd) {
1724         case SIOCSIFMTU:
1725                 if (ifr->ifr_mtu < ETHERMIN || ifr->ifr_mtu > JME_JUMBO_MTU ||
1726                     (!(sc->jme_caps & JME_CAP_JUMBO) &&
1727                      ifr->ifr_mtu > JME_MAX_MTU)) {
1728                         error = EINVAL;
1729                         break;
1730                 }
1731
1732                 if (ifp->if_mtu != ifr->ifr_mtu) {
1733                         /*
1734                          * No special configuration is required when interface
1735                          * MTU is changed but availability of Tx checksum
1736                          * offload should be chcked against new MTU size as
1737                          * FIFO size is just 2K.
1738                          */
1739                         if (ifr->ifr_mtu >= JME_TX_FIFO_SIZE) {
1740                                 ifp->if_capenable &= ~IFCAP_TXCSUM;
1741                                 ifp->if_hwassist &= ~JME_CSUM_FEATURES;
1742                         }
1743                         ifp->if_mtu = ifr->ifr_mtu;
1744                         if (ifp->if_flags & IFF_RUNNING)
1745                                 jme_init(sc);
1746                 }
1747                 break;
1748
1749         case SIOCSIFFLAGS:
1750                 if (ifp->if_flags & IFF_UP) {
1751                         if (ifp->if_flags & IFF_RUNNING) {
1752                                 if ((ifp->if_flags ^ sc->jme_if_flags) &
1753                                     (IFF_PROMISC | IFF_ALLMULTI))
1754                                         jme_set_filter(sc);
1755                         } else {
1756                                 jme_init(sc);
1757                         }
1758                 } else {
1759                         if (ifp->if_flags & IFF_RUNNING)
1760                                 jme_stop(sc);
1761                 }
1762                 sc->jme_if_flags = ifp->if_flags;
1763                 break;
1764
1765         case SIOCADDMULTI:
1766         case SIOCDELMULTI:
1767                 if (ifp->if_flags & IFF_RUNNING)
1768                         jme_set_filter(sc);
1769                 break;
1770
1771         case SIOCSIFMEDIA:
1772         case SIOCGIFMEDIA:
1773                 error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, cmd);
1774                 break;
1775
1776         case SIOCSIFCAP:
1777                 mask = ifr->ifr_reqcap ^ ifp->if_capenable;
1778
1779                 if ((mask & IFCAP_TXCSUM) && ifp->if_mtu < JME_TX_FIFO_SIZE) {
1780                         ifp->if_capenable ^= IFCAP_TXCSUM;
1781                         if (IFCAP_TXCSUM & ifp->if_capenable)
1782                                 ifp->if_hwassist |= JME_CSUM_FEATURES;
1783                         else
1784                                 ifp->if_hwassist &= ~JME_CSUM_FEATURES;
1785                 }
1786                 if (mask & IFCAP_RXCSUM) {
1787                         uint32_t reg;
1788
1789                         ifp->if_capenable ^= IFCAP_RXCSUM;
1790                         reg = CSR_READ_4(sc, JME_RXMAC);
1791                         reg &= ~RXMAC_CSUM_ENB;
1792                         if (ifp->if_capenable & IFCAP_RXCSUM)
1793                                 reg |= RXMAC_CSUM_ENB;
1794                         CSR_WRITE_4(sc, JME_RXMAC, reg);
1795                 }
1796
1797                 if (mask & IFCAP_VLAN_HWTAGGING) {
1798                         ifp->if_capenable ^= IFCAP_VLAN_HWTAGGING;
1799                         jme_set_vlan(sc);
1800                 }
1801
1802                 if (mask & IFCAP_RSS)
1803                         ifp->if_capenable ^= IFCAP_RSS;
1804                 break;
1805
1806         default:
1807                 error = ether_ioctl(ifp, cmd, data);
1808                 break;
1809         }
1810         return (error);
1811 }
1812
1813 static void
1814 jme_mac_config(struct jme_softc *sc)
1815 {
1816         struct mii_data *mii;
1817         uint32_t ghc, rxmac, txmac, txpause, gp1;
1818         int phyconf = JMPHY_CONF_DEFFIFO, hdx = 0;
1819
1820         mii = device_get_softc(sc->jme_miibus);
1821
1822         CSR_WRITE_4(sc, JME_GHC, GHC_RESET);
1823         DELAY(10);
1824         CSR_WRITE_4(sc, JME_GHC, 0);
1825         ghc = 0;
1826         rxmac = CSR_READ_4(sc, JME_RXMAC);
1827         rxmac &= ~RXMAC_FC_ENB;
1828         txmac = CSR_READ_4(sc, JME_TXMAC);
1829         txmac &= ~(TXMAC_CARRIER_EXT | TXMAC_FRAME_BURST);
1830         txpause = CSR_READ_4(sc, JME_TXPFC);
1831         txpause &= ~TXPFC_PAUSE_ENB;
1832         if ((IFM_OPTIONS(mii->mii_media_active) & IFM_FDX) != 0) {
1833                 ghc |= GHC_FULL_DUPLEX;
1834                 rxmac &= ~RXMAC_COLL_DET_ENB;
1835                 txmac &= ~(TXMAC_COLL_ENB | TXMAC_CARRIER_SENSE |
1836                     TXMAC_BACKOFF | TXMAC_CARRIER_EXT |
1837                     TXMAC_FRAME_BURST);
1838 #ifdef notyet
1839                 if ((IFM_OPTIONS(mii->mii_media_active) & IFM_ETH_TXPAUSE) != 0)
1840                         txpause |= TXPFC_PAUSE_ENB;
1841                 if ((IFM_OPTIONS(mii->mii_media_active) & IFM_ETH_RXPAUSE) != 0)
1842                         rxmac |= RXMAC_FC_ENB;
1843 #endif
1844                 /* Disable retry transmit timer/retry limit. */
1845                 CSR_WRITE_4(sc, JME_TXTRHD, CSR_READ_4(sc, JME_TXTRHD) &
1846                     ~(TXTRHD_RT_PERIOD_ENB | TXTRHD_RT_LIMIT_ENB));
1847         } else {
1848                 rxmac |= RXMAC_COLL_DET_ENB;
1849                 txmac |= TXMAC_COLL_ENB | TXMAC_CARRIER_SENSE | TXMAC_BACKOFF;
1850                 /* Enable retry transmit timer/retry limit. */
1851                 CSR_WRITE_4(sc, JME_TXTRHD, CSR_READ_4(sc, JME_TXTRHD) |
1852                     TXTRHD_RT_PERIOD_ENB | TXTRHD_RT_LIMIT_ENB);
1853         }
1854
1855         /*
1856          * Reprogram Tx/Rx MACs with resolved speed/duplex.
1857          */
1858         gp1 = CSR_READ_4(sc, JME_GPREG1);
1859         gp1 &= ~GPREG1_WA_HDX;
1860
1861         if ((IFM_OPTIONS(mii->mii_media_active) & IFM_FDX) == 0)
1862                 hdx = 1;
1863
1864         switch (IFM_SUBTYPE(mii->mii_media_active)) {
1865         case IFM_10_T:
1866                 ghc |= GHC_SPEED_10 | sc->jme_clksrc;
1867                 if (hdx)
1868                         gp1 |= GPREG1_WA_HDX;
1869                 break;
1870
1871         case IFM_100_TX:
1872                 ghc |= GHC_SPEED_100 | sc->jme_clksrc;
1873                 if (hdx)
1874                         gp1 |= GPREG1_WA_HDX;
1875
1876                 /*
1877                  * Use extended FIFO depth to workaround CRC errors
1878                  * emitted by chips before JMC250B
1879                  */
1880                 phyconf = JMPHY_CONF_EXTFIFO;
1881                 break;
1882
1883         case IFM_1000_T:
1884                 if (sc->jme_caps & JME_CAP_FASTETH)
1885                         break;
1886
1887                 ghc |= GHC_SPEED_1000 | sc->jme_clksrc_1000;
1888                 if (hdx)
1889                         txmac |= TXMAC_CARRIER_EXT | TXMAC_FRAME_BURST;
1890                 break;
1891
1892         default:
1893                 break;
1894         }
1895         CSR_WRITE_4(sc, JME_GHC, ghc);
1896         CSR_WRITE_4(sc, JME_RXMAC, rxmac);
1897         CSR_WRITE_4(sc, JME_TXMAC, txmac);
1898         CSR_WRITE_4(sc, JME_TXPFC, txpause);
1899
1900         if (sc->jme_workaround & JME_WA_EXTFIFO) {
1901                 jme_miibus_writereg(sc->jme_dev, sc->jme_phyaddr,
1902                                     JMPHY_CONF, phyconf);
1903         }
1904         if (sc->jme_workaround & JME_WA_HDX)
1905                 CSR_WRITE_4(sc, JME_GPREG1, gp1);
1906 }
1907
1908 static void
1909 jme_intr(void *xsc)
1910 {
1911         struct jme_softc *sc = xsc;
1912         struct ifnet *ifp = &sc->arpcom.ac_if;
1913         uint32_t status;
1914         int r;
1915
1916         ASSERT_SERIALIZED(&sc->jme_serialize);
1917
1918         status = CSR_READ_4(sc, JME_INTR_REQ_STATUS);
1919         if (status == 0 || status == 0xFFFFFFFF)
1920                 return;
1921
1922         /* Disable interrupts. */
1923         CSR_WRITE_4(sc, JME_INTR_MASK_CLR, JME_INTRS);
1924
1925         status = CSR_READ_4(sc, JME_INTR_STATUS);
1926         if ((status & JME_INTRS) == 0 || status == 0xFFFFFFFF)
1927                 goto back;
1928
1929         /* Reset PCC counter/timer and Ack interrupts. */
1930         status &= ~(INTR_TXQ_COMP | INTR_RXQ_COMP);
1931
1932         if (status & (INTR_TXQ_COAL | INTR_TXQ_COAL_TO))
1933                 status |= INTR_TXQ_COAL | INTR_TXQ_COAL_TO | INTR_TXQ_COMP;
1934
1935         for (r = 0; r < sc->jme_rx_ring_cnt; ++r) {
1936                 if (status & jme_rx_status[r].jme_coal) {
1937                         status |= jme_rx_status[r].jme_coal |
1938                                   jme_rx_status[r].jme_comp;
1939                 }
1940         }
1941
1942         CSR_WRITE_4(sc, JME_INTR_STATUS, status);
1943
1944         if (ifp->if_flags & IFF_RUNNING) {
1945                 if (status & (INTR_RXQ_COAL | INTR_RXQ_COAL_TO))
1946                         jme_rx_intr(sc, status);
1947
1948                 if (status & INTR_RXQ_DESC_EMPTY) {
1949                         /*
1950                          * Notify hardware availability of new Rx buffers.
1951                          * Reading RXCSR takes very long time under heavy
1952                          * load so cache RXCSR value and writes the ORed
1953                          * value with the kick command to the RXCSR. This
1954                          * saves one register access cycle.
1955                          */
1956                         CSR_WRITE_4(sc, JME_RXCSR, sc->jme_rxcsr |
1957                             RXCSR_RX_ENB | RXCSR_RXQ_START);
1958                 }
1959
1960                 if (status & (INTR_TXQ_COAL | INTR_TXQ_COAL_TO)) {
1961                         lwkt_serialize_enter(&sc->jme_cdata.jme_tx_serialize);
1962                         jme_txeof(sc);
1963                         if (!ifq_is_empty(&ifp->if_snd))
1964                                 if_devstart(ifp);
1965                         lwkt_serialize_exit(&sc->jme_cdata.jme_tx_serialize);
1966                 }
1967         }
1968 back:
1969         /* Reenable interrupts. */
1970         CSR_WRITE_4(sc, JME_INTR_MASK_SET, JME_INTRS);
1971 }
1972
1973 static void
1974 jme_txeof(struct jme_softc *sc)
1975 {
1976         struct ifnet *ifp = &sc->arpcom.ac_if;
1977         struct jme_txdesc *txd;
1978         uint32_t status;
1979         int cons, nsegs;
1980
1981         cons = sc->jme_cdata.jme_tx_cons;
1982         if (cons == sc->jme_cdata.jme_tx_prod)
1983                 return;
1984
1985         /*
1986          * Go through our Tx list and free mbufs for those
1987          * frames which have been transmitted.
1988          */
1989         while (cons != sc->jme_cdata.jme_tx_prod) {
1990                 txd = &sc->jme_cdata.jme_txdesc[cons];
1991                 KASSERT(txd->tx_m != NULL,
1992                         ("%s: freeing NULL mbuf!\n", __func__));
1993
1994                 status = le32toh(txd->tx_desc->flags);
1995                 if ((status & JME_TD_OWN) == JME_TD_OWN)
1996                         break;
1997
1998                 if (status & (JME_TD_TMOUT | JME_TD_RETRY_EXP)) {
1999                         ifp->if_oerrors++;
2000                 } else {
2001                         ifp->if_opackets++;
2002                         if (status & JME_TD_COLLISION) {
2003                                 ifp->if_collisions +=
2004                                     le32toh(txd->tx_desc->buflen) &
2005                                     JME_TD_BUF_LEN_MASK;
2006                         }
2007                 }
2008
2009                 /*
2010                  * Only the first descriptor of multi-descriptor
2011                  * transmission is updated so driver have to skip entire
2012                  * chained buffers for the transmiited frame. In other
2013                  * words, JME_TD_OWN bit is valid only at the first
2014                  * descriptor of a multi-descriptor transmission.
2015                  */
2016                 for (nsegs = 0; nsegs < txd->tx_ndesc; nsegs++) {
2017                         sc->jme_cdata.jme_tx_ring[cons].flags = 0;
2018                         JME_DESC_INC(cons, sc->jme_tx_desc_cnt);
2019                 }
2020
2021                 /* Reclaim transferred mbufs. */
2022                 bus_dmamap_unload(sc->jme_cdata.jme_tx_tag, txd->tx_dmamap);
2023                 m_freem(txd->tx_m);
2024                 txd->tx_m = NULL;
2025                 sc->jme_cdata.jme_tx_cnt -= txd->tx_ndesc;
2026                 KASSERT(sc->jme_cdata.jme_tx_cnt >= 0,
2027                         ("%s: Active Tx desc counter was garbled\n", __func__));
2028                 txd->tx_ndesc = 0;
2029         }
2030         sc->jme_cdata.jme_tx_cons = cons;
2031
2032         if (sc->jme_cdata.jme_tx_cnt == 0)
2033                 ifp->if_timer = 0;
2034
2035         if (sc->jme_cdata.jme_tx_cnt + sc->jme_txd_spare <=
2036             sc->jme_tx_desc_cnt - JME_TXD_RSVD)
2037                 ifp->if_flags &= ~IFF_OACTIVE;
2038 }
2039
2040 static __inline void
2041 jme_discard_rxbufs(struct jme_softc *sc, int ring, int cons, int count)
2042 {
2043         struct jme_rxdata *rdata = &sc->jme_cdata.jme_rx_data[ring];
2044         int i;
2045
2046         for (i = 0; i < count; ++i) {
2047                 struct jme_desc *desc = &rdata->jme_rx_ring[cons];
2048
2049                 desc->flags = htole32(JME_RD_OWN | JME_RD_INTR | JME_RD_64BIT);
2050                 desc->buflen = htole32(MCLBYTES);
2051                 JME_DESC_INC(cons, sc->jme_rx_desc_cnt);
2052         }
2053 }
2054
2055 static __inline struct pktinfo *
2056 jme_pktinfo(struct pktinfo *pi, uint32_t flags)
2057 {
2058         if (flags & JME_RD_IPV4)
2059                 pi->pi_netisr = NETISR_IP;
2060         else if (flags & JME_RD_IPV6)
2061                 pi->pi_netisr = NETISR_IPV6;
2062         else
2063                 return NULL;
2064
2065         pi->pi_flags = 0;
2066         pi->pi_l3proto = IPPROTO_UNKNOWN;
2067
2068         if (flags & JME_RD_MORE_FRAG)
2069                 pi->pi_flags |= PKTINFO_FLAG_FRAG;
2070         else if (flags & JME_RD_TCP)
2071                 pi->pi_l3proto = IPPROTO_TCP;
2072         else if (flags & JME_RD_UDP)
2073                 pi->pi_l3proto = IPPROTO_UDP;
2074         else
2075                 pi = NULL;
2076         return pi;
2077 }
2078
2079 /* Receive a frame. */
2080 static void
2081 jme_rxpkt(struct jme_softc *sc, int ring)
2082 {
2083         struct ifnet *ifp = &sc->arpcom.ac_if;
2084         struct jme_rxdata *rdata = &sc->jme_cdata.jme_rx_data[ring];
2085         struct jme_desc *desc;
2086         struct jme_rxdesc *rxd;
2087         struct mbuf *mp, *m;
2088         uint32_t flags, status, hash, hashinfo;
2089         int cons, count, nsegs;
2090
2091         cons = rdata->jme_rx_cons;
2092         desc = &rdata->jme_rx_ring[cons];
2093         flags = le32toh(desc->flags);
2094         status = le32toh(desc->buflen);
2095         hash = le32toh(desc->addr_hi);
2096         hashinfo = le32toh(desc->addr_lo);
2097         nsegs = JME_RX_NSEGS(status);
2098
2099         JME_RSS_DPRINTF(sc, 15, "ring%d, flags 0x%08x, "
2100                         "hash 0x%08x, hash info 0x%08x\n",
2101                         ring, flags, hash, hashinfo);
2102
2103         if (status & JME_RX_ERR_STAT) {
2104                 ifp->if_ierrors++;
2105                 jme_discard_rxbufs(sc, ring, cons, nsegs);
2106 #ifdef JME_SHOW_ERRORS
2107                 device_printf(sc->jme_dev, "%s : receive error = 0x%b\n",
2108                     __func__, JME_RX_ERR(status), JME_RX_ERR_BITS);
2109 #endif
2110                 rdata->jme_rx_cons += nsegs;
2111                 rdata->jme_rx_cons %= sc->jme_rx_desc_cnt;
2112                 return;
2113         }
2114
2115         rdata->jme_rxlen = JME_RX_BYTES(status) - JME_RX_PAD_BYTES;
2116         for (count = 0; count < nsegs; count++,
2117              JME_DESC_INC(cons, sc->jme_rx_desc_cnt)) {
2118                 rxd = &rdata->jme_rxdesc[cons];
2119                 mp = rxd->rx_m;
2120
2121                 /* Add a new receive buffer to the ring. */
2122                 if (jme_newbuf(sc, ring, rxd, 0) != 0) {
2123                         ifp->if_iqdrops++;
2124                         /* Reuse buffer. */
2125                         jme_discard_rxbufs(sc, ring, cons, nsegs - count);
2126                         if (rdata->jme_rxhead != NULL) {
2127                                 m_freem(rdata->jme_rxhead);
2128                                 JME_RXCHAIN_RESET(sc, ring);
2129                         }
2130                         break;
2131                 }
2132
2133                 /*
2134                  * Assume we've received a full sized frame.
2135                  * Actual size is fixed when we encounter the end of
2136                  * multi-segmented frame.
2137                  */
2138                 mp->m_len = MCLBYTES;
2139
2140                 /* Chain received mbufs. */
2141                 if (rdata->jme_rxhead == NULL) {
2142                         rdata->jme_rxhead = mp;
2143                         rdata->jme_rxtail = mp;
2144                 } else {
2145                         /*
2146                          * Receive processor can receive a maximum frame
2147                          * size of 65535 bytes.
2148                          */
2149                         rdata->jme_rxtail->m_next = mp;
2150                         rdata->jme_rxtail = mp;
2151                 }
2152
2153                 if (count == nsegs - 1) {
2154                         struct pktinfo pi0, *pi;
2155
2156                         /* Last desc. for this frame. */
2157                         m = rdata->jme_rxhead;
2158                         m->m_pkthdr.len = rdata->jme_rxlen;
2159                         if (nsegs > 1) {
2160                                 /* Set first mbuf size. */
2161                                 m->m_len = MCLBYTES - JME_RX_PAD_BYTES;
2162                                 /* Set last mbuf size. */
2163                                 mp->m_len = rdata->jme_rxlen -
2164                                     ((MCLBYTES - JME_RX_PAD_BYTES) +
2165                                     (MCLBYTES * (nsegs - 2)));
2166                         } else {
2167                                 m->m_len = rdata->jme_rxlen;
2168                         }
2169                         m->m_pkthdr.rcvif = ifp;
2170
2171                         /*
2172                          * Account for 10bytes auto padding which is used
2173                          * to align IP header on 32bit boundary. Also note,
2174                          * CRC bytes is automatically removed by the
2175                          * hardware.
2176                          */
2177                         m->m_data += JME_RX_PAD_BYTES;
2178
2179                         /* Set checksum information. */
2180                         if ((ifp->if_capenable & IFCAP_RXCSUM) &&
2181                             (flags & JME_RD_IPV4)) {
2182                                 m->m_pkthdr.csum_flags |= CSUM_IP_CHECKED;
2183                                 if (flags & JME_RD_IPCSUM)
2184                                         m->m_pkthdr.csum_flags |= CSUM_IP_VALID;
2185                                 if ((flags & JME_RD_MORE_FRAG) == 0 &&
2186                                     ((flags & (JME_RD_TCP | JME_RD_TCPCSUM)) ==
2187                                      (JME_RD_TCP | JME_RD_TCPCSUM) ||
2188                                      (flags & (JME_RD_UDP | JME_RD_UDPCSUM)) ==
2189                                      (JME_RD_UDP | JME_RD_UDPCSUM))) {
2190                                         m->m_pkthdr.csum_flags |=
2191                                             CSUM_DATA_VALID | CSUM_PSEUDO_HDR;
2192                                         m->m_pkthdr.csum_data = 0xffff;
2193                                 }
2194                         }
2195
2196                         /* Check for VLAN tagged packets. */
2197                         if ((ifp->if_capenable & IFCAP_VLAN_HWTAGGING) &&
2198                             (flags & JME_RD_VLAN_TAG)) {
2199                                 m->m_pkthdr.ether_vlantag =
2200                                     flags & JME_RD_VLAN_MASK;
2201                                 m->m_flags |= M_VLANTAG;
2202                         }
2203
2204                         ifp->if_ipackets++;
2205
2206                         if (ifp->if_capenable & IFCAP_RSS)
2207                                 pi = jme_pktinfo(&pi0, flags);
2208                         else
2209                                 pi = NULL;
2210
2211                         if (pi != NULL &&
2212                             (hashinfo & JME_RD_HASH_FN_MASK) != 0) {
2213                                 m->m_flags |= M_HASH;
2214                                 m->m_pkthdr.hash = toeplitz_hash(hash);
2215                         }
2216
2217 #ifdef JME_RSS_DEBUG
2218                         if (pi != NULL) {
2219                                 JME_RSS_DPRINTF(sc, 10,
2220                                     "isr %d flags %08x, l3 %d %s\n",
2221                                     pi->pi_netisr, pi->pi_flags,
2222                                     pi->pi_l3proto,
2223                                     (m->m_flags & M_HASH) ? "hash" : "");
2224                         }
2225 #endif
2226
2227                         /* Pass it on. */
2228                         ether_input_pkt(ifp, m, pi);
2229
2230                         /* Reset mbuf chains. */
2231                         JME_RXCHAIN_RESET(sc, ring);
2232 #ifdef JME_RSS_DEBUG
2233                         sc->jme_rx_ring_pkt[ring]++;
2234 #endif
2235                 }
2236         }
2237
2238         rdata->jme_rx_cons += nsegs;
2239         rdata->jme_rx_cons %= sc->jme_rx_desc_cnt;
2240 }
2241
2242 static void
2243 jme_rxeof(struct jme_softc *sc, int ring, int count)
2244 {
2245         struct jme_rxdata *rdata = &sc->jme_cdata.jme_rx_data[ring];
2246         struct jme_desc *desc;
2247         int nsegs, pktlen;
2248
2249         for (;;) {
2250 #ifdef DEVICE_POLLING
2251                 if (count >= 0 && count-- == 0)
2252                         break;
2253 #endif
2254                 desc = &rdata->jme_rx_ring[rdata->jme_rx_cons];
2255                 if ((le32toh(desc->flags) & JME_RD_OWN) == JME_RD_OWN)
2256                         break;
2257                 if ((le32toh(desc->buflen) & JME_RD_VALID) == 0)
2258                         break;
2259
2260                 /*
2261                  * Check number of segments against received bytes.
2262                  * Non-matching value would indicate that hardware
2263                  * is still trying to update Rx descriptors. I'm not
2264                  * sure whether this check is needed.
2265                  */
2266                 nsegs = JME_RX_NSEGS(le32toh(desc->buflen));
2267                 pktlen = JME_RX_BYTES(le32toh(desc->buflen));
2268                 if (nsegs != howmany(pktlen, MCLBYTES)) {
2269                         if_printf(&sc->arpcom.ac_if, "RX fragment count(%d) "
2270                                   "and packet size(%d) mismach\n",
2271                                   nsegs, pktlen);
2272                         break;
2273                 }
2274
2275                 /* Received a frame. */
2276                 jme_rxpkt(sc, ring);
2277         }
2278 }
2279
2280 static void
2281 jme_tick(void *xsc)
2282 {
2283         struct jme_softc *sc = xsc;
2284         struct ifnet *ifp = &sc->arpcom.ac_if;
2285         struct mii_data *mii = device_get_softc(sc->jme_miibus);
2286
2287         ifnet_serialize_all(ifp);
2288
2289         mii_tick(mii);
2290         callout_reset(&sc->jme_tick_ch, hz, jme_tick, sc);
2291
2292         ifnet_deserialize_all(ifp);
2293 }
2294
2295 static void
2296 jme_reset(struct jme_softc *sc)
2297 {
2298         uint32_t val;
2299
2300         /* Make sure that TX and RX are stopped */
2301         jme_stop_tx(sc);
2302         jme_stop_rx(sc);
2303
2304         /* Start reset */
2305         CSR_WRITE_4(sc, JME_GHC, GHC_RESET);
2306         DELAY(20);
2307
2308         /*
2309          * Hold reset bit before stop reset
2310          */
2311
2312         /* Disable TXMAC and TXOFL clock sources */
2313         CSR_WRITE_4(sc, JME_GHC, GHC_RESET);
2314         /* Disable RXMAC clock source */
2315         val = CSR_READ_4(sc, JME_GPREG1);
2316         CSR_WRITE_4(sc, JME_GPREG1, val | GPREG1_DIS_RXMAC_CLKSRC);
2317         /* Flush */
2318         CSR_READ_4(sc, JME_GHC);
2319
2320         /* Stop reset */
2321         CSR_WRITE_4(sc, JME_GHC, 0);
2322         /* Flush */
2323         CSR_READ_4(sc, JME_GHC);
2324
2325         /*
2326          * Clear reset bit after stop reset
2327          */
2328
2329         /* Enable TXMAC and TXOFL clock sources */
2330         CSR_WRITE_4(sc, JME_GHC, GHC_TXOFL_CLKSRC | GHC_TXMAC_CLKSRC);
2331         /* Enable RXMAC clock source */
2332         val = CSR_READ_4(sc, JME_GPREG1);
2333         CSR_WRITE_4(sc, JME_GPREG1, val & ~GPREG1_DIS_RXMAC_CLKSRC);
2334         /* Flush */
2335         CSR_READ_4(sc, JME_GHC);
2336
2337         /* Disable TXMAC and TXOFL clock sources */
2338         CSR_WRITE_4(sc, JME_GHC, 0);
2339         /* Disable RXMAC clock source */
2340         val = CSR_READ_4(sc, JME_GPREG1);
2341         CSR_WRITE_4(sc, JME_GPREG1, val | GPREG1_DIS_RXMAC_CLKSRC);
2342         /* Flush */
2343         CSR_READ_4(sc, JME_GHC);
2344
2345         /* Enable TX and RX */
2346         val = CSR_READ_4(sc, JME_TXCSR);
2347         CSR_WRITE_4(sc, JME_TXCSR, val | TXCSR_TX_ENB);
2348         val = CSR_READ_4(sc, JME_RXCSR);
2349         CSR_WRITE_4(sc, JME_RXCSR, val | RXCSR_RX_ENB);
2350         /* Flush */
2351         CSR_READ_4(sc, JME_TXCSR);
2352         CSR_READ_4(sc, JME_RXCSR);
2353
2354         /* Enable TXMAC and TXOFL clock sources */
2355         CSR_WRITE_4(sc, JME_GHC, GHC_TXOFL_CLKSRC | GHC_TXMAC_CLKSRC);
2356         /* Eisable RXMAC clock source */
2357         val = CSR_READ_4(sc, JME_GPREG1);
2358         CSR_WRITE_4(sc, JME_GPREG1, val & ~GPREG1_DIS_RXMAC_CLKSRC);
2359         /* Flush */
2360         CSR_READ_4(sc, JME_GHC);
2361
2362         /* Stop TX and RX */
2363         jme_stop_tx(sc);
2364         jme_stop_rx(sc);
2365 }
2366
2367 static void
2368 jme_init(void *xsc)
2369 {
2370         struct jme_softc *sc = xsc;
2371         struct ifnet *ifp = &sc->arpcom.ac_if;
2372         struct mii_data *mii;
2373         uint8_t eaddr[ETHER_ADDR_LEN];
2374         bus_addr_t paddr;
2375         uint32_t reg;
2376         int error, r;
2377
2378         ASSERT_IFNET_SERIALIZED_ALL(ifp);
2379
2380         /*
2381          * Cancel any pending I/O.
2382          */
2383         jme_stop(sc);
2384
2385         /*
2386          * Reset the chip to a known state.
2387          */
2388         jme_reset(sc);
2389
2390         /*
2391          * Setup MSI/MSI-X vectors to interrupts mapping
2392          */
2393         jme_set_msinum(sc);
2394
2395         sc->jme_txd_spare =
2396         howmany(ifp->if_mtu + sizeof(struct ether_vlan_header), MCLBYTES);
2397         KKASSERT(sc->jme_txd_spare >= 1);
2398
2399         /*
2400          * If we use 64bit address mode for transmitting, each Tx request
2401          * needs one more symbol descriptor.
2402          */
2403         if (sc->jme_lowaddr != BUS_SPACE_MAXADDR_32BIT)
2404                 sc->jme_txd_spare += 1;
2405
2406         if (sc->jme_rx_ring_cnt > JME_NRXRING_MIN)
2407                 jme_enable_rss(sc);
2408         else
2409                 jme_disable_rss(sc);
2410
2411         /* Init RX descriptors */
2412         for (r = 0; r < sc->jme_rx_ring_cnt; ++r) {
2413                 error = jme_init_rx_ring(sc, r);
2414                 if (error) {
2415                         if_printf(ifp, "initialization failed: "
2416                                   "no memory for %dth RX ring.\n", r);
2417                         jme_stop(sc);
2418                         return;
2419                 }
2420         }
2421
2422         /* Init TX descriptors */
2423         jme_init_tx_ring(sc);
2424
2425         /* Initialize shadow status block. */
2426         jme_init_ssb(sc);
2427
2428         /* Reprogram the station address. */
2429         bcopy(IF_LLADDR(ifp), eaddr, ETHER_ADDR_LEN);
2430         CSR_WRITE_4(sc, JME_PAR0,
2431             eaddr[3] << 24 | eaddr[2] << 16 | eaddr[1] << 8 | eaddr[0]);
2432         CSR_WRITE_4(sc, JME_PAR1, eaddr[5] << 8 | eaddr[4]);
2433
2434         /*
2435          * Configure Tx queue.
2436          *  Tx priority queue weight value : 0
2437          *  Tx FIFO threshold for processing next packet : 16QW
2438          *  Maximum Tx DMA length : 512
2439          *  Allow Tx DMA burst.
2440          */
2441         sc->jme_txcsr = TXCSR_TXQ_N_SEL(TXCSR_TXQ0);
2442         sc->jme_txcsr |= TXCSR_TXQ_WEIGHT(TXCSR_TXQ_WEIGHT_MIN);
2443         sc->jme_txcsr |= TXCSR_FIFO_THRESH_16QW;
2444         sc->jme_txcsr |= sc->jme_tx_dma_size;
2445         sc->jme_txcsr |= TXCSR_DMA_BURST;
2446         CSR_WRITE_4(sc, JME_TXCSR, sc->jme_txcsr);
2447
2448         /* Set Tx descriptor counter. */
2449         CSR_WRITE_4(sc, JME_TXQDC, sc->jme_tx_desc_cnt);
2450
2451         /* Set Tx ring address to the hardware. */
2452         paddr = sc->jme_cdata.jme_tx_ring_paddr;
2453         CSR_WRITE_4(sc, JME_TXDBA_HI, JME_ADDR_HI(paddr));
2454         CSR_WRITE_4(sc, JME_TXDBA_LO, JME_ADDR_LO(paddr));
2455
2456         /* Configure TxMAC parameters. */
2457         reg = TXMAC_IFG1_DEFAULT | TXMAC_IFG2_DEFAULT | TXMAC_IFG_ENB;
2458         reg |= TXMAC_THRESH_1_PKT;
2459         reg |= TXMAC_CRC_ENB | TXMAC_PAD_ENB;
2460         CSR_WRITE_4(sc, JME_TXMAC, reg);
2461
2462         /*
2463          * Configure Rx queue.
2464          *  FIFO full threshold for transmitting Tx pause packet : 128T
2465          *  FIFO threshold for processing next packet : 128QW
2466          *  Rx queue 0 select
2467          *  Max Rx DMA length : 128
2468          *  Rx descriptor retry : 32
2469          *  Rx descriptor retry time gap : 256ns
2470          *  Don't receive runt/bad frame.
2471          */
2472         sc->jme_rxcsr = RXCSR_FIFO_FTHRESH_128T;
2473 #if 0
2474         /*
2475          * Since Rx FIFO size is 4K bytes, receiving frames larger
2476          * than 4K bytes will suffer from Rx FIFO overruns. So
2477          * decrease FIFO threshold to reduce the FIFO overruns for
2478          * frames larger than 4000 bytes.
2479          * For best performance of standard MTU sized frames use
2480          * maximum allowable FIFO threshold, 128QW.
2481          */
2482         if ((ifp->if_mtu + ETHER_HDR_LEN + EVL_ENCAPLEN + ETHER_CRC_LEN) >
2483             JME_RX_FIFO_SIZE)
2484                 sc->jme_rxcsr |= RXCSR_FIFO_THRESH_16QW;
2485         else
2486                 sc->jme_rxcsr |= RXCSR_FIFO_THRESH_128QW;
2487 #else
2488         /* Improve PCI Express compatibility */
2489         sc->jme_rxcsr |= RXCSR_FIFO_THRESH_16QW;
2490 #endif
2491         sc->jme_rxcsr |= sc->jme_rx_dma_size;
2492         sc->jme_rxcsr |= RXCSR_DESC_RT_CNT(RXCSR_DESC_RT_CNT_DEFAULT);
2493         sc->jme_rxcsr |= RXCSR_DESC_RT_GAP_256 & RXCSR_DESC_RT_GAP_MASK;
2494         /* XXX TODO DROP_BAD */
2495
2496         for (r = 0; r < sc->jme_rx_ring_cnt; ++r) {
2497                 CSR_WRITE_4(sc, JME_RXCSR, sc->jme_rxcsr | RXCSR_RXQ_N_SEL(r));
2498
2499                 /* Set Rx descriptor counter. */
2500                 CSR_WRITE_4(sc, JME_RXQDC, sc->jme_rx_desc_cnt);
2501
2502                 /* Set Rx ring address to the hardware. */
2503                 paddr = sc->jme_cdata.jme_rx_data[r].jme_rx_ring_paddr;
2504                 CSR_WRITE_4(sc, JME_RXDBA_HI, JME_ADDR_HI(paddr));
2505                 CSR_WRITE_4(sc, JME_RXDBA_LO, JME_ADDR_LO(paddr));
2506         }
2507
2508         /* Clear receive filter. */
2509         CSR_WRITE_4(sc, JME_RXMAC, 0);
2510
2511         /* Set up the receive filter. */
2512         jme_set_filter(sc);
2513         jme_set_vlan(sc);
2514
2515         /*
2516          * Disable all WOL bits as WOL can interfere normal Rx
2517          * operation. Also clear WOL detection status bits.
2518          */
2519         reg = CSR_READ_4(sc, JME_PMCS);
2520         reg &= ~PMCS_WOL_ENB_MASK;
2521         CSR_WRITE_4(sc, JME_PMCS, reg);
2522
2523         /*
2524          * Pad 10bytes right before received frame. This will greatly
2525          * help Rx performance on strict-alignment architectures as
2526          * it does not need to copy the frame to align the payload.
2527          */
2528         reg = CSR_READ_4(sc, JME_RXMAC);
2529         reg |= RXMAC_PAD_10BYTES;
2530
2531         if (ifp->if_capenable & IFCAP_RXCSUM)
2532                 reg |= RXMAC_CSUM_ENB;
2533         CSR_WRITE_4(sc, JME_RXMAC, reg);
2534
2535         /* Configure general purpose reg0 */
2536         reg = CSR_READ_4(sc, JME_GPREG0);
2537         reg &= ~GPREG0_PCC_UNIT_MASK;
2538         /* Set PCC timer resolution to micro-seconds unit. */
2539         reg |= GPREG0_PCC_UNIT_US;
2540         /*
2541          * Disable all shadow register posting as we have to read
2542          * JME_INTR_STATUS register in jme_intr. Also it seems
2543          * that it's hard to synchronize interrupt status between
2544          * hardware and software with shadow posting due to
2545          * requirements of bus_dmamap_sync(9).
2546          */
2547         reg |= GPREG0_SH_POST_DW7_DIS | GPREG0_SH_POST_DW6_DIS |
2548             GPREG0_SH_POST_DW5_DIS | GPREG0_SH_POST_DW4_DIS |
2549             GPREG0_SH_POST_DW3_DIS | GPREG0_SH_POST_DW2_DIS |
2550             GPREG0_SH_POST_DW1_DIS | GPREG0_SH_POST_DW0_DIS;
2551         /* Disable posting of DW0. */
2552         reg &= ~GPREG0_POST_DW0_ENB;
2553         /* Clear PME message. */
2554         reg &= ~GPREG0_PME_ENB;
2555         /* Set PHY address. */
2556         reg &= ~GPREG0_PHY_ADDR_MASK;
2557         reg |= sc->jme_phyaddr;
2558         CSR_WRITE_4(sc, JME_GPREG0, reg);
2559
2560         /* Configure Tx queue 0 packet completion coalescing. */
2561         jme_set_tx_coal(sc);
2562
2563         /* Configure Rx queue 0 packet completion coalescing. */
2564         jme_set_rx_coal(sc);
2565
2566         /* Configure shadow status block but don't enable posting. */
2567         paddr = sc->jme_cdata.jme_ssb_block_paddr;
2568         CSR_WRITE_4(sc, JME_SHBASE_ADDR_HI, JME_ADDR_HI(paddr));
2569         CSR_WRITE_4(sc, JME_SHBASE_ADDR_LO, JME_ADDR_LO(paddr));
2570
2571         /* Disable Timer 1 and Timer 2. */
2572         CSR_WRITE_4(sc, JME_TIMER1, 0);
2573         CSR_WRITE_4(sc, JME_TIMER2, 0);
2574
2575         /* Configure retry transmit period, retry limit value. */
2576         CSR_WRITE_4(sc, JME_TXTRHD,
2577             ((TXTRHD_RT_PERIOD_DEFAULT << TXTRHD_RT_PERIOD_SHIFT) &
2578             TXTRHD_RT_PERIOD_MASK) |
2579             ((TXTRHD_RT_LIMIT_DEFAULT << TXTRHD_RT_LIMIT_SHIFT) &
2580             TXTRHD_RT_LIMIT_SHIFT));
2581
2582 #ifdef DEVICE_POLLING
2583         if (!(ifp->if_flags & IFF_POLLING))
2584 #endif
2585         /* Initialize the interrupt mask. */
2586         CSR_WRITE_4(sc, JME_INTR_MASK_SET, JME_INTRS);
2587         CSR_WRITE_4(sc, JME_INTR_STATUS, 0xFFFFFFFF);
2588
2589         /*
2590          * Enabling Tx/Rx DMA engines and Rx queue processing is
2591          * done after detection of valid link in jme_miibus_statchg.
2592          */
2593         sc->jme_flags &= ~JME_FLAG_LINK;
2594
2595         /* Set the current media. */
2596         mii = device_get_softc(sc->jme_miibus);
2597         mii_mediachg(mii);
2598
2599         callout_reset(&sc->jme_tick_ch, hz, jme_tick, sc);
2600
2601         ifp->if_flags |= IFF_RUNNING;
2602         ifp->if_flags &= ~IFF_OACTIVE;
2603 }
2604
2605 static void
2606 jme_stop(struct jme_softc *sc)
2607 {
2608         struct ifnet *ifp = &sc->arpcom.ac_if;
2609         struct jme_txdesc *txd;
2610         struct jme_rxdesc *rxd;
2611         struct jme_rxdata *rdata;
2612         int i, r;
2613
2614         ASSERT_IFNET_SERIALIZED_ALL(ifp);
2615
2616         /*
2617          * Mark the interface down and cancel the watchdog timer.
2618          */
2619         ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
2620         ifp->if_timer = 0;
2621
2622         callout_stop(&sc->jme_tick_ch);
2623         sc->jme_flags &= ~JME_FLAG_LINK;
2624
2625         /*
2626          * Disable interrupts.
2627          */
2628         CSR_WRITE_4(sc, JME_INTR_MASK_CLR, JME_INTRS);
2629         CSR_WRITE_4(sc, JME_INTR_STATUS, 0xFFFFFFFF);
2630
2631         /* Disable updating shadow status block. */
2632         CSR_WRITE_4(sc, JME_SHBASE_ADDR_LO,
2633             CSR_READ_4(sc, JME_SHBASE_ADDR_LO) & ~SHBASE_POST_ENB);
2634
2635         /* Stop receiver, transmitter. */
2636         jme_stop_rx(sc);
2637         jme_stop_tx(sc);
2638
2639         /*
2640          * Free partial finished RX segments
2641          */
2642         for (r = 0; r < sc->jme_rx_ring_cnt; ++r) {
2643                 rdata = &sc->jme_cdata.jme_rx_data[r];
2644                 if (rdata->jme_rxhead != NULL)
2645                         m_freem(rdata->jme_rxhead);
2646                 JME_RXCHAIN_RESET(sc, r);
2647         }
2648
2649         /*
2650          * Free RX and TX mbufs still in the queues.
2651          */
2652         for (r = 0; r < sc->jme_rx_ring_cnt; ++r) {
2653                 rdata = &sc->jme_cdata.jme_rx_data[r];
2654                 for (i = 0; i < sc->jme_rx_desc_cnt; i++) {
2655                         rxd = &rdata->jme_rxdesc[i];
2656                         if (rxd->rx_m != NULL) {
2657                                 bus_dmamap_unload(rdata->jme_rx_tag,
2658                                                   rxd->rx_dmamap);
2659                                 m_freem(rxd->rx_m);
2660                                 rxd->rx_m = NULL;
2661                         }
2662                 }
2663         }
2664         for (i = 0; i < sc->jme_tx_desc_cnt; i++) {
2665                 txd = &sc->jme_cdata.jme_txdesc[i];
2666                 if (txd->tx_m != NULL) {
2667                         bus_dmamap_unload(sc->jme_cdata.jme_tx_tag,
2668                             txd->tx_dmamap);
2669                         m_freem(txd->tx_m);
2670                         txd->tx_m = NULL;
2671                         txd->tx_ndesc = 0;
2672                 }
2673         }
2674 }
2675
2676 static void
2677 jme_stop_tx(struct jme_softc *sc)
2678 {
2679         uint32_t reg;
2680         int i;
2681
2682         reg = CSR_READ_4(sc, JME_TXCSR);
2683         if ((reg & TXCSR_TX_ENB) == 0)
2684                 return;
2685         reg &= ~TXCSR_TX_ENB;
2686         CSR_WRITE_4(sc, JME_TXCSR, reg);
2687         for (i = JME_TIMEOUT; i > 0; i--) {
2688                 DELAY(1);
2689                 if ((CSR_READ_4(sc, JME_TXCSR) & TXCSR_TX_ENB) == 0)
2690                         break;
2691         }
2692         if (i == 0)
2693                 device_printf(sc->jme_dev, "stopping transmitter timeout!\n");
2694 }
2695
2696 static void
2697 jme_stop_rx(struct jme_softc *sc)
2698 {
2699         uint32_t reg;
2700         int i;
2701
2702         reg = CSR_READ_4(sc, JME_RXCSR);
2703         if ((reg & RXCSR_RX_ENB) == 0)
2704                 return;
2705         reg &= ~RXCSR_RX_ENB;
2706         CSR_WRITE_4(sc, JME_RXCSR, reg);
2707         for (i = JME_TIMEOUT; i > 0; i--) {
2708                 DELAY(1);
2709                 if ((CSR_READ_4(sc, JME_RXCSR) & RXCSR_RX_ENB) == 0)
2710                         break;
2711         }
2712         if (i == 0)
2713                 device_printf(sc->jme_dev, "stopping recevier timeout!\n");
2714 }
2715
2716 static void
2717 jme_init_tx_ring(struct jme_softc *sc)
2718 {
2719         struct jme_chain_data *cd;
2720         struct jme_txdesc *txd;
2721         int i;
2722
2723         sc->jme_cdata.jme_tx_prod = 0;
2724         sc->jme_cdata.jme_tx_cons = 0;
2725         sc->jme_cdata.jme_tx_cnt = 0;
2726
2727         cd = &sc->jme_cdata;
2728         bzero(cd->jme_tx_ring, JME_TX_RING_SIZE(sc));
2729         for (i = 0; i < sc->jme_tx_desc_cnt; i++) {
2730                 txd = &sc->jme_cdata.jme_txdesc[i];
2731                 txd->tx_m = NULL;
2732                 txd->tx_desc = &cd->jme_tx_ring[i];
2733                 txd->tx_ndesc = 0;
2734         }
2735 }
2736
2737 static void
2738 jme_init_ssb(struct jme_softc *sc)
2739 {
2740         struct jme_chain_data *cd;
2741
2742         cd = &sc->jme_cdata;
2743         bzero(cd->jme_ssb_block, JME_SSB_SIZE);
2744 }
2745
2746 static int
2747 jme_init_rx_ring(struct jme_softc *sc, int ring)
2748 {
2749         struct jme_rxdata *rdata = &sc->jme_cdata.jme_rx_data[ring];
2750         struct jme_rxdesc *rxd;
2751         int i;
2752
2753         KKASSERT(rdata->jme_rxhead == NULL &&
2754                  rdata->jme_rxtail == NULL &&
2755                  rdata->jme_rxlen == 0);
2756         rdata->jme_rx_cons = 0;
2757
2758         bzero(rdata->jme_rx_ring, JME_RX_RING_SIZE(sc));
2759         for (i = 0; i < sc->jme_rx_desc_cnt; i++) {
2760                 int error;
2761
2762                 rxd = &rdata->jme_rxdesc[i];
2763                 rxd->rx_m = NULL;
2764                 rxd->rx_desc = &rdata->jme_rx_ring[i];
2765                 error = jme_newbuf(sc, ring, rxd, 1);
2766                 if (error)
2767                         return error;
2768         }
2769         return 0;
2770 }
2771
2772 static int
2773 jme_newbuf(struct jme_softc *sc, int ring, struct jme_rxdesc *rxd, int init)
2774 {
2775         struct jme_rxdata *rdata = &sc->jme_cdata.jme_rx_data[ring];
2776         struct jme_desc *desc;
2777         struct mbuf *m;
2778         bus_dma_segment_t segs;
2779         bus_dmamap_t map;
2780         int error, nsegs;
2781
2782         m = m_getcl(init ? MB_WAIT : MB_DONTWAIT, MT_DATA, M_PKTHDR);
2783         if (m == NULL)
2784                 return ENOBUFS;
2785         /*
2786          * JMC250 has 64bit boundary alignment limitation so jme(4)
2787          * takes advantage of 10 bytes padding feature of hardware
2788          * in order not to copy entire frame to align IP header on
2789          * 32bit boundary.
2790          */
2791         m->m_len = m->m_pkthdr.len = MCLBYTES;
2792
2793         error = bus_dmamap_load_mbuf_segment(rdata->jme_rx_tag,
2794                         rdata->jme_rx_sparemap, m, &segs, 1, &nsegs,
2795                         BUS_DMA_NOWAIT);
2796         if (error) {
2797                 m_freem(m);
2798                 if (init)
2799                         if_printf(&sc->arpcom.ac_if, "can't load RX mbuf\n");
2800                 return error;
2801         }
2802
2803         if (rxd->rx_m != NULL) {
2804                 bus_dmamap_sync(rdata->jme_rx_tag, rxd->rx_dmamap,
2805                                 BUS_DMASYNC_POSTREAD);
2806                 bus_dmamap_unload(rdata->jme_rx_tag, rxd->rx_dmamap);
2807         }
2808         map = rxd->rx_dmamap;
2809         rxd->rx_dmamap = rdata->jme_rx_sparemap;
2810         rdata->jme_rx_sparemap = map;
2811         rxd->rx_m = m;
2812
2813         desc = rxd->rx_desc;
2814         desc->buflen = htole32(segs.ds_len);
2815         desc->addr_lo = htole32(JME_ADDR_LO(segs.ds_addr));
2816         desc->addr_hi = htole32(JME_ADDR_HI(segs.ds_addr));
2817         desc->flags = htole32(JME_RD_OWN | JME_RD_INTR | JME_RD_64BIT);
2818
2819         return 0;
2820 }
2821
2822 static void
2823 jme_set_vlan(struct jme_softc *sc)
2824 {
2825         struct ifnet *ifp = &sc->arpcom.ac_if;
2826         uint32_t reg;
2827
2828         ASSERT_IFNET_SERIALIZED_ALL(ifp);
2829
2830         reg = CSR_READ_4(sc, JME_RXMAC);
2831         reg &= ~RXMAC_VLAN_ENB;
2832         if (ifp->if_capenable & IFCAP_VLAN_HWTAGGING)
2833                 reg |= RXMAC_VLAN_ENB;
2834         CSR_WRITE_4(sc, JME_RXMAC, reg);
2835 }
2836
2837 static void
2838 jme_set_filter(struct jme_softc *sc)
2839 {
2840         struct ifnet *ifp = &sc->arpcom.ac_if;
2841         struct ifmultiaddr *ifma;
2842         uint32_t crc;
2843         uint32_t mchash[2];
2844         uint32_t rxcfg;
2845
2846         ASSERT_IFNET_SERIALIZED_ALL(ifp);
2847
2848         rxcfg = CSR_READ_4(sc, JME_RXMAC);
2849         rxcfg &= ~(RXMAC_BROADCAST | RXMAC_PROMISC | RXMAC_MULTICAST |
2850             RXMAC_ALLMULTI);
2851
2852         /*
2853          * Always accept frames destined to our station address.
2854          * Always accept broadcast frames.
2855          */
2856         rxcfg |= RXMAC_UNICAST | RXMAC_BROADCAST;
2857
2858         if (ifp->if_flags & (IFF_PROMISC | IFF_ALLMULTI)) {
2859                 if (ifp->if_flags & IFF_PROMISC)
2860                         rxcfg |= RXMAC_PROMISC;
2861                 if (ifp->if_flags & IFF_ALLMULTI)
2862                         rxcfg |= RXMAC_ALLMULTI;
2863                 CSR_WRITE_4(sc, JME_MAR0, 0xFFFFFFFF);
2864                 CSR_WRITE_4(sc, JME_MAR1, 0xFFFFFFFF);
2865                 CSR_WRITE_4(sc, JME_RXMAC, rxcfg);
2866                 return;
2867         }
2868
2869         /*
2870          * Set up the multicast address filter by passing all multicast
2871          * addresses through a CRC generator, and then using the low-order
2872          * 6 bits as an index into the 64 bit multicast hash table.  The
2873          * high order bits select the register, while the rest of the bits
2874          * select the bit within the register.
2875          */
2876         rxcfg |= RXMAC_MULTICAST;
2877         bzero(mchash, sizeof(mchash));
2878
2879         TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
2880                 if (ifma->ifma_addr->sa_family != AF_LINK)
2881                         continue;
2882                 crc = ether_crc32_be(LLADDR((struct sockaddr_dl *)
2883                     ifma->ifma_addr), ETHER_ADDR_LEN);
2884
2885                 /* Just want the 6 least significant bits. */
2886                 crc &= 0x3f;
2887
2888                 /* Set the corresponding bit in the hash table. */
2889                 mchash[crc >> 5] |= 1 << (crc & 0x1f);
2890         }
2891
2892         CSR_WRITE_4(sc, JME_MAR0, mchash[0]);
2893         CSR_WRITE_4(sc, JME_MAR1, mchash[1]);
2894         CSR_WRITE_4(sc, JME_RXMAC, rxcfg);
2895 }
2896
2897 static int
2898 jme_sysctl_tx_coal_to(SYSCTL_HANDLER_ARGS)
2899 {
2900         struct jme_softc *sc = arg1;
2901         struct ifnet *ifp = &sc->arpcom.ac_if;
2902         int error, v;
2903
2904         ifnet_serialize_all(ifp);
2905
2906         v = sc->jme_tx_coal_to;
2907         error = sysctl_handle_int(oidp, &v, 0, req);
2908         if (error || req->newptr == NULL)
2909                 goto back;
2910
2911         if (v < PCCTX_COAL_TO_MIN || v > PCCTX_COAL_TO_MAX) {
2912                 error = EINVAL;
2913                 goto back;
2914         }
2915
2916         if (v != sc->jme_tx_coal_to) {
2917                 sc->jme_tx_coal_to = v;
2918                 if (ifp->if_flags & IFF_RUNNING)
2919                         jme_set_tx_coal(sc);
2920         }
2921 back:
2922         ifnet_deserialize_all(ifp);
2923         return error;
2924 }
2925
2926 static int
2927 jme_sysctl_tx_coal_pkt(SYSCTL_HANDLER_ARGS)
2928 {
2929         struct jme_softc *sc = arg1;
2930         struct ifnet *ifp = &sc->arpcom.ac_if;
2931         int error, v;
2932
2933         ifnet_serialize_all(ifp);
2934
2935         v = sc->jme_tx_coal_pkt;
2936         error = sysctl_handle_int(oidp, &v, 0, req);
2937         if (error || req->newptr == NULL)
2938                 goto back;
2939
2940         if (v < PCCTX_COAL_PKT_MIN || v > PCCTX_COAL_PKT_MAX) {
2941                 error = EINVAL;
2942                 goto back;
2943         }
2944
2945         if (v != sc->jme_tx_coal_pkt) {
2946                 sc->jme_tx_coal_pkt = v;
2947                 if (ifp->if_flags & IFF_RUNNING)
2948                         jme_set_tx_coal(sc);
2949         }
2950 back:
2951         ifnet_deserialize_all(ifp);
2952         return error;
2953 }
2954
2955 static int
2956 jme_sysctl_rx_coal_to(SYSCTL_HANDLER_ARGS)
2957 {
2958         struct jme_softc *sc = arg1;
2959         struct ifnet *ifp = &sc->arpcom.ac_if;
2960         int error, v;
2961
2962         ifnet_serialize_all(ifp);
2963
2964         v = sc->jme_rx_coal_to;
2965         error = sysctl_handle_int(oidp, &v, 0, req);
2966         if (error || req->newptr == NULL)
2967                 goto back;
2968
2969         if (v < PCCRX_COAL_TO_MIN || v > PCCRX_COAL_TO_MAX) {
2970                 error = EINVAL;
2971                 goto back;
2972         }
2973
2974         if (v != sc->jme_rx_coal_to) {
2975                 sc->jme_rx_coal_to = v;
2976                 if (ifp->if_flags & IFF_RUNNING)
2977                         jme_set_rx_coal(sc);
2978         }
2979 back:
2980         ifnet_deserialize_all(ifp);
2981         return error;
2982 }
2983
2984 static int
2985 jme_sysctl_rx_coal_pkt(SYSCTL_HANDLER_ARGS)
2986 {
2987         struct jme_softc *sc = arg1;
2988         struct ifnet *ifp = &sc->arpcom.ac_if;
2989         int error, v;
2990
2991         ifnet_serialize_all(ifp);
2992
2993         v = sc->jme_rx_coal_pkt;
2994         error = sysctl_handle_int(oidp, &v, 0, req);
2995         if (error || req->newptr == NULL)
2996                 goto back;
2997
2998         if (v < PCCRX_COAL_PKT_MIN || v > PCCRX_COAL_PKT_MAX) {
2999                 error = EINVAL;
3000                 goto back;
3001         }
3002
3003         if (v != sc->jme_rx_coal_pkt) {
3004                 sc->jme_rx_coal_pkt = v;
3005                 if (ifp->if_flags & IFF_RUNNING)
3006                         jme_set_rx_coal(sc);
3007         }
3008 back:
3009         ifnet_deserialize_all(ifp);
3010         return error;
3011 }
3012
3013 static void
3014 jme_set_tx_coal(struct jme_softc *sc)
3015 {
3016         uint32_t reg;
3017
3018         reg = (sc->jme_tx_coal_to << PCCTX_COAL_TO_SHIFT) &
3019             PCCTX_COAL_TO_MASK;
3020         reg |= (sc->jme_tx_coal_pkt << PCCTX_COAL_PKT_SHIFT) &
3021             PCCTX_COAL_PKT_MASK;
3022         reg |= PCCTX_COAL_TXQ0;
3023         CSR_WRITE_4(sc, JME_PCCTX, reg);
3024 }
3025
3026 static void
3027 jme_set_rx_coal(struct jme_softc *sc)
3028 {
3029         uint32_t reg;
3030         int r;
3031
3032         reg = (sc->jme_rx_coal_to << PCCRX_COAL_TO_SHIFT) &
3033             PCCRX_COAL_TO_MASK;
3034         reg |= (sc->jme_rx_coal_pkt << PCCRX_COAL_PKT_SHIFT) &
3035             PCCRX_COAL_PKT_MASK;
3036         for (r = 0; r < sc->jme_rx_ring_cnt; ++r)
3037                 CSR_WRITE_4(sc, JME_PCCRX(r), reg);
3038 }
3039
3040 #ifdef DEVICE_POLLING
3041
3042 static void
3043 jme_poll(struct ifnet *ifp, enum poll_cmd cmd, int count)
3044 {
3045         struct jme_softc *sc = ifp->if_softc;
3046         uint32_t status;
3047         int r;
3048
3049         ASSERT_SERIALIZED(&sc->jme_serialize);
3050
3051         switch (cmd) {
3052         case POLL_REGISTER:
3053                 CSR_WRITE_4(sc, JME_INTR_MASK_CLR, JME_INTRS);
3054                 break;
3055
3056         case POLL_DEREGISTER:
3057                 CSR_WRITE_4(sc, JME_INTR_MASK_SET, JME_INTRS);
3058                 break;
3059
3060         case POLL_AND_CHECK_STATUS:
3061         case POLL_ONLY:
3062                 status = CSR_READ_4(sc, JME_INTR_STATUS);
3063
3064                 for (r = 0; r < sc->jme_rx_ring_cnt; ++r) {
3065                         struct jme_rxdata *rdata =
3066                             &sc->jme_cdata.jme_rx_data[r];
3067
3068                         lwkt_serialize_enter(&rdata->jme_rx_serialize);
3069                         jme_rxeof(sc, r, count);
3070                         lwkt_serialize_exit(&rdata->jme_rx_serialize);
3071                 }
3072
3073                 if (status & INTR_RXQ_DESC_EMPTY) {
3074                         CSR_WRITE_4(sc, JME_INTR_STATUS, status);
3075                         CSR_WRITE_4(sc, JME_RXCSR, sc->jme_rxcsr |
3076                             RXCSR_RX_ENB | RXCSR_RXQ_START);
3077                 }
3078
3079                 lwkt_serialize_enter(&sc->jme_cdata.jme_tx_serialize);
3080                 jme_txeof(sc);
3081                 if (!ifq_is_empty(&ifp->if_snd))
3082                         if_devstart(ifp);
3083                 lwkt_serialize_exit(&sc->jme_cdata.jme_tx_serialize);
3084                 break;
3085         }
3086 }
3087
3088 #endif  /* DEVICE_POLLING */
3089
3090 static int
3091 jme_rxring_dma_alloc(struct jme_softc *sc, int ring)
3092 {
3093         struct jme_rxdata *rdata = &sc->jme_cdata.jme_rx_data[ring];
3094         bus_dmamem_t dmem;
3095         int error;
3096
3097         error = bus_dmamem_coherent(sc->jme_cdata.jme_ring_tag,
3098                         JME_RX_RING_ALIGN, 0,
3099                         BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR,
3100                         JME_RX_RING_SIZE(sc),
3101                         BUS_DMA_WAITOK | BUS_DMA_ZERO, &dmem);
3102         if (error) {
3103                 device_printf(sc->jme_dev,
3104                     "could not allocate %dth Rx ring.\n", ring);
3105                 return error;
3106         }
3107         rdata->jme_rx_ring_tag = dmem.dmem_tag;
3108         rdata->jme_rx_ring_map = dmem.dmem_map;
3109         rdata->jme_rx_ring = dmem.dmem_addr;
3110         rdata->jme_rx_ring_paddr = dmem.dmem_busaddr;
3111
3112         return 0;
3113 }
3114
3115 static int
3116 jme_rxbuf_dma_alloc(struct jme_softc *sc, int ring)
3117 {
3118         struct jme_rxdata *rdata = &sc->jme_cdata.jme_rx_data[ring];
3119         int i, error;
3120
3121         /* Create tag for Rx buffers. */
3122         error = bus_dma_tag_create(sc->jme_cdata.jme_buffer_tag,/* parent */
3123             JME_RX_BUF_ALIGN, 0,        /* algnmnt, boundary */
3124             BUS_SPACE_MAXADDR,          /* lowaddr */
3125             BUS_SPACE_MAXADDR,          /* highaddr */
3126             NULL, NULL,                 /* filter, filterarg */
3127             MCLBYTES,                   /* maxsize */
3128             1,                          /* nsegments */
3129             MCLBYTES,                   /* maxsegsize */
3130             BUS_DMA_ALLOCNOW | BUS_DMA_WAITOK | BUS_DMA_ALIGNED,/* flags */
3131             &rdata->jme_rx_tag);
3132         if (error) {
3133                 device_printf(sc->jme_dev,
3134                     "could not create %dth Rx DMA tag.\n", ring);
3135                 return error;
3136         }
3137
3138         /* Create DMA maps for Rx buffers. */
3139         error = bus_dmamap_create(rdata->jme_rx_tag, BUS_DMA_WAITOK,
3140                                   &rdata->jme_rx_sparemap);
3141         if (error) {
3142                 device_printf(sc->jme_dev,
3143                     "could not create %dth spare Rx dmamap.\n", ring);
3144                 bus_dma_tag_destroy(rdata->jme_rx_tag);
3145                 rdata->jme_rx_tag = NULL;
3146                 return error;
3147         }
3148         for (i = 0; i < sc->jme_rx_desc_cnt; i++) {
3149                 struct jme_rxdesc *rxd = &rdata->jme_rxdesc[i];
3150
3151                 error = bus_dmamap_create(rdata->jme_rx_tag, BUS_DMA_WAITOK,
3152                                           &rxd->rx_dmamap);
3153                 if (error) {
3154                         int j;
3155
3156                         device_printf(sc->jme_dev,
3157                             "could not create %dth Rx dmamap "
3158                             "for %dth RX ring.\n", i, ring);
3159
3160                         for (j = 0; j < i; ++j) {
3161                                 rxd = &rdata->jme_rxdesc[j];
3162                                 bus_dmamap_destroy(rdata->jme_rx_tag,
3163                                                    rxd->rx_dmamap);
3164                         }
3165                         bus_dmamap_destroy(rdata->jme_rx_tag,
3166                                            rdata->jme_rx_sparemap);
3167                         bus_dma_tag_destroy(rdata->jme_rx_tag);
3168                         rdata->jme_rx_tag = NULL;
3169                         return error;
3170                 }
3171         }
3172         return 0;
3173 }
3174
3175 static void
3176 jme_rx_intr(struct jme_softc *sc, uint32_t status)
3177 {
3178         int r;
3179
3180         for (r = 0; r < sc->jme_rx_ring_cnt; ++r) {
3181                 if (status & jme_rx_status[r].jme_coal) {
3182                         struct jme_rxdata *rdata =
3183                             &sc->jme_cdata.jme_rx_data[r];
3184
3185                         lwkt_serialize_enter(&rdata->jme_rx_serialize);
3186                         jme_rxeof(sc, r, -1);
3187                         lwkt_serialize_exit(&rdata->jme_rx_serialize);
3188                 }
3189         }
3190 }
3191
3192 static void
3193 jme_enable_rss(struct jme_softc *sc)
3194 {
3195         uint32_t rssc, ind;
3196         uint8_t key[RSSKEY_NREGS * RSSKEY_REGSIZE];
3197         int i;
3198
3199         KASSERT(sc->jme_rx_ring_cnt == JME_NRXRING_2 ||
3200                 sc->jme_rx_ring_cnt == JME_NRXRING_4,
3201                 ("%s: invalid # of RX rings (%d)\n",
3202                  sc->arpcom.ac_if.if_xname, sc->jme_rx_ring_cnt));
3203
3204         rssc = RSSC_HASH_64_ENTRY;
3205         rssc |= RSSC_HASH_IPV4 | RSSC_HASH_IPV4_TCP;
3206         rssc |= sc->jme_rx_ring_cnt >> 1;
3207         JME_RSS_DPRINTF(sc, 1, "rssc 0x%08x\n", rssc);
3208         CSR_WRITE_4(sc, JME_RSSC, rssc);
3209
3210         toeplitz_get_key(key, sizeof(key));
3211         for (i = 0; i < RSSKEY_NREGS; ++i) {
3212                 uint32_t keyreg;
3213
3214                 keyreg = RSSKEY_REGVAL(key, i);
3215                 JME_RSS_DPRINTF(sc, 5, "keyreg%d 0x%08x\n", i, keyreg);
3216
3217                 CSR_WRITE_4(sc, RSSKEY_REG(i), keyreg);
3218         }
3219
3220         /*
3221          * Create redirect table in following fashion:
3222          * (hash & ring_cnt_mask) == rdr_table[(hash & rdr_table_mask)]
3223          */
3224         ind = 0;
3225         for (i = 0; i < RSSTBL_REGSIZE; ++i) {
3226                 int q;
3227
3228                 q = i % sc->jme_rx_ring_cnt;
3229                 ind |= q << (i * 8);
3230         }
3231         JME_RSS_DPRINTF(sc, 1, "ind 0x%08x\n", ind);
3232
3233         for (i = 0; i < RSSTBL_NREGS; ++i)
3234                 CSR_WRITE_4(sc, RSSTBL_REG(i), ind);
3235 }
3236
3237 static void
3238 jme_disable_rss(struct jme_softc *sc)
3239 {
3240         CSR_WRITE_4(sc, JME_RSSC, RSSC_DIS_RSS);
3241 }
3242
3243 static void
3244 jme_serialize(struct ifnet *ifp, enum ifnet_serialize slz)
3245 {
3246         struct jme_softc *sc = ifp->if_softc;
3247
3248         switch (slz) {
3249         case IFNET_SERIALIZE_ALL:
3250                 lwkt_serialize_array_enter(sc->jme_serialize_arr,
3251                     sc->jme_serialize_cnt, 0);
3252                 break;
3253
3254         case IFNET_SERIALIZE_MAIN:
3255                 lwkt_serialize_enter(&sc->jme_serialize);
3256                 break;
3257
3258         case IFNET_SERIALIZE_TX:
3259                 lwkt_serialize_enter(&sc->jme_cdata.jme_tx_serialize);
3260                 break;
3261
3262         case IFNET_SERIALIZE_RX(0):
3263                 lwkt_serialize_enter(
3264                     &sc->jme_cdata.jme_rx_data[0].jme_rx_serialize);
3265                 break;
3266
3267         case IFNET_SERIALIZE_RX(1):
3268                 lwkt_serialize_enter(
3269                     &sc->jme_cdata.jme_rx_data[1].jme_rx_serialize);
3270                 break;
3271
3272         case IFNET_SERIALIZE_RX(2):
3273                 lwkt_serialize_enter(
3274                     &sc->jme_cdata.jme_rx_data[2].jme_rx_serialize);
3275                 break;
3276
3277         case IFNET_SERIALIZE_RX(3):
3278                 lwkt_serialize_enter(
3279                     &sc->jme_cdata.jme_rx_data[3].jme_rx_serialize);
3280                 break;
3281
3282         default:
3283                 panic("%s unsupported serialize type\n", ifp->if_xname);
3284         }
3285 }
3286
3287 static void
3288 jme_deserialize(struct ifnet *ifp, enum ifnet_serialize slz)
3289 {
3290         struct jme_softc *sc = ifp->if_softc;
3291
3292         switch (slz) {
3293         case IFNET_SERIALIZE_ALL:
3294                 lwkt_serialize_array_exit(sc->jme_serialize_arr,
3295                     sc->jme_serialize_cnt, 0);
3296                 break;
3297
3298         case IFNET_SERIALIZE_MAIN:
3299                 lwkt_serialize_exit(&sc->jme_serialize);
3300                 break;
3301
3302         case IFNET_SERIALIZE_TX:
3303                 lwkt_serialize_exit(&sc->jme_cdata.jme_tx_serialize);
3304                 break;
3305
3306         case IFNET_SERIALIZE_RX(0):
3307                 lwkt_serialize_exit(
3308                     &sc->jme_cdata.jme_rx_data[0].jme_rx_serialize);
3309                 break;
3310
3311         case IFNET_SERIALIZE_RX(1):
3312                 lwkt_serialize_exit(
3313                     &sc->jme_cdata.jme_rx_data[1].jme_rx_serialize);
3314                 break;
3315
3316         case IFNET_SERIALIZE_RX(2):
3317                 lwkt_serialize_exit(
3318                     &sc->jme_cdata.jme_rx_data[2].jme_rx_serialize);
3319                 break;
3320
3321         case IFNET_SERIALIZE_RX(3):
3322                 lwkt_serialize_exit(
3323                     &sc->jme_cdata.jme_rx_data[3].jme_rx_serialize);
3324                 break;
3325
3326         default:
3327                 panic("%s unsupported serialize type\n", ifp->if_xname);
3328         }
3329 }
3330
3331 static int
3332 jme_tryserialize(struct ifnet *ifp, enum ifnet_serialize slz)
3333 {
3334         struct jme_softc *sc = ifp->if_softc;
3335
3336         switch (slz) {
3337         case IFNET_SERIALIZE_ALL:
3338                 return lwkt_serialize_array_try(sc->jme_serialize_arr,
3339                     sc->jme_serialize_cnt, 0);
3340
3341         case IFNET_SERIALIZE_MAIN:
3342                 return lwkt_serialize_try(&sc->jme_serialize);
3343
3344         case IFNET_SERIALIZE_TX:
3345                 return lwkt_serialize_try(&sc->jme_cdata.jme_tx_serialize);
3346
3347         case IFNET_SERIALIZE_RX(0):
3348                 return lwkt_serialize_try(
3349                     &sc->jme_cdata.jme_rx_data[0].jme_rx_serialize);
3350
3351         case IFNET_SERIALIZE_RX(1):
3352                 return lwkt_serialize_try(
3353                     &sc->jme_cdata.jme_rx_data[1].jme_rx_serialize);
3354
3355         case IFNET_SERIALIZE_RX(2):
3356                 return lwkt_serialize_try(
3357                     &sc->jme_cdata.jme_rx_data[2].jme_rx_serialize);
3358
3359         case IFNET_SERIALIZE_RX(3):
3360                 return lwkt_serialize_try(
3361                     &sc->jme_cdata.jme_rx_data[3].jme_rx_serialize);
3362
3363         default:
3364                 panic("%s unsupported serialize type\n", ifp->if_xname);
3365         }
3366 }
3367
3368 #ifdef INVARIANTS
3369
3370 static void
3371 jme_serialize_assert(struct ifnet *ifp, enum ifnet_serialize slz,
3372     boolean_t serialized)
3373 {
3374         struct jme_softc *sc = ifp->if_softc;
3375         struct jme_rxdata *rdata;
3376         int i;
3377
3378         switch (slz) {
3379         case IFNET_SERIALIZE_ALL:
3380                 if (serialized) {
3381                         for (i = 0; i < sc->jme_serialize_cnt; ++i)
3382                                 ASSERT_SERIALIZED(sc->jme_serialize_arr[i]);
3383                 } else {
3384                         for (i = 0; i < sc->jme_serialize_cnt; ++i)
3385                                 ASSERT_NOT_SERIALIZED(sc->jme_serialize_arr[i]);
3386                 }
3387                 break;
3388
3389         case IFNET_SERIALIZE_MAIN:
3390                 if (serialized)
3391                         ASSERT_SERIALIZED(&sc->jme_serialize);
3392                 else
3393                         ASSERT_NOT_SERIALIZED(&sc->jme_serialize);
3394                 break;
3395
3396         case IFNET_SERIALIZE_TX:
3397                 if (serialized)
3398                         ASSERT_SERIALIZED(&sc->jme_cdata.jme_tx_serialize);
3399                 else
3400                         ASSERT_NOT_SERIALIZED(&sc->jme_cdata.jme_tx_serialize);
3401                 break;
3402
3403         case IFNET_SERIALIZE_RX(0):
3404                 rdata = &sc->jme_cdata.jme_rx_data[0];
3405                 if (serialized)
3406                         ASSERT_SERIALIZED(&rdata->jme_rx_serialize);
3407                 else
3408                         ASSERT_NOT_SERIALIZED(&rdata->jme_rx_serialize);
3409                 break;
3410
3411         case IFNET_SERIALIZE_RX(1):
3412                 rdata = &sc->jme_cdata.jme_rx_data[1];
3413                 if (serialized)
3414                         ASSERT_SERIALIZED(&rdata->jme_rx_serialize);
3415                 else
3416                         ASSERT_NOT_SERIALIZED(&rdata->jme_rx_serialize);
3417                 break;
3418
3419         case IFNET_SERIALIZE_RX(2):
3420                 rdata = &sc->jme_cdata.jme_rx_data[2];
3421                 if (serialized)
3422                         ASSERT_SERIALIZED(&rdata->jme_rx_serialize);
3423                 else
3424                         ASSERT_NOT_SERIALIZED(&rdata->jme_rx_serialize);
3425                 break;
3426
3427         case IFNET_SERIALIZE_RX(3):
3428                 rdata = &sc->jme_cdata.jme_rx_data[3];
3429                 if (serialized)
3430                         ASSERT_SERIALIZED(&rdata->jme_rx_serialize);
3431                 else
3432                         ASSERT_NOT_SERIALIZED(&rdata->jme_rx_serialize);
3433                 break;
3434
3435         default:
3436                 panic("%s unsupported serialize type\n", ifp->if_xname);
3437         }
3438 }
3439
3440 #endif  /* INVARIANTS */
3441
3442 static void
3443 jme_msix_try_alloc(device_t dev)
3444 {
3445         struct jme_softc *sc = device_get_softc(dev);
3446         struct jme_msix_data *msix;
3447         int error, i, r, msix_enable, msix_count;
3448
3449         msix_count = 1 + sc->jme_rx_ring_cnt;
3450         KKASSERT(msix_count <= JME_NMSIX);
3451
3452         msix_enable = device_getenv_int(dev, "msix.enable", jme_msix_enable);
3453
3454         /*
3455          * We leave the 1st MSI-X vector unused, so we
3456          * actually need msix_count + 1 MSI-X vectors.
3457          */
3458         if (!msix_enable || pci_msix_count(dev) < (msix_count + 1))
3459                 return;
3460
3461         for (i = 0; i < msix_count; ++i)
3462                 sc->jme_msix[i].jme_msix_rid = -1;
3463
3464         i = 0;
3465
3466         msix = &sc->jme_msix[i++];
3467         msix->jme_msix_cpuid = 0;               /* XXX Put TX to cpu0 */
3468         msix->jme_msix_arg = &sc->jme_cdata;
3469         msix->jme_msix_func = jme_msix_tx;
3470         msix->jme_msix_intrs = INTR_TXQ_COAL | INTR_TXQ_COAL_TO;
3471         msix->jme_msix_serialize = &sc->jme_cdata.jme_tx_serialize;
3472         ksnprintf(msix->jme_msix_desc, sizeof(msix->jme_msix_desc), "%s tx",
3473             device_get_nameunit(dev));
3474
3475         for (r = 0; r < sc->jme_rx_ring_cnt; ++r) {
3476                 struct jme_rxdata *rdata = &sc->jme_cdata.jme_rx_data[r];
3477
3478                 msix = &sc->jme_msix[i++];
3479                 msix->jme_msix_cpuid = r;       /* XXX Put RX to cpuX */
3480                 msix->jme_msix_arg = rdata;
3481                 msix->jme_msix_func = jme_msix_rx;
3482                 msix->jme_msix_intrs = rdata->jme_rx_coal | rdata->jme_rx_empty;
3483                 msix->jme_msix_serialize = &rdata->jme_rx_serialize;
3484                 ksnprintf(msix->jme_msix_desc, sizeof(msix->jme_msix_desc),
3485                     "%s rx%d", device_get_nameunit(dev), r);
3486         }
3487
3488         KKASSERT(i == msix_count);
3489
3490         error = pci_setup_msix(dev);
3491         if (error)
3492                 return;
3493
3494         /* Setup jme_msix_cnt early, so we could cleanup */
3495         sc->jme_msix_cnt = msix_count;
3496
3497         for (i = 0; i < msix_count; ++i) {
3498                 msix = &sc->jme_msix[i];
3499
3500                 msix->jme_msix_vector = i + 1;
3501                 error = pci_alloc_msix_vector(dev, msix->jme_msix_vector,
3502                     &msix->jme_msix_rid, msix->jme_msix_cpuid);
3503                 if (error)
3504                         goto back;
3505
3506                 msix->jme_msix_res = bus_alloc_resource_any(dev, SYS_RES_IRQ,
3507                     &msix->jme_msix_rid, RF_ACTIVE);
3508                 if (msix->jme_msix_res == NULL) {
3509                         error = ENOMEM;
3510                         goto back;
3511                 }
3512         }
3513
3514         for (i = 0; i < JME_INTR_CNT; ++i) {
3515                 uint32_t intr_mask = (1 << i);
3516                 int x;
3517
3518                 if ((JME_INTRS & intr_mask) == 0)
3519                         continue;
3520
3521                 for (x = 0; x < msix_count; ++x) {
3522                         msix = &sc->jme_msix[x];
3523                         if (msix->jme_msix_intrs & intr_mask) {
3524                                 int reg, shift;
3525
3526                                 reg = i / JME_MSINUM_FACTOR;
3527                                 KKASSERT(reg < JME_MSINUM_CNT);
3528
3529                                 shift = (i % JME_MSINUM_FACTOR) * 4;
3530
3531                                 sc->jme_msinum[reg] |=
3532                                     (msix->jme_msix_vector << shift);
3533
3534                                 break;
3535                         }
3536                 }
3537         }
3538
3539         if (bootverbose) {
3540                 for (i = 0; i < JME_MSINUM_CNT; ++i) {
3541                         device_printf(dev, "MSINUM%d: %#x\n", i,
3542                             sc->jme_msinum[i]);
3543                 }
3544         }
3545
3546         pci_enable_msix(dev);
3547         sc->jme_irq_type = PCI_INTR_TYPE_MSIX;
3548
3549 back:
3550         if (error)
3551                 jme_msix_free(dev);
3552 }
3553
3554 static int
3555 jme_intr_alloc(device_t dev)
3556 {
3557         struct jme_softc *sc = device_get_softc(dev);
3558         u_int irq_flags;
3559
3560         jme_msix_try_alloc(dev);
3561
3562         if (sc->jme_irq_type != PCI_INTR_TYPE_MSIX) {
3563                 sc->jme_irq_type = pci_alloc_1intr(dev, jme_msi_enable,
3564                     &sc->jme_irq_rid, &irq_flags);
3565
3566                 sc->jme_irq_res = bus_alloc_resource_any(dev, SYS_RES_IRQ,
3567                     &sc->jme_irq_rid, irq_flags);
3568                 if (sc->jme_irq_res == NULL) {
3569                         device_printf(dev, "can't allocate irq\n");
3570                         return ENXIO;
3571                 }
3572         }
3573         return 0;
3574 }
3575
3576 static void
3577 jme_msix_free(device_t dev)
3578 {
3579         struct jme_softc *sc = device_get_softc(dev);
3580         int i;
3581
3582         KKASSERT(sc->jme_msix_cnt > 1);
3583
3584         for (i = 0; i < sc->jme_msix_cnt; ++i) {
3585                 struct jme_msix_data *msix = &sc->jme_msix[i];
3586
3587                 if (msix->jme_msix_res != NULL) {
3588                         bus_release_resource(dev, SYS_RES_IRQ,
3589                             msix->jme_msix_rid, msix->jme_msix_res);
3590                         msix->jme_msix_res = NULL;
3591                 }
3592                 if (msix->jme_msix_rid >= 0) {
3593                         pci_release_msix_vector(dev, msix->jme_msix_rid);
3594                         msix->jme_msix_rid = -1;
3595                 }
3596         }
3597         pci_teardown_msix(dev);
3598 }
3599
3600 static void
3601 jme_intr_free(device_t dev)
3602 {
3603         struct jme_softc *sc = device_get_softc(dev);
3604
3605         if (sc->jme_irq_type != PCI_INTR_TYPE_MSIX) {
3606                 if (sc->jme_irq_res != NULL) {
3607                         bus_release_resource(dev, SYS_RES_IRQ, sc->jme_irq_rid,
3608                                              sc->jme_irq_res);
3609                 }
3610                 if (sc->jme_irq_type == PCI_INTR_TYPE_MSI)
3611                         pci_release_msi(dev);
3612         } else {
3613                 jme_msix_free(dev);
3614         }
3615 }
3616
3617 static void
3618 jme_msix_tx(void *xcd)
3619 {
3620         struct jme_chain_data *cd = xcd;
3621         struct jme_softc *sc = cd->jme_sc;
3622         struct ifnet *ifp = &sc->arpcom.ac_if;
3623
3624         ASSERT_SERIALIZED(&cd->jme_tx_serialize);
3625
3626         CSR_WRITE_4(sc, JME_INTR_STATUS,
3627             INTR_TXQ_COAL | INTR_TXQ_COAL_TO | INTR_TXQ_COMP);
3628
3629         if (ifp->if_flags & IFF_RUNNING) {
3630                 jme_txeof(sc);
3631                 if (!ifq_is_empty(&ifp->if_snd))
3632                         if_devstart(ifp);
3633         }
3634 }
3635
3636 static void
3637 jme_msix_rx(void *xrdata)
3638 {
3639         struct jme_rxdata *rdata = xrdata;
3640         struct jme_softc *sc = rdata->jme_sc;
3641         struct ifnet *ifp = &sc->arpcom.ac_if;
3642         uint32_t status;
3643
3644         ASSERT_SERIALIZED(&rdata->jme_rx_serialize);
3645
3646         status = CSR_READ_4(sc, JME_INTR_STATUS);
3647         status &= (rdata->jme_rx_coal | rdata->jme_rx_empty);
3648
3649         if (status & rdata->jme_rx_coal) {
3650                 status |= (rdata->jme_rx_coal | rdata->jme_rx_comp);
3651                 CSR_WRITE_4(sc, JME_INTR_STATUS, status);
3652         }
3653
3654         if (ifp->if_flags & IFF_RUNNING) {
3655                 if (status & rdata->jme_rx_coal)
3656                         jme_rxeof(sc, rdata->jme_rx_idx, -1);
3657
3658                 if (status & rdata->jme_rx_empty) {
3659                         CSR_WRITE_4(sc, JME_RXCSR, sc->jme_rxcsr |
3660                             RXCSR_RX_ENB | RXCSR_RXQ_START);
3661                 }
3662         }
3663 }
3664
3665 static void
3666 jme_set_msinum(struct jme_softc *sc)
3667 {
3668         int i;
3669
3670         for (i = 0; i < JME_MSINUM_CNT; ++i)
3671                 CSR_WRITE_4(sc, JME_MSINUM(i), sc->jme_msinum[i]);
3672 }
3673
3674 static int
3675 jme_intr_setup(device_t dev)
3676 {
3677         struct jme_softc *sc = device_get_softc(dev);
3678         struct ifnet *ifp = &sc->arpcom.ac_if;
3679         int error;
3680
3681         if (sc->jme_irq_type == PCI_INTR_TYPE_MSIX)
3682                 return jme_msix_setup(dev);
3683
3684         error = bus_setup_intr(dev, sc->jme_irq_res, INTR_MPSAFE,
3685             jme_intr, sc, &sc->jme_irq_handle, &sc->jme_serialize);
3686         if (error) {
3687                 device_printf(dev, "could not set up interrupt handler.\n");
3688                 return error;
3689         }
3690
3691         ifp->if_cpuid = rman_get_cpuid(sc->jme_irq_res);
3692         KKASSERT(ifp->if_cpuid >= 0 && ifp->if_cpuid < ncpus);
3693         return 0;
3694 }
3695
3696 static void
3697 jme_intr_teardown(device_t dev)
3698 {
3699         struct jme_softc *sc = device_get_softc(dev);
3700
3701         if (sc->jme_irq_type == PCI_INTR_TYPE_MSIX)
3702                 jme_msix_teardown(dev, sc->jme_msix_cnt);
3703         else
3704                 bus_teardown_intr(dev, sc->jme_irq_res, sc->jme_irq_handle);
3705 }
3706
3707 static int
3708 jme_msix_setup(device_t dev)
3709 {
3710         struct jme_softc *sc = device_get_softc(dev);
3711         struct ifnet *ifp = &sc->arpcom.ac_if;
3712         int x;
3713
3714         for (x = 0; x < sc->jme_msix_cnt; ++x) {
3715                 struct jme_msix_data *msix = &sc->jme_msix[x];
3716                 int error;
3717
3718                 error = bus_setup_intr_descr(dev, msix->jme_msix_res,
3719                     INTR_MPSAFE, msix->jme_msix_func, msix->jme_msix_arg,
3720                     &msix->jme_msix_handle, msix->jme_msix_serialize,
3721                     msix->jme_msix_desc);
3722                 if (error) {
3723                         device_printf(dev, "could not set up %s "
3724                             "interrupt handler.\n", msix->jme_msix_desc);
3725                         jme_msix_teardown(dev, x);
3726                         return error;
3727                 }
3728         }
3729         ifp->if_cpuid = 0; /* XXX */
3730         return 0;
3731 }
3732
3733 static void
3734 jme_msix_teardown(device_t dev, int msix_count)
3735 {
3736         struct jme_softc *sc = device_get_softc(dev);
3737         int x;
3738
3739         for (x = 0; x < msix_count; ++x) {
3740                 struct jme_msix_data *msix = &sc->jme_msix[x];
3741
3742                 bus_teardown_intr(dev, msix->jme_msix_res,
3743                     msix->jme_msix_handle);
3744         }
3745 }