xref: /freebsd/sys/dev/dc/if_dc.c (revision 76d40c85935d10baf6dd9b0f02046c3d55ad0017)
160727d8bSWarner Losh /*-
296f2e892SBill Paul  * Copyright (c) 1997, 1998, 1999
396f2e892SBill Paul  *	Bill Paul <wpaul@ee.columbia.edu>.  All rights reserved.
496f2e892SBill Paul  *
596f2e892SBill Paul  * Redistribution and use in source and binary forms, with or without
696f2e892SBill Paul  * modification, are permitted provided that the following conditions
796f2e892SBill Paul  * are met:
896f2e892SBill Paul  * 1. Redistributions of source code must retain the above copyright
996f2e892SBill Paul  *    notice, this list of conditions and the following disclaimer.
1096f2e892SBill Paul  * 2. Redistributions in binary form must reproduce the above copyright
1196f2e892SBill Paul  *    notice, this list of conditions and the following disclaimer in the
1296f2e892SBill Paul  *    documentation and/or other materials provided with the distribution.
1396f2e892SBill Paul  * 3. All advertising materials mentioning features or use of this software
1496f2e892SBill Paul  *    must display the following acknowledgement:
1596f2e892SBill Paul  *	This product includes software developed by Bill Paul.
1696f2e892SBill Paul  * 4. Neither the name of the author nor the names of any co-contributors
1796f2e892SBill Paul  *    may be used to endorse or promote products derived from this software
1896f2e892SBill Paul  *    without specific prior written permission.
1996f2e892SBill Paul  *
2096f2e892SBill Paul  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
2196f2e892SBill Paul  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2296f2e892SBill Paul  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2396f2e892SBill Paul  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
2496f2e892SBill Paul  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2596f2e892SBill Paul  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2696f2e892SBill Paul  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2796f2e892SBill Paul  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2896f2e892SBill Paul  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2996f2e892SBill Paul  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
3096f2e892SBill Paul  * THE POSSIBILITY OF SUCH DAMAGE.
3196f2e892SBill Paul  */
3296f2e892SBill Paul 
334dc52c32SDavid E. O'Brien #include <sys/cdefs.h>
344dc52c32SDavid E. O'Brien __FBSDID("$FreeBSD$");
354dc52c32SDavid E. O'Brien 
3696f2e892SBill Paul /*
3796f2e892SBill Paul  * DEC "tulip" clone ethernet driver. Supports the DEC/Intel 21143
3896f2e892SBill Paul  * series chips and several workalikes including the following:
3996f2e892SBill Paul  *
40ead7cde9SBill Paul  * Macronix 98713/98715/98725/98727/98732 PMAC (www.macronix.com)
4196f2e892SBill Paul  * Macronix/Lite-On 82c115 PNIC II (www.macronix.com)
4296f2e892SBill Paul  * Lite-On 82c168/82c169 PNIC (www.litecom.com)
4396f2e892SBill Paul  * ASIX Electronics AX88140A (www.asix.com.tw)
4496f2e892SBill Paul  * ASIX Electronics AX88141 (www.asix.com.tw)
4596f2e892SBill Paul  * ADMtek AL981 (www.admtek.com.tw)
46593a1aeaSMartin Blapp  * ADMtek AN983 (www.admtek.com.tw)
47a2d61e43SWarner Losh  * ADMtek CardBus AN985 (www.admtek.com.tw)
48a2d61e43SWarner Losh  * Netgear FA511 (www.netgear.com) Appears to be rebadged ADMTek CardBus AN985
4988d739dcSBill Paul  * Davicom DM9100, DM9102, DM9102A (www.davicom8.com)
509ca710f6SJeroen Ruigrok van der Werven  * Accton EN1217 (www.accton.com)
51feb78939SJonathan Chen  * Xircom X3201 (www.xircom.com)
521d5e5310SBill Paul  * Abocom FE2500
531af8bec7SBill Paul  * Conexant LANfinity (www.conexant.com)
547eac366bSMartin Blapp  * 3Com OfficeConnect 10/100B 3CSOHO100B (www.3com.com)
5596f2e892SBill Paul  *
5696f2e892SBill Paul  * Datasheets for the 21143 are available at developer.intel.com.
5796f2e892SBill Paul  * Datasheets for the clone parts can be found at their respective sites.
5896f2e892SBill Paul  * (Except for the PNIC; see www.freebsd.org/~wpaul/PNIC/pnic.ps.gz.)
5996f2e892SBill Paul  * The PNIC II is essentially a Macronix 98715A chip; the only difference
6096f2e892SBill Paul  * worth noting is that its multicast hash table is only 128 bits wide
6196f2e892SBill Paul  * instead of 512.
6296f2e892SBill Paul  *
6396f2e892SBill Paul  * Written by Bill Paul <wpaul@ee.columbia.edu>
6496f2e892SBill Paul  * Electrical Engineering Department
6596f2e892SBill Paul  * Columbia University, New York City
6696f2e892SBill Paul  */
6796f2e892SBill Paul /*
6896f2e892SBill Paul  * The Intel 21143 is the successor to the DEC 21140. It is basically
6996f2e892SBill Paul  * the same as the 21140 but with a few new features. The 21143 supports
7096f2e892SBill Paul  * three kinds of media attachments:
7196f2e892SBill Paul  *
7296f2e892SBill Paul  * o MII port, for 10Mbps and 100Mbps support and NWAY
7396f2e892SBill Paul  *   autonegotiation provided by an external PHY.
7496f2e892SBill Paul  * o SYM port, for symbol mode 100Mbps support.
7596f2e892SBill Paul  * o 10baseT port.
7696f2e892SBill Paul  * o AUI/BNC port.
7796f2e892SBill Paul  *
7896f2e892SBill Paul  * The 100Mbps SYM port and 10baseT port can be used together in
7996f2e892SBill Paul  * combination with the internal NWAY support to create a 10/100
8096f2e892SBill Paul  * autosensing configuration.
8196f2e892SBill Paul  *
8296f2e892SBill Paul  * Note that not all tulip workalikes are handled in this driver: we only
8396f2e892SBill Paul  * deal with those which are relatively well behaved. The Winbond is
8496f2e892SBill Paul  * handled separately due to its different register offsets and the
8596f2e892SBill Paul  * special handling needed for its various bugs. The PNIC is handled
8696f2e892SBill Paul  * here, but I'm not thrilled about it.
8796f2e892SBill Paul  *
8896f2e892SBill Paul  * All of the workalike chips use some form of MII transceiver support
8996f2e892SBill Paul  * with the exception of the Macronix chips, which also have a SYM port.
9096f2e892SBill Paul  * The ASIX AX88140A is also documented to have a SYM port, but all
9196f2e892SBill Paul  * the cards I've seen use an MII transceiver, probably because the
9296f2e892SBill Paul  * AX88140A doesn't support internal NWAY.
9396f2e892SBill Paul  */
9496f2e892SBill Paul 
95f0796cd2SGleb Smirnoff #ifdef HAVE_KERNEL_OPTION_HEADERS
96f0796cd2SGleb Smirnoff #include "opt_device_polling.h"
97f0796cd2SGleb Smirnoff #endif
98f0796cd2SGleb Smirnoff 
9996f2e892SBill Paul #include <sys/param.h>
100af4358c7SMaxime Henrion #include <sys/endian.h>
10196f2e892SBill Paul #include <sys/systm.h>
10296f2e892SBill Paul #include <sys/sockio.h>
10396f2e892SBill Paul #include <sys/mbuf.h>
10496f2e892SBill Paul #include <sys/malloc.h>
10596f2e892SBill Paul #include <sys/kernel.h>
106f11d01c3SPoul-Henning Kamp #include <sys/module.h>
10796f2e892SBill Paul #include <sys/socket.h>
10896f2e892SBill Paul 
10996f2e892SBill Paul #include <net/if.h>
11096f2e892SBill Paul #include <net/if_arp.h>
11196f2e892SBill Paul #include <net/ethernet.h>
11296f2e892SBill Paul #include <net/if_dl.h>
11396f2e892SBill Paul #include <net/if_media.h>
114db40c1aeSDoug Ambrisko #include <net/if_types.h>
115db40c1aeSDoug Ambrisko #include <net/if_vlan_var.h>
11696f2e892SBill Paul 
11796f2e892SBill Paul #include <net/bpf.h>
11896f2e892SBill Paul 
11996f2e892SBill Paul #include <machine/bus.h>
12096f2e892SBill Paul #include <machine/resource.h>
12196f2e892SBill Paul #include <sys/bus.h>
12296f2e892SBill Paul #include <sys/rman.h>
12396f2e892SBill Paul 
12496f2e892SBill Paul #include <dev/mii/mii.h>
12596f2e892SBill Paul #include <dev/mii/miivar.h>
12696f2e892SBill Paul 
12719b7ffd1SWarner Losh #include <dev/pci/pcireg.h>
12819b7ffd1SWarner Losh #include <dev/pci/pcivar.h>
12996f2e892SBill Paul 
13096f2e892SBill Paul #define DC_USEIOSPACE
13196f2e892SBill Paul 
1326a3033a8SWarner Losh #include <dev/dc/if_dcreg.h>
13396f2e892SBill Paul 
134ec6a7299SMaxime Henrion #ifdef __sparc64__
135ec6a7299SMaxime Henrion #include <dev/ofw/openfirm.h>
136ec6a7299SMaxime Henrion #include <machine/ofw_machdep.h>
137ec6a7299SMaxime Henrion #endif
138ec6a7299SMaxime Henrion 
139f246e4a1SMatthew N. Dodd MODULE_DEPEND(dc, pci, 1, 1, 1);
140f246e4a1SMatthew N. Dodd MODULE_DEPEND(dc, ether, 1, 1, 1);
14195a16455SPeter Wemm MODULE_DEPEND(dc, miibus, 1, 1, 1);
14295a16455SPeter Wemm 
143919ccba7SWarner Losh /*
144919ccba7SWarner Losh  * "device miibus" is required in kernel config.  See GENERIC if you get
145919ccba7SWarner Losh  * errors here.
146919ccba7SWarner Losh  */
14796f2e892SBill Paul #include "miibus_if.h"
14896f2e892SBill Paul 
14996f2e892SBill Paul /*
15096f2e892SBill Paul  * Various supported device vendors/types and their names.
15196f2e892SBill Paul  */
152ebc284ccSMarius Strobl static const struct dc_type dc_devs[] = {
1531e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_DEC, DC_DEVICEID_21143), 0,
15496f2e892SBill Paul 		"Intel 21143 10/100BaseTX" },
1551e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_DAVICOM, DC_DEVICEID_DM9009), 0,
15638deb45fSTom Rhodes 		"Davicom DM9009 10/100BaseTX" },
1571e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_DAVICOM, DC_DEVICEID_DM9100), 0,
15896f2e892SBill Paul 		"Davicom DM9100 10/100BaseTX" },
1591e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_DAVICOM, DC_DEVICEID_DM9102), DC_REVISION_DM9102A,
16088d739dcSBill Paul 		"Davicom DM9102A 10/100BaseTX" },
1611e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_DAVICOM, DC_DEVICEID_DM9102), 0,
1621e2e70b1SJohn Baldwin 		"Davicom DM9102 10/100BaseTX" },
1631e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_ADMTEK, DC_DEVICEID_AL981), 0,
16496f2e892SBill Paul 		"ADMtek AL981 10/100BaseTX" },
165593a1aeaSMartin Blapp 	{ DC_DEVID(DC_VENDORID_ADMTEK, DC_DEVICEID_AN983), 0,
166593a1aeaSMartin Blapp 		"ADMtek AN983 10/100BaseTX" },
1671e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_ADMTEK, DC_DEVICEID_AN985), 0,
168a2d61e43SWarner Losh 		"ADMtek AN985 CardBus 10/100BaseTX or clone" },
1691e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_ADMTEK, DC_DEVICEID_ADM9511), 0,
170e351d778SMartin Blapp 		"ADMtek ADM9511 10/100BaseTX" },
1711e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_ADMTEK, DC_DEVICEID_ADM9513), 0,
172e351d778SMartin Blapp 		"ADMtek ADM9513 10/100BaseTX" },
1731e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_ASIX, DC_DEVICEID_AX88140A), DC_REVISION_88141,
17496f2e892SBill Paul 		"ASIX AX88141 10/100BaseTX" },
1751e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_ASIX, DC_DEVICEID_AX88140A), 0,
1761e2e70b1SJohn Baldwin 		"ASIX AX88140A 10/100BaseTX" },
1771e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_MX, DC_DEVICEID_98713), DC_REVISION_98713A,
17896f2e892SBill Paul 		"Macronix 98713A 10/100BaseTX" },
1791e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_MX, DC_DEVICEID_98713), 0,
1801e2e70b1SJohn Baldwin 		"Macronix 98713 10/100BaseTX" },
1811e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_CP, DC_DEVICEID_98713_CP), DC_REVISION_98713A,
18296f2e892SBill Paul 		"Compex RL100-TX 10/100BaseTX" },
1831e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_CP, DC_DEVICEID_98713_CP), 0,
18496f2e892SBill Paul 		"Compex RL100-TX 10/100BaseTX" },
1851e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_MX, DC_DEVICEID_987x5), DC_REVISION_98725,
18696f2e892SBill Paul 		"Macronix 98725 10/100BaseTX" },
1871e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_MX, DC_DEVICEID_987x5), DC_REVISION_98715AEC_C,
1881e2e70b1SJohn Baldwin 		"Macronix 98715AEC-C 10/100BaseTX" },
1891e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_MX, DC_DEVICEID_987x5), 0,
1901e2e70b1SJohn Baldwin 		"Macronix 98715/98715A 10/100BaseTX" },
1911e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_MX, DC_DEVICEID_98727), 0,
192ead7cde9SBill Paul 		"Macronix 98727/98732 10/100BaseTX" },
1931e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_LO, DC_DEVICEID_82C115), 0,
19496f2e892SBill Paul 		"LC82C115 PNIC II 10/100BaseTX" },
1951e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_LO, DC_DEVICEID_82C168), DC_REVISION_82C169,
19696f2e892SBill Paul 		"82c169 PNIC 10/100BaseTX" },
1971e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_LO, DC_DEVICEID_82C168), 0,
1981e2e70b1SJohn Baldwin 		"82c168 PNIC 10/100BaseTX" },
1991e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_ACCTON, DC_DEVICEID_EN1217), 0,
2009ca710f6SJeroen Ruigrok van der Werven 		"Accton EN1217 10/100BaseTX" },
2011e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_ACCTON, DC_DEVICEID_EN2242), 0,
202fa167b8eSBill Paul 		"Accton EN2242 MiniPCI 10/100BaseTX" },
2031e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_XIRCOM, DC_DEVICEID_X3201), 0,
204feb78939SJonathan Chen 		"Xircom X3201 10/100BaseTX" },
2051e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_DLINK, DC_DEVICEID_DRP32TXD), 0,
2069be0993cSJohn Baldwin 		"Neteasy DRP-32TXD Cardbus 10/100" },
2071e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_ABOCOM, DC_DEVICEID_FE2500), 0,
2081d5e5310SBill Paul 		"Abocom FE2500 10/100BaseTX" },
2091e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_ABOCOM, DC_DEVICEID_FE2500MX), 0,
210773c505fSMIHIRA Sanpei Yoshiro 		"Abocom FE2500MX 10/100BaseTX" },
2111e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_CONEXANT, DC_DEVICEID_RS7112), 0,
2121af8bec7SBill Paul 		"Conexant LANfinity MiniPCI 10/100BaseTX" },
2131e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_HAWKING, DC_DEVICEID_HAWKING_PN672TX), 0,
214948c244dSWarner Losh 		"Hawking CB102 CardBus 10/100" },
2151e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_PLANEX, DC_DEVICEID_FNW3602T), 0,
21697f91728SMIHIRA Sanpei Yoshiro 		"PlaneX FNW-3602-T CardBus 10/100" },
2171e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_3COM, DC_DEVICEID_3CSOHOB), 0,
2187eac366bSMartin Blapp 		"3Com OfficeConnect 10/100B" },
2191e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_MICROSOFT, DC_DEVICEID_MSMN120), 0,
220e7b9ab3aSBill Paul 		"Microsoft MN-120 CardBus 10/100" },
2211e2e70b1SJohn Baldwin 	{ DC_DEVID(DC_VENDORID_MICROSOFT, DC_DEVICEID_MSMN130), 0,
222e7b9ab3aSBill Paul 		"Microsoft MN-130 10/100" },
22317762569SGleb Smirnoff 	{ DC_DEVID(DC_VENDORID_LINKSYS, DC_DEVICEID_PCMPC200_AB08), 0,
22417762569SGleb Smirnoff 		"Linksys PCMPC200 CardBus 10/100" },
22517762569SGleb Smirnoff 	{ DC_DEVID(DC_VENDORID_LINKSYS, DC_DEVICEID_PCMPC200_AB09), 0,
22617762569SGleb Smirnoff 		"Linksys PCMPC200 CardBus 10/100" },
22796f2e892SBill Paul 	{ 0, 0, NULL }
22896f2e892SBill Paul };
22996f2e892SBill Paul 
230e51a25f8SAlfred Perlstein static int dc_probe(device_t);
231e51a25f8SAlfred Perlstein static int dc_attach(device_t);
232e51a25f8SAlfred Perlstein static int dc_detach(device_t);
233e8388e14SMitsuru IWASAKI static int dc_suspend(device_t);
234e8388e14SMitsuru IWASAKI static int dc_resume(device_t);
235ebc284ccSMarius Strobl static const struct dc_type *dc_devtype(device_t);
23656e5e7aeSMaxime Henrion static int dc_newbuf(struct dc_softc *, int, int);
237a10c0e45SMike Silbersack static int dc_encap(struct dc_softc *, struct mbuf **);
238e51a25f8SAlfred Perlstein static void dc_pnic_rx_bug_war(struct dc_softc *, int);
239e51a25f8SAlfred Perlstein static int dc_rx_resync(struct dc_softc *);
2401abcdbd1SAttilio Rao static int dc_rxeof(struct dc_softc *);
241e51a25f8SAlfred Perlstein static void dc_txeof(struct dc_softc *);
242e51a25f8SAlfred Perlstein static void dc_tick(void *);
243e51a25f8SAlfred Perlstein static void dc_tx_underrun(struct dc_softc *);
244e51a25f8SAlfred Perlstein static void dc_intr(void *);
245e51a25f8SAlfred Perlstein static void dc_start(struct ifnet *);
246c8b27acaSJohn Baldwin static void dc_start_locked(struct ifnet *);
247e51a25f8SAlfred Perlstein static int dc_ioctl(struct ifnet *, u_long, caddr_t);
248e51a25f8SAlfred Perlstein static void dc_init(void *);
249c8b27acaSJohn Baldwin static void dc_init_locked(struct dc_softc *);
250e51a25f8SAlfred Perlstein static void dc_stop(struct dc_softc *);
251b1d16143SMarius Strobl static void dc_watchdog(void *);
2526a087a87SPyun YongHyeon static int dc_shutdown(device_t);
253e51a25f8SAlfred Perlstein static int dc_ifmedia_upd(struct ifnet *);
254e51a25f8SAlfred Perlstein static void dc_ifmedia_sts(struct ifnet *, struct ifmediareq *);
25596f2e892SBill Paul 
256e51a25f8SAlfred Perlstein static void dc_delay(struct dc_softc *);
257e51a25f8SAlfred Perlstein static void dc_eeprom_idle(struct dc_softc *);
258e51a25f8SAlfred Perlstein static void dc_eeprom_putbyte(struct dc_softc *, int);
259e51a25f8SAlfred Perlstein static void dc_eeprom_getword(struct dc_softc *, int, u_int16_t *);
260d24ae19dSWarner Losh static void dc_eeprom_getword_pnic(struct dc_softc *, int, u_int16_t *);
261d24ae19dSWarner Losh static void dc_eeprom_getword_xircom(struct dc_softc *, int, u_int16_t *);
2623097aa70SWarner Losh static void dc_eeprom_width(struct dc_softc *);
263e51a25f8SAlfred Perlstein static void dc_read_eeprom(struct dc_softc *, caddr_t, int, int, int);
26496f2e892SBill Paul 
265e51a25f8SAlfred Perlstein static void dc_mii_writebit(struct dc_softc *, int);
266e51a25f8SAlfred Perlstein static int dc_mii_readbit(struct dc_softc *);
267e51a25f8SAlfred Perlstein static void dc_mii_sync(struct dc_softc *);
268e51a25f8SAlfred Perlstein static void dc_mii_send(struct dc_softc *, u_int32_t, int);
269e51a25f8SAlfred Perlstein static int dc_mii_readreg(struct dc_softc *, struct dc_mii_frame *);
270e51a25f8SAlfred Perlstein static int dc_mii_writereg(struct dc_softc *, struct dc_mii_frame *);
271e51a25f8SAlfred Perlstein static int dc_miibus_readreg(device_t, int, int);
272e51a25f8SAlfred Perlstein static int dc_miibus_writereg(device_t, int, int, int);
273e51a25f8SAlfred Perlstein static void dc_miibus_statchg(device_t);
274e51a25f8SAlfred Perlstein static void dc_miibus_mediainit(device_t);
27596f2e892SBill Paul 
276e51a25f8SAlfred Perlstein static void dc_setcfg(struct dc_softc *, int);
2773373489bSWarner Losh static uint32_t dc_mchash_le(struct dc_softc *, const uint8_t *);
2783373489bSWarner Losh static uint32_t dc_mchash_be(const uint8_t *);
279e51a25f8SAlfred Perlstein static void dc_setfilt_21143(struct dc_softc *);
280e51a25f8SAlfred Perlstein static void dc_setfilt_asix(struct dc_softc *);
281e51a25f8SAlfred Perlstein static void dc_setfilt_admtek(struct dc_softc *);
282e51a25f8SAlfred Perlstein static void dc_setfilt_xircom(struct dc_softc *);
28396f2e892SBill Paul 
284e51a25f8SAlfred Perlstein static void dc_setfilt(struct dc_softc *);
28596f2e892SBill Paul 
286e51a25f8SAlfred Perlstein static void dc_reset(struct dc_softc *);
287e51a25f8SAlfred Perlstein static int dc_list_rx_init(struct dc_softc *);
288e51a25f8SAlfred Perlstein static int dc_list_tx_init(struct dc_softc *);
28996f2e892SBill Paul 
290abe4e865SPyun YongHyeon static int dc_read_srom(struct dc_softc *, int);
291abe4e865SPyun YongHyeon static int dc_parse_21143_srom(struct dc_softc *);
292abe4e865SPyun YongHyeon static int dc_decode_leaf_sia(struct dc_softc *, struct dc_eblock_sia *);
293abe4e865SPyun YongHyeon static int dc_decode_leaf_mii(struct dc_softc *, struct dc_eblock_mii *);
294abe4e865SPyun YongHyeon static int dc_decode_leaf_sym(struct dc_softc *, struct dc_eblock_sym *);
295e51a25f8SAlfred Perlstein static void dc_apply_fixup(struct dc_softc *, int);
29639d76ed6SPyun YongHyeon static int dc_check_multiport(struct dc_softc *);
2975c1cfac4SBill Paul 
29896f2e892SBill Paul #ifdef DC_USEIOSPACE
29996f2e892SBill Paul #define DC_RES			SYS_RES_IOPORT
30096f2e892SBill Paul #define DC_RID			DC_PCI_CFBIO
30196f2e892SBill Paul #else
30296f2e892SBill Paul #define DC_RES			SYS_RES_MEMORY
30396f2e892SBill Paul #define DC_RID			DC_PCI_CFBMA
30496f2e892SBill Paul #endif
30596f2e892SBill Paul 
30696f2e892SBill Paul static device_method_t dc_methods[] = {
30796f2e892SBill Paul 	/* Device interface */
30896f2e892SBill Paul 	DEVMETHOD(device_probe,		dc_probe),
30996f2e892SBill Paul 	DEVMETHOD(device_attach,	dc_attach),
31096f2e892SBill Paul 	DEVMETHOD(device_detach,	dc_detach),
311e8388e14SMitsuru IWASAKI 	DEVMETHOD(device_suspend,	dc_suspend),
312e8388e14SMitsuru IWASAKI 	DEVMETHOD(device_resume,	dc_resume),
31396f2e892SBill Paul 	DEVMETHOD(device_shutdown,	dc_shutdown),
31496f2e892SBill Paul 
31596f2e892SBill Paul 	/* bus interface */
31696f2e892SBill Paul 	DEVMETHOD(bus_print_child,	bus_generic_print_child),
31796f2e892SBill Paul 	DEVMETHOD(bus_driver_added,	bus_generic_driver_added),
31896f2e892SBill Paul 
31996f2e892SBill Paul 	/* MII interface */
32096f2e892SBill Paul 	DEVMETHOD(miibus_readreg,	dc_miibus_readreg),
32196f2e892SBill Paul 	DEVMETHOD(miibus_writereg,	dc_miibus_writereg),
32296f2e892SBill Paul 	DEVMETHOD(miibus_statchg,	dc_miibus_statchg),
323f43d9309SBill Paul 	DEVMETHOD(miibus_mediainit,	dc_miibus_mediainit),
32496f2e892SBill Paul 
32596f2e892SBill Paul 	{ 0, 0 }
32696f2e892SBill Paul };
32796f2e892SBill Paul 
32896f2e892SBill Paul static driver_t dc_driver = {
32996f2e892SBill Paul 	"dc",
33096f2e892SBill Paul 	dc_methods,
33196f2e892SBill Paul 	sizeof(struct dc_softc)
33296f2e892SBill Paul };
33396f2e892SBill Paul 
33496f2e892SBill Paul static devclass_t dc_devclass;
33596f2e892SBill Paul 
336f246e4a1SMatthew N. Dodd DRIVER_MODULE(dc, pci, dc_driver, dc_devclass, 0, 0);
33796f2e892SBill Paul DRIVER_MODULE(miibus, dc, miibus_driver, miibus_devclass, 0, 0);
33896f2e892SBill Paul 
33996f2e892SBill Paul #define DC_SETBIT(sc, reg, x)				\
34096f2e892SBill Paul 	CSR_WRITE_4(sc, reg, CSR_READ_4(sc, reg) | (x))
34196f2e892SBill Paul 
34296f2e892SBill Paul #define DC_CLRBIT(sc, reg, x)				\
34396f2e892SBill Paul 	CSR_WRITE_4(sc, reg, CSR_READ_4(sc, reg) & ~(x))
34496f2e892SBill Paul 
34596f2e892SBill Paul #define SIO_SET(x)	DC_SETBIT(sc, DC_SIO, (x))
34696f2e892SBill Paul #define SIO_CLR(x)	DC_CLRBIT(sc, DC_SIO, (x))
34796f2e892SBill Paul 
348e3d2833aSAlfred Perlstein static void
3490934f18aSMaxime Henrion dc_delay(struct dc_softc *sc)
35096f2e892SBill Paul {
35196f2e892SBill Paul 	int idx;
35296f2e892SBill Paul 
35396f2e892SBill Paul 	for (idx = (300 / 33) + 1; idx > 0; idx--)
35496f2e892SBill Paul 		CSR_READ_4(sc, DC_BUSCTL);
35596f2e892SBill Paul }
35696f2e892SBill Paul 
3572c876e15SPoul-Henning Kamp static void
3580934f18aSMaxime Henrion dc_eeprom_width(struct dc_softc *sc)
3593097aa70SWarner Losh {
3603097aa70SWarner Losh 	int i;
3613097aa70SWarner Losh 
3623097aa70SWarner Losh 	/* Force EEPROM to idle state. */
3633097aa70SWarner Losh 	dc_eeprom_idle(sc);
3643097aa70SWarner Losh 
3653097aa70SWarner Losh 	/* Enter EEPROM access mode. */
3663097aa70SWarner Losh 	CSR_WRITE_4(sc, DC_SIO, DC_SIO_EESEL);
3673097aa70SWarner Losh 	dc_delay(sc);
3683097aa70SWarner Losh 	DC_SETBIT(sc, DC_SIO, DC_SIO_ROMCTL_READ);
3693097aa70SWarner Losh 	dc_delay(sc);
3703097aa70SWarner Losh 	DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK);
3713097aa70SWarner Losh 	dc_delay(sc);
3723097aa70SWarner Losh 	DC_SETBIT(sc, DC_SIO, DC_SIO_EE_CS);
3733097aa70SWarner Losh 	dc_delay(sc);
3743097aa70SWarner Losh 
3753097aa70SWarner Losh 	for (i = 3; i--;) {
3763097aa70SWarner Losh 		if (6 & (1 << i))
3773097aa70SWarner Losh 			DC_SETBIT(sc, DC_SIO, DC_SIO_EE_DATAIN);
3783097aa70SWarner Losh 		else
3793097aa70SWarner Losh 			DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_DATAIN);
3803097aa70SWarner Losh 		dc_delay(sc);
3813097aa70SWarner Losh 		DC_SETBIT(sc, DC_SIO, DC_SIO_EE_CLK);
3823097aa70SWarner Losh 		dc_delay(sc);
3833097aa70SWarner Losh 		DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK);
3843097aa70SWarner Losh 		dc_delay(sc);
3853097aa70SWarner Losh 	}
3863097aa70SWarner Losh 
3873097aa70SWarner Losh 	for (i = 1; i <= 12; i++) {
3883097aa70SWarner Losh 		DC_SETBIT(sc, DC_SIO, DC_SIO_EE_CLK);
3893097aa70SWarner Losh 		dc_delay(sc);
3903097aa70SWarner Losh 		if (!(CSR_READ_4(sc, DC_SIO) & DC_SIO_EE_DATAOUT)) {
3913097aa70SWarner Losh 			DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK);
3923097aa70SWarner Losh 			dc_delay(sc);
3933097aa70SWarner Losh 			break;
3943097aa70SWarner Losh 		}
3953097aa70SWarner Losh 		DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK);
3963097aa70SWarner Losh 		dc_delay(sc);
3973097aa70SWarner Losh 	}
3983097aa70SWarner Losh 
3993097aa70SWarner Losh 	/* Turn off EEPROM access mode. */
4003097aa70SWarner Losh 	dc_eeprom_idle(sc);
4013097aa70SWarner Losh 
4023097aa70SWarner Losh 	if (i < 4 || i > 12)
4033097aa70SWarner Losh 		sc->dc_romwidth = 6;
4043097aa70SWarner Losh 	else
4053097aa70SWarner Losh 		sc->dc_romwidth = i;
4063097aa70SWarner Losh 
4073097aa70SWarner Losh 	/* Enter EEPROM access mode. */
4083097aa70SWarner Losh 	CSR_WRITE_4(sc, DC_SIO, DC_SIO_EESEL);
4093097aa70SWarner Losh 	dc_delay(sc);
4103097aa70SWarner Losh 	DC_SETBIT(sc, DC_SIO, DC_SIO_ROMCTL_READ);
4113097aa70SWarner Losh 	dc_delay(sc);
4123097aa70SWarner Losh 	DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK);
4133097aa70SWarner Losh 	dc_delay(sc);
4143097aa70SWarner Losh 	DC_SETBIT(sc, DC_SIO, DC_SIO_EE_CS);
4153097aa70SWarner Losh 	dc_delay(sc);
4163097aa70SWarner Losh 
4173097aa70SWarner Losh 	/* Turn off EEPROM access mode. */
4183097aa70SWarner Losh 	dc_eeprom_idle(sc);
4193097aa70SWarner Losh }
4203097aa70SWarner Losh 
421e3d2833aSAlfred Perlstein static void
4220934f18aSMaxime Henrion dc_eeprom_idle(struct dc_softc *sc)
42396f2e892SBill Paul {
4240934f18aSMaxime Henrion 	int i;
42596f2e892SBill Paul 
42696f2e892SBill Paul 	CSR_WRITE_4(sc, DC_SIO, DC_SIO_EESEL);
42796f2e892SBill Paul 	dc_delay(sc);
42896f2e892SBill Paul 	DC_SETBIT(sc, DC_SIO, DC_SIO_ROMCTL_READ);
42996f2e892SBill Paul 	dc_delay(sc);
43096f2e892SBill Paul 	DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK);
43196f2e892SBill Paul 	dc_delay(sc);
43296f2e892SBill Paul 	DC_SETBIT(sc, DC_SIO, DC_SIO_EE_CS);
43396f2e892SBill Paul 	dc_delay(sc);
43496f2e892SBill Paul 
43596f2e892SBill Paul 	for (i = 0; i < 25; i++) {
43696f2e892SBill Paul 		DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK);
43796f2e892SBill Paul 		dc_delay(sc);
43896f2e892SBill Paul 		DC_SETBIT(sc, DC_SIO, DC_SIO_EE_CLK);
43996f2e892SBill Paul 		dc_delay(sc);
44096f2e892SBill Paul 	}
44196f2e892SBill Paul 
44296f2e892SBill Paul 	DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK);
44396f2e892SBill Paul 	dc_delay(sc);
44496f2e892SBill Paul 	DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CS);
44596f2e892SBill Paul 	dc_delay(sc);
44696f2e892SBill Paul 	CSR_WRITE_4(sc, DC_SIO, 0x00000000);
44796f2e892SBill Paul }
44896f2e892SBill Paul 
44996f2e892SBill Paul /*
45096f2e892SBill Paul  * Send a read command and address to the EEPROM, check for ACK.
45196f2e892SBill Paul  */
452e3d2833aSAlfred Perlstein static void
4530934f18aSMaxime Henrion dc_eeprom_putbyte(struct dc_softc *sc, int addr)
45496f2e892SBill Paul {
4550934f18aSMaxime Henrion 	int d, i;
45696f2e892SBill Paul 
4573097aa70SWarner Losh 	d = DC_EECMD_READ >> 6;
4583097aa70SWarner Losh 	for (i = 3; i--; ) {
4593097aa70SWarner Losh 		if (d & (1 << i))
4603097aa70SWarner Losh 			DC_SETBIT(sc, DC_SIO, DC_SIO_EE_DATAIN);
46196f2e892SBill Paul 		else
4623097aa70SWarner Losh 			DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_DATAIN);
4633097aa70SWarner Losh 		dc_delay(sc);
4643097aa70SWarner Losh 		DC_SETBIT(sc, DC_SIO, DC_SIO_EE_CLK);
4653097aa70SWarner Losh 		dc_delay(sc);
4663097aa70SWarner Losh 		DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK);
4673097aa70SWarner Losh 		dc_delay(sc);
4683097aa70SWarner Losh 	}
46996f2e892SBill Paul 
47096f2e892SBill Paul 	/*
47196f2e892SBill Paul 	 * Feed in each bit and strobe the clock.
47296f2e892SBill Paul 	 */
4733097aa70SWarner Losh 	for (i = sc->dc_romwidth; i--;) {
4743097aa70SWarner Losh 		if (addr & (1 << i)) {
47596f2e892SBill Paul 			SIO_SET(DC_SIO_EE_DATAIN);
47696f2e892SBill Paul 		} else {
47796f2e892SBill Paul 			SIO_CLR(DC_SIO_EE_DATAIN);
47896f2e892SBill Paul 		}
47996f2e892SBill Paul 		dc_delay(sc);
48096f2e892SBill Paul 		SIO_SET(DC_SIO_EE_CLK);
48196f2e892SBill Paul 		dc_delay(sc);
48296f2e892SBill Paul 		SIO_CLR(DC_SIO_EE_CLK);
48396f2e892SBill Paul 		dc_delay(sc);
48496f2e892SBill Paul 	}
48596f2e892SBill Paul }
48696f2e892SBill Paul 
48796f2e892SBill Paul /*
48896f2e892SBill Paul  * Read a word of data stored in the EEPROM at address 'addr.'
48996f2e892SBill Paul  * The PNIC 82c168/82c169 has its own non-standard way to read
49096f2e892SBill Paul  * the EEPROM.
49196f2e892SBill Paul  */
492e3d2833aSAlfred Perlstein static void
4930934f18aSMaxime Henrion dc_eeprom_getword_pnic(struct dc_softc *sc, int addr, u_int16_t *dest)
49496f2e892SBill Paul {
4950934f18aSMaxime Henrion 	int i;
49696f2e892SBill Paul 	u_int32_t r;
49796f2e892SBill Paul 
49896f2e892SBill Paul 	CSR_WRITE_4(sc, DC_PN_SIOCTL, DC_PN_EEOPCODE_READ | addr);
49996f2e892SBill Paul 
50096f2e892SBill Paul 	for (i = 0; i < DC_TIMEOUT; i++) {
50196f2e892SBill Paul 		DELAY(1);
50296f2e892SBill Paul 		r = CSR_READ_4(sc, DC_SIO);
50396f2e892SBill Paul 		if (!(r & DC_PN_SIOCTL_BUSY)) {
50496f2e892SBill Paul 			*dest = (u_int16_t)(r & 0xFFFF);
50596f2e892SBill Paul 			return;
50696f2e892SBill Paul 		}
50796f2e892SBill Paul 	}
50896f2e892SBill Paul }
50996f2e892SBill Paul 
51096f2e892SBill Paul /*
51196f2e892SBill Paul  * Read a word of data stored in the EEPROM at address 'addr.'
512feb78939SJonathan Chen  * The Xircom X3201 has its own non-standard way to read
513feb78939SJonathan Chen  * the EEPROM, too.
514feb78939SJonathan Chen  */
515e3d2833aSAlfred Perlstein static void
5160934f18aSMaxime Henrion dc_eeprom_getword_xircom(struct dc_softc *sc, int addr, u_int16_t *dest)
517feb78939SJonathan Chen {
5180934f18aSMaxime Henrion 
519feb78939SJonathan Chen 	SIO_SET(DC_SIO_ROMSEL | DC_SIO_ROMCTL_READ);
520feb78939SJonathan Chen 
521feb78939SJonathan Chen 	addr *= 2;
522feb78939SJonathan Chen 	CSR_WRITE_4(sc, DC_ROM, addr | 0x160);
523feb78939SJonathan Chen 	*dest = (u_int16_t)CSR_READ_4(sc, DC_SIO) & 0xff;
524feb78939SJonathan Chen 	addr += 1;
525feb78939SJonathan Chen 	CSR_WRITE_4(sc, DC_ROM, addr | 0x160);
526feb78939SJonathan Chen 	*dest |= ((u_int16_t)CSR_READ_4(sc, DC_SIO) & 0xff) << 8;
527feb78939SJonathan Chen 
528feb78939SJonathan Chen 	SIO_CLR(DC_SIO_ROMSEL | DC_SIO_ROMCTL_READ);
529feb78939SJonathan Chen }
530feb78939SJonathan Chen 
531feb78939SJonathan Chen /*
532feb78939SJonathan Chen  * Read a word of data stored in the EEPROM at address 'addr.'
53396f2e892SBill Paul  */
534e3d2833aSAlfred Perlstein static void
5350934f18aSMaxime Henrion dc_eeprom_getword(struct dc_softc *sc, int addr, u_int16_t *dest)
53696f2e892SBill Paul {
5370934f18aSMaxime Henrion 	int i;
53896f2e892SBill Paul 	u_int16_t word = 0;
53996f2e892SBill Paul 
54096f2e892SBill Paul 	/* Force EEPROM to idle state. */
54196f2e892SBill Paul 	dc_eeprom_idle(sc);
54296f2e892SBill Paul 
54396f2e892SBill Paul 	/* Enter EEPROM access mode. */
54496f2e892SBill Paul 	CSR_WRITE_4(sc, DC_SIO, DC_SIO_EESEL);
54596f2e892SBill Paul 	dc_delay(sc);
54696f2e892SBill Paul 	DC_SETBIT(sc, DC_SIO,  DC_SIO_ROMCTL_READ);
54796f2e892SBill Paul 	dc_delay(sc);
54896f2e892SBill Paul 	DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK);
54996f2e892SBill Paul 	dc_delay(sc);
55096f2e892SBill Paul 	DC_SETBIT(sc, DC_SIO, DC_SIO_EE_CS);
55196f2e892SBill Paul 	dc_delay(sc);
55296f2e892SBill Paul 
55396f2e892SBill Paul 	/*
55496f2e892SBill Paul 	 * Send address of word we want to read.
55596f2e892SBill Paul 	 */
55696f2e892SBill Paul 	dc_eeprom_putbyte(sc, addr);
55796f2e892SBill Paul 
55896f2e892SBill Paul 	/*
55996f2e892SBill Paul 	 * Start reading bits from EEPROM.
56096f2e892SBill Paul 	 */
56196f2e892SBill Paul 	for (i = 0x8000; i; i >>= 1) {
56296f2e892SBill Paul 		SIO_SET(DC_SIO_EE_CLK);
56396f2e892SBill Paul 		dc_delay(sc);
56496f2e892SBill Paul 		if (CSR_READ_4(sc, DC_SIO) & DC_SIO_EE_DATAOUT)
56596f2e892SBill Paul 			word |= i;
56696f2e892SBill Paul 		dc_delay(sc);
56796f2e892SBill Paul 		SIO_CLR(DC_SIO_EE_CLK);
56896f2e892SBill Paul 		dc_delay(sc);
56996f2e892SBill Paul 	}
57096f2e892SBill Paul 
57196f2e892SBill Paul 	/* Turn off EEPROM access mode. */
57296f2e892SBill Paul 	dc_eeprom_idle(sc);
57396f2e892SBill Paul 
57496f2e892SBill Paul 	*dest = word;
57596f2e892SBill Paul }
57696f2e892SBill Paul 
57796f2e892SBill Paul /*
57896f2e892SBill Paul  * Read a sequence of words from the EEPROM.
57996f2e892SBill Paul  */
580e3d2833aSAlfred Perlstein static void
5818c7ff1f3SMaxime Henrion dc_read_eeprom(struct dc_softc *sc, caddr_t dest, int off, int cnt, int be)
58296f2e892SBill Paul {
58396f2e892SBill Paul 	int i;
58496f2e892SBill Paul 	u_int16_t word = 0, *ptr;
58596f2e892SBill Paul 
58696f2e892SBill Paul 	for (i = 0; i < cnt; i++) {
58796f2e892SBill Paul 		if (DC_IS_PNIC(sc))
58896f2e892SBill Paul 			dc_eeprom_getword_pnic(sc, off + i, &word);
589feb78939SJonathan Chen 		else if (DC_IS_XIRCOM(sc))
590feb78939SJonathan Chen 			dc_eeprom_getword_xircom(sc, off + i, &word);
59196f2e892SBill Paul 		else
59296f2e892SBill Paul 			dc_eeprom_getword(sc, off + i, &word);
59396f2e892SBill Paul 		ptr = (u_int16_t *)(dest + (i * 2));
5948c7ff1f3SMaxime Henrion 		if (be)
5958c7ff1f3SMaxime Henrion 			*ptr = be16toh(word);
59696f2e892SBill Paul 		else
5978c7ff1f3SMaxime Henrion 			*ptr = le16toh(word);
59896f2e892SBill Paul 	}
59996f2e892SBill Paul }
60096f2e892SBill Paul 
60196f2e892SBill Paul /*
60296f2e892SBill Paul  * The following two routines are taken from the Macronix 98713
60396f2e892SBill Paul  * Application Notes pp.19-21.
60496f2e892SBill Paul  */
60596f2e892SBill Paul /*
60696f2e892SBill Paul  * Write a bit to the MII bus.
60796f2e892SBill Paul  */
608e3d2833aSAlfred Perlstein static void
6090934f18aSMaxime Henrion dc_mii_writebit(struct dc_softc *sc, int bit)
61096f2e892SBill Paul {
61115578119SMarius Strobl 	uint32_t reg;
6120934f18aSMaxime Henrion 
61315578119SMarius Strobl 	reg = DC_SIO_ROMCTL_WRITE | (bit != 0 ? DC_SIO_MII_DATAOUT : 0);
61415578119SMarius Strobl 	CSR_WRITE_4(sc, DC_SIO, reg);
61515578119SMarius Strobl 	CSR_BARRIER_4(sc, DC_SIO,
61615578119SMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
61715578119SMarius Strobl 	DELAY(1);
61896f2e892SBill Paul 
61915578119SMarius Strobl 	CSR_WRITE_4(sc, DC_SIO, reg | DC_SIO_MII_CLK);
62015578119SMarius Strobl 	CSR_BARRIER_4(sc, DC_SIO,
62115578119SMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
62215578119SMarius Strobl 	DELAY(1);
62315578119SMarius Strobl 	CSR_WRITE_4(sc, DC_SIO, reg);
62415578119SMarius Strobl 	CSR_BARRIER_4(sc, DC_SIO,
62515578119SMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
62615578119SMarius Strobl 	DELAY(1);
62796f2e892SBill Paul }
62896f2e892SBill Paul 
62996f2e892SBill Paul /*
63096f2e892SBill Paul  * Read a bit from the MII bus.
63196f2e892SBill Paul  */
632e3d2833aSAlfred Perlstein static int
6330934f18aSMaxime Henrion dc_mii_readbit(struct dc_softc *sc)
63496f2e892SBill Paul {
63515578119SMarius Strobl 	uint32_t reg;
6360934f18aSMaxime Henrion 
63715578119SMarius Strobl 	reg = DC_SIO_ROMCTL_READ | DC_SIO_MII_DIR;
63815578119SMarius Strobl 	CSR_WRITE_4(sc, DC_SIO, reg);
63915578119SMarius Strobl 	CSR_BARRIER_4(sc, DC_SIO,
64015578119SMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
64115578119SMarius Strobl 	DELAY(1);
64215578119SMarius Strobl 	(void)CSR_READ_4(sc, DC_SIO);
64315578119SMarius Strobl 	CSR_WRITE_4(sc, DC_SIO, reg | DC_SIO_MII_CLK);
64415578119SMarius Strobl 	CSR_BARRIER_4(sc, DC_SIO,
64515578119SMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
64615578119SMarius Strobl 	DELAY(1);
64715578119SMarius Strobl 	CSR_WRITE_4(sc, DC_SIO, reg);
64815578119SMarius Strobl 	CSR_BARRIER_4(sc, DC_SIO,
64915578119SMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
65015578119SMarius Strobl 	DELAY(1);
65196f2e892SBill Paul 	if (CSR_READ_4(sc, DC_SIO) & DC_SIO_MII_DATAIN)
65296f2e892SBill Paul 		return (1);
65396f2e892SBill Paul 
65496f2e892SBill Paul 	return (0);
65596f2e892SBill Paul }
65696f2e892SBill Paul 
65796f2e892SBill Paul /*
65896f2e892SBill Paul  * Sync the PHYs by setting data bit and strobing the clock 32 times.
65996f2e892SBill Paul  */
660e3d2833aSAlfred Perlstein static void
6610934f18aSMaxime Henrion dc_mii_sync(struct dc_softc *sc)
66296f2e892SBill Paul {
6630934f18aSMaxime Henrion 	int i;
66496f2e892SBill Paul 
66596f2e892SBill Paul 	CSR_WRITE_4(sc, DC_SIO, DC_SIO_ROMCTL_WRITE);
66615578119SMarius Strobl 	CSR_BARRIER_4(sc, DC_SIO,
66715578119SMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
66815578119SMarius Strobl 	DELAY(1);
66996f2e892SBill Paul 
67096f2e892SBill Paul 	for (i = 0; i < 32; i++)
67196f2e892SBill Paul 		dc_mii_writebit(sc, 1);
67296f2e892SBill Paul }
67396f2e892SBill Paul 
67496f2e892SBill Paul /*
67596f2e892SBill Paul  * Clock a series of bits through the MII.
67696f2e892SBill Paul  */
677e3d2833aSAlfred Perlstein static void
6780934f18aSMaxime Henrion dc_mii_send(struct dc_softc *sc, u_int32_t bits, int cnt)
67996f2e892SBill Paul {
68096f2e892SBill Paul 	int i;
68196f2e892SBill Paul 
68296f2e892SBill Paul 	for (i = (0x1 << (cnt - 1)); i; i >>= 1)
68396f2e892SBill Paul 		dc_mii_writebit(sc, bits & i);
68496f2e892SBill Paul }
68596f2e892SBill Paul 
68696f2e892SBill Paul /*
68796f2e892SBill Paul  * Read an PHY register through the MII.
68896f2e892SBill Paul  */
689e3d2833aSAlfred Perlstein static int
6900934f18aSMaxime Henrion dc_mii_readreg(struct dc_softc *sc, struct dc_mii_frame *frame)
69196f2e892SBill Paul {
69215578119SMarius Strobl 	int i;
69396f2e892SBill Paul 
69496f2e892SBill Paul 	/*
69596f2e892SBill Paul 	 * Set up frame for RX.
69696f2e892SBill Paul 	 */
69796f2e892SBill Paul 	frame->mii_stdelim = DC_MII_STARTDELIM;
69896f2e892SBill Paul 	frame->mii_opcode = DC_MII_READOP;
69996f2e892SBill Paul 
70096f2e892SBill Paul 	/*
70196f2e892SBill Paul 	 * Sync the PHYs.
70296f2e892SBill Paul 	 */
70396f2e892SBill Paul 	dc_mii_sync(sc);
70496f2e892SBill Paul 
70596f2e892SBill Paul 	/*
70696f2e892SBill Paul 	 * Send command/address info.
70796f2e892SBill Paul 	 */
70896f2e892SBill Paul 	dc_mii_send(sc, frame->mii_stdelim, 2);
70996f2e892SBill Paul 	dc_mii_send(sc, frame->mii_opcode, 2);
71096f2e892SBill Paul 	dc_mii_send(sc, frame->mii_phyaddr, 5);
71196f2e892SBill Paul 	dc_mii_send(sc, frame->mii_regaddr, 5);
71296f2e892SBill Paul 
71396f2e892SBill Paul 	/*
71415578119SMarius Strobl 	 * Now try reading data bits.  If the turnaround failed, we still
71596f2e892SBill Paul 	 * need to clock through 16 cycles to keep the PHY(s) in sync.
71696f2e892SBill Paul 	 */
71715578119SMarius Strobl 	frame->mii_turnaround = dc_mii_readbit(sc);
71815578119SMarius Strobl 	if (frame->mii_turnaround != 0) {
7190934f18aSMaxime Henrion 		for (i = 0; i < 16; i++)
72096f2e892SBill Paul 			dc_mii_readbit(sc);
72196f2e892SBill Paul 		goto fail;
72296f2e892SBill Paul 	}
72396f2e892SBill Paul 	for (i = 0x8000; i; i >>= 1) {
72496f2e892SBill Paul 		if (dc_mii_readbit(sc))
72596f2e892SBill Paul 			frame->mii_data |= i;
72696f2e892SBill Paul 	}
72796f2e892SBill Paul 
72896f2e892SBill Paul fail:
72996f2e892SBill Paul 
73015578119SMarius Strobl 	/* Clock the idle bits. */
73196f2e892SBill Paul 	dc_mii_writebit(sc, 0);
73296f2e892SBill Paul 	dc_mii_writebit(sc, 0);
73396f2e892SBill Paul 
73415578119SMarius Strobl 	if (frame->mii_turnaround != 0)
73596f2e892SBill Paul 		return (1);
73696f2e892SBill Paul 	return (0);
73796f2e892SBill Paul }
73896f2e892SBill Paul 
73996f2e892SBill Paul /*
74096f2e892SBill Paul  * Write to a PHY register through the MII.
74196f2e892SBill Paul  */
742e3d2833aSAlfred Perlstein static int
7430934f18aSMaxime Henrion dc_mii_writereg(struct dc_softc *sc, struct dc_mii_frame *frame)
74496f2e892SBill Paul {
7450934f18aSMaxime Henrion 
74696f2e892SBill Paul 	/*
74796f2e892SBill Paul 	 * Set up frame for TX.
74896f2e892SBill Paul 	 */
74996f2e892SBill Paul 	frame->mii_stdelim = DC_MII_STARTDELIM;
75096f2e892SBill Paul 	frame->mii_opcode = DC_MII_WRITEOP;
75196f2e892SBill Paul 	frame->mii_turnaround = DC_MII_TURNAROUND;
75296f2e892SBill Paul 
75396f2e892SBill Paul 	/*
75496f2e892SBill Paul 	 * Sync the PHYs.
75596f2e892SBill Paul 	 */
75696f2e892SBill Paul 	dc_mii_sync(sc);
75796f2e892SBill Paul 
75896f2e892SBill Paul 	dc_mii_send(sc, frame->mii_stdelim, 2);
75996f2e892SBill Paul 	dc_mii_send(sc, frame->mii_opcode, 2);
76096f2e892SBill Paul 	dc_mii_send(sc, frame->mii_phyaddr, 5);
76196f2e892SBill Paul 	dc_mii_send(sc, frame->mii_regaddr, 5);
76296f2e892SBill Paul 	dc_mii_send(sc, frame->mii_turnaround, 2);
76396f2e892SBill Paul 	dc_mii_send(sc, frame->mii_data, 16);
76496f2e892SBill Paul 
76515578119SMarius Strobl 	/* Clock the idle bits. */
76696f2e892SBill Paul 	dc_mii_writebit(sc, 0);
76796f2e892SBill Paul 	dc_mii_writebit(sc, 0);
76896f2e892SBill Paul 
76996f2e892SBill Paul 	return (0);
77096f2e892SBill Paul }
77196f2e892SBill Paul 
772e3d2833aSAlfred Perlstein static int
7730934f18aSMaxime Henrion dc_miibus_readreg(device_t dev, int phy, int reg)
77496f2e892SBill Paul {
77596f2e892SBill Paul 	struct dc_mii_frame frame;
77696f2e892SBill Paul 	struct dc_softc	 *sc;
777c85c4667SBill Paul 	int i, rval, phy_reg = 0;
77896f2e892SBill Paul 
77996f2e892SBill Paul 	sc = device_get_softc(dev);
7800934f18aSMaxime Henrion 	bzero(&frame, sizeof(frame));
78196f2e892SBill Paul 
7825c1cfac4SBill Paul 	if (sc->dc_pmode != DC_PMODE_MII) {
78396f2e892SBill Paul 		if (phy == (MII_NPHY - 1)) {
78496f2e892SBill Paul 			switch (reg) {
78596f2e892SBill Paul 			case MII_BMSR:
78696f2e892SBill Paul 			/*
78796f2e892SBill Paul 			 * Fake something to make the probe
78896f2e892SBill Paul 			 * code think there's a PHY here.
78996f2e892SBill Paul 			 */
79096f2e892SBill Paul 				return (BMSR_MEDIAMASK);
79196f2e892SBill Paul 				break;
79296f2e892SBill Paul 			case MII_PHYIDR1:
79396f2e892SBill Paul 				if (DC_IS_PNIC(sc))
79496f2e892SBill Paul 					return (DC_VENDORID_LO);
79596f2e892SBill Paul 				return (DC_VENDORID_DEC);
79696f2e892SBill Paul 				break;
79796f2e892SBill Paul 			case MII_PHYIDR2:
79896f2e892SBill Paul 				if (DC_IS_PNIC(sc))
79996f2e892SBill Paul 					return (DC_DEVICEID_82C168);
80096f2e892SBill Paul 				return (DC_DEVICEID_21143);
80196f2e892SBill Paul 				break;
80296f2e892SBill Paul 			default:
80396f2e892SBill Paul 				return (0);
80496f2e892SBill Paul 				break;
80596f2e892SBill Paul 			}
80696f2e892SBill Paul 		} else
80796f2e892SBill Paul 			return (0);
80896f2e892SBill Paul 	}
80996f2e892SBill Paul 
81096f2e892SBill Paul 	if (DC_IS_PNIC(sc)) {
81196f2e892SBill Paul 		CSR_WRITE_4(sc, DC_PN_MII, DC_PN_MIIOPCODE_READ |
81296f2e892SBill Paul 		    (phy << 23) | (reg << 18));
81396f2e892SBill Paul 		for (i = 0; i < DC_TIMEOUT; i++) {
81496f2e892SBill Paul 			DELAY(1);
81596f2e892SBill Paul 			rval = CSR_READ_4(sc, DC_PN_MII);
81696f2e892SBill Paul 			if (!(rval & DC_PN_MII_BUSY)) {
81796f2e892SBill Paul 				rval &= 0xFFFF;
81896f2e892SBill Paul 				return (rval == 0xFFFF ? 0 : rval);
81996f2e892SBill Paul 			}
82096f2e892SBill Paul 		}
82196f2e892SBill Paul 		return (0);
82296f2e892SBill Paul 	}
82396f2e892SBill Paul 
82496f2e892SBill Paul 	if (DC_IS_COMET(sc)) {
82596f2e892SBill Paul 		switch (reg) {
82696f2e892SBill Paul 		case MII_BMCR:
82796f2e892SBill Paul 			phy_reg = DC_AL_BMCR;
82896f2e892SBill Paul 			break;
82996f2e892SBill Paul 		case MII_BMSR:
83096f2e892SBill Paul 			phy_reg = DC_AL_BMSR;
83196f2e892SBill Paul 			break;
83296f2e892SBill Paul 		case MII_PHYIDR1:
83396f2e892SBill Paul 			phy_reg = DC_AL_VENID;
83496f2e892SBill Paul 			break;
83596f2e892SBill Paul 		case MII_PHYIDR2:
83696f2e892SBill Paul 			phy_reg = DC_AL_DEVID;
83796f2e892SBill Paul 			break;
83896f2e892SBill Paul 		case MII_ANAR:
83996f2e892SBill Paul 			phy_reg = DC_AL_ANAR;
84096f2e892SBill Paul 			break;
84196f2e892SBill Paul 		case MII_ANLPAR:
84296f2e892SBill Paul 			phy_reg = DC_AL_LPAR;
84396f2e892SBill Paul 			break;
84496f2e892SBill Paul 		case MII_ANER:
84596f2e892SBill Paul 			phy_reg = DC_AL_ANER;
84696f2e892SBill Paul 			break;
84796f2e892SBill Paul 		default:
84822f6205dSJohn Baldwin 			device_printf(dev, "phy_read: bad phy register %x\n",
84922f6205dSJohn Baldwin 			    reg);
85096f2e892SBill Paul 			return (0);
85196f2e892SBill Paul 			break;
85296f2e892SBill Paul 		}
85396f2e892SBill Paul 
85496f2e892SBill Paul 		rval = CSR_READ_4(sc, phy_reg) & 0x0000FFFF;
85596f2e892SBill Paul 
85696f2e892SBill Paul 		if (rval == 0xFFFF)
85796f2e892SBill Paul 			return (0);
85896f2e892SBill Paul 		return (rval);
85996f2e892SBill Paul 	}
86096f2e892SBill Paul 
86196f2e892SBill Paul 	frame.mii_phyaddr = phy;
86296f2e892SBill Paul 	frame.mii_regaddr = reg;
863419146d9SBill Paul 	if (sc->dc_type == DC_TYPE_98713) {
864f43d9309SBill Paul 		phy_reg = CSR_READ_4(sc, DC_NETCFG);
865f43d9309SBill Paul 		CSR_WRITE_4(sc, DC_NETCFG, phy_reg & ~DC_NETCFG_PORTSEL);
866419146d9SBill Paul 	}
86796f2e892SBill Paul 	dc_mii_readreg(sc, &frame);
868419146d9SBill Paul 	if (sc->dc_type == DC_TYPE_98713)
869f43d9309SBill Paul 		CSR_WRITE_4(sc, DC_NETCFG, phy_reg);
87096f2e892SBill Paul 
87196f2e892SBill Paul 	return (frame.mii_data);
87296f2e892SBill Paul }
87396f2e892SBill Paul 
874e3d2833aSAlfred Perlstein static int
8750934f18aSMaxime Henrion dc_miibus_writereg(device_t dev, int phy, int reg, int data)
87696f2e892SBill Paul {
87796f2e892SBill Paul 	struct dc_softc *sc;
87896f2e892SBill Paul 	struct dc_mii_frame frame;
879c85c4667SBill Paul 	int i, phy_reg = 0;
88096f2e892SBill Paul 
88196f2e892SBill Paul 	sc = device_get_softc(dev);
8820934f18aSMaxime Henrion 	bzero(&frame, sizeof(frame));
88396f2e892SBill Paul 
88496f2e892SBill Paul 	if (DC_IS_PNIC(sc)) {
88596f2e892SBill Paul 		CSR_WRITE_4(sc, DC_PN_MII, DC_PN_MIIOPCODE_WRITE |
88696f2e892SBill Paul 		    (phy << 23) | (reg << 10) | data);
88796f2e892SBill Paul 		for (i = 0; i < DC_TIMEOUT; i++) {
88896f2e892SBill Paul 			if (!(CSR_READ_4(sc, DC_PN_MII) & DC_PN_MII_BUSY))
88996f2e892SBill Paul 				break;
89096f2e892SBill Paul 		}
89196f2e892SBill Paul 		return (0);
89296f2e892SBill Paul 	}
89396f2e892SBill Paul 
89496f2e892SBill Paul 	if (DC_IS_COMET(sc)) {
89596f2e892SBill Paul 		switch (reg) {
89696f2e892SBill Paul 		case MII_BMCR:
89796f2e892SBill Paul 			phy_reg = DC_AL_BMCR;
89896f2e892SBill Paul 			break;
89996f2e892SBill Paul 		case MII_BMSR:
90096f2e892SBill Paul 			phy_reg = DC_AL_BMSR;
90196f2e892SBill Paul 			break;
90296f2e892SBill Paul 		case MII_PHYIDR1:
90396f2e892SBill Paul 			phy_reg = DC_AL_VENID;
90496f2e892SBill Paul 			break;
90596f2e892SBill Paul 		case MII_PHYIDR2:
90696f2e892SBill Paul 			phy_reg = DC_AL_DEVID;
90796f2e892SBill Paul 			break;
90896f2e892SBill Paul 		case MII_ANAR:
90996f2e892SBill Paul 			phy_reg = DC_AL_ANAR;
91096f2e892SBill Paul 			break;
91196f2e892SBill Paul 		case MII_ANLPAR:
91296f2e892SBill Paul 			phy_reg = DC_AL_LPAR;
91396f2e892SBill Paul 			break;
91496f2e892SBill Paul 		case MII_ANER:
91596f2e892SBill Paul 			phy_reg = DC_AL_ANER;
91696f2e892SBill Paul 			break;
91796f2e892SBill Paul 		default:
91822f6205dSJohn Baldwin 			device_printf(dev, "phy_write: bad phy register %x\n",
91922f6205dSJohn Baldwin 			    reg);
92096f2e892SBill Paul 			return (0);
92196f2e892SBill Paul 			break;
92296f2e892SBill Paul 		}
92396f2e892SBill Paul 
92496f2e892SBill Paul 		CSR_WRITE_4(sc, phy_reg, data);
92596f2e892SBill Paul 		return (0);
92696f2e892SBill Paul 	}
92796f2e892SBill Paul 
92896f2e892SBill Paul 	frame.mii_phyaddr = phy;
92996f2e892SBill Paul 	frame.mii_regaddr = reg;
93096f2e892SBill Paul 	frame.mii_data = data;
93196f2e892SBill Paul 
932419146d9SBill Paul 	if (sc->dc_type == DC_TYPE_98713) {
933f43d9309SBill Paul 		phy_reg = CSR_READ_4(sc, DC_NETCFG);
934f43d9309SBill Paul 		CSR_WRITE_4(sc, DC_NETCFG, phy_reg & ~DC_NETCFG_PORTSEL);
935419146d9SBill Paul 	}
93696f2e892SBill Paul 	dc_mii_writereg(sc, &frame);
937419146d9SBill Paul 	if (sc->dc_type == DC_TYPE_98713)
938f43d9309SBill Paul 		CSR_WRITE_4(sc, DC_NETCFG, phy_reg);
93996f2e892SBill Paul 
94096f2e892SBill Paul 	return (0);
94196f2e892SBill Paul }
94296f2e892SBill Paul 
943e3d2833aSAlfred Perlstein static void
9440934f18aSMaxime Henrion dc_miibus_statchg(device_t dev)
94596f2e892SBill Paul {
94696f2e892SBill Paul 	struct dc_softc *sc;
947d314ebf5SPyun YongHyeon 	struct ifnet *ifp;
94896f2e892SBill Paul 	struct mii_data *mii;
949f43d9309SBill Paul 	struct ifmedia *ifm;
95096f2e892SBill Paul 
95196f2e892SBill Paul 	sc = device_get_softc(dev);
9525c1cfac4SBill Paul 
95396f2e892SBill Paul 	mii = device_get_softc(sc->dc_miibus);
954d314ebf5SPyun YongHyeon 	ifp = sc->dc_ifp;
955d314ebf5SPyun YongHyeon 	if (mii == NULL || ifp == NULL ||
956d314ebf5SPyun YongHyeon 	    (ifp->if_drv_flags & IFF_DRV_RUNNING) == 0)
957d314ebf5SPyun YongHyeon 		return;
958d314ebf5SPyun YongHyeon 
959f43d9309SBill Paul 	ifm = &mii->mii_media;
960f43d9309SBill Paul 	if (DC_IS_DAVICOM(sc) &&
96145521525SPoul-Henning Kamp 	    IFM_SUBTYPE(ifm->ifm_media) == IFM_HPNA_1) {
962f43d9309SBill Paul 		dc_setcfg(sc, ifm->ifm_media);
963f43d9309SBill Paul 		sc->dc_if_media = ifm->ifm_media;
964d314ebf5SPyun YongHyeon 		return;
965f43d9309SBill Paul 	}
966d314ebf5SPyun YongHyeon 
967d314ebf5SPyun YongHyeon 	sc->dc_link = 0;
968d314ebf5SPyun YongHyeon 	if ((mii->mii_media_status & (IFM_ACTIVE | IFM_AVALID)) ==
969d314ebf5SPyun YongHyeon 	    (IFM_ACTIVE | IFM_AVALID)) {
970d314ebf5SPyun YongHyeon 		switch (IFM_SUBTYPE(mii->mii_media_active)) {
971d314ebf5SPyun YongHyeon 		case IFM_10_T:
972d314ebf5SPyun YongHyeon 		case IFM_100_TX:
973d314ebf5SPyun YongHyeon 			sc->dc_link = 1;
974d314ebf5SPyun YongHyeon 			break;
975d314ebf5SPyun YongHyeon 		default:
976d314ebf5SPyun YongHyeon 			break;
977d314ebf5SPyun YongHyeon 		}
978d314ebf5SPyun YongHyeon 	}
979d314ebf5SPyun YongHyeon 	if (sc->dc_link == 0)
980d314ebf5SPyun YongHyeon 		return;
981d314ebf5SPyun YongHyeon 
982d314ebf5SPyun YongHyeon 	sc->dc_if_media = mii->mii_media_active;
983d314ebf5SPyun YongHyeon 	if (DC_IS_ADMTEK(sc))
984d314ebf5SPyun YongHyeon 		return;
985d314ebf5SPyun YongHyeon 	dc_setcfg(sc, mii->mii_media_active);
986f43d9309SBill Paul }
987f43d9309SBill Paul 
988f43d9309SBill Paul /*
989f43d9309SBill Paul  * Special support for DM9102A cards with HomePNA PHYs. Note:
990f43d9309SBill Paul  * with the Davicom DM9102A/DM9801 eval board that I have, it seems
991f43d9309SBill Paul  * to be impossible to talk to the management interface of the DM9801
992f43d9309SBill Paul  * PHY (its MDIO pin is not connected to anything). Consequently,
993f43d9309SBill Paul  * the driver has to just 'know' about the additional mode and deal
994f43d9309SBill Paul  * with it itself. *sigh*
995f43d9309SBill Paul  */
996e3d2833aSAlfred Perlstein static void
9970934f18aSMaxime Henrion dc_miibus_mediainit(device_t dev)
998f43d9309SBill Paul {
999f43d9309SBill Paul 	struct dc_softc *sc;
1000f43d9309SBill Paul 	struct mii_data *mii;
1001f43d9309SBill Paul 	struct ifmedia *ifm;
1002f43d9309SBill Paul 	int rev;
1003f43d9309SBill Paul 
10041e2e70b1SJohn Baldwin 	rev = pci_get_revid(dev);
1005f43d9309SBill Paul 
1006f43d9309SBill Paul 	sc = device_get_softc(dev);
1007f43d9309SBill Paul 	mii = device_get_softc(sc->dc_miibus);
1008f43d9309SBill Paul 	ifm = &mii->mii_media;
1009f43d9309SBill Paul 
1010f43d9309SBill Paul 	if (DC_IS_DAVICOM(sc) && rev >= DC_REVISION_DM9102A)
101145521525SPoul-Henning Kamp 		ifmedia_add(ifm, IFM_ETHER | IFM_HPNA_1, 0, NULL);
101296f2e892SBill Paul }
101396f2e892SBill Paul 
101479d11e09SBill Paul #define DC_BITS_512	9
101579d11e09SBill Paul #define DC_BITS_128	7
101679d11e09SBill Paul #define DC_BITS_64	6
101796f2e892SBill Paul 
10183373489bSWarner Losh static uint32_t
10193373489bSWarner Losh dc_mchash_le(struct dc_softc *sc, const uint8_t *addr)
102096f2e892SBill Paul {
10213373489bSWarner Losh 	uint32_t crc;
102296f2e892SBill Paul 
102396f2e892SBill Paul 	/* Compute CRC for the address value. */
10240e939c0cSChristian Weisgerber 	crc = ether_crc32_le(addr, ETHER_ADDR_LEN);
102596f2e892SBill Paul 
102679d11e09SBill Paul 	/*
102779d11e09SBill Paul 	 * The hash table on the PNIC II and the MX98715AEC-C/D/E
102879d11e09SBill Paul 	 * chips is only 128 bits wide.
102979d11e09SBill Paul 	 */
103079d11e09SBill Paul 	if (sc->dc_flags & DC_128BIT_HASH)
103179d11e09SBill Paul 		return (crc & ((1 << DC_BITS_128) - 1));
103296f2e892SBill Paul 
103379d11e09SBill Paul 	/* The hash table on the MX98715BEC is only 64 bits wide. */
103479d11e09SBill Paul 	if (sc->dc_flags & DC_64BIT_HASH)
103579d11e09SBill Paul 		return (crc & ((1 << DC_BITS_64) - 1));
103679d11e09SBill Paul 
1037feb78939SJonathan Chen 	/* Xircom's hash filtering table is different (read: weird) */
1038feb78939SJonathan Chen 	/* Xircom uses the LEAST significant bits */
1039feb78939SJonathan Chen 	if (DC_IS_XIRCOM(sc)) {
1040feb78939SJonathan Chen 		if ((crc & 0x180) == 0x180)
10410934f18aSMaxime Henrion 			return ((crc & 0x0F) + (crc & 0x70) * 3 + (14 << 4));
1042feb78939SJonathan Chen 		else
10430934f18aSMaxime Henrion 			return ((crc & 0x1F) + ((crc >> 1) & 0xF0) * 3 +
10440934f18aSMaxime Henrion 			    (12 << 4));
1045feb78939SJonathan Chen 	}
1046feb78939SJonathan Chen 
104779d11e09SBill Paul 	return (crc & ((1 << DC_BITS_512) - 1));
104896f2e892SBill Paul }
104996f2e892SBill Paul 
105096f2e892SBill Paul /*
105196f2e892SBill Paul  * Calculate CRC of a multicast group address, return the lower 6 bits.
105296f2e892SBill Paul  */
10533373489bSWarner Losh static uint32_t
10543373489bSWarner Losh dc_mchash_be(const uint8_t *addr)
105596f2e892SBill Paul {
10560e939c0cSChristian Weisgerber 	uint32_t crc;
105796f2e892SBill Paul 
105896f2e892SBill Paul 	/* Compute CRC for the address value. */
10590e939c0cSChristian Weisgerber 	crc = ether_crc32_be(addr, ETHER_ADDR_LEN);
106096f2e892SBill Paul 
10610934f18aSMaxime Henrion 	/* Return the filter bit position. */
106296f2e892SBill Paul 	return ((crc >> 26) & 0x0000003F);
106396f2e892SBill Paul }
106496f2e892SBill Paul 
106596f2e892SBill Paul /*
106696f2e892SBill Paul  * 21143-style RX filter setup routine. Filter programming is done by
106796f2e892SBill Paul  * downloading a special setup frame into the TX engine. 21143, Macronix,
106896f2e892SBill Paul  * PNIC, PNIC II and Davicom chips are programmed this way.
106996f2e892SBill Paul  *
107096f2e892SBill Paul  * We always program the chip using 'hash perfect' mode, i.e. one perfect
107196f2e892SBill Paul  * address (our node address) and a 512-bit hash filter for multicast
107296f2e892SBill Paul  * frames. We also sneak the broadcast address into the hash filter since
107396f2e892SBill Paul  * we need that too.
107496f2e892SBill Paul  */
10752c876e15SPoul-Henning Kamp static void
10760934f18aSMaxime Henrion dc_setfilt_21143(struct dc_softc *sc)
107796f2e892SBill Paul {
10788df1ebe9SMarcel Moolenaar 	uint16_t eaddr[(ETHER_ADDR_LEN+1)/2];
107996f2e892SBill Paul 	struct dc_desc *sframe;
108096f2e892SBill Paul 	u_int32_t h, *sp;
108196f2e892SBill Paul 	struct ifmultiaddr *ifma;
108296f2e892SBill Paul 	struct ifnet *ifp;
108396f2e892SBill Paul 	int i;
108496f2e892SBill Paul 
1085fc74a9f9SBrooks Davis 	ifp = sc->dc_ifp;
108696f2e892SBill Paul 
108796f2e892SBill Paul 	i = sc->dc_cdata.dc_tx_prod;
108896f2e892SBill Paul 	DC_INC(sc->dc_cdata.dc_tx_prod, DC_TX_LIST_CNT);
108996f2e892SBill Paul 	sc->dc_cdata.dc_tx_cnt++;
109096f2e892SBill Paul 	sframe = &sc->dc_ldata->dc_tx_list[i];
109156e5e7aeSMaxime Henrion 	sp = sc->dc_cdata.dc_sbuf;
10920934f18aSMaxime Henrion 	bzero(sp, DC_SFRAME_LEN);
109396f2e892SBill Paul 
1094af4358c7SMaxime Henrion 	sframe->dc_data = htole32(sc->dc_saddr);
1095af4358c7SMaxime Henrion 	sframe->dc_ctl = htole32(DC_SFRAME_LEN | DC_TXCTL_SETUP |
1096af4358c7SMaxime Henrion 	    DC_TXCTL_TLINK | DC_FILTER_HASHPERF | DC_TXCTL_FINT);
109796f2e892SBill Paul 
109856e5e7aeSMaxime Henrion 	sc->dc_cdata.dc_tx_chain[i] = (struct mbuf *)sc->dc_cdata.dc_sbuf;
109996f2e892SBill Paul 
110096f2e892SBill Paul 	/* If we want promiscuous mode, set the allframes bit. */
110196f2e892SBill Paul 	if (ifp->if_flags & IFF_PROMISC)
110296f2e892SBill Paul 		DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_PROMISC);
110396f2e892SBill Paul 	else
110496f2e892SBill Paul 		DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_RX_PROMISC);
110596f2e892SBill Paul 
110696f2e892SBill Paul 	if (ifp->if_flags & IFF_ALLMULTI)
110796f2e892SBill Paul 		DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_ALLMULTI);
110896f2e892SBill Paul 	else
110996f2e892SBill Paul 		DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_RX_ALLMULTI);
111096f2e892SBill Paul 
1111eb956cd0SRobert Watson 	if_maddr_rlock(ifp);
11126817526dSPoul-Henning Kamp 	TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
111396f2e892SBill Paul 		if (ifma->ifma_addr->sa_family != AF_LINK)
111496f2e892SBill Paul 			continue;
1115aa825502SDavid E. O'Brien 		h = dc_mchash_le(sc,
111696f2e892SBill Paul 		    LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
1117af4358c7SMaxime Henrion 		sp[h >> 4] |= htole32(1 << (h & 0xF));
111896f2e892SBill Paul 	}
1119eb956cd0SRobert Watson 	if_maddr_runlock(ifp);
112096f2e892SBill Paul 
112196f2e892SBill Paul 	if (ifp->if_flags & IFF_BROADCAST) {
1122aa825502SDavid E. O'Brien 		h = dc_mchash_le(sc, ifp->if_broadcastaddr);
1123af4358c7SMaxime Henrion 		sp[h >> 4] |= htole32(1 << (h & 0xF));
112496f2e892SBill Paul 	}
112596f2e892SBill Paul 
11268df1ebe9SMarcel Moolenaar 	/* Set our MAC address. */
11278df1ebe9SMarcel Moolenaar 	bcopy(IF_LLADDR(sc->dc_ifp), eaddr, ETHER_ADDR_LEN);
11288df1ebe9SMarcel Moolenaar 	sp[39] = DC_SP_MAC(eaddr[0]);
11298df1ebe9SMarcel Moolenaar 	sp[40] = DC_SP_MAC(eaddr[1]);
11308df1ebe9SMarcel Moolenaar 	sp[41] = DC_SP_MAC(eaddr[2]);
113196f2e892SBill Paul 
1132af4358c7SMaxime Henrion 	sframe->dc_status = htole32(DC_TXSTAT_OWN);
113396f2e892SBill Paul 	CSR_WRITE_4(sc, DC_TXSTART, 0xFFFFFFFF);
113496f2e892SBill Paul 
113596f2e892SBill Paul 	/*
113696f2e892SBill Paul 	 * The PNIC takes an exceedingly long time to process its
113796f2e892SBill Paul 	 * setup frame; wait 10ms after posting the setup frame
113896f2e892SBill Paul 	 * before proceeding, just so it has time to swallow its
113996f2e892SBill Paul 	 * medicine.
114096f2e892SBill Paul 	 */
114196f2e892SBill Paul 	DELAY(10000);
114296f2e892SBill Paul 
1143b1d16143SMarius Strobl 	sc->dc_wdog_timer = 5;
114496f2e892SBill Paul }
114596f2e892SBill Paul 
11462c876e15SPoul-Henning Kamp static void
11470934f18aSMaxime Henrion dc_setfilt_admtek(struct dc_softc *sc)
114896f2e892SBill Paul {
11492e3d4b79SPyun YongHyeon 	uint8_t eaddr[ETHER_ADDR_LEN];
115096f2e892SBill Paul 	struct ifnet *ifp;
11510934f18aSMaxime Henrion 	struct ifmultiaddr *ifma;
115296f2e892SBill Paul 	int h = 0;
115396f2e892SBill Paul 	u_int32_t hashes[2] = { 0, 0 };
115496f2e892SBill Paul 
1155fc74a9f9SBrooks Davis 	ifp = sc->dc_ifp;
115696f2e892SBill Paul 
11570934f18aSMaxime Henrion 	/* Init our MAC address. */
11588df1ebe9SMarcel Moolenaar 	bcopy(IF_LLADDR(sc->dc_ifp), eaddr, ETHER_ADDR_LEN);
11592e3d4b79SPyun YongHyeon 	CSR_WRITE_4(sc, DC_AL_PAR0, eaddr[3] << 24 | eaddr[2] << 16 |
11602e3d4b79SPyun YongHyeon 	    eaddr[1] << 8 | eaddr[0]);
11612e3d4b79SPyun YongHyeon 	CSR_WRITE_4(sc, DC_AL_PAR1, eaddr[5] << 8 | eaddr[4]);
116296f2e892SBill Paul 
116396f2e892SBill Paul 	/* If we want promiscuous mode, set the allframes bit. */
116496f2e892SBill Paul 	if (ifp->if_flags & IFF_PROMISC)
116596f2e892SBill Paul 		DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_PROMISC);
116696f2e892SBill Paul 	else
116796f2e892SBill Paul 		DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_RX_PROMISC);
116896f2e892SBill Paul 
116996f2e892SBill Paul 	if (ifp->if_flags & IFF_ALLMULTI)
117096f2e892SBill Paul 		DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_ALLMULTI);
117196f2e892SBill Paul 	else
117296f2e892SBill Paul 		DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_RX_ALLMULTI);
117396f2e892SBill Paul 
11740934f18aSMaxime Henrion 	/* First, zot all the existing hash bits. */
117596f2e892SBill Paul 	CSR_WRITE_4(sc, DC_AL_MAR0, 0);
117696f2e892SBill Paul 	CSR_WRITE_4(sc, DC_AL_MAR1, 0);
117796f2e892SBill Paul 
117896f2e892SBill Paul 	/*
117996f2e892SBill Paul 	 * If we're already in promisc or allmulti mode, we
118096f2e892SBill Paul 	 * don't have to bother programming the multicast filter.
118196f2e892SBill Paul 	 */
118296f2e892SBill Paul 	if (ifp->if_flags & (IFF_PROMISC | IFF_ALLMULTI))
118396f2e892SBill Paul 		return;
118496f2e892SBill Paul 
11850934f18aSMaxime Henrion 	/* Now program new ones. */
1186eb956cd0SRobert Watson 	if_maddr_rlock(ifp);
11876817526dSPoul-Henning Kamp 	TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
118896f2e892SBill Paul 		if (ifma->ifma_addr->sa_family != AF_LINK)
118996f2e892SBill Paul 			continue;
1190acc1bcccSMartin Blapp 		if (DC_IS_CENTAUR(sc))
1191aa825502SDavid E. O'Brien 			h = dc_mchash_le(sc,
1192aa825502SDavid E. O'Brien 			    LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
1193acc1bcccSMartin Blapp 		else
1194aa825502SDavid E. O'Brien 			h = dc_mchash_be(
1195aa825502SDavid E. O'Brien 			    LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
119696f2e892SBill Paul 		if (h < 32)
119796f2e892SBill Paul 			hashes[0] |= (1 << h);
119896f2e892SBill Paul 		else
119996f2e892SBill Paul 			hashes[1] |= (1 << (h - 32));
120096f2e892SBill Paul 	}
1201eb956cd0SRobert Watson 	if_maddr_runlock(ifp);
120296f2e892SBill Paul 
120396f2e892SBill Paul 	CSR_WRITE_4(sc, DC_AL_MAR0, hashes[0]);
120496f2e892SBill Paul 	CSR_WRITE_4(sc, DC_AL_MAR1, hashes[1]);
120596f2e892SBill Paul }
120696f2e892SBill Paul 
12072c876e15SPoul-Henning Kamp static void
12080934f18aSMaxime Henrion dc_setfilt_asix(struct dc_softc *sc)
120996f2e892SBill Paul {
12108df1ebe9SMarcel Moolenaar 	uint32_t eaddr[(ETHER_ADDR_LEN+3)/4];
121196f2e892SBill Paul 	struct ifnet *ifp;
12120934f18aSMaxime Henrion 	struct ifmultiaddr *ifma;
121396f2e892SBill Paul 	int h = 0;
121496f2e892SBill Paul 	u_int32_t hashes[2] = { 0, 0 };
121596f2e892SBill Paul 
1216fc74a9f9SBrooks Davis 	ifp = sc->dc_ifp;
121796f2e892SBill Paul 
12188df1ebe9SMarcel Moolenaar 	/* Init our MAC address. */
12198df1ebe9SMarcel Moolenaar 	bcopy(IF_LLADDR(sc->dc_ifp), eaddr, ETHER_ADDR_LEN);
122096f2e892SBill Paul 	CSR_WRITE_4(sc, DC_AX_FILTIDX, DC_AX_FILTIDX_PAR0);
12218df1ebe9SMarcel Moolenaar 	CSR_WRITE_4(sc, DC_AX_FILTDATA, eaddr[0]);
122296f2e892SBill Paul 	CSR_WRITE_4(sc, DC_AX_FILTIDX, DC_AX_FILTIDX_PAR1);
12238df1ebe9SMarcel Moolenaar 	CSR_WRITE_4(sc, DC_AX_FILTDATA, eaddr[1]);
122496f2e892SBill Paul 
122596f2e892SBill Paul 	/* If we want promiscuous mode, set the allframes bit. */
122696f2e892SBill Paul 	if (ifp->if_flags & IFF_PROMISC)
122796f2e892SBill Paul 		DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_PROMISC);
122896f2e892SBill Paul 	else
122996f2e892SBill Paul 		DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_RX_PROMISC);
123096f2e892SBill Paul 
123196f2e892SBill Paul 	if (ifp->if_flags & IFF_ALLMULTI)
123296f2e892SBill Paul 		DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_ALLMULTI);
123396f2e892SBill Paul 	else
123496f2e892SBill Paul 		DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_RX_ALLMULTI);
123596f2e892SBill Paul 
123696f2e892SBill Paul 	/*
123796f2e892SBill Paul 	 * The ASIX chip has a special bit to enable reception
123896f2e892SBill Paul 	 * of broadcast frames.
123996f2e892SBill Paul 	 */
124096f2e892SBill Paul 	if (ifp->if_flags & IFF_BROADCAST)
124196f2e892SBill Paul 		DC_SETBIT(sc, DC_NETCFG, DC_AX_NETCFG_RX_BROAD);
124296f2e892SBill Paul 	else
124396f2e892SBill Paul 		DC_CLRBIT(sc, DC_NETCFG, DC_AX_NETCFG_RX_BROAD);
124496f2e892SBill Paul 
124596f2e892SBill Paul 	/* first, zot all the existing hash bits */
124696f2e892SBill Paul 	CSR_WRITE_4(sc, DC_AX_FILTIDX, DC_AX_FILTIDX_MAR0);
124796f2e892SBill Paul 	CSR_WRITE_4(sc, DC_AX_FILTDATA, 0);
124896f2e892SBill Paul 	CSR_WRITE_4(sc, DC_AX_FILTIDX, DC_AX_FILTIDX_MAR1);
124996f2e892SBill Paul 	CSR_WRITE_4(sc, DC_AX_FILTDATA, 0);
125096f2e892SBill Paul 
125196f2e892SBill Paul 	/*
125296f2e892SBill Paul 	 * If we're already in promisc or allmulti mode, we
125396f2e892SBill Paul 	 * don't have to bother programming the multicast filter.
125496f2e892SBill Paul 	 */
125596f2e892SBill Paul 	if (ifp->if_flags & (IFF_PROMISC | IFF_ALLMULTI))
125696f2e892SBill Paul 		return;
125796f2e892SBill Paul 
125896f2e892SBill Paul 	/* now program new ones */
1259eb956cd0SRobert Watson 	if_maddr_rlock(ifp);
12606817526dSPoul-Henning Kamp 	TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
126196f2e892SBill Paul 		if (ifma->ifma_addr->sa_family != AF_LINK)
126296f2e892SBill Paul 			continue;
1263aa825502SDavid E. O'Brien 		h = dc_mchash_be(LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
126496f2e892SBill Paul 		if (h < 32)
126596f2e892SBill Paul 			hashes[0] |= (1 << h);
126696f2e892SBill Paul 		else
126796f2e892SBill Paul 			hashes[1] |= (1 << (h - 32));
126896f2e892SBill Paul 	}
1269eb956cd0SRobert Watson 	if_maddr_runlock(ifp);
127096f2e892SBill Paul 
127196f2e892SBill Paul 	CSR_WRITE_4(sc, DC_AX_FILTIDX, DC_AX_FILTIDX_MAR0);
127296f2e892SBill Paul 	CSR_WRITE_4(sc, DC_AX_FILTDATA, hashes[0]);
127396f2e892SBill Paul 	CSR_WRITE_4(sc, DC_AX_FILTIDX, DC_AX_FILTIDX_MAR1);
127496f2e892SBill Paul 	CSR_WRITE_4(sc, DC_AX_FILTDATA, hashes[1]);
127596f2e892SBill Paul }
127696f2e892SBill Paul 
12772c876e15SPoul-Henning Kamp static void
12780934f18aSMaxime Henrion dc_setfilt_xircom(struct dc_softc *sc)
1279feb78939SJonathan Chen {
12808df1ebe9SMarcel Moolenaar 	uint16_t eaddr[(ETHER_ADDR_LEN+1)/2];
12810934f18aSMaxime Henrion 	struct ifnet *ifp;
12820934f18aSMaxime Henrion 	struct ifmultiaddr *ifma;
1283feb78939SJonathan Chen 	struct dc_desc *sframe;
1284feb78939SJonathan Chen 	u_int32_t h, *sp;
1285feb78939SJonathan Chen 	int i;
1286feb78939SJonathan Chen 
1287fc74a9f9SBrooks Davis 	ifp = sc->dc_ifp;
1288feb78939SJonathan Chen 	DC_CLRBIT(sc, DC_NETCFG, (DC_NETCFG_TX_ON | DC_NETCFG_RX_ON));
1289feb78939SJonathan Chen 
1290feb78939SJonathan Chen 	i = sc->dc_cdata.dc_tx_prod;
1291feb78939SJonathan Chen 	DC_INC(sc->dc_cdata.dc_tx_prod, DC_TX_LIST_CNT);
1292feb78939SJonathan Chen 	sc->dc_cdata.dc_tx_cnt++;
1293feb78939SJonathan Chen 	sframe = &sc->dc_ldata->dc_tx_list[i];
129456e5e7aeSMaxime Henrion 	sp = sc->dc_cdata.dc_sbuf;
12950934f18aSMaxime Henrion 	bzero(sp, DC_SFRAME_LEN);
1296feb78939SJonathan Chen 
1297af4358c7SMaxime Henrion 	sframe->dc_data = htole32(sc->dc_saddr);
1298af4358c7SMaxime Henrion 	sframe->dc_ctl = htole32(DC_SFRAME_LEN | DC_TXCTL_SETUP |
1299af4358c7SMaxime Henrion 	    DC_TXCTL_TLINK | DC_FILTER_HASHPERF | DC_TXCTL_FINT);
1300feb78939SJonathan Chen 
130156e5e7aeSMaxime Henrion 	sc->dc_cdata.dc_tx_chain[i] = (struct mbuf *)sc->dc_cdata.dc_sbuf;
1302feb78939SJonathan Chen 
1303feb78939SJonathan Chen 	/* If we want promiscuous mode, set the allframes bit. */
1304feb78939SJonathan Chen 	if (ifp->if_flags & IFF_PROMISC)
1305feb78939SJonathan Chen 		DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_PROMISC);
1306feb78939SJonathan Chen 	else
1307feb78939SJonathan Chen 		DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_RX_PROMISC);
1308feb78939SJonathan Chen 
1309feb78939SJonathan Chen 	if (ifp->if_flags & IFF_ALLMULTI)
1310feb78939SJonathan Chen 		DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_ALLMULTI);
1311feb78939SJonathan Chen 	else
1312feb78939SJonathan Chen 		DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_RX_ALLMULTI);
1313feb78939SJonathan Chen 
1314eb956cd0SRobert Watson 	if_maddr_rlock(ifp);
13156817526dSPoul-Henning Kamp 	TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
1316feb78939SJonathan Chen 		if (ifma->ifma_addr->sa_family != AF_LINK)
1317feb78939SJonathan Chen 			continue;
1318aa825502SDavid E. O'Brien 		h = dc_mchash_le(sc,
13191d5e5310SBill Paul 		    LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
1320af4358c7SMaxime Henrion 		sp[h >> 4] |= htole32(1 << (h & 0xF));
1321feb78939SJonathan Chen 	}
1322eb956cd0SRobert Watson 	if_maddr_runlock(ifp);
1323feb78939SJonathan Chen 
1324feb78939SJonathan Chen 	if (ifp->if_flags & IFF_BROADCAST) {
1325aa825502SDavid E. O'Brien 		h = dc_mchash_le(sc, ifp->if_broadcastaddr);
1326af4358c7SMaxime Henrion 		sp[h >> 4] |= htole32(1 << (h & 0xF));
1327feb78939SJonathan Chen 	}
1328feb78939SJonathan Chen 
13298df1ebe9SMarcel Moolenaar 	/* Set our MAC address. */
13308df1ebe9SMarcel Moolenaar 	bcopy(IF_LLADDR(sc->dc_ifp), eaddr, ETHER_ADDR_LEN);
13318df1ebe9SMarcel Moolenaar 	sp[0] = DC_SP_MAC(eaddr[0]);
13328df1ebe9SMarcel Moolenaar 	sp[1] = DC_SP_MAC(eaddr[1]);
13338df1ebe9SMarcel Moolenaar 	sp[2] = DC_SP_MAC(eaddr[2]);
1334feb78939SJonathan Chen 
1335feb78939SJonathan Chen 	DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_TX_ON);
1336feb78939SJonathan Chen 	DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_ON);
1337af4358c7SMaxime Henrion 	sframe->dc_status = htole32(DC_TXSTAT_OWN);
1338feb78939SJonathan Chen 	CSR_WRITE_4(sc, DC_TXSTART, 0xFFFFFFFF);
1339feb78939SJonathan Chen 
1340feb78939SJonathan Chen 	/*
13410934f18aSMaxime Henrion 	 * Wait some time...
1342feb78939SJonathan Chen 	 */
1343feb78939SJonathan Chen 	DELAY(1000);
1344feb78939SJonathan Chen 
1345b1d16143SMarius Strobl 	sc->dc_wdog_timer = 5;
1346feb78939SJonathan Chen }
1347feb78939SJonathan Chen 
1348e3d2833aSAlfred Perlstein static void
13490934f18aSMaxime Henrion dc_setfilt(struct dc_softc *sc)
135096f2e892SBill Paul {
13510934f18aSMaxime Henrion 
135296f2e892SBill Paul 	if (DC_IS_INTEL(sc) || DC_IS_MACRONIX(sc) || DC_IS_PNIC(sc) ||
13531af8bec7SBill Paul 	    DC_IS_PNICII(sc) || DC_IS_DAVICOM(sc) || DC_IS_CONEXANT(sc))
135496f2e892SBill Paul 		dc_setfilt_21143(sc);
135596f2e892SBill Paul 
135696f2e892SBill Paul 	if (DC_IS_ASIX(sc))
135796f2e892SBill Paul 		dc_setfilt_asix(sc);
135896f2e892SBill Paul 
135996f2e892SBill Paul 	if (DC_IS_ADMTEK(sc))
136096f2e892SBill Paul 		dc_setfilt_admtek(sc);
136196f2e892SBill Paul 
1362feb78939SJonathan Chen 	if (DC_IS_XIRCOM(sc))
1363feb78939SJonathan Chen 		dc_setfilt_xircom(sc);
136496f2e892SBill Paul }
136596f2e892SBill Paul 
136696f2e892SBill Paul /*
13670934f18aSMaxime Henrion  * In order to fiddle with the 'full-duplex' and '100Mbps' bits in
13680934f18aSMaxime Henrion  * the netconfig register, we first have to put the transmit and/or
13690934f18aSMaxime Henrion  * receive logic in the idle state.
137096f2e892SBill Paul  */
1371e3d2833aSAlfred Perlstein static void
13720934f18aSMaxime Henrion dc_setcfg(struct dc_softc *sc, int media)
137396f2e892SBill Paul {
13740934f18aSMaxime Henrion 	int i, restart = 0, watchdogreg;
137596f2e892SBill Paul 	u_int32_t isr;
137696f2e892SBill Paul 
137796f2e892SBill Paul 	if (IFM_SUBTYPE(media) == IFM_NONE)
137896f2e892SBill Paul 		return;
137996f2e892SBill Paul 
138096f2e892SBill Paul 	if (CSR_READ_4(sc, DC_NETCFG) & (DC_NETCFG_TX_ON | DC_NETCFG_RX_ON)) {
138196f2e892SBill Paul 		restart = 1;
138296f2e892SBill Paul 		DC_CLRBIT(sc, DC_NETCFG, (DC_NETCFG_TX_ON | DC_NETCFG_RX_ON));
138396f2e892SBill Paul 
138496f2e892SBill Paul 		for (i = 0; i < DC_TIMEOUT; i++) {
138596f2e892SBill Paul 			isr = CSR_READ_4(sc, DC_ISR);
1386d467c136SBill Paul 			if (isr & DC_ISR_TX_IDLE &&
1387351267c1SMartin Blapp 			    ((isr & DC_ISR_RX_STATE) == DC_RXSTATE_STOPPED ||
1388351267c1SMartin Blapp 			    (isr & DC_ISR_RX_STATE) == DC_RXSTATE_WAIT))
138996f2e892SBill Paul 				break;
1390d467c136SBill Paul 			DELAY(10);
139196f2e892SBill Paul 		}
139296f2e892SBill Paul 
1393432120f2SMarius Strobl 		if (i == DC_TIMEOUT) {
1394432120f2SMarius Strobl 			if (!(isr & DC_ISR_TX_IDLE) && !DC_IS_ASIX(sc))
13956b9f5c94SGleb Smirnoff 				device_printf(sc->dc_dev,
1396432120f2SMarius Strobl 				    "%s: failed to force tx to idle state\n",
1397432120f2SMarius Strobl 				    __func__);
1398432120f2SMarius Strobl 			if (!((isr & DC_ISR_RX_STATE) == DC_RXSTATE_STOPPED ||
1399432120f2SMarius Strobl 			    (isr & DC_ISR_RX_STATE) == DC_RXSTATE_WAIT) &&
1400d0d67284SMarius Strobl 			    !DC_HAS_BROKEN_RXSTATE(sc))
1401432120f2SMarius Strobl 				device_printf(sc->dc_dev,
1402432120f2SMarius Strobl 				    "%s: failed to force rx to idle state\n",
1403432120f2SMarius Strobl 				    __func__);
1404432120f2SMarius Strobl 		}
140596f2e892SBill Paul 	}
140696f2e892SBill Paul 
140796f2e892SBill Paul 	if (IFM_SUBTYPE(media) == IFM_100_TX) {
1408042c8f6eSBill Paul 		DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_SPEEDSEL);
1409042c8f6eSBill Paul 		DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_HEARTBEAT);
141096f2e892SBill Paul 		if (sc->dc_pmode == DC_PMODE_MII) {
1411bf645417SBill Paul 			if (DC_IS_INTEL(sc)) {
14120934f18aSMaxime Henrion 			/* There's a write enable bit here that reads as 1. */
14138273d5f8SBill Paul 				watchdogreg = CSR_READ_4(sc, DC_WATCHDOG);
14148273d5f8SBill Paul 				watchdogreg &= ~DC_WDOG_CTLWREN;
14158273d5f8SBill Paul 				watchdogreg |= DC_WDOG_JABBERDIS;
14164c2efe27SBill Paul 				CSR_WRITE_4(sc, DC_WATCHDOG, watchdogreg);
1417bf645417SBill Paul 			} else {
1418bf645417SBill Paul 				DC_SETBIT(sc, DC_WATCHDOG, DC_WDOG_JABBERDIS);
1419bf645417SBill Paul 			}
142096f2e892SBill Paul 			DC_CLRBIT(sc, DC_NETCFG, (DC_NETCFG_PCS |
142196f2e892SBill Paul 			    DC_NETCFG_PORTSEL | DC_NETCFG_SCRAMBLER));
142296f2e892SBill Paul 			if (sc->dc_type == DC_TYPE_98713)
142396f2e892SBill Paul 				DC_SETBIT(sc, DC_NETCFG, (DC_NETCFG_PCS |
142496f2e892SBill Paul 				    DC_NETCFG_SCRAMBLER));
142588d739dcSBill Paul 			if (!DC_IS_DAVICOM(sc))
142696f2e892SBill Paul 				DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_PORTSEL);
142796f2e892SBill Paul 			DC_CLRBIT(sc, DC_10BTCTRL, 0xFFFF);
142896f2e892SBill Paul 		} else {
142996f2e892SBill Paul 			if (DC_IS_PNIC(sc)) {
143096f2e892SBill Paul 				DC_PN_GPIO_SETBIT(sc, DC_PN_GPIO_SPEEDSEL);
143196f2e892SBill Paul 				DC_PN_GPIO_SETBIT(sc, DC_PN_GPIO_100TX_LOOP);
143296f2e892SBill Paul 				DC_SETBIT(sc, DC_PN_NWAY, DC_PN_NWAY_SPEEDSEL);
143396f2e892SBill Paul 			}
1434318b02fdSBill Paul 			DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_PORTSEL);
1435318b02fdSBill Paul 			DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_PCS);
1436318b02fdSBill Paul 			DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_SCRAMBLER);
143796f2e892SBill Paul 		}
143896f2e892SBill Paul 	}
143996f2e892SBill Paul 
144096f2e892SBill Paul 	if (IFM_SUBTYPE(media) == IFM_10_T) {
1441042c8f6eSBill Paul 		DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_SPEEDSEL);
1442042c8f6eSBill Paul 		DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_HEARTBEAT);
144396f2e892SBill Paul 		if (sc->dc_pmode == DC_PMODE_MII) {
14440934f18aSMaxime Henrion 			/* There's a write enable bit here that reads as 1. */
14454c2efe27SBill Paul 			if (DC_IS_INTEL(sc)) {
14468273d5f8SBill Paul 				watchdogreg = CSR_READ_4(sc, DC_WATCHDOG);
14478273d5f8SBill Paul 				watchdogreg &= ~DC_WDOG_CTLWREN;
14488273d5f8SBill Paul 				watchdogreg |= DC_WDOG_JABBERDIS;
14498273d5f8SBill Paul 				CSR_WRITE_4(sc, DC_WATCHDOG, watchdogreg);
14504c2efe27SBill Paul 			} else {
14514c2efe27SBill Paul 				DC_SETBIT(sc, DC_WATCHDOG, DC_WDOG_JABBERDIS);
14524c2efe27SBill Paul 			}
145396f2e892SBill Paul 			DC_CLRBIT(sc, DC_NETCFG, (DC_NETCFG_PCS |
145496f2e892SBill Paul 			    DC_NETCFG_PORTSEL | DC_NETCFG_SCRAMBLER));
145596f2e892SBill Paul 			if (sc->dc_type == DC_TYPE_98713)
145696f2e892SBill Paul 				DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_PCS);
145788d739dcSBill Paul 			if (!DC_IS_DAVICOM(sc))
145896f2e892SBill Paul 				DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_PORTSEL);
145996f2e892SBill Paul 			DC_CLRBIT(sc, DC_10BTCTRL, 0xFFFF);
146096f2e892SBill Paul 		} else {
146196f2e892SBill Paul 			if (DC_IS_PNIC(sc)) {
146296f2e892SBill Paul 				DC_PN_GPIO_CLRBIT(sc, DC_PN_GPIO_SPEEDSEL);
146396f2e892SBill Paul 				DC_PN_GPIO_SETBIT(sc, DC_PN_GPIO_100TX_LOOP);
146496f2e892SBill Paul 				DC_CLRBIT(sc, DC_PN_NWAY, DC_PN_NWAY_SPEEDSEL);
146596f2e892SBill Paul 			}
146696f2e892SBill Paul 			DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_PORTSEL);
1467318b02fdSBill Paul 			DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_PCS);
146896f2e892SBill Paul 			DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_SCRAMBLER);
14695c1cfac4SBill Paul 			if (DC_IS_INTEL(sc)) {
14705c1cfac4SBill Paul 				DC_CLRBIT(sc, DC_SIARESET, DC_SIA_RESET);
14715c1cfac4SBill Paul 				DC_CLRBIT(sc, DC_10BTCTRL, 0xFFFF);
14725c1cfac4SBill Paul 				if ((media & IFM_GMASK) == IFM_FDX)
14735c1cfac4SBill Paul 					DC_SETBIT(sc, DC_10BTCTRL, 0x7F3D);
14745c1cfac4SBill Paul 				else
14755c1cfac4SBill Paul 					DC_SETBIT(sc, DC_10BTCTRL, 0x7F3F);
14765c1cfac4SBill Paul 				DC_SETBIT(sc, DC_SIARESET, DC_SIA_RESET);
14775c1cfac4SBill Paul 				DC_CLRBIT(sc, DC_10BTCTRL,
14785c1cfac4SBill Paul 				    DC_TCTL_AUTONEGENBL);
14795c1cfac4SBill Paul 				DELAY(20000);
14805c1cfac4SBill Paul 			}
148196f2e892SBill Paul 		}
148296f2e892SBill Paul 	}
148396f2e892SBill Paul 
1484f43d9309SBill Paul 	/*
1485f43d9309SBill Paul 	 * If this is a Davicom DM9102A card with a DM9801 HomePNA
1486f43d9309SBill Paul 	 * PHY and we want HomePNA mode, set the portsel bit to turn
1487f43d9309SBill Paul 	 * on the external MII port.
1488f43d9309SBill Paul 	 */
1489f43d9309SBill Paul 	if (DC_IS_DAVICOM(sc)) {
149045521525SPoul-Henning Kamp 		if (IFM_SUBTYPE(media) == IFM_HPNA_1) {
1491f43d9309SBill Paul 			DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_PORTSEL);
1492f43d9309SBill Paul 			sc->dc_link = 1;
1493f43d9309SBill Paul 		} else {
1494f43d9309SBill Paul 			DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_PORTSEL);
1495f43d9309SBill Paul 		}
1496f43d9309SBill Paul 	}
1497f43d9309SBill Paul 
149896f2e892SBill Paul 	if ((media & IFM_GMASK) == IFM_FDX) {
149996f2e892SBill Paul 		DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_FULLDUPLEX);
150096f2e892SBill Paul 		if (sc->dc_pmode == DC_PMODE_SYM && DC_IS_PNIC(sc))
150196f2e892SBill Paul 			DC_SETBIT(sc, DC_PN_NWAY, DC_PN_NWAY_DUPLEX);
150296f2e892SBill Paul 	} else {
150396f2e892SBill Paul 		DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_FULLDUPLEX);
150496f2e892SBill Paul 		if (sc->dc_pmode == DC_PMODE_SYM && DC_IS_PNIC(sc))
150596f2e892SBill Paul 			DC_CLRBIT(sc, DC_PN_NWAY, DC_PN_NWAY_DUPLEX);
150696f2e892SBill Paul 	}
150796f2e892SBill Paul 
150896f2e892SBill Paul 	if (restart)
150996f2e892SBill Paul 		DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_TX_ON | DC_NETCFG_RX_ON);
151096f2e892SBill Paul }
151196f2e892SBill Paul 
1512e3d2833aSAlfred Perlstein static void
15130934f18aSMaxime Henrion dc_reset(struct dc_softc *sc)
151496f2e892SBill Paul {
15150934f18aSMaxime Henrion 	int i;
151696f2e892SBill Paul 
151796f2e892SBill Paul 	DC_SETBIT(sc, DC_BUSCTL, DC_BUSCTL_RESET);
151896f2e892SBill Paul 
151996f2e892SBill Paul 	for (i = 0; i < DC_TIMEOUT; i++) {
152096f2e892SBill Paul 		DELAY(10);
152196f2e892SBill Paul 		if (!(CSR_READ_4(sc, DC_BUSCTL) & DC_BUSCTL_RESET))
152296f2e892SBill Paul 			break;
152396f2e892SBill Paul 	}
152496f2e892SBill Paul 
15251af8bec7SBill Paul 	if (DC_IS_ASIX(sc) || DC_IS_ADMTEK(sc) || DC_IS_CONEXANT(sc) ||
15261d5e5310SBill Paul 	    DC_IS_XIRCOM(sc) || DC_IS_INTEL(sc)) {
152796f2e892SBill Paul 		DELAY(10000);
152896f2e892SBill Paul 		DC_CLRBIT(sc, DC_BUSCTL, DC_BUSCTL_RESET);
152996f2e892SBill Paul 		i = 0;
153096f2e892SBill Paul 	}
153196f2e892SBill Paul 
153296f2e892SBill Paul 	if (i == DC_TIMEOUT)
15336b9f5c94SGleb Smirnoff 		device_printf(sc->dc_dev, "reset never completed!\n");
153496f2e892SBill Paul 
153596f2e892SBill Paul 	/* Wait a little while for the chip to get its brains in order. */
153696f2e892SBill Paul 	DELAY(1000);
153796f2e892SBill Paul 
153896f2e892SBill Paul 	CSR_WRITE_4(sc, DC_IMR, 0x00000000);
153996f2e892SBill Paul 	CSR_WRITE_4(sc, DC_BUSCTL, 0x00000000);
154096f2e892SBill Paul 	CSR_WRITE_4(sc, DC_NETCFG, 0x00000000);
154196f2e892SBill Paul 
154291cc2adbSBill Paul 	/*
154391cc2adbSBill Paul 	 * Bring the SIA out of reset. In some cases, it looks
154491cc2adbSBill Paul 	 * like failing to unreset the SIA soon enough gets it
154591cc2adbSBill Paul 	 * into a state where it will never come out of reset
154691cc2adbSBill Paul 	 * until we reset the whole chip again.
154791cc2adbSBill Paul 	 */
15485c1cfac4SBill Paul 	if (DC_IS_INTEL(sc)) {
154991cc2adbSBill Paul 		DC_SETBIT(sc, DC_SIARESET, DC_SIA_RESET);
1550d314ebf5SPyun YongHyeon 		CSR_WRITE_4(sc, DC_10BTCTRL, 0xFFFFFFFF);
15515c1cfac4SBill Paul 		CSR_WRITE_4(sc, DC_WATCHDOG, 0);
15525c1cfac4SBill Paul 	}
155396f2e892SBill Paul }
155496f2e892SBill Paul 
1555ebc284ccSMarius Strobl static const struct dc_type *
15560934f18aSMaxime Henrion dc_devtype(device_t dev)
155796f2e892SBill Paul {
1558ebc284ccSMarius Strobl 	const struct dc_type *t;
15591e2e70b1SJohn Baldwin 	u_int32_t devid;
15601e2e70b1SJohn Baldwin 	u_int8_t rev;
156196f2e892SBill Paul 
156296f2e892SBill Paul 	t = dc_devs;
15631e2e70b1SJohn Baldwin 	devid = pci_get_devid(dev);
15641e2e70b1SJohn Baldwin 	rev = pci_get_revid(dev);
156596f2e892SBill Paul 
156696f2e892SBill Paul 	while (t->dc_name != NULL) {
15671e2e70b1SJohn Baldwin 		if (devid == t->dc_devid && rev >= t->dc_minrev)
156896f2e892SBill Paul 			return (t);
156996f2e892SBill Paul 		t++;
157096f2e892SBill Paul 	}
157196f2e892SBill Paul 
157296f2e892SBill Paul 	return (NULL);
157396f2e892SBill Paul }
157496f2e892SBill Paul 
157596f2e892SBill Paul /*
157696f2e892SBill Paul  * Probe for a 21143 or clone chip. Check the PCI vendor and device
157796f2e892SBill Paul  * IDs against our list and return a device name if we find a match.
157896f2e892SBill Paul  * We do a little bit of extra work to identify the exact type of
157996f2e892SBill Paul  * chip. The MX98713 and MX98713A have the same PCI vendor/device ID,
158096f2e892SBill Paul  * but different revision IDs. The same is true for 98715/98715A
158196f2e892SBill Paul  * chips and the 98725, as well as the ASIX and ADMtek chips. In some
158296f2e892SBill Paul  * cases, the exact chip revision affects driver behavior.
158396f2e892SBill Paul  */
1584e3d2833aSAlfred Perlstein static int
15850934f18aSMaxime Henrion dc_probe(device_t dev)
158696f2e892SBill Paul {
1587ebc284ccSMarius Strobl 	const struct dc_type *t;
158896f2e892SBill Paul 
158996f2e892SBill Paul 	t = dc_devtype(dev);
159096f2e892SBill Paul 
159196f2e892SBill Paul 	if (t != NULL) {
159296f2e892SBill Paul 		device_set_desc(dev, t->dc_name);
1593d701c913SWarner Losh 		return (BUS_PROBE_DEFAULT);
159496f2e892SBill Paul 	}
159596f2e892SBill Paul 
159696f2e892SBill Paul 	return (ENXIO);
159796f2e892SBill Paul }
159896f2e892SBill Paul 
1599e3d2833aSAlfred Perlstein static void
16000934f18aSMaxime Henrion dc_apply_fixup(struct dc_softc *sc, int media)
16015c1cfac4SBill Paul {
16025c1cfac4SBill Paul 	struct dc_mediainfo *m;
16035c1cfac4SBill Paul 	u_int8_t *p;
16045c1cfac4SBill Paul 	int i;
16055d801891SBill Paul 	u_int32_t reg;
16065c1cfac4SBill Paul 
16075c1cfac4SBill Paul 	m = sc->dc_mi;
16085c1cfac4SBill Paul 
16095c1cfac4SBill Paul 	while (m != NULL) {
16105c1cfac4SBill Paul 		if (m->dc_media == media)
16115c1cfac4SBill Paul 			break;
16125c1cfac4SBill Paul 		m = m->dc_next;
16135c1cfac4SBill Paul 	}
16145c1cfac4SBill Paul 
16155c1cfac4SBill Paul 	if (m == NULL)
16165c1cfac4SBill Paul 		return;
16175c1cfac4SBill Paul 
16185c1cfac4SBill Paul 	for (i = 0, p = m->dc_reset_ptr; i < m->dc_reset_len; i++, p += 2) {
16195c1cfac4SBill Paul 		reg = (p[0] | (p[1] << 8)) << 16;
16205c1cfac4SBill Paul 		CSR_WRITE_4(sc, DC_WATCHDOG, reg);
16215c1cfac4SBill Paul 	}
16225c1cfac4SBill Paul 
16235c1cfac4SBill Paul 	for (i = 0, p = m->dc_gp_ptr; i < m->dc_gp_len; i++, p += 2) {
16245c1cfac4SBill Paul 		reg = (p[0] | (p[1] << 8)) << 16;
16255c1cfac4SBill Paul 		CSR_WRITE_4(sc, DC_WATCHDOG, reg);
16265c1cfac4SBill Paul 	}
16275c1cfac4SBill Paul }
16285c1cfac4SBill Paul 
1629abe4e865SPyun YongHyeon static int
16300934f18aSMaxime Henrion dc_decode_leaf_sia(struct dc_softc *sc, struct dc_eblock_sia *l)
16315c1cfac4SBill Paul {
16325c1cfac4SBill Paul 	struct dc_mediainfo *m;
16335c1cfac4SBill Paul 
16340934f18aSMaxime Henrion 	m = malloc(sizeof(struct dc_mediainfo), M_DEVBUF, M_NOWAIT | M_ZERO);
1635abe4e865SPyun YongHyeon 	if (m == NULL) {
1636abe4e865SPyun YongHyeon 		device_printf(sc->dc_dev, "Could not allocate mediainfo\n");
1637abe4e865SPyun YongHyeon 		return (ENOMEM);
1638abe4e865SPyun YongHyeon 	}
163987f4fa15SMartin Blapp 	switch (l->dc_sia_code & ~DC_SIA_CODE_EXT) {
164087f4fa15SMartin Blapp 	case DC_SIA_CODE_10BT:
16415c1cfac4SBill Paul 		m->dc_media = IFM_10_T;
164287f4fa15SMartin Blapp 		break;
164387f4fa15SMartin Blapp 	case DC_SIA_CODE_10BT_FDX:
16445c1cfac4SBill Paul 		m->dc_media = IFM_10_T | IFM_FDX;
164587f4fa15SMartin Blapp 		break;
164687f4fa15SMartin Blapp 	case DC_SIA_CODE_10B2:
16475c1cfac4SBill Paul 		m->dc_media = IFM_10_2;
164887f4fa15SMartin Blapp 		break;
164987f4fa15SMartin Blapp 	case DC_SIA_CODE_10B5:
16505c1cfac4SBill Paul 		m->dc_media = IFM_10_5;
165187f4fa15SMartin Blapp 		break;
165287f4fa15SMartin Blapp 	default:
165387f4fa15SMartin Blapp 		break;
165487f4fa15SMartin Blapp 	}
16555c1cfac4SBill Paul 
165687f4fa15SMartin Blapp 	/*
165787f4fa15SMartin Blapp 	 * We need to ignore CSR13, CSR14, CSR15 for SIA mode.
165887f4fa15SMartin Blapp 	 * Things apparently already work for cards that do
165987f4fa15SMartin Blapp 	 * supply Media Specific Data.
166087f4fa15SMartin Blapp 	 */
166187f4fa15SMartin Blapp 	if (l->dc_sia_code & DC_SIA_CODE_EXT) {
16625c1cfac4SBill Paul 		m->dc_gp_len = 2;
166387f4fa15SMartin Blapp 		m->dc_gp_ptr =
166487f4fa15SMartin Blapp 		(u_int8_t *)&l->dc_un.dc_sia_ext.dc_sia_gpio_ctl;
166587f4fa15SMartin Blapp 	} else {
166687f4fa15SMartin Blapp 		m->dc_gp_len = 2;
166787f4fa15SMartin Blapp 		m->dc_gp_ptr =
166887f4fa15SMartin Blapp 		(u_int8_t *)&l->dc_un.dc_sia_noext.dc_sia_gpio_ctl;
166987f4fa15SMartin Blapp 	}
16705c1cfac4SBill Paul 
16715c1cfac4SBill Paul 	m->dc_next = sc->dc_mi;
16725c1cfac4SBill Paul 	sc->dc_mi = m;
16735c1cfac4SBill Paul 
16745c1cfac4SBill Paul 	sc->dc_pmode = DC_PMODE_SIA;
1675abe4e865SPyun YongHyeon 	return (0);
16765c1cfac4SBill Paul }
16775c1cfac4SBill Paul 
1678abe4e865SPyun YongHyeon static int
16790934f18aSMaxime Henrion dc_decode_leaf_sym(struct dc_softc *sc, struct dc_eblock_sym *l)
16805c1cfac4SBill Paul {
16815c1cfac4SBill Paul 	struct dc_mediainfo *m;
16825c1cfac4SBill Paul 
16830934f18aSMaxime Henrion 	m = malloc(sizeof(struct dc_mediainfo), M_DEVBUF, M_NOWAIT | M_ZERO);
1684abe4e865SPyun YongHyeon 	if (m == NULL) {
1685abe4e865SPyun YongHyeon 		device_printf(sc->dc_dev, "Could not allocate mediainfo\n");
1686abe4e865SPyun YongHyeon 		return (ENOMEM);
1687abe4e865SPyun YongHyeon 	}
16885c1cfac4SBill Paul 	if (l->dc_sym_code == DC_SYM_CODE_100BT)
16895c1cfac4SBill Paul 		m->dc_media = IFM_100_TX;
16905c1cfac4SBill Paul 
16915c1cfac4SBill Paul 	if (l->dc_sym_code == DC_SYM_CODE_100BT_FDX)
16925c1cfac4SBill Paul 		m->dc_media = IFM_100_TX | IFM_FDX;
16935c1cfac4SBill Paul 
16945c1cfac4SBill Paul 	m->dc_gp_len = 2;
16955c1cfac4SBill Paul 	m->dc_gp_ptr = (u_int8_t *)&l->dc_sym_gpio_ctl;
16965c1cfac4SBill Paul 
16975c1cfac4SBill Paul 	m->dc_next = sc->dc_mi;
16985c1cfac4SBill Paul 	sc->dc_mi = m;
16995c1cfac4SBill Paul 
17005c1cfac4SBill Paul 	sc->dc_pmode = DC_PMODE_SYM;
1701abe4e865SPyun YongHyeon 	return (0);
17025c1cfac4SBill Paul }
17035c1cfac4SBill Paul 
1704abe4e865SPyun YongHyeon static int
17050934f18aSMaxime Henrion dc_decode_leaf_mii(struct dc_softc *sc, struct dc_eblock_mii *l)
17065c1cfac4SBill Paul {
17075c1cfac4SBill Paul 	struct dc_mediainfo *m;
17080934f18aSMaxime Henrion 	u_int8_t *p;
17095c1cfac4SBill Paul 
17100934f18aSMaxime Henrion 	m = malloc(sizeof(struct dc_mediainfo), M_DEVBUF, M_NOWAIT | M_ZERO);
1711abe4e865SPyun YongHyeon 	if (m == NULL) {
1712abe4e865SPyun YongHyeon 		device_printf(sc->dc_dev, "Could not allocate mediainfo\n");
1713abe4e865SPyun YongHyeon 		return (ENOMEM);
1714abe4e865SPyun YongHyeon 	}
17155c1cfac4SBill Paul 	/* We abuse IFM_AUTO to represent MII. */
17165c1cfac4SBill Paul 	m->dc_media = IFM_AUTO;
17175c1cfac4SBill Paul 	m->dc_gp_len = l->dc_gpr_len;
17185c1cfac4SBill Paul 
17195c1cfac4SBill Paul 	p = (u_int8_t *)l;
17205c1cfac4SBill Paul 	p += sizeof(struct dc_eblock_mii);
17215c1cfac4SBill Paul 	m->dc_gp_ptr = p;
17225c1cfac4SBill Paul 	p += 2 * l->dc_gpr_len;
17235c1cfac4SBill Paul 	m->dc_reset_len = *p;
17245c1cfac4SBill Paul 	p++;
17255c1cfac4SBill Paul 	m->dc_reset_ptr = p;
17265c1cfac4SBill Paul 
17275c1cfac4SBill Paul 	m->dc_next = sc->dc_mi;
17285c1cfac4SBill Paul 	sc->dc_mi = m;
1729abe4e865SPyun YongHyeon 	return (0);
17305c1cfac4SBill Paul }
17315c1cfac4SBill Paul 
1732abe4e865SPyun YongHyeon static int
17330934f18aSMaxime Henrion dc_read_srom(struct dc_softc *sc, int bits)
17343097aa70SWarner Losh {
17353097aa70SWarner Losh 	int size;
17363097aa70SWarner Losh 
1737abe4e865SPyun YongHyeon 	size = DC_ROM_SIZE(bits);
17383097aa70SWarner Losh 	sc->dc_srom = malloc(size, M_DEVBUF, M_NOWAIT);
1739abe4e865SPyun YongHyeon 	if (sc->dc_srom == NULL) {
1740abe4e865SPyun YongHyeon 		device_printf(sc->dc_dev, "Could not allocate SROM buffer\n");
1741abe4e865SPyun YongHyeon 		return (ENOMEM);
1742abe4e865SPyun YongHyeon 	}
17433097aa70SWarner Losh 	dc_read_eeprom(sc, (caddr_t)sc->dc_srom, 0, (size / 2), 0);
1744abe4e865SPyun YongHyeon 	return (0);
17453097aa70SWarner Losh }
17463097aa70SWarner Losh 
1747abe4e865SPyun YongHyeon static int
17480934f18aSMaxime Henrion dc_parse_21143_srom(struct dc_softc *sc)
17495c1cfac4SBill Paul {
17505c1cfac4SBill Paul 	struct dc_leaf_hdr *lhdr;
17515c1cfac4SBill Paul 	struct dc_eblock_hdr *hdr;
1752abe4e865SPyun YongHyeon 	int error, have_mii, i, loff;
17535c1cfac4SBill Paul 	char *ptr;
17545c1cfac4SBill Paul 
1755f956e0b3SMartin Blapp 	have_mii = 0;
17565c1cfac4SBill Paul 	loff = sc->dc_srom[27];
17575c1cfac4SBill Paul 	lhdr = (struct dc_leaf_hdr *)&(sc->dc_srom[loff]);
17585c1cfac4SBill Paul 
17595c1cfac4SBill Paul 	ptr = (char *)lhdr;
17605c1cfac4SBill Paul 	ptr += sizeof(struct dc_leaf_hdr) - 1;
1761f956e0b3SMartin Blapp 	/*
1762f956e0b3SMartin Blapp 	 * Look if we got a MII media block.
1763f956e0b3SMartin Blapp 	 */
1764f956e0b3SMartin Blapp 	for (i = 0; i < lhdr->dc_mcnt; i++) {
1765f956e0b3SMartin Blapp 		hdr = (struct dc_eblock_hdr *)ptr;
1766f956e0b3SMartin Blapp 		if (hdr->dc_type == DC_EBLOCK_MII)
1767f956e0b3SMartin Blapp 		    have_mii++;
1768f956e0b3SMartin Blapp 
1769f956e0b3SMartin Blapp 		ptr += (hdr->dc_len & 0x7F);
1770f956e0b3SMartin Blapp 		ptr++;
1771f956e0b3SMartin Blapp 	}
1772f956e0b3SMartin Blapp 
1773f956e0b3SMartin Blapp 	/*
1774f956e0b3SMartin Blapp 	 * Do the same thing again. Only use SIA and SYM media
1775f956e0b3SMartin Blapp 	 * blocks if no MII media block is available.
1776f956e0b3SMartin Blapp 	 */
1777f956e0b3SMartin Blapp 	ptr = (char *)lhdr;
1778f956e0b3SMartin Blapp 	ptr += sizeof(struct dc_leaf_hdr) - 1;
1779abe4e865SPyun YongHyeon 	error = 0;
17805c1cfac4SBill Paul 	for (i = 0; i < lhdr->dc_mcnt; i++) {
17815c1cfac4SBill Paul 		hdr = (struct dc_eblock_hdr *)ptr;
17825c1cfac4SBill Paul 		switch (hdr->dc_type) {
17835c1cfac4SBill Paul 		case DC_EBLOCK_MII:
1784abe4e865SPyun YongHyeon 			error = dc_decode_leaf_mii(sc, (struct dc_eblock_mii *)hdr);
17855c1cfac4SBill Paul 			break;
17865c1cfac4SBill Paul 		case DC_EBLOCK_SIA:
1787f956e0b3SMartin Blapp 			if (! have_mii)
1788abe4e865SPyun YongHyeon 				error = dc_decode_leaf_sia(sc,
1789f956e0b3SMartin Blapp 				    (struct dc_eblock_sia *)hdr);
17905c1cfac4SBill Paul 			break;
17915c1cfac4SBill Paul 		case DC_EBLOCK_SYM:
1792f956e0b3SMartin Blapp 			if (! have_mii)
1793abe4e865SPyun YongHyeon 				error = dc_decode_leaf_sym(sc,
1794f956e0b3SMartin Blapp 				    (struct dc_eblock_sym *)hdr);
17955c1cfac4SBill Paul 			break;
17965c1cfac4SBill Paul 		default:
17975c1cfac4SBill Paul 			/* Don't care. Yet. */
17985c1cfac4SBill Paul 			break;
17995c1cfac4SBill Paul 		}
18005c1cfac4SBill Paul 		ptr += (hdr->dc_len & 0x7F);
18015c1cfac4SBill Paul 		ptr++;
18025c1cfac4SBill Paul 	}
1803abe4e865SPyun YongHyeon 	return (error);
18045c1cfac4SBill Paul }
18055c1cfac4SBill Paul 
180656e5e7aeSMaxime Henrion static void
180756e5e7aeSMaxime Henrion dc_dma_map_addr(void *arg, bus_dma_segment_t *segs, int nseg, int error)
180856e5e7aeSMaxime Henrion {
180956e5e7aeSMaxime Henrion 	u_int32_t *paddr;
181056e5e7aeSMaxime Henrion 
1811ebc284ccSMarius Strobl 	KASSERT(nseg == 1,
1812ebc284ccSMarius Strobl 	    ("%s: wrong number of segments (%d)", __func__, nseg));
181356e5e7aeSMaxime Henrion 	paddr = arg;
181456e5e7aeSMaxime Henrion 	*paddr = segs->ds_addr;
181556e5e7aeSMaxime Henrion }
181656e5e7aeSMaxime Henrion 
181796f2e892SBill Paul /*
181896f2e892SBill Paul  * Attach the interface. Allocate softc structures, do ifmedia
181996f2e892SBill Paul  * setup and ethernet/BPF attach.
182096f2e892SBill Paul  */
1821e3d2833aSAlfred Perlstein static int
18220934f18aSMaxime Henrion dc_attach(device_t dev)
182396f2e892SBill Paul {
18248df1ebe9SMarcel Moolenaar 	uint32_t eaddr[(ETHER_ADDR_LEN+3)/4];
182596f2e892SBill Paul 	u_int32_t command;
182696f2e892SBill Paul 	struct dc_softc *sc;
182796f2e892SBill Paul 	struct ifnet *ifp;
1828b289c607SPyun YongHyeon 	struct dc_mediainfo *m;
18292e3d4b79SPyun YongHyeon 	u_int32_t reg, revision;
18308e5d93dbSMarius Strobl 	int error, i, mac_offset, phy, rid, tmp;
1831e7b01d07SWarner Losh 	u_int8_t *mac;
183296f2e892SBill Paul 
183396f2e892SBill Paul 	sc = device_get_softc(dev);
18346b9f5c94SGleb Smirnoff 	sc->dc_dev = dev;
183596f2e892SBill Paul 
18366008862bSJohn Baldwin 	mtx_init(&sc->dc_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
1837c8b27acaSJohn Baldwin 	    MTX_DEF);
1838c3e7434fSWarner Losh 
183996f2e892SBill Paul 	/*
184096f2e892SBill Paul 	 * Map control/status registers.
184196f2e892SBill Paul 	 */
184207f65363SBill Paul 	pci_enable_busmaster(dev);
184396f2e892SBill Paul 
184496f2e892SBill Paul 	rid = DC_RID;
18455f96beb9SNate Lawson 	sc->dc_res = bus_alloc_resource_any(dev, DC_RES, &rid, RF_ACTIVE);
184696f2e892SBill Paul 
184796f2e892SBill Paul 	if (sc->dc_res == NULL) {
184822f6205dSJohn Baldwin 		device_printf(dev, "couldn't map ports/memory\n");
184996f2e892SBill Paul 		error = ENXIO;
1850608654d4SNate Lawson 		goto fail;
185196f2e892SBill Paul 	}
185296f2e892SBill Paul 
185396f2e892SBill Paul 	sc->dc_btag = rman_get_bustag(sc->dc_res);
185496f2e892SBill Paul 	sc->dc_bhandle = rman_get_bushandle(sc->dc_res);
185596f2e892SBill Paul 
18560934f18aSMaxime Henrion 	/* Allocate interrupt. */
185754f1f1d1SNate Lawson 	rid = 0;
18585f96beb9SNate Lawson 	sc->dc_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
185954f1f1d1SNate Lawson 	    RF_SHAREABLE | RF_ACTIVE);
186054f1f1d1SNate Lawson 
186154f1f1d1SNate Lawson 	if (sc->dc_irq == NULL) {
186222f6205dSJohn Baldwin 		device_printf(dev, "couldn't map interrupt\n");
186354f1f1d1SNate Lawson 		error = ENXIO;
186454f1f1d1SNate Lawson 		goto fail;
186554f1f1d1SNate Lawson 	}
186654f1f1d1SNate Lawson 
186796f2e892SBill Paul 	/* Need this info to decide on a chip type. */
186896f2e892SBill Paul 	sc->dc_info = dc_devtype(dev);
18691e2e70b1SJohn Baldwin 	revision = pci_get_revid(dev);
187096f2e892SBill Paul 
1871abe4e865SPyun YongHyeon 	error = 0;
18726d0dd931SWarner Losh 	/* Get the eeprom width, but PNIC and XIRCOM have diff eeprom */
18731e2e70b1SJohn Baldwin 	if (sc->dc_info->dc_devid !=
18741e2e70b1SJohn Baldwin 	    DC_DEVID(DC_VENDORID_LO, DC_DEVICEID_82C168) &&
18751e2e70b1SJohn Baldwin 	    sc->dc_info->dc_devid !=
18761e2e70b1SJohn Baldwin 	    DC_DEVID(DC_VENDORID_XIRCOM, DC_DEVICEID_X3201))
1877eecb3844SMartin Blapp 		dc_eeprom_width(sc);
1878eecb3844SMartin Blapp 
18791e2e70b1SJohn Baldwin 	switch (sc->dc_info->dc_devid) {
18801e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_DEC, DC_DEVICEID_21143):
188196f2e892SBill Paul 		sc->dc_type = DC_TYPE_21143;
188296f2e892SBill Paul 		sc->dc_flags |= DC_TX_POLL | DC_TX_USE_TX_INTR;
1883042c8f6eSBill Paul 		sc->dc_flags |= DC_REDUCED_MII_POLL;
18845c1cfac4SBill Paul 		/* Save EEPROM contents so we can parse them later. */
1885abe4e865SPyun YongHyeon 		error = dc_read_srom(sc, sc->dc_romwidth);
1886abe4e865SPyun YongHyeon 		if (error != 0)
1887abe4e865SPyun YongHyeon 			goto fail;
188896f2e892SBill Paul 		break;
18891e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_DAVICOM, DC_DEVICEID_DM9009):
18901e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_DAVICOM, DC_DEVICEID_DM9100):
18911e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_DAVICOM, DC_DEVICEID_DM9102):
189296f2e892SBill Paul 		sc->dc_type = DC_TYPE_DM9102;
1893318a72d7SBill Paul 		sc->dc_flags |= DC_TX_COALESCE | DC_TX_INTR_ALWAYS;
1894318a72d7SBill Paul 		sc->dc_flags |= DC_REDUCED_MII_POLL | DC_TX_STORENFWD;
18957dfdc26cSMartin Blapp 		sc->dc_flags |= DC_TX_ALIGN;
18964a80e74bSMartin Blapp 		sc->dc_pmode = DC_PMODE_MII;
18971e2e70b1SJohn Baldwin 
18980a46b1dcSBill Paul 		/* Increase the latency timer value. */
18991e2e70b1SJohn Baldwin 		pci_write_config(dev, PCIR_LATTIMER, 0x80, 1);
190096f2e892SBill Paul 		break;
19011e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_ADMTEK, DC_DEVICEID_AL981):
190296f2e892SBill Paul 		sc->dc_type = DC_TYPE_AL981;
190396f2e892SBill Paul 		sc->dc_flags |= DC_TX_USE_TX_INTR;
190496f2e892SBill Paul 		sc->dc_flags |= DC_TX_ADMTEK_WAR;
190596f2e892SBill Paul 		sc->dc_pmode = DC_PMODE_MII;
1906abe4e865SPyun YongHyeon 		error = dc_read_srom(sc, sc->dc_romwidth);
1907abe4e865SPyun YongHyeon 		if (error != 0)
1908abe4e865SPyun YongHyeon 			goto fail;
190996f2e892SBill Paul 		break;
1910593a1aeaSMartin Blapp 	case DC_DEVID(DC_VENDORID_ADMTEK, DC_DEVICEID_AN983):
19111e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_ADMTEK, DC_DEVICEID_AN985):
19121e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_ADMTEK, DC_DEVICEID_ADM9511):
19131e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_ADMTEK, DC_DEVICEID_ADM9513):
19141e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_DLINK, DC_DEVICEID_DRP32TXD):
19151e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_ABOCOM, DC_DEVICEID_FE2500):
19161e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_ABOCOM, DC_DEVICEID_FE2500MX):
19171e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_ACCTON, DC_DEVICEID_EN2242):
19181e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_HAWKING, DC_DEVICEID_HAWKING_PN672TX):
19191e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_PLANEX, DC_DEVICEID_FNW3602T):
19201e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_3COM, DC_DEVICEID_3CSOHOB):
19211e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_MICROSOFT, DC_DEVICEID_MSMN120):
19221e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_MICROSOFT, DC_DEVICEID_MSMN130):
192317762569SGleb Smirnoff 	case DC_DEVID(DC_VENDORID_LINKSYS, DC_DEVICEID_PCMPC200_AB08):
192417762569SGleb Smirnoff 	case DC_DEVID(DC_VENDORID_LINKSYS, DC_DEVICEID_PCMPC200_AB09):
1925593a1aeaSMartin Blapp 		sc->dc_type = DC_TYPE_AN983;
1926acc1bcccSMartin Blapp 		sc->dc_flags |= DC_64BIT_HASH;
192796f2e892SBill Paul 		sc->dc_flags |= DC_TX_USE_TX_INTR;
192896f2e892SBill Paul 		sc->dc_flags |= DC_TX_ADMTEK_WAR;
192996f2e892SBill Paul 		sc->dc_pmode = DC_PMODE_MII;
1930129eaf79SMartin Blapp 		/* Don't read SROM for - auto-loaded on reset */
193196f2e892SBill Paul 		break;
19321e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_MX, DC_DEVICEID_98713):
19331e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_CP, DC_DEVICEID_98713_CP):
193496f2e892SBill Paul 		if (revision < DC_REVISION_98713A) {
193596f2e892SBill Paul 			sc->dc_type = DC_TYPE_98713;
193696f2e892SBill Paul 		}
1937318b02fdSBill Paul 		if (revision >= DC_REVISION_98713A) {
193896f2e892SBill Paul 			sc->dc_type = DC_TYPE_98713A;
1939318b02fdSBill Paul 			sc->dc_flags |= DC_21143_NWAY;
1940318b02fdSBill Paul 		}
1941318b02fdSBill Paul 		sc->dc_flags |= DC_REDUCED_MII_POLL;
194296f2e892SBill Paul 		sc->dc_flags |= DC_TX_POLL | DC_TX_USE_TX_INTR;
194396f2e892SBill Paul 		break;
19441e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_MX, DC_DEVICEID_987x5):
19451e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_ACCTON, DC_DEVICEID_EN1217):
194679d11e09SBill Paul 		/*
194779d11e09SBill Paul 		 * Macronix MX98715AEC-C/D/E parts have only a
194879d11e09SBill Paul 		 * 128-bit hash table. We need to deal with these
194979d11e09SBill Paul 		 * in the same manner as the PNIC II so that we
195079d11e09SBill Paul 		 * get the right number of bits out of the
195179d11e09SBill Paul 		 * CRC routine.
195279d11e09SBill Paul 		 */
195379d11e09SBill Paul 		if (revision >= DC_REVISION_98715AEC_C &&
195479d11e09SBill Paul 		    revision < DC_REVISION_98725)
195579d11e09SBill Paul 			sc->dc_flags |= DC_128BIT_HASH;
195696f2e892SBill Paul 		sc->dc_type = DC_TYPE_987x5;
195796f2e892SBill Paul 		sc->dc_flags |= DC_TX_POLL | DC_TX_USE_TX_INTR;
1958318b02fdSBill Paul 		sc->dc_flags |= DC_REDUCED_MII_POLL | DC_21143_NWAY;
195996f2e892SBill Paul 		break;
19601e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_MX, DC_DEVICEID_98727):
1961ead7cde9SBill Paul 		sc->dc_type = DC_TYPE_987x5;
1962ead7cde9SBill Paul 		sc->dc_flags |= DC_TX_POLL | DC_TX_USE_TX_INTR;
1963ead7cde9SBill Paul 		sc->dc_flags |= DC_REDUCED_MII_POLL | DC_21143_NWAY;
1964ead7cde9SBill Paul 		break;
19651e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_LO, DC_DEVICEID_82C115):
196696f2e892SBill Paul 		sc->dc_type = DC_TYPE_PNICII;
196779d11e09SBill Paul 		sc->dc_flags |= DC_TX_POLL | DC_TX_USE_TX_INTR | DC_128BIT_HASH;
1968318b02fdSBill Paul 		sc->dc_flags |= DC_REDUCED_MII_POLL | DC_21143_NWAY;
196996f2e892SBill Paul 		break;
19701e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_LO, DC_DEVICEID_82C168):
197196f2e892SBill Paul 		sc->dc_type = DC_TYPE_PNIC;
197291cc2adbSBill Paul 		sc->dc_flags |= DC_TX_STORENFWD | DC_TX_INTR_ALWAYS;
197396f2e892SBill Paul 		sc->dc_flags |= DC_PNIC_RX_BUG_WAR;
197496f2e892SBill Paul 		sc->dc_pnic_rx_buf = malloc(DC_RXLEN * 5, M_DEVBUF, M_NOWAIT);
1975abe4e865SPyun YongHyeon 		if (sc->dc_pnic_rx_buf == NULL) {
1976abe4e865SPyun YongHyeon 			device_printf(sc->dc_dev,
1977abe4e865SPyun YongHyeon 			    "Could not allocate PNIC RX buffer\n");
1978abe4e865SPyun YongHyeon 			error = ENOMEM;
1979abe4e865SPyun YongHyeon 			goto fail;
1980abe4e865SPyun YongHyeon 		}
198196f2e892SBill Paul 		if (revision < DC_REVISION_82C169)
198296f2e892SBill Paul 			sc->dc_pmode = DC_PMODE_SYM;
198396f2e892SBill Paul 		break;
19841e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_ASIX, DC_DEVICEID_AX88140A):
198596f2e892SBill Paul 		sc->dc_type = DC_TYPE_ASIX;
198696f2e892SBill Paul 		sc->dc_flags |= DC_TX_USE_TX_INTR | DC_TX_INTR_FIRSTFRAG;
198796f2e892SBill Paul 		sc->dc_flags |= DC_REDUCED_MII_POLL;
198896f2e892SBill Paul 		sc->dc_pmode = DC_PMODE_MII;
198996f2e892SBill Paul 		break;
19901e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_XIRCOM, DC_DEVICEID_X3201):
1991feb78939SJonathan Chen 		sc->dc_type = DC_TYPE_XIRCOM;
19922dfc960aSLuigi Rizzo 		sc->dc_flags |= DC_TX_INTR_ALWAYS | DC_TX_COALESCE |
19932dfc960aSLuigi Rizzo 				DC_TX_ALIGN;
1994feb78939SJonathan Chen 		/*
1995feb78939SJonathan Chen 		 * We don't actually need to coalesce, but we're doing
1996feb78939SJonathan Chen 		 * it to obtain a double word aligned buffer.
19972dfc960aSLuigi Rizzo 		 * The DC_TX_COALESCE flag is required.
1998feb78939SJonathan Chen 		 */
19993097aa70SWarner Losh 		sc->dc_pmode = DC_PMODE_MII;
2000feb78939SJonathan Chen 		break;
20011e2e70b1SJohn Baldwin 	case DC_DEVID(DC_VENDORID_CONEXANT, DC_DEVICEID_RS7112):
20021af8bec7SBill Paul 		sc->dc_type = DC_TYPE_CONEXANT;
20031af8bec7SBill Paul 		sc->dc_flags |= DC_TX_INTR_ALWAYS;
20041af8bec7SBill Paul 		sc->dc_flags |= DC_REDUCED_MII_POLL;
20051af8bec7SBill Paul 		sc->dc_pmode = DC_PMODE_MII;
2006abe4e865SPyun YongHyeon 		error = dc_read_srom(sc, sc->dc_romwidth);
2007abe4e865SPyun YongHyeon 		if (error != 0)
2008abe4e865SPyun YongHyeon 			goto fail;
20091af8bec7SBill Paul 		break;
201096f2e892SBill Paul 	default:
20111e2e70b1SJohn Baldwin 		device_printf(dev, "unknown device: %x\n",
20121e2e70b1SJohn Baldwin 		    sc->dc_info->dc_devid);
201396f2e892SBill Paul 		break;
201496f2e892SBill Paul 	}
201596f2e892SBill Paul 
201696f2e892SBill Paul 	/* Save the cache line size. */
201788d739dcSBill Paul 	if (DC_IS_DAVICOM(sc))
201888d739dcSBill Paul 		sc->dc_cachesize = 0;
201988d739dcSBill Paul 	else
20201e2e70b1SJohn Baldwin 		sc->dc_cachesize = pci_get_cachelnsz(dev);
202196f2e892SBill Paul 
202296f2e892SBill Paul 	/* Reset the adapter. */
202396f2e892SBill Paul 	dc_reset(sc);
202496f2e892SBill Paul 
202596f2e892SBill Paul 	/* Take 21143 out of snooze mode */
2026feb78939SJonathan Chen 	if (DC_IS_INTEL(sc) || DC_IS_XIRCOM(sc)) {
202796f2e892SBill Paul 		command = pci_read_config(dev, DC_PCI_CFDD, 4);
202896f2e892SBill Paul 		command &= ~(DC_CFDD_SNOOZE_MODE | DC_CFDD_SLEEP_MODE);
202996f2e892SBill Paul 		pci_write_config(dev, DC_PCI_CFDD, command, 4);
203096f2e892SBill Paul 	}
203196f2e892SBill Paul 
203296f2e892SBill Paul 	/*
203396f2e892SBill Paul 	 * Try to learn something about the supported media.
203496f2e892SBill Paul 	 * We know that ASIX and ADMtek and Davicom devices
203596f2e892SBill Paul 	 * will *always* be using MII media, so that's a no-brainer.
203696f2e892SBill Paul 	 * The tricky ones are the Macronix/PNIC II and the
203796f2e892SBill Paul 	 * Intel 21143.
203896f2e892SBill Paul 	 */
2039abe4e865SPyun YongHyeon 	if (DC_IS_INTEL(sc)) {
2040abe4e865SPyun YongHyeon 		error = dc_parse_21143_srom(sc);
2041abe4e865SPyun YongHyeon 		if (error != 0)
2042abe4e865SPyun YongHyeon 			goto fail;
2043abe4e865SPyun YongHyeon 	} else if (DC_IS_MACRONIX(sc) || DC_IS_PNICII(sc)) {
204496f2e892SBill Paul 		if (sc->dc_type == DC_TYPE_98713)
204596f2e892SBill Paul 			sc->dc_pmode = DC_PMODE_MII;
204696f2e892SBill Paul 		else
204796f2e892SBill Paul 			sc->dc_pmode = DC_PMODE_SYM;
204896f2e892SBill Paul 	} else if (!sc->dc_pmode)
204996f2e892SBill Paul 		sc->dc_pmode = DC_PMODE_MII;
205096f2e892SBill Paul 
205196f2e892SBill Paul 	/*
205296f2e892SBill Paul 	 * Get station address from the EEPROM.
205396f2e892SBill Paul 	 */
205496f2e892SBill Paul 	switch(sc->dc_type) {
205596f2e892SBill Paul 	case DC_TYPE_98713:
205696f2e892SBill Paul 	case DC_TYPE_98713A:
205796f2e892SBill Paul 	case DC_TYPE_987x5:
205896f2e892SBill Paul 	case DC_TYPE_PNICII:
205996f2e892SBill Paul 		dc_read_eeprom(sc, (caddr_t)&mac_offset,
206096f2e892SBill Paul 		    (DC_EE_NODEADDR_OFFSET / 2), 1, 0);
206196f2e892SBill Paul 		dc_read_eeprom(sc, (caddr_t)&eaddr, (mac_offset / 2), 3, 0);
206296f2e892SBill Paul 		break;
206396f2e892SBill Paul 	case DC_TYPE_PNIC:
206496f2e892SBill Paul 		dc_read_eeprom(sc, (caddr_t)&eaddr, 0, 3, 1);
206596f2e892SBill Paul 		break;
206696f2e892SBill Paul 	case DC_TYPE_DM9102:
2067ec6a7299SMaxime Henrion 		dc_read_eeprom(sc, (caddr_t)&eaddr, DC_EE_NODEADDR, 3, 0);
2068ec6a7299SMaxime Henrion #ifdef __sparc64__
2069ec6a7299SMaxime Henrion 		/*
2070ec6a7299SMaxime Henrion 		 * If this is an onboard dc(4) the station address read from
2071802cab03SMarius Strobl 		 * the EEPROM is all zero and we have to get it from the FCode.
2072ec6a7299SMaxime Henrion 		 */
2073802cab03SMarius Strobl 		if (eaddr[0] == 0 && (eaddr[1] & ~0xffff) == 0)
20748069c79dSRuslan Ermilov 			OF_getetheraddr(dev, (caddr_t)&eaddr);
2075ec6a7299SMaxime Henrion #endif
2076ec6a7299SMaxime Henrion 		break;
207796f2e892SBill Paul 	case DC_TYPE_21143:
207896f2e892SBill Paul 	case DC_TYPE_ASIX:
207996f2e892SBill Paul 		dc_read_eeprom(sc, (caddr_t)&eaddr, DC_EE_NODEADDR, 3, 0);
208096f2e892SBill Paul 		break;
208196f2e892SBill Paul 	case DC_TYPE_AL981:
2082593a1aeaSMartin Blapp 	case DC_TYPE_AN983:
20832e3d4b79SPyun YongHyeon 		reg = CSR_READ_4(sc, DC_AL_PAR0);
20842e3d4b79SPyun YongHyeon 		mac = (uint8_t *)&eaddr[0];
20852e3d4b79SPyun YongHyeon 		mac[0] = (reg >> 0) & 0xff;
20862e3d4b79SPyun YongHyeon 		mac[1] = (reg >> 8) & 0xff;
20872e3d4b79SPyun YongHyeon 		mac[2] = (reg >> 16) & 0xff;
20882e3d4b79SPyun YongHyeon 		mac[3] = (reg >> 24) & 0xff;
20892e3d4b79SPyun YongHyeon 		reg = CSR_READ_4(sc, DC_AL_PAR1);
20902e3d4b79SPyun YongHyeon 		mac[4] = (reg >> 0) & 0xff;
20912e3d4b79SPyun YongHyeon 		mac[5] = (reg >> 8) & 0xff;
209296f2e892SBill Paul 		break;
20931af8bec7SBill Paul 	case DC_TYPE_CONEXANT:
20940934f18aSMaxime Henrion 		bcopy(sc->dc_srom + DC_CONEXANT_EE_NODEADDR, &eaddr,
20950934f18aSMaxime Henrion 		    ETHER_ADDR_LEN);
20961af8bec7SBill Paul 		break;
2097feb78939SJonathan Chen 	case DC_TYPE_XIRCOM:
20980934f18aSMaxime Henrion 		/* The MAC comes from the CIS. */
2099e7b01d07SWarner Losh 		mac = pci_get_ether(dev);
2100e7b01d07SWarner Losh 		if (!mac) {
2101e7b01d07SWarner Losh 			device_printf(dev, "No station address in CIS!\n");
2102608654d4SNate Lawson 			error = ENXIO;
2103e7b01d07SWarner Losh 			goto fail;
2104e7b01d07SWarner Losh 		}
2105e7b01d07SWarner Losh 		bcopy(mac, eaddr, ETHER_ADDR_LEN);
2106feb78939SJonathan Chen 		break;
210796f2e892SBill Paul 	default:
210896f2e892SBill Paul 		dc_read_eeprom(sc, (caddr_t)&eaddr, DC_EE_NODEADDR, 3, 0);
210996f2e892SBill Paul 		break;
211096f2e892SBill Paul 	}
211196f2e892SBill Paul 
211239d76ed6SPyun YongHyeon 	bcopy(eaddr, sc->dc_eaddr, sizeof(eaddr));
211339d76ed6SPyun YongHyeon 	/*
211439d76ed6SPyun YongHyeon 	 * If we still have invalid station address, see whether we can
211539d76ed6SPyun YongHyeon 	 * find station address for chip 0.  Some multi-port controllers
211639d76ed6SPyun YongHyeon 	 * just store station address for chip 0 if they have a shared
211739d76ed6SPyun YongHyeon 	 * SROM.
211839d76ed6SPyun YongHyeon 	 */
211939d76ed6SPyun YongHyeon 	if ((sc->dc_eaddr[0] == 0 && (sc->dc_eaddr[1] & ~0xffff) == 0) ||
212039d76ed6SPyun YongHyeon 	    (sc->dc_eaddr[0] == 0xffffffff &&
212139d76ed6SPyun YongHyeon 	    (sc->dc_eaddr[1] & 0xffff) == 0xffff)) {
2122b289c607SPyun YongHyeon 		error = dc_check_multiport(sc);
2123b289c607SPyun YongHyeon 		if (error == 0) {
212439d76ed6SPyun YongHyeon 			bcopy(sc->dc_eaddr, eaddr, sizeof(eaddr));
2125b289c607SPyun YongHyeon 			/* Extract media information. */
2126b289c607SPyun YongHyeon 			if (DC_IS_INTEL(sc) && sc->dc_srom != NULL) {
2127b289c607SPyun YongHyeon 				while (sc->dc_mi != NULL) {
2128b289c607SPyun YongHyeon 					m = sc->dc_mi->dc_next;
2129b289c607SPyun YongHyeon 					free(sc->dc_mi, M_DEVBUF);
2130b289c607SPyun YongHyeon 					sc->dc_mi = m;
2131b289c607SPyun YongHyeon 				}
2132b289c607SPyun YongHyeon 				error = dc_parse_21143_srom(sc);
2133b289c607SPyun YongHyeon 				if (error != 0)
2134b289c607SPyun YongHyeon 					goto fail;
2135b289c607SPyun YongHyeon 			}
2136b289c607SPyun YongHyeon 		} else if (error == ENOMEM)
2137b289c607SPyun YongHyeon 			goto fail;
2138b289c607SPyun YongHyeon 		else
2139b289c607SPyun YongHyeon 			error = 0;
214039d76ed6SPyun YongHyeon 	}
214139d76ed6SPyun YongHyeon 
214256e5e7aeSMaxime Henrion 	/* Allocate a busdma tag and DMA safe memory for TX/RX descriptors. */
2143b1d16143SMarius Strobl 	error = bus_dma_tag_create(bus_get_dma_tag(dev), PAGE_SIZE, 0,
2144b1d16143SMarius Strobl 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
2145b1d16143SMarius Strobl 	    sizeof(struct dc_list_data), 1, sizeof(struct dc_list_data),
2146b1d16143SMarius Strobl 	    0, NULL, NULL, &sc->dc_ltag);
214756e5e7aeSMaxime Henrion 	if (error) {
214822f6205dSJohn Baldwin 		device_printf(dev, "failed to allocate busdma tag\n");
214956e5e7aeSMaxime Henrion 		error = ENXIO;
215056e5e7aeSMaxime Henrion 		goto fail;
215156e5e7aeSMaxime Henrion 	}
215256e5e7aeSMaxime Henrion 	error = bus_dmamem_alloc(sc->dc_ltag, (void **)&sc->dc_ldata,
2153aafb3ebbSMaxime Henrion 	    BUS_DMA_NOWAIT | BUS_DMA_ZERO, &sc->dc_lmap);
215456e5e7aeSMaxime Henrion 	if (error) {
215522f6205dSJohn Baldwin 		device_printf(dev, "failed to allocate DMA safe memory\n");
215656e5e7aeSMaxime Henrion 		error = ENXIO;
215756e5e7aeSMaxime Henrion 		goto fail;
215856e5e7aeSMaxime Henrion 	}
215956e5e7aeSMaxime Henrion 	error = bus_dmamap_load(sc->dc_ltag, sc->dc_lmap, sc->dc_ldata,
216056e5e7aeSMaxime Henrion 	    sizeof(struct dc_list_data), dc_dma_map_addr, &sc->dc_laddr,
216156e5e7aeSMaxime Henrion 	    BUS_DMA_NOWAIT);
216256e5e7aeSMaxime Henrion 	if (error) {
216322f6205dSJohn Baldwin 		device_printf(dev, "cannot get address of the descriptors\n");
216456e5e7aeSMaxime Henrion 		error = ENXIO;
216556e5e7aeSMaxime Henrion 		goto fail;
216656e5e7aeSMaxime Henrion 	}
216796f2e892SBill Paul 
216856e5e7aeSMaxime Henrion 	/*
216956e5e7aeSMaxime Henrion 	 * Allocate a busdma tag and DMA safe memory for the multicast
217056e5e7aeSMaxime Henrion 	 * setup frame.
217156e5e7aeSMaxime Henrion 	 */
2172b1d16143SMarius Strobl 	error = bus_dma_tag_create(bus_get_dma_tag(dev), PAGE_SIZE, 0,
2173b1d16143SMarius Strobl 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
2174b1d16143SMarius Strobl 	    DC_SFRAME_LEN + DC_MIN_FRAMELEN, 1, DC_SFRAME_LEN + DC_MIN_FRAMELEN,
2175b1d16143SMarius Strobl 	    0, NULL, NULL, &sc->dc_stag);
217656e5e7aeSMaxime Henrion 	if (error) {
217722f6205dSJohn Baldwin 		device_printf(dev, "failed to allocate busdma tag\n");
217856e5e7aeSMaxime Henrion 		error = ENXIO;
217956e5e7aeSMaxime Henrion 		goto fail;
218056e5e7aeSMaxime Henrion 	}
218156e5e7aeSMaxime Henrion 	error = bus_dmamem_alloc(sc->dc_stag, (void **)&sc->dc_cdata.dc_sbuf,
218256e5e7aeSMaxime Henrion 	    BUS_DMA_NOWAIT, &sc->dc_smap);
218356e5e7aeSMaxime Henrion 	if (error) {
218422f6205dSJohn Baldwin 		device_printf(dev, "failed to allocate DMA safe memory\n");
218556e5e7aeSMaxime Henrion 		error = ENXIO;
218656e5e7aeSMaxime Henrion 		goto fail;
218756e5e7aeSMaxime Henrion 	}
218856e5e7aeSMaxime Henrion 	error = bus_dmamap_load(sc->dc_stag, sc->dc_smap, sc->dc_cdata.dc_sbuf,
218956e5e7aeSMaxime Henrion 	    DC_SFRAME_LEN, dc_dma_map_addr, &sc->dc_saddr, BUS_DMA_NOWAIT);
219056e5e7aeSMaxime Henrion 	if (error) {
219122f6205dSJohn Baldwin 		device_printf(dev, "cannot get address of the descriptors\n");
219296f2e892SBill Paul 		error = ENXIO;
219396f2e892SBill Paul 		goto fail;
219496f2e892SBill Paul 	}
219596f2e892SBill Paul 
219656e5e7aeSMaxime Henrion 	/* Allocate a busdma tag for mbufs. */
2197b1d16143SMarius Strobl 	error = bus_dma_tag_create(bus_get_dma_tag(dev), 1, 0,
2198b1d16143SMarius Strobl 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
2199ebc284ccSMarius Strobl 	    MCLBYTES * DC_MAXFRAGS, DC_MAXFRAGS, MCLBYTES,
2200c1b677aaSScott Long 	    0, NULL, NULL, &sc->dc_mtag);
220156e5e7aeSMaxime Henrion 	if (error) {
220222f6205dSJohn Baldwin 		device_printf(dev, "failed to allocate busdma tag\n");
220356e5e7aeSMaxime Henrion 		error = ENXIO;
220456e5e7aeSMaxime Henrion 		goto fail;
220556e5e7aeSMaxime Henrion 	}
220656e5e7aeSMaxime Henrion 
220756e5e7aeSMaxime Henrion 	/* Create the TX/RX busdma maps. */
220856e5e7aeSMaxime Henrion 	for (i = 0; i < DC_TX_LIST_CNT; i++) {
220956e5e7aeSMaxime Henrion 		error = bus_dmamap_create(sc->dc_mtag, 0,
221056e5e7aeSMaxime Henrion 		    &sc->dc_cdata.dc_tx_map[i]);
221156e5e7aeSMaxime Henrion 		if (error) {
221222f6205dSJohn Baldwin 			device_printf(dev, "failed to init TX ring\n");
221356e5e7aeSMaxime Henrion 			error = ENXIO;
221456e5e7aeSMaxime Henrion 			goto fail;
221556e5e7aeSMaxime Henrion 		}
221656e5e7aeSMaxime Henrion 	}
221756e5e7aeSMaxime Henrion 	for (i = 0; i < DC_RX_LIST_CNT; i++) {
221856e5e7aeSMaxime Henrion 		error = bus_dmamap_create(sc->dc_mtag, 0,
221956e5e7aeSMaxime Henrion 		    &sc->dc_cdata.dc_rx_map[i]);
222056e5e7aeSMaxime Henrion 		if (error) {
222122f6205dSJohn Baldwin 			device_printf(dev, "failed to init RX ring\n");
222256e5e7aeSMaxime Henrion 			error = ENXIO;
222356e5e7aeSMaxime Henrion 			goto fail;
222456e5e7aeSMaxime Henrion 		}
222556e5e7aeSMaxime Henrion 	}
222656e5e7aeSMaxime Henrion 	error = bus_dmamap_create(sc->dc_mtag, 0, &sc->dc_sparemap);
222756e5e7aeSMaxime Henrion 	if (error) {
222822f6205dSJohn Baldwin 		device_printf(dev, "failed to init RX ring\n");
222956e5e7aeSMaxime Henrion 		error = ENXIO;
223056e5e7aeSMaxime Henrion 		goto fail;
223156e5e7aeSMaxime Henrion 	}
223296f2e892SBill Paul 
2233fc74a9f9SBrooks Davis 	ifp = sc->dc_ifp = if_alloc(IFT_ETHER);
2234fc74a9f9SBrooks Davis 	if (ifp == NULL) {
223522f6205dSJohn Baldwin 		device_printf(dev, "can not if_alloc()\n");
2236fc74a9f9SBrooks Davis 		error = ENOSPC;
2237fc74a9f9SBrooks Davis 		goto fail;
2238fc74a9f9SBrooks Davis 	}
223996f2e892SBill Paul 	ifp->if_softc = sc;
22409bf40edeSBrooks Davis 	if_initname(ifp, device_get_name(dev), device_get_unit(dev));
22413d57a2e5SBrian Feldman 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
224296f2e892SBill Paul 	ifp->if_ioctl = dc_ioctl;
224396f2e892SBill Paul 	ifp->if_start = dc_start;
224496f2e892SBill Paul 	ifp->if_init = dc_init;
2245cbaf877fSBrian Feldman 	IFQ_SET_MAXLEN(&ifp->if_snd, DC_TX_LIST_CNT - 1);
2246cbaf877fSBrian Feldman 	ifp->if_snd.ifq_drv_maxlen = DC_TX_LIST_CNT - 1;
2247cbaf877fSBrian Feldman 	IFQ_SET_READY(&ifp->if_snd);
224896f2e892SBill Paul 
224996f2e892SBill Paul 	/*
22505c1cfac4SBill Paul 	 * Do MII setup. If this is a 21143, check for a PHY on the
22515c1cfac4SBill Paul 	 * MII bus after applying any necessary fixups to twiddle the
22525c1cfac4SBill Paul 	 * GPIO bits. If we don't end up finding a PHY, restore the
22535c1cfac4SBill Paul 	 * old selection (SIA only or SIA/SYM) and attach the dcphy
22545c1cfac4SBill Paul 	 * driver instead.
225596f2e892SBill Paul 	 */
22568e5d93dbSMarius Strobl 	tmp = 0;
22575c1cfac4SBill Paul 	if (DC_IS_INTEL(sc)) {
22585c1cfac4SBill Paul 		dc_apply_fixup(sc, IFM_AUTO);
22595c1cfac4SBill Paul 		tmp = sc->dc_pmode;
22605c1cfac4SBill Paul 		sc->dc_pmode = DC_PMODE_MII;
22615c1cfac4SBill Paul 	}
22625c1cfac4SBill Paul 
22636d431b17SWarner Losh 	/*
22646d431b17SWarner Losh 	 * Setup General Purpose port mode and data so the tulip can talk
22658e5d93dbSMarius Strobl 	 * to the MII.  This needs to be done before mii_attach so that
22666d431b17SWarner Losh 	 * we can actually see them.
22676d431b17SWarner Losh 	 */
22686d431b17SWarner Losh 	if (DC_IS_XIRCOM(sc)) {
22696d431b17SWarner Losh 		CSR_WRITE_4(sc, DC_SIAGP, DC_SIAGP_WRITE_EN | DC_SIAGP_INT1_EN |
22706d431b17SWarner Losh 		    DC_SIAGP_MD_GP2_OUTPUT | DC_SIAGP_MD_GP0_OUTPUT);
22716d431b17SWarner Losh 		DELAY(10);
22726d431b17SWarner Losh 		CSR_WRITE_4(sc, DC_SIAGP, DC_SIAGP_INT1_EN |
22736d431b17SWarner Losh 		    DC_SIAGP_MD_GP2_OUTPUT | DC_SIAGP_MD_GP0_OUTPUT);
22746d431b17SWarner Losh 		DELAY(10);
22756d431b17SWarner Losh 	}
22766d431b17SWarner Losh 
22778e5d93dbSMarius Strobl 	phy = MII_PHY_ANY;
22788e5d93dbSMarius Strobl 	/*
22798e5d93dbSMarius Strobl 	 * Note: both the AL981 and AN983 have internal PHYs, however the
22808e5d93dbSMarius Strobl 	 * AL981 provides direct access to the PHY registers while the AN983
22818e5d93dbSMarius Strobl 	 * uses a serial MII interface. The AN983's MII interface is also
22828e5d93dbSMarius Strobl 	 * buggy in that you can read from any MII address (0 to 31), but
22838e5d93dbSMarius Strobl 	 * only address 1 behaves normally. To deal with both cases, we
22848e5d93dbSMarius Strobl 	 * pretend that the PHY is at MII address 1.
22858e5d93dbSMarius Strobl 	 */
22868e5d93dbSMarius Strobl 	if (DC_IS_ADMTEK(sc))
22878e5d93dbSMarius Strobl 		phy = DC_ADMTEK_PHYADDR;
22888e5d93dbSMarius Strobl 
22898e5d93dbSMarius Strobl 	/*
22908e5d93dbSMarius Strobl 	 * Note: the ukphy probes of the RS7112 report a PHY at MII address
22918e5d93dbSMarius Strobl 	 * 0 (possibly HomePNA?) and 1 (ethernet) so we only respond to the
22928e5d93dbSMarius Strobl 	 * correct one.
22938e5d93dbSMarius Strobl 	 */
22948e5d93dbSMarius Strobl 	if (DC_IS_CONEXANT(sc))
22958e5d93dbSMarius Strobl 		phy = DC_CONEXANT_PHYADDR;
22968e5d93dbSMarius Strobl 
22978e5d93dbSMarius Strobl 	error = mii_attach(dev, &sc->dc_miibus, ifp, dc_ifmedia_upd,
22988e5d93dbSMarius Strobl 	    dc_ifmedia_sts, BMSR_DEFCAPMASK, phy, MII_OFFSET_ANY, 0);
229996f2e892SBill Paul 
230096f2e892SBill Paul 	if (error && DC_IS_INTEL(sc)) {
23015c1cfac4SBill Paul 		sc->dc_pmode = tmp;
23025c1cfac4SBill Paul 		if (sc->dc_pmode != DC_PMODE_SIA)
230396f2e892SBill Paul 			sc->dc_pmode = DC_PMODE_SYM;
2304042c8f6eSBill Paul 		sc->dc_flags |= DC_21143_NWAY;
23058e5d93dbSMarius Strobl 		mii_attach(dev, &sc->dc_miibus, ifp, dc_ifmedia_upd,
23068e5d93dbSMarius Strobl 		    dc_ifmedia_sts, BMSR_DEFCAPMASK, MII_PHY_ANY,
23078e5d93dbSMarius Strobl 		    MII_OFFSET_ANY, 0);
230878999dd1SBill Paul 		/*
230978999dd1SBill Paul 		 * For non-MII cards, we need to have the 21143
231078999dd1SBill Paul 		 * drive the LEDs. Except there are some systems
231178999dd1SBill Paul 		 * like the NEC VersaPro NoteBook PC which have no
231278999dd1SBill Paul 		 * LEDs, and twiddling these bits has adverse effects
231378999dd1SBill Paul 		 * on them. (I.e. you suddenly can't get a link.)
231478999dd1SBill Paul 		 */
23151e2e70b1SJohn Baldwin 		if (!(pci_get_subvendor(dev) == 0x1033 &&
23161e2e70b1SJohn Baldwin 		    pci_get_subdevice(dev) == 0x8028))
231778999dd1SBill Paul 			sc->dc_flags |= DC_TULIP_LEDS;
231896f2e892SBill Paul 		error = 0;
231996f2e892SBill Paul 	}
232096f2e892SBill Paul 
232196f2e892SBill Paul 	if (error) {
23228e5d93dbSMarius Strobl 		device_printf(dev, "attaching PHYs failed\n");
232396f2e892SBill Paul 		goto fail;
232496f2e892SBill Paul 	}
232596f2e892SBill Paul 
2326028a8491SMartin Blapp 	if (DC_IS_ADMTEK(sc)) {
2327028a8491SMartin Blapp 		/*
2328028a8491SMartin Blapp 		 * Set automatic TX underrun recovery for the ADMtek chips
2329028a8491SMartin Blapp 		 */
2330028a8491SMartin Blapp 		DC_SETBIT(sc, DC_AL_CR, DC_AL_CR_ATUR);
2331028a8491SMartin Blapp 	}
2332028a8491SMartin Blapp 
233396f2e892SBill Paul 	/*
2334db40c1aeSDoug Ambrisko 	 * Tell the upper layer(s) we support long frames.
2335db40c1aeSDoug Ambrisko 	 */
2336db40c1aeSDoug Ambrisko 	ifp->if_data.ifi_hdrlen = sizeof(struct ether_vlan_header);
23379ef8b520SSam Leffler 	ifp->if_capabilities |= IFCAP_VLAN_MTU;
233840929967SGleb Smirnoff 	ifp->if_capenable = ifp->if_capabilities;
2339e695984eSRuslan Ermilov #ifdef DEVICE_POLLING
2340e695984eSRuslan Ermilov 	ifp->if_capabilities |= IFCAP_POLLING;
2341e695984eSRuslan Ermilov #endif
2342db40c1aeSDoug Ambrisko 
2343c8b27acaSJohn Baldwin 	callout_init_mtx(&sc->dc_stat_ch, &sc->dc_mtx, 0);
2344b1d16143SMarius Strobl 	callout_init_mtx(&sc->dc_wdog_ch, &sc->dc_mtx, 0);
234596f2e892SBill Paul 
2346608654d4SNate Lawson 	/*
2347608654d4SNate Lawson 	 * Call MI attach routine.
2348608654d4SNate Lawson 	 */
23498df1ebe9SMarcel Moolenaar 	ether_ifattach(ifp, (caddr_t)eaddr);
2350608654d4SNate Lawson 
235154f1f1d1SNate Lawson 	/* Hook interrupt last to avoid having to lock softc */
2352c8b27acaSJohn Baldwin 	error = bus_setup_intr(dev, sc->dc_irq, INTR_TYPE_NET | INTR_MPSAFE,
2353ef544f63SPaolo Pisati 	    NULL, dc_intr, sc, &sc->dc_intrhand);
2354608654d4SNate Lawson 
2355608654d4SNate Lawson 	if (error) {
235622f6205dSJohn Baldwin 		device_printf(dev, "couldn't set up irq\n");
2357693f4477SNate Lawson 		ether_ifdetach(ifp);
235854f1f1d1SNate Lawson 		goto fail;
2359608654d4SNate Lawson 	}
2360510a809eSMike Smith 
236196f2e892SBill Paul fail:
236254f1f1d1SNate Lawson 	if (error)
236354f1f1d1SNate Lawson 		dc_detach(dev);
236496f2e892SBill Paul 	return (error);
236596f2e892SBill Paul }
236696f2e892SBill Paul 
2367693f4477SNate Lawson /*
2368693f4477SNate Lawson  * Shutdown hardware and free up resources. This can be called any
2369693f4477SNate Lawson  * time after the mutex has been initialized. It is called in both
2370693f4477SNate Lawson  * the error case in attach and the normal detach case so it needs
2371693f4477SNate Lawson  * to be careful about only freeing resources that have actually been
2372693f4477SNate Lawson  * allocated.
2373693f4477SNate Lawson  */
2374e3d2833aSAlfred Perlstein static int
23750934f18aSMaxime Henrion dc_detach(device_t dev)
237696f2e892SBill Paul {
237796f2e892SBill Paul 	struct dc_softc *sc;
237896f2e892SBill Paul 	struct ifnet *ifp;
23795c1cfac4SBill Paul 	struct dc_mediainfo *m;
238056e5e7aeSMaxime Henrion 	int i;
238196f2e892SBill Paul 
238296f2e892SBill Paul 	sc = device_get_softc(dev);
238359f47d29SJohn Baldwin 	KASSERT(mtx_initialized(&sc->dc_mtx), ("dc mutex not initialized"));
2384d1ce9105SBill Paul 
2385fc74a9f9SBrooks Davis 	ifp = sc->dc_ifp;
238696f2e892SBill Paul 
238740929967SGleb Smirnoff #ifdef DEVICE_POLLING
238840929967SGleb Smirnoff 	if (ifp->if_capenable & IFCAP_POLLING)
238940929967SGleb Smirnoff 		ether_poll_deregister(ifp);
239040929967SGleb Smirnoff #endif
239140929967SGleb Smirnoff 
2392693f4477SNate Lawson 	/* These should only be active if attach succeeded */
2393214073e5SWarner Losh 	if (device_is_attached(dev)) {
2394c8b27acaSJohn Baldwin 		DC_LOCK(sc);
239596f2e892SBill Paul 		dc_stop(sc);
2396c8b27acaSJohn Baldwin 		DC_UNLOCK(sc);
2397c8b27acaSJohn Baldwin 		callout_drain(&sc->dc_stat_ch);
2398b1d16143SMarius Strobl 		callout_drain(&sc->dc_wdog_ch);
23999ef8b520SSam Leffler 		ether_ifdetach(ifp);
2400693f4477SNate Lawson 	}
2401693f4477SNate Lawson 	if (sc->dc_miibus)
240296f2e892SBill Paul 		device_delete_child(dev, sc->dc_miibus);
240354f1f1d1SNate Lawson 	bus_generic_detach(dev);
240496f2e892SBill Paul 
240554f1f1d1SNate Lawson 	if (sc->dc_intrhand)
240696f2e892SBill Paul 		bus_teardown_intr(dev, sc->dc_irq, sc->dc_intrhand);
240754f1f1d1SNate Lawson 	if (sc->dc_irq)
240896f2e892SBill Paul 		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->dc_irq);
240954f1f1d1SNate Lawson 	if (sc->dc_res)
241096f2e892SBill Paul 		bus_release_resource(dev, DC_RES, DC_RID, sc->dc_res);
241196f2e892SBill Paul 
24126a3033a8SWarner Losh 	if (ifp)
24136a3033a8SWarner Losh 		if_free(ifp);
24146a3033a8SWarner Losh 
241556e5e7aeSMaxime Henrion 	if (sc->dc_cdata.dc_sbuf != NULL)
241656e5e7aeSMaxime Henrion 		bus_dmamem_free(sc->dc_stag, sc->dc_cdata.dc_sbuf, sc->dc_smap);
241756e5e7aeSMaxime Henrion 	if (sc->dc_ldata != NULL)
241856e5e7aeSMaxime Henrion 		bus_dmamem_free(sc->dc_ltag, sc->dc_ldata, sc->dc_lmap);
24194f867c2dSGiorgos Keramidas 	if (sc->dc_mtag) {
242056e5e7aeSMaxime Henrion 		for (i = 0; i < DC_TX_LIST_CNT; i++)
24214f867c2dSGiorgos Keramidas 			if (sc->dc_cdata.dc_tx_map[i] != NULL)
24224f867c2dSGiorgos Keramidas 				bus_dmamap_destroy(sc->dc_mtag,
24234f867c2dSGiorgos Keramidas 				    sc->dc_cdata.dc_tx_map[i]);
242456e5e7aeSMaxime Henrion 		for (i = 0; i < DC_RX_LIST_CNT; i++)
24254f867c2dSGiorgos Keramidas 			if (sc->dc_cdata.dc_rx_map[i] != NULL)
24264f867c2dSGiorgos Keramidas 				bus_dmamap_destroy(sc->dc_mtag,
24274f867c2dSGiorgos Keramidas 				    sc->dc_cdata.dc_rx_map[i]);
242856e5e7aeSMaxime Henrion 		bus_dmamap_destroy(sc->dc_mtag, sc->dc_sparemap);
24294f867c2dSGiorgos Keramidas 	}
243056e5e7aeSMaxime Henrion 	if (sc->dc_stag)
243156e5e7aeSMaxime Henrion 		bus_dma_tag_destroy(sc->dc_stag);
243256e5e7aeSMaxime Henrion 	if (sc->dc_mtag)
243356e5e7aeSMaxime Henrion 		bus_dma_tag_destroy(sc->dc_mtag);
243456e5e7aeSMaxime Henrion 	if (sc->dc_ltag)
243556e5e7aeSMaxime Henrion 		bus_dma_tag_destroy(sc->dc_ltag);
243656e5e7aeSMaxime Henrion 
243796f2e892SBill Paul 	free(sc->dc_pnic_rx_buf, M_DEVBUF);
243896f2e892SBill Paul 
24395c1cfac4SBill Paul 	while (sc->dc_mi != NULL) {
24405c1cfac4SBill Paul 		m = sc->dc_mi->dc_next;
24415c1cfac4SBill Paul 		free(sc->dc_mi, M_DEVBUF);
24425c1cfac4SBill Paul 		sc->dc_mi = m;
24435c1cfac4SBill Paul 	}
24447efff076SWarner Losh 	free(sc->dc_srom, M_DEVBUF);
24455c1cfac4SBill Paul 
2446d1ce9105SBill Paul 	mtx_destroy(&sc->dc_mtx);
244796f2e892SBill Paul 
244896f2e892SBill Paul 	return (0);
244996f2e892SBill Paul }
245096f2e892SBill Paul 
245196f2e892SBill Paul /*
245296f2e892SBill Paul  * Initialize the transmit descriptors.
245396f2e892SBill Paul  */
2454e3d2833aSAlfred Perlstein static int
24550934f18aSMaxime Henrion dc_list_tx_init(struct dc_softc *sc)
245696f2e892SBill Paul {
245796f2e892SBill Paul 	struct dc_chain_data *cd;
245896f2e892SBill Paul 	struct dc_list_data *ld;
245901faf54bSLuigi Rizzo 	int i, nexti;
246096f2e892SBill Paul 
246196f2e892SBill Paul 	cd = &sc->dc_cdata;
246296f2e892SBill Paul 	ld = sc->dc_ldata;
246396f2e892SBill Paul 	for (i = 0; i < DC_TX_LIST_CNT; i++) {
2464b3811c95SMaxime Henrion 		if (i == DC_TX_LIST_CNT - 1)
2465b3811c95SMaxime Henrion 			nexti = 0;
2466b3811c95SMaxime Henrion 		else
2467b3811c95SMaxime Henrion 			nexti = i + 1;
246852c43a47SPyun YongHyeon 		ld->dc_tx_list[i].dc_status = 0;
246952c43a47SPyun YongHyeon 		ld->dc_tx_list[i].dc_ctl = 0;
247052c43a47SPyun YongHyeon 		ld->dc_tx_list[i].dc_data = 0;
2471af4358c7SMaxime Henrion 		ld->dc_tx_list[i].dc_next = htole32(DC_TXDESC(sc, nexti));
247296f2e892SBill Paul 		cd->dc_tx_chain[i] = NULL;
247396f2e892SBill Paul 	}
247496f2e892SBill Paul 
247596f2e892SBill Paul 	cd->dc_tx_prod = cd->dc_tx_cons = cd->dc_tx_cnt = 0;
247606d23883SPyun YongHyeon 	cd->dc_tx_pkts = 0;
247756e5e7aeSMaxime Henrion 	bus_dmamap_sync(sc->dc_ltag, sc->dc_lmap,
247856e5e7aeSMaxime Henrion 	    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
247996f2e892SBill Paul 	return (0);
248096f2e892SBill Paul }
248196f2e892SBill Paul 
248296f2e892SBill Paul 
248396f2e892SBill Paul /*
248496f2e892SBill Paul  * Initialize the RX descriptors and allocate mbufs for them. Note that
248596f2e892SBill Paul  * we arrange the descriptors in a closed ring, so that the last descriptor
248696f2e892SBill Paul  * points back to the first.
248796f2e892SBill Paul  */
2488e3d2833aSAlfred Perlstein static int
24890934f18aSMaxime Henrion dc_list_rx_init(struct dc_softc *sc)
249096f2e892SBill Paul {
249196f2e892SBill Paul 	struct dc_chain_data *cd;
249296f2e892SBill Paul 	struct dc_list_data *ld;
249301faf54bSLuigi Rizzo 	int i, nexti;
249496f2e892SBill Paul 
249596f2e892SBill Paul 	cd = &sc->dc_cdata;
249696f2e892SBill Paul 	ld = sc->dc_ldata;
249796f2e892SBill Paul 
249896f2e892SBill Paul 	for (i = 0; i < DC_RX_LIST_CNT; i++) {
249956e5e7aeSMaxime Henrion 		if (dc_newbuf(sc, i, 1) != 0)
250096f2e892SBill Paul 			return (ENOBUFS);
2501b3811c95SMaxime Henrion 		if (i == DC_RX_LIST_CNT - 1)
2502b3811c95SMaxime Henrion 			nexti = 0;
2503b3811c95SMaxime Henrion 		else
2504b3811c95SMaxime Henrion 			nexti = i + 1;
2505af4358c7SMaxime Henrion 		ld->dc_rx_list[i].dc_next = htole32(DC_RXDESC(sc, nexti));
250696f2e892SBill Paul 	}
250796f2e892SBill Paul 
250896f2e892SBill Paul 	cd->dc_rx_prod = 0;
250956e5e7aeSMaxime Henrion 	bus_dmamap_sync(sc->dc_ltag, sc->dc_lmap,
251056e5e7aeSMaxime Henrion 	    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
251196f2e892SBill Paul 	return (0);
251296f2e892SBill Paul }
251396f2e892SBill Paul 
251496f2e892SBill Paul /*
251596f2e892SBill Paul  * Initialize an RX descriptor and attach an MBUF cluster.
251696f2e892SBill Paul  */
2517e3d2833aSAlfred Perlstein static int
251856e5e7aeSMaxime Henrion dc_newbuf(struct dc_softc *sc, int i, int alloc)
251996f2e892SBill Paul {
252056e5e7aeSMaxime Henrion 	struct mbuf *m_new;
252156e5e7aeSMaxime Henrion 	bus_dmamap_t tmp;
252282a67a70SMarius Strobl 	bus_dma_segment_t segs[1];
252382a67a70SMarius Strobl 	int error, nseg;
252496f2e892SBill Paul 
252556e5e7aeSMaxime Henrion 	if (alloc) {
252656e5e7aeSMaxime Henrion 		m_new = m_getcl(M_DONTWAIT, MT_DATA, M_PKTHDR);
252740129585SLuigi Rizzo 		if (m_new == NULL)
252896f2e892SBill Paul 			return (ENOBUFS);
252996f2e892SBill Paul 	} else {
253056e5e7aeSMaxime Henrion 		m_new = sc->dc_cdata.dc_rx_chain[i];
253196f2e892SBill Paul 		m_new->m_data = m_new->m_ext.ext_buf;
253296f2e892SBill Paul 	}
253356e5e7aeSMaxime Henrion 	m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
253496f2e892SBill Paul 	m_adj(m_new, sizeof(u_int64_t));
253596f2e892SBill Paul 
253696f2e892SBill Paul 	/*
253796f2e892SBill Paul 	 * If this is a PNIC chip, zero the buffer. This is part
253896f2e892SBill Paul 	 * of the workaround for the receive bug in the 82c168 and
253996f2e892SBill Paul 	 * 82c169 chips.
254096f2e892SBill Paul 	 */
254196f2e892SBill Paul 	if (sc->dc_flags & DC_PNIC_RX_BUG_WAR)
25420934f18aSMaxime Henrion 		bzero(mtod(m_new, char *), m_new->m_len);
254396f2e892SBill Paul 
254456e5e7aeSMaxime Henrion 	/* No need to remap the mbuf if we're reusing it. */
254556e5e7aeSMaxime Henrion 	if (alloc) {
254682a67a70SMarius Strobl 		error = bus_dmamap_load_mbuf_sg(sc->dc_mtag, sc->dc_sparemap,
254782a67a70SMarius Strobl 		    m_new, segs, &nseg, 0);
254856e5e7aeSMaxime Henrion 		if (error) {
254956e5e7aeSMaxime Henrion 			m_freem(m_new);
255056e5e7aeSMaxime Henrion 			return (error);
255156e5e7aeSMaxime Henrion 		}
2552ebc284ccSMarius Strobl 		KASSERT(nseg == 1,
2553ebc284ccSMarius Strobl 		    ("%s: wrong number of segments (%d)", __func__, nseg));
255482a67a70SMarius Strobl 		sc->dc_ldata->dc_rx_list[i].dc_data = htole32(segs->ds_addr);
255556e5e7aeSMaxime Henrion 		bus_dmamap_unload(sc->dc_mtag, sc->dc_cdata.dc_rx_map[i]);
255656e5e7aeSMaxime Henrion 		tmp = sc->dc_cdata.dc_rx_map[i];
255756e5e7aeSMaxime Henrion 		sc->dc_cdata.dc_rx_map[i] = sc->dc_sparemap;
255856e5e7aeSMaxime Henrion 		sc->dc_sparemap = tmp;
255996f2e892SBill Paul 		sc->dc_cdata.dc_rx_chain[i] = m_new;
256056e5e7aeSMaxime Henrion 	}
256196f2e892SBill Paul 
2562af4358c7SMaxime Henrion 	sc->dc_ldata->dc_rx_list[i].dc_ctl = htole32(DC_RXCTL_RLINK | DC_RXLEN);
2563af4358c7SMaxime Henrion 	sc->dc_ldata->dc_rx_list[i].dc_status = htole32(DC_RXSTAT_OWN);
256456e5e7aeSMaxime Henrion 	bus_dmamap_sync(sc->dc_mtag, sc->dc_cdata.dc_rx_map[i],
256556e5e7aeSMaxime Henrion 	    BUS_DMASYNC_PREREAD);
256656e5e7aeSMaxime Henrion 	bus_dmamap_sync(sc->dc_ltag, sc->dc_lmap,
256756e5e7aeSMaxime Henrion 	    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
256896f2e892SBill Paul 	return (0);
256996f2e892SBill Paul }
257096f2e892SBill Paul 
257196f2e892SBill Paul /*
257296f2e892SBill Paul  * Grrrrr.
257396f2e892SBill Paul  * The PNIC chip has a terrible bug in it that manifests itself during
257496f2e892SBill Paul  * periods of heavy activity. The exact mode of failure if difficult to
257596f2e892SBill Paul  * pinpoint: sometimes it only happens in promiscuous mode, sometimes it
257696f2e892SBill Paul  * will happen on slow machines. The bug is that sometimes instead of
257796f2e892SBill Paul  * uploading one complete frame during reception, it uploads what looks
257896f2e892SBill Paul  * like the entire contents of its FIFO memory. The frame we want is at
257996f2e892SBill Paul  * the end of the whole mess, but we never know exactly how much data has
258096f2e892SBill Paul  * been uploaded, so salvaging the frame is hard.
258196f2e892SBill Paul  *
258296f2e892SBill Paul  * There is only one way to do it reliably, and it's disgusting.
258396f2e892SBill Paul  * Here's what we know:
258496f2e892SBill Paul  *
258596f2e892SBill Paul  * - We know there will always be somewhere between one and three extra
258696f2e892SBill Paul  *   descriptors uploaded.
258796f2e892SBill Paul  *
258896f2e892SBill Paul  * - We know the desired received frame will always be at the end of the
258996f2e892SBill Paul  *   total data upload.
259096f2e892SBill Paul  *
259196f2e892SBill Paul  * - We know the size of the desired received frame because it will be
259296f2e892SBill Paul  *   provided in the length field of the status word in the last descriptor.
259396f2e892SBill Paul  *
259496f2e892SBill Paul  * Here's what we do:
259596f2e892SBill Paul  *
259696f2e892SBill Paul  * - When we allocate buffers for the receive ring, we bzero() them.
259796f2e892SBill Paul  *   This means that we know that the buffer contents should be all
259896f2e892SBill Paul  *   zeros, except for data uploaded by the chip.
259996f2e892SBill Paul  *
260096f2e892SBill Paul  * - We also force the PNIC chip to upload frames that include the
260196f2e892SBill Paul  *   ethernet CRC at the end.
260296f2e892SBill Paul  *
260396f2e892SBill Paul  * - We gather all of the bogus frame data into a single buffer.
260496f2e892SBill Paul  *
260596f2e892SBill Paul  * - We then position a pointer at the end of this buffer and scan
260696f2e892SBill Paul  *   backwards until we encounter the first non-zero byte of data.
260796f2e892SBill Paul  *   This is the end of the received frame. We know we will encounter
260896f2e892SBill Paul  *   some data at the end of the frame because the CRC will always be
260996f2e892SBill Paul  *   there, so even if the sender transmits a packet of all zeros,
261096f2e892SBill Paul  *   we won't be fooled.
261196f2e892SBill Paul  *
261296f2e892SBill Paul  * - We know the size of the actual received frame, so we subtract
261396f2e892SBill Paul  *   that value from the current pointer location. This brings us
261496f2e892SBill Paul  *   to the start of the actual received packet.
261596f2e892SBill Paul  *
261696f2e892SBill Paul  * - We copy this into an mbuf and pass it on, along with the actual
261796f2e892SBill Paul  *   frame length.
261896f2e892SBill Paul  *
261996f2e892SBill Paul  * The performance hit is tremendous, but it beats dropping frames all
262096f2e892SBill Paul  * the time.
262196f2e892SBill Paul  */
262296f2e892SBill Paul 
262396f2e892SBill Paul #define DC_WHOLEFRAME	(DC_RXSTAT_FIRSTFRAG | DC_RXSTAT_LASTFRAG)
2624e3d2833aSAlfred Perlstein static void
26250934f18aSMaxime Henrion dc_pnic_rx_bug_war(struct dc_softc *sc, int idx)
262696f2e892SBill Paul {
262796f2e892SBill Paul 	struct dc_desc *cur_rx;
262896f2e892SBill Paul 	struct dc_desc *c = NULL;
262996f2e892SBill Paul 	struct mbuf *m = NULL;
263096f2e892SBill Paul 	unsigned char *ptr;
263196f2e892SBill Paul 	int i, total_len;
263296f2e892SBill Paul 	u_int32_t rxstat = 0;
263396f2e892SBill Paul 
263496f2e892SBill Paul 	i = sc->dc_pnic_rx_bug_save;
263596f2e892SBill Paul 	cur_rx = &sc->dc_ldata->dc_rx_list[idx];
263696f2e892SBill Paul 	ptr = sc->dc_pnic_rx_buf;
26371edc4c46SMaxime Henrion 	bzero(ptr, DC_RXLEN * 5);
263896f2e892SBill Paul 
263996f2e892SBill Paul 	/* Copy all the bytes from the bogus buffers. */
264096f2e892SBill Paul 	while (1) {
264196f2e892SBill Paul 		c = &sc->dc_ldata->dc_rx_list[i];
2642af4358c7SMaxime Henrion 		rxstat = le32toh(c->dc_status);
264396f2e892SBill Paul 		m = sc->dc_cdata.dc_rx_chain[i];
264496f2e892SBill Paul 		bcopy(mtod(m, char *), ptr, DC_RXLEN);
264596f2e892SBill Paul 		ptr += DC_RXLEN;
264696f2e892SBill Paul 		/* If this is the last buffer, break out. */
264796f2e892SBill Paul 		if (i == idx || rxstat & DC_RXSTAT_LASTFRAG)
264896f2e892SBill Paul 			break;
264956e5e7aeSMaxime Henrion 		dc_newbuf(sc, i, 0);
265096f2e892SBill Paul 		DC_INC(i, DC_RX_LIST_CNT);
265196f2e892SBill Paul 	}
265296f2e892SBill Paul 
265396f2e892SBill Paul 	/* Find the length of the actual receive frame. */
265496f2e892SBill Paul 	total_len = DC_RXBYTES(rxstat);
265596f2e892SBill Paul 
265696f2e892SBill Paul 	/* Scan backwards until we hit a non-zero byte. */
265796f2e892SBill Paul 	while (*ptr == 0x00)
265896f2e892SBill Paul 		ptr--;
265996f2e892SBill Paul 
266096f2e892SBill Paul 	/* Round off. */
266196f2e892SBill Paul 	if ((uintptr_t)(ptr) & 0x3)
266296f2e892SBill Paul 		ptr -= 1;
266396f2e892SBill Paul 
266496f2e892SBill Paul 	/* Now find the start of the frame. */
266596f2e892SBill Paul 	ptr -= total_len;
266696f2e892SBill Paul 	if (ptr < sc->dc_pnic_rx_buf)
266796f2e892SBill Paul 		ptr = sc->dc_pnic_rx_buf;
266896f2e892SBill Paul 
266996f2e892SBill Paul 	/*
267096f2e892SBill Paul 	 * Now copy the salvaged frame to the last mbuf and fake up
267196f2e892SBill Paul 	 * the status word to make it look like a successful
267296f2e892SBill Paul 	 * frame reception.
267396f2e892SBill Paul 	 */
267496f2e892SBill Paul 	bcopy(ptr, mtod(m, char *), total_len);
2675af4358c7SMaxime Henrion 	cur_rx->dc_status = htole32(rxstat | DC_RXSTAT_FIRSTFRAG);
267696f2e892SBill Paul }
267796f2e892SBill Paul 
267896f2e892SBill Paul /*
267973bf949cSBill Paul  * This routine searches the RX ring for dirty descriptors in the
268073bf949cSBill Paul  * event that the rxeof routine falls out of sync with the chip's
268173bf949cSBill Paul  * current descriptor pointer. This may happen sometimes as a result
268273bf949cSBill Paul  * of a "no RX buffer available" condition that happens when the chip
268373bf949cSBill Paul  * consumes all of the RX buffers before the driver has a chance to
268473bf949cSBill Paul  * process the RX ring. This routine may need to be called more than
268573bf949cSBill Paul  * once to bring the driver back in sync with the chip, however we
268673bf949cSBill Paul  * should still be getting RX DONE interrupts to drive the search
268773bf949cSBill Paul  * for new packets in the RX ring, so we should catch up eventually.
268873bf949cSBill Paul  */
2689e3d2833aSAlfred Perlstein static int
26900934f18aSMaxime Henrion dc_rx_resync(struct dc_softc *sc)
269173bf949cSBill Paul {
269273bf949cSBill Paul 	struct dc_desc *cur_rx;
26930934f18aSMaxime Henrion 	int i, pos;
269473bf949cSBill Paul 
269573bf949cSBill Paul 	pos = sc->dc_cdata.dc_rx_prod;
269673bf949cSBill Paul 
269773bf949cSBill Paul 	for (i = 0; i < DC_RX_LIST_CNT; i++) {
269873bf949cSBill Paul 		cur_rx = &sc->dc_ldata->dc_rx_list[pos];
2699af4358c7SMaxime Henrion 		if (!(le32toh(cur_rx->dc_status) & DC_RXSTAT_OWN))
270073bf949cSBill Paul 			break;
270173bf949cSBill Paul 		DC_INC(pos, DC_RX_LIST_CNT);
270273bf949cSBill Paul 	}
270373bf949cSBill Paul 
270473bf949cSBill Paul 	/* If the ring really is empty, then just return. */
270573bf949cSBill Paul 	if (i == DC_RX_LIST_CNT)
270673bf949cSBill Paul 		return (0);
270773bf949cSBill Paul 
270873bf949cSBill Paul 	/* We've fallen behing the chip: catch it. */
270973bf949cSBill Paul 	sc->dc_cdata.dc_rx_prod = pos;
271073bf949cSBill Paul 
271173bf949cSBill Paul 	return (EAGAIN);
271273bf949cSBill Paul }
271373bf949cSBill Paul 
271473bf949cSBill Paul /*
271596f2e892SBill Paul  * A frame has been uploaded: pass the resulting mbuf chain up to
271696f2e892SBill Paul  * the higher level protocols.
271796f2e892SBill Paul  */
27181abcdbd1SAttilio Rao static int
27190934f18aSMaxime Henrion dc_rxeof(struct dc_softc *sc)
272096f2e892SBill Paul {
2721432120f2SMarius Strobl 	struct mbuf *m, *m0;
272296f2e892SBill Paul 	struct ifnet *ifp;
272396f2e892SBill Paul 	struct dc_desc *cur_rx;
27241abcdbd1SAttilio Rao 	int i, total_len, rx_npkts;
272596f2e892SBill Paul 	u_int32_t rxstat;
272696f2e892SBill Paul 
27275120abbfSSam Leffler 	DC_LOCK_ASSERT(sc);
27285120abbfSSam Leffler 
2729fc74a9f9SBrooks Davis 	ifp = sc->dc_ifp;
273096f2e892SBill Paul 	i = sc->dc_cdata.dc_rx_prod;
27311abcdbd1SAttilio Rao 	total_len = 0;
27321abcdbd1SAttilio Rao 	rx_npkts = 0;
273396f2e892SBill Paul 
273456e5e7aeSMaxime Henrion 	bus_dmamap_sync(sc->dc_ltag, sc->dc_lmap, BUS_DMASYNC_POSTREAD);
2735af4358c7SMaxime Henrion 	while (!(le32toh(sc->dc_ldata->dc_rx_list[i].dc_status) &
2736af4358c7SMaxime Henrion 	    DC_RXSTAT_OWN)) {
2737e4fc250cSLuigi Rizzo #ifdef DEVICE_POLLING
273840929967SGleb Smirnoff 		if (ifp->if_capenable & IFCAP_POLLING) {
2739e4fc250cSLuigi Rizzo 			if (sc->rxcycles <= 0)
2740e4fc250cSLuigi Rizzo 				break;
2741e4fc250cSLuigi Rizzo 			sc->rxcycles--;
2742e4fc250cSLuigi Rizzo 		}
27430934f18aSMaxime Henrion #endif
274496f2e892SBill Paul 		cur_rx = &sc->dc_ldata->dc_rx_list[i];
2745af4358c7SMaxime Henrion 		rxstat = le32toh(cur_rx->dc_status);
274696f2e892SBill Paul 		m = sc->dc_cdata.dc_rx_chain[i];
274756e5e7aeSMaxime Henrion 		bus_dmamap_sync(sc->dc_mtag, sc->dc_cdata.dc_rx_map[i],
274856e5e7aeSMaxime Henrion 		    BUS_DMASYNC_POSTREAD);
274996f2e892SBill Paul 		total_len = DC_RXBYTES(rxstat);
275096f2e892SBill Paul 
275196f2e892SBill Paul 		if (sc->dc_flags & DC_PNIC_RX_BUG_WAR) {
275296f2e892SBill Paul 			if ((rxstat & DC_WHOLEFRAME) != DC_WHOLEFRAME) {
275396f2e892SBill Paul 				if (rxstat & DC_RXSTAT_FIRSTFRAG)
275496f2e892SBill Paul 					sc->dc_pnic_rx_bug_save = i;
275596f2e892SBill Paul 				if ((rxstat & DC_RXSTAT_LASTFRAG) == 0) {
275696f2e892SBill Paul 					DC_INC(i, DC_RX_LIST_CNT);
275796f2e892SBill Paul 					continue;
275896f2e892SBill Paul 				}
275996f2e892SBill Paul 				dc_pnic_rx_bug_war(sc, i);
2760af4358c7SMaxime Henrion 				rxstat = le32toh(cur_rx->dc_status);
276196f2e892SBill Paul 				total_len = DC_RXBYTES(rxstat);
276296f2e892SBill Paul 			}
276396f2e892SBill Paul 		}
276496f2e892SBill Paul 
276596f2e892SBill Paul 		/*
276696f2e892SBill Paul 		 * If an error occurs, update stats, clear the
276796f2e892SBill Paul 		 * status word and leave the mbuf cluster in place:
276896f2e892SBill Paul 		 * it should simply get re-used next time this descriptor
2769db40c1aeSDoug Ambrisko 		 * comes up in the ring.  However, don't report long
27700934f18aSMaxime Henrion 		 * frames as errors since they could be vlans.
277196f2e892SBill Paul 		 */
2772db40c1aeSDoug Ambrisko 		if ((rxstat & DC_RXSTAT_RXERR)) {
2773db40c1aeSDoug Ambrisko 			if (!(rxstat & DC_RXSTAT_GIANT) ||
2774db40c1aeSDoug Ambrisko 			    (rxstat & (DC_RXSTAT_CRCERR | DC_RXSTAT_DRIBBLE |
2775db40c1aeSDoug Ambrisko 				       DC_RXSTAT_MIIERE | DC_RXSTAT_COLLSEEN |
2776db40c1aeSDoug Ambrisko 				       DC_RXSTAT_RUNT   | DC_RXSTAT_DE))) {
277796f2e892SBill Paul 				ifp->if_ierrors++;
277896f2e892SBill Paul 				if (rxstat & DC_RXSTAT_COLLSEEN)
277996f2e892SBill Paul 					ifp->if_collisions++;
278056e5e7aeSMaxime Henrion 				dc_newbuf(sc, i, 0);
278196f2e892SBill Paul 				if (rxstat & DC_RXSTAT_CRCERR) {
278296f2e892SBill Paul 					DC_INC(i, DC_RX_LIST_CNT);
278396f2e892SBill Paul 					continue;
278496f2e892SBill Paul 				} else {
2785c8b27acaSJohn Baldwin 					dc_init_locked(sc);
27861abcdbd1SAttilio Rao 					return (rx_npkts);
278796f2e892SBill Paul 				}
278896f2e892SBill Paul 			}
2789db40c1aeSDoug Ambrisko 		}
279096f2e892SBill Paul 
279196f2e892SBill Paul 		/* No errors; receive the packet. */
279296f2e892SBill Paul 		total_len -= ETHER_CRC_LEN;
2793432120f2SMarius Strobl #ifdef __NO_STRICT_ALIGNMENT
279401faf54bSLuigi Rizzo 		/*
2795432120f2SMarius Strobl 		 * On architectures without alignment problems we try to
279601faf54bSLuigi Rizzo 		 * allocate a new buffer for the receive ring, and pass up
279701faf54bSLuigi Rizzo 		 * the one where the packet is already, saving the expensive
279801faf54bSLuigi Rizzo 		 * copy done in m_devget().
279901faf54bSLuigi Rizzo 		 * If we are on an architecture with alignment problems, or
280001faf54bSLuigi Rizzo 		 * if the allocation fails, then use m_devget and leave the
280101faf54bSLuigi Rizzo 		 * existing buffer in the receive ring.
280201faf54bSLuigi Rizzo 		 */
2803432120f2SMarius Strobl 		if (dc_newbuf(sc, i, 1) == 0) {
280401faf54bSLuigi Rizzo 			m->m_pkthdr.rcvif = ifp;
280501faf54bSLuigi Rizzo 			m->m_pkthdr.len = m->m_len = total_len;
280601faf54bSLuigi Rizzo 			DC_INC(i, DC_RX_LIST_CNT);
280701faf54bSLuigi Rizzo 		} else
280801faf54bSLuigi Rizzo #endif
280901faf54bSLuigi Rizzo 		{
281001faf54bSLuigi Rizzo 			m0 = m_devget(mtod(m, char *), total_len,
281101faf54bSLuigi Rizzo 				ETHER_ALIGN, ifp, NULL);
281256e5e7aeSMaxime Henrion 			dc_newbuf(sc, i, 0);
281396f2e892SBill Paul 			DC_INC(i, DC_RX_LIST_CNT);
281496f2e892SBill Paul 			if (m0 == NULL) {
281596f2e892SBill Paul 				ifp->if_ierrors++;
281696f2e892SBill Paul 				continue;
281796f2e892SBill Paul 			}
281896f2e892SBill Paul 			m = m0;
281901faf54bSLuigi Rizzo 		}
282096f2e892SBill Paul 
282196f2e892SBill Paul 		ifp->if_ipackets++;
28225120abbfSSam Leffler 		DC_UNLOCK(sc);
28239ef8b520SSam Leffler 		(*ifp->if_input)(ifp, m);
28245120abbfSSam Leffler 		DC_LOCK(sc);
28251abcdbd1SAttilio Rao 		rx_npkts++;
282696f2e892SBill Paul 	}
282796f2e892SBill Paul 
282896f2e892SBill Paul 	sc->dc_cdata.dc_rx_prod = i;
28291abcdbd1SAttilio Rao 	return (rx_npkts);
283096f2e892SBill Paul }
283196f2e892SBill Paul 
283296f2e892SBill Paul /*
283396f2e892SBill Paul  * A frame was downloaded to the chip. It's safe for us to clean up
283496f2e892SBill Paul  * the list buffers.
283596f2e892SBill Paul  */
2836e3d2833aSAlfred Perlstein static void
28370934f18aSMaxime Henrion dc_txeof(struct dc_softc *sc)
283896f2e892SBill Paul {
283996f2e892SBill Paul 	struct dc_desc *cur_tx = NULL;
284096f2e892SBill Paul 	struct ifnet *ifp;
284196f2e892SBill Paul 	int idx;
2842af4358c7SMaxime Henrion 	u_int32_t ctl, txstat;
284396f2e892SBill Paul 
284406d23883SPyun YongHyeon 	if (sc->dc_cdata.dc_tx_cnt == 0)
284506d23883SPyun YongHyeon 		return;
284606d23883SPyun YongHyeon 
2847fc74a9f9SBrooks Davis 	ifp = sc->dc_ifp;
284896f2e892SBill Paul 
284996f2e892SBill Paul 	/*
285096f2e892SBill Paul 	 * Go through our tx list and free mbufs for those
285196f2e892SBill Paul 	 * frames that have been transmitted.
285296f2e892SBill Paul 	 */
285356e5e7aeSMaxime Henrion 	bus_dmamap_sync(sc->dc_ltag, sc->dc_lmap, BUS_DMASYNC_POSTREAD);
285496f2e892SBill Paul 	idx = sc->dc_cdata.dc_tx_cons;
285596f2e892SBill Paul 	while (idx != sc->dc_cdata.dc_tx_prod) {
285696f2e892SBill Paul 
285796f2e892SBill Paul 		cur_tx = &sc->dc_ldata->dc_tx_list[idx];
2858af4358c7SMaxime Henrion 		txstat = le32toh(cur_tx->dc_status);
2859af4358c7SMaxime Henrion 		ctl = le32toh(cur_tx->dc_ctl);
286096f2e892SBill Paul 
286196f2e892SBill Paul 		if (txstat & DC_TXSTAT_OWN)
286296f2e892SBill Paul 			break;
286396f2e892SBill Paul 
28644ff4a9beSDon Lewis 		if (!(ctl & DC_TXCTL_LASTFRAG) || ctl & DC_TXCTL_SETUP) {
2865af4358c7SMaxime Henrion 			if (ctl & DC_TXCTL_SETUP) {
286696f2e892SBill Paul 				/*
286796f2e892SBill Paul 				 * Yes, the PNIC is so brain damaged
286896f2e892SBill Paul 				 * that it will sometimes generate a TX
286996f2e892SBill Paul 				 * underrun error while DMAing the RX
287096f2e892SBill Paul 				 * filter setup frame. If we detect this,
287196f2e892SBill Paul 				 * we have to send the setup frame again,
287296f2e892SBill Paul 				 * or else the filter won't be programmed
287396f2e892SBill Paul 				 * correctly.
287496f2e892SBill Paul 				 */
287596f2e892SBill Paul 				if (DC_IS_PNIC(sc)) {
287696f2e892SBill Paul 					if (txstat & DC_TXSTAT_ERRSUM)
287796f2e892SBill Paul 						dc_setfilt(sc);
287896f2e892SBill Paul 				}
287996f2e892SBill Paul 				sc->dc_cdata.dc_tx_chain[idx] = NULL;
288096f2e892SBill Paul 			}
2881bcb9ef4fSLuigi Rizzo 			sc->dc_cdata.dc_tx_cnt--;
288296f2e892SBill Paul 			DC_INC(idx, DC_TX_LIST_CNT);
288396f2e892SBill Paul 			continue;
288496f2e892SBill Paul 		}
288596f2e892SBill Paul 
288629a2220aSBill Paul 		if (DC_IS_XIRCOM(sc) || DC_IS_CONEXANT(sc)) {
2887feb78939SJonathan Chen 			/*
2888feb78939SJonathan Chen 			 * XXX: Why does my Xircom taunt me so?
2889feb78939SJonathan Chen 			 * For some reason it likes setting the CARRLOST flag
289029a2220aSBill Paul 			 * even when the carrier is there. wtf?!?
289129a2220aSBill Paul 			 * Who knows, but Conexant chips have the
289229a2220aSBill Paul 			 * same problem. Maybe they took lessons
289329a2220aSBill Paul 			 * from Xircom.
289429a2220aSBill Paul 			 */
2895feb78939SJonathan Chen 			if (/*sc->dc_type == DC_TYPE_21143 &&*/
2896feb78939SJonathan Chen 			    sc->dc_pmode == DC_PMODE_MII &&
2897feb78939SJonathan Chen 			    ((txstat & 0xFFFF) & ~(DC_TXSTAT_ERRSUM |
2898feb78939SJonathan Chen 			    DC_TXSTAT_NOCARRIER)))
2899feb78939SJonathan Chen 				txstat &= ~DC_TXSTAT_ERRSUM;
2900feb78939SJonathan Chen 		} else {
290196f2e892SBill Paul 			if (/*sc->dc_type == DC_TYPE_21143 &&*/
290296f2e892SBill Paul 			    sc->dc_pmode == DC_PMODE_MII &&
290396f2e892SBill Paul 			    ((txstat & 0xFFFF) & ~(DC_TXSTAT_ERRSUM |
290496f2e892SBill Paul 			    DC_TXSTAT_NOCARRIER | DC_TXSTAT_CARRLOST)))
290596f2e892SBill Paul 				txstat &= ~DC_TXSTAT_ERRSUM;
2906feb78939SJonathan Chen 		}
290796f2e892SBill Paul 
290896f2e892SBill Paul 		if (txstat & DC_TXSTAT_ERRSUM) {
290996f2e892SBill Paul 			ifp->if_oerrors++;
291096f2e892SBill Paul 			if (txstat & DC_TXSTAT_EXCESSCOLL)
291196f2e892SBill Paul 				ifp->if_collisions++;
291296f2e892SBill Paul 			if (txstat & DC_TXSTAT_LATECOLL)
291396f2e892SBill Paul 				ifp->if_collisions++;
291496f2e892SBill Paul 			if (!(txstat & DC_TXSTAT_UNDERRUN)) {
2915c8b27acaSJohn Baldwin 				dc_init_locked(sc);
291696f2e892SBill Paul 				return;
291796f2e892SBill Paul 			}
291852c43a47SPyun YongHyeon 		} else
291952c43a47SPyun YongHyeon 			ifp->if_opackets++;
292096f2e892SBill Paul 		ifp->if_collisions += (txstat & DC_TXSTAT_COLLCNT) >> 3;
292196f2e892SBill Paul 
292296f2e892SBill Paul 		if (sc->dc_cdata.dc_tx_chain[idx] != NULL) {
292356e5e7aeSMaxime Henrion 			bus_dmamap_sync(sc->dc_mtag,
292456e5e7aeSMaxime Henrion 			    sc->dc_cdata.dc_tx_map[idx],
292556e5e7aeSMaxime Henrion 			    BUS_DMASYNC_POSTWRITE);
292656e5e7aeSMaxime Henrion 			bus_dmamap_unload(sc->dc_mtag,
292756e5e7aeSMaxime Henrion 			    sc->dc_cdata.dc_tx_map[idx]);
292896f2e892SBill Paul 			m_freem(sc->dc_cdata.dc_tx_chain[idx]);
292996f2e892SBill Paul 			sc->dc_cdata.dc_tx_chain[idx] = NULL;
293096f2e892SBill Paul 		}
293196f2e892SBill Paul 
293296f2e892SBill Paul 		sc->dc_cdata.dc_tx_cnt--;
293396f2e892SBill Paul 		DC_INC(idx, DC_TX_LIST_CNT);
293496f2e892SBill Paul 	}
293596f2e892SBill Paul 	sc->dc_cdata.dc_tx_cons = idx;
293682a67a70SMarius Strobl 
293782a67a70SMarius Strobl 	if (DC_TX_LIST_CNT - sc->dc_cdata.dc_tx_cnt > DC_TX_LIST_RSVD)
293813f4c340SRobert Watson 		ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
293982a67a70SMarius Strobl 
29403e0e6726SMarius Strobl 	if (sc->dc_cdata.dc_tx_cnt == 0)
29413e0e6726SMarius Strobl 		sc->dc_wdog_timer = 0;
294296f2e892SBill Paul }
294396f2e892SBill Paul 
2944e3d2833aSAlfred Perlstein static void
29450934f18aSMaxime Henrion dc_tick(void *xsc)
294696f2e892SBill Paul {
294796f2e892SBill Paul 	struct dc_softc *sc;
294896f2e892SBill Paul 	struct mii_data *mii;
294996f2e892SBill Paul 	struct ifnet *ifp;
295096f2e892SBill Paul 	u_int32_t r;
295196f2e892SBill Paul 
295296f2e892SBill Paul 	sc = xsc;
2953c8b27acaSJohn Baldwin 	DC_LOCK_ASSERT(sc);
2954fc74a9f9SBrooks Davis 	ifp = sc->dc_ifp;
295596f2e892SBill Paul 	mii = device_get_softc(sc->dc_miibus);
295696f2e892SBill Paul 
295706d23883SPyun YongHyeon 	/*
295806d23883SPyun YongHyeon 	 * Reclaim transmitted frames for controllers that do
295906d23883SPyun YongHyeon 	 * not generate TX completion interrupt for every frame.
296006d23883SPyun YongHyeon 	 */
296106d23883SPyun YongHyeon 	if (sc->dc_flags & DC_TX_USE_TX_INTR)
296206d23883SPyun YongHyeon 		dc_txeof(sc);
296306d23883SPyun YongHyeon 
296496f2e892SBill Paul 	if (sc->dc_flags & DC_REDUCED_MII_POLL) {
2965318b02fdSBill Paul 		if (sc->dc_flags & DC_21143_NWAY) {
2966318b02fdSBill Paul 			r = CSR_READ_4(sc, DC_10BTSTAT);
2967318b02fdSBill Paul 			if (IFM_SUBTYPE(mii->mii_media_active) ==
2968318b02fdSBill Paul 			    IFM_100_TX && (r & DC_TSTAT_LS100)) {
296996f2e892SBill Paul 				sc->dc_link = 0;
2970318b02fdSBill Paul 				mii_mediachg(mii);
2971318b02fdSBill Paul 			}
2972318b02fdSBill Paul 			if (IFM_SUBTYPE(mii->mii_media_active) ==
2973318b02fdSBill Paul 			    IFM_10_T && (r & DC_TSTAT_LS10)) {
2974318b02fdSBill Paul 				sc->dc_link = 0;
2975318b02fdSBill Paul 				mii_mediachg(mii);
2976318b02fdSBill Paul 			}
2977d675147eSBill Paul 			if (sc->dc_link == 0)
297896f2e892SBill Paul 				mii_tick(mii);
297996f2e892SBill Paul 		} else {
2980d0d67284SMarius Strobl 			/*
2981d0d67284SMarius Strobl 			 * For NICs which never report DC_RXSTATE_WAIT, we
2982d0d67284SMarius Strobl 			 * have to bite the bullet...
2983d0d67284SMarius Strobl 			 */
2984d0d67284SMarius Strobl 			if ((DC_HAS_BROKEN_RXSTATE(sc) || (CSR_READ_4(sc,
2985d0d67284SMarius Strobl 			    DC_ISR) & DC_ISR_RX_STATE) == DC_RXSTATE_WAIT) &&
2986d314ebf5SPyun YongHyeon 			    sc->dc_cdata.dc_tx_cnt == 0)
298796f2e892SBill Paul 				mii_tick(mii);
2988259b8d84SMartin Blapp 		}
298996f2e892SBill Paul 	} else
299096f2e892SBill Paul 		mii_tick(mii);
299196f2e892SBill Paul 
299296f2e892SBill Paul 	/*
299396f2e892SBill Paul 	 * When the init routine completes, we expect to be able to send
299496f2e892SBill Paul 	 * packets right away, and in fact the network code will send a
299596f2e892SBill Paul 	 * gratuitous ARP the moment the init routine marks the interface
299696f2e892SBill Paul 	 * as running. However, even though the MAC may have been initialized,
299796f2e892SBill Paul 	 * there may be a delay of a few seconds before the PHY completes
299896f2e892SBill Paul 	 * autonegotiation and the link is brought up. Any transmissions
299996f2e892SBill Paul 	 * made during that delay will be lost. Dealing with this is tricky:
300096f2e892SBill Paul 	 * we can't just pause in the init routine while waiting for the
300196f2e892SBill Paul 	 * PHY to come ready since that would bring the whole system to
300296f2e892SBill Paul 	 * a screeching halt for several seconds.
300396f2e892SBill Paul 	 *
300496f2e892SBill Paul 	 * What we do here is prevent the TX start routine from sending
300596f2e892SBill Paul 	 * any packets until a link has been established. After the
300696f2e892SBill Paul 	 * interface has been initialized, the tick routine will poll
300796f2e892SBill Paul 	 * the state of the PHY until the IFM_ACTIVE flag is set. Until
300896f2e892SBill Paul 	 * that time, packets will stay in the send queue, and once the
300996f2e892SBill Paul 	 * link comes up, they will be flushed out to the wire.
301096f2e892SBill Paul 	 */
3011d314ebf5SPyun YongHyeon 	if (sc->dc_link != 0 && !IFQ_DRV_IS_EMPTY(&ifp->if_snd))
3012c8b27acaSJohn Baldwin 		dc_start_locked(ifp);
301396f2e892SBill Paul 
3014318b02fdSBill Paul 	if (sc->dc_flags & DC_21143_NWAY && !sc->dc_link)
3015b50c6312SJonathan Lemon 		callout_reset(&sc->dc_stat_ch, hz/10, dc_tick, sc);
3016318b02fdSBill Paul 	else
3017b50c6312SJonathan Lemon 		callout_reset(&sc->dc_stat_ch, hz, dc_tick, sc);
301896f2e892SBill Paul }
301996f2e892SBill Paul 
3020d467c136SBill Paul /*
3021d467c136SBill Paul  * A transmit underrun has occurred.  Back off the transmit threshold,
3022d467c136SBill Paul  * or switch to store and forward mode if we have to.
3023d467c136SBill Paul  */
3024e3d2833aSAlfred Perlstein static void
30250934f18aSMaxime Henrion dc_tx_underrun(struct dc_softc *sc)
3026d467c136SBill Paul {
3027d467c136SBill Paul 	u_int32_t isr;
3028d467c136SBill Paul 	int i;
3029d467c136SBill Paul 
3030d467c136SBill Paul 	if (DC_IS_DAVICOM(sc))
3031c8b27acaSJohn Baldwin 		dc_init_locked(sc);
3032d467c136SBill Paul 
3033d467c136SBill Paul 	if (DC_IS_INTEL(sc)) {
3034d467c136SBill Paul 		/*
3035d467c136SBill Paul 		 * The real 21143 requires that the transmitter be idle
3036d467c136SBill Paul 		 * in order to change the transmit threshold or store
3037d467c136SBill Paul 		 * and forward state.
3038d467c136SBill Paul 		 */
3039d467c136SBill Paul 		DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_TX_ON);
3040d467c136SBill Paul 
3041d467c136SBill Paul 		for (i = 0; i < DC_TIMEOUT; i++) {
3042d467c136SBill Paul 			isr = CSR_READ_4(sc, DC_ISR);
3043d467c136SBill Paul 			if (isr & DC_ISR_TX_IDLE)
3044d467c136SBill Paul 				break;
3045d467c136SBill Paul 			DELAY(10);
3046d467c136SBill Paul 		}
3047d467c136SBill Paul 		if (i == DC_TIMEOUT) {
30486b9f5c94SGleb Smirnoff 			device_printf(sc->dc_dev,
3049432120f2SMarius Strobl 			    "%s: failed to force tx to idle state\n",
3050432120f2SMarius Strobl 			    __func__);
3051c8b27acaSJohn Baldwin 			dc_init_locked(sc);
3052d467c136SBill Paul 		}
3053d467c136SBill Paul 	}
3054d467c136SBill Paul 
30556b9f5c94SGleb Smirnoff 	device_printf(sc->dc_dev, "TX underrun -- ");
3056d467c136SBill Paul 	sc->dc_txthresh += DC_TXTHRESH_INC;
3057d467c136SBill Paul 	if (sc->dc_txthresh > DC_TXTHRESH_MAX) {
3058d467c136SBill Paul 		printf("using store and forward mode\n");
3059d467c136SBill Paul 		DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_STORENFWD);
3060d467c136SBill Paul 	} else {
3061d467c136SBill Paul 		printf("increasing TX threshold\n");
3062d467c136SBill Paul 		DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_TX_THRESH);
3063d467c136SBill Paul 		DC_SETBIT(sc, DC_NETCFG, sc->dc_txthresh);
3064d467c136SBill Paul 	}
3065d467c136SBill Paul 
3066d467c136SBill Paul 	if (DC_IS_INTEL(sc))
3067d467c136SBill Paul 		DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_TX_ON);
3068d467c136SBill Paul }
3069d467c136SBill Paul 
3070e4fc250cSLuigi Rizzo #ifdef DEVICE_POLLING
3071e4fc250cSLuigi Rizzo static poll_handler_t dc_poll;
3072e4fc250cSLuigi Rizzo 
30731abcdbd1SAttilio Rao static int
3074e4fc250cSLuigi Rizzo dc_poll(struct ifnet *ifp, enum poll_cmd cmd, int count)
3075e4fc250cSLuigi Rizzo {
3076e4fc250cSLuigi Rizzo 	struct dc_softc *sc = ifp->if_softc;
30771abcdbd1SAttilio Rao 	int rx_npkts = 0;
3078e4fc250cSLuigi Rizzo 
307940929967SGleb Smirnoff 	DC_LOCK(sc);
308040929967SGleb Smirnoff 
308140929967SGleb Smirnoff 	if (!(ifp->if_drv_flags & IFF_DRV_RUNNING)) {
308240929967SGleb Smirnoff 		DC_UNLOCK(sc);
30831abcdbd1SAttilio Rao 		return (rx_npkts);
3084e4fc250cSLuigi Rizzo 	}
308540929967SGleb Smirnoff 
3086e4fc250cSLuigi Rizzo 	sc->rxcycles = count;
30871abcdbd1SAttilio Rao 	rx_npkts = dc_rxeof(sc);
3088e4fc250cSLuigi Rizzo 	dc_txeof(sc);
308913f4c340SRobert Watson 	if (!IFQ_IS_EMPTY(&ifp->if_snd) &&
309013f4c340SRobert Watson 	    !(ifp->if_drv_flags & IFF_DRV_OACTIVE))
3091c8b27acaSJohn Baldwin 		dc_start_locked(ifp);
3092e4fc250cSLuigi Rizzo 
3093e4fc250cSLuigi Rizzo 	if (cmd == POLL_AND_CHECK_STATUS) { /* also check status register */
3094e4fc250cSLuigi Rizzo 		u_int32_t	status;
3095e4fc250cSLuigi Rizzo 
3096e4fc250cSLuigi Rizzo 		status = CSR_READ_4(sc, DC_ISR);
3097e4fc250cSLuigi Rizzo 		status &= (DC_ISR_RX_WATDOGTIMEO | DC_ISR_RX_NOBUF |
3098e4fc250cSLuigi Rizzo 			DC_ISR_TX_NOBUF | DC_ISR_TX_IDLE | DC_ISR_TX_UNDERRUN |
3099e4fc250cSLuigi Rizzo 			DC_ISR_BUS_ERR);
31005120abbfSSam Leffler 		if (!status) {
31015120abbfSSam Leffler 			DC_UNLOCK(sc);
31021abcdbd1SAttilio Rao 			return (rx_npkts);
31035120abbfSSam Leffler 		}
3104e4fc250cSLuigi Rizzo 		/* ack what we have */
3105e4fc250cSLuigi Rizzo 		CSR_WRITE_4(sc, DC_ISR, status);
3106e4fc250cSLuigi Rizzo 
3107e4fc250cSLuigi Rizzo 		if (status & (DC_ISR_RX_WATDOGTIMEO | DC_ISR_RX_NOBUF)) {
3108e4fc250cSLuigi Rizzo 			u_int32_t r = CSR_READ_4(sc, DC_FRAMESDISCARDED);
3109e4fc250cSLuigi Rizzo 			ifp->if_ierrors += (r & 0xffff) + ((r >> 17) & 0x7ff);
3110e4fc250cSLuigi Rizzo 
3111e4fc250cSLuigi Rizzo 			if (dc_rx_resync(sc))
3112e4fc250cSLuigi Rizzo 				dc_rxeof(sc);
3113e4fc250cSLuigi Rizzo 		}
3114e4fc250cSLuigi Rizzo 		/* restart transmit unit if necessary */
3115e4fc250cSLuigi Rizzo 		if (status & DC_ISR_TX_IDLE && sc->dc_cdata.dc_tx_cnt)
3116e4fc250cSLuigi Rizzo 			CSR_WRITE_4(sc, DC_TXSTART, 0xFFFFFFFF);
3117e4fc250cSLuigi Rizzo 
3118e4fc250cSLuigi Rizzo 		if (status & DC_ISR_TX_UNDERRUN)
3119e4fc250cSLuigi Rizzo 			dc_tx_underrun(sc);
3120e4fc250cSLuigi Rizzo 
3121e4fc250cSLuigi Rizzo 		if (status & DC_ISR_BUS_ERR) {
31226b9f5c94SGleb Smirnoff 			if_printf(ifp, "%s: bus error\n", __func__);
3123e4fc250cSLuigi Rizzo 			dc_reset(sc);
3124c8b27acaSJohn Baldwin 			dc_init_locked(sc);
3125e4fc250cSLuigi Rizzo 		}
3126e4fc250cSLuigi Rizzo 	}
31275120abbfSSam Leffler 	DC_UNLOCK(sc);
31281abcdbd1SAttilio Rao 	return (rx_npkts);
3129e4fc250cSLuigi Rizzo }
3130e4fc250cSLuigi Rizzo #endif /* DEVICE_POLLING */
3131e4fc250cSLuigi Rizzo 
3132e3d2833aSAlfred Perlstein static void
31330934f18aSMaxime Henrion dc_intr(void *arg)
313496f2e892SBill Paul {
313596f2e892SBill Paul 	struct dc_softc *sc;
313696f2e892SBill Paul 	struct ifnet *ifp;
313796f2e892SBill Paul 	u_int32_t status;
313896f2e892SBill Paul 
313996f2e892SBill Paul 	sc = arg;
3140d2a1864bSWarner Losh 
31410934f18aSMaxime Henrion 	if (sc->suspended)
3142e8388e14SMitsuru IWASAKI 		return;
3143e8388e14SMitsuru IWASAKI 
3144d2a1864bSWarner Losh 	if ((CSR_READ_4(sc, DC_ISR) & DC_INTRS) == 0)
3145d2a1864bSWarner Losh 		return;
3146d2a1864bSWarner Losh 
3147d1ce9105SBill Paul 	DC_LOCK(sc);
3148fc74a9f9SBrooks Davis 	ifp = sc->dc_ifp;
3149e4fc250cSLuigi Rizzo #ifdef DEVICE_POLLING
315040929967SGleb Smirnoff 	if (ifp->if_capenable & IFCAP_POLLING) {
315140929967SGleb Smirnoff 		DC_UNLOCK(sc);
315240929967SGleb Smirnoff 		return;
3153e4fc250cSLuigi Rizzo 	}
31540934f18aSMaxime Henrion #endif
315596f2e892SBill Paul 
3156d88a358cSLuigi Rizzo 	/* Suppress unwanted interrupts */
315796f2e892SBill Paul 	if (!(ifp->if_flags & IFF_UP)) {
315896f2e892SBill Paul 		if (CSR_READ_4(sc, DC_ISR) & DC_INTRS)
315996f2e892SBill Paul 			dc_stop(sc);
3160d1ce9105SBill Paul 		DC_UNLOCK(sc);
316196f2e892SBill Paul 		return;
316296f2e892SBill Paul 	}
316396f2e892SBill Paul 
316496f2e892SBill Paul 	/* Disable interrupts. */
316596f2e892SBill Paul 	CSR_WRITE_4(sc, DC_IMR, 0x00000000);
316696f2e892SBill Paul 
31677ed2454cSGleb Smirnoff 	while (((status = CSR_READ_4(sc, DC_ISR)) & DC_INTRS) &&
31687ed2454cSGleb Smirnoff 	    status != 0xFFFFFFFF &&
31695108cc56SGleb Smirnoff 	    (ifp->if_drv_flags & IFF_DRV_RUNNING)) {
317096f2e892SBill Paul 
317196f2e892SBill Paul 		CSR_WRITE_4(sc, DC_ISR, status);
317296f2e892SBill Paul 
317373bf949cSBill Paul 		if (status & DC_ISR_RX_OK) {
317473bf949cSBill Paul 			int		curpkts;
317573bf949cSBill Paul 			curpkts = ifp->if_ipackets;
317696f2e892SBill Paul 			dc_rxeof(sc);
317773bf949cSBill Paul 			if (curpkts == ifp->if_ipackets) {
317873bf949cSBill Paul 				while (dc_rx_resync(sc))
317973bf949cSBill Paul 					dc_rxeof(sc);
318073bf949cSBill Paul 			}
318173bf949cSBill Paul 		}
318296f2e892SBill Paul 
318396f2e892SBill Paul 		if (status & (DC_ISR_TX_OK | DC_ISR_TX_NOBUF))
318496f2e892SBill Paul 			dc_txeof(sc);
318596f2e892SBill Paul 
318696f2e892SBill Paul 		if (status & DC_ISR_TX_IDLE) {
318796f2e892SBill Paul 			dc_txeof(sc);
318896f2e892SBill Paul 			if (sc->dc_cdata.dc_tx_cnt) {
318996f2e892SBill Paul 				DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_TX_ON);
319096f2e892SBill Paul 				CSR_WRITE_4(sc, DC_TXSTART, 0xFFFFFFFF);
319196f2e892SBill Paul 			}
319296f2e892SBill Paul 		}
319396f2e892SBill Paul 
3194d467c136SBill Paul 		if (status & DC_ISR_TX_UNDERRUN)
3195d467c136SBill Paul 			dc_tx_underrun(sc);
319696f2e892SBill Paul 
319796f2e892SBill Paul 		if ((status & DC_ISR_RX_WATDOGTIMEO)
319873bf949cSBill Paul 		    || (status & DC_ISR_RX_NOBUF)) {
319973bf949cSBill Paul 			int		curpkts;
320073bf949cSBill Paul 			curpkts = ifp->if_ipackets;
320196f2e892SBill Paul 			dc_rxeof(sc);
320273bf949cSBill Paul 			if (curpkts == ifp->if_ipackets) {
320373bf949cSBill Paul 				while (dc_rx_resync(sc))
320473bf949cSBill Paul 					dc_rxeof(sc);
320573bf949cSBill Paul 			}
320673bf949cSBill Paul 		}
320796f2e892SBill Paul 
320896f2e892SBill Paul 		if (status & DC_ISR_BUS_ERR) {
320996f2e892SBill Paul 			dc_reset(sc);
3210c8b27acaSJohn Baldwin 			dc_init_locked(sc);
321196f2e892SBill Paul 		}
321296f2e892SBill Paul 	}
321396f2e892SBill Paul 
321496f2e892SBill Paul 	/* Re-enable interrupts. */
321596f2e892SBill Paul 	CSR_WRITE_4(sc, DC_IMR, DC_INTRS);
321696f2e892SBill Paul 
3217cbaf877fSBrian Feldman 	if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
3218c8b27acaSJohn Baldwin 		dc_start_locked(ifp);
321996f2e892SBill Paul 
3220d1ce9105SBill Paul 	DC_UNLOCK(sc);
322196f2e892SBill Paul }
322296f2e892SBill Paul 
322396f2e892SBill Paul /*
322496f2e892SBill Paul  * Encapsulate an mbuf chain in a descriptor by coupling the mbuf data
322596f2e892SBill Paul  * pointers to the fragment pointers.
322696f2e892SBill Paul  */
3227e3d2833aSAlfred Perlstein static int
3228a10c0e45SMike Silbersack dc_encap(struct dc_softc *sc, struct mbuf **m_head)
322996f2e892SBill Paul {
3230ebc284ccSMarius Strobl 	bus_dma_segment_t segs[DC_MAXFRAGS];
3231ebc284ccSMarius Strobl 	struct dc_desc *f;
323296f2e892SBill Paul 	struct mbuf *m;
3233993a741aSMarius Strobl 	int cur, defragged, error, first, frag, i, idx, nseg;
3234cda97c50SMike Silbersack 
3235cda97c50SMike Silbersack 	/*
3236cda97c50SMike Silbersack 	 * If there's no way we can send any packets, return now.
3237cda97c50SMike Silbersack 	 */
323882a67a70SMarius Strobl 	if (DC_TX_LIST_CNT - sc->dc_cdata.dc_tx_cnt <= DC_TX_LIST_RSVD)
3239cda97c50SMike Silbersack 		return (ENOBUFS);
3240cda97c50SMike Silbersack 
3241993a741aSMarius Strobl 	m = NULL;
3242993a741aSMarius Strobl 	defragged = 0;
3243993a741aSMarius Strobl 	if (sc->dc_flags & DC_TX_COALESCE &&
3244993a741aSMarius Strobl 	    ((*m_head)->m_next != NULL || sc->dc_flags & DC_TX_ALIGN)) {
3245993a741aSMarius Strobl 		m = m_defrag(*m_head, M_DONTWAIT);
3246993a741aSMarius Strobl 		defragged = 1;
3247993a741aSMarius Strobl 	} else {
3248cda97c50SMike Silbersack 		/*
3249993a741aSMarius Strobl 		 * Count the number of frags in this chain to see if we
3250993a741aSMarius Strobl 		 * need to m_collapse.  Since the descriptor list is shared
3251993a741aSMarius Strobl 		 * by all packets, we'll m_collapse long chains so that they
3252cda97c50SMike Silbersack 		 * do not use up the entire list, even if they would fit.
3253cda97c50SMike Silbersack 		 */
3254993a741aSMarius Strobl 		i = 0;
3255a10c0e45SMike Silbersack 		for (m = *m_head; m != NULL; m = m->m_next)
3256993a741aSMarius Strobl 			i++;
3257993a741aSMarius Strobl 		if (i > DC_TX_LIST_CNT / 4 ||
3258993a741aSMarius Strobl 		    DC_TX_LIST_CNT - i + sc->dc_cdata.dc_tx_cnt <=
3259993a741aSMarius Strobl 		    DC_TX_LIST_RSVD) {
3260993a741aSMarius Strobl 			m = m_collapse(*m_head, M_DONTWAIT, DC_MAXFRAGS);
3261993a741aSMarius Strobl 			defragged = 1;
3262993a741aSMarius Strobl 		}
3263993a741aSMarius Strobl 	}
3264993a741aSMarius Strobl 	if (defragged != 0) {
326582a67a70SMarius Strobl 		if (m == NULL) {
326682a67a70SMarius Strobl 			m_freem(*m_head);
326782a67a70SMarius Strobl 			*m_head = NULL;
3268cda97c50SMike Silbersack 			return (ENOBUFS);
326982a67a70SMarius Strobl 		}
3270a10c0e45SMike Silbersack 		*m_head = m;
3271cda97c50SMike Silbersack 	}
3272993a741aSMarius Strobl 
327356e5e7aeSMaxime Henrion 	idx = sc->dc_cdata.dc_tx_prod;
3274ebc284ccSMarius Strobl 	error = bus_dmamap_load_mbuf_sg(sc->dc_mtag,
3275ebc284ccSMarius Strobl 	    sc->dc_cdata.dc_tx_map[idx], *m_head, segs, &nseg, 0);
3276ebc284ccSMarius Strobl 	if (error == EFBIG) {
3277993a741aSMarius Strobl 		if (defragged != 0 || (m = m_collapse(*m_head, M_DONTWAIT,
3278993a741aSMarius Strobl 		    DC_MAXFRAGS)) == NULL) {
3279ebc284ccSMarius Strobl 			m_freem(*m_head);
328082a67a70SMarius Strobl 			*m_head = NULL;
3281993a741aSMarius Strobl 			return (defragged != 0 ? error : ENOBUFS);
328282a67a70SMarius Strobl 		}
3283ebc284ccSMarius Strobl 		*m_head = m;
3284ebc284ccSMarius Strobl 		error = bus_dmamap_load_mbuf_sg(sc->dc_mtag,
3285ebc284ccSMarius Strobl 		    sc->dc_cdata.dc_tx_map[idx], *m_head, segs, &nseg, 0);
3286ebc284ccSMarius Strobl 		if (error != 0) {
3287ebc284ccSMarius Strobl 			m_freem(*m_head);
3288ebc284ccSMarius Strobl 			*m_head = NULL;
3289ebc284ccSMarius Strobl 			return (error);
329082a67a70SMarius Strobl 		}
3291ebc284ccSMarius Strobl 	} else if (error != 0)
3292ebc284ccSMarius Strobl 		return (error);
3293ebc284ccSMarius Strobl 	KASSERT(nseg <= DC_MAXFRAGS,
3294ebc284ccSMarius Strobl 	    ("%s: wrong number of segments (%d)", __func__, nseg));
3295ebc284ccSMarius Strobl 	if (nseg == 0) {
3296ebc284ccSMarius Strobl 		m_freem(*m_head);
3297ebc284ccSMarius Strobl 		*m_head = NULL;
3298ebc284ccSMarius Strobl 		return (EIO);
3299ebc284ccSMarius Strobl 	}
3300ebc284ccSMarius Strobl 
3301ebc284ccSMarius Strobl 	first = cur = frag = sc->dc_cdata.dc_tx_prod;
3302ebc284ccSMarius Strobl 	for (i = 0; i < nseg; i++) {
3303ebc284ccSMarius Strobl 		if ((sc->dc_flags & DC_TX_ADMTEK_WAR) &&
3304ebc284ccSMarius Strobl 		    (frag == (DC_TX_LIST_CNT - 1)) &&
3305ebc284ccSMarius Strobl 		    (first != sc->dc_cdata.dc_tx_first)) {
3306ebc284ccSMarius Strobl 			bus_dmamap_unload(sc->dc_mtag,
3307ebc284ccSMarius Strobl 			    sc->dc_cdata.dc_tx_map[first]);
3308ebc284ccSMarius Strobl 			m_freem(*m_head);
3309ebc284ccSMarius Strobl 			*m_head = NULL;
3310ebc284ccSMarius Strobl 			return (ENOBUFS);
3311ebc284ccSMarius Strobl 		}
3312ebc284ccSMarius Strobl 
3313ebc284ccSMarius Strobl 		f = &sc->dc_ldata->dc_tx_list[frag];
3314ebc284ccSMarius Strobl 		f->dc_ctl = htole32(DC_TXCTL_TLINK | segs[i].ds_len);
3315ebc284ccSMarius Strobl 		if (i == 0) {
3316ebc284ccSMarius Strobl 			f->dc_status = 0;
3317ebc284ccSMarius Strobl 			f->dc_ctl |= htole32(DC_TXCTL_FIRSTFRAG);
3318ebc284ccSMarius Strobl 		} else
3319ebc284ccSMarius Strobl 			f->dc_status = htole32(DC_TXSTAT_OWN);
3320ebc284ccSMarius Strobl 		f->dc_data = htole32(segs[i].ds_addr);
3321ebc284ccSMarius Strobl 		cur = frag;
3322ebc284ccSMarius Strobl 		DC_INC(frag, DC_TX_LIST_CNT);
3323ebc284ccSMarius Strobl 	}
3324ebc284ccSMarius Strobl 
3325ebc284ccSMarius Strobl 	sc->dc_cdata.dc_tx_prod = frag;
3326ebc284ccSMarius Strobl 	sc->dc_cdata.dc_tx_cnt += nseg;
3327ebc284ccSMarius Strobl 	sc->dc_cdata.dc_tx_chain[cur] = *m_head;
3328ebc284ccSMarius Strobl 	sc->dc_ldata->dc_tx_list[cur].dc_ctl |= htole32(DC_TXCTL_LASTFRAG);
3329ebc284ccSMarius Strobl 	if (sc->dc_flags & DC_TX_INTR_FIRSTFRAG)
3330ebc284ccSMarius Strobl 		sc->dc_ldata->dc_tx_list[first].dc_ctl |=
3331ebc284ccSMarius Strobl 		    htole32(DC_TXCTL_FINT);
3332ebc284ccSMarius Strobl 	if (sc->dc_flags & DC_TX_INTR_ALWAYS)
3333ebc284ccSMarius Strobl 		sc->dc_ldata->dc_tx_list[cur].dc_ctl |= htole32(DC_TXCTL_FINT);
333406d23883SPyun YongHyeon 	if (sc->dc_flags & DC_TX_USE_TX_INTR &&
333506d23883SPyun YongHyeon 	    ++sc->dc_cdata.dc_tx_pkts >= 8) {
333606d23883SPyun YongHyeon 		sc->dc_cdata.dc_tx_pkts = 0;
3337ebc284ccSMarius Strobl 		sc->dc_ldata->dc_tx_list[cur].dc_ctl |= htole32(DC_TXCTL_FINT);
333806d23883SPyun YongHyeon 	}
3339ebc284ccSMarius Strobl 	sc->dc_ldata->dc_tx_list[first].dc_status = htole32(DC_TXSTAT_OWN);
3340ebc284ccSMarius Strobl 
334156e5e7aeSMaxime Henrion 	bus_dmamap_sync(sc->dc_mtag, sc->dc_cdata.dc_tx_map[idx],
334256e5e7aeSMaxime Henrion 	    BUS_DMASYNC_PREWRITE);
334356e5e7aeSMaxime Henrion 	bus_dmamap_sync(sc->dc_ltag, sc->dc_lmap,
334456e5e7aeSMaxime Henrion 	    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
334596f2e892SBill Paul 	return (0);
334696f2e892SBill Paul }
334796f2e892SBill Paul 
3348e3d2833aSAlfred Perlstein static void
33490934f18aSMaxime Henrion dc_start(struct ifnet *ifp)
335096f2e892SBill Paul {
335196f2e892SBill Paul 	struct dc_softc *sc;
3352c8b27acaSJohn Baldwin 
3353c8b27acaSJohn Baldwin 	sc = ifp->if_softc;
3354c8b27acaSJohn Baldwin 	DC_LOCK(sc);
3355c8b27acaSJohn Baldwin 	dc_start_locked(ifp);
3356c8b27acaSJohn Baldwin 	DC_UNLOCK(sc);
3357c8b27acaSJohn Baldwin }
3358c8b27acaSJohn Baldwin 
3359ebc284ccSMarius Strobl /*
3360ebc284ccSMarius Strobl  * Main transmit routine
3361ebc284ccSMarius Strobl  * To avoid having to do mbuf copies, we put pointers to the mbuf data
3362ebc284ccSMarius Strobl  * regions directly in the transmit lists.  We also save a copy of the
3363ebc284ccSMarius Strobl  * pointers since the transmit list fragment pointers are physical
3364ebc284ccSMarius Strobl  * addresses.
3365ebc284ccSMarius Strobl  */
3366c8b27acaSJohn Baldwin static void
3367c8b27acaSJohn Baldwin dc_start_locked(struct ifnet *ifp)
3368c8b27acaSJohn Baldwin {
3369c8b27acaSJohn Baldwin 	struct dc_softc *sc;
337082a67a70SMarius Strobl 	struct mbuf *m_head = NULL;
3371cbaf877fSBrian Feldman 	unsigned int queued = 0;
337296f2e892SBill Paul 	int idx;
337396f2e892SBill Paul 
337496f2e892SBill Paul 	sc = ifp->if_softc;
337596f2e892SBill Paul 
3376c8b27acaSJohn Baldwin 	DC_LOCK_ASSERT(sc);
337796f2e892SBill Paul 
3378*76d40c85SPyun YongHyeon 	if ((ifp->if_drv_flags & (IFF_DRV_RUNNING | IFF_DRV_OACTIVE)) !=
3379*76d40c85SPyun YongHyeon 	    IFF_DRV_RUNNING || sc->dc_link == 0)
3380d1ce9105SBill Paul 		return;
338196f2e892SBill Paul 
338256e5e7aeSMaxime Henrion 	idx = sc->dc_cdata.dc_tx_first = sc->dc_cdata.dc_tx_prod;
338396f2e892SBill Paul 
338496f2e892SBill Paul 	while (sc->dc_cdata.dc_tx_chain[idx] == NULL) {
3385cbaf877fSBrian Feldman 		IFQ_DRV_DEQUEUE(&ifp->if_snd, m_head);
338696f2e892SBill Paul 		if (m_head == NULL)
338796f2e892SBill Paul 			break;
338896f2e892SBill Paul 
3389a10c0e45SMike Silbersack 		if (dc_encap(sc, &m_head)) {
339082a67a70SMarius Strobl 			if (m_head == NULL)
339182a67a70SMarius Strobl 				break;
3392cbaf877fSBrian Feldman 			IFQ_DRV_PREPEND(&ifp->if_snd, m_head);
339313f4c340SRobert Watson 			ifp->if_drv_flags |= IFF_DRV_OACTIVE;
339496f2e892SBill Paul 			break;
339596f2e892SBill Paul 		}
339656e5e7aeSMaxime Henrion 		idx = sc->dc_cdata.dc_tx_prod;
339796f2e892SBill Paul 
3398cbaf877fSBrian Feldman 		queued++;
339996f2e892SBill Paul 		/*
340096f2e892SBill Paul 		 * If there's a BPF listener, bounce a copy of this frame
340196f2e892SBill Paul 		 * to him.
340296f2e892SBill Paul 		 */
34039ef8b520SSam Leffler 		BPF_MTAP(ifp, m_head);
340496f2e892SBill Paul 	}
340596f2e892SBill Paul 
3406cbaf877fSBrian Feldman 	if (queued > 0) {
340796f2e892SBill Paul 		/* Transmit */
340896f2e892SBill Paul 		if (!(sc->dc_flags & DC_TX_POLL))
340996f2e892SBill Paul 			CSR_WRITE_4(sc, DC_TXSTART, 0xFFFFFFFF);
341096f2e892SBill Paul 
341196f2e892SBill Paul 		/*
341296f2e892SBill Paul 		 * Set a timeout in case the chip goes out to lunch.
341396f2e892SBill Paul 		 */
3414b1d16143SMarius Strobl 		sc->dc_wdog_timer = 5;
3415cbaf877fSBrian Feldman 	}
341696f2e892SBill Paul }
341796f2e892SBill Paul 
3418e3d2833aSAlfred Perlstein static void
34190934f18aSMaxime Henrion dc_init(void *xsc)
342096f2e892SBill Paul {
342196f2e892SBill Paul 	struct dc_softc *sc = xsc;
3422c8b27acaSJohn Baldwin 
3423c8b27acaSJohn Baldwin 	DC_LOCK(sc);
3424c8b27acaSJohn Baldwin 	dc_init_locked(sc);
3425c8b27acaSJohn Baldwin 	DC_UNLOCK(sc);
3426c8b27acaSJohn Baldwin }
3427c8b27acaSJohn Baldwin 
3428c8b27acaSJohn Baldwin static void
3429c8b27acaSJohn Baldwin dc_init_locked(struct dc_softc *sc)
3430c8b27acaSJohn Baldwin {
3431fc74a9f9SBrooks Davis 	struct ifnet *ifp = sc->dc_ifp;
343296f2e892SBill Paul 	struct mii_data *mii;
3433d314ebf5SPyun YongHyeon 	struct ifmedia *ifm;
343496f2e892SBill Paul 
3435c8b27acaSJohn Baldwin 	DC_LOCK_ASSERT(sc);
343696f2e892SBill Paul 
343796f2e892SBill Paul 	mii = device_get_softc(sc->dc_miibus);
343896f2e892SBill Paul 
343996f2e892SBill Paul 	/*
344096f2e892SBill Paul 	 * Cancel pending I/O and free all RX/TX buffers.
344196f2e892SBill Paul 	 */
344296f2e892SBill Paul 	dc_stop(sc);
344396f2e892SBill Paul 	dc_reset(sc);
3444d314ebf5SPyun YongHyeon 	if (DC_IS_INTEL(sc)) {
3445d314ebf5SPyun YongHyeon 		ifm = &mii->mii_media;
3446d314ebf5SPyun YongHyeon 		dc_apply_fixup(sc, ifm->ifm_media);
3447d314ebf5SPyun YongHyeon 	}
344896f2e892SBill Paul 
344996f2e892SBill Paul 	/*
345096f2e892SBill Paul 	 * Set cache alignment and burst length.
345196f2e892SBill Paul 	 */
345288d739dcSBill Paul 	if (DC_IS_ASIX(sc) || DC_IS_DAVICOM(sc))
345396f2e892SBill Paul 		CSR_WRITE_4(sc, DC_BUSCTL, 0);
345496f2e892SBill Paul 	else
345596f2e892SBill Paul 		CSR_WRITE_4(sc, DC_BUSCTL, DC_BUSCTL_MRME | DC_BUSCTL_MRLE);
3456935fe010SLuigi Rizzo 	/*
3457935fe010SLuigi Rizzo 	 * Evenly share the bus between receive and transmit process.
3458935fe010SLuigi Rizzo 	 */
3459935fe010SLuigi Rizzo 	if (DC_IS_INTEL(sc))
3460935fe010SLuigi Rizzo 		DC_SETBIT(sc, DC_BUSCTL, DC_BUSCTL_ARBITRATION);
346196f2e892SBill Paul 	if (DC_IS_DAVICOM(sc) || DC_IS_INTEL(sc)) {
346296f2e892SBill Paul 		DC_SETBIT(sc, DC_BUSCTL, DC_BURSTLEN_USECA);
346396f2e892SBill Paul 	} else {
346496f2e892SBill Paul 		DC_SETBIT(sc, DC_BUSCTL, DC_BURSTLEN_16LONG);
346596f2e892SBill Paul 	}
346696f2e892SBill Paul 	if (sc->dc_flags & DC_TX_POLL)
346796f2e892SBill Paul 		DC_SETBIT(sc, DC_BUSCTL, DC_TXPOLL_1);
346896f2e892SBill Paul 	switch(sc->dc_cachesize) {
346996f2e892SBill Paul 	case 32:
347096f2e892SBill Paul 		DC_SETBIT(sc, DC_BUSCTL, DC_CACHEALIGN_32LONG);
347196f2e892SBill Paul 		break;
347296f2e892SBill Paul 	case 16:
347396f2e892SBill Paul 		DC_SETBIT(sc, DC_BUSCTL, DC_CACHEALIGN_16LONG);
347496f2e892SBill Paul 		break;
347596f2e892SBill Paul 	case 8:
347696f2e892SBill Paul 		DC_SETBIT(sc, DC_BUSCTL, DC_CACHEALIGN_8LONG);
347796f2e892SBill Paul 		break;
347896f2e892SBill Paul 	case 0:
347996f2e892SBill Paul 	default:
348096f2e892SBill Paul 		DC_SETBIT(sc, DC_BUSCTL, DC_CACHEALIGN_NONE);
348196f2e892SBill Paul 		break;
348296f2e892SBill Paul 	}
348396f2e892SBill Paul 
348496f2e892SBill Paul 	if (sc->dc_flags & DC_TX_STORENFWD)
348596f2e892SBill Paul 		DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_STORENFWD);
348696f2e892SBill Paul 	else {
3487d467c136SBill Paul 		if (sc->dc_txthresh > DC_TXTHRESH_MAX) {
348896f2e892SBill Paul 			DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_STORENFWD);
348996f2e892SBill Paul 		} else {
349096f2e892SBill Paul 			DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_STORENFWD);
349196f2e892SBill Paul 			DC_SETBIT(sc, DC_NETCFG, sc->dc_txthresh);
349296f2e892SBill Paul 		}
349396f2e892SBill Paul 	}
349496f2e892SBill Paul 
349596f2e892SBill Paul 	DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_NO_RXCRC);
349696f2e892SBill Paul 	DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_TX_BACKOFF);
349796f2e892SBill Paul 
349896f2e892SBill Paul 	if (DC_IS_MACRONIX(sc) || DC_IS_PNICII(sc)) {
349996f2e892SBill Paul 		/*
350096f2e892SBill Paul 		 * The app notes for the 98713 and 98715A say that
350196f2e892SBill Paul 		 * in order to have the chips operate properly, a magic
350296f2e892SBill Paul 		 * number must be written to CSR16. Macronix does not
350396f2e892SBill Paul 		 * document the meaning of these bits so there's no way
350496f2e892SBill Paul 		 * to know exactly what they do. The 98713 has a magic
350596f2e892SBill Paul 		 * number all its own; the rest all use a different one.
350696f2e892SBill Paul 		 */
350796f2e892SBill Paul 		DC_CLRBIT(sc, DC_MX_MAGICPACKET, 0xFFFF0000);
350896f2e892SBill Paul 		if (sc->dc_type == DC_TYPE_98713)
350996f2e892SBill Paul 			DC_SETBIT(sc, DC_MX_MAGICPACKET, DC_MX_MAGIC_98713);
351096f2e892SBill Paul 		else
351196f2e892SBill Paul 			DC_SETBIT(sc, DC_MX_MAGICPACKET, DC_MX_MAGIC_98715);
351296f2e892SBill Paul 	}
351396f2e892SBill Paul 
3514feb78939SJonathan Chen 	if (DC_IS_XIRCOM(sc)) {
3515feb78939SJonathan Chen 		/*
3516feb78939SJonathan Chen 		 * setup General Purpose Port mode and data so the tulip
3517feb78939SJonathan Chen 		 * can talk to the MII.
3518feb78939SJonathan Chen 		 */
3519feb78939SJonathan Chen 		CSR_WRITE_4(sc, DC_SIAGP, DC_SIAGP_WRITE_EN | DC_SIAGP_INT1_EN |
3520feb78939SJonathan Chen 			   DC_SIAGP_MD_GP2_OUTPUT | DC_SIAGP_MD_GP0_OUTPUT);
3521feb78939SJonathan Chen 		DELAY(10);
3522feb78939SJonathan Chen 		CSR_WRITE_4(sc, DC_SIAGP, DC_SIAGP_INT1_EN |
3523feb78939SJonathan Chen 			   DC_SIAGP_MD_GP2_OUTPUT | DC_SIAGP_MD_GP0_OUTPUT);
3524feb78939SJonathan Chen 		DELAY(10);
3525feb78939SJonathan Chen 	}
3526feb78939SJonathan Chen 
352796f2e892SBill Paul 	DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_TX_THRESH);
3528d467c136SBill Paul 	DC_SETBIT(sc, DC_NETCFG, DC_TXTHRESH_MIN);
352996f2e892SBill Paul 
353096f2e892SBill Paul 	/* Init circular RX list. */
353196f2e892SBill Paul 	if (dc_list_rx_init(sc) == ENOBUFS) {
35326b9f5c94SGleb Smirnoff 		device_printf(sc->dc_dev,
353322f6205dSJohn Baldwin 		    "initialization failed: no memory for rx buffers\n");
353496f2e892SBill Paul 		dc_stop(sc);
353596f2e892SBill Paul 		return;
353696f2e892SBill Paul 	}
353796f2e892SBill Paul 
353896f2e892SBill Paul 	/*
353956e5e7aeSMaxime Henrion 	 * Init TX descriptors.
354096f2e892SBill Paul 	 */
354196f2e892SBill Paul 	dc_list_tx_init(sc);
354296f2e892SBill Paul 
354396f2e892SBill Paul 	/*
354496f2e892SBill Paul 	 * Load the address of the RX list.
354596f2e892SBill Paul 	 */
354656e5e7aeSMaxime Henrion 	CSR_WRITE_4(sc, DC_RXADDR, DC_RXDESC(sc, 0));
354756e5e7aeSMaxime Henrion 	CSR_WRITE_4(sc, DC_TXADDR, DC_TXDESC(sc, 0));
354896f2e892SBill Paul 
354996f2e892SBill Paul 	/*
355096f2e892SBill Paul 	 * Enable interrupts.
355196f2e892SBill Paul 	 */
3552e4fc250cSLuigi Rizzo #ifdef DEVICE_POLLING
3553e4fc250cSLuigi Rizzo 	/*
3554e4fc250cSLuigi Rizzo 	 * ... but only if we are not polling, and make sure they are off in
3555e4fc250cSLuigi Rizzo 	 * the case of polling. Some cards (e.g. fxp) turn interrupts on
3556e4fc250cSLuigi Rizzo 	 * after a reset.
3557e4fc250cSLuigi Rizzo 	 */
355840929967SGleb Smirnoff 	if (ifp->if_capenable & IFCAP_POLLING)
3559e4fc250cSLuigi Rizzo 		CSR_WRITE_4(sc, DC_IMR, 0x00000000);
3560e4fc250cSLuigi Rizzo 	else
3561e4fc250cSLuigi Rizzo #endif
356296f2e892SBill Paul 	CSR_WRITE_4(sc, DC_IMR, DC_INTRS);
356396f2e892SBill Paul 	CSR_WRITE_4(sc, DC_ISR, 0xFFFFFFFF);
356496f2e892SBill Paul 
356596f2e892SBill Paul 	/* Enable transmitter. */
356696f2e892SBill Paul 	DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_TX_ON);
356796f2e892SBill Paul 
356896f2e892SBill Paul 	/*
3569918434c8SBill Paul 	 * If this is an Intel 21143 and we're not using the
3570918434c8SBill Paul 	 * MII port, program the LED control pins so we get
3571918434c8SBill Paul 	 * link and activity indications.
3572918434c8SBill Paul 	 */
357378999dd1SBill Paul 	if (sc->dc_flags & DC_TULIP_LEDS) {
3574918434c8SBill Paul 		CSR_WRITE_4(sc, DC_WATCHDOG,
3575918434c8SBill Paul 		    DC_WDOG_CTLWREN | DC_WDOG_LINK | DC_WDOG_ACTIVITY);
357678999dd1SBill Paul 		CSR_WRITE_4(sc, DC_WATCHDOG, 0);
3577918434c8SBill Paul 	}
3578918434c8SBill Paul 
3579918434c8SBill Paul 	/*
358096f2e892SBill Paul 	 * Load the RX/multicast filter. We do this sort of late
358196f2e892SBill Paul 	 * because the filter programming scheme on the 21143 and
358296f2e892SBill Paul 	 * some clones requires DMAing a setup frame via the TX
358396f2e892SBill Paul 	 * engine, and we need the transmitter enabled for that.
358496f2e892SBill Paul 	 */
358596f2e892SBill Paul 	dc_setfilt(sc);
358696f2e892SBill Paul 
358796f2e892SBill Paul 	/* Enable receiver. */
358896f2e892SBill Paul 	DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_ON);
358996f2e892SBill Paul 	CSR_WRITE_4(sc, DC_RXSTART, 0xFFFFFFFF);
359096f2e892SBill Paul 
359113f4c340SRobert Watson 	ifp->if_drv_flags |= IFF_DRV_RUNNING;
359213f4c340SRobert Watson 	ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
359396f2e892SBill Paul 
3594d314ebf5SPyun YongHyeon 	mii_mediachg(mii);
3595d314ebf5SPyun YongHyeon 	dc_setcfg(sc, sc->dc_if_media);
3596d314ebf5SPyun YongHyeon 
3597857fd445SBill Paul 	/* Don't start the ticker if this is a homePNA link. */
359845521525SPoul-Henning Kamp 	if (IFM_SUBTYPE(mii->mii_media.ifm_media) == IFM_HPNA_1)
3599857fd445SBill Paul 		sc->dc_link = 1;
3600857fd445SBill Paul 	else {
3601318b02fdSBill Paul 		if (sc->dc_flags & DC_21143_NWAY)
3602b50c6312SJonathan Lemon 			callout_reset(&sc->dc_stat_ch, hz/10, dc_tick, sc);
3603318b02fdSBill Paul 		else
3604b50c6312SJonathan Lemon 			callout_reset(&sc->dc_stat_ch, hz, dc_tick, sc);
3605857fd445SBill Paul 	}
3606b1d16143SMarius Strobl 
3607b1d16143SMarius Strobl 	sc->dc_wdog_timer = 0;
3608b1d16143SMarius Strobl 	callout_reset(&sc->dc_wdog_ch, hz, dc_watchdog, sc);
360996f2e892SBill Paul }
361096f2e892SBill Paul 
361196f2e892SBill Paul /*
361296f2e892SBill Paul  * Set media options.
361396f2e892SBill Paul  */
3614e3d2833aSAlfred Perlstein static int
36150934f18aSMaxime Henrion dc_ifmedia_upd(struct ifnet *ifp)
361696f2e892SBill Paul {
361796f2e892SBill Paul 	struct dc_softc *sc;
361896f2e892SBill Paul 	struct mii_data *mii;
3619f43d9309SBill Paul 	struct ifmedia *ifm;
362096f2e892SBill Paul 
362196f2e892SBill Paul 	sc = ifp->if_softc;
362296f2e892SBill Paul 	mii = device_get_softc(sc->dc_miibus);
3623c8b27acaSJohn Baldwin 	DC_LOCK(sc);
362496f2e892SBill Paul 	mii_mediachg(mii);
3625f43d9309SBill Paul 	ifm = &mii->mii_media;
3626f43d9309SBill Paul 
3627d314ebf5SPyun YongHyeon 	if (DC_IS_INTEL(sc))
3628d314ebf5SPyun YongHyeon 		dc_setcfg(sc, ifm->ifm_media);
3629d314ebf5SPyun YongHyeon 	else if (DC_IS_DAVICOM(sc) &&
363045521525SPoul-Henning Kamp 	    IFM_SUBTYPE(ifm->ifm_media) == IFM_HPNA_1)
3631f43d9309SBill Paul 		dc_setcfg(sc, ifm->ifm_media);
3632f43d9309SBill Paul 	else
363396f2e892SBill Paul 		sc->dc_link = 0;
3634c8b27acaSJohn Baldwin 	DC_UNLOCK(sc);
363596f2e892SBill Paul 
363696f2e892SBill Paul 	return (0);
363796f2e892SBill Paul }
363896f2e892SBill Paul 
363996f2e892SBill Paul /*
364096f2e892SBill Paul  * Report current media status.
364196f2e892SBill Paul  */
3642e3d2833aSAlfred Perlstein static void
36430934f18aSMaxime Henrion dc_ifmedia_sts(struct ifnet *ifp, struct ifmediareq *ifmr)
364496f2e892SBill Paul {
364596f2e892SBill Paul 	struct dc_softc *sc;
364696f2e892SBill Paul 	struct mii_data *mii;
3647f43d9309SBill Paul 	struct ifmedia *ifm;
364896f2e892SBill Paul 
364996f2e892SBill Paul 	sc = ifp->if_softc;
365096f2e892SBill Paul 	mii = device_get_softc(sc->dc_miibus);
3651c8b27acaSJohn Baldwin 	DC_LOCK(sc);
365296f2e892SBill Paul 	mii_pollstat(mii);
3653f43d9309SBill Paul 	ifm = &mii->mii_media;
3654f43d9309SBill Paul 	if (DC_IS_DAVICOM(sc)) {
365545521525SPoul-Henning Kamp 		if (IFM_SUBTYPE(ifm->ifm_media) == IFM_HPNA_1) {
3656f43d9309SBill Paul 			ifmr->ifm_active = ifm->ifm_media;
3657f43d9309SBill Paul 			ifmr->ifm_status = 0;
3658432120f2SMarius Strobl 			DC_UNLOCK(sc);
3659f43d9309SBill Paul 			return;
3660f43d9309SBill Paul 		}
3661f43d9309SBill Paul 	}
366296f2e892SBill Paul 	ifmr->ifm_active = mii->mii_media_active;
366396f2e892SBill Paul 	ifmr->ifm_status = mii->mii_media_status;
3664c8b27acaSJohn Baldwin 	DC_UNLOCK(sc);
366596f2e892SBill Paul }
366696f2e892SBill Paul 
3667e3d2833aSAlfred Perlstein static int
36680934f18aSMaxime Henrion dc_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
366996f2e892SBill Paul {
367096f2e892SBill Paul 	struct dc_softc *sc = ifp->if_softc;
367196f2e892SBill Paul 	struct ifreq *ifr = (struct ifreq *)data;
367296f2e892SBill Paul 	struct mii_data *mii;
3673d1ce9105SBill Paul 	int error = 0;
367496f2e892SBill Paul 
367596f2e892SBill Paul 	switch (command) {
367696f2e892SBill Paul 	case SIOCSIFFLAGS:
3677c8b27acaSJohn Baldwin 		DC_LOCK(sc);
367896f2e892SBill Paul 		if (ifp->if_flags & IFF_UP) {
36795d6dfbbbSLuigi Rizzo 			int need_setfilt = (ifp->if_flags ^ sc->dc_if_flags) &
36805d6dfbbbSLuigi Rizzo 				(IFF_PROMISC | IFF_ALLMULTI);
36815d6dfbbbSLuigi Rizzo 
368213f4c340SRobert Watson 			if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
36835d6dfbbbSLuigi Rizzo 				if (need_setfilt)
368496f2e892SBill Paul 					dc_setfilt(sc);
36855d6dfbbbSLuigi Rizzo 			} else {
368696f2e892SBill Paul 				sc->dc_txthresh = 0;
3687c8b27acaSJohn Baldwin 				dc_init_locked(sc);
368896f2e892SBill Paul 			}
368996f2e892SBill Paul 		} else {
369013f4c340SRobert Watson 			if (ifp->if_drv_flags & IFF_DRV_RUNNING)
369196f2e892SBill Paul 				dc_stop(sc);
369296f2e892SBill Paul 		}
369396f2e892SBill Paul 		sc->dc_if_flags = ifp->if_flags;
3694c8b27acaSJohn Baldwin 		DC_UNLOCK(sc);
369596f2e892SBill Paul 		break;
369696f2e892SBill Paul 	case SIOCADDMULTI:
369796f2e892SBill Paul 	case SIOCDELMULTI:
3698c8b27acaSJohn Baldwin 		DC_LOCK(sc);
369924507bc1SPyun YongHyeon 		if (ifp->if_drv_flags & IFF_DRV_RUNNING)
370096f2e892SBill Paul 			dc_setfilt(sc);
3701c8b27acaSJohn Baldwin 		DC_UNLOCK(sc);
370296f2e892SBill Paul 		break;
370396f2e892SBill Paul 	case SIOCGIFMEDIA:
370496f2e892SBill Paul 	case SIOCSIFMEDIA:
370596f2e892SBill Paul 		mii = device_get_softc(sc->dc_miibus);
370696f2e892SBill Paul 		error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
370796f2e892SBill Paul 		break;
3708e695984eSRuslan Ermilov 	case SIOCSIFCAP:
370940929967SGleb Smirnoff #ifdef DEVICE_POLLING
371040929967SGleb Smirnoff 		if (ifr->ifr_reqcap & IFCAP_POLLING &&
371140929967SGleb Smirnoff 		    !(ifp->if_capenable & IFCAP_POLLING)) {
371240929967SGleb Smirnoff 			error = ether_poll_register(dc_poll, ifp);
371340929967SGleb Smirnoff 			if (error)
371440929967SGleb Smirnoff 				return(error);
3715c8b27acaSJohn Baldwin 			DC_LOCK(sc);
371640929967SGleb Smirnoff 			/* Disable interrupts */
371740929967SGleb Smirnoff 			CSR_WRITE_4(sc, DC_IMR, 0x00000000);
371840929967SGleb Smirnoff 			ifp->if_capenable |= IFCAP_POLLING;
3719c8b27acaSJohn Baldwin 			DC_UNLOCK(sc);
372040929967SGleb Smirnoff 			return (error);
372140929967SGleb Smirnoff 		}
372240929967SGleb Smirnoff 		if (!(ifr->ifr_reqcap & IFCAP_POLLING) &&
372340929967SGleb Smirnoff 		    ifp->if_capenable & IFCAP_POLLING) {
372440929967SGleb Smirnoff 			error = ether_poll_deregister(ifp);
372540929967SGleb Smirnoff 			/* Enable interrupts. */
372640929967SGleb Smirnoff 			DC_LOCK(sc);
372740929967SGleb Smirnoff 			CSR_WRITE_4(sc, DC_IMR, DC_INTRS);
372840929967SGleb Smirnoff 			ifp->if_capenable &= ~IFCAP_POLLING;
372940929967SGleb Smirnoff 			DC_UNLOCK(sc);
373040929967SGleb Smirnoff 			return (error);
373140929967SGleb Smirnoff 		}
373240929967SGleb Smirnoff #endif /* DEVICE_POLLING */
3733e695984eSRuslan Ermilov 		break;
373496f2e892SBill Paul 	default:
37359ef8b520SSam Leffler 		error = ether_ioctl(ifp, command, data);
373696f2e892SBill Paul 		break;
373796f2e892SBill Paul 	}
373896f2e892SBill Paul 
373996f2e892SBill Paul 	return (error);
374096f2e892SBill Paul }
374196f2e892SBill Paul 
3742e3d2833aSAlfred Perlstein static void
3743b1d16143SMarius Strobl dc_watchdog(void *xsc)
374496f2e892SBill Paul {
3745b1d16143SMarius Strobl 	struct dc_softc *sc = xsc;
3746b1d16143SMarius Strobl 	struct ifnet *ifp;
374796f2e892SBill Paul 
3748b1d16143SMarius Strobl 	DC_LOCK_ASSERT(sc);
374996f2e892SBill Paul 
3750b1d16143SMarius Strobl 	if (sc->dc_wdog_timer == 0 || --sc->dc_wdog_timer != 0) {
3751b1d16143SMarius Strobl 		callout_reset(&sc->dc_wdog_ch, hz, dc_watchdog, sc);
3752b1d16143SMarius Strobl 		return;
3753b1d16143SMarius Strobl 	}
3754d1ce9105SBill Paul 
3755b1d16143SMarius Strobl 	ifp = sc->dc_ifp;
375696f2e892SBill Paul 	ifp->if_oerrors++;
3757b1d16143SMarius Strobl 	device_printf(sc->dc_dev, "watchdog timeout\n");
375896f2e892SBill Paul 
375996f2e892SBill Paul 	dc_stop(sc);
376096f2e892SBill Paul 	dc_reset(sc);
3761c8b27acaSJohn Baldwin 	dc_init_locked(sc);
376296f2e892SBill Paul 
3763cbaf877fSBrian Feldman 	if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
3764c8b27acaSJohn Baldwin 		dc_start_locked(ifp);
376596f2e892SBill Paul }
376696f2e892SBill Paul 
376796f2e892SBill Paul /*
376896f2e892SBill Paul  * Stop the adapter and free any mbufs allocated to the
376996f2e892SBill Paul  * RX and TX lists.
377096f2e892SBill Paul  */
3771e3d2833aSAlfred Perlstein static void
37720934f18aSMaxime Henrion dc_stop(struct dc_softc *sc)
377396f2e892SBill Paul {
377496f2e892SBill Paul 	struct ifnet *ifp;
3775b3811c95SMaxime Henrion 	struct dc_list_data *ld;
3776b3811c95SMaxime Henrion 	struct dc_chain_data *cd;
3777b3811c95SMaxime Henrion 	int i;
3778af4358c7SMaxime Henrion 	u_int32_t ctl;
377996f2e892SBill Paul 
3780c8b27acaSJohn Baldwin 	DC_LOCK_ASSERT(sc);
3781d1ce9105SBill Paul 
3782fc74a9f9SBrooks Davis 	ifp = sc->dc_ifp;
3783b3811c95SMaxime Henrion 	ld = sc->dc_ldata;
3784b3811c95SMaxime Henrion 	cd = &sc->dc_cdata;
378596f2e892SBill Paul 
3786b50c6312SJonathan Lemon 	callout_stop(&sc->dc_stat_ch);
3787b1d16143SMarius Strobl 	callout_stop(&sc->dc_wdog_ch);
3788b1d16143SMarius Strobl 	sc->dc_wdog_timer = 0;
378996f2e892SBill Paul 
379013f4c340SRobert Watson 	ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
37913b3ec200SPeter Wemm 
379296f2e892SBill Paul 	DC_CLRBIT(sc, DC_NETCFG, (DC_NETCFG_RX_ON | DC_NETCFG_TX_ON));
379396f2e892SBill Paul 	CSR_WRITE_4(sc, DC_IMR, 0x00000000);
379496f2e892SBill Paul 	CSR_WRITE_4(sc, DC_TXADDR, 0x00000000);
379596f2e892SBill Paul 	CSR_WRITE_4(sc, DC_RXADDR, 0x00000000);
379696f2e892SBill Paul 	sc->dc_link = 0;
379796f2e892SBill Paul 
379896f2e892SBill Paul 	/*
379996f2e892SBill Paul 	 * Free data in the RX lists.
380096f2e892SBill Paul 	 */
380196f2e892SBill Paul 	for (i = 0; i < DC_RX_LIST_CNT; i++) {
3802b3811c95SMaxime Henrion 		if (cd->dc_rx_chain[i] != NULL) {
380356e5e7aeSMaxime Henrion 			m_freem(cd->dc_rx_chain[i]);
380456e5e7aeSMaxime Henrion 			cd->dc_rx_chain[i] = NULL;
380596f2e892SBill Paul 		}
380696f2e892SBill Paul 	}
3807b3811c95SMaxime Henrion 	bzero(&ld->dc_rx_list, sizeof(ld->dc_rx_list));
380896f2e892SBill Paul 
380996f2e892SBill Paul 	/*
381096f2e892SBill Paul 	 * Free the TX list buffers.
381196f2e892SBill Paul 	 */
381296f2e892SBill Paul 	for (i = 0; i < DC_TX_LIST_CNT; i++) {
3813b3811c95SMaxime Henrion 		if (cd->dc_tx_chain[i] != NULL) {
3814af4358c7SMaxime Henrion 			ctl = le32toh(ld->dc_tx_list[i].dc_ctl);
3815af4358c7SMaxime Henrion 			if ((ctl & DC_TXCTL_SETUP) ||
38164ff4a9beSDon Lewis 			    !(ctl & DC_TXCTL_LASTFRAG)) {
3817b3811c95SMaxime Henrion 				cd->dc_tx_chain[i] = NULL;
381896f2e892SBill Paul 				continue;
381996f2e892SBill Paul 			}
382056e5e7aeSMaxime Henrion 			bus_dmamap_unload(sc->dc_mtag, cd->dc_tx_map[i]);
382156e5e7aeSMaxime Henrion 			m_freem(cd->dc_tx_chain[i]);
3822b3811c95SMaxime Henrion 			cd->dc_tx_chain[i] = NULL;
382396f2e892SBill Paul 		}
382496f2e892SBill Paul 	}
3825b3811c95SMaxime Henrion 	bzero(&ld->dc_tx_list, sizeof(ld->dc_tx_list));
382696f2e892SBill Paul }
382796f2e892SBill Paul 
382896f2e892SBill Paul /*
3829e8388e14SMitsuru IWASAKI  * Device suspend routine.  Stop the interface and save some PCI
3830e8388e14SMitsuru IWASAKI  * settings in case the BIOS doesn't restore them properly on
3831e8388e14SMitsuru IWASAKI  * resume.
3832e8388e14SMitsuru IWASAKI  */
3833e3d2833aSAlfred Perlstein static int
38340934f18aSMaxime Henrion dc_suspend(device_t dev)
3835e8388e14SMitsuru IWASAKI {
3836e8388e14SMitsuru IWASAKI 	struct dc_softc *sc;
3837e8388e14SMitsuru IWASAKI 
3838e8388e14SMitsuru IWASAKI 	sc = device_get_softc(dev);
3839c8b27acaSJohn Baldwin 	DC_LOCK(sc);
3840e8388e14SMitsuru IWASAKI 	dc_stop(sc);
3841e8388e14SMitsuru IWASAKI 	sc->suspended = 1;
3842c8b27acaSJohn Baldwin 	DC_UNLOCK(sc);
3843e8388e14SMitsuru IWASAKI 
3844e8388e14SMitsuru IWASAKI 	return (0);
3845e8388e14SMitsuru IWASAKI }
3846e8388e14SMitsuru IWASAKI 
3847e8388e14SMitsuru IWASAKI /*
3848e8388e14SMitsuru IWASAKI  * Device resume routine.  Restore some PCI settings in case the BIOS
3849e8388e14SMitsuru IWASAKI  * doesn't, re-enable busmastering, and restart the interface if
3850e8388e14SMitsuru IWASAKI  * appropriate.
3851e8388e14SMitsuru IWASAKI  */
3852e3d2833aSAlfred Perlstein static int
38530934f18aSMaxime Henrion dc_resume(device_t dev)
3854e8388e14SMitsuru IWASAKI {
3855e8388e14SMitsuru IWASAKI 	struct dc_softc *sc;
3856e8388e14SMitsuru IWASAKI 	struct ifnet *ifp;
3857e8388e14SMitsuru IWASAKI 
3858e8388e14SMitsuru IWASAKI 	sc = device_get_softc(dev);
3859fc74a9f9SBrooks Davis 	ifp = sc->dc_ifp;
3860e8388e14SMitsuru IWASAKI 
3861e8388e14SMitsuru IWASAKI 	/* reinitialize interface if necessary */
3862c8b27acaSJohn Baldwin 	DC_LOCK(sc);
3863e8388e14SMitsuru IWASAKI 	if (ifp->if_flags & IFF_UP)
3864c8b27acaSJohn Baldwin 		dc_init_locked(sc);
3865e8388e14SMitsuru IWASAKI 
3866e8388e14SMitsuru IWASAKI 	sc->suspended = 0;
3867c8b27acaSJohn Baldwin 	DC_UNLOCK(sc);
3868e8388e14SMitsuru IWASAKI 
3869e8388e14SMitsuru IWASAKI 	return (0);
3870e8388e14SMitsuru IWASAKI }
3871e8388e14SMitsuru IWASAKI 
3872e8388e14SMitsuru IWASAKI /*
387396f2e892SBill Paul  * Stop all chip I/O so that the kernel's probe routines don't
387496f2e892SBill Paul  * get confused by errant DMAs when rebooting.
387596f2e892SBill Paul  */
38766a087a87SPyun YongHyeon static int
38770934f18aSMaxime Henrion dc_shutdown(device_t dev)
387896f2e892SBill Paul {
387996f2e892SBill Paul 	struct dc_softc *sc;
388096f2e892SBill Paul 
388196f2e892SBill Paul 	sc = device_get_softc(dev);
388296f2e892SBill Paul 
3883c8b27acaSJohn Baldwin 	DC_LOCK(sc);
388496f2e892SBill Paul 	dc_stop(sc);
3885c8b27acaSJohn Baldwin 	DC_UNLOCK(sc);
38866a087a87SPyun YongHyeon 
38876a087a87SPyun YongHyeon 	return (0);
388896f2e892SBill Paul }
388939d76ed6SPyun YongHyeon 
389039d76ed6SPyun YongHyeon static int
389139d76ed6SPyun YongHyeon dc_check_multiport(struct dc_softc *sc)
389239d76ed6SPyun YongHyeon {
389339d76ed6SPyun YongHyeon 	struct dc_softc *dsc;
389439d76ed6SPyun YongHyeon 	devclass_t dc;
389539d76ed6SPyun YongHyeon 	device_t child;
389639d76ed6SPyun YongHyeon 	uint8_t *eaddr;
389739d76ed6SPyun YongHyeon 	int unit;
389839d76ed6SPyun YongHyeon 
389939d76ed6SPyun YongHyeon 	dc = devclass_find("dc");
390039d76ed6SPyun YongHyeon 	for (unit = 0; unit < devclass_get_maxunit(dc); unit++) {
390139d76ed6SPyun YongHyeon 		child = devclass_get_device(dc, unit);
390239d76ed6SPyun YongHyeon 		if (child == NULL)
390339d76ed6SPyun YongHyeon 			continue;
390439d76ed6SPyun YongHyeon 		if (child == sc->dc_dev)
390539d76ed6SPyun YongHyeon 			continue;
390639d76ed6SPyun YongHyeon 		if (device_get_parent(child) != device_get_parent(sc->dc_dev))
390739d76ed6SPyun YongHyeon 			continue;
390839d76ed6SPyun YongHyeon 		if (unit > device_get_unit(sc->dc_dev))
390939d76ed6SPyun YongHyeon 			continue;
3910b289c607SPyun YongHyeon 		if (device_is_attached(child) == 0)
3911b289c607SPyun YongHyeon 			continue;
391239d76ed6SPyun YongHyeon 		dsc = device_get_softc(child);
3913b289c607SPyun YongHyeon 		device_printf(sc->dc_dev,
3914b289c607SPyun YongHyeon 		    "Using station address of %s as base\n",
391539d76ed6SPyun YongHyeon 		    device_get_nameunit(child));
391639d76ed6SPyun YongHyeon 		bcopy(dsc->dc_eaddr, sc->dc_eaddr, ETHER_ADDR_LEN);
391739d76ed6SPyun YongHyeon 		eaddr = (uint8_t *)sc->dc_eaddr;
391839d76ed6SPyun YongHyeon 		eaddr[5]++;
3919b289c607SPyun YongHyeon 		/* Prepare SROM to parse again. */
3920b289c607SPyun YongHyeon 		if (DC_IS_INTEL(sc) && dsc->dc_srom != NULL &&
3921b289c607SPyun YongHyeon 		    sc->dc_romwidth != 0) {
3922b289c607SPyun YongHyeon 			free(sc->dc_srom, M_DEVBUF);
3923b289c607SPyun YongHyeon 			sc->dc_romwidth = dsc->dc_romwidth;
3924b289c607SPyun YongHyeon 			sc->dc_srom = malloc(DC_ROM_SIZE(sc->dc_romwidth),
3925b289c607SPyun YongHyeon 			    M_DEVBUF, M_NOWAIT);
3926b289c607SPyun YongHyeon 			if (sc->dc_srom == NULL) {
3927b289c607SPyun YongHyeon 				device_printf(sc->dc_dev,
3928b289c607SPyun YongHyeon 				    "Could not allocate SROM buffer\n");
3929b289c607SPyun YongHyeon 				return (ENOMEM);
3930b289c607SPyun YongHyeon 			}
3931b289c607SPyun YongHyeon 			bcopy(dsc->dc_srom, sc->dc_srom,
3932b289c607SPyun YongHyeon 			    DC_ROM_SIZE(sc->dc_romwidth));
3933b289c607SPyun YongHyeon 		}
393439d76ed6SPyun YongHyeon 		return (0);
393539d76ed6SPyun YongHyeon 	}
393639d76ed6SPyun YongHyeon 	return (ENOENT);
393739d76ed6SPyun YongHyeon }
3938