if_nge.c revision 77440
1/*
2 * Copyright (c) 2001 Wind River Systems
3 * Copyright (c) 1997, 1998, 1999, 2000, 2001
4 *	Bill Paul <wpaul@bsdi.com>.  All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 *    notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 *    must display the following acknowledgement:
16 *	This product includes software developed by Bill Paul.
17 * 4. Neither the name of the author nor the names of any co-contributors
18 *    may be used to endorse or promote products derived from this software
19 *    without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 *
33 * $FreeBSD: head/sys/dev/nge/if_nge.c 77440 2001-05-29 22:14:03Z wpaul $
34 */
35
36/*
37 * National Semiconductor DP83820/DP83821 gigabit ethernet driver
38 * for FreeBSD. Datasheets are available from:
39 *
40 * http://www.national.com/ds/DP/DP83820.pdf
41 * http://www.national.com/ds/DP/DP83821.pdf
42 *
43 * These chips are used on several low cost gigabit ethernet NICs
44 * sold by D-Link, Addtron, SMC and Asante. Both parts are
45 * virtually the same, except the 83820 is a 64-bit/32-bit part,
46 * while the 83821 is 32-bit only.
47 *
48 * Many cards also use National gigE transceivers, such as the
49 * DP83891, DP83861 and DP83862 gigPHYTER parts. The DP83861 datasheet
50 * contains a full register description that applies to all of these
51 * components:
52 *
53 * http://www.national.com/ds/DP/DP83861.pdf
54 *
55 * Written by Bill Paul <wpaul@bsdi.com>
56 * BSDi Open Source Solutions
57 */
58
59/*
60 * The NatSemi DP83820 and 83821 controllers are enhanced versions
61 * of the NatSemi MacPHYTER 10/100 devices. They support 10, 100
62 * and 1000Mbps speeds with 1000baseX (ten bit interface), MII and GMII
63 * ports. Other features include 8K TX FIFO and 32K RX FIFO, TCP/IP
64 * hardware checksum offload (IPv4 only), VLAN tagging and filtering,
65 * priority TX and RX queues, a 2048 bit multicast hash filter, 4 RX pattern
66 * matching buffers, one perfect address filter buffer and interrupt
67 * moderation. The 83820 supports both 64-bit and 32-bit addressing
68 * and data transfers: the 64-bit support can be toggled on or off
69 * via software. This affects the size of certain fields in the DMA
70 * descriptors.
71 *
72 * As far as I can tell, the 83820 and 83821 are decent chips, marred by
73 * only one flaw: the RX buffers must be aligned on 64-bit boundaries.
74 * So far this is the only gigE MAC that I've encountered with this
75 * requirement.
76 */
77
78#include "vlan.h"
79
80#include <sys/param.h>
81#include <sys/systm.h>
82#include <sys/sockio.h>
83#include <sys/mbuf.h>
84#include <sys/malloc.h>
85#include <sys/kernel.h>
86#include <sys/socket.h>
87
88#include <net/if.h>
89#include <net/if_arp.h>
90#include <net/ethernet.h>
91#include <net/if_dl.h>
92#include <net/if_media.h>
93
94#if NVLAN > 0
95#include <net/if_types.h>
96#include <net/if_vlan_var.h>
97#endif
98
99#include <net/bpf.h>
100
101#include <vm/vm.h>              /* for vtophys */
102#include <vm/pmap.h>            /* for vtophys */
103#include <machine/clock.h>      /* for DELAY */
104#include <machine/bus_pio.h>
105#include <machine/bus_memio.h>
106#include <machine/bus.h>
107#include <machine/resource.h>
108#include <sys/bus.h>
109#include <sys/rman.h>
110
111#include <dev/mii/mii.h>
112#include <dev/mii/miivar.h>
113
114#include <pci/pcireg.h>
115#include <pci/pcivar.h>
116
117#define NGE_USEIOSPACE
118
119#include <dev/nge/if_ngereg.h>
120
121MODULE_DEPEND(nge, miibus, 1, 1, 1);
122
123/* "controller miibus0" required.  See GENERIC if you get errors here. */
124#include "miibus_if.h"
125
126#ifndef lint
127static const char rcsid[] =
128  "$FreeBSD: head/sys/dev/nge/if_nge.c 77440 2001-05-29 22:14:03Z wpaul $";
129#endif
130
131#define NGE_CSUM_FEATURES	(CSUM_IP | CSUM_TCP | CSUM_UDP)
132
133/*
134 * Various supported device vendors/types and their names.
135 */
136static struct nge_type nge_devs[] = {
137	{ NGE_VENDORID, NGE_DEVICEID,
138	    "National Semiconductor Gigabit Ethernet" },
139	{ 0, 0, NULL }
140};
141
142static int nge_probe		__P((device_t));
143static int nge_attach		__P((device_t));
144static int nge_detach		__P((device_t));
145
146static int nge_alloc_jumbo_mem	__P((struct nge_softc *));
147static void nge_free_jumbo_mem	__P((struct nge_softc *));
148static void *nge_jalloc		__P((struct nge_softc *));
149static void nge_jfree		__P((caddr_t, void *));
150
151static int nge_newbuf		__P((struct nge_softc *,
152					struct nge_desc *,
153					struct mbuf *));
154static int nge_encap		__P((struct nge_softc *,
155					struct mbuf *, u_int32_t *));
156static void nge_rxeof		__P((struct nge_softc *));
157static void nge_rxeoc		__P((struct nge_softc *));
158static void nge_txeof		__P((struct nge_softc *));
159static void nge_intr		__P((void *));
160static void nge_tick		__P((void *));
161static void nge_start		__P((struct ifnet *));
162static int nge_ioctl		__P((struct ifnet *, u_long, caddr_t));
163static void nge_init		__P((void *));
164static void nge_stop		__P((struct nge_softc *));
165static void nge_watchdog		__P((struct ifnet *));
166static void nge_shutdown		__P((device_t));
167static int nge_ifmedia_upd	__P((struct ifnet *));
168static void nge_ifmedia_sts	__P((struct ifnet *, struct ifmediareq *));
169
170static void nge_delay		__P((struct nge_softc *));
171static void nge_eeprom_idle	__P((struct nge_softc *));
172static void nge_eeprom_putbyte	__P((struct nge_softc *, int));
173static void nge_eeprom_getword	__P((struct nge_softc *, int, u_int16_t *));
174static void nge_read_eeprom	__P((struct nge_softc *, caddr_t, int,
175							int, int));
176
177static void nge_mii_sync	__P((struct nge_softc *));
178static void nge_mii_send	__P((struct nge_softc *, u_int32_t, int));
179static int nge_mii_readreg	__P((struct nge_softc *,
180					struct nge_mii_frame *));
181static int nge_mii_writereg	__P((struct nge_softc *,
182					struct nge_mii_frame *));
183
184static int nge_miibus_readreg	__P((device_t, int, int));
185static int nge_miibus_writereg	__P((device_t, int, int, int));
186static void nge_miibus_statchg	__P((device_t));
187
188static void nge_setmulti	__P((struct nge_softc *));
189static u_int32_t nge_crc	__P((struct nge_softc *, caddr_t));
190static void nge_reset		__P((struct nge_softc *));
191static int nge_list_rx_init	__P((struct nge_softc *));
192static int nge_list_tx_init	__P((struct nge_softc *));
193
194#ifdef NGE_USEIOSPACE
195#define NGE_RES			SYS_RES_IOPORT
196#define NGE_RID			NGE_PCI_LOIO
197#else
198#define NGE_RES			SYS_RES_MEMORY
199#define NGE_RID			NGE_PCI_LOMEM
200#endif
201
202static device_method_t nge_methods[] = {
203	/* Device interface */
204	DEVMETHOD(device_probe,		nge_probe),
205	DEVMETHOD(device_attach,	nge_attach),
206	DEVMETHOD(device_detach,	nge_detach),
207	DEVMETHOD(device_shutdown,	nge_shutdown),
208
209	/* bus interface */
210	DEVMETHOD(bus_print_child,	bus_generic_print_child),
211	DEVMETHOD(bus_driver_added,	bus_generic_driver_added),
212
213	/* MII interface */
214	DEVMETHOD(miibus_readreg,	nge_miibus_readreg),
215	DEVMETHOD(miibus_writereg,	nge_miibus_writereg),
216	DEVMETHOD(miibus_statchg,	nge_miibus_statchg),
217
218	{ 0, 0 }
219};
220
221static driver_t nge_driver = {
222	"nge",
223	nge_methods,
224	sizeof(struct nge_softc)
225};
226
227static devclass_t nge_devclass;
228
229DRIVER_MODULE(if_nge, pci, nge_driver, nge_devclass, 0, 0);
230DRIVER_MODULE(miibus, nge, miibus_driver, miibus_devclass, 0, 0);
231
232#define NGE_SETBIT(sc, reg, x)				\
233	CSR_WRITE_4(sc, reg,				\
234		CSR_READ_4(sc, reg) | (x))
235
236#define NGE_CLRBIT(sc, reg, x)				\
237	CSR_WRITE_4(sc, reg,				\
238		CSR_READ_4(sc, reg) & ~(x))
239
240#define SIO_SET(x)					\
241	CSR_WRITE_4(sc, NGE_MEAR, CSR_READ_4(sc, NGE_MEAR) | x)
242
243#define SIO_CLR(x)					\
244	CSR_WRITE_4(sc, NGE_MEAR, CSR_READ_4(sc, NGE_MEAR) & ~x)
245
246static void nge_delay(sc)
247	struct nge_softc	*sc;
248{
249	int			idx;
250
251	for (idx = (300 / 33) + 1; idx > 0; idx--)
252		CSR_READ_4(sc, NGE_CSR);
253
254	return;
255}
256
257static void nge_eeprom_idle(sc)
258	struct nge_softc	*sc;
259{
260	register int		i;
261
262	SIO_SET(NGE_MEAR_EE_CSEL);
263	nge_delay(sc);
264	SIO_SET(NGE_MEAR_EE_CLK);
265	nge_delay(sc);
266
267	for (i = 0; i < 25; i++) {
268		SIO_CLR(NGE_MEAR_EE_CLK);
269		nge_delay(sc);
270		SIO_SET(NGE_MEAR_EE_CLK);
271		nge_delay(sc);
272	}
273
274	SIO_CLR(NGE_MEAR_EE_CLK);
275	nge_delay(sc);
276	SIO_CLR(NGE_MEAR_EE_CSEL);
277	nge_delay(sc);
278	CSR_WRITE_4(sc, NGE_MEAR, 0x00000000);
279
280	return;
281}
282
283/*
284 * Send a read command and address to the EEPROM, check for ACK.
285 */
286static void nge_eeprom_putbyte(sc, addr)
287	struct nge_softc	*sc;
288	int			addr;
289{
290	register int		d, i;
291
292	d = addr | NGE_EECMD_READ;
293
294	/*
295	 * Feed in each bit and stobe the clock.
296	 */
297	for (i = 0x400; i; i >>= 1) {
298		if (d & i) {
299			SIO_SET(NGE_MEAR_EE_DIN);
300		} else {
301			SIO_CLR(NGE_MEAR_EE_DIN);
302		}
303		nge_delay(sc);
304		SIO_SET(NGE_MEAR_EE_CLK);
305		nge_delay(sc);
306		SIO_CLR(NGE_MEAR_EE_CLK);
307		nge_delay(sc);
308	}
309
310	return;
311}
312
313/*
314 * Read a word of data stored in the EEPROM at address 'addr.'
315 */
316static void nge_eeprom_getword(sc, addr, dest)
317	struct nge_softc	*sc;
318	int			addr;
319	u_int16_t		*dest;
320{
321	register int		i;
322	u_int16_t		word = 0;
323
324	/* Force EEPROM to idle state. */
325	nge_eeprom_idle(sc);
326
327	/* Enter EEPROM access mode. */
328	nge_delay(sc);
329	SIO_CLR(NGE_MEAR_EE_CLK);
330	nge_delay(sc);
331	SIO_SET(NGE_MEAR_EE_CSEL);
332	nge_delay(sc);
333
334	/*
335	 * Send address of word we want to read.
336	 */
337	nge_eeprom_putbyte(sc, addr);
338
339	/*
340	 * Start reading bits from EEPROM.
341	 */
342	for (i = 0x8000; i; i >>= 1) {
343		SIO_SET(NGE_MEAR_EE_CLK);
344		nge_delay(sc);
345		if (CSR_READ_4(sc, NGE_MEAR) & NGE_MEAR_EE_DOUT)
346			word |= i;
347		nge_delay(sc);
348		SIO_CLR(NGE_MEAR_EE_CLK);
349		nge_delay(sc);
350	}
351
352	/* Turn off EEPROM access mode. */
353	nge_eeprom_idle(sc);
354
355	*dest = word;
356
357	return;
358}
359
360/*
361 * Read a sequence of words from the EEPROM.
362 */
363static void nge_read_eeprom(sc, dest, off, cnt, swap)
364	struct nge_softc	*sc;
365	caddr_t			dest;
366	int			off;
367	int			cnt;
368	int			swap;
369{
370	int			i;
371	u_int16_t		word = 0, *ptr;
372
373	for (i = 0; i < cnt; i++) {
374		nge_eeprom_getword(sc, off + i, &word);
375		ptr = (u_int16_t *)(dest + (i * 2));
376		if (swap)
377			*ptr = ntohs(word);
378		else
379			*ptr = word;
380	}
381
382	return;
383}
384
385/*
386 * Sync the PHYs by setting data bit and strobing the clock 32 times.
387 */
388static void nge_mii_sync(sc)
389	struct nge_softc		*sc;
390{
391	register int		i;
392
393	SIO_SET(NGE_MEAR_MII_DIR|NGE_MEAR_MII_DATA);
394
395	for (i = 0; i < 32; i++) {
396		SIO_SET(NGE_MEAR_MII_CLK);
397		DELAY(1);
398		SIO_CLR(NGE_MEAR_MII_CLK);
399		DELAY(1);
400	}
401
402	return;
403}
404
405/*
406 * Clock a series of bits through the MII.
407 */
408static void nge_mii_send(sc, bits, cnt)
409	struct nge_softc		*sc;
410	u_int32_t		bits;
411	int			cnt;
412{
413	int			i;
414
415	SIO_CLR(NGE_MEAR_MII_CLK);
416
417	for (i = (0x1 << (cnt - 1)); i; i >>= 1) {
418                if (bits & i) {
419			SIO_SET(NGE_MEAR_MII_DATA);
420                } else {
421			SIO_CLR(NGE_MEAR_MII_DATA);
422                }
423		DELAY(1);
424		SIO_CLR(NGE_MEAR_MII_CLK);
425		DELAY(1);
426		SIO_SET(NGE_MEAR_MII_CLK);
427	}
428}
429
430/*
431 * Read an PHY register through the MII.
432 */
433static int nge_mii_readreg(sc, frame)
434	struct nge_softc		*sc;
435	struct nge_mii_frame	*frame;
436
437{
438	int			i, ack, s;
439
440	s = splimp();
441
442	/*
443	 * Set up frame for RX.
444	 */
445	frame->mii_stdelim = NGE_MII_STARTDELIM;
446	frame->mii_opcode = NGE_MII_READOP;
447	frame->mii_turnaround = 0;
448	frame->mii_data = 0;
449
450	CSR_WRITE_4(sc, NGE_MEAR, 0);
451
452	/*
453 	 * Turn on data xmit.
454	 */
455	SIO_SET(NGE_MEAR_MII_DIR);
456
457	nge_mii_sync(sc);
458
459	/*
460	 * Send command/address info.
461	 */
462	nge_mii_send(sc, frame->mii_stdelim, 2);
463	nge_mii_send(sc, frame->mii_opcode, 2);
464	nge_mii_send(sc, frame->mii_phyaddr, 5);
465	nge_mii_send(sc, frame->mii_regaddr, 5);
466
467	/* Idle bit */
468	SIO_CLR((NGE_MEAR_MII_CLK|NGE_MEAR_MII_DATA));
469	DELAY(1);
470	SIO_SET(NGE_MEAR_MII_CLK);
471	DELAY(1);
472
473	/* Turn off xmit. */
474	SIO_CLR(NGE_MEAR_MII_DIR);
475	/* Check for ack */
476	SIO_CLR(NGE_MEAR_MII_CLK);
477	DELAY(1);
478	SIO_SET(NGE_MEAR_MII_CLK);
479	DELAY(1);
480	ack = CSR_READ_4(sc, NGE_MEAR) & NGE_MEAR_MII_DATA;
481
482	/*
483	 * Now try reading data bits. If the ack failed, we still
484	 * need to clock through 16 cycles to keep the PHY(s) in sync.
485	 */
486	if (ack) {
487		for(i = 0; i < 16; i++) {
488			SIO_CLR(NGE_MEAR_MII_CLK);
489			DELAY(1);
490			SIO_SET(NGE_MEAR_MII_CLK);
491			DELAY(1);
492		}
493		goto fail;
494	}
495
496	for (i = 0x8000; i; i >>= 1) {
497		SIO_CLR(NGE_MEAR_MII_CLK);
498		DELAY(1);
499		if (!ack) {
500			if (CSR_READ_4(sc, NGE_MEAR) & NGE_MEAR_MII_DATA)
501				frame->mii_data |= i;
502			DELAY(1);
503		}
504		SIO_SET(NGE_MEAR_MII_CLK);
505		DELAY(1);
506	}
507
508fail:
509
510	SIO_CLR(NGE_MEAR_MII_CLK);
511	DELAY(1);
512	SIO_SET(NGE_MEAR_MII_CLK);
513	DELAY(1);
514
515	splx(s);
516
517	if (ack)
518		return(1);
519	return(0);
520}
521
522/*
523 * Write to a PHY register through the MII.
524 */
525static int nge_mii_writereg(sc, frame)
526	struct nge_softc		*sc;
527	struct nge_mii_frame	*frame;
528
529{
530	int			s;
531
532	s = splimp();
533	/*
534	 * Set up frame for TX.
535	 */
536
537	frame->mii_stdelim = NGE_MII_STARTDELIM;
538	frame->mii_opcode = NGE_MII_WRITEOP;
539	frame->mii_turnaround = NGE_MII_TURNAROUND;
540
541	/*
542 	 * Turn on data output.
543	 */
544	SIO_SET(NGE_MEAR_MII_DIR);
545
546	nge_mii_sync(sc);
547
548	nge_mii_send(sc, frame->mii_stdelim, 2);
549	nge_mii_send(sc, frame->mii_opcode, 2);
550	nge_mii_send(sc, frame->mii_phyaddr, 5);
551	nge_mii_send(sc, frame->mii_regaddr, 5);
552	nge_mii_send(sc, frame->mii_turnaround, 2);
553	nge_mii_send(sc, frame->mii_data, 16);
554
555	/* Idle bit. */
556	SIO_SET(NGE_MEAR_MII_CLK);
557	DELAY(1);
558	SIO_CLR(NGE_MEAR_MII_CLK);
559	DELAY(1);
560
561	/*
562	 * Turn off xmit.
563	 */
564	SIO_CLR(NGE_MEAR_MII_DIR);
565
566	splx(s);
567
568	return(0);
569}
570
571static int nge_miibus_readreg(dev, phy, reg)
572	device_t		dev;
573	int			phy, reg;
574{
575	struct nge_softc	*sc;
576	struct nge_mii_frame	frame;
577
578	sc = device_get_softc(dev);
579
580	bzero((char *)&frame, sizeof(frame));
581
582	frame.mii_phyaddr = phy;
583	frame.mii_regaddr = reg;
584	nge_mii_readreg(sc, &frame);
585
586	return(frame.mii_data);
587}
588
589static int nge_miibus_writereg(dev, phy, reg, data)
590	device_t		dev;
591	int			phy, reg, data;
592{
593	struct nge_softc	*sc;
594	struct nge_mii_frame	frame;
595
596	sc = device_get_softc(dev);
597
598	bzero((char *)&frame, sizeof(frame));
599
600	frame.mii_phyaddr = phy;
601	frame.mii_regaddr = reg;
602	frame.mii_data = data;
603	nge_mii_writereg(sc, &frame);
604
605	return(0);
606}
607
608static void nge_miibus_statchg(dev)
609	device_t		dev;
610{
611	struct nge_softc	*sc;
612	struct mii_data		*mii;
613
614	sc = device_get_softc(dev);
615	mii = device_get_softc(sc->nge_miibus);
616
617	if ((mii->mii_media_active & IFM_GMASK) == IFM_FDX) {
618		NGE_SETBIT(sc, NGE_TX_CFG,
619		    (NGE_TXCFG_IGN_HBEAT|NGE_TXCFG_IGN_CARR));
620		NGE_SETBIT(sc, NGE_RX_CFG, NGE_RXCFG_RX_FDX);
621	} else {
622		NGE_CLRBIT(sc, NGE_TX_CFG,
623		    (NGE_TXCFG_IGN_HBEAT|NGE_TXCFG_IGN_CARR));
624		NGE_CLRBIT(sc, NGE_RX_CFG, NGE_RXCFG_RX_FDX);
625	}
626
627	return;
628}
629
630static u_int32_t nge_crc(sc, addr)
631	struct nge_softc	*sc;
632	caddr_t			addr;
633{
634	u_int32_t		crc, carry;
635	int			i, j;
636	u_int8_t		c;
637
638	/* Compute CRC for the address value. */
639	crc = 0xFFFFFFFF; /* initial value */
640
641	for (i = 0; i < 6; i++) {
642		c = *(addr + i);
643		for (j = 0; j < 8; j++) {
644			carry = ((crc & 0x80000000) ? 1 : 0) ^ (c & 0x01);
645			crc <<= 1;
646			c >>= 1;
647			if (carry)
648				crc = (crc ^ 0x04c11db6) | carry;
649		}
650	}
651
652	/*
653	 * return the filter bit position
654	 */
655
656	return((crc >> 21) & 0x00000FFF);
657}
658
659static void nge_setmulti(sc)
660	struct nge_softc	*sc;
661{
662	struct ifnet		*ifp;
663	struct ifmultiaddr	*ifma;
664	u_int32_t		h = 0, i, filtsave;
665	int			bit, index;
666
667	ifp = &sc->arpcom.ac_if;
668
669	if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
670		NGE_CLRBIT(sc, NGE_RXFILT_CTL,
671		    NGE_RXFILTCTL_MCHASH|NGE_RXFILTCTL_UCHASH);
672		NGE_SETBIT(sc, NGE_RXFILT_CTL, NGE_RXFILTCTL_ALLMULTI);
673		return;
674	}
675
676	/*
677	 * We have to explicitly enable the multicast hash table
678	 * on the NatSemi chip if we want to use it, which we do.
679	 * We also have to tell it that we don't want to use the
680	 * hash table for matching unicast addresses.
681	 */
682	NGE_SETBIT(sc, NGE_RXFILT_CTL, NGE_RXFILTCTL_MCHASH);
683	NGE_CLRBIT(sc, NGE_RXFILT_CTL,
684	    NGE_RXFILTCTL_ALLMULTI|NGE_RXFILTCTL_UCHASH);
685
686	filtsave = CSR_READ_4(sc, NGE_RXFILT_CTL);
687
688	/* first, zot all the existing hash bits */
689	for (i = 0; i < NGE_MCAST_FILTER_LEN; i += 2) {
690		CSR_WRITE_4(sc, NGE_RXFILT_CTL, NGE_FILTADDR_MCAST_LO + i);
691		CSR_WRITE_4(sc, NGE_RXFILT_DATA, 0);
692	}
693
694	/*
695	 * From the 11 bits returned by the crc routine, the top 7
696	 * bits represent the 16-bit word in the mcast hash table
697	 * that needs to be updated, and the lower 4 bits represent
698	 * which bit within that byte needs to be set.
699	 */
700	TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
701		if (ifma->ifma_addr->sa_family != AF_LINK)
702			continue;
703		h = nge_crc(sc, LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
704		index = (h >> 4) & 0x7F;
705		bit = h & 0xF;
706		CSR_WRITE_4(sc, NGE_RXFILT_CTL,
707		    NGE_FILTADDR_MCAST_LO + (index * 2));
708		NGE_SETBIT(sc, NGE_RXFILT_DATA, (1 << bit));
709	}
710
711	CSR_WRITE_4(sc, NGE_RXFILT_CTL, filtsave);
712
713	return;
714}
715
716static void nge_reset(sc)
717	struct nge_softc	*sc;
718{
719	register int		i;
720
721	NGE_SETBIT(sc, NGE_CSR, NGE_CSR_RESET);
722
723	for (i = 0; i < NGE_TIMEOUT; i++) {
724		if (!(CSR_READ_4(sc, NGE_CSR) & NGE_CSR_RESET))
725			break;
726	}
727
728	if (i == NGE_TIMEOUT)
729		printf("nge%d: reset never completed\n", sc->nge_unit);
730
731	/* Wait a little while for the chip to get its brains in order. */
732	DELAY(1000);
733
734	/*
735	 * If this is a NetSemi chip, make sure to clear
736	 * PME mode.
737	 */
738	CSR_WRITE_4(sc, NGE_CLKRUN, NGE_CLKRUN_PMESTS);
739	CSR_WRITE_4(sc, NGE_CLKRUN, 0);
740
741        return;
742}
743
744/*
745 * Probe for an NatSemi chip. Check the PCI vendor and device
746 * IDs against our list and return a device name if we find a match.
747 */
748static int nge_probe(dev)
749	device_t		dev;
750{
751	struct nge_type		*t;
752
753	t = nge_devs;
754
755	while(t->nge_name != NULL) {
756		if ((pci_get_vendor(dev) == t->nge_vid) &&
757		    (pci_get_device(dev) == t->nge_did)) {
758			device_set_desc(dev, t->nge_name);
759			return(0);
760		}
761		t++;
762	}
763
764	return(ENXIO);
765}
766
767/*
768 * Attach the interface. Allocate softc structures, do ifmedia
769 * setup and ethernet/BPF attach.
770 */
771static int nge_attach(dev)
772	device_t		dev;
773{
774	int			s;
775	u_char			eaddr[ETHER_ADDR_LEN];
776	u_int32_t		command;
777	struct nge_softc	*sc;
778	struct ifnet		*ifp;
779	int			unit, error = 0, rid;
780
781	s = splimp();
782
783	sc = device_get_softc(dev);
784	unit = device_get_unit(dev);
785	bzero(sc, sizeof(struct nge_softc));
786
787	mtx_init(&sc->nge_mtx, device_get_nameunit(dev), MTX_DEF|MTX_RECURSE);
788
789	/*
790	 * Handle power management nonsense.
791	 */
792	if (pci_get_powerstate(dev) != PCI_POWERSTATE_D0) {
793		u_int32_t		iobase, membase, irq;
794
795		/* Save important PCI config data. */
796		iobase = pci_read_config(dev, NGE_PCI_LOIO, 4);
797		membase = pci_read_config(dev, NGE_PCI_LOMEM, 4);
798		irq = pci_read_config(dev, NGE_PCI_INTLINE, 4);
799
800		/* Reset the power state. */
801		printf("nge%d: chip is in D%d power mode "
802		    "-- setting to D0\n", unit,
803		    pci_get_powerstate(dev));
804		pci_set_powerstate(dev, PCI_POWERSTATE_D0);
805
806		/* Restore PCI config data. */
807		pci_write_config(dev, NGE_PCI_LOIO, iobase, 4);
808		pci_write_config(dev, NGE_PCI_LOMEM, membase, 4);
809		pci_write_config(dev, NGE_PCI_INTLINE, irq, 4);
810	}
811
812	/*
813	 * Map control/status registers.
814	 */
815	pci_enable_busmaster(dev);
816	pci_enable_io(dev, PCIM_CMD_PORTEN);
817	pci_enable_io(dev, PCIM_CMD_MEMEN);
818	command = pci_read_config(dev, PCIR_COMMAND, 4);
819
820#ifdef NGE_USEIOSPACE
821	if (!(command & PCIM_CMD_PORTEN)) {
822		printf("nge%d: failed to enable I/O ports!\n", unit);
823		error = ENXIO;;
824		goto fail;
825	}
826#else
827	if (!(command & PCIM_CMD_MEMEN)) {
828		printf("nge%d: failed to enable memory mapping!\n", unit);
829		error = ENXIO;;
830		goto fail;
831	}
832#endif
833
834	rid = NGE_RID;
835	sc->nge_res = bus_alloc_resource(dev, NGE_RES, &rid,
836	    0, ~0, 1, RF_ACTIVE);
837
838	if (sc->nge_res == NULL) {
839		printf("nge%d: couldn't map ports/memory\n", unit);
840		error = ENXIO;
841		goto fail;
842	}
843
844	sc->nge_btag = rman_get_bustag(sc->nge_res);
845	sc->nge_bhandle = rman_get_bushandle(sc->nge_res);
846
847	/* Allocate interrupt */
848	rid = 0;
849	sc->nge_irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1,
850	    RF_SHAREABLE | RF_ACTIVE);
851
852	if (sc->nge_irq == NULL) {
853		printf("nge%d: couldn't map interrupt\n", unit);
854		bus_release_resource(dev, NGE_RES, NGE_RID, sc->nge_res);
855		error = ENXIO;
856		goto fail;
857	}
858
859	error = bus_setup_intr(dev, sc->nge_irq, INTR_TYPE_NET,
860	    nge_intr, sc, &sc->nge_intrhand);
861
862	if (error) {
863		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->nge_irq);
864		bus_release_resource(dev, NGE_RES, NGE_RID, sc->nge_res);
865		printf("nge%d: couldn't set up irq\n", unit);
866		goto fail;
867	}
868
869	/* Reset the adapter. */
870	nge_reset(sc);
871
872	/*
873	 * Get station address from the EEPROM.
874	 */
875	nge_read_eeprom(sc, (caddr_t)&eaddr[4], NGE_EE_NODEADDR, 1, 0);
876	nge_read_eeprom(sc, (caddr_t)&eaddr[2], NGE_EE_NODEADDR + 1, 1, 0);
877	nge_read_eeprom(sc, (caddr_t)&eaddr[0], NGE_EE_NODEADDR + 2, 1, 0);
878
879	/*
880	 * A NatSemi chip was detected. Inform the world.
881	 */
882	printf("nge%d: Ethernet address: %6D\n", unit, eaddr, ":");
883
884	sc->nge_unit = unit;
885	bcopy(eaddr, (char *)&sc->arpcom.ac_enaddr, ETHER_ADDR_LEN);
886
887	sc->nge_ldata = contigmalloc(sizeof(struct nge_list_data), M_DEVBUF,
888	    M_NOWAIT, 0, 0xffffffff, PAGE_SIZE, 0);
889
890	if (sc->nge_ldata == NULL) {
891		printf("nge%d: no memory for list buffers!\n", unit);
892		bus_teardown_intr(dev, sc->nge_irq, sc->nge_intrhand);
893		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->nge_irq);
894		bus_release_resource(dev, NGE_RES, NGE_RID, sc->nge_res);
895		error = ENXIO;
896		goto fail;
897	}
898	bzero(sc->nge_ldata, sizeof(struct nge_list_data));
899
900	/* Try to allocate memory for jumbo buffers. */
901	if (nge_alloc_jumbo_mem(sc)) {
902		printf("nge%d: jumbo buffer allocation failed\n",
903                    sc->nge_unit);
904		contigfree(sc->nge_ldata,
905		    sizeof(struct nge_list_data), M_DEVBUF);
906		bus_teardown_intr(dev, sc->nge_irq, sc->nge_intrhand);
907		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->nge_irq);
908		bus_release_resource(dev, NGE_RES, NGE_RID, sc->nge_res);
909		error = ENXIO;
910		goto fail;
911	}
912
913	ifp = &sc->arpcom.ac_if;
914	ifp->if_softc = sc;
915	ifp->if_unit = unit;
916	ifp->if_name = "nge";
917	ifp->if_mtu = ETHERMTU;
918	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
919	ifp->if_ioctl = nge_ioctl;
920	ifp->if_output = ether_output;
921	ifp->if_start = nge_start;
922	ifp->if_watchdog = nge_watchdog;
923	ifp->if_init = nge_init;
924	ifp->if_baudrate = 1000000000;
925	ifp->if_snd.ifq_maxlen = NGE_TX_LIST_CNT - 1;
926	ifp->if_hwassist = NGE_CSUM_FEATURES;
927
928	/*
929	 * Do MII setup.
930	 */
931	if (mii_phy_probe(dev, &sc->nge_miibus,
932	    nge_ifmedia_upd, nge_ifmedia_sts)) {
933		printf("nge%d: MII without any PHY!\n", sc->nge_unit);
934		nge_free_jumbo_mem(sc);
935		bus_teardown_intr(dev, sc->nge_irq, sc->nge_intrhand);
936		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->nge_irq);
937		bus_release_resource(dev, NGE_RES, NGE_RID, sc->nge_res);
938		error = ENXIO;
939		goto fail;
940	}
941
942	/*
943	 * Call MI attach routine.
944	 */
945	ether_ifattach(ifp, ETHER_BPF_SUPPORTED);
946	callout_handle_init(&sc->nge_stat_ch);
947
948fail:
949	splx(s);
950	mtx_destroy(&sc->nge_mtx);
951	return(error);
952}
953
954static int nge_detach(dev)
955	device_t		dev;
956{
957	struct nge_softc	*sc;
958	struct ifnet		*ifp;
959	int			s;
960
961	s = splimp();
962
963	sc = device_get_softc(dev);
964	ifp = &sc->arpcom.ac_if;
965
966	nge_reset(sc);
967	nge_stop(sc);
968	ether_ifdetach(ifp, ETHER_BPF_SUPPORTED);
969
970	bus_generic_detach(dev);
971	device_delete_child(dev, sc->nge_miibus);
972
973	bus_teardown_intr(dev, sc->nge_irq, sc->nge_intrhand);
974	bus_release_resource(dev, SYS_RES_IRQ, 0, sc->nge_irq);
975	bus_release_resource(dev, NGE_RES, NGE_RID, sc->nge_res);
976
977	contigfree(sc->nge_ldata, sizeof(struct nge_list_data), M_DEVBUF);
978	nge_free_jumbo_mem(sc);
979
980	splx(s);
981	mtx_destroy(&sc->nge_mtx);
982
983	return(0);
984}
985
986/*
987 * Initialize the transmit descriptors.
988 */
989static int nge_list_tx_init(sc)
990	struct nge_softc	*sc;
991{
992	struct nge_list_data	*ld;
993	struct nge_ring_data	*cd;
994	int			i;
995
996	cd = &sc->nge_cdata;
997	ld = sc->nge_ldata;
998
999	for (i = 0; i < NGE_TX_LIST_CNT; i++) {
1000		if (i == (NGE_TX_LIST_CNT - 1)) {
1001			ld->nge_tx_list[i].nge_nextdesc =
1002			    &ld->nge_tx_list[0];
1003			ld->nge_tx_list[i].nge_next =
1004			    vtophys(&ld->nge_tx_list[0]);
1005		} else {
1006			ld->nge_tx_list[i].nge_nextdesc =
1007			    &ld->nge_tx_list[i + 1];
1008			ld->nge_tx_list[i].nge_next =
1009			    vtophys(&ld->nge_tx_list[i + 1]);
1010		}
1011		ld->nge_tx_list[i].nge_mbuf = NULL;
1012		ld->nge_tx_list[i].nge_ptr = 0;
1013		ld->nge_tx_list[i].nge_ctl = 0;
1014	}
1015
1016	cd->nge_tx_prod = cd->nge_tx_cons = cd->nge_tx_cnt = 0;
1017
1018	return(0);
1019}
1020
1021
1022/*
1023 * Initialize the RX descriptors and allocate mbufs for them. Note that
1024 * we arrange the descriptors in a closed ring, so that the last descriptor
1025 * points back to the first.
1026 */
1027static int nge_list_rx_init(sc)
1028	struct nge_softc	*sc;
1029{
1030	struct nge_list_data	*ld;
1031	struct nge_ring_data	*cd;
1032	int			i;
1033
1034	ld = sc->nge_ldata;
1035	cd = &sc->nge_cdata;
1036
1037	for (i = 0; i < NGE_RX_LIST_CNT; i++) {
1038		if (nge_newbuf(sc, &ld->nge_rx_list[i], NULL) == ENOBUFS)
1039			return(ENOBUFS);
1040		if (i == (NGE_RX_LIST_CNT - 1)) {
1041			ld->nge_rx_list[i].nge_nextdesc =
1042			    &ld->nge_rx_list[0];
1043			ld->nge_rx_list[i].nge_next =
1044			    vtophys(&ld->nge_rx_list[0]);
1045		} else {
1046			ld->nge_rx_list[i].nge_nextdesc =
1047			    &ld->nge_rx_list[i + 1];
1048			ld->nge_rx_list[i].nge_next =
1049			    vtophys(&ld->nge_rx_list[i + 1]);
1050		}
1051	}
1052
1053	cd->nge_rx_prod = 0;
1054
1055	return(0);
1056}
1057
1058/*
1059 * Initialize an RX descriptor and attach an MBUF cluster.
1060 */
1061static int nge_newbuf(sc, c, m)
1062	struct nge_softc	*sc;
1063	struct nge_desc		*c;
1064	struct mbuf		*m;
1065{
1066	struct mbuf		*m_new = NULL;
1067	caddr_t			*buf = NULL;
1068
1069	if (m == NULL) {
1070		MGETHDR(m_new, M_DONTWAIT, MT_DATA);
1071		if (m_new == NULL) {
1072			printf("nge%d: no memory for rx list "
1073			    "-- packet dropped!\n", sc->nge_unit);
1074			return(ENOBUFS);
1075		}
1076
1077		/* Allocate the jumbo buffer */
1078		buf = nge_jalloc(sc);
1079		if (buf == NULL) {
1080#ifdef NGE_VERBOSE
1081			printf("nge%d: jumbo allocation failed "
1082			    "-- packet dropped!\n", sc->nge_unit);
1083#endif
1084			m_freem(m_new);
1085			return(ENOBUFS);
1086		}
1087		/* Attach the buffer to the mbuf */
1088		m_new->m_data = (void *)buf;
1089		m_new->m_len = m_new->m_pkthdr.len = NGE_MCLBYTES;
1090		MEXTADD(m_new, buf, NGE_MCLBYTES, nge_jfree,
1091		    (struct nge_softc *)sc, 0, EXT_NET_DRV);
1092	} else {
1093		m_new = m;
1094		m_new->m_len = m_new->m_pkthdr.len = NGE_MCLBYTES;
1095		m_new->m_data = m_new->m_ext.ext_buf;
1096	}
1097
1098	m_adj(m_new, sizeof(u_int64_t));
1099
1100	c->nge_mbuf = m_new;
1101	c->nge_ptr = vtophys(mtod(m_new, caddr_t));
1102	c->nge_ctl = m_new->m_len;
1103	c->nge_extsts = 0;
1104
1105	return(0);
1106}
1107
1108static int nge_alloc_jumbo_mem(sc)
1109	struct nge_softc	*sc;
1110{
1111	caddr_t			ptr;
1112	register int		i;
1113	struct nge_jpool_entry   *entry;
1114
1115	/* Grab a big chunk o' storage. */
1116	sc->nge_cdata.nge_jumbo_buf = contigmalloc(NGE_JMEM, M_DEVBUF,
1117	    M_NOWAIT, 0, 0xffffffff, PAGE_SIZE, 0);
1118
1119	if (sc->nge_cdata.nge_jumbo_buf == NULL) {
1120		printf("nge%d: no memory for jumbo buffers!\n", sc->nge_unit);
1121		return(ENOBUFS);
1122	}
1123
1124	SLIST_INIT(&sc->nge_jfree_listhead);
1125	SLIST_INIT(&sc->nge_jinuse_listhead);
1126
1127	/*
1128	 * Now divide it up into 9K pieces and save the addresses
1129	 * in an array.
1130	 */
1131	ptr = sc->nge_cdata.nge_jumbo_buf;
1132	for (i = 0; i < NGE_JSLOTS; i++) {
1133		sc->nge_cdata.nge_jslots[i] = ptr;
1134		ptr += NGE_MCLBYTES;
1135		entry = malloc(sizeof(struct nge_jpool_entry),
1136		    M_DEVBUF, M_NOWAIT);
1137		if (entry == NULL) {
1138			free(sc->nge_cdata.nge_jumbo_buf, M_DEVBUF);
1139			sc->nge_cdata.nge_jumbo_buf = NULL;
1140			printf("nge%d: no memory for jumbo "
1141			    "buffer queue!\n", sc->nge_unit);
1142			return(ENOBUFS);
1143		}
1144		entry->slot = i;
1145		SLIST_INSERT_HEAD(&sc->nge_jfree_listhead,
1146		    entry, jpool_entries);
1147	}
1148
1149	return(0);
1150}
1151
1152static void nge_free_jumbo_mem(sc)
1153	struct nge_softc	*sc;
1154{
1155	register int		i;
1156	struct nge_jpool_entry   *entry;
1157
1158	for (i = 0; i < NGE_JSLOTS; i++) {
1159		entry = SLIST_FIRST(&sc->nge_jfree_listhead);
1160		free(entry, M_DEVBUF);
1161		SLIST_REMOVE_HEAD(&sc->nge_jfree_listhead, jpool_entries);
1162	}
1163
1164	contigfree(sc->nge_cdata.nge_jumbo_buf, NGE_JMEM, M_DEVBUF);
1165
1166	return;
1167}
1168
1169/*
1170 * Allocate a jumbo buffer.
1171 */
1172static void *nge_jalloc(sc)
1173	struct nge_softc	*sc;
1174{
1175	struct nge_jpool_entry   *entry;
1176
1177	entry = SLIST_FIRST(&sc->nge_jfree_listhead);
1178
1179	if (entry == NULL) {
1180#ifdef NGE_VERBOSE
1181		printf("nge%d: no free jumbo buffers\n", sc->nge_unit);
1182#endif
1183		return(NULL);
1184	}
1185
1186	SLIST_REMOVE_HEAD(&sc->nge_jfree_listhead, jpool_entries);
1187	SLIST_INSERT_HEAD(&sc->nge_jinuse_listhead, entry, jpool_entries);
1188	return(sc->nge_cdata.nge_jslots[entry->slot]);
1189}
1190
1191/*
1192 * Release a jumbo buffer.
1193 */
1194static void nge_jfree(buf, args)
1195	caddr_t			buf;
1196	void			*args;
1197{
1198	struct nge_softc	*sc;
1199	int		        i;
1200	struct nge_jpool_entry   *entry;
1201
1202	/* Extract the softc struct pointer. */
1203	sc = args;
1204
1205	if (sc == NULL)
1206		panic("nge_jfree: can't find softc pointer!");
1207
1208	/* calculate the slot this buffer belongs to */
1209	i = ((vm_offset_t)buf
1210	     - (vm_offset_t)sc->nge_cdata.nge_jumbo_buf) / NGE_JLEN;
1211
1212	if ((i < 0) || (i >= NGE_JSLOTS))
1213		panic("nge_jfree: asked to free buffer that we don't manage!");
1214
1215	entry = SLIST_FIRST(&sc->nge_jinuse_listhead);
1216	if (entry == NULL)
1217		panic("nge_jfree: buffer not in use!");
1218	entry->slot = i;
1219	SLIST_REMOVE_HEAD(&sc->nge_jinuse_listhead, jpool_entries);
1220	SLIST_INSERT_HEAD(&sc->nge_jfree_listhead, entry, jpool_entries);
1221
1222	return;
1223}
1224/*
1225 * A frame has been uploaded: pass the resulting mbuf chain up to
1226 * the higher level protocols.
1227 */
1228static void nge_rxeof(sc)
1229	struct nge_softc	*sc;
1230{
1231        struct ether_header	*eh;
1232        struct mbuf		*m;
1233        struct ifnet		*ifp;
1234	struct nge_desc		*cur_rx;
1235	int			i, total_len = 0;
1236	u_int32_t		rxstat;
1237
1238	ifp = &sc->arpcom.ac_if;
1239	i = sc->nge_cdata.nge_rx_prod;
1240
1241	while(NGE_OWNDESC(&sc->nge_ldata->nge_rx_list[i])) {
1242		struct mbuf		*m0 = NULL;
1243		u_int32_t		extsts;
1244
1245		cur_rx = &sc->nge_ldata->nge_rx_list[i];
1246		rxstat = cur_rx->nge_rxstat;
1247		extsts = cur_rx->nge_extsts;
1248		m = cur_rx->nge_mbuf;
1249		cur_rx->nge_mbuf = NULL;
1250		total_len = NGE_RXBYTES(cur_rx);
1251		NGE_INC(i, NGE_RX_LIST_CNT);
1252
1253		/*
1254		 * If an error occurs, update stats, clear the
1255		 * status word and leave the mbuf cluster in place:
1256		 * it should simply get re-used next time this descriptor
1257	 	 * comes up in the ring.
1258		 */
1259		if (!(rxstat & NGE_CMDSTS_PKT_OK)) {
1260			ifp->if_ierrors++;
1261			nge_newbuf(sc, cur_rx, m);
1262			continue;
1263		}
1264
1265
1266		/*
1267		 * Ok. NatSemi really screwed up here. This is the
1268		 * only gigE chip I know of with alignment constraints
1269		 * on receive buffers. RX buffers must be 64-bit aligned.
1270		 */
1271		m0 = m_devget(mtod(m, char *) - ETHER_ALIGN,
1272		    total_len + ETHER_ALIGN, 0, ifp, NULL);
1273		nge_newbuf(sc, cur_rx, m);
1274		if (m0 == NULL) {
1275			printf("nge%d: no receive buffers "
1276			    "available -- packet dropped!\n",
1277			    sc->nge_unit);
1278			ifp->if_ierrors++;
1279			continue;
1280		}
1281		m_adj(m0, ETHER_ALIGN);
1282		m = m0;
1283
1284		ifp->if_ipackets++;
1285		eh = mtod(m, struct ether_header *);
1286
1287		/* Remove header from mbuf and pass it on. */
1288		m_adj(m, sizeof(struct ether_header));
1289
1290		/* Do IP checksum checking. */
1291		if (ifp->if_hwassist) {
1292			if (extsts & NGE_RXEXTSTS_IPPKT)
1293				m->m_pkthdr.csum_flags |= CSUM_IP_CHECKED;
1294			if (!(extsts & NGE_RXEXTSTS_IPCSUMERR))
1295				m->m_pkthdr.csum_flags |= CSUM_IP_VALID;
1296			if ((extsts & NGE_RXEXTSTS_TCPPKT &&
1297			    !(extsts & NGE_RXEXTSTS_TCPCSUMERR)) ||
1298			    (extsts & NGE_RXEXTSTS_UDPPKT &&
1299			    !(extsts & NGE_RXEXTSTS_UDPCSUMERR))) {
1300				m->m_pkthdr.csum_flags |=
1301				    CSUM_DATA_VALID|CSUM_PSEUDO_HDR;
1302				m->m_pkthdr.csum_data = 0;
1303			}
1304                }
1305
1306#if NVLAN > 0
1307		/*
1308		 * If we received a packet with a vlan tag, pass it
1309		 * to vlan_input() instead of ether_input().
1310		 */
1311		if (extsts & NGE_RXEXTSTS_VLANPKT) {
1312			vlan_input_tag(eh, m, extsts & NGE_RXEXTSTS_VTCI);
1313                        continue;
1314                }
1315#endif
1316
1317		ether_input(ifp, eh, m);
1318	}
1319
1320	sc->nge_cdata.nge_rx_prod = i;
1321
1322	return;
1323}
1324
1325void nge_rxeoc(sc)
1326	struct nge_softc	*sc;
1327{
1328	struct ifnet		*ifp;
1329
1330	ifp = &sc->arpcom.ac_if;
1331	nge_rxeof(sc);
1332	ifp->if_flags &= ~IFF_RUNNING;
1333	nge_init(sc);
1334	return;
1335}
1336
1337/*
1338 * A frame was downloaded to the chip. It's safe for us to clean up
1339 * the list buffers.
1340 */
1341
1342static void nge_txeof(sc)
1343	struct nge_softc	*sc;
1344{
1345	struct nge_desc		*cur_tx = NULL;
1346	struct ifnet		*ifp;
1347	u_int32_t		idx;
1348
1349	ifp = &sc->arpcom.ac_if;
1350
1351	/* Clear the timeout timer. */
1352	ifp->if_timer = 0;
1353
1354	/*
1355	 * Go through our tx list and free mbufs for those
1356	 * frames that have been transmitted.
1357	 */
1358	idx = sc->nge_cdata.nge_tx_cons;
1359	while (idx != sc->nge_cdata.nge_tx_prod) {
1360		cur_tx = &sc->nge_ldata->nge_tx_list[idx];
1361
1362		if (NGE_OWNDESC(cur_tx))
1363			break;
1364
1365		if (cur_tx->nge_ctl & NGE_CMDSTS_MORE) {
1366			sc->nge_cdata.nge_tx_cnt--;
1367			NGE_INC(idx, NGE_TX_LIST_CNT);
1368			continue;
1369		}
1370
1371		if (!(cur_tx->nge_ctl & NGE_CMDSTS_PKT_OK)) {
1372			ifp->if_oerrors++;
1373			if (cur_tx->nge_txstat & NGE_TXSTAT_EXCESSCOLLS)
1374				ifp->if_collisions++;
1375			if (cur_tx->nge_txstat & NGE_TXSTAT_OUTOFWINCOLL)
1376				ifp->if_collisions++;
1377		}
1378
1379		ifp->if_collisions +=
1380		    (cur_tx->nge_txstat & NGE_TXSTAT_COLLCNT) >> 16;
1381
1382		ifp->if_opackets++;
1383		if (cur_tx->nge_mbuf != NULL) {
1384			m_freem(cur_tx->nge_mbuf);
1385			cur_tx->nge_mbuf = NULL;
1386		}
1387
1388		sc->nge_cdata.nge_tx_cnt--;
1389		NGE_INC(idx, NGE_TX_LIST_CNT);
1390		ifp->if_timer = 0;
1391	}
1392
1393	sc->nge_cdata.nge_tx_cons = idx;
1394
1395	if (cur_tx != NULL)
1396		ifp->if_flags &= ~IFF_OACTIVE;
1397
1398	return;
1399}
1400
1401static void nge_tick(xsc)
1402	void			*xsc;
1403{
1404	struct nge_softc	*sc;
1405	struct mii_data		*mii;
1406	struct ifnet		*ifp;
1407	int			s;
1408
1409	s = splimp();
1410
1411	sc = xsc;
1412	ifp = &sc->arpcom.ac_if;
1413
1414	mii = device_get_softc(sc->nge_miibus);
1415	mii_tick(mii);
1416
1417	if (!sc->nge_link) {
1418		mii_pollstat(mii);
1419		if (mii->mii_media_status & IFM_ACTIVE &&
1420		    IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
1421			sc->nge_link++;
1422			if (IFM_SUBTYPE(mii->mii_media_active) == IFM_1000_TX)
1423				printf("nge%d: gigabit link up\n",
1424				    sc->nge_unit);
1425			if (ifp->if_snd.ifq_head != NULL)
1426				nge_start(ifp);
1427		} else
1428			sc->nge_stat_ch = timeout(nge_tick, sc, hz);
1429	}
1430
1431
1432	splx(s);
1433
1434	return;
1435}
1436
1437static void nge_intr(arg)
1438	void			*arg;
1439{
1440	struct nge_softc	*sc;
1441	struct ifnet		*ifp;
1442	u_int32_t		status;
1443
1444	sc = arg;
1445	ifp = &sc->arpcom.ac_if;
1446
1447	/* Supress unwanted interrupts */
1448	if (!(ifp->if_flags & IFF_UP)) {
1449		nge_stop(sc);
1450		return;
1451	}
1452
1453	/* Disable interrupts. */
1454	CSR_WRITE_4(sc, NGE_IER, 0);
1455
1456	for (;;) {
1457		/* Reading the ISR register clears all interrupts. */
1458		status = CSR_READ_4(sc, NGE_ISR);
1459
1460		if ((status & NGE_INTRS) == 0)
1461			break;
1462
1463		if ((status & NGE_ISR_TX_DESC_OK) ||
1464		    (status & NGE_ISR_TX_ERR) ||
1465		    (status & NGE_ISR_TX_OK) ||
1466		    (status & NGE_ISR_TX_IDLE))
1467			nge_txeof(sc);
1468
1469		if ((status & NGE_ISR_RX_DESC_OK) ||
1470		    (status & NGE_ISR_RX_OK))
1471			nge_rxeof(sc);
1472
1473		if ((status & NGE_ISR_RX_ERR) ||
1474		    (status & NGE_ISR_RX_OFLOW)) {
1475			nge_rxeoc(sc);
1476		}
1477
1478		if (status & NGE_ISR_SYSERR) {
1479			nge_reset(sc);
1480			ifp->if_flags &= ~IFF_RUNNING;
1481			nge_init(sc);
1482		}
1483
1484		if (status & NGE_IMR_PHY_INTR) {
1485			sc->nge_link = 0;
1486			nge_tick(sc);
1487		}
1488	}
1489
1490	/* Re-enable interrupts. */
1491	CSR_WRITE_4(sc, NGE_IER, 1);
1492
1493	if (ifp->if_snd.ifq_head != NULL)
1494		nge_start(ifp);
1495
1496	return;
1497}
1498
1499/*
1500 * Encapsulate an mbuf chain in a descriptor by coupling the mbuf data
1501 * pointers to the fragment pointers.
1502 */
1503static int nge_encap(sc, m_head, txidx)
1504	struct nge_softc	*sc;
1505	struct mbuf		*m_head;
1506	u_int32_t		*txidx;
1507{
1508	struct nge_desc		*f = NULL;
1509	struct mbuf		*m;
1510	int			frag, cur, cnt = 0;
1511#if NVLAN > 0
1512	struct ifvlan		*ifv = NULL;
1513
1514	if ((m_head->m_flags & (M_PROTO1|M_PKTHDR)) == (M_PROTO1|M_PKTHDR) &&
1515	    m_head->m_pkthdr.rcvif != NULL &&
1516	    m_head->m_pkthdr.rcvif->if_type == IFT_8021_VLAN)
1517		ifv = m_head->m_pkthdr.rcvif->if_softc;
1518#endif
1519
1520	/*
1521 	 * Start packing the mbufs in this chain into
1522	 * the fragment pointers. Stop when we run out
1523 	 * of fragments or hit the end of the mbuf chain.
1524	 */
1525	m = m_head;
1526	cur = frag = *txidx;
1527
1528	for (m = m_head; m != NULL; m = m->m_next) {
1529		if (m->m_len != 0) {
1530			if ((NGE_TX_LIST_CNT -
1531			    (sc->nge_cdata.nge_tx_cnt + cnt)) < 2)
1532				return(ENOBUFS);
1533			f = &sc->nge_ldata->nge_tx_list[frag];
1534			f->nge_ctl = NGE_CMDSTS_MORE | m->m_len;
1535			f->nge_ptr = vtophys(mtod(m, vm_offset_t));
1536			if (cnt != 0)
1537				f->nge_ctl |= NGE_CMDSTS_OWN;
1538			cur = frag;
1539			NGE_INC(frag, NGE_TX_LIST_CNT);
1540			cnt++;
1541		}
1542	}
1543
1544	if (m != NULL)
1545		return(ENOBUFS);
1546
1547	sc->nge_ldata->nge_tx_list[cur].nge_extsts = 0;
1548	if (m_head->m_pkthdr.csum_flags) {
1549		if (m_head->m_pkthdr.csum_flags & CSUM_IP)
1550			sc->nge_ldata->nge_tx_list[cur].nge_extsts |=
1551			    NGE_TXEXTSTS_IPCSUM;
1552		if (m_head->m_pkthdr.csum_flags & CSUM_TCP)
1553			sc->nge_ldata->nge_tx_list[cur].nge_extsts |=
1554			    NGE_TXEXTSTS_TCPCSUM;
1555		if (m_head->m_pkthdr.csum_flags & CSUM_UDP)
1556			sc->nge_ldata->nge_tx_list[cur].nge_extsts |=
1557			    NGE_TXEXTSTS_UDPCSUM;
1558	}
1559
1560#if NVLAN > 0
1561	if (ifv != NULL) {
1562		sc->nge_ldata->nge_tx_list[cur].nge_extsts |=
1563			(NGE_TXEXTSTS_VLANPKT|ifv->ifv_tag);
1564	}
1565#endif
1566
1567	sc->nge_ldata->nge_tx_list[cur].nge_mbuf = m_head;
1568	sc->nge_ldata->nge_tx_list[cur].nge_ctl &= ~NGE_CMDSTS_MORE;
1569	sc->nge_ldata->nge_tx_list[*txidx].nge_ctl |= NGE_CMDSTS_OWN;
1570	sc->nge_cdata.nge_tx_cnt += cnt;
1571	*txidx = frag;
1572
1573	return(0);
1574}
1575
1576/*
1577 * Main transmit routine. To avoid having to do mbuf copies, we put pointers
1578 * to the mbuf data regions directly in the transmit lists. We also save a
1579 * copy of the pointers since the transmit list fragment pointers are
1580 * physical addresses.
1581 */
1582
1583static void nge_start(ifp)
1584	struct ifnet		*ifp;
1585{
1586	struct nge_softc	*sc;
1587	struct mbuf		*m_head = NULL;
1588	u_int32_t		idx;
1589
1590	sc = ifp->if_softc;
1591
1592	if (!sc->nge_link)
1593		return;
1594
1595	idx = sc->nge_cdata.nge_tx_prod;
1596
1597	if (ifp->if_flags & IFF_OACTIVE)
1598		return;
1599
1600	while(sc->nge_ldata->nge_tx_list[idx].nge_mbuf == NULL) {
1601		IF_DEQUEUE(&ifp->if_snd, m_head);
1602		if (m_head == NULL)
1603			break;
1604
1605		if (nge_encap(sc, m_head, &idx)) {
1606			IF_PREPEND(&ifp->if_snd, m_head);
1607			ifp->if_flags |= IFF_OACTIVE;
1608			break;
1609		}
1610
1611		/*
1612		 * If there's a BPF listener, bounce a copy of this frame
1613		 * to him.
1614		 */
1615		if (ifp->if_bpf)
1616			bpf_mtap(ifp, m_head);
1617
1618	}
1619
1620	/* Transmit */
1621	sc->nge_cdata.nge_tx_prod = idx;
1622	NGE_SETBIT(sc, NGE_CSR, NGE_CSR_TX_ENABLE);
1623
1624	/*
1625	 * Set a timeout in case the chip goes out to lunch.
1626	 */
1627	ifp->if_timer = 5;
1628
1629	return;
1630}
1631
1632static void nge_init(xsc)
1633	void			*xsc;
1634{
1635	struct nge_softc	*sc = xsc;
1636	struct ifnet		*ifp = &sc->arpcom.ac_if;
1637	struct mii_data		*mii;
1638	int			s;
1639
1640	if (ifp->if_flags & IFF_RUNNING)
1641		return;
1642
1643	s = splimp();
1644
1645	/*
1646	 * Cancel pending I/O and free all RX/TX buffers.
1647	 */
1648	nge_stop(sc);
1649
1650	mii = device_get_softc(sc->nge_miibus);
1651
1652	/* Set MAC address */
1653	CSR_WRITE_4(sc, NGE_RXFILT_CTL, NGE_FILTADDR_PAR0);
1654	CSR_WRITE_4(sc, NGE_RXFILT_DATA,
1655	    ((u_int16_t *)sc->arpcom.ac_enaddr)[0]);
1656	CSR_WRITE_4(sc, NGE_RXFILT_CTL, NGE_FILTADDR_PAR1);
1657	CSR_WRITE_4(sc, NGE_RXFILT_DATA,
1658	    ((u_int16_t *)sc->arpcom.ac_enaddr)[1]);
1659	CSR_WRITE_4(sc, NGE_RXFILT_CTL, NGE_FILTADDR_PAR2);
1660	CSR_WRITE_4(sc, NGE_RXFILT_DATA,
1661	    ((u_int16_t *)sc->arpcom.ac_enaddr)[2]);
1662
1663	/* Init circular RX list. */
1664	if (nge_list_rx_init(sc) == ENOBUFS) {
1665		printf("nge%d: initialization failed: no "
1666			"memory for rx buffers\n", sc->nge_unit);
1667		nge_stop(sc);
1668		(void)splx(s);
1669		return;
1670	}
1671
1672	/*
1673	 * Init tx descriptors.
1674	 */
1675	nge_list_tx_init(sc);
1676
1677	/*
1678	 * For the NatSemi chip, we have to explicitly enable the
1679	 * reception of ARP frames, as well as turn on the 'perfect
1680	 * match' filter where we store the station address, otherwise
1681	 * we won't receive unicasts meant for this host.
1682	 */
1683	NGE_SETBIT(sc, NGE_RXFILT_CTL, NGE_RXFILTCTL_ARP);
1684	NGE_SETBIT(sc, NGE_RXFILT_CTL, NGE_RXFILTCTL_PERFECT);
1685
1686	 /* If we want promiscuous mode, set the allframes bit. */
1687	if (ifp->if_flags & IFF_PROMISC) {
1688		NGE_SETBIT(sc, NGE_RXFILT_CTL, NGE_RXFILTCTL_ALLPHYS);
1689	} else {
1690		NGE_CLRBIT(sc, NGE_RXFILT_CTL, NGE_RXFILTCTL_ALLPHYS);
1691	}
1692
1693	/*
1694	 * Set the capture broadcast bit to capture broadcast frames.
1695	 */
1696	if (ifp->if_flags & IFF_BROADCAST) {
1697		NGE_SETBIT(sc, NGE_RXFILT_CTL, NGE_RXFILTCTL_BROAD);
1698	} else {
1699		NGE_CLRBIT(sc, NGE_RXFILT_CTL, NGE_RXFILTCTL_BROAD);
1700	}
1701
1702	/*
1703	 * Load the multicast filter.
1704	 */
1705	nge_setmulti(sc);
1706
1707	/* Turn the receive filter on */
1708	NGE_SETBIT(sc, NGE_RXFILT_CTL, NGE_RXFILTCTL_ENABLE);
1709
1710	/*
1711	 * Load the address of the RX and TX lists.
1712	 */
1713	CSR_WRITE_4(sc, NGE_RX_LISTPTR,
1714	    vtophys(&sc->nge_ldata->nge_rx_list[0]));
1715	CSR_WRITE_4(sc, NGE_TX_LISTPTR,
1716	    vtophys(&sc->nge_ldata->nge_tx_list[0]));
1717
1718	/* Set RX configuration */
1719	CSR_WRITE_4(sc, NGE_RX_CFG, NGE_RXCFG);
1720	/*
1721	 * Enable hardware checksum validation for all IPv4
1722	 * packets, do not reject packets with bad checksums.
1723	 */
1724	if (ifp->if_hwassist)
1725		CSR_WRITE_4(sc, NGE_VLAN_IP_RXCTL, NGE_VIPRXCTL_IPCSUM_ENB);
1726
1727#if NVLAN > 0
1728	/*
1729	 * If VLAN support is enabled, tell the chip to detect
1730	 * and strip VLAN tag info from received frames. The tag
1731	 * will be provided in the extsts field in the RX descriptors.
1732	 */
1733	NGE_SETBIT(sc, NGE_VLAN_IP_RXCTL,
1734	    NGE_VIPRXCTL_TAG_DETECT_ENB|NGE_VIPRXCTL_TAG_STRIP_ENB);
1735#endif
1736
1737	/* Set TX configuration */
1738	CSR_WRITE_4(sc, NGE_TX_CFG, NGE_TXCFG);
1739
1740	/*
1741	 * Enable TX IPv4 checksumming on a per-packet basis.
1742	 */
1743	if (ifp->if_hwassist)
1744		CSR_WRITE_4(sc, NGE_VLAN_IP_TXCTL, NGE_VIPTXCTL_CSUM_PER_PKT);
1745
1746#if NVLAN > 0
1747	/*
1748	 * If VLAN support is enabled, tell the chip to insert
1749	 * VLAN tags on a per-packet basis as dictated by the
1750	 * code in the frame encapsulation routine.
1751	 */
1752	NGE_SETBIT(sc, NGE_VLAN_IP_TXCTL, NGE_VIPTXCTL_TAG_PER_PKT);
1753#endif
1754
1755	/* Set full/half duplex mode. */
1756	if ((mii->mii_media_active & IFM_GMASK) == IFM_FDX) {
1757		NGE_SETBIT(sc, NGE_TX_CFG,
1758		    (NGE_TXCFG_IGN_HBEAT|NGE_TXCFG_IGN_CARR));
1759		NGE_SETBIT(sc, NGE_RX_CFG, NGE_RXCFG_RX_FDX);
1760	} else {
1761		NGE_CLRBIT(sc, NGE_TX_CFG,
1762		    (NGE_TXCFG_IGN_HBEAT|NGE_TXCFG_IGN_CARR));
1763		NGE_CLRBIT(sc, NGE_RX_CFG, NGE_RXCFG_RX_FDX);
1764	}
1765
1766	/*
1767	 * Enable the delivery of PHY interrupts based on
1768	 * link/speed/duplex status changes.
1769	 */
1770	NGE_SETBIT(sc, NGE_CFG, NGE_CFG_PHYINTR_SPD|NGE_CFG_MODE_1000|
1771	    NGE_CFG_PHYINTR_LNK|NGE_CFG_PHYINTR_DUP);
1772
1773	/*
1774	 * Enable interrupts.
1775	 */
1776	CSR_WRITE_4(sc, NGE_IMR, NGE_INTRS);
1777	CSR_WRITE_4(sc, NGE_IER, 1);
1778
1779	/* Enable receiver and transmitter. */
1780	NGE_CLRBIT(sc, NGE_CSR, NGE_CSR_TX_DISABLE|NGE_CSR_RX_DISABLE);
1781	NGE_SETBIT(sc, NGE_CSR, NGE_CSR_RX_ENABLE);
1782
1783	nge_ifmedia_upd(ifp);
1784
1785	ifp->if_flags |= IFF_RUNNING;
1786	ifp->if_flags &= ~IFF_OACTIVE;
1787
1788	(void)splx(s);
1789
1790	return;
1791}
1792
1793/*
1794 * Set media options.
1795 */
1796static int nge_ifmedia_upd(ifp)
1797	struct ifnet		*ifp;
1798{
1799	struct nge_softc	*sc;
1800	struct mii_data		*mii;
1801
1802	sc = ifp->if_softc;
1803
1804	mii = device_get_softc(sc->nge_miibus);
1805	sc->nge_link = 0;
1806	if (mii->mii_instance) {
1807		struct mii_softc	*miisc;
1808		for (miisc = LIST_FIRST(&mii->mii_phys); miisc != NULL;
1809		    miisc = LIST_NEXT(miisc, mii_list))
1810			mii_phy_reset(miisc);
1811	}
1812	mii_mediachg(mii);
1813
1814	return(0);
1815}
1816
1817/*
1818 * Report current media status.
1819 */
1820static void nge_ifmedia_sts(ifp, ifmr)
1821	struct ifnet		*ifp;
1822	struct ifmediareq	*ifmr;
1823{
1824	struct nge_softc	*sc;
1825	struct mii_data		*mii;
1826
1827	sc = ifp->if_softc;
1828
1829	mii = device_get_softc(sc->nge_miibus);
1830	mii_pollstat(mii);
1831	ifmr->ifm_active = mii->mii_media_active;
1832	ifmr->ifm_status = mii->mii_media_status;
1833
1834	return;
1835}
1836
1837static int nge_ioctl(ifp, command, data)
1838	struct ifnet		*ifp;
1839	u_long			command;
1840	caddr_t			data;
1841{
1842	struct nge_softc	*sc = ifp->if_softc;
1843	struct ifreq		*ifr = (struct ifreq *) data;
1844	struct mii_data		*mii;
1845	int			s, error = 0;
1846
1847	s = splimp();
1848
1849	switch(command) {
1850	case SIOCSIFADDR:
1851	case SIOCGIFADDR:
1852		error = ether_ioctl(ifp, command, data);
1853		break;
1854	case SIOCSIFMTU:
1855		if (ifr->ifr_mtu > NGE_JUMBO_MTU)
1856			error = EINVAL;
1857		else
1858			ifp->if_mtu = ifr->ifr_mtu;
1859		break;
1860	case SIOCSIFFLAGS:
1861		if (ifp->if_flags & IFF_UP) {
1862			if (ifp->if_flags & IFF_RUNNING &&
1863			    ifp->if_flags & IFF_PROMISC &&
1864			    !(sc->nge_if_flags & IFF_PROMISC)) {
1865				NGE_SETBIT(sc, NGE_RXFILT_CTL,
1866				    NGE_RXFILTCTL_ALLPHYS|
1867				    NGE_RXFILTCTL_ALLMULTI);
1868			} else if (ifp->if_flags & IFF_RUNNING &&
1869			    !(ifp->if_flags & IFF_PROMISC) &&
1870			    sc->nge_if_flags & IFF_PROMISC) {
1871				NGE_CLRBIT(sc, NGE_RXFILT_CTL,
1872				    NGE_RXFILTCTL_ALLPHYS);
1873				if (!(ifp->if_flags & IFF_ALLMULTI))
1874					NGE_CLRBIT(sc, NGE_RXFILT_CTL,
1875					    NGE_RXFILTCTL_ALLMULTI);
1876			} else {
1877				ifp->if_flags &= ~IFF_RUNNING;
1878				nge_init(sc);
1879			}
1880		} else {
1881			if (ifp->if_flags & IFF_RUNNING)
1882				nge_stop(sc);
1883		}
1884		sc->nge_if_flags = ifp->if_flags;
1885		error = 0;
1886		break;
1887	case SIOCADDMULTI:
1888	case SIOCDELMULTI:
1889		nge_setmulti(sc);
1890		error = 0;
1891		break;
1892	case SIOCGIFMEDIA:
1893	case SIOCSIFMEDIA:
1894		mii = device_get_softc(sc->nge_miibus);
1895		error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
1896		break;
1897	default:
1898		error = EINVAL;
1899		break;
1900	}
1901
1902	(void)splx(s);
1903
1904	return(error);
1905}
1906
1907static void nge_watchdog(ifp)
1908	struct ifnet		*ifp;
1909{
1910	struct nge_softc	*sc;
1911
1912	sc = ifp->if_softc;
1913
1914	ifp->if_oerrors++;
1915	printf("nge%d: watchdog timeout\n", sc->nge_unit);
1916
1917	nge_stop(sc);
1918	nge_reset(sc);
1919	ifp->if_flags &= ~IFF_RUNNING;
1920	nge_init(sc);
1921
1922	if (ifp->if_snd.ifq_head != NULL)
1923		nge_start(ifp);
1924
1925	return;
1926}
1927
1928/*
1929 * Stop the adapter and free any mbufs allocated to the
1930 * RX and TX lists.
1931 */
1932static void nge_stop(sc)
1933	struct nge_softc	*sc;
1934{
1935	register int		i;
1936	struct ifnet		*ifp;
1937	struct ifmedia_entry	*ifm;
1938	struct mii_data		*mii;
1939	int			mtmp, itmp;
1940
1941	ifp = &sc->arpcom.ac_if;
1942	ifp->if_timer = 0;
1943	mii = device_get_softc(sc->nge_miibus);
1944
1945	untimeout(nge_tick, sc, sc->nge_stat_ch);
1946	CSR_WRITE_4(sc, NGE_IER, 0);
1947	CSR_WRITE_4(sc, NGE_IMR, 0);
1948	NGE_SETBIT(sc, NGE_CSR, NGE_CSR_TX_DISABLE|NGE_CSR_RX_DISABLE);
1949	DELAY(1000);
1950	CSR_WRITE_4(sc, NGE_TX_LISTPTR, 0);
1951	CSR_WRITE_4(sc, NGE_RX_LISTPTR, 0);
1952
1953	/*
1954	 * Isolate/power down the PHY, but leave the media selection
1955	 * unchanged so that things will be put back to normal when
1956	 * we bring the interface back up.
1957	 */
1958	itmp = ifp->if_flags;
1959	ifp->if_flags |= IFF_UP;
1960	ifm = mii->mii_media.ifm_cur;
1961	mtmp = ifm->ifm_media;
1962	ifm->ifm_media = IFM_ETHER|IFM_NONE;
1963	mii_mediachg(mii);
1964	ifm->ifm_media = mtmp;
1965	ifp->if_flags = itmp;
1966
1967	sc->nge_link = 0;
1968
1969	/*
1970	 * Free data in the RX lists.
1971	 */
1972	for (i = 0; i < NGE_RX_LIST_CNT; i++) {
1973		if (sc->nge_ldata->nge_rx_list[i].nge_mbuf != NULL) {
1974			m_freem(sc->nge_ldata->nge_rx_list[i].nge_mbuf);
1975			sc->nge_ldata->nge_rx_list[i].nge_mbuf = NULL;
1976		}
1977	}
1978	bzero((char *)&sc->nge_ldata->nge_rx_list,
1979		sizeof(sc->nge_ldata->nge_rx_list));
1980
1981	/*
1982	 * Free the TX list buffers.
1983	 */
1984	for (i = 0; i < NGE_TX_LIST_CNT; i++) {
1985		if (sc->nge_ldata->nge_tx_list[i].nge_mbuf != NULL) {
1986			m_freem(sc->nge_ldata->nge_tx_list[i].nge_mbuf);
1987			sc->nge_ldata->nge_tx_list[i].nge_mbuf = NULL;
1988		}
1989	}
1990
1991	bzero((char *)&sc->nge_ldata->nge_tx_list,
1992		sizeof(sc->nge_ldata->nge_tx_list));
1993
1994	ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
1995
1996	return;
1997}
1998
1999/*
2000 * Stop all chip I/O so that the kernel's probe routines don't
2001 * get confused by errant DMAs when rebooting.
2002 */
2003static void nge_shutdown(dev)
2004	device_t		dev;
2005{
2006	struct nge_softc	*sc;
2007
2008	sc = device_get_softc(dev);
2009
2010	nge_reset(sc);
2011	nge_stop(sc);
2012
2013	return;
2014}
2015