1 /* $OpenBSD: if_nfe.c,v 1.63 2006/06/17 18:00:43 brad Exp $ */
2 /* $DragonFly: src/sys/dev/netif/nfe/if_nfe.c,v 1.24 2008/06/25 16:25:58 sephe Exp $ */
5 * Copyright (c) 2006 The DragonFly Project. All rights reserved.
7 * This code is derived from software contributed to The DragonFly Project
8 * by Sepherosa Ziehau <sepherosa@gmail.com> and
9 * Matthew Dillon <dillon@apollo.backplane.com>
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in
19 * the documentation and/or other materials provided with the
21 * 3. Neither the name of The DragonFly Project nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific, prior written permission.
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
28 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
29 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
31 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
32 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
33 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
34 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
35 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 * Copyright (c) 2006 Damien Bergamini <damien.bergamini@free.fr>
41 * Copyright (c) 2005, 2006 Jonathan Gray <jsg@openbsd.org>
43 * Permission to use, copy, modify, and distribute this software for any
44 * purpose with or without fee is hereby granted, provided that the above
45 * copyright notice and this permission notice appear in all copies.
47 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
48 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
49 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
50 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
51 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
52 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
53 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
56 /* Driver for NVIDIA nForce MCP Fast Ethernet and Gigabit Ethernet */
58 #include "opt_polling.h"
59 #include "opt_ethernet.h"
61 #include <sys/param.h>
62 #include <sys/endian.h>
63 #include <sys/kernel.h>
65 #include <sys/interrupt.h>
68 #include <sys/serialize.h>
69 #include <sys/socket.h>
70 #include <sys/sockio.h>
71 #include <sys/sysctl.h>
73 #include <net/ethernet.h>
76 #include <net/if_arp.h>
77 #include <net/if_dl.h>
78 #include <net/if_media.h>
79 #include <net/ifq_var.h>
80 #include <net/if_types.h>
81 #include <net/if_var.h>
82 #include <net/vlan/if_vlan_var.h>
83 #include <net/vlan/if_vlan_ether.h>
85 #include <bus/pci/pcireg.h>
86 #include <bus/pci/pcivar.h>
87 #include <bus/pci/pcidevs.h>
89 #include <dev/netif/mii_layer/mii.h>
90 #include <dev/netif/mii_layer/miivar.h>
92 #include "miibus_if.h"
94 #include <dev/netif/nfe/if_nfereg.h>
95 #include <dev/netif/nfe/if_nfevar.h>
98 #define NFE_CSUM_FEATURES (CSUM_IP | CSUM_TCP | CSUM_UDP)
100 static int nfe_probe(device_t
);
101 static int nfe_attach(device_t
);
102 static int nfe_detach(device_t
);
103 static void nfe_shutdown(device_t
);
104 static int nfe_resume(device_t
);
105 static int nfe_suspend(device_t
);
107 static int nfe_miibus_readreg(device_t
, int, int);
108 static void nfe_miibus_writereg(device_t
, int, int, int);
109 static void nfe_miibus_statchg(device_t
);
111 #ifdef DEVICE_POLLING
112 static void nfe_poll(struct ifnet
*, enum poll_cmd
, int);
114 static void nfe_intr(void *);
115 static int nfe_ioctl(struct ifnet
*, u_long
, caddr_t
, struct ucred
*);
116 static void nfe_rxeof(struct nfe_softc
*);
117 static void nfe_txeof(struct nfe_softc
*);
118 static int nfe_encap(struct nfe_softc
*, struct nfe_tx_ring
*,
120 static void nfe_start(struct ifnet
*);
121 static void nfe_watchdog(struct ifnet
*);
122 static void nfe_init(void *);
123 static void nfe_stop(struct nfe_softc
*);
124 static struct nfe_jbuf
*nfe_jalloc(struct nfe_softc
*);
125 static void nfe_jfree(void *);
126 static void nfe_jref(void *);
127 static int nfe_jpool_alloc(struct nfe_softc
*, struct nfe_rx_ring
*);
128 static void nfe_jpool_free(struct nfe_softc
*, struct nfe_rx_ring
*);
129 static int nfe_alloc_rx_ring(struct nfe_softc
*, struct nfe_rx_ring
*);
130 static void nfe_reset_rx_ring(struct nfe_softc
*, struct nfe_rx_ring
*);
131 static int nfe_init_rx_ring(struct nfe_softc
*, struct nfe_rx_ring
*);
132 static void nfe_free_rx_ring(struct nfe_softc
*, struct nfe_rx_ring
*);
133 static int nfe_alloc_tx_ring(struct nfe_softc
*, struct nfe_tx_ring
*);
134 static void nfe_reset_tx_ring(struct nfe_softc
*, struct nfe_tx_ring
*);
135 static int nfe_init_tx_ring(struct nfe_softc
*, struct nfe_tx_ring
*);
136 static void nfe_free_tx_ring(struct nfe_softc
*, struct nfe_tx_ring
*);
137 static int nfe_ifmedia_upd(struct ifnet
*);
138 static void nfe_ifmedia_sts(struct ifnet
*, struct ifmediareq
*);
139 static void nfe_setmulti(struct nfe_softc
*);
140 static void nfe_get_macaddr(struct nfe_softc
*, uint8_t *);
141 static void nfe_set_macaddr(struct nfe_softc
*, const uint8_t *);
142 static void nfe_tick(void *);
143 static void nfe_ring_dma_addr(void *, bus_dma_segment_t
*, int, int);
144 static void nfe_buf_dma_addr(void *, bus_dma_segment_t
*, int, bus_size_t
,
146 static void nfe_set_paddr_rxdesc(struct nfe_softc
*, struct nfe_rx_ring
*,
148 static void nfe_set_ready_rxdesc(struct nfe_softc
*, struct nfe_rx_ring
*,
150 static int nfe_newbuf_std(struct nfe_softc
*, struct nfe_rx_ring
*, int,
152 static int nfe_newbuf_jumbo(struct nfe_softc
*, struct nfe_rx_ring
*, int,
155 static int nfe_sysctl_imtime(SYSCTL_HANDLER_ARGS
);
160 static int nfe_debug
= 0;
161 static int nfe_rx_ring_count
= NFE_RX_RING_DEF_COUNT
;
162 static int nfe_imtime
= -1;
164 TUNABLE_INT("hw.nfe.rx_ring_count", &nfe_rx_ring_count
);
165 TUNABLE_INT("hw.nfe.imtime", &nfe_imtime
);
166 TUNABLE_INT("hw.nfe.debug", &nfe_debug
);
168 #define DPRINTF(sc, fmt, ...) do { \
169 if ((sc)->sc_debug) { \
170 if_printf(&(sc)->arpcom.ac_if, \
175 #define DPRINTFN(sc, lv, fmt, ...) do { \
176 if ((sc)->sc_debug >= (lv)) { \
177 if_printf(&(sc)->arpcom.ac_if, \
182 #else /* !NFE_DEBUG */
184 #define DPRINTF(sc, fmt, ...)
185 #define DPRINTFN(sc, lv, fmt, ...)
187 #endif /* NFE_DEBUG */
191 bus_dma_segment_t
*segs
;
194 static const struct nfe_dev
{
199 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_NFORCE_LAN
,
200 "NVIDIA nForce Fast Ethernet" },
202 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_NFORCE2_LAN
,
203 "NVIDIA nForce2 Fast Ethernet" },
205 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_NFORCE3_LAN1
,
206 "NVIDIA nForce3 Gigabit Ethernet" },
208 /* XXX TGEN the next chip can also be found in the nForce2 Ultra 400Gb
209 chipset, and possibly also the 400R; it might be both nForce2- and
210 nForce3-based boards can use the same MCPs (= southbridges) */
211 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_NFORCE3_LAN2
,
212 "NVIDIA nForce3 Gigabit Ethernet" },
214 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_NFORCE3_LAN3
,
215 "NVIDIA nForce3 Gigabit Ethernet" },
217 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_NFORCE3_LAN4
,
218 "NVIDIA nForce3 Gigabit Ethernet" },
220 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_NFORCE3_LAN5
,
221 "NVIDIA nForce3 Gigabit Ethernet" },
223 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_CK804_LAN1
,
224 "NVIDIA CK804 Gigabit Ethernet" },
226 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_CK804_LAN2
,
227 "NVIDIA CK804 Gigabit Ethernet" },
229 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP04_LAN1
,
230 "NVIDIA MCP04 Gigabit Ethernet" },
232 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP04_LAN2
,
233 "NVIDIA MCP04 Gigabit Ethernet" },
235 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP51_LAN1
,
236 "NVIDIA MCP51 Gigabit Ethernet" },
238 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP51_LAN2
,
239 "NVIDIA MCP51 Gigabit Ethernet" },
241 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP55_LAN1
,
242 "NVIDIA MCP55 Gigabit Ethernet" },
244 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP55_LAN2
,
245 "NVIDIA MCP55 Gigabit Ethernet" },
247 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP61_LAN1
,
248 "NVIDIA MCP61 Gigabit Ethernet" },
250 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP61_LAN2
,
251 "NVIDIA MCP61 Gigabit Ethernet" },
253 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP61_LAN3
,
254 "NVIDIA MCP61 Gigabit Ethernet" },
256 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP61_LAN4
,
257 "NVIDIA MCP61 Gigabit Ethernet" },
259 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP65_LAN1
,
260 "NVIDIA MCP65 Gigabit Ethernet" },
262 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP65_LAN2
,
263 "NVIDIA MCP65 Gigabit Ethernet" },
265 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP65_LAN3
,
266 "NVIDIA MCP65 Gigabit Ethernet" },
268 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP65_LAN4
,
269 "NVIDIA MCP65 Gigabit Ethernet" },
271 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP67_LAN1
,
272 "NVIDIA MCP67 Gigabit Ethernet" },
274 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP67_LAN2
,
275 "NVIDIA MCP67 Gigabit Ethernet" },
277 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP67_LAN3
,
278 "NVIDIA MCP67 Gigabit Ethernet" },
280 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP67_LAN4
,
281 "NVIDIA MCP67 Gigabit Ethernet" },
283 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP73_LAN1
,
284 "NVIDIA MCP73 Gigabit Ethernet" },
286 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP73_LAN2
,
287 "NVIDIA MCP73 Gigabit Ethernet" },
289 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP73_LAN3
,
290 "NVIDIA MCP73 Gigabit Ethernet" },
292 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP73_LAN4
,
293 "NVIDIA MCP73 Gigabit Ethernet" },
295 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP77_LAN1
,
296 "NVIDIA MCP77 Gigabit Ethernet" },
298 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP77_LAN2
,
299 "NVIDIA MCP77 Gigabit Ethernet" },
301 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP77_LAN3
,
302 "NVIDIA MCP77 Gigabit Ethernet" },
304 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP77_LAN4
,
305 "NVIDIA MCP77 Gigabit Ethernet" },
307 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP79_LAN1
,
308 "NVIDIA MCP79 Gigabit Ethernet" },
310 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP79_LAN2
,
311 "NVIDIA MCP79 Gigabit Ethernet" },
313 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP79_LAN3
,
314 "NVIDIA MCP79 Gigabit Ethernet" },
316 { PCI_VENDOR_NVIDIA
, PCI_PRODUCT_NVIDIA_MCP79_LAN4
,
317 "NVIDIA MCP79 Gigabit Ethernet" },
322 static device_method_t nfe_methods
[] = {
323 /* Device interface */
324 DEVMETHOD(device_probe
, nfe_probe
),
325 DEVMETHOD(device_attach
, nfe_attach
),
326 DEVMETHOD(device_detach
, nfe_detach
),
327 DEVMETHOD(device_suspend
, nfe_suspend
),
328 DEVMETHOD(device_resume
, nfe_resume
),
329 DEVMETHOD(device_shutdown
, nfe_shutdown
),
332 DEVMETHOD(bus_print_child
, bus_generic_print_child
),
333 DEVMETHOD(bus_driver_added
, bus_generic_driver_added
),
336 DEVMETHOD(miibus_readreg
, nfe_miibus_readreg
),
337 DEVMETHOD(miibus_writereg
, nfe_miibus_writereg
),
338 DEVMETHOD(miibus_statchg
, nfe_miibus_statchg
),
343 static driver_t nfe_driver
= {
346 sizeof(struct nfe_softc
)
349 static devclass_t nfe_devclass
;
351 DECLARE_DUMMY_MODULE(if_nfe
);
352 MODULE_DEPEND(if_nfe
, miibus
, 1, 1, 1);
353 DRIVER_MODULE(if_nfe
, pci
, nfe_driver
, nfe_devclass
, 0, 0);
354 DRIVER_MODULE(miibus
, nfe
, miibus_driver
, miibus_devclass
, 0, 0);
357 nfe_probe(device_t dev
)
359 const struct nfe_dev
*n
;
362 vid
= pci_get_vendor(dev
);
363 did
= pci_get_device(dev
);
364 for (n
= nfe_devices
; n
->desc
!= NULL
; ++n
) {
365 if (vid
== n
->vid
&& did
== n
->did
) {
366 struct nfe_softc
*sc
= device_get_softc(dev
);
369 case PCI_PRODUCT_NVIDIA_NFORCE3_LAN2
:
370 case PCI_PRODUCT_NVIDIA_NFORCE3_LAN3
:
371 case PCI_PRODUCT_NVIDIA_NFORCE3_LAN4
:
372 case PCI_PRODUCT_NVIDIA_NFORCE3_LAN5
:
373 sc
->sc_flags
= NFE_JUMBO_SUP
|
376 case PCI_PRODUCT_NVIDIA_MCP51_LAN1
:
377 case PCI_PRODUCT_NVIDIA_MCP51_LAN2
:
378 case PCI_PRODUCT_NVIDIA_MCP61_LAN1
:
379 case PCI_PRODUCT_NVIDIA_MCP61_LAN2
:
380 case PCI_PRODUCT_NVIDIA_MCP61_LAN3
:
381 case PCI_PRODUCT_NVIDIA_MCP61_LAN4
:
382 case PCI_PRODUCT_NVIDIA_MCP67_LAN1
:
383 case PCI_PRODUCT_NVIDIA_MCP67_LAN2
:
384 case PCI_PRODUCT_NVIDIA_MCP67_LAN3
:
385 case PCI_PRODUCT_NVIDIA_MCP67_LAN4
:
386 case PCI_PRODUCT_NVIDIA_MCP73_LAN1
:
387 case PCI_PRODUCT_NVIDIA_MCP73_LAN2
:
388 case PCI_PRODUCT_NVIDIA_MCP73_LAN3
:
389 case PCI_PRODUCT_NVIDIA_MCP73_LAN4
:
390 sc
->sc_flags
= NFE_40BIT_ADDR
;
392 case PCI_PRODUCT_NVIDIA_CK804_LAN1
:
393 case PCI_PRODUCT_NVIDIA_CK804_LAN2
:
394 case PCI_PRODUCT_NVIDIA_MCP04_LAN1
:
395 case PCI_PRODUCT_NVIDIA_MCP04_LAN2
:
396 sc
->sc_flags
= NFE_JUMBO_SUP
|
400 case PCI_PRODUCT_NVIDIA_MCP65_LAN1
:
401 case PCI_PRODUCT_NVIDIA_MCP65_LAN2
:
402 case PCI_PRODUCT_NVIDIA_MCP65_LAN3
:
403 case PCI_PRODUCT_NVIDIA_MCP65_LAN4
:
404 sc
->sc_flags
= NFE_JUMBO_SUP
|
407 case PCI_PRODUCT_NVIDIA_MCP55_LAN1
:
408 case PCI_PRODUCT_NVIDIA_MCP55_LAN2
:
409 sc
->sc_flags
= NFE_JUMBO_SUP
|
414 case PCI_PRODUCT_NVIDIA_MCP77_LAN1
:
415 case PCI_PRODUCT_NVIDIA_MCP77_LAN2
:
416 case PCI_PRODUCT_NVIDIA_MCP77_LAN3
:
417 case PCI_PRODUCT_NVIDIA_MCP77_LAN4
:
418 case PCI_PRODUCT_NVIDIA_MCP79_LAN1
:
419 case PCI_PRODUCT_NVIDIA_MCP79_LAN2
:
420 case PCI_PRODUCT_NVIDIA_MCP79_LAN3
:
421 case PCI_PRODUCT_NVIDIA_MCP79_LAN4
:
422 sc
->sc_flags
= NFE_40BIT_ADDR
|
427 device_set_desc(dev
, n
->desc
);
428 device_set_async_attach(dev
, TRUE
);
436 nfe_attach(device_t dev
)
438 struct nfe_softc
*sc
= device_get_softc(dev
);
439 struct ifnet
*ifp
= &sc
->arpcom
.ac_if
;
440 uint8_t eaddr
[ETHER_ADDR_LEN
];
443 if_initname(ifp
, device_get_name(dev
), device_get_unit(dev
));
444 lwkt_serialize_init(&sc
->sc_jbuf_serializer
);
447 * Initialize sysctl variables
449 sc
->sc_imtime
= nfe_imtime
;
450 sc
->sc_irq_enable
= NFE_IRQ_ENABLE(sc
);
451 sc
->sc_rx_ring_count
= nfe_rx_ring_count
;
452 sc
->sc_debug
= nfe_debug
;
454 sc
->sc_mem_rid
= PCIR_BAR(0);
457 if (pci_get_powerstate(dev
) != PCI_POWERSTATE_D0
) {
460 mem
= pci_read_config(dev
, sc
->sc_mem_rid
, 4);
461 irq
= pci_read_config(dev
, PCIR_INTLINE
, 4);
463 device_printf(dev
, "chip is in D%d power mode "
464 "-- setting to D0\n", pci_get_powerstate(dev
));
466 pci_set_powerstate(dev
, PCI_POWERSTATE_D0
);
468 pci_write_config(dev
, sc
->sc_mem_rid
, mem
, 4);
469 pci_write_config(dev
, PCIR_INTLINE
, irq
, 4);
471 #endif /* !BURN_BRIDGE */
473 /* Enable bus mastering */
474 pci_enable_busmaster(dev
);
476 /* Allocate IO memory */
477 sc
->sc_mem_res
= bus_alloc_resource_any(dev
, SYS_RES_MEMORY
,
478 &sc
->sc_mem_rid
, RF_ACTIVE
);
479 if (sc
->sc_mem_res
== NULL
) {
480 device_printf(dev
, "cound not allocate io memory\n");
483 sc
->sc_memh
= rman_get_bushandle(sc
->sc_mem_res
);
484 sc
->sc_memt
= rman_get_bustag(sc
->sc_mem_res
);
488 sc
->sc_irq_res
= bus_alloc_resource_any(dev
, SYS_RES_IRQ
,
490 RF_SHAREABLE
| RF_ACTIVE
);
491 if (sc
->sc_irq_res
== NULL
) {
492 device_printf(dev
, "could not allocate irq\n");
497 nfe_get_macaddr(sc
, eaddr
);
500 * Allocate Tx and Rx rings.
502 error
= nfe_alloc_tx_ring(sc
, &sc
->txq
);
504 device_printf(dev
, "could not allocate Tx ring\n");
508 error
= nfe_alloc_rx_ring(sc
, &sc
->rxq
);
510 device_printf(dev
, "could not allocate Rx ring\n");
517 sysctl_ctx_init(&sc
->sc_sysctl_ctx
);
518 sc
->sc_sysctl_tree
= SYSCTL_ADD_NODE(&sc
->sc_sysctl_ctx
,
519 SYSCTL_STATIC_CHILDREN(_hw
),
521 device_get_nameunit(dev
),
523 if (sc
->sc_sysctl_tree
== NULL
) {
524 device_printf(dev
, "can't add sysctl node\n");
528 SYSCTL_ADD_PROC(&sc
->sc_sysctl_ctx
,
529 SYSCTL_CHILDREN(sc
->sc_sysctl_tree
),
530 OID_AUTO
, "imtimer", CTLTYPE_INT
| CTLFLAG_RW
,
531 sc
, 0, nfe_sysctl_imtime
, "I",
532 "Interrupt moderation time (usec). "
533 "-1 to disable interrupt moderation.");
534 SYSCTL_ADD_INT(NULL
, SYSCTL_CHILDREN(sc
->sc_sysctl_tree
), OID_AUTO
,
535 "rx_ring_count", CTLFLAG_RD
, &sc
->sc_rx_ring_count
,
537 SYSCTL_ADD_INT(NULL
, SYSCTL_CHILDREN(sc
->sc_sysctl_tree
), OID_AUTO
,
538 "debug", CTLFLAG_RW
, &sc
->sc_debug
,
539 0, "control debugging printfs");
541 error
= mii_phy_probe(dev
, &sc
->sc_miibus
, nfe_ifmedia_upd
,
544 device_printf(dev
, "MII without any phy\n");
549 ifp
->if_mtu
= ETHERMTU
;
550 ifp
->if_flags
= IFF_BROADCAST
| IFF_SIMPLEX
| IFF_MULTICAST
;
551 ifp
->if_ioctl
= nfe_ioctl
;
552 ifp
->if_start
= nfe_start
;
553 #ifdef DEVICE_POLLING
554 ifp
->if_poll
= nfe_poll
;
556 ifp
->if_watchdog
= nfe_watchdog
;
557 ifp
->if_init
= nfe_init
;
558 ifq_set_maxlen(&ifp
->if_snd
, NFE_IFQ_MAXLEN
);
559 ifq_set_ready(&ifp
->if_snd
);
561 ifp
->if_capabilities
= IFCAP_VLAN_MTU
;
563 if (sc
->sc_flags
& NFE_HW_VLAN
)
564 ifp
->if_capabilities
|= IFCAP_VLAN_HWTAGGING
;
567 if (sc
->sc_flags
& NFE_HW_CSUM
) {
568 ifp
->if_capabilities
|= IFCAP_HWCSUM
;
569 ifp
->if_hwassist
= NFE_CSUM_FEATURES
;
572 sc
->sc_flags
&= ~NFE_HW_CSUM
;
574 ifp
->if_capenable
= ifp
->if_capabilities
;
576 callout_init(&sc
->sc_tick_ch
);
578 ether_ifattach(ifp
, eaddr
, NULL
);
580 error
= bus_setup_intr(dev
, sc
->sc_irq_res
, INTR_MPSAFE
, nfe_intr
, sc
,
581 &sc
->sc_ih
, ifp
->if_serializer
);
583 device_printf(dev
, "could not setup intr\n");
588 ifp
->if_cpuid
= ithread_cpuid(rman_get_start(sc
->sc_irq_res
));
589 KKASSERT(ifp
->if_cpuid
>= 0 && ifp
->if_cpuid
< ncpus
);
598 nfe_detach(device_t dev
)
600 struct nfe_softc
*sc
= device_get_softc(dev
);
602 if (device_is_attached(dev
)) {
603 struct ifnet
*ifp
= &sc
->arpcom
.ac_if
;
605 lwkt_serialize_enter(ifp
->if_serializer
);
607 bus_teardown_intr(dev
, sc
->sc_irq_res
, sc
->sc_ih
);
608 lwkt_serialize_exit(ifp
->if_serializer
);
613 if (sc
->sc_miibus
!= NULL
)
614 device_delete_child(dev
, sc
->sc_miibus
);
615 bus_generic_detach(dev
);
617 if (sc
->sc_sysctl_tree
!= NULL
)
618 sysctl_ctx_free(&sc
->sc_sysctl_ctx
);
620 if (sc
->sc_irq_res
!= NULL
) {
621 bus_release_resource(dev
, SYS_RES_IRQ
, sc
->sc_irq_rid
,
625 if (sc
->sc_mem_res
!= NULL
) {
626 bus_release_resource(dev
, SYS_RES_MEMORY
, sc
->sc_mem_rid
,
630 nfe_free_tx_ring(sc
, &sc
->txq
);
631 nfe_free_rx_ring(sc
, &sc
->rxq
);
637 nfe_shutdown(device_t dev
)
639 struct nfe_softc
*sc
= device_get_softc(dev
);
640 struct ifnet
*ifp
= &sc
->arpcom
.ac_if
;
642 lwkt_serialize_enter(ifp
->if_serializer
);
644 lwkt_serialize_exit(ifp
->if_serializer
);
648 nfe_suspend(device_t dev
)
650 struct nfe_softc
*sc
= device_get_softc(dev
);
651 struct ifnet
*ifp
= &sc
->arpcom
.ac_if
;
653 lwkt_serialize_enter(ifp
->if_serializer
);
655 lwkt_serialize_exit(ifp
->if_serializer
);
661 nfe_resume(device_t dev
)
663 struct nfe_softc
*sc
= device_get_softc(dev
);
664 struct ifnet
*ifp
= &sc
->arpcom
.ac_if
;
666 lwkt_serialize_enter(ifp
->if_serializer
);
667 if (ifp
->if_flags
& IFF_UP
)
669 lwkt_serialize_exit(ifp
->if_serializer
);
675 nfe_miibus_statchg(device_t dev
)
677 struct nfe_softc
*sc
= device_get_softc(dev
);
678 struct mii_data
*mii
= device_get_softc(sc
->sc_miibus
);
679 uint32_t phy
, seed
, misc
= NFE_MISC1_MAGIC
, link
= NFE_MEDIA_SET
;
681 phy
= NFE_READ(sc
, NFE_PHY_IFACE
);
682 phy
&= ~(NFE_PHY_HDX
| NFE_PHY_100TX
| NFE_PHY_1000T
);
684 seed
= NFE_READ(sc
, NFE_RNDSEED
);
685 seed
&= ~NFE_SEED_MASK
;
687 if ((mii
->mii_media_active
& IFM_GMASK
) == IFM_HDX
) {
688 phy
|= NFE_PHY_HDX
; /* half-duplex */
689 misc
|= NFE_MISC1_HDX
;
692 switch (IFM_SUBTYPE(mii
->mii_media_active
)) {
693 case IFM_1000_T
: /* full-duplex only */
694 link
|= NFE_MEDIA_1000T
;
695 seed
|= NFE_SEED_1000T
;
696 phy
|= NFE_PHY_1000T
;
699 link
|= NFE_MEDIA_100TX
;
700 seed
|= NFE_SEED_100TX
;
701 phy
|= NFE_PHY_100TX
;
704 link
|= NFE_MEDIA_10T
;
705 seed
|= NFE_SEED_10T
;
709 NFE_WRITE(sc
, NFE_RNDSEED
, seed
); /* XXX: gigabit NICs only? */
711 NFE_WRITE(sc
, NFE_PHY_IFACE
, phy
);
712 NFE_WRITE(sc
, NFE_MISC1
, misc
);
713 NFE_WRITE(sc
, NFE_LINKSPEED
, link
);
717 nfe_miibus_readreg(device_t dev
, int phy
, int reg
)
719 struct nfe_softc
*sc
= device_get_softc(dev
);
723 NFE_WRITE(sc
, NFE_PHY_STATUS
, 0xf);
725 if (NFE_READ(sc
, NFE_PHY_CTL
) & NFE_PHY_BUSY
) {
726 NFE_WRITE(sc
, NFE_PHY_CTL
, NFE_PHY_BUSY
);
730 NFE_WRITE(sc
, NFE_PHY_CTL
, (phy
<< NFE_PHYADD_SHIFT
) | reg
);
732 for (ntries
= 0; ntries
< 1000; ntries
++) {
734 if (!(NFE_READ(sc
, NFE_PHY_CTL
) & NFE_PHY_BUSY
))
737 if (ntries
== 1000) {
738 DPRINTFN(sc
, 2, "timeout waiting for PHY %s\n", "");
742 if (NFE_READ(sc
, NFE_PHY_STATUS
) & NFE_PHY_ERROR
) {
743 DPRINTFN(sc
, 2, "could not read PHY %s\n", "");
747 val
= NFE_READ(sc
, NFE_PHY_DATA
);
748 if (val
!= 0xffffffff && val
!= 0)
749 sc
->mii_phyaddr
= phy
;
751 DPRINTFN(sc
, 2, "mii read phy %d reg 0x%x ret 0x%x\n", phy
, reg
, val
);
757 nfe_miibus_writereg(device_t dev
, int phy
, int reg
, int val
)
759 struct nfe_softc
*sc
= device_get_softc(dev
);
763 NFE_WRITE(sc
, NFE_PHY_STATUS
, 0xf);
765 if (NFE_READ(sc
, NFE_PHY_CTL
) & NFE_PHY_BUSY
) {
766 NFE_WRITE(sc
, NFE_PHY_CTL
, NFE_PHY_BUSY
);
770 NFE_WRITE(sc
, NFE_PHY_DATA
, val
);
771 ctl
= NFE_PHY_WRITE
| (phy
<< NFE_PHYADD_SHIFT
) | reg
;
772 NFE_WRITE(sc
, NFE_PHY_CTL
, ctl
);
774 for (ntries
= 0; ntries
< 1000; ntries
++) {
776 if (!(NFE_READ(sc
, NFE_PHY_CTL
) & NFE_PHY_BUSY
))
782 DPRINTFN(sc
, 2, "could not write to PHY %s\n", "");
786 #ifdef DEVICE_POLLING
789 nfe_poll(struct ifnet
*ifp
, enum poll_cmd cmd
, int count
)
791 struct nfe_softc
*sc
= ifp
->if_softc
;
793 ASSERT_SERIALIZED(ifp
->if_serializer
);
797 /* Disable interrupts */
798 NFE_WRITE(sc
, NFE_IRQ_MASK
, 0);
800 case POLL_DEREGISTER
:
801 /* enable interrupts */
802 NFE_WRITE(sc
, NFE_IRQ_MASK
, sc
->sc_irq_enable
);
804 case POLL_AND_CHECK_STATUS
:
807 if (ifp
->if_flags
& IFF_RUNNING
) {
820 struct nfe_softc
*sc
= arg
;
821 struct ifnet
*ifp
= &sc
->arpcom
.ac_if
;
824 r
= NFE_READ(sc
, NFE_IRQ_STATUS
);
826 return; /* not for us */
827 NFE_WRITE(sc
, NFE_IRQ_STATUS
, r
);
829 DPRINTFN(sc
, 5, "%s: interrupt register %x\n", __func__
, r
);
831 if (r
& NFE_IRQ_LINK
) {
832 NFE_READ(sc
, NFE_PHY_STATUS
);
833 NFE_WRITE(sc
, NFE_PHY_STATUS
, 0xf);
834 DPRINTF(sc
, "link state changed %s\n", "");
837 if (ifp
->if_flags
& IFF_RUNNING
) {
847 nfe_ioctl(struct ifnet
*ifp
, u_long cmd
, caddr_t data
, struct ucred
*cr
)
849 struct nfe_softc
*sc
= ifp
->if_softc
;
850 struct ifreq
*ifr
= (struct ifreq
*)data
;
851 struct mii_data
*mii
;
856 if (((sc
->sc_flags
& NFE_JUMBO_SUP
) &&
857 ifr
->ifr_mtu
> NFE_JUMBO_MTU
) ||
858 ((sc
->sc_flags
& NFE_JUMBO_SUP
) == 0 &&
859 ifr
->ifr_mtu
> ETHERMTU
)) {
861 } else if (ifp
->if_mtu
!= ifr
->ifr_mtu
) {
862 ifp
->if_mtu
= ifr
->ifr_mtu
;
867 if (ifp
->if_flags
& IFF_UP
) {
869 * If only the PROMISC or ALLMULTI flag changes, then
870 * don't do a full re-init of the chip, just update
873 if ((ifp
->if_flags
& IFF_RUNNING
) &&
874 ((ifp
->if_flags
^ sc
->sc_if_flags
) &
875 (IFF_ALLMULTI
| IFF_PROMISC
)) != 0) {
878 if (!(ifp
->if_flags
& IFF_RUNNING
))
882 if (ifp
->if_flags
& IFF_RUNNING
)
885 sc
->sc_if_flags
= ifp
->if_flags
;
889 if (ifp
->if_flags
& IFF_RUNNING
)
894 mii
= device_get_softc(sc
->sc_miibus
);
895 error
= ifmedia_ioctl(ifp
, ifr
, &mii
->mii_media
, cmd
);
898 mask
= (ifr
->ifr_reqcap
^ ifp
->if_capenable
) & IFCAP_HWCSUM
;
899 if (mask
&& (ifp
->if_capabilities
& IFCAP_HWCSUM
)) {
900 ifp
->if_capenable
^= mask
;
901 if (IFCAP_TXCSUM
& ifp
->if_capenable
)
902 ifp
->if_hwassist
= NFE_CSUM_FEATURES
;
904 ifp
->if_hwassist
= 0;
906 if (ifp
->if_flags
& IFF_RUNNING
)
911 error
= ether_ioctl(ifp
, cmd
, data
);
918 nfe_rxeof(struct nfe_softc
*sc
)
920 struct ifnet
*ifp
= &sc
->arpcom
.ac_if
;
921 struct nfe_rx_ring
*ring
= &sc
->rxq
;
923 #ifdef ETHER_INPUT_CHAIN
924 struct mbuf_chain chain
[MAXCPU
];
928 bus_dmamap_sync(ring
->tag
, ring
->map
, BUS_DMASYNC_POSTREAD
);
930 #ifdef ETHER_INPUT_CHAIN
931 ether_input_chain_init(chain
);
935 struct nfe_rx_data
*data
= &ring
->data
[ring
->cur
];
940 if (sc
->sc_flags
& NFE_40BIT_ADDR
) {
941 struct nfe_desc64
*desc64
= &ring
->desc64
[ring
->cur
];
943 flags
= le16toh(desc64
->flags
);
944 len
= le16toh(desc64
->length
) & 0x3fff;
946 struct nfe_desc32
*desc32
= &ring
->desc32
[ring
->cur
];
948 flags
= le16toh(desc32
->flags
);
949 len
= le16toh(desc32
->length
) & 0x3fff;
952 if (flags
& NFE_RX_READY
)
957 if ((sc
->sc_flags
& (NFE_JUMBO_SUP
| NFE_40BIT_ADDR
)) == 0) {
958 if (!(flags
& NFE_RX_VALID_V1
))
961 if ((flags
& NFE_RX_FIXME_V1
) == NFE_RX_FIXME_V1
) {
962 flags
&= ~NFE_RX_ERROR
;
963 len
--; /* fix buffer length */
966 if (!(flags
& NFE_RX_VALID_V2
))
969 if ((flags
& NFE_RX_FIXME_V2
) == NFE_RX_FIXME_V2
) {
970 flags
&= ~NFE_RX_ERROR
;
971 len
--; /* fix buffer length */
975 if (flags
& NFE_RX_ERROR
) {
982 if (sc
->sc_flags
& NFE_USE_JUMBO
)
983 error
= nfe_newbuf_jumbo(sc
, ring
, ring
->cur
, 0);
985 error
= nfe_newbuf_std(sc
, ring
, ring
->cur
, 0);
992 m
->m_pkthdr
.len
= m
->m_len
= len
;
993 m
->m_pkthdr
.rcvif
= ifp
;
995 if ((ifp
->if_capenable
& IFCAP_RXCSUM
) &&
996 (flags
& NFE_RX_CSUMOK
)) {
997 if (flags
& NFE_RX_IP_CSUMOK_V2
) {
998 m
->m_pkthdr
.csum_flags
|= CSUM_IP_CHECKED
|
1003 (NFE_RX_UDP_CSUMOK_V2
| NFE_RX_TCP_CSUMOK_V2
)) {
1004 m
->m_pkthdr
.csum_flags
|= CSUM_DATA_VALID
|
1006 CSUM_FRAG_NOT_CHECKED
;
1007 m
->m_pkthdr
.csum_data
= 0xffff;
1012 #ifdef ETHER_INPUT_CHAIN
1014 ether_input_chain2(ifp
, m
, chain
);
1016 ether_input_chain(ifp
, m
, chain
);
1019 ifp
->if_input(ifp
, m
);
1022 nfe_set_ready_rxdesc(sc
, ring
, ring
->cur
);
1023 sc
->rxq
.cur
= (sc
->rxq
.cur
+ 1) % sc
->sc_rx_ring_count
;
1027 bus_dmamap_sync(ring
->tag
, ring
->map
, BUS_DMASYNC_PREWRITE
);
1028 #ifdef ETHER_INPUT_CHAIN
1029 ether_input_dispatch(chain
);
1035 nfe_txeof(struct nfe_softc
*sc
)
1037 struct ifnet
*ifp
= &sc
->arpcom
.ac_if
;
1038 struct nfe_tx_ring
*ring
= &sc
->txq
;
1039 struct nfe_tx_data
*data
= NULL
;
1041 bus_dmamap_sync(ring
->tag
, ring
->map
, BUS_DMASYNC_POSTREAD
);
1042 while (ring
->next
!= ring
->cur
) {
1045 if (sc
->sc_flags
& NFE_40BIT_ADDR
)
1046 flags
= le16toh(ring
->desc64
[ring
->next
].flags
);
1048 flags
= le16toh(ring
->desc32
[ring
->next
].flags
);
1050 if (flags
& NFE_TX_VALID
)
1053 data
= &ring
->data
[ring
->next
];
1055 if ((sc
->sc_flags
& (NFE_JUMBO_SUP
| NFE_40BIT_ADDR
)) == 0) {
1056 if (!(flags
& NFE_TX_LASTFRAG_V1
) && data
->m
== NULL
)
1059 if ((flags
& NFE_TX_ERROR_V1
) != 0) {
1060 if_printf(ifp
, "tx v1 error 0x%4b\n", flags
,
1067 if (!(flags
& NFE_TX_LASTFRAG_V2
) && data
->m
== NULL
)
1070 if ((flags
& NFE_TX_ERROR_V2
) != 0) {
1071 if_printf(ifp
, "tx v2 error 0x%4b\n", flags
,
1079 if (data
->m
== NULL
) { /* should not get there */
1081 "last fragment bit w/o associated mbuf!\n");
1085 /* last fragment of the mbuf chain transmitted */
1086 bus_dmamap_sync(ring
->data_tag
, data
->map
,
1087 BUS_DMASYNC_POSTWRITE
);
1088 bus_dmamap_unload(ring
->data_tag
, data
->map
);
1095 KKASSERT(ring
->queued
>= 0);
1096 ring
->next
= (ring
->next
+ 1) % NFE_TX_RING_COUNT
;
1099 if (data
!= NULL
) { /* at least one slot freed */
1100 ifp
->if_flags
&= ~IFF_OACTIVE
;
1106 nfe_encap(struct nfe_softc
*sc
, struct nfe_tx_ring
*ring
, struct mbuf
*m0
)
1108 struct nfe_dma_ctx ctx
;
1109 bus_dma_segment_t segs
[NFE_MAX_SCATTER
];
1110 struct nfe_tx_data
*data
, *data_map
;
1112 struct nfe_desc64
*desc64
= NULL
;
1113 struct nfe_desc32
*desc32
= NULL
;
1118 data
= &ring
->data
[ring
->cur
];
1120 data_map
= data
; /* Remember who owns the DMA map */
1122 ctx
.nsegs
= NFE_MAX_SCATTER
;
1124 error
= bus_dmamap_load_mbuf(ring
->data_tag
, map
, m0
,
1125 nfe_buf_dma_addr
, &ctx
, BUS_DMA_NOWAIT
);
1126 if (error
&& error
!= EFBIG
) {
1127 if_printf(&sc
->arpcom
.ac_if
, "could not map TX mbuf\n");
1131 if (error
) { /* error == EFBIG */
1134 m_new
= m_defrag(m0
, MB_DONTWAIT
);
1135 if (m_new
== NULL
) {
1136 if_printf(&sc
->arpcom
.ac_if
,
1137 "could not defrag TX mbuf\n");
1144 ctx
.nsegs
= NFE_MAX_SCATTER
;
1146 error
= bus_dmamap_load_mbuf(ring
->data_tag
, map
, m0
,
1147 nfe_buf_dma_addr
, &ctx
,
1150 if_printf(&sc
->arpcom
.ac_if
,
1151 "could not map defraged TX mbuf\n");
1158 if (ring
->queued
+ ctx
.nsegs
>= NFE_TX_RING_COUNT
- 1) {
1159 bus_dmamap_unload(ring
->data_tag
, map
);
1164 /* setup h/w VLAN tagging */
1165 if (m0
->m_flags
& M_VLANTAG
)
1166 vtag
= m0
->m_pkthdr
.ether_vlantag
;
1168 if (sc
->arpcom
.ac_if
.if_capenable
& IFCAP_TXCSUM
) {
1169 if (m0
->m_pkthdr
.csum_flags
& CSUM_IP
)
1170 flags
|= NFE_TX_IP_CSUM
;
1171 if (m0
->m_pkthdr
.csum_flags
& (CSUM_TCP
| CSUM_UDP
))
1172 flags
|= NFE_TX_TCP_CSUM
;
1176 * XXX urm. somebody is unaware of how hardware works. You
1177 * absolutely CANNOT set NFE_TX_VALID on the next descriptor in
1178 * the ring until the entire chain is actually *VALID*. Otherwise
1179 * the hardware may encounter a partially initialized chain that
1180 * is marked as being ready to go when it in fact is not ready to
1184 for (i
= 0; i
< ctx
.nsegs
; i
++) {
1185 j
= (ring
->cur
+ i
) % NFE_TX_RING_COUNT
;
1186 data
= &ring
->data
[j
];
1188 if (sc
->sc_flags
& NFE_40BIT_ADDR
) {
1189 desc64
= &ring
->desc64
[j
];
1190 #if defined(__LP64__)
1191 desc64
->physaddr
[0] =
1192 htole32(segs
[i
].ds_addr
>> 32);
1194 desc64
->physaddr
[1] =
1195 htole32(segs
[i
].ds_addr
& 0xffffffff);
1196 desc64
->length
= htole16(segs
[i
].ds_len
- 1);
1197 desc64
->vtag
= htole32(vtag
);
1198 desc64
->flags
= htole16(flags
);
1200 desc32
= &ring
->desc32
[j
];
1201 desc32
->physaddr
= htole32(segs
[i
].ds_addr
);
1202 desc32
->length
= htole16(segs
[i
].ds_len
- 1);
1203 desc32
->flags
= htole16(flags
);
1206 /* csum flags and vtag belong to the first fragment only */
1207 flags
&= ~(NFE_TX_IP_CSUM
| NFE_TX_TCP_CSUM
);
1211 KKASSERT(ring
->queued
<= NFE_TX_RING_COUNT
);
1214 /* the whole mbuf chain has been DMA mapped, fix last descriptor */
1215 if (sc
->sc_flags
& NFE_40BIT_ADDR
) {
1216 desc64
->flags
|= htole16(NFE_TX_LASTFRAG_V2
);
1218 if (sc
->sc_flags
& NFE_JUMBO_SUP
)
1219 flags
= NFE_TX_LASTFRAG_V2
;
1221 flags
= NFE_TX_LASTFRAG_V1
;
1222 desc32
->flags
|= htole16(flags
);
1226 * Set NFE_TX_VALID backwards so the hardware doesn't see the
1227 * whole mess until the first descriptor in the map is flagged.
1229 for (i
= ctx
.nsegs
- 1; i
>= 0; --i
) {
1230 j
= (ring
->cur
+ i
) % NFE_TX_RING_COUNT
;
1231 if (sc
->sc_flags
& NFE_40BIT_ADDR
) {
1232 desc64
= &ring
->desc64
[j
];
1233 desc64
->flags
|= htole16(NFE_TX_VALID
);
1235 desc32
= &ring
->desc32
[j
];
1236 desc32
->flags
|= htole16(NFE_TX_VALID
);
1239 ring
->cur
= (ring
->cur
+ ctx
.nsegs
) % NFE_TX_RING_COUNT
;
1241 /* Exchange DMA map */
1242 data_map
->map
= data
->map
;
1246 bus_dmamap_sync(ring
->data_tag
, map
, BUS_DMASYNC_PREWRITE
);
1254 nfe_start(struct ifnet
*ifp
)
1256 struct nfe_softc
*sc
= ifp
->if_softc
;
1257 struct nfe_tx_ring
*ring
= &sc
->txq
;
1261 if ((ifp
->if_flags
& (IFF_OACTIVE
| IFF_RUNNING
)) != IFF_RUNNING
)
1265 m0
= ifq_dequeue(&ifp
->if_snd
, NULL
);
1269 ETHER_BPF_MTAP(ifp
, m0
);
1271 if (nfe_encap(sc
, ring
, m0
) != 0) {
1272 ifp
->if_flags
|= IFF_OACTIVE
;
1279 * `m0' may be freed in nfe_encap(), so
1280 * it should not be touched any more.
1283 if (count
== 0) /* nothing sent */
1286 /* Sync TX descriptor ring */
1287 bus_dmamap_sync(ring
->tag
, ring
->map
, BUS_DMASYNC_PREWRITE
);
1290 NFE_WRITE(sc
, NFE_RXTX_CTL
, NFE_RXTX_KICKTX
| sc
->rxtxctl
);
1293 * Set a timeout in case the chip goes out to lunch.
1299 nfe_watchdog(struct ifnet
*ifp
)
1301 struct nfe_softc
*sc
= ifp
->if_softc
;
1303 if (ifp
->if_flags
& IFF_RUNNING
) {
1304 if_printf(ifp
, "watchdog timeout - lost interrupt recovered\n");
1309 if_printf(ifp
, "watchdog timeout\n");
1311 nfe_init(ifp
->if_softc
);
1319 struct nfe_softc
*sc
= xsc
;
1320 struct ifnet
*ifp
= &sc
->arpcom
.ac_if
;
1328 * Switching between jumbo frames and normal frames should
1329 * be done _after_ nfe_stop() but _before_ nfe_init_rx_ring().
1331 if (ifp
->if_mtu
> ETHERMTU
) {
1332 sc
->sc_flags
|= NFE_USE_JUMBO
;
1333 sc
->rxq
.bufsz
= NFE_JBYTES
;
1335 if_printf(ifp
, "use jumbo frames\n");
1337 sc
->sc_flags
&= ~NFE_USE_JUMBO
;
1338 sc
->rxq
.bufsz
= MCLBYTES
;
1340 if_printf(ifp
, "use non-jumbo frames\n");
1343 error
= nfe_init_tx_ring(sc
, &sc
->txq
);
1349 error
= nfe_init_rx_ring(sc
, &sc
->rxq
);
1355 NFE_WRITE(sc
, NFE_TX_POLL
, 0);
1356 NFE_WRITE(sc
, NFE_STATUS
, 0);
1358 sc
->rxtxctl
= NFE_RXTX_BIT2
;
1359 if (sc
->sc_flags
& NFE_40BIT_ADDR
)
1360 sc
->rxtxctl
|= NFE_RXTX_V3MAGIC
;
1361 else if (sc
->sc_flags
& NFE_JUMBO_SUP
)
1362 sc
->rxtxctl
|= NFE_RXTX_V2MAGIC
;
1364 if (ifp
->if_capenable
& IFCAP_RXCSUM
)
1365 sc
->rxtxctl
|= NFE_RXTX_RXCSUM
;
1368 * Although the adapter is capable of stripping VLAN tags from received
1369 * frames (NFE_RXTX_VTAG_STRIP), we do not enable this functionality on
1370 * purpose. This will be done in software by our network stack.
1372 if (sc
->sc_flags
& NFE_HW_VLAN
)
1373 sc
->rxtxctl
|= NFE_RXTX_VTAG_INSERT
;
1375 NFE_WRITE(sc
, NFE_RXTX_CTL
, NFE_RXTX_RESET
| sc
->rxtxctl
);
1377 NFE_WRITE(sc
, NFE_RXTX_CTL
, sc
->rxtxctl
);
1379 if (sc
->sc_flags
& NFE_HW_VLAN
)
1380 NFE_WRITE(sc
, NFE_VTAG_CTL
, NFE_VTAG_ENABLE
);
1382 NFE_WRITE(sc
, NFE_SETUP_R6
, 0);
1384 /* set MAC address */
1385 nfe_set_macaddr(sc
, sc
->arpcom
.ac_enaddr
);
1387 /* tell MAC where rings are in memory */
1389 NFE_WRITE(sc
, NFE_RX_RING_ADDR_HI
, sc
->rxq
.physaddr
>> 32);
1391 NFE_WRITE(sc
, NFE_RX_RING_ADDR_LO
, sc
->rxq
.physaddr
& 0xffffffff);
1393 NFE_WRITE(sc
, NFE_TX_RING_ADDR_HI
, sc
->txq
.physaddr
>> 32);
1395 NFE_WRITE(sc
, NFE_TX_RING_ADDR_LO
, sc
->txq
.physaddr
& 0xffffffff);
1397 NFE_WRITE(sc
, NFE_RING_SIZE
,
1398 (sc
->sc_rx_ring_count
- 1) << 16 |
1399 (NFE_TX_RING_COUNT
- 1));
1401 NFE_WRITE(sc
, NFE_RXBUFSZ
, sc
->rxq
.bufsz
);
1403 /* force MAC to wakeup */
1404 tmp
= NFE_READ(sc
, NFE_PWR_STATE
);
1405 NFE_WRITE(sc
, NFE_PWR_STATE
, tmp
| NFE_PWR_WAKEUP
);
1407 tmp
= NFE_READ(sc
, NFE_PWR_STATE
);
1408 NFE_WRITE(sc
, NFE_PWR_STATE
, tmp
| NFE_PWR_VALID
);
1411 * NFE_IMTIMER generates a periodic interrupt via NFE_IRQ_TIMER.
1412 * It is unclear how wide the timer is. Base programming does
1413 * not seem to effect NFE_IRQ_TX_DONE or NFE_IRQ_RX_DONE so
1414 * we don't get any interrupt moderation. TX moderation is
1415 * possible by using the timer interrupt instead of TX_DONE.
1417 * It is unclear whether there are other bits that can be
1418 * set to make the NFE device actually do interrupt moderation
1421 * For now set a 128uS interval as a placemark, but don't use
1424 if (sc
->sc_imtime
< 0)
1425 NFE_WRITE(sc
, NFE_IMTIMER
, NFE_IMTIME_DEFAULT
);
1427 NFE_WRITE(sc
, NFE_IMTIMER
, NFE_IMTIME(sc
->sc_imtime
));
1429 NFE_WRITE(sc
, NFE_SETUP_R1
, NFE_R1_MAGIC
);
1430 NFE_WRITE(sc
, NFE_SETUP_R2
, NFE_R2_MAGIC
);
1431 NFE_WRITE(sc
, NFE_SETUP_R6
, NFE_R6_MAGIC
);
1433 /* update MAC knowledge of PHY; generates a NFE_IRQ_LINK interrupt */
1434 NFE_WRITE(sc
, NFE_STATUS
, sc
->mii_phyaddr
<< 24 | NFE_STATUS_MAGIC
);
1436 NFE_WRITE(sc
, NFE_SETUP_R4
, NFE_R4_MAGIC
);
1437 NFE_WRITE(sc
, NFE_WOL_CTL
, NFE_WOL_MAGIC
);
1439 sc
->rxtxctl
&= ~NFE_RXTX_BIT2
;
1440 NFE_WRITE(sc
, NFE_RXTX_CTL
, sc
->rxtxctl
);
1442 NFE_WRITE(sc
, NFE_RXTX_CTL
, NFE_RXTX_BIT1
| sc
->rxtxctl
);
1447 nfe_ifmedia_upd(ifp
);
1450 NFE_WRITE(sc
, NFE_RX_CTL
, NFE_RX_START
);
1453 NFE_WRITE(sc
, NFE_TX_CTL
, NFE_TX_START
);
1455 NFE_WRITE(sc
, NFE_PHY_STATUS
, 0xf);
1457 #ifdef DEVICE_POLLING
1458 if ((ifp
->if_flags
& IFF_POLLING
) == 0)
1460 /* enable interrupts */
1461 NFE_WRITE(sc
, NFE_IRQ_MASK
, sc
->sc_irq_enable
);
1463 callout_reset(&sc
->sc_tick_ch
, hz
, nfe_tick
, sc
);
1465 ifp
->if_flags
|= IFF_RUNNING
;
1466 ifp
->if_flags
&= ~IFF_OACTIVE
;
1469 * If we had stuff in the tx ring before its all cleaned out now
1470 * so we are not going to get an interrupt, jump-start any pending
1477 nfe_stop(struct nfe_softc
*sc
)
1479 struct ifnet
*ifp
= &sc
->arpcom
.ac_if
;
1481 callout_stop(&sc
->sc_tick_ch
);
1484 ifp
->if_flags
&= ~(IFF_RUNNING
| IFF_OACTIVE
);
1487 * Are NFE_TX_CTL and NFE_RX_CTL polled by the chip microcontroller
1488 * or do they directly reset/terminate the DMA hardware? Nobody
1493 * (1) Delay before zeroing out NFE_TX_CTL. This seems to help a
1494 * watchdog timeout that occurs after a stop/init sequence. I am
1495 * theorizing that a TX KICK occuring just prior to a reinit (e.g.
1496 * due to dhclient) is queueing an interrupt to the microcontroller
1497 * which gets delayed until after we clear the control registers
1498 * down below, resulting in mass confusion. TX KICK is clearly
1499 * hardware aided whereas the other bits in the control register
1500 * are more likely to be polled by the microcontroller.
1502 * (2) Delay after zeroing out TX and RX CTL registers, under the
1503 * assumption that primary DMA is initiated and terminated by
1504 * the microcontroller and not hardware (and anyway, one can hardly
1505 * expect the DMA engine to just instantly stop!). We don't want
1506 * to rip the rings out from under it before it has had a chance to
1512 NFE_WRITE(sc
, NFE_TX_CTL
, 0);
1515 NFE_WRITE(sc
, NFE_RX_CTL
, 0);
1517 /* Disable interrupts */
1518 NFE_WRITE(sc
, NFE_IRQ_MASK
, 0);
1522 /* Reset Tx and Rx rings */
1523 nfe_reset_tx_ring(sc
, &sc
->txq
);
1524 nfe_reset_rx_ring(sc
, &sc
->rxq
);
1528 nfe_alloc_rx_ring(struct nfe_softc
*sc
, struct nfe_rx_ring
*ring
)
1530 int i
, j
, error
, descsize
;
1533 if (sc
->sc_flags
& NFE_40BIT_ADDR
) {
1534 desc
= (void **)&ring
->desc64
;
1535 descsize
= sizeof(struct nfe_desc64
);
1537 desc
= (void **)&ring
->desc32
;
1538 descsize
= sizeof(struct nfe_desc32
);
1541 ring
->jbuf
= kmalloc(sizeof(struct nfe_jbuf
) * NFE_JPOOL_COUNT
,
1542 M_DEVBUF
, M_WAITOK
| M_ZERO
);
1543 ring
->data
= kmalloc(sizeof(struct nfe_rx_data
) * sc
->sc_rx_ring_count
,
1544 M_DEVBUF
, M_WAITOK
| M_ZERO
);
1546 ring
->bufsz
= MCLBYTES
;
1547 ring
->cur
= ring
->next
= 0;
1549 error
= bus_dma_tag_create(NULL
, PAGE_SIZE
, 0,
1550 BUS_SPACE_MAXADDR_32BIT
, BUS_SPACE_MAXADDR
,
1552 sc
->sc_rx_ring_count
* descsize
, 1,
1553 sc
->sc_rx_ring_count
* descsize
,
1556 if_printf(&sc
->arpcom
.ac_if
,
1557 "could not create desc RX DMA tag\n");
1561 error
= bus_dmamem_alloc(ring
->tag
, desc
, BUS_DMA_WAITOK
| BUS_DMA_ZERO
,
1564 if_printf(&sc
->arpcom
.ac_if
,
1565 "could not allocate RX desc DMA memory\n");
1566 bus_dma_tag_destroy(ring
->tag
);
1571 error
= bus_dmamap_load(ring
->tag
, ring
->map
, *desc
,
1572 sc
->sc_rx_ring_count
* descsize
,
1573 nfe_ring_dma_addr
, &ring
->physaddr
,
1576 if_printf(&sc
->arpcom
.ac_if
,
1577 "could not load RX desc DMA map\n");
1578 bus_dmamem_free(ring
->tag
, *desc
, ring
->map
);
1579 bus_dma_tag_destroy(ring
->tag
);
1584 if (sc
->sc_flags
& NFE_JUMBO_SUP
) {
1585 error
= nfe_jpool_alloc(sc
, ring
);
1587 if_printf(&sc
->arpcom
.ac_if
,
1588 "could not allocate jumbo frames\n");
1593 error
= bus_dma_tag_create(NULL
, 1, 0,
1594 BUS_SPACE_MAXADDR_32BIT
, BUS_SPACE_MAXADDR
,
1596 MCLBYTES
, 1, MCLBYTES
,
1597 0, &ring
->data_tag
);
1599 if_printf(&sc
->arpcom
.ac_if
,
1600 "could not create RX mbuf DMA tag\n");
1604 /* Create a spare RX mbuf DMA map */
1605 error
= bus_dmamap_create(ring
->data_tag
, 0, &ring
->data_tmpmap
);
1607 if_printf(&sc
->arpcom
.ac_if
,
1608 "could not create spare RX mbuf DMA map\n");
1609 bus_dma_tag_destroy(ring
->data_tag
);
1610 ring
->data_tag
= NULL
;
1614 for (i
= 0; i
< sc
->sc_rx_ring_count
; i
++) {
1615 error
= bus_dmamap_create(ring
->data_tag
, 0,
1616 &ring
->data
[i
].map
);
1618 if_printf(&sc
->arpcom
.ac_if
,
1619 "could not create %dth RX mbuf DMA mapn", i
);
1625 for (j
= 0; j
< i
; ++j
)
1626 bus_dmamap_destroy(ring
->data_tag
, ring
->data
[i
].map
);
1627 bus_dmamap_destroy(ring
->data_tag
, ring
->data_tmpmap
);
1628 bus_dma_tag_destroy(ring
->data_tag
);
1629 ring
->data_tag
= NULL
;
1634 nfe_reset_rx_ring(struct nfe_softc
*sc
, struct nfe_rx_ring
*ring
)
1638 for (i
= 0; i
< sc
->sc_rx_ring_count
; i
++) {
1639 struct nfe_rx_data
*data
= &ring
->data
[i
];
1641 if (data
->m
!= NULL
) {
1642 if ((sc
->sc_flags
& NFE_USE_JUMBO
) == 0)
1643 bus_dmamap_unload(ring
->data_tag
, data
->map
);
1648 bus_dmamap_sync(ring
->tag
, ring
->map
, BUS_DMASYNC_PREWRITE
);
1650 ring
->cur
= ring
->next
= 0;
1654 nfe_init_rx_ring(struct nfe_softc
*sc
, struct nfe_rx_ring
*ring
)
1658 for (i
= 0; i
< sc
->sc_rx_ring_count
; ++i
) {
1661 /* XXX should use a function pointer */
1662 if (sc
->sc_flags
& NFE_USE_JUMBO
)
1663 error
= nfe_newbuf_jumbo(sc
, ring
, i
, 1);
1665 error
= nfe_newbuf_std(sc
, ring
, i
, 1);
1667 if_printf(&sc
->arpcom
.ac_if
,
1668 "could not allocate RX buffer\n");
1672 nfe_set_ready_rxdesc(sc
, ring
, i
);
1674 bus_dmamap_sync(ring
->tag
, ring
->map
, BUS_DMASYNC_PREWRITE
);
1680 nfe_free_rx_ring(struct nfe_softc
*sc
, struct nfe_rx_ring
*ring
)
1682 if (ring
->data_tag
!= NULL
) {
1683 struct nfe_rx_data
*data
;
1686 for (i
= 0; i
< sc
->sc_rx_ring_count
; i
++) {
1687 data
= &ring
->data
[i
];
1689 if (data
->m
!= NULL
) {
1690 bus_dmamap_unload(ring
->data_tag
, data
->map
);
1693 bus_dmamap_destroy(ring
->data_tag
, data
->map
);
1695 bus_dmamap_destroy(ring
->data_tag
, ring
->data_tmpmap
);
1696 bus_dma_tag_destroy(ring
->data_tag
);
1699 nfe_jpool_free(sc
, ring
);
1701 if (ring
->jbuf
!= NULL
)
1702 kfree(ring
->jbuf
, M_DEVBUF
);
1703 if (ring
->data
!= NULL
)
1704 kfree(ring
->data
, M_DEVBUF
);
1706 if (ring
->tag
!= NULL
) {
1709 if (sc
->sc_flags
& NFE_40BIT_ADDR
)
1710 desc
= ring
->desc64
;
1712 desc
= ring
->desc32
;
1714 bus_dmamap_unload(ring
->tag
, ring
->map
);
1715 bus_dmamem_free(ring
->tag
, desc
, ring
->map
);
1716 bus_dma_tag_destroy(ring
->tag
);
1720 static struct nfe_jbuf
*
1721 nfe_jalloc(struct nfe_softc
*sc
)
1723 struct ifnet
*ifp
= &sc
->arpcom
.ac_if
;
1724 struct nfe_jbuf
*jbuf
;
1726 lwkt_serialize_enter(&sc
->sc_jbuf_serializer
);
1728 jbuf
= SLIST_FIRST(&sc
->rxq
.jfreelist
);
1730 SLIST_REMOVE_HEAD(&sc
->rxq
.jfreelist
, jnext
);
1733 if_printf(ifp
, "no free jumbo buffer\n");
1736 lwkt_serialize_exit(&sc
->sc_jbuf_serializer
);
1742 nfe_jfree(void *arg
)
1744 struct nfe_jbuf
*jbuf
= arg
;
1745 struct nfe_softc
*sc
= jbuf
->sc
;
1746 struct nfe_rx_ring
*ring
= jbuf
->ring
;
1748 if (&ring
->jbuf
[jbuf
->slot
] != jbuf
)
1749 panic("%s: free wrong jumbo buffer\n", __func__
);
1750 else if (jbuf
->inuse
== 0)
1751 panic("%s: jumbo buffer already freed\n", __func__
);
1753 lwkt_serialize_enter(&sc
->sc_jbuf_serializer
);
1754 atomic_subtract_int(&jbuf
->inuse
, 1);
1755 if (jbuf
->inuse
== 0)
1756 SLIST_INSERT_HEAD(&ring
->jfreelist
, jbuf
, jnext
);
1757 lwkt_serialize_exit(&sc
->sc_jbuf_serializer
);
1763 struct nfe_jbuf
*jbuf
= arg
;
1764 struct nfe_rx_ring
*ring
= jbuf
->ring
;
1766 if (&ring
->jbuf
[jbuf
->slot
] != jbuf
)
1767 panic("%s: ref wrong jumbo buffer\n", __func__
);
1768 else if (jbuf
->inuse
== 0)
1769 panic("%s: jumbo buffer already freed\n", __func__
);
1771 atomic_add_int(&jbuf
->inuse
, 1);
1775 nfe_jpool_alloc(struct nfe_softc
*sc
, struct nfe_rx_ring
*ring
)
1777 struct nfe_jbuf
*jbuf
;
1778 bus_addr_t physaddr
;
1783 * Allocate a big chunk of DMA'able memory.
1785 error
= bus_dma_tag_create(NULL
, PAGE_SIZE
, 0,
1786 BUS_SPACE_MAXADDR_32BIT
, BUS_SPACE_MAXADDR
,
1788 NFE_JPOOL_SIZE
, 1, NFE_JPOOL_SIZE
,
1791 if_printf(&sc
->arpcom
.ac_if
,
1792 "could not create jumbo DMA tag\n");
1796 error
= bus_dmamem_alloc(ring
->jtag
, (void **)&ring
->jpool
,
1797 BUS_DMA_WAITOK
, &ring
->jmap
);
1799 if_printf(&sc
->arpcom
.ac_if
,
1800 "could not allocate jumbo DMA memory\n");
1801 bus_dma_tag_destroy(ring
->jtag
);
1806 error
= bus_dmamap_load(ring
->jtag
, ring
->jmap
, ring
->jpool
,
1807 NFE_JPOOL_SIZE
, nfe_ring_dma_addr
, &physaddr
,
1810 if_printf(&sc
->arpcom
.ac_if
,
1811 "could not load jumbo DMA map\n");
1812 bus_dmamem_free(ring
->jtag
, ring
->jpool
, ring
->jmap
);
1813 bus_dma_tag_destroy(ring
->jtag
);
1818 /* ..and split it into 9KB chunks */
1819 SLIST_INIT(&ring
->jfreelist
);
1822 for (i
= 0; i
< NFE_JPOOL_COUNT
; i
++) {
1823 jbuf
= &ring
->jbuf
[i
];
1830 jbuf
->physaddr
= physaddr
;
1832 SLIST_INSERT_HEAD(&ring
->jfreelist
, jbuf
, jnext
);
1835 physaddr
+= NFE_JBYTES
;
1842 nfe_jpool_free(struct nfe_softc
*sc
, struct nfe_rx_ring
*ring
)
1844 if (ring
->jtag
!= NULL
) {
1845 bus_dmamap_unload(ring
->jtag
, ring
->jmap
);
1846 bus_dmamem_free(ring
->jtag
, ring
->jpool
, ring
->jmap
);
1847 bus_dma_tag_destroy(ring
->jtag
);
1852 nfe_alloc_tx_ring(struct nfe_softc
*sc
, struct nfe_tx_ring
*ring
)
1854 int i
, j
, error
, descsize
;
1857 if (sc
->sc_flags
& NFE_40BIT_ADDR
) {
1858 desc
= (void **)&ring
->desc64
;
1859 descsize
= sizeof(struct nfe_desc64
);
1861 desc
= (void **)&ring
->desc32
;
1862 descsize
= sizeof(struct nfe_desc32
);
1866 ring
->cur
= ring
->next
= 0;
1868 error
= bus_dma_tag_create(NULL
, PAGE_SIZE
, 0,
1869 BUS_SPACE_MAXADDR_32BIT
, BUS_SPACE_MAXADDR
,
1871 NFE_TX_RING_COUNT
* descsize
, 1,
1872 NFE_TX_RING_COUNT
* descsize
,
1875 if_printf(&sc
->arpcom
.ac_if
,
1876 "could not create TX desc DMA map\n");
1880 error
= bus_dmamem_alloc(ring
->tag
, desc
, BUS_DMA_WAITOK
| BUS_DMA_ZERO
,
1883 if_printf(&sc
->arpcom
.ac_if
,
1884 "could not allocate TX desc DMA memory\n");
1885 bus_dma_tag_destroy(ring
->tag
);
1890 error
= bus_dmamap_load(ring
->tag
, ring
->map
, *desc
,
1891 NFE_TX_RING_COUNT
* descsize
,
1892 nfe_ring_dma_addr
, &ring
->physaddr
,
1895 if_printf(&sc
->arpcom
.ac_if
,
1896 "could not load TX desc DMA map\n");
1897 bus_dmamem_free(ring
->tag
, *desc
, ring
->map
);
1898 bus_dma_tag_destroy(ring
->tag
);
1903 error
= bus_dma_tag_create(NULL
, PAGE_SIZE
, 0,
1904 BUS_SPACE_MAXADDR_32BIT
, BUS_SPACE_MAXADDR
,
1906 NFE_JBYTES
* NFE_MAX_SCATTER
,
1907 NFE_MAX_SCATTER
, NFE_JBYTES
,
1908 0, &ring
->data_tag
);
1910 if_printf(&sc
->arpcom
.ac_if
,
1911 "could not create TX buf DMA tag\n");
1915 for (i
= 0; i
< NFE_TX_RING_COUNT
; i
++) {
1916 error
= bus_dmamap_create(ring
->data_tag
, 0,
1917 &ring
->data
[i
].map
);
1919 if_printf(&sc
->arpcom
.ac_if
,
1920 "could not create %dth TX buf DMA map\n", i
);
1927 for (j
= 0; j
< i
; ++j
)
1928 bus_dmamap_destroy(ring
->data_tag
, ring
->data
[i
].map
);
1929 bus_dma_tag_destroy(ring
->data_tag
);
1930 ring
->data_tag
= NULL
;
1935 nfe_reset_tx_ring(struct nfe_softc
*sc
, struct nfe_tx_ring
*ring
)
1939 for (i
= 0; i
< NFE_TX_RING_COUNT
; i
++) {
1940 struct nfe_tx_data
*data
= &ring
->data
[i
];
1942 if (sc
->sc_flags
& NFE_40BIT_ADDR
)
1943 ring
->desc64
[i
].flags
= 0;
1945 ring
->desc32
[i
].flags
= 0;
1947 if (data
->m
!= NULL
) {
1948 bus_dmamap_sync(ring
->data_tag
, data
->map
,
1949 BUS_DMASYNC_POSTWRITE
);
1950 bus_dmamap_unload(ring
->data_tag
, data
->map
);
1955 bus_dmamap_sync(ring
->tag
, ring
->map
, BUS_DMASYNC_PREWRITE
);
1958 ring
->cur
= ring
->next
= 0;
1962 nfe_init_tx_ring(struct nfe_softc
*sc __unused
,
1963 struct nfe_tx_ring
*ring __unused
)
1969 nfe_free_tx_ring(struct nfe_softc
*sc
, struct nfe_tx_ring
*ring
)
1971 if (ring
->data_tag
!= NULL
) {
1972 struct nfe_tx_data
*data
;
1975 for (i
= 0; i
< NFE_TX_RING_COUNT
; ++i
) {
1976 data
= &ring
->data
[i
];
1978 if (data
->m
!= NULL
) {
1979 bus_dmamap_unload(ring
->data_tag
, data
->map
);
1982 bus_dmamap_destroy(ring
->data_tag
, data
->map
);
1985 bus_dma_tag_destroy(ring
->data_tag
);
1988 if (ring
->tag
!= NULL
) {
1991 if (sc
->sc_flags
& NFE_40BIT_ADDR
)
1992 desc
= ring
->desc64
;
1994 desc
= ring
->desc32
;
1996 bus_dmamap_unload(ring
->tag
, ring
->map
);
1997 bus_dmamem_free(ring
->tag
, desc
, ring
->map
);
1998 bus_dma_tag_destroy(ring
->tag
);
2003 nfe_ifmedia_upd(struct ifnet
*ifp
)
2005 struct nfe_softc
*sc
= ifp
->if_softc
;
2006 struct mii_data
*mii
= device_get_softc(sc
->sc_miibus
);
2008 if (mii
->mii_instance
!= 0) {
2009 struct mii_softc
*miisc
;
2011 LIST_FOREACH(miisc
, &mii
->mii_phys
, mii_list
)
2012 mii_phy_reset(miisc
);
2020 nfe_ifmedia_sts(struct ifnet
*ifp
, struct ifmediareq
*ifmr
)
2022 struct nfe_softc
*sc
= ifp
->if_softc
;
2023 struct mii_data
*mii
= device_get_softc(sc
->sc_miibus
);
2026 ifmr
->ifm_status
= mii
->mii_media_status
;
2027 ifmr
->ifm_active
= mii
->mii_media_active
;
2031 nfe_setmulti(struct nfe_softc
*sc
)
2033 struct ifnet
*ifp
= &sc
->arpcom
.ac_if
;
2034 struct ifmultiaddr
*ifma
;
2035 uint8_t addr
[ETHER_ADDR_LEN
], mask
[ETHER_ADDR_LEN
];
2036 uint32_t filter
= NFE_RXFILTER_MAGIC
;
2039 if ((ifp
->if_flags
& (IFF_ALLMULTI
| IFF_PROMISC
)) != 0) {
2040 bzero(addr
, ETHER_ADDR_LEN
);
2041 bzero(mask
, ETHER_ADDR_LEN
);
2045 bcopy(etherbroadcastaddr
, addr
, ETHER_ADDR_LEN
);
2046 bcopy(etherbroadcastaddr
, mask
, ETHER_ADDR_LEN
);
2048 LIST_FOREACH(ifma
, &ifp
->if_multiaddrs
, ifma_link
) {
2051 if (ifma
->ifma_addr
->sa_family
!= AF_LINK
)
2054 maddr
= LLADDR((struct sockaddr_dl
*)ifma
->ifma_addr
);
2055 for (i
= 0; i
< ETHER_ADDR_LEN
; i
++) {
2056 addr
[i
] &= maddr
[i
];
2057 mask
[i
] &= ~maddr
[i
];
2061 for (i
= 0; i
< ETHER_ADDR_LEN
; i
++)
2065 addr
[0] |= 0x01; /* make sure multicast bit is set */
2067 NFE_WRITE(sc
, NFE_MULTIADDR_HI
,
2068 addr
[3] << 24 | addr
[2] << 16 | addr
[1] << 8 | addr
[0]);
2069 NFE_WRITE(sc
, NFE_MULTIADDR_LO
,
2070 addr
[5] << 8 | addr
[4]);
2071 NFE_WRITE(sc
, NFE_MULTIMASK_HI
,
2072 mask
[3] << 24 | mask
[2] << 16 | mask
[1] << 8 | mask
[0]);
2073 NFE_WRITE(sc
, NFE_MULTIMASK_LO
,
2074 mask
[5] << 8 | mask
[4]);
2076 filter
|= (ifp
->if_flags
& IFF_PROMISC
) ? NFE_PROMISC
: NFE_U2M
;
2077 NFE_WRITE(sc
, NFE_RXFILTER
, filter
);
2081 nfe_get_macaddr(struct nfe_softc
*sc
, uint8_t *addr
)
2085 tmp
= NFE_READ(sc
, NFE_MACADDR_LO
);
2086 addr
[0] = (tmp
>> 8) & 0xff;
2087 addr
[1] = (tmp
& 0xff);
2089 tmp
= NFE_READ(sc
, NFE_MACADDR_HI
);
2090 addr
[2] = (tmp
>> 24) & 0xff;
2091 addr
[3] = (tmp
>> 16) & 0xff;
2092 addr
[4] = (tmp
>> 8) & 0xff;
2093 addr
[5] = (tmp
& 0xff);
2097 nfe_set_macaddr(struct nfe_softc
*sc
, const uint8_t *addr
)
2099 NFE_WRITE(sc
, NFE_MACADDR_LO
,
2100 addr
[5] << 8 | addr
[4]);
2101 NFE_WRITE(sc
, NFE_MACADDR_HI
,
2102 addr
[3] << 24 | addr
[2] << 16 | addr
[1] << 8 | addr
[0]);
2108 struct nfe_softc
*sc
= arg
;
2109 struct ifnet
*ifp
= &sc
->arpcom
.ac_if
;
2110 struct mii_data
*mii
= device_get_softc(sc
->sc_miibus
);
2112 lwkt_serialize_enter(ifp
->if_serializer
);
2115 callout_reset(&sc
->sc_tick_ch
, hz
, nfe_tick
, sc
);
2117 lwkt_serialize_exit(ifp
->if_serializer
);
2121 nfe_ring_dma_addr(void *arg
, bus_dma_segment_t
*seg
, int nseg
, int error
)
2126 KASSERT(nseg
== 1, ("too many segments, should be 1\n"));
2128 *((uint32_t *)arg
) = seg
->ds_addr
;
2132 nfe_buf_dma_addr(void *arg
, bus_dma_segment_t
*segs
, int nsegs
,
2133 bus_size_t mapsz __unused
, int error
)
2135 struct nfe_dma_ctx
*ctx
= arg
;
2141 KASSERT(nsegs
<= ctx
->nsegs
,
2142 ("too many segments(%d), should be <= %d\n",
2143 nsegs
, ctx
->nsegs
));
2146 for (i
= 0; i
< nsegs
; ++i
)
2147 ctx
->segs
[i
] = segs
[i
];
2151 nfe_newbuf_std(struct nfe_softc
*sc
, struct nfe_rx_ring
*ring
, int idx
,
2154 struct nfe_rx_data
*data
= &ring
->data
[idx
];
2155 struct nfe_dma_ctx ctx
;
2156 bus_dma_segment_t seg
;
2161 m
= m_getcl(wait
? MB_WAIT
: MB_DONTWAIT
, MT_DATA
, M_PKTHDR
);
2164 m
->m_len
= m
->m_pkthdr
.len
= MCLBYTES
;
2168 error
= bus_dmamap_load_mbuf(ring
->data_tag
, ring
->data_tmpmap
,
2169 m
, nfe_buf_dma_addr
, &ctx
,
2170 wait
? BUS_DMA_WAITOK
: BUS_DMA_NOWAIT
);
2173 if_printf(&sc
->arpcom
.ac_if
, "could map RX mbuf %d\n", error
);
2177 /* Unload originally mapped mbuf */
2178 bus_dmamap_unload(ring
->data_tag
, data
->map
);
2180 /* Swap this DMA map with tmp DMA map */
2182 data
->map
= ring
->data_tmpmap
;
2183 ring
->data_tmpmap
= map
;
2185 /* Caller is assumed to have collected the old mbuf */
2188 nfe_set_paddr_rxdesc(sc
, ring
, idx
, seg
.ds_addr
);
2190 bus_dmamap_sync(ring
->data_tag
, data
->map
, BUS_DMASYNC_PREREAD
);
2195 nfe_newbuf_jumbo(struct nfe_softc
*sc
, struct nfe_rx_ring
*ring
, int idx
,
2198 struct nfe_rx_data
*data
= &ring
->data
[idx
];
2199 struct nfe_jbuf
*jbuf
;
2202 MGETHDR(m
, wait
? MB_WAIT
: MB_DONTWAIT
, MT_DATA
);
2206 jbuf
= nfe_jalloc(sc
);
2209 if_printf(&sc
->arpcom
.ac_if
, "jumbo allocation failed "
2210 "-- packet dropped!\n");
2214 m
->m_ext
.ext_arg
= jbuf
;
2215 m
->m_ext
.ext_buf
= jbuf
->buf
;
2216 m
->m_ext
.ext_free
= nfe_jfree
;
2217 m
->m_ext
.ext_ref
= nfe_jref
;
2218 m
->m_ext
.ext_size
= NFE_JBYTES
;
2220 m
->m_data
= m
->m_ext
.ext_buf
;
2221 m
->m_flags
|= M_EXT
;
2222 m
->m_len
= m
->m_pkthdr
.len
= m
->m_ext
.ext_size
;
2224 /* Caller is assumed to have collected the old mbuf */
2227 nfe_set_paddr_rxdesc(sc
, ring
, idx
, jbuf
->physaddr
);
2229 bus_dmamap_sync(ring
->jtag
, ring
->jmap
, BUS_DMASYNC_PREREAD
);
2234 nfe_set_paddr_rxdesc(struct nfe_softc
*sc
, struct nfe_rx_ring
*ring
, int idx
,
2235 bus_addr_t physaddr
)
2237 if (sc
->sc_flags
& NFE_40BIT_ADDR
) {
2238 struct nfe_desc64
*desc64
= &ring
->desc64
[idx
];
2240 #if defined(__LP64__)
2241 desc64
->physaddr
[0] = htole32(physaddr
>> 32);
2243 desc64
->physaddr
[1] = htole32(physaddr
& 0xffffffff);
2245 struct nfe_desc32
*desc32
= &ring
->desc32
[idx
];
2247 desc32
->physaddr
= htole32(physaddr
);
2252 nfe_set_ready_rxdesc(struct nfe_softc
*sc
, struct nfe_rx_ring
*ring
, int idx
)
2254 if (sc
->sc_flags
& NFE_40BIT_ADDR
) {
2255 struct nfe_desc64
*desc64
= &ring
->desc64
[idx
];
2257 desc64
->length
= htole16(ring
->bufsz
);
2258 desc64
->flags
= htole16(NFE_RX_READY
);
2260 struct nfe_desc32
*desc32
= &ring
->desc32
[idx
];
2262 desc32
->length
= htole16(ring
->bufsz
);
2263 desc32
->flags
= htole16(NFE_RX_READY
);
2268 nfe_sysctl_imtime(SYSCTL_HANDLER_ARGS
)
2270 struct nfe_softc
*sc
= arg1
;
2271 struct ifnet
*ifp
= &sc
->arpcom
.ac_if
;
2274 lwkt_serialize_enter(ifp
->if_serializer
);
2277 error
= sysctl_handle_int(oidp
, &v
, 0, req
);
2278 if (error
|| req
->newptr
== NULL
)
2285 if (sc
->sc_imtime
!= v
) {
2286 int old_imtime
= sc
->sc_imtime
;
2289 sc
->sc_irq_enable
= NFE_IRQ_ENABLE(sc
);
2291 if ((ifp
->if_flags
& (IFF_POLLING
| IFF_RUNNING
))
2293 if (old_imtime
> 0 && sc
->sc_imtime
> 0) {
2294 NFE_WRITE(sc
, NFE_IMTIMER
,
2295 NFE_IMTIME(sc
->sc_imtime
));
2296 } else if ((old_imtime
* sc
->sc_imtime
) < 0) {
2302 lwkt_serialize_exit(ifp
->if_serializer
);