196f2e892SBill Paul /* 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 3396f2e892SBill Paul /* 3496f2e892SBill Paul * DEC "tulip" clone ethernet driver. Supports the DEC/Intel 21143 3596f2e892SBill Paul * series chips and several workalikes including the following: 3696f2e892SBill Paul * 37ead7cde9SBill Paul * Macronix 98713/98715/98725/98727/98732 PMAC (www.macronix.com) 3896f2e892SBill Paul * Macronix/Lite-On 82c115 PNIC II (www.macronix.com) 3996f2e892SBill Paul * Lite-On 82c168/82c169 PNIC (www.litecom.com) 4096f2e892SBill Paul * ASIX Electronics AX88140A (www.asix.com.tw) 4196f2e892SBill Paul * ASIX Electronics AX88141 (www.asix.com.tw) 4296f2e892SBill Paul * ADMtek AL981 (www.admtek.com.tw) 4396f2e892SBill Paul * ADMtek AN985 (www.admtek.com.tw) 4488d739dcSBill Paul * Davicom DM9100, DM9102, DM9102A (www.davicom8.com) 459ca710f6SJeroen Ruigrok van der Werven * Accton EN1217 (www.accton.com) 46feb78939SJonathan Chen * Xircom X3201 (www.xircom.com) 471d5e5310SBill Paul * Abocom FE2500 481af8bec7SBill Paul * Conexant LANfinity (www.conexant.com) 497eac366bSMartin Blapp * 3Com OfficeConnect 10/100B 3CSOHO100B (www.3com.com) 5096f2e892SBill Paul * 5196f2e892SBill Paul * Datasheets for the 21143 are available at developer.intel.com. 5296f2e892SBill Paul * Datasheets for the clone parts can be found at their respective sites. 5396f2e892SBill Paul * (Except for the PNIC; see www.freebsd.org/~wpaul/PNIC/pnic.ps.gz.) 5496f2e892SBill Paul * The PNIC II is essentially a Macronix 98715A chip; the only difference 5596f2e892SBill Paul * worth noting is that its multicast hash table is only 128 bits wide 5696f2e892SBill Paul * instead of 512. 5796f2e892SBill Paul * 5896f2e892SBill Paul * Written by Bill Paul <wpaul@ee.columbia.edu> 5996f2e892SBill Paul * Electrical Engineering Department 6096f2e892SBill Paul * Columbia University, New York City 6196f2e892SBill Paul */ 6296f2e892SBill Paul 6396f2e892SBill Paul /* 6496f2e892SBill Paul * The Intel 21143 is the successor to the DEC 21140. It is basically 6596f2e892SBill Paul * the same as the 21140 but with a few new features. The 21143 supports 6696f2e892SBill Paul * three kinds of media attachments: 6796f2e892SBill Paul * 6896f2e892SBill Paul * o MII port, for 10Mbps and 100Mbps support and NWAY 6996f2e892SBill Paul * autonegotiation provided by an external PHY. 7096f2e892SBill Paul * o SYM port, for symbol mode 100Mbps support. 7196f2e892SBill Paul * o 10baseT port. 7296f2e892SBill Paul * o AUI/BNC port. 7396f2e892SBill Paul * 7496f2e892SBill Paul * The 100Mbps SYM port and 10baseT port can be used together in 7596f2e892SBill Paul * combination with the internal NWAY support to create a 10/100 7696f2e892SBill Paul * autosensing configuration. 7796f2e892SBill Paul * 7896f2e892SBill Paul * Note that not all tulip workalikes are handled in this driver: we only 7996f2e892SBill Paul * deal with those which are relatively well behaved. The Winbond is 8096f2e892SBill Paul * handled separately due to its different register offsets and the 8196f2e892SBill Paul * special handling needed for its various bugs. The PNIC is handled 8296f2e892SBill Paul * here, but I'm not thrilled about it. 8396f2e892SBill Paul * 8496f2e892SBill Paul * All of the workalike chips use some form of MII transceiver support 8596f2e892SBill Paul * with the exception of the Macronix chips, which also have a SYM port. 8696f2e892SBill Paul * The ASIX AX88140A is also documented to have a SYM port, but all 8796f2e892SBill Paul * the cards I've seen use an MII transceiver, probably because the 8896f2e892SBill Paul * AX88140A doesn't support internal NWAY. 8996f2e892SBill Paul */ 9096f2e892SBill Paul 918368cf8fSDavid E. O'Brien #include <sys/cdefs.h> 928368cf8fSDavid E. O'Brien __FBSDID("$FreeBSD$"); 938368cf8fSDavid E. O'Brien 9496f2e892SBill Paul #include <sys/param.h> 9596f2e892SBill Paul #include <sys/systm.h> 9696f2e892SBill Paul #include <sys/sockio.h> 9796f2e892SBill Paul #include <sys/mbuf.h> 9896f2e892SBill Paul #include <sys/malloc.h> 9996f2e892SBill Paul #include <sys/kernel.h> 10096f2e892SBill Paul #include <sys/socket.h> 10101faf54bSLuigi Rizzo #include <sys/sysctl.h> 10296f2e892SBill Paul 10396f2e892SBill Paul #include <net/if.h> 10496f2e892SBill Paul #include <net/if_arp.h> 10596f2e892SBill Paul #include <net/ethernet.h> 10696f2e892SBill Paul #include <net/if_dl.h> 10796f2e892SBill Paul #include <net/if_media.h> 108db40c1aeSDoug Ambrisko #include <net/if_types.h> 109db40c1aeSDoug Ambrisko #include <net/if_vlan_var.h> 11096f2e892SBill Paul 11196f2e892SBill Paul #include <net/bpf.h> 11296f2e892SBill Paul 11396f2e892SBill Paul #include <machine/bus_pio.h> 11496f2e892SBill Paul #include <machine/bus_memio.h> 11596f2e892SBill Paul #include <machine/bus.h> 11696f2e892SBill Paul #include <machine/resource.h> 11796f2e892SBill Paul #include <sys/bus.h> 11896f2e892SBill Paul #include <sys/rman.h> 11996f2e892SBill Paul 12096f2e892SBill Paul #include <dev/mii/mii.h> 12196f2e892SBill Paul #include <dev/mii/miivar.h> 12296f2e892SBill Paul 12396f2e892SBill Paul #include <pci/pcireg.h> 12496f2e892SBill Paul #include <pci/pcivar.h> 12596f2e892SBill Paul 12696f2e892SBill Paul #define DC_USEIOSPACE 1275c1cfac4SBill Paul #ifdef __alpha__ 1285c1cfac4SBill Paul #define SRM_MEDIA 1295c1cfac4SBill Paul #endif 13096f2e892SBill Paul 13196f2e892SBill Paul #include <pci/if_dcreg.h> 13296f2e892SBill Paul 133f246e4a1SMatthew N. Dodd MODULE_DEPEND(dc, pci, 1, 1, 1); 134f246e4a1SMatthew N. Dodd MODULE_DEPEND(dc, ether, 1, 1, 1); 13595a16455SPeter Wemm MODULE_DEPEND(dc, miibus, 1, 1, 1); 13695a16455SPeter Wemm 13796f2e892SBill Paul /* "controller miibus0" required. See GENERIC if you get errors here. */ 13896f2e892SBill Paul #include "miibus_if.h" 13996f2e892SBill Paul 14096f2e892SBill Paul /* 14196f2e892SBill Paul * Various supported device vendors/types and their names. 14296f2e892SBill Paul */ 14396f2e892SBill Paul static struct dc_type dc_devs[] = { 14496f2e892SBill Paul { DC_VENDORID_DEC, DC_DEVICEID_21143, 14596f2e892SBill Paul "Intel 21143 10/100BaseTX" }, 14638deb45fSTom Rhodes { DC_VENDORID_DAVICOM, DC_DEVICEID_DM9009, 14738deb45fSTom Rhodes "Davicom DM9009 10/100BaseTX" }, 14896f2e892SBill Paul { DC_VENDORID_DAVICOM, DC_DEVICEID_DM9100, 14996f2e892SBill Paul "Davicom DM9100 10/100BaseTX" }, 15096f2e892SBill Paul { DC_VENDORID_DAVICOM, DC_DEVICEID_DM9102, 15196f2e892SBill Paul "Davicom DM9102 10/100BaseTX" }, 15288d739dcSBill Paul { DC_VENDORID_DAVICOM, DC_DEVICEID_DM9102, 15388d739dcSBill Paul "Davicom DM9102A 10/100BaseTX" }, 15496f2e892SBill Paul { DC_VENDORID_ADMTEK, DC_DEVICEID_AL981, 15596f2e892SBill Paul "ADMtek AL981 10/100BaseTX" }, 15696f2e892SBill Paul { DC_VENDORID_ADMTEK, DC_DEVICEID_AN985, 15796f2e892SBill Paul "ADMtek AN985 10/100BaseTX" }, 158e351d778SMartin Blapp { DC_VENDORID_ADMTEK, DC_DEVICEID_ADM9511, 159e351d778SMartin Blapp "ADMtek ADM9511 10/100BaseTX" }, 160e351d778SMartin Blapp { DC_VENDORID_ADMTEK, DC_DEVICEID_ADM9513, 161e351d778SMartin Blapp "ADMtek ADM9513 10/100BaseTX" }, 16296f2e892SBill Paul { DC_VENDORID_ASIX, DC_DEVICEID_AX88140A, 16396f2e892SBill Paul "ASIX AX88140A 10/100BaseTX" }, 16496f2e892SBill Paul { DC_VENDORID_ASIX, DC_DEVICEID_AX88140A, 16596f2e892SBill Paul "ASIX AX88141 10/100BaseTX" }, 16696f2e892SBill Paul { DC_VENDORID_MX, DC_DEVICEID_98713, 16796f2e892SBill Paul "Macronix 98713 10/100BaseTX" }, 16896f2e892SBill Paul { DC_VENDORID_MX, DC_DEVICEID_98713, 16996f2e892SBill Paul "Macronix 98713A 10/100BaseTX" }, 17096f2e892SBill Paul { DC_VENDORID_CP, DC_DEVICEID_98713_CP, 17196f2e892SBill Paul "Compex RL100-TX 10/100BaseTX" }, 17296f2e892SBill Paul { DC_VENDORID_CP, DC_DEVICEID_98713_CP, 17396f2e892SBill Paul "Compex RL100-TX 10/100BaseTX" }, 17496f2e892SBill Paul { DC_VENDORID_MX, DC_DEVICEID_987x5, 17596f2e892SBill Paul "Macronix 98715/98715A 10/100BaseTX" }, 17696f2e892SBill Paul { DC_VENDORID_MX, DC_DEVICEID_987x5, 17779d11e09SBill Paul "Macronix 98715AEC-C 10/100BaseTX" }, 17879d11e09SBill Paul { DC_VENDORID_MX, DC_DEVICEID_987x5, 17996f2e892SBill Paul "Macronix 98725 10/100BaseTX" }, 180ead7cde9SBill Paul { DC_VENDORID_MX, DC_DEVICEID_98727, 181ead7cde9SBill Paul "Macronix 98727/98732 10/100BaseTX" }, 18296f2e892SBill Paul { DC_VENDORID_LO, DC_DEVICEID_82C115, 18396f2e892SBill Paul "LC82C115 PNIC II 10/100BaseTX" }, 18496f2e892SBill Paul { DC_VENDORID_LO, DC_DEVICEID_82C168, 18596f2e892SBill Paul "82c168 PNIC 10/100BaseTX" }, 18696f2e892SBill Paul { DC_VENDORID_LO, DC_DEVICEID_82C168, 18796f2e892SBill Paul "82c169 PNIC 10/100BaseTX" }, 1889ca710f6SJeroen Ruigrok van der Werven { DC_VENDORID_ACCTON, DC_DEVICEID_EN1217, 1899ca710f6SJeroen Ruigrok van der Werven "Accton EN1217 10/100BaseTX" }, 190fa167b8eSBill Paul { DC_VENDORID_ACCTON, DC_DEVICEID_EN2242, 191fa167b8eSBill Paul "Accton EN2242 MiniPCI 10/100BaseTX" }, 192feb78939SJonathan Chen { DC_VENDORID_XIRCOM, DC_DEVICEID_X3201, 193feb78939SJonathan Chen "Xircom X3201 10/100BaseTX" }, 1941d5e5310SBill Paul { DC_VENDORID_ABOCOM, DC_DEVICEID_FE2500, 1951d5e5310SBill Paul "Abocom FE2500 10/100BaseTX" }, 1961af8bec7SBill Paul { DC_VENDORID_CONEXANT, DC_DEVICEID_RS7112, 1971af8bec7SBill Paul "Conexant LANfinity MiniPCI 10/100BaseTX" }, 198948c244dSWarner Losh { DC_VENDORID_HAWKING, DC_DEVICEID_HAWKING_PN672TX, 199948c244dSWarner Losh "Hawking CB102 CardBus 10/100" }, 20097f91728SMIHIRA Sanpei Yoshiro { DC_VENDORID_PLANEX, DC_DEVICEID_FNW3602T, 20197f91728SMIHIRA Sanpei Yoshiro "PlaneX FNW-3602-T CardBus 10/100" }, 2027eac366bSMartin Blapp { DC_VENDORID_3COM, DC_DEVICEID_3CSOHOB, 2037eac366bSMartin Blapp "3Com OfficeConnect 10/100B" }, 20496f2e892SBill Paul { 0, 0, NULL } 20596f2e892SBill Paul }; 20696f2e892SBill Paul 207e51a25f8SAlfred Perlstein static int dc_probe (device_t); 208e51a25f8SAlfred Perlstein static int dc_attach (device_t); 209e51a25f8SAlfred Perlstein static int dc_detach (device_t); 210e8388e14SMitsuru IWASAKI static int dc_suspend (device_t); 211e8388e14SMitsuru IWASAKI static int dc_resume (device_t); 212b84e866aSWarner Losh #ifndef BURN_BRIDGES 213e51a25f8SAlfred Perlstein static void dc_acpi (device_t); 214b84e866aSWarner Losh #endif 215e51a25f8SAlfred Perlstein static struct dc_type *dc_devtype (device_t); 21656e5e7aeSMaxime Henrion static int dc_newbuf (struct dc_softc *, int, int); 21756e5e7aeSMaxime Henrion static int dc_encap (struct dc_softc *, struct mbuf *); 218e51a25f8SAlfred Perlstein static void dc_pnic_rx_bug_war (struct dc_softc *, int); 219e51a25f8SAlfred Perlstein static int dc_rx_resync (struct dc_softc *); 220e51a25f8SAlfred Perlstein static void dc_rxeof (struct dc_softc *); 221e51a25f8SAlfred Perlstein static void dc_txeof (struct dc_softc *); 222e51a25f8SAlfred Perlstein static void dc_tick (void *); 223e51a25f8SAlfred Perlstein static void dc_tx_underrun (struct dc_softc *); 224e51a25f8SAlfred Perlstein static void dc_intr (void *); 225e51a25f8SAlfred Perlstein static void dc_start (struct ifnet *); 226e51a25f8SAlfred Perlstein static int dc_ioctl (struct ifnet *, u_long, caddr_t); 227e51a25f8SAlfred Perlstein static void dc_init (void *); 228e51a25f8SAlfred Perlstein static void dc_stop (struct dc_softc *); 229e51a25f8SAlfred Perlstein static void dc_watchdog (struct ifnet *); 230e51a25f8SAlfred Perlstein static void dc_shutdown (device_t); 231e51a25f8SAlfred Perlstein static int dc_ifmedia_upd (struct ifnet *); 232e51a25f8SAlfred Perlstein static void dc_ifmedia_sts (struct ifnet *, struct ifmediareq *); 23396f2e892SBill Paul 234e51a25f8SAlfred Perlstein static void dc_delay (struct dc_softc *); 235e51a25f8SAlfred Perlstein static void dc_eeprom_idle (struct dc_softc *); 236e51a25f8SAlfred Perlstein static void dc_eeprom_putbyte (struct dc_softc *, int); 237e51a25f8SAlfred Perlstein static void dc_eeprom_getword (struct dc_softc *, int, u_int16_t *); 23896f2e892SBill Paul static void dc_eeprom_getword_pnic 239e51a25f8SAlfred Perlstein (struct dc_softc *, int, u_int16_t *); 240feb78939SJonathan Chen static void dc_eeprom_getword_xircom 241e51a25f8SAlfred Perlstein (struct dc_softc *, int, u_int16_t *); 2423097aa70SWarner Losh static void dc_eeprom_width (struct dc_softc *); 243e51a25f8SAlfred Perlstein static void dc_read_eeprom (struct dc_softc *, caddr_t, int, int, int); 24496f2e892SBill Paul 245e51a25f8SAlfred Perlstein static void dc_mii_writebit (struct dc_softc *, int); 246e51a25f8SAlfred Perlstein static int dc_mii_readbit (struct dc_softc *); 247e51a25f8SAlfred Perlstein static void dc_mii_sync (struct dc_softc *); 248e51a25f8SAlfred Perlstein static void dc_mii_send (struct dc_softc *, u_int32_t, int); 249e51a25f8SAlfred Perlstein static int dc_mii_readreg (struct dc_softc *, struct dc_mii_frame *); 250e51a25f8SAlfred Perlstein static int dc_mii_writereg (struct dc_softc *, struct dc_mii_frame *); 251e51a25f8SAlfred Perlstein static int dc_miibus_readreg (device_t, int, int); 252e51a25f8SAlfred Perlstein static int dc_miibus_writereg (device_t, int, int, int); 253e51a25f8SAlfred Perlstein static void dc_miibus_statchg (device_t); 254e51a25f8SAlfred Perlstein static void dc_miibus_mediainit (device_t); 25596f2e892SBill Paul 256e51a25f8SAlfred Perlstein static void dc_setcfg (struct dc_softc *, int); 257e51a25f8SAlfred Perlstein static u_int32_t dc_crc_le (struct dc_softc *, caddr_t); 258e51a25f8SAlfred Perlstein static u_int32_t dc_crc_be (caddr_t); 259e51a25f8SAlfred Perlstein static void dc_setfilt_21143 (struct dc_softc *); 260e51a25f8SAlfred Perlstein static void dc_setfilt_asix (struct dc_softc *); 261e51a25f8SAlfred Perlstein static void dc_setfilt_admtek (struct dc_softc *); 262e51a25f8SAlfred Perlstein static void dc_setfilt_xircom (struct dc_softc *); 26396f2e892SBill Paul 264e51a25f8SAlfred Perlstein static void dc_setfilt (struct dc_softc *); 26596f2e892SBill Paul 266e51a25f8SAlfred Perlstein static void dc_reset (struct dc_softc *); 267e51a25f8SAlfred Perlstein static int dc_list_rx_init (struct dc_softc *); 268e51a25f8SAlfred Perlstein static int dc_list_tx_init (struct dc_softc *); 26996f2e892SBill Paul 2703097aa70SWarner Losh static void dc_read_srom (struct dc_softc *, int); 271e51a25f8SAlfred Perlstein static void dc_parse_21143_srom (struct dc_softc *); 272e51a25f8SAlfred Perlstein static void dc_decode_leaf_sia (struct dc_softc *, struct dc_eblock_sia *); 273e51a25f8SAlfred Perlstein static void dc_decode_leaf_mii (struct dc_softc *, struct dc_eblock_mii *); 274e51a25f8SAlfred Perlstein static void dc_decode_leaf_sym (struct dc_softc *, struct dc_eblock_sym *); 275e51a25f8SAlfred Perlstein static void dc_apply_fixup (struct dc_softc *, int); 2765c1cfac4SBill Paul 27756e5e7aeSMaxime Henrion static void dc_dma_map_txbuf (void *, bus_dma_segment_t *, int, bus_size_t, 27856e5e7aeSMaxime Henrion int); 27956e5e7aeSMaxime Henrion static void dc_dma_map_rxbuf (void *, bus_dma_segment_t *, int, bus_size_t, 28056e5e7aeSMaxime Henrion int); 28156e5e7aeSMaxime Henrion 28296f2e892SBill Paul #ifdef DC_USEIOSPACE 28396f2e892SBill Paul #define DC_RES SYS_RES_IOPORT 28496f2e892SBill Paul #define DC_RID DC_PCI_CFBIO 28596f2e892SBill Paul #else 28696f2e892SBill Paul #define DC_RES SYS_RES_MEMORY 28796f2e892SBill Paul #define DC_RID DC_PCI_CFBMA 28896f2e892SBill Paul #endif 28996f2e892SBill Paul 29096f2e892SBill Paul static device_method_t dc_methods[] = { 29196f2e892SBill Paul /* Device interface */ 29296f2e892SBill Paul DEVMETHOD(device_probe, dc_probe), 29396f2e892SBill Paul DEVMETHOD(device_attach, dc_attach), 29496f2e892SBill Paul DEVMETHOD(device_detach, dc_detach), 295e8388e14SMitsuru IWASAKI DEVMETHOD(device_suspend, dc_suspend), 296e8388e14SMitsuru IWASAKI DEVMETHOD(device_resume, dc_resume), 29796f2e892SBill Paul DEVMETHOD(device_shutdown, dc_shutdown), 29896f2e892SBill Paul 29996f2e892SBill Paul /* bus interface */ 30096f2e892SBill Paul DEVMETHOD(bus_print_child, bus_generic_print_child), 30196f2e892SBill Paul DEVMETHOD(bus_driver_added, bus_generic_driver_added), 30296f2e892SBill Paul 30396f2e892SBill Paul /* MII interface */ 30496f2e892SBill Paul DEVMETHOD(miibus_readreg, dc_miibus_readreg), 30596f2e892SBill Paul DEVMETHOD(miibus_writereg, dc_miibus_writereg), 30696f2e892SBill Paul DEVMETHOD(miibus_statchg, dc_miibus_statchg), 307f43d9309SBill Paul DEVMETHOD(miibus_mediainit, dc_miibus_mediainit), 30896f2e892SBill Paul 30996f2e892SBill Paul { 0, 0 } 31096f2e892SBill Paul }; 31196f2e892SBill Paul 31296f2e892SBill Paul static driver_t dc_driver = { 31396f2e892SBill Paul "dc", 31496f2e892SBill Paul dc_methods, 31596f2e892SBill Paul sizeof(struct dc_softc) 31696f2e892SBill Paul }; 31796f2e892SBill Paul 31896f2e892SBill Paul static devclass_t dc_devclass; 31901faf54bSLuigi Rizzo #ifdef __i386__ 32001faf54bSLuigi Rizzo static int dc_quick = 1; 321b3811c95SMaxime Henrion SYSCTL_INT(_hw, OID_AUTO, dc_quick, CTLFLAG_RW, &dc_quick, 0, 322b3811c95SMaxime Henrion "do not mdevget in dc driver"); 32301faf54bSLuigi Rizzo #endif 32496f2e892SBill Paul 325f246e4a1SMatthew N. Dodd DRIVER_MODULE(dc, cardbus, dc_driver, dc_devclass, 0, 0); 326f246e4a1SMatthew N. Dodd DRIVER_MODULE(dc, pci, dc_driver, dc_devclass, 0, 0); 32796f2e892SBill Paul DRIVER_MODULE(miibus, dc, miibus_driver, miibus_devclass, 0, 0); 32896f2e892SBill Paul 32996f2e892SBill Paul #define DC_SETBIT(sc, reg, x) \ 33096f2e892SBill Paul CSR_WRITE_4(sc, reg, CSR_READ_4(sc, reg) | (x)) 33196f2e892SBill Paul 33296f2e892SBill Paul #define DC_CLRBIT(sc, reg, x) \ 33396f2e892SBill Paul CSR_WRITE_4(sc, reg, CSR_READ_4(sc, reg) & ~(x)) 33496f2e892SBill Paul 33596f2e892SBill Paul #define SIO_SET(x) DC_SETBIT(sc, DC_SIO, (x)) 33696f2e892SBill Paul #define SIO_CLR(x) DC_CLRBIT(sc, DC_SIO, (x)) 33796f2e892SBill Paul 338b50c6312SJonathan Lemon #define IS_MPSAFE 0 339b50c6312SJonathan Lemon 340e3d2833aSAlfred Perlstein static void 3410934f18aSMaxime Henrion dc_delay(struct dc_softc *sc) 34296f2e892SBill Paul { 34396f2e892SBill Paul int idx; 34496f2e892SBill Paul 34596f2e892SBill Paul for (idx = (300 / 33) + 1; idx > 0; idx--) 34696f2e892SBill Paul CSR_READ_4(sc, DC_BUSCTL); 34796f2e892SBill Paul } 34896f2e892SBill Paul 3492c876e15SPoul-Henning Kamp static void 3500934f18aSMaxime Henrion dc_eeprom_width(struct dc_softc *sc) 3513097aa70SWarner Losh { 3523097aa70SWarner Losh int i; 3533097aa70SWarner Losh 3543097aa70SWarner Losh /* Force EEPROM to idle state. */ 3553097aa70SWarner Losh dc_eeprom_idle(sc); 3563097aa70SWarner Losh 3573097aa70SWarner Losh /* Enter EEPROM access mode. */ 3583097aa70SWarner Losh CSR_WRITE_4(sc, DC_SIO, DC_SIO_EESEL); 3593097aa70SWarner Losh dc_delay(sc); 3603097aa70SWarner Losh DC_SETBIT(sc, DC_SIO, DC_SIO_ROMCTL_READ); 3613097aa70SWarner Losh dc_delay(sc); 3623097aa70SWarner Losh DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK); 3633097aa70SWarner Losh dc_delay(sc); 3643097aa70SWarner Losh DC_SETBIT(sc, DC_SIO, DC_SIO_EE_CS); 3653097aa70SWarner Losh dc_delay(sc); 3663097aa70SWarner Losh 3673097aa70SWarner Losh for (i = 3; i--;) { 3683097aa70SWarner Losh if (6 & (1 << i)) 3693097aa70SWarner Losh DC_SETBIT(sc, DC_SIO, DC_SIO_EE_DATAIN); 3703097aa70SWarner Losh else 3713097aa70SWarner Losh DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_DATAIN); 3723097aa70SWarner Losh dc_delay(sc); 3733097aa70SWarner Losh DC_SETBIT(sc, DC_SIO, DC_SIO_EE_CLK); 3743097aa70SWarner Losh dc_delay(sc); 3753097aa70SWarner Losh DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK); 3763097aa70SWarner Losh dc_delay(sc); 3773097aa70SWarner Losh } 3783097aa70SWarner Losh 3793097aa70SWarner Losh for (i = 1; i <= 12; i++) { 3803097aa70SWarner Losh DC_SETBIT(sc, DC_SIO, DC_SIO_EE_CLK); 3813097aa70SWarner Losh dc_delay(sc); 3823097aa70SWarner Losh if (!(CSR_READ_4(sc, DC_SIO) & DC_SIO_EE_DATAOUT)) { 3833097aa70SWarner Losh DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK); 3843097aa70SWarner Losh dc_delay(sc); 3853097aa70SWarner Losh break; 3863097aa70SWarner Losh } 3873097aa70SWarner Losh DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK); 3883097aa70SWarner Losh dc_delay(sc); 3893097aa70SWarner Losh } 3903097aa70SWarner Losh 3913097aa70SWarner Losh /* Turn off EEPROM access mode. */ 3923097aa70SWarner Losh dc_eeprom_idle(sc); 3933097aa70SWarner Losh 3943097aa70SWarner Losh if (i < 4 || i > 12) 3953097aa70SWarner Losh sc->dc_romwidth = 6; 3963097aa70SWarner Losh else 3973097aa70SWarner Losh sc->dc_romwidth = i; 3983097aa70SWarner Losh 3993097aa70SWarner Losh /* Enter EEPROM access mode. */ 4003097aa70SWarner Losh CSR_WRITE_4(sc, DC_SIO, DC_SIO_EESEL); 4013097aa70SWarner Losh dc_delay(sc); 4023097aa70SWarner Losh DC_SETBIT(sc, DC_SIO, DC_SIO_ROMCTL_READ); 4033097aa70SWarner Losh dc_delay(sc); 4043097aa70SWarner Losh DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK); 4053097aa70SWarner Losh dc_delay(sc); 4063097aa70SWarner Losh DC_SETBIT(sc, DC_SIO, DC_SIO_EE_CS); 4073097aa70SWarner Losh dc_delay(sc); 4083097aa70SWarner Losh 4093097aa70SWarner Losh /* Turn off EEPROM access mode. */ 4103097aa70SWarner Losh dc_eeprom_idle(sc); 4113097aa70SWarner Losh } 4123097aa70SWarner Losh 413e3d2833aSAlfred Perlstein static void 4140934f18aSMaxime Henrion dc_eeprom_idle(struct dc_softc *sc) 41596f2e892SBill Paul { 4160934f18aSMaxime Henrion int i; 41796f2e892SBill Paul 41896f2e892SBill Paul CSR_WRITE_4(sc, DC_SIO, DC_SIO_EESEL); 41996f2e892SBill Paul dc_delay(sc); 42096f2e892SBill Paul DC_SETBIT(sc, DC_SIO, DC_SIO_ROMCTL_READ); 42196f2e892SBill Paul dc_delay(sc); 42296f2e892SBill Paul DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK); 42396f2e892SBill Paul dc_delay(sc); 42496f2e892SBill Paul DC_SETBIT(sc, DC_SIO, DC_SIO_EE_CS); 42596f2e892SBill Paul dc_delay(sc); 42696f2e892SBill Paul 42796f2e892SBill Paul for (i = 0; i < 25; i++) { 42896f2e892SBill Paul DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK); 42996f2e892SBill Paul dc_delay(sc); 43096f2e892SBill Paul DC_SETBIT(sc, DC_SIO, DC_SIO_EE_CLK); 43196f2e892SBill Paul dc_delay(sc); 43296f2e892SBill Paul } 43396f2e892SBill Paul 43496f2e892SBill Paul DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK); 43596f2e892SBill Paul dc_delay(sc); 43696f2e892SBill Paul DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CS); 43796f2e892SBill Paul dc_delay(sc); 43896f2e892SBill Paul CSR_WRITE_4(sc, DC_SIO, 0x00000000); 43996f2e892SBill Paul } 44096f2e892SBill Paul 44196f2e892SBill Paul /* 44296f2e892SBill Paul * Send a read command and address to the EEPROM, check for ACK. 44396f2e892SBill Paul */ 444e3d2833aSAlfred Perlstein static void 4450934f18aSMaxime Henrion dc_eeprom_putbyte(struct dc_softc *sc, int addr) 44696f2e892SBill Paul { 4470934f18aSMaxime Henrion int d, i; 44896f2e892SBill Paul 4493097aa70SWarner Losh d = DC_EECMD_READ >> 6; 4503097aa70SWarner Losh for (i = 3; i--; ) { 4513097aa70SWarner Losh if (d & (1 << i)) 4523097aa70SWarner Losh DC_SETBIT(sc, DC_SIO, DC_SIO_EE_DATAIN); 45396f2e892SBill Paul else 4543097aa70SWarner Losh DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_DATAIN); 4553097aa70SWarner Losh dc_delay(sc); 4563097aa70SWarner Losh DC_SETBIT(sc, DC_SIO, DC_SIO_EE_CLK); 4573097aa70SWarner Losh dc_delay(sc); 4583097aa70SWarner Losh DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK); 4593097aa70SWarner Losh dc_delay(sc); 4603097aa70SWarner Losh } 46196f2e892SBill Paul 46296f2e892SBill Paul /* 46396f2e892SBill Paul * Feed in each bit and strobe the clock. 46496f2e892SBill Paul */ 4653097aa70SWarner Losh for (i = sc->dc_romwidth; i--;) { 4663097aa70SWarner Losh if (addr & (1 << i)) { 46796f2e892SBill Paul SIO_SET(DC_SIO_EE_DATAIN); 46896f2e892SBill Paul } else { 46996f2e892SBill Paul SIO_CLR(DC_SIO_EE_DATAIN); 47096f2e892SBill Paul } 47196f2e892SBill Paul dc_delay(sc); 47296f2e892SBill Paul SIO_SET(DC_SIO_EE_CLK); 47396f2e892SBill Paul dc_delay(sc); 47496f2e892SBill Paul SIO_CLR(DC_SIO_EE_CLK); 47596f2e892SBill Paul dc_delay(sc); 47696f2e892SBill Paul } 47796f2e892SBill Paul } 47896f2e892SBill Paul 47996f2e892SBill Paul /* 48096f2e892SBill Paul * Read a word of data stored in the EEPROM at address 'addr.' 48196f2e892SBill Paul * The PNIC 82c168/82c169 has its own non-standard way to read 48296f2e892SBill Paul * the EEPROM. 48396f2e892SBill Paul */ 484e3d2833aSAlfred Perlstein static void 4850934f18aSMaxime Henrion dc_eeprom_getword_pnic(struct dc_softc *sc, int addr, u_int16_t *dest) 48696f2e892SBill Paul { 4870934f18aSMaxime Henrion int i; 48896f2e892SBill Paul u_int32_t r; 48996f2e892SBill Paul 49096f2e892SBill Paul CSR_WRITE_4(sc, DC_PN_SIOCTL, DC_PN_EEOPCODE_READ | addr); 49196f2e892SBill Paul 49296f2e892SBill Paul for (i = 0; i < DC_TIMEOUT; i++) { 49396f2e892SBill Paul DELAY(1); 49496f2e892SBill Paul r = CSR_READ_4(sc, DC_SIO); 49596f2e892SBill Paul if (!(r & DC_PN_SIOCTL_BUSY)) { 49696f2e892SBill Paul *dest = (u_int16_t)(r & 0xFFFF); 49796f2e892SBill Paul return; 49896f2e892SBill Paul } 49996f2e892SBill Paul } 50096f2e892SBill Paul } 50196f2e892SBill Paul 50296f2e892SBill Paul /* 50396f2e892SBill Paul * Read a word of data stored in the EEPROM at address 'addr.' 504feb78939SJonathan Chen * The Xircom X3201 has its own non-standard way to read 505feb78939SJonathan Chen * the EEPROM, too. 506feb78939SJonathan Chen */ 507e3d2833aSAlfred Perlstein static void 5080934f18aSMaxime Henrion dc_eeprom_getword_xircom(struct dc_softc *sc, int addr, u_int16_t *dest) 509feb78939SJonathan Chen { 5100934f18aSMaxime Henrion 511feb78939SJonathan Chen SIO_SET(DC_SIO_ROMSEL | DC_SIO_ROMCTL_READ); 512feb78939SJonathan Chen 513feb78939SJonathan Chen addr *= 2; 514feb78939SJonathan Chen CSR_WRITE_4(sc, DC_ROM, addr | 0x160); 515feb78939SJonathan Chen *dest = (u_int16_t)CSR_READ_4(sc, DC_SIO) & 0xff; 516feb78939SJonathan Chen addr += 1; 517feb78939SJonathan Chen CSR_WRITE_4(sc, DC_ROM, addr | 0x160); 518feb78939SJonathan Chen *dest |= ((u_int16_t)CSR_READ_4(sc, DC_SIO) & 0xff) << 8; 519feb78939SJonathan Chen 520feb78939SJonathan Chen SIO_CLR(DC_SIO_ROMSEL | DC_SIO_ROMCTL_READ); 521feb78939SJonathan Chen } 522feb78939SJonathan Chen 523feb78939SJonathan Chen /* 524feb78939SJonathan Chen * Read a word of data stored in the EEPROM at address 'addr.' 52596f2e892SBill Paul */ 526e3d2833aSAlfred Perlstein static void 5270934f18aSMaxime Henrion dc_eeprom_getword(struct dc_softc *sc, int addr, u_int16_t *dest) 52896f2e892SBill Paul { 5290934f18aSMaxime Henrion int i; 53096f2e892SBill Paul u_int16_t word = 0; 53196f2e892SBill Paul 53296f2e892SBill Paul /* Force EEPROM to idle state. */ 53396f2e892SBill Paul dc_eeprom_idle(sc); 53496f2e892SBill Paul 53596f2e892SBill Paul /* Enter EEPROM access mode. */ 53696f2e892SBill Paul CSR_WRITE_4(sc, DC_SIO, DC_SIO_EESEL); 53796f2e892SBill Paul dc_delay(sc); 53896f2e892SBill Paul DC_SETBIT(sc, DC_SIO, DC_SIO_ROMCTL_READ); 53996f2e892SBill Paul dc_delay(sc); 54096f2e892SBill Paul DC_CLRBIT(sc, DC_SIO, DC_SIO_EE_CLK); 54196f2e892SBill Paul dc_delay(sc); 54296f2e892SBill Paul DC_SETBIT(sc, DC_SIO, DC_SIO_EE_CS); 54396f2e892SBill Paul dc_delay(sc); 54496f2e892SBill Paul 54596f2e892SBill Paul /* 54696f2e892SBill Paul * Send address of word we want to read. 54796f2e892SBill Paul */ 54896f2e892SBill Paul dc_eeprom_putbyte(sc, addr); 54996f2e892SBill Paul 55096f2e892SBill Paul /* 55196f2e892SBill Paul * Start reading bits from EEPROM. 55296f2e892SBill Paul */ 55396f2e892SBill Paul for (i = 0x8000; i; i >>= 1) { 55496f2e892SBill Paul SIO_SET(DC_SIO_EE_CLK); 55596f2e892SBill Paul dc_delay(sc); 55696f2e892SBill Paul if (CSR_READ_4(sc, DC_SIO) & DC_SIO_EE_DATAOUT) 55796f2e892SBill Paul word |= i; 55896f2e892SBill Paul dc_delay(sc); 55996f2e892SBill Paul SIO_CLR(DC_SIO_EE_CLK); 56096f2e892SBill Paul dc_delay(sc); 56196f2e892SBill Paul } 56296f2e892SBill Paul 56396f2e892SBill Paul /* Turn off EEPROM access mode. */ 56496f2e892SBill Paul dc_eeprom_idle(sc); 56596f2e892SBill Paul 56696f2e892SBill Paul *dest = word; 56796f2e892SBill Paul } 56896f2e892SBill Paul 56996f2e892SBill Paul /* 57096f2e892SBill Paul * Read a sequence of words from the EEPROM. 57196f2e892SBill Paul */ 572e3d2833aSAlfred Perlstein static void 5730934f18aSMaxime Henrion dc_read_eeprom(struct dc_softc *sc, caddr_t dest, int off, int cnt, int swap) 57496f2e892SBill Paul { 57596f2e892SBill Paul int i; 57696f2e892SBill Paul u_int16_t word = 0, *ptr; 57796f2e892SBill Paul 57896f2e892SBill Paul for (i = 0; i < cnt; i++) { 57996f2e892SBill Paul if (DC_IS_PNIC(sc)) 58096f2e892SBill Paul dc_eeprom_getword_pnic(sc, off + i, &word); 581feb78939SJonathan Chen else if (DC_IS_XIRCOM(sc)) 582feb78939SJonathan Chen dc_eeprom_getword_xircom(sc, off + i, &word); 58396f2e892SBill Paul else 58496f2e892SBill Paul dc_eeprom_getword(sc, off + i, &word); 58596f2e892SBill Paul ptr = (u_int16_t *)(dest + (i * 2)); 58696f2e892SBill Paul if (swap) 58796f2e892SBill Paul *ptr = ntohs(word); 58896f2e892SBill Paul else 58996f2e892SBill Paul *ptr = word; 59096f2e892SBill Paul } 59196f2e892SBill Paul } 59296f2e892SBill Paul 59396f2e892SBill Paul /* 59496f2e892SBill Paul * The following two routines are taken from the Macronix 98713 59596f2e892SBill Paul * Application Notes pp.19-21. 59696f2e892SBill Paul */ 59796f2e892SBill Paul /* 59896f2e892SBill Paul * Write a bit to the MII bus. 59996f2e892SBill Paul */ 600e3d2833aSAlfred Perlstein static void 6010934f18aSMaxime Henrion dc_mii_writebit(struct dc_softc *sc, int bit) 60296f2e892SBill Paul { 6030934f18aSMaxime Henrion 60496f2e892SBill Paul if (bit) 60596f2e892SBill Paul CSR_WRITE_4(sc, DC_SIO, 60696f2e892SBill Paul DC_SIO_ROMCTL_WRITE | DC_SIO_MII_DATAOUT); 60796f2e892SBill Paul else 60896f2e892SBill Paul CSR_WRITE_4(sc, DC_SIO, DC_SIO_ROMCTL_WRITE); 60996f2e892SBill Paul 61096f2e892SBill Paul DC_SETBIT(sc, DC_SIO, DC_SIO_MII_CLK); 61196f2e892SBill Paul DC_CLRBIT(sc, DC_SIO, DC_SIO_MII_CLK); 61296f2e892SBill Paul } 61396f2e892SBill Paul 61496f2e892SBill Paul /* 61596f2e892SBill Paul * Read a bit from the MII bus. 61696f2e892SBill Paul */ 617e3d2833aSAlfred Perlstein static int 6180934f18aSMaxime Henrion dc_mii_readbit(struct dc_softc *sc) 61996f2e892SBill Paul { 6200934f18aSMaxime Henrion 62196f2e892SBill Paul CSR_WRITE_4(sc, DC_SIO, DC_SIO_ROMCTL_READ | DC_SIO_MII_DIR); 62296f2e892SBill Paul CSR_READ_4(sc, DC_SIO); 62396f2e892SBill Paul DC_SETBIT(sc, DC_SIO, DC_SIO_MII_CLK); 62496f2e892SBill Paul DC_CLRBIT(sc, DC_SIO, DC_SIO_MII_CLK); 62596f2e892SBill Paul if (CSR_READ_4(sc, DC_SIO) & DC_SIO_MII_DATAIN) 62696f2e892SBill Paul return (1); 62796f2e892SBill Paul 62896f2e892SBill Paul return (0); 62996f2e892SBill Paul } 63096f2e892SBill Paul 63196f2e892SBill Paul /* 63296f2e892SBill Paul * Sync the PHYs by setting data bit and strobing the clock 32 times. 63396f2e892SBill Paul */ 634e3d2833aSAlfred Perlstein static void 6350934f18aSMaxime Henrion dc_mii_sync(struct dc_softc *sc) 63696f2e892SBill Paul { 6370934f18aSMaxime Henrion int i; 63896f2e892SBill Paul 63996f2e892SBill Paul CSR_WRITE_4(sc, DC_SIO, DC_SIO_ROMCTL_WRITE); 64096f2e892SBill Paul 64196f2e892SBill Paul for (i = 0; i < 32; i++) 64296f2e892SBill Paul dc_mii_writebit(sc, 1); 64396f2e892SBill Paul } 64496f2e892SBill Paul 64596f2e892SBill Paul /* 64696f2e892SBill Paul * Clock a series of bits through the MII. 64796f2e892SBill Paul */ 648e3d2833aSAlfred Perlstein static void 6490934f18aSMaxime Henrion dc_mii_send(struct dc_softc *sc, u_int32_t bits, int cnt) 65096f2e892SBill Paul { 65196f2e892SBill Paul int i; 65296f2e892SBill Paul 65396f2e892SBill Paul for (i = (0x1 << (cnt - 1)); i; i >>= 1) 65496f2e892SBill Paul dc_mii_writebit(sc, bits & i); 65596f2e892SBill Paul } 65696f2e892SBill Paul 65796f2e892SBill Paul /* 65896f2e892SBill Paul * Read an PHY register through the MII. 65996f2e892SBill Paul */ 660e3d2833aSAlfred Perlstein static int 6610934f18aSMaxime Henrion dc_mii_readreg(struct dc_softc *sc, struct dc_mii_frame *frame) 66296f2e892SBill Paul { 663d1ce9105SBill Paul int i, ack; 66496f2e892SBill Paul 665d1ce9105SBill Paul DC_LOCK(sc); 66696f2e892SBill Paul 66796f2e892SBill Paul /* 66896f2e892SBill Paul * Set up frame for RX. 66996f2e892SBill Paul */ 67096f2e892SBill Paul frame->mii_stdelim = DC_MII_STARTDELIM; 67196f2e892SBill Paul frame->mii_opcode = DC_MII_READOP; 67296f2e892SBill Paul frame->mii_turnaround = 0; 67396f2e892SBill Paul frame->mii_data = 0; 67496f2e892SBill Paul 67596f2e892SBill Paul /* 67696f2e892SBill Paul * Sync the PHYs. 67796f2e892SBill Paul */ 67896f2e892SBill Paul dc_mii_sync(sc); 67996f2e892SBill Paul 68096f2e892SBill Paul /* 68196f2e892SBill Paul * Send command/address info. 68296f2e892SBill Paul */ 68396f2e892SBill Paul dc_mii_send(sc, frame->mii_stdelim, 2); 68496f2e892SBill Paul dc_mii_send(sc, frame->mii_opcode, 2); 68596f2e892SBill Paul dc_mii_send(sc, frame->mii_phyaddr, 5); 68696f2e892SBill Paul dc_mii_send(sc, frame->mii_regaddr, 5); 68796f2e892SBill Paul 68896f2e892SBill Paul #ifdef notdef 68996f2e892SBill Paul /* Idle bit */ 69096f2e892SBill Paul dc_mii_writebit(sc, 1); 69196f2e892SBill Paul dc_mii_writebit(sc, 0); 69296f2e892SBill Paul #endif 69396f2e892SBill Paul 6940934f18aSMaxime Henrion /* Check for ack. */ 69596f2e892SBill Paul ack = dc_mii_readbit(sc); 69696f2e892SBill Paul 69796f2e892SBill Paul /* 69896f2e892SBill Paul * Now try reading data bits. If the ack failed, we still 69996f2e892SBill Paul * need to clock through 16 cycles to keep the PHY(s) in sync. 70096f2e892SBill Paul */ 70196f2e892SBill Paul if (ack) { 7020934f18aSMaxime Henrion for (i = 0; i < 16; i++) 70396f2e892SBill Paul dc_mii_readbit(sc); 70496f2e892SBill Paul goto fail; 70596f2e892SBill Paul } 70696f2e892SBill Paul 70796f2e892SBill Paul for (i = 0x8000; i; i >>= 1) { 70896f2e892SBill Paul if (!ack) { 70996f2e892SBill Paul if (dc_mii_readbit(sc)) 71096f2e892SBill Paul frame->mii_data |= i; 71196f2e892SBill Paul } 71296f2e892SBill Paul } 71396f2e892SBill Paul 71496f2e892SBill Paul fail: 71596f2e892SBill Paul 71696f2e892SBill Paul dc_mii_writebit(sc, 0); 71796f2e892SBill Paul dc_mii_writebit(sc, 0); 71896f2e892SBill Paul 719d1ce9105SBill Paul DC_UNLOCK(sc); 72096f2e892SBill Paul 72196f2e892SBill Paul if (ack) 72296f2e892SBill Paul return (1); 72396f2e892SBill Paul return (0); 72496f2e892SBill Paul } 72596f2e892SBill Paul 72696f2e892SBill Paul /* 72796f2e892SBill Paul * Write to a PHY register through the MII. 72896f2e892SBill Paul */ 729e3d2833aSAlfred Perlstein static int 7300934f18aSMaxime Henrion dc_mii_writereg(struct dc_softc *sc, struct dc_mii_frame *frame) 73196f2e892SBill Paul { 7320934f18aSMaxime Henrion 733d1ce9105SBill Paul DC_LOCK(sc); 73496f2e892SBill Paul /* 73596f2e892SBill Paul * Set up frame for TX. 73696f2e892SBill Paul */ 73796f2e892SBill Paul 73896f2e892SBill Paul frame->mii_stdelim = DC_MII_STARTDELIM; 73996f2e892SBill Paul frame->mii_opcode = DC_MII_WRITEOP; 74096f2e892SBill Paul frame->mii_turnaround = DC_MII_TURNAROUND; 74196f2e892SBill Paul 74296f2e892SBill Paul /* 74396f2e892SBill Paul * Sync the PHYs. 74496f2e892SBill Paul */ 74596f2e892SBill Paul dc_mii_sync(sc); 74696f2e892SBill Paul 74796f2e892SBill Paul dc_mii_send(sc, frame->mii_stdelim, 2); 74896f2e892SBill Paul dc_mii_send(sc, frame->mii_opcode, 2); 74996f2e892SBill Paul dc_mii_send(sc, frame->mii_phyaddr, 5); 75096f2e892SBill Paul dc_mii_send(sc, frame->mii_regaddr, 5); 75196f2e892SBill Paul dc_mii_send(sc, frame->mii_turnaround, 2); 75296f2e892SBill Paul dc_mii_send(sc, frame->mii_data, 16); 75396f2e892SBill Paul 75496f2e892SBill Paul /* Idle bit. */ 75596f2e892SBill Paul dc_mii_writebit(sc, 0); 75696f2e892SBill Paul dc_mii_writebit(sc, 0); 75796f2e892SBill Paul 758d1ce9105SBill Paul DC_UNLOCK(sc); 75996f2e892SBill Paul 76096f2e892SBill Paul return (0); 76196f2e892SBill Paul } 76296f2e892SBill Paul 763e3d2833aSAlfred Perlstein static int 7640934f18aSMaxime Henrion dc_miibus_readreg(device_t dev, int phy, int reg) 76596f2e892SBill Paul { 76696f2e892SBill Paul struct dc_mii_frame frame; 76796f2e892SBill Paul struct dc_softc *sc; 768c85c4667SBill Paul int i, rval, phy_reg = 0; 76996f2e892SBill Paul 77096f2e892SBill Paul sc = device_get_softc(dev); 7710934f18aSMaxime Henrion bzero(&frame, sizeof(frame)); 77296f2e892SBill Paul 77396f2e892SBill Paul /* 77496f2e892SBill Paul * Note: both the AL981 and AN985 have internal PHYs, 77596f2e892SBill Paul * however the AL981 provides direct access to the PHY 77696f2e892SBill Paul * registers while the AN985 uses a serial MII interface. 77796f2e892SBill Paul * The AN985's MII interface is also buggy in that you 77896f2e892SBill Paul * can read from any MII address (0 to 31), but only address 1 77996f2e892SBill Paul * behaves normally. To deal with both cases, we pretend 78096f2e892SBill Paul * that the PHY is at MII address 1. 78196f2e892SBill Paul */ 78296f2e892SBill Paul if (DC_IS_ADMTEK(sc) && phy != DC_ADMTEK_PHYADDR) 78396f2e892SBill Paul return (0); 78496f2e892SBill Paul 7851af8bec7SBill Paul /* 7861af8bec7SBill Paul * Note: the ukphy probes of the RS7112 report a PHY at 7871af8bec7SBill Paul * MII address 0 (possibly HomePNA?) and 1 (ethernet) 7881af8bec7SBill Paul * so we only respond to correct one. 7891af8bec7SBill Paul */ 7901af8bec7SBill Paul if (DC_IS_CONEXANT(sc) && phy != DC_CONEXANT_PHYADDR) 7911af8bec7SBill Paul return (0); 7921af8bec7SBill Paul 7935c1cfac4SBill Paul if (sc->dc_pmode != DC_PMODE_MII) { 79496f2e892SBill Paul if (phy == (MII_NPHY - 1)) { 79596f2e892SBill Paul switch (reg) { 79696f2e892SBill Paul case MII_BMSR: 79796f2e892SBill Paul /* 79896f2e892SBill Paul * Fake something to make the probe 79996f2e892SBill Paul * code think there's a PHY here. 80096f2e892SBill Paul */ 80196f2e892SBill Paul return (BMSR_MEDIAMASK); 80296f2e892SBill Paul break; 80396f2e892SBill Paul case MII_PHYIDR1: 80496f2e892SBill Paul if (DC_IS_PNIC(sc)) 80596f2e892SBill Paul return (DC_VENDORID_LO); 80696f2e892SBill Paul return (DC_VENDORID_DEC); 80796f2e892SBill Paul break; 80896f2e892SBill Paul case MII_PHYIDR2: 80996f2e892SBill Paul if (DC_IS_PNIC(sc)) 81096f2e892SBill Paul return (DC_DEVICEID_82C168); 81196f2e892SBill Paul return (DC_DEVICEID_21143); 81296f2e892SBill Paul break; 81396f2e892SBill Paul default: 81496f2e892SBill Paul return (0); 81596f2e892SBill Paul break; 81696f2e892SBill Paul } 81796f2e892SBill Paul } else 81896f2e892SBill Paul return (0); 81996f2e892SBill Paul } 82096f2e892SBill Paul 82196f2e892SBill Paul if (DC_IS_PNIC(sc)) { 82296f2e892SBill Paul CSR_WRITE_4(sc, DC_PN_MII, DC_PN_MIIOPCODE_READ | 82396f2e892SBill Paul (phy << 23) | (reg << 18)); 82496f2e892SBill Paul for (i = 0; i < DC_TIMEOUT; i++) { 82596f2e892SBill Paul DELAY(1); 82696f2e892SBill Paul rval = CSR_READ_4(sc, DC_PN_MII); 82796f2e892SBill Paul if (!(rval & DC_PN_MII_BUSY)) { 82896f2e892SBill Paul rval &= 0xFFFF; 82996f2e892SBill Paul return (rval == 0xFFFF ? 0 : rval); 83096f2e892SBill Paul } 83196f2e892SBill Paul } 83296f2e892SBill Paul return (0); 83396f2e892SBill Paul } 83496f2e892SBill Paul 83596f2e892SBill Paul if (DC_IS_COMET(sc)) { 83696f2e892SBill Paul switch (reg) { 83796f2e892SBill Paul case MII_BMCR: 83896f2e892SBill Paul phy_reg = DC_AL_BMCR; 83996f2e892SBill Paul break; 84096f2e892SBill Paul case MII_BMSR: 84196f2e892SBill Paul phy_reg = DC_AL_BMSR; 84296f2e892SBill Paul break; 84396f2e892SBill Paul case MII_PHYIDR1: 84496f2e892SBill Paul phy_reg = DC_AL_VENID; 84596f2e892SBill Paul break; 84696f2e892SBill Paul case MII_PHYIDR2: 84796f2e892SBill Paul phy_reg = DC_AL_DEVID; 84896f2e892SBill Paul break; 84996f2e892SBill Paul case MII_ANAR: 85096f2e892SBill Paul phy_reg = DC_AL_ANAR; 85196f2e892SBill Paul break; 85296f2e892SBill Paul case MII_ANLPAR: 85396f2e892SBill Paul phy_reg = DC_AL_LPAR; 85496f2e892SBill Paul break; 85596f2e892SBill Paul case MII_ANER: 85696f2e892SBill Paul phy_reg = DC_AL_ANER; 85796f2e892SBill Paul break; 85896f2e892SBill Paul default: 85996f2e892SBill Paul printf("dc%d: phy_read: bad phy register %x\n", 86096f2e892SBill Paul sc->dc_unit, reg); 86196f2e892SBill Paul return (0); 86296f2e892SBill Paul break; 86396f2e892SBill Paul } 86496f2e892SBill Paul 86596f2e892SBill Paul rval = CSR_READ_4(sc, phy_reg) & 0x0000FFFF; 86696f2e892SBill Paul 86796f2e892SBill Paul if (rval == 0xFFFF) 86896f2e892SBill Paul return (0); 86996f2e892SBill Paul return (rval); 87096f2e892SBill Paul } 87196f2e892SBill Paul 87296f2e892SBill Paul frame.mii_phyaddr = phy; 87396f2e892SBill Paul frame.mii_regaddr = reg; 874419146d9SBill Paul if (sc->dc_type == DC_TYPE_98713) { 875f43d9309SBill Paul phy_reg = CSR_READ_4(sc, DC_NETCFG); 876f43d9309SBill Paul CSR_WRITE_4(sc, DC_NETCFG, phy_reg & ~DC_NETCFG_PORTSEL); 877419146d9SBill Paul } 87896f2e892SBill Paul dc_mii_readreg(sc, &frame); 879419146d9SBill Paul if (sc->dc_type == DC_TYPE_98713) 880f43d9309SBill Paul CSR_WRITE_4(sc, DC_NETCFG, phy_reg); 88196f2e892SBill Paul 88296f2e892SBill Paul return (frame.mii_data); 88396f2e892SBill Paul } 88496f2e892SBill Paul 885e3d2833aSAlfred Perlstein static int 8860934f18aSMaxime Henrion dc_miibus_writereg(device_t dev, int phy, int reg, int data) 88796f2e892SBill Paul { 88896f2e892SBill Paul struct dc_softc *sc; 88996f2e892SBill Paul struct dc_mii_frame frame; 890c85c4667SBill Paul int i, phy_reg = 0; 89196f2e892SBill Paul 89296f2e892SBill Paul sc = device_get_softc(dev); 8930934f18aSMaxime Henrion bzero(&frame, sizeof(frame)); 89496f2e892SBill Paul 89596f2e892SBill Paul if (DC_IS_ADMTEK(sc) && phy != DC_ADMTEK_PHYADDR) 89696f2e892SBill Paul return (0); 89796f2e892SBill Paul 8981af8bec7SBill Paul if (DC_IS_CONEXANT(sc) && phy != DC_CONEXANT_PHYADDR) 8991af8bec7SBill Paul return (0); 9001af8bec7SBill Paul 90196f2e892SBill Paul if (DC_IS_PNIC(sc)) { 90296f2e892SBill Paul CSR_WRITE_4(sc, DC_PN_MII, DC_PN_MIIOPCODE_WRITE | 90396f2e892SBill Paul (phy << 23) | (reg << 10) | data); 90496f2e892SBill Paul for (i = 0; i < DC_TIMEOUT; i++) { 90596f2e892SBill Paul if (!(CSR_READ_4(sc, DC_PN_MII) & DC_PN_MII_BUSY)) 90696f2e892SBill Paul break; 90796f2e892SBill Paul } 90896f2e892SBill Paul return (0); 90996f2e892SBill Paul } 91096f2e892SBill Paul 91196f2e892SBill Paul if (DC_IS_COMET(sc)) { 91296f2e892SBill Paul switch (reg) { 91396f2e892SBill Paul case MII_BMCR: 91496f2e892SBill Paul phy_reg = DC_AL_BMCR; 91596f2e892SBill Paul break; 91696f2e892SBill Paul case MII_BMSR: 91796f2e892SBill Paul phy_reg = DC_AL_BMSR; 91896f2e892SBill Paul break; 91996f2e892SBill Paul case MII_PHYIDR1: 92096f2e892SBill Paul phy_reg = DC_AL_VENID; 92196f2e892SBill Paul break; 92296f2e892SBill Paul case MII_PHYIDR2: 92396f2e892SBill Paul phy_reg = DC_AL_DEVID; 92496f2e892SBill Paul break; 92596f2e892SBill Paul case MII_ANAR: 92696f2e892SBill Paul phy_reg = DC_AL_ANAR; 92796f2e892SBill Paul break; 92896f2e892SBill Paul case MII_ANLPAR: 92996f2e892SBill Paul phy_reg = DC_AL_LPAR; 93096f2e892SBill Paul break; 93196f2e892SBill Paul case MII_ANER: 93296f2e892SBill Paul phy_reg = DC_AL_ANER; 93396f2e892SBill Paul break; 93496f2e892SBill Paul default: 93596f2e892SBill Paul printf("dc%d: phy_write: bad phy register %x\n", 93696f2e892SBill Paul sc->dc_unit, reg); 93796f2e892SBill Paul return (0); 93896f2e892SBill Paul break; 93996f2e892SBill Paul } 94096f2e892SBill Paul 94196f2e892SBill Paul CSR_WRITE_4(sc, phy_reg, data); 94296f2e892SBill Paul return (0); 94396f2e892SBill Paul } 94496f2e892SBill Paul 94596f2e892SBill Paul frame.mii_phyaddr = phy; 94696f2e892SBill Paul frame.mii_regaddr = reg; 94796f2e892SBill Paul frame.mii_data = data; 94896f2e892SBill Paul 949419146d9SBill Paul if (sc->dc_type == DC_TYPE_98713) { 950f43d9309SBill Paul phy_reg = CSR_READ_4(sc, DC_NETCFG); 951f43d9309SBill Paul CSR_WRITE_4(sc, DC_NETCFG, phy_reg & ~DC_NETCFG_PORTSEL); 952419146d9SBill Paul } 95396f2e892SBill Paul dc_mii_writereg(sc, &frame); 954419146d9SBill Paul if (sc->dc_type == DC_TYPE_98713) 955f43d9309SBill Paul CSR_WRITE_4(sc, DC_NETCFG, phy_reg); 95696f2e892SBill Paul 95796f2e892SBill Paul return (0); 95896f2e892SBill Paul } 95996f2e892SBill Paul 960e3d2833aSAlfred Perlstein static void 9610934f18aSMaxime Henrion dc_miibus_statchg(device_t dev) 96296f2e892SBill Paul { 96396f2e892SBill Paul struct dc_softc *sc; 96496f2e892SBill Paul struct mii_data *mii; 965f43d9309SBill Paul struct ifmedia *ifm; 96696f2e892SBill Paul 96796f2e892SBill Paul sc = device_get_softc(dev); 96896f2e892SBill Paul if (DC_IS_ADMTEK(sc)) 96996f2e892SBill Paul return; 9705c1cfac4SBill Paul 97196f2e892SBill Paul mii = device_get_softc(sc->dc_miibus); 972f43d9309SBill Paul ifm = &mii->mii_media; 973f43d9309SBill Paul if (DC_IS_DAVICOM(sc) && 97445521525SPoul-Henning Kamp IFM_SUBTYPE(ifm->ifm_media) == IFM_HPNA_1) { 975f43d9309SBill Paul dc_setcfg(sc, ifm->ifm_media); 976f43d9309SBill Paul sc->dc_if_media = ifm->ifm_media; 977f43d9309SBill Paul } else { 97896f2e892SBill Paul dc_setcfg(sc, mii->mii_media_active); 97996f2e892SBill Paul sc->dc_if_media = mii->mii_media_active; 980f43d9309SBill Paul } 981f43d9309SBill Paul } 982f43d9309SBill Paul 983f43d9309SBill Paul /* 984f43d9309SBill Paul * Special support for DM9102A cards with HomePNA PHYs. Note: 985f43d9309SBill Paul * with the Davicom DM9102A/DM9801 eval board that I have, it seems 986f43d9309SBill Paul * to be impossible to talk to the management interface of the DM9801 987f43d9309SBill Paul * PHY (its MDIO pin is not connected to anything). Consequently, 988f43d9309SBill Paul * the driver has to just 'know' about the additional mode and deal 989f43d9309SBill Paul * with it itself. *sigh* 990f43d9309SBill Paul */ 991e3d2833aSAlfred Perlstein static void 9920934f18aSMaxime Henrion dc_miibus_mediainit(device_t dev) 993f43d9309SBill Paul { 994f43d9309SBill Paul struct dc_softc *sc; 995f43d9309SBill Paul struct mii_data *mii; 996f43d9309SBill Paul struct ifmedia *ifm; 997f43d9309SBill Paul int rev; 998f43d9309SBill Paul 999f43d9309SBill Paul rev = pci_read_config(dev, DC_PCI_CFRV, 4) & 0xFF; 1000f43d9309SBill Paul 1001f43d9309SBill Paul sc = device_get_softc(dev); 1002f43d9309SBill Paul mii = device_get_softc(sc->dc_miibus); 1003f43d9309SBill Paul ifm = &mii->mii_media; 1004f43d9309SBill Paul 1005f43d9309SBill Paul if (DC_IS_DAVICOM(sc) && rev >= DC_REVISION_DM9102A) 100645521525SPoul-Henning Kamp ifmedia_add(ifm, IFM_ETHER | IFM_HPNA_1, 0, NULL); 100796f2e892SBill Paul } 100896f2e892SBill Paul 100996f2e892SBill Paul #define DC_POLY 0xEDB88320 101079d11e09SBill Paul #define DC_BITS_512 9 101179d11e09SBill Paul #define DC_BITS_128 7 101279d11e09SBill Paul #define DC_BITS_64 6 101396f2e892SBill Paul 1014e3d2833aSAlfred Perlstein static u_int32_t 10150934f18aSMaxime Henrion dc_crc_le(struct dc_softc *sc, caddr_t addr) 101696f2e892SBill Paul { 101796f2e892SBill Paul u_int32_t idx, bit, data, crc; 101896f2e892SBill Paul 101996f2e892SBill Paul /* Compute CRC for the address value. */ 102096f2e892SBill Paul crc = 0xFFFFFFFF; /* initial value */ 102196f2e892SBill Paul 102296f2e892SBill Paul for (idx = 0; idx < 6; idx++) { 102396f2e892SBill Paul for (data = *addr++, bit = 0; bit < 8; bit++, data >>= 1) 102496f2e892SBill Paul crc = (crc >> 1) ^ (((crc ^ data) & 1) ? DC_POLY : 0); 102596f2e892SBill Paul } 102696f2e892SBill Paul 102779d11e09SBill Paul /* 102879d11e09SBill Paul * The hash table on the PNIC II and the MX98715AEC-C/D/E 102979d11e09SBill Paul * chips is only 128 bits wide. 103079d11e09SBill Paul */ 103179d11e09SBill Paul if (sc->dc_flags & DC_128BIT_HASH) 103279d11e09SBill Paul return (crc & ((1 << DC_BITS_128) - 1)); 103396f2e892SBill Paul 103479d11e09SBill Paul /* The hash table on the MX98715BEC is only 64 bits wide. */ 103579d11e09SBill Paul if (sc->dc_flags & DC_64BIT_HASH) 103679d11e09SBill Paul return (crc & ((1 << DC_BITS_64) - 1)); 103779d11e09SBill Paul 1038feb78939SJonathan Chen /* Xircom's hash filtering table is different (read: weird) */ 1039feb78939SJonathan Chen /* Xircom uses the LEAST significant bits */ 1040feb78939SJonathan Chen if (DC_IS_XIRCOM(sc)) { 1041feb78939SJonathan Chen if ((crc & 0x180) == 0x180) 10420934f18aSMaxime Henrion return ((crc & 0x0F) + (crc & 0x70) * 3 + (14 << 4)); 1043feb78939SJonathan Chen else 10440934f18aSMaxime Henrion return ((crc & 0x1F) + ((crc >> 1) & 0xF0) * 3 + 10450934f18aSMaxime Henrion (12 << 4)); 1046feb78939SJonathan Chen } 1047feb78939SJonathan Chen 104879d11e09SBill Paul return (crc & ((1 << DC_BITS_512) - 1)); 104996f2e892SBill Paul } 105096f2e892SBill Paul 105196f2e892SBill Paul /* 105296f2e892SBill Paul * Calculate CRC of a multicast group address, return the lower 6 bits. 105396f2e892SBill Paul */ 1054e3d2833aSAlfred Perlstein static u_int32_t 10550934f18aSMaxime Henrion dc_crc_be(caddr_t addr) 105696f2e892SBill Paul { 105796f2e892SBill Paul u_int32_t crc, carry; 105896f2e892SBill Paul int i, j; 105996f2e892SBill Paul u_int8_t c; 106096f2e892SBill Paul 106196f2e892SBill Paul /* Compute CRC for the address value. */ 106296f2e892SBill Paul crc = 0xFFFFFFFF; /* initial value */ 106396f2e892SBill Paul 106496f2e892SBill Paul for (i = 0; i < 6; i++) { 106596f2e892SBill Paul c = *(addr + i); 106696f2e892SBill Paul for (j = 0; j < 8; j++) { 106796f2e892SBill Paul carry = ((crc & 0x80000000) ? 1 : 0) ^ (c & 0x01); 106896f2e892SBill Paul crc <<= 1; 106996f2e892SBill Paul c >>= 1; 107096f2e892SBill Paul if (carry) 107196f2e892SBill Paul crc = (crc ^ 0x04c11db6) | carry; 107296f2e892SBill Paul } 107396f2e892SBill Paul } 107496f2e892SBill Paul 10750934f18aSMaxime Henrion /* Return the filter bit position. */ 107696f2e892SBill Paul return ((crc >> 26) & 0x0000003F); 107796f2e892SBill Paul } 107896f2e892SBill Paul 107996f2e892SBill Paul /* 108096f2e892SBill Paul * 21143-style RX filter setup routine. Filter programming is done by 108196f2e892SBill Paul * downloading a special setup frame into the TX engine. 21143, Macronix, 108296f2e892SBill Paul * PNIC, PNIC II and Davicom chips are programmed this way. 108396f2e892SBill Paul * 108496f2e892SBill Paul * We always program the chip using 'hash perfect' mode, i.e. one perfect 108596f2e892SBill Paul * address (our node address) and a 512-bit hash filter for multicast 108696f2e892SBill Paul * frames. We also sneak the broadcast address into the hash filter since 108796f2e892SBill Paul * we need that too. 108896f2e892SBill Paul */ 10892c876e15SPoul-Henning Kamp static void 10900934f18aSMaxime Henrion dc_setfilt_21143(struct dc_softc *sc) 109196f2e892SBill Paul { 109296f2e892SBill Paul struct dc_desc *sframe; 109396f2e892SBill Paul u_int32_t h, *sp; 109496f2e892SBill Paul struct ifmultiaddr *ifma; 109596f2e892SBill Paul struct ifnet *ifp; 109696f2e892SBill Paul int i; 109796f2e892SBill Paul 109896f2e892SBill Paul ifp = &sc->arpcom.ac_if; 109996f2e892SBill Paul 110096f2e892SBill Paul i = sc->dc_cdata.dc_tx_prod; 110196f2e892SBill Paul DC_INC(sc->dc_cdata.dc_tx_prod, DC_TX_LIST_CNT); 110296f2e892SBill Paul sc->dc_cdata.dc_tx_cnt++; 110396f2e892SBill Paul sframe = &sc->dc_ldata->dc_tx_list[i]; 110456e5e7aeSMaxime Henrion sp = sc->dc_cdata.dc_sbuf; 11050934f18aSMaxime Henrion bzero(sp, DC_SFRAME_LEN); 110696f2e892SBill Paul 110756e5e7aeSMaxime Henrion sframe->dc_data = sc->dc_saddr; 110896f2e892SBill Paul sframe->dc_ctl = DC_SFRAME_LEN | DC_TXCTL_SETUP | DC_TXCTL_TLINK | 110996f2e892SBill Paul DC_FILTER_HASHPERF | DC_TXCTL_FINT; 111096f2e892SBill Paul 111156e5e7aeSMaxime Henrion sc->dc_cdata.dc_tx_chain[i] = (struct mbuf *)sc->dc_cdata.dc_sbuf; 111296f2e892SBill Paul 111396f2e892SBill Paul /* If we want promiscuous mode, set the allframes bit. */ 111496f2e892SBill Paul if (ifp->if_flags & IFF_PROMISC) 111596f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_PROMISC); 111696f2e892SBill Paul else 111796f2e892SBill Paul DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_RX_PROMISC); 111896f2e892SBill Paul 111996f2e892SBill Paul if (ifp->if_flags & IFF_ALLMULTI) 112096f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_ALLMULTI); 112196f2e892SBill Paul else 112296f2e892SBill Paul DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_RX_ALLMULTI); 112396f2e892SBill Paul 11246817526dSPoul-Henning Kamp TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) { 112596f2e892SBill Paul if (ifma->ifma_addr->sa_family != AF_LINK) 112696f2e892SBill Paul continue; 112796f2e892SBill Paul h = dc_crc_le(sc, 112896f2e892SBill Paul LLADDR((struct sockaddr_dl *)ifma->ifma_addr)); 112996f2e892SBill Paul sp[h >> 4] |= 1 << (h & 0xF); 113096f2e892SBill Paul } 113196f2e892SBill Paul 113296f2e892SBill Paul if (ifp->if_flags & IFF_BROADCAST) { 1133868d8b62SMatthew N. Dodd h = dc_crc_le(sc, (caddr_t)ifp->if_broadcastaddr); 113496f2e892SBill Paul sp[h >> 4] |= 1 << (h & 0xF); 113596f2e892SBill Paul } 113696f2e892SBill Paul 113796f2e892SBill Paul /* Set our MAC address */ 113896f2e892SBill Paul sp[39] = ((u_int16_t *)sc->arpcom.ac_enaddr)[0]; 113996f2e892SBill Paul sp[40] = ((u_int16_t *)sc->arpcom.ac_enaddr)[1]; 114096f2e892SBill Paul sp[41] = ((u_int16_t *)sc->arpcom.ac_enaddr)[2]; 114196f2e892SBill Paul 114296f2e892SBill Paul sframe->dc_status = DC_TXSTAT_OWN; 114396f2e892SBill Paul CSR_WRITE_4(sc, DC_TXSTART, 0xFFFFFFFF); 114496f2e892SBill Paul 114596f2e892SBill Paul /* 114696f2e892SBill Paul * The PNIC takes an exceedingly long time to process its 114796f2e892SBill Paul * setup frame; wait 10ms after posting the setup frame 114896f2e892SBill Paul * before proceeding, just so it has time to swallow its 114996f2e892SBill Paul * medicine. 115096f2e892SBill Paul */ 115196f2e892SBill Paul DELAY(10000); 115296f2e892SBill Paul 115396f2e892SBill Paul ifp->if_timer = 5; 115496f2e892SBill Paul } 115596f2e892SBill Paul 11562c876e15SPoul-Henning Kamp static void 11570934f18aSMaxime Henrion dc_setfilt_admtek(struct dc_softc *sc) 115896f2e892SBill Paul { 115996f2e892SBill Paul struct ifnet *ifp; 11600934f18aSMaxime Henrion struct ifmultiaddr *ifma; 116196f2e892SBill Paul int h = 0; 116296f2e892SBill Paul u_int32_t hashes[2] = { 0, 0 }; 116396f2e892SBill Paul 116496f2e892SBill Paul ifp = &sc->arpcom.ac_if; 116596f2e892SBill Paul 11660934f18aSMaxime Henrion /* Init our MAC address. */ 116796f2e892SBill Paul CSR_WRITE_4(sc, DC_AL_PAR0, *(u_int32_t *)(&sc->arpcom.ac_enaddr[0])); 116896f2e892SBill Paul CSR_WRITE_4(sc, DC_AL_PAR1, *(u_int32_t *)(&sc->arpcom.ac_enaddr[4])); 116996f2e892SBill Paul 117096f2e892SBill Paul /* If we want promiscuous mode, set the allframes bit. */ 117196f2e892SBill Paul if (ifp->if_flags & IFF_PROMISC) 117296f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_PROMISC); 117396f2e892SBill Paul else 117496f2e892SBill Paul DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_RX_PROMISC); 117596f2e892SBill Paul 117696f2e892SBill Paul if (ifp->if_flags & IFF_ALLMULTI) 117796f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_ALLMULTI); 117896f2e892SBill Paul else 117996f2e892SBill Paul DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_RX_ALLMULTI); 118096f2e892SBill Paul 11810934f18aSMaxime Henrion /* First, zot all the existing hash bits. */ 118296f2e892SBill Paul CSR_WRITE_4(sc, DC_AL_MAR0, 0); 118396f2e892SBill Paul CSR_WRITE_4(sc, DC_AL_MAR1, 0); 118496f2e892SBill Paul 118596f2e892SBill Paul /* 118696f2e892SBill Paul * If we're already in promisc or allmulti mode, we 118796f2e892SBill Paul * don't have to bother programming the multicast filter. 118896f2e892SBill Paul */ 118996f2e892SBill Paul if (ifp->if_flags & (IFF_PROMISC | IFF_ALLMULTI)) 119096f2e892SBill Paul return; 119196f2e892SBill Paul 11920934f18aSMaxime Henrion /* Now program new ones. */ 11936817526dSPoul-Henning Kamp TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) { 119496f2e892SBill Paul if (ifma->ifma_addr->sa_family != AF_LINK) 119596f2e892SBill Paul continue; 1196acc1bcccSMartin Blapp if (DC_IS_CENTAUR(sc)) 1197acc1bcccSMartin Blapp h = dc_crc_le(sc, LLADDR((struct sockaddr_dl *)ifma->ifma_addr)); 1198acc1bcccSMartin Blapp else 119996f2e892SBill Paul h = dc_crc_be(LLADDR((struct sockaddr_dl *)ifma->ifma_addr)); 120096f2e892SBill Paul if (h < 32) 120196f2e892SBill Paul hashes[0] |= (1 << h); 120296f2e892SBill Paul else 120396f2e892SBill Paul hashes[1] |= (1 << (h - 32)); 120496f2e892SBill Paul } 120596f2e892SBill Paul 120696f2e892SBill Paul CSR_WRITE_4(sc, DC_AL_MAR0, hashes[0]); 120796f2e892SBill Paul CSR_WRITE_4(sc, DC_AL_MAR1, hashes[1]); 120896f2e892SBill Paul } 120996f2e892SBill Paul 12102c876e15SPoul-Henning Kamp static void 12110934f18aSMaxime Henrion dc_setfilt_asix(struct dc_softc *sc) 121296f2e892SBill Paul { 121396f2e892SBill Paul struct ifnet *ifp; 12140934f18aSMaxime Henrion struct ifmultiaddr *ifma; 121596f2e892SBill Paul int h = 0; 121696f2e892SBill Paul u_int32_t hashes[2] = { 0, 0 }; 121796f2e892SBill Paul 121896f2e892SBill Paul ifp = &sc->arpcom.ac_if; 121996f2e892SBill Paul 122096f2e892SBill Paul /* Init our MAC address */ 122196f2e892SBill Paul CSR_WRITE_4(sc, DC_AX_FILTIDX, DC_AX_FILTIDX_PAR0); 122296f2e892SBill Paul CSR_WRITE_4(sc, DC_AX_FILTDATA, 122396f2e892SBill Paul *(u_int32_t *)(&sc->arpcom.ac_enaddr[0])); 122496f2e892SBill Paul CSR_WRITE_4(sc, DC_AX_FILTIDX, DC_AX_FILTIDX_PAR1); 122596f2e892SBill Paul CSR_WRITE_4(sc, DC_AX_FILTDATA, 122696f2e892SBill Paul *(u_int32_t *)(&sc->arpcom.ac_enaddr[4])); 122796f2e892SBill Paul 122896f2e892SBill Paul /* If we want promiscuous mode, set the allframes bit. */ 122996f2e892SBill Paul if (ifp->if_flags & IFF_PROMISC) 123096f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_PROMISC); 123196f2e892SBill Paul else 123296f2e892SBill Paul DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_RX_PROMISC); 123396f2e892SBill Paul 123496f2e892SBill Paul if (ifp->if_flags & IFF_ALLMULTI) 123596f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_ALLMULTI); 123696f2e892SBill Paul else 123796f2e892SBill Paul DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_RX_ALLMULTI); 123896f2e892SBill Paul 123996f2e892SBill Paul /* 124096f2e892SBill Paul * The ASIX chip has a special bit to enable reception 124196f2e892SBill Paul * of broadcast frames. 124296f2e892SBill Paul */ 124396f2e892SBill Paul if (ifp->if_flags & IFF_BROADCAST) 124496f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_AX_NETCFG_RX_BROAD); 124596f2e892SBill Paul else 124696f2e892SBill Paul DC_CLRBIT(sc, DC_NETCFG, DC_AX_NETCFG_RX_BROAD); 124796f2e892SBill Paul 124896f2e892SBill Paul /* first, zot all the existing hash bits */ 124996f2e892SBill Paul CSR_WRITE_4(sc, DC_AX_FILTIDX, DC_AX_FILTIDX_MAR0); 125096f2e892SBill Paul CSR_WRITE_4(sc, DC_AX_FILTDATA, 0); 125196f2e892SBill Paul CSR_WRITE_4(sc, DC_AX_FILTIDX, DC_AX_FILTIDX_MAR1); 125296f2e892SBill Paul CSR_WRITE_4(sc, DC_AX_FILTDATA, 0); 125396f2e892SBill Paul 125496f2e892SBill Paul /* 125596f2e892SBill Paul * If we're already in promisc or allmulti mode, we 125696f2e892SBill Paul * don't have to bother programming the multicast filter. 125796f2e892SBill Paul */ 125896f2e892SBill Paul if (ifp->if_flags & (IFF_PROMISC | IFF_ALLMULTI)) 125996f2e892SBill Paul return; 126096f2e892SBill Paul 126196f2e892SBill Paul /* now program new ones */ 12626817526dSPoul-Henning Kamp TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) { 126396f2e892SBill Paul if (ifma->ifma_addr->sa_family != AF_LINK) 126496f2e892SBill Paul continue; 126596f2e892SBill Paul h = dc_crc_be(LLADDR((struct sockaddr_dl *)ifma->ifma_addr)); 126696f2e892SBill Paul if (h < 32) 126796f2e892SBill Paul hashes[0] |= (1 << h); 126896f2e892SBill Paul else 126996f2e892SBill Paul hashes[1] |= (1 << (h - 32)); 127096f2e892SBill Paul } 127196f2e892SBill Paul 127296f2e892SBill Paul CSR_WRITE_4(sc, DC_AX_FILTIDX, DC_AX_FILTIDX_MAR0); 127396f2e892SBill Paul CSR_WRITE_4(sc, DC_AX_FILTDATA, hashes[0]); 127496f2e892SBill Paul CSR_WRITE_4(sc, DC_AX_FILTIDX, DC_AX_FILTIDX_MAR1); 127596f2e892SBill Paul CSR_WRITE_4(sc, DC_AX_FILTDATA, hashes[1]); 127696f2e892SBill Paul } 127796f2e892SBill Paul 12782c876e15SPoul-Henning Kamp static void 12790934f18aSMaxime Henrion dc_setfilt_xircom(struct dc_softc *sc) 1280feb78939SJonathan Chen { 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 1287feb78939SJonathan Chen ifp = &sc->arpcom.ac_if; 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 129756e5e7aeSMaxime Henrion sframe->dc_data = sc->dc_saddr; 1298feb78939SJonathan Chen sframe->dc_ctl = DC_SFRAME_LEN | DC_TXCTL_SETUP | DC_TXCTL_TLINK | 1299feb78939SJonathan Chen 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 13146817526dSPoul-Henning Kamp TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) { 1315feb78939SJonathan Chen if (ifma->ifma_addr->sa_family != AF_LINK) 1316feb78939SJonathan Chen continue; 13171d5e5310SBill Paul h = dc_crc_le(sc, 13181d5e5310SBill Paul LLADDR((struct sockaddr_dl *)ifma->ifma_addr)); 1319feb78939SJonathan Chen sp[h >> 4] |= 1 << (h & 0xF); 1320feb78939SJonathan Chen } 1321feb78939SJonathan Chen 1322feb78939SJonathan Chen if (ifp->if_flags & IFF_BROADCAST) { 1323868d8b62SMatthew N. Dodd h = dc_crc_le(sc, (caddr_t)ifp->if_broadcastaddr); 1324feb78939SJonathan Chen sp[h >> 4] |= 1 << (h & 0xF); 1325feb78939SJonathan Chen } 1326feb78939SJonathan Chen 1327feb78939SJonathan Chen /* Set our MAC address */ 1328feb78939SJonathan Chen sp[0] = ((u_int16_t *)sc->arpcom.ac_enaddr)[0]; 1329feb78939SJonathan Chen sp[1] = ((u_int16_t *)sc->arpcom.ac_enaddr)[1]; 1330feb78939SJonathan Chen sp[2] = ((u_int16_t *)sc->arpcom.ac_enaddr)[2]; 1331feb78939SJonathan Chen 1332feb78939SJonathan Chen DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_TX_ON); 1333feb78939SJonathan Chen DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_ON); 1334feb78939SJonathan Chen ifp->if_flags |= IFF_RUNNING; 1335feb78939SJonathan Chen sframe->dc_status = DC_TXSTAT_OWN; 1336feb78939SJonathan Chen CSR_WRITE_4(sc, DC_TXSTART, 0xFFFFFFFF); 1337feb78939SJonathan Chen 1338feb78939SJonathan Chen /* 13390934f18aSMaxime Henrion * Wait some time... 1340feb78939SJonathan Chen */ 1341feb78939SJonathan Chen DELAY(1000); 1342feb78939SJonathan Chen 1343feb78939SJonathan Chen ifp->if_timer = 5; 1344feb78939SJonathan Chen } 1345feb78939SJonathan Chen 1346e3d2833aSAlfred Perlstein static void 13470934f18aSMaxime Henrion dc_setfilt(struct dc_softc *sc) 134896f2e892SBill Paul { 13490934f18aSMaxime Henrion 135096f2e892SBill Paul if (DC_IS_INTEL(sc) || DC_IS_MACRONIX(sc) || DC_IS_PNIC(sc) || 13511af8bec7SBill Paul DC_IS_PNICII(sc) || DC_IS_DAVICOM(sc) || DC_IS_CONEXANT(sc)) 135296f2e892SBill Paul dc_setfilt_21143(sc); 135396f2e892SBill Paul 135496f2e892SBill Paul if (DC_IS_ASIX(sc)) 135596f2e892SBill Paul dc_setfilt_asix(sc); 135696f2e892SBill Paul 135796f2e892SBill Paul if (DC_IS_ADMTEK(sc)) 135896f2e892SBill Paul dc_setfilt_admtek(sc); 135996f2e892SBill Paul 1360feb78939SJonathan Chen if (DC_IS_XIRCOM(sc)) 1361feb78939SJonathan Chen dc_setfilt_xircom(sc); 136296f2e892SBill Paul } 136396f2e892SBill Paul 136496f2e892SBill Paul /* 13650934f18aSMaxime Henrion * In order to fiddle with the 'full-duplex' and '100Mbps' bits in 13660934f18aSMaxime Henrion * the netconfig register, we first have to put the transmit and/or 13670934f18aSMaxime Henrion * receive logic in the idle state. 136896f2e892SBill Paul */ 1369e3d2833aSAlfred Perlstein static void 13700934f18aSMaxime Henrion dc_setcfg(struct dc_softc *sc, int media) 137196f2e892SBill Paul { 13720934f18aSMaxime Henrion int i, restart = 0, watchdogreg; 137396f2e892SBill Paul u_int32_t isr; 137496f2e892SBill Paul 137596f2e892SBill Paul if (IFM_SUBTYPE(media) == IFM_NONE) 137696f2e892SBill Paul return; 137796f2e892SBill Paul 137896f2e892SBill Paul if (CSR_READ_4(sc, DC_NETCFG) & (DC_NETCFG_TX_ON | DC_NETCFG_RX_ON)) { 137996f2e892SBill Paul restart = 1; 138096f2e892SBill Paul DC_CLRBIT(sc, DC_NETCFG, (DC_NETCFG_TX_ON | DC_NETCFG_RX_ON)); 138196f2e892SBill Paul 138296f2e892SBill Paul for (i = 0; i < DC_TIMEOUT; i++) { 138396f2e892SBill Paul isr = CSR_READ_4(sc, DC_ISR); 1384d467c136SBill Paul if (isr & DC_ISR_TX_IDLE && 1385351267c1SMartin Blapp ((isr & DC_ISR_RX_STATE) == DC_RXSTATE_STOPPED || 1386351267c1SMartin Blapp (isr & DC_ISR_RX_STATE) == DC_RXSTATE_WAIT)) 138796f2e892SBill Paul break; 1388d467c136SBill Paul DELAY(10); 138996f2e892SBill Paul } 139096f2e892SBill Paul 139196f2e892SBill Paul if (i == DC_TIMEOUT) 139296f2e892SBill Paul printf("dc%d: failed to force tx and " 139396f2e892SBill Paul "rx to idle state\n", sc->dc_unit); 139496f2e892SBill Paul } 139596f2e892SBill Paul 139696f2e892SBill Paul if (IFM_SUBTYPE(media) == IFM_100_TX) { 1397042c8f6eSBill Paul DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_SPEEDSEL); 1398042c8f6eSBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_HEARTBEAT); 139996f2e892SBill Paul if (sc->dc_pmode == DC_PMODE_MII) { 1400bf645417SBill Paul if (DC_IS_INTEL(sc)) { 14010934f18aSMaxime Henrion /* There's a write enable bit here that reads as 1. */ 14028273d5f8SBill Paul watchdogreg = CSR_READ_4(sc, DC_WATCHDOG); 14038273d5f8SBill Paul watchdogreg &= ~DC_WDOG_CTLWREN; 14048273d5f8SBill Paul watchdogreg |= DC_WDOG_JABBERDIS; 14054c2efe27SBill Paul CSR_WRITE_4(sc, DC_WATCHDOG, watchdogreg); 1406bf645417SBill Paul } else { 1407bf645417SBill Paul DC_SETBIT(sc, DC_WATCHDOG, DC_WDOG_JABBERDIS); 1408bf645417SBill Paul } 140996f2e892SBill Paul DC_CLRBIT(sc, DC_NETCFG, (DC_NETCFG_PCS | 141096f2e892SBill Paul DC_NETCFG_PORTSEL | DC_NETCFG_SCRAMBLER)); 141196f2e892SBill Paul if (sc->dc_type == DC_TYPE_98713) 141296f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, (DC_NETCFG_PCS | 141396f2e892SBill Paul DC_NETCFG_SCRAMBLER)); 141488d739dcSBill Paul if (!DC_IS_DAVICOM(sc)) 141596f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_PORTSEL); 141696f2e892SBill Paul DC_CLRBIT(sc, DC_10BTCTRL, 0xFFFF); 1417e99285a4SBill Paul if (DC_IS_INTEL(sc)) 1418e99285a4SBill Paul dc_apply_fixup(sc, IFM_AUTO); 141996f2e892SBill Paul } else { 142096f2e892SBill Paul if (DC_IS_PNIC(sc)) { 142196f2e892SBill Paul DC_PN_GPIO_SETBIT(sc, DC_PN_GPIO_SPEEDSEL); 142296f2e892SBill Paul DC_PN_GPIO_SETBIT(sc, DC_PN_GPIO_100TX_LOOP); 142396f2e892SBill Paul DC_SETBIT(sc, DC_PN_NWAY, DC_PN_NWAY_SPEEDSEL); 142496f2e892SBill Paul } 1425318b02fdSBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_PORTSEL); 1426318b02fdSBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_PCS); 1427318b02fdSBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_SCRAMBLER); 14285c1cfac4SBill Paul if (DC_IS_INTEL(sc)) 14295c1cfac4SBill Paul dc_apply_fixup(sc, 14305c1cfac4SBill Paul (media & IFM_GMASK) == IFM_FDX ? 14315c1cfac4SBill Paul IFM_100_TX | IFM_FDX : IFM_100_TX); 143296f2e892SBill Paul } 143396f2e892SBill Paul } 143496f2e892SBill Paul 143596f2e892SBill Paul if (IFM_SUBTYPE(media) == IFM_10_T) { 1436042c8f6eSBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_SPEEDSEL); 1437042c8f6eSBill Paul DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_HEARTBEAT); 143896f2e892SBill Paul if (sc->dc_pmode == DC_PMODE_MII) { 14390934f18aSMaxime Henrion /* There's a write enable bit here that reads as 1. */ 14404c2efe27SBill Paul if (DC_IS_INTEL(sc)) { 14418273d5f8SBill Paul watchdogreg = CSR_READ_4(sc, DC_WATCHDOG); 14428273d5f8SBill Paul watchdogreg &= ~DC_WDOG_CTLWREN; 14438273d5f8SBill Paul watchdogreg |= DC_WDOG_JABBERDIS; 14448273d5f8SBill Paul CSR_WRITE_4(sc, DC_WATCHDOG, watchdogreg); 14454c2efe27SBill Paul } else { 14464c2efe27SBill Paul DC_SETBIT(sc, DC_WATCHDOG, DC_WDOG_JABBERDIS); 14474c2efe27SBill Paul } 144896f2e892SBill Paul DC_CLRBIT(sc, DC_NETCFG, (DC_NETCFG_PCS | 144996f2e892SBill Paul DC_NETCFG_PORTSEL | DC_NETCFG_SCRAMBLER)); 145096f2e892SBill Paul if (sc->dc_type == DC_TYPE_98713) 145196f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_PCS); 145288d739dcSBill Paul if (!DC_IS_DAVICOM(sc)) 145396f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_PORTSEL); 145496f2e892SBill Paul DC_CLRBIT(sc, DC_10BTCTRL, 0xFFFF); 1455e99285a4SBill Paul if (DC_IS_INTEL(sc)) 1456e99285a4SBill Paul dc_apply_fixup(sc, IFM_AUTO); 145796f2e892SBill Paul } else { 145896f2e892SBill Paul if (DC_IS_PNIC(sc)) { 145996f2e892SBill Paul DC_PN_GPIO_CLRBIT(sc, DC_PN_GPIO_SPEEDSEL); 146096f2e892SBill Paul DC_PN_GPIO_SETBIT(sc, DC_PN_GPIO_100TX_LOOP); 146196f2e892SBill Paul DC_CLRBIT(sc, DC_PN_NWAY, DC_PN_NWAY_SPEEDSEL); 146296f2e892SBill Paul } 146396f2e892SBill Paul DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_PORTSEL); 1464318b02fdSBill Paul DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_PCS); 146596f2e892SBill Paul DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_SCRAMBLER); 14665c1cfac4SBill Paul if (DC_IS_INTEL(sc)) { 14675c1cfac4SBill Paul DC_CLRBIT(sc, DC_SIARESET, DC_SIA_RESET); 14685c1cfac4SBill Paul DC_CLRBIT(sc, DC_10BTCTRL, 0xFFFF); 14695c1cfac4SBill Paul if ((media & IFM_GMASK) == IFM_FDX) 14705c1cfac4SBill Paul DC_SETBIT(sc, DC_10BTCTRL, 0x7F3D); 14715c1cfac4SBill Paul else 14725c1cfac4SBill Paul DC_SETBIT(sc, DC_10BTCTRL, 0x7F3F); 14735c1cfac4SBill Paul DC_SETBIT(sc, DC_SIARESET, DC_SIA_RESET); 14745c1cfac4SBill Paul DC_CLRBIT(sc, DC_10BTCTRL, 14755c1cfac4SBill Paul DC_TCTL_AUTONEGENBL); 14765c1cfac4SBill Paul dc_apply_fixup(sc, 14775c1cfac4SBill Paul (media & IFM_GMASK) == IFM_FDX ? 14785c1cfac4SBill Paul IFM_10_T | IFM_FDX : IFM_10_T); 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) 153396f2e892SBill Paul printf("dc%d: reset never completed!\n", sc->dc_unit); 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); 15505c1cfac4SBill Paul CSR_WRITE_4(sc, DC_10BTCTRL, 0); 15515c1cfac4SBill Paul CSR_WRITE_4(sc, DC_WATCHDOG, 0); 15525c1cfac4SBill Paul } 155396f2e892SBill Paul } 155496f2e892SBill Paul 1555e3d2833aSAlfred Perlstein static struct dc_type * 15560934f18aSMaxime Henrion dc_devtype(device_t dev) 155796f2e892SBill Paul { 155896f2e892SBill Paul struct dc_type *t; 155996f2e892SBill Paul u_int32_t rev; 156096f2e892SBill Paul 156196f2e892SBill Paul t = dc_devs; 156296f2e892SBill Paul 156396f2e892SBill Paul while (t->dc_name != NULL) { 156496f2e892SBill Paul if ((pci_get_vendor(dev) == t->dc_vid) && 156596f2e892SBill Paul (pci_get_device(dev) == t->dc_did)) { 156696f2e892SBill Paul /* Check the PCI revision */ 156796f2e892SBill Paul rev = pci_read_config(dev, DC_PCI_CFRV, 4) & 0xFF; 156896f2e892SBill Paul if (t->dc_did == DC_DEVICEID_98713 && 156996f2e892SBill Paul rev >= DC_REVISION_98713A) 157096f2e892SBill Paul t++; 157196f2e892SBill Paul if (t->dc_did == DC_DEVICEID_98713_CP && 157296f2e892SBill Paul rev >= DC_REVISION_98713A) 157396f2e892SBill Paul t++; 157496f2e892SBill Paul if (t->dc_did == DC_DEVICEID_987x5 && 157579d11e09SBill Paul rev >= DC_REVISION_98715AEC_C) 157679d11e09SBill Paul t++; 157779d11e09SBill Paul if (t->dc_did == DC_DEVICEID_987x5 && 157896f2e892SBill Paul rev >= DC_REVISION_98725) 157996f2e892SBill Paul t++; 158096f2e892SBill Paul if (t->dc_did == DC_DEVICEID_AX88140A && 158196f2e892SBill Paul rev >= DC_REVISION_88141) 158296f2e892SBill Paul t++; 158396f2e892SBill Paul if (t->dc_did == DC_DEVICEID_82C168 && 158496f2e892SBill Paul rev >= DC_REVISION_82C169) 158596f2e892SBill Paul t++; 158688d739dcSBill Paul if (t->dc_did == DC_DEVICEID_DM9102 && 158788d739dcSBill Paul rev >= DC_REVISION_DM9102A) 158888d739dcSBill Paul t++; 158996f2e892SBill Paul return (t); 159096f2e892SBill Paul } 159196f2e892SBill Paul t++; 159296f2e892SBill Paul } 159396f2e892SBill Paul 159496f2e892SBill Paul return (NULL); 159596f2e892SBill Paul } 159696f2e892SBill Paul 159796f2e892SBill Paul /* 159896f2e892SBill Paul * Probe for a 21143 or clone chip. Check the PCI vendor and device 159996f2e892SBill Paul * IDs against our list and return a device name if we find a match. 160096f2e892SBill Paul * We do a little bit of extra work to identify the exact type of 160196f2e892SBill Paul * chip. The MX98713 and MX98713A have the same PCI vendor/device ID, 160296f2e892SBill Paul * but different revision IDs. The same is true for 98715/98715A 160396f2e892SBill Paul * chips and the 98725, as well as the ASIX and ADMtek chips. In some 160496f2e892SBill Paul * cases, the exact chip revision affects driver behavior. 160596f2e892SBill Paul */ 1606e3d2833aSAlfred Perlstein static int 16070934f18aSMaxime Henrion dc_probe(device_t dev) 160896f2e892SBill Paul { 160996f2e892SBill Paul struct dc_type *t; 161096f2e892SBill Paul 161196f2e892SBill Paul t = dc_devtype(dev); 161296f2e892SBill Paul 161396f2e892SBill Paul if (t != NULL) { 161496f2e892SBill Paul device_set_desc(dev, t->dc_name); 161596f2e892SBill Paul return (0); 161696f2e892SBill Paul } 161796f2e892SBill Paul 161896f2e892SBill Paul return (ENXIO); 161996f2e892SBill Paul } 162096f2e892SBill Paul 1621b84e866aSWarner Losh #ifndef BURN_BRIDGES 1622e3d2833aSAlfred Perlstein static void 16230934f18aSMaxime Henrion dc_acpi(device_t dev) 162496f2e892SBill Paul { 162596f2e892SBill Paul int unit; 16260934f18aSMaxime Henrion u_int32_t iobase, membase, irq; 162796f2e892SBill Paul 162896f2e892SBill Paul unit = device_get_unit(dev); 162996f2e892SBill Paul 163014a00c6cSBill Paul if (pci_get_powerstate(dev) != PCI_POWERSTATE_D0) { 163196f2e892SBill Paul /* Save important PCI config data. */ 163296f2e892SBill Paul iobase = pci_read_config(dev, DC_PCI_CFBIO, 4); 163396f2e892SBill Paul membase = pci_read_config(dev, DC_PCI_CFBMA, 4); 163496f2e892SBill Paul irq = pci_read_config(dev, DC_PCI_CFIT, 4); 163596f2e892SBill Paul 163696f2e892SBill Paul /* Reset the power state. */ 163796f2e892SBill Paul printf("dc%d: chip is in D%d power mode " 163814a00c6cSBill Paul "-- setting to D0\n", unit, 163914a00c6cSBill Paul pci_get_powerstate(dev)); 164014a00c6cSBill Paul pci_set_powerstate(dev, PCI_POWERSTATE_D0); 164196f2e892SBill Paul 164296f2e892SBill Paul /* Restore PCI config data. */ 164396f2e892SBill Paul pci_write_config(dev, DC_PCI_CFBIO, iobase, 4); 164496f2e892SBill Paul pci_write_config(dev, DC_PCI_CFBMA, membase, 4); 164596f2e892SBill Paul pci_write_config(dev, DC_PCI_CFIT, irq, 4); 164696f2e892SBill Paul } 164796f2e892SBill Paul } 1648b84e866aSWarner Losh #endif 164996f2e892SBill Paul 1650e3d2833aSAlfred Perlstein static void 16510934f18aSMaxime Henrion dc_apply_fixup(struct dc_softc *sc, int media) 16525c1cfac4SBill Paul { 16535c1cfac4SBill Paul struct dc_mediainfo *m; 16545c1cfac4SBill Paul u_int8_t *p; 16555c1cfac4SBill Paul int i; 16565d801891SBill Paul u_int32_t reg; 16575c1cfac4SBill Paul 16585c1cfac4SBill Paul m = sc->dc_mi; 16595c1cfac4SBill Paul 16605c1cfac4SBill Paul while (m != NULL) { 16615c1cfac4SBill Paul if (m->dc_media == media) 16625c1cfac4SBill Paul break; 16635c1cfac4SBill Paul m = m->dc_next; 16645c1cfac4SBill Paul } 16655c1cfac4SBill Paul 16665c1cfac4SBill Paul if (m == NULL) 16675c1cfac4SBill Paul return; 16685c1cfac4SBill Paul 16695c1cfac4SBill Paul for (i = 0, p = m->dc_reset_ptr; i < m->dc_reset_len; i++, p += 2) { 16705c1cfac4SBill Paul reg = (p[0] | (p[1] << 8)) << 16; 16715c1cfac4SBill Paul CSR_WRITE_4(sc, DC_WATCHDOG, reg); 16725c1cfac4SBill Paul } 16735c1cfac4SBill Paul 16745c1cfac4SBill Paul for (i = 0, p = m->dc_gp_ptr; i < m->dc_gp_len; i++, p += 2) { 16755c1cfac4SBill Paul reg = (p[0] | (p[1] << 8)) << 16; 16765c1cfac4SBill Paul CSR_WRITE_4(sc, DC_WATCHDOG, reg); 16775c1cfac4SBill Paul } 16785c1cfac4SBill Paul } 16795c1cfac4SBill Paul 1680e3d2833aSAlfred Perlstein static void 16810934f18aSMaxime Henrion dc_decode_leaf_sia(struct dc_softc *sc, struct dc_eblock_sia *l) 16825c1cfac4SBill Paul { 16835c1cfac4SBill Paul struct dc_mediainfo *m; 16845c1cfac4SBill Paul 16850934f18aSMaxime Henrion m = malloc(sizeof(struct dc_mediainfo), M_DEVBUF, M_NOWAIT | M_ZERO); 16865c1cfac4SBill Paul if (l->dc_sia_code == DC_SIA_CODE_10BT) 16875c1cfac4SBill Paul m->dc_media = IFM_10_T; 16885c1cfac4SBill Paul 16895c1cfac4SBill Paul if (l->dc_sia_code == DC_SIA_CODE_10BT_FDX) 16905c1cfac4SBill Paul m->dc_media = IFM_10_T | IFM_FDX; 16915c1cfac4SBill Paul 16925c1cfac4SBill Paul if (l->dc_sia_code == DC_SIA_CODE_10B2) 16935c1cfac4SBill Paul m->dc_media = IFM_10_2; 16945c1cfac4SBill Paul 16955c1cfac4SBill Paul if (l->dc_sia_code == DC_SIA_CODE_10B5) 16965c1cfac4SBill Paul m->dc_media = IFM_10_5; 16975c1cfac4SBill Paul 16985c1cfac4SBill Paul m->dc_gp_len = 2; 16995c1cfac4SBill Paul m->dc_gp_ptr = (u_int8_t *)&l->dc_sia_gpio_ctl; 17005c1cfac4SBill Paul 17015c1cfac4SBill Paul m->dc_next = sc->dc_mi; 17025c1cfac4SBill Paul sc->dc_mi = m; 17035c1cfac4SBill Paul 17045c1cfac4SBill Paul sc->dc_pmode = DC_PMODE_SIA; 17055c1cfac4SBill Paul } 17065c1cfac4SBill Paul 1707e3d2833aSAlfred Perlstein static void 17080934f18aSMaxime Henrion dc_decode_leaf_sym(struct dc_softc *sc, struct dc_eblock_sym *l) 17095c1cfac4SBill Paul { 17105c1cfac4SBill Paul struct dc_mediainfo *m; 17115c1cfac4SBill Paul 17120934f18aSMaxime Henrion m = malloc(sizeof(struct dc_mediainfo), M_DEVBUF, M_NOWAIT | M_ZERO); 17135c1cfac4SBill Paul if (l->dc_sym_code == DC_SYM_CODE_100BT) 17145c1cfac4SBill Paul m->dc_media = IFM_100_TX; 17155c1cfac4SBill Paul 17165c1cfac4SBill Paul if (l->dc_sym_code == DC_SYM_CODE_100BT_FDX) 17175c1cfac4SBill Paul m->dc_media = IFM_100_TX | IFM_FDX; 17185c1cfac4SBill Paul 17195c1cfac4SBill Paul m->dc_gp_len = 2; 17205c1cfac4SBill Paul m->dc_gp_ptr = (u_int8_t *)&l->dc_sym_gpio_ctl; 17215c1cfac4SBill Paul 17225c1cfac4SBill Paul m->dc_next = sc->dc_mi; 17235c1cfac4SBill Paul sc->dc_mi = m; 17245c1cfac4SBill Paul 17255c1cfac4SBill Paul sc->dc_pmode = DC_PMODE_SYM; 17265c1cfac4SBill Paul } 17275c1cfac4SBill Paul 1728e3d2833aSAlfred Perlstein static void 17290934f18aSMaxime Henrion dc_decode_leaf_mii(struct dc_softc *sc, struct dc_eblock_mii *l) 17305c1cfac4SBill Paul { 17315c1cfac4SBill Paul struct dc_mediainfo *m; 17320934f18aSMaxime Henrion u_int8_t *p; 17335c1cfac4SBill Paul 17340934f18aSMaxime Henrion m = malloc(sizeof(struct dc_mediainfo), M_DEVBUF, M_NOWAIT | M_ZERO); 17355c1cfac4SBill Paul /* We abuse IFM_AUTO to represent MII. */ 17365c1cfac4SBill Paul m->dc_media = IFM_AUTO; 17375c1cfac4SBill Paul m->dc_gp_len = l->dc_gpr_len; 17385c1cfac4SBill Paul 17395c1cfac4SBill Paul p = (u_int8_t *)l; 17405c1cfac4SBill Paul p += sizeof(struct dc_eblock_mii); 17415c1cfac4SBill Paul m->dc_gp_ptr = p; 17425c1cfac4SBill Paul p += 2 * l->dc_gpr_len; 17435c1cfac4SBill Paul m->dc_reset_len = *p; 17445c1cfac4SBill Paul p++; 17455c1cfac4SBill Paul m->dc_reset_ptr = p; 17465c1cfac4SBill Paul 17475c1cfac4SBill Paul m->dc_next = sc->dc_mi; 17485c1cfac4SBill Paul sc->dc_mi = m; 17495c1cfac4SBill Paul } 17505c1cfac4SBill Paul 17512c876e15SPoul-Henning Kamp static void 17520934f18aSMaxime Henrion dc_read_srom(struct dc_softc *sc, int bits) 17533097aa70SWarner Losh { 17543097aa70SWarner Losh int size; 17553097aa70SWarner Losh 17563097aa70SWarner Losh size = 2 << bits; 17573097aa70SWarner Losh sc->dc_srom = malloc(size, M_DEVBUF, M_NOWAIT); 17583097aa70SWarner Losh dc_read_eeprom(sc, (caddr_t)sc->dc_srom, 0, (size / 2), 0); 17593097aa70SWarner Losh } 17603097aa70SWarner Losh 1761e3d2833aSAlfred Perlstein static void 17620934f18aSMaxime Henrion dc_parse_21143_srom(struct dc_softc *sc) 17635c1cfac4SBill Paul { 17645c1cfac4SBill Paul struct dc_leaf_hdr *lhdr; 17655c1cfac4SBill Paul struct dc_eblock_hdr *hdr; 17660934f18aSMaxime Henrion int have_mii, i, loff; 17675c1cfac4SBill Paul char *ptr; 17685c1cfac4SBill Paul 1769f956e0b3SMartin Blapp have_mii = 0; 17705c1cfac4SBill Paul loff = sc->dc_srom[27]; 17715c1cfac4SBill Paul lhdr = (struct dc_leaf_hdr *)&(sc->dc_srom[loff]); 17725c1cfac4SBill Paul 17735c1cfac4SBill Paul ptr = (char *)lhdr; 17745c1cfac4SBill Paul ptr += sizeof(struct dc_leaf_hdr) - 1; 1775f956e0b3SMartin Blapp /* 1776f956e0b3SMartin Blapp * Look if we got a MII media block. 1777f956e0b3SMartin Blapp */ 1778f956e0b3SMartin Blapp for (i = 0; i < lhdr->dc_mcnt; i++) { 1779f956e0b3SMartin Blapp hdr = (struct dc_eblock_hdr *)ptr; 1780f956e0b3SMartin Blapp if (hdr->dc_type == DC_EBLOCK_MII) 1781f956e0b3SMartin Blapp have_mii++; 1782f956e0b3SMartin Blapp 1783f956e0b3SMartin Blapp ptr += (hdr->dc_len & 0x7F); 1784f956e0b3SMartin Blapp ptr++; 1785f956e0b3SMartin Blapp } 1786f956e0b3SMartin Blapp 1787f956e0b3SMartin Blapp /* 1788f956e0b3SMartin Blapp * Do the same thing again. Only use SIA and SYM media 1789f956e0b3SMartin Blapp * blocks if no MII media block is available. 1790f956e0b3SMartin Blapp */ 1791f956e0b3SMartin Blapp ptr = (char *)lhdr; 1792f956e0b3SMartin Blapp ptr += sizeof(struct dc_leaf_hdr) - 1; 17935c1cfac4SBill Paul for (i = 0; i < lhdr->dc_mcnt; i++) { 17945c1cfac4SBill Paul hdr = (struct dc_eblock_hdr *)ptr; 17955c1cfac4SBill Paul switch (hdr->dc_type) { 17965c1cfac4SBill Paul case DC_EBLOCK_MII: 17975c1cfac4SBill Paul dc_decode_leaf_mii(sc, (struct dc_eblock_mii *)hdr); 17985c1cfac4SBill Paul break; 17995c1cfac4SBill Paul case DC_EBLOCK_SIA: 1800f956e0b3SMartin Blapp if (! have_mii) 1801f956e0b3SMartin Blapp dc_decode_leaf_sia(sc, 1802f956e0b3SMartin Blapp (struct dc_eblock_sia *)hdr); 18035c1cfac4SBill Paul break; 18045c1cfac4SBill Paul case DC_EBLOCK_SYM: 1805f956e0b3SMartin Blapp if (! have_mii) 1806f956e0b3SMartin Blapp dc_decode_leaf_sym(sc, 1807f956e0b3SMartin Blapp (struct dc_eblock_sym *)hdr); 18085c1cfac4SBill Paul break; 18095c1cfac4SBill Paul default: 18105c1cfac4SBill Paul /* Don't care. Yet. */ 18115c1cfac4SBill Paul break; 18125c1cfac4SBill Paul } 18135c1cfac4SBill Paul ptr += (hdr->dc_len & 0x7F); 18145c1cfac4SBill Paul ptr++; 18155c1cfac4SBill Paul } 18165c1cfac4SBill Paul } 18175c1cfac4SBill Paul 181856e5e7aeSMaxime Henrion static void 181956e5e7aeSMaxime Henrion dc_dma_map_addr(void *arg, bus_dma_segment_t *segs, int nseg, int error) 182056e5e7aeSMaxime Henrion { 182156e5e7aeSMaxime Henrion u_int32_t *paddr; 182256e5e7aeSMaxime Henrion 182356e5e7aeSMaxime Henrion KASSERT(nseg == 1, ("wrong number of segments, should be 1")); 182456e5e7aeSMaxime Henrion paddr = arg; 182556e5e7aeSMaxime Henrion *paddr = segs->ds_addr; 182656e5e7aeSMaxime Henrion } 182756e5e7aeSMaxime Henrion 182896f2e892SBill Paul /* 182996f2e892SBill Paul * Attach the interface. Allocate softc structures, do ifmedia 183096f2e892SBill Paul * setup and ethernet/BPF attach. 183196f2e892SBill Paul */ 1832e3d2833aSAlfred Perlstein static int 18330934f18aSMaxime Henrion dc_attach(device_t dev) 183496f2e892SBill Paul { 1835d1ce9105SBill Paul int tmp = 0; 183696f2e892SBill Paul u_char eaddr[ETHER_ADDR_LEN]; 183796f2e892SBill Paul u_int32_t command; 183896f2e892SBill Paul struct dc_softc *sc; 183996f2e892SBill Paul struct ifnet *ifp; 184096f2e892SBill Paul u_int32_t revision; 184196f2e892SBill Paul int unit, error = 0, rid, mac_offset; 184256e5e7aeSMaxime Henrion int i; 1843e7b01d07SWarner Losh u_int8_t *mac; 184496f2e892SBill Paul 184596f2e892SBill Paul sc = device_get_softc(dev); 184696f2e892SBill Paul unit = device_get_unit(dev); 184796f2e892SBill Paul 18486008862bSJohn Baldwin mtx_init(&sc->dc_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK, 18496008862bSJohn Baldwin MTX_DEF | MTX_RECURSE); 1850b84e866aSWarner Losh #ifndef BURN_BRIDGES 185196f2e892SBill Paul /* 185296f2e892SBill Paul * Handle power management nonsense. 185396f2e892SBill Paul */ 185496f2e892SBill Paul dc_acpi(dev); 1855b84e866aSWarner Losh #endif 185696f2e892SBill Paul /* 185796f2e892SBill Paul * Map control/status registers. 185896f2e892SBill Paul */ 185907f65363SBill Paul pci_enable_busmaster(dev); 186096f2e892SBill Paul 186196f2e892SBill Paul rid = DC_RID; 186296f2e892SBill Paul sc->dc_res = bus_alloc_resource(dev, DC_RES, &rid, 186396f2e892SBill Paul 0, ~0, 1, RF_ACTIVE); 186496f2e892SBill Paul 186596f2e892SBill Paul if (sc->dc_res == NULL) { 186696f2e892SBill Paul printf("dc%d: couldn't map ports/memory\n", unit); 186796f2e892SBill Paul error = ENXIO; 1868608654d4SNate Lawson goto fail; 186996f2e892SBill Paul } 187096f2e892SBill Paul 187196f2e892SBill Paul sc->dc_btag = rman_get_bustag(sc->dc_res); 187296f2e892SBill Paul sc->dc_bhandle = rman_get_bushandle(sc->dc_res); 187396f2e892SBill Paul 18740934f18aSMaxime Henrion /* Allocate interrupt. */ 187554f1f1d1SNate Lawson rid = 0; 187654f1f1d1SNate Lawson sc->dc_irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1, 187754f1f1d1SNate Lawson RF_SHAREABLE | RF_ACTIVE); 187854f1f1d1SNate Lawson 187954f1f1d1SNate Lawson if (sc->dc_irq == NULL) { 188054f1f1d1SNate Lawson printf("dc%d: couldn't map interrupt\n", unit); 188154f1f1d1SNate Lawson error = ENXIO; 188254f1f1d1SNate Lawson goto fail; 188354f1f1d1SNate Lawson } 188454f1f1d1SNate Lawson 188596f2e892SBill Paul /* Need this info to decide on a chip type. */ 188696f2e892SBill Paul sc->dc_info = dc_devtype(dev); 188796f2e892SBill Paul revision = pci_read_config(dev, DC_PCI_CFRV, 4) & 0x000000FF; 188896f2e892SBill Paul 18896d0dd931SWarner Losh /* Get the eeprom width, but PNIC and XIRCOM have diff eeprom */ 1890eecb3844SMartin Blapp if (sc->dc_info->dc_did != DC_DEVICEID_82C168 && 1891eecb3844SMartin Blapp sc->dc_info->dc_did != DC_DEVICEID_X3201) 1892eecb3844SMartin Blapp dc_eeprom_width(sc); 1893eecb3844SMartin Blapp 189496f2e892SBill Paul switch (sc->dc_info->dc_did) { 189596f2e892SBill Paul case DC_DEVICEID_21143: 189696f2e892SBill Paul sc->dc_type = DC_TYPE_21143; 189796f2e892SBill Paul sc->dc_flags |= DC_TX_POLL | DC_TX_USE_TX_INTR; 1898042c8f6eSBill Paul sc->dc_flags |= DC_REDUCED_MII_POLL; 18995c1cfac4SBill Paul /* Save EEPROM contents so we can parse them later. */ 19003097aa70SWarner Losh dc_read_srom(sc, sc->dc_romwidth); 190196f2e892SBill Paul break; 190238deb45fSTom Rhodes case DC_DEVICEID_DM9009: 190396f2e892SBill Paul case DC_DEVICEID_DM9100: 190496f2e892SBill Paul case DC_DEVICEID_DM9102: 190596f2e892SBill Paul sc->dc_type = DC_TYPE_DM9102; 1906318a72d7SBill Paul sc->dc_flags |= DC_TX_COALESCE | DC_TX_INTR_ALWAYS; 1907318a72d7SBill Paul sc->dc_flags |= DC_REDUCED_MII_POLL | DC_TX_STORENFWD; 190896f2e892SBill Paul sc->dc_pmode = DC_PMODE_MII; 19090a46b1dcSBill Paul /* Increase the latency timer value. */ 19100a46b1dcSBill Paul command = pci_read_config(dev, DC_PCI_CFLT, 4); 19110a46b1dcSBill Paul command &= 0xFFFF00FF; 19120a46b1dcSBill Paul command |= 0x00008000; 19130a46b1dcSBill Paul pci_write_config(dev, DC_PCI_CFLT, command, 4); 191496f2e892SBill Paul break; 191596f2e892SBill Paul case DC_DEVICEID_AL981: 191696f2e892SBill Paul sc->dc_type = DC_TYPE_AL981; 191796f2e892SBill Paul sc->dc_flags |= DC_TX_USE_TX_INTR; 191896f2e892SBill Paul sc->dc_flags |= DC_TX_ADMTEK_WAR; 191996f2e892SBill Paul sc->dc_pmode = DC_PMODE_MII; 19203097aa70SWarner Losh dc_read_srom(sc, sc->dc_romwidth); 192196f2e892SBill Paul break; 192296f2e892SBill Paul case DC_DEVICEID_AN985: 1923e351d778SMartin Blapp case DC_DEVICEID_ADM9511: 1924e351d778SMartin Blapp case DC_DEVICEID_ADM9513: 192541fced74SPeter Wemm case DC_DEVICEID_FE2500: 1926fa167b8eSBill Paul case DC_DEVICEID_EN2242: 1927948c244dSWarner Losh case DC_DEVICEID_HAWKING_PN672TX: 19287eac366bSMartin Blapp case DC_DEVICEID_3CSOHOB: 192996f2e892SBill Paul sc->dc_type = DC_TYPE_AN985; 1930acc1bcccSMartin Blapp sc->dc_flags |= DC_64BIT_HASH; 193196f2e892SBill Paul sc->dc_flags |= DC_TX_USE_TX_INTR; 193296f2e892SBill Paul sc->dc_flags |= DC_TX_ADMTEK_WAR; 193396f2e892SBill Paul sc->dc_pmode = DC_PMODE_MII; 19343097aa70SWarner Losh dc_read_srom(sc, sc->dc_romwidth); 193596f2e892SBill Paul break; 193696f2e892SBill Paul case DC_DEVICEID_98713: 193796f2e892SBill Paul case DC_DEVICEID_98713_CP: 193896f2e892SBill Paul if (revision < DC_REVISION_98713A) { 193996f2e892SBill Paul sc->dc_type = DC_TYPE_98713; 194096f2e892SBill Paul } 1941318b02fdSBill Paul if (revision >= DC_REVISION_98713A) { 194296f2e892SBill Paul sc->dc_type = DC_TYPE_98713A; 1943318b02fdSBill Paul sc->dc_flags |= DC_21143_NWAY; 1944318b02fdSBill Paul } 1945318b02fdSBill Paul sc->dc_flags |= DC_REDUCED_MII_POLL; 194696f2e892SBill Paul sc->dc_flags |= DC_TX_POLL | DC_TX_USE_TX_INTR; 194796f2e892SBill Paul break; 194896f2e892SBill Paul case DC_DEVICEID_987x5: 19499ca710f6SJeroen Ruigrok van der Werven case DC_DEVICEID_EN1217: 195079d11e09SBill Paul /* 195179d11e09SBill Paul * Macronix MX98715AEC-C/D/E parts have only a 195279d11e09SBill Paul * 128-bit hash table. We need to deal with these 195379d11e09SBill Paul * in the same manner as the PNIC II so that we 195479d11e09SBill Paul * get the right number of bits out of the 195579d11e09SBill Paul * CRC routine. 195679d11e09SBill Paul */ 195779d11e09SBill Paul if (revision >= DC_REVISION_98715AEC_C && 195879d11e09SBill Paul revision < DC_REVISION_98725) 195979d11e09SBill Paul sc->dc_flags |= DC_128BIT_HASH; 196096f2e892SBill Paul sc->dc_type = DC_TYPE_987x5; 196196f2e892SBill Paul sc->dc_flags |= DC_TX_POLL | DC_TX_USE_TX_INTR; 1962318b02fdSBill Paul sc->dc_flags |= DC_REDUCED_MII_POLL | DC_21143_NWAY; 196396f2e892SBill Paul break; 1964ead7cde9SBill Paul case DC_DEVICEID_98727: 1965ead7cde9SBill Paul sc->dc_type = DC_TYPE_987x5; 1966ead7cde9SBill Paul sc->dc_flags |= DC_TX_POLL | DC_TX_USE_TX_INTR; 1967ead7cde9SBill Paul sc->dc_flags |= DC_REDUCED_MII_POLL | DC_21143_NWAY; 1968ead7cde9SBill Paul break; 196996f2e892SBill Paul case DC_DEVICEID_82C115: 197096f2e892SBill Paul sc->dc_type = DC_TYPE_PNICII; 197179d11e09SBill Paul sc->dc_flags |= DC_TX_POLL | DC_TX_USE_TX_INTR | DC_128BIT_HASH; 1972318b02fdSBill Paul sc->dc_flags |= DC_REDUCED_MII_POLL | DC_21143_NWAY; 197396f2e892SBill Paul break; 197496f2e892SBill Paul case DC_DEVICEID_82C168: 197596f2e892SBill Paul sc->dc_type = DC_TYPE_PNIC; 197691cc2adbSBill Paul sc->dc_flags |= DC_TX_STORENFWD | DC_TX_INTR_ALWAYS; 197796f2e892SBill Paul sc->dc_flags |= DC_PNIC_RX_BUG_WAR; 197896f2e892SBill Paul sc->dc_pnic_rx_buf = malloc(DC_RXLEN * 5, M_DEVBUF, M_NOWAIT); 197996f2e892SBill Paul if (revision < DC_REVISION_82C169) 198096f2e892SBill Paul sc->dc_pmode = DC_PMODE_SYM; 198196f2e892SBill Paul break; 198296f2e892SBill Paul case DC_DEVICEID_AX88140A: 198396f2e892SBill Paul sc->dc_type = DC_TYPE_ASIX; 198496f2e892SBill Paul sc->dc_flags |= DC_TX_USE_TX_INTR | DC_TX_INTR_FIRSTFRAG; 198596f2e892SBill Paul sc->dc_flags |= DC_REDUCED_MII_POLL; 198696f2e892SBill Paul sc->dc_pmode = DC_PMODE_MII; 198796f2e892SBill Paul break; 1988feb78939SJonathan Chen case DC_DEVICEID_X3201: 1989feb78939SJonathan Chen sc->dc_type = DC_TYPE_XIRCOM; 19902dfc960aSLuigi Rizzo sc->dc_flags |= DC_TX_INTR_ALWAYS | DC_TX_COALESCE | 19912dfc960aSLuigi Rizzo DC_TX_ALIGN; 1992feb78939SJonathan Chen /* 1993feb78939SJonathan Chen * We don't actually need to coalesce, but we're doing 1994feb78939SJonathan Chen * it to obtain a double word aligned buffer. 19952dfc960aSLuigi Rizzo * The DC_TX_COALESCE flag is required. 1996feb78939SJonathan Chen */ 19973097aa70SWarner Losh sc->dc_pmode = DC_PMODE_MII; 1998feb78939SJonathan Chen break; 19991af8bec7SBill Paul case DC_DEVICEID_RS7112: 20001af8bec7SBill Paul sc->dc_type = DC_TYPE_CONEXANT; 20011af8bec7SBill Paul sc->dc_flags |= DC_TX_INTR_ALWAYS; 20021af8bec7SBill Paul sc->dc_flags |= DC_REDUCED_MII_POLL; 20031af8bec7SBill Paul sc->dc_pmode = DC_PMODE_MII; 20043097aa70SWarner Losh dc_read_srom(sc, sc->dc_romwidth); 20051af8bec7SBill Paul break; 200696f2e892SBill Paul default: 200796f2e892SBill Paul printf("dc%d: unknown device: %x\n", sc->dc_unit, 200896f2e892SBill Paul sc->dc_info->dc_did); 200996f2e892SBill Paul break; 201096f2e892SBill Paul } 201196f2e892SBill Paul 201296f2e892SBill Paul /* Save the cache line size. */ 201388d739dcSBill Paul if (DC_IS_DAVICOM(sc)) 201488d739dcSBill Paul sc->dc_cachesize = 0; 201588d739dcSBill Paul else 201688d739dcSBill Paul sc->dc_cachesize = pci_read_config(dev, 201788d739dcSBill Paul DC_PCI_CFLT, 4) & 0xFF; 201896f2e892SBill Paul 201996f2e892SBill Paul /* Reset the adapter. */ 202096f2e892SBill Paul dc_reset(sc); 202196f2e892SBill Paul 202296f2e892SBill Paul /* Take 21143 out of snooze mode */ 2023feb78939SJonathan Chen if (DC_IS_INTEL(sc) || DC_IS_XIRCOM(sc)) { 202496f2e892SBill Paul command = pci_read_config(dev, DC_PCI_CFDD, 4); 202596f2e892SBill Paul command &= ~(DC_CFDD_SNOOZE_MODE | DC_CFDD_SLEEP_MODE); 202696f2e892SBill Paul pci_write_config(dev, DC_PCI_CFDD, command, 4); 202796f2e892SBill Paul } 202896f2e892SBill Paul 202996f2e892SBill Paul /* 203096f2e892SBill Paul * Try to learn something about the supported media. 203196f2e892SBill Paul * We know that ASIX and ADMtek and Davicom devices 203296f2e892SBill Paul * will *always* be using MII media, so that's a no-brainer. 203396f2e892SBill Paul * The tricky ones are the Macronix/PNIC II and the 203496f2e892SBill Paul * Intel 21143. 203596f2e892SBill Paul */ 20365c1cfac4SBill Paul if (DC_IS_INTEL(sc)) 20375c1cfac4SBill Paul dc_parse_21143_srom(sc); 20385c1cfac4SBill Paul else if (DC_IS_MACRONIX(sc) || DC_IS_PNICII(sc)) { 203996f2e892SBill Paul if (sc->dc_type == DC_TYPE_98713) 204096f2e892SBill Paul sc->dc_pmode = DC_PMODE_MII; 204196f2e892SBill Paul else 204296f2e892SBill Paul sc->dc_pmode = DC_PMODE_SYM; 204396f2e892SBill Paul } else if (!sc->dc_pmode) 204496f2e892SBill Paul sc->dc_pmode = DC_PMODE_MII; 204596f2e892SBill Paul 204696f2e892SBill Paul /* 204796f2e892SBill Paul * Get station address from the EEPROM. 204896f2e892SBill Paul */ 204996f2e892SBill Paul switch(sc->dc_type) { 205096f2e892SBill Paul case DC_TYPE_98713: 205196f2e892SBill Paul case DC_TYPE_98713A: 205296f2e892SBill Paul case DC_TYPE_987x5: 205396f2e892SBill Paul case DC_TYPE_PNICII: 205496f2e892SBill Paul dc_read_eeprom(sc, (caddr_t)&mac_offset, 205596f2e892SBill Paul (DC_EE_NODEADDR_OFFSET / 2), 1, 0); 205696f2e892SBill Paul dc_read_eeprom(sc, (caddr_t)&eaddr, (mac_offset / 2), 3, 0); 205796f2e892SBill Paul break; 205896f2e892SBill Paul case DC_TYPE_PNIC: 205996f2e892SBill Paul dc_read_eeprom(sc, (caddr_t)&eaddr, 0, 3, 1); 206096f2e892SBill Paul break; 206196f2e892SBill Paul case DC_TYPE_DM9102: 206296f2e892SBill Paul case DC_TYPE_21143: 206396f2e892SBill Paul case DC_TYPE_ASIX: 206496f2e892SBill Paul dc_read_eeprom(sc, (caddr_t)&eaddr, DC_EE_NODEADDR, 3, 0); 206596f2e892SBill Paul break; 206696f2e892SBill Paul case DC_TYPE_AL981: 206796f2e892SBill Paul case DC_TYPE_AN985: 20680934f18aSMaxime Henrion bcopy(sc->dc_srom + DC_AL_EE_NODEADDR, &eaddr, 20693097aa70SWarner Losh ETHER_ADDR_LEN); 207096f2e892SBill Paul dc_read_eeprom(sc, (caddr_t)&eaddr, DC_AL_EE_NODEADDR, 3, 0); 207196f2e892SBill Paul break; 20721af8bec7SBill Paul case DC_TYPE_CONEXANT: 20730934f18aSMaxime Henrion bcopy(sc->dc_srom + DC_CONEXANT_EE_NODEADDR, &eaddr, 20740934f18aSMaxime Henrion ETHER_ADDR_LEN); 20751af8bec7SBill Paul break; 2076feb78939SJonathan Chen case DC_TYPE_XIRCOM: 20770934f18aSMaxime Henrion /* The MAC comes from the CIS. */ 2078e7b01d07SWarner Losh mac = pci_get_ether(dev); 2079e7b01d07SWarner Losh if (!mac) { 2080e7b01d07SWarner Losh device_printf(dev, "No station address in CIS!\n"); 2081608654d4SNate Lawson error = ENXIO; 2082e7b01d07SWarner Losh goto fail; 2083e7b01d07SWarner Losh } 2084e7b01d07SWarner Losh bcopy(mac, eaddr, ETHER_ADDR_LEN); 2085feb78939SJonathan Chen break; 208696f2e892SBill Paul default: 208796f2e892SBill Paul dc_read_eeprom(sc, (caddr_t)&eaddr, DC_EE_NODEADDR, 3, 0); 208896f2e892SBill Paul break; 208996f2e892SBill Paul } 209096f2e892SBill Paul 209196f2e892SBill Paul /* 209296f2e892SBill Paul * A 21143 or clone chip was detected. Inform the world. 209396f2e892SBill Paul */ 209496f2e892SBill Paul printf("dc%d: Ethernet address: %6D\n", unit, eaddr, ":"); 209596f2e892SBill Paul 209696f2e892SBill Paul sc->dc_unit = unit; 20970934f18aSMaxime Henrion bcopy(eaddr, &sc->arpcom.ac_enaddr, ETHER_ADDR_LEN); 209896f2e892SBill Paul 209956e5e7aeSMaxime Henrion /* Allocate a busdma tag and DMA safe memory for TX/RX descriptors. */ 210056e5e7aeSMaxime Henrion error = bus_dma_tag_create(NULL, PAGE_SIZE, 0, BUS_SPACE_MAXADDR_32BIT, 210156e5e7aeSMaxime Henrion BUS_SPACE_MAXADDR, NULL, NULL, sizeof(struct dc_list_data), 1, 210256e5e7aeSMaxime Henrion sizeof(struct dc_list_data), 0, NULL, NULL, &sc->dc_ltag); 210356e5e7aeSMaxime Henrion if (error) { 210456e5e7aeSMaxime Henrion printf("dc%d: failed to allocate busdma tag\n", unit); 210556e5e7aeSMaxime Henrion error = ENXIO; 210656e5e7aeSMaxime Henrion goto fail; 210756e5e7aeSMaxime Henrion } 210856e5e7aeSMaxime Henrion error = bus_dmamem_alloc(sc->dc_ltag, (void **)&sc->dc_ldata, 210956e5e7aeSMaxime Henrion BUS_DMA_NOWAIT, &sc->dc_lmap); 211056e5e7aeSMaxime Henrion if (error) { 211156e5e7aeSMaxime Henrion printf("dc%d: failed to allocate DMA safe memory\n", unit); 211256e5e7aeSMaxime Henrion error = ENXIO; 211356e5e7aeSMaxime Henrion goto fail; 211456e5e7aeSMaxime Henrion } 211556e5e7aeSMaxime Henrion error = bus_dmamap_load(sc->dc_ltag, sc->dc_lmap, sc->dc_ldata, 211656e5e7aeSMaxime Henrion sizeof(struct dc_list_data), dc_dma_map_addr, &sc->dc_laddr, 211756e5e7aeSMaxime Henrion BUS_DMA_NOWAIT); 211856e5e7aeSMaxime Henrion if (error) { 211956e5e7aeSMaxime Henrion printf("dc%d: cannot get address of the descriptors\n", unit); 212056e5e7aeSMaxime Henrion error = ENXIO; 212156e5e7aeSMaxime Henrion goto fail; 212256e5e7aeSMaxime Henrion } 212356e5e7aeSMaxime Henrion bzero(sc->dc_ldata, sizeof(struct dc_list_data)); 212496f2e892SBill Paul 212556e5e7aeSMaxime Henrion /* 212656e5e7aeSMaxime Henrion * Allocate a busdma tag and DMA safe memory for the multicast 212756e5e7aeSMaxime Henrion * setup frame. 212856e5e7aeSMaxime Henrion */ 212956e5e7aeSMaxime Henrion error = bus_dma_tag_create(NULL, PAGE_SIZE, 0, BUS_SPACE_MAXADDR_32BIT, 213056e5e7aeSMaxime Henrion BUS_SPACE_MAXADDR, NULL, NULL, DC_SFRAME_LEN + DC_MIN_FRAMELEN, 1, 213156e5e7aeSMaxime Henrion DC_SFRAME_LEN + DC_MIN_FRAMELEN, 0, NULL, NULL, &sc->dc_stag); 213256e5e7aeSMaxime Henrion if (error) { 213356e5e7aeSMaxime Henrion printf("dc%d: failed to allocate busdma tag\n", unit); 213456e5e7aeSMaxime Henrion error = ENXIO; 213556e5e7aeSMaxime Henrion goto fail; 213656e5e7aeSMaxime Henrion } 213756e5e7aeSMaxime Henrion error = bus_dmamem_alloc(sc->dc_stag, (void **)&sc->dc_cdata.dc_sbuf, 213856e5e7aeSMaxime Henrion BUS_DMA_NOWAIT, &sc->dc_smap); 213956e5e7aeSMaxime Henrion if (error) { 214056e5e7aeSMaxime Henrion printf("dc%d: failed to allocate DMA safe memory\n", unit); 214156e5e7aeSMaxime Henrion error = ENXIO; 214256e5e7aeSMaxime Henrion goto fail; 214356e5e7aeSMaxime Henrion } 214456e5e7aeSMaxime Henrion error = bus_dmamap_load(sc->dc_stag, sc->dc_smap, sc->dc_cdata.dc_sbuf, 214556e5e7aeSMaxime Henrion DC_SFRAME_LEN, dc_dma_map_addr, &sc->dc_saddr, BUS_DMA_NOWAIT); 214656e5e7aeSMaxime Henrion if (error) { 214756e5e7aeSMaxime Henrion printf("dc%d: cannot get address of the descriptors\n", unit); 214896f2e892SBill Paul error = ENXIO; 214996f2e892SBill Paul goto fail; 215096f2e892SBill Paul } 215196f2e892SBill Paul 215256e5e7aeSMaxime Henrion /* Allocate a busdma tag for mbufs. */ 215356e5e7aeSMaxime Henrion error = bus_dma_tag_create(NULL, PAGE_SIZE, 0, BUS_SPACE_MAXADDR_32BIT, 215456e5e7aeSMaxime Henrion BUS_SPACE_MAXADDR, NULL, NULL, MCLBYTES * DC_TX_LIST_CNT, 215556e5e7aeSMaxime Henrion DC_TX_LIST_CNT, MCLBYTES, 0, NULL, NULL, &sc->dc_mtag); 215656e5e7aeSMaxime Henrion if (error) { 215756e5e7aeSMaxime Henrion printf("dc%d: failed to allocate busdma tag\n", unit); 215856e5e7aeSMaxime Henrion error = ENXIO; 215956e5e7aeSMaxime Henrion goto fail; 216056e5e7aeSMaxime Henrion } 216156e5e7aeSMaxime Henrion 216256e5e7aeSMaxime Henrion /* Create the TX/RX busdma maps. */ 216356e5e7aeSMaxime Henrion for (i = 0; i < DC_TX_LIST_CNT; i++) { 216456e5e7aeSMaxime Henrion error = bus_dmamap_create(sc->dc_mtag, 0, 216556e5e7aeSMaxime Henrion &sc->dc_cdata.dc_tx_map[i]); 216656e5e7aeSMaxime Henrion if (error) { 216756e5e7aeSMaxime Henrion printf("dc%d: failed to init TX ring\n", unit); 216856e5e7aeSMaxime Henrion error = ENXIO; 216956e5e7aeSMaxime Henrion goto fail; 217056e5e7aeSMaxime Henrion } 217156e5e7aeSMaxime Henrion } 217256e5e7aeSMaxime Henrion for (i = 0; i < DC_RX_LIST_CNT; i++) { 217356e5e7aeSMaxime Henrion error = bus_dmamap_create(sc->dc_mtag, 0, 217456e5e7aeSMaxime Henrion &sc->dc_cdata.dc_rx_map[i]); 217556e5e7aeSMaxime Henrion if (error) { 217656e5e7aeSMaxime Henrion printf("dc%d: failed to init RX ring\n", unit); 217756e5e7aeSMaxime Henrion error = ENXIO; 217856e5e7aeSMaxime Henrion goto fail; 217956e5e7aeSMaxime Henrion } 218056e5e7aeSMaxime Henrion } 218156e5e7aeSMaxime Henrion error = bus_dmamap_create(sc->dc_mtag, 0, &sc->dc_sparemap); 218256e5e7aeSMaxime Henrion if (error) { 218356e5e7aeSMaxime Henrion printf("dc%d: failed to init RX ring\n", unit); 218456e5e7aeSMaxime Henrion error = ENXIO; 218556e5e7aeSMaxime Henrion goto fail; 218656e5e7aeSMaxime Henrion } 218796f2e892SBill Paul 218896f2e892SBill Paul ifp = &sc->arpcom.ac_if; 218996f2e892SBill Paul ifp->if_softc = sc; 219096f2e892SBill Paul ifp->if_unit = unit; 219196f2e892SBill Paul ifp->if_name = "dc"; 2192feb78939SJonathan Chen /* XXX: bleah, MTU gets overwritten in ether_ifattach() */ 219396f2e892SBill Paul ifp->if_mtu = ETHERMTU; 219496f2e892SBill Paul ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST; 219596f2e892SBill Paul ifp->if_ioctl = dc_ioctl; 219696f2e892SBill Paul ifp->if_start = dc_start; 219796f2e892SBill Paul ifp->if_watchdog = dc_watchdog; 219896f2e892SBill Paul ifp->if_init = dc_init; 219996f2e892SBill Paul ifp->if_baudrate = 10000000; 220096f2e892SBill Paul ifp->if_snd.ifq_maxlen = DC_TX_LIST_CNT - 1; 220196f2e892SBill Paul 220296f2e892SBill Paul /* 22035c1cfac4SBill Paul * Do MII setup. If this is a 21143, check for a PHY on the 22045c1cfac4SBill Paul * MII bus after applying any necessary fixups to twiddle the 22055c1cfac4SBill Paul * GPIO bits. If we don't end up finding a PHY, restore the 22065c1cfac4SBill Paul * old selection (SIA only or SIA/SYM) and attach the dcphy 22075c1cfac4SBill Paul * driver instead. 220896f2e892SBill Paul */ 22095c1cfac4SBill Paul if (DC_IS_INTEL(sc)) { 22105c1cfac4SBill Paul dc_apply_fixup(sc, IFM_AUTO); 22115c1cfac4SBill Paul tmp = sc->dc_pmode; 22125c1cfac4SBill Paul sc->dc_pmode = DC_PMODE_MII; 22135c1cfac4SBill Paul } 22145c1cfac4SBill Paul 221596f2e892SBill Paul error = mii_phy_probe(dev, &sc->dc_miibus, 221696f2e892SBill Paul dc_ifmedia_upd, dc_ifmedia_sts); 221796f2e892SBill Paul 221896f2e892SBill Paul if (error && DC_IS_INTEL(sc)) { 22195c1cfac4SBill Paul sc->dc_pmode = tmp; 22205c1cfac4SBill Paul if (sc->dc_pmode != DC_PMODE_SIA) 222196f2e892SBill Paul sc->dc_pmode = DC_PMODE_SYM; 2222042c8f6eSBill Paul sc->dc_flags |= DC_21143_NWAY; 222396f2e892SBill Paul mii_phy_probe(dev, &sc->dc_miibus, 222496f2e892SBill Paul dc_ifmedia_upd, dc_ifmedia_sts); 222578999dd1SBill Paul /* 222678999dd1SBill Paul * For non-MII cards, we need to have the 21143 222778999dd1SBill Paul * drive the LEDs. Except there are some systems 222878999dd1SBill Paul * like the NEC VersaPro NoteBook PC which have no 222978999dd1SBill Paul * LEDs, and twiddling these bits has adverse effects 223078999dd1SBill Paul * on them. (I.e. you suddenly can't get a link.) 223178999dd1SBill Paul */ 223278999dd1SBill Paul if (pci_read_config(dev, DC_PCI_CSID, 4) != 0x80281033) 223378999dd1SBill Paul sc->dc_flags |= DC_TULIP_LEDS; 223496f2e892SBill Paul error = 0; 223596f2e892SBill Paul } 223696f2e892SBill Paul 223796f2e892SBill Paul if (error) { 223896f2e892SBill Paul printf("dc%d: MII without any PHY!\n", sc->dc_unit); 223996f2e892SBill Paul goto fail; 224096f2e892SBill Paul } 224196f2e892SBill Paul 2242feb78939SJonathan Chen if (DC_IS_XIRCOM(sc)) { 2243feb78939SJonathan Chen /* 2244feb78939SJonathan Chen * setup General Purpose Port mode and data so the tulip 2245feb78939SJonathan Chen * can talk to the MII. 2246feb78939SJonathan Chen */ 2247feb78939SJonathan Chen CSR_WRITE_4(sc, DC_SIAGP, DC_SIAGP_WRITE_EN | DC_SIAGP_INT1_EN | 2248feb78939SJonathan Chen DC_SIAGP_MD_GP2_OUTPUT | DC_SIAGP_MD_GP0_OUTPUT); 2249feb78939SJonathan Chen DELAY(10); 2250feb78939SJonathan Chen CSR_WRITE_4(sc, DC_SIAGP, DC_SIAGP_INT1_EN | 2251feb78939SJonathan Chen DC_SIAGP_MD_GP2_OUTPUT | DC_SIAGP_MD_GP0_OUTPUT); 2252feb78939SJonathan Chen DELAY(10); 2253feb78939SJonathan Chen } 2254feb78939SJonathan Chen 2255028a8491SMartin Blapp if (DC_IS_ADMTEK(sc)) { 2256028a8491SMartin Blapp /* 2257028a8491SMartin Blapp * Set automatic TX underrun recovery for the ADMtek chips 2258028a8491SMartin Blapp */ 2259028a8491SMartin Blapp DC_SETBIT(sc, DC_AL_CR, DC_AL_CR_ATUR); 2260028a8491SMartin Blapp } 2261028a8491SMartin Blapp 226296f2e892SBill Paul /* 2263db40c1aeSDoug Ambrisko * Tell the upper layer(s) we support long frames. 2264db40c1aeSDoug Ambrisko */ 2265db40c1aeSDoug Ambrisko ifp->if_data.ifi_hdrlen = sizeof(struct ether_vlan_header); 22669ef8b520SSam Leffler ifp->if_capabilities |= IFCAP_VLAN_MTU; 2267db40c1aeSDoug Ambrisko 2268b50c6312SJonathan Lemon callout_init(&sc->dc_stat_ch, IS_MPSAFE); 226996f2e892SBill Paul 22705c1cfac4SBill Paul #ifdef SRM_MEDIA 2271510a809eSMike Smith sc->dc_srm_media = 0; 2272510a809eSMike Smith 2273510a809eSMike Smith /* Remember the SRM console media setting */ 2274510a809eSMike Smith if (DC_IS_INTEL(sc)) { 2275510a809eSMike Smith command = pci_read_config(dev, DC_PCI_CFDD, 4); 2276510a809eSMike Smith command &= ~(DC_CFDD_SNOOZE_MODE | DC_CFDD_SLEEP_MODE); 2277510a809eSMike Smith switch ((command >> 8) & 0xff) { 2278510a809eSMike Smith case 3: 2279510a809eSMike Smith sc->dc_srm_media = IFM_10_T; 2280510a809eSMike Smith break; 2281510a809eSMike Smith case 4: 2282510a809eSMike Smith sc->dc_srm_media = IFM_10_T | IFM_FDX; 2283510a809eSMike Smith break; 2284510a809eSMike Smith case 5: 2285510a809eSMike Smith sc->dc_srm_media = IFM_100_TX; 2286510a809eSMike Smith break; 2287510a809eSMike Smith case 6: 2288510a809eSMike Smith sc->dc_srm_media = IFM_100_TX | IFM_FDX; 2289510a809eSMike Smith break; 2290510a809eSMike Smith } 2291510a809eSMike Smith if (sc->dc_srm_media) 2292510a809eSMike Smith sc->dc_srm_media |= IFM_ACTIVE | IFM_ETHER; 2293510a809eSMike Smith } 2294510a809eSMike Smith #endif 2295510a809eSMike Smith 2296608654d4SNate Lawson /* 2297608654d4SNate Lawson * Call MI attach routine. 2298608654d4SNate Lawson */ 2299608654d4SNate Lawson ether_ifattach(ifp, eaddr); 2300608654d4SNate Lawson 230154f1f1d1SNate Lawson /* Hook interrupt last to avoid having to lock softc */ 2302608654d4SNate Lawson error = bus_setup_intr(dev, sc->dc_irq, INTR_TYPE_NET | 2303608654d4SNate Lawson (IS_MPSAFE ? INTR_MPSAFE : 0), 2304608654d4SNate Lawson dc_intr, sc, &sc->dc_intrhand); 2305608654d4SNate Lawson 2306608654d4SNate Lawson if (error) { 2307608654d4SNate Lawson printf("dc%d: couldn't set up irq\n", unit); 2308693f4477SNate Lawson ether_ifdetach(ifp); 230954f1f1d1SNate Lawson goto fail; 2310608654d4SNate Lawson } 2311510a809eSMike Smith 231296f2e892SBill Paul fail: 231354f1f1d1SNate Lawson if (error) 231454f1f1d1SNate Lawson dc_detach(dev); 231596f2e892SBill Paul return (error); 231696f2e892SBill Paul } 231796f2e892SBill Paul 2318693f4477SNate Lawson /* 2319693f4477SNate Lawson * Shutdown hardware and free up resources. This can be called any 2320693f4477SNate Lawson * time after the mutex has been initialized. It is called in both 2321693f4477SNate Lawson * the error case in attach and the normal detach case so it needs 2322693f4477SNate Lawson * to be careful about only freeing resources that have actually been 2323693f4477SNate Lawson * allocated. 2324693f4477SNate Lawson */ 2325e3d2833aSAlfred Perlstein static int 23260934f18aSMaxime Henrion dc_detach(device_t dev) 232796f2e892SBill Paul { 232896f2e892SBill Paul struct dc_softc *sc; 232996f2e892SBill Paul struct ifnet *ifp; 23305c1cfac4SBill Paul struct dc_mediainfo *m; 233156e5e7aeSMaxime Henrion int i; 233296f2e892SBill Paul 233396f2e892SBill Paul sc = device_get_softc(dev); 233459f47d29SJohn Baldwin KASSERT(mtx_initialized(&sc->dc_mtx), ("dc mutex not initialized")); 2335d1ce9105SBill Paul DC_LOCK(sc); 2336d1ce9105SBill Paul 233796f2e892SBill Paul ifp = &sc->arpcom.ac_if; 233896f2e892SBill Paul 2339693f4477SNate Lawson /* These should only be active if attach succeeded */ 2340214073e5SWarner Losh if (device_is_attached(dev)) { 234196f2e892SBill Paul dc_stop(sc); 23429ef8b520SSam Leffler ether_ifdetach(ifp); 2343693f4477SNate Lawson } 2344693f4477SNate Lawson if (sc->dc_miibus) 234596f2e892SBill Paul device_delete_child(dev, sc->dc_miibus); 234654f1f1d1SNate Lawson bus_generic_detach(dev); 234796f2e892SBill Paul 234854f1f1d1SNate Lawson if (sc->dc_intrhand) 234996f2e892SBill Paul bus_teardown_intr(dev, sc->dc_irq, sc->dc_intrhand); 235054f1f1d1SNate Lawson if (sc->dc_irq) 235196f2e892SBill Paul bus_release_resource(dev, SYS_RES_IRQ, 0, sc->dc_irq); 235254f1f1d1SNate Lawson if (sc->dc_res) 235396f2e892SBill Paul bus_release_resource(dev, DC_RES, DC_RID, sc->dc_res); 235496f2e892SBill Paul 235556e5e7aeSMaxime Henrion if (sc->dc_cdata.dc_sbuf != NULL) 235656e5e7aeSMaxime Henrion bus_dmamem_free(sc->dc_stag, sc->dc_cdata.dc_sbuf, sc->dc_smap); 235756e5e7aeSMaxime Henrion if (sc->dc_ldata != NULL) 235856e5e7aeSMaxime Henrion bus_dmamem_free(sc->dc_ltag, sc->dc_ldata, sc->dc_lmap); 235956e5e7aeSMaxime Henrion for (i = 0; i < DC_TX_LIST_CNT; i++) 236056e5e7aeSMaxime Henrion bus_dmamap_destroy(sc->dc_mtag, sc->dc_cdata.dc_tx_map[i]); 236156e5e7aeSMaxime Henrion for (i = 0; i < DC_RX_LIST_CNT; i++) 236256e5e7aeSMaxime Henrion bus_dmamap_destroy(sc->dc_mtag, sc->dc_cdata.dc_rx_map[i]); 236356e5e7aeSMaxime Henrion bus_dmamap_destroy(sc->dc_mtag, sc->dc_sparemap); 236456e5e7aeSMaxime Henrion if (sc->dc_stag) 236556e5e7aeSMaxime Henrion bus_dma_tag_destroy(sc->dc_stag); 236656e5e7aeSMaxime Henrion if (sc->dc_mtag) 236756e5e7aeSMaxime Henrion bus_dma_tag_destroy(sc->dc_mtag); 236856e5e7aeSMaxime Henrion if (sc->dc_ltag) 236956e5e7aeSMaxime Henrion bus_dma_tag_destroy(sc->dc_ltag); 237056e5e7aeSMaxime Henrion 237196f2e892SBill Paul free(sc->dc_pnic_rx_buf, M_DEVBUF); 237296f2e892SBill Paul 23735c1cfac4SBill Paul while (sc->dc_mi != NULL) { 23745c1cfac4SBill Paul m = sc->dc_mi->dc_next; 23755c1cfac4SBill Paul free(sc->dc_mi, M_DEVBUF); 23765c1cfac4SBill Paul sc->dc_mi = m; 23775c1cfac4SBill Paul } 23787efff076SWarner Losh free(sc->dc_srom, M_DEVBUF); 23795c1cfac4SBill Paul 2380d1ce9105SBill Paul DC_UNLOCK(sc); 2381d1ce9105SBill Paul mtx_destroy(&sc->dc_mtx); 238296f2e892SBill Paul 238396f2e892SBill Paul return (0); 238496f2e892SBill Paul } 238596f2e892SBill Paul 238696f2e892SBill Paul /* 238796f2e892SBill Paul * Initialize the transmit descriptors. 238896f2e892SBill Paul */ 2389e3d2833aSAlfred Perlstein static int 23900934f18aSMaxime Henrion dc_list_tx_init(struct dc_softc *sc) 239196f2e892SBill Paul { 239296f2e892SBill Paul struct dc_chain_data *cd; 239396f2e892SBill Paul struct dc_list_data *ld; 239401faf54bSLuigi Rizzo int i, nexti; 239596f2e892SBill Paul 239696f2e892SBill Paul cd = &sc->dc_cdata; 239796f2e892SBill Paul ld = sc->dc_ldata; 239896f2e892SBill Paul for (i = 0; i < DC_TX_LIST_CNT; i++) { 2399b3811c95SMaxime Henrion if (i == DC_TX_LIST_CNT - 1) 2400b3811c95SMaxime Henrion nexti = 0; 2401b3811c95SMaxime Henrion else 2402b3811c95SMaxime Henrion nexti = i + 1; 240356e5e7aeSMaxime Henrion ld->dc_tx_list[i].dc_next = DC_TXDESC(sc, nexti); 240496f2e892SBill Paul cd->dc_tx_chain[i] = NULL; 240596f2e892SBill Paul ld->dc_tx_list[i].dc_data = 0; 240696f2e892SBill Paul ld->dc_tx_list[i].dc_ctl = 0; 240796f2e892SBill Paul } 240896f2e892SBill Paul 240996f2e892SBill Paul cd->dc_tx_prod = cd->dc_tx_cons = cd->dc_tx_cnt = 0; 241056e5e7aeSMaxime Henrion bus_dmamap_sync(sc->dc_ltag, sc->dc_lmap, 241156e5e7aeSMaxime Henrion BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 241296f2e892SBill Paul return (0); 241396f2e892SBill Paul } 241496f2e892SBill Paul 241596f2e892SBill Paul 241696f2e892SBill Paul /* 241796f2e892SBill Paul * Initialize the RX descriptors and allocate mbufs for them. Note that 241896f2e892SBill Paul * we arrange the descriptors in a closed ring, so that the last descriptor 241996f2e892SBill Paul * points back to the first. 242096f2e892SBill Paul */ 2421e3d2833aSAlfred Perlstein static int 24220934f18aSMaxime Henrion dc_list_rx_init(struct dc_softc *sc) 242396f2e892SBill Paul { 242496f2e892SBill Paul struct dc_chain_data *cd; 242596f2e892SBill Paul struct dc_list_data *ld; 242601faf54bSLuigi Rizzo int i, nexti; 242796f2e892SBill Paul 242896f2e892SBill Paul cd = &sc->dc_cdata; 242996f2e892SBill Paul ld = sc->dc_ldata; 243096f2e892SBill Paul 243196f2e892SBill Paul for (i = 0; i < DC_RX_LIST_CNT; i++) { 243256e5e7aeSMaxime Henrion if (dc_newbuf(sc, i, 1) != 0) 243396f2e892SBill Paul return (ENOBUFS); 2434b3811c95SMaxime Henrion if (i == DC_RX_LIST_CNT - 1) 2435b3811c95SMaxime Henrion nexti = 0; 2436b3811c95SMaxime Henrion else 2437b3811c95SMaxime Henrion nexti = i + 1; 243856e5e7aeSMaxime Henrion ld->dc_rx_list[i].dc_next = DC_RXDESC(sc, nexti); 243996f2e892SBill Paul } 244096f2e892SBill Paul 244196f2e892SBill Paul cd->dc_rx_prod = 0; 244256e5e7aeSMaxime Henrion bus_dmamap_sync(sc->dc_ltag, sc->dc_lmap, 244356e5e7aeSMaxime Henrion BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 244496f2e892SBill Paul return (0); 244596f2e892SBill Paul } 244696f2e892SBill Paul 244756e5e7aeSMaxime Henrion static void 244856e5e7aeSMaxime Henrion dc_dma_map_rxbuf(arg, segs, nseg, mapsize, error) 244956e5e7aeSMaxime Henrion void *arg; 245056e5e7aeSMaxime Henrion bus_dma_segment_t *segs; 245156e5e7aeSMaxime Henrion int nseg; 245256e5e7aeSMaxime Henrion bus_size_t mapsize; 245356e5e7aeSMaxime Henrion int error; 245456e5e7aeSMaxime Henrion { 245556e5e7aeSMaxime Henrion struct dc_softc *sc; 245656e5e7aeSMaxime Henrion struct dc_desc *c; 245756e5e7aeSMaxime Henrion 245856e5e7aeSMaxime Henrion sc = arg; 245956e5e7aeSMaxime Henrion c = &sc->dc_ldata->dc_rx_list[sc->dc_cdata.dc_rx_cur]; 246056e5e7aeSMaxime Henrion if (error) { 246156e5e7aeSMaxime Henrion sc->dc_cdata.dc_rx_err = error; 246256e5e7aeSMaxime Henrion return; 246356e5e7aeSMaxime Henrion } 246456e5e7aeSMaxime Henrion 246556e5e7aeSMaxime Henrion KASSERT(nseg == 1, ("wrong number of segments, should be 1")); 246656e5e7aeSMaxime Henrion sc->dc_cdata.dc_rx_err = 0; 246756e5e7aeSMaxime Henrion c->dc_data = segs->ds_addr; 246856e5e7aeSMaxime Henrion } 246956e5e7aeSMaxime Henrion 247096f2e892SBill Paul /* 247196f2e892SBill Paul * Initialize an RX descriptor and attach an MBUF cluster. 247296f2e892SBill Paul */ 2473e3d2833aSAlfred Perlstein static int 247456e5e7aeSMaxime Henrion dc_newbuf(struct dc_softc *sc, int i, int alloc) 247596f2e892SBill Paul { 247656e5e7aeSMaxime Henrion struct mbuf *m_new; 247756e5e7aeSMaxime Henrion bus_dmamap_t tmp; 247856e5e7aeSMaxime Henrion int error; 247996f2e892SBill Paul 248056e5e7aeSMaxime Henrion if (alloc) { 248156e5e7aeSMaxime Henrion m_new = m_getcl(M_DONTWAIT, MT_DATA, M_PKTHDR); 248240129585SLuigi Rizzo if (m_new == NULL) 248396f2e892SBill Paul return (ENOBUFS); 248496f2e892SBill Paul } else { 248556e5e7aeSMaxime Henrion m_new = sc->dc_cdata.dc_rx_chain[i]; 248696f2e892SBill Paul m_new->m_data = m_new->m_ext.ext_buf; 248796f2e892SBill Paul } 248856e5e7aeSMaxime Henrion m_new->m_len = m_new->m_pkthdr.len = MCLBYTES; 248996f2e892SBill Paul m_adj(m_new, sizeof(u_int64_t)); 249096f2e892SBill Paul 249196f2e892SBill Paul /* 249296f2e892SBill Paul * If this is a PNIC chip, zero the buffer. This is part 249396f2e892SBill Paul * of the workaround for the receive bug in the 82c168 and 249496f2e892SBill Paul * 82c169 chips. 249596f2e892SBill Paul */ 249696f2e892SBill Paul if (sc->dc_flags & DC_PNIC_RX_BUG_WAR) 24970934f18aSMaxime Henrion bzero(mtod(m_new, char *), m_new->m_len); 249896f2e892SBill Paul 249956e5e7aeSMaxime Henrion /* No need to remap the mbuf if we're reusing it. */ 250056e5e7aeSMaxime Henrion if (alloc) { 250156e5e7aeSMaxime Henrion sc->dc_cdata.dc_rx_cur = i; 250256e5e7aeSMaxime Henrion error = bus_dmamap_load_mbuf(sc->dc_mtag, sc->dc_sparemap, 250356e5e7aeSMaxime Henrion m_new, dc_dma_map_rxbuf, sc, 0); 250456e5e7aeSMaxime Henrion if (error) { 250556e5e7aeSMaxime Henrion m_freem(m_new); 250656e5e7aeSMaxime Henrion return (error); 250756e5e7aeSMaxime Henrion } 250856e5e7aeSMaxime Henrion if (sc->dc_cdata.dc_rx_err != 0) { 250956e5e7aeSMaxime Henrion m_freem(m_new); 251056e5e7aeSMaxime Henrion return (sc->dc_cdata.dc_rx_err); 251156e5e7aeSMaxime Henrion } 251256e5e7aeSMaxime Henrion bus_dmamap_unload(sc->dc_mtag, sc->dc_cdata.dc_rx_map[i]); 251356e5e7aeSMaxime Henrion tmp = sc->dc_cdata.dc_rx_map[i]; 251456e5e7aeSMaxime Henrion sc->dc_cdata.dc_rx_map[i] = sc->dc_sparemap; 251556e5e7aeSMaxime Henrion sc->dc_sparemap = tmp; 251696f2e892SBill Paul sc->dc_cdata.dc_rx_chain[i] = m_new; 251756e5e7aeSMaxime Henrion } 251896f2e892SBill Paul 251956e5e7aeSMaxime Henrion sc->dc_ldata->dc_rx_list[i].dc_ctl = DC_RXCTL_RLINK | DC_RXLEN; 252056e5e7aeSMaxime Henrion sc->dc_ldata->dc_rx_list[i].dc_status = DC_RXSTAT_OWN; 252156e5e7aeSMaxime Henrion bus_dmamap_sync(sc->dc_mtag, sc->dc_cdata.dc_rx_map[i], 252256e5e7aeSMaxime Henrion BUS_DMASYNC_PREREAD); 252356e5e7aeSMaxime Henrion bus_dmamap_sync(sc->dc_ltag, sc->dc_lmap, 252456e5e7aeSMaxime Henrion BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 252596f2e892SBill Paul return (0); 252696f2e892SBill Paul } 252796f2e892SBill Paul 252896f2e892SBill Paul /* 252996f2e892SBill Paul * Grrrrr. 253096f2e892SBill Paul * The PNIC chip has a terrible bug in it that manifests itself during 253196f2e892SBill Paul * periods of heavy activity. The exact mode of failure if difficult to 253296f2e892SBill Paul * pinpoint: sometimes it only happens in promiscuous mode, sometimes it 253396f2e892SBill Paul * will happen on slow machines. The bug is that sometimes instead of 253496f2e892SBill Paul * uploading one complete frame during reception, it uploads what looks 253596f2e892SBill Paul * like the entire contents of its FIFO memory. The frame we want is at 253696f2e892SBill Paul * the end of the whole mess, but we never know exactly how much data has 253796f2e892SBill Paul * been uploaded, so salvaging the frame is hard. 253896f2e892SBill Paul * 253996f2e892SBill Paul * There is only one way to do it reliably, and it's disgusting. 254096f2e892SBill Paul * Here's what we know: 254196f2e892SBill Paul * 254296f2e892SBill Paul * - We know there will always be somewhere between one and three extra 254396f2e892SBill Paul * descriptors uploaded. 254496f2e892SBill Paul * 254596f2e892SBill Paul * - We know the desired received frame will always be at the end of the 254696f2e892SBill Paul * total data upload. 254796f2e892SBill Paul * 254896f2e892SBill Paul * - We know the size of the desired received frame because it will be 254996f2e892SBill Paul * provided in the length field of the status word in the last descriptor. 255096f2e892SBill Paul * 255196f2e892SBill Paul * Here's what we do: 255296f2e892SBill Paul * 255396f2e892SBill Paul * - When we allocate buffers for the receive ring, we bzero() them. 255496f2e892SBill Paul * This means that we know that the buffer contents should be all 255596f2e892SBill Paul * zeros, except for data uploaded by the chip. 255696f2e892SBill Paul * 255796f2e892SBill Paul * - We also force the PNIC chip to upload frames that include the 255896f2e892SBill Paul * ethernet CRC at the end. 255996f2e892SBill Paul * 256096f2e892SBill Paul * - We gather all of the bogus frame data into a single buffer. 256196f2e892SBill Paul * 256296f2e892SBill Paul * - We then position a pointer at the end of this buffer and scan 256396f2e892SBill Paul * backwards until we encounter the first non-zero byte of data. 256496f2e892SBill Paul * This is the end of the received frame. We know we will encounter 256596f2e892SBill Paul * some data at the end of the frame because the CRC will always be 256696f2e892SBill Paul * there, so even if the sender transmits a packet of all zeros, 256796f2e892SBill Paul * we won't be fooled. 256896f2e892SBill Paul * 256996f2e892SBill Paul * - We know the size of the actual received frame, so we subtract 257096f2e892SBill Paul * that value from the current pointer location. This brings us 257196f2e892SBill Paul * to the start of the actual received packet. 257296f2e892SBill Paul * 257396f2e892SBill Paul * - We copy this into an mbuf and pass it on, along with the actual 257496f2e892SBill Paul * frame length. 257596f2e892SBill Paul * 257696f2e892SBill Paul * The performance hit is tremendous, but it beats dropping frames all 257796f2e892SBill Paul * the time. 257896f2e892SBill Paul */ 257996f2e892SBill Paul 258096f2e892SBill Paul #define DC_WHOLEFRAME (DC_RXSTAT_FIRSTFRAG | DC_RXSTAT_LASTFRAG) 2581e3d2833aSAlfred Perlstein static void 25820934f18aSMaxime Henrion dc_pnic_rx_bug_war(struct dc_softc *sc, int idx) 258396f2e892SBill Paul { 258496f2e892SBill Paul struct dc_desc *cur_rx; 258596f2e892SBill Paul struct dc_desc *c = NULL; 258696f2e892SBill Paul struct mbuf *m = NULL; 258796f2e892SBill Paul unsigned char *ptr; 258896f2e892SBill Paul int i, total_len; 258996f2e892SBill Paul u_int32_t rxstat = 0; 259096f2e892SBill Paul 259196f2e892SBill Paul i = sc->dc_pnic_rx_bug_save; 259296f2e892SBill Paul cur_rx = &sc->dc_ldata->dc_rx_list[idx]; 259396f2e892SBill Paul ptr = sc->dc_pnic_rx_buf; 25941edc4c46SMaxime Henrion bzero(ptr, DC_RXLEN * 5); 259596f2e892SBill Paul 259696f2e892SBill Paul /* Copy all the bytes from the bogus buffers. */ 259796f2e892SBill Paul while (1) { 259896f2e892SBill Paul c = &sc->dc_ldata->dc_rx_list[i]; 259996f2e892SBill Paul rxstat = c->dc_status; 260096f2e892SBill Paul m = sc->dc_cdata.dc_rx_chain[i]; 260196f2e892SBill Paul bcopy(mtod(m, char *), ptr, DC_RXLEN); 260296f2e892SBill Paul ptr += DC_RXLEN; 260396f2e892SBill Paul /* If this is the last buffer, break out. */ 260496f2e892SBill Paul if (i == idx || rxstat & DC_RXSTAT_LASTFRAG) 260596f2e892SBill Paul break; 260656e5e7aeSMaxime Henrion dc_newbuf(sc, i, 0); 260796f2e892SBill Paul DC_INC(i, DC_RX_LIST_CNT); 260896f2e892SBill Paul } 260996f2e892SBill Paul 261096f2e892SBill Paul /* Find the length of the actual receive frame. */ 261196f2e892SBill Paul total_len = DC_RXBYTES(rxstat); 261296f2e892SBill Paul 261396f2e892SBill Paul /* Scan backwards until we hit a non-zero byte. */ 261496f2e892SBill Paul while (*ptr == 0x00) 261596f2e892SBill Paul ptr--; 261696f2e892SBill Paul 261796f2e892SBill Paul /* Round off. */ 261896f2e892SBill Paul if ((uintptr_t)(ptr) & 0x3) 261996f2e892SBill Paul ptr -= 1; 262096f2e892SBill Paul 262196f2e892SBill Paul /* Now find the start of the frame. */ 262296f2e892SBill Paul ptr -= total_len; 262396f2e892SBill Paul if (ptr < sc->dc_pnic_rx_buf) 262496f2e892SBill Paul ptr = sc->dc_pnic_rx_buf; 262596f2e892SBill Paul 262696f2e892SBill Paul /* 262796f2e892SBill Paul * Now copy the salvaged frame to the last mbuf and fake up 262896f2e892SBill Paul * the status word to make it look like a successful 262996f2e892SBill Paul * frame reception. 263096f2e892SBill Paul */ 263156e5e7aeSMaxime Henrion dc_newbuf(sc, i, 0); 263296f2e892SBill Paul bcopy(ptr, mtod(m, char *), total_len); 263396f2e892SBill Paul cur_rx->dc_status = rxstat | DC_RXSTAT_FIRSTFRAG; 263496f2e892SBill Paul } 263596f2e892SBill Paul 263696f2e892SBill Paul /* 263773bf949cSBill Paul * This routine searches the RX ring for dirty descriptors in the 263873bf949cSBill Paul * event that the rxeof routine falls out of sync with the chip's 263973bf949cSBill Paul * current descriptor pointer. This may happen sometimes as a result 264073bf949cSBill Paul * of a "no RX buffer available" condition that happens when the chip 264173bf949cSBill Paul * consumes all of the RX buffers before the driver has a chance to 264273bf949cSBill Paul * process the RX ring. This routine may need to be called more than 264373bf949cSBill Paul * once to bring the driver back in sync with the chip, however we 264473bf949cSBill Paul * should still be getting RX DONE interrupts to drive the search 264573bf949cSBill Paul * for new packets in the RX ring, so we should catch up eventually. 264673bf949cSBill Paul */ 2647e3d2833aSAlfred Perlstein static int 26480934f18aSMaxime Henrion dc_rx_resync(struct dc_softc *sc) 264973bf949cSBill Paul { 265073bf949cSBill Paul struct dc_desc *cur_rx; 26510934f18aSMaxime Henrion int i, pos; 265273bf949cSBill Paul 265373bf949cSBill Paul pos = sc->dc_cdata.dc_rx_prod; 265473bf949cSBill Paul 265573bf949cSBill Paul for (i = 0; i < DC_RX_LIST_CNT; i++) { 265673bf949cSBill Paul cur_rx = &sc->dc_ldata->dc_rx_list[pos]; 265773bf949cSBill Paul if (!(cur_rx->dc_status & DC_RXSTAT_OWN)) 265873bf949cSBill Paul break; 265973bf949cSBill Paul DC_INC(pos, DC_RX_LIST_CNT); 266073bf949cSBill Paul } 266173bf949cSBill Paul 266273bf949cSBill Paul /* If the ring really is empty, then just return. */ 266373bf949cSBill Paul if (i == DC_RX_LIST_CNT) 266473bf949cSBill Paul return (0); 266573bf949cSBill Paul 266673bf949cSBill Paul /* We've fallen behing the chip: catch it. */ 266773bf949cSBill Paul sc->dc_cdata.dc_rx_prod = pos; 266873bf949cSBill Paul 266973bf949cSBill Paul return (EAGAIN); 267073bf949cSBill Paul } 267173bf949cSBill Paul 267273bf949cSBill Paul /* 267396f2e892SBill Paul * A frame has been uploaded: pass the resulting mbuf chain up to 267496f2e892SBill Paul * the higher level protocols. 267596f2e892SBill Paul */ 2676e3d2833aSAlfred Perlstein static void 26770934f18aSMaxime Henrion dc_rxeof(struct dc_softc *sc) 267896f2e892SBill Paul { 267996f2e892SBill Paul struct mbuf *m; 268096f2e892SBill Paul struct ifnet *ifp; 268196f2e892SBill Paul struct dc_desc *cur_rx; 268296f2e892SBill Paul int i, total_len = 0; 268396f2e892SBill Paul u_int32_t rxstat; 268496f2e892SBill Paul 268596f2e892SBill Paul ifp = &sc->arpcom.ac_if; 268696f2e892SBill Paul i = sc->dc_cdata.dc_rx_prod; 268796f2e892SBill Paul 268856e5e7aeSMaxime Henrion bus_dmamap_sync(sc->dc_ltag, sc->dc_lmap, BUS_DMASYNC_POSTREAD); 268996f2e892SBill Paul while (!(sc->dc_ldata->dc_rx_list[i].dc_status & DC_RXSTAT_OWN)) { 2690e4fc250cSLuigi Rizzo #ifdef DEVICE_POLLING 269162f76486SMaxim Sobolev if (ifp->if_flags & IFF_POLLING) { 2692e4fc250cSLuigi Rizzo if (sc->rxcycles <= 0) 2693e4fc250cSLuigi Rizzo break; 2694e4fc250cSLuigi Rizzo sc->rxcycles--; 2695e4fc250cSLuigi Rizzo } 26960934f18aSMaxime Henrion #endif 269796f2e892SBill Paul cur_rx = &sc->dc_ldata->dc_rx_list[i]; 269896f2e892SBill Paul rxstat = cur_rx->dc_status; 269996f2e892SBill Paul m = sc->dc_cdata.dc_rx_chain[i]; 270056e5e7aeSMaxime Henrion bus_dmamap_sync(sc->dc_mtag, sc->dc_cdata.dc_rx_map[i], 270156e5e7aeSMaxime Henrion BUS_DMASYNC_POSTREAD); 270296f2e892SBill Paul total_len = DC_RXBYTES(rxstat); 270396f2e892SBill Paul 270496f2e892SBill Paul if (sc->dc_flags & DC_PNIC_RX_BUG_WAR) { 270596f2e892SBill Paul if ((rxstat & DC_WHOLEFRAME) != DC_WHOLEFRAME) { 270696f2e892SBill Paul if (rxstat & DC_RXSTAT_FIRSTFRAG) 270796f2e892SBill Paul sc->dc_pnic_rx_bug_save = i; 270896f2e892SBill Paul if ((rxstat & DC_RXSTAT_LASTFRAG) == 0) { 270996f2e892SBill Paul DC_INC(i, DC_RX_LIST_CNT); 271096f2e892SBill Paul continue; 271196f2e892SBill Paul } 271296f2e892SBill Paul dc_pnic_rx_bug_war(sc, i); 271396f2e892SBill Paul rxstat = cur_rx->dc_status; 271496f2e892SBill Paul total_len = DC_RXBYTES(rxstat); 271596f2e892SBill Paul } 271696f2e892SBill Paul } 271796f2e892SBill Paul 271896f2e892SBill Paul /* 271996f2e892SBill Paul * If an error occurs, update stats, clear the 272096f2e892SBill Paul * status word and leave the mbuf cluster in place: 272196f2e892SBill Paul * it should simply get re-used next time this descriptor 2722db40c1aeSDoug Ambrisko * comes up in the ring. However, don't report long 27230934f18aSMaxime Henrion * frames as errors since they could be vlans. 272496f2e892SBill Paul */ 2725db40c1aeSDoug Ambrisko if ((rxstat & DC_RXSTAT_RXERR)) { 2726db40c1aeSDoug Ambrisko if (!(rxstat & DC_RXSTAT_GIANT) || 2727db40c1aeSDoug Ambrisko (rxstat & (DC_RXSTAT_CRCERR | DC_RXSTAT_DRIBBLE | 2728db40c1aeSDoug Ambrisko DC_RXSTAT_MIIERE | DC_RXSTAT_COLLSEEN | 2729db40c1aeSDoug Ambrisko DC_RXSTAT_RUNT | DC_RXSTAT_DE))) { 273096f2e892SBill Paul ifp->if_ierrors++; 273196f2e892SBill Paul if (rxstat & DC_RXSTAT_COLLSEEN) 273296f2e892SBill Paul ifp->if_collisions++; 273356e5e7aeSMaxime Henrion dc_newbuf(sc, i, 0); 273496f2e892SBill Paul if (rxstat & DC_RXSTAT_CRCERR) { 273596f2e892SBill Paul DC_INC(i, DC_RX_LIST_CNT); 273696f2e892SBill Paul continue; 273796f2e892SBill Paul } else { 273896f2e892SBill Paul dc_init(sc); 273996f2e892SBill Paul return; 274096f2e892SBill Paul } 274196f2e892SBill Paul } 2742db40c1aeSDoug Ambrisko } 274396f2e892SBill Paul 274496f2e892SBill Paul /* No errors; receive the packet. */ 274596f2e892SBill Paul total_len -= ETHER_CRC_LEN; 274601faf54bSLuigi Rizzo #ifdef __i386__ 274701faf54bSLuigi Rizzo /* 274801faf54bSLuigi Rizzo * On the x86 we do not have alignment problems, so try to 274901faf54bSLuigi Rizzo * allocate a new buffer for the receive ring, and pass up 275001faf54bSLuigi Rizzo * the one where the packet is already, saving the expensive 275101faf54bSLuigi Rizzo * copy done in m_devget(). 275201faf54bSLuigi Rizzo * If we are on an architecture with alignment problems, or 275301faf54bSLuigi Rizzo * if the allocation fails, then use m_devget and leave the 275401faf54bSLuigi Rizzo * existing buffer in the receive ring. 275501faf54bSLuigi Rizzo */ 275656e5e7aeSMaxime Henrion if (dc_quick && dc_newbuf(sc, i, 1) == 0) { 275701faf54bSLuigi Rizzo m->m_pkthdr.rcvif = ifp; 275801faf54bSLuigi Rizzo m->m_pkthdr.len = m->m_len = total_len; 275901faf54bSLuigi Rizzo DC_INC(i, DC_RX_LIST_CNT); 276001faf54bSLuigi Rizzo } else 276101faf54bSLuigi Rizzo #endif 276201faf54bSLuigi Rizzo { 276301faf54bSLuigi Rizzo struct mbuf *m0; 276496f2e892SBill Paul 276501faf54bSLuigi Rizzo m0 = m_devget(mtod(m, char *), total_len, 276601faf54bSLuigi Rizzo ETHER_ALIGN, ifp, NULL); 276756e5e7aeSMaxime Henrion dc_newbuf(sc, i, 0); 276896f2e892SBill Paul DC_INC(i, DC_RX_LIST_CNT); 276996f2e892SBill Paul if (m0 == NULL) { 277096f2e892SBill Paul ifp->if_ierrors++; 277196f2e892SBill Paul continue; 277296f2e892SBill Paul } 277396f2e892SBill Paul m = m0; 277401faf54bSLuigi Rizzo } 277596f2e892SBill Paul 277696f2e892SBill Paul ifp->if_ipackets++; 27779ef8b520SSam Leffler (*ifp->if_input)(ifp, m); 277896f2e892SBill Paul } 277996f2e892SBill Paul 278096f2e892SBill Paul sc->dc_cdata.dc_rx_prod = i; 278196f2e892SBill Paul } 278296f2e892SBill Paul 278396f2e892SBill Paul /* 278496f2e892SBill Paul * A frame was downloaded to the chip. It's safe for us to clean up 278596f2e892SBill Paul * the list buffers. 278696f2e892SBill Paul */ 278796f2e892SBill Paul 2788e3d2833aSAlfred Perlstein static void 27890934f18aSMaxime Henrion dc_txeof(struct dc_softc *sc) 279096f2e892SBill Paul { 279196f2e892SBill Paul struct dc_desc *cur_tx = NULL; 279296f2e892SBill Paul struct ifnet *ifp; 279396f2e892SBill Paul int idx; 27940934f18aSMaxime Henrion u_int32_t txstat; 279596f2e892SBill Paul 279696f2e892SBill Paul ifp = &sc->arpcom.ac_if; 279796f2e892SBill Paul 279896f2e892SBill Paul /* 279996f2e892SBill Paul * Go through our tx list and free mbufs for those 280096f2e892SBill Paul * frames that have been transmitted. 280196f2e892SBill Paul */ 280256e5e7aeSMaxime Henrion bus_dmamap_sync(sc->dc_ltag, sc->dc_lmap, BUS_DMASYNC_POSTREAD); 280396f2e892SBill Paul idx = sc->dc_cdata.dc_tx_cons; 280496f2e892SBill Paul while (idx != sc->dc_cdata.dc_tx_prod) { 280596f2e892SBill Paul 280696f2e892SBill Paul cur_tx = &sc->dc_ldata->dc_tx_list[idx]; 280796f2e892SBill Paul txstat = cur_tx->dc_status; 280896f2e892SBill Paul 280996f2e892SBill Paul if (txstat & DC_TXSTAT_OWN) 281096f2e892SBill Paul break; 281196f2e892SBill Paul 281256e5e7aeSMaxime Henrion if (!(cur_tx->dc_ctl & DC_TXCTL_FIRSTFRAG) || 281396f2e892SBill Paul cur_tx->dc_ctl & DC_TXCTL_SETUP) { 281496f2e892SBill Paul if (cur_tx->dc_ctl & DC_TXCTL_SETUP) { 281596f2e892SBill Paul /* 281696f2e892SBill Paul * Yes, the PNIC is so brain damaged 281796f2e892SBill Paul * that it will sometimes generate a TX 281896f2e892SBill Paul * underrun error while DMAing the RX 281996f2e892SBill Paul * filter setup frame. If we detect this, 282096f2e892SBill Paul * we have to send the setup frame again, 282196f2e892SBill Paul * or else the filter won't be programmed 282296f2e892SBill Paul * correctly. 282396f2e892SBill Paul */ 282496f2e892SBill Paul if (DC_IS_PNIC(sc)) { 282596f2e892SBill Paul if (txstat & DC_TXSTAT_ERRSUM) 282696f2e892SBill Paul dc_setfilt(sc); 282796f2e892SBill Paul } 282896f2e892SBill Paul sc->dc_cdata.dc_tx_chain[idx] = NULL; 282996f2e892SBill Paul } 2830bcb9ef4fSLuigi Rizzo sc->dc_cdata.dc_tx_cnt--; 283196f2e892SBill Paul DC_INC(idx, DC_TX_LIST_CNT); 283296f2e892SBill Paul continue; 283396f2e892SBill Paul } 283496f2e892SBill Paul 283529a2220aSBill Paul if (DC_IS_XIRCOM(sc) || DC_IS_CONEXANT(sc)) { 2836feb78939SJonathan Chen /* 2837feb78939SJonathan Chen * XXX: Why does my Xircom taunt me so? 2838feb78939SJonathan Chen * For some reason it likes setting the CARRLOST flag 283929a2220aSBill Paul * even when the carrier is there. wtf?!? 284029a2220aSBill Paul * Who knows, but Conexant chips have the 284129a2220aSBill Paul * same problem. Maybe they took lessons 284229a2220aSBill Paul * from Xircom. 284329a2220aSBill Paul */ 2844feb78939SJonathan Chen if (/*sc->dc_type == DC_TYPE_21143 &&*/ 2845feb78939SJonathan Chen sc->dc_pmode == DC_PMODE_MII && 2846feb78939SJonathan Chen ((txstat & 0xFFFF) & ~(DC_TXSTAT_ERRSUM | 2847feb78939SJonathan Chen DC_TXSTAT_NOCARRIER))) 2848feb78939SJonathan Chen txstat &= ~DC_TXSTAT_ERRSUM; 2849feb78939SJonathan Chen } else { 285096f2e892SBill Paul if (/*sc->dc_type == DC_TYPE_21143 &&*/ 285196f2e892SBill Paul sc->dc_pmode == DC_PMODE_MII && 285296f2e892SBill Paul ((txstat & 0xFFFF) & ~(DC_TXSTAT_ERRSUM | 285396f2e892SBill Paul DC_TXSTAT_NOCARRIER | DC_TXSTAT_CARRLOST))) 285496f2e892SBill Paul txstat &= ~DC_TXSTAT_ERRSUM; 2855feb78939SJonathan Chen } 285696f2e892SBill Paul 285796f2e892SBill Paul if (txstat & DC_TXSTAT_ERRSUM) { 285896f2e892SBill Paul ifp->if_oerrors++; 285996f2e892SBill Paul if (txstat & DC_TXSTAT_EXCESSCOLL) 286096f2e892SBill Paul ifp->if_collisions++; 286196f2e892SBill Paul if (txstat & DC_TXSTAT_LATECOLL) 286296f2e892SBill Paul ifp->if_collisions++; 286396f2e892SBill Paul if (!(txstat & DC_TXSTAT_UNDERRUN)) { 286496f2e892SBill Paul dc_init(sc); 286596f2e892SBill Paul return; 286696f2e892SBill Paul } 286796f2e892SBill Paul } 286896f2e892SBill Paul 286996f2e892SBill Paul ifp->if_collisions += (txstat & DC_TXSTAT_COLLCNT) >> 3; 287096f2e892SBill Paul 287196f2e892SBill Paul ifp->if_opackets++; 287296f2e892SBill Paul if (sc->dc_cdata.dc_tx_chain[idx] != NULL) { 287356e5e7aeSMaxime Henrion bus_dmamap_sync(sc->dc_mtag, 287456e5e7aeSMaxime Henrion sc->dc_cdata.dc_tx_map[idx], 287556e5e7aeSMaxime Henrion BUS_DMASYNC_POSTWRITE); 287656e5e7aeSMaxime Henrion bus_dmamap_unload(sc->dc_mtag, 287756e5e7aeSMaxime Henrion sc->dc_cdata.dc_tx_map[idx]); 287896f2e892SBill Paul m_freem(sc->dc_cdata.dc_tx_chain[idx]); 287996f2e892SBill Paul sc->dc_cdata.dc_tx_chain[idx] = NULL; 288096f2e892SBill Paul } 288196f2e892SBill Paul 288296f2e892SBill Paul sc->dc_cdata.dc_tx_cnt--; 288396f2e892SBill Paul DC_INC(idx, DC_TX_LIST_CNT); 288496f2e892SBill Paul } 288596f2e892SBill Paul 2886bcb9ef4fSLuigi Rizzo if (idx != sc->dc_cdata.dc_tx_cons) { 28870934f18aSMaxime Henrion /* Some buffers have been freed. */ 288896f2e892SBill Paul sc->dc_cdata.dc_tx_cons = idx; 288996f2e892SBill Paul ifp->if_flags &= ~IFF_OACTIVE; 2890bcb9ef4fSLuigi Rizzo } 2891bcb9ef4fSLuigi Rizzo ifp->if_timer = (sc->dc_cdata.dc_tx_cnt == 0) ? 0 : 5; 289296f2e892SBill Paul } 289396f2e892SBill Paul 2894e3d2833aSAlfred Perlstein static void 28950934f18aSMaxime Henrion dc_tick(void *xsc) 289696f2e892SBill Paul { 289796f2e892SBill Paul struct dc_softc *sc; 289896f2e892SBill Paul struct mii_data *mii; 289996f2e892SBill Paul struct ifnet *ifp; 290096f2e892SBill Paul u_int32_t r; 290196f2e892SBill Paul 290296f2e892SBill Paul sc = xsc; 2903d1ce9105SBill Paul DC_LOCK(sc); 290496f2e892SBill Paul ifp = &sc->arpcom.ac_if; 290596f2e892SBill Paul mii = device_get_softc(sc->dc_miibus); 290696f2e892SBill Paul 290796f2e892SBill Paul if (sc->dc_flags & DC_REDUCED_MII_POLL) { 2908318b02fdSBill Paul if (sc->dc_flags & DC_21143_NWAY) { 2909318b02fdSBill Paul r = CSR_READ_4(sc, DC_10BTSTAT); 2910318b02fdSBill Paul if (IFM_SUBTYPE(mii->mii_media_active) == 2911318b02fdSBill Paul IFM_100_TX && (r & DC_TSTAT_LS100)) { 291296f2e892SBill Paul sc->dc_link = 0; 2913318b02fdSBill Paul mii_mediachg(mii); 2914318b02fdSBill Paul } 2915318b02fdSBill Paul if (IFM_SUBTYPE(mii->mii_media_active) == 2916318b02fdSBill Paul IFM_10_T && (r & DC_TSTAT_LS10)) { 2917318b02fdSBill Paul sc->dc_link = 0; 2918318b02fdSBill Paul mii_mediachg(mii); 2919318b02fdSBill Paul } 2920d675147eSBill Paul if (sc->dc_link == 0) 292196f2e892SBill Paul mii_tick(mii); 292296f2e892SBill Paul } else { 2923318b02fdSBill Paul r = CSR_READ_4(sc, DC_ISR); 292496f2e892SBill Paul if ((r & DC_ISR_RX_STATE) == DC_RXSTATE_WAIT && 2925259b8d84SMartin Blapp sc->dc_cdata.dc_tx_cnt == 0) { 292696f2e892SBill Paul mii_tick(mii); 2927042c8f6eSBill Paul if (!(mii->mii_media_status & IFM_ACTIVE)) 2928042c8f6eSBill Paul sc->dc_link = 0; 292996f2e892SBill Paul } 2930259b8d84SMartin Blapp } 293196f2e892SBill Paul } else 293296f2e892SBill Paul mii_tick(mii); 293396f2e892SBill Paul 293496f2e892SBill Paul /* 293596f2e892SBill Paul * When the init routine completes, we expect to be able to send 293696f2e892SBill Paul * packets right away, and in fact the network code will send a 293796f2e892SBill Paul * gratuitous ARP the moment the init routine marks the interface 293896f2e892SBill Paul * as running. However, even though the MAC may have been initialized, 293996f2e892SBill Paul * there may be a delay of a few seconds before the PHY completes 294096f2e892SBill Paul * autonegotiation and the link is brought up. Any transmissions 294196f2e892SBill Paul * made during that delay will be lost. Dealing with this is tricky: 294296f2e892SBill Paul * we can't just pause in the init routine while waiting for the 294396f2e892SBill Paul * PHY to come ready since that would bring the whole system to 294496f2e892SBill Paul * a screeching halt for several seconds. 294596f2e892SBill Paul * 294696f2e892SBill Paul * What we do here is prevent the TX start routine from sending 294796f2e892SBill Paul * any packets until a link has been established. After the 294896f2e892SBill Paul * interface has been initialized, the tick routine will poll 294996f2e892SBill Paul * the state of the PHY until the IFM_ACTIVE flag is set. Until 295096f2e892SBill Paul * that time, packets will stay in the send queue, and once the 295196f2e892SBill Paul * link comes up, they will be flushed out to the wire. 295296f2e892SBill Paul */ 2953cd62a9cbSJonathan Lemon if (!sc->dc_link && mii->mii_media_status & IFM_ACTIVE && 295496f2e892SBill Paul IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) { 295596f2e892SBill Paul sc->dc_link++; 295696f2e892SBill Paul if (ifp->if_snd.ifq_head != NULL) 295796f2e892SBill Paul dc_start(ifp); 295896f2e892SBill Paul } 295996f2e892SBill Paul 2960318b02fdSBill Paul if (sc->dc_flags & DC_21143_NWAY && !sc->dc_link) 2961b50c6312SJonathan Lemon callout_reset(&sc->dc_stat_ch, hz/10, dc_tick, sc); 2962318b02fdSBill Paul else 2963b50c6312SJonathan Lemon callout_reset(&sc->dc_stat_ch, hz, dc_tick, sc); 296496f2e892SBill Paul 2965d1ce9105SBill Paul DC_UNLOCK(sc); 296696f2e892SBill Paul } 296796f2e892SBill Paul 2968d467c136SBill Paul /* 2969d467c136SBill Paul * A transmit underrun has occurred. Back off the transmit threshold, 2970d467c136SBill Paul * or switch to store and forward mode if we have to. 2971d467c136SBill Paul */ 2972e3d2833aSAlfred Perlstein static void 29730934f18aSMaxime Henrion dc_tx_underrun(struct dc_softc *sc) 2974d467c136SBill Paul { 2975d467c136SBill Paul u_int32_t isr; 2976d467c136SBill Paul int i; 2977d467c136SBill Paul 2978d467c136SBill Paul if (DC_IS_DAVICOM(sc)) 2979d467c136SBill Paul dc_init(sc); 2980d467c136SBill Paul 2981d467c136SBill Paul if (DC_IS_INTEL(sc)) { 2982d467c136SBill Paul /* 2983d467c136SBill Paul * The real 21143 requires that the transmitter be idle 2984d467c136SBill Paul * in order to change the transmit threshold or store 2985d467c136SBill Paul * and forward state. 2986d467c136SBill Paul */ 2987d467c136SBill Paul DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_TX_ON); 2988d467c136SBill Paul 2989d467c136SBill Paul for (i = 0; i < DC_TIMEOUT; i++) { 2990d467c136SBill Paul isr = CSR_READ_4(sc, DC_ISR); 2991d467c136SBill Paul if (isr & DC_ISR_TX_IDLE) 2992d467c136SBill Paul break; 2993d467c136SBill Paul DELAY(10); 2994d467c136SBill Paul } 2995d467c136SBill Paul if (i == DC_TIMEOUT) { 2996d467c136SBill Paul printf("dc%d: failed to force tx to idle state\n", 2997d467c136SBill Paul sc->dc_unit); 2998d467c136SBill Paul dc_init(sc); 2999d467c136SBill Paul } 3000d467c136SBill Paul } 3001d467c136SBill Paul 3002d467c136SBill Paul printf("dc%d: TX underrun -- ", sc->dc_unit); 3003d467c136SBill Paul sc->dc_txthresh += DC_TXTHRESH_INC; 3004d467c136SBill Paul if (sc->dc_txthresh > DC_TXTHRESH_MAX) { 3005d467c136SBill Paul printf("using store and forward mode\n"); 3006d467c136SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_STORENFWD); 3007d467c136SBill Paul } else { 3008d467c136SBill Paul printf("increasing TX threshold\n"); 3009d467c136SBill Paul DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_TX_THRESH); 3010d467c136SBill Paul DC_SETBIT(sc, DC_NETCFG, sc->dc_txthresh); 3011d467c136SBill Paul } 3012d467c136SBill Paul 3013d467c136SBill Paul if (DC_IS_INTEL(sc)) 3014d467c136SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_TX_ON); 3015d467c136SBill Paul } 3016d467c136SBill Paul 3017e4fc250cSLuigi Rizzo #ifdef DEVICE_POLLING 3018e4fc250cSLuigi Rizzo static poll_handler_t dc_poll; 3019e4fc250cSLuigi Rizzo 3020e4fc250cSLuigi Rizzo static void 3021e4fc250cSLuigi Rizzo dc_poll(struct ifnet *ifp, enum poll_cmd cmd, int count) 3022e4fc250cSLuigi Rizzo { 3023e4fc250cSLuigi Rizzo struct dc_softc *sc = ifp->if_softc; 3024e4fc250cSLuigi Rizzo 3025e4fc250cSLuigi Rizzo if (cmd == POLL_DEREGISTER) { /* final call, enable interrupts */ 3026e4fc250cSLuigi Rizzo /* Re-enable interrupts. */ 3027e4fc250cSLuigi Rizzo CSR_WRITE_4(sc, DC_IMR, DC_INTRS); 3028e4fc250cSLuigi Rizzo return; 3029e4fc250cSLuigi Rizzo } 3030e4fc250cSLuigi Rizzo sc->rxcycles = count; 3031e4fc250cSLuigi Rizzo dc_rxeof(sc); 3032e4fc250cSLuigi Rizzo dc_txeof(sc); 3033e4fc250cSLuigi Rizzo if (ifp->if_snd.ifq_head != NULL && !(ifp->if_flags & IFF_OACTIVE)) 3034e4fc250cSLuigi Rizzo dc_start(ifp); 3035e4fc250cSLuigi Rizzo 3036e4fc250cSLuigi Rizzo if (cmd == POLL_AND_CHECK_STATUS) { /* also check status register */ 3037e4fc250cSLuigi Rizzo u_int32_t status; 3038e4fc250cSLuigi Rizzo 3039e4fc250cSLuigi Rizzo status = CSR_READ_4(sc, DC_ISR); 3040e4fc250cSLuigi Rizzo status &= (DC_ISR_RX_WATDOGTIMEO | DC_ISR_RX_NOBUF | 3041e4fc250cSLuigi Rizzo DC_ISR_TX_NOBUF | DC_ISR_TX_IDLE | DC_ISR_TX_UNDERRUN | 3042e4fc250cSLuigi Rizzo DC_ISR_BUS_ERR); 3043e4fc250cSLuigi Rizzo if (!status) 3044e4fc250cSLuigi Rizzo return; 3045e4fc250cSLuigi Rizzo /* ack what we have */ 3046e4fc250cSLuigi Rizzo CSR_WRITE_4(sc, DC_ISR, status); 3047e4fc250cSLuigi Rizzo 3048e4fc250cSLuigi Rizzo if (status & (DC_ISR_RX_WATDOGTIMEO | DC_ISR_RX_NOBUF)) { 3049e4fc250cSLuigi Rizzo u_int32_t r = CSR_READ_4(sc, DC_FRAMESDISCARDED); 3050e4fc250cSLuigi Rizzo ifp->if_ierrors += (r & 0xffff) + ((r >> 17) & 0x7ff); 3051e4fc250cSLuigi Rizzo 3052e4fc250cSLuigi Rizzo if (dc_rx_resync(sc)) 3053e4fc250cSLuigi Rizzo dc_rxeof(sc); 3054e4fc250cSLuigi Rizzo } 3055e4fc250cSLuigi Rizzo /* restart transmit unit if necessary */ 3056e4fc250cSLuigi Rizzo if (status & DC_ISR_TX_IDLE && sc->dc_cdata.dc_tx_cnt) 3057e4fc250cSLuigi Rizzo CSR_WRITE_4(sc, DC_TXSTART, 0xFFFFFFFF); 3058e4fc250cSLuigi Rizzo 3059e4fc250cSLuigi Rizzo if (status & DC_ISR_TX_UNDERRUN) 3060e4fc250cSLuigi Rizzo dc_tx_underrun(sc); 3061e4fc250cSLuigi Rizzo 3062e4fc250cSLuigi Rizzo if (status & DC_ISR_BUS_ERR) { 3063e4fc250cSLuigi Rizzo printf("dc_poll: dc%d bus error\n", sc->dc_unit); 3064e4fc250cSLuigi Rizzo dc_reset(sc); 3065e4fc250cSLuigi Rizzo dc_init(sc); 3066e4fc250cSLuigi Rizzo } 3067e4fc250cSLuigi Rizzo } 3068e4fc250cSLuigi Rizzo } 3069e4fc250cSLuigi Rizzo #endif /* DEVICE_POLLING */ 3070e4fc250cSLuigi Rizzo 3071e3d2833aSAlfred Perlstein static void 30720934f18aSMaxime Henrion dc_intr(void *arg) 307396f2e892SBill Paul { 307496f2e892SBill Paul struct dc_softc *sc; 307596f2e892SBill Paul struct ifnet *ifp; 307696f2e892SBill Paul u_int32_t status; 307796f2e892SBill Paul 307896f2e892SBill Paul sc = arg; 3079d2a1864bSWarner Losh 30800934f18aSMaxime Henrion if (sc->suspended) 3081e8388e14SMitsuru IWASAKI return; 3082e8388e14SMitsuru IWASAKI 3083d2a1864bSWarner Losh if ((CSR_READ_4(sc, DC_ISR) & DC_INTRS) == 0) 3084d2a1864bSWarner Losh return; 3085d2a1864bSWarner Losh 3086d1ce9105SBill Paul DC_LOCK(sc); 308796f2e892SBill Paul ifp = &sc->arpcom.ac_if; 3088e4fc250cSLuigi Rizzo #ifdef DEVICE_POLLING 308962f76486SMaxim Sobolev if (ifp->if_flags & IFF_POLLING) 3090e4fc250cSLuigi Rizzo goto done; 3091e4fc250cSLuigi Rizzo if (ether_poll_register(dc_poll, ifp)) { /* ok, disable interrupts */ 3092e4fc250cSLuigi Rizzo CSR_WRITE_4(sc, DC_IMR, 0x00000000); 3093e4fc250cSLuigi Rizzo goto done; 3094e4fc250cSLuigi Rizzo } 30950934f18aSMaxime Henrion #endif 309696f2e892SBill Paul 3097d88a358cSLuigi Rizzo /* Suppress unwanted interrupts */ 309896f2e892SBill Paul if (!(ifp->if_flags & IFF_UP)) { 309996f2e892SBill Paul if (CSR_READ_4(sc, DC_ISR) & DC_INTRS) 310096f2e892SBill Paul dc_stop(sc); 3101d1ce9105SBill Paul DC_UNLOCK(sc); 310296f2e892SBill Paul return; 310396f2e892SBill Paul } 310496f2e892SBill Paul 310596f2e892SBill Paul /* Disable interrupts. */ 310696f2e892SBill Paul CSR_WRITE_4(sc, DC_IMR, 0x00000000); 310796f2e892SBill Paul 3108feb78939SJonathan Chen while (((status = CSR_READ_4(sc, DC_ISR)) & DC_INTRS) 3109feb78939SJonathan Chen && status != 0xFFFFFFFF) { 311096f2e892SBill Paul 311196f2e892SBill Paul CSR_WRITE_4(sc, DC_ISR, status); 311296f2e892SBill Paul 311373bf949cSBill Paul if (status & DC_ISR_RX_OK) { 311473bf949cSBill Paul int curpkts; 311573bf949cSBill Paul curpkts = ifp->if_ipackets; 311696f2e892SBill Paul dc_rxeof(sc); 311773bf949cSBill Paul if (curpkts == ifp->if_ipackets) { 311873bf949cSBill Paul while (dc_rx_resync(sc)) 311973bf949cSBill Paul dc_rxeof(sc); 312073bf949cSBill Paul } 312173bf949cSBill Paul } 312296f2e892SBill Paul 312396f2e892SBill Paul if (status & (DC_ISR_TX_OK | DC_ISR_TX_NOBUF)) 312496f2e892SBill Paul dc_txeof(sc); 312596f2e892SBill Paul 312696f2e892SBill Paul if (status & DC_ISR_TX_IDLE) { 312796f2e892SBill Paul dc_txeof(sc); 312896f2e892SBill Paul if (sc->dc_cdata.dc_tx_cnt) { 312996f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_TX_ON); 313096f2e892SBill Paul CSR_WRITE_4(sc, DC_TXSTART, 0xFFFFFFFF); 313196f2e892SBill Paul } 313296f2e892SBill Paul } 313396f2e892SBill Paul 3134d467c136SBill Paul if (status & DC_ISR_TX_UNDERRUN) 3135d467c136SBill Paul dc_tx_underrun(sc); 313696f2e892SBill Paul 313796f2e892SBill Paul if ((status & DC_ISR_RX_WATDOGTIMEO) 313873bf949cSBill Paul || (status & DC_ISR_RX_NOBUF)) { 313973bf949cSBill Paul int curpkts; 314073bf949cSBill Paul curpkts = ifp->if_ipackets; 314196f2e892SBill Paul dc_rxeof(sc); 314273bf949cSBill Paul if (curpkts == ifp->if_ipackets) { 314373bf949cSBill Paul while (dc_rx_resync(sc)) 314473bf949cSBill Paul dc_rxeof(sc); 314573bf949cSBill Paul } 314673bf949cSBill Paul } 314796f2e892SBill Paul 314896f2e892SBill Paul if (status & DC_ISR_BUS_ERR) { 314996f2e892SBill Paul dc_reset(sc); 315096f2e892SBill Paul dc_init(sc); 315196f2e892SBill Paul } 315296f2e892SBill Paul } 315396f2e892SBill Paul 315496f2e892SBill Paul /* Re-enable interrupts. */ 315596f2e892SBill Paul CSR_WRITE_4(sc, DC_IMR, DC_INTRS); 315696f2e892SBill Paul 315796f2e892SBill Paul if (ifp->if_snd.ifq_head != NULL) 315896f2e892SBill Paul dc_start(ifp); 315996f2e892SBill Paul 3160d9700bb5SBill Paul #ifdef DEVICE_POLLING 3161e4fc250cSLuigi Rizzo done: 31620934f18aSMaxime Henrion #endif 3163d9700bb5SBill Paul 3164d1ce9105SBill Paul DC_UNLOCK(sc); 316596f2e892SBill Paul } 316696f2e892SBill Paul 316756e5e7aeSMaxime Henrion static void 316856e5e7aeSMaxime Henrion dc_dma_map_txbuf(arg, segs, nseg, mapsize, error) 316956e5e7aeSMaxime Henrion void *arg; 317056e5e7aeSMaxime Henrion bus_dma_segment_t *segs; 317156e5e7aeSMaxime Henrion int nseg; 317256e5e7aeSMaxime Henrion bus_size_t mapsize; 317356e5e7aeSMaxime Henrion int error; 317456e5e7aeSMaxime Henrion { 317556e5e7aeSMaxime Henrion struct dc_softc *sc; 317656e5e7aeSMaxime Henrion struct dc_desc *f; 317756e5e7aeSMaxime Henrion int cur, first, frag, i; 317856e5e7aeSMaxime Henrion 317956e5e7aeSMaxime Henrion sc = arg; 318056e5e7aeSMaxime Henrion if (error) { 318156e5e7aeSMaxime Henrion sc->dc_cdata.dc_tx_err = error; 318256e5e7aeSMaxime Henrion return; 318356e5e7aeSMaxime Henrion } 318456e5e7aeSMaxime Henrion 318556e5e7aeSMaxime Henrion first = cur = frag = sc->dc_cdata.dc_tx_prod; 318656e5e7aeSMaxime Henrion for (i = 0; i < nseg; i++) { 318756e5e7aeSMaxime Henrion if ((sc->dc_flags & DC_TX_ADMTEK_WAR) && 318856e5e7aeSMaxime Henrion (frag == (DC_TX_LIST_CNT - 1)) && 318956e5e7aeSMaxime Henrion (first != sc->dc_cdata.dc_tx_first)) { 319056e5e7aeSMaxime Henrion bus_dmamap_unload(sc->dc_mtag, 319156e5e7aeSMaxime Henrion sc->dc_cdata.dc_tx_map[first]); 319256e5e7aeSMaxime Henrion sc->dc_cdata.dc_tx_err = ENOBUFS; 319356e5e7aeSMaxime Henrion return; 319456e5e7aeSMaxime Henrion } 319556e5e7aeSMaxime Henrion 319656e5e7aeSMaxime Henrion f = &sc->dc_ldata->dc_tx_list[frag]; 319756e5e7aeSMaxime Henrion f->dc_ctl = DC_TXCTL_TLINK | segs[i].ds_len; 319856e5e7aeSMaxime Henrion if (i == 0) { 319956e5e7aeSMaxime Henrion f->dc_status = 0; 320056e5e7aeSMaxime Henrion f->dc_ctl |= DC_TXCTL_FIRSTFRAG; 320156e5e7aeSMaxime Henrion } else 320256e5e7aeSMaxime Henrion f->dc_status = DC_TXSTAT_OWN; 320356e5e7aeSMaxime Henrion f->dc_data = segs[i].ds_addr; 320456e5e7aeSMaxime Henrion cur = frag; 320556e5e7aeSMaxime Henrion DC_INC(frag, DC_TX_LIST_CNT); 320656e5e7aeSMaxime Henrion } 320756e5e7aeSMaxime Henrion 320856e5e7aeSMaxime Henrion sc->dc_cdata.dc_tx_err = 0; 320956e5e7aeSMaxime Henrion sc->dc_cdata.dc_tx_prod = frag; 321056e5e7aeSMaxime Henrion sc->dc_cdata.dc_tx_cnt += nseg; 321156e5e7aeSMaxime Henrion sc->dc_ldata->dc_tx_list[cur].dc_ctl |= DC_TXCTL_LASTFRAG; 321256e5e7aeSMaxime Henrion if (sc->dc_flags & DC_TX_INTR_FIRSTFRAG) 321356e5e7aeSMaxime Henrion sc->dc_ldata->dc_tx_list[first].dc_ctl |= DC_TXCTL_FINT; 321456e5e7aeSMaxime Henrion if (sc->dc_flags & DC_TX_INTR_ALWAYS) 321556e5e7aeSMaxime Henrion sc->dc_ldata->dc_tx_list[cur].dc_ctl |= DC_TXCTL_FINT; 321656e5e7aeSMaxime Henrion if (sc->dc_flags & DC_TX_USE_TX_INTR && sc->dc_cdata.dc_tx_cnt > 64) 321756e5e7aeSMaxime Henrion sc->dc_ldata->dc_tx_list[cur].dc_ctl |= DC_TXCTL_FINT; 321856e5e7aeSMaxime Henrion sc->dc_ldata->dc_tx_list[first].dc_status = DC_TXSTAT_OWN; 321956e5e7aeSMaxime Henrion } 322056e5e7aeSMaxime Henrion 322196f2e892SBill Paul /* 322296f2e892SBill Paul * Encapsulate an mbuf chain in a descriptor by coupling the mbuf data 322396f2e892SBill Paul * pointers to the fragment pointers. 322496f2e892SBill Paul */ 3225e3d2833aSAlfred Perlstein static int 322656e5e7aeSMaxime Henrion dc_encap(struct dc_softc *sc, struct mbuf *m_head) 322796f2e892SBill Paul { 322896f2e892SBill Paul struct mbuf *m; 322956e5e7aeSMaxime Henrion int error, idx, chainlen = 0; 3230cda97c50SMike Silbersack 3231cda97c50SMike Silbersack /* 3232cda97c50SMike Silbersack * If there's no way we can send any packets, return now. 3233cda97c50SMike Silbersack */ 3234cda97c50SMike Silbersack if (DC_TX_LIST_CNT - sc->dc_cdata.dc_tx_cnt < 6) 3235cda97c50SMike Silbersack return (ENOBUFS); 3236cda97c50SMike Silbersack 3237cda97c50SMike Silbersack /* 3238cda97c50SMike Silbersack * Count the number of frags in this chain to see if 3239cda97c50SMike Silbersack * we need to m_defrag. Since the descriptor list is shared 3240cda97c50SMike Silbersack * by all packets, we'll m_defrag long chains so that they 3241cda97c50SMike Silbersack * do not use up the entire list, even if they would fit. 3242cda97c50SMike Silbersack */ 3243cda97c50SMike Silbersack for (m = m_head; m != NULL; m = m->m_next) 3244cda97c50SMike Silbersack chainlen++; 3245cda97c50SMike Silbersack 3246cda97c50SMike Silbersack if ((chainlen > DC_TX_LIST_CNT / 4) || 3247cda97c50SMike Silbersack ((DC_TX_LIST_CNT - (chainlen + sc->dc_cdata.dc_tx_cnt)) < 6)) { 3248cda97c50SMike Silbersack m = m_defrag(m_head, M_DONTWAIT); 3249cda97c50SMike Silbersack if (m == NULL) 3250cda97c50SMike Silbersack return (ENOBUFS); 3251cda97c50SMike Silbersack m_head = m; 3252cda97c50SMike Silbersack } 325396f2e892SBill Paul 325496f2e892SBill Paul /* 325596f2e892SBill Paul * Start packing the mbufs in this chain into 325696f2e892SBill Paul * the fragment pointers. Stop when we run out 325796f2e892SBill Paul * of fragments or hit the end of the mbuf chain. 325896f2e892SBill Paul */ 325956e5e7aeSMaxime Henrion idx = sc->dc_cdata.dc_tx_prod; 326056e5e7aeSMaxime Henrion error = bus_dmamap_load_mbuf(sc->dc_mtag, sc->dc_cdata.dc_tx_map[idx], 326156e5e7aeSMaxime Henrion m_head, dc_dma_map_txbuf, sc, 0); 326256e5e7aeSMaxime Henrion if (error) 326356e5e7aeSMaxime Henrion return (error); 326456e5e7aeSMaxime Henrion if (sc->dc_cdata.dc_tx_err != 0) 326556e5e7aeSMaxime Henrion return (sc->dc_cdata.dc_tx_err); 326656e5e7aeSMaxime Henrion sc->dc_cdata.dc_tx_chain[idx] = m_head; 326756e5e7aeSMaxime Henrion bus_dmamap_sync(sc->dc_mtag, sc->dc_cdata.dc_tx_map[idx], 326856e5e7aeSMaxime Henrion BUS_DMASYNC_PREWRITE); 326956e5e7aeSMaxime Henrion bus_dmamap_sync(sc->dc_ltag, sc->dc_lmap, 327056e5e7aeSMaxime Henrion BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 327196f2e892SBill Paul return (0); 327296f2e892SBill Paul } 327396f2e892SBill Paul 327496f2e892SBill Paul /* 327596f2e892SBill Paul * Main transmit routine. To avoid having to do mbuf copies, we put pointers 327696f2e892SBill Paul * to the mbuf data regions directly in the transmit lists. We also save a 327796f2e892SBill Paul * copy of the pointers since the transmit list fragment pointers are 327896f2e892SBill Paul * physical addresses. 327996f2e892SBill Paul */ 328096f2e892SBill Paul 3281e3d2833aSAlfred Perlstein static void 32820934f18aSMaxime Henrion dc_start(struct ifnet *ifp) 328396f2e892SBill Paul { 328496f2e892SBill Paul struct dc_softc *sc; 3285cda97c50SMike Silbersack struct mbuf *m_head = NULL, *m; 328696f2e892SBill Paul int idx; 328796f2e892SBill Paul 328896f2e892SBill Paul sc = ifp->if_softc; 328996f2e892SBill Paul 3290d1ce9105SBill Paul DC_LOCK(sc); 329196f2e892SBill Paul 3292e7be9f9aSBill Paul if (!sc->dc_link && ifp->if_snd.ifq_len < 10) { 3293d1ce9105SBill Paul DC_UNLOCK(sc); 329496f2e892SBill Paul return; 3295d1ce9105SBill Paul } 3296d1ce9105SBill Paul 3297d1ce9105SBill Paul if (ifp->if_flags & IFF_OACTIVE) { 3298d1ce9105SBill Paul DC_UNLOCK(sc); 3299d1ce9105SBill Paul return; 3300d1ce9105SBill Paul } 330196f2e892SBill Paul 330256e5e7aeSMaxime Henrion idx = sc->dc_cdata.dc_tx_first = sc->dc_cdata.dc_tx_prod; 330396f2e892SBill Paul 330496f2e892SBill Paul while (sc->dc_cdata.dc_tx_chain[idx] == NULL) { 330596f2e892SBill Paul IF_DEQUEUE(&ifp->if_snd, m_head); 330696f2e892SBill Paul if (m_head == NULL) 330796f2e892SBill Paul break; 330896f2e892SBill Paul 33092dfc960aSLuigi Rizzo if (sc->dc_flags & DC_TX_COALESCE && 33102dfc960aSLuigi Rizzo (m_head->m_next != NULL || 33112dfc960aSLuigi Rizzo sc->dc_flags & DC_TX_ALIGN)) { 3312cda97c50SMike Silbersack m = m_defrag(m_head, M_DONTWAIT); 3313cda97c50SMike Silbersack if (m == NULL) { 3314fda39fd0SBill Paul IF_PREPEND(&ifp->if_snd, m_head); 3315fda39fd0SBill Paul ifp->if_flags |= IFF_OACTIVE; 3316fda39fd0SBill Paul break; 3317cda97c50SMike Silbersack } else { 3318cda97c50SMike Silbersack m_head = m; 3319fda39fd0SBill Paul } 3320fda39fd0SBill Paul } 3321fda39fd0SBill Paul 332256e5e7aeSMaxime Henrion if (dc_encap(sc, m_head)) { 332396f2e892SBill Paul IF_PREPEND(&ifp->if_snd, m_head); 332496f2e892SBill Paul ifp->if_flags |= IFF_OACTIVE; 332596f2e892SBill Paul break; 332696f2e892SBill Paul } 332756e5e7aeSMaxime Henrion idx = sc->dc_cdata.dc_tx_prod; 332896f2e892SBill Paul 332996f2e892SBill Paul /* 333096f2e892SBill Paul * If there's a BPF listener, bounce a copy of this frame 333196f2e892SBill Paul * to him. 333296f2e892SBill Paul */ 33339ef8b520SSam Leffler BPF_MTAP(ifp, m_head); 33345c1cfac4SBill Paul 33355c1cfac4SBill Paul if (sc->dc_flags & DC_TX_ONE) { 33365c1cfac4SBill Paul ifp->if_flags |= IFF_OACTIVE; 33375c1cfac4SBill Paul break; 33385c1cfac4SBill Paul } 333996f2e892SBill Paul } 334096f2e892SBill Paul 334196f2e892SBill Paul /* Transmit */ 334296f2e892SBill Paul if (!(sc->dc_flags & DC_TX_POLL)) 334396f2e892SBill Paul CSR_WRITE_4(sc, DC_TXSTART, 0xFFFFFFFF); 334496f2e892SBill Paul 334596f2e892SBill Paul /* 334696f2e892SBill Paul * Set a timeout in case the chip goes out to lunch. 334796f2e892SBill Paul */ 334896f2e892SBill Paul ifp->if_timer = 5; 334996f2e892SBill Paul 3350d1ce9105SBill Paul DC_UNLOCK(sc); 335196f2e892SBill Paul } 335296f2e892SBill Paul 3353e3d2833aSAlfred Perlstein static void 33540934f18aSMaxime Henrion dc_init(void *xsc) 335596f2e892SBill Paul { 335696f2e892SBill Paul struct dc_softc *sc = xsc; 335796f2e892SBill Paul struct ifnet *ifp = &sc->arpcom.ac_if; 335896f2e892SBill Paul struct mii_data *mii; 335996f2e892SBill Paul 3360d1ce9105SBill Paul DC_LOCK(sc); 336196f2e892SBill Paul 336296f2e892SBill Paul mii = device_get_softc(sc->dc_miibus); 336396f2e892SBill Paul 336496f2e892SBill Paul /* 336596f2e892SBill Paul * Cancel pending I/O and free all RX/TX buffers. 336696f2e892SBill Paul */ 336796f2e892SBill Paul dc_stop(sc); 336896f2e892SBill Paul dc_reset(sc); 336996f2e892SBill Paul 337096f2e892SBill Paul /* 337196f2e892SBill Paul * Set cache alignment and burst length. 337296f2e892SBill Paul */ 337388d739dcSBill Paul if (DC_IS_ASIX(sc) || DC_IS_DAVICOM(sc)) 337496f2e892SBill Paul CSR_WRITE_4(sc, DC_BUSCTL, 0); 337596f2e892SBill Paul else 337696f2e892SBill Paul CSR_WRITE_4(sc, DC_BUSCTL, DC_BUSCTL_MRME | DC_BUSCTL_MRLE); 3377935fe010SLuigi Rizzo /* 3378935fe010SLuigi Rizzo * Evenly share the bus between receive and transmit process. 3379935fe010SLuigi Rizzo */ 3380935fe010SLuigi Rizzo if (DC_IS_INTEL(sc)) 3381935fe010SLuigi Rizzo DC_SETBIT(sc, DC_BUSCTL, DC_BUSCTL_ARBITRATION); 338296f2e892SBill Paul if (DC_IS_DAVICOM(sc) || DC_IS_INTEL(sc)) { 338396f2e892SBill Paul DC_SETBIT(sc, DC_BUSCTL, DC_BURSTLEN_USECA); 338496f2e892SBill Paul } else { 338596f2e892SBill Paul DC_SETBIT(sc, DC_BUSCTL, DC_BURSTLEN_16LONG); 338696f2e892SBill Paul } 338796f2e892SBill Paul if (sc->dc_flags & DC_TX_POLL) 338896f2e892SBill Paul DC_SETBIT(sc, DC_BUSCTL, DC_TXPOLL_1); 338996f2e892SBill Paul switch(sc->dc_cachesize) { 339096f2e892SBill Paul case 32: 339196f2e892SBill Paul DC_SETBIT(sc, DC_BUSCTL, DC_CACHEALIGN_32LONG); 339296f2e892SBill Paul break; 339396f2e892SBill Paul case 16: 339496f2e892SBill Paul DC_SETBIT(sc, DC_BUSCTL, DC_CACHEALIGN_16LONG); 339596f2e892SBill Paul break; 339696f2e892SBill Paul case 8: 339796f2e892SBill Paul DC_SETBIT(sc, DC_BUSCTL, DC_CACHEALIGN_8LONG); 339896f2e892SBill Paul break; 339996f2e892SBill Paul case 0: 340096f2e892SBill Paul default: 340196f2e892SBill Paul DC_SETBIT(sc, DC_BUSCTL, DC_CACHEALIGN_NONE); 340296f2e892SBill Paul break; 340396f2e892SBill Paul } 340496f2e892SBill Paul 340596f2e892SBill Paul if (sc->dc_flags & DC_TX_STORENFWD) 340696f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_STORENFWD); 340796f2e892SBill Paul else { 3408d467c136SBill Paul if (sc->dc_txthresh > DC_TXTHRESH_MAX) { 340996f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_STORENFWD); 341096f2e892SBill Paul } else { 341196f2e892SBill Paul DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_STORENFWD); 341296f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, sc->dc_txthresh); 341396f2e892SBill Paul } 341496f2e892SBill Paul } 341596f2e892SBill Paul 341696f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_NO_RXCRC); 341796f2e892SBill Paul DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_TX_BACKOFF); 341896f2e892SBill Paul 341996f2e892SBill Paul if (DC_IS_MACRONIX(sc) || DC_IS_PNICII(sc)) { 342096f2e892SBill Paul /* 342196f2e892SBill Paul * The app notes for the 98713 and 98715A say that 342296f2e892SBill Paul * in order to have the chips operate properly, a magic 342396f2e892SBill Paul * number must be written to CSR16. Macronix does not 342496f2e892SBill Paul * document the meaning of these bits so there's no way 342596f2e892SBill Paul * to know exactly what they do. The 98713 has a magic 342696f2e892SBill Paul * number all its own; the rest all use a different one. 342796f2e892SBill Paul */ 342896f2e892SBill Paul DC_CLRBIT(sc, DC_MX_MAGICPACKET, 0xFFFF0000); 342996f2e892SBill Paul if (sc->dc_type == DC_TYPE_98713) 343096f2e892SBill Paul DC_SETBIT(sc, DC_MX_MAGICPACKET, DC_MX_MAGIC_98713); 343196f2e892SBill Paul else 343296f2e892SBill Paul DC_SETBIT(sc, DC_MX_MAGICPACKET, DC_MX_MAGIC_98715); 343396f2e892SBill Paul } 343496f2e892SBill Paul 3435feb78939SJonathan Chen if (DC_IS_XIRCOM(sc)) { 3436feb78939SJonathan Chen /* 3437feb78939SJonathan Chen * setup General Purpose Port mode and data so the tulip 3438feb78939SJonathan Chen * can talk to the MII. 3439feb78939SJonathan Chen */ 3440feb78939SJonathan Chen CSR_WRITE_4(sc, DC_SIAGP, DC_SIAGP_WRITE_EN | DC_SIAGP_INT1_EN | 3441feb78939SJonathan Chen DC_SIAGP_MD_GP2_OUTPUT | DC_SIAGP_MD_GP0_OUTPUT); 3442feb78939SJonathan Chen DELAY(10); 3443feb78939SJonathan Chen CSR_WRITE_4(sc, DC_SIAGP, DC_SIAGP_INT1_EN | 3444feb78939SJonathan Chen DC_SIAGP_MD_GP2_OUTPUT | DC_SIAGP_MD_GP0_OUTPUT); 3445feb78939SJonathan Chen DELAY(10); 3446feb78939SJonathan Chen } 3447feb78939SJonathan Chen 344896f2e892SBill Paul DC_CLRBIT(sc, DC_NETCFG, DC_NETCFG_TX_THRESH); 3449d467c136SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_TXTHRESH_MIN); 345096f2e892SBill Paul 345196f2e892SBill Paul /* Init circular RX list. */ 345296f2e892SBill Paul if (dc_list_rx_init(sc) == ENOBUFS) { 345396f2e892SBill Paul printf("dc%d: initialization failed: no " 345496f2e892SBill Paul "memory for rx buffers\n", sc->dc_unit); 345596f2e892SBill Paul dc_stop(sc); 3456d1ce9105SBill Paul DC_UNLOCK(sc); 345796f2e892SBill Paul return; 345896f2e892SBill Paul } 345996f2e892SBill Paul 346096f2e892SBill Paul /* 346156e5e7aeSMaxime Henrion * Init TX descriptors. 346296f2e892SBill Paul */ 346396f2e892SBill Paul dc_list_tx_init(sc); 346496f2e892SBill Paul 346596f2e892SBill Paul /* 346696f2e892SBill Paul * Load the address of the RX list. 346796f2e892SBill Paul */ 346856e5e7aeSMaxime Henrion CSR_WRITE_4(sc, DC_RXADDR, DC_RXDESC(sc, 0)); 346956e5e7aeSMaxime Henrion CSR_WRITE_4(sc, DC_TXADDR, DC_TXDESC(sc, 0)); 347096f2e892SBill Paul 347196f2e892SBill Paul /* 347296f2e892SBill Paul * Enable interrupts. 347396f2e892SBill Paul */ 3474e4fc250cSLuigi Rizzo #ifdef DEVICE_POLLING 3475e4fc250cSLuigi Rizzo /* 3476e4fc250cSLuigi Rizzo * ... but only if we are not polling, and make sure they are off in 3477e4fc250cSLuigi Rizzo * the case of polling. Some cards (e.g. fxp) turn interrupts on 3478e4fc250cSLuigi Rizzo * after a reset. 3479e4fc250cSLuigi Rizzo */ 348062f76486SMaxim Sobolev if (ifp->if_flags & IFF_POLLING) 3481e4fc250cSLuigi Rizzo CSR_WRITE_4(sc, DC_IMR, 0x00000000); 3482e4fc250cSLuigi Rizzo else 3483e4fc250cSLuigi Rizzo #endif 348496f2e892SBill Paul CSR_WRITE_4(sc, DC_IMR, DC_INTRS); 348596f2e892SBill Paul CSR_WRITE_4(sc, DC_ISR, 0xFFFFFFFF); 348696f2e892SBill Paul 348796f2e892SBill Paul /* Enable transmitter. */ 348896f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_TX_ON); 348996f2e892SBill Paul 349096f2e892SBill Paul /* 3491918434c8SBill Paul * If this is an Intel 21143 and we're not using the 3492918434c8SBill Paul * MII port, program the LED control pins so we get 3493918434c8SBill Paul * link and activity indications. 3494918434c8SBill Paul */ 349578999dd1SBill Paul if (sc->dc_flags & DC_TULIP_LEDS) { 3496918434c8SBill Paul CSR_WRITE_4(sc, DC_WATCHDOG, 3497918434c8SBill Paul DC_WDOG_CTLWREN | DC_WDOG_LINK | DC_WDOG_ACTIVITY); 349878999dd1SBill Paul CSR_WRITE_4(sc, DC_WATCHDOG, 0); 3499918434c8SBill Paul } 3500918434c8SBill Paul 3501918434c8SBill Paul /* 350296f2e892SBill Paul * Load the RX/multicast filter. We do this sort of late 350396f2e892SBill Paul * because the filter programming scheme on the 21143 and 350496f2e892SBill Paul * some clones requires DMAing a setup frame via the TX 350596f2e892SBill Paul * engine, and we need the transmitter enabled for that. 350696f2e892SBill Paul */ 350796f2e892SBill Paul dc_setfilt(sc); 350896f2e892SBill Paul 350996f2e892SBill Paul /* Enable receiver. */ 351096f2e892SBill Paul DC_SETBIT(sc, DC_NETCFG, DC_NETCFG_RX_ON); 351196f2e892SBill Paul CSR_WRITE_4(sc, DC_RXSTART, 0xFFFFFFFF); 351296f2e892SBill Paul 351396f2e892SBill Paul mii_mediachg(mii); 351496f2e892SBill Paul dc_setcfg(sc, sc->dc_if_media); 351596f2e892SBill Paul 351696f2e892SBill Paul ifp->if_flags |= IFF_RUNNING; 351796f2e892SBill Paul ifp->if_flags &= ~IFF_OACTIVE; 351896f2e892SBill Paul 3519857fd445SBill Paul /* Don't start the ticker if this is a homePNA link. */ 352045521525SPoul-Henning Kamp if (IFM_SUBTYPE(mii->mii_media.ifm_media) == IFM_HPNA_1) 3521857fd445SBill Paul sc->dc_link = 1; 3522857fd445SBill Paul else { 3523318b02fdSBill Paul if (sc->dc_flags & DC_21143_NWAY) 3524b50c6312SJonathan Lemon callout_reset(&sc->dc_stat_ch, hz/10, dc_tick, sc); 3525318b02fdSBill Paul else 3526b50c6312SJonathan Lemon callout_reset(&sc->dc_stat_ch, hz, dc_tick, sc); 3527857fd445SBill Paul } 352896f2e892SBill Paul 35295c1cfac4SBill Paul #ifdef SRM_MEDIA 3530510a809eSMike Smith if(sc->dc_srm_media) { 3531510a809eSMike Smith struct ifreq ifr; 3532510a809eSMike Smith 3533510a809eSMike Smith ifr.ifr_media = sc->dc_srm_media; 3534510a809eSMike Smith ifmedia_ioctl(ifp, &ifr, &mii->mii_media, SIOCSIFMEDIA); 3535510a809eSMike Smith sc->dc_srm_media = 0; 3536510a809eSMike Smith } 3537510a809eSMike Smith #endif 3538d1ce9105SBill Paul DC_UNLOCK(sc); 353996f2e892SBill Paul } 354096f2e892SBill Paul 354196f2e892SBill Paul /* 354296f2e892SBill Paul * Set media options. 354396f2e892SBill Paul */ 3544e3d2833aSAlfred Perlstein static int 35450934f18aSMaxime Henrion dc_ifmedia_upd(struct ifnet *ifp) 354696f2e892SBill Paul { 354796f2e892SBill Paul struct dc_softc *sc; 354896f2e892SBill Paul struct mii_data *mii; 3549f43d9309SBill Paul struct ifmedia *ifm; 355096f2e892SBill Paul 355196f2e892SBill Paul sc = ifp->if_softc; 355296f2e892SBill Paul mii = device_get_softc(sc->dc_miibus); 355396f2e892SBill Paul mii_mediachg(mii); 3554f43d9309SBill Paul ifm = &mii->mii_media; 3555f43d9309SBill Paul 3556f43d9309SBill Paul if (DC_IS_DAVICOM(sc) && 355745521525SPoul-Henning Kamp IFM_SUBTYPE(ifm->ifm_media) == IFM_HPNA_1) 3558f43d9309SBill Paul dc_setcfg(sc, ifm->ifm_media); 3559f43d9309SBill Paul else 356096f2e892SBill Paul sc->dc_link = 0; 356196f2e892SBill Paul 356296f2e892SBill Paul return (0); 356396f2e892SBill Paul } 356496f2e892SBill Paul 356596f2e892SBill Paul /* 356696f2e892SBill Paul * Report current media status. 356796f2e892SBill Paul */ 3568e3d2833aSAlfred Perlstein static void 35690934f18aSMaxime Henrion dc_ifmedia_sts(struct ifnet *ifp, struct ifmediareq *ifmr) 357096f2e892SBill Paul { 357196f2e892SBill Paul struct dc_softc *sc; 357296f2e892SBill Paul struct mii_data *mii; 3573f43d9309SBill Paul struct ifmedia *ifm; 357496f2e892SBill Paul 357596f2e892SBill Paul sc = ifp->if_softc; 357696f2e892SBill Paul mii = device_get_softc(sc->dc_miibus); 357796f2e892SBill Paul mii_pollstat(mii); 3578f43d9309SBill Paul ifm = &mii->mii_media; 3579f43d9309SBill Paul if (DC_IS_DAVICOM(sc)) { 358045521525SPoul-Henning Kamp if (IFM_SUBTYPE(ifm->ifm_media) == IFM_HPNA_1) { 3581f43d9309SBill Paul ifmr->ifm_active = ifm->ifm_media; 3582f43d9309SBill Paul ifmr->ifm_status = 0; 3583f43d9309SBill Paul return; 3584f43d9309SBill Paul } 3585f43d9309SBill Paul } 358696f2e892SBill Paul ifmr->ifm_active = mii->mii_media_active; 358796f2e892SBill Paul ifmr->ifm_status = mii->mii_media_status; 358896f2e892SBill Paul } 358996f2e892SBill Paul 3590e3d2833aSAlfred Perlstein static int 35910934f18aSMaxime Henrion dc_ioctl(struct ifnet *ifp, u_long command, caddr_t data) 359296f2e892SBill Paul { 359396f2e892SBill Paul struct dc_softc *sc = ifp->if_softc; 359496f2e892SBill Paul struct ifreq *ifr = (struct ifreq *)data; 359596f2e892SBill Paul struct mii_data *mii; 3596d1ce9105SBill Paul int error = 0; 359796f2e892SBill Paul 3598d1ce9105SBill Paul DC_LOCK(sc); 359996f2e892SBill Paul 360096f2e892SBill Paul switch (command) { 360196f2e892SBill Paul case SIOCSIFFLAGS: 360296f2e892SBill Paul if (ifp->if_flags & IFF_UP) { 36035d6dfbbbSLuigi Rizzo int need_setfilt = (ifp->if_flags ^ sc->dc_if_flags) & 36045d6dfbbbSLuigi Rizzo (IFF_PROMISC | IFF_ALLMULTI); 36055d6dfbbbSLuigi Rizzo 36065d6dfbbbSLuigi Rizzo if (ifp->if_flags & IFF_RUNNING) { 36075d6dfbbbSLuigi Rizzo if (need_setfilt) 360896f2e892SBill Paul dc_setfilt(sc); 36095d6dfbbbSLuigi Rizzo } else { 361096f2e892SBill Paul sc->dc_txthresh = 0; 361196f2e892SBill Paul dc_init(sc); 361296f2e892SBill Paul } 361396f2e892SBill Paul } else { 361496f2e892SBill Paul if (ifp->if_flags & IFF_RUNNING) 361596f2e892SBill Paul dc_stop(sc); 361696f2e892SBill Paul } 361796f2e892SBill Paul sc->dc_if_flags = ifp->if_flags; 361896f2e892SBill Paul error = 0; 361996f2e892SBill Paul break; 362096f2e892SBill Paul case SIOCADDMULTI: 362196f2e892SBill Paul case SIOCDELMULTI: 362296f2e892SBill Paul dc_setfilt(sc); 362396f2e892SBill Paul error = 0; 362496f2e892SBill Paul break; 362596f2e892SBill Paul case SIOCGIFMEDIA: 362696f2e892SBill Paul case SIOCSIFMEDIA: 362796f2e892SBill Paul mii = device_get_softc(sc->dc_miibus); 362896f2e892SBill Paul error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command); 36295c1cfac4SBill Paul #ifdef SRM_MEDIA 3630510a809eSMike Smith if (sc->dc_srm_media) 3631510a809eSMike Smith sc->dc_srm_media = 0; 3632510a809eSMike Smith #endif 363396f2e892SBill Paul break; 363496f2e892SBill Paul default: 36359ef8b520SSam Leffler error = ether_ioctl(ifp, command, data); 363696f2e892SBill Paul break; 363796f2e892SBill Paul } 363896f2e892SBill Paul 3639d1ce9105SBill Paul DC_UNLOCK(sc); 364096f2e892SBill Paul 364196f2e892SBill Paul return (error); 364296f2e892SBill Paul } 364396f2e892SBill Paul 3644e3d2833aSAlfred Perlstein static void 36450934f18aSMaxime Henrion dc_watchdog(struct ifnet *ifp) 364696f2e892SBill Paul { 364796f2e892SBill Paul struct dc_softc *sc; 364896f2e892SBill Paul 364996f2e892SBill Paul sc = ifp->if_softc; 365096f2e892SBill Paul 3651d1ce9105SBill Paul DC_LOCK(sc); 3652d1ce9105SBill Paul 365396f2e892SBill Paul ifp->if_oerrors++; 365496f2e892SBill Paul printf("dc%d: watchdog timeout\n", sc->dc_unit); 365596f2e892SBill Paul 365696f2e892SBill Paul dc_stop(sc); 365796f2e892SBill Paul dc_reset(sc); 365896f2e892SBill Paul dc_init(sc); 365996f2e892SBill Paul 366096f2e892SBill Paul if (ifp->if_snd.ifq_head != NULL) 366196f2e892SBill Paul dc_start(ifp); 366296f2e892SBill Paul 3663d1ce9105SBill Paul DC_UNLOCK(sc); 366496f2e892SBill Paul } 366596f2e892SBill Paul 366696f2e892SBill Paul /* 366796f2e892SBill Paul * Stop the adapter and free any mbufs allocated to the 366896f2e892SBill Paul * RX and TX lists. 366996f2e892SBill Paul */ 3670e3d2833aSAlfred Perlstein static void 36710934f18aSMaxime Henrion dc_stop(struct dc_softc *sc) 367296f2e892SBill Paul { 367396f2e892SBill Paul struct ifnet *ifp; 3674b3811c95SMaxime Henrion struct dc_list_data *ld; 3675b3811c95SMaxime Henrion struct dc_chain_data *cd; 3676b3811c95SMaxime Henrion int i; 367796f2e892SBill Paul 3678d1ce9105SBill Paul DC_LOCK(sc); 3679d1ce9105SBill Paul 368096f2e892SBill Paul ifp = &sc->arpcom.ac_if; 368196f2e892SBill Paul ifp->if_timer = 0; 3682b3811c95SMaxime Henrion ld = sc->dc_ldata; 3683b3811c95SMaxime Henrion cd = &sc->dc_cdata; 368496f2e892SBill Paul 3685b50c6312SJonathan Lemon callout_stop(&sc->dc_stat_ch); 368696f2e892SBill Paul 36873b3ec200SPeter Wemm ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE); 3688e4fc250cSLuigi Rizzo #ifdef DEVICE_POLLING 3689e4fc250cSLuigi Rizzo ether_poll_deregister(ifp); 3690e4fc250cSLuigi Rizzo #endif 36913b3ec200SPeter Wemm 369296f2e892SBill Paul DC_CLRBIT(sc, DC_NETCFG, (DC_NETCFG_RX_ON | DC_NETCFG_TX_ON)); 369396f2e892SBill Paul CSR_WRITE_4(sc, DC_IMR, 0x00000000); 369496f2e892SBill Paul CSR_WRITE_4(sc, DC_TXADDR, 0x00000000); 369596f2e892SBill Paul CSR_WRITE_4(sc, DC_RXADDR, 0x00000000); 369696f2e892SBill Paul sc->dc_link = 0; 369796f2e892SBill Paul 369896f2e892SBill Paul /* 369996f2e892SBill Paul * Free data in the RX lists. 370096f2e892SBill Paul */ 370196f2e892SBill Paul for (i = 0; i < DC_RX_LIST_CNT; i++) { 3702b3811c95SMaxime Henrion if (cd->dc_rx_chain[i] != NULL) { 370356e5e7aeSMaxime Henrion m_freem(cd->dc_rx_chain[i]); 370456e5e7aeSMaxime Henrion cd->dc_rx_chain[i] = NULL; 370596f2e892SBill Paul } 370696f2e892SBill Paul } 3707b3811c95SMaxime Henrion bzero(&ld->dc_rx_list, sizeof(ld->dc_rx_list)); 370896f2e892SBill Paul 370996f2e892SBill Paul /* 371096f2e892SBill Paul * Free the TX list buffers. 371196f2e892SBill Paul */ 371296f2e892SBill Paul for (i = 0; i < DC_TX_LIST_CNT; i++) { 3713b3811c95SMaxime Henrion if (cd->dc_tx_chain[i] != NULL) { 37143d6ae7e0SMaxime Henrion if ((ld->dc_tx_list[i].dc_ctl & DC_TXCTL_SETUP) || 371556e5e7aeSMaxime Henrion !(ld->dc_tx_list[i].dc_ctl & DC_TXCTL_FIRSTFRAG)) { 3716b3811c95SMaxime Henrion cd->dc_tx_chain[i] = NULL; 371796f2e892SBill Paul continue; 371896f2e892SBill Paul } 371956e5e7aeSMaxime Henrion bus_dmamap_unload(sc->dc_mtag, cd->dc_tx_map[i]); 372056e5e7aeSMaxime Henrion m_freem(cd->dc_tx_chain[i]); 3721b3811c95SMaxime Henrion cd->dc_tx_chain[i] = NULL; 372296f2e892SBill Paul } 372396f2e892SBill Paul } 3724b3811c95SMaxime Henrion bzero(&ld->dc_tx_list, sizeof(ld->dc_tx_list)); 372596f2e892SBill Paul 3726d1ce9105SBill Paul DC_UNLOCK(sc); 372796f2e892SBill Paul } 372896f2e892SBill Paul 372996f2e892SBill Paul /* 3730e8388e14SMitsuru IWASAKI * Device suspend routine. Stop the interface and save some PCI 3731e8388e14SMitsuru IWASAKI * settings in case the BIOS doesn't restore them properly on 3732e8388e14SMitsuru IWASAKI * resume. 3733e8388e14SMitsuru IWASAKI */ 3734e3d2833aSAlfred Perlstein static int 37350934f18aSMaxime Henrion dc_suspend(device_t dev) 3736e8388e14SMitsuru IWASAKI { 3737e8388e14SMitsuru IWASAKI struct dc_softc *sc; 37380934f18aSMaxime Henrion int i, s; 3739e8388e14SMitsuru IWASAKI 3740e8388e14SMitsuru IWASAKI s = splimp(); 3741e8388e14SMitsuru IWASAKI 3742e8388e14SMitsuru IWASAKI sc = device_get_softc(dev); 3743e8388e14SMitsuru IWASAKI 3744e8388e14SMitsuru IWASAKI dc_stop(sc); 3745e8388e14SMitsuru IWASAKI 3746e8388e14SMitsuru IWASAKI for (i = 0; i < 5; i++) 3747e8388e14SMitsuru IWASAKI sc->saved_maps[i] = pci_read_config(dev, PCIR_MAPS + i * 4, 4); 3748e8388e14SMitsuru IWASAKI sc->saved_biosaddr = pci_read_config(dev, PCIR_BIOS, 4); 3749e8388e14SMitsuru IWASAKI sc->saved_intline = pci_read_config(dev, PCIR_INTLINE, 1); 3750e8388e14SMitsuru IWASAKI sc->saved_cachelnsz = pci_read_config(dev, PCIR_CACHELNSZ, 1); 3751e8388e14SMitsuru IWASAKI sc->saved_lattimer = pci_read_config(dev, PCIR_LATTIMER, 1); 3752e8388e14SMitsuru IWASAKI 3753e8388e14SMitsuru IWASAKI sc->suspended = 1; 3754e8388e14SMitsuru IWASAKI 3755e8388e14SMitsuru IWASAKI splx(s); 3756e8388e14SMitsuru IWASAKI return (0); 3757e8388e14SMitsuru IWASAKI } 3758e8388e14SMitsuru IWASAKI 3759e8388e14SMitsuru IWASAKI /* 3760e8388e14SMitsuru IWASAKI * Device resume routine. Restore some PCI settings in case the BIOS 3761e8388e14SMitsuru IWASAKI * doesn't, re-enable busmastering, and restart the interface if 3762e8388e14SMitsuru IWASAKI * appropriate. 3763e8388e14SMitsuru IWASAKI */ 3764e3d2833aSAlfred Perlstein static int 37650934f18aSMaxime Henrion dc_resume(device_t dev) 3766e8388e14SMitsuru IWASAKI { 3767e8388e14SMitsuru IWASAKI struct dc_softc *sc; 3768e8388e14SMitsuru IWASAKI struct ifnet *ifp; 37690934f18aSMaxime Henrion int i, s; 3770e8388e14SMitsuru IWASAKI 3771e8388e14SMitsuru IWASAKI s = splimp(); 3772e8388e14SMitsuru IWASAKI 3773e8388e14SMitsuru IWASAKI sc = device_get_softc(dev); 3774e8388e14SMitsuru IWASAKI ifp = &sc->arpcom.ac_if; 3775b84e866aSWarner Losh #ifndef BURN_BRIDGES 3776e8388e14SMitsuru IWASAKI dc_acpi(dev); 3777b84e866aSWarner Losh #endif 3778e8388e14SMitsuru IWASAKI /* better way to do this? */ 3779e8388e14SMitsuru IWASAKI for (i = 0; i < 5; i++) 3780e8388e14SMitsuru IWASAKI pci_write_config(dev, PCIR_MAPS + i * 4, sc->saved_maps[i], 4); 3781e8388e14SMitsuru IWASAKI pci_write_config(dev, PCIR_BIOS, sc->saved_biosaddr, 4); 3782e8388e14SMitsuru IWASAKI pci_write_config(dev, PCIR_INTLINE, sc->saved_intline, 1); 3783e8388e14SMitsuru IWASAKI pci_write_config(dev, PCIR_CACHELNSZ, sc->saved_cachelnsz, 1); 3784e8388e14SMitsuru IWASAKI pci_write_config(dev, PCIR_LATTIMER, sc->saved_lattimer, 1); 3785e8388e14SMitsuru IWASAKI 3786e8388e14SMitsuru IWASAKI /* reenable busmastering */ 3787e8388e14SMitsuru IWASAKI pci_enable_busmaster(dev); 3788e8388e14SMitsuru IWASAKI pci_enable_io(dev, DC_RES); 3789e8388e14SMitsuru IWASAKI 3790e8388e14SMitsuru IWASAKI /* reinitialize interface if necessary */ 3791e8388e14SMitsuru IWASAKI if (ifp->if_flags & IFF_UP) 3792e8388e14SMitsuru IWASAKI dc_init(sc); 3793e8388e14SMitsuru IWASAKI 3794e8388e14SMitsuru IWASAKI sc->suspended = 0; 3795e8388e14SMitsuru IWASAKI 3796e8388e14SMitsuru IWASAKI splx(s); 3797e8388e14SMitsuru IWASAKI return (0); 3798e8388e14SMitsuru IWASAKI } 3799e8388e14SMitsuru IWASAKI 3800e8388e14SMitsuru IWASAKI /* 380196f2e892SBill Paul * Stop all chip I/O so that the kernel's probe routines don't 380296f2e892SBill Paul * get confused by errant DMAs when rebooting. 380396f2e892SBill Paul */ 3804e3d2833aSAlfred Perlstein static void 38050934f18aSMaxime Henrion dc_shutdown(device_t dev) 380696f2e892SBill Paul { 380796f2e892SBill Paul struct dc_softc *sc; 380896f2e892SBill Paul 380996f2e892SBill Paul sc = device_get_softc(dev); 381096f2e892SBill Paul 381196f2e892SBill Paul dc_stop(sc); 381296f2e892SBill Paul } 3813