xref: /freebsd/sys/dev/re/if_re.c (revision ff19136537d28d2465e1324db04e451d61943f5b)
1098ca2bdSWarner Losh /*-
2a94100faSBill Paul  * Copyright (c) 1997, 1998-2003
3a94100faSBill Paul  *	Bill Paul <wpaul@windriver.com>.  All rights reserved.
4a94100faSBill Paul  *
5a94100faSBill Paul  * Redistribution and use in source and binary forms, with or without
6a94100faSBill Paul  * modification, are permitted provided that the following conditions
7a94100faSBill Paul  * are met:
8a94100faSBill Paul  * 1. Redistributions of source code must retain the above copyright
9a94100faSBill Paul  *    notice, this list of conditions and the following disclaimer.
10a94100faSBill Paul  * 2. Redistributions in binary form must reproduce the above copyright
11a94100faSBill Paul  *    notice, this list of conditions and the following disclaimer in the
12a94100faSBill Paul  *    documentation and/or other materials provided with the distribution.
13a94100faSBill Paul  * 3. All advertising materials mentioning features or use of this software
14a94100faSBill Paul  *    must display the following acknowledgement:
15a94100faSBill Paul  *	This product includes software developed by Bill Paul.
16a94100faSBill Paul  * 4. Neither the name of the author nor the names of any co-contributors
17a94100faSBill Paul  *    may be used to endorse or promote products derived from this software
18a94100faSBill Paul  *    without specific prior written permission.
19a94100faSBill Paul  *
20a94100faSBill Paul  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
21a94100faSBill Paul  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22a94100faSBill Paul  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23a94100faSBill Paul  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
24a94100faSBill Paul  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25a94100faSBill Paul  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26a94100faSBill Paul  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27a94100faSBill Paul  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28a94100faSBill Paul  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29a94100faSBill Paul  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30a94100faSBill Paul  * THE POSSIBILITY OF SUCH DAMAGE.
31a94100faSBill Paul  */
32a94100faSBill Paul 
334dc52c32SDavid E. O'Brien #include <sys/cdefs.h>
344dc52c32SDavid E. O'Brien __FBSDID("$FreeBSD$");
354dc52c32SDavid E. O'Brien 
36a94100faSBill Paul /*
37ed510fb0SBill Paul  * RealTek 8139C+/8169/8169S/8110S/8168/8111/8101E PCI NIC driver
38a94100faSBill Paul  *
39a94100faSBill Paul  * Written by Bill Paul <wpaul@windriver.com>
40a94100faSBill Paul  * Senior Networking Software Engineer
41a94100faSBill Paul  * Wind River Systems
42a94100faSBill Paul  */
43a94100faSBill Paul 
44a94100faSBill Paul /*
45a94100faSBill Paul  * This driver is designed to support RealTek's next generation of
46a94100faSBill Paul  * 10/100 and 10/100/1000 PCI ethernet controllers. There are currently
47ed510fb0SBill Paul  * seven devices in this family: the RTL8139C+, the RTL8169, the RTL8169S,
48ed510fb0SBill Paul  * RTL8110S, the RTL8168, the RTL8111 and the RTL8101E.
49a94100faSBill Paul  *
50a94100faSBill Paul  * The 8139C+ is a 10/100 ethernet chip. It is backwards compatible
51a94100faSBill Paul  * with the older 8139 family, however it also supports a special
52a94100faSBill Paul  * C+ mode of operation that provides several new performance enhancing
53a94100faSBill Paul  * features. These include:
54a94100faSBill Paul  *
55a94100faSBill Paul  *	o Descriptor based DMA mechanism. Each descriptor represents
56a94100faSBill Paul  *	  a single packet fragment. Data buffers may be aligned on
57a94100faSBill Paul  *	  any byte boundary.
58a94100faSBill Paul  *
59a94100faSBill Paul  *	o 64-bit DMA
60a94100faSBill Paul  *
61a94100faSBill Paul  *	o TCP/IP checksum offload for both RX and TX
62a94100faSBill Paul  *
63a94100faSBill Paul  *	o High and normal priority transmit DMA rings
64a94100faSBill Paul  *
65a94100faSBill Paul  *	o VLAN tag insertion and extraction
66a94100faSBill Paul  *
67a94100faSBill Paul  *	o TCP large send (segmentation offload)
68a94100faSBill Paul  *
69a94100faSBill Paul  * Like the 8139, the 8139C+ also has a built-in 10/100 PHY. The C+
70a94100faSBill Paul  * programming API is fairly straightforward. The RX filtering, EEPROM
71a94100faSBill Paul  * access and PHY access is the same as it is on the older 8139 series
72a94100faSBill Paul  * chips.
73a94100faSBill Paul  *
74a94100faSBill Paul  * The 8169 is a 64-bit 10/100/1000 gigabit ethernet MAC. It has almost the
75a94100faSBill Paul  * same programming API and feature set as the 8139C+ with the following
76a94100faSBill Paul  * differences and additions:
77a94100faSBill Paul  *
78a94100faSBill Paul  *	o 1000Mbps mode
79a94100faSBill Paul  *
80a94100faSBill Paul  *	o Jumbo frames
81a94100faSBill Paul  *
82a94100faSBill Paul  *	o GMII and TBI ports/registers for interfacing with copper
83a94100faSBill Paul  *	  or fiber PHYs
84a94100faSBill Paul  *
85a94100faSBill Paul  *	o RX and TX DMA rings can have up to 1024 descriptors
86a94100faSBill Paul  *	  (the 8139C+ allows a maximum of 64)
87a94100faSBill Paul  *
88a94100faSBill Paul  *	o Slight differences in register layout from the 8139C+
89a94100faSBill Paul  *
90a94100faSBill Paul  * The TX start and timer interrupt registers are at different locations
91a94100faSBill Paul  * on the 8169 than they are on the 8139C+. Also, the status word in the
92a94100faSBill Paul  * RX descriptor has a slightly different bit layout. The 8169 does not
93a94100faSBill Paul  * have a built-in PHY. Most reference boards use a Marvell 88E1000 'Alaska'
94a94100faSBill Paul  * copper gigE PHY.
95a94100faSBill Paul  *
96a94100faSBill Paul  * The 8169S/8110S 10/100/1000 devices have built-in copper gigE PHYs
97a94100faSBill Paul  * (the 'S' stands for 'single-chip'). These devices have the same
98a94100faSBill Paul  * programming API as the older 8169, but also have some vendor-specific
99a94100faSBill Paul  * registers for the on-board PHY. The 8110S is a LAN-on-motherboard
100a94100faSBill Paul  * part designed to be pin-compatible with the RealTek 8100 10/100 chip.
101a94100faSBill Paul  *
102a94100faSBill Paul  * This driver takes advantage of the RX and TX checksum offload and
103a94100faSBill Paul  * VLAN tag insertion/extraction features. It also implements TX
104a94100faSBill Paul  * interrupt moderation using the timer interrupt registers, which
105a94100faSBill Paul  * significantly reduces TX interrupt load. There is also support
106a94100faSBill Paul  * for jumbo frames, however the 8169/8169S/8110S can not transmit
10722a11c96SJohn-Mark Gurney  * jumbo frames larger than 7440, so the max MTU possible with this
10822a11c96SJohn-Mark Gurney  * driver is 7422 bytes.
109a94100faSBill Paul  */
110a94100faSBill Paul 
111f0796cd2SGleb Smirnoff #ifdef HAVE_KERNEL_OPTION_HEADERS
112f0796cd2SGleb Smirnoff #include "opt_device_polling.h"
113f0796cd2SGleb Smirnoff #endif
114f0796cd2SGleb Smirnoff 
115a94100faSBill Paul #include <sys/param.h>
116a94100faSBill Paul #include <sys/endian.h>
117a94100faSBill Paul #include <sys/systm.h>
118a94100faSBill Paul #include <sys/sockio.h>
119a94100faSBill Paul #include <sys/mbuf.h>
120a94100faSBill Paul #include <sys/malloc.h>
121fe12f24bSPoul-Henning Kamp #include <sys/module.h>
122a94100faSBill Paul #include <sys/kernel.h>
123a94100faSBill Paul #include <sys/socket.h>
124ed510fb0SBill Paul #include <sys/lock.h>
125ed510fb0SBill Paul #include <sys/mutex.h>
126ed510fb0SBill Paul #include <sys/taskqueue.h>
127a94100faSBill Paul 
128a94100faSBill Paul #include <net/if.h>
129a94100faSBill Paul #include <net/if_arp.h>
130a94100faSBill Paul #include <net/ethernet.h>
131a94100faSBill Paul #include <net/if_dl.h>
132a94100faSBill Paul #include <net/if_media.h>
133fc74a9f9SBrooks Davis #include <net/if_types.h>
134a94100faSBill Paul #include <net/if_vlan_var.h>
135a94100faSBill Paul 
136a94100faSBill Paul #include <net/bpf.h>
137a94100faSBill Paul 
138a94100faSBill Paul #include <machine/bus.h>
139a94100faSBill Paul #include <machine/resource.h>
140a94100faSBill Paul #include <sys/bus.h>
141a94100faSBill Paul #include <sys/rman.h>
142a94100faSBill Paul 
143a94100faSBill Paul #include <dev/mii/mii.h>
144a94100faSBill Paul #include <dev/mii/miivar.h>
145a94100faSBill Paul 
146a94100faSBill Paul #include <dev/pci/pcireg.h>
147a94100faSBill Paul #include <dev/pci/pcivar.h>
148a94100faSBill Paul 
149d65abd66SPyun YongHyeon #include <pci/if_rlreg.h>
150d65abd66SPyun YongHyeon 
151a94100faSBill Paul MODULE_DEPEND(re, pci, 1, 1, 1);
152a94100faSBill Paul MODULE_DEPEND(re, ether, 1, 1, 1);
153a94100faSBill Paul MODULE_DEPEND(re, miibus, 1, 1, 1);
154a94100faSBill Paul 
155298bfdf3SWarner Losh /* "device miibus" required.  See GENERIC if you get errors here. */
156a94100faSBill Paul #include "miibus_if.h"
157a94100faSBill Paul 
1585774c5ffSPyun YongHyeon /* Tunables. */
1592000cf6cSPyun YongHyeon static int msi_disable = 1;
1605774c5ffSPyun YongHyeon TUNABLE_INT("hw.re.msi_disable", &msi_disable);
1615774c5ffSPyun YongHyeon 
162a94100faSBill Paul #define RE_CSUM_FEATURES    (CSUM_IP | CSUM_TCP | CSUM_UDP)
163a94100faSBill Paul 
164a94100faSBill Paul /*
165a94100faSBill Paul  * Various supported device vendors/types and their names.
166a94100faSBill Paul  */
167a94100faSBill Paul static struct rl_type re_devs[] = {
1689dfcacbeSPyun YongHyeon 	{ DLINK_VENDORID, DLINK_DEVICEID_528T, 0,
16932aa5f0eSAnton Berezin 	    "D-Link DGE-528(T) Gigabit Ethernet Adapter" },
1709dfcacbeSPyun YongHyeon 	{ RT_VENDORID, RT_DEVICEID_8139, 0,
171a94100faSBill Paul 	    "RealTek 8139C+ 10/100BaseTX" },
1729dfcacbeSPyun YongHyeon 	{ RT_VENDORID, RT_DEVICEID_8101E, 0,
173b1d62f0fSPyun YongHyeon 	    "RealTek 8101E/8102E/8102EL PCIe 10/100baseTX" },
1749dfcacbeSPyun YongHyeon 	{ RT_VENDORID, RT_DEVICEID_8168, 0,
17559ef640dSPyun YongHyeon 	    "RealTek 8168/8168B/8168C/8168CP/8168D/8111B/8111C/8111CP PCIe "
176deb5c680SPyun YongHyeon 	    "Gigabit Ethernet" },
1779dfcacbeSPyun YongHyeon 	{ RT_VENDORID, RT_DEVICEID_8169, 0,
178715922d7SPyun YongHyeon 	    "RealTek 8169/8169S/8169SB(L)/8110S/8110SB(L) Gigabit Ethernet" },
1799dfcacbeSPyun YongHyeon 	{ RT_VENDORID, RT_DEVICEID_8169SC, 0,
1802ee2c3b4SRemko Lodder 	    "RealTek 8169SC/8110SC Single-chip Gigabit Ethernet" },
1819dfcacbeSPyun YongHyeon 	{ COREGA_VENDORID, COREGA_DEVICEID_CGLAPCIGT, 0,
182ea263191SMIHIRA Sanpei Yoshiro 	    "Corega CG-LAPCIGT (RTL8169S) Gigabit Ethernet" },
1839dfcacbeSPyun YongHyeon 	{ LINKSYS_VENDORID, LINKSYS_DEVICEID_EG1032, 0,
18426390635SJohn Baldwin 	    "Linksys EG1032 (RTL8169S) Gigabit Ethernet" },
1859dfcacbeSPyun YongHyeon 	{ USR_VENDORID, USR_DEVICEID_997902, 0,
186dfdb409eSPyun YongHyeon 	    "US Robotics 997902 (RTL8169S) Gigabit Ethernet" }
187a94100faSBill Paul };
188a94100faSBill Paul 
189a94100faSBill Paul static struct rl_hwrev re_hwrevs[] = {
190a94100faSBill Paul 	{ RL_HWREV_8139, RL_8139,  "" },
191a94100faSBill Paul 	{ RL_HWREV_8139A, RL_8139, "A" },
192a94100faSBill Paul 	{ RL_HWREV_8139AG, RL_8139, "A-G" },
193a94100faSBill Paul 	{ RL_HWREV_8139B, RL_8139, "B" },
194a94100faSBill Paul 	{ RL_HWREV_8130, RL_8139, "8130" },
195a94100faSBill Paul 	{ RL_HWREV_8139C, RL_8139, "C" },
196a94100faSBill Paul 	{ RL_HWREV_8139D, RL_8139, "8139D/8100B/8100C" },
197a94100faSBill Paul 	{ RL_HWREV_8139CPLUS, RL_8139CPLUS, "C+"},
198498bd0d3SBill Paul 	{ RL_HWREV_8168_SPIN1, RL_8169, "8168"},
199a94100faSBill Paul 	{ RL_HWREV_8169, RL_8169, "8169"},
20069a6b7fbSBill Paul 	{ RL_HWREV_8169S, RL_8169, "8169S"},
20169a6b7fbSBill Paul 	{ RL_HWREV_8110S, RL_8169, "8110S"},
202ed510fb0SBill Paul 	{ RL_HWREV_8169_8110SB, RL_8169, "8169SB"},
203ed510fb0SBill Paul 	{ RL_HWREV_8169_8110SC, RL_8169, "8169SC"},
204715922d7SPyun YongHyeon 	{ RL_HWREV_8169_8110SBL, RL_8169, "8169SBL"},
205a94100faSBill Paul 	{ RL_HWREV_8100, RL_8139, "8100"},
206a94100faSBill Paul 	{ RL_HWREV_8101, RL_8139, "8101"},
207ed510fb0SBill Paul 	{ RL_HWREV_8100E, RL_8169, "8100E"},
208ed510fb0SBill Paul 	{ RL_HWREV_8101E, RL_8169, "8101E"},
209b1d62f0fSPyun YongHyeon 	{ RL_HWREV_8102E, RL_8169, "8102E"},
210b1d62f0fSPyun YongHyeon 	{ RL_HWREV_8102EL, RL_8169, "8102EL"},
211498bd0d3SBill Paul 	{ RL_HWREV_8168_SPIN2, RL_8169, "8168"},
2121acbb78aSPyun YongHyeon 	{ RL_HWREV_8168_SPIN3, RL_8169, "8168"},
213deb5c680SPyun YongHyeon 	{ RL_HWREV_8168C, RL_8169, "8168C/8111C"},
214deb5c680SPyun YongHyeon 	{ RL_HWREV_8168C_SPIN2, RL_8169, "8168C/8111C"},
215deb5c680SPyun YongHyeon 	{ RL_HWREV_8168CP, RL_8169, "8168CP/8111CP"},
21659ef640dSPyun YongHyeon 	{ RL_HWREV_8168D, RL_8169, "8168D"},
217a94100faSBill Paul 	{ 0, 0, NULL }
218a94100faSBill Paul };
219a94100faSBill Paul 
220a94100faSBill Paul static int re_probe		(device_t);
221a94100faSBill Paul static int re_attach		(device_t);
222a94100faSBill Paul static int re_detach		(device_t);
223a94100faSBill Paul 
224d65abd66SPyun YongHyeon static int re_encap		(struct rl_softc *, struct mbuf **);
225a94100faSBill Paul 
226a94100faSBill Paul static void re_dma_map_addr	(void *, bus_dma_segment_t *, int, int);
227a94100faSBill Paul static int re_allocmem		(device_t, struct rl_softc *);
228d65abd66SPyun YongHyeon static __inline void re_discard_rxbuf
229d65abd66SPyun YongHyeon 				(struct rl_softc *, int);
230d65abd66SPyun YongHyeon static int re_newbuf		(struct rl_softc *, int);
231a94100faSBill Paul static int re_rx_list_init	(struct rl_softc *);
232a94100faSBill Paul static int re_tx_list_init	(struct rl_softc *);
23322a11c96SJohn-Mark Gurney #ifdef RE_FIXUP_RX
23422a11c96SJohn-Mark Gurney static __inline void re_fixup_rx
23522a11c96SJohn-Mark Gurney 				(struct mbuf *);
23622a11c96SJohn-Mark Gurney #endif
237ed510fb0SBill Paul static int re_rxeof		(struct rl_softc *);
238a94100faSBill Paul static void re_txeof		(struct rl_softc *);
23997b9d4baSJohn-Mark Gurney #ifdef DEVICE_POLLING
2400187838bSRuslan Ermilov static void re_poll		(struct ifnet *, enum poll_cmd, int);
2410187838bSRuslan Ermilov static void re_poll_locked	(struct ifnet *, enum poll_cmd, int);
24297b9d4baSJohn-Mark Gurney #endif
243ef544f63SPaolo Pisati static int re_intr		(void *);
244a94100faSBill Paul static void re_tick		(void *);
245ed510fb0SBill Paul static void re_tx_task		(void *, int);
246ed510fb0SBill Paul static void re_int_task		(void *, int);
247a94100faSBill Paul static void re_start		(struct ifnet *);
248a94100faSBill Paul static int re_ioctl		(struct ifnet *, u_long, caddr_t);
249a94100faSBill Paul static void re_init		(void *);
25097b9d4baSJohn-Mark Gurney static void re_init_locked	(struct rl_softc *);
251a94100faSBill Paul static void re_stop		(struct rl_softc *);
2521d545c7aSMarius Strobl static void re_watchdog		(struct rl_softc *);
253a94100faSBill Paul static int re_suspend		(device_t);
254a94100faSBill Paul static int re_resume		(device_t);
2556a087a87SPyun YongHyeon static int re_shutdown		(device_t);
256a94100faSBill Paul static int re_ifmedia_upd	(struct ifnet *);
257a94100faSBill Paul static void re_ifmedia_sts	(struct ifnet *, struct ifmediareq *);
258a94100faSBill Paul 
259a94100faSBill Paul static void re_eeprom_putbyte	(struct rl_softc *, int);
260a94100faSBill Paul static void re_eeprom_getword	(struct rl_softc *, int, u_int16_t *);
261ed510fb0SBill Paul static void re_read_eeprom	(struct rl_softc *, caddr_t, int, int);
262a94100faSBill Paul static int re_gmii_readreg	(device_t, int, int);
263a94100faSBill Paul static int re_gmii_writereg	(device_t, int, int, int);
264a94100faSBill Paul 
265a94100faSBill Paul static int re_miibus_readreg	(device_t, int, int);
266a94100faSBill Paul static int re_miibus_writereg	(device_t, int, int, int);
267a94100faSBill Paul static void re_miibus_statchg	(device_t);
268a94100faSBill Paul 
269ff191365SJung-uk Kim static void re_set_rxmode		(struct rl_softc *);
270a94100faSBill Paul static void re_reset		(struct rl_softc *);
2717467bd53SPyun YongHyeon static void re_setwol		(struct rl_softc *);
2727467bd53SPyun YongHyeon static void re_clrwol		(struct rl_softc *);
273a94100faSBill Paul 
274ed510fb0SBill Paul #ifdef RE_DIAG
275a94100faSBill Paul static int re_diag		(struct rl_softc *);
276ed510fb0SBill Paul #endif
277a94100faSBill Paul 
278a94100faSBill Paul static device_method_t re_methods[] = {
279a94100faSBill Paul 	/* Device interface */
280a94100faSBill Paul 	DEVMETHOD(device_probe,		re_probe),
281a94100faSBill Paul 	DEVMETHOD(device_attach,	re_attach),
282a94100faSBill Paul 	DEVMETHOD(device_detach,	re_detach),
283a94100faSBill Paul 	DEVMETHOD(device_suspend,	re_suspend),
284a94100faSBill Paul 	DEVMETHOD(device_resume,	re_resume),
285a94100faSBill Paul 	DEVMETHOD(device_shutdown,	re_shutdown),
286a94100faSBill Paul 
287a94100faSBill Paul 	/* bus interface */
288a94100faSBill Paul 	DEVMETHOD(bus_print_child,	bus_generic_print_child),
289a94100faSBill Paul 	DEVMETHOD(bus_driver_added,	bus_generic_driver_added),
290a94100faSBill Paul 
291a94100faSBill Paul 	/* MII interface */
292a94100faSBill Paul 	DEVMETHOD(miibus_readreg,	re_miibus_readreg),
293a94100faSBill Paul 	DEVMETHOD(miibus_writereg,	re_miibus_writereg),
294a94100faSBill Paul 	DEVMETHOD(miibus_statchg,	re_miibus_statchg),
295a94100faSBill Paul 
296a94100faSBill Paul 	{ 0, 0 }
297a94100faSBill Paul };
298a94100faSBill Paul 
299a94100faSBill Paul static driver_t re_driver = {
300a94100faSBill Paul 	"re",
301a94100faSBill Paul 	re_methods,
302a94100faSBill Paul 	sizeof(struct rl_softc)
303a94100faSBill Paul };
304a94100faSBill Paul 
305a94100faSBill Paul static devclass_t re_devclass;
306a94100faSBill Paul 
307a94100faSBill Paul DRIVER_MODULE(re, pci, re_driver, re_devclass, 0, 0);
308347934faSWarner Losh DRIVER_MODULE(re, cardbus, re_driver, re_devclass, 0, 0);
309a94100faSBill Paul DRIVER_MODULE(miibus, re, miibus_driver, miibus_devclass, 0, 0);
310a94100faSBill Paul 
311a94100faSBill Paul #define EE_SET(x)					\
312a94100faSBill Paul 	CSR_WRITE_1(sc, RL_EECMD,			\
313a94100faSBill Paul 		CSR_READ_1(sc, RL_EECMD) | x)
314a94100faSBill Paul 
315a94100faSBill Paul #define EE_CLR(x)					\
316a94100faSBill Paul 	CSR_WRITE_1(sc, RL_EECMD,			\
317a94100faSBill Paul 		CSR_READ_1(sc, RL_EECMD) & ~x)
318a94100faSBill Paul 
319a94100faSBill Paul /*
320a94100faSBill Paul  * Send a read command and address to the EEPROM, check for ACK.
321a94100faSBill Paul  */
322a94100faSBill Paul static void
3237b5ffebfSPyun YongHyeon re_eeprom_putbyte(struct rl_softc *sc, int addr)
324a94100faSBill Paul {
3250ce0868aSPyun YongHyeon 	int			d, i;
326a94100faSBill Paul 
327ed510fb0SBill Paul 	d = addr | (RL_9346_READ << sc->rl_eewidth);
328a94100faSBill Paul 
329a94100faSBill Paul 	/*
330a94100faSBill Paul 	 * Feed in each bit and strobe the clock.
331a94100faSBill Paul 	 */
332ed510fb0SBill Paul 
333ed510fb0SBill Paul 	for (i = 1 << (sc->rl_eewidth + 3); i; i >>= 1) {
334a94100faSBill Paul 		if (d & i) {
335a94100faSBill Paul 			EE_SET(RL_EE_DATAIN);
336a94100faSBill Paul 		} else {
337a94100faSBill Paul 			EE_CLR(RL_EE_DATAIN);
338a94100faSBill Paul 		}
339a94100faSBill Paul 		DELAY(100);
340a94100faSBill Paul 		EE_SET(RL_EE_CLK);
341a94100faSBill Paul 		DELAY(150);
342a94100faSBill Paul 		EE_CLR(RL_EE_CLK);
343a94100faSBill Paul 		DELAY(100);
344a94100faSBill Paul 	}
345a94100faSBill Paul }
346a94100faSBill Paul 
347a94100faSBill Paul /*
348a94100faSBill Paul  * Read a word of data stored in the EEPROM at address 'addr.'
349a94100faSBill Paul  */
350a94100faSBill Paul static void
3517b5ffebfSPyun YongHyeon re_eeprom_getword(struct rl_softc *sc, int addr, u_int16_t *dest)
352a94100faSBill Paul {
3530ce0868aSPyun YongHyeon 	int			i;
354a94100faSBill Paul 	u_int16_t		word = 0;
355a94100faSBill Paul 
356a94100faSBill Paul 	/*
357a94100faSBill Paul 	 * Send address of word we want to read.
358a94100faSBill Paul 	 */
359a94100faSBill Paul 	re_eeprom_putbyte(sc, addr);
360a94100faSBill Paul 
361a94100faSBill Paul 	/*
362a94100faSBill Paul 	 * Start reading bits from EEPROM.
363a94100faSBill Paul 	 */
364a94100faSBill Paul 	for (i = 0x8000; i; i >>= 1) {
365a94100faSBill Paul 		EE_SET(RL_EE_CLK);
366a94100faSBill Paul 		DELAY(100);
367a94100faSBill Paul 		if (CSR_READ_1(sc, RL_EECMD) & RL_EE_DATAOUT)
368a94100faSBill Paul 			word |= i;
369a94100faSBill Paul 		EE_CLR(RL_EE_CLK);
370a94100faSBill Paul 		DELAY(100);
371a94100faSBill Paul 	}
372a94100faSBill Paul 
373a94100faSBill Paul 	*dest = word;
374a94100faSBill Paul }
375a94100faSBill Paul 
376a94100faSBill Paul /*
377a94100faSBill Paul  * Read a sequence of words from the EEPROM.
378a94100faSBill Paul  */
379a94100faSBill Paul static void
3807b5ffebfSPyun YongHyeon re_read_eeprom(struct rl_softc *sc, caddr_t dest, int off, int cnt)
381a94100faSBill Paul {
382a94100faSBill Paul 	int			i;
383a94100faSBill Paul 	u_int16_t		word = 0, *ptr;
384a94100faSBill Paul 
385ed510fb0SBill Paul 	CSR_SETBIT_1(sc, RL_EECMD, RL_EEMODE_PROGRAM);
386ed510fb0SBill Paul 
387ed510fb0SBill Paul         DELAY(100);
388ed510fb0SBill Paul 
389a94100faSBill Paul 	for (i = 0; i < cnt; i++) {
390ed510fb0SBill Paul 		CSR_SETBIT_1(sc, RL_EECMD, RL_EE_SEL);
391a94100faSBill Paul 		re_eeprom_getword(sc, off + i, &word);
392ed510fb0SBill Paul 		CSR_CLRBIT_1(sc, RL_EECMD, RL_EE_SEL);
393a94100faSBill Paul 		ptr = (u_int16_t *)(dest + (i * 2));
394be099007SPyun YongHyeon                 *ptr = word;
395a94100faSBill Paul 	}
396ed510fb0SBill Paul 
397ed510fb0SBill Paul 	CSR_CLRBIT_1(sc, RL_EECMD, RL_EEMODE_PROGRAM);
398a94100faSBill Paul }
399a94100faSBill Paul 
400a94100faSBill Paul static int
4017b5ffebfSPyun YongHyeon re_gmii_readreg(device_t dev, int phy, int reg)
402a94100faSBill Paul {
403a94100faSBill Paul 	struct rl_softc		*sc;
404a94100faSBill Paul 	u_int32_t		rval;
405a94100faSBill Paul 	int			i;
406a94100faSBill Paul 
407a94100faSBill Paul 	if (phy != 1)
408a94100faSBill Paul 		return (0);
409a94100faSBill Paul 
410a94100faSBill Paul 	sc = device_get_softc(dev);
411a94100faSBill Paul 
4129bac70b8SBill Paul 	/* Let the rgephy driver read the GMEDIASTAT register */
4139bac70b8SBill Paul 
4149bac70b8SBill Paul 	if (reg == RL_GMEDIASTAT) {
4159bac70b8SBill Paul 		rval = CSR_READ_1(sc, RL_GMEDIASTAT);
4169bac70b8SBill Paul 		return (rval);
4179bac70b8SBill Paul 	}
4189bac70b8SBill Paul 
419a94100faSBill Paul 	CSR_WRITE_4(sc, RL_PHYAR, reg << 16);
420a94100faSBill Paul 
42196b774f4SPyun YongHyeon 	for (i = 0; i < RL_PHY_TIMEOUT; i++) {
422a94100faSBill Paul 		rval = CSR_READ_4(sc, RL_PHYAR);
423a94100faSBill Paul 		if (rval & RL_PHYAR_BUSY)
424a94100faSBill Paul 			break;
425f68bc089SPyun YongHyeon 		DELAY(100);
426a94100faSBill Paul 	}
427a94100faSBill Paul 
42896b774f4SPyun YongHyeon 	if (i == RL_PHY_TIMEOUT) {
4296b9f5c94SGleb Smirnoff 		device_printf(sc->rl_dev, "PHY read failed\n");
430a94100faSBill Paul 		return (0);
431a94100faSBill Paul 	}
432a94100faSBill Paul 
433a94100faSBill Paul 	return (rval & RL_PHYAR_PHYDATA);
434a94100faSBill Paul }
435a94100faSBill Paul 
436a94100faSBill Paul static int
4377b5ffebfSPyun YongHyeon re_gmii_writereg(device_t dev, int phy, int reg, int data)
438a94100faSBill Paul {
439a94100faSBill Paul 	struct rl_softc		*sc;
440a94100faSBill Paul 	u_int32_t		rval;
441a94100faSBill Paul 	int			i;
442a94100faSBill Paul 
443a94100faSBill Paul 	sc = device_get_softc(dev);
444a94100faSBill Paul 
445a94100faSBill Paul 	CSR_WRITE_4(sc, RL_PHYAR, (reg << 16) |
4469bac70b8SBill Paul 	    (data & RL_PHYAR_PHYDATA) | RL_PHYAR_BUSY);
447a94100faSBill Paul 
44896b774f4SPyun YongHyeon 	for (i = 0; i < RL_PHY_TIMEOUT; i++) {
449a94100faSBill Paul 		rval = CSR_READ_4(sc, RL_PHYAR);
450a94100faSBill Paul 		if (!(rval & RL_PHYAR_BUSY))
451a94100faSBill Paul 			break;
452f68bc089SPyun YongHyeon 		DELAY(100);
453a94100faSBill Paul 	}
454a94100faSBill Paul 
45596b774f4SPyun YongHyeon 	if (i == RL_PHY_TIMEOUT) {
4566b9f5c94SGleb Smirnoff 		device_printf(sc->rl_dev, "PHY write failed\n");
457a94100faSBill Paul 		return (0);
458a94100faSBill Paul 	}
459a94100faSBill Paul 
460a94100faSBill Paul 	return (0);
461a94100faSBill Paul }
462a94100faSBill Paul 
463a94100faSBill Paul static int
4647b5ffebfSPyun YongHyeon re_miibus_readreg(device_t dev, int phy, int reg)
465a94100faSBill Paul {
466a94100faSBill Paul 	struct rl_softc		*sc;
467a94100faSBill Paul 	u_int16_t		rval = 0;
468a94100faSBill Paul 	u_int16_t		re8139_reg = 0;
469a94100faSBill Paul 
470a94100faSBill Paul 	sc = device_get_softc(dev);
471a94100faSBill Paul 
472a94100faSBill Paul 	if (sc->rl_type == RL_8169) {
473a94100faSBill Paul 		rval = re_gmii_readreg(dev, phy, reg);
474a94100faSBill Paul 		return (rval);
475a94100faSBill Paul 	}
476a94100faSBill Paul 
477a94100faSBill Paul 	/* Pretend the internal PHY is only at address 0 */
478a94100faSBill Paul 	if (phy) {
479a94100faSBill Paul 		return (0);
480a94100faSBill Paul 	}
481a94100faSBill Paul 	switch (reg) {
482a94100faSBill Paul 	case MII_BMCR:
483a94100faSBill Paul 		re8139_reg = RL_BMCR;
484a94100faSBill Paul 		break;
485a94100faSBill Paul 	case MII_BMSR:
486a94100faSBill Paul 		re8139_reg = RL_BMSR;
487a94100faSBill Paul 		break;
488a94100faSBill Paul 	case MII_ANAR:
489a94100faSBill Paul 		re8139_reg = RL_ANAR;
490a94100faSBill Paul 		break;
491a94100faSBill Paul 	case MII_ANER:
492a94100faSBill Paul 		re8139_reg = RL_ANER;
493a94100faSBill Paul 		break;
494a94100faSBill Paul 	case MII_ANLPAR:
495a94100faSBill Paul 		re8139_reg = RL_LPAR;
496a94100faSBill Paul 		break;
497a94100faSBill Paul 	case MII_PHYIDR1:
498a94100faSBill Paul 	case MII_PHYIDR2:
499a94100faSBill Paul 		return (0);
500a94100faSBill Paul 	/*
501a94100faSBill Paul 	 * Allow the rlphy driver to read the media status
502a94100faSBill Paul 	 * register. If we have a link partner which does not
503a94100faSBill Paul 	 * support NWAY, this is the register which will tell
504a94100faSBill Paul 	 * us the results of parallel detection.
505a94100faSBill Paul 	 */
506a94100faSBill Paul 	case RL_MEDIASTAT:
507a94100faSBill Paul 		rval = CSR_READ_1(sc, RL_MEDIASTAT);
508a94100faSBill Paul 		return (rval);
509a94100faSBill Paul 	default:
5106b9f5c94SGleb Smirnoff 		device_printf(sc->rl_dev, "bad phy register\n");
511a94100faSBill Paul 		return (0);
512a94100faSBill Paul 	}
513a94100faSBill Paul 	rval = CSR_READ_2(sc, re8139_reg);
514baa12772SPyun YongHyeon 	if (sc->rl_type == RL_8139CPLUS && re8139_reg == RL_BMCR) {
515baa12772SPyun YongHyeon 		/* 8139C+ has different bit layout. */
516baa12772SPyun YongHyeon 		rval &= ~(BMCR_LOOP | BMCR_ISO);
517baa12772SPyun YongHyeon 	}
518a94100faSBill Paul 	return (rval);
519a94100faSBill Paul }
520a94100faSBill Paul 
521a94100faSBill Paul static int
5227b5ffebfSPyun YongHyeon re_miibus_writereg(device_t dev, int phy, int reg, int data)
523a94100faSBill Paul {
524a94100faSBill Paul 	struct rl_softc		*sc;
525a94100faSBill Paul 	u_int16_t		re8139_reg = 0;
526a94100faSBill Paul 	int			rval = 0;
527a94100faSBill Paul 
528a94100faSBill Paul 	sc = device_get_softc(dev);
529a94100faSBill Paul 
530a94100faSBill Paul 	if (sc->rl_type == RL_8169) {
531a94100faSBill Paul 		rval = re_gmii_writereg(dev, phy, reg, data);
532a94100faSBill Paul 		return (rval);
533a94100faSBill Paul 	}
534a94100faSBill Paul 
535a94100faSBill Paul 	/* Pretend the internal PHY is only at address 0 */
53697b9d4baSJohn-Mark Gurney 	if (phy)
537a94100faSBill Paul 		return (0);
53897b9d4baSJohn-Mark Gurney 
539a94100faSBill Paul 	switch (reg) {
540a94100faSBill Paul 	case MII_BMCR:
541a94100faSBill Paul 		re8139_reg = RL_BMCR;
542baa12772SPyun YongHyeon 		if (sc->rl_type == RL_8139CPLUS) {
543baa12772SPyun YongHyeon 			/* 8139C+ has different bit layout. */
544baa12772SPyun YongHyeon 			data &= ~(BMCR_LOOP | BMCR_ISO);
545baa12772SPyun YongHyeon 		}
546a94100faSBill Paul 		break;
547a94100faSBill Paul 	case MII_BMSR:
548a94100faSBill Paul 		re8139_reg = RL_BMSR;
549a94100faSBill Paul 		break;
550a94100faSBill Paul 	case MII_ANAR:
551a94100faSBill Paul 		re8139_reg = RL_ANAR;
552a94100faSBill Paul 		break;
553a94100faSBill Paul 	case MII_ANER:
554a94100faSBill Paul 		re8139_reg = RL_ANER;
555a94100faSBill Paul 		break;
556a94100faSBill Paul 	case MII_ANLPAR:
557a94100faSBill Paul 		re8139_reg = RL_LPAR;
558a94100faSBill Paul 		break;
559a94100faSBill Paul 	case MII_PHYIDR1:
560a94100faSBill Paul 	case MII_PHYIDR2:
561a94100faSBill Paul 		return (0);
562a94100faSBill Paul 		break;
563a94100faSBill Paul 	default:
5646b9f5c94SGleb Smirnoff 		device_printf(sc->rl_dev, "bad phy register\n");
565a94100faSBill Paul 		return (0);
566a94100faSBill Paul 	}
567a94100faSBill Paul 	CSR_WRITE_2(sc, re8139_reg, data);
568a94100faSBill Paul 	return (0);
569a94100faSBill Paul }
570a94100faSBill Paul 
571a94100faSBill Paul static void
5727b5ffebfSPyun YongHyeon re_miibus_statchg(device_t dev)
573a94100faSBill Paul {
574130b6dfbSPyun YongHyeon 	struct rl_softc		*sc;
575130b6dfbSPyun YongHyeon 	struct ifnet		*ifp;
576130b6dfbSPyun YongHyeon 	struct mii_data		*mii;
577a11e2f18SBruce M Simpson 
578130b6dfbSPyun YongHyeon 	sc = device_get_softc(dev);
579130b6dfbSPyun YongHyeon 	mii = device_get_softc(sc->rl_miibus);
580130b6dfbSPyun YongHyeon 	ifp = sc->rl_ifp;
581130b6dfbSPyun YongHyeon 	if (mii == NULL || ifp == NULL ||
582130b6dfbSPyun YongHyeon 	    (ifp->if_drv_flags & IFF_DRV_RUNNING) == 0)
583130b6dfbSPyun YongHyeon 		return;
584130b6dfbSPyun YongHyeon 
585130b6dfbSPyun YongHyeon 	sc->rl_flags &= ~RL_FLAG_LINK;
586130b6dfbSPyun YongHyeon 	if ((mii->mii_media_status & (IFM_ACTIVE | IFM_AVALID)) ==
587130b6dfbSPyun YongHyeon 	    (IFM_ACTIVE | IFM_AVALID)) {
588130b6dfbSPyun YongHyeon 		switch (IFM_SUBTYPE(mii->mii_media_active)) {
589130b6dfbSPyun YongHyeon 		case IFM_10_T:
590130b6dfbSPyun YongHyeon 		case IFM_100_TX:
591130b6dfbSPyun YongHyeon 			sc->rl_flags |= RL_FLAG_LINK;
592130b6dfbSPyun YongHyeon 			break;
593130b6dfbSPyun YongHyeon 		case IFM_1000_T:
594130b6dfbSPyun YongHyeon 			if ((sc->rl_flags & RL_FLAG_FASTETHER) != 0)
595130b6dfbSPyun YongHyeon 				break;
596130b6dfbSPyun YongHyeon 			sc->rl_flags |= RL_FLAG_LINK;
597130b6dfbSPyun YongHyeon 			break;
598130b6dfbSPyun YongHyeon 		default:
599130b6dfbSPyun YongHyeon 			break;
600130b6dfbSPyun YongHyeon 		}
601130b6dfbSPyun YongHyeon 	}
602130b6dfbSPyun YongHyeon 	/*
603130b6dfbSPyun YongHyeon 	 * RealTek controllers does not provide any interface to
604130b6dfbSPyun YongHyeon 	 * Tx/Rx MACs for resolved speed, duplex and flow-control
605130b6dfbSPyun YongHyeon 	 * parameters.
606130b6dfbSPyun YongHyeon 	 */
607a94100faSBill Paul }
608a94100faSBill Paul 
609a94100faSBill Paul /*
610ff191365SJung-uk Kim  * Set the RX configuration and 64-bit multicast hash filter.
611a94100faSBill Paul  */
612a94100faSBill Paul static void
613ff191365SJung-uk Kim re_set_rxmode(struct rl_softc *sc)
614a94100faSBill Paul {
615a94100faSBill Paul 	struct ifnet		*ifp;
616a94100faSBill Paul 	struct ifmultiaddr	*ifma;
617ff191365SJung-uk Kim 	uint32_t		hashes[2] = { 0, 0 };
618ff191365SJung-uk Kim 	uint32_t		h, rxfilt;
619a94100faSBill Paul 
62097b9d4baSJohn-Mark Gurney 	RL_LOCK_ASSERT(sc);
62197b9d4baSJohn-Mark Gurney 
622fc74a9f9SBrooks Davis 	ifp = sc->rl_ifp;
623a94100faSBill Paul 
624ff191365SJung-uk Kim 	rxfilt = RL_RXCFG_CONFIG | RL_RXCFG_RX_INDIV | RL_RXCFG_RX_BROAD;
625a94100faSBill Paul 
626ff191365SJung-uk Kim 	if (ifp->if_flags & (IFF_ALLMULTI | IFF_PROMISC)) {
6277c103000SPyun YongHyeon 		if (ifp->if_flags & IFF_PROMISC)
6287c103000SPyun YongHyeon 			rxfilt |= RL_RXCFG_RX_ALLPHYS;
629a0637caaSPyun YongHyeon 		/*
630a0637caaSPyun YongHyeon 		 * Unlike other hardwares, we have to explicitly set
631a0637caaSPyun YongHyeon 		 * RL_RXCFG_RX_MULTI to receive multicast frames in
632a0637caaSPyun YongHyeon 		 * promiscuous mode.
633a0637caaSPyun YongHyeon 		 */
634a94100faSBill Paul 		rxfilt |= RL_RXCFG_RX_MULTI;
635ff191365SJung-uk Kim 		hashes[0] = hashes[1] = 0xffffffff;
636ff191365SJung-uk Kim 		goto done;
637a94100faSBill Paul 	}
638a94100faSBill Paul 
63913b203d0SRobert Watson 	IF_ADDR_LOCK(ifp);
640a94100faSBill Paul 	TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
641a94100faSBill Paul 		if (ifma->ifma_addr->sa_family != AF_LINK)
642a94100faSBill Paul 			continue;
6430e939c0cSChristian Weisgerber 		h = ether_crc32_be(LLADDR((struct sockaddr_dl *)
6440e939c0cSChristian Weisgerber 		    ifma->ifma_addr), ETHER_ADDR_LEN) >> 26;
645a94100faSBill Paul 		if (h < 32)
646a94100faSBill Paul 			hashes[0] |= (1 << h);
647a94100faSBill Paul 		else
648a94100faSBill Paul 			hashes[1] |= (1 << (h - 32));
649a94100faSBill Paul 	}
65013b203d0SRobert Watson 	IF_ADDR_UNLOCK(ifp);
651a94100faSBill Paul 
652ff191365SJung-uk Kim 	if (hashes[0] != 0 || hashes[1] != 0) {
653bb7dfefbSBill Paul 		/*
654ff191365SJung-uk Kim 		 * For some unfathomable reason, RealTek decided to
655ff191365SJung-uk Kim 		 * reverse the order of the multicast hash registers
656ff191365SJung-uk Kim 		 * in the PCI Express parts.  This means we have to
657ff191365SJung-uk Kim 		 * write the hash pattern in reverse order for those
658ff191365SJung-uk Kim 		 * devices.
659bb7dfefbSBill Paul 		 */
660351a76f9SPyun YongHyeon 		if ((sc->rl_flags & RL_FLAG_INVMAR) != 0) {
661ff191365SJung-uk Kim 			h = bswap32(hashes[0]);
662ff191365SJung-uk Kim 			hashes[0] = bswap32(hashes[1]);
663ff191365SJung-uk Kim 			hashes[1] = h;
664ff191365SJung-uk Kim 		}
665ff191365SJung-uk Kim 		rxfilt |= RL_RXCFG_RX_MULTI;
666ff191365SJung-uk Kim 	}
667ff191365SJung-uk Kim 
668ff191365SJung-uk Kim done:
669a94100faSBill Paul 	CSR_WRITE_4(sc, RL_MAR0, hashes[0]);
670a94100faSBill Paul 	CSR_WRITE_4(sc, RL_MAR4, hashes[1]);
671ff191365SJung-uk Kim 	CSR_WRITE_4(sc, RL_RXCFG, rxfilt);
672bb7dfefbSBill Paul }
673a94100faSBill Paul 
674a94100faSBill Paul static void
6757b5ffebfSPyun YongHyeon re_reset(struct rl_softc *sc)
676a94100faSBill Paul {
6770ce0868aSPyun YongHyeon 	int			i;
678a94100faSBill Paul 
67997b9d4baSJohn-Mark Gurney 	RL_LOCK_ASSERT(sc);
68097b9d4baSJohn-Mark Gurney 
681a94100faSBill Paul 	CSR_WRITE_1(sc, RL_COMMAND, RL_CMD_RESET);
682a94100faSBill Paul 
683a94100faSBill Paul 	for (i = 0; i < RL_TIMEOUT; i++) {
684a94100faSBill Paul 		DELAY(10);
685a94100faSBill Paul 		if (!(CSR_READ_1(sc, RL_COMMAND) & RL_CMD_RESET))
686a94100faSBill Paul 			break;
687a94100faSBill Paul 	}
688a94100faSBill Paul 	if (i == RL_TIMEOUT)
6896b9f5c94SGleb Smirnoff 		device_printf(sc->rl_dev, "reset never completed!\n");
690a94100faSBill Paul 
6910596d7e6SPyun YongHyeon 	if ((sc->rl_flags & RL_FLAG_PHY8169) != 0)
692a94100faSBill Paul 		CSR_WRITE_1(sc, 0x82, 1);
6930596d7e6SPyun YongHyeon 	if ((sc->rl_flags & RL_FLAG_PHY8110S) != 0) {
6940596d7e6SPyun YongHyeon 		CSR_WRITE_1(sc, 0x82, 1);
6950596d7e6SPyun YongHyeon 		re_gmii_writereg(sc->rl_dev, 1, 0x0B, 0);
6960596d7e6SPyun YongHyeon 	}
697a94100faSBill Paul }
698a94100faSBill Paul 
699ed510fb0SBill Paul #ifdef RE_DIAG
700ed510fb0SBill Paul 
701a94100faSBill Paul /*
702a94100faSBill Paul  * The following routine is designed to test for a defect on some
703a94100faSBill Paul  * 32-bit 8169 cards. Some of these NICs have the REQ64# and ACK64#
704a94100faSBill Paul  * lines connected to the bus, however for a 32-bit only card, they
705a94100faSBill Paul  * should be pulled high. The result of this defect is that the
706a94100faSBill Paul  * NIC will not work right if you plug it into a 64-bit slot: DMA
707a94100faSBill Paul  * operations will be done with 64-bit transfers, which will fail
708a94100faSBill Paul  * because the 64-bit data lines aren't connected.
709a94100faSBill Paul  *
710a94100faSBill Paul  * There's no way to work around this (short of talking a soldering
711a94100faSBill Paul  * iron to the board), however we can detect it. The method we use
712a94100faSBill Paul  * here is to put the NIC into digital loopback mode, set the receiver
713a94100faSBill Paul  * to promiscuous mode, and then try to send a frame. We then compare
714a94100faSBill Paul  * the frame data we sent to what was received. If the data matches,
715a94100faSBill Paul  * then the NIC is working correctly, otherwise we know the user has
716a94100faSBill Paul  * a defective NIC which has been mistakenly plugged into a 64-bit PCI
717a94100faSBill Paul  * slot. In the latter case, there's no way the NIC can work correctly,
718a94100faSBill Paul  * so we print out a message on the console and abort the device attach.
719a94100faSBill Paul  */
720a94100faSBill Paul 
721a94100faSBill Paul static int
7227b5ffebfSPyun YongHyeon re_diag(struct rl_softc *sc)
723a94100faSBill Paul {
724fc74a9f9SBrooks Davis 	struct ifnet		*ifp = sc->rl_ifp;
725a94100faSBill Paul 	struct mbuf		*m0;
726a94100faSBill Paul 	struct ether_header	*eh;
727a94100faSBill Paul 	struct rl_desc		*cur_rx;
728a94100faSBill Paul 	u_int16_t		status;
729a94100faSBill Paul 	u_int32_t		rxstat;
730ed510fb0SBill Paul 	int			total_len, i, error = 0, phyaddr;
731a94100faSBill Paul 	u_int8_t		dst[] = { 0x00, 'h', 'e', 'l', 'l', 'o' };
732a94100faSBill Paul 	u_int8_t		src[] = { 0x00, 'w', 'o', 'r', 'l', 'd' };
733a94100faSBill Paul 
734a94100faSBill Paul 	/* Allocate a single mbuf */
735a94100faSBill Paul 	MGETHDR(m0, M_DONTWAIT, MT_DATA);
736a94100faSBill Paul 	if (m0 == NULL)
737a94100faSBill Paul 		return (ENOBUFS);
738a94100faSBill Paul 
73997b9d4baSJohn-Mark Gurney 	RL_LOCK(sc);
74097b9d4baSJohn-Mark Gurney 
741a94100faSBill Paul 	/*
742a94100faSBill Paul 	 * Initialize the NIC in test mode. This sets the chip up
743a94100faSBill Paul 	 * so that it can send and receive frames, but performs the
744a94100faSBill Paul 	 * following special functions:
745a94100faSBill Paul 	 * - Puts receiver in promiscuous mode
746a94100faSBill Paul 	 * - Enables digital loopback mode
747a94100faSBill Paul 	 * - Leaves interrupts turned off
748a94100faSBill Paul 	 */
749a94100faSBill Paul 
750a94100faSBill Paul 	ifp->if_flags |= IFF_PROMISC;
751a94100faSBill Paul 	sc->rl_testmode = 1;
75297b9d4baSJohn-Mark Gurney 	re_init_locked(sc);
753351a76f9SPyun YongHyeon 	sc->rl_flags |= RL_FLAG_LINK;
754ed510fb0SBill Paul 	if (sc->rl_type == RL_8169)
755ed510fb0SBill Paul 		phyaddr = 1;
756ed510fb0SBill Paul 	else
757ed510fb0SBill Paul 		phyaddr = 0;
758ed510fb0SBill Paul 
759ed510fb0SBill Paul 	re_miibus_writereg(sc->rl_dev, phyaddr, MII_BMCR, BMCR_RESET);
760ed510fb0SBill Paul 	for (i = 0; i < RL_TIMEOUT; i++) {
761ed510fb0SBill Paul 		status = re_miibus_readreg(sc->rl_dev, phyaddr, MII_BMCR);
762ed510fb0SBill Paul 		if (!(status & BMCR_RESET))
763ed510fb0SBill Paul 			break;
764ed510fb0SBill Paul 	}
765ed510fb0SBill Paul 
766ed510fb0SBill Paul 	re_miibus_writereg(sc->rl_dev, phyaddr, MII_BMCR, BMCR_LOOP);
767ed510fb0SBill Paul 	CSR_WRITE_2(sc, RL_ISR, RL_INTRS);
768ed510fb0SBill Paul 
769804af9a1SBill Paul 	DELAY(100000);
770a94100faSBill Paul 
771a94100faSBill Paul 	/* Put some data in the mbuf */
772a94100faSBill Paul 
773a94100faSBill Paul 	eh = mtod(m0, struct ether_header *);
774a94100faSBill Paul 	bcopy ((char *)&dst, eh->ether_dhost, ETHER_ADDR_LEN);
775a94100faSBill Paul 	bcopy ((char *)&src, eh->ether_shost, ETHER_ADDR_LEN);
776a94100faSBill Paul 	eh->ether_type = htons(ETHERTYPE_IP);
777a94100faSBill Paul 	m0->m_pkthdr.len = m0->m_len = ETHER_MIN_LEN - ETHER_CRC_LEN;
778a94100faSBill Paul 
7797cae6651SBill Paul 	/*
7807cae6651SBill Paul 	 * Queue the packet, start transmission.
7817cae6651SBill Paul 	 * Note: IF_HANDOFF() ultimately calls re_start() for us.
7827cae6651SBill Paul 	 */
783a94100faSBill Paul 
784abc8ff44SBill Paul 	CSR_WRITE_2(sc, RL_ISR, 0xFFFF);
78597b9d4baSJohn-Mark Gurney 	RL_UNLOCK(sc);
78652732175SMax Laier 	/* XXX: re_diag must not be called when in ALTQ mode */
7877cae6651SBill Paul 	IF_HANDOFF(&ifp->if_snd, m0, ifp);
78897b9d4baSJohn-Mark Gurney 	RL_LOCK(sc);
789a94100faSBill Paul 	m0 = NULL;
790a94100faSBill Paul 
791a94100faSBill Paul 	/* Wait for it to propagate through the chip */
792a94100faSBill Paul 
793abc8ff44SBill Paul 	DELAY(100000);
794a94100faSBill Paul 	for (i = 0; i < RL_TIMEOUT; i++) {
795a94100faSBill Paul 		status = CSR_READ_2(sc, RL_ISR);
796ed510fb0SBill Paul 		CSR_WRITE_2(sc, RL_ISR, status);
797abc8ff44SBill Paul 		if ((status & (RL_ISR_TIMEOUT_EXPIRED|RL_ISR_RX_OK)) ==
798abc8ff44SBill Paul 		    (RL_ISR_TIMEOUT_EXPIRED|RL_ISR_RX_OK))
799a94100faSBill Paul 			break;
800a94100faSBill Paul 		DELAY(10);
801a94100faSBill Paul 	}
802a94100faSBill Paul 
803a94100faSBill Paul 	if (i == RL_TIMEOUT) {
8046b9f5c94SGleb Smirnoff 		device_printf(sc->rl_dev,
8056b9f5c94SGleb Smirnoff 		    "diagnostic failed, failed to receive packet in"
8066b9f5c94SGleb Smirnoff 		    " loopback mode\n");
807a94100faSBill Paul 		error = EIO;
808a94100faSBill Paul 		goto done;
809a94100faSBill Paul 	}
810a94100faSBill Paul 
811a94100faSBill Paul 	/*
812a94100faSBill Paul 	 * The packet should have been dumped into the first
813a94100faSBill Paul 	 * entry in the RX DMA ring. Grab it from there.
814a94100faSBill Paul 	 */
815a94100faSBill Paul 
816a94100faSBill Paul 	bus_dmamap_sync(sc->rl_ldata.rl_rx_list_tag,
817a94100faSBill Paul 	    sc->rl_ldata.rl_rx_list_map,
818a94100faSBill Paul 	    BUS_DMASYNC_POSTREAD);
819d65abd66SPyun YongHyeon 	bus_dmamap_sync(sc->rl_ldata.rl_rx_mtag,
820d65abd66SPyun YongHyeon 	    sc->rl_ldata.rl_rx_desc[0].rx_dmamap,
821d65abd66SPyun YongHyeon 	    BUS_DMASYNC_POSTREAD);
822d65abd66SPyun YongHyeon 	bus_dmamap_unload(sc->rl_ldata.rl_rx_mtag,
823d65abd66SPyun YongHyeon 	    sc->rl_ldata.rl_rx_desc[0].rx_dmamap);
824a94100faSBill Paul 
825d65abd66SPyun YongHyeon 	m0 = sc->rl_ldata.rl_rx_desc[0].rx_m;
826d65abd66SPyun YongHyeon 	sc->rl_ldata.rl_rx_desc[0].rx_m = NULL;
827a94100faSBill Paul 	eh = mtod(m0, struct ether_header *);
828a94100faSBill Paul 
829a94100faSBill Paul 	cur_rx = &sc->rl_ldata.rl_rx_list[0];
830a94100faSBill Paul 	total_len = RL_RXBYTES(cur_rx);
831a94100faSBill Paul 	rxstat = le32toh(cur_rx->rl_cmdstat);
832a94100faSBill Paul 
833a94100faSBill Paul 	if (total_len != ETHER_MIN_LEN) {
8346b9f5c94SGleb Smirnoff 		device_printf(sc->rl_dev,
8356b9f5c94SGleb Smirnoff 		    "diagnostic failed, received short packet\n");
836a94100faSBill Paul 		error = EIO;
837a94100faSBill Paul 		goto done;
838a94100faSBill Paul 	}
839a94100faSBill Paul 
840a94100faSBill Paul 	/* Test that the received packet data matches what we sent. */
841a94100faSBill Paul 
842a94100faSBill Paul 	if (bcmp((char *)&eh->ether_dhost, (char *)&dst, ETHER_ADDR_LEN) ||
843a94100faSBill Paul 	    bcmp((char *)&eh->ether_shost, (char *)&src, ETHER_ADDR_LEN) ||
844a94100faSBill Paul 	    ntohs(eh->ether_type) != ETHERTYPE_IP) {
8456b9f5c94SGleb Smirnoff 		device_printf(sc->rl_dev, "WARNING, DMA FAILURE!\n");
8466b9f5c94SGleb Smirnoff 		device_printf(sc->rl_dev, "expected TX data: %6D/%6D/0x%x\n",
847a94100faSBill Paul 		    dst, ":", src, ":", ETHERTYPE_IP);
8486b9f5c94SGleb Smirnoff 		device_printf(sc->rl_dev, "received RX data: %6D/%6D/0x%x\n",
849a94100faSBill Paul 		    eh->ether_dhost, ":",  eh->ether_shost, ":",
850a94100faSBill Paul 		    ntohs(eh->ether_type));
8516b9f5c94SGleb Smirnoff 		device_printf(sc->rl_dev, "You may have a defective 32-bit "
8526b9f5c94SGleb Smirnoff 		    "NIC plugged into a 64-bit PCI slot.\n");
8536b9f5c94SGleb Smirnoff 		device_printf(sc->rl_dev, "Please re-install the NIC in a "
8546b9f5c94SGleb Smirnoff 		    "32-bit slot for proper operation.\n");
8556b9f5c94SGleb Smirnoff 		device_printf(sc->rl_dev, "Read the re(4) man page for more "
8566b9f5c94SGleb Smirnoff 		    "details.\n");
857a94100faSBill Paul 		error = EIO;
858a94100faSBill Paul 	}
859a94100faSBill Paul 
860a94100faSBill Paul done:
861a94100faSBill Paul 	/* Turn interface off, release resources */
862a94100faSBill Paul 
863a94100faSBill Paul 	sc->rl_testmode = 0;
864351a76f9SPyun YongHyeon 	sc->rl_flags &= ~RL_FLAG_LINK;
865a94100faSBill Paul 	ifp->if_flags &= ~IFF_PROMISC;
866a94100faSBill Paul 	re_stop(sc);
867a94100faSBill Paul 	if (m0 != NULL)
868a94100faSBill Paul 		m_freem(m0);
869a94100faSBill Paul 
87097b9d4baSJohn-Mark Gurney 	RL_UNLOCK(sc);
87197b9d4baSJohn-Mark Gurney 
872a94100faSBill Paul 	return (error);
873a94100faSBill Paul }
874a94100faSBill Paul 
875ed510fb0SBill Paul #endif
876ed510fb0SBill Paul 
877a94100faSBill Paul /*
878a94100faSBill Paul  * Probe for a RealTek 8139C+/8169/8110 chip. Check the PCI vendor and device
879a94100faSBill Paul  * IDs against our list and return a device name if we find a match.
880a94100faSBill Paul  */
881a94100faSBill Paul static int
8827b5ffebfSPyun YongHyeon re_probe(device_t dev)
883a94100faSBill Paul {
884a94100faSBill Paul 	struct rl_type		*t;
885dfdb409eSPyun YongHyeon 	uint16_t		devid, vendor;
886dfdb409eSPyun YongHyeon 	uint16_t		revid, sdevid;
887dfdb409eSPyun YongHyeon 	int			i;
888a94100faSBill Paul 
889dfdb409eSPyun YongHyeon 	vendor = pci_get_vendor(dev);
890dfdb409eSPyun YongHyeon 	devid = pci_get_device(dev);
891dfdb409eSPyun YongHyeon 	revid = pci_get_revid(dev);
892dfdb409eSPyun YongHyeon 	sdevid = pci_get_subdevice(dev);
893a94100faSBill Paul 
894dfdb409eSPyun YongHyeon 	if (vendor == LINKSYS_VENDORID && devid == LINKSYS_DEVICEID_EG1032) {
895dfdb409eSPyun YongHyeon 		if (sdevid != LINKSYS_SUBDEVICE_EG1032_REV3) {
89626390635SJohn Baldwin 			/*
89726390635SJohn Baldwin 			 * Only attach to rev. 3 of the Linksys EG1032 adapter.
898dfdb409eSPyun YongHyeon 			 * Rev. 2 is supported by sk(4).
89926390635SJohn Baldwin 			 */
900a94100faSBill Paul 			return (ENXIO);
901a94100faSBill Paul 		}
902dfdb409eSPyun YongHyeon 	}
903dfdb409eSPyun YongHyeon 
904dfdb409eSPyun YongHyeon 	if (vendor == RT_VENDORID && devid == RT_DEVICEID_8139) {
905dfdb409eSPyun YongHyeon 		if (revid != 0x20) {
906dfdb409eSPyun YongHyeon 			/* 8139, let rl(4) take care of this device. */
907dfdb409eSPyun YongHyeon 			return (ENXIO);
908dfdb409eSPyun YongHyeon 		}
909dfdb409eSPyun YongHyeon 	}
910dfdb409eSPyun YongHyeon 
911dfdb409eSPyun YongHyeon 	t = re_devs;
912dfdb409eSPyun YongHyeon 	for (i = 0; i < sizeof(re_devs) / sizeof(re_devs[0]); i++, t++) {
913dfdb409eSPyun YongHyeon 		if (vendor == t->rl_vid && devid == t->rl_did) {
914a94100faSBill Paul 			device_set_desc(dev, t->rl_name);
915d2b677bbSWarner Losh 			return (BUS_PROBE_DEFAULT);
916a94100faSBill Paul 		}
917a94100faSBill Paul 	}
918a94100faSBill Paul 
919a94100faSBill Paul 	return (ENXIO);
920a94100faSBill Paul }
921a94100faSBill Paul 
922a94100faSBill Paul /*
923a94100faSBill Paul  * Map a single buffer address.
924a94100faSBill Paul  */
925a94100faSBill Paul 
926a94100faSBill Paul static void
9277b5ffebfSPyun YongHyeon re_dma_map_addr(void *arg, bus_dma_segment_t *segs, int nseg, int error)
928a94100faSBill Paul {
9298fd99e38SPyun YongHyeon 	bus_addr_t		*addr;
930a94100faSBill Paul 
931a94100faSBill Paul 	if (error)
932a94100faSBill Paul 		return;
933a94100faSBill Paul 
934a94100faSBill Paul 	KASSERT(nseg == 1, ("too many DMA segments, %d should be 1", nseg));
935a94100faSBill Paul 	addr = arg;
936a94100faSBill Paul 	*addr = segs->ds_addr;
937a94100faSBill Paul }
938a94100faSBill Paul 
939a94100faSBill Paul static int
9407b5ffebfSPyun YongHyeon re_allocmem(device_t dev, struct rl_softc *sc)
941a94100faSBill Paul {
942d65abd66SPyun YongHyeon 	bus_size_t		rx_list_size, tx_list_size;
943a94100faSBill Paul 	int			error;
944a94100faSBill Paul 	int			i;
945a94100faSBill Paul 
946d65abd66SPyun YongHyeon 	rx_list_size = sc->rl_ldata.rl_rx_desc_cnt * sizeof(struct rl_desc);
947d65abd66SPyun YongHyeon 	tx_list_size = sc->rl_ldata.rl_tx_desc_cnt * sizeof(struct rl_desc);
948d65abd66SPyun YongHyeon 
949d65abd66SPyun YongHyeon 	/*
950d65abd66SPyun YongHyeon 	 * Allocate the parent bus DMA tag appropriate for PCI.
951ce628393SPyun YongHyeon 	 * In order to use DAC, RL_CPLUSCMD_PCI_DAC bit of RL_CPLUS_CMD
952ce628393SPyun YongHyeon 	 * register should be set. However some RealTek chips are known
953ce628393SPyun YongHyeon 	 * to be buggy on DAC handling, therefore disable DAC by limiting
954ce628393SPyun YongHyeon 	 * DMA address space to 32bit. PCIe variants of RealTek chips
955ce628393SPyun YongHyeon 	 * may not have the limitation but I took safer path.
956d65abd66SPyun YongHyeon 	 */
957d65abd66SPyun YongHyeon 	error = bus_dma_tag_create(bus_get_dma_tag(dev), 1, 0,
958ce628393SPyun YongHyeon 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
959d65abd66SPyun YongHyeon 	    BUS_SPACE_MAXSIZE_32BIT, 0, BUS_SPACE_MAXSIZE_32BIT, 0,
960d65abd66SPyun YongHyeon 	    NULL, NULL, &sc->rl_parent_tag);
961d65abd66SPyun YongHyeon 	if (error) {
962d65abd66SPyun YongHyeon 		device_printf(dev, "could not allocate parent DMA tag\n");
963d65abd66SPyun YongHyeon 		return (error);
964d65abd66SPyun YongHyeon 	}
965d65abd66SPyun YongHyeon 
966d65abd66SPyun YongHyeon 	/*
967d65abd66SPyun YongHyeon 	 * Allocate map for TX mbufs.
968d65abd66SPyun YongHyeon 	 */
969d65abd66SPyun YongHyeon 	error = bus_dma_tag_create(sc->rl_parent_tag, 1, 0,
970d65abd66SPyun YongHyeon 	    BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
971d65abd66SPyun YongHyeon 	    NULL, MCLBYTES * RL_NTXSEGS, RL_NTXSEGS, 4096, 0,
972d65abd66SPyun YongHyeon 	    NULL, NULL, &sc->rl_ldata.rl_tx_mtag);
973d65abd66SPyun YongHyeon 	if (error) {
974d65abd66SPyun YongHyeon 		device_printf(dev, "could not allocate TX DMA tag\n");
975d65abd66SPyun YongHyeon 		return (error);
976d65abd66SPyun YongHyeon 	}
977d65abd66SPyun YongHyeon 
978a94100faSBill Paul 	/*
979a94100faSBill Paul 	 * Allocate map for RX mbufs.
980a94100faSBill Paul 	 */
981d65abd66SPyun YongHyeon 
982d65abd66SPyun YongHyeon 	error = bus_dma_tag_create(sc->rl_parent_tag, sizeof(uint64_t), 0,
983d65abd66SPyun YongHyeon 	    BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL, NULL,
984d65abd66SPyun YongHyeon 	    MCLBYTES, 1, MCLBYTES, 0, NULL, NULL, &sc->rl_ldata.rl_rx_mtag);
985a94100faSBill Paul 	if (error) {
986d65abd66SPyun YongHyeon 		device_printf(dev, "could not allocate RX DMA tag\n");
987d65abd66SPyun YongHyeon 		return (error);
988a94100faSBill Paul 	}
989a94100faSBill Paul 
990a94100faSBill Paul 	/*
991a94100faSBill Paul 	 * Allocate map for TX descriptor list.
992a94100faSBill Paul 	 */
993a94100faSBill Paul 	error = bus_dma_tag_create(sc->rl_parent_tag, RL_RING_ALIGN,
994a94100faSBill Paul 	    0, BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL,
995d65abd66SPyun YongHyeon 	    NULL, tx_list_size, 1, tx_list_size, 0,
996a94100faSBill Paul 	    NULL, NULL, &sc->rl_ldata.rl_tx_list_tag);
997a94100faSBill Paul 	if (error) {
998d65abd66SPyun YongHyeon 		device_printf(dev, "could not allocate TX DMA ring tag\n");
999d65abd66SPyun YongHyeon 		return (error);
1000a94100faSBill Paul 	}
1001a94100faSBill Paul 
1002a94100faSBill Paul 	/* Allocate DMA'able memory for the TX ring */
1003a94100faSBill Paul 
1004a94100faSBill Paul 	error = bus_dmamem_alloc(sc->rl_ldata.rl_tx_list_tag,
1005d65abd66SPyun YongHyeon 	    (void **)&sc->rl_ldata.rl_tx_list,
1006d65abd66SPyun YongHyeon 	    BUS_DMA_WAITOK | BUS_DMA_COHERENT | BUS_DMA_ZERO,
1007a94100faSBill Paul 	    &sc->rl_ldata.rl_tx_list_map);
1008d65abd66SPyun YongHyeon 	if (error) {
1009d65abd66SPyun YongHyeon 		device_printf(dev, "could not allocate TX DMA ring\n");
1010d65abd66SPyun YongHyeon 		return (error);
1011d65abd66SPyun YongHyeon 	}
1012a94100faSBill Paul 
1013a94100faSBill Paul 	/* Load the map for the TX ring. */
1014a94100faSBill Paul 
1015d65abd66SPyun YongHyeon 	sc->rl_ldata.rl_tx_list_addr = 0;
1016a94100faSBill Paul 	error = bus_dmamap_load(sc->rl_ldata.rl_tx_list_tag,
1017a94100faSBill Paul 	     sc->rl_ldata.rl_tx_list_map, sc->rl_ldata.rl_tx_list,
1018d65abd66SPyun YongHyeon 	     tx_list_size, re_dma_map_addr,
1019a94100faSBill Paul 	     &sc->rl_ldata.rl_tx_list_addr, BUS_DMA_NOWAIT);
1020d65abd66SPyun YongHyeon 	if (error != 0 || sc->rl_ldata.rl_tx_list_addr == 0) {
1021d65abd66SPyun YongHyeon 		device_printf(dev, "could not load TX DMA ring\n");
1022d65abd66SPyun YongHyeon 		return (ENOMEM);
1023d65abd66SPyun YongHyeon 	}
1024a94100faSBill Paul 
1025a94100faSBill Paul 	/* Create DMA maps for TX buffers */
1026a94100faSBill Paul 
1027d65abd66SPyun YongHyeon 	for (i = 0; i < sc->rl_ldata.rl_tx_desc_cnt; i++) {
1028d65abd66SPyun YongHyeon 		error = bus_dmamap_create(sc->rl_ldata.rl_tx_mtag, 0,
1029d65abd66SPyun YongHyeon 		    &sc->rl_ldata.rl_tx_desc[i].tx_dmamap);
1030a94100faSBill Paul 		if (error) {
1031d65abd66SPyun YongHyeon 			device_printf(dev, "could not create DMA map for TX\n");
1032d65abd66SPyun YongHyeon 			return (error);
1033a94100faSBill Paul 		}
1034a94100faSBill Paul 	}
1035a94100faSBill Paul 
1036a94100faSBill Paul 	/*
1037a94100faSBill Paul 	 * Allocate map for RX descriptor list.
1038a94100faSBill Paul 	 */
1039a94100faSBill Paul 	error = bus_dma_tag_create(sc->rl_parent_tag, RL_RING_ALIGN,
1040a94100faSBill Paul 	    0, BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL,
1041d65abd66SPyun YongHyeon 	    NULL, rx_list_size, 1, rx_list_size, 0,
1042a94100faSBill Paul 	    NULL, NULL, &sc->rl_ldata.rl_rx_list_tag);
1043a94100faSBill Paul 	if (error) {
1044d65abd66SPyun YongHyeon 		device_printf(dev, "could not create RX DMA ring tag\n");
1045d65abd66SPyun YongHyeon 		return (error);
1046a94100faSBill Paul 	}
1047a94100faSBill Paul 
1048a94100faSBill Paul 	/* Allocate DMA'able memory for the RX ring */
1049a94100faSBill Paul 
1050a94100faSBill Paul 	error = bus_dmamem_alloc(sc->rl_ldata.rl_rx_list_tag,
1051d65abd66SPyun YongHyeon 	    (void **)&sc->rl_ldata.rl_rx_list,
1052d65abd66SPyun YongHyeon 	    BUS_DMA_WAITOK | BUS_DMA_COHERENT | BUS_DMA_ZERO,
1053a94100faSBill Paul 	    &sc->rl_ldata.rl_rx_list_map);
1054d65abd66SPyun YongHyeon 	if (error) {
1055d65abd66SPyun YongHyeon 		device_printf(dev, "could not allocate RX DMA ring\n");
1056d65abd66SPyun YongHyeon 		return (error);
1057d65abd66SPyun YongHyeon 	}
1058a94100faSBill Paul 
1059a94100faSBill Paul 	/* Load the map for the RX ring. */
1060a94100faSBill Paul 
1061d65abd66SPyun YongHyeon 	sc->rl_ldata.rl_rx_list_addr = 0;
1062a94100faSBill Paul 	error = bus_dmamap_load(sc->rl_ldata.rl_rx_list_tag,
1063a94100faSBill Paul 	     sc->rl_ldata.rl_rx_list_map, sc->rl_ldata.rl_rx_list,
1064d65abd66SPyun YongHyeon 	     rx_list_size, re_dma_map_addr,
1065a94100faSBill Paul 	     &sc->rl_ldata.rl_rx_list_addr, BUS_DMA_NOWAIT);
1066d65abd66SPyun YongHyeon 	if (error != 0 || sc->rl_ldata.rl_rx_list_addr == 0) {
1067d65abd66SPyun YongHyeon 		device_printf(dev, "could not load RX DMA ring\n");
1068d65abd66SPyun YongHyeon 		return (ENOMEM);
1069d65abd66SPyun YongHyeon 	}
1070a94100faSBill Paul 
1071a94100faSBill Paul 	/* Create DMA maps for RX buffers */
1072a94100faSBill Paul 
1073d65abd66SPyun YongHyeon 	error = bus_dmamap_create(sc->rl_ldata.rl_rx_mtag, 0,
1074d65abd66SPyun YongHyeon 	    &sc->rl_ldata.rl_rx_sparemap);
1075a94100faSBill Paul 	if (error) {
1076d65abd66SPyun YongHyeon 		device_printf(dev, "could not create spare DMA map for RX\n");
1077d65abd66SPyun YongHyeon 		return (error);
1078d65abd66SPyun YongHyeon 	}
1079d65abd66SPyun YongHyeon 	for (i = 0; i < sc->rl_ldata.rl_rx_desc_cnt; i++) {
1080d65abd66SPyun YongHyeon 		error = bus_dmamap_create(sc->rl_ldata.rl_rx_mtag, 0,
1081d65abd66SPyun YongHyeon 		    &sc->rl_ldata.rl_rx_desc[i].rx_dmamap);
1082d65abd66SPyun YongHyeon 		if (error) {
1083d65abd66SPyun YongHyeon 			device_printf(dev, "could not create DMA map for RX\n");
1084d65abd66SPyun YongHyeon 			return (error);
1085a94100faSBill Paul 		}
1086a94100faSBill Paul 	}
1087a94100faSBill Paul 
1088a94100faSBill Paul 	return (0);
1089a94100faSBill Paul }
1090a94100faSBill Paul 
1091a94100faSBill Paul /*
1092a94100faSBill Paul  * Attach the interface. Allocate softc structures, do ifmedia
1093a94100faSBill Paul  * setup and ethernet/BPF attach.
1094a94100faSBill Paul  */
1095a94100faSBill Paul static int
10967b5ffebfSPyun YongHyeon re_attach(device_t dev)
1097a94100faSBill Paul {
1098a94100faSBill Paul 	u_char			eaddr[ETHER_ADDR_LEN];
1099be099007SPyun YongHyeon 	u_int16_t		as[ETHER_ADDR_LEN / 2];
1100a94100faSBill Paul 	struct rl_softc		*sc;
1101a94100faSBill Paul 	struct ifnet		*ifp;
1102a94100faSBill Paul 	struct rl_hwrev		*hw_rev;
1103a94100faSBill Paul 	int			hwrev;
1104ace7ed5dSPyun YongHyeon 	u_int16_t		devid, re_did = 0;
1105d1754a9bSJohn Baldwin 	int			error = 0, rid, i;
11065774c5ffSPyun YongHyeon 	int			msic, reg;
110703ca7ae8SPyun YongHyeon 	uint8_t			cfg;
1108a94100faSBill Paul 
1109a94100faSBill Paul 	sc = device_get_softc(dev);
1110ed510fb0SBill Paul 	sc->rl_dev = dev;
1111a94100faSBill Paul 
1112a94100faSBill Paul 	mtx_init(&sc->rl_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
111397b9d4baSJohn-Mark Gurney 	    MTX_DEF);
1114d1754a9bSJohn Baldwin 	callout_init_mtx(&sc->rl_stat_callout, &sc->rl_mtx, 0);
1115d1754a9bSJohn Baldwin 
1116a94100faSBill Paul 	/*
1117a94100faSBill Paul 	 * Map control/status registers.
1118a94100faSBill Paul 	 */
1119a94100faSBill Paul 	pci_enable_busmaster(dev);
1120a94100faSBill Paul 
1121ace7ed5dSPyun YongHyeon 	devid = pci_get_device(dev);
1122ace7ed5dSPyun YongHyeon 	/* Prefer memory space register mapping over IO space. */
1123ace7ed5dSPyun YongHyeon 	sc->rl_res_id = PCIR_BAR(1);
1124ace7ed5dSPyun YongHyeon 	sc->rl_res_type = SYS_RES_MEMORY;
1125ace7ed5dSPyun YongHyeon 	/* RTL8168/8101E seems to use different BARs. */
1126ace7ed5dSPyun YongHyeon 	if (devid == RT_DEVICEID_8168 || devid == RT_DEVICEID_8101E)
1127ace7ed5dSPyun YongHyeon 		sc->rl_res_id = PCIR_BAR(2);
1128ace7ed5dSPyun YongHyeon 	sc->rl_res = bus_alloc_resource_any(dev, sc->rl_res_type,
1129ace7ed5dSPyun YongHyeon 	    &sc->rl_res_id, RF_ACTIVE);
1130a94100faSBill Paul 
1131a94100faSBill Paul 	if (sc->rl_res == NULL) {
1132ace7ed5dSPyun YongHyeon 		sc->rl_res_id = PCIR_BAR(0);
1133ace7ed5dSPyun YongHyeon 		sc->rl_res_type = SYS_RES_IOPORT;
1134ace7ed5dSPyun YongHyeon 		sc->rl_res = bus_alloc_resource_any(dev, sc->rl_res_type,
1135ace7ed5dSPyun YongHyeon 		    &sc->rl_res_id, RF_ACTIVE);
1136ace7ed5dSPyun YongHyeon 		if (sc->rl_res == NULL) {
1137d1754a9bSJohn Baldwin 			device_printf(dev, "couldn't map ports/memory\n");
1138a94100faSBill Paul 			error = ENXIO;
1139a94100faSBill Paul 			goto fail;
1140a94100faSBill Paul 		}
1141ace7ed5dSPyun YongHyeon 	}
1142a94100faSBill Paul 
1143a94100faSBill Paul 	sc->rl_btag = rman_get_bustag(sc->rl_res);
1144a94100faSBill Paul 	sc->rl_bhandle = rman_get_bushandle(sc->rl_res);
1145a94100faSBill Paul 
11465774c5ffSPyun YongHyeon 	msic = 0;
11475774c5ffSPyun YongHyeon 	if (pci_find_extcap(dev, PCIY_EXPRESS, &reg) == 0) {
1148818951afSPyun YongHyeon 		sc->rl_flags |= RL_FLAG_PCIE;
11495774c5ffSPyun YongHyeon 		msic = pci_msi_count(dev);
11505774c5ffSPyun YongHyeon 		if (bootverbose)
11515774c5ffSPyun YongHyeon 			device_printf(dev, "MSI count : %d\n", msic);
11525774c5ffSPyun YongHyeon 	}
11535774c5ffSPyun YongHyeon 	if (msic == RL_MSI_MESSAGES  && msi_disable == 0) {
11545774c5ffSPyun YongHyeon 		if (pci_alloc_msi(dev, &msic) == 0) {
11555774c5ffSPyun YongHyeon 			if (msic == RL_MSI_MESSAGES) {
11565774c5ffSPyun YongHyeon 				device_printf(dev, "Using %d MSI messages\n",
11575774c5ffSPyun YongHyeon 				    msic);
1158351a76f9SPyun YongHyeon 				sc->rl_flags |= RL_FLAG_MSI;
1159339a44fbSPyun YongHyeon 				/* Explicitly set MSI enable bit. */
1160339a44fbSPyun YongHyeon 				CSR_WRITE_1(sc, RL_EECMD, RL_EE_MODE);
1161339a44fbSPyun YongHyeon 				cfg = CSR_READ_1(sc, RL_CFG2);
1162339a44fbSPyun YongHyeon 				cfg |= RL_CFG2_MSI;
1163339a44fbSPyun YongHyeon 				CSR_WRITE_1(sc, RL_CFG2, cfg);
1164f98dd8cfSPyun YongHyeon 				CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_OFF);
11655774c5ffSPyun YongHyeon 			} else
11665774c5ffSPyun YongHyeon 				pci_release_msi(dev);
11675774c5ffSPyun YongHyeon 		}
11685774c5ffSPyun YongHyeon 	}
1169a94100faSBill Paul 
11705774c5ffSPyun YongHyeon 	/* Allocate interrupt */
1171351a76f9SPyun YongHyeon 	if ((sc->rl_flags & RL_FLAG_MSI) == 0) {
11725774c5ffSPyun YongHyeon 		rid = 0;
11735774c5ffSPyun YongHyeon 		sc->rl_irq[0] = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
11745774c5ffSPyun YongHyeon 		    RF_SHAREABLE | RF_ACTIVE);
11755774c5ffSPyun YongHyeon 		if (sc->rl_irq[0] == NULL) {
11765774c5ffSPyun YongHyeon 			device_printf(dev, "couldn't allocate IRQ resources\n");
1177a94100faSBill Paul 			error = ENXIO;
1178a94100faSBill Paul 			goto fail;
1179a94100faSBill Paul 		}
11805774c5ffSPyun YongHyeon 	} else {
11815774c5ffSPyun YongHyeon 		for (i = 0, rid = 1; i < RL_MSI_MESSAGES; i++, rid++) {
11825774c5ffSPyun YongHyeon 			sc->rl_irq[i] = bus_alloc_resource_any(dev,
11835774c5ffSPyun YongHyeon 			    SYS_RES_IRQ, &rid, RF_ACTIVE);
11845774c5ffSPyun YongHyeon 			if (sc->rl_irq[i] == NULL) {
11855774c5ffSPyun YongHyeon 				device_printf(dev,
11865774c5ffSPyun YongHyeon 				    "couldn't llocate IRQ resources for "
11875774c5ffSPyun YongHyeon 				    "message %d\n", rid);
11885774c5ffSPyun YongHyeon 				error = ENXIO;
11895774c5ffSPyun YongHyeon 				goto fail;
11905774c5ffSPyun YongHyeon 			}
11915774c5ffSPyun YongHyeon 		}
11925774c5ffSPyun YongHyeon 	}
1193a94100faSBill Paul 
11944d2bf239SPyun YongHyeon 	if ((sc->rl_flags & RL_FLAG_MSI) == 0) {
11954d2bf239SPyun YongHyeon 		CSR_WRITE_1(sc, RL_EECMD, RL_EE_MODE);
11964d2bf239SPyun YongHyeon 		cfg = CSR_READ_1(sc, RL_CFG2);
11974d2bf239SPyun YongHyeon 		if ((cfg & RL_CFG2_MSI) != 0) {
11984d2bf239SPyun YongHyeon 			device_printf(dev, "turning off MSI enable bit.\n");
11994d2bf239SPyun YongHyeon 			cfg &= ~RL_CFG2_MSI;
12004d2bf239SPyun YongHyeon 			CSR_WRITE_1(sc, RL_CFG2, cfg);
12014d2bf239SPyun YongHyeon 		}
12024d2bf239SPyun YongHyeon 		CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_OFF);
12034d2bf239SPyun YongHyeon 	}
12044d2bf239SPyun YongHyeon 
1205a94100faSBill Paul 	/* Reset the adapter. */
120697b9d4baSJohn-Mark Gurney 	RL_LOCK(sc);
1207a94100faSBill Paul 	re_reset(sc);
120897b9d4baSJohn-Mark Gurney 	RL_UNLOCK(sc);
1209abc8ff44SBill Paul 
1210abc8ff44SBill Paul 	hw_rev = re_hwrevs;
1211a810fc83SPyun YongHyeon 	hwrev = CSR_READ_4(sc, RL_TXCFG);
1212a810fc83SPyun YongHyeon 	device_printf(dev, "Chip rev. 0x%08x\n", hwrev & 0x7c800000);
1213a810fc83SPyun YongHyeon 	device_printf(dev, "MAC rev. 0x%08x\n", hwrev & 0x00700000);
1214a810fc83SPyun YongHyeon 	hwrev &= RL_TXCFG_HWREV;
1215abc8ff44SBill Paul 	while (hw_rev->rl_desc != NULL) {
1216abc8ff44SBill Paul 		if (hw_rev->rl_rev == hwrev) {
1217abc8ff44SBill Paul 			sc->rl_type = hw_rev->rl_type;
1218abc8ff44SBill Paul 			break;
1219abc8ff44SBill Paul 		}
1220abc8ff44SBill Paul 		hw_rev++;
1221abc8ff44SBill Paul 	}
1222d65abd66SPyun YongHyeon 	if (hw_rev->rl_desc == NULL) {
1223a810fc83SPyun YongHyeon 		device_printf(dev, "Unknown H/W revision: 0x%08x\n", hwrev);
1224d65abd66SPyun YongHyeon 		error = ENXIO;
1225d65abd66SPyun YongHyeon 		goto fail;
1226d65abd66SPyun YongHyeon 	}
1227abc8ff44SBill Paul 
1228351a76f9SPyun YongHyeon 	switch (hw_rev->rl_rev) {
1229351a76f9SPyun YongHyeon 	case RL_HWREV_8139CPLUS:
1230130b6dfbSPyun YongHyeon 		sc->rl_flags |= RL_FLAG_NOJUMBO | RL_FLAG_FASTETHER;
1231351a76f9SPyun YongHyeon 		break;
12320596d7e6SPyun YongHyeon 	case RL_HWREV_8110S:
12330596d7e6SPyun YongHyeon 		sc->rl_flags |= RL_FLAG_PHY8110S;
12340596d7e6SPyun YongHyeon 		break;
1235351a76f9SPyun YongHyeon 	case RL_HWREV_8100E:
1236351a76f9SPyun YongHyeon 	case RL_HWREV_8101E:
123747fac8e5SPyun YongHyeon 		sc->rl_flags |= RL_FLAG_NOJUMBO | RL_FLAG_INVMAR |
1238130b6dfbSPyun YongHyeon 		    RL_FLAG_PHYWAKE | RL_FLAG_FASTETHER;
1239351a76f9SPyun YongHyeon 		break;
1240b1d62f0fSPyun YongHyeon 	case RL_HWREV_8102E:
1241b1d62f0fSPyun YongHyeon 	case RL_HWREV_8102EL:
1242b1d62f0fSPyun YongHyeon 		sc->rl_flags |= RL_FLAG_NOJUMBO | RL_FLAG_INVMAR |
124397cf11ecSPyun YongHyeon 		    RL_FLAG_PHYWAKE | RL_FLAG_PAR | RL_FLAG_DESCV2 |
1244ead8fc66SPyun YongHyeon 		    RL_FLAG_MACSTAT | RL_FLAG_FASTETHER | RL_FLAG_CMDSTOP;
1245b1d62f0fSPyun YongHyeon 		break;
1246351a76f9SPyun YongHyeon 	case RL_HWREV_8168_SPIN1:
1247351a76f9SPyun YongHyeon 	case RL_HWREV_8168_SPIN2:
1248886ff602SPyun YongHyeon 		sc->rl_flags |= RL_FLAG_WOLRXENB;
1249886ff602SPyun YongHyeon 		/* FALLTHROUGH */
1250351a76f9SPyun YongHyeon 	case RL_HWREV_8168_SPIN3:
1251deb5c680SPyun YongHyeon 		sc->rl_flags |= RL_FLAG_INVMAR | RL_FLAG_PHYWAKE |
1252deb5c680SPyun YongHyeon 		    RL_FLAG_MACSTAT;
1253deb5c680SPyun YongHyeon 		break;
1254deb5c680SPyun YongHyeon 	case RL_HWREV_8168C_SPIN2:
125561f45a72SPyun YongHyeon 		sc->rl_flags |= RL_FLAG_MACSLEEP;
125661f45a72SPyun YongHyeon 		/* FALLTHROUGH */
125761f45a72SPyun YongHyeon 	case RL_HWREV_8168C:
125861f45a72SPyun YongHyeon 		if ((hwrev & 0x00700000) == 0x00200000)
125961f45a72SPyun YongHyeon 			sc->rl_flags |= RL_FLAG_MACSLEEP;
126061f45a72SPyun YongHyeon 		/* FALLTHROUGH */
1261deb5c680SPyun YongHyeon 	case RL_HWREV_8168CP:
126259ef640dSPyun YongHyeon 	case RL_HWREV_8168D:
1263deb5c680SPyun YongHyeon 		sc->rl_flags |= RL_FLAG_INVMAR | RL_FLAG_PHYWAKE |
1264ead8fc66SPyun YongHyeon 		    RL_FLAG_PAR | RL_FLAG_DESCV2 | RL_FLAG_MACSTAT |
1265ead8fc66SPyun YongHyeon 		    RL_FLAG_CMDSTOP;
1266deb5c680SPyun YongHyeon 		/*
1267deb5c680SPyun YongHyeon 		 * These controllers support jumbo frame but it seems
1268deb5c680SPyun YongHyeon 		 * that enabling it requires touching additional magic
1269deb5c680SPyun YongHyeon 		 * registers. Depending on MAC revisions some
1270deb5c680SPyun YongHyeon 		 * controllers need to disable checksum offload. So
1271deb5c680SPyun YongHyeon 		 * disable jumbo frame until I have better idea what
1272deb5c680SPyun YongHyeon 		 * it really requires to make it support.
1273deb5c680SPyun YongHyeon 		 * RTL8168C/CP : supports up to 6KB jumbo frame.
1274deb5c680SPyun YongHyeon 		 * RTL8111C/CP : supports up to 9KB jumbo frame.
1275deb5c680SPyun YongHyeon 		 */
1276deb5c680SPyun YongHyeon 		sc->rl_flags |= RL_FLAG_NOJUMBO;
1277351a76f9SPyun YongHyeon 		break;
12780596d7e6SPyun YongHyeon 	case RL_HWREV_8169:
12790596d7e6SPyun YongHyeon 	case RL_HWREV_8169S:
12800596d7e6SPyun YongHyeon 		sc->rl_flags |= RL_FLAG_PHY8169;
12810596d7e6SPyun YongHyeon 		break;
1282351a76f9SPyun YongHyeon 	case RL_HWREV_8169_8110SB:
1283351a76f9SPyun YongHyeon 	case RL_HWREV_8169_8110SC:
1284715922d7SPyun YongHyeon 	case RL_HWREV_8169_8110SBL:
12850596d7e6SPyun YongHyeon 		sc->rl_flags |= RL_FLAG_PHYWAKE | RL_FLAG_PHY8169;
1286351a76f9SPyun YongHyeon 		break;
1287351a76f9SPyun YongHyeon 	default:
1288351a76f9SPyun YongHyeon 		break;
1289351a76f9SPyun YongHyeon 	}
1290351a76f9SPyun YongHyeon 
1291deb5c680SPyun YongHyeon 	/* Enable PME. */
1292deb5c680SPyun YongHyeon 	CSR_WRITE_1(sc, RL_EECMD, RL_EE_MODE);
1293deb5c680SPyun YongHyeon 	cfg = CSR_READ_1(sc, RL_CFG1);
1294deb5c680SPyun YongHyeon 	cfg |= RL_CFG1_PME;
1295deb5c680SPyun YongHyeon 	CSR_WRITE_1(sc, RL_CFG1, cfg);
1296deb5c680SPyun YongHyeon 	cfg = CSR_READ_1(sc, RL_CFG5);
1297deb5c680SPyun YongHyeon 	cfg &= RL_CFG5_PME_STS;
1298deb5c680SPyun YongHyeon 	CSR_WRITE_1(sc, RL_CFG5, cfg);
1299deb5c680SPyun YongHyeon 	CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_OFF);
1300deb5c680SPyun YongHyeon 
1301deb5c680SPyun YongHyeon 	if ((sc->rl_flags & RL_FLAG_PAR) != 0) {
1302deb5c680SPyun YongHyeon 		/*
1303deb5c680SPyun YongHyeon 		 * XXX Should have a better way to extract station
1304deb5c680SPyun YongHyeon 		 * address from EEPROM.
1305deb5c680SPyun YongHyeon 		 */
1306deb5c680SPyun YongHyeon 		for (i = 0; i < ETHER_ADDR_LEN; i++)
1307deb5c680SPyun YongHyeon 			eaddr[i] = CSR_READ_1(sc, RL_IDR0 + i);
1308deb5c680SPyun YongHyeon 	} else {
1309141f92e7SPyun YongHyeon 		sc->rl_eewidth = RL_9356_ADDR_LEN;
1310ed510fb0SBill Paul 		re_read_eeprom(sc, (caddr_t)&re_did, 0, 1);
1311a94100faSBill Paul 		if (re_did != 0x8129)
1312141f92e7SPyun YongHyeon 			sc->rl_eewidth = RL_9346_ADDR_LEN;
1313a94100faSBill Paul 
1314a94100faSBill Paul 		/*
1315a94100faSBill Paul 		 * Get station address from the EEPROM.
1316a94100faSBill Paul 		 */
1317ed510fb0SBill Paul 		re_read_eeprom(sc, (caddr_t)as, RL_EE_EADDR, 3);
1318be099007SPyun YongHyeon 		for (i = 0; i < ETHER_ADDR_LEN / 2; i++)
1319be099007SPyun YongHyeon 			as[i] = le16toh(as[i]);
1320be099007SPyun YongHyeon 		bcopy(as, eaddr, sizeof(eaddr));
1321deb5c680SPyun YongHyeon 	}
1322ed510fb0SBill Paul 
1323ed510fb0SBill Paul 	if (sc->rl_type == RL_8169) {
1324d65abd66SPyun YongHyeon 		/* Set RX length mask and number of descriptors. */
1325ed510fb0SBill Paul 		sc->rl_rxlenmask = RL_RDESC_STAT_GFRAGLEN;
1326ed510fb0SBill Paul 		sc->rl_txstart = RL_GTXSTART;
1327d65abd66SPyun YongHyeon 		sc->rl_ldata.rl_tx_desc_cnt = RL_8169_TX_DESC_CNT;
1328d65abd66SPyun YongHyeon 		sc->rl_ldata.rl_rx_desc_cnt = RL_8169_RX_DESC_CNT;
1329ed510fb0SBill Paul 	} else {
1330d65abd66SPyun YongHyeon 		/* Set RX length mask and number of descriptors. */
1331ed510fb0SBill Paul 		sc->rl_rxlenmask = RL_RDESC_STAT_FRAGLEN;
1332ed510fb0SBill Paul 		sc->rl_txstart = RL_TXSTART;
1333d65abd66SPyun YongHyeon 		sc->rl_ldata.rl_tx_desc_cnt = RL_8139_TX_DESC_CNT;
1334d65abd66SPyun YongHyeon 		sc->rl_ldata.rl_rx_desc_cnt = RL_8139_RX_DESC_CNT;
1335abc8ff44SBill Paul 	}
13369bac70b8SBill Paul 
1337a94100faSBill Paul 	error = re_allocmem(dev, sc);
1338a94100faSBill Paul 	if (error)
1339a94100faSBill Paul 		goto fail;
1340a94100faSBill Paul 
1341cd036ec1SBrooks Davis 	ifp = sc->rl_ifp = if_alloc(IFT_ETHER);
1342cd036ec1SBrooks Davis 	if (ifp == NULL) {
1343d1754a9bSJohn Baldwin 		device_printf(dev, "can not if_alloc()\n");
1344cd036ec1SBrooks Davis 		error = ENOSPC;
1345cd036ec1SBrooks Davis 		goto fail;
1346cd036ec1SBrooks Davis 	}
1347cd036ec1SBrooks Davis 
134861f45a72SPyun YongHyeon 	/* Take controller out of deep sleep mode. */
134961f45a72SPyun YongHyeon 	if ((sc->rl_flags & RL_FLAG_MACSLEEP) != 0) {
135061f45a72SPyun YongHyeon 		if ((CSR_READ_1(sc, RL_MACDBG) & 0x80) == 0x80)
135161f45a72SPyun YongHyeon 			CSR_WRITE_1(sc, RL_GPIO,
135261f45a72SPyun YongHyeon 			    CSR_READ_1(sc, RL_GPIO) | 0x01);
135361f45a72SPyun YongHyeon 		else
135461f45a72SPyun YongHyeon 			CSR_WRITE_1(sc, RL_GPIO,
135561f45a72SPyun YongHyeon 			    CSR_READ_1(sc, RL_GPIO) & ~0x01);
135661f45a72SPyun YongHyeon 	}
135761f45a72SPyun YongHyeon 
1358351a76f9SPyun YongHyeon 	/* Take PHY out of power down mode. */
1359351a76f9SPyun YongHyeon 	if ((sc->rl_flags & RL_FLAG_PHYWAKE) != 0) {
1360351a76f9SPyun YongHyeon 		re_gmii_writereg(dev, 1, 0x1f, 0);
1361351a76f9SPyun YongHyeon 		re_gmii_writereg(dev, 1, 0x0e, 0);
1362351a76f9SPyun YongHyeon 	}
1363351a76f9SPyun YongHyeon 
1364a94100faSBill Paul 	/* Do MII setup */
1365a94100faSBill Paul 	if (mii_phy_probe(dev, &sc->rl_miibus,
1366a94100faSBill Paul 	    re_ifmedia_upd, re_ifmedia_sts)) {
1367d1754a9bSJohn Baldwin 		device_printf(dev, "MII without any phy!\n");
1368a94100faSBill Paul 		error = ENXIO;
1369a94100faSBill Paul 		goto fail;
1370a94100faSBill Paul 	}
1371a94100faSBill Paul 
1372a94100faSBill Paul 	ifp->if_softc = sc;
13739bf40edeSBrooks Davis 	if_initname(ifp, device_get_name(dev), device_get_unit(dev));
1374a94100faSBill Paul 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
1375a94100faSBill Paul 	ifp->if_ioctl = re_ioctl;
1376a94100faSBill Paul 	ifp->if_start = re_start;
1377deb5c680SPyun YongHyeon 	ifp->if_hwassist = RE_CSUM_FEATURES;
1378deb5c680SPyun YongHyeon 	ifp->if_capabilities = IFCAP_HWCSUM;
1379498bd0d3SBill Paul 	ifp->if_capenable = ifp->if_capabilities;
1380a94100faSBill Paul 	ifp->if_init = re_init;
138152732175SMax Laier 	IFQ_SET_MAXLEN(&ifp->if_snd, RL_IFQ_MAXLEN);
138252732175SMax Laier 	ifp->if_snd.ifq_drv_maxlen = RL_IFQ_MAXLEN;
138352732175SMax Laier 	IFQ_SET_READY(&ifp->if_snd);
1384a94100faSBill Paul 
1385ed510fb0SBill Paul 	TASK_INIT(&sc->rl_txtask, 1, re_tx_task, ifp);
1386ed510fb0SBill Paul 	TASK_INIT(&sc->rl_inttask, 0, re_int_task, sc);
1387ed510fb0SBill Paul 
1388a94100faSBill Paul 	/*
1389deb5c680SPyun YongHyeon 	 * XXX
1390deb5c680SPyun YongHyeon 	 * Still have no idea how to make TSO work on 8168C, 8168CP,
1391deb5c680SPyun YongHyeon 	 * 8111C and 8111CP.
1392deb5c680SPyun YongHyeon 	 */
1393deb5c680SPyun YongHyeon 	if ((sc->rl_flags & RL_FLAG_DESCV2) == 0) {
1394deb5c680SPyun YongHyeon 		ifp->if_hwassist |= CSUM_TSO;
1395deb5c680SPyun YongHyeon 		ifp->if_capabilities |= IFCAP_TSO4;
1396deb5c680SPyun YongHyeon 	}
1397deb5c680SPyun YongHyeon 
1398deb5c680SPyun YongHyeon 	/*
1399a94100faSBill Paul 	 * Call MI attach routine.
1400a94100faSBill Paul 	 */
1401a94100faSBill Paul 	ether_ifattach(ifp, eaddr);
1402a94100faSBill Paul 
1403960fd5b3SPyun YongHyeon 	/* VLAN capability setup */
1404960fd5b3SPyun YongHyeon 	ifp->if_capabilities |= IFCAP_VLAN_MTU | IFCAP_VLAN_HWTAGGING;
1405960fd5b3SPyun YongHyeon 	if (ifp->if_capabilities & IFCAP_HWCSUM)
1406960fd5b3SPyun YongHyeon 		ifp->if_capabilities |= IFCAP_VLAN_HWCSUM;
14077467bd53SPyun YongHyeon 	/* Enable WOL if PM is supported. */
14087467bd53SPyun YongHyeon 	if (pci_find_extcap(sc->rl_dev, PCIY_PMG, &reg) == 0)
14097467bd53SPyun YongHyeon 		ifp->if_capabilities |= IFCAP_WOL;
1410960fd5b3SPyun YongHyeon 	ifp->if_capenable = ifp->if_capabilities;
1411a2a8420cSPyun YongHyeon 	/*
1412a2a8420cSPyun YongHyeon 	 * Don't enable TSO by default. Under certain
1413a2a8420cSPyun YongHyeon 	 * circumtances the controller generated corrupted
1414a2a8420cSPyun YongHyeon 	 * packets in TSO size.
1415a2a8420cSPyun YongHyeon 	 */
1416a2a8420cSPyun YongHyeon 	ifp->if_hwassist &= ~CSUM_TSO;
1417a2a8420cSPyun YongHyeon 	ifp->if_capenable &= ~IFCAP_TSO4;
1418960fd5b3SPyun YongHyeon #ifdef DEVICE_POLLING
1419960fd5b3SPyun YongHyeon 	ifp->if_capabilities |= IFCAP_POLLING;
1420960fd5b3SPyun YongHyeon #endif
1421960fd5b3SPyun YongHyeon 	/*
1422960fd5b3SPyun YongHyeon 	 * Tell the upper layer(s) we support long frames.
1423960fd5b3SPyun YongHyeon 	 * Must appear after the call to ether_ifattach() because
1424960fd5b3SPyun YongHyeon 	 * ether_ifattach() sets ifi_hdrlen to the default value.
1425960fd5b3SPyun YongHyeon 	 */
1426960fd5b3SPyun YongHyeon 	ifp->if_data.ifi_hdrlen = sizeof(struct ether_vlan_header);
1427960fd5b3SPyun YongHyeon 
1428ed510fb0SBill Paul #ifdef RE_DIAG
1429ed510fb0SBill Paul 	/*
1430ed510fb0SBill Paul 	 * Perform hardware diagnostic on the original RTL8169.
1431ed510fb0SBill Paul 	 * Some 32-bit cards were incorrectly wired and would
1432ed510fb0SBill Paul 	 * malfunction if plugged into a 64-bit slot.
1433ed510fb0SBill Paul 	 */
1434a94100faSBill Paul 
1435ed510fb0SBill Paul 	if (hwrev == RL_HWREV_8169) {
1436ed510fb0SBill Paul 		error = re_diag(sc);
1437a94100faSBill Paul 		if (error) {
1438ed510fb0SBill Paul 			device_printf(dev,
1439ed510fb0SBill Paul 		    	"attach aborted due to hardware diag failure\n");
1440a94100faSBill Paul 			ether_ifdetach(ifp);
1441a94100faSBill Paul 			goto fail;
1442a94100faSBill Paul 		}
1443ed510fb0SBill Paul 	}
1444ed510fb0SBill Paul #endif
1445a94100faSBill Paul 
1446a94100faSBill Paul 	/* Hook interrupt last to avoid having to lock softc */
1447351a76f9SPyun YongHyeon 	if ((sc->rl_flags & RL_FLAG_MSI) == 0)
14485774c5ffSPyun YongHyeon 		error = bus_setup_intr(dev, sc->rl_irq[0],
14495774c5ffSPyun YongHyeon 		    INTR_TYPE_NET | INTR_MPSAFE, re_intr, NULL, sc,
14505774c5ffSPyun YongHyeon 		    &sc->rl_intrhand[0]);
14515774c5ffSPyun YongHyeon 	else {
14525774c5ffSPyun YongHyeon 		for (i = 0; i < RL_MSI_MESSAGES; i++) {
14535774c5ffSPyun YongHyeon 			error = bus_setup_intr(dev, sc->rl_irq[i],
14545774c5ffSPyun YongHyeon 			    INTR_TYPE_NET | INTR_MPSAFE, re_intr, NULL, sc,
14555774c5ffSPyun YongHyeon 		    	    &sc->rl_intrhand[i]);
14565774c5ffSPyun YongHyeon 			if (error != 0)
14575774c5ffSPyun YongHyeon 				break;
14585774c5ffSPyun YongHyeon 		}
14595774c5ffSPyun YongHyeon 	}
1460a94100faSBill Paul 	if (error) {
1461d1754a9bSJohn Baldwin 		device_printf(dev, "couldn't set up irq\n");
1462a94100faSBill Paul 		ether_ifdetach(ifp);
1463a94100faSBill Paul 	}
1464a94100faSBill Paul 
1465a94100faSBill Paul fail:
1466ed510fb0SBill Paul 
1467a94100faSBill Paul 	if (error)
1468a94100faSBill Paul 		re_detach(dev);
1469a94100faSBill Paul 
1470a94100faSBill Paul 	return (error);
1471a94100faSBill Paul }
1472a94100faSBill Paul 
1473a94100faSBill Paul /*
1474a94100faSBill Paul  * Shutdown hardware and free up resources. This can be called any
1475a94100faSBill Paul  * time after the mutex has been initialized. It is called in both
1476a94100faSBill Paul  * the error case in attach and the normal detach case so it needs
1477a94100faSBill Paul  * to be careful about only freeing resources that have actually been
1478a94100faSBill Paul  * allocated.
1479a94100faSBill Paul  */
1480a94100faSBill Paul static int
14817b5ffebfSPyun YongHyeon re_detach(device_t dev)
1482a94100faSBill Paul {
1483a94100faSBill Paul 	struct rl_softc		*sc;
1484a94100faSBill Paul 	struct ifnet		*ifp;
14855774c5ffSPyun YongHyeon 	int			i, rid;
1486a94100faSBill Paul 
1487a94100faSBill Paul 	sc = device_get_softc(dev);
1488fc74a9f9SBrooks Davis 	ifp = sc->rl_ifp;
1489aedd16d9SJohn-Mark Gurney 	KASSERT(mtx_initialized(&sc->rl_mtx), ("re mutex not initialized"));
149097b9d4baSJohn-Mark Gurney 
149181cf2eb6SPyun YongHyeon 	/* These should only be active if attach succeeded */
149281cf2eb6SPyun YongHyeon 	if (device_is_attached(dev)) {
149340929967SGleb Smirnoff #ifdef DEVICE_POLLING
149440929967SGleb Smirnoff 		if (ifp->if_capenable & IFCAP_POLLING)
149540929967SGleb Smirnoff 			ether_poll_deregister(ifp);
149640929967SGleb Smirnoff #endif
149797b9d4baSJohn-Mark Gurney 		RL_LOCK(sc);
149897b9d4baSJohn-Mark Gurney #if 0
149997b9d4baSJohn-Mark Gurney 		sc->suspended = 1;
150097b9d4baSJohn-Mark Gurney #endif
1501a94100faSBill Paul 		re_stop(sc);
1502525e6a87SRuslan Ermilov 		RL_UNLOCK(sc);
1503d1754a9bSJohn Baldwin 		callout_drain(&sc->rl_stat_callout);
15043d4c1b57SJohn Baldwin 		taskqueue_drain(taskqueue_fast, &sc->rl_inttask);
15053d4c1b57SJohn Baldwin 		taskqueue_drain(taskqueue_fast, &sc->rl_txtask);
1506a94100faSBill Paul 		/*
1507a94100faSBill Paul 		 * Force off the IFF_UP flag here, in case someone
1508a94100faSBill Paul 		 * still had a BPF descriptor attached to this
150997b9d4baSJohn-Mark Gurney 		 * interface. If they do, ether_ifdetach() will cause
1510a94100faSBill Paul 		 * the BPF code to try and clear the promisc mode
1511a94100faSBill Paul 		 * flag, which will bubble down to re_ioctl(),
1512a94100faSBill Paul 		 * which will try to call re_init() again. This will
1513a94100faSBill Paul 		 * turn the NIC back on and restart the MII ticker,
1514a94100faSBill Paul 		 * which will panic the system when the kernel tries
1515a94100faSBill Paul 		 * to invoke the re_tick() function that isn't there
1516a94100faSBill Paul 		 * anymore.
1517a94100faSBill Paul 		 */
1518a94100faSBill Paul 		ifp->if_flags &= ~IFF_UP;
1519525e6a87SRuslan Ermilov 		ether_ifdetach(ifp);
1520a94100faSBill Paul 	}
1521a94100faSBill Paul 	if (sc->rl_miibus)
1522a94100faSBill Paul 		device_delete_child(dev, sc->rl_miibus);
1523a94100faSBill Paul 	bus_generic_detach(dev);
1524a94100faSBill Paul 
152597b9d4baSJohn-Mark Gurney 	/*
152697b9d4baSJohn-Mark Gurney 	 * The rest is resource deallocation, so we should already be
152797b9d4baSJohn-Mark Gurney 	 * stopped here.
152897b9d4baSJohn-Mark Gurney 	 */
152997b9d4baSJohn-Mark Gurney 
15305774c5ffSPyun YongHyeon 	for (i = 0; i < RL_MSI_MESSAGES; i++) {
15315774c5ffSPyun YongHyeon 		if (sc->rl_intrhand[i] != NULL) {
15325774c5ffSPyun YongHyeon 			bus_teardown_intr(dev, sc->rl_irq[i],
15335774c5ffSPyun YongHyeon 			    sc->rl_intrhand[i]);
15345774c5ffSPyun YongHyeon 			sc->rl_intrhand[i] = NULL;
15355774c5ffSPyun YongHyeon 		}
15365774c5ffSPyun YongHyeon 	}
1537ad4f426eSWarner Losh 	if (ifp != NULL)
1538ad4f426eSWarner Losh 		if_free(ifp);
1539351a76f9SPyun YongHyeon 	if ((sc->rl_flags & RL_FLAG_MSI) == 0) {
15405774c5ffSPyun YongHyeon 		if (sc->rl_irq[0] != NULL) {
15415774c5ffSPyun YongHyeon 			bus_release_resource(dev, SYS_RES_IRQ, 0,
15425774c5ffSPyun YongHyeon 			    sc->rl_irq[0]);
15435774c5ffSPyun YongHyeon 			sc->rl_irq[0] = NULL;
15445774c5ffSPyun YongHyeon 		}
15455774c5ffSPyun YongHyeon 	} else {
15465774c5ffSPyun YongHyeon 		for (i = 0, rid = 1; i < RL_MSI_MESSAGES; i++, rid++) {
15475774c5ffSPyun YongHyeon 			if (sc->rl_irq[i] != NULL) {
15485774c5ffSPyun YongHyeon 				bus_release_resource(dev, SYS_RES_IRQ, rid,
15495774c5ffSPyun YongHyeon 				    sc->rl_irq[i]);
15505774c5ffSPyun YongHyeon 				sc->rl_irq[i] = NULL;
15515774c5ffSPyun YongHyeon 			}
15525774c5ffSPyun YongHyeon 		}
15535774c5ffSPyun YongHyeon 		pci_release_msi(dev);
15545774c5ffSPyun YongHyeon 	}
1555a94100faSBill Paul 	if (sc->rl_res)
1556ace7ed5dSPyun YongHyeon 		bus_release_resource(dev, sc->rl_res_type, sc->rl_res_id,
1557ace7ed5dSPyun YongHyeon 		    sc->rl_res);
1558a94100faSBill Paul 
1559a94100faSBill Paul 	/* Unload and free the RX DMA ring memory and map */
1560a94100faSBill Paul 
1561a94100faSBill Paul 	if (sc->rl_ldata.rl_rx_list_tag) {
1562a94100faSBill Paul 		bus_dmamap_unload(sc->rl_ldata.rl_rx_list_tag,
1563a94100faSBill Paul 		    sc->rl_ldata.rl_rx_list_map);
1564a94100faSBill Paul 		bus_dmamem_free(sc->rl_ldata.rl_rx_list_tag,
1565a94100faSBill Paul 		    sc->rl_ldata.rl_rx_list,
1566a94100faSBill Paul 		    sc->rl_ldata.rl_rx_list_map);
1567a94100faSBill Paul 		bus_dma_tag_destroy(sc->rl_ldata.rl_rx_list_tag);
1568a94100faSBill Paul 	}
1569a94100faSBill Paul 
1570a94100faSBill Paul 	/* Unload and free the TX DMA ring memory and map */
1571a94100faSBill Paul 
1572a94100faSBill Paul 	if (sc->rl_ldata.rl_tx_list_tag) {
1573a94100faSBill Paul 		bus_dmamap_unload(sc->rl_ldata.rl_tx_list_tag,
1574a94100faSBill Paul 		    sc->rl_ldata.rl_tx_list_map);
1575a94100faSBill Paul 		bus_dmamem_free(sc->rl_ldata.rl_tx_list_tag,
1576a94100faSBill Paul 		    sc->rl_ldata.rl_tx_list,
1577a94100faSBill Paul 		    sc->rl_ldata.rl_tx_list_map);
1578a94100faSBill Paul 		bus_dma_tag_destroy(sc->rl_ldata.rl_tx_list_tag);
1579a94100faSBill Paul 	}
1580a94100faSBill Paul 
1581a94100faSBill Paul 	/* Destroy all the RX and TX buffer maps */
1582a94100faSBill Paul 
1583d65abd66SPyun YongHyeon 	if (sc->rl_ldata.rl_tx_mtag) {
1584d65abd66SPyun YongHyeon 		for (i = 0; i < sc->rl_ldata.rl_tx_desc_cnt; i++)
1585d65abd66SPyun YongHyeon 			bus_dmamap_destroy(sc->rl_ldata.rl_tx_mtag,
1586d65abd66SPyun YongHyeon 			    sc->rl_ldata.rl_tx_desc[i].tx_dmamap);
1587d65abd66SPyun YongHyeon 		bus_dma_tag_destroy(sc->rl_ldata.rl_tx_mtag);
1588d65abd66SPyun YongHyeon 	}
1589d65abd66SPyun YongHyeon 	if (sc->rl_ldata.rl_rx_mtag) {
1590d65abd66SPyun YongHyeon 		for (i = 0; i < sc->rl_ldata.rl_rx_desc_cnt; i++)
1591d65abd66SPyun YongHyeon 			bus_dmamap_destroy(sc->rl_ldata.rl_rx_mtag,
1592d65abd66SPyun YongHyeon 			    sc->rl_ldata.rl_rx_desc[i].rx_dmamap);
1593d65abd66SPyun YongHyeon 		if (sc->rl_ldata.rl_rx_sparemap)
1594d65abd66SPyun YongHyeon 			bus_dmamap_destroy(sc->rl_ldata.rl_rx_mtag,
1595d65abd66SPyun YongHyeon 			    sc->rl_ldata.rl_rx_sparemap);
1596d65abd66SPyun YongHyeon 		bus_dma_tag_destroy(sc->rl_ldata.rl_rx_mtag);
1597a94100faSBill Paul 	}
1598a94100faSBill Paul 
1599a94100faSBill Paul 	/* Unload and free the stats buffer and map */
1600a94100faSBill Paul 
1601a94100faSBill Paul 	if (sc->rl_ldata.rl_stag) {
1602a94100faSBill Paul 		bus_dmamap_unload(sc->rl_ldata.rl_stag,
1603a94100faSBill Paul 		    sc->rl_ldata.rl_rx_list_map);
1604a94100faSBill Paul 		bus_dmamem_free(sc->rl_ldata.rl_stag,
1605a94100faSBill Paul 		    sc->rl_ldata.rl_stats,
1606a94100faSBill Paul 		    sc->rl_ldata.rl_smap);
1607a94100faSBill Paul 		bus_dma_tag_destroy(sc->rl_ldata.rl_stag);
1608a94100faSBill Paul 	}
1609a94100faSBill Paul 
1610a94100faSBill Paul 	if (sc->rl_parent_tag)
1611a94100faSBill Paul 		bus_dma_tag_destroy(sc->rl_parent_tag);
1612a94100faSBill Paul 
1613a94100faSBill Paul 	mtx_destroy(&sc->rl_mtx);
1614a94100faSBill Paul 
1615a94100faSBill Paul 	return (0);
1616a94100faSBill Paul }
1617a94100faSBill Paul 
1618d65abd66SPyun YongHyeon static __inline void
16197b5ffebfSPyun YongHyeon re_discard_rxbuf(struct rl_softc *sc, int idx)
1620a94100faSBill Paul {
1621d65abd66SPyun YongHyeon 	struct rl_desc		*desc;
1622d65abd66SPyun YongHyeon 	struct rl_rxdesc	*rxd;
1623d65abd66SPyun YongHyeon 	uint32_t		cmdstat;
1624a94100faSBill Paul 
1625d65abd66SPyun YongHyeon 	rxd = &sc->rl_ldata.rl_rx_desc[idx];
1626d65abd66SPyun YongHyeon 	desc = &sc->rl_ldata.rl_rx_list[idx];
1627d65abd66SPyun YongHyeon 	desc->rl_vlanctl = 0;
1628d65abd66SPyun YongHyeon 	cmdstat = rxd->rx_size;
1629d65abd66SPyun YongHyeon 	if (idx == sc->rl_ldata.rl_rx_desc_cnt - 1)
1630d65abd66SPyun YongHyeon 		cmdstat |= RL_RDESC_CMD_EOR;
1631d65abd66SPyun YongHyeon 	desc->rl_cmdstat = htole32(cmdstat | RL_RDESC_CMD_OWN);
1632d65abd66SPyun YongHyeon }
1633d65abd66SPyun YongHyeon 
1634d65abd66SPyun YongHyeon static int
16357b5ffebfSPyun YongHyeon re_newbuf(struct rl_softc *sc, int idx)
1636d65abd66SPyun YongHyeon {
1637d65abd66SPyun YongHyeon 	struct mbuf		*m;
1638d65abd66SPyun YongHyeon 	struct rl_rxdesc	*rxd;
1639d65abd66SPyun YongHyeon 	bus_dma_segment_t	segs[1];
1640d65abd66SPyun YongHyeon 	bus_dmamap_t		map;
1641d65abd66SPyun YongHyeon 	struct rl_desc		*desc;
1642d65abd66SPyun YongHyeon 	uint32_t		cmdstat;
1643d65abd66SPyun YongHyeon 	int			error, nsegs;
1644d65abd66SPyun YongHyeon 
1645d65abd66SPyun YongHyeon 	m = m_getcl(M_DONTWAIT, MT_DATA, M_PKTHDR);
1646d65abd66SPyun YongHyeon 	if (m == NULL)
1647a94100faSBill Paul 		return (ENOBUFS);
1648a94100faSBill Paul 
1649a94100faSBill Paul 	m->m_len = m->m_pkthdr.len = MCLBYTES;
165022a11c96SJohn-Mark Gurney #ifdef RE_FIXUP_RX
165122a11c96SJohn-Mark Gurney 	/*
165222a11c96SJohn-Mark Gurney 	 * This is part of an evil trick to deal with non-x86 platforms.
165322a11c96SJohn-Mark Gurney 	 * The RealTek chip requires RX buffers to be aligned on 64-bit
165422a11c96SJohn-Mark Gurney 	 * boundaries, but that will hose non-x86 machines. To get around
165522a11c96SJohn-Mark Gurney 	 * this, we leave some empty space at the start of each buffer
165622a11c96SJohn-Mark Gurney 	 * and for non-x86 hosts, we copy the buffer back six bytes
165722a11c96SJohn-Mark Gurney 	 * to achieve word alignment. This is slightly more efficient
165822a11c96SJohn-Mark Gurney 	 * than allocating a new buffer, copying the contents, and
165922a11c96SJohn-Mark Gurney 	 * discarding the old buffer.
166022a11c96SJohn-Mark Gurney 	 */
166122a11c96SJohn-Mark Gurney 	m_adj(m, RE_ETHER_ALIGN);
166222a11c96SJohn-Mark Gurney #endif
1663d65abd66SPyun YongHyeon 	error = bus_dmamap_load_mbuf_sg(sc->rl_ldata.rl_rx_mtag,
1664d65abd66SPyun YongHyeon 	    sc->rl_ldata.rl_rx_sparemap, m, segs, &nsegs, BUS_DMA_NOWAIT);
1665d65abd66SPyun YongHyeon 	if (error != 0) {
1666d65abd66SPyun YongHyeon 		m_freem(m);
1667d65abd66SPyun YongHyeon 		return (ENOBUFS);
1668d65abd66SPyun YongHyeon 	}
1669d65abd66SPyun YongHyeon 	KASSERT(nsegs == 1, ("%s: %d segment returned!", __func__, nsegs));
1670a94100faSBill Paul 
1671d65abd66SPyun YongHyeon 	rxd = &sc->rl_ldata.rl_rx_desc[idx];
1672d65abd66SPyun YongHyeon 	if (rxd->rx_m != NULL) {
1673d65abd66SPyun YongHyeon 		bus_dmamap_sync(sc->rl_ldata.rl_rx_mtag, rxd->rx_dmamap,
1674d65abd66SPyun YongHyeon 		    BUS_DMASYNC_POSTREAD);
1675d65abd66SPyun YongHyeon 		bus_dmamap_unload(sc->rl_ldata.rl_rx_mtag, rxd->rx_dmamap);
1676a94100faSBill Paul 	}
1677a94100faSBill Paul 
1678d65abd66SPyun YongHyeon 	rxd->rx_m = m;
1679d65abd66SPyun YongHyeon 	map = rxd->rx_dmamap;
1680d65abd66SPyun YongHyeon 	rxd->rx_dmamap = sc->rl_ldata.rl_rx_sparemap;
1681d65abd66SPyun YongHyeon 	rxd->rx_size = segs[0].ds_len;
1682d65abd66SPyun YongHyeon 	sc->rl_ldata.rl_rx_sparemap = map;
1683d65abd66SPyun YongHyeon 	bus_dmamap_sync(sc->rl_ldata.rl_rx_mtag, rxd->rx_dmamap,
1684a94100faSBill Paul 	    BUS_DMASYNC_PREREAD);
1685a94100faSBill Paul 
1686d65abd66SPyun YongHyeon 	desc = &sc->rl_ldata.rl_rx_list[idx];
1687d65abd66SPyun YongHyeon 	desc->rl_vlanctl = 0;
1688d65abd66SPyun YongHyeon 	desc->rl_bufaddr_lo = htole32(RL_ADDR_LO(segs[0].ds_addr));
1689d65abd66SPyun YongHyeon 	desc->rl_bufaddr_hi = htole32(RL_ADDR_HI(segs[0].ds_addr));
1690d65abd66SPyun YongHyeon 	cmdstat = segs[0].ds_len;
1691d65abd66SPyun YongHyeon 	if (idx == sc->rl_ldata.rl_rx_desc_cnt - 1)
1692d65abd66SPyun YongHyeon 		cmdstat |= RL_RDESC_CMD_EOR;
1693d65abd66SPyun YongHyeon 	desc->rl_cmdstat = htole32(cmdstat | RL_RDESC_CMD_OWN);
1694d65abd66SPyun YongHyeon 
1695a94100faSBill Paul 	return (0);
1696a94100faSBill Paul }
1697a94100faSBill Paul 
169822a11c96SJohn-Mark Gurney #ifdef RE_FIXUP_RX
169922a11c96SJohn-Mark Gurney static __inline void
17007b5ffebfSPyun YongHyeon re_fixup_rx(struct mbuf *m)
170122a11c96SJohn-Mark Gurney {
170222a11c96SJohn-Mark Gurney 	int                     i;
170322a11c96SJohn-Mark Gurney 	uint16_t                *src, *dst;
170422a11c96SJohn-Mark Gurney 
170522a11c96SJohn-Mark Gurney 	src = mtod(m, uint16_t *);
170622a11c96SJohn-Mark Gurney 	dst = src - (RE_ETHER_ALIGN - ETHER_ALIGN) / sizeof *src;
170722a11c96SJohn-Mark Gurney 
170822a11c96SJohn-Mark Gurney 	for (i = 0; i < (m->m_len / sizeof(uint16_t) + 1); i++)
170922a11c96SJohn-Mark Gurney 		*dst++ = *src++;
171022a11c96SJohn-Mark Gurney 
171122a11c96SJohn-Mark Gurney 	m->m_data -= RE_ETHER_ALIGN - ETHER_ALIGN;
171222a11c96SJohn-Mark Gurney }
171322a11c96SJohn-Mark Gurney #endif
171422a11c96SJohn-Mark Gurney 
1715a94100faSBill Paul static int
17167b5ffebfSPyun YongHyeon re_tx_list_init(struct rl_softc *sc)
1717a94100faSBill Paul {
1718d65abd66SPyun YongHyeon 	struct rl_desc		*desc;
1719d65abd66SPyun YongHyeon 	int			i;
172097b9d4baSJohn-Mark Gurney 
172197b9d4baSJohn-Mark Gurney 	RL_LOCK_ASSERT(sc);
172297b9d4baSJohn-Mark Gurney 
1723d65abd66SPyun YongHyeon 	bzero(sc->rl_ldata.rl_tx_list,
1724d65abd66SPyun YongHyeon 	    sc->rl_ldata.rl_tx_desc_cnt * sizeof(struct rl_desc));
1725d65abd66SPyun YongHyeon 	for (i = 0; i < sc->rl_ldata.rl_tx_desc_cnt; i++)
1726d65abd66SPyun YongHyeon 		sc->rl_ldata.rl_tx_desc[i].tx_m = NULL;
1727d65abd66SPyun YongHyeon 	/* Set EOR. */
1728d65abd66SPyun YongHyeon 	desc = &sc->rl_ldata.rl_tx_list[sc->rl_ldata.rl_tx_desc_cnt - 1];
1729d65abd66SPyun YongHyeon 	desc->rl_cmdstat |= htole32(RL_TDESC_CMD_EOR);
1730a94100faSBill Paul 
1731a94100faSBill Paul 	bus_dmamap_sync(sc->rl_ldata.rl_tx_list_tag,
1732d65abd66SPyun YongHyeon 	    sc->rl_ldata.rl_tx_list_map,
1733d65abd66SPyun YongHyeon 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1734d65abd66SPyun YongHyeon 
1735a94100faSBill Paul 	sc->rl_ldata.rl_tx_prodidx = 0;
1736a94100faSBill Paul 	sc->rl_ldata.rl_tx_considx = 0;
1737d65abd66SPyun YongHyeon 	sc->rl_ldata.rl_tx_free = sc->rl_ldata.rl_tx_desc_cnt;
1738a94100faSBill Paul 
1739a94100faSBill Paul 	return (0);
1740a94100faSBill Paul }
1741a94100faSBill Paul 
1742a94100faSBill Paul static int
17437b5ffebfSPyun YongHyeon re_rx_list_init(struct rl_softc *sc)
1744a94100faSBill Paul {
1745d65abd66SPyun YongHyeon 	int			error, i;
1746a94100faSBill Paul 
1747d65abd66SPyun YongHyeon 	bzero(sc->rl_ldata.rl_rx_list,
1748d65abd66SPyun YongHyeon 	    sc->rl_ldata.rl_rx_desc_cnt * sizeof(struct rl_desc));
1749d65abd66SPyun YongHyeon 	for (i = 0; i < sc->rl_ldata.rl_rx_desc_cnt; i++) {
1750d65abd66SPyun YongHyeon 		sc->rl_ldata.rl_rx_desc[i].rx_m = NULL;
1751d65abd66SPyun YongHyeon 		if ((error = re_newbuf(sc, i)) != 0)
1752d65abd66SPyun YongHyeon 			return (error);
1753a94100faSBill Paul 	}
1754a94100faSBill Paul 
1755a94100faSBill Paul 	/* Flush the RX descriptors */
1756a94100faSBill Paul 
1757a94100faSBill Paul 	bus_dmamap_sync(sc->rl_ldata.rl_rx_list_tag,
1758a94100faSBill Paul 	    sc->rl_ldata.rl_rx_list_map,
1759a94100faSBill Paul 	    BUS_DMASYNC_PREWRITE|BUS_DMASYNC_PREREAD);
1760a94100faSBill Paul 
1761a94100faSBill Paul 	sc->rl_ldata.rl_rx_prodidx = 0;
1762a94100faSBill Paul 	sc->rl_head = sc->rl_tail = NULL;
1763a94100faSBill Paul 
1764a94100faSBill Paul 	return (0);
1765a94100faSBill Paul }
1766a94100faSBill Paul 
1767a94100faSBill Paul /*
1768a94100faSBill Paul  * RX handler for C+ and 8169. For the gigE chips, we support
1769a94100faSBill Paul  * the reception of jumbo frames that have been fragmented
1770a94100faSBill Paul  * across multiple 2K mbuf cluster buffers.
1771a94100faSBill Paul  */
1772ed510fb0SBill Paul static int
17737b5ffebfSPyun YongHyeon re_rxeof(struct rl_softc *sc)
1774a94100faSBill Paul {
1775a94100faSBill Paul 	struct mbuf		*m;
1776a94100faSBill Paul 	struct ifnet		*ifp;
1777a94100faSBill Paul 	int			i, total_len;
1778a94100faSBill Paul 	struct rl_desc		*cur_rx;
1779a94100faSBill Paul 	u_int32_t		rxstat, rxvlan;
1780ed510fb0SBill Paul 	int			maxpkt = 16;
1781a94100faSBill Paul 
17825120abbfSSam Leffler 	RL_LOCK_ASSERT(sc);
17835120abbfSSam Leffler 
1784fc74a9f9SBrooks Davis 	ifp = sc->rl_ifp;
1785a94100faSBill Paul 
1786a94100faSBill Paul 	/* Invalidate the descriptor memory */
1787a94100faSBill Paul 
1788a94100faSBill Paul 	bus_dmamap_sync(sc->rl_ldata.rl_rx_list_tag,
1789a94100faSBill Paul 	    sc->rl_ldata.rl_rx_list_map,
1790d65abd66SPyun YongHyeon 	    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1791a94100faSBill Paul 
1792d65abd66SPyun YongHyeon 	for (i = sc->rl_ldata.rl_rx_prodidx; maxpkt > 0;
1793d65abd66SPyun YongHyeon 	    i = RL_RX_DESC_NXT(sc, i)) {
1794a94100faSBill Paul 		cur_rx = &sc->rl_ldata.rl_rx_list[i];
1795a94100faSBill Paul 		rxstat = le32toh(cur_rx->rl_cmdstat);
1796d65abd66SPyun YongHyeon 		if ((rxstat & RL_RDESC_STAT_OWN) != 0)
1797d65abd66SPyun YongHyeon 			break;
1798d65abd66SPyun YongHyeon 		total_len = rxstat & sc->rl_rxlenmask;
1799a94100faSBill Paul 		rxvlan = le32toh(cur_rx->rl_vlanctl);
1800d65abd66SPyun YongHyeon 		m = sc->rl_ldata.rl_rx_desc[i].rx_m;
1801a94100faSBill Paul 
1802a94100faSBill Paul 		if (!(rxstat & RL_RDESC_STAT_EOF)) {
1803d65abd66SPyun YongHyeon 			if (re_newbuf(sc, i) != 0) {
1804d65abd66SPyun YongHyeon 				/*
1805d65abd66SPyun YongHyeon 				 * If this is part of a multi-fragment packet,
1806d65abd66SPyun YongHyeon 				 * discard all the pieces.
1807d65abd66SPyun YongHyeon 				 */
1808d65abd66SPyun YongHyeon 				if (sc->rl_head != NULL) {
1809d65abd66SPyun YongHyeon 					m_freem(sc->rl_head);
1810d65abd66SPyun YongHyeon 					sc->rl_head = sc->rl_tail = NULL;
1811d65abd66SPyun YongHyeon 				}
1812d65abd66SPyun YongHyeon 				re_discard_rxbuf(sc, i);
1813d65abd66SPyun YongHyeon 				continue;
1814d65abd66SPyun YongHyeon 			}
181522a11c96SJohn-Mark Gurney 			m->m_len = RE_RX_DESC_BUFLEN;
1816a94100faSBill Paul 			if (sc->rl_head == NULL)
1817a94100faSBill Paul 				sc->rl_head = sc->rl_tail = m;
1818a94100faSBill Paul 			else {
1819a94100faSBill Paul 				m->m_flags &= ~M_PKTHDR;
1820a94100faSBill Paul 				sc->rl_tail->m_next = m;
1821a94100faSBill Paul 				sc->rl_tail = m;
1822a94100faSBill Paul 			}
1823a94100faSBill Paul 			continue;
1824a94100faSBill Paul 		}
1825a94100faSBill Paul 
1826a94100faSBill Paul 		/*
1827a94100faSBill Paul 		 * NOTE: for the 8139C+, the frame length field
1828a94100faSBill Paul 		 * is always 12 bits in size, but for the gigE chips,
1829a94100faSBill Paul 		 * it is 13 bits (since the max RX frame length is 16K).
1830a94100faSBill Paul 		 * Unfortunately, all 32 bits in the status word
1831a94100faSBill Paul 		 * were already used, so to make room for the extra
1832a94100faSBill Paul 		 * length bit, RealTek took out the 'frame alignment
1833a94100faSBill Paul 		 * error' bit and shifted the other status bits
1834a94100faSBill Paul 		 * over one slot. The OWN, EOR, FS and LS bits are
1835a94100faSBill Paul 		 * still in the same places. We have already extracted
1836a94100faSBill Paul 		 * the frame length and checked the OWN bit, so rather
1837a94100faSBill Paul 		 * than using an alternate bit mapping, we shift the
1838a94100faSBill Paul 		 * status bits one space to the right so we can evaluate
1839a94100faSBill Paul 		 * them using the 8169 status as though it was in the
1840a94100faSBill Paul 		 * same format as that of the 8139C+.
1841a94100faSBill Paul 		 */
1842a94100faSBill Paul 		if (sc->rl_type == RL_8169)
1843a94100faSBill Paul 			rxstat >>= 1;
1844a94100faSBill Paul 
184522a11c96SJohn-Mark Gurney 		/*
184622a11c96SJohn-Mark Gurney 		 * if total_len > 2^13-1, both _RXERRSUM and _GIANT will be
184722a11c96SJohn-Mark Gurney 		 * set, but if CRC is clear, it will still be a valid frame.
184822a11c96SJohn-Mark Gurney 		 */
184922a11c96SJohn-Mark Gurney 		if (rxstat & RL_RDESC_STAT_RXERRSUM && !(total_len > 8191 &&
185022a11c96SJohn-Mark Gurney 		    (rxstat & RL_RDESC_STAT_ERRS) == RL_RDESC_STAT_GIANT)) {
1851a94100faSBill Paul 			ifp->if_ierrors++;
1852a94100faSBill Paul 			/*
1853a94100faSBill Paul 			 * If this is part of a multi-fragment packet,
1854a94100faSBill Paul 			 * discard all the pieces.
1855a94100faSBill Paul 			 */
1856a94100faSBill Paul 			if (sc->rl_head != NULL) {
1857a94100faSBill Paul 				m_freem(sc->rl_head);
1858a94100faSBill Paul 				sc->rl_head = sc->rl_tail = NULL;
1859a94100faSBill Paul 			}
1860d65abd66SPyun YongHyeon 			re_discard_rxbuf(sc, i);
1861a94100faSBill Paul 			continue;
1862a94100faSBill Paul 		}
1863a94100faSBill Paul 
1864a94100faSBill Paul 		/*
1865a94100faSBill Paul 		 * If allocating a replacement mbuf fails,
1866a94100faSBill Paul 		 * reload the current one.
1867a94100faSBill Paul 		 */
1868a94100faSBill Paul 
1869d65abd66SPyun YongHyeon 		if (re_newbuf(sc, i) != 0) {
1870d65abd66SPyun YongHyeon 			ifp->if_iqdrops++;
1871a94100faSBill Paul 			if (sc->rl_head != NULL) {
1872a94100faSBill Paul 				m_freem(sc->rl_head);
1873a94100faSBill Paul 				sc->rl_head = sc->rl_tail = NULL;
1874a94100faSBill Paul 			}
1875d65abd66SPyun YongHyeon 			re_discard_rxbuf(sc, i);
1876a94100faSBill Paul 			continue;
1877a94100faSBill Paul 		}
1878a94100faSBill Paul 
1879a94100faSBill Paul 		if (sc->rl_head != NULL) {
188022a11c96SJohn-Mark Gurney 			m->m_len = total_len % RE_RX_DESC_BUFLEN;
188122a11c96SJohn-Mark Gurney 			if (m->m_len == 0)
188222a11c96SJohn-Mark Gurney 				m->m_len = RE_RX_DESC_BUFLEN;
1883a94100faSBill Paul 			/*
1884a94100faSBill Paul 			 * Special case: if there's 4 bytes or less
1885a94100faSBill Paul 			 * in this buffer, the mbuf can be discarded:
1886a94100faSBill Paul 			 * the last 4 bytes is the CRC, which we don't
1887a94100faSBill Paul 			 * care about anyway.
1888a94100faSBill Paul 			 */
1889a94100faSBill Paul 			if (m->m_len <= ETHER_CRC_LEN) {
1890a94100faSBill Paul 				sc->rl_tail->m_len -=
1891a94100faSBill Paul 				    (ETHER_CRC_LEN - m->m_len);
1892a94100faSBill Paul 				m_freem(m);
1893a94100faSBill Paul 			} else {
1894a94100faSBill Paul 				m->m_len -= ETHER_CRC_LEN;
1895a94100faSBill Paul 				m->m_flags &= ~M_PKTHDR;
1896a94100faSBill Paul 				sc->rl_tail->m_next = m;
1897a94100faSBill Paul 			}
1898a94100faSBill Paul 			m = sc->rl_head;
1899a94100faSBill Paul 			sc->rl_head = sc->rl_tail = NULL;
1900a94100faSBill Paul 			m->m_pkthdr.len = total_len - ETHER_CRC_LEN;
1901a94100faSBill Paul 		} else
1902a94100faSBill Paul 			m->m_pkthdr.len = m->m_len =
1903a94100faSBill Paul 			    (total_len - ETHER_CRC_LEN);
1904a94100faSBill Paul 
190522a11c96SJohn-Mark Gurney #ifdef RE_FIXUP_RX
190622a11c96SJohn-Mark Gurney 		re_fixup_rx(m);
190722a11c96SJohn-Mark Gurney #endif
1908a94100faSBill Paul 		ifp->if_ipackets++;
1909a94100faSBill Paul 		m->m_pkthdr.rcvif = ifp;
1910a94100faSBill Paul 
1911a94100faSBill Paul 		/* Do RX checksumming if enabled */
1912a94100faSBill Paul 
1913a94100faSBill Paul 		if (ifp->if_capenable & IFCAP_RXCSUM) {
1914deb5c680SPyun YongHyeon 			if ((sc->rl_flags & RL_FLAG_DESCV2) == 0) {
1915a94100faSBill Paul 				/* Check IP header checksum */
1916a94100faSBill Paul 				if (rxstat & RL_RDESC_STAT_PROTOID)
1917deb5c680SPyun YongHyeon 					m->m_pkthdr.csum_flags |=
1918deb5c680SPyun YongHyeon 					    CSUM_IP_CHECKED;
1919a94100faSBill Paul 				if (!(rxstat & RL_RDESC_STAT_IPSUMBAD))
1920deb5c680SPyun YongHyeon 					m->m_pkthdr.csum_flags |=
1921deb5c680SPyun YongHyeon 					    CSUM_IP_VALID;
1922a94100faSBill Paul 
1923a94100faSBill Paul 				/* Check TCP/UDP checksum */
1924a94100faSBill Paul 				if ((RL_TCPPKT(rxstat) &&
1925a94100faSBill Paul 				    !(rxstat & RL_RDESC_STAT_TCPSUMBAD)) ||
1926a94100faSBill Paul 				    (RL_UDPPKT(rxstat) &&
1927a94100faSBill Paul 				     !(rxstat & RL_RDESC_STAT_UDPSUMBAD))) {
1928a94100faSBill Paul 					m->m_pkthdr.csum_flags |=
1929a94100faSBill Paul 						CSUM_DATA_VALID|CSUM_PSEUDO_HDR;
1930a94100faSBill Paul 					m->m_pkthdr.csum_data = 0xffff;
1931a94100faSBill Paul 				}
1932deb5c680SPyun YongHyeon 			} else {
1933deb5c680SPyun YongHyeon 				/*
1934deb5c680SPyun YongHyeon 				 * RTL8168C/RTL816CP/RTL8111C/RTL8111CP
1935deb5c680SPyun YongHyeon 				 */
1936deb5c680SPyun YongHyeon 				if ((rxstat & RL_RDESC_STAT_PROTOID) &&
1937deb5c680SPyun YongHyeon 				    (rxvlan & RL_RDESC_IPV4))
1938deb5c680SPyun YongHyeon 					m->m_pkthdr.csum_flags |=
1939deb5c680SPyun YongHyeon 					    CSUM_IP_CHECKED;
1940deb5c680SPyun YongHyeon 				if (!(rxstat & RL_RDESC_STAT_IPSUMBAD) &&
1941deb5c680SPyun YongHyeon 				    (rxvlan & RL_RDESC_IPV4))
1942deb5c680SPyun YongHyeon 					m->m_pkthdr.csum_flags |=
1943deb5c680SPyun YongHyeon 					    CSUM_IP_VALID;
1944deb5c680SPyun YongHyeon 				if (((rxstat & RL_RDESC_STAT_TCP) &&
1945deb5c680SPyun YongHyeon 				    !(rxstat & RL_RDESC_STAT_TCPSUMBAD)) ||
1946deb5c680SPyun YongHyeon 				    ((rxstat & RL_RDESC_STAT_UDP) &&
1947deb5c680SPyun YongHyeon 				    !(rxstat & RL_RDESC_STAT_UDPSUMBAD))) {
1948deb5c680SPyun YongHyeon 					m->m_pkthdr.csum_flags |=
1949deb5c680SPyun YongHyeon 						CSUM_DATA_VALID|CSUM_PSEUDO_HDR;
1950deb5c680SPyun YongHyeon 					m->m_pkthdr.csum_data = 0xffff;
1951deb5c680SPyun YongHyeon 				}
1952deb5c680SPyun YongHyeon 			}
1953a94100faSBill Paul 		}
1954ed510fb0SBill Paul 		maxpkt--;
1955d147662cSGleb Smirnoff 		if (rxvlan & RL_RDESC_VLANCTL_TAG) {
195678ba57b9SAndre Oppermann 			m->m_pkthdr.ether_vtag =
1957bddff934SPyun YongHyeon 			    bswap16((rxvlan & RL_RDESC_VLANCTL_DATA));
195878ba57b9SAndre Oppermann 			m->m_flags |= M_VLANTAG;
1959d147662cSGleb Smirnoff 		}
19605120abbfSSam Leffler 		RL_UNLOCK(sc);
1961a94100faSBill Paul 		(*ifp->if_input)(ifp, m);
19625120abbfSSam Leffler 		RL_LOCK(sc);
1963a94100faSBill Paul 	}
1964a94100faSBill Paul 
1965a94100faSBill Paul 	/* Flush the RX DMA ring */
1966a94100faSBill Paul 
1967a94100faSBill Paul 	bus_dmamap_sync(sc->rl_ldata.rl_rx_list_tag,
1968a94100faSBill Paul 	    sc->rl_ldata.rl_rx_list_map,
1969a94100faSBill Paul 	    BUS_DMASYNC_PREWRITE|BUS_DMASYNC_PREREAD);
1970a94100faSBill Paul 
1971a94100faSBill Paul 	sc->rl_ldata.rl_rx_prodidx = i;
1972ed510fb0SBill Paul 
1973ed510fb0SBill Paul 	if (maxpkt)
1974ed510fb0SBill Paul 		return(EAGAIN);
1975ed510fb0SBill Paul 
1976ed510fb0SBill Paul 	return(0);
1977a94100faSBill Paul }
1978a94100faSBill Paul 
1979a94100faSBill Paul static void
19807b5ffebfSPyun YongHyeon re_txeof(struct rl_softc *sc)
1981a94100faSBill Paul {
1982a94100faSBill Paul 	struct ifnet		*ifp;
1983d65abd66SPyun YongHyeon 	struct rl_txdesc	*txd;
1984a94100faSBill Paul 	u_int32_t		txstat;
1985d65abd66SPyun YongHyeon 	int			cons;
1986d65abd66SPyun YongHyeon 
1987d65abd66SPyun YongHyeon 	cons = sc->rl_ldata.rl_tx_considx;
1988d65abd66SPyun YongHyeon 	if (cons == sc->rl_ldata.rl_tx_prodidx)
1989d65abd66SPyun YongHyeon 		return;
1990a94100faSBill Paul 
1991fc74a9f9SBrooks Davis 	ifp = sc->rl_ifp;
1992a94100faSBill Paul 	/* Invalidate the TX descriptor list */
1993a94100faSBill Paul 	bus_dmamap_sync(sc->rl_ldata.rl_tx_list_tag,
1994a94100faSBill Paul 	    sc->rl_ldata.rl_tx_list_map,
1995d65abd66SPyun YongHyeon 	    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1996a94100faSBill Paul 
1997d65abd66SPyun YongHyeon 	for (; cons != sc->rl_ldata.rl_tx_prodidx;
1998d65abd66SPyun YongHyeon 	    cons = RL_TX_DESC_NXT(sc, cons)) {
1999d65abd66SPyun YongHyeon 		txstat = le32toh(sc->rl_ldata.rl_tx_list[cons].rl_cmdstat);
2000d65abd66SPyun YongHyeon 		if (txstat & RL_TDESC_STAT_OWN)
2001a94100faSBill Paul 			break;
2002a94100faSBill Paul 		/*
2003a94100faSBill Paul 		 * We only stash mbufs in the last descriptor
2004a94100faSBill Paul 		 * in a fragment chain, which also happens to
2005a94100faSBill Paul 		 * be the only place where the TX status bits
2006a94100faSBill Paul 		 * are valid.
2007a94100faSBill Paul 		 */
2008a94100faSBill Paul 		if (txstat & RL_TDESC_CMD_EOF) {
2009d65abd66SPyun YongHyeon 			txd = &sc->rl_ldata.rl_tx_desc[cons];
2010d65abd66SPyun YongHyeon 			bus_dmamap_sync(sc->rl_ldata.rl_tx_mtag,
2011d65abd66SPyun YongHyeon 			    txd->tx_dmamap, BUS_DMASYNC_POSTWRITE);
2012d65abd66SPyun YongHyeon 			bus_dmamap_unload(sc->rl_ldata.rl_tx_mtag,
2013d65abd66SPyun YongHyeon 			    txd->tx_dmamap);
2014d65abd66SPyun YongHyeon 			KASSERT(txd->tx_m != NULL,
2015d65abd66SPyun YongHyeon 			    ("%s: freeing NULL mbufs!", __func__));
2016d65abd66SPyun YongHyeon 			m_freem(txd->tx_m);
2017d65abd66SPyun YongHyeon 			txd->tx_m = NULL;
2018a94100faSBill Paul 			if (txstat & (RL_TDESC_STAT_EXCESSCOL|
2019a94100faSBill Paul 			    RL_TDESC_STAT_COLCNT))
2020a94100faSBill Paul 				ifp->if_collisions++;
2021a94100faSBill Paul 			if (txstat & RL_TDESC_STAT_TXERRSUM)
2022a94100faSBill Paul 				ifp->if_oerrors++;
2023a94100faSBill Paul 			else
2024a94100faSBill Paul 				ifp->if_opackets++;
2025a94100faSBill Paul 		}
2026a94100faSBill Paul 		sc->rl_ldata.rl_tx_free++;
2027d65abd66SPyun YongHyeon 		ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
2028a94100faSBill Paul 	}
2029d65abd66SPyun YongHyeon 	sc->rl_ldata.rl_tx_considx = cons;
2030a94100faSBill Paul 
2031a94100faSBill Paul 	/* No changes made to the TX ring, so no flush needed */
2032a94100faSBill Paul 
2033d65abd66SPyun YongHyeon 	if (sc->rl_ldata.rl_tx_free != sc->rl_ldata.rl_tx_desc_cnt) {
2034ed510fb0SBill Paul #ifdef RE_TX_MODERATION
2035a94100faSBill Paul 		/*
2036b4b95879SMarius Strobl 		 * If not all descriptors have been reaped yet, reload
2037b4b95879SMarius Strobl 		 * the timer so that we will eventually get another
2038a94100faSBill Paul 		 * interrupt that will cause us to re-enter this routine.
2039a94100faSBill Paul 		 * This is done in case the transmitter has gone idle.
2040a94100faSBill Paul 		 */
2041a94100faSBill Paul 		CSR_WRITE_4(sc, RL_TIMERCNT, 1);
2042ed510fb0SBill Paul #endif
2043b4b95879SMarius Strobl 	} else
2044b4b95879SMarius Strobl 		sc->rl_watchdog_timer = 0;
2045a94100faSBill Paul }
2046a94100faSBill Paul 
2047a94100faSBill Paul static void
20487b5ffebfSPyun YongHyeon re_tick(void *xsc)
2049a94100faSBill Paul {
2050a94100faSBill Paul 	struct rl_softc		*sc;
2051d1754a9bSJohn Baldwin 	struct mii_data		*mii;
2052a94100faSBill Paul 
2053a94100faSBill Paul 	sc = xsc;
205497b9d4baSJohn-Mark Gurney 
205597b9d4baSJohn-Mark Gurney 	RL_LOCK_ASSERT(sc);
205697b9d4baSJohn-Mark Gurney 
20571d545c7aSMarius Strobl 	mii = device_get_softc(sc->rl_miibus);
2058a94100faSBill Paul 	mii_tick(mii);
20590fe200d9SPyun YongHyeon 	if ((sc->rl_flags & RL_FLAG_LINK) == 0)
20600fe200d9SPyun YongHyeon 		re_miibus_statchg(sc->rl_dev);
2061130b6dfbSPyun YongHyeon 	re_watchdog(sc);
2062d1754a9bSJohn Baldwin 	callout_reset(&sc->rl_stat_callout, hz, re_tick, sc);
2063a94100faSBill Paul }
2064a94100faSBill Paul 
2065a94100faSBill Paul #ifdef DEVICE_POLLING
2066a94100faSBill Paul static void
2067a94100faSBill Paul re_poll(struct ifnet *ifp, enum poll_cmd cmd, int count)
2068a94100faSBill Paul {
2069a94100faSBill Paul 	struct rl_softc *sc = ifp->if_softc;
2070a94100faSBill Paul 
2071a94100faSBill Paul 	RL_LOCK(sc);
207240929967SGleb Smirnoff 	if (ifp->if_drv_flags & IFF_DRV_RUNNING)
207397b9d4baSJohn-Mark Gurney 		re_poll_locked(ifp, cmd, count);
207497b9d4baSJohn-Mark Gurney 	RL_UNLOCK(sc);
207597b9d4baSJohn-Mark Gurney }
207697b9d4baSJohn-Mark Gurney 
207797b9d4baSJohn-Mark Gurney static void
207897b9d4baSJohn-Mark Gurney re_poll_locked(struct ifnet *ifp, enum poll_cmd cmd, int count)
207997b9d4baSJohn-Mark Gurney {
208097b9d4baSJohn-Mark Gurney 	struct rl_softc *sc = ifp->if_softc;
208197b9d4baSJohn-Mark Gurney 
208297b9d4baSJohn-Mark Gurney 	RL_LOCK_ASSERT(sc);
208397b9d4baSJohn-Mark Gurney 
2084a94100faSBill Paul 	sc->rxcycles = count;
2085a94100faSBill Paul 	re_rxeof(sc);
2086a94100faSBill Paul 	re_txeof(sc);
2087a94100faSBill Paul 
208837652939SMax Laier 	if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
2089ed510fb0SBill Paul 		taskqueue_enqueue_fast(taskqueue_fast, &sc->rl_txtask);
2090a94100faSBill Paul 
2091a94100faSBill Paul 	if (cmd == POLL_AND_CHECK_STATUS) { /* also check status register */
2092a94100faSBill Paul 		u_int16_t       status;
2093a94100faSBill Paul 
2094a94100faSBill Paul 		status = CSR_READ_2(sc, RL_ISR);
2095a94100faSBill Paul 		if (status == 0xffff)
209697b9d4baSJohn-Mark Gurney 			return;
2097a94100faSBill Paul 		if (status)
2098a94100faSBill Paul 			CSR_WRITE_2(sc, RL_ISR, status);
2099818951afSPyun YongHyeon 		if ((status & (RL_ISR_TX_OK | RL_ISR_TX_DESC_UNAVAIL)) &&
2100818951afSPyun YongHyeon 		    (sc->rl_flags & RL_FLAG_PCIE))
2101818951afSPyun YongHyeon 			CSR_WRITE_1(sc, sc->rl_txstart, RL_TXSTART_START);
2102a94100faSBill Paul 
2103a94100faSBill Paul 		/*
2104a94100faSBill Paul 		 * XXX check behaviour on receiver stalls.
2105a94100faSBill Paul 		 */
2106a94100faSBill Paul 
2107b659f1f0SPyun YongHyeon 		if (status & RL_ISR_SYSTEM_ERR)
210897b9d4baSJohn-Mark Gurney 			re_init_locked(sc);
2109a94100faSBill Paul 	}
2110a94100faSBill Paul }
2111a94100faSBill Paul #endif /* DEVICE_POLLING */
2112a94100faSBill Paul 
2113ef544f63SPaolo Pisati static int
21147b5ffebfSPyun YongHyeon re_intr(void *arg)
2115a94100faSBill Paul {
2116a94100faSBill Paul 	struct rl_softc		*sc;
2117ed510fb0SBill Paul 	uint16_t		status;
2118a94100faSBill Paul 
2119a94100faSBill Paul 	sc = arg;
2120ed510fb0SBill Paul 
2121ed510fb0SBill Paul 	status = CSR_READ_2(sc, RL_ISR);
2122498bd0d3SBill Paul 	if (status == 0xFFFF || (status & RL_INTRS_CPLUS) == 0)
2123ef544f63SPaolo Pisati                 return (FILTER_STRAY);
2124ed510fb0SBill Paul 	CSR_WRITE_2(sc, RL_IMR, 0);
2125ed510fb0SBill Paul 
2126ed510fb0SBill Paul 	taskqueue_enqueue_fast(taskqueue_fast, &sc->rl_inttask);
2127ed510fb0SBill Paul 
2128ef544f63SPaolo Pisati 	return (FILTER_HANDLED);
2129ed510fb0SBill Paul }
2130ed510fb0SBill Paul 
2131ed510fb0SBill Paul static void
21327b5ffebfSPyun YongHyeon re_int_task(void *arg, int npending)
2133ed510fb0SBill Paul {
2134ed510fb0SBill Paul 	struct rl_softc		*sc;
2135ed510fb0SBill Paul 	struct ifnet		*ifp;
2136ed510fb0SBill Paul 	u_int16_t		status;
2137ed510fb0SBill Paul 	int			rval = 0;
2138ed510fb0SBill Paul 
2139ed510fb0SBill Paul 	sc = arg;
2140ed510fb0SBill Paul 	ifp = sc->rl_ifp;
2141a94100faSBill Paul 
2142a94100faSBill Paul 	RL_LOCK(sc);
214397b9d4baSJohn-Mark Gurney 
2144a94100faSBill Paul 	status = CSR_READ_2(sc, RL_ISR);
2145a94100faSBill Paul         CSR_WRITE_2(sc, RL_ISR, status);
2146a94100faSBill Paul 
2147d65abd66SPyun YongHyeon 	if (sc->suspended ||
2148d65abd66SPyun YongHyeon 	    (ifp->if_drv_flags & IFF_DRV_RUNNING) == 0) {
2149ed510fb0SBill Paul 		RL_UNLOCK(sc);
2150ed510fb0SBill Paul 		return;
2151ed510fb0SBill Paul 	}
2152a94100faSBill Paul 
2153ed510fb0SBill Paul #ifdef DEVICE_POLLING
2154ed510fb0SBill Paul 	if  (ifp->if_capenable & IFCAP_POLLING) {
2155ed510fb0SBill Paul 		RL_UNLOCK(sc);
2156ed510fb0SBill Paul 		return;
2157ed510fb0SBill Paul 	}
2158ed510fb0SBill Paul #endif
2159a94100faSBill Paul 
2160ed510fb0SBill Paul 	if (status & (RL_ISR_RX_OK|RL_ISR_RX_ERR|RL_ISR_FIFO_OFLOW))
2161ed510fb0SBill Paul 		rval = re_rxeof(sc);
2162ed510fb0SBill Paul 
2163818951afSPyun YongHyeon 	/*
2164818951afSPyun YongHyeon 	 * Some chips will ignore a second TX request issued
2165818951afSPyun YongHyeon 	 * while an existing transmission is in progress. If
2166818951afSPyun YongHyeon 	 * the transmitter goes idle but there are still
2167818951afSPyun YongHyeon 	 * packets waiting to be sent, we need to restart the
2168818951afSPyun YongHyeon 	 * channel here to flush them out. This only seems to
2169818951afSPyun YongHyeon 	 * be required with the PCIe devices.
2170818951afSPyun YongHyeon 	 */
2171818951afSPyun YongHyeon 	if ((status & (RL_ISR_TX_OK | RL_ISR_TX_DESC_UNAVAIL)) &&
2172818951afSPyun YongHyeon 	    (sc->rl_flags & RL_FLAG_PCIE))
2173818951afSPyun YongHyeon 		CSR_WRITE_1(sc, sc->rl_txstart, RL_TXSTART_START);
21743d85c23dSPyun YongHyeon 	if (status & (
2175ed510fb0SBill Paul #ifdef RE_TX_MODERATION
21763d85c23dSPyun YongHyeon 	    RL_ISR_TIMEOUT_EXPIRED|
2177ed510fb0SBill Paul #else
21783d85c23dSPyun YongHyeon 	    RL_ISR_TX_OK|
2179ed510fb0SBill Paul #endif
2180ed510fb0SBill Paul 	    RL_ISR_TX_ERR|RL_ISR_TX_DESC_UNAVAIL))
2181a94100faSBill Paul 		re_txeof(sc);
2182a94100faSBill Paul 
2183b659f1f0SPyun YongHyeon 	if (status & RL_ISR_SYSTEM_ERR)
218497b9d4baSJohn-Mark Gurney 		re_init_locked(sc);
2185a94100faSBill Paul 
218652732175SMax Laier 	if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
2187ed510fb0SBill Paul 		taskqueue_enqueue_fast(taskqueue_fast, &sc->rl_txtask);
2188a94100faSBill Paul 
2189a94100faSBill Paul 	RL_UNLOCK(sc);
2190ed510fb0SBill Paul 
2191ed510fb0SBill Paul         if ((CSR_READ_2(sc, RL_ISR) & RL_INTRS_CPLUS) || rval) {
2192ed510fb0SBill Paul 		taskqueue_enqueue_fast(taskqueue_fast, &sc->rl_inttask);
2193ed510fb0SBill Paul 		return;
2194ed510fb0SBill Paul 	}
2195ed510fb0SBill Paul 
2196ed510fb0SBill Paul 	CSR_WRITE_2(sc, RL_IMR, RL_INTRS_CPLUS);
2197a94100faSBill Paul }
2198a94100faSBill Paul 
2199d65abd66SPyun YongHyeon static int
22007b5ffebfSPyun YongHyeon re_encap(struct rl_softc *sc, struct mbuf **m_head)
2201d65abd66SPyun YongHyeon {
2202d65abd66SPyun YongHyeon 	struct rl_txdesc	*txd, *txd_last;
2203d65abd66SPyun YongHyeon 	bus_dma_segment_t	segs[RL_NTXSEGS];
2204d65abd66SPyun YongHyeon 	bus_dmamap_t		map;
2205d65abd66SPyun YongHyeon 	struct mbuf		*m_new;
2206d65abd66SPyun YongHyeon 	struct rl_desc		*desc;
2207d65abd66SPyun YongHyeon 	int			nsegs, prod;
2208d65abd66SPyun YongHyeon 	int			i, error, ei, si;
2209d65abd66SPyun YongHyeon 	int			padlen;
2210ccf34c81SPyun YongHyeon 	uint32_t		cmdstat, csum_flags, vlanctl;
2211a94100faSBill Paul 
2212d65abd66SPyun YongHyeon 	RL_LOCK_ASSERT(sc);
2213738489d1SPyun YongHyeon 	M_ASSERTPKTHDR((*m_head));
22140fc4974fSBill Paul 
22150fc4974fSBill Paul 	/*
22160fc4974fSBill Paul 	 * With some of the RealTek chips, using the checksum offload
22170fc4974fSBill Paul 	 * support in conjunction with the autopadding feature results
22180fc4974fSBill Paul 	 * in the transmission of corrupt frames. For example, if we
22190fc4974fSBill Paul 	 * need to send a really small IP fragment that's less than 60
22200fc4974fSBill Paul 	 * bytes in size, and IP header checksumming is enabled, the
22210fc4974fSBill Paul 	 * resulting ethernet frame that appears on the wire will
222299c8ae87SPyun YongHyeon 	 * have garbled payload. To work around this, if TX IP checksum
22230fc4974fSBill Paul 	 * offload is enabled, we always manually pad short frames out
2224d65abd66SPyun YongHyeon 	 * to the minimum ethernet frame size.
22250fc4974fSBill Paul 	 */
2226deb5c680SPyun YongHyeon 	if ((sc->rl_flags & RL_FLAG_DESCV2) == 0 &&
2227deb5c680SPyun YongHyeon 	    (*m_head)->m_pkthdr.len < RL_IP4CSUMTX_PADLEN &&
222899c8ae87SPyun YongHyeon 	    ((*m_head)->m_pkthdr.csum_flags & CSUM_IP) != 0) {
2229d65abd66SPyun YongHyeon 		padlen = RL_MIN_FRAMELEN - (*m_head)->m_pkthdr.len;
2230d65abd66SPyun YongHyeon 		if (M_WRITABLE(*m_head) == 0) {
2231d65abd66SPyun YongHyeon 			/* Get a writable copy. */
2232d65abd66SPyun YongHyeon 			m_new = m_dup(*m_head, M_DONTWAIT);
2233d65abd66SPyun YongHyeon 			m_freem(*m_head);
2234d65abd66SPyun YongHyeon 			if (m_new == NULL) {
2235d65abd66SPyun YongHyeon 				*m_head = NULL;
2236a94100faSBill Paul 				return (ENOBUFS);
2237a94100faSBill Paul 			}
2238d65abd66SPyun YongHyeon 			*m_head = m_new;
2239d65abd66SPyun YongHyeon 		}
2240d65abd66SPyun YongHyeon 		if ((*m_head)->m_next != NULL ||
2241d65abd66SPyun YongHyeon 		    M_TRAILINGSPACE(*m_head) < padlen) {
224280a2a305SJohn-Mark Gurney 			m_new = m_defrag(*m_head, M_DONTWAIT);
2243b4b95879SMarius Strobl 			if (m_new == NULL) {
2244b4b95879SMarius Strobl 				m_freem(*m_head);
2245b4b95879SMarius Strobl 				*m_head = NULL;
224680a2a305SJohn-Mark Gurney 				return (ENOBUFS);
2247b4b95879SMarius Strobl 			}
2248d65abd66SPyun YongHyeon 		} else
2249d65abd66SPyun YongHyeon 			m_new = *m_head;
2250a94100faSBill Paul 
22510fc4974fSBill Paul 		/*
22520fc4974fSBill Paul 		 * Manually pad short frames, and zero the pad space
22530fc4974fSBill Paul 		 * to avoid leaking data.
22540fc4974fSBill Paul 		 */
2255d65abd66SPyun YongHyeon 		bzero(mtod(m_new, char *) + m_new->m_pkthdr.len, padlen);
2256d65abd66SPyun YongHyeon 		m_new->m_pkthdr.len += padlen;
22570fc4974fSBill Paul 		m_new->m_len = m_new->m_pkthdr.len;
2258d65abd66SPyun YongHyeon 		*m_head = m_new;
22590fc4974fSBill Paul 	}
22600fc4974fSBill Paul 
2261d65abd66SPyun YongHyeon 	prod = sc->rl_ldata.rl_tx_prodidx;
2262d65abd66SPyun YongHyeon 	txd = &sc->rl_ldata.rl_tx_desc[prod];
2263d65abd66SPyun YongHyeon 	error = bus_dmamap_load_mbuf_sg(sc->rl_ldata.rl_tx_mtag, txd->tx_dmamap,
2264d65abd66SPyun YongHyeon 	    *m_head, segs, &nsegs, BUS_DMA_NOWAIT);
2265d65abd66SPyun YongHyeon 	if (error == EFBIG) {
2266304a4c6fSJohn Baldwin 		m_new = m_collapse(*m_head, M_DONTWAIT, RL_NTXSEGS);
2267d65abd66SPyun YongHyeon 		if (m_new == NULL) {
2268d65abd66SPyun YongHyeon 			m_freem(*m_head);
2269b4b95879SMarius Strobl 			*m_head = NULL;
2270d65abd66SPyun YongHyeon 			return (ENOBUFS);
2271a94100faSBill Paul 		}
2272d65abd66SPyun YongHyeon 		*m_head = m_new;
2273d65abd66SPyun YongHyeon 		error = bus_dmamap_load_mbuf_sg(sc->rl_ldata.rl_tx_mtag,
2274d65abd66SPyun YongHyeon 		    txd->tx_dmamap, *m_head, segs, &nsegs, BUS_DMA_NOWAIT);
2275d65abd66SPyun YongHyeon 		if (error != 0) {
2276d65abd66SPyun YongHyeon 			m_freem(*m_head);
2277d65abd66SPyun YongHyeon 			*m_head = NULL;
2278d65abd66SPyun YongHyeon 			return (error);
2279a94100faSBill Paul 		}
2280d65abd66SPyun YongHyeon 	} else if (error != 0)
2281d65abd66SPyun YongHyeon 		return (error);
2282d65abd66SPyun YongHyeon 	if (nsegs == 0) {
2283d65abd66SPyun YongHyeon 		m_freem(*m_head);
2284d65abd66SPyun YongHyeon 		*m_head = NULL;
2285d65abd66SPyun YongHyeon 		return (EIO);
2286d65abd66SPyun YongHyeon 	}
2287d65abd66SPyun YongHyeon 
2288d65abd66SPyun YongHyeon 	/* Check for number of available descriptors. */
2289d65abd66SPyun YongHyeon 	if (sc->rl_ldata.rl_tx_free - nsegs <= 1) {
2290d65abd66SPyun YongHyeon 		bus_dmamap_unload(sc->rl_ldata.rl_tx_mtag, txd->tx_dmamap);
2291d65abd66SPyun YongHyeon 		return (ENOBUFS);
2292d65abd66SPyun YongHyeon 	}
2293d65abd66SPyun YongHyeon 
2294d65abd66SPyun YongHyeon 	bus_dmamap_sync(sc->rl_ldata.rl_tx_mtag, txd->tx_dmamap,
2295d65abd66SPyun YongHyeon 	    BUS_DMASYNC_PREWRITE);
2296a94100faSBill Paul 
2297a94100faSBill Paul 	/*
2298d65abd66SPyun YongHyeon 	 * Set up checksum offload. Note: checksum offload bits must
2299d65abd66SPyun YongHyeon 	 * appear in all descriptors of a multi-descriptor transmit
2300d65abd66SPyun YongHyeon 	 * attempt. This is according to testing done with an 8169
2301d65abd66SPyun YongHyeon 	 * chip. This is a requirement.
2302a94100faSBill Paul 	 */
2303deb5c680SPyun YongHyeon 	vlanctl = 0;
2304d65abd66SPyun YongHyeon 	csum_flags = 0;
2305d65abd66SPyun YongHyeon 	if (((*m_head)->m_pkthdr.csum_flags & CSUM_TSO) != 0)
2306d65abd66SPyun YongHyeon 		csum_flags = RL_TDESC_CMD_LGSEND |
2307d65abd66SPyun YongHyeon 		    ((uint32_t)(*m_head)->m_pkthdr.tso_segsz <<
2308d65abd66SPyun YongHyeon 		    RL_TDESC_CMD_MSSVAL_SHIFT);
2309d65abd66SPyun YongHyeon 	else {
231099c8ae87SPyun YongHyeon 		/*
231199c8ae87SPyun YongHyeon 		 * Unconditionally enable IP checksum if TCP or UDP
231299c8ae87SPyun YongHyeon 		 * checksum is required. Otherwise, TCP/UDP checksum
231399c8ae87SPyun YongHyeon 		 * does't make effects.
231499c8ae87SPyun YongHyeon 		 */
231599c8ae87SPyun YongHyeon 		if (((*m_head)->m_pkthdr.csum_flags & RE_CSUM_FEATURES) != 0) {
2316deb5c680SPyun YongHyeon 			if ((sc->rl_flags & RL_FLAG_DESCV2) == 0) {
2317d65abd66SPyun YongHyeon 				csum_flags |= RL_TDESC_CMD_IPCSUM;
2318deb5c680SPyun YongHyeon 				if (((*m_head)->m_pkthdr.csum_flags &
2319deb5c680SPyun YongHyeon 				    CSUM_TCP) != 0)
2320d65abd66SPyun YongHyeon 					csum_flags |= RL_TDESC_CMD_TCPCSUM;
2321deb5c680SPyun YongHyeon 				if (((*m_head)->m_pkthdr.csum_flags &
2322deb5c680SPyun YongHyeon 				    CSUM_UDP) != 0)
2323d65abd66SPyun YongHyeon 					csum_flags |= RL_TDESC_CMD_UDPCSUM;
2324deb5c680SPyun YongHyeon 			} else {
2325deb5c680SPyun YongHyeon 				vlanctl |= RL_TDESC_CMD_IPCSUMV2;
2326deb5c680SPyun YongHyeon 				if (((*m_head)->m_pkthdr.csum_flags &
2327deb5c680SPyun YongHyeon 				    CSUM_TCP) != 0)
2328deb5c680SPyun YongHyeon 					vlanctl |= RL_TDESC_CMD_TCPCSUMV2;
2329deb5c680SPyun YongHyeon 				if (((*m_head)->m_pkthdr.csum_flags &
2330deb5c680SPyun YongHyeon 				    CSUM_UDP) != 0)
2331deb5c680SPyun YongHyeon 					vlanctl |= RL_TDESC_CMD_UDPCSUMV2;
2332deb5c680SPyun YongHyeon 			}
2333d65abd66SPyun YongHyeon 		}
233499c8ae87SPyun YongHyeon 	}
2335a94100faSBill Paul 
2336ccf34c81SPyun YongHyeon 	/*
2337ccf34c81SPyun YongHyeon 	 * Set up hardware VLAN tagging. Note: vlan tag info must
2338ccf34c81SPyun YongHyeon 	 * appear in all descriptors of a multi-descriptor
2339ccf34c81SPyun YongHyeon 	 * transmission attempt.
2340ccf34c81SPyun YongHyeon 	 */
2341ccf34c81SPyun YongHyeon 	if ((*m_head)->m_flags & M_VLANTAG)
2342bddff934SPyun YongHyeon 		vlanctl |= bswap16((*m_head)->m_pkthdr.ether_vtag) |
2343deb5c680SPyun YongHyeon 		    RL_TDESC_VLANCTL_TAG;
2344ccf34c81SPyun YongHyeon 
2345d65abd66SPyun YongHyeon 	si = prod;
2346d65abd66SPyun YongHyeon 	for (i = 0; i < nsegs; i++, prod = RL_TX_DESC_NXT(sc, prod)) {
2347d65abd66SPyun YongHyeon 		desc = &sc->rl_ldata.rl_tx_list[prod];
2348deb5c680SPyun YongHyeon 		desc->rl_vlanctl = htole32(vlanctl);
2349d65abd66SPyun YongHyeon 		desc->rl_bufaddr_lo = htole32(RL_ADDR_LO(segs[i].ds_addr));
2350d65abd66SPyun YongHyeon 		desc->rl_bufaddr_hi = htole32(RL_ADDR_HI(segs[i].ds_addr));
2351d65abd66SPyun YongHyeon 		cmdstat = segs[i].ds_len;
2352d65abd66SPyun YongHyeon 		if (i != 0)
2353d65abd66SPyun YongHyeon 			cmdstat |= RL_TDESC_CMD_OWN;
2354d65abd66SPyun YongHyeon 		if (prod == sc->rl_ldata.rl_tx_desc_cnt - 1)
2355d65abd66SPyun YongHyeon 			cmdstat |= RL_TDESC_CMD_EOR;
2356d65abd66SPyun YongHyeon 		desc->rl_cmdstat = htole32(cmdstat | csum_flags);
2357d65abd66SPyun YongHyeon 		sc->rl_ldata.rl_tx_free--;
2358d65abd66SPyun YongHyeon 	}
2359d65abd66SPyun YongHyeon 	/* Update producer index. */
2360d65abd66SPyun YongHyeon 	sc->rl_ldata.rl_tx_prodidx = prod;
2361a94100faSBill Paul 
2362d65abd66SPyun YongHyeon 	/* Set EOF on the last descriptor. */
2363d65abd66SPyun YongHyeon 	ei = RL_TX_DESC_PRV(sc, prod);
2364d65abd66SPyun YongHyeon 	desc = &sc->rl_ldata.rl_tx_list[ei];
2365d65abd66SPyun YongHyeon 	desc->rl_cmdstat |= htole32(RL_TDESC_CMD_EOF);
2366d65abd66SPyun YongHyeon 
2367d65abd66SPyun YongHyeon 	desc = &sc->rl_ldata.rl_tx_list[si];
2368d65abd66SPyun YongHyeon 	/* Set SOF and transfer ownership of packet to the chip. */
2369d65abd66SPyun YongHyeon 	desc->rl_cmdstat |= htole32(RL_TDESC_CMD_OWN | RL_TDESC_CMD_SOF);
2370a94100faSBill Paul 
2371d65abd66SPyun YongHyeon 	/*
2372d65abd66SPyun YongHyeon 	 * Insure that the map for this transmission
2373d65abd66SPyun YongHyeon 	 * is placed at the array index of the last descriptor
2374d65abd66SPyun YongHyeon 	 * in this chain.  (Swap last and first dmamaps.)
2375d65abd66SPyun YongHyeon 	 */
2376d65abd66SPyun YongHyeon 	txd_last = &sc->rl_ldata.rl_tx_desc[ei];
2377d65abd66SPyun YongHyeon 	map = txd->tx_dmamap;
2378d65abd66SPyun YongHyeon 	txd->tx_dmamap = txd_last->tx_dmamap;
2379d65abd66SPyun YongHyeon 	txd_last->tx_dmamap = map;
2380d65abd66SPyun YongHyeon 	txd_last->tx_m = *m_head;
2381a94100faSBill Paul 
2382a94100faSBill Paul 	return (0);
2383a94100faSBill Paul }
2384a94100faSBill Paul 
238597b9d4baSJohn-Mark Gurney static void
23867b5ffebfSPyun YongHyeon re_tx_task(void *arg, int npending)
238797b9d4baSJohn-Mark Gurney {
2388ed510fb0SBill Paul 	struct ifnet		*ifp;
238997b9d4baSJohn-Mark Gurney 
2390ed510fb0SBill Paul 	ifp = arg;
2391ed510fb0SBill Paul 	re_start(ifp);
239297b9d4baSJohn-Mark Gurney }
239397b9d4baSJohn-Mark Gurney 
2394a94100faSBill Paul /*
2395a94100faSBill Paul  * Main transmit routine for C+ and gigE NICs.
2396a94100faSBill Paul  */
2397a94100faSBill Paul static void
23987b5ffebfSPyun YongHyeon re_start(struct ifnet *ifp)
2399a94100faSBill Paul {
2400a94100faSBill Paul 	struct rl_softc		*sc;
2401d65abd66SPyun YongHyeon 	struct mbuf		*m_head;
2402d65abd66SPyun YongHyeon 	int			queued;
2403a94100faSBill Paul 
2404a94100faSBill Paul 	sc = ifp->if_softc;
240597b9d4baSJohn-Mark Gurney 
2406ed510fb0SBill Paul 	RL_LOCK(sc);
2407ed510fb0SBill Paul 
2408d65abd66SPyun YongHyeon 	if ((ifp->if_drv_flags & (IFF_DRV_RUNNING | IFF_DRV_OACTIVE)) !=
2409351a76f9SPyun YongHyeon 	    IFF_DRV_RUNNING || (sc->rl_flags & RL_FLAG_LINK) == 0) {
2410ed510fb0SBill Paul 		RL_UNLOCK(sc);
2411ed510fb0SBill Paul 		return;
2412ed510fb0SBill Paul 	}
2413a94100faSBill Paul 
2414d65abd66SPyun YongHyeon 	for (queued = 0; !IFQ_DRV_IS_EMPTY(&ifp->if_snd) &&
2415d65abd66SPyun YongHyeon 	    sc->rl_ldata.rl_tx_free > 1;) {
241652732175SMax Laier 		IFQ_DRV_DEQUEUE(&ifp->if_snd, m_head);
2417a94100faSBill Paul 		if (m_head == NULL)
2418a94100faSBill Paul 			break;
2419a94100faSBill Paul 
2420d65abd66SPyun YongHyeon 		if (re_encap(sc, &m_head) != 0) {
2421b4b95879SMarius Strobl 			if (m_head == NULL)
2422b4b95879SMarius Strobl 				break;
242352732175SMax Laier 			IFQ_DRV_PREPEND(&ifp->if_snd, m_head);
242413f4c340SRobert Watson 			ifp->if_drv_flags |= IFF_DRV_OACTIVE;
2425a94100faSBill Paul 			break;
2426a94100faSBill Paul 		}
2427a94100faSBill Paul 
2428a94100faSBill Paul 		/*
2429a94100faSBill Paul 		 * If there's a BPF listener, bounce a copy of this frame
2430a94100faSBill Paul 		 * to him.
2431a94100faSBill Paul 		 */
243259a0d28bSChristian S.J. Peron 		ETHER_BPF_MTAP(ifp, m_head);
243352732175SMax Laier 
243452732175SMax Laier 		queued++;
2435a94100faSBill Paul 	}
2436a94100faSBill Paul 
2437ed510fb0SBill Paul 	if (queued == 0) {
2438ed510fb0SBill Paul #ifdef RE_TX_MODERATION
2439d65abd66SPyun YongHyeon 		if (sc->rl_ldata.rl_tx_free != sc->rl_ldata.rl_tx_desc_cnt)
2440ed510fb0SBill Paul 			CSR_WRITE_4(sc, RL_TIMERCNT, 1);
2441ed510fb0SBill Paul #endif
2442ed510fb0SBill Paul 		RL_UNLOCK(sc);
244352732175SMax Laier 		return;
2444ed510fb0SBill Paul 	}
244552732175SMax Laier 
2446a94100faSBill Paul 	/* Flush the TX descriptors */
2447a94100faSBill Paul 
2448a94100faSBill Paul 	bus_dmamap_sync(sc->rl_ldata.rl_tx_list_tag,
2449a94100faSBill Paul 	    sc->rl_ldata.rl_tx_list_map,
2450a94100faSBill Paul 	    BUS_DMASYNC_PREWRITE|BUS_DMASYNC_PREREAD);
2451a94100faSBill Paul 
24520fc4974fSBill Paul 	CSR_WRITE_1(sc, sc->rl_txstart, RL_TXSTART_START);
2453a94100faSBill Paul 
2454ed510fb0SBill Paul #ifdef RE_TX_MODERATION
2455a94100faSBill Paul 	/*
2456a94100faSBill Paul 	 * Use the countdown timer for interrupt moderation.
2457a94100faSBill Paul 	 * 'TX done' interrupts are disabled. Instead, we reset the
2458a94100faSBill Paul 	 * countdown timer, which will begin counting until it hits
2459a94100faSBill Paul 	 * the value in the TIMERINT register, and then trigger an
2460a94100faSBill Paul 	 * interrupt. Each time we write to the TIMERCNT register,
2461a94100faSBill Paul 	 * the timer count is reset to 0.
2462a94100faSBill Paul 	 */
2463a94100faSBill Paul 	CSR_WRITE_4(sc, RL_TIMERCNT, 1);
2464ed510fb0SBill Paul #endif
2465a94100faSBill Paul 
2466a94100faSBill Paul 	/*
2467a94100faSBill Paul 	 * Set a timeout in case the chip goes out to lunch.
2468a94100faSBill Paul 	 */
24691d545c7aSMarius Strobl 	sc->rl_watchdog_timer = 5;
2470ed510fb0SBill Paul 
2471ed510fb0SBill Paul 	RL_UNLOCK(sc);
2472a94100faSBill Paul }
2473a94100faSBill Paul 
2474a94100faSBill Paul static void
24757b5ffebfSPyun YongHyeon re_init(void *xsc)
2476a94100faSBill Paul {
2477a94100faSBill Paul 	struct rl_softc		*sc = xsc;
247897b9d4baSJohn-Mark Gurney 
247997b9d4baSJohn-Mark Gurney 	RL_LOCK(sc);
248097b9d4baSJohn-Mark Gurney 	re_init_locked(sc);
248197b9d4baSJohn-Mark Gurney 	RL_UNLOCK(sc);
248297b9d4baSJohn-Mark Gurney }
248397b9d4baSJohn-Mark Gurney 
248497b9d4baSJohn-Mark Gurney static void
24857b5ffebfSPyun YongHyeon re_init_locked(struct rl_softc *sc)
248697b9d4baSJohn-Mark Gurney {
2487fc74a9f9SBrooks Davis 	struct ifnet		*ifp = sc->rl_ifp;
2488a94100faSBill Paul 	struct mii_data		*mii;
248970acaecfSPyun YongHyeon 	uint16_t		cfg;
24904d3d7085SBernd Walter 	union {
24914d3d7085SBernd Walter 		uint32_t align_dummy;
24924d3d7085SBernd Walter 		u_char eaddr[ETHER_ADDR_LEN];
24934d3d7085SBernd Walter         } eaddr;
2494a94100faSBill Paul 
249597b9d4baSJohn-Mark Gurney 	RL_LOCK_ASSERT(sc);
249697b9d4baSJohn-Mark Gurney 
2497a94100faSBill Paul 	mii = device_get_softc(sc->rl_miibus);
2498a94100faSBill Paul 
2499a94100faSBill Paul 	/*
2500a94100faSBill Paul 	 * Cancel pending I/O and free all RX/TX buffers.
2501a94100faSBill Paul 	 */
2502a94100faSBill Paul 	re_stop(sc);
2503a94100faSBill Paul 
2504b659f1f0SPyun YongHyeon 	/* Put controller into known state. */
2505b659f1f0SPyun YongHyeon 	re_reset(sc);
2506b659f1f0SPyun YongHyeon 
2507a94100faSBill Paul 	/*
2508c2c6548bSBill Paul 	 * Enable C+ RX and TX mode, as well as VLAN stripping and
2509edd03374SBill Paul 	 * RX checksum offload. We must configure the C+ register
2510c2c6548bSBill Paul 	 * before all others.
2511c2c6548bSBill Paul 	 */
251270acaecfSPyun YongHyeon 	cfg = RL_CPLUSCMD_PCI_MRW;
251370acaecfSPyun YongHyeon 	if ((ifp->if_capenable & IFCAP_RXCSUM) != 0)
251470acaecfSPyun YongHyeon 		cfg |= RL_CPLUSCMD_RXCSUM_ENB;
251570acaecfSPyun YongHyeon 	if ((ifp->if_capenable & IFCAP_VLAN_HWTAGGING) != 0)
251670acaecfSPyun YongHyeon 		cfg |= RL_CPLUSCMD_VLANSTRIP;
2517deb5c680SPyun YongHyeon 	if ((sc->rl_flags & RL_FLAG_MACSTAT) != 0) {
2518deb5c680SPyun YongHyeon 		cfg |= RL_CPLUSCMD_MACSTAT_DIS;
2519deb5c680SPyun YongHyeon 		/* XXX magic. */
2520deb5c680SPyun YongHyeon 		cfg |= 0x0001;
2521deb5c680SPyun YongHyeon 	} else
2522deb5c680SPyun YongHyeon 		cfg |= RL_CPLUSCMD_RXENB | RL_CPLUSCMD_TXENB;
2523deb5c680SPyun YongHyeon 	CSR_WRITE_2(sc, RL_CPLUS_CMD, cfg);
2524ae644087SPyun YongHyeon 	/*
2525ae644087SPyun YongHyeon 	 * Disable TSO if interface MTU size is greater than MSS
2526ae644087SPyun YongHyeon 	 * allowed in controller.
2527ae644087SPyun YongHyeon 	 */
2528ae644087SPyun YongHyeon 	if (ifp->if_mtu > RL_TSO_MTU && (ifp->if_capenable & IFCAP_TSO4) != 0) {
2529ae644087SPyun YongHyeon 		ifp->if_capenable &= ~IFCAP_TSO4;
2530ae644087SPyun YongHyeon 		ifp->if_hwassist &= ~CSUM_TSO;
2531ae644087SPyun YongHyeon 	}
2532c2c6548bSBill Paul 
2533c2c6548bSBill Paul 	/*
2534a94100faSBill Paul 	 * Init our MAC address.  Even though the chipset
2535a94100faSBill Paul 	 * documentation doesn't mention it, we need to enter "Config
2536a94100faSBill Paul 	 * register write enable" mode to modify the ID registers.
2537a94100faSBill Paul 	 */
25384d3d7085SBernd Walter 	/* Copy MAC address on stack to align. */
25394d3d7085SBernd Walter 	bcopy(IF_LLADDR(ifp), eaddr.eaddr, ETHER_ADDR_LEN);
2540a94100faSBill Paul 	CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_WRITECFG);
2541ed510fb0SBill Paul 	CSR_WRITE_4(sc, RL_IDR0,
2542ed510fb0SBill Paul 	    htole32(*(u_int32_t *)(&eaddr.eaddr[0])));
2543ed510fb0SBill Paul 	CSR_WRITE_4(sc, RL_IDR4,
2544ed510fb0SBill Paul 	    htole32(*(u_int32_t *)(&eaddr.eaddr[4])));
2545a94100faSBill Paul 	CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_OFF);
2546a94100faSBill Paul 
2547a94100faSBill Paul 	/*
2548a94100faSBill Paul 	 * For C+ mode, initialize the RX descriptors and mbufs.
2549a94100faSBill Paul 	 */
2550a94100faSBill Paul 	re_rx_list_init(sc);
2551a94100faSBill Paul 	re_tx_list_init(sc);
2552a94100faSBill Paul 
2553a94100faSBill Paul 	/*
2554d01fac16SPyun YongHyeon 	 * Load the addresses of the RX and TX lists into the chip.
2555d01fac16SPyun YongHyeon 	 */
2556d01fac16SPyun YongHyeon 
2557d01fac16SPyun YongHyeon 	CSR_WRITE_4(sc, RL_RXLIST_ADDR_HI,
2558d01fac16SPyun YongHyeon 	    RL_ADDR_HI(sc->rl_ldata.rl_rx_list_addr));
2559d01fac16SPyun YongHyeon 	CSR_WRITE_4(sc, RL_RXLIST_ADDR_LO,
2560d01fac16SPyun YongHyeon 	    RL_ADDR_LO(sc->rl_ldata.rl_rx_list_addr));
2561d01fac16SPyun YongHyeon 
2562d01fac16SPyun YongHyeon 	CSR_WRITE_4(sc, RL_TXLIST_ADDR_HI,
2563d01fac16SPyun YongHyeon 	    RL_ADDR_HI(sc->rl_ldata.rl_tx_list_addr));
2564d01fac16SPyun YongHyeon 	CSR_WRITE_4(sc, RL_TXLIST_ADDR_LO,
2565d01fac16SPyun YongHyeon 	    RL_ADDR_LO(sc->rl_ldata.rl_tx_list_addr));
2566d01fac16SPyun YongHyeon 
2567d01fac16SPyun YongHyeon 	/*
2568a94100faSBill Paul 	 * Enable transmit and receive.
2569a94100faSBill Paul 	 */
2570a94100faSBill Paul 	CSR_WRITE_1(sc, RL_COMMAND, RL_CMD_TX_ENB|RL_CMD_RX_ENB);
2571a94100faSBill Paul 
2572a94100faSBill Paul 	/*
2573ff191365SJung-uk Kim 	 * Set the initial TX configuration.
2574a94100faSBill Paul 	 */
2575abc8ff44SBill Paul 	if (sc->rl_testmode) {
2576abc8ff44SBill Paul 		if (sc->rl_type == RL_8169)
2577abc8ff44SBill Paul 			CSR_WRITE_4(sc, RL_TXCFG,
2578abc8ff44SBill Paul 			    RL_TXCFG_CONFIG|RL_LOOPTEST_ON);
2579a94100faSBill Paul 		else
2580abc8ff44SBill Paul 			CSR_WRITE_4(sc, RL_TXCFG,
2581abc8ff44SBill Paul 			    RL_TXCFG_CONFIG|RL_LOOPTEST_ON_CPLUS);
2582abc8ff44SBill Paul 	} else
2583a94100faSBill Paul 		CSR_WRITE_4(sc, RL_TXCFG, RL_TXCFG_CONFIG);
2584d01fac16SPyun YongHyeon 
2585d01fac16SPyun YongHyeon 	CSR_WRITE_1(sc, RL_EARLY_TX_THRESH, 16);
2586d01fac16SPyun YongHyeon 
2587a94100faSBill Paul 	/*
2588ff191365SJung-uk Kim 	 * Set the initial RX configuration.
2589a94100faSBill Paul 	 */
2590ff191365SJung-uk Kim 	re_set_rxmode(sc);
2591a94100faSBill Paul 
2592a94100faSBill Paul #ifdef DEVICE_POLLING
2593a94100faSBill Paul 	/*
2594a94100faSBill Paul 	 * Disable interrupts if we are polling.
2595a94100faSBill Paul 	 */
259640929967SGleb Smirnoff 	if (ifp->if_capenable & IFCAP_POLLING)
2597a94100faSBill Paul 		CSR_WRITE_2(sc, RL_IMR, 0);
2598a94100faSBill Paul 	else	/* otherwise ... */
259940929967SGleb Smirnoff #endif
2600ed510fb0SBill Paul 
2601a94100faSBill Paul 	/*
2602a94100faSBill Paul 	 * Enable interrupts.
2603a94100faSBill Paul 	 */
2604a94100faSBill Paul 	if (sc->rl_testmode)
2605a94100faSBill Paul 		CSR_WRITE_2(sc, RL_IMR, 0);
2606a94100faSBill Paul 	else
2607a94100faSBill Paul 		CSR_WRITE_2(sc, RL_IMR, RL_INTRS_CPLUS);
2608ed510fb0SBill Paul 	CSR_WRITE_2(sc, RL_ISR, RL_INTRS_CPLUS);
2609a94100faSBill Paul 
2610a94100faSBill Paul 	/* Set initial TX threshold */
2611a94100faSBill Paul 	sc->rl_txthresh = RL_TX_THRESH_INIT;
2612a94100faSBill Paul 
2613a94100faSBill Paul 	/* Start RX/TX process. */
2614a94100faSBill Paul 	CSR_WRITE_4(sc, RL_MISSEDPKT, 0);
2615a94100faSBill Paul #ifdef notdef
2616a94100faSBill Paul 	/* Enable receiver and transmitter. */
2617a94100faSBill Paul 	CSR_WRITE_1(sc, RL_COMMAND, RL_CMD_TX_ENB|RL_CMD_RX_ENB);
2618a94100faSBill Paul #endif
2619a94100faSBill Paul 
2620ed510fb0SBill Paul #ifdef RE_TX_MODERATION
2621a94100faSBill Paul 	/*
2622a94100faSBill Paul 	 * Initialize the timer interrupt register so that
2623a94100faSBill Paul 	 * a timer interrupt will be generated once the timer
2624a94100faSBill Paul 	 * reaches a certain number of ticks. The timer is
2625a94100faSBill Paul 	 * reloaded on each transmit. This gives us TX interrupt
2626a94100faSBill Paul 	 * moderation, which dramatically improves TX frame rate.
2627a94100faSBill Paul 	 */
2628a94100faSBill Paul 	if (sc->rl_type == RL_8169)
2629a94100faSBill Paul 		CSR_WRITE_4(sc, RL_TIMERINT_8169, 0x800);
2630a94100faSBill Paul 	else
2631a94100faSBill Paul 		CSR_WRITE_4(sc, RL_TIMERINT, 0x400);
2632ed510fb0SBill Paul #endif
2633a94100faSBill Paul 
2634a94100faSBill Paul 	/*
2635a94100faSBill Paul 	 * For 8169 gigE NICs, set the max allowed RX packet
2636a94100faSBill Paul 	 * size so we can receive jumbo frames.
2637a94100faSBill Paul 	 */
2638a94100faSBill Paul 	if (sc->rl_type == RL_8169)
2639a94100faSBill Paul 		CSR_WRITE_2(sc, RL_MAXRXPKTLEN, 16383);
2640a94100faSBill Paul 
264197b9d4baSJohn-Mark Gurney 	if (sc->rl_testmode)
2642a94100faSBill Paul 		return;
2643a94100faSBill Paul 
2644a94100faSBill Paul 	mii_mediachg(mii);
2645a94100faSBill Paul 
264619ecd231SPyun YongHyeon 	CSR_WRITE_1(sc, RL_CFG1, CSR_READ_1(sc, RL_CFG1) | RL_CFG1_DRVLOAD);
2647a94100faSBill Paul 
264813f4c340SRobert Watson 	ifp->if_drv_flags |= IFF_DRV_RUNNING;
264913f4c340SRobert Watson 	ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
2650a94100faSBill Paul 
2651351a76f9SPyun YongHyeon 	sc->rl_flags &= ~RL_FLAG_LINK;
26521d545c7aSMarius Strobl 	sc->rl_watchdog_timer = 0;
2653d1754a9bSJohn Baldwin 	callout_reset(&sc->rl_stat_callout, hz, re_tick, sc);
2654a94100faSBill Paul }
2655a94100faSBill Paul 
2656a94100faSBill Paul /*
2657a94100faSBill Paul  * Set media options.
2658a94100faSBill Paul  */
2659a94100faSBill Paul static int
26607b5ffebfSPyun YongHyeon re_ifmedia_upd(struct ifnet *ifp)
2661a94100faSBill Paul {
2662a94100faSBill Paul 	struct rl_softc		*sc;
2663a94100faSBill Paul 	struct mii_data		*mii;
26646f0f9b12SPyun YongHyeon 	int			error;
2665a94100faSBill Paul 
2666a94100faSBill Paul 	sc = ifp->if_softc;
2667a94100faSBill Paul 	mii = device_get_softc(sc->rl_miibus);
2668d1754a9bSJohn Baldwin 	RL_LOCK(sc);
26696f0f9b12SPyun YongHyeon 	error = mii_mediachg(mii);
2670d1754a9bSJohn Baldwin 	RL_UNLOCK(sc);
2671a94100faSBill Paul 
26726f0f9b12SPyun YongHyeon 	return (error);
2673a94100faSBill Paul }
2674a94100faSBill Paul 
2675a94100faSBill Paul /*
2676a94100faSBill Paul  * Report current media status.
2677a94100faSBill Paul  */
2678a94100faSBill Paul static void
26797b5ffebfSPyun YongHyeon re_ifmedia_sts(struct ifnet *ifp, struct ifmediareq *ifmr)
2680a94100faSBill Paul {
2681a94100faSBill Paul 	struct rl_softc		*sc;
2682a94100faSBill Paul 	struct mii_data		*mii;
2683a94100faSBill Paul 
2684a94100faSBill Paul 	sc = ifp->if_softc;
2685a94100faSBill Paul 	mii = device_get_softc(sc->rl_miibus);
2686a94100faSBill Paul 
2687d1754a9bSJohn Baldwin 	RL_LOCK(sc);
2688a94100faSBill Paul 	mii_pollstat(mii);
2689d1754a9bSJohn Baldwin 	RL_UNLOCK(sc);
2690a94100faSBill Paul 	ifmr->ifm_active = mii->mii_media_active;
2691a94100faSBill Paul 	ifmr->ifm_status = mii->mii_media_status;
2692a94100faSBill Paul }
2693a94100faSBill Paul 
2694a94100faSBill Paul static int
26957b5ffebfSPyun YongHyeon re_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
2696a94100faSBill Paul {
2697a94100faSBill Paul 	struct rl_softc		*sc = ifp->if_softc;
2698a94100faSBill Paul 	struct ifreq		*ifr = (struct ifreq *) data;
2699a94100faSBill Paul 	struct mii_data		*mii;
270040929967SGleb Smirnoff 	int			error = 0;
2701a94100faSBill Paul 
2702a94100faSBill Paul 	switch (command) {
2703a94100faSBill Paul 	case SIOCSIFMTU:
2704c1d0b573SPyun YongHyeon 		if (ifr->ifr_mtu < ETHERMIN || ifr->ifr_mtu > RL_JUMBO_MTU) {
2705a94100faSBill Paul 			error = EINVAL;
2706c1d0b573SPyun YongHyeon 			break;
2707c1d0b573SPyun YongHyeon 		}
2708351a76f9SPyun YongHyeon 		if ((sc->rl_flags & RL_FLAG_NOJUMBO) != 0 &&
2709c1d0b573SPyun YongHyeon 		    ifr->ifr_mtu > RL_MAX_FRAMELEN) {
2710c1d0b573SPyun YongHyeon 			error = EINVAL;
2711c1d0b573SPyun YongHyeon 			break;
2712c1d0b573SPyun YongHyeon 		}
2713c1d0b573SPyun YongHyeon 		RL_LOCK(sc);
2714c1d0b573SPyun YongHyeon 		if (ifp->if_mtu != ifr->ifr_mtu)
2715a94100faSBill Paul 			ifp->if_mtu = ifr->ifr_mtu;
2716ae644087SPyun YongHyeon 		if (ifp->if_mtu > RL_TSO_MTU &&
2717ae644087SPyun YongHyeon 		    (ifp->if_capenable & IFCAP_TSO4) != 0) {
2718ae644087SPyun YongHyeon 			ifp->if_capenable &= ~IFCAP_TSO4;
2719ae644087SPyun YongHyeon 			ifp->if_hwassist &= ~CSUM_TSO;
2720ae644087SPyun YongHyeon 		}
2721d1754a9bSJohn Baldwin 		RL_UNLOCK(sc);
2722a94100faSBill Paul 		break;
2723a94100faSBill Paul 	case SIOCSIFFLAGS:
272497b9d4baSJohn-Mark Gurney 		RL_LOCK(sc);
2725eed497bbSPyun YongHyeon 		if ((ifp->if_flags & IFF_UP) != 0) {
2726eed497bbSPyun YongHyeon 			if ((ifp->if_drv_flags & IFF_DRV_RUNNING) != 0) {
2727eed497bbSPyun YongHyeon 				if (((ifp->if_flags ^ sc->rl_if_flags)
27283021aef8SPyun YongHyeon 				    & (IFF_PROMISC | IFF_ALLMULTI)) != 0)
2729ff191365SJung-uk Kim 					re_set_rxmode(sc);
2730eed497bbSPyun YongHyeon 			} else
273197b9d4baSJohn-Mark Gurney 				re_init_locked(sc);
2732eed497bbSPyun YongHyeon 		} else {
2733eed497bbSPyun YongHyeon 			if ((ifp->if_drv_flags & IFF_DRV_RUNNING) != 0)
2734a94100faSBill Paul 				re_stop(sc);
2735eed497bbSPyun YongHyeon 		}
2736eed497bbSPyun YongHyeon 		sc->rl_if_flags = ifp->if_flags;
273797b9d4baSJohn-Mark Gurney 		RL_UNLOCK(sc);
2738a94100faSBill Paul 		break;
2739a94100faSBill Paul 	case SIOCADDMULTI:
2740a94100faSBill Paul 	case SIOCDELMULTI:
274197b9d4baSJohn-Mark Gurney 		RL_LOCK(sc);
2742ff191365SJung-uk Kim 		re_set_rxmode(sc);
274397b9d4baSJohn-Mark Gurney 		RL_UNLOCK(sc);
2744a94100faSBill Paul 		break;
2745a94100faSBill Paul 	case SIOCGIFMEDIA:
2746a94100faSBill Paul 	case SIOCSIFMEDIA:
2747a94100faSBill Paul 		mii = device_get_softc(sc->rl_miibus);
2748a94100faSBill Paul 		error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
2749a94100faSBill Paul 		break;
2750a94100faSBill Paul 	case SIOCSIFCAP:
275140929967SGleb Smirnoff 	    {
2752f051cb85SGleb Smirnoff 		int mask, reinit;
2753f051cb85SGleb Smirnoff 
2754f051cb85SGleb Smirnoff 		mask = ifr->ifr_reqcap ^ ifp->if_capenable;
2755f051cb85SGleb Smirnoff 		reinit = 0;
275640929967SGleb Smirnoff #ifdef DEVICE_POLLING
275740929967SGleb Smirnoff 		if (mask & IFCAP_POLLING) {
275840929967SGleb Smirnoff 			if (ifr->ifr_reqcap & IFCAP_POLLING) {
275940929967SGleb Smirnoff 				error = ether_poll_register(re_poll, ifp);
276040929967SGleb Smirnoff 				if (error)
276140929967SGleb Smirnoff 					return(error);
2762d1754a9bSJohn Baldwin 				RL_LOCK(sc);
276340929967SGleb Smirnoff 				/* Disable interrupts */
276440929967SGleb Smirnoff 				CSR_WRITE_2(sc, RL_IMR, 0x0000);
276540929967SGleb Smirnoff 				ifp->if_capenable |= IFCAP_POLLING;
276640929967SGleb Smirnoff 				RL_UNLOCK(sc);
276740929967SGleb Smirnoff 			} else {
276840929967SGleb Smirnoff 				error = ether_poll_deregister(ifp);
276940929967SGleb Smirnoff 				/* Enable interrupts. */
277040929967SGleb Smirnoff 				RL_LOCK(sc);
277140929967SGleb Smirnoff 				CSR_WRITE_2(sc, RL_IMR, RL_INTRS_CPLUS);
277240929967SGleb Smirnoff 				ifp->if_capenable &= ~IFCAP_POLLING;
277340929967SGleb Smirnoff 				RL_UNLOCK(sc);
277440929967SGleb Smirnoff 			}
277540929967SGleb Smirnoff 		}
277640929967SGleb Smirnoff #endif /* DEVICE_POLLING */
277740929967SGleb Smirnoff 		if (mask & IFCAP_HWCSUM) {
2778f051cb85SGleb Smirnoff 			ifp->if_capenable ^= IFCAP_HWCSUM;
2779a94100faSBill Paul 			if (ifp->if_capenable & IFCAP_TXCSUM)
2780dc74159dSPyun YongHyeon 				ifp->if_hwassist |= RE_CSUM_FEATURES;
2781a94100faSBill Paul 			else
2782b61178a9SPyun YongHyeon 				ifp->if_hwassist &= ~RE_CSUM_FEATURES;
2783f051cb85SGleb Smirnoff 			reinit = 1;
278440929967SGleb Smirnoff 		}
2785f051cb85SGleb Smirnoff 		if (mask & IFCAP_VLAN_HWTAGGING) {
2786f051cb85SGleb Smirnoff 			ifp->if_capenable ^= IFCAP_VLAN_HWTAGGING;
2787f051cb85SGleb Smirnoff 			reinit = 1;
2788f051cb85SGleb Smirnoff 		}
2789dc74159dSPyun YongHyeon 		if (mask & IFCAP_TSO4) {
2790dc74159dSPyun YongHyeon 			ifp->if_capenable ^= IFCAP_TSO4;
2791dc74159dSPyun YongHyeon 			if ((IFCAP_TSO4 & ifp->if_capenable) &&
2792dc74159dSPyun YongHyeon 			    (IFCAP_TSO4 & ifp->if_capabilities))
2793dc74159dSPyun YongHyeon 				ifp->if_hwassist |= CSUM_TSO;
2794dc74159dSPyun YongHyeon 			else
2795dc74159dSPyun YongHyeon 				ifp->if_hwassist &= ~CSUM_TSO;
2796ae644087SPyun YongHyeon 			if (ifp->if_mtu > RL_TSO_MTU &&
2797ae644087SPyun YongHyeon 			    (ifp->if_capenable & IFCAP_TSO4) != 0) {
2798ae644087SPyun YongHyeon 				ifp->if_capenable &= ~IFCAP_TSO4;
2799ae644087SPyun YongHyeon 				ifp->if_hwassist &= ~CSUM_TSO;
2800ae644087SPyun YongHyeon 			}
2801dc74159dSPyun YongHyeon 		}
28027467bd53SPyun YongHyeon 		if ((mask & IFCAP_WOL) != 0 &&
28037467bd53SPyun YongHyeon 		    (ifp->if_capabilities & IFCAP_WOL) != 0) {
28047467bd53SPyun YongHyeon 			if ((mask & IFCAP_WOL_UCAST) != 0)
28057467bd53SPyun YongHyeon 				ifp->if_capenable ^= IFCAP_WOL_UCAST;
28067467bd53SPyun YongHyeon 			if ((mask & IFCAP_WOL_MCAST) != 0)
28077467bd53SPyun YongHyeon 				ifp->if_capenable ^= IFCAP_WOL_MCAST;
28087467bd53SPyun YongHyeon 			if ((mask & IFCAP_WOL_MAGIC) != 0)
28097467bd53SPyun YongHyeon 				ifp->if_capenable ^= IFCAP_WOL_MAGIC;
28107467bd53SPyun YongHyeon 		}
2811f051cb85SGleb Smirnoff 		if (reinit && ifp->if_drv_flags & IFF_DRV_RUNNING)
2812f051cb85SGleb Smirnoff 			re_init(sc);
2813960fd5b3SPyun YongHyeon 		VLAN_CAPABILITIES(ifp);
281440929967SGleb Smirnoff 	    }
2815a94100faSBill Paul 		break;
2816a94100faSBill Paul 	default:
2817a94100faSBill Paul 		error = ether_ioctl(ifp, command, data);
2818a94100faSBill Paul 		break;
2819a94100faSBill Paul 	}
2820a94100faSBill Paul 
2821a94100faSBill Paul 	return (error);
2822a94100faSBill Paul }
2823a94100faSBill Paul 
2824a94100faSBill Paul static void
28257b5ffebfSPyun YongHyeon re_watchdog(struct rl_softc *sc)
28261d545c7aSMarius Strobl {
2827130b6dfbSPyun YongHyeon 	struct ifnet		*ifp;
2828a94100faSBill Paul 
28291d545c7aSMarius Strobl 	RL_LOCK_ASSERT(sc);
28301d545c7aSMarius Strobl 
28311d545c7aSMarius Strobl 	if (sc->rl_watchdog_timer == 0 || --sc->rl_watchdog_timer != 0)
28321d545c7aSMarius Strobl 		return;
28331d545c7aSMarius Strobl 
2834130b6dfbSPyun YongHyeon 	ifp = sc->rl_ifp;
2835a94100faSBill Paul 	re_txeof(sc);
2836130b6dfbSPyun YongHyeon 	if (sc->rl_ldata.rl_tx_free == sc->rl_ldata.rl_tx_desc_cnt) {
2837130b6dfbSPyun YongHyeon 		if_printf(ifp, "watchdog timeout (missed Tx interrupts) "
2838130b6dfbSPyun YongHyeon 		    "-- recovering\n");
2839130b6dfbSPyun YongHyeon 		if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
2840130b6dfbSPyun YongHyeon 			taskqueue_enqueue_fast(taskqueue_fast, &sc->rl_txtask);
2841130b6dfbSPyun YongHyeon 		return;
2842130b6dfbSPyun YongHyeon 	}
2843130b6dfbSPyun YongHyeon 
2844130b6dfbSPyun YongHyeon 	if_printf(ifp, "watchdog timeout\n");
2845130b6dfbSPyun YongHyeon 	ifp->if_oerrors++;
2846130b6dfbSPyun YongHyeon 
2847a94100faSBill Paul 	re_rxeof(sc);
284897b9d4baSJohn-Mark Gurney 	re_init_locked(sc);
2849130b6dfbSPyun YongHyeon 	if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
2850130b6dfbSPyun YongHyeon 		taskqueue_enqueue_fast(taskqueue_fast, &sc->rl_txtask);
2851a94100faSBill Paul }
2852a94100faSBill Paul 
2853a94100faSBill Paul /*
2854a94100faSBill Paul  * Stop the adapter and free any mbufs allocated to the
2855a94100faSBill Paul  * RX and TX lists.
2856a94100faSBill Paul  */
2857a94100faSBill Paul static void
28587b5ffebfSPyun YongHyeon re_stop(struct rl_softc *sc)
2859a94100faSBill Paul {
28600ce0868aSPyun YongHyeon 	int			i;
2861a94100faSBill Paul 	struct ifnet		*ifp;
2862d65abd66SPyun YongHyeon 	struct rl_txdesc	*txd;
2863d65abd66SPyun YongHyeon 	struct rl_rxdesc	*rxd;
2864a94100faSBill Paul 
286597b9d4baSJohn-Mark Gurney 	RL_LOCK_ASSERT(sc);
286697b9d4baSJohn-Mark Gurney 
2867fc74a9f9SBrooks Davis 	ifp = sc->rl_ifp;
2868a94100faSBill Paul 
28691d545c7aSMarius Strobl 	sc->rl_watchdog_timer = 0;
2870d1754a9bSJohn Baldwin 	callout_stop(&sc->rl_stat_callout);
287113f4c340SRobert Watson 	ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
2872a94100faSBill Paul 
2873ead8fc66SPyun YongHyeon 	if ((sc->rl_flags & RL_FLAG_CMDSTOP) != 0)
2874ead8fc66SPyun YongHyeon 		CSR_WRITE_1(sc, RL_COMMAND, RL_CMD_STOPREQ | RL_CMD_TX_ENB |
2875ead8fc66SPyun YongHyeon 		    RL_CMD_RX_ENB);
2876ead8fc66SPyun YongHyeon 	else
2877a94100faSBill Paul 		CSR_WRITE_1(sc, RL_COMMAND, 0x00);
2878ead8fc66SPyun YongHyeon 	DELAY(1000);
2879a94100faSBill Paul 	CSR_WRITE_2(sc, RL_IMR, 0x0000);
2880ed510fb0SBill Paul 	CSR_WRITE_2(sc, RL_ISR, 0xFFFF);
2881a94100faSBill Paul 
2882a94100faSBill Paul 	if (sc->rl_head != NULL) {
2883a94100faSBill Paul 		m_freem(sc->rl_head);
2884a94100faSBill Paul 		sc->rl_head = sc->rl_tail = NULL;
2885a94100faSBill Paul 	}
2886a94100faSBill Paul 
2887a94100faSBill Paul 	/* Free the TX list buffers. */
2888a94100faSBill Paul 
2889d65abd66SPyun YongHyeon 	for (i = 0; i < sc->rl_ldata.rl_tx_desc_cnt; i++) {
2890d65abd66SPyun YongHyeon 		txd = &sc->rl_ldata.rl_tx_desc[i];
2891d65abd66SPyun YongHyeon 		if (txd->tx_m != NULL) {
2892d65abd66SPyun YongHyeon 			bus_dmamap_sync(sc->rl_ldata.rl_tx_mtag,
2893d65abd66SPyun YongHyeon 			    txd->tx_dmamap, BUS_DMASYNC_POSTWRITE);
2894d65abd66SPyun YongHyeon 			bus_dmamap_unload(sc->rl_ldata.rl_tx_mtag,
2895d65abd66SPyun YongHyeon 			    txd->tx_dmamap);
2896d65abd66SPyun YongHyeon 			m_freem(txd->tx_m);
2897d65abd66SPyun YongHyeon 			txd->tx_m = NULL;
2898a94100faSBill Paul 		}
2899a94100faSBill Paul 	}
2900a94100faSBill Paul 
2901a94100faSBill Paul 	/* Free the RX list buffers. */
2902a94100faSBill Paul 
2903d65abd66SPyun YongHyeon 	for (i = 0; i < sc->rl_ldata.rl_rx_desc_cnt; i++) {
2904d65abd66SPyun YongHyeon 		rxd = &sc->rl_ldata.rl_rx_desc[i];
2905d65abd66SPyun YongHyeon 		if (rxd->rx_m != NULL) {
2906d65abd66SPyun YongHyeon 			bus_dmamap_sync(sc->rl_ldata.rl_tx_mtag,
2907d65abd66SPyun YongHyeon 			    rxd->rx_dmamap, BUS_DMASYNC_POSTREAD);
2908d65abd66SPyun YongHyeon 			bus_dmamap_unload(sc->rl_ldata.rl_rx_mtag,
2909d65abd66SPyun YongHyeon 			    rxd->rx_dmamap);
2910d65abd66SPyun YongHyeon 			m_freem(rxd->rx_m);
2911d65abd66SPyun YongHyeon 			rxd->rx_m = NULL;
2912a94100faSBill Paul 		}
2913a94100faSBill Paul 	}
2914a94100faSBill Paul }
2915a94100faSBill Paul 
2916a94100faSBill Paul /*
2917a94100faSBill Paul  * Device suspend routine.  Stop the interface and save some PCI
2918a94100faSBill Paul  * settings in case the BIOS doesn't restore them properly on
2919a94100faSBill Paul  * resume.
2920a94100faSBill Paul  */
2921a94100faSBill Paul static int
29227b5ffebfSPyun YongHyeon re_suspend(device_t dev)
2923a94100faSBill Paul {
2924a94100faSBill Paul 	struct rl_softc		*sc;
2925a94100faSBill Paul 
2926a94100faSBill Paul 	sc = device_get_softc(dev);
2927a94100faSBill Paul 
292897b9d4baSJohn-Mark Gurney 	RL_LOCK(sc);
2929a94100faSBill Paul 	re_stop(sc);
29307467bd53SPyun YongHyeon 	re_setwol(sc);
2931a94100faSBill Paul 	sc->suspended = 1;
293297b9d4baSJohn-Mark Gurney 	RL_UNLOCK(sc);
2933a94100faSBill Paul 
2934a94100faSBill Paul 	return (0);
2935a94100faSBill Paul }
2936a94100faSBill Paul 
2937a94100faSBill Paul /*
2938a94100faSBill Paul  * Device resume routine.  Restore some PCI settings in case the BIOS
2939a94100faSBill Paul  * doesn't, re-enable busmastering, and restart the interface if
2940a94100faSBill Paul  * appropriate.
2941a94100faSBill Paul  */
2942a94100faSBill Paul static int
29437b5ffebfSPyun YongHyeon re_resume(device_t dev)
2944a94100faSBill Paul {
2945a94100faSBill Paul 	struct rl_softc		*sc;
2946a94100faSBill Paul 	struct ifnet		*ifp;
2947a94100faSBill Paul 
2948a94100faSBill Paul 	sc = device_get_softc(dev);
294997b9d4baSJohn-Mark Gurney 
295097b9d4baSJohn-Mark Gurney 	RL_LOCK(sc);
295197b9d4baSJohn-Mark Gurney 
2952fc74a9f9SBrooks Davis 	ifp = sc->rl_ifp;
295361f45a72SPyun YongHyeon 	/* Take controller out of sleep mode. */
295461f45a72SPyun YongHyeon 	if ((sc->rl_flags & RL_FLAG_MACSLEEP) != 0) {
295561f45a72SPyun YongHyeon 		if ((CSR_READ_1(sc, RL_MACDBG) & 0x80) == 0x80)
295661f45a72SPyun YongHyeon 			CSR_WRITE_1(sc, RL_GPIO,
295761f45a72SPyun YongHyeon 			    CSR_READ_1(sc, RL_GPIO) | 0x01);
295861f45a72SPyun YongHyeon 	}
2959a94100faSBill Paul 
2960a94100faSBill Paul 	/* reinitialize interface if necessary */
2961a94100faSBill Paul 	if (ifp->if_flags & IFF_UP)
296297b9d4baSJohn-Mark Gurney 		re_init_locked(sc);
2963a94100faSBill Paul 
29647467bd53SPyun YongHyeon 	/*
29657467bd53SPyun YongHyeon 	 * Clear WOL matching such that normal Rx filtering
29667467bd53SPyun YongHyeon 	 * wouldn't interfere with WOL patterns.
29677467bd53SPyun YongHyeon 	 */
29687467bd53SPyun YongHyeon 	re_clrwol(sc);
2969a94100faSBill Paul 	sc->suspended = 0;
297097b9d4baSJohn-Mark Gurney 	RL_UNLOCK(sc);
2971a94100faSBill Paul 
2972a94100faSBill Paul 	return (0);
2973a94100faSBill Paul }
2974a94100faSBill Paul 
2975a94100faSBill Paul /*
2976a94100faSBill Paul  * Stop all chip I/O so that the kernel's probe routines don't
2977a94100faSBill Paul  * get confused by errant DMAs when rebooting.
2978a94100faSBill Paul  */
29796a087a87SPyun YongHyeon static int
29807b5ffebfSPyun YongHyeon re_shutdown(device_t dev)
2981a94100faSBill Paul {
2982a94100faSBill Paul 	struct rl_softc		*sc;
2983a94100faSBill Paul 
2984a94100faSBill Paul 	sc = device_get_softc(dev);
2985a94100faSBill Paul 
298697b9d4baSJohn-Mark Gurney 	RL_LOCK(sc);
2987a94100faSBill Paul 	re_stop(sc);
2988536fde34SMaxim Sobolev 	/*
2989536fde34SMaxim Sobolev 	 * Mark interface as down since otherwise we will panic if
2990536fde34SMaxim Sobolev 	 * interrupt comes in later on, which can happen in some
299172293673SRuslan Ermilov 	 * cases.
2992536fde34SMaxim Sobolev 	 */
2993536fde34SMaxim Sobolev 	sc->rl_ifp->if_flags &= ~IFF_UP;
29947467bd53SPyun YongHyeon 	re_setwol(sc);
299597b9d4baSJohn-Mark Gurney 	RL_UNLOCK(sc);
29966a087a87SPyun YongHyeon 
29976a087a87SPyun YongHyeon 	return (0);
2998a94100faSBill Paul }
29997467bd53SPyun YongHyeon 
30007467bd53SPyun YongHyeon static void
30017b5ffebfSPyun YongHyeon re_setwol(struct rl_softc *sc)
30027467bd53SPyun YongHyeon {
30037467bd53SPyun YongHyeon 	struct ifnet		*ifp;
30047467bd53SPyun YongHyeon 	int			pmc;
30057467bd53SPyun YongHyeon 	uint16_t		pmstat;
30067467bd53SPyun YongHyeon 	uint8_t			v;
30077467bd53SPyun YongHyeon 
30087467bd53SPyun YongHyeon 	RL_LOCK_ASSERT(sc);
30097467bd53SPyun YongHyeon 
30107467bd53SPyun YongHyeon 	if (pci_find_extcap(sc->rl_dev, PCIY_PMG, &pmc) != 0)
30117467bd53SPyun YongHyeon 		return;
30127467bd53SPyun YongHyeon 
30137467bd53SPyun YongHyeon 	ifp = sc->rl_ifp;
301461f45a72SPyun YongHyeon 	/* Put controller into sleep mode. */
301561f45a72SPyun YongHyeon 	if ((sc->rl_flags & RL_FLAG_MACSLEEP) != 0) {
301661f45a72SPyun YongHyeon 		if ((CSR_READ_1(sc, RL_MACDBG) & 0x80) == 0x80)
301761f45a72SPyun YongHyeon 			CSR_WRITE_1(sc, RL_GPIO,
301861f45a72SPyun YongHyeon 			    CSR_READ_1(sc, RL_GPIO) & ~0x01);
301961f45a72SPyun YongHyeon 	}
3020886ff602SPyun YongHyeon 	if ((ifp->if_capenable & IFCAP_WOL) != 0 &&
3021886ff602SPyun YongHyeon 	    (sc->rl_flags & RL_FLAG_WOLRXENB) != 0)
3022886ff602SPyun YongHyeon 		CSR_WRITE_1(sc, RL_COMMAND, RL_CMD_RX_ENB);
30237467bd53SPyun YongHyeon 	/* Enable config register write. */
30247467bd53SPyun YongHyeon 	CSR_WRITE_1(sc, RL_EECMD, RL_EE_MODE);
30257467bd53SPyun YongHyeon 
30267467bd53SPyun YongHyeon 	/* Enable PME. */
30277467bd53SPyun YongHyeon 	v = CSR_READ_1(sc, RL_CFG1);
30287467bd53SPyun YongHyeon 	v &= ~RL_CFG1_PME;
30297467bd53SPyun YongHyeon 	if ((ifp->if_capenable & IFCAP_WOL) != 0)
30307467bd53SPyun YongHyeon 		v |= RL_CFG1_PME;
30317467bd53SPyun YongHyeon 	CSR_WRITE_1(sc, RL_CFG1, v);
30327467bd53SPyun YongHyeon 
30337467bd53SPyun YongHyeon 	v = CSR_READ_1(sc, RL_CFG3);
30347467bd53SPyun YongHyeon 	v &= ~(RL_CFG3_WOL_LINK | RL_CFG3_WOL_MAGIC);
30357467bd53SPyun YongHyeon 	if ((ifp->if_capenable & IFCAP_WOL_MAGIC) != 0)
30367467bd53SPyun YongHyeon 		v |= RL_CFG3_WOL_MAGIC;
30377467bd53SPyun YongHyeon 	CSR_WRITE_1(sc, RL_CFG3, v);
30387467bd53SPyun YongHyeon 
30397467bd53SPyun YongHyeon 	/* Config register write done. */
3040f98dd8cfSPyun YongHyeon 	CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_OFF);
30417467bd53SPyun YongHyeon 
30427467bd53SPyun YongHyeon 	v = CSR_READ_1(sc, RL_CFG5);
30437467bd53SPyun YongHyeon 	v &= ~(RL_CFG5_WOL_BCAST | RL_CFG5_WOL_MCAST | RL_CFG5_WOL_UCAST);
30447467bd53SPyun YongHyeon 	v &= ~RL_CFG5_WOL_LANWAKE;
30457467bd53SPyun YongHyeon 	if ((ifp->if_capenable & IFCAP_WOL_UCAST) != 0)
30467467bd53SPyun YongHyeon 		v |= RL_CFG5_WOL_UCAST;
30477467bd53SPyun YongHyeon 	if ((ifp->if_capenable & IFCAP_WOL_MCAST) != 0)
30487467bd53SPyun YongHyeon 		v |= RL_CFG5_WOL_MCAST | RL_CFG5_WOL_BCAST;
30497467bd53SPyun YongHyeon 	if ((ifp->if_capenable & IFCAP_WOL) != 0)
30507467bd53SPyun YongHyeon 		v |= RL_CFG5_WOL_LANWAKE;
30517467bd53SPyun YongHyeon 	CSR_WRITE_1(sc, RL_CFG5, v);
30527467bd53SPyun YongHyeon 
30537467bd53SPyun YongHyeon 	/*
30547467bd53SPyun YongHyeon 	 * It seems that hardware resets its link speed to 100Mbps in
30557467bd53SPyun YongHyeon 	 * power down mode so switching to 100Mbps in driver is not
30567467bd53SPyun YongHyeon 	 * needed.
30577467bd53SPyun YongHyeon 	 */
30587467bd53SPyun YongHyeon 
30597467bd53SPyun YongHyeon 	/* Request PME if WOL is requested. */
30607467bd53SPyun YongHyeon 	pmstat = pci_read_config(sc->rl_dev, pmc + PCIR_POWER_STATUS, 2);
30617467bd53SPyun YongHyeon 	pmstat &= ~(PCIM_PSTAT_PME | PCIM_PSTAT_PMEENABLE);
30627467bd53SPyun YongHyeon 	if ((ifp->if_capenable & IFCAP_WOL) != 0)
30637467bd53SPyun YongHyeon 		pmstat |= PCIM_PSTAT_PME | PCIM_PSTAT_PMEENABLE;
30647467bd53SPyun YongHyeon 	pci_write_config(sc->rl_dev, pmc + PCIR_POWER_STATUS, pmstat, 2);
30657467bd53SPyun YongHyeon }
30667467bd53SPyun YongHyeon 
30677467bd53SPyun YongHyeon static void
30687b5ffebfSPyun YongHyeon re_clrwol(struct rl_softc *sc)
30697467bd53SPyun YongHyeon {
30707467bd53SPyun YongHyeon 	int			pmc;
30717467bd53SPyun YongHyeon 	uint8_t			v;
30727467bd53SPyun YongHyeon 
30737467bd53SPyun YongHyeon 	RL_LOCK_ASSERT(sc);
30747467bd53SPyun YongHyeon 
30757467bd53SPyun YongHyeon 	if (pci_find_extcap(sc->rl_dev, PCIY_PMG, &pmc) != 0)
30767467bd53SPyun YongHyeon 		return;
30777467bd53SPyun YongHyeon 
30787467bd53SPyun YongHyeon 	/* Enable config register write. */
30797467bd53SPyun YongHyeon 	CSR_WRITE_1(sc, RL_EECMD, RL_EE_MODE);
30807467bd53SPyun YongHyeon 
30817467bd53SPyun YongHyeon 	v = CSR_READ_1(sc, RL_CFG3);
30827467bd53SPyun YongHyeon 	v &= ~(RL_CFG3_WOL_LINK | RL_CFG3_WOL_MAGIC);
30837467bd53SPyun YongHyeon 	CSR_WRITE_1(sc, RL_CFG3, v);
30847467bd53SPyun YongHyeon 
30857467bd53SPyun YongHyeon 	/* Config register write done. */
3086f98dd8cfSPyun YongHyeon 	CSR_WRITE_1(sc, RL_EECMD, RL_EEMODE_OFF);
30877467bd53SPyun YongHyeon 
30887467bd53SPyun YongHyeon 	v = CSR_READ_1(sc, RL_CFG5);
30897467bd53SPyun YongHyeon 	v &= ~(RL_CFG5_WOL_BCAST | RL_CFG5_WOL_MCAST | RL_CFG5_WOL_UCAST);
30907467bd53SPyun YongHyeon 	v &= ~RL_CFG5_WOL_LANWAKE;
30917467bd53SPyun YongHyeon 	CSR_WRITE_1(sc, RL_CFG5, v);
30927467bd53SPyun YongHyeon }
3093