xref: /freebsd/sys/dev/nge/if_nge.c (revision ddaf6524682b3ab9e50f7575db319814dbbd053a)
1098ca2bdSWarner Losh /*-
2df57947fSPedro F. Giffuni  * SPDX-License-Identifier: BSD-4-Clause
3df57947fSPedro F. Giffuni  *
4ce4946daSBill Paul  * Copyright (c) 2001 Wind River Systems
5ce4946daSBill Paul  * Copyright (c) 1997, 1998, 1999, 2000, 2001
6ce4946daSBill Paul  *	Bill Paul <wpaul@bsdi.com>.  All rights reserved.
7ce4946daSBill Paul  *
8ce4946daSBill Paul  * Redistribution and use in source and binary forms, with or without
9ce4946daSBill Paul  * modification, are permitted provided that the following conditions
10ce4946daSBill Paul  * are met:
11ce4946daSBill Paul  * 1. Redistributions of source code must retain the above copyright
12ce4946daSBill Paul  *    notice, this list of conditions and the following disclaimer.
13ce4946daSBill Paul  * 2. Redistributions in binary form must reproduce the above copyright
14ce4946daSBill Paul  *    notice, this list of conditions and the following disclaimer in the
15ce4946daSBill Paul  *    documentation and/or other materials provided with the distribution.
16ce4946daSBill Paul  * 3. All advertising materials mentioning features or use of this software
17ce4946daSBill Paul  *    must display the following acknowledgement:
18ce4946daSBill Paul  *	This product includes software developed by Bill Paul.
19ce4946daSBill Paul  * 4. Neither the name of the author nor the names of any co-contributors
20ce4946daSBill Paul  *    may be used to endorse or promote products derived from this software
21ce4946daSBill Paul  *    without specific prior written permission.
22ce4946daSBill Paul  *
23ce4946daSBill Paul  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
24ce4946daSBill Paul  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25ce4946daSBill Paul  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26ce4946daSBill Paul  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
27ce4946daSBill Paul  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28ce4946daSBill Paul  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29ce4946daSBill Paul  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30ce4946daSBill Paul  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31ce4946daSBill Paul  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32ce4946daSBill Paul  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
33ce4946daSBill Paul  * THE POSSIBILITY OF SUCH DAMAGE.
34ce4946daSBill Paul  */
35ce4946daSBill Paul 
36aad970f1SDavid E. O'Brien #include <sys/cdefs.h>
37ce4946daSBill Paul /*
38ce4946daSBill Paul  * National Semiconductor DP83820/DP83821 gigabit ethernet driver
39ce4946daSBill Paul  * for FreeBSD. Datasheets are available from:
40ce4946daSBill Paul  *
41ce4946daSBill Paul  * http://www.national.com/ds/DP/DP83820.pdf
42ce4946daSBill Paul  * http://www.national.com/ds/DP/DP83821.pdf
43ce4946daSBill Paul  *
44ce4946daSBill Paul  * These chips are used on several low cost gigabit ethernet NICs
45ce4946daSBill Paul  * sold by D-Link, Addtron, SMC and Asante. Both parts are
46ce4946daSBill Paul  * virtually the same, except the 83820 is a 64-bit/32-bit part,
47ce4946daSBill Paul  * while the 83821 is 32-bit only.
48ce4946daSBill Paul  *
49ce4946daSBill Paul  * Many cards also use National gigE transceivers, such as the
50ce4946daSBill Paul  * DP83891, DP83861 and DP83862 gigPHYTER parts. The DP83861 datasheet
51ce4946daSBill Paul  * contains a full register description that applies to all of these
52ce4946daSBill Paul  * components:
53ce4946daSBill Paul  *
54ce4946daSBill Paul  * http://www.national.com/ds/DP/DP83861.pdf
55ce4946daSBill Paul  *
56ce4946daSBill Paul  * Written by Bill Paul <wpaul@bsdi.com>
57ce4946daSBill Paul  * BSDi Open Source Solutions
58ce4946daSBill Paul  */
59ce4946daSBill Paul 
60ce4946daSBill Paul /*
61ce4946daSBill Paul  * The NatSemi DP83820 and 83821 controllers are enhanced versions
62ce4946daSBill Paul  * of the NatSemi MacPHYTER 10/100 devices. They support 10, 100
63ce4946daSBill Paul  * and 1000Mbps speeds with 1000baseX (ten bit interface), MII and GMII
64ce4946daSBill Paul  * ports. Other features include 8K TX FIFO and 32K RX FIFO, TCP/IP
65ce4946daSBill Paul  * hardware checksum offload (IPv4 only), VLAN tagging and filtering,
66ce4946daSBill Paul  * priority TX and RX queues, a 2048 bit multicast hash filter, 4 RX pattern
67ce4946daSBill Paul  * matching buffers, one perfect address filter buffer and interrupt
68ce4946daSBill Paul  * moderation. The 83820 supports both 64-bit and 32-bit addressing
69ce4946daSBill Paul  * and data transfers: the 64-bit support can be toggled on or off
70ce4946daSBill Paul  * via software. This affects the size of certain fields in the DMA
71ce4946daSBill Paul  * descriptors.
72ce4946daSBill Paul  *
73cb2f755cSBill Paul  * There are two bugs/misfeatures in the 83820/83821 that I have
74cb2f755cSBill Paul  * discovered so far:
75cb2f755cSBill Paul  *
76cb2f755cSBill Paul  * - Receive buffers must be aligned on 64-bit boundaries, which means
77cb2f755cSBill Paul  *   you must resort to copying data in order to fix up the payload
78cb2f755cSBill Paul  *   alignment.
79cb2f755cSBill Paul  *
80cb2f755cSBill Paul  * - In order to transmit jumbo frames larger than 8170 bytes, you have
81cb2f755cSBill Paul  *   to turn off transmit checksum offloading, because the chip can't
82cb2f755cSBill Paul  *   compute the checksum on an outgoing frame unless it fits entirely
83cb2f755cSBill Paul  *   within the TX FIFO, which is only 8192 bytes in size. If you have
84cb2f755cSBill Paul  *   TX checksum offload enabled and you transmit attempt to transmit a
85cb2f755cSBill Paul  *   frame larger than 8170 bytes, the transmitter will wedge.
86cb2f755cSBill Paul  *
87cb2f755cSBill Paul  * To work around the latter problem, TX checksum offload is disabled
88cb2f755cSBill Paul  * if the user selects an MTU larger than 8152 (8170 - 18).
89ce4946daSBill Paul  */
90ce4946daSBill Paul 
91f0796cd2SGleb Smirnoff #ifdef HAVE_KERNEL_OPTION_HEADERS
92f0796cd2SGleb Smirnoff #include "opt_device_polling.h"
93f0796cd2SGleb Smirnoff #endif
94f0796cd2SGleb Smirnoff 
95ce4946daSBill Paul #include <sys/param.h>
96ce4946daSBill Paul #include <sys/systm.h>
97f6bc9430SPyun YongHyeon #include <sys/bus.h>
98f6bc9430SPyun YongHyeon #include <sys/endian.h>
99ce4946daSBill Paul #include <sys/kernel.h>
100f6bc9430SPyun YongHyeon #include <sys/lock.h>
101f6bc9430SPyun YongHyeon #include <sys/malloc.h>
102f6bc9430SPyun YongHyeon #include <sys/mbuf.h>
103f6bc9430SPyun YongHyeon #include <sys/module.h>
104f6bc9430SPyun YongHyeon #include <sys/mutex.h>
105f6bc9430SPyun YongHyeon #include <sys/rman.h>
106ce4946daSBill Paul #include <sys/socket.h>
107f6bc9430SPyun YongHyeon #include <sys/sockio.h>
108f6bc9430SPyun YongHyeon #include <sys/sysctl.h>
109ce4946daSBill Paul 
110f6bc9430SPyun YongHyeon #include <net/bpf.h>
111ce4946daSBill Paul #include <net/if.h>
11276039bc8SGleb Smirnoff #include <net/if_var.h>
113ce4946daSBill Paul #include <net/if_arp.h>
114ce4946daSBill Paul #include <net/ethernet.h>
115ce4946daSBill Paul #include <net/if_dl.h>
116ce4946daSBill Paul #include <net/if_media.h>
117ce4946daSBill Paul #include <net/if_types.h>
118ce4946daSBill Paul #include <net/if_vlan_var.h>
119ce4946daSBill Paul 
120ce4946daSBill Paul #include <dev/mii/mii.h>
1218c1093fcSMarius Strobl #include <dev/mii/mii_bitbang.h>
122ce4946daSBill Paul #include <dev/mii/miivar.h>
123ce4946daSBill Paul 
12438d8c994SWarner Losh #include <dev/pci/pcireg.h>
12538d8c994SWarner Losh #include <dev/pci/pcivar.h>
126ce4946daSBill Paul 
127f6bc9430SPyun YongHyeon #include <machine/bus.h>
128ce4946daSBill Paul 
1295da751e4SBill Paul #include <dev/nge/if_ngereg.h>
130ce4946daSBill Paul 
131f6bc9430SPyun YongHyeon /* "device miibus" required.  See GENERIC if you get errors here. */
132f6bc9430SPyun YongHyeon #include "miibus_if.h"
133f6bc9430SPyun YongHyeon 
134f246e4a1SMatthew N. Dodd MODULE_DEPEND(nge, pci, 1, 1, 1);
135f246e4a1SMatthew N. Dodd MODULE_DEPEND(nge, ether, 1, 1, 1);
136ce4946daSBill Paul MODULE_DEPEND(nge, miibus, 1, 1, 1);
137ce4946daSBill Paul 
138ce4946daSBill Paul #define NGE_CSUM_FEATURES	(CSUM_IP | CSUM_TCP | CSUM_UDP)
139ce4946daSBill Paul 
140ce4946daSBill Paul /*
141ce4946daSBill Paul  * Various supported device vendors/types and their names.
142ce4946daSBill Paul  */
14329658c96SDimitry Andric static const struct nge_type nge_devs[] = {
144ce4946daSBill Paul 	{ NGE_VENDORID, NGE_DEVICEID,
145ce4946daSBill Paul 	    "National Semiconductor Gigabit Ethernet" },
146ce4946daSBill Paul 	{ 0, 0, NULL }
147ce4946daSBill Paul };
148ce4946daSBill Paul 
149e51a25f8SAlfred Perlstein static int nge_probe(device_t);
150e51a25f8SAlfred Perlstein static int nge_attach(device_t);
151e51a25f8SAlfred Perlstein static int nge_detach(device_t);
152f6bc9430SPyun YongHyeon static int nge_shutdown(device_t);
153f6bc9430SPyun YongHyeon static int nge_suspend(device_t);
154f6bc9430SPyun YongHyeon static int nge_resume(device_t);
155ce4946daSBill Paul 
156f6bc9430SPyun YongHyeon static __inline void nge_discard_rxbuf(struct nge_softc *, int);
157f6bc9430SPyun YongHyeon static int nge_newbuf(struct nge_softc *, int);
158f6bc9430SPyun YongHyeon static int nge_encap(struct nge_softc *, struct mbuf **);
159f6bc9430SPyun YongHyeon #ifndef __NO_STRICT_ALIGNMENT
160ad6c618bSBill Paul static __inline void nge_fixup_rx(struct mbuf *);
161ad6c618bSBill Paul #endif
16256e13f2aSAttilio Rao static int nge_rxeof(struct nge_softc *);
163e51a25f8SAlfred Perlstein static void nge_txeof(struct nge_softc *);
164e51a25f8SAlfred Perlstein static void nge_intr(void *);
165e51a25f8SAlfred Perlstein static void nge_tick(void *);
166f6bc9430SPyun YongHyeon static void nge_stats_update(struct nge_softc *);
16776cb2c1cSJustin Hibbits static void nge_start(if_t);
16876cb2c1cSJustin Hibbits static void nge_start_locked(if_t);
16976cb2c1cSJustin Hibbits static int nge_ioctl(if_t, u_long, caddr_t);
170e51a25f8SAlfred Perlstein static void nge_init(void *);
171ad6c618bSBill Paul static void nge_init_locked(struct nge_softc *);
172f6bc9430SPyun YongHyeon static int nge_stop_mac(struct nge_softc *);
173e51a25f8SAlfred Perlstein static void nge_stop(struct nge_softc *);
174f6bc9430SPyun YongHyeon static void nge_wol(struct nge_softc *);
175f6bc9430SPyun YongHyeon static void nge_watchdog(struct nge_softc *);
17676cb2c1cSJustin Hibbits static int nge_mediachange(if_t);
17776cb2c1cSJustin Hibbits static void nge_mediastatus(if_t, struct ifmediareq *);
178ce4946daSBill Paul 
179e51a25f8SAlfred Perlstein static void nge_delay(struct nge_softc *);
180e51a25f8SAlfred Perlstein static void nge_eeprom_idle(struct nge_softc *);
181e51a25f8SAlfred Perlstein static void nge_eeprom_putbyte(struct nge_softc *, int);
1823929ff51SPyun YongHyeon static void nge_eeprom_getword(struct nge_softc *, int, uint16_t *);
183f6bc9430SPyun YongHyeon static void nge_read_eeprom(struct nge_softc *, caddr_t, int, int);
184ce4946daSBill Paul 
185e51a25f8SAlfred Perlstein static int nge_miibus_readreg(device_t, int, int);
186e51a25f8SAlfred Perlstein static int nge_miibus_writereg(device_t, int, int, int);
187e51a25f8SAlfred Perlstein static void nge_miibus_statchg(device_t);
188ce4946daSBill Paul 
189f6bc9430SPyun YongHyeon static void nge_rxfilter(struct nge_softc *);
190e51a25f8SAlfred Perlstein static void nge_reset(struct nge_softc *);
191f6bc9430SPyun YongHyeon static void nge_dmamap_cb(void *, bus_dma_segment_t *, int, int);
192f6bc9430SPyun YongHyeon static int nge_dma_alloc(struct nge_softc *);
193f6bc9430SPyun YongHyeon static void nge_dma_free(struct nge_softc *);
194e51a25f8SAlfred Perlstein static int nge_list_rx_init(struct nge_softc *);
195e51a25f8SAlfred Perlstein static int nge_list_tx_init(struct nge_softc *);
196f6bc9430SPyun YongHyeon static void nge_sysctl_node(struct nge_softc *);
197f6bc9430SPyun YongHyeon static int sysctl_int_range(SYSCTL_HANDLER_ARGS, int, int);
198f6bc9430SPyun YongHyeon static int sysctl_hw_nge_int_holdoff(SYSCTL_HANDLER_ARGS);
199ce4946daSBill Paul 
2008c1093fcSMarius Strobl /*
2018c1093fcSMarius Strobl  * MII bit-bang glue
2028c1093fcSMarius Strobl  */
2038c1093fcSMarius Strobl static uint32_t nge_mii_bitbang_read(device_t);
2048c1093fcSMarius Strobl static void nge_mii_bitbang_write(device_t, uint32_t);
2058c1093fcSMarius Strobl 
2068c1093fcSMarius Strobl static const struct mii_bitbang_ops nge_mii_bitbang_ops = {
2078c1093fcSMarius Strobl 	nge_mii_bitbang_read,
2088c1093fcSMarius Strobl 	nge_mii_bitbang_write,
2098c1093fcSMarius Strobl 	{
2108c1093fcSMarius Strobl 		NGE_MEAR_MII_DATA,	/* MII_BIT_MDO */
2118c1093fcSMarius Strobl 		NGE_MEAR_MII_DATA,	/* MII_BIT_MDI */
2128c1093fcSMarius Strobl 		NGE_MEAR_MII_CLK,	/* MII_BIT_MDC */
2138c1093fcSMarius Strobl 		NGE_MEAR_MII_DIR,	/* MII_BIT_DIR_HOST_PHY */
2148c1093fcSMarius Strobl 		0,			/* MII_BIT_DIR_PHY_HOST */
2158c1093fcSMarius Strobl 	}
2168c1093fcSMarius Strobl };
2178c1093fcSMarius Strobl 
218ce4946daSBill Paul static device_method_t nge_methods[] = {
219ce4946daSBill Paul 	/* Device interface */
220ce4946daSBill Paul 	DEVMETHOD(device_probe,		nge_probe),
221ce4946daSBill Paul 	DEVMETHOD(device_attach,	nge_attach),
222ce4946daSBill Paul 	DEVMETHOD(device_detach,	nge_detach),
223ce4946daSBill Paul 	DEVMETHOD(device_shutdown,	nge_shutdown),
224f6bc9430SPyun YongHyeon 	DEVMETHOD(device_suspend,	nge_suspend),
225f6bc9430SPyun YongHyeon 	DEVMETHOD(device_resume,	nge_resume),
226ce4946daSBill Paul 
227ce4946daSBill Paul 	/* MII interface */
228ce4946daSBill Paul 	DEVMETHOD(miibus_readreg,	nge_miibus_readreg),
229ce4946daSBill Paul 	DEVMETHOD(miibus_writereg,	nge_miibus_writereg),
230ce4946daSBill Paul 	DEVMETHOD(miibus_statchg,	nge_miibus_statchg),
231ce4946daSBill Paul 
2324b7ec270SMarius Strobl 	DEVMETHOD_END
233ce4946daSBill Paul };
234ce4946daSBill Paul 
235ce4946daSBill Paul static driver_t nge_driver = {
236ce4946daSBill Paul 	"nge",
237ce4946daSBill Paul 	nge_methods,
238ce4946daSBill Paul 	sizeof(struct nge_softc)
239ce4946daSBill Paul };
240ce4946daSBill Paul 
241e7451a6bSJohn Baldwin DRIVER_MODULE(nge, pci, nge_driver, 0, 0);
2423e38757dSJohn Baldwin DRIVER_MODULE(miibus, nge, miibus_driver, 0, 0);
243ce4946daSBill Paul 
244ce4946daSBill Paul #define NGE_SETBIT(sc, reg, x)				\
245ce4946daSBill Paul 	CSR_WRITE_4(sc, reg,				\
246ce4946daSBill Paul 		CSR_READ_4(sc, reg) | (x))
247ce4946daSBill Paul 
248ce4946daSBill Paul #define NGE_CLRBIT(sc, reg, x)				\
249ce4946daSBill Paul 	CSR_WRITE_4(sc, reg,				\
250ce4946daSBill Paul 		CSR_READ_4(sc, reg) & ~(x))
251ce4946daSBill Paul 
252ce4946daSBill Paul #define SIO_SET(x)					\
25329f19445SAlfred Perlstein 	CSR_WRITE_4(sc, NGE_MEAR, CSR_READ_4(sc, NGE_MEAR) | (x))
254ce4946daSBill Paul 
255ce4946daSBill Paul #define SIO_CLR(x)					\
25629f19445SAlfred Perlstein 	CSR_WRITE_4(sc, NGE_MEAR, CSR_READ_4(sc, NGE_MEAR) & ~(x))
257ce4946daSBill Paul 
258eaabec55SAlfred Perlstein static void
nge_delay(struct nge_softc * sc)259284c81cbSPyun YongHyeon nge_delay(struct nge_softc *sc)
260ce4946daSBill Paul {
261ce4946daSBill Paul 	int idx;
262ce4946daSBill Paul 
263ce4946daSBill Paul 	for (idx = (300 / 33) + 1; idx > 0; idx--)
264ce4946daSBill Paul 		CSR_READ_4(sc, NGE_CSR);
265ce4946daSBill Paul }
266ce4946daSBill Paul 
267eaabec55SAlfred Perlstein static void
nge_eeprom_idle(struct nge_softc * sc)268284c81cbSPyun YongHyeon nge_eeprom_idle(struct nge_softc *sc)
269ce4946daSBill Paul {
2702cf2d799SPyun YongHyeon 	int i;
271ce4946daSBill Paul 
272ce4946daSBill Paul 	SIO_SET(NGE_MEAR_EE_CSEL);
273ce4946daSBill Paul 	nge_delay(sc);
274ce4946daSBill Paul 	SIO_SET(NGE_MEAR_EE_CLK);
275ce4946daSBill Paul 	nge_delay(sc);
276ce4946daSBill Paul 
277ce4946daSBill Paul 	for (i = 0; i < 25; i++) {
278ce4946daSBill Paul 		SIO_CLR(NGE_MEAR_EE_CLK);
279ce4946daSBill Paul 		nge_delay(sc);
280ce4946daSBill Paul 		SIO_SET(NGE_MEAR_EE_CLK);
281ce4946daSBill Paul 		nge_delay(sc);
282ce4946daSBill Paul 	}
283ce4946daSBill Paul 
284ce4946daSBill Paul 	SIO_CLR(NGE_MEAR_EE_CLK);
285ce4946daSBill Paul 	nge_delay(sc);
286ce4946daSBill Paul 	SIO_CLR(NGE_MEAR_EE_CSEL);
287ce4946daSBill Paul 	nge_delay(sc);
288ce4946daSBill Paul 	CSR_WRITE_4(sc, NGE_MEAR, 0x00000000);
289ce4946daSBill Paul }
290ce4946daSBill Paul 
291ce4946daSBill Paul /*
292ce4946daSBill Paul  * Send a read command and address to the EEPROM, check for ACK.
293ce4946daSBill Paul  */
294eaabec55SAlfred Perlstein static void
nge_eeprom_putbyte(struct nge_softc * sc,int addr)295284c81cbSPyun YongHyeon nge_eeprom_putbyte(struct nge_softc *sc, int addr)
296ce4946daSBill Paul {
2972cf2d799SPyun YongHyeon 	int d, i;
298ce4946daSBill Paul 
299ce4946daSBill Paul 	d = addr | NGE_EECMD_READ;
300ce4946daSBill Paul 
301ce4946daSBill Paul 	/*
302ce4946daSBill Paul 	 * Feed in each bit and stobe the clock.
303ce4946daSBill Paul 	 */
304ce4946daSBill Paul 	for (i = 0x400; i; i >>= 1) {
305ce4946daSBill Paul 		if (d & i) {
306ce4946daSBill Paul 			SIO_SET(NGE_MEAR_EE_DIN);
307ce4946daSBill Paul 		} else {
308ce4946daSBill Paul 			SIO_CLR(NGE_MEAR_EE_DIN);
309ce4946daSBill Paul 		}
310ce4946daSBill Paul 		nge_delay(sc);
311ce4946daSBill Paul 		SIO_SET(NGE_MEAR_EE_CLK);
312ce4946daSBill Paul 		nge_delay(sc);
313ce4946daSBill Paul 		SIO_CLR(NGE_MEAR_EE_CLK);
314ce4946daSBill Paul 		nge_delay(sc);
315ce4946daSBill Paul 	}
316ce4946daSBill Paul }
317ce4946daSBill Paul 
318ce4946daSBill Paul /*
319ce4946daSBill Paul  * Read a word of data stored in the EEPROM at address 'addr.'
320ce4946daSBill Paul  */
321eaabec55SAlfred Perlstein static void
nge_eeprom_getword(struct nge_softc * sc,int addr,uint16_t * dest)3223929ff51SPyun YongHyeon nge_eeprom_getword(struct nge_softc *sc, int addr, uint16_t *dest)
323ce4946daSBill Paul {
3242cf2d799SPyun YongHyeon 	int i;
3253929ff51SPyun YongHyeon 	uint16_t word = 0;
326ce4946daSBill Paul 
327ce4946daSBill Paul 	/* Force EEPROM to idle state. */
328ce4946daSBill Paul 	nge_eeprom_idle(sc);
329ce4946daSBill Paul 
330ce4946daSBill Paul 	/* Enter EEPROM access mode. */
331ce4946daSBill Paul 	nge_delay(sc);
332ce4946daSBill Paul 	SIO_CLR(NGE_MEAR_EE_CLK);
333ce4946daSBill Paul 	nge_delay(sc);
334ce4946daSBill Paul 	SIO_SET(NGE_MEAR_EE_CSEL);
335ce4946daSBill Paul 	nge_delay(sc);
336ce4946daSBill Paul 
337ce4946daSBill Paul 	/*
338ce4946daSBill Paul 	 * Send address of word we want to read.
339ce4946daSBill Paul 	 */
340ce4946daSBill Paul 	nge_eeprom_putbyte(sc, addr);
341ce4946daSBill Paul 
342ce4946daSBill Paul 	/*
343ce4946daSBill Paul 	 * Start reading bits from EEPROM.
344ce4946daSBill Paul 	 */
345ce4946daSBill Paul 	for (i = 0x8000; i; i >>= 1) {
346ce4946daSBill Paul 		SIO_SET(NGE_MEAR_EE_CLK);
347ce4946daSBill Paul 		nge_delay(sc);
348ce4946daSBill Paul 		if (CSR_READ_4(sc, NGE_MEAR) & NGE_MEAR_EE_DOUT)
349ce4946daSBill Paul 			word |= i;
350ce4946daSBill Paul 		nge_delay(sc);
351ce4946daSBill Paul 		SIO_CLR(NGE_MEAR_EE_CLK);
352ce4946daSBill Paul 		nge_delay(sc);
353ce4946daSBill Paul 	}
354ce4946daSBill Paul 
355ce4946daSBill Paul 	/* Turn off EEPROM access mode. */
356ce4946daSBill Paul 	nge_eeprom_idle(sc);
357ce4946daSBill Paul 
358ce4946daSBill Paul 	*dest = word;
359ce4946daSBill Paul }
360ce4946daSBill Paul 
361ce4946daSBill Paul /*
362ce4946daSBill Paul  * Read a sequence of words from the EEPROM.
363ce4946daSBill Paul  */
364eaabec55SAlfred Perlstein static void
nge_read_eeprom(struct nge_softc * sc,caddr_t dest,int off,int cnt)365f6bc9430SPyun YongHyeon nge_read_eeprom(struct nge_softc *sc, caddr_t dest, int off, int cnt)
366ce4946daSBill Paul {
367ce4946daSBill Paul 	int i;
3683929ff51SPyun YongHyeon 	uint16_t word = 0, *ptr;
369ce4946daSBill Paul 
370ce4946daSBill Paul 	for (i = 0; i < cnt; i++) {
371ce4946daSBill Paul 		nge_eeprom_getword(sc, off + i, &word);
3723929ff51SPyun YongHyeon 		ptr = (uint16_t *)(dest + (i * 2));
373ce4946daSBill Paul 		*ptr = word;
374ce4946daSBill Paul 	}
375ce4946daSBill Paul }
376ce4946daSBill Paul 
377ce4946daSBill Paul /*
3788c1093fcSMarius Strobl  * Read the MII serial port for the MII bit-bang module.
3798c1093fcSMarius Strobl  */
3808c1093fcSMarius Strobl static uint32_t
nge_mii_bitbang_read(device_t dev)3818c1093fcSMarius Strobl nge_mii_bitbang_read(device_t dev)
3828c1093fcSMarius Strobl {
3838c1093fcSMarius Strobl 	struct nge_softc *sc;
3848c1093fcSMarius Strobl 	uint32_t val;
3858c1093fcSMarius Strobl 
3868c1093fcSMarius Strobl 	sc = device_get_softc(dev);
3878c1093fcSMarius Strobl 
3888c1093fcSMarius Strobl 	val = CSR_READ_4(sc, NGE_MEAR);
3898c1093fcSMarius Strobl 	CSR_BARRIER_4(sc, NGE_MEAR,
3908c1093fcSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
3918c1093fcSMarius Strobl 
3928c1093fcSMarius Strobl 	return (val);
3938c1093fcSMarius Strobl }
3948c1093fcSMarius Strobl 
3958c1093fcSMarius Strobl /*
3968c1093fcSMarius Strobl  * Write the MII serial port for the MII bit-bang module.
397ce4946daSBill Paul  */
398eaabec55SAlfred Perlstein static void
nge_mii_bitbang_write(device_t dev,uint32_t val)3998c1093fcSMarius Strobl nge_mii_bitbang_write(device_t dev, uint32_t val)
400ce4946daSBill Paul {
4018c1093fcSMarius Strobl 	struct nge_softc *sc;
402ce4946daSBill Paul 
4038c1093fcSMarius Strobl 	sc = device_get_softc(dev);
404ce4946daSBill Paul 
4058c1093fcSMarius Strobl 	CSR_WRITE_4(sc, NGE_MEAR, val);
4068c1093fcSMarius Strobl 	CSR_BARRIER_4(sc, NGE_MEAR,
4078c1093fcSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
408ce4946daSBill Paul }
409ce4946daSBill Paul 
410eaabec55SAlfred Perlstein static int
nge_miibus_readreg(device_t dev,int phy,int reg)411284c81cbSPyun YongHyeon nge_miibus_readreg(device_t dev, int phy, int reg)
412ce4946daSBill Paul {
413ce4946daSBill Paul 	struct nge_softc *sc;
414f6bc9430SPyun YongHyeon 	int rv;
415ce4946daSBill Paul 
416ce4946daSBill Paul 	sc = device_get_softc(dev);
417f6bc9430SPyun YongHyeon 	if ((sc->nge_flags & NGE_FLAG_TBI) != 0) {
418f6bc9430SPyun YongHyeon 		/* Pretend PHY is at address 0. */
419f6bc9430SPyun YongHyeon 		if (phy != 0)
420f6bc9430SPyun YongHyeon 			return (0);
421f6bc9430SPyun YongHyeon 		switch (reg) {
422f6bc9430SPyun YongHyeon 		case MII_BMCR:
423f6bc9430SPyun YongHyeon 			reg = NGE_TBI_BMCR;
424f6bc9430SPyun YongHyeon 			break;
425f6bc9430SPyun YongHyeon 		case MII_BMSR:
426f6bc9430SPyun YongHyeon 			/* 83820/83821 has different bit layout for BMSR. */
427f6bc9430SPyun YongHyeon 			rv = BMSR_ANEG | BMSR_EXTCAP | BMSR_EXTSTAT;
428f6bc9430SPyun YongHyeon 			reg = CSR_READ_4(sc, NGE_TBI_BMSR);
429f6bc9430SPyun YongHyeon 			if ((reg & NGE_TBIBMSR_ANEG_DONE) != 0)
430f6bc9430SPyun YongHyeon 				rv |= BMSR_ACOMP;
431f6bc9430SPyun YongHyeon 			if ((reg & NGE_TBIBMSR_LINKSTAT) != 0)
432f6bc9430SPyun YongHyeon 				rv |= BMSR_LINK;
433f6bc9430SPyun YongHyeon 			return (rv);
434f6bc9430SPyun YongHyeon 		case MII_ANAR:
435f6bc9430SPyun YongHyeon 			reg = NGE_TBI_ANAR;
436f6bc9430SPyun YongHyeon 			break;
437f6bc9430SPyun YongHyeon 		case MII_ANLPAR:
438f6bc9430SPyun YongHyeon 			reg = NGE_TBI_ANLPAR;
439f6bc9430SPyun YongHyeon 			break;
440f6bc9430SPyun YongHyeon 		case MII_ANER:
441f6bc9430SPyun YongHyeon 			reg = NGE_TBI_ANER;
442f6bc9430SPyun YongHyeon 			break;
443f6bc9430SPyun YongHyeon 		case MII_EXTSR:
444f6bc9430SPyun YongHyeon 			reg = NGE_TBI_ESR;
445f6bc9430SPyun YongHyeon 			break;
446f6bc9430SPyun YongHyeon 		case MII_PHYIDR1:
447f6bc9430SPyun YongHyeon 		case MII_PHYIDR2:
448f6bc9430SPyun YongHyeon 			return (0);
449f6bc9430SPyun YongHyeon 		default:
450f6bc9430SPyun YongHyeon 			device_printf(sc->nge_dev,
451f6bc9430SPyun YongHyeon 			    "bad phy register read : %d\n", reg);
452f6bc9430SPyun YongHyeon 			return (0);
453f6bc9430SPyun YongHyeon 		}
454f6bc9430SPyun YongHyeon 		return (CSR_READ_4(sc, reg));
455f6bc9430SPyun YongHyeon 	}
456ce4946daSBill Paul 
4578c1093fcSMarius Strobl 	return (mii_bitbang_readreg(dev, &nge_mii_bitbang_ops, phy, reg));
458ce4946daSBill Paul }
459ce4946daSBill Paul 
460eaabec55SAlfred Perlstein static int
nge_miibus_writereg(device_t dev,int phy,int reg,int data)461284c81cbSPyun YongHyeon nge_miibus_writereg(device_t dev, int phy, int reg, int data)
462ce4946daSBill Paul {
463ce4946daSBill Paul 	struct nge_softc *sc;
464ce4946daSBill Paul 
465ce4946daSBill Paul 	sc = device_get_softc(dev);
466f6bc9430SPyun YongHyeon 	if ((sc->nge_flags & NGE_FLAG_TBI) != 0) {
467f6bc9430SPyun YongHyeon 		/* Pretend PHY is at address 0. */
468f6bc9430SPyun YongHyeon 		if (phy != 0)
469f6bc9430SPyun YongHyeon 			return (0);
470f6bc9430SPyun YongHyeon 		switch (reg) {
471f6bc9430SPyun YongHyeon 		case MII_BMCR:
472f6bc9430SPyun YongHyeon 			reg = NGE_TBI_BMCR;
473f6bc9430SPyun YongHyeon 			break;
474f6bc9430SPyun YongHyeon 		case MII_BMSR:
475f6bc9430SPyun YongHyeon 			return (0);
476f6bc9430SPyun YongHyeon 		case MII_ANAR:
477f6bc9430SPyun YongHyeon 			reg = NGE_TBI_ANAR;
478f6bc9430SPyun YongHyeon 			break;
479f6bc9430SPyun YongHyeon 		case MII_ANLPAR:
480f6bc9430SPyun YongHyeon 			reg = NGE_TBI_ANLPAR;
481f6bc9430SPyun YongHyeon 			break;
482f6bc9430SPyun YongHyeon 		case MII_ANER:
483f6bc9430SPyun YongHyeon 			reg = NGE_TBI_ANER;
484f6bc9430SPyun YongHyeon 			break;
485f6bc9430SPyun YongHyeon 		case MII_EXTSR:
486f6bc9430SPyun YongHyeon 			reg = NGE_TBI_ESR;
487f6bc9430SPyun YongHyeon 			break;
488f6bc9430SPyun YongHyeon 		case MII_PHYIDR1:
489f6bc9430SPyun YongHyeon 		case MII_PHYIDR2:
490f6bc9430SPyun YongHyeon 			return (0);
491f6bc9430SPyun YongHyeon 		default:
492f6bc9430SPyun YongHyeon 			device_printf(sc->nge_dev,
493f6bc9430SPyun YongHyeon 			    "bad phy register write : %d\n", reg);
494f6bc9430SPyun YongHyeon 			return (0);
495f6bc9430SPyun YongHyeon 		}
496f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, reg, data);
497f6bc9430SPyun YongHyeon 		return (0);
498f6bc9430SPyun YongHyeon 	}
499ce4946daSBill Paul 
5008c1093fcSMarius Strobl 	mii_bitbang_writereg(dev, &nge_mii_bitbang_ops, phy, reg, data);
501ce4946daSBill Paul 
502ce4946daSBill Paul 	return (0);
503ce4946daSBill Paul }
504ce4946daSBill Paul 
505f6bc9430SPyun YongHyeon /*
506f6bc9430SPyun YongHyeon  * media status/link state change handler.
507f6bc9430SPyun YongHyeon  */
508eaabec55SAlfred Perlstein static void
nge_miibus_statchg(device_t dev)509284c81cbSPyun YongHyeon nge_miibus_statchg(device_t dev)
510ce4946daSBill Paul {
511ce4946daSBill Paul 	struct nge_softc *sc;
512ce4946daSBill Paul 	struct mii_data *mii;
51376cb2c1cSJustin Hibbits 	if_t ifp;
514f6bc9430SPyun YongHyeon 	struct nge_txdesc *txd;
515f6bc9430SPyun YongHyeon 	uint32_t done, reg, status;
516f6bc9430SPyun YongHyeon 	int i;
517ce4946daSBill Paul 
518ce4946daSBill Paul 	sc = device_get_softc(dev);
519f6bc9430SPyun YongHyeon 	NGE_LOCK_ASSERT(sc);
5201f548804SDoug Ambrisko 
521ce4946daSBill Paul 	mii = device_get_softc(sc->nge_miibus);
522f6bc9430SPyun YongHyeon 	ifp = sc->nge_ifp;
523f6bc9430SPyun YongHyeon 	if (mii == NULL || ifp == NULL ||
52476cb2c1cSJustin Hibbits 	    (if_getdrvflags(ifp) & IFF_DRV_RUNNING) == 0)
525f6bc9430SPyun YongHyeon 		return;
526ce4946daSBill Paul 
527f6bc9430SPyun YongHyeon 	sc->nge_flags &= ~NGE_FLAG_LINK;
528f6bc9430SPyun YongHyeon 	if ((mii->mii_media_status & (IFM_AVALID | IFM_ACTIVE)) ==
529f6bc9430SPyun YongHyeon 	    (IFM_AVALID | IFM_ACTIVE)) {
530f6bc9430SPyun YongHyeon 		switch (IFM_SUBTYPE(mii->mii_media_active)) {
531f6bc9430SPyun YongHyeon 		case IFM_10_T:
532f6bc9430SPyun YongHyeon 		case IFM_100_TX:
533f6bc9430SPyun YongHyeon 		case IFM_1000_T:
534f6bc9430SPyun YongHyeon 		case IFM_1000_SX:
535f6bc9430SPyun YongHyeon 		case IFM_1000_LX:
536f6bc9430SPyun YongHyeon 		case IFM_1000_CX:
537f6bc9430SPyun YongHyeon 			sc->nge_flags |= NGE_FLAG_LINK;
538f6bc9430SPyun YongHyeon 			break;
539f6bc9430SPyun YongHyeon 		default:
540f6bc9430SPyun YongHyeon 			break;
541f6bc9430SPyun YongHyeon 		}
542f6bc9430SPyun YongHyeon 	}
543f6bc9430SPyun YongHyeon 
544f6bc9430SPyun YongHyeon 	/* Stop Tx/Rx MACs. */
545f6bc9430SPyun YongHyeon 	if (nge_stop_mac(sc) == ETIMEDOUT)
546f6bc9430SPyun YongHyeon 		device_printf(sc->nge_dev,
547f6bc9430SPyun YongHyeon 		    "%s: unable to stop Tx/Rx MAC\n", __func__);
548f6bc9430SPyun YongHyeon 	nge_txeof(sc);
549f6bc9430SPyun YongHyeon 	nge_rxeof(sc);
550f6bc9430SPyun YongHyeon 	if (sc->nge_head != NULL) {
551f6bc9430SPyun YongHyeon 		m_freem(sc->nge_head);
552f6bc9430SPyun YongHyeon 		sc->nge_head = sc->nge_tail = NULL;
553f6bc9430SPyun YongHyeon 	}
554f6bc9430SPyun YongHyeon 
555f6bc9430SPyun YongHyeon 	/* Release queued frames. */
556f6bc9430SPyun YongHyeon 	for (i = 0; i < NGE_TX_RING_CNT; i++) {
557f6bc9430SPyun YongHyeon 		txd = &sc->nge_cdata.nge_txdesc[i];
558f6bc9430SPyun YongHyeon 		if (txd->tx_m != NULL) {
559f6bc9430SPyun YongHyeon 			bus_dmamap_sync(sc->nge_cdata.nge_tx_tag,
560f6bc9430SPyun YongHyeon 			    txd->tx_dmamap, BUS_DMASYNC_POSTWRITE);
561f6bc9430SPyun YongHyeon 			bus_dmamap_unload(sc->nge_cdata.nge_tx_tag,
562f6bc9430SPyun YongHyeon 			    txd->tx_dmamap);
563f6bc9430SPyun YongHyeon 			m_freem(txd->tx_m);
564f6bc9430SPyun YongHyeon 			txd->tx_m = NULL;
565f6bc9430SPyun YongHyeon 		}
566f6bc9430SPyun YongHyeon 	}
567f6bc9430SPyun YongHyeon 
568f6bc9430SPyun YongHyeon 	/* Program MAC with resolved speed/duplex. */
569f6bc9430SPyun YongHyeon 	if ((sc->nge_flags & NGE_FLAG_LINK) != 0) {
570f6bc9430SPyun YongHyeon 		if ((IFM_OPTIONS(mii->mii_media_active) & IFM_FDX) != 0) {
571ce4946daSBill Paul 			NGE_SETBIT(sc, NGE_TX_CFG,
572ce4946daSBill Paul 			    (NGE_TXCFG_IGN_HBEAT | NGE_TXCFG_IGN_CARR));
573ce4946daSBill Paul 			NGE_SETBIT(sc, NGE_RX_CFG, NGE_RXCFG_RX_FDX);
574f6bc9430SPyun YongHyeon #ifdef notyet
575f6bc9430SPyun YongHyeon 			/* Enable flow-control. */
576f6bc9430SPyun YongHyeon 			if ((IFM_OPTIONS(mii->mii_media_active) &
577f6bc9430SPyun YongHyeon 			    (IFM_ETH_RXPAUSE | IFM_ETH_TXPAUSE)) != 0)
578f6bc9430SPyun YongHyeon 				NGE_SETBIT(sc, NGE_PAUSECSR,
579f6bc9430SPyun YongHyeon 				    NGE_PAUSECSR_PAUSE_ENB);
580f6bc9430SPyun YongHyeon #endif
581ce4946daSBill Paul 		} else {
582ce4946daSBill Paul 			NGE_CLRBIT(sc, NGE_TX_CFG,
583ce4946daSBill Paul 			    (NGE_TXCFG_IGN_HBEAT | NGE_TXCFG_IGN_CARR));
584ce4946daSBill Paul 			NGE_CLRBIT(sc, NGE_RX_CFG, NGE_RXCFG_RX_FDX);
585f6bc9430SPyun YongHyeon 			NGE_CLRBIT(sc, NGE_PAUSECSR, NGE_PAUSECSR_PAUSE_ENB);
586f6bc9430SPyun YongHyeon 		}
587f6bc9430SPyun YongHyeon 		/* If we have a 1000Mbps link, set the mode_1000 bit. */
588f6bc9430SPyun YongHyeon 		reg = CSR_READ_4(sc, NGE_CFG);
589f6bc9430SPyun YongHyeon 		switch (IFM_SUBTYPE(mii->mii_media_active)) {
590f6bc9430SPyun YongHyeon 		case IFM_1000_SX:
591f6bc9430SPyun YongHyeon 		case IFM_1000_LX:
592f6bc9430SPyun YongHyeon 		case IFM_1000_CX:
593f6bc9430SPyun YongHyeon 		case IFM_1000_T:
594f6bc9430SPyun YongHyeon 			reg |= NGE_CFG_MODE_1000;
595f6bc9430SPyun YongHyeon 			break;
596f6bc9430SPyun YongHyeon 		default:
597f6bc9430SPyun YongHyeon 			reg &= ~NGE_CFG_MODE_1000;
598f6bc9430SPyun YongHyeon 			break;
599f6bc9430SPyun YongHyeon 		}
600f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, NGE_CFG, reg);
601f6bc9430SPyun YongHyeon 
602f6bc9430SPyun YongHyeon 		/* Reset Tx/Rx MAC. */
603f6bc9430SPyun YongHyeon 		reg = CSR_READ_4(sc, NGE_CSR);
604f6bc9430SPyun YongHyeon 		reg |= NGE_CSR_TX_RESET | NGE_CSR_RX_RESET;
605f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, NGE_CSR, reg);
606f6bc9430SPyun YongHyeon 		/* Check the completion of reset. */
607f6bc9430SPyun YongHyeon 		done = 0;
608f6bc9430SPyun YongHyeon 		for (i = 0; i < NGE_TIMEOUT; i++) {
609f6bc9430SPyun YongHyeon 			DELAY(1);
610f6bc9430SPyun YongHyeon 			status = CSR_READ_4(sc, NGE_ISR);
611f6bc9430SPyun YongHyeon 			if ((status & NGE_ISR_RX_RESET_DONE) != 0)
612f6bc9430SPyun YongHyeon 				done |= NGE_ISR_RX_RESET_DONE;
613f6bc9430SPyun YongHyeon 			if ((status & NGE_ISR_TX_RESET_DONE) != 0)
614f6bc9430SPyun YongHyeon 				done |= NGE_ISR_TX_RESET_DONE;
615f6bc9430SPyun YongHyeon 			if (done ==
616f6bc9430SPyun YongHyeon 			    (NGE_ISR_TX_RESET_DONE | NGE_ISR_RX_RESET_DONE))
617f6bc9430SPyun YongHyeon 				break;
618f6bc9430SPyun YongHyeon 		}
619f6bc9430SPyun YongHyeon 		if (i == NGE_TIMEOUT)
620f6bc9430SPyun YongHyeon 			device_printf(sc->nge_dev,
621f6bc9430SPyun YongHyeon 			    "%s: unable to reset Tx/Rx MAC\n", __func__);
622f6bc9430SPyun YongHyeon 		/* Reuse Rx buffer and reset consumer pointer. */
623f6bc9430SPyun YongHyeon 		sc->nge_cdata.nge_rx_cons = 0;
624f6bc9430SPyun YongHyeon 		/*
625f6bc9430SPyun YongHyeon 		 * It seems that resetting Rx/Tx MAC results in
626f6bc9430SPyun YongHyeon 		 * resetting Tx/Rx descriptor pointer registers such
627f6bc9430SPyun YongHyeon 		 * that reloading Tx/Rx lists address are needed.
628f6bc9430SPyun YongHyeon 		 */
629f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, NGE_RX_LISTPTR_HI,
630f6bc9430SPyun YongHyeon 		    NGE_ADDR_HI(sc->nge_rdata.nge_rx_ring_paddr));
631f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, NGE_RX_LISTPTR_LO,
632f6bc9430SPyun YongHyeon 		    NGE_ADDR_LO(sc->nge_rdata.nge_rx_ring_paddr));
633f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, NGE_TX_LISTPTR_HI,
634f6bc9430SPyun YongHyeon 		    NGE_ADDR_HI(sc->nge_rdata.nge_tx_ring_paddr));
635f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, NGE_TX_LISTPTR_LO,
636f6bc9430SPyun YongHyeon 		    NGE_ADDR_LO(sc->nge_rdata.nge_tx_ring_paddr));
637f6bc9430SPyun YongHyeon 		/* Reinitialize Tx buffers. */
638f6bc9430SPyun YongHyeon 		nge_list_tx_init(sc);
639f6bc9430SPyun YongHyeon 
640f6bc9430SPyun YongHyeon 		/* Restart Rx MAC. */
641f6bc9430SPyun YongHyeon 		reg = CSR_READ_4(sc, NGE_CSR);
642f6bc9430SPyun YongHyeon 		reg |= NGE_CSR_RX_ENABLE;
643f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, NGE_CSR, reg);
644f6bc9430SPyun YongHyeon 		for (i = 0; i < NGE_TIMEOUT; i++) {
645f6bc9430SPyun YongHyeon 			if ((CSR_READ_4(sc, NGE_CSR) & NGE_CSR_RX_ENABLE) != 0)
646f6bc9430SPyun YongHyeon 				break;
647f6bc9430SPyun YongHyeon 			DELAY(1);
648f6bc9430SPyun YongHyeon 		}
649f6bc9430SPyun YongHyeon 		if (i == NGE_TIMEOUT)
650f6bc9430SPyun YongHyeon 			device_printf(sc->nge_dev,
651f6bc9430SPyun YongHyeon 			    "%s: unable to restart Rx MAC\n", __func__);
652ce4946daSBill Paul 	}
653ce4946daSBill Paul 
654f6bc9430SPyun YongHyeon 	/* Data LED off for TBI mode */
655f6bc9430SPyun YongHyeon 	if ((sc->nge_flags & NGE_FLAG_TBI) != 0)
656f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, NGE_GPIO,
657f6bc9430SPyun YongHyeon 		    CSR_READ_4(sc, NGE_GPIO) & ~NGE_GPIO_GP3_OUT);
658ce4946daSBill Paul }
659ce4946daSBill Paul 
6609bf5c8b4SGleb Smirnoff static u_int
nge_write_maddr(void * arg,struct sockaddr_dl * sdl,u_int cnt)6619bf5c8b4SGleb Smirnoff nge_write_maddr(void *arg, struct sockaddr_dl *sdl, u_int cnt)
6629bf5c8b4SGleb Smirnoff {
6639bf5c8b4SGleb Smirnoff 	struct nge_softc *sc = arg;
6649bf5c8b4SGleb Smirnoff 	uint32_t h;
6659bf5c8b4SGleb Smirnoff 	int bit, index;
6669bf5c8b4SGleb Smirnoff 
6679bf5c8b4SGleb Smirnoff 	/*
6689bf5c8b4SGleb Smirnoff 	 * From the 11 bits returned by the crc routine, the top 7
6699bf5c8b4SGleb Smirnoff 	 * bits represent the 16-bit word in the mcast hash table
6709bf5c8b4SGleb Smirnoff 	 * that needs to be updated, and the lower 4 bits represent
6719bf5c8b4SGleb Smirnoff 	 * which bit within that byte needs to be set.
6729bf5c8b4SGleb Smirnoff 	 */
6739bf5c8b4SGleb Smirnoff 	h = ether_crc32_be(LLADDR(sdl), ETHER_ADDR_LEN) >> 21;
6749bf5c8b4SGleb Smirnoff 	index = (h >> 4) & 0x7F;
6759bf5c8b4SGleb Smirnoff 	bit = h & 0xF;
6769bf5c8b4SGleb Smirnoff 	CSR_WRITE_4(sc, NGE_RXFILT_CTL, NGE_FILTADDR_MCAST_LO + (index * 2));
6779bf5c8b4SGleb Smirnoff 	NGE_SETBIT(sc, NGE_RXFILT_DATA, (1 << bit));
6789bf5c8b4SGleb Smirnoff 
6799bf5c8b4SGleb Smirnoff 	return (1);
6809bf5c8b4SGleb Smirnoff }
6819bf5c8b4SGleb Smirnoff 
682eaabec55SAlfred Perlstein static void
nge_rxfilter(struct nge_softc * sc)683f6bc9430SPyun YongHyeon nge_rxfilter(struct nge_softc *sc)
684ce4946daSBill Paul {
68576cb2c1cSJustin Hibbits 	if_t ifp;
6869bf5c8b4SGleb Smirnoff 	uint32_t i, rxfilt;
687ce4946daSBill Paul 
688ad6c618bSBill Paul 	NGE_LOCK_ASSERT(sc);
689fc74a9f9SBrooks Davis 	ifp = sc->nge_ifp;
690ce4946daSBill Paul 
691f6bc9430SPyun YongHyeon 	/* Make sure to stop Rx filtering. */
692f6bc9430SPyun YongHyeon 	rxfilt = CSR_READ_4(sc, NGE_RXFILT_CTL);
693f6bc9430SPyun YongHyeon 	rxfilt &= ~NGE_RXFILTCTL_ENABLE;
694f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_RXFILT_CTL, rxfilt);
6958c1093fcSMarius Strobl 	CSR_BARRIER_4(sc, NGE_RXFILT_CTL, BUS_SPACE_BARRIER_WRITE);
696f6bc9430SPyun YongHyeon 
697f6bc9430SPyun YongHyeon 	rxfilt &= ~(NGE_RXFILTCTL_ALLMULTI | NGE_RXFILTCTL_ALLPHYS);
698f6bc9430SPyun YongHyeon 	rxfilt &= ~NGE_RXFILTCTL_BROAD;
699f6bc9430SPyun YongHyeon 	/*
700f6bc9430SPyun YongHyeon 	 * We don't want to use the hash table for matching unicast
701f6bc9430SPyun YongHyeon 	 * addresses.
702f6bc9430SPyun YongHyeon 	 */
703f6bc9430SPyun YongHyeon 	rxfilt &= ~(NGE_RXFILTCTL_MCHASH | NGE_RXFILTCTL_UCHASH);
704f6bc9430SPyun YongHyeon 
705f6bc9430SPyun YongHyeon 	/*
706f6bc9430SPyun YongHyeon 	 * For the NatSemi chip, we have to explicitly enable the
707f6bc9430SPyun YongHyeon 	 * reception of ARP frames, as well as turn on the 'perfect
708f6bc9430SPyun YongHyeon 	 * match' filter where we store the station address, otherwise
709f6bc9430SPyun YongHyeon 	 * we won't receive unicasts meant for this host.
710f6bc9430SPyun YongHyeon 	 */
711f6bc9430SPyun YongHyeon 	rxfilt |= NGE_RXFILTCTL_ARP | NGE_RXFILTCTL_PERFECT;
712f6bc9430SPyun YongHyeon 
713f6bc9430SPyun YongHyeon 	/*
714f6bc9430SPyun YongHyeon 	 * Set the capture broadcast bit to capture broadcast frames.
715f6bc9430SPyun YongHyeon 	 */
71676cb2c1cSJustin Hibbits 	if ((if_getflags(ifp) & IFF_BROADCAST) != 0)
717f6bc9430SPyun YongHyeon 		rxfilt |= NGE_RXFILTCTL_BROAD;
718f6bc9430SPyun YongHyeon 
71976cb2c1cSJustin Hibbits 	if ((if_getflags(ifp) & IFF_PROMISC) != 0 ||
72076cb2c1cSJustin Hibbits 	    (if_getflags(ifp) & IFF_ALLMULTI) != 0) {
721f6bc9430SPyun YongHyeon 		rxfilt |= NGE_RXFILTCTL_ALLMULTI;
72276cb2c1cSJustin Hibbits 		if ((if_getflags(ifp) & IFF_PROMISC) != 0)
723f6bc9430SPyun YongHyeon 			rxfilt |= NGE_RXFILTCTL_ALLPHYS;
724f6bc9430SPyun YongHyeon 		goto done;
725ce4946daSBill Paul 	}
726ce4946daSBill Paul 
727ce4946daSBill Paul 	/*
728ce4946daSBill Paul 	 * We have to explicitly enable the multicast hash table
729ce4946daSBill Paul 	 * on the NatSemi chip if we want to use it, which we do.
730ce4946daSBill Paul 	 */
731f6bc9430SPyun YongHyeon 	rxfilt |= NGE_RXFILTCTL_MCHASH;
732ce4946daSBill Paul 
733ce4946daSBill Paul 	/* first, zot all the existing hash bits */
734ce4946daSBill Paul 	for (i = 0; i < NGE_MCAST_FILTER_LEN; i += 2) {
735ce4946daSBill Paul 		CSR_WRITE_4(sc, NGE_RXFILT_CTL, NGE_FILTADDR_MCAST_LO + i);
736ce4946daSBill Paul 		CSR_WRITE_4(sc, NGE_RXFILT_DATA, 0);
737ce4946daSBill Paul 	}
738ce4946daSBill Paul 
7399bf5c8b4SGleb Smirnoff 	if_foreach_llmaddr(ifp, nge_write_maddr, sc);
740f6bc9430SPyun YongHyeon done:
741f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_RXFILT_CTL, rxfilt);
742f6bc9430SPyun YongHyeon 	/* Turn the receive filter on. */
743f6bc9430SPyun YongHyeon 	rxfilt |= NGE_RXFILTCTL_ENABLE;
744f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_RXFILT_CTL, rxfilt);
7458c1093fcSMarius Strobl 	CSR_BARRIER_4(sc, NGE_RXFILT_CTL, BUS_SPACE_BARRIER_WRITE);
746ce4946daSBill Paul }
747ce4946daSBill Paul 
748eaabec55SAlfred Perlstein static void
nge_reset(struct nge_softc * sc)749284c81cbSPyun YongHyeon nge_reset(struct nge_softc *sc)
750ce4946daSBill Paul {
751f6bc9430SPyun YongHyeon 	uint32_t v;
7522cf2d799SPyun YongHyeon 	int i;
753ce4946daSBill Paul 
754ce4946daSBill Paul 	NGE_SETBIT(sc, NGE_CSR, NGE_CSR_RESET);
755ce4946daSBill Paul 
756ce4946daSBill Paul 	for (i = 0; i < NGE_TIMEOUT; i++) {
757ce4946daSBill Paul 		if (!(CSR_READ_4(sc, NGE_CSR) & NGE_CSR_RESET))
758ce4946daSBill Paul 			break;
759f6bc9430SPyun YongHyeon 		DELAY(1);
760ce4946daSBill Paul 	}
761ce4946daSBill Paul 
762ce4946daSBill Paul 	if (i == NGE_TIMEOUT)
7636b9f5c94SGleb Smirnoff 		device_printf(sc->nge_dev, "reset never completed\n");
764ce4946daSBill Paul 
765ce4946daSBill Paul 	/* Wait a little while for the chip to get its brains in order. */
766ce4946daSBill Paul 	DELAY(1000);
767ce4946daSBill Paul 
768ce4946daSBill Paul 	/*
769ce4946daSBill Paul 	 * If this is a NetSemi chip, make sure to clear
770ce4946daSBill Paul 	 * PME mode.
771ce4946daSBill Paul 	 */
772ce4946daSBill Paul 	CSR_WRITE_4(sc, NGE_CLKRUN, NGE_CLKRUN_PMESTS);
773ce4946daSBill Paul 	CSR_WRITE_4(sc, NGE_CLKRUN, 0);
774f6bc9430SPyun YongHyeon 
775f6bc9430SPyun YongHyeon 	/* Clear WOL events which may interfere normal Rx filter opertaion. */
776f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_WOLCSR, 0);
777f6bc9430SPyun YongHyeon 
778f6bc9430SPyun YongHyeon 	/*
779f6bc9430SPyun YongHyeon 	 * Only DP83820 supports 64bits addressing/data transfers and
780f6bc9430SPyun YongHyeon 	 * 64bit addressing requires different descriptor structures.
781f6bc9430SPyun YongHyeon 	 * To make it simple, disable 64bit addressing/data transfers.
782f6bc9430SPyun YongHyeon 	 */
783f6bc9430SPyun YongHyeon 	v = CSR_READ_4(sc, NGE_CFG);
784f6bc9430SPyun YongHyeon 	v &= ~(NGE_CFG_64BIT_ADDR_ENB | NGE_CFG_64BIT_DATA_ENB);
785f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_CFG, v);
786ce4946daSBill Paul }
787ce4946daSBill Paul 
788ce4946daSBill Paul /*
789d64ada50SJens Schweikhardt  * Probe for a NatSemi chip. Check the PCI vendor and device
790ce4946daSBill Paul  * IDs against our list and return a device name if we find a match.
791ce4946daSBill Paul  */
792eaabec55SAlfred Perlstein static int
nge_probe(device_t dev)793284c81cbSPyun YongHyeon nge_probe(device_t dev)
794ce4946daSBill Paul {
7958c1093fcSMarius Strobl 	const struct nge_type *t;
796ce4946daSBill Paul 
797ce4946daSBill Paul 	t = nge_devs;
798ce4946daSBill Paul 
799ce4946daSBill Paul 	while (t->nge_name != NULL) {
800ce4946daSBill Paul 		if ((pci_get_vendor(dev) == t->nge_vid) &&
801ce4946daSBill Paul 		    (pci_get_device(dev) == t->nge_did)) {
802ce4946daSBill Paul 			device_set_desc(dev, t->nge_name);
8036b9907e7SWarner Losh 			return (BUS_PROBE_DEFAULT);
804ce4946daSBill Paul 		}
805ce4946daSBill Paul 		t++;
806ce4946daSBill Paul 	}
807ce4946daSBill Paul 
808ce4946daSBill Paul 	return (ENXIO);
809ce4946daSBill Paul }
810ce4946daSBill Paul 
811ce4946daSBill Paul /*
812ce4946daSBill Paul  * Attach the interface. Allocate softc structures, do ifmedia
813ce4946daSBill Paul  * setup and ethernet/BPF attach.
814ce4946daSBill Paul  */
815eaabec55SAlfred Perlstein static int
nge_attach(device_t dev)816284c81cbSPyun YongHyeon nge_attach(device_t dev)
817ce4946daSBill Paul {
818f6bc9430SPyun YongHyeon 	uint8_t eaddr[ETHER_ADDR_LEN];
819f6bc9430SPyun YongHyeon 	uint16_t ea[ETHER_ADDR_LEN/2], ea_temp, reg;
820ce4946daSBill Paul 	struct nge_softc *sc;
82176cb2c1cSJustin Hibbits 	if_t ifp;
822f6bc9430SPyun YongHyeon 	int error, i, rid;
823ce4946daSBill Paul 
824f6bc9430SPyun YongHyeon 	error = 0;
825ce4946daSBill Paul 	sc = device_get_softc(dev);
8266b9f5c94SGleb Smirnoff 	sc->nge_dev = dev;
827ce4946daSBill Paul 
828ad6c618bSBill Paul 	NGE_LOCK_INIT(sc, device_get_nameunit(dev));
829646abee6SJohn Baldwin 	callout_init_mtx(&sc->nge_stat_ch, &sc->nge_mtx, 0);
830646abee6SJohn Baldwin 
831ce4946daSBill Paul 	/*
832ce4946daSBill Paul 	 * Map control/status registers.
833ce4946daSBill Paul 	 */
834ce4946daSBill Paul 	pci_enable_busmaster(dev);
835ce4946daSBill Paul 
836f6bc9430SPyun YongHyeon #ifdef NGE_USEIOSPACE
837f6bc9430SPyun YongHyeon 	sc->nge_res_type = SYS_RES_IOPORT;
838f6bc9430SPyun YongHyeon 	sc->nge_res_id = PCIR_BAR(0);
839f6bc9430SPyun YongHyeon #else
840f6bc9430SPyun YongHyeon 	sc->nge_res_type = SYS_RES_MEMORY;
841f6bc9430SPyun YongHyeon 	sc->nge_res_id = PCIR_BAR(1);
842f6bc9430SPyun YongHyeon #endif
843f6bc9430SPyun YongHyeon 	sc->nge_res = bus_alloc_resource_any(dev, sc->nge_res_type,
844f6bc9430SPyun YongHyeon 	    &sc->nge_res_id, RF_ACTIVE);
845ce4946daSBill Paul 
846ce4946daSBill Paul 	if (sc->nge_res == NULL) {
847f6bc9430SPyun YongHyeon 		if (sc->nge_res_type == SYS_RES_MEMORY) {
848f6bc9430SPyun YongHyeon 			sc->nge_res_type = SYS_RES_IOPORT;
849f6bc9430SPyun YongHyeon 			sc->nge_res_id = PCIR_BAR(0);
850f6bc9430SPyun YongHyeon 		} else {
851f6bc9430SPyun YongHyeon 			sc->nge_res_type = SYS_RES_MEMORY;
852f6bc9430SPyun YongHyeon 			sc->nge_res_id = PCIR_BAR(1);
853ce4946daSBill Paul 		}
854f6bc9430SPyun YongHyeon 		sc->nge_res = bus_alloc_resource_any(dev, sc->nge_res_type,
855f6bc9430SPyun YongHyeon 		    &sc->nge_res_id, RF_ACTIVE);
856f6bc9430SPyun YongHyeon 		if (sc->nge_res == NULL) {
857f6bc9430SPyun YongHyeon 			device_printf(dev, "couldn't allocate %s resources\n",
858f6bc9430SPyun YongHyeon 			    sc->nge_res_type == SYS_RES_MEMORY ? "memory" :
859f6bc9430SPyun YongHyeon 			    "I/O");
860f6bc9430SPyun YongHyeon 			NGE_LOCK_DESTROY(sc);
861f6bc9430SPyun YongHyeon 			return (ENXIO);
862f6bc9430SPyun YongHyeon 		}
863f6bc9430SPyun YongHyeon 	}
864ce4946daSBill Paul 
865ce4946daSBill Paul 	/* Allocate interrupt */
866ce4946daSBill Paul 	rid = 0;
8675f96beb9SNate Lawson 	sc->nge_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
868ce4946daSBill Paul 	    RF_SHAREABLE | RF_ACTIVE);
869ce4946daSBill Paul 
870ce4946daSBill Paul 	if (sc->nge_irq == NULL) {
871646abee6SJohn Baldwin 		device_printf(dev, "couldn't map interrupt\n");
872ce4946daSBill Paul 		error = ENXIO;
873ce4946daSBill Paul 		goto fail;
874ce4946daSBill Paul 	}
875ce4946daSBill Paul 
876f6bc9430SPyun YongHyeon 	/* Enable MWI. */
877f6bc9430SPyun YongHyeon 	reg = pci_read_config(dev, PCIR_COMMAND, 2);
878f6bc9430SPyun YongHyeon 	reg |= PCIM_CMD_MWRICEN;
879f6bc9430SPyun YongHyeon 	pci_write_config(dev, PCIR_COMMAND, reg, 2);
880f6bc9430SPyun YongHyeon 
881ce4946daSBill Paul 	/* Reset the adapter. */
882ce4946daSBill Paul 	nge_reset(sc);
883ce4946daSBill Paul 
884ce4946daSBill Paul 	/*
885ce4946daSBill Paul 	 * Get station address from the EEPROM.
886ce4946daSBill Paul 	 */
887f6bc9430SPyun YongHyeon 	nge_read_eeprom(sc, (caddr_t)ea, NGE_EE_NODEADDR, 3);
888f6bc9430SPyun YongHyeon 	for (i = 0; i < ETHER_ADDR_LEN / 2; i++)
889f6bc9430SPyun YongHyeon 		ea[i] = le16toh(ea[i]);
890f6bc9430SPyun YongHyeon 	ea_temp = ea[0];
891f6bc9430SPyun YongHyeon 	ea[0] = ea[2];
892f6bc9430SPyun YongHyeon 	ea[2] = ea_temp;
893f6bc9430SPyun YongHyeon 	bcopy(ea, eaddr, sizeof(eaddr));
894ce4946daSBill Paul 
895f6bc9430SPyun YongHyeon 	if (nge_dma_alloc(sc) != 0) {
896ce4946daSBill Paul 		error = ENXIO;
897ce4946daSBill Paul 		goto fail;
898ce4946daSBill Paul 	}
899ce4946daSBill Paul 
900f6bc9430SPyun YongHyeon 	nge_sysctl_node(sc);
901f6bc9430SPyun YongHyeon 
902fc74a9f9SBrooks Davis 	ifp = sc->nge_ifp = if_alloc(IFT_ETHER);
90376cb2c1cSJustin Hibbits 	if_setsoftc(ifp, sc);
9049bf40edeSBrooks Davis 	if_initname(ifp, device_get_name(dev), device_get_unit(dev));
90576cb2c1cSJustin Hibbits 	if_setflags(ifp, IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST);
90676cb2c1cSJustin Hibbits 	if_setioctlfn(ifp, nge_ioctl);
90776cb2c1cSJustin Hibbits 	if_setstartfn(ifp, nge_start);
90876cb2c1cSJustin Hibbits 	if_setinitfn(ifp, nge_init);
90976cb2c1cSJustin Hibbits 	if_setsendqlen(ifp, NGE_TX_RING_CNT - 1);
91076cb2c1cSJustin Hibbits 	if_setsendqready(ifp);
91176cb2c1cSJustin Hibbits 	if_sethwassist(ifp, NGE_CSUM_FEATURES);
91276cb2c1cSJustin Hibbits 	if_setcapabilities(ifp, IFCAP_HWCSUM);
913ce4946daSBill Paul 	/*
914f6bc9430SPyun YongHyeon 	 * It seems that some hardwares doesn't provide 3.3V auxiliary
915f6bc9430SPyun YongHyeon 	 * supply(3VAUX) to drive PME such that checking PCI power
916f6bc9430SPyun YongHyeon 	 * management capability is necessary.
917ce4946daSBill Paul 	 */
918*ddaf6524SJohn Baldwin 	if (pci_has_pm(sc->nge_dev))
91976cb2c1cSJustin Hibbits 		if_setcapabilitiesbit(ifp, IFCAP_WOL, 0);
92076cb2c1cSJustin Hibbits 	if_setcapenable(ifp, if_getcapabilities(ifp));
921f6bc9430SPyun YongHyeon 
922f6bc9430SPyun YongHyeon 	if ((CSR_READ_4(sc, NGE_CFG) & NGE_CFG_TBI_EN) != 0) {
923f6bc9430SPyun YongHyeon 		sc->nge_flags |= NGE_FLAG_TBI;
9241f548804SDoug Ambrisko 		device_printf(dev, "Using TBI\n");
925f6bc9430SPyun YongHyeon 		/* Configure GPIO. */
9261f548804SDoug Ambrisko 		CSR_WRITE_4(sc, NGE_GPIO, CSR_READ_4(sc, NGE_GPIO)
9271f548804SDoug Ambrisko 		    | NGE_GPIO_GP4_OUT
9281f548804SDoug Ambrisko 		    | NGE_GPIO_GP1_OUTENB | NGE_GPIO_GP2_OUTENB
9291f548804SDoug Ambrisko 		    | NGE_GPIO_GP3_OUTENB
9301f548804SDoug Ambrisko 		    | NGE_GPIO_GP3_IN | NGE_GPIO_GP4_IN);
931ce4946daSBill Paul 	}
932f6bc9430SPyun YongHyeon 
933f6bc9430SPyun YongHyeon 	/*
934f6bc9430SPyun YongHyeon 	 * Do MII setup.
935f6bc9430SPyun YongHyeon 	 */
936d6c65d27SMarius Strobl 	error = mii_attach(dev, &sc->nge_miibus, ifp, nge_mediachange,
937d6c65d27SMarius Strobl 	    nge_mediastatus, BMSR_DEFCAPMASK, MII_PHY_ANY, MII_OFFSET_ANY, 0);
938f6bc9430SPyun YongHyeon 	if (error != 0) {
939d6c65d27SMarius Strobl 		device_printf(dev, "attaching PHYs failed\n");
940f6bc9430SPyun YongHyeon 		goto fail;
9411f548804SDoug Ambrisko 	}
942ce4946daSBill Paul 
943ce4946daSBill Paul 	/*
944ce4946daSBill Paul 	 * Call MI attach routine.
945ce4946daSBill Paul 	 */
946673d9191SSam Leffler 	ether_ifattach(ifp, eaddr);
947ad6c618bSBill Paul 
948f6bc9430SPyun YongHyeon 	/* VLAN capability setup. */
94976cb2c1cSJustin Hibbits 	if_setcapabilitiesbit(ifp, IFCAP_VLAN_MTU | IFCAP_VLAN_HWTAGGING, 0);
95076cb2c1cSJustin Hibbits 	if_setcapabilitiesbit(ifp, IFCAP_VLAN_HWCSUM, 0);
95176cb2c1cSJustin Hibbits 	if_setcapenable(ifp, if_getcapabilities(ifp));
952f6bc9430SPyun YongHyeon #ifdef DEVICE_POLLING
95376cb2c1cSJustin Hibbits 	if_setcapabilitiesbit(ifp, IFCAP_POLLING, 0);
954f6bc9430SPyun YongHyeon #endif
955f6bc9430SPyun YongHyeon 	/*
956f6bc9430SPyun YongHyeon 	 * Tell the upper layer(s) we support long frames.
957f6bc9430SPyun YongHyeon 	 * Must appear after the call to ether_ifattach() because
958f6bc9430SPyun YongHyeon 	 * ether_ifattach() sets ifi_hdrlen to the default value.
959f6bc9430SPyun YongHyeon 	 */
96076cb2c1cSJustin Hibbits 	if_setifheaderlen(ifp, sizeof(struct ether_vlan_header));
961f6bc9430SPyun YongHyeon 
962ad6c618bSBill Paul 	/*
963ad6c618bSBill Paul 	 * Hookup IRQ last.
964ad6c618bSBill Paul 	 */
965ad6c618bSBill Paul 	error = bus_setup_intr(dev, sc->nge_irq, INTR_TYPE_NET | INTR_MPSAFE,
966ef544f63SPaolo Pisati 	    NULL, nge_intr, sc, &sc->nge_intrhand);
967ad6c618bSBill Paul 	if (error) {
968646abee6SJohn Baldwin 		device_printf(dev, "couldn't set up irq\n");
969646abee6SJohn Baldwin 		goto fail;
970ad6c618bSBill Paul 	}
971ce4946daSBill Paul 
972646abee6SJohn Baldwin fail:
973f6bc9430SPyun YongHyeon 	if (error != 0)
974f6bc9430SPyun YongHyeon 		nge_detach(dev);
975ce4946daSBill Paul 	return (error);
976ce4946daSBill Paul }
977ce4946daSBill Paul 
978eaabec55SAlfred Perlstein static int
nge_detach(device_t dev)979284c81cbSPyun YongHyeon nge_detach(device_t dev)
980ce4946daSBill Paul {
981ce4946daSBill Paul 	struct nge_softc *sc;
98276cb2c1cSJustin Hibbits 	if_t ifp;
983ce4946daSBill Paul 
984ce4946daSBill Paul 	sc = device_get_softc(dev);
985fc74a9f9SBrooks Davis 	ifp = sc->nge_ifp;
986ce4946daSBill Paul 
98740929967SGleb Smirnoff #ifdef DEVICE_POLLING
98876cb2c1cSJustin Hibbits 	if (ifp != NULL && if_getcapenable(ifp) & IFCAP_POLLING)
98940929967SGleb Smirnoff 		ether_poll_deregister(ifp);
99040929967SGleb Smirnoff #endif
991f6bc9430SPyun YongHyeon 
992f6bc9430SPyun YongHyeon 	if (device_is_attached(dev)) {
993ad6c618bSBill Paul 		NGE_LOCK(sc);
994f6bc9430SPyun YongHyeon 		sc->nge_flags |= NGE_FLAG_DETACH;
995ce4946daSBill Paul 		nge_stop(sc);
996ad6c618bSBill Paul 		NGE_UNLOCK(sc);
997646abee6SJohn Baldwin 		callout_drain(&sc->nge_stat_ch);
998f6bc9430SPyun YongHyeon 		if (ifp != NULL)
999673d9191SSam Leffler 			ether_ifdetach(ifp);
10001f548804SDoug Ambrisko 	}
1001ce4946daSBill Paul 
1002f6bc9430SPyun YongHyeon 	bus_generic_detach(dev);
1003f6bc9430SPyun YongHyeon 	if (sc->nge_intrhand != NULL)
1004f6bc9430SPyun YongHyeon 		bus_teardown_intr(dev, sc->nge_irq, sc->nge_intrhand);
1005f6bc9430SPyun YongHyeon 	if (sc->nge_irq != NULL)
1006f6bc9430SPyun YongHyeon 		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->nge_irq);
1007f6bc9430SPyun YongHyeon 	if (sc->nge_res != NULL)
1008f6bc9430SPyun YongHyeon 		bus_release_resource(dev, sc->nge_res_type, sc->nge_res_id,
1009f6bc9430SPyun YongHyeon 		    sc->nge_res);
1010f6bc9430SPyun YongHyeon 
1011f6bc9430SPyun YongHyeon 	nge_dma_free(sc);
1012f6bc9430SPyun YongHyeon 	if (ifp != NULL)
1013ad4f426eSWarner Losh 		if_free(ifp);
1014ce4946daSBill Paul 
10156ba160b6SBill Paul 	NGE_LOCK_DESTROY(sc);
10166ba160b6SBill Paul 
1017ce4946daSBill Paul 	return (0);
1018ce4946daSBill Paul }
1019ce4946daSBill Paul 
1020f6bc9430SPyun YongHyeon struct nge_dmamap_arg {
1021f6bc9430SPyun YongHyeon 	bus_addr_t	nge_busaddr;
1022f6bc9430SPyun YongHyeon };
1023f6bc9430SPyun YongHyeon 
1024f6bc9430SPyun YongHyeon static void
nge_dmamap_cb(void * arg,bus_dma_segment_t * segs,int nseg,int error)1025f6bc9430SPyun YongHyeon nge_dmamap_cb(void *arg, bus_dma_segment_t *segs, int nseg, int error)
1026f6bc9430SPyun YongHyeon {
1027f6bc9430SPyun YongHyeon 	struct nge_dmamap_arg *ctx;
1028f6bc9430SPyun YongHyeon 
1029f6bc9430SPyun YongHyeon 	if (error != 0)
1030f6bc9430SPyun YongHyeon 		return;
1031f6bc9430SPyun YongHyeon 	ctx = arg;
1032f6bc9430SPyun YongHyeon 	ctx->nge_busaddr = segs[0].ds_addr;
1033f6bc9430SPyun YongHyeon }
1034f6bc9430SPyun YongHyeon 
1035f6bc9430SPyun YongHyeon static int
nge_dma_alloc(struct nge_softc * sc)1036f6bc9430SPyun YongHyeon nge_dma_alloc(struct nge_softc *sc)
1037f6bc9430SPyun YongHyeon {
1038f6bc9430SPyun YongHyeon 	struct nge_dmamap_arg ctx;
1039f6bc9430SPyun YongHyeon 	struct nge_txdesc *txd;
1040f6bc9430SPyun YongHyeon 	struct nge_rxdesc *rxd;
1041f6bc9430SPyun YongHyeon 	int error, i;
1042f6bc9430SPyun YongHyeon 
1043f6bc9430SPyun YongHyeon 	/* Create parent DMA tag. */
1044f6bc9430SPyun YongHyeon 	error = bus_dma_tag_create(
1045f6bc9430SPyun YongHyeon 	    bus_get_dma_tag(sc->nge_dev),	/* parent */
1046f6bc9430SPyun YongHyeon 	    1, 0,			/* alignment, boundary */
1047f6bc9430SPyun YongHyeon 	    BUS_SPACE_MAXADDR_32BIT,	/* lowaddr */
1048f6bc9430SPyun YongHyeon 	    BUS_SPACE_MAXADDR,		/* highaddr */
1049f6bc9430SPyun YongHyeon 	    NULL, NULL,			/* filter, filterarg */
1050f6bc9430SPyun YongHyeon 	    BUS_SPACE_MAXSIZE_32BIT,	/* maxsize */
1051f6bc9430SPyun YongHyeon 	    0,				/* nsegments */
1052f6bc9430SPyun YongHyeon 	    BUS_SPACE_MAXSIZE_32BIT,	/* maxsegsize */
1053f6bc9430SPyun YongHyeon 	    0,				/* flags */
1054f6bc9430SPyun YongHyeon 	    NULL, NULL,			/* lockfunc, lockarg */
1055f6bc9430SPyun YongHyeon 	    &sc->nge_cdata.nge_parent_tag);
1056f6bc9430SPyun YongHyeon 	if (error != 0) {
1057f6bc9430SPyun YongHyeon 		device_printf(sc->nge_dev, "failed to create parent DMA tag\n");
1058f6bc9430SPyun YongHyeon 		goto fail;
1059f6bc9430SPyun YongHyeon 	}
1060f6bc9430SPyun YongHyeon 	/* Create tag for Tx ring. */
1061f6bc9430SPyun YongHyeon 	error = bus_dma_tag_create(sc->nge_cdata.nge_parent_tag,/* parent */
1062f6bc9430SPyun YongHyeon 	    NGE_RING_ALIGN, 0,		/* alignment, boundary */
1063f6bc9430SPyun YongHyeon 	    BUS_SPACE_MAXADDR,		/* lowaddr */
1064f6bc9430SPyun YongHyeon 	    BUS_SPACE_MAXADDR,		/* highaddr */
1065f6bc9430SPyun YongHyeon 	    NULL, NULL,			/* filter, filterarg */
1066f6bc9430SPyun YongHyeon 	    NGE_TX_RING_SIZE,		/* maxsize */
1067f6bc9430SPyun YongHyeon 	    1,				/* nsegments */
1068f6bc9430SPyun YongHyeon 	    NGE_TX_RING_SIZE,		/* maxsegsize */
1069f6bc9430SPyun YongHyeon 	    0,				/* flags */
1070f6bc9430SPyun YongHyeon 	    NULL, NULL,			/* lockfunc, lockarg */
1071f6bc9430SPyun YongHyeon 	    &sc->nge_cdata.nge_tx_ring_tag);
1072f6bc9430SPyun YongHyeon 	if (error != 0) {
1073f6bc9430SPyun YongHyeon 		device_printf(sc->nge_dev, "failed to create Tx ring DMA tag\n");
1074f6bc9430SPyun YongHyeon 		goto fail;
1075f6bc9430SPyun YongHyeon 	}
1076f6bc9430SPyun YongHyeon 
1077f6bc9430SPyun YongHyeon 	/* Create tag for Rx ring. */
1078f6bc9430SPyun YongHyeon 	error = bus_dma_tag_create(sc->nge_cdata.nge_parent_tag,/* parent */
1079f6bc9430SPyun YongHyeon 	    NGE_RING_ALIGN, 0,		/* alignment, boundary */
1080f6bc9430SPyun YongHyeon 	    BUS_SPACE_MAXADDR,		/* lowaddr */
1081f6bc9430SPyun YongHyeon 	    BUS_SPACE_MAXADDR,		/* highaddr */
1082f6bc9430SPyun YongHyeon 	    NULL, NULL,			/* filter, filterarg */
1083f6bc9430SPyun YongHyeon 	    NGE_RX_RING_SIZE,		/* maxsize */
1084f6bc9430SPyun YongHyeon 	    1,				/* nsegments */
1085f6bc9430SPyun YongHyeon 	    NGE_RX_RING_SIZE,		/* maxsegsize */
1086f6bc9430SPyun YongHyeon 	    0,				/* flags */
1087f6bc9430SPyun YongHyeon 	    NULL, NULL,			/* lockfunc, lockarg */
1088f6bc9430SPyun YongHyeon 	    &sc->nge_cdata.nge_rx_ring_tag);
1089f6bc9430SPyun YongHyeon 	if (error != 0) {
1090f6bc9430SPyun YongHyeon 		device_printf(sc->nge_dev,
1091f6bc9430SPyun YongHyeon 		    "failed to create Rx ring DMA tag\n");
1092f6bc9430SPyun YongHyeon 		goto fail;
1093f6bc9430SPyun YongHyeon 	}
1094f6bc9430SPyun YongHyeon 
1095f6bc9430SPyun YongHyeon 	/* Create tag for Tx buffers. */
1096f6bc9430SPyun YongHyeon 	error = bus_dma_tag_create(sc->nge_cdata.nge_parent_tag,/* parent */
1097f6bc9430SPyun YongHyeon 	    1, 0,			/* alignment, boundary */
1098f6bc9430SPyun YongHyeon 	    BUS_SPACE_MAXADDR,		/* lowaddr */
1099f6bc9430SPyun YongHyeon 	    BUS_SPACE_MAXADDR,		/* highaddr */
1100f6bc9430SPyun YongHyeon 	    NULL, NULL,			/* filter, filterarg */
1101f6bc9430SPyun YongHyeon 	    MCLBYTES * NGE_MAXTXSEGS,	/* maxsize */
1102f6bc9430SPyun YongHyeon 	    NGE_MAXTXSEGS,		/* nsegments */
1103f6bc9430SPyun YongHyeon 	    MCLBYTES,			/* maxsegsize */
1104f6bc9430SPyun YongHyeon 	    0,				/* flags */
1105f6bc9430SPyun YongHyeon 	    NULL, NULL,			/* lockfunc, lockarg */
1106f6bc9430SPyun YongHyeon 	    &sc->nge_cdata.nge_tx_tag);
1107f6bc9430SPyun YongHyeon 	if (error != 0) {
1108f6bc9430SPyun YongHyeon 		device_printf(sc->nge_dev, "failed to create Tx DMA tag\n");
1109f6bc9430SPyun YongHyeon 		goto fail;
1110f6bc9430SPyun YongHyeon 	}
1111f6bc9430SPyun YongHyeon 
1112f6bc9430SPyun YongHyeon 	/* Create tag for Rx buffers. */
1113f6bc9430SPyun YongHyeon 	error = bus_dma_tag_create(sc->nge_cdata.nge_parent_tag,/* parent */
1114f6bc9430SPyun YongHyeon 	    NGE_RX_ALIGN, 0,		/* alignment, boundary */
1115f6bc9430SPyun YongHyeon 	    BUS_SPACE_MAXADDR,		/* lowaddr */
1116f6bc9430SPyun YongHyeon 	    BUS_SPACE_MAXADDR,		/* highaddr */
1117f6bc9430SPyun YongHyeon 	    NULL, NULL,			/* filter, filterarg */
1118f6bc9430SPyun YongHyeon 	    MCLBYTES,			/* maxsize */
1119f6bc9430SPyun YongHyeon 	    1,				/* nsegments */
1120f6bc9430SPyun YongHyeon 	    MCLBYTES,			/* maxsegsize */
1121f6bc9430SPyun YongHyeon 	    0,				/* flags */
1122f6bc9430SPyun YongHyeon 	    NULL, NULL,			/* lockfunc, lockarg */
1123f6bc9430SPyun YongHyeon 	    &sc->nge_cdata.nge_rx_tag);
1124f6bc9430SPyun YongHyeon 	if (error != 0) {
1125f6bc9430SPyun YongHyeon 		device_printf(sc->nge_dev, "failed to create Rx DMA tag\n");
1126f6bc9430SPyun YongHyeon 		goto fail;
1127f6bc9430SPyun YongHyeon 	}
1128f6bc9430SPyun YongHyeon 
1129f6bc9430SPyun YongHyeon 	/* Allocate DMA'able memory and load the DMA map for Tx ring. */
1130f6bc9430SPyun YongHyeon 	error = bus_dmamem_alloc(sc->nge_cdata.nge_tx_ring_tag,
1131f6bc9430SPyun YongHyeon 	    (void **)&sc->nge_rdata.nge_tx_ring, BUS_DMA_WAITOK |
1132f6bc9430SPyun YongHyeon 	    BUS_DMA_COHERENT | BUS_DMA_ZERO, &sc->nge_cdata.nge_tx_ring_map);
1133f6bc9430SPyun YongHyeon 	if (error != 0) {
1134f6bc9430SPyun YongHyeon 		device_printf(sc->nge_dev,
1135f6bc9430SPyun YongHyeon 		    "failed to allocate DMA'able memory for Tx ring\n");
1136f6bc9430SPyun YongHyeon 		goto fail;
1137f6bc9430SPyun YongHyeon 	}
1138f6bc9430SPyun YongHyeon 
1139f6bc9430SPyun YongHyeon 	ctx.nge_busaddr = 0;
1140f6bc9430SPyun YongHyeon 	error = bus_dmamap_load(sc->nge_cdata.nge_tx_ring_tag,
1141f6bc9430SPyun YongHyeon 	    sc->nge_cdata.nge_tx_ring_map, sc->nge_rdata.nge_tx_ring,
1142f6bc9430SPyun YongHyeon 	    NGE_TX_RING_SIZE, nge_dmamap_cb, &ctx, 0);
1143f6bc9430SPyun YongHyeon 	if (error != 0 || ctx.nge_busaddr == 0) {
1144f6bc9430SPyun YongHyeon 		device_printf(sc->nge_dev,
1145f6bc9430SPyun YongHyeon 		    "failed to load DMA'able memory for Tx ring\n");
1146f6bc9430SPyun YongHyeon 		goto fail;
1147f6bc9430SPyun YongHyeon 	}
1148f6bc9430SPyun YongHyeon 	sc->nge_rdata.nge_tx_ring_paddr = ctx.nge_busaddr;
1149f6bc9430SPyun YongHyeon 
1150f6bc9430SPyun YongHyeon 	/* Allocate DMA'able memory and load the DMA map for Rx ring. */
1151f6bc9430SPyun YongHyeon 	error = bus_dmamem_alloc(sc->nge_cdata.nge_rx_ring_tag,
1152f6bc9430SPyun YongHyeon 	    (void **)&sc->nge_rdata.nge_rx_ring, BUS_DMA_WAITOK |
1153f6bc9430SPyun YongHyeon 	    BUS_DMA_COHERENT | BUS_DMA_ZERO, &sc->nge_cdata.nge_rx_ring_map);
1154f6bc9430SPyun YongHyeon 	if (error != 0) {
1155f6bc9430SPyun YongHyeon 		device_printf(sc->nge_dev,
1156f6bc9430SPyun YongHyeon 		    "failed to allocate DMA'able memory for Rx ring\n");
1157f6bc9430SPyun YongHyeon 		goto fail;
1158f6bc9430SPyun YongHyeon 	}
1159f6bc9430SPyun YongHyeon 
1160f6bc9430SPyun YongHyeon 	ctx.nge_busaddr = 0;
1161f6bc9430SPyun YongHyeon 	error = bus_dmamap_load(sc->nge_cdata.nge_rx_ring_tag,
1162f6bc9430SPyun YongHyeon 	    sc->nge_cdata.nge_rx_ring_map, sc->nge_rdata.nge_rx_ring,
1163f6bc9430SPyun YongHyeon 	    NGE_RX_RING_SIZE, nge_dmamap_cb, &ctx, 0);
1164f6bc9430SPyun YongHyeon 	if (error != 0 || ctx.nge_busaddr == 0) {
1165f6bc9430SPyun YongHyeon 		device_printf(sc->nge_dev,
1166f6bc9430SPyun YongHyeon 		    "failed to load DMA'able memory for Rx ring\n");
1167f6bc9430SPyun YongHyeon 		goto fail;
1168f6bc9430SPyun YongHyeon 	}
1169f6bc9430SPyun YongHyeon 	sc->nge_rdata.nge_rx_ring_paddr = ctx.nge_busaddr;
1170f6bc9430SPyun YongHyeon 
1171f6bc9430SPyun YongHyeon 	/* Create DMA maps for Tx buffers. */
1172f6bc9430SPyun YongHyeon 	for (i = 0; i < NGE_TX_RING_CNT; i++) {
1173f6bc9430SPyun YongHyeon 		txd = &sc->nge_cdata.nge_txdesc[i];
1174f6bc9430SPyun YongHyeon 		txd->tx_m = NULL;
1175f6bc9430SPyun YongHyeon 		txd->tx_dmamap = NULL;
1176f6bc9430SPyun YongHyeon 		error = bus_dmamap_create(sc->nge_cdata.nge_tx_tag, 0,
1177f6bc9430SPyun YongHyeon 		    &txd->tx_dmamap);
1178f6bc9430SPyun YongHyeon 		if (error != 0) {
1179f6bc9430SPyun YongHyeon 			device_printf(sc->nge_dev,
1180f6bc9430SPyun YongHyeon 			    "failed to create Tx dmamap\n");
1181f6bc9430SPyun YongHyeon 			goto fail;
1182f6bc9430SPyun YongHyeon 		}
1183f6bc9430SPyun YongHyeon 	}
1184f6bc9430SPyun YongHyeon 	/* Create DMA maps for Rx buffers. */
1185f6bc9430SPyun YongHyeon 	if ((error = bus_dmamap_create(sc->nge_cdata.nge_rx_tag, 0,
1186f6bc9430SPyun YongHyeon 	    &sc->nge_cdata.nge_rx_sparemap)) != 0) {
1187f6bc9430SPyun YongHyeon 		device_printf(sc->nge_dev,
1188f6bc9430SPyun YongHyeon 		    "failed to create spare Rx dmamap\n");
1189f6bc9430SPyun YongHyeon 		goto fail;
1190f6bc9430SPyun YongHyeon 	}
1191f6bc9430SPyun YongHyeon 	for (i = 0; i < NGE_RX_RING_CNT; i++) {
1192f6bc9430SPyun YongHyeon 		rxd = &sc->nge_cdata.nge_rxdesc[i];
1193f6bc9430SPyun YongHyeon 		rxd->rx_m = NULL;
1194f6bc9430SPyun YongHyeon 		rxd->rx_dmamap = NULL;
1195f6bc9430SPyun YongHyeon 		error = bus_dmamap_create(sc->nge_cdata.nge_rx_tag, 0,
1196f6bc9430SPyun YongHyeon 		    &rxd->rx_dmamap);
1197f6bc9430SPyun YongHyeon 		if (error != 0) {
1198f6bc9430SPyun YongHyeon 			device_printf(sc->nge_dev,
1199f6bc9430SPyun YongHyeon 			    "failed to create Rx dmamap\n");
1200f6bc9430SPyun YongHyeon 			goto fail;
1201f6bc9430SPyun YongHyeon 		}
1202f6bc9430SPyun YongHyeon 	}
1203f6bc9430SPyun YongHyeon 
1204f6bc9430SPyun YongHyeon fail:
1205f6bc9430SPyun YongHyeon 	return (error);
1206f6bc9430SPyun YongHyeon }
1207f6bc9430SPyun YongHyeon 
1208f6bc9430SPyun YongHyeon static void
nge_dma_free(struct nge_softc * sc)1209f6bc9430SPyun YongHyeon nge_dma_free(struct nge_softc *sc)
1210f6bc9430SPyun YongHyeon {
1211f6bc9430SPyun YongHyeon 	struct nge_txdesc *txd;
1212f6bc9430SPyun YongHyeon 	struct nge_rxdesc *rxd;
1213f6bc9430SPyun YongHyeon 	int i;
1214f6bc9430SPyun YongHyeon 
1215f6bc9430SPyun YongHyeon 	/* Tx ring. */
1216f6bc9430SPyun YongHyeon 	if (sc->nge_cdata.nge_tx_ring_tag) {
1217068d8643SJohn Baldwin 		if (sc->nge_rdata.nge_tx_ring_paddr)
1218f6bc9430SPyun YongHyeon 			bus_dmamap_unload(sc->nge_cdata.nge_tx_ring_tag,
1219f6bc9430SPyun YongHyeon 			    sc->nge_cdata.nge_tx_ring_map);
1220068d8643SJohn Baldwin 		if (sc->nge_rdata.nge_tx_ring)
1221f6bc9430SPyun YongHyeon 			bus_dmamem_free(sc->nge_cdata.nge_tx_ring_tag,
1222f6bc9430SPyun YongHyeon 			    sc->nge_rdata.nge_tx_ring,
1223f6bc9430SPyun YongHyeon 			    sc->nge_cdata.nge_tx_ring_map);
1224f6bc9430SPyun YongHyeon 		sc->nge_rdata.nge_tx_ring = NULL;
1225068d8643SJohn Baldwin 		sc->nge_rdata.nge_tx_ring_paddr = 0;
1226f6bc9430SPyun YongHyeon 		bus_dma_tag_destroy(sc->nge_cdata.nge_tx_ring_tag);
1227f6bc9430SPyun YongHyeon 		sc->nge_cdata.nge_tx_ring_tag = NULL;
1228f6bc9430SPyun YongHyeon 	}
1229f6bc9430SPyun YongHyeon 	/* Rx ring. */
1230f6bc9430SPyun YongHyeon 	if (sc->nge_cdata.nge_rx_ring_tag) {
1231068d8643SJohn Baldwin 		if (sc->nge_rdata.nge_rx_ring_paddr)
1232f6bc9430SPyun YongHyeon 			bus_dmamap_unload(sc->nge_cdata.nge_rx_ring_tag,
1233f6bc9430SPyun YongHyeon 			    sc->nge_cdata.nge_rx_ring_map);
1234068d8643SJohn Baldwin 		if (sc->nge_rdata.nge_rx_ring)
1235f6bc9430SPyun YongHyeon 			bus_dmamem_free(sc->nge_cdata.nge_rx_ring_tag,
1236f6bc9430SPyun YongHyeon 			    sc->nge_rdata.nge_rx_ring,
1237f6bc9430SPyun YongHyeon 			    sc->nge_cdata.nge_rx_ring_map);
1238f6bc9430SPyun YongHyeon 		sc->nge_rdata.nge_rx_ring = NULL;
1239068d8643SJohn Baldwin 		sc->nge_rdata.nge_rx_ring_paddr = 0;
1240f6bc9430SPyun YongHyeon 		bus_dma_tag_destroy(sc->nge_cdata.nge_rx_ring_tag);
1241f6bc9430SPyun YongHyeon 		sc->nge_cdata.nge_rx_ring_tag = NULL;
1242f6bc9430SPyun YongHyeon 	}
1243f6bc9430SPyun YongHyeon 	/* Tx buffers. */
1244f6bc9430SPyun YongHyeon 	if (sc->nge_cdata.nge_tx_tag) {
1245f6bc9430SPyun YongHyeon 		for (i = 0; i < NGE_TX_RING_CNT; i++) {
1246f6bc9430SPyun YongHyeon 			txd = &sc->nge_cdata.nge_txdesc[i];
1247f6bc9430SPyun YongHyeon 			if (txd->tx_dmamap) {
1248f6bc9430SPyun YongHyeon 				bus_dmamap_destroy(sc->nge_cdata.nge_tx_tag,
1249f6bc9430SPyun YongHyeon 				    txd->tx_dmamap);
1250f6bc9430SPyun YongHyeon 				txd->tx_dmamap = NULL;
1251f6bc9430SPyun YongHyeon 			}
1252f6bc9430SPyun YongHyeon 		}
1253f6bc9430SPyun YongHyeon 		bus_dma_tag_destroy(sc->nge_cdata.nge_tx_tag);
1254f6bc9430SPyun YongHyeon 		sc->nge_cdata.nge_tx_tag = NULL;
1255f6bc9430SPyun YongHyeon 	}
1256f6bc9430SPyun YongHyeon 	/* Rx buffers. */
1257f6bc9430SPyun YongHyeon 	if (sc->nge_cdata.nge_rx_tag) {
1258f6bc9430SPyun YongHyeon 		for (i = 0; i < NGE_RX_RING_CNT; i++) {
1259f6bc9430SPyun YongHyeon 			rxd = &sc->nge_cdata.nge_rxdesc[i];
1260f6bc9430SPyun YongHyeon 			if (rxd->rx_dmamap) {
1261f6bc9430SPyun YongHyeon 				bus_dmamap_destroy(sc->nge_cdata.nge_rx_tag,
1262f6bc9430SPyun YongHyeon 				    rxd->rx_dmamap);
1263f6bc9430SPyun YongHyeon 				rxd->rx_dmamap = NULL;
1264f6bc9430SPyun YongHyeon 			}
1265f6bc9430SPyun YongHyeon 		}
1266f6bc9430SPyun YongHyeon 		if (sc->nge_cdata.nge_rx_sparemap) {
1267f6bc9430SPyun YongHyeon 			bus_dmamap_destroy(sc->nge_cdata.nge_rx_tag,
1268f6bc9430SPyun YongHyeon 			    sc->nge_cdata.nge_rx_sparemap);
1269f6bc9430SPyun YongHyeon 			sc->nge_cdata.nge_rx_sparemap = 0;
1270f6bc9430SPyun YongHyeon 		}
1271f6bc9430SPyun YongHyeon 		bus_dma_tag_destroy(sc->nge_cdata.nge_rx_tag);
1272f6bc9430SPyun YongHyeon 		sc->nge_cdata.nge_rx_tag = NULL;
1273f6bc9430SPyun YongHyeon 	}
1274f6bc9430SPyun YongHyeon 
1275f6bc9430SPyun YongHyeon 	if (sc->nge_cdata.nge_parent_tag) {
1276f6bc9430SPyun YongHyeon 		bus_dma_tag_destroy(sc->nge_cdata.nge_parent_tag);
1277f6bc9430SPyun YongHyeon 		sc->nge_cdata.nge_parent_tag = NULL;
1278f6bc9430SPyun YongHyeon 	}
1279f6bc9430SPyun YongHyeon }
1280f6bc9430SPyun YongHyeon 
1281ce4946daSBill Paul /*
1282ce4946daSBill Paul  * Initialize the transmit descriptors.
1283ce4946daSBill Paul  */
1284eaabec55SAlfred Perlstein static int
nge_list_tx_init(struct nge_softc * sc)1285284c81cbSPyun YongHyeon nge_list_tx_init(struct nge_softc *sc)
1286ce4946daSBill Paul {
1287f6bc9430SPyun YongHyeon 	struct nge_ring_data *rd;
1288f6bc9430SPyun YongHyeon 	struct nge_txdesc *txd;
1289f6bc9430SPyun YongHyeon 	bus_addr_t addr;
1290ce4946daSBill Paul 	int i;
1291ce4946daSBill Paul 
1292f6bc9430SPyun YongHyeon 	sc->nge_cdata.nge_tx_prod = 0;
1293f6bc9430SPyun YongHyeon 	sc->nge_cdata.nge_tx_cons = 0;
1294f6bc9430SPyun YongHyeon 	sc->nge_cdata.nge_tx_cnt = 0;
1295ce4946daSBill Paul 
1296f6bc9430SPyun YongHyeon 	rd = &sc->nge_rdata;
1297f6bc9430SPyun YongHyeon 	bzero(rd->nge_tx_ring, sizeof(struct nge_desc) * NGE_TX_RING_CNT);
1298f6bc9430SPyun YongHyeon 	for (i = 0; i < NGE_TX_RING_CNT; i++) {
1299f6bc9430SPyun YongHyeon 		if (i == NGE_TX_RING_CNT - 1)
1300f6bc9430SPyun YongHyeon 			addr = NGE_TX_RING_ADDR(sc, 0);
1301f6bc9430SPyun YongHyeon 		else
1302f6bc9430SPyun YongHyeon 			addr = NGE_TX_RING_ADDR(sc, i + 1);
1303f6bc9430SPyun YongHyeon 		rd->nge_tx_ring[i].nge_next = htole32(NGE_ADDR_LO(addr));
1304f6bc9430SPyun YongHyeon 		txd = &sc->nge_cdata.nge_txdesc[i];
1305f6bc9430SPyun YongHyeon 		txd->tx_m = NULL;
1306ce4946daSBill Paul 	}
1307ce4946daSBill Paul 
1308f6bc9430SPyun YongHyeon 	bus_dmamap_sync(sc->nge_cdata.nge_tx_ring_tag,
1309f6bc9430SPyun YongHyeon 	    sc->nge_cdata.nge_tx_ring_map,
1310f6bc9430SPyun YongHyeon 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1311ce4946daSBill Paul 
1312ce4946daSBill Paul 	return (0);
1313ce4946daSBill Paul }
1314ce4946daSBill Paul 
1315ce4946daSBill Paul /*
1316ce4946daSBill Paul  * Initialize the RX descriptors and allocate mbufs for them. Note that
1317ce4946daSBill Paul  * we arrange the descriptors in a closed ring, so that the last descriptor
1318ce4946daSBill Paul  * points back to the first.
1319ce4946daSBill Paul  */
1320eaabec55SAlfred Perlstein static int
nge_list_rx_init(struct nge_softc * sc)1321284c81cbSPyun YongHyeon nge_list_rx_init(struct nge_softc *sc)
1322ce4946daSBill Paul {
1323f6bc9430SPyun YongHyeon 	struct nge_ring_data *rd;
1324f6bc9430SPyun YongHyeon 	bus_addr_t addr;
1325ce4946daSBill Paul 	int i;
1326ce4946daSBill Paul 
1327f6bc9430SPyun YongHyeon 	sc->nge_cdata.nge_rx_cons = 0;
1328ad6c618bSBill Paul 	sc->nge_head = sc->nge_tail = NULL;
1329ce4946daSBill Paul 
1330f6bc9430SPyun YongHyeon 	rd = &sc->nge_rdata;
1331f6bc9430SPyun YongHyeon 	bzero(rd->nge_rx_ring, sizeof(struct nge_desc) * NGE_RX_RING_CNT);
1332f6bc9430SPyun YongHyeon 	for (i = 0; i < NGE_RX_RING_CNT; i++) {
1333f6bc9430SPyun YongHyeon 		if (nge_newbuf(sc, i) != 0)
1334f6bc9430SPyun YongHyeon 			return (ENOBUFS);
1335f6bc9430SPyun YongHyeon 		if (i == NGE_RX_RING_CNT - 1)
1336f6bc9430SPyun YongHyeon 			addr = NGE_RX_RING_ADDR(sc, 0);
1337f6bc9430SPyun YongHyeon 		else
1338f6bc9430SPyun YongHyeon 			addr = NGE_RX_RING_ADDR(sc, i + 1);
1339f6bc9430SPyun YongHyeon 		rd->nge_rx_ring[i].nge_next = htole32(NGE_ADDR_LO(addr));
1340f6bc9430SPyun YongHyeon 	}
1341f6bc9430SPyun YongHyeon 
1342f6bc9430SPyun YongHyeon 	bus_dmamap_sync(sc->nge_cdata.nge_rx_ring_tag,
1343f6bc9430SPyun YongHyeon 	    sc->nge_cdata.nge_rx_ring_map,
1344f6bc9430SPyun YongHyeon 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1345f6bc9430SPyun YongHyeon 
1346ce4946daSBill Paul 	return (0);
1347ce4946daSBill Paul }
1348ce4946daSBill Paul 
1349f6bc9430SPyun YongHyeon static __inline void
nge_discard_rxbuf(struct nge_softc * sc,int idx)1350f6bc9430SPyun YongHyeon nge_discard_rxbuf(struct nge_softc *sc, int idx)
1351f6bc9430SPyun YongHyeon {
1352f6bc9430SPyun YongHyeon 	struct nge_desc *desc;
1353f6bc9430SPyun YongHyeon 
1354f6bc9430SPyun YongHyeon 	desc = &sc->nge_rdata.nge_rx_ring[idx];
1355f6bc9430SPyun YongHyeon 	desc->nge_cmdsts = htole32(MCLBYTES - sizeof(uint64_t));
1356f6bc9430SPyun YongHyeon 	desc->nge_extsts = 0;
1357f6bc9430SPyun YongHyeon }
1358f6bc9430SPyun YongHyeon 
1359ce4946daSBill Paul /*
1360ce4946daSBill Paul  * Initialize an RX descriptor and attach an MBUF cluster.
1361ce4946daSBill Paul  */
1362eaabec55SAlfred Perlstein static int
nge_newbuf(struct nge_softc * sc,int idx)1363f6bc9430SPyun YongHyeon nge_newbuf(struct nge_softc *sc, int idx)
1364ce4946daSBill Paul {
1365f6bc9430SPyun YongHyeon 	struct nge_desc *desc;
1366f6bc9430SPyun YongHyeon 	struct nge_rxdesc *rxd;
1367f6bc9430SPyun YongHyeon 	struct mbuf *m;
1368f6bc9430SPyun YongHyeon 	bus_dma_segment_t segs[1];
1369f6bc9430SPyun YongHyeon 	bus_dmamap_t map;
1370f6bc9430SPyun YongHyeon 	int nsegs;
1371ce4946daSBill Paul 
1372c6499eccSGleb Smirnoff 	m = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
13736c772336SSam Leffler 	if (m == NULL)
1374ce4946daSBill Paul 		return (ENOBUFS);
1375ad6c618bSBill Paul 	m->m_len = m->m_pkthdr.len = MCLBYTES;
13763929ff51SPyun YongHyeon 	m_adj(m, sizeof(uint64_t));
1377ce4946daSBill Paul 
1378f6bc9430SPyun YongHyeon 	if (bus_dmamap_load_mbuf_sg(sc->nge_cdata.nge_rx_tag,
1379f6bc9430SPyun YongHyeon 	    sc->nge_cdata.nge_rx_sparemap, m, segs, &nsegs, 0) != 0) {
1380f6bc9430SPyun YongHyeon 		m_freem(m);
1381f6bc9430SPyun YongHyeon 		return (ENOBUFS);
1382f6bc9430SPyun YongHyeon 	}
1383f6bc9430SPyun YongHyeon 	KASSERT(nsegs == 1, ("%s: %d segments returned!", __func__, nsegs));
1384f6bc9430SPyun YongHyeon 
1385f6bc9430SPyun YongHyeon 	rxd = &sc->nge_cdata.nge_rxdesc[idx];
1386f6bc9430SPyun YongHyeon 	if (rxd->rx_m != NULL) {
1387f6bc9430SPyun YongHyeon 		bus_dmamap_sync(sc->nge_cdata.nge_rx_tag, rxd->rx_dmamap,
1388f6bc9430SPyun YongHyeon 		    BUS_DMASYNC_POSTREAD);
1389f6bc9430SPyun YongHyeon 		bus_dmamap_unload(sc->nge_cdata.nge_rx_tag, rxd->rx_dmamap);
1390f6bc9430SPyun YongHyeon 	}
1391f6bc9430SPyun YongHyeon 	map = rxd->rx_dmamap;
1392f6bc9430SPyun YongHyeon 	rxd->rx_dmamap = sc->nge_cdata.nge_rx_sparemap;
1393f6bc9430SPyun YongHyeon 	sc->nge_cdata.nge_rx_sparemap = map;
1394f6bc9430SPyun YongHyeon 	bus_dmamap_sync(sc->nge_cdata.nge_rx_tag, rxd->rx_dmamap,
1395f6bc9430SPyun YongHyeon 	    BUS_DMASYNC_PREREAD);
1396f6bc9430SPyun YongHyeon 	rxd->rx_m = m;
1397f6bc9430SPyun YongHyeon 	desc = &sc->nge_rdata.nge_rx_ring[idx];
1398f6bc9430SPyun YongHyeon 	desc->nge_ptr = htole32(NGE_ADDR_LO(segs[0].ds_addr));
1399f6bc9430SPyun YongHyeon 	desc->nge_cmdsts = htole32(segs[0].ds_len);
1400f6bc9430SPyun YongHyeon 	desc->nge_extsts = 0;
1401ce4946daSBill Paul 
1402ce4946daSBill Paul 	return (0);
1403ce4946daSBill Paul }
1404ce4946daSBill Paul 
1405f6bc9430SPyun YongHyeon #ifndef __NO_STRICT_ALIGNMENT
1406ad6c618bSBill Paul static __inline void
nge_fixup_rx(struct mbuf * m)1407284c81cbSPyun YongHyeon nge_fixup_rx(struct mbuf *m)
1408ce4946daSBill Paul {
1409ce4946daSBill Paul 	int			i;
1410ad6c618bSBill Paul 	uint16_t		*src, *dst;
1411ce4946daSBill Paul 
1412ad6c618bSBill Paul 	src = mtod(m, uint16_t *);
1413ad6c618bSBill Paul 	dst = src - 1;
1414ce4946daSBill Paul 
1415ad6c618bSBill Paul 	for (i = 0; i < (m->m_len / sizeof(uint16_t) + 1); i++)
1416ad6c618bSBill Paul 		*dst++ = *src++;
1417ce4946daSBill Paul 
1418ad6c618bSBill Paul 	m->m_data -= ETHER_ALIGN;
1419ce4946daSBill Paul }
1420ad6c618bSBill Paul #endif
1421ad6c618bSBill Paul 
1422ce4946daSBill Paul /*
1423ce4946daSBill Paul  * A frame has been uploaded: pass the resulting mbuf chain up to
1424ce4946daSBill Paul  * the higher level protocols.
1425ce4946daSBill Paul  */
142656e13f2aSAttilio Rao static int
nge_rxeof(struct nge_softc * sc)1427284c81cbSPyun YongHyeon nge_rxeof(struct nge_softc *sc)
1428ce4946daSBill Paul {
1429ce4946daSBill Paul 	struct mbuf *m;
143076cb2c1cSJustin Hibbits 	if_t ifp;
1431ce4946daSBill Paul 	struct nge_desc *cur_rx;
1432f6bc9430SPyun YongHyeon 	struct nge_rxdesc *rxd;
143356e13f2aSAttilio Rao 	int cons, prog, rx_npkts, total_len;
1434f6bc9430SPyun YongHyeon 	uint32_t cmdsts, extsts;
1435ce4946daSBill Paul 
1436ad6c618bSBill Paul 	NGE_LOCK_ASSERT(sc);
1437f6bc9430SPyun YongHyeon 
1438fc74a9f9SBrooks Davis 	ifp = sc->nge_ifp;
1439f6bc9430SPyun YongHyeon 	cons = sc->nge_cdata.nge_rx_cons;
144056e13f2aSAttilio Rao 	rx_npkts = 0;
1441ce4946daSBill Paul 
1442f6bc9430SPyun YongHyeon 	bus_dmamap_sync(sc->nge_cdata.nge_rx_ring_tag,
1443f6bc9430SPyun YongHyeon 	    sc->nge_cdata.nge_rx_ring_map,
1444f6bc9430SPyun YongHyeon 	    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1445ce4946daSBill Paul 
1446f6bc9430SPyun YongHyeon 	for (prog = 0; prog < NGE_RX_RING_CNT &&
144776cb2c1cSJustin Hibbits 	    (if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0;
1448f6bc9430SPyun YongHyeon 	    NGE_INC(cons, NGE_RX_RING_CNT)) {
1449196c0df6SHidetoshi Shimokawa #ifdef DEVICE_POLLING
145076cb2c1cSJustin Hibbits 		if (if_getcapenable(ifp) & IFCAP_POLLING) {
1451196c0df6SHidetoshi Shimokawa 			if (sc->rxcycles <= 0)
1452196c0df6SHidetoshi Shimokawa 				break;
1453196c0df6SHidetoshi Shimokawa 			sc->rxcycles--;
1454196c0df6SHidetoshi Shimokawa 		}
145540929967SGleb Smirnoff #endif
1456f6bc9430SPyun YongHyeon 		cur_rx = &sc->nge_rdata.nge_rx_ring[cons];
1457f6bc9430SPyun YongHyeon 		cmdsts = le32toh(cur_rx->nge_cmdsts);
1458f6bc9430SPyun YongHyeon 		extsts = le32toh(cur_rx->nge_extsts);
1459f6bc9430SPyun YongHyeon 		if ((cmdsts & NGE_CMDSTS_OWN) == 0)
1460f6bc9430SPyun YongHyeon 			break;
1461f6bc9430SPyun YongHyeon 		prog++;
1462f6bc9430SPyun YongHyeon 		rxd = &sc->nge_cdata.nge_rxdesc[cons];
1463f6bc9430SPyun YongHyeon 		m = rxd->rx_m;
1464f6bc9430SPyun YongHyeon 		total_len = cmdsts & NGE_CMDSTS_BUFLEN;
1465196c0df6SHidetoshi Shimokawa 
1466f6bc9430SPyun YongHyeon 		if ((cmdsts & NGE_CMDSTS_MORE) != 0) {
1467f6bc9430SPyun YongHyeon 			if (nge_newbuf(sc, cons) != 0) {
1468e09fdb02SGleb Smirnoff 				if_inc_counter(ifp, IFCOUNTER_IQDROPS, 1);
1469f6bc9430SPyun YongHyeon 				if (sc->nge_head != NULL) {
1470f6bc9430SPyun YongHyeon 					m_freem(sc->nge_head);
1471f6bc9430SPyun YongHyeon 					sc->nge_head = sc->nge_tail = NULL;
1472f6bc9430SPyun YongHyeon 				}
1473f6bc9430SPyun YongHyeon 				nge_discard_rxbuf(sc, cons);
1474f6bc9430SPyun YongHyeon 				continue;
1475f6bc9430SPyun YongHyeon 			}
1476ad6c618bSBill Paul 			m->m_len = total_len;
1477ad6c618bSBill Paul 			if (sc->nge_head == NULL) {
1478ad6c618bSBill Paul 				m->m_pkthdr.len = total_len;
1479ad6c618bSBill Paul 				sc->nge_head = sc->nge_tail = m;
1480ad6c618bSBill Paul 			} else {
1481ad6c618bSBill Paul 				m->m_flags &= ~M_PKTHDR;
1482ad6c618bSBill Paul 				sc->nge_head->m_pkthdr.len += total_len;
1483ad6c618bSBill Paul 				sc->nge_tail->m_next = m;
1484ad6c618bSBill Paul 				sc->nge_tail = m;
1485ad6c618bSBill Paul 			}
1486ad6c618bSBill Paul 			continue;
1487ad6c618bSBill Paul 		}
1488ad6c618bSBill Paul 
1489ce4946daSBill Paul 		/*
1490ce4946daSBill Paul 		 * If an error occurs, update stats, clear the
1491ce4946daSBill Paul 		 * status word and leave the mbuf cluster in place:
1492ce4946daSBill Paul 		 * it should simply get re-used next time this descriptor
1493ce4946daSBill Paul 	 	 * comes up in the ring.
1494ce4946daSBill Paul 		 */
1495f6bc9430SPyun YongHyeon 		if ((cmdsts & NGE_CMDSTS_PKT_OK) == 0) {
1496f6bc9430SPyun YongHyeon 			if ((cmdsts & NGE_RXSTAT_RUNT) &&
1497f6bc9430SPyun YongHyeon 			    total_len >= (ETHER_MIN_LEN - ETHER_CRC_LEN - 4)) {
1498f6bc9430SPyun YongHyeon 				/*
1499f6bc9430SPyun YongHyeon 				 * Work-around hardware bug, accept runt frames
1500f6bc9430SPyun YongHyeon 				 * if its length is larger than or equal to 56.
1501f6bc9430SPyun YongHyeon 				 */
1502f6bc9430SPyun YongHyeon 			} else {
1503f6bc9430SPyun YongHyeon 				/*
1504f6bc9430SPyun YongHyeon 				 * Input error counters are updated by hardware.
1505f6bc9430SPyun YongHyeon 				 */
1506ad6c618bSBill Paul 				if (sc->nge_head != NULL) {
1507ad6c618bSBill Paul 					m_freem(sc->nge_head);
1508ad6c618bSBill Paul 					sc->nge_head = sc->nge_tail = NULL;
1509ad6c618bSBill Paul 				}
1510f6bc9430SPyun YongHyeon 				nge_discard_rxbuf(sc, cons);
1511ce4946daSBill Paul 				continue;
1512ce4946daSBill Paul 			}
1513f6bc9430SPyun YongHyeon 		}
1514ce4946daSBill Paul 
1515ad6c618bSBill Paul 		/* Try conjure up a replacement mbuf. */
1516ad6c618bSBill Paul 
1517f6bc9430SPyun YongHyeon 		if (nge_newbuf(sc, cons) != 0) {
1518e09fdb02SGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_IQDROPS, 1);
1519ad6c618bSBill Paul 			if (sc->nge_head != NULL) {
1520ad6c618bSBill Paul 				m_freem(sc->nge_head);
1521ad6c618bSBill Paul 				sc->nge_head = sc->nge_tail = NULL;
1522ad6c618bSBill Paul 			}
1523f6bc9430SPyun YongHyeon 			nge_discard_rxbuf(sc, cons);
1524ad6c618bSBill Paul 			continue;
1525ad6c618bSBill Paul 		}
1526ad6c618bSBill Paul 
1527f6bc9430SPyun YongHyeon 		/* Chain received mbufs. */
1528ad6c618bSBill Paul 		if (sc->nge_head != NULL) {
1529ad6c618bSBill Paul 			m->m_len = total_len;
1530ad6c618bSBill Paul 			m->m_flags &= ~M_PKTHDR;
1531ad6c618bSBill Paul 			sc->nge_tail->m_next = m;
1532ad6c618bSBill Paul 			m = sc->nge_head;
1533ad6c618bSBill Paul 			m->m_pkthdr.len += total_len;
1534ad6c618bSBill Paul 			sc->nge_head = sc->nge_tail = NULL;
1535ad6c618bSBill Paul 		} else
1536ad6c618bSBill Paul 			m->m_pkthdr.len = m->m_len = total_len;
1537ad6c618bSBill Paul 
1538ce4946daSBill Paul 		/*
1539ce4946daSBill Paul 		 * Ok. NatSemi really screwed up here. This is the
1540ce4946daSBill Paul 		 * only gigE chip I know of with alignment constraints
1541ce4946daSBill Paul 		 * on receive buffers. RX buffers must be 64-bit aligned.
1542ce4946daSBill Paul 		 */
1543962315f6SBill Paul 		/*
1544962315f6SBill Paul 		 * By popular demand, ignore the alignment problems
1545f6bc9430SPyun YongHyeon 		 * on the non-strict alignment platform. The performance hit
1546962315f6SBill Paul 		 * incurred due to unaligned accesses is much smaller
1547962315f6SBill Paul 		 * than the hit produced by forcing buffer copies all
1548962315f6SBill Paul 		 * the time, especially with jumbo frames. We still
1549962315f6SBill Paul 		 * need to fix up the alignment everywhere else though.
1550962315f6SBill Paul 		 */
1551f6bc9430SPyun YongHyeon #ifndef __NO_STRICT_ALIGNMENT
1552ad6c618bSBill Paul 		nge_fixup_rx(m);
1553962315f6SBill Paul #endif
1554ad6c618bSBill Paul 		m->m_pkthdr.rcvif = ifp;
1555e09fdb02SGleb Smirnoff 		if_inc_counter(ifp, IFCOUNTER_IPACKETS, 1);
1556ce4946daSBill Paul 
155776cb2c1cSJustin Hibbits 		if ((if_getcapenable(ifp) & IFCAP_RXCSUM) != 0) {
1558ce4946daSBill Paul 			/* Do IP checksum checking. */
1559f6bc9430SPyun YongHyeon 			if ((extsts & NGE_RXEXTSTS_IPPKT) != 0)
1560ce4946daSBill Paul 				m->m_pkthdr.csum_flags |= CSUM_IP_CHECKED;
1561f6bc9430SPyun YongHyeon 			if ((extsts & NGE_RXEXTSTS_IPCSUMERR) == 0)
156201702579SBill Paul 				m->m_pkthdr.csum_flags |= CSUM_IP_VALID;
15632195de46SBill Paul 			if ((extsts & NGE_RXEXTSTS_TCPPKT &&
15642195de46SBill Paul 			    !(extsts & NGE_RXEXTSTS_TCPCSUMERR)) ||
15652195de46SBill Paul 			    (extsts & NGE_RXEXTSTS_UDPPKT &&
15662195de46SBill Paul 			    !(extsts & NGE_RXEXTSTS_UDPCSUMERR))) {
15672195de46SBill Paul 				m->m_pkthdr.csum_flags |=
15682195de46SBill Paul 				    CSUM_DATA_VALID | CSUM_PSEUDO_HDR;
1569c9215605SBill Paul 				m->m_pkthdr.csum_data = 0xffff;
15702195de46SBill Paul 			}
1571f6bc9430SPyun YongHyeon 		}
1572ce4946daSBill Paul 
1573ce4946daSBill Paul 		/*
1574ce4946daSBill Paul 		 * If we received a packet with a vlan tag, pass it
1575ce4946daSBill Paul 		 * to vlan_input() instead of ether_input().
1576ce4946daSBill Paul 		 */
1577f6bc9430SPyun YongHyeon 		if ((extsts & NGE_RXEXTSTS_VLANPKT) != 0 &&
157876cb2c1cSJustin Hibbits 		    (if_getcapenable(ifp) & IFCAP_VLAN_HWTAGGING) != 0) {
157978ba57b9SAndre Oppermann 			m->m_pkthdr.ether_vtag =
1580f6bc9430SPyun YongHyeon 			    bswap16(extsts & NGE_RXEXTSTS_VTCI);
158178ba57b9SAndre Oppermann 			m->m_flags |= M_VLANTAG;
1582ce4946daSBill Paul 		}
1583ad6c618bSBill Paul 		NGE_UNLOCK(sc);
158476cb2c1cSJustin Hibbits 		if_input(ifp, m);
1585ad6c618bSBill Paul 		NGE_LOCK(sc);
158656e13f2aSAttilio Rao 		rx_npkts++;
1587ce4946daSBill Paul 	}
1588ce4946daSBill Paul 
1589f6bc9430SPyun YongHyeon 	if (prog > 0) {
1590f6bc9430SPyun YongHyeon 		sc->nge_cdata.nge_rx_cons = cons;
1591f6bc9430SPyun YongHyeon 		bus_dmamap_sync(sc->nge_cdata.nge_rx_ring_tag,
1592f6bc9430SPyun YongHyeon 		    sc->nge_cdata.nge_rx_ring_map,
1593f6bc9430SPyun YongHyeon 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1594f6bc9430SPyun YongHyeon 	}
159556e13f2aSAttilio Rao 	return (rx_npkts);
1596ce4946daSBill Paul }
1597ce4946daSBill Paul 
1598ce4946daSBill Paul /*
1599ce4946daSBill Paul  * A frame was downloaded to the chip. It's safe for us to clean up
1600ce4946daSBill Paul  * the list buffers.
1601ce4946daSBill Paul  */
1602eaabec55SAlfred Perlstein static void
nge_txeof(struct nge_softc * sc)1603284c81cbSPyun YongHyeon nge_txeof(struct nge_softc *sc)
1604ce4946daSBill Paul {
16051e73ec7dSRuslan Ermilov 	struct nge_desc	*cur_tx;
1606f6bc9430SPyun YongHyeon 	struct nge_txdesc *txd;
160776cb2c1cSJustin Hibbits 	if_t ifp;
1608f6bc9430SPyun YongHyeon 	uint32_t cmdsts;
1609f6bc9430SPyun YongHyeon 	int cons, prod;
1610ce4946daSBill Paul 
1611ad6c618bSBill Paul 	NGE_LOCK_ASSERT(sc);
1612fc74a9f9SBrooks Davis 	ifp = sc->nge_ifp;
1613ce4946daSBill Paul 
1614f6bc9430SPyun YongHyeon 	cons = sc->nge_cdata.nge_tx_cons;
1615f6bc9430SPyun YongHyeon 	prod = sc->nge_cdata.nge_tx_prod;
1616f6bc9430SPyun YongHyeon 	if (cons == prod)
1617f6bc9430SPyun YongHyeon 		return;
1618f6bc9430SPyun YongHyeon 
1619f6bc9430SPyun YongHyeon 	bus_dmamap_sync(sc->nge_cdata.nge_tx_ring_tag,
1620f6bc9430SPyun YongHyeon 	    sc->nge_cdata.nge_tx_ring_map,
1621f6bc9430SPyun YongHyeon 	    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1622f6bc9430SPyun YongHyeon 
1623ce4946daSBill Paul 	/*
1624ce4946daSBill Paul 	 * Go through our tx list and free mbufs for those
1625ce4946daSBill Paul 	 * frames that have been transmitted.
1626ce4946daSBill Paul 	 */
1627f6bc9430SPyun YongHyeon 	for (; cons != prod; NGE_INC(cons, NGE_TX_RING_CNT)) {
1628f6bc9430SPyun YongHyeon 		cur_tx = &sc->nge_rdata.nge_tx_ring[cons];
1629f6bc9430SPyun YongHyeon 		cmdsts = le32toh(cur_tx->nge_cmdsts);
1630f6bc9430SPyun YongHyeon 		if ((cmdsts & NGE_CMDSTS_OWN) != 0)
1631ce4946daSBill Paul 			break;
1632ce4946daSBill Paul 		sc->nge_cdata.nge_tx_cnt--;
163376cb2c1cSJustin Hibbits 		if_setdrvflagbits(ifp, 0, IFF_DRV_OACTIVE);
1634f6bc9430SPyun YongHyeon 		if ((cmdsts & NGE_CMDSTS_MORE) != 0)
1635f6bc9430SPyun YongHyeon 			continue;
1636f6bc9430SPyun YongHyeon 
1637f6bc9430SPyun YongHyeon 		txd = &sc->nge_cdata.nge_txdesc[cons];
1638f6bc9430SPyun YongHyeon 		bus_dmamap_sync(sc->nge_cdata.nge_tx_tag, txd->tx_dmamap,
1639f6bc9430SPyun YongHyeon 		    BUS_DMASYNC_POSTWRITE);
1640f6bc9430SPyun YongHyeon 		bus_dmamap_unload(sc->nge_cdata.nge_tx_tag, txd->tx_dmamap);
1641f6bc9430SPyun YongHyeon 		if ((cmdsts & NGE_CMDSTS_PKT_OK) == 0) {
1642e09fdb02SGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
1643f6bc9430SPyun YongHyeon 			if ((cmdsts & NGE_TXSTAT_EXCESSCOLLS) != 0)
1644e09fdb02SGleb Smirnoff 				if_inc_counter(ifp, IFCOUNTER_COLLISIONS, 1);
1645f6bc9430SPyun YongHyeon 			if ((cmdsts & NGE_TXSTAT_OUTOFWINCOLL) != 0)
1646e09fdb02SGleb Smirnoff 				if_inc_counter(ifp, IFCOUNTER_COLLISIONS, 1);
1647f6bc9430SPyun YongHyeon 		} else
1648e09fdb02SGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_OPACKETS, 1);
1649f6bc9430SPyun YongHyeon 
1650e09fdb02SGleb Smirnoff 		if_inc_counter(ifp, IFCOUNTER_COLLISIONS, (cmdsts & NGE_TXSTAT_COLLCNT) >> 16);
1651f6bc9430SPyun YongHyeon 		KASSERT(txd->tx_m != NULL, ("%s: freeing NULL mbuf!\n",
1652f6bc9430SPyun YongHyeon 		    __func__));
1653f6bc9430SPyun YongHyeon 		m_freem(txd->tx_m);
1654f6bc9430SPyun YongHyeon 		txd->tx_m = NULL;
1655ce4946daSBill Paul 	}
1656ce4946daSBill Paul 
1657f6bc9430SPyun YongHyeon 	sc->nge_cdata.nge_tx_cons = cons;
1658f6bc9430SPyun YongHyeon 	if (sc->nge_cdata.nge_tx_cnt == 0)
1659f6bc9430SPyun YongHyeon 		sc->nge_watchdog_timer = 0;
1660ce4946daSBill Paul }
1661ce4946daSBill Paul 
1662eaabec55SAlfred Perlstein static void
nge_tick(void * xsc)1663284c81cbSPyun YongHyeon nge_tick(void *xsc)
1664ce4946daSBill Paul {
1665ce4946daSBill Paul 	struct nge_softc *sc;
1666ad6c618bSBill Paul 	struct mii_data *mii;
1667ad6c618bSBill Paul 
1668646abee6SJohn Baldwin 	sc = xsc;
1669ad6c618bSBill Paul 	NGE_LOCK_ASSERT(sc);
1670ce4946daSBill Paul 	mii = device_get_softc(sc->nge_miibus);
1671ce4946daSBill Paul 	mii_tick(mii);
1672f6bc9430SPyun YongHyeon 	/*
1673f6bc9430SPyun YongHyeon 	 * For PHYs that does not reset established link, it is
1674f6bc9430SPyun YongHyeon 	 * necessary to check whether driver still have a valid
1675f6bc9430SPyun YongHyeon 	 * link(e.g link state change callback is not called).
1676f6bc9430SPyun YongHyeon 	 * Otherwise, driver think it lost link because driver
1677f6bc9430SPyun YongHyeon 	 * initialization routine clears link state flag.
1678f6bc9430SPyun YongHyeon 	 */
1679f6bc9430SPyun YongHyeon 	if ((sc->nge_flags & NGE_FLAG_LINK) == 0)
1680f6bc9430SPyun YongHyeon 		nge_miibus_statchg(sc->nge_dev);
1681f6bc9430SPyun YongHyeon 	nge_stats_update(sc);
1682f6bc9430SPyun YongHyeon 	nge_watchdog(sc);
1683ad6c618bSBill Paul 	callout_reset(&sc->nge_stat_ch, hz, nge_tick, sc);
1684ce4946daSBill Paul }
1685ce4946daSBill Paul 
1686f6bc9430SPyun YongHyeon static void
nge_stats_update(struct nge_softc * sc)1687f6bc9430SPyun YongHyeon nge_stats_update(struct nge_softc *sc)
1688f6bc9430SPyun YongHyeon {
168976cb2c1cSJustin Hibbits 	if_t ifp;
1690f6bc9430SPyun YongHyeon 	struct nge_stats now, *stats, *nstats;
1691f6bc9430SPyun YongHyeon 
1692f6bc9430SPyun YongHyeon 	NGE_LOCK_ASSERT(sc);
1693f6bc9430SPyun YongHyeon 
1694f6bc9430SPyun YongHyeon 	ifp = sc->nge_ifp;
1695f6bc9430SPyun YongHyeon 	stats = &now;
1696f6bc9430SPyun YongHyeon 	stats->rx_pkts_errs =
1697f6bc9430SPyun YongHyeon 	    CSR_READ_4(sc, NGE_MIB_RXERRPKT) & 0xFFFF;
1698f6bc9430SPyun YongHyeon 	stats->rx_crc_errs =
1699f6bc9430SPyun YongHyeon 	    CSR_READ_4(sc, NGE_MIB_RXERRFCS) & 0xFFFF;
1700f6bc9430SPyun YongHyeon 	stats->rx_fifo_oflows =
1701f6bc9430SPyun YongHyeon 	    CSR_READ_4(sc, NGE_MIB_RXERRMISSEDPKT) & 0xFFFF;
1702f6bc9430SPyun YongHyeon 	stats->rx_align_errs =
1703f6bc9430SPyun YongHyeon 	    CSR_READ_4(sc, NGE_MIB_RXERRALIGN) & 0xFFFF;
1704f6bc9430SPyun YongHyeon 	stats->rx_sym_errs =
1705f6bc9430SPyun YongHyeon 	    CSR_READ_4(sc, NGE_MIB_RXERRSYM) & 0xFFFF;
1706f6bc9430SPyun YongHyeon 	stats->rx_pkts_jumbos =
1707f6bc9430SPyun YongHyeon 	    CSR_READ_4(sc, NGE_MIB_RXERRGIANT) & 0xFFFF;
1708f6bc9430SPyun YongHyeon 	stats->rx_len_errs =
1709f6bc9430SPyun YongHyeon 	    CSR_READ_4(sc, NGE_MIB_RXERRRANGLEN) & 0xFFFF;
1710f6bc9430SPyun YongHyeon 	stats->rx_unctl_frames =
1711f6bc9430SPyun YongHyeon 	    CSR_READ_4(sc, NGE_MIB_RXBADOPCODE) & 0xFFFF;
1712f6bc9430SPyun YongHyeon 	stats->rx_pause =
1713f6bc9430SPyun YongHyeon 	    CSR_READ_4(sc, NGE_MIB_RXPAUSEPKTS) & 0xFFFF;
1714f6bc9430SPyun YongHyeon 	stats->tx_pause =
1715f6bc9430SPyun YongHyeon 	    CSR_READ_4(sc, NGE_MIB_TXPAUSEPKTS) & 0xFFFF;
1716f6bc9430SPyun YongHyeon 	stats->tx_seq_errs =
1717f6bc9430SPyun YongHyeon 	    CSR_READ_4(sc, NGE_MIB_TXERRSQE) & 0xFF;
1718f6bc9430SPyun YongHyeon 
1719f6bc9430SPyun YongHyeon 	/*
1720f6bc9430SPyun YongHyeon 	 * Since we've accept errored frames exclude Rx length errors.
1721f6bc9430SPyun YongHyeon 	 */
1722e09fdb02SGleb Smirnoff 	if_inc_counter(ifp, IFCOUNTER_IERRORS,
1723e09fdb02SGleb Smirnoff 	    stats->rx_pkts_errs + stats->rx_crc_errs +
1724e09fdb02SGleb Smirnoff 	    stats->rx_fifo_oflows + stats->rx_sym_errs);
1725f6bc9430SPyun YongHyeon 
1726f6bc9430SPyun YongHyeon 	nstats = &sc->nge_stats;
1727f6bc9430SPyun YongHyeon 	nstats->rx_pkts_errs += stats->rx_pkts_errs;
1728f6bc9430SPyun YongHyeon 	nstats->rx_crc_errs += stats->rx_crc_errs;
1729f6bc9430SPyun YongHyeon 	nstats->rx_fifo_oflows += stats->rx_fifo_oflows;
1730f6bc9430SPyun YongHyeon 	nstats->rx_align_errs += stats->rx_align_errs;
1731f6bc9430SPyun YongHyeon 	nstats->rx_sym_errs += stats->rx_sym_errs;
1732f6bc9430SPyun YongHyeon 	nstats->rx_pkts_jumbos += stats->rx_pkts_jumbos;
1733f6bc9430SPyun YongHyeon 	nstats->rx_len_errs += stats->rx_len_errs;
1734f6bc9430SPyun YongHyeon 	nstats->rx_unctl_frames += stats->rx_unctl_frames;
1735f6bc9430SPyun YongHyeon 	nstats->rx_pause += stats->rx_pause;
1736f6bc9430SPyun YongHyeon 	nstats->tx_pause += stats->tx_pause;
1737f6bc9430SPyun YongHyeon 	nstats->tx_seq_errs += stats->tx_seq_errs;
1738f6bc9430SPyun YongHyeon }
1739f6bc9430SPyun YongHyeon 
1740196c0df6SHidetoshi Shimokawa #ifdef DEVICE_POLLING
1741196c0df6SHidetoshi Shimokawa static poll_handler_t nge_poll;
1742196c0df6SHidetoshi Shimokawa 
174356e13f2aSAttilio Rao static int
nge_poll(if_t ifp,enum poll_cmd cmd,int count)174476cb2c1cSJustin Hibbits nge_poll(if_t ifp, enum poll_cmd cmd, int count)
1745196c0df6SHidetoshi Shimokawa {
1746f6bc9430SPyun YongHyeon 	struct nge_softc *sc;
174756e13f2aSAttilio Rao 	int rx_npkts = 0;
1748f6bc9430SPyun YongHyeon 
174976cb2c1cSJustin Hibbits 	sc = if_getsoftc(ifp);
1750196c0df6SHidetoshi Shimokawa 
1751ad6c618bSBill Paul 	NGE_LOCK(sc);
175276cb2c1cSJustin Hibbits 	if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) == 0) {
1753ad6c618bSBill Paul 		NGE_UNLOCK(sc);
175456e13f2aSAttilio Rao 		return (rx_npkts);
1755196c0df6SHidetoshi Shimokawa 	}
1756196c0df6SHidetoshi Shimokawa 
1757196c0df6SHidetoshi Shimokawa 	/*
1758196c0df6SHidetoshi Shimokawa 	 * On the nge, reading the status register also clears it.
1759196c0df6SHidetoshi Shimokawa 	 * So before returning to intr mode we must make sure that all
1760196c0df6SHidetoshi Shimokawa 	 * possible pending sources of interrupts have been served.
1761196c0df6SHidetoshi Shimokawa 	 * In practice this means run to completion the *eof routines,
1762f6bc9430SPyun YongHyeon 	 * and then call the interrupt routine.
1763196c0df6SHidetoshi Shimokawa 	 */
1764196c0df6SHidetoshi Shimokawa 	sc->rxcycles = count;
176556e13f2aSAttilio Rao 	rx_npkts = nge_rxeof(sc);
1766196c0df6SHidetoshi Shimokawa 	nge_txeof(sc);
176776cb2c1cSJustin Hibbits 	if (!if_sendq_empty(ifp))
1768ad6c618bSBill Paul 		nge_start_locked(ifp);
1769196c0df6SHidetoshi Shimokawa 
1770196c0df6SHidetoshi Shimokawa 	if (sc->rxcycles > 0 || cmd == POLL_AND_CHECK_STATUS) {
17713929ff51SPyun YongHyeon 		uint32_t	status;
1772196c0df6SHidetoshi Shimokawa 
1773196c0df6SHidetoshi Shimokawa 		/* Reading the ISR register clears all interrupts. */
1774196c0df6SHidetoshi Shimokawa 		status = CSR_READ_4(sc, NGE_ISR);
1775196c0df6SHidetoshi Shimokawa 
1776f6bc9430SPyun YongHyeon 		if ((status & (NGE_ISR_RX_ERR|NGE_ISR_RX_OFLOW)) != 0)
177756e13f2aSAttilio Rao 			rx_npkts += nge_rxeof(sc);
1778196c0df6SHidetoshi Shimokawa 
1779f6bc9430SPyun YongHyeon 		if ((status & NGE_ISR_RX_IDLE) != 0)
1780196c0df6SHidetoshi Shimokawa 			NGE_SETBIT(sc, NGE_CSR, NGE_CSR_RX_ENABLE);
1781196c0df6SHidetoshi Shimokawa 
1782f6bc9430SPyun YongHyeon 		if ((status & NGE_ISR_SYSERR) != 0) {
178376cb2c1cSJustin Hibbits 			if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
1784ad6c618bSBill Paul 			nge_init_locked(sc);
1785196c0df6SHidetoshi Shimokawa 		}
1786196c0df6SHidetoshi Shimokawa 	}
1787ad6c618bSBill Paul 	NGE_UNLOCK(sc);
178856e13f2aSAttilio Rao 	return (rx_npkts);
1789196c0df6SHidetoshi Shimokawa }
1790196c0df6SHidetoshi Shimokawa #endif /* DEVICE_POLLING */
1791196c0df6SHidetoshi Shimokawa 
1792eaabec55SAlfred Perlstein static void
nge_intr(void * arg)1793284c81cbSPyun YongHyeon nge_intr(void *arg)
1794ce4946daSBill Paul {
1795ce4946daSBill Paul 	struct nge_softc *sc;
179676cb2c1cSJustin Hibbits 	if_t ifp;
17973929ff51SPyun YongHyeon 	uint32_t status;
1798ce4946daSBill Paul 
1799f6bc9430SPyun YongHyeon 	sc = (struct nge_softc *)arg;
1800fc74a9f9SBrooks Davis 	ifp = sc->nge_ifp;
1801ce4946daSBill Paul 
1802ad6c618bSBill Paul 	NGE_LOCK(sc);
1803196c0df6SHidetoshi Shimokawa 
1804f6bc9430SPyun YongHyeon 	if ((sc->nge_flags & NGE_FLAG_SUSPENDED) != 0)
1805f6bc9430SPyun YongHyeon 		goto done_locked;
1806f6bc9430SPyun YongHyeon 
1807f6bc9430SPyun YongHyeon 	/* Reading the ISR register clears all interrupts. */
1808f6bc9430SPyun YongHyeon 	status = CSR_READ_4(sc, NGE_ISR);
1809f6bc9430SPyun YongHyeon 	if (status == 0xffffffff || (status & NGE_INTRS) == 0)
1810f6bc9430SPyun YongHyeon 		goto done_locked;
1811f6bc9430SPyun YongHyeon #ifdef DEVICE_POLLING
181276cb2c1cSJustin Hibbits 	if ((if_getcapenable(ifp) & IFCAP_POLLING) != 0)
1813f6bc9430SPyun YongHyeon 		goto done_locked;
1814f6bc9430SPyun YongHyeon #endif
181576cb2c1cSJustin Hibbits 	if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) == 0)
1816f6bc9430SPyun YongHyeon 		goto done_locked;
1817ce4946daSBill Paul 
1818ce4946daSBill Paul 	/* Disable interrupts. */
1819ce4946daSBill Paul 	CSR_WRITE_4(sc, NGE_IER, 0);
1820ce4946daSBill Paul 
18211f548804SDoug Ambrisko 	/* Data LED on for TBI mode */
1822f6bc9430SPyun YongHyeon 	if ((sc->nge_flags & NGE_FLAG_TBI) != 0)
1823f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, NGE_GPIO,
1824f6bc9430SPyun YongHyeon 		    CSR_READ_4(sc, NGE_GPIO) | NGE_GPIO_GP3_OUT);
18251f548804SDoug Ambrisko 
1826f6bc9430SPyun YongHyeon 	for (; (status & NGE_INTRS) != 0;) {
1827f6bc9430SPyun YongHyeon 		if ((status & (NGE_ISR_TX_DESC_OK | NGE_ISR_TX_ERR |
1828f6bc9430SPyun YongHyeon 		    NGE_ISR_TX_OK | NGE_ISR_TX_IDLE)) != 0)
1829ce4946daSBill Paul 			nge_txeof(sc);
1830ce4946daSBill Paul 
1831f6bc9430SPyun YongHyeon 		if ((status & (NGE_ISR_RX_DESC_OK | NGE_ISR_RX_ERR |
1832f6bc9430SPyun YongHyeon 		    NGE_ISR_RX_OFLOW | NGE_ISR_RX_FIFO_OFLOW |
1833f6bc9430SPyun YongHyeon 		    NGE_ISR_RX_IDLE | NGE_ISR_RX_OK)) != 0)
1834ce4946daSBill Paul 			nge_rxeof(sc);
1835ff7ed9f7SPoul-Henning Kamp 
1836f6bc9430SPyun YongHyeon 		if ((status & NGE_ISR_RX_IDLE) != 0)
1837ff7ed9f7SPoul-Henning Kamp 			NGE_SETBIT(sc, NGE_CSR, NGE_CSR_RX_ENABLE);
1838ff7ed9f7SPoul-Henning Kamp 
1839f6bc9430SPyun YongHyeon 		if ((status & NGE_ISR_SYSERR) != 0) {
184076cb2c1cSJustin Hibbits 			if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
1841ad6c618bSBill Paul 			nge_init_locked(sc);
1842ce4946daSBill Paul 		}
1843f6bc9430SPyun YongHyeon 		/* Reading the ISR register clears all interrupts. */
1844f6bc9430SPyun YongHyeon 		status = CSR_READ_4(sc, NGE_ISR);
1845ce4946daSBill Paul 	}
1846ce4946daSBill Paul 
1847ce4946daSBill Paul 	/* Re-enable interrupts. */
1848ce4946daSBill Paul 	CSR_WRITE_4(sc, NGE_IER, 1);
1849ce4946daSBill Paul 
185076cb2c1cSJustin Hibbits 	if (!if_sendq_empty(ifp))
1851ad6c618bSBill Paul 		nge_start_locked(ifp);
1852ce4946daSBill Paul 
18531f548804SDoug Ambrisko 	/* Data LED off for TBI mode */
1854f6bc9430SPyun YongHyeon 	if ((sc->nge_flags & NGE_FLAG_TBI) != 0)
1855f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, NGE_GPIO,
1856f6bc9430SPyun YongHyeon 		    CSR_READ_4(sc, NGE_GPIO) & ~NGE_GPIO_GP3_OUT);
18571f548804SDoug Ambrisko 
1858f6bc9430SPyun YongHyeon done_locked:
1859ad6c618bSBill Paul 	NGE_UNLOCK(sc);
1860ce4946daSBill Paul }
1861ce4946daSBill Paul 
1862ce4946daSBill Paul /*
1863ce4946daSBill Paul  * Encapsulate an mbuf chain in a descriptor by coupling the mbuf data
1864ce4946daSBill Paul  * pointers to the fragment pointers.
1865ce4946daSBill Paul  */
1866eaabec55SAlfred Perlstein static int
nge_encap(struct nge_softc * sc,struct mbuf ** m_head)1867f6bc9430SPyun YongHyeon nge_encap(struct nge_softc *sc, struct mbuf **m_head)
1868ce4946daSBill Paul {
1869f6bc9430SPyun YongHyeon 	struct nge_txdesc *txd, *txd_last;
1870f6bc9430SPyun YongHyeon 	struct nge_desc *desc;
1871ce4946daSBill Paul 	struct mbuf *m;
1872f6bc9430SPyun YongHyeon 	bus_dmamap_t map;
1873f6bc9430SPyun YongHyeon 	bus_dma_segment_t txsegs[NGE_MAXTXSEGS];
1874f6bc9430SPyun YongHyeon 	int error, i, nsegs, prod, si;
1875ce4946daSBill Paul 
1876f6bc9430SPyun YongHyeon 	NGE_LOCK_ASSERT(sc);
1877ce4946daSBill Paul 
1878f6bc9430SPyun YongHyeon 	m = *m_head;
1879f6bc9430SPyun YongHyeon 	prod = sc->nge_cdata.nge_tx_prod;
1880f6bc9430SPyun YongHyeon 	txd = &sc->nge_cdata.nge_txdesc[prod];
1881f6bc9430SPyun YongHyeon 	txd_last = txd;
1882f6bc9430SPyun YongHyeon 	map = txd->tx_dmamap;
1883f6bc9430SPyun YongHyeon 	error = bus_dmamap_load_mbuf_sg(sc->nge_cdata.nge_tx_tag, map,
1884f6bc9430SPyun YongHyeon 	    *m_head, txsegs, &nsegs, BUS_DMA_NOWAIT);
1885f6bc9430SPyun YongHyeon 	if (error == EFBIG) {
1886c6499eccSGleb Smirnoff 		m = m_collapse(*m_head, M_NOWAIT, NGE_MAXTXSEGS);
1887f6bc9430SPyun YongHyeon 		if (m == NULL) {
1888f6bc9430SPyun YongHyeon 			m_freem(*m_head);
1889f6bc9430SPyun YongHyeon 			*m_head = NULL;
1890ce4946daSBill Paul 			return (ENOBUFS);
1891ce4946daSBill Paul 		}
1892f6bc9430SPyun YongHyeon 		*m_head = m;
1893f6bc9430SPyun YongHyeon 		error = bus_dmamap_load_mbuf_sg(sc->nge_cdata.nge_tx_tag,
1894f6bc9430SPyun YongHyeon 		    map, *m_head, txsegs, &nsegs, BUS_DMA_NOWAIT);
1895f6bc9430SPyun YongHyeon 		if (error != 0) {
1896f6bc9430SPyun YongHyeon 			m_freem(*m_head);
1897f6bc9430SPyun YongHyeon 			*m_head = NULL;
1898f6bc9430SPyun YongHyeon 			return (error);
1899f6bc9430SPyun YongHyeon 		}
1900f6bc9430SPyun YongHyeon 	} else if (error != 0)
1901f6bc9430SPyun YongHyeon 		return (error);
1902f6bc9430SPyun YongHyeon 	if (nsegs == 0) {
1903f6bc9430SPyun YongHyeon 		m_freem(*m_head);
1904f6bc9430SPyun YongHyeon 		*m_head = NULL;
1905f6bc9430SPyun YongHyeon 		return (EIO);
1906ce4946daSBill Paul 	}
1907ce4946daSBill Paul 
1908f6bc9430SPyun YongHyeon 	/* Check number of available descriptors. */
1909f6bc9430SPyun YongHyeon 	if (sc->nge_cdata.nge_tx_cnt + nsegs >= (NGE_TX_RING_CNT - 1)) {
1910f6bc9430SPyun YongHyeon 		bus_dmamap_unload(sc->nge_cdata.nge_tx_tag, map);
1911ce4946daSBill Paul 		return (ENOBUFS);
1912ce4946daSBill Paul 	}
1913ce4946daSBill Paul 
1914f6bc9430SPyun YongHyeon 	bus_dmamap_sync(sc->nge_cdata.nge_tx_tag, map, BUS_DMASYNC_PREWRITE);
1915ce4946daSBill Paul 
1916f6bc9430SPyun YongHyeon 	si = prod;
1917f6bc9430SPyun YongHyeon 	for (i = 0; i < nsegs; i++) {
1918f6bc9430SPyun YongHyeon 		desc = &sc->nge_rdata.nge_tx_ring[prod];
1919f6bc9430SPyun YongHyeon 		desc->nge_ptr = htole32(NGE_ADDR_LO(txsegs[i].ds_addr));
1920f6bc9430SPyun YongHyeon 		if (i == 0)
1921f6bc9430SPyun YongHyeon 			desc->nge_cmdsts = htole32(txsegs[i].ds_len |
1922f6bc9430SPyun YongHyeon 			    NGE_CMDSTS_MORE);
1923f6bc9430SPyun YongHyeon 		else
1924f6bc9430SPyun YongHyeon 			desc->nge_cmdsts = htole32(txsegs[i].ds_len |
1925f6bc9430SPyun YongHyeon 			    NGE_CMDSTS_MORE | NGE_CMDSTS_OWN);
1926f6bc9430SPyun YongHyeon 		desc->nge_extsts = 0;
1927f6bc9430SPyun YongHyeon 		sc->nge_cdata.nge_tx_cnt++;
1928f6bc9430SPyun YongHyeon 		NGE_INC(prod, NGE_TX_RING_CNT);
1929f6bc9430SPyun YongHyeon 	}
1930f6bc9430SPyun YongHyeon 	/* Update producer index. */
1931f6bc9430SPyun YongHyeon 	sc->nge_cdata.nge_tx_prod = prod;
1932f6bc9430SPyun YongHyeon 
1933f6bc9430SPyun YongHyeon 	prod = (prod + NGE_TX_RING_CNT - 1) % NGE_TX_RING_CNT;
1934f6bc9430SPyun YongHyeon 	desc = &sc->nge_rdata.nge_tx_ring[prod];
1935f6bc9430SPyun YongHyeon 	/* Check if we have a VLAN tag to insert. */
1936f6bc9430SPyun YongHyeon 	if ((m->m_flags & M_VLANTAG) != 0)
1937f6bc9430SPyun YongHyeon 		desc->nge_extsts |= htole32(NGE_TXEXTSTS_VLANPKT |
1938f6bc9430SPyun YongHyeon 		    bswap16(m->m_pkthdr.ether_vtag));
1939b1603638SGordon Bergling 	/* Set EOP on the last descriptor. */
1940f6bc9430SPyun YongHyeon 	desc->nge_cmdsts &= htole32(~NGE_CMDSTS_MORE);
1941f6bc9430SPyun YongHyeon 
1942f6bc9430SPyun YongHyeon 	/* Set checksum offload in the first descriptor. */
1943f6bc9430SPyun YongHyeon 	desc = &sc->nge_rdata.nge_tx_ring[si];
1944f6bc9430SPyun YongHyeon 	if ((m->m_pkthdr.csum_flags & NGE_CSUM_FEATURES) != 0) {
1945f6bc9430SPyun YongHyeon 		if ((m->m_pkthdr.csum_flags & CSUM_IP) != 0)
1946f6bc9430SPyun YongHyeon 			desc->nge_extsts |= htole32(NGE_TXEXTSTS_IPCSUM);
1947f6bc9430SPyun YongHyeon 		if ((m->m_pkthdr.csum_flags & CSUM_TCP) != 0)
1948f6bc9430SPyun YongHyeon 			desc->nge_extsts |= htole32(NGE_TXEXTSTS_TCPCSUM);
1949f6bc9430SPyun YongHyeon 		if ((m->m_pkthdr.csum_flags & CSUM_UDP) != 0)
1950f6bc9430SPyun YongHyeon 			desc->nge_extsts |= htole32(NGE_TXEXTSTS_UDPCSUM);
1951f6bc9430SPyun YongHyeon 	}
1952f6bc9430SPyun YongHyeon 	/* Lastly, turn the first descriptor ownership to hardware. */
1953f6bc9430SPyun YongHyeon 	desc->nge_cmdsts |= htole32(NGE_CMDSTS_OWN);
1954f6bc9430SPyun YongHyeon 
1955f6bc9430SPyun YongHyeon 	txd = &sc->nge_cdata.nge_txdesc[prod];
1956f6bc9430SPyun YongHyeon 	map = txd_last->tx_dmamap;
1957f6bc9430SPyun YongHyeon 	txd_last->tx_dmamap = txd->tx_dmamap;
1958f6bc9430SPyun YongHyeon 	txd->tx_dmamap = map;
1959f6bc9430SPyun YongHyeon 	txd->tx_m = m;
1960ce4946daSBill Paul 
1961ce4946daSBill Paul 	return (0);
1962ce4946daSBill Paul }
1963ce4946daSBill Paul 
1964ce4946daSBill Paul /*
1965ce4946daSBill Paul  * Main transmit routine. To avoid having to do mbuf copies, we put pointers
1966ce4946daSBill Paul  * to the mbuf data regions directly in the transmit lists. We also save a
1967ce4946daSBill Paul  * copy of the pointers since the transmit list fragment pointers are
1968ce4946daSBill Paul  * physical addresses.
1969ce4946daSBill Paul  */
1970ce4946daSBill Paul 
1971eaabec55SAlfred Perlstein static void
nge_start(if_t ifp)197276cb2c1cSJustin Hibbits nge_start(if_t ifp)
1973ce4946daSBill Paul {
1974ce4946daSBill Paul 	struct nge_softc *sc;
1975ad6c618bSBill Paul 
197676cb2c1cSJustin Hibbits 	sc = if_getsoftc(ifp);
1977ad6c618bSBill Paul 	NGE_LOCK(sc);
1978ad6c618bSBill Paul 	nge_start_locked(ifp);
1979ad6c618bSBill Paul 	NGE_UNLOCK(sc);
1980ad6c618bSBill Paul }
1981ad6c618bSBill Paul 
1982ad6c618bSBill Paul static void
nge_start_locked(if_t ifp)198376cb2c1cSJustin Hibbits nge_start_locked(if_t ifp)
1984ad6c618bSBill Paul {
1985ad6c618bSBill Paul 	struct nge_softc *sc;
1986f6bc9430SPyun YongHyeon 	struct mbuf *m_head;
1987f6bc9430SPyun YongHyeon 	int enq;
1988ce4946daSBill Paul 
198976cb2c1cSJustin Hibbits 	sc = if_getsoftc(ifp);
1990ce4946daSBill Paul 
1991f6bc9430SPyun YongHyeon 	NGE_LOCK_ASSERT(sc);
1992f6bc9430SPyun YongHyeon 
199376cb2c1cSJustin Hibbits 	if ((if_getdrvflags(ifp) & (IFF_DRV_RUNNING | IFF_DRV_OACTIVE)) !=
1994f6bc9430SPyun YongHyeon 	    IFF_DRV_RUNNING || (sc->nge_flags & NGE_FLAG_LINK) == 0)
1995ce4946daSBill Paul 		return;
1996ce4946daSBill Paul 
199776cb2c1cSJustin Hibbits 	for (enq = 0; !if_sendq_empty(ifp) &&
1998f6bc9430SPyun YongHyeon 	    sc->nge_cdata.nge_tx_cnt < NGE_TX_RING_CNT - 2; ) {
199976cb2c1cSJustin Hibbits 		m_head = if_dequeue(ifp);
2000ce4946daSBill Paul 		if (m_head == NULL)
2001ce4946daSBill Paul 			break;
2002f6bc9430SPyun YongHyeon 		/*
2003f6bc9430SPyun YongHyeon 		 * Pack the data into the transmit ring. If we
2004f6bc9430SPyun YongHyeon 		 * don't have room, set the OACTIVE flag and wait
2005f6bc9430SPyun YongHyeon 		 * for the NIC to drain the ring.
2006f6bc9430SPyun YongHyeon 		 */
2007f6bc9430SPyun YongHyeon 		if (nge_encap(sc, &m_head)) {
2008f6bc9430SPyun YongHyeon 			if (m_head == NULL)
2009f6bc9430SPyun YongHyeon 				break;
201076cb2c1cSJustin Hibbits 			if_sendq_prepend(ifp, m_head);
201176cb2c1cSJustin Hibbits 			if_setdrvflagbits(ifp, IFF_DRV_OACTIVE, 0);
2012ce4946daSBill Paul 			break;
2013ce4946daSBill Paul 		}
2014ce4946daSBill Paul 
2015f6bc9430SPyun YongHyeon 		enq++;
2016ce4946daSBill Paul 		/*
2017ce4946daSBill Paul 		 * If there's a BPF listener, bounce a copy of this frame
2018ce4946daSBill Paul 		 * to him.
2019ce4946daSBill Paul 		 */
202059a0d28bSChristian S.J. Peron 		ETHER_BPF_MTAP(ifp, m_head);
2021ce4946daSBill Paul 	}
2022ce4946daSBill Paul 
2023f6bc9430SPyun YongHyeon 	if (enq > 0) {
2024f6bc9430SPyun YongHyeon 		bus_dmamap_sync(sc->nge_cdata.nge_tx_ring_tag,
2025f6bc9430SPyun YongHyeon 		    sc->nge_cdata.nge_tx_ring_map,
2026f6bc9430SPyun YongHyeon 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
2027ce4946daSBill Paul 		/* Transmit */
2028ce4946daSBill Paul 		NGE_SETBIT(sc, NGE_CSR, NGE_CSR_TX_ENABLE);
2029ce4946daSBill Paul 
2030f6bc9430SPyun YongHyeon 		/* Set a timeout in case the chip goes out to lunch. */
2031f6bc9430SPyun YongHyeon 		sc->nge_watchdog_timer = 5;
2032f6bc9430SPyun YongHyeon 	}
2033ce4946daSBill Paul }
2034ce4946daSBill Paul 
2035eaabec55SAlfred Perlstein static void
nge_init(void * xsc)2036284c81cbSPyun YongHyeon nge_init(void *xsc)
2037ce4946daSBill Paul {
2038ce4946daSBill Paul 	struct nge_softc *sc = xsc;
2039ad6c618bSBill Paul 
2040ad6c618bSBill Paul 	NGE_LOCK(sc);
2041ad6c618bSBill Paul 	nge_init_locked(sc);
2042ad6c618bSBill Paul 	NGE_UNLOCK(sc);
2043ad6c618bSBill Paul }
2044ad6c618bSBill Paul 
2045ad6c618bSBill Paul static void
nge_init_locked(struct nge_softc * sc)2046284c81cbSPyun YongHyeon nge_init_locked(struct nge_softc *sc)
2047ad6c618bSBill Paul {
204876cb2c1cSJustin Hibbits 	if_t ifp = sc->nge_ifp;
2049ce4946daSBill Paul 	struct mii_data *mii;
2050f6bc9430SPyun YongHyeon 	uint8_t *eaddr;
2051f6bc9430SPyun YongHyeon 	uint32_t reg;
2052ad6c618bSBill Paul 
2053ad6c618bSBill Paul 	NGE_LOCK_ASSERT(sc);
2054ce4946daSBill Paul 
205576cb2c1cSJustin Hibbits 	if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0)
2056ce4946daSBill Paul 		return;
2057ce4946daSBill Paul 
2058ce4946daSBill Paul 	/*
2059ce4946daSBill Paul 	 * Cancel pending I/O and free all RX/TX buffers.
2060ce4946daSBill Paul 	 */
2061ce4946daSBill Paul 	nge_stop(sc);
2062ce4946daSBill Paul 
2063f6bc9430SPyun YongHyeon 	/* Reset the adapter. */
2064f6bc9430SPyun YongHyeon 	nge_reset(sc);
2065ce4946daSBill Paul 
2066f6bc9430SPyun YongHyeon 	/* Disable Rx filter prior to programming Rx filter. */
2067f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_RXFILT_CTL, 0);
20688c1093fcSMarius Strobl 	CSR_BARRIER_4(sc, NGE_RXFILT_CTL, BUS_SPACE_BARRIER_WRITE);
2069f6bc9430SPyun YongHyeon 
2070f6bc9430SPyun YongHyeon 	mii = device_get_softc(sc->nge_miibus);
2071f6bc9430SPyun YongHyeon 
2072f6bc9430SPyun YongHyeon 	/* Set MAC address. */
207376cb2c1cSJustin Hibbits 	eaddr = if_getlladdr(sc->nge_ifp);
2074ce4946daSBill Paul 	CSR_WRITE_4(sc, NGE_RXFILT_CTL, NGE_FILTADDR_PAR0);
2075f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_RXFILT_DATA, (eaddr[1] << 8) | eaddr[0]);
2076ce4946daSBill Paul 	CSR_WRITE_4(sc, NGE_RXFILT_CTL, NGE_FILTADDR_PAR1);
2077f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_RXFILT_DATA, (eaddr[3] << 8) | eaddr[2]);
2078ce4946daSBill Paul 	CSR_WRITE_4(sc, NGE_RXFILT_CTL, NGE_FILTADDR_PAR2);
2079f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_RXFILT_DATA, (eaddr[5] << 8) | eaddr[4]);
2080ce4946daSBill Paul 
2081ce4946daSBill Paul 	/* Init circular RX list. */
2082ce4946daSBill Paul 	if (nge_list_rx_init(sc) == ENOBUFS) {
20836b9f5c94SGleb Smirnoff 		device_printf(sc->nge_dev, "initialization failed: no "
2084646abee6SJohn Baldwin 			"memory for rx buffers\n");
2085ce4946daSBill Paul 		nge_stop(sc);
2086ce4946daSBill Paul 		return;
2087ce4946daSBill Paul 	}
2088ce4946daSBill Paul 
2089ce4946daSBill Paul 	/*
2090ce4946daSBill Paul 	 * Init tx descriptors.
2091ce4946daSBill Paul 	 */
2092ce4946daSBill Paul 	nge_list_tx_init(sc);
2093ce4946daSBill Paul 
2094f6bc9430SPyun YongHyeon 	/* Set Rx filter. */
2095f6bc9430SPyun YongHyeon 	nge_rxfilter(sc);
2096f6bc9430SPyun YongHyeon 
2097f6bc9430SPyun YongHyeon 	/* Disable PRIQ ctl. */
2098f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_PRIOQCTL, 0);
2099f6bc9430SPyun YongHyeon 
2100f6bc9430SPyun YongHyeon 	/*
2101453130d9SPedro F. Giffuni 	 * Set pause frames parameters.
2102f6bc9430SPyun YongHyeon 	 *  Rx stat FIFO hi-threshold : 2 or more packets
2103f6bc9430SPyun YongHyeon 	 *  Rx stat FIFO lo-threshold : less than 2 packets
2104f6bc9430SPyun YongHyeon 	 *  Rx data FIFO hi-threshold : 2K or more bytes
2105f6bc9430SPyun YongHyeon 	 *  Rx data FIFO lo-threshold : less than 2K bytes
2106f6bc9430SPyun YongHyeon 	 *  pause time : (512ns * 0xffff) -> 33.55ms
2107f6bc9430SPyun YongHyeon 	 */
2108f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_PAUSECSR,
2109f6bc9430SPyun YongHyeon 	    NGE_PAUSECSR_PAUSE_ON_MCAST |
2110f6bc9430SPyun YongHyeon 	    NGE_PAUSECSR_PAUSE_ON_DA |
2111f6bc9430SPyun YongHyeon 	    ((1 << 24) & NGE_PAUSECSR_RX_STATFIFO_THR_HI) |
2112f6bc9430SPyun YongHyeon 	    ((1 << 22) & NGE_PAUSECSR_RX_STATFIFO_THR_LO) |
2113f6bc9430SPyun YongHyeon 	    ((1 << 20) & NGE_PAUSECSR_RX_DATAFIFO_THR_HI) |
2114f6bc9430SPyun YongHyeon 	    ((1 << 18) & NGE_PAUSECSR_RX_DATAFIFO_THR_LO) |
2115f6bc9430SPyun YongHyeon 	    NGE_PAUSECSR_CNT);
2116f6bc9430SPyun YongHyeon 
2117ce4946daSBill Paul 	/*
2118ce4946daSBill Paul 	 * Load the address of the RX and TX lists.
2119ce4946daSBill Paul 	 */
2120f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_RX_LISTPTR_HI,
2121f6bc9430SPyun YongHyeon 	    NGE_ADDR_HI(sc->nge_rdata.nge_rx_ring_paddr));
2122f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_RX_LISTPTR_LO,
2123f6bc9430SPyun YongHyeon 	    NGE_ADDR_LO(sc->nge_rdata.nge_rx_ring_paddr));
2124f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_TX_LISTPTR_HI,
2125f6bc9430SPyun YongHyeon 	    NGE_ADDR_HI(sc->nge_rdata.nge_tx_ring_paddr));
2126f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_TX_LISTPTR_LO,
2127f6bc9430SPyun YongHyeon 	    NGE_ADDR_LO(sc->nge_rdata.nge_tx_ring_paddr));
2128ce4946daSBill Paul 
2129f6bc9430SPyun YongHyeon 	/* Set RX configuration. */
2130ce4946daSBill Paul 	CSR_WRITE_4(sc, NGE_RX_CFG, NGE_RXCFG);
2131f6bc9430SPyun YongHyeon 
2132f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_VLAN_IP_RXCTL, 0);
2133ce4946daSBill Paul 	/*
2134ce4946daSBill Paul 	 * Enable hardware checksum validation for all IPv4
2135ce4946daSBill Paul 	 * packets, do not reject packets with bad checksums.
2136ce4946daSBill Paul 	 */
213776cb2c1cSJustin Hibbits 	if ((if_getcapenable(ifp) & IFCAP_RXCSUM) != 0)
2138f6bc9430SPyun YongHyeon 		NGE_SETBIT(sc, NGE_VLAN_IP_RXCTL, NGE_VIPRXCTL_IPCSUM_ENB);
2139ce4946daSBill Paul 
2140ce4946daSBill Paul 	/*
21419d4fe4b2SBrooks Davis 	 * Tell the chip to detect and strip VLAN tag info from
21429d4fe4b2SBrooks Davis 	 * received frames. The tag will be provided in the extsts
21439d4fe4b2SBrooks Davis 	 * field in the RX descriptors.
2144ce4946daSBill Paul 	 */
2145f6bc9430SPyun YongHyeon 	NGE_SETBIT(sc, NGE_VLAN_IP_RXCTL, NGE_VIPRXCTL_TAG_DETECT_ENB);
214676cb2c1cSJustin Hibbits 	if ((if_getcapenable(ifp) & IFCAP_VLAN_HWTAGGING) != 0)
2147f6bc9430SPyun YongHyeon 		NGE_SETBIT(sc, NGE_VLAN_IP_RXCTL, NGE_VIPRXCTL_TAG_STRIP_ENB);
2148ce4946daSBill Paul 
2149f6bc9430SPyun YongHyeon 	/* Set TX configuration. */
2150ce4946daSBill Paul 	CSR_WRITE_4(sc, NGE_TX_CFG, NGE_TXCFG);
2151ce4946daSBill Paul 
2152ce4946daSBill Paul 	/*
2153ce4946daSBill Paul 	 * Enable TX IPv4 checksumming on a per-packet basis.
2154ce4946daSBill Paul 	 */
2155ce4946daSBill Paul 	CSR_WRITE_4(sc, NGE_VLAN_IP_TXCTL, NGE_VIPTXCTL_CSUM_PER_PKT);
2156ce4946daSBill Paul 
2157ce4946daSBill Paul 	/*
21589d4fe4b2SBrooks Davis 	 * Tell the chip to insert VLAN tags on a per-packet basis as
21599d4fe4b2SBrooks Davis 	 * dictated by the code in the frame encapsulation routine.
2160ce4946daSBill Paul 	 */
2161ce4946daSBill Paul 	NGE_SETBIT(sc, NGE_VLAN_IP_TXCTL, NGE_VIPTXCTL_TAG_PER_PKT);
2162ce4946daSBill Paul 
2163ce4946daSBill Paul 	/*
2164ce4946daSBill Paul 	 * Enable the delivery of PHY interrupts based on
216523d3a203SBill Paul 	 * link/speed/duplex status changes. Also enable the
216623d3a203SBill Paul 	 * extsts field in the DMA descriptors (needed for
216723d3a203SBill Paul 	 * TCP/IP checksum offload on transmit).
2168ce4946daSBill Paul 	 */
21692ce0498bSBill Paul 	NGE_SETBIT(sc, NGE_CFG, NGE_CFG_PHYINTR_SPD |
217023d3a203SBill Paul 	    NGE_CFG_PHYINTR_LNK | NGE_CFG_PHYINTR_DUP | NGE_CFG_EXTSTS_ENB);
2171ce4946daSBill Paul 
2172ce4946daSBill Paul 	/*
2173962315f6SBill Paul 	 * Configure interrupt holdoff (moderation). We can
2174962315f6SBill Paul 	 * have the chip delay interrupt delivery for a certain
2175962315f6SBill Paul 	 * period. Units are in 100us, and the max setting
2176962315f6SBill Paul 	 * is 25500us (0xFF x 100us). Default is a 100us holdoff.
2177962315f6SBill Paul 	 */
2178f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_IHR, sc->nge_int_holdoff);
2179f6bc9430SPyun YongHyeon 
2180f6bc9430SPyun YongHyeon 	/*
2181f6bc9430SPyun YongHyeon 	 * Enable MAC statistics counters and clear.
2182f6bc9430SPyun YongHyeon 	 */
2183f6bc9430SPyun YongHyeon 	reg = CSR_READ_4(sc, NGE_MIBCTL);
2184f6bc9430SPyun YongHyeon 	reg &= ~NGE_MIBCTL_FREEZE_CNT;
2185f6bc9430SPyun YongHyeon 	reg |= NGE_MIBCTL_CLEAR_CNT;
2186f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_MIBCTL, reg);
2187962315f6SBill Paul 
2188962315f6SBill Paul 	/*
2189ce4946daSBill Paul 	 * Enable interrupts.
2190ce4946daSBill Paul 	 */
2191ce4946daSBill Paul 	CSR_WRITE_4(sc, NGE_IMR, NGE_INTRS);
2192196c0df6SHidetoshi Shimokawa #ifdef DEVICE_POLLING
2193196c0df6SHidetoshi Shimokawa 	/*
2194196c0df6SHidetoshi Shimokawa 	 * ... only enable interrupts if we are not polling, make sure
2195196c0df6SHidetoshi Shimokawa 	 * they are off otherwise.
2196196c0df6SHidetoshi Shimokawa 	 */
219776cb2c1cSJustin Hibbits 	if ((if_getcapenable(ifp) & IFCAP_POLLING) != 0)
2198196c0df6SHidetoshi Shimokawa 		CSR_WRITE_4(sc, NGE_IER, 0);
2199196c0df6SHidetoshi Shimokawa 	else
220040929967SGleb Smirnoff #endif
2201ce4946daSBill Paul 	CSR_WRITE_4(sc, NGE_IER, 1);
2202ce4946daSBill Paul 
2203f6bc9430SPyun YongHyeon 	sc->nge_flags &= ~NGE_FLAG_LINK;
2204f6bc9430SPyun YongHyeon 	mii_mediachg(mii);
2205ce4946daSBill Paul 
2206f6bc9430SPyun YongHyeon 	sc->nge_watchdog_timer = 0;
2207f6bc9430SPyun YongHyeon 	callout_reset(&sc->nge_stat_ch, hz, nge_tick, sc);
2208ce4946daSBill Paul 
220976cb2c1cSJustin Hibbits 	if_setdrvflagbits(ifp, IFF_DRV_RUNNING, 0);
221076cb2c1cSJustin Hibbits 	if_setdrvflagbits(ifp, 0, IFF_DRV_OACTIVE);
2211ce4946daSBill Paul }
2212ce4946daSBill Paul 
2213ce4946daSBill Paul /*
2214ce4946daSBill Paul  * Set media options.
2215ce4946daSBill Paul  */
2216eaabec55SAlfred Perlstein static int
nge_mediachange(if_t ifp)221776cb2c1cSJustin Hibbits nge_mediachange(if_t ifp)
2218646abee6SJohn Baldwin {
2219646abee6SJohn Baldwin 	struct nge_softc *sc;
2220ce4946daSBill Paul 	struct mii_data	*mii;
2221f6bc9430SPyun YongHyeon 	struct mii_softc *miisc;
2222f6bc9430SPyun YongHyeon 	int error;
2223ce4946daSBill Paul 
222476cb2c1cSJustin Hibbits 	sc = if_getsoftc(ifp);
2225f6bc9430SPyun YongHyeon 	NGE_LOCK(sc);
2226ce4946daSBill Paul 	mii = device_get_softc(sc->nge_miibus);
2227646abee6SJohn Baldwin 	LIST_FOREACH(miisc, &mii->mii_phys, mii_list)
22283fcb7a53SMarius Strobl 		PHY_RESET(miisc);
2229f6bc9430SPyun YongHyeon 	error = mii_mediachg(mii);
2230f6bc9430SPyun YongHyeon 	NGE_UNLOCK(sc);
2231f6bc9430SPyun YongHyeon 
2232f6bc9430SPyun YongHyeon 	return (error);
2233ce4946daSBill Paul }
2234ce4946daSBill Paul 
2235ce4946daSBill Paul /*
2236ce4946daSBill Paul  * Report current media status.
2237ce4946daSBill Paul  */
2238eaabec55SAlfred Perlstein static void
nge_mediastatus(if_t ifp,struct ifmediareq * ifmr)223976cb2c1cSJustin Hibbits nge_mediastatus(if_t ifp, struct ifmediareq *ifmr)
2240ce4946daSBill Paul {
2241ce4946daSBill Paul 	struct nge_softc *sc;
2242ce4946daSBill Paul 	struct mii_data *mii;
2243ce4946daSBill Paul 
224476cb2c1cSJustin Hibbits 	sc = if_getsoftc(ifp);
2245646abee6SJohn Baldwin 	NGE_LOCK(sc);
2246ce4946daSBill Paul 	mii = device_get_softc(sc->nge_miibus);
2247ce4946daSBill Paul 	mii_pollstat(mii);
2248ce4946daSBill Paul 	ifmr->ifm_active = mii->mii_media_active;
2249ce4946daSBill Paul 	ifmr->ifm_status = mii->mii_media_status;
225057c81d92SPyun YongHyeon 	NGE_UNLOCK(sc);
22511f548804SDoug Ambrisko }
2252ce4946daSBill Paul 
2253eaabec55SAlfred Perlstein static int
nge_ioctl(if_t ifp,u_long command,caddr_t data)225476cb2c1cSJustin Hibbits nge_ioctl(if_t ifp, u_long command, caddr_t data)
2255ce4946daSBill Paul {
225676cb2c1cSJustin Hibbits 	struct nge_softc *sc = if_getsoftc(ifp);
2257ce4946daSBill Paul 	struct ifreq *ifr = (struct ifreq *) data;
2258ce4946daSBill Paul 	struct mii_data *mii;
2259f6bc9430SPyun YongHyeon 	int error = 0, mask;
2260ce4946daSBill Paul 
2261ce4946daSBill Paul 	switch (command) {
2262ce4946daSBill Paul 	case SIOCSIFMTU:
2263f6bc9430SPyun YongHyeon 		if (ifr->ifr_mtu < ETHERMIN || ifr->ifr_mtu > NGE_JUMBO_MTU)
2264ce4946daSBill Paul 			error = EINVAL;
2265cb2f755cSBill Paul 		else {
2266646abee6SJohn Baldwin 			NGE_LOCK(sc);
226776cb2c1cSJustin Hibbits 			if_setmtu(ifp, ifr->ifr_mtu);
2268cb2f755cSBill Paul 			/*
2269cb2f755cSBill Paul 			 * Workaround: if the MTU is larger than
2270cb2f755cSBill Paul 			 * 8152 (TX FIFO size minus 64 minus 18), turn off
2271cb2f755cSBill Paul 			 * TX checksum offloading.
2272cb2f755cSBill Paul 			 */
2273a5820ecbSYaroslav Tykhiy 			if (ifr->ifr_mtu >= 8152) {
227476cb2c1cSJustin Hibbits 				if_setcapenablebit(ifp, 0, IFCAP_TXCSUM);
227576cb2c1cSJustin Hibbits 				if_sethwassistbits(ifp, 0, NGE_CSUM_FEATURES);
2276a5820ecbSYaroslav Tykhiy 			} else {
227776cb2c1cSJustin Hibbits 				if_setcapenablebit(ifp, IFCAP_TXCSUM, 0);
227876cb2c1cSJustin Hibbits 				if_sethwassistbits(ifp, NGE_CSUM_FEATURES, 0);
2279cb2f755cSBill Paul 			}
2280646abee6SJohn Baldwin 			NGE_UNLOCK(sc);
2281f6bc9430SPyun YongHyeon 			VLAN_CAPABILITIES(ifp);
2282a5820ecbSYaroslav Tykhiy 		}
2283ce4946daSBill Paul 		break;
2284ce4946daSBill Paul 	case SIOCSIFFLAGS:
2285ad6c618bSBill Paul 		NGE_LOCK(sc);
228676cb2c1cSJustin Hibbits 		if ((if_getflags(ifp) & IFF_UP) != 0) {
228776cb2c1cSJustin Hibbits 			if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0) {
228876cb2c1cSJustin Hibbits 				if ((if_getflags(ifp) ^ sc->nge_if_flags) &
2289f6bc9430SPyun YongHyeon 				    (IFF_PROMISC | IFF_ALLMULTI))
2290f6bc9430SPyun YongHyeon 					nge_rxfilter(sc);
2291ce4946daSBill Paul 			} else {
2292f6bc9430SPyun YongHyeon 				if ((sc->nge_flags & NGE_FLAG_DETACH) == 0)
2293ad6c618bSBill Paul 					nge_init_locked(sc);
2294ce4946daSBill Paul 			}
2295ce4946daSBill Paul 		} else {
229676cb2c1cSJustin Hibbits 			if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0)
2297ce4946daSBill Paul 				nge_stop(sc);
2298ce4946daSBill Paul 		}
229976cb2c1cSJustin Hibbits 		sc->nge_if_flags = if_getflags(ifp);
2300ad6c618bSBill Paul 		NGE_UNLOCK(sc);
2301ce4946daSBill Paul 		error = 0;
2302ce4946daSBill Paul 		break;
2303ce4946daSBill Paul 	case SIOCADDMULTI:
2304ce4946daSBill Paul 	case SIOCDELMULTI:
2305ad6c618bSBill Paul 		NGE_LOCK(sc);
230676cb2c1cSJustin Hibbits 		if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0)
2307f6bc9430SPyun YongHyeon 			nge_rxfilter(sc);
2308ad6c618bSBill Paul 		NGE_UNLOCK(sc);
2309ce4946daSBill Paul 		break;
2310ce4946daSBill Paul 	case SIOCGIFMEDIA:
2311ce4946daSBill Paul 	case SIOCSIFMEDIA:
2312ce4946daSBill Paul 		mii = device_get_softc(sc->nge_miibus);
2313f6bc9430SPyun YongHyeon 		error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
2314ce4946daSBill Paul 		break;
231537f5f239SRuslan Ermilov 	case SIOCSIFCAP:
231640929967SGleb Smirnoff 		NGE_LOCK(sc);
231776cb2c1cSJustin Hibbits 		mask = ifr->ifr_reqcap ^ if_getcapenable(ifp);
2318f6bc9430SPyun YongHyeon #ifdef DEVICE_POLLING
2319f6bc9430SPyun YongHyeon 		if ((mask & IFCAP_POLLING) != 0 &&
232076cb2c1cSJustin Hibbits 		    (IFCAP_POLLING & if_getcapabilities(ifp)) != 0) {
232176cb2c1cSJustin Hibbits 			if_togglecapenable(ifp, IFCAP_POLLING);
232276cb2c1cSJustin Hibbits 			if ((IFCAP_POLLING & if_getcapenable(ifp)) != 0) {
2323f6bc9430SPyun YongHyeon 				error = ether_poll_register(nge_poll, ifp);
2324f6bc9430SPyun YongHyeon 				if (error != 0) {
232540929967SGleb Smirnoff 					NGE_UNLOCK(sc);
2326f6bc9430SPyun YongHyeon 					break;
232740929967SGleb Smirnoff 				}
2328f6bc9430SPyun YongHyeon 				/* Disable interrupts. */
2329f6bc9430SPyun YongHyeon 				CSR_WRITE_4(sc, NGE_IER, 0);
2330f6bc9430SPyun YongHyeon 			} else {
233140929967SGleb Smirnoff 				error = ether_poll_deregister(ifp);
233240929967SGleb Smirnoff 				/* Enable interrupts. */
233340929967SGleb Smirnoff 				CSR_WRITE_4(sc, NGE_IER, 1);
2334f6bc9430SPyun YongHyeon 			}
233540929967SGleb Smirnoff 		}
233640929967SGleb Smirnoff #endif /* DEVICE_POLLING */
2337f6bc9430SPyun YongHyeon 		if ((mask & IFCAP_TXCSUM) != 0 &&
233876cb2c1cSJustin Hibbits 		    (IFCAP_TXCSUM & if_getcapabilities(ifp)) != 0) {
233976cb2c1cSJustin Hibbits 			if_togglecapenable(ifp, IFCAP_TXCSUM);
234076cb2c1cSJustin Hibbits 			if ((IFCAP_TXCSUM & if_getcapenable(ifp)) != 0)
234176cb2c1cSJustin Hibbits 				if_sethwassistbits(ifp, NGE_CSUM_FEATURES, 0);
2342f6bc9430SPyun YongHyeon 			else
234376cb2c1cSJustin Hibbits 				if_sethwassistbits(ifp, 0, NGE_CSUM_FEATURES);
2344f6bc9430SPyun YongHyeon 		}
2345f6bc9430SPyun YongHyeon 		if ((mask & IFCAP_RXCSUM) != 0 &&
234676cb2c1cSJustin Hibbits 		    (IFCAP_RXCSUM & if_getcapabilities(ifp)) != 0)
234776cb2c1cSJustin Hibbits 			if_togglecapenable(ifp, IFCAP_RXCSUM);
2348f6bc9430SPyun YongHyeon 
2349f6bc9430SPyun YongHyeon 		if ((mask & IFCAP_WOL) != 0 &&
235076cb2c1cSJustin Hibbits 		    (if_getcapabilities(ifp) & IFCAP_WOL) != 0) {
2351f6bc9430SPyun YongHyeon 			if ((mask & IFCAP_WOL_UCAST) != 0)
235276cb2c1cSJustin Hibbits 				if_togglecapenable(ifp, IFCAP_WOL_UCAST);
2353f6bc9430SPyun YongHyeon 			if ((mask & IFCAP_WOL_MCAST) != 0)
235476cb2c1cSJustin Hibbits 				if_togglecapenable(ifp, IFCAP_WOL_MCAST);
2355f6bc9430SPyun YongHyeon 			if ((mask & IFCAP_WOL_MAGIC) != 0)
235676cb2c1cSJustin Hibbits 				if_togglecapenable(ifp, IFCAP_WOL_MAGIC);
2357f6bc9430SPyun YongHyeon 		}
2358f6bc9430SPyun YongHyeon 
2359f6bc9430SPyun YongHyeon 		if ((mask & IFCAP_VLAN_HWCSUM) != 0 &&
236076cb2c1cSJustin Hibbits 		    (if_getcapabilities(ifp) & IFCAP_VLAN_HWCSUM) != 0)
236176cb2c1cSJustin Hibbits 			if_togglecapenable(ifp, IFCAP_VLAN_HWCSUM);
2362f6bc9430SPyun YongHyeon 		if ((mask & IFCAP_VLAN_HWTAGGING) != 0 &&
236376cb2c1cSJustin Hibbits 		    (if_getcapabilities(ifp) & IFCAP_VLAN_HWTAGGING) != 0) {
236476cb2c1cSJustin Hibbits 			if_togglecapenable(ifp, IFCAP_VLAN_HWTAGGING);
236576cb2c1cSJustin Hibbits 			if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0) {
236676cb2c1cSJustin Hibbits 				if ((if_getcapenable(ifp) &
2367f6bc9430SPyun YongHyeon 				    IFCAP_VLAN_HWTAGGING) != 0)
2368f6bc9430SPyun YongHyeon 					NGE_SETBIT(sc,
2369f6bc9430SPyun YongHyeon 					    NGE_VLAN_IP_RXCTL,
2370f6bc9430SPyun YongHyeon 					    NGE_VIPRXCTL_TAG_STRIP_ENB);
2371f6bc9430SPyun YongHyeon 				else
2372f6bc9430SPyun YongHyeon 					NGE_CLRBIT(sc,
2373f6bc9430SPyun YongHyeon 					    NGE_VLAN_IP_RXCTL,
2374f6bc9430SPyun YongHyeon 					    NGE_VIPRXCTL_TAG_STRIP_ENB);
2375f6bc9430SPyun YongHyeon 			}
2376f6bc9430SPyun YongHyeon 		}
2377f6bc9430SPyun YongHyeon 		/*
2378f6bc9430SPyun YongHyeon 		 * Both VLAN hardware tagging and checksum offload is
2379f6bc9430SPyun YongHyeon 		 * required to do checksum offload on VLAN interface.
2380f6bc9430SPyun YongHyeon 		 */
238176cb2c1cSJustin Hibbits 		if ((if_getcapenable(ifp) & IFCAP_TXCSUM) == 0)
238276cb2c1cSJustin Hibbits 			if_setcapenablebit(ifp, 0, IFCAP_VLAN_HWCSUM);
238376cb2c1cSJustin Hibbits 		if ((if_getcapenable(ifp) & IFCAP_VLAN_HWTAGGING) == 0)
238476cb2c1cSJustin Hibbits 			if_setcapenablebit(ifp, 0, IFCAP_VLAN_HWCSUM);
2385f6bc9430SPyun YongHyeon 		NGE_UNLOCK(sc);
2386f6bc9430SPyun YongHyeon 		VLAN_CAPABILITIES(ifp);
238737f5f239SRuslan Ermilov 		break;
2388ce4946daSBill Paul 	default:
2389673d9191SSam Leffler 		error = ether_ioctl(ifp, command, data);
2390ce4946daSBill Paul 		break;
2391ce4946daSBill Paul 	}
2392ce4946daSBill Paul 
2393ce4946daSBill Paul 	return (error);
2394ce4946daSBill Paul }
2395ce4946daSBill Paul 
2396eaabec55SAlfred Perlstein static void
nge_watchdog(struct nge_softc * sc)2397f6bc9430SPyun YongHyeon nge_watchdog(struct nge_softc *sc)
2398ce4946daSBill Paul {
239976cb2c1cSJustin Hibbits 	if_t ifp;
2400ce4946daSBill Paul 
2401f6bc9430SPyun YongHyeon 	NGE_LOCK_ASSERT(sc);
2402ce4946daSBill Paul 
2403f6bc9430SPyun YongHyeon 	if (sc->nge_watchdog_timer == 0 || --sc->nge_watchdog_timer)
2404f6bc9430SPyun YongHyeon 		return;
2405f6bc9430SPyun YongHyeon 
2406f6bc9430SPyun YongHyeon 	ifp = sc->nge_ifp;
2407e09fdb02SGleb Smirnoff 	if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
24086b9f5c94SGleb Smirnoff 	if_printf(ifp, "watchdog timeout\n");
2409ce4946daSBill Paul 
241076cb2c1cSJustin Hibbits 	if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
2411ad6c618bSBill Paul 	nge_init_locked(sc);
2412ce4946daSBill Paul 
241376cb2c1cSJustin Hibbits 	if (!if_sendq_empty(ifp))
2414ad6c618bSBill Paul 		nge_start_locked(ifp);
2415f6bc9430SPyun YongHyeon }
2416ad6c618bSBill Paul 
2417f6bc9430SPyun YongHyeon static int
nge_stop_mac(struct nge_softc * sc)2418f6bc9430SPyun YongHyeon nge_stop_mac(struct nge_softc *sc)
2419f6bc9430SPyun YongHyeon {
2420f6bc9430SPyun YongHyeon 	uint32_t reg;
2421f6bc9430SPyun YongHyeon 	int i;
2422f6bc9430SPyun YongHyeon 
2423f6bc9430SPyun YongHyeon 	NGE_LOCK_ASSERT(sc);
2424f6bc9430SPyun YongHyeon 
2425f6bc9430SPyun YongHyeon 	reg = CSR_READ_4(sc, NGE_CSR);
2426f6bc9430SPyun YongHyeon 	if ((reg & (NGE_CSR_TX_ENABLE | NGE_CSR_RX_ENABLE)) != 0) {
2427f6bc9430SPyun YongHyeon 		reg &= ~(NGE_CSR_TX_ENABLE | NGE_CSR_RX_ENABLE);
2428f6bc9430SPyun YongHyeon 		reg |= NGE_CSR_TX_DISABLE | NGE_CSR_RX_DISABLE;
2429f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, NGE_CSR, reg);
2430f6bc9430SPyun YongHyeon 		for (i = 0; i < NGE_TIMEOUT; i++) {
2431f6bc9430SPyun YongHyeon 			DELAY(1);
2432f6bc9430SPyun YongHyeon 			if ((CSR_READ_4(sc, NGE_CSR) &
2433f6bc9430SPyun YongHyeon 			    (NGE_CSR_RX_ENABLE | NGE_CSR_TX_ENABLE)) == 0)
2434f6bc9430SPyun YongHyeon 				break;
2435f6bc9430SPyun YongHyeon 		}
2436f6bc9430SPyun YongHyeon 		if (i == NGE_TIMEOUT)
2437f6bc9430SPyun YongHyeon 			return (ETIMEDOUT);
2438f6bc9430SPyun YongHyeon 	}
2439f6bc9430SPyun YongHyeon 
2440f6bc9430SPyun YongHyeon 	return (0);
2441ce4946daSBill Paul }
2442ce4946daSBill Paul 
2443ce4946daSBill Paul /*
2444ce4946daSBill Paul  * Stop the adapter and free any mbufs allocated to the
2445ce4946daSBill Paul  * RX and TX lists.
2446ce4946daSBill Paul  */
2447eaabec55SAlfred Perlstein static void
nge_stop(struct nge_softc * sc)2448284c81cbSPyun YongHyeon nge_stop(struct nge_softc *sc)
2449ce4946daSBill Paul {
2450f6bc9430SPyun YongHyeon 	struct nge_txdesc *txd;
2451f6bc9430SPyun YongHyeon 	struct nge_rxdesc *rxd;
24522cf2d799SPyun YongHyeon 	int i;
245376cb2c1cSJustin Hibbits 	if_t ifp;
2454ce4946daSBill Paul 
2455ad6c618bSBill Paul 	NGE_LOCK_ASSERT(sc);
2456fc74a9f9SBrooks Davis 	ifp = sc->nge_ifp;
2457ce4946daSBill Paul 
245876cb2c1cSJustin Hibbits 	if_setdrvflagbits(ifp, 0, (IFF_DRV_RUNNING | IFF_DRV_OACTIVE));
2459f6bc9430SPyun YongHyeon 	sc->nge_flags &= ~NGE_FLAG_LINK;
2460f6bc9430SPyun YongHyeon 	callout_stop(&sc->nge_stat_ch);
2461f6bc9430SPyun YongHyeon 	sc->nge_watchdog_timer = 0;
2462f6bc9430SPyun YongHyeon 
2463f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_IER, 0);
2464f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_IMR, 0);
2465f6bc9430SPyun YongHyeon 	if (nge_stop_mac(sc) == ETIMEDOUT)
2466f6bc9430SPyun YongHyeon 		device_printf(sc->nge_dev,
2467f6bc9430SPyun YongHyeon 		   "%s: unable to stop Tx/Rx MAC\n", __func__);
2468f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_TX_LISTPTR_HI, 0);
2469f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_TX_LISTPTR_LO, 0);
2470f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_RX_LISTPTR_HI, 0);
2471f6bc9430SPyun YongHyeon 	CSR_WRITE_4(sc, NGE_RX_LISTPTR_LO, 0);
2472f6bc9430SPyun YongHyeon 	nge_stats_update(sc);
2473f6bc9430SPyun YongHyeon 	if (sc->nge_head != NULL) {
2474f6bc9430SPyun YongHyeon 		m_freem(sc->nge_head);
2475f6bc9430SPyun YongHyeon 		sc->nge_head = sc->nge_tail = NULL;
2476f6bc9430SPyun YongHyeon 	}
2477f6bc9430SPyun YongHyeon 
2478f6bc9430SPyun YongHyeon 	/*
2479f6bc9430SPyun YongHyeon 	 * Free RX and TX mbufs still in the queues.
2480f6bc9430SPyun YongHyeon 	 */
2481f6bc9430SPyun YongHyeon 	for (i = 0; i < NGE_RX_RING_CNT; i++) {
2482f6bc9430SPyun YongHyeon 		rxd = &sc->nge_cdata.nge_rxdesc[i];
2483f6bc9430SPyun YongHyeon 		if (rxd->rx_m != NULL) {
2484f6bc9430SPyun YongHyeon 			bus_dmamap_sync(sc->nge_cdata.nge_rx_tag,
2485f6bc9430SPyun YongHyeon 			    rxd->rx_dmamap, BUS_DMASYNC_POSTREAD);
2486f6bc9430SPyun YongHyeon 			bus_dmamap_unload(sc->nge_cdata.nge_rx_tag,
2487f6bc9430SPyun YongHyeon 			    rxd->rx_dmamap);
2488f6bc9430SPyun YongHyeon 			m_freem(rxd->rx_m);
2489f6bc9430SPyun YongHyeon 			rxd->rx_m = NULL;
2490f6bc9430SPyun YongHyeon 		}
2491f6bc9430SPyun YongHyeon 	}
2492f6bc9430SPyun YongHyeon 	for (i = 0; i < NGE_TX_RING_CNT; i++) {
2493f6bc9430SPyun YongHyeon 		txd = &sc->nge_cdata.nge_txdesc[i];
2494f6bc9430SPyun YongHyeon 		if (txd->tx_m != NULL) {
2495f6bc9430SPyun YongHyeon 			bus_dmamap_sync(sc->nge_cdata.nge_tx_tag,
2496f6bc9430SPyun YongHyeon 			    txd->tx_dmamap, BUS_DMASYNC_POSTWRITE);
2497f6bc9430SPyun YongHyeon 			bus_dmamap_unload(sc->nge_cdata.nge_tx_tag,
2498f6bc9430SPyun YongHyeon 			    txd->tx_dmamap);
2499f6bc9430SPyun YongHyeon 			m_freem(txd->tx_m);
2500f6bc9430SPyun YongHyeon 			txd->tx_m = NULL;
2501f6bc9430SPyun YongHyeon 		}
2502f6bc9430SPyun YongHyeon 	}
2503f6bc9430SPyun YongHyeon }
2504f6bc9430SPyun YongHyeon 
2505f6bc9430SPyun YongHyeon /*
2506f6bc9430SPyun YongHyeon  * Before setting WOL bits, caller should have stopped Receiver.
2507f6bc9430SPyun YongHyeon  */
2508f6bc9430SPyun YongHyeon static void
nge_wol(struct nge_softc * sc)2509f6bc9430SPyun YongHyeon nge_wol(struct nge_softc *sc)
2510f6bc9430SPyun YongHyeon {
251176cb2c1cSJustin Hibbits 	if_t ifp;
2512f6bc9430SPyun YongHyeon 	uint32_t reg;
2513f6bc9430SPyun YongHyeon 
2514f6bc9430SPyun YongHyeon 	NGE_LOCK_ASSERT(sc);
2515f6bc9430SPyun YongHyeon 
2516*ddaf6524SJohn Baldwin 	if (!pci_has_pm(sc->nge_dev))
2517f6bc9430SPyun YongHyeon 		return;
2518f6bc9430SPyun YongHyeon 
2519f6bc9430SPyun YongHyeon 	ifp = sc->nge_ifp;
252076cb2c1cSJustin Hibbits 	if ((if_getcapenable(ifp) & IFCAP_WOL) == 0) {
2521f6bc9430SPyun YongHyeon 		/* Disable WOL & disconnect CLKRUN to save power. */
2522f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, NGE_WOLCSR, 0);
2523f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, NGE_CLKRUN, 0);
2524f6bc9430SPyun YongHyeon 	} else {
2525f6bc9430SPyun YongHyeon 		if (nge_stop_mac(sc) == ETIMEDOUT)
2526f6bc9430SPyun YongHyeon 			device_printf(sc->nge_dev,
2527f6bc9430SPyun YongHyeon 			    "%s: unable to stop Tx/Rx MAC\n", __func__);
2528f6bc9430SPyun YongHyeon 		/*
2529f6bc9430SPyun YongHyeon 		 * Make sure wake frames will be buffered in the Rx FIFO.
2530f6bc9430SPyun YongHyeon 		 * (i.e. Silent Rx mode.)
2531f6bc9430SPyun YongHyeon 		 */
2532f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, NGE_RX_LISTPTR_HI, 0);
25338c1093fcSMarius Strobl 		CSR_BARRIER_4(sc, NGE_RX_LISTPTR_HI, BUS_SPACE_BARRIER_WRITE);
2534f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, NGE_RX_LISTPTR_LO, 0);
25358c1093fcSMarius Strobl 		CSR_BARRIER_4(sc, NGE_RX_LISTPTR_LO, BUS_SPACE_BARRIER_WRITE);
2536f6bc9430SPyun YongHyeon 		/* Enable Rx again. */
2537f6bc9430SPyun YongHyeon 		NGE_SETBIT(sc, NGE_CSR, NGE_CSR_RX_ENABLE);
25388c1093fcSMarius Strobl 		CSR_BARRIER_4(sc, NGE_CSR, BUS_SPACE_BARRIER_WRITE);
2539f6bc9430SPyun YongHyeon 
2540f6bc9430SPyun YongHyeon 		/* Configure WOL events. */
2541f6bc9430SPyun YongHyeon 		reg = 0;
254276cb2c1cSJustin Hibbits 		if ((if_getcapenable(ifp) & IFCAP_WOL_UCAST) != 0)
2543f6bc9430SPyun YongHyeon 			reg |= NGE_WOLCSR_WAKE_ON_UNICAST;
254476cb2c1cSJustin Hibbits 		if ((if_getcapenable(ifp) & IFCAP_WOL_MCAST) != 0)
2545f6bc9430SPyun YongHyeon 			reg |= NGE_WOLCSR_WAKE_ON_MULTICAST;
254676cb2c1cSJustin Hibbits 		if ((if_getcapenable(ifp) & IFCAP_WOL_MAGIC) != 0)
2547f6bc9430SPyun YongHyeon 			reg |= NGE_WOLCSR_WAKE_ON_MAGICPKT;
2548f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, NGE_WOLCSR, reg);
2549f6bc9430SPyun YongHyeon 
2550f6bc9430SPyun YongHyeon 		/* Activate CLKRUN. */
2551f6bc9430SPyun YongHyeon 		reg = CSR_READ_4(sc, NGE_CLKRUN);
2552f6bc9430SPyun YongHyeon 		reg |= NGE_CLKRUN_PMEENB | NGE_CLNRUN_CLKRUN_ENB;
2553f6bc9430SPyun YongHyeon 		CSR_WRITE_4(sc, NGE_CLKRUN, reg);
2554f6bc9430SPyun YongHyeon 	}
2555f6bc9430SPyun YongHyeon 
2556f6bc9430SPyun YongHyeon 	/* Request PME. */
255776cb2c1cSJustin Hibbits 	if ((if_getcapenable(ifp) & IFCAP_WOL) != 0)
2558*ddaf6524SJohn Baldwin 		pci_enable_pme(sc->nge_dev);
2559ce4946daSBill Paul }
2560ce4946daSBill Paul 
2561ce4946daSBill Paul /*
2562ce4946daSBill Paul  * Stop all chip I/O so that the kernel's probe routines don't
2563ce4946daSBill Paul  * get confused by errant DMAs when rebooting.
2564ce4946daSBill Paul  */
25656a087a87SPyun YongHyeon static int
nge_shutdown(device_t dev)2566284c81cbSPyun YongHyeon nge_shutdown(device_t dev)
2567ce4946daSBill Paul {
2568f6bc9430SPyun YongHyeon 
2569f6bc9430SPyun YongHyeon 	return (nge_suspend(dev));
2570f6bc9430SPyun YongHyeon }
2571f6bc9430SPyun YongHyeon 
2572f6bc9430SPyun YongHyeon static int
nge_suspend(device_t dev)2573f6bc9430SPyun YongHyeon nge_suspend(device_t dev)
2574f6bc9430SPyun YongHyeon {
2575ce4946daSBill Paul 	struct nge_softc *sc;
2576ce4946daSBill Paul 
2577ce4946daSBill Paul 	sc = device_get_softc(dev);
2578ce4946daSBill Paul 
2579ad6c618bSBill Paul 	NGE_LOCK(sc);
2580ce4946daSBill Paul 	nge_stop(sc);
2581f6bc9430SPyun YongHyeon 	nge_wol(sc);
2582f6bc9430SPyun YongHyeon 	sc->nge_flags |= NGE_FLAG_SUSPENDED;
2583ad6c618bSBill Paul 	NGE_UNLOCK(sc);
2584ce4946daSBill Paul 
25856a087a87SPyun YongHyeon 	return (0);
2586ce4946daSBill Paul }
2587f6bc9430SPyun YongHyeon 
2588f6bc9430SPyun YongHyeon static int
nge_resume(device_t dev)2589f6bc9430SPyun YongHyeon nge_resume(device_t dev)
2590f6bc9430SPyun YongHyeon {
2591f6bc9430SPyun YongHyeon 	struct nge_softc *sc;
259276cb2c1cSJustin Hibbits 	if_t ifp;
2593f6bc9430SPyun YongHyeon 
2594f6bc9430SPyun YongHyeon 	sc = device_get_softc(dev);
2595f6bc9430SPyun YongHyeon 
2596f6bc9430SPyun YongHyeon 	NGE_LOCK(sc);
2597f6bc9430SPyun YongHyeon 	ifp = sc->nge_ifp;
259876cb2c1cSJustin Hibbits 	if (if_getflags(ifp) & IFF_UP) {
259976cb2c1cSJustin Hibbits 		if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
2600f6bc9430SPyun YongHyeon 		nge_init_locked(sc);
2601f6bc9430SPyun YongHyeon 	}
2602f6bc9430SPyun YongHyeon 
2603f6bc9430SPyun YongHyeon 	sc->nge_flags &= ~NGE_FLAG_SUSPENDED;
2604f6bc9430SPyun YongHyeon 	NGE_UNLOCK(sc);
2605f6bc9430SPyun YongHyeon 
2606f6bc9430SPyun YongHyeon 	return (0);
2607f6bc9430SPyun YongHyeon }
2608f6bc9430SPyun YongHyeon 
2609f6bc9430SPyun YongHyeon #define	NGE_SYSCTL_STAT_ADD32(c, h, n, p, d)	\
2610f6bc9430SPyun YongHyeon 	    SYSCTL_ADD_UINT(c, h, OID_AUTO, n, CTLFLAG_RD, p, 0, d)
2611f6bc9430SPyun YongHyeon 
2612f6bc9430SPyun YongHyeon static void
nge_sysctl_node(struct nge_softc * sc)2613f6bc9430SPyun YongHyeon nge_sysctl_node(struct nge_softc *sc)
2614f6bc9430SPyun YongHyeon {
2615f6bc9430SPyun YongHyeon 	struct sysctl_ctx_list *ctx;
2616f6bc9430SPyun YongHyeon 	struct sysctl_oid_list *child, *parent;
2617f6bc9430SPyun YongHyeon 	struct sysctl_oid *tree;
2618f6bc9430SPyun YongHyeon 	struct nge_stats *stats;
2619f6bc9430SPyun YongHyeon 	int error;
2620f6bc9430SPyun YongHyeon 
2621f6bc9430SPyun YongHyeon 	ctx = device_get_sysctl_ctx(sc->nge_dev);
2622f6bc9430SPyun YongHyeon 	child = SYSCTL_CHILDREN(device_get_sysctl_tree(sc->nge_dev));
2623f6bc9430SPyun YongHyeon 	SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "int_holdoff",
26247029da5cSPawel Biernacki 	    CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT, &sc->nge_int_holdoff,
26257029da5cSPawel Biernacki 	    0, sysctl_hw_nge_int_holdoff, "I", "NGE interrupt moderation");
2626f6bc9430SPyun YongHyeon 	/* Pull in device tunables. */
2627f6bc9430SPyun YongHyeon 	sc->nge_int_holdoff = NGE_INT_HOLDOFF_DEFAULT;
2628f6bc9430SPyun YongHyeon 	error = resource_int_value(device_get_name(sc->nge_dev),
2629f6bc9430SPyun YongHyeon 	    device_get_unit(sc->nge_dev), "int_holdoff", &sc->nge_int_holdoff);
2630f6bc9430SPyun YongHyeon 	if (error == 0) {
2631f6bc9430SPyun YongHyeon 		if (sc->nge_int_holdoff < NGE_INT_HOLDOFF_MIN ||
2632f6bc9430SPyun YongHyeon 		    sc->nge_int_holdoff > NGE_INT_HOLDOFF_MAX ) {
2633f6bc9430SPyun YongHyeon 			device_printf(sc->nge_dev,
2634f6bc9430SPyun YongHyeon 			    "int_holdoff value out of range; "
2635f6bc9430SPyun YongHyeon 			    "using default: %d(%d us)\n",
2636f6bc9430SPyun YongHyeon 			    NGE_INT_HOLDOFF_DEFAULT,
2637f6bc9430SPyun YongHyeon 			    NGE_INT_HOLDOFF_DEFAULT * 100);
2638f6bc9430SPyun YongHyeon 			sc->nge_int_holdoff = NGE_INT_HOLDOFF_DEFAULT;
2639f6bc9430SPyun YongHyeon 		}
2640f6bc9430SPyun YongHyeon 	}
2641f6bc9430SPyun YongHyeon 
2642f6bc9430SPyun YongHyeon 	stats = &sc->nge_stats;
26437029da5cSPawel Biernacki 	tree = SYSCTL_ADD_NODE(ctx, child, OID_AUTO, "stats",
26447029da5cSPawel Biernacki 	    CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, "NGE statistics");
2645f6bc9430SPyun YongHyeon 	parent = SYSCTL_CHILDREN(tree);
2646f6bc9430SPyun YongHyeon 
2647f6bc9430SPyun YongHyeon 	/* Rx statistics. */
26487029da5cSPawel Biernacki 	tree = SYSCTL_ADD_NODE(ctx, parent, OID_AUTO, "rx",
26497029da5cSPawel Biernacki 	    CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, "Rx MAC statistics");
2650f6bc9430SPyun YongHyeon 	child = SYSCTL_CHILDREN(tree);
2651f6bc9430SPyun YongHyeon 	NGE_SYSCTL_STAT_ADD32(ctx, child, "pkts_errs",
2652f6bc9430SPyun YongHyeon 	    &stats->rx_pkts_errs,
2653f6bc9430SPyun YongHyeon 	    "Packet errors including both wire errors and FIFO overruns");
2654f6bc9430SPyun YongHyeon 	NGE_SYSCTL_STAT_ADD32(ctx, child, "crc_errs",
2655f6bc9430SPyun YongHyeon 	    &stats->rx_crc_errs, "CRC errors");
2656f6bc9430SPyun YongHyeon 	NGE_SYSCTL_STAT_ADD32(ctx, child, "fifo_oflows",
2657f6bc9430SPyun YongHyeon 	    &stats->rx_fifo_oflows, "FIFO overflows");
2658f6bc9430SPyun YongHyeon 	NGE_SYSCTL_STAT_ADD32(ctx, child, "align_errs",
2659f6bc9430SPyun YongHyeon 	    &stats->rx_align_errs, "Frame alignment errors");
2660f6bc9430SPyun YongHyeon 	NGE_SYSCTL_STAT_ADD32(ctx, child, "sym_errs",
2661f6bc9430SPyun YongHyeon 	    &stats->rx_sym_errs, "One or more symbol errors");
2662f6bc9430SPyun YongHyeon 	NGE_SYSCTL_STAT_ADD32(ctx, child, "pkts_jumbos",
2663f6bc9430SPyun YongHyeon 	    &stats->rx_pkts_jumbos,
2664f6bc9430SPyun YongHyeon 	    "Packets received with length greater than 1518 bytes");
2665f6bc9430SPyun YongHyeon 	NGE_SYSCTL_STAT_ADD32(ctx, child, "len_errs",
2666f6bc9430SPyun YongHyeon 	    &stats->rx_len_errs, "In Range Length errors");
2667f6bc9430SPyun YongHyeon 	NGE_SYSCTL_STAT_ADD32(ctx, child, "unctl_frames",
2668f6bc9430SPyun YongHyeon 	    &stats->rx_unctl_frames, "Control frames with unsupported opcode");
2669f6bc9430SPyun YongHyeon 	NGE_SYSCTL_STAT_ADD32(ctx, child, "pause",
2670f6bc9430SPyun YongHyeon 	    &stats->rx_pause, "Pause frames");
2671f6bc9430SPyun YongHyeon 
2672f6bc9430SPyun YongHyeon 	/* Tx statistics. */
26737029da5cSPawel Biernacki 	tree = SYSCTL_ADD_NODE(ctx, parent, OID_AUTO, "tx",
26747029da5cSPawel Biernacki 	    CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, "Tx MAC statistics");
2675f6bc9430SPyun YongHyeon 	child = SYSCTL_CHILDREN(tree);
2676f6bc9430SPyun YongHyeon 	NGE_SYSCTL_STAT_ADD32(ctx, child, "pause",
2677f6bc9430SPyun YongHyeon 	    &stats->tx_pause, "Pause frames");
2678f6bc9430SPyun YongHyeon 	NGE_SYSCTL_STAT_ADD32(ctx, child, "seq_errs",
2679f6bc9430SPyun YongHyeon 	    &stats->tx_seq_errs,
2680f6bc9430SPyun YongHyeon 	    "Loss of collision heartbeat during transmission");
2681f6bc9430SPyun YongHyeon }
2682f6bc9430SPyun YongHyeon 
2683f6bc9430SPyun YongHyeon #undef NGE_SYSCTL_STAT_ADD32
2684f6bc9430SPyun YongHyeon 
2685f6bc9430SPyun YongHyeon static int
sysctl_int_range(SYSCTL_HANDLER_ARGS,int low,int high)2686f6bc9430SPyun YongHyeon sysctl_int_range(SYSCTL_HANDLER_ARGS, int low, int high)
2687f6bc9430SPyun YongHyeon {
2688f6bc9430SPyun YongHyeon 	int error, value;
2689f6bc9430SPyun YongHyeon 
2690f6bc9430SPyun YongHyeon 	if (arg1 == NULL)
2691f6bc9430SPyun YongHyeon 		return (EINVAL);
2692f6bc9430SPyun YongHyeon 	value = *(int *)arg1;
2693f6bc9430SPyun YongHyeon 	error = sysctl_handle_int(oidp, &value, 0, req);
2694f6bc9430SPyun YongHyeon 	if (error != 0 || req->newptr == NULL)
2695f6bc9430SPyun YongHyeon 		return (error);
2696f6bc9430SPyun YongHyeon 	if (value < low || value > high)
2697f6bc9430SPyun YongHyeon 		return (EINVAL);
2698f6bc9430SPyun YongHyeon 	*(int *)arg1 = value;
2699f6bc9430SPyun YongHyeon 
2700f6bc9430SPyun YongHyeon 	return (0);
2701f6bc9430SPyun YongHyeon }
2702f6bc9430SPyun YongHyeon 
2703f6bc9430SPyun YongHyeon static int
sysctl_hw_nge_int_holdoff(SYSCTL_HANDLER_ARGS)2704f6bc9430SPyun YongHyeon sysctl_hw_nge_int_holdoff(SYSCTL_HANDLER_ARGS)
2705f6bc9430SPyun YongHyeon {
2706f6bc9430SPyun YongHyeon 
2707f6bc9430SPyun YongHyeon 	return (sysctl_int_range(oidp, arg1, arg2, req, NGE_INT_HOLDOFF_MIN,
2708f6bc9430SPyun YongHyeon 	    NGE_INT_HOLDOFF_MAX));
2709f6bc9430SPyun YongHyeon }
2710