xref: /freebsd/sys/dev/gem/if_gem.c (revision 11a9117871e6037ae7b8011b243939322efce569)
1aad970f1SDavid E. O'Brien /*-
2b61a5730SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
3718cf2ccSPedro F. Giffuni  *
442c1b001SThomas Moestl  * Copyright (C) 2001 Eduardo Horvath.
5305f2c06SThomas Moestl  * Copyright (c) 2001-2003 Thomas Moestl
62a79fd39SMarius Strobl  * Copyright (c) 2007 Marius Strobl <marius@FreeBSD.org>
742c1b001SThomas Moestl  * All rights reserved.
842c1b001SThomas Moestl  *
942c1b001SThomas Moestl  * Redistribution and use in source and binary forms, with or without
1042c1b001SThomas Moestl  * modification, are permitted provided that the following conditions
1142c1b001SThomas Moestl  * are met:
1242c1b001SThomas Moestl  * 1. Redistributions of source code must retain the above copyright
1342c1b001SThomas Moestl  *    notice, this list of conditions and the following disclaimer.
1442c1b001SThomas Moestl  * 2. Redistributions in binary form must reproduce the above copyright
1542c1b001SThomas Moestl  *    notice, this list of conditions and the following disclaimer in the
1642c1b001SThomas Moestl  *    documentation and/or other materials provided with the distribution.
1742c1b001SThomas Moestl  *
1842c1b001SThomas Moestl  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR  ``AS IS'' AND
1942c1b001SThomas Moestl  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2042c1b001SThomas Moestl  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2142c1b001SThomas Moestl  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR  BE LIABLE
2242c1b001SThomas Moestl  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2342c1b001SThomas Moestl  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2442c1b001SThomas Moestl  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2542c1b001SThomas Moestl  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2642c1b001SThomas Moestl  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2742c1b001SThomas Moestl  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2842c1b001SThomas Moestl  * SUCH DAMAGE.
2942c1b001SThomas Moestl  *
30336cca9eSBenno Rice  *	from: NetBSD: gem.c,v 1.21 2002/06/01 23:50:58 lukem Exp
3142c1b001SThomas Moestl  */
3242c1b001SThomas Moestl 
33aad970f1SDavid E. O'Brien #include <sys/cdefs.h>
3442c1b001SThomas Moestl /*
351ed3fed7SMarius Strobl  * Driver for Apple GMAC, Sun ERI and Sun GEM Ethernet controllers
3642c1b001SThomas Moestl  */
3742c1b001SThomas Moestl 
3818100346SThomas Moestl #if 0
3942c1b001SThomas Moestl #define	GEM_DEBUG
4018100346SThomas Moestl #endif
4142c1b001SThomas Moestl 
42c3d5598aSMarius Strobl #if 0	/* XXX: In case of emergency, re-enable this. */
43c3d5598aSMarius Strobl #define	GEM_RINT_TIMEOUT
44c3d5598aSMarius Strobl #endif
45c3d5598aSMarius Strobl 
4642c1b001SThomas Moestl #include <sys/param.h>
4742c1b001SThomas Moestl #include <sys/systm.h>
4842c1b001SThomas Moestl #include <sys/bus.h>
4942c1b001SThomas Moestl #include <sys/callout.h>
50a30d4b32SMike Barcroft #include <sys/endian.h>
5142c1b001SThomas Moestl #include <sys/mbuf.h>
5242c1b001SThomas Moestl #include <sys/malloc.h>
5342c1b001SThomas Moestl #include <sys/kernel.h>
548cfaff7dSMarius Strobl #include <sys/lock.h>
55186f2b9eSPoul-Henning Kamp #include <sys/module.h>
568cfaff7dSMarius Strobl #include <sys/mutex.h>
5742c1b001SThomas Moestl #include <sys/socket.h>
5842c1b001SThomas Moestl #include <sys/sockio.h>
59e1bb13cdSPoul-Henning Kamp #include <sys/rman.h>
6042c1b001SThomas Moestl 
6108e0fdebSThomas Moestl #include <net/bpf.h>
6242c1b001SThomas Moestl #include <net/ethernet.h>
6342c1b001SThomas Moestl #include <net/if.h>
6476039bc8SGleb Smirnoff #include <net/if_var.h>
6542c1b001SThomas Moestl #include <net/if_arp.h>
6642c1b001SThomas Moestl #include <net/if_dl.h>
6742c1b001SThomas Moestl #include <net/if_media.h>
68fc74a9f9SBrooks Davis #include <net/if_types.h>
6900d12766SMarius Strobl #include <net/if_vlan_var.h>
7042c1b001SThomas Moestl 
7112fb0330SPyun YongHyeon #include <netinet/in.h>
7212fb0330SPyun YongHyeon #include <netinet/in_systm.h>
7312fb0330SPyun YongHyeon #include <netinet/ip.h>
7412fb0330SPyun YongHyeon #include <netinet/tcp.h>
7512fb0330SPyun YongHyeon #include <netinet/udp.h>
7612fb0330SPyun YongHyeon 
7742c1b001SThomas Moestl #include <machine/bus.h>
7842c1b001SThomas Moestl 
7942c1b001SThomas Moestl #include <dev/mii/mii.h>
8042c1b001SThomas Moestl #include <dev/mii/miivar.h>
8142c1b001SThomas Moestl 
82681f7d03SWarner Losh #include <dev/gem/if_gemreg.h>
83681f7d03SWarner Losh #include <dev/gem/if_gemvar.h>
8442c1b001SThomas Moestl 
851ed3fed7SMarius Strobl CTASSERT(powerof2(GEM_NRXDESC) && GEM_NRXDESC >= 32 && GEM_NRXDESC <= 8192);
861ed3fed7SMarius Strobl CTASSERT(powerof2(GEM_NTXDESC) && GEM_NTXDESC >= 32 && GEM_NTXDESC <= 8192);
871ed3fed7SMarius Strobl 
889ba2b298SMarius Strobl #define	GEM_TRIES	10000
891ed3fed7SMarius Strobl 
9012fb0330SPyun YongHyeon /*
9178d22f42SMarius Strobl  * The hardware supports basic TCP/UDP checksum offloading.  However,
9212fb0330SPyun YongHyeon  * the hardware doesn't compensate the checksum for UDP datagram which
9312fb0330SPyun YongHyeon  * can yield to 0x0.  As a safe guard, UDP checksum offload is disabled
9412fb0330SPyun YongHyeon  * by default.  It can be reactivated by setting special link option
9512fb0330SPyun YongHyeon  * link0 with ifconfig(8).
9612fb0330SPyun YongHyeon  */
9712fb0330SPyun YongHyeon #define	GEM_CSUM_FEATURES	(CSUM_TCP)
9842c1b001SThomas Moestl 
992a79fd39SMarius Strobl static int	gem_add_rxbuf(struct gem_softc *sc, int idx);
1008defc88cSMarius Strobl static int	gem_bitwait(struct gem_softc *sc, bus_addr_t r, uint32_t clr,
1018defc88cSMarius Strobl 		    uint32_t set);
1022a79fd39SMarius Strobl static void	gem_cddma_callback(void *xsc, bus_dma_segment_t *segs,
1032a79fd39SMarius Strobl 		    int nsegs, int error);
1042a79fd39SMarius Strobl static int	gem_disable_rx(struct gem_softc *sc);
1052a79fd39SMarius Strobl static int	gem_disable_tx(struct gem_softc *sc);
1062a79fd39SMarius Strobl static void	gem_eint(struct gem_softc *sc, u_int status);
1072a79fd39SMarius Strobl static void	gem_init(void *xsc);
1082a79fd39SMarius Strobl static void	gem_init_locked(struct gem_softc *sc);
1092a79fd39SMarius Strobl static void	gem_init_regs(struct gem_softc *sc);
1109f012efbSJustin Hibbits static int	gem_ioctl(if_t ifp, u_long cmd, caddr_t data);
1112a79fd39SMarius Strobl static int	gem_load_txmbuf(struct gem_softc *sc, struct mbuf **m_head);
1122a79fd39SMarius Strobl static int	gem_meminit(struct gem_softc *sc);
1132a79fd39SMarius Strobl static void	gem_mifinit(struct gem_softc *sc);
1142a79fd39SMarius Strobl static void	gem_reset(struct gem_softc *sc);
1152a79fd39SMarius Strobl static int	gem_reset_rx(struct gem_softc *sc);
1161ed3fed7SMarius Strobl static void	gem_reset_rxdma(struct gem_softc *sc);
1172a79fd39SMarius Strobl static int	gem_reset_tx(struct gem_softc *sc);
1182a79fd39SMarius Strobl static u_int	gem_ringsize(u_int sz);
1192a79fd39SMarius Strobl static void	gem_rint(struct gem_softc *sc);
120c3d5598aSMarius Strobl #ifdef GEM_RINT_TIMEOUT
1212a79fd39SMarius Strobl static void	gem_rint_timeout(void *arg);
12211e3f060SJake Burkholder #endif
1239ba2b298SMarius Strobl static inline void gem_rxcksum(struct mbuf *m, uint64_t flags);
1242a79fd39SMarius Strobl static void	gem_rxdrain(struct gem_softc *sc);
1255ed0b954SMarius Strobl static void	gem_setladrf(struct gem_softc *sc);
1269f012efbSJustin Hibbits static void	gem_start(if_t ifp);
1279f012efbSJustin Hibbits static void	gem_start_locked(if_t ifp);
1289f012efbSJustin Hibbits static void	gem_stop(if_t ifp, int disable);
1292a79fd39SMarius Strobl static void	gem_tick(void *arg);
1302a79fd39SMarius Strobl static void	gem_tint(struct gem_softc *sc);
1319ba2b298SMarius Strobl static inline void gem_txkick(struct gem_softc *sc);
1322a79fd39SMarius Strobl static int	gem_watchdog(struct gem_softc *sc);
13342c1b001SThomas Moestl 
1343e38757dSJohn Baldwin DRIVER_MODULE(miibus, gem, miibus_driver, 0, 0);
13542c1b001SThomas Moestl MODULE_DEPEND(gem, miibus, 1, 1, 1);
13642c1b001SThomas Moestl 
13742c1b001SThomas Moestl #ifdef GEM_DEBUG
13842c1b001SThomas Moestl #include <sys/ktr.h>
139651aa2d8SAttilio Rao #define	KTR_GEM		KTR_SPARE2
14042c1b001SThomas Moestl #endif
14142c1b001SThomas Moestl 
14242c1b001SThomas Moestl int
gem_attach(struct gem_softc * sc)1432a79fd39SMarius Strobl gem_attach(struct gem_softc *sc)
14442c1b001SThomas Moestl {
1452a79fd39SMarius Strobl 	struct gem_txsoft *txs;
1469f012efbSJustin Hibbits 	if_t ifp;
1478e5d93dbSMarius Strobl 	int error, i, phy;
1482a79fd39SMarius Strobl 	uint32_t v;
14942c1b001SThomas Moestl 
1509ba2b298SMarius Strobl 	if (bootverbose)
1519ba2b298SMarius Strobl 		device_printf(sc->sc_dev, "flags=0x%x\n", sc->sc_flags);
1529ba2b298SMarius Strobl 
1539ba2b298SMarius Strobl 	/* Set up ifnet structure. */
154fc74a9f9SBrooks Davis 	ifp = sc->sc_ifp = if_alloc(IFT_ETHER);
1559ba2b298SMarius Strobl 	sc->sc_csum_features = GEM_CSUM_FEATURES;
1569f012efbSJustin Hibbits 	if_setsoftc(ifp, sc);
1579ba2b298SMarius Strobl 	if_initname(ifp, device_get_name(sc->sc_dev),
1589ba2b298SMarius Strobl 	    device_get_unit(sc->sc_dev));
1599f012efbSJustin Hibbits 	if_setflags(ifp, IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST);
1609f012efbSJustin Hibbits 	if_setstartfn(ifp, gem_start);
1619f012efbSJustin Hibbits 	if_setioctlfn(ifp, gem_ioctl);
1629f012efbSJustin Hibbits 	if_setinitfn(ifp, gem_init);
1639f012efbSJustin Hibbits 	if_setsendqlen(ifp, GEM_TXQUEUELEN);
1649f012efbSJustin Hibbits 	if_setsendqready(ifp);
165fc74a9f9SBrooks Davis 
1661f317bf9SMarius Strobl 	callout_init_mtx(&sc->sc_tick_ch, &sc->sc_mtx, 0);
1671f317bf9SMarius Strobl #ifdef GEM_RINT_TIMEOUT
1681f317bf9SMarius Strobl 	callout_init_mtx(&sc->sc_rx_ch, &sc->sc_mtx, 0);
1691f317bf9SMarius Strobl #endif
1701f317bf9SMarius Strobl 
17142c1b001SThomas Moestl 	/* Make sure the chip is stopped. */
17242c1b001SThomas Moestl 	gem_reset(sc);
17342c1b001SThomas Moestl 
174378f231eSJohn-Mark Gurney 	error = bus_dma_tag_create(bus_get_dma_tag(sc->sc_dev), 1, 0,
175378f231eSJohn-Mark Gurney 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
1762a79fd39SMarius Strobl 	    BUS_SPACE_MAXSIZE_32BIT, 0, BUS_SPACE_MAXSIZE_32BIT, 0, NULL,
1772a79fd39SMarius Strobl 	    NULL, &sc->sc_pdmatag);
1789ba2b298SMarius Strobl 	if (error != 0)
179fc74a9f9SBrooks Davis 		goto fail_ifnet;
18042c1b001SThomas Moestl 
18142c1b001SThomas Moestl 	error = bus_dma_tag_create(sc->sc_pdmatag, 1, 0,
18212fb0330SPyun YongHyeon 	    BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL, NULL, MCLBYTES,
18312fb0330SPyun YongHyeon 	    1, MCLBYTES, BUS_DMA_ALLOCNOW, NULL, NULL, &sc->sc_rdmatag);
1849ba2b298SMarius Strobl 	if (error != 0)
185305f2c06SThomas Moestl 		goto fail_ptag;
186305f2c06SThomas Moestl 
187305f2c06SThomas Moestl 	error = bus_dma_tag_create(sc->sc_pdmatag, 1, 0,
18812fb0330SPyun YongHyeon 	    BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL, NULL,
18912fb0330SPyun YongHyeon 	    MCLBYTES * GEM_NTXSEGS, GEM_NTXSEGS, MCLBYTES,
190f6b1c44dSScott Long 	    BUS_DMA_ALLOCNOW, NULL, NULL, &sc->sc_tdmatag);
1919ba2b298SMarius Strobl 	if (error != 0)
192305f2c06SThomas Moestl 		goto fail_rtag;
19342c1b001SThomas Moestl 
19442c1b001SThomas Moestl 	error = bus_dma_tag_create(sc->sc_pdmatag, PAGE_SIZE, 0,
19512fb0330SPyun YongHyeon 	    BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL, NULL,
19642c1b001SThomas Moestl 	    sizeof(struct gem_control_data), 1,
19712fb0330SPyun YongHyeon 	    sizeof(struct gem_control_data), 0,
19812fb0330SPyun YongHyeon 	    NULL, NULL, &sc->sc_cdmatag);
1999ba2b298SMarius Strobl 	if (error != 0)
200305f2c06SThomas Moestl 		goto fail_ttag;
20142c1b001SThomas Moestl 
20242c1b001SThomas Moestl 	/*
2032a79fd39SMarius Strobl 	 * Allocate the control data structures, create and load the
20442c1b001SThomas Moestl 	 * DMA map for it.
20542c1b001SThomas Moestl 	 */
20642c1b001SThomas Moestl 	if ((error = bus_dmamem_alloc(sc->sc_cdmatag,
20712fb0330SPyun YongHyeon 	    (void **)&sc->sc_control_data,
20812fb0330SPyun YongHyeon 	    BUS_DMA_WAITOK | BUS_DMA_COHERENT | BUS_DMA_ZERO,
2099ba2b298SMarius Strobl 	    &sc->sc_cddmamap)) != 0) {
2102a79fd39SMarius Strobl 		device_printf(sc->sc_dev,
2112a79fd39SMarius Strobl 		    "unable to allocate control data, error = %d\n", error);
212305f2c06SThomas Moestl 		goto fail_ctag;
21342c1b001SThomas Moestl 	}
21442c1b001SThomas Moestl 
21542c1b001SThomas Moestl 	sc->sc_cddma = 0;
21642c1b001SThomas Moestl 	if ((error = bus_dmamap_load(sc->sc_cdmatag, sc->sc_cddmamap,
21742c1b001SThomas Moestl 	    sc->sc_control_data, sizeof(struct gem_control_data),
21842c1b001SThomas Moestl 	    gem_cddma_callback, sc, 0)) != 0 || sc->sc_cddma == 0) {
2192a79fd39SMarius Strobl 		device_printf(sc->sc_dev,
2202a79fd39SMarius Strobl 		    "unable to load control data DMA map, error = %d\n",
2212a79fd39SMarius Strobl 		    error);
222305f2c06SThomas Moestl 		goto fail_cmem;
22342c1b001SThomas Moestl 	}
22442c1b001SThomas Moestl 
22542c1b001SThomas Moestl 	/*
22642c1b001SThomas Moestl 	 * Initialize the transmit job descriptors.
22742c1b001SThomas Moestl 	 */
22842c1b001SThomas Moestl 	STAILQ_INIT(&sc->sc_txfreeq);
22942c1b001SThomas Moestl 	STAILQ_INIT(&sc->sc_txdirtyq);
23042c1b001SThomas Moestl 
23142c1b001SThomas Moestl 	/*
23242c1b001SThomas Moestl 	 * Create the transmit buffer DMA maps.
23342c1b001SThomas Moestl 	 */
23442c1b001SThomas Moestl 	error = ENOMEM;
23542c1b001SThomas Moestl 	for (i = 0; i < GEM_TXQUEUELEN; i++) {
23642c1b001SThomas Moestl 		txs = &sc->sc_txsoft[i];
23742c1b001SThomas Moestl 		txs->txs_mbuf = NULL;
23842c1b001SThomas Moestl 		txs->txs_ndescs = 0;
239305f2c06SThomas Moestl 		if ((error = bus_dmamap_create(sc->sc_tdmatag, 0,
24042c1b001SThomas Moestl 		    &txs->txs_dmamap)) != 0) {
2412a79fd39SMarius Strobl 			device_printf(sc->sc_dev,
2422a79fd39SMarius Strobl 			    "unable to create TX DMA map %d, error = %d\n",
2432a79fd39SMarius Strobl 			    i, error);
244305f2c06SThomas Moestl 			goto fail_txd;
24542c1b001SThomas Moestl 		}
24642c1b001SThomas Moestl 		STAILQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q);
24742c1b001SThomas Moestl 	}
24842c1b001SThomas Moestl 
24942c1b001SThomas Moestl 	/*
25042c1b001SThomas Moestl 	 * Create the receive buffer DMA maps.
25142c1b001SThomas Moestl 	 */
25242c1b001SThomas Moestl 	for (i = 0; i < GEM_NRXDESC; i++) {
253305f2c06SThomas Moestl 		if ((error = bus_dmamap_create(sc->sc_rdmatag, 0,
25442c1b001SThomas Moestl 		    &sc->sc_rxsoft[i].rxs_dmamap)) != 0) {
2552a79fd39SMarius Strobl 			device_printf(sc->sc_dev,
2562a79fd39SMarius Strobl 			    "unable to create RX DMA map %d, error = %d\n",
2572a79fd39SMarius Strobl 			    i, error);
258305f2c06SThomas Moestl 			goto fail_rxd;
25942c1b001SThomas Moestl 		}
26042c1b001SThomas Moestl 		sc->sc_rxsoft[i].rxs_mbuf = NULL;
26142c1b001SThomas Moestl 	}
26242c1b001SThomas Moestl 
26365f2c0ffSMarius Strobl 	/* Bypass probing PHYs if we already know for sure to use a SERDES. */
26465f2c0ffSMarius Strobl 	if ((sc->sc_flags & GEM_SERDES) != 0)
26565f2c0ffSMarius Strobl 		goto serdes;
26665f2c0ffSMarius Strobl 
2678defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MII_DATAPATH_MODE, GEM_MII_DATAPATH_MII);
2688defc88cSMarius Strobl 	GEM_BARRIER(sc, GEM_MII_DATAPATH_MODE, 4,
26965f2c0ffSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
2701ed3fed7SMarius Strobl 
27142c1b001SThomas Moestl 	gem_mifinit(sc);
27242c1b001SThomas Moestl 
2731ed3fed7SMarius Strobl 	/*
2741ed3fed7SMarius Strobl 	 * Look for an external PHY.
2751ed3fed7SMarius Strobl 	 */
2761ed3fed7SMarius Strobl 	error = ENXIO;
2778defc88cSMarius Strobl 	v = GEM_READ_4(sc, GEM_MIF_CONFIG);
2781ed3fed7SMarius Strobl 	if ((v & GEM_MIF_CONFIG_MDI1) != 0) {
2791ed3fed7SMarius Strobl 		v |= GEM_MIF_CONFIG_PHY_SEL;
2808defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MIF_CONFIG, v);
2818defc88cSMarius Strobl 		GEM_BARRIER(sc, GEM_MIF_CONFIG, 4,
28265f2c0ffSMarius Strobl 		    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
2838e5d93dbSMarius Strobl 		error = mii_attach(sc->sc_dev, &sc->sc_miibus, ifp,
2848defc88cSMarius Strobl 		    gem_mediachange, gem_mediastatus, BMSR_DEFCAPMASK,
2858defc88cSMarius Strobl 		    MII_PHY_ANY, MII_OFFSET_ANY, MIIF_DOPAUSE);
2861ed3fed7SMarius Strobl 	}
2871ed3fed7SMarius Strobl 
2881ed3fed7SMarius Strobl 	/*
2891ed3fed7SMarius Strobl 	 * Fall back on an internal PHY if no external PHY was found.
2909e48f1e7SMarius Strobl 	 * Note that with Apple (K2) GMACs GEM_MIF_CONFIG_MDI0 can't be
2919e48f1e7SMarius Strobl 	 * trusted when the firmware has powered down the chip.
2921ed3fed7SMarius Strobl 	 */
2939e48f1e7SMarius Strobl 	if (error != 0 &&
2949e48f1e7SMarius Strobl 	    ((v & GEM_MIF_CONFIG_MDI0) != 0 || GEM_IS_APPLE(sc))) {
2951ed3fed7SMarius Strobl 		v &= ~GEM_MIF_CONFIG_PHY_SEL;
2968defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MIF_CONFIG, v);
2978defc88cSMarius Strobl 		GEM_BARRIER(sc, GEM_MIF_CONFIG, 4,
29865f2c0ffSMarius Strobl 		    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
2991ed3fed7SMarius Strobl 		switch (sc->sc_variant) {
3001ed3fed7SMarius Strobl 		case GEM_APPLE_K2_GMAC:
3018e5d93dbSMarius Strobl 			phy = GEM_PHYAD_INTERNAL;
3021ed3fed7SMarius Strobl 			break;
3031ed3fed7SMarius Strobl 		case GEM_APPLE_GMAC:
3048e5d93dbSMarius Strobl 			phy = GEM_PHYAD_EXTERNAL;
3051ed3fed7SMarius Strobl 			break;
3061ed3fed7SMarius Strobl 		default:
3078e5d93dbSMarius Strobl 			phy = MII_PHY_ANY;
3081ed3fed7SMarius Strobl 			break;
3091ed3fed7SMarius Strobl 		}
3108e5d93dbSMarius Strobl 		error = mii_attach(sc->sc_dev, &sc->sc_miibus, ifp,
3118e5d93dbSMarius Strobl 		    gem_mediachange, gem_mediastatus, BMSR_DEFCAPMASK, phy,
3129a68cbd3SMarius Strobl 		    MII_OFFSET_ANY, MIIF_DOPAUSE);
3131ed3fed7SMarius Strobl 	}
3141ed3fed7SMarius Strobl 
3151ed3fed7SMarius Strobl 	/*
3161ed3fed7SMarius Strobl 	 * Try the external PCS SERDES if we didn't find any PHYs.
3171ed3fed7SMarius Strobl 	 */
3181ed3fed7SMarius Strobl 	if (error != 0 && sc->sc_variant == GEM_SUN_GEM) {
31965f2c0ffSMarius Strobl  serdes:
3208defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MII_DATAPATH_MODE,
3211ed3fed7SMarius Strobl 		    GEM_MII_DATAPATH_SERDES);
3228defc88cSMarius Strobl 		GEM_BARRIER(sc, GEM_MII_DATAPATH_MODE, 4,
32365f2c0ffSMarius Strobl 		    BUS_SPACE_BARRIER_WRITE);
3248defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MII_SLINK_CONTROL,
3251ed3fed7SMarius Strobl 		    GEM_MII_SLINK_LOOPBACK | GEM_MII_SLINK_EN_SYNC_D);
3268defc88cSMarius Strobl 		GEM_BARRIER(sc, GEM_MII_SLINK_CONTROL, 4,
32765f2c0ffSMarius Strobl 		    BUS_SPACE_BARRIER_WRITE);
3288defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MII_CONFIG, GEM_MII_CONFIG_ENABLE);
3298defc88cSMarius Strobl 		GEM_BARRIER(sc, GEM_MII_CONFIG, 4,
33065f2c0ffSMarius Strobl 		    BUS_SPACE_BARRIER_WRITE);
3311ed3fed7SMarius Strobl 		sc->sc_flags |= GEM_SERDES;
3328e5d93dbSMarius Strobl 		error = mii_attach(sc->sc_dev, &sc->sc_miibus, ifp,
3338e5d93dbSMarius Strobl 		    gem_mediachange, gem_mediastatus, BMSR_DEFCAPMASK,
3349a68cbd3SMarius Strobl 		    GEM_PHYAD_EXTERNAL, MII_OFFSET_ANY, MIIF_DOPAUSE);
3351ed3fed7SMarius Strobl 	}
3361ed3fed7SMarius Strobl 	if (error != 0) {
3378e5d93dbSMarius Strobl 		device_printf(sc->sc_dev, "attaching PHYs failed\n");
338305f2c06SThomas Moestl 		goto fail_rxd;
33942c1b001SThomas Moestl 	}
34042c1b001SThomas Moestl 	sc->sc_mii = device_get_softc(sc->sc_miibus);
34142c1b001SThomas Moestl 
34242c1b001SThomas Moestl 	/*
34342c1b001SThomas Moestl 	 * From this point forward, the attachment cannot fail.  A failure
34442c1b001SThomas Moestl 	 * before this point releases all resources that may have been
34542c1b001SThomas Moestl 	 * allocated.
34642c1b001SThomas Moestl 	 */
34742c1b001SThomas Moestl 
348801772ecSMarius Strobl 	/* Get RX FIFO size. */
349336cca9eSBenno Rice 	sc->sc_rxfifosize = 64 *
3508defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_RX_FIFO_SIZE);
351336cca9eSBenno Rice 
352801772ecSMarius Strobl 	/* Get TX FIFO size. */
3538defc88cSMarius Strobl 	v = GEM_READ_4(sc, GEM_TX_FIFO_SIZE);
3543a5aee5aSThomas Moestl 	device_printf(sc->sc_dev, "%ukB RX FIFO, %ukB TX FIFO\n",
3553a5aee5aSThomas Moestl 	    sc->sc_rxfifosize / 1024, v / 16);
35642c1b001SThomas Moestl 
35742c1b001SThomas Moestl 	/* Attach the interface. */
358fc74a9f9SBrooks Davis 	ether_ifattach(ifp, sc->sc_enaddr);
35942c1b001SThomas Moestl 
36000d12766SMarius Strobl 	/*
36112fb0330SPyun YongHyeon 	 * Tell the upper layer(s) we support long frames/checksum offloads.
36200d12766SMarius Strobl 	 */
3639f012efbSJustin Hibbits 	if_setifheaderlen(ifp, sizeof(struct ether_vlan_header));
3649f012efbSJustin Hibbits 	if_setcapabilitiesbit(ifp, IFCAP_VLAN_MTU | IFCAP_HWCSUM, 0);
3659f012efbSJustin Hibbits 	if_sethwassistbits(ifp, sc->sc_csum_features, 0);
3669f012efbSJustin Hibbits 	if_setcapenablebit(ifp, IFCAP_VLAN_MTU | IFCAP_HWCSUM, 0);
36700d12766SMarius Strobl 
36842c1b001SThomas Moestl 	return (0);
36942c1b001SThomas Moestl 
37042c1b001SThomas Moestl 	/*
37142c1b001SThomas Moestl 	 * Free any resources we've allocated during the failed attach
37242c1b001SThomas Moestl 	 * attempt.  Do this in reverse order and fall through.
37342c1b001SThomas Moestl 	 */
374305f2c06SThomas Moestl  fail_rxd:
3752a79fd39SMarius Strobl 	for (i = 0; i < GEM_NRXDESC; i++)
37642c1b001SThomas Moestl 		if (sc->sc_rxsoft[i].rxs_dmamap != NULL)
377305f2c06SThomas Moestl 			bus_dmamap_destroy(sc->sc_rdmatag,
37842c1b001SThomas Moestl 			    sc->sc_rxsoft[i].rxs_dmamap);
379305f2c06SThomas Moestl  fail_txd:
3802a79fd39SMarius Strobl 	for (i = 0; i < GEM_TXQUEUELEN; i++)
38142c1b001SThomas Moestl 		if (sc->sc_txsoft[i].txs_dmamap != NULL)
382305f2c06SThomas Moestl 			bus_dmamap_destroy(sc->sc_tdmatag,
38342c1b001SThomas Moestl 			    sc->sc_txsoft[i].txs_dmamap);
384305f2c06SThomas Moestl 	bus_dmamap_unload(sc->sc_cdmatag, sc->sc_cddmamap);
385305f2c06SThomas Moestl  fail_cmem:
38642c1b001SThomas Moestl 	bus_dmamem_free(sc->sc_cdmatag, sc->sc_control_data,
38742c1b001SThomas Moestl 	    sc->sc_cddmamap);
388305f2c06SThomas Moestl  fail_ctag:
38942c1b001SThomas Moestl 	bus_dma_tag_destroy(sc->sc_cdmatag);
390305f2c06SThomas Moestl  fail_ttag:
391305f2c06SThomas Moestl 	bus_dma_tag_destroy(sc->sc_tdmatag);
392305f2c06SThomas Moestl  fail_rtag:
393305f2c06SThomas Moestl 	bus_dma_tag_destroy(sc->sc_rdmatag);
394305f2c06SThomas Moestl  fail_ptag:
39542c1b001SThomas Moestl 	bus_dma_tag_destroy(sc->sc_pdmatag);
396fc74a9f9SBrooks Davis  fail_ifnet:
397fc74a9f9SBrooks Davis 	if_free(ifp);
39842c1b001SThomas Moestl 	return (error);
39942c1b001SThomas Moestl }
40042c1b001SThomas Moestl 
401cbbdf236SThomas Moestl void
gem_detach(struct gem_softc * sc)4022a79fd39SMarius Strobl gem_detach(struct gem_softc *sc)
403cbbdf236SThomas Moestl {
4049f012efbSJustin Hibbits 	if_t ifp = sc->sc_ifp;
405cbbdf236SThomas Moestl 	int i;
406cbbdf236SThomas Moestl 
407b3a1f860SMarius Strobl 	ether_ifdetach(ifp);
4088cfaff7dSMarius Strobl 	GEM_LOCK(sc);
40925bd46d0SBrooks Davis 	gem_stop(ifp, 1);
4108cfaff7dSMarius Strobl 	GEM_UNLOCK(sc);
4111f317bf9SMarius Strobl 	callout_drain(&sc->sc_tick_ch);
4121f317bf9SMarius Strobl #ifdef GEM_RINT_TIMEOUT
4131f317bf9SMarius Strobl 	callout_drain(&sc->sc_rx_ch);
4141f317bf9SMarius Strobl #endif
415fc74a9f9SBrooks Davis 	if_free(ifp);
416*11a91178SJohn Baldwin 	bus_generic_detach(sc->sc_dev);
417cbbdf236SThomas Moestl 
4182a79fd39SMarius Strobl 	for (i = 0; i < GEM_NRXDESC; i++)
419cbbdf236SThomas Moestl 		if (sc->sc_rxsoft[i].rxs_dmamap != NULL)
420cbbdf236SThomas Moestl 			bus_dmamap_destroy(sc->sc_rdmatag,
421cbbdf236SThomas Moestl 			    sc->sc_rxsoft[i].rxs_dmamap);
4222a79fd39SMarius Strobl 	for (i = 0; i < GEM_TXQUEUELEN; i++)
423cbbdf236SThomas Moestl 		if (sc->sc_txsoft[i].txs_dmamap != NULL)
424cbbdf236SThomas Moestl 			bus_dmamap_destroy(sc->sc_tdmatag,
425cbbdf236SThomas Moestl 			    sc->sc_txsoft[i].txs_dmamap);
426ccb1212aSMarius Strobl 	GEM_CDSYNC(sc, BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
427cbbdf236SThomas Moestl 	bus_dmamap_unload(sc->sc_cdmatag, sc->sc_cddmamap);
428cbbdf236SThomas Moestl 	bus_dmamem_free(sc->sc_cdmatag, sc->sc_control_data,
429cbbdf236SThomas Moestl 	    sc->sc_cddmamap);
430cbbdf236SThomas Moestl 	bus_dma_tag_destroy(sc->sc_cdmatag);
431cbbdf236SThomas Moestl 	bus_dma_tag_destroy(sc->sc_tdmatag);
432cbbdf236SThomas Moestl 	bus_dma_tag_destroy(sc->sc_rdmatag);
433cbbdf236SThomas Moestl 	bus_dma_tag_destroy(sc->sc_pdmatag);
434cbbdf236SThomas Moestl }
435cbbdf236SThomas Moestl 
436cbbdf236SThomas Moestl void
gem_suspend(struct gem_softc * sc)4372a79fd39SMarius Strobl gem_suspend(struct gem_softc *sc)
438cbbdf236SThomas Moestl {
4399f012efbSJustin Hibbits 	if_t ifp = sc->sc_ifp;
440cbbdf236SThomas Moestl 
4418cfaff7dSMarius Strobl 	GEM_LOCK(sc);
442cbbdf236SThomas Moestl 	gem_stop(ifp, 0);
4438cfaff7dSMarius Strobl 	GEM_UNLOCK(sc);
444cbbdf236SThomas Moestl }
445cbbdf236SThomas Moestl 
446cbbdf236SThomas Moestl void
gem_resume(struct gem_softc * sc)4472a79fd39SMarius Strobl gem_resume(struct gem_softc *sc)
448cbbdf236SThomas Moestl {
4499f012efbSJustin Hibbits 	if_t ifp = sc->sc_ifp;
450cbbdf236SThomas Moestl 
4518cfaff7dSMarius Strobl 	GEM_LOCK(sc);
45200d12766SMarius Strobl 	/*
45300d12766SMarius Strobl 	 * On resume all registers have to be initialized again like
45400d12766SMarius Strobl 	 * after power-on.
45500d12766SMarius Strobl 	 */
4561ed3fed7SMarius Strobl 	sc->sc_flags &= ~GEM_INITED;
4579f012efbSJustin Hibbits 	if (if_getflags(ifp) & IFF_UP)
4588cfaff7dSMarius Strobl 		gem_init_locked(sc);
4598cfaff7dSMarius Strobl 	GEM_UNLOCK(sc);
460cbbdf236SThomas Moestl }
461cbbdf236SThomas Moestl 
4629ba2b298SMarius Strobl static inline void
gem_rxcksum(struct mbuf * m,uint64_t flags)46312fb0330SPyun YongHyeon gem_rxcksum(struct mbuf *m, uint64_t flags)
46412fb0330SPyun YongHyeon {
46512fb0330SPyun YongHyeon 	struct ether_header *eh;
46612fb0330SPyun YongHyeon 	struct ip *ip;
46712fb0330SPyun YongHyeon 	struct udphdr *uh;
4682a79fd39SMarius Strobl 	uint16_t *opts;
46912fb0330SPyun YongHyeon 	int32_t hlen, len, pktlen;
47012fb0330SPyun YongHyeon 	uint32_t temp32;
4712a79fd39SMarius Strobl 	uint16_t cksum;
47212fb0330SPyun YongHyeon 
47312fb0330SPyun YongHyeon 	pktlen = m->m_pkthdr.len;
47412fb0330SPyun YongHyeon 	if (pktlen < sizeof(struct ether_header) + sizeof(struct ip))
47512fb0330SPyun YongHyeon 		return;
47612fb0330SPyun YongHyeon 	eh = mtod(m, struct ether_header *);
47712fb0330SPyun YongHyeon 	if (eh->ether_type != htons(ETHERTYPE_IP))
47812fb0330SPyun YongHyeon 		return;
47912fb0330SPyun YongHyeon 	ip = (struct ip *)(eh + 1);
48012fb0330SPyun YongHyeon 	if (ip->ip_v != IPVERSION)
48112fb0330SPyun YongHyeon 		return;
48212fb0330SPyun YongHyeon 
48312fb0330SPyun YongHyeon 	hlen = ip->ip_hl << 2;
48412fb0330SPyun YongHyeon 	pktlen -= sizeof(struct ether_header);
48512fb0330SPyun YongHyeon 	if (hlen < sizeof(struct ip))
48612fb0330SPyun YongHyeon 		return;
48712fb0330SPyun YongHyeon 	if (ntohs(ip->ip_len) < hlen)
48812fb0330SPyun YongHyeon 		return;
48912fb0330SPyun YongHyeon 	if (ntohs(ip->ip_len) != pktlen)
49012fb0330SPyun YongHyeon 		return;
49112fb0330SPyun YongHyeon 	if (ip->ip_off & htons(IP_MF | IP_OFFMASK))
4922a79fd39SMarius Strobl 		return;	/* Cannot handle fragmented packet. */
49312fb0330SPyun YongHyeon 
49412fb0330SPyun YongHyeon 	switch (ip->ip_p) {
49512fb0330SPyun YongHyeon 	case IPPROTO_TCP:
49612fb0330SPyun YongHyeon 		if (pktlen < (hlen + sizeof(struct tcphdr)))
49712fb0330SPyun YongHyeon 			return;
49812fb0330SPyun YongHyeon 		break;
49912fb0330SPyun YongHyeon 	case IPPROTO_UDP:
50012fb0330SPyun YongHyeon 		if (pktlen < (hlen + sizeof(struct udphdr)))
50112fb0330SPyun YongHyeon 			return;
50212fb0330SPyun YongHyeon 		uh = (struct udphdr *)((uint8_t *)ip + hlen);
50312fb0330SPyun YongHyeon 		if (uh->uh_sum == 0)
50412fb0330SPyun YongHyeon 			return; /* no checksum */
50512fb0330SPyun YongHyeon 		break;
50612fb0330SPyun YongHyeon 	default:
50712fb0330SPyun YongHyeon 		return;
50812fb0330SPyun YongHyeon 	}
50912fb0330SPyun YongHyeon 
51012fb0330SPyun YongHyeon 	cksum = ~(flags & GEM_RD_CHECKSUM);
51112fb0330SPyun YongHyeon 	/* checksum fixup for IP options */
51212fb0330SPyun YongHyeon 	len = hlen - sizeof(struct ip);
51312fb0330SPyun YongHyeon 	if (len > 0) {
51412fb0330SPyun YongHyeon 		opts = (uint16_t *)(ip + 1);
51512fb0330SPyun YongHyeon 		for (; len > 0; len -= sizeof(uint16_t), opts++) {
51612fb0330SPyun YongHyeon 			temp32 = cksum - *opts;
51712fb0330SPyun YongHyeon 			temp32 = (temp32 >> 16) + (temp32 & 65535);
51812fb0330SPyun YongHyeon 			cksum = temp32 & 65535;
51912fb0330SPyun YongHyeon 		}
52012fb0330SPyun YongHyeon 	}
52112fb0330SPyun YongHyeon 	m->m_pkthdr.csum_flags |= CSUM_DATA_VALID;
52212fb0330SPyun YongHyeon 	m->m_pkthdr.csum_data = cksum;
52312fb0330SPyun YongHyeon }
52412fb0330SPyun YongHyeon 
52542c1b001SThomas Moestl static void
gem_cddma_callback(void * xsc,bus_dma_segment_t * segs,int nsegs,int error)5262a79fd39SMarius Strobl gem_cddma_callback(void *xsc, bus_dma_segment_t *segs, int nsegs, int error)
52742c1b001SThomas Moestl {
5282a79fd39SMarius Strobl 	struct gem_softc *sc = xsc;
52942c1b001SThomas Moestl 
53042c1b001SThomas Moestl 	if (error != 0)
53142c1b001SThomas Moestl 		return;
5322a79fd39SMarius Strobl 	if (nsegs != 1)
5331ed3fed7SMarius Strobl 		panic("%s: bad control buffer segment count", __func__);
53442c1b001SThomas Moestl 	sc->sc_cddma = segs[0].ds_addr;
53542c1b001SThomas Moestl }
53642c1b001SThomas Moestl 
53742c1b001SThomas Moestl static void
gem_tick(void * arg)5382a79fd39SMarius Strobl gem_tick(void *arg)
53942c1b001SThomas Moestl {
54042c1b001SThomas Moestl 	struct gem_softc *sc = arg;
5419f012efbSJustin Hibbits 	if_t ifp = sc->sc_ifp;
54278d22f42SMarius Strobl 	uint32_t v;
54342c1b001SThomas Moestl 
5441f317bf9SMarius Strobl 	GEM_LOCK_ASSERT(sc, MA_OWNED);
54512fb0330SPyun YongHyeon 
54612fb0330SPyun YongHyeon 	/*
54778d22f42SMarius Strobl 	 * Unload collision and error counters.
54812fb0330SPyun YongHyeon 	 */
5498da56a6fSGleb Smirnoff 	if_inc_counter(ifp, IFCOUNTER_COLLISIONS,
5508defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_MAC_NORM_COLL_CNT) +
5518defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_MAC_FIRST_COLL_CNT));
5528defc88cSMarius Strobl 	v = GEM_READ_4(sc, GEM_MAC_EXCESS_COLL_CNT) +
5538defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_MAC_LATE_COLL_CNT);
5548da56a6fSGleb Smirnoff 	if_inc_counter(ifp, IFCOUNTER_COLLISIONS, v);
5558da56a6fSGleb Smirnoff 	if_inc_counter(ifp, IFCOUNTER_OERRORS, v);
5568da56a6fSGleb Smirnoff 	if_inc_counter(ifp, IFCOUNTER_IERRORS,
5578defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_MAC_RX_LEN_ERR_CNT) +
5588defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_MAC_RX_ALIGN_ERR) +
5598defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_MAC_RX_CRC_ERR_CNT) +
5608defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_MAC_RX_CODE_VIOL));
56112fb0330SPyun YongHyeon 
56212fb0330SPyun YongHyeon 	/*
563801772ecSMarius Strobl 	 * Then clear the hardware counters.
56412fb0330SPyun YongHyeon 	 */
5658defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_NORM_COLL_CNT, 0);
5668defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_FIRST_COLL_CNT, 0);
5678defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_EXCESS_COLL_CNT, 0);
5688defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_LATE_COLL_CNT, 0);
5698defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_RX_LEN_ERR_CNT, 0);
5708defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_RX_ALIGN_ERR, 0);
5718defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_RX_CRC_ERR_CNT, 0);
5728defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_RX_CODE_VIOL, 0);
57312fb0330SPyun YongHyeon 
57442c1b001SThomas Moestl 	mii_tick(sc->sc_mii);
57542c1b001SThomas Moestl 
5768cb37876SMarius Strobl 	if (gem_watchdog(sc) == EJUSTRETURN)
5778cb37876SMarius Strobl 		return;
5788cb37876SMarius Strobl 
57942c1b001SThomas Moestl 	callout_reset(&sc->sc_tick_ch, hz, gem_tick, sc);
58042c1b001SThomas Moestl }
58142c1b001SThomas Moestl 
58242c1b001SThomas Moestl static int
gem_bitwait(struct gem_softc * sc,bus_addr_t r,uint32_t clr,uint32_t set)5838defc88cSMarius Strobl gem_bitwait(struct gem_softc *sc, bus_addr_t r, uint32_t clr, uint32_t set)
58442c1b001SThomas Moestl {
58542c1b001SThomas Moestl 	int i;
5862a79fd39SMarius Strobl 	uint32_t reg;
58742c1b001SThomas Moestl 
5889ba2b298SMarius Strobl 	for (i = GEM_TRIES; i--; DELAY(100)) {
5898defc88cSMarius Strobl 		reg = GEM_READ_4(sc, r);
590e87137e1SMarius Strobl 		if ((reg & clr) == 0 && (reg & set) == set)
59142c1b001SThomas Moestl 			return (1);
59242c1b001SThomas Moestl 	}
59342c1b001SThomas Moestl 	return (0);
59442c1b001SThomas Moestl }
59542c1b001SThomas Moestl 
5961ed3fed7SMarius Strobl static void
gem_reset(struct gem_softc * sc)5979ba2b298SMarius Strobl gem_reset(struct gem_softc *sc)
59842c1b001SThomas Moestl {
59942c1b001SThomas Moestl 
60018100346SThomas Moestl #ifdef GEM_DEBUG
60112fb0330SPyun YongHyeon 	CTR2(KTR_GEM, "%s: %s", device_get_name(sc->sc_dev), __func__);
60218100346SThomas Moestl #endif
60342c1b001SThomas Moestl 	gem_reset_rx(sc);
60442c1b001SThomas Moestl 	gem_reset_tx(sc);
60542c1b001SThomas Moestl 
6062a79fd39SMarius Strobl 	/* Do a full reset. */
6078defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_RESET, GEM_RESET_RX | GEM_RESET_TX);
6088defc88cSMarius Strobl 	GEM_BARRIER(sc, GEM_RESET, 4,
609ccb1212aSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
6108defc88cSMarius Strobl 	if (!gem_bitwait(sc, GEM_RESET, GEM_RESET_RX | GEM_RESET_TX, 0))
61142c1b001SThomas Moestl 		device_printf(sc->sc_dev, "cannot reset device\n");
61242c1b001SThomas Moestl }
61342c1b001SThomas Moestl 
61442c1b001SThomas Moestl static void
gem_rxdrain(struct gem_softc * sc)6152a79fd39SMarius Strobl gem_rxdrain(struct gem_softc *sc)
61642c1b001SThomas Moestl {
61742c1b001SThomas Moestl 	struct gem_rxsoft *rxs;
61842c1b001SThomas Moestl 	int i;
61942c1b001SThomas Moestl 
62042c1b001SThomas Moestl 	for (i = 0; i < GEM_NRXDESC; i++) {
62142c1b001SThomas Moestl 		rxs = &sc->sc_rxsoft[i];
62242c1b001SThomas Moestl 		if (rxs->rxs_mbuf != NULL) {
623b2d59f42SThomas Moestl 			bus_dmamap_sync(sc->sc_rdmatag, rxs->rxs_dmamap,
624b2d59f42SThomas Moestl 			    BUS_DMASYNC_POSTREAD);
625305f2c06SThomas Moestl 			bus_dmamap_unload(sc->sc_rdmatag, rxs->rxs_dmamap);
62642c1b001SThomas Moestl 			m_freem(rxs->rxs_mbuf);
62742c1b001SThomas Moestl 			rxs->rxs_mbuf = NULL;
62842c1b001SThomas Moestl 		}
62942c1b001SThomas Moestl 	}
63042c1b001SThomas Moestl }
63142c1b001SThomas Moestl 
63242c1b001SThomas Moestl static void
gem_stop(if_t ifp,int disable)6339f012efbSJustin Hibbits gem_stop(if_t ifp, int disable)
63442c1b001SThomas Moestl {
6359f012efbSJustin Hibbits 	struct gem_softc *sc = if_getsoftc(ifp);
63642c1b001SThomas Moestl 	struct gem_txsoft *txs;
63742c1b001SThomas Moestl 
63818100346SThomas Moestl #ifdef GEM_DEBUG
63912fb0330SPyun YongHyeon 	CTR2(KTR_GEM, "%s: %s", device_get_name(sc->sc_dev), __func__);
64018100346SThomas Moestl #endif
64142c1b001SThomas Moestl 
64242c1b001SThomas Moestl 	callout_stop(&sc->sc_tick_ch);
6431f317bf9SMarius Strobl #ifdef GEM_RINT_TIMEOUT
6441f317bf9SMarius Strobl 	callout_stop(&sc->sc_rx_ch);
6451f317bf9SMarius Strobl #endif
64642c1b001SThomas Moestl 
6479ba2b298SMarius Strobl 	gem_reset_tx(sc);
6489ba2b298SMarius Strobl 	gem_reset_rx(sc);
64942c1b001SThomas Moestl 
65042c1b001SThomas Moestl 	/*
65142c1b001SThomas Moestl 	 * Release any queued transmit buffers.
65242c1b001SThomas Moestl 	 */
65342c1b001SThomas Moestl 	while ((txs = STAILQ_FIRST(&sc->sc_txdirtyq)) != NULL) {
65442c1b001SThomas Moestl 		STAILQ_REMOVE_HEAD(&sc->sc_txdirtyq, txs_q);
65542c1b001SThomas Moestl 		if (txs->txs_ndescs != 0) {
656b2d59f42SThomas Moestl 			bus_dmamap_sync(sc->sc_tdmatag, txs->txs_dmamap,
657b2d59f42SThomas Moestl 			    BUS_DMASYNC_POSTWRITE);
658305f2c06SThomas Moestl 			bus_dmamap_unload(sc->sc_tdmatag, txs->txs_dmamap);
65942c1b001SThomas Moestl 			if (txs->txs_mbuf != NULL) {
66042c1b001SThomas Moestl 				m_freem(txs->txs_mbuf);
66142c1b001SThomas Moestl 				txs->txs_mbuf = NULL;
66242c1b001SThomas Moestl 			}
66342c1b001SThomas Moestl 		}
66442c1b001SThomas Moestl 		STAILQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q);
66542c1b001SThomas Moestl 	}
66642c1b001SThomas Moestl 
66742c1b001SThomas Moestl 	if (disable)
66842c1b001SThomas Moestl 		gem_rxdrain(sc);
66942c1b001SThomas Moestl 
67042c1b001SThomas Moestl 	/*
67142c1b001SThomas Moestl 	 * Mark the interface down and cancel the watchdog timer.
67242c1b001SThomas Moestl 	 */
6739f012efbSJustin Hibbits 	if_setdrvflagbits(ifp, 0, (IFF_DRV_RUNNING | IFF_DRV_OACTIVE));
6741ed3fed7SMarius Strobl 	sc->sc_flags &= ~GEM_LINK;
6758cb37876SMarius Strobl 	sc->sc_wdog_timer = 0;
67642c1b001SThomas Moestl }
67742c1b001SThomas Moestl 
6781ed3fed7SMarius Strobl static int
gem_reset_rx(struct gem_softc * sc)6792a79fd39SMarius Strobl gem_reset_rx(struct gem_softc *sc)
68042c1b001SThomas Moestl {
68142c1b001SThomas Moestl 
68242c1b001SThomas Moestl 	/*
68342c1b001SThomas Moestl 	 * Resetting while DMA is in progress can cause a bus hang, so we
68442c1b001SThomas Moestl 	 * disable DMA first.
68542c1b001SThomas Moestl 	 */
686c0e3e9d4SMarius Strobl 	(void)gem_disable_rx(sc);
6878defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_RX_CONFIG, 0);
6888defc88cSMarius Strobl 	GEM_BARRIER(sc, GEM_RX_CONFIG, 4,
689ccb1212aSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
6908defc88cSMarius Strobl 	if (!gem_bitwait(sc, GEM_RX_CONFIG, GEM_RX_CONFIG_RXDMA_EN, 0))
6911ed3fed7SMarius Strobl 		device_printf(sc->sc_dev, "cannot disable RX DMA\n");
69242c1b001SThomas Moestl 
6939a68cbd3SMarius Strobl 	/* Wait 5ms extra. */
6949a68cbd3SMarius Strobl 	DELAY(5000);
6959a68cbd3SMarius Strobl 
696c0e3e9d4SMarius Strobl 	/* Reset the ERX. */
6978defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_RESET, GEM_RESET_RX);
6988defc88cSMarius Strobl 	GEM_BARRIER(sc, GEM_RESET, 4,
699ccb1212aSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
7008defc88cSMarius Strobl 	if (!gem_bitwait(sc, GEM_RESET, GEM_RESET_RX, 0)) {
70142c1b001SThomas Moestl 		device_printf(sc->sc_dev, "cannot reset receiver\n");
70242c1b001SThomas Moestl 		return (1);
70342c1b001SThomas Moestl 	}
704c0e3e9d4SMarius Strobl 
705c0e3e9d4SMarius Strobl 	/* Finally, reset RX MAC. */
7068defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_RXRESET, 1);
7078defc88cSMarius Strobl 	GEM_BARRIER(sc, GEM_MAC_RXRESET, 4,
708c0e3e9d4SMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
7098defc88cSMarius Strobl 	if (!gem_bitwait(sc, GEM_MAC_RXRESET, 1, 0)) {
710c0e3e9d4SMarius Strobl 		device_printf(sc->sc_dev, "cannot reset RX MAC\n");
711c0e3e9d4SMarius Strobl 		return (1);
712c0e3e9d4SMarius Strobl 	}
713c0e3e9d4SMarius Strobl 
71442c1b001SThomas Moestl 	return (0);
71542c1b001SThomas Moestl }
71642c1b001SThomas Moestl 
7171ed3fed7SMarius Strobl /*
7181ed3fed7SMarius Strobl  * Reset the receiver DMA engine.
7191ed3fed7SMarius Strobl  *
7201ed3fed7SMarius Strobl  * Intended to be used in case of GEM_INTR_RX_TAG_ERR, GEM_MAC_RX_OVERFLOW
7211ed3fed7SMarius Strobl  * etc in order to reset the receiver DMA engine only and not do a full
7221ed3fed7SMarius Strobl  * reset which amongst others also downs the link and clears the FIFOs.
7231ed3fed7SMarius Strobl  */
7241ed3fed7SMarius Strobl static void
gem_reset_rxdma(struct gem_softc * sc)7251ed3fed7SMarius Strobl gem_reset_rxdma(struct gem_softc *sc)
7261ed3fed7SMarius Strobl {
7271ed3fed7SMarius Strobl 	int i;
7281ed3fed7SMarius Strobl 
72983242185SPyun YongHyeon 	if (gem_reset_rx(sc) != 0) {
7309f012efbSJustin Hibbits 		if_setdrvflagbits(sc->sc_ifp, 0, IFF_DRV_RUNNING);
7311ed3fed7SMarius Strobl 		return (gem_init_locked(sc));
73283242185SPyun YongHyeon 	}
7331ed3fed7SMarius Strobl 	for (i = 0; i < GEM_NRXDESC; i++)
7341ed3fed7SMarius Strobl 		if (sc->sc_rxsoft[i].rxs_mbuf != NULL)
7351ed3fed7SMarius Strobl 			GEM_UPDATE_RXDESC(sc, i);
7361ed3fed7SMarius Strobl 	sc->sc_rxptr = 0;
7379ba2b298SMarius Strobl 	GEM_CDSYNC(sc, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
7381ed3fed7SMarius Strobl 
7391ed3fed7SMarius Strobl 	/* NOTE: we use only 32-bit DMA addresses here. */
7408defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_RX_RING_PTR_HI, 0);
7418defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_RX_RING_PTR_LO, GEM_CDRXADDR(sc, 0));
7428defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_RX_KICK, GEM_NRXDESC - 4);
7438defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_RX_CONFIG,
7441ed3fed7SMarius Strobl 	    gem_ringsize(GEM_NRXDESC /* XXX */) |
7451ed3fed7SMarius Strobl 	    ((ETHER_HDR_LEN + sizeof(struct ip)) <<
7461ed3fed7SMarius Strobl 	    GEM_RX_CONFIG_CXM_START_SHFT) |
7471ed3fed7SMarius Strobl 	    (GEM_THRSH_1024 << GEM_RX_CONFIG_FIFO_THRS_SHIFT) |
7489ba2b298SMarius Strobl 	    (ETHER_ALIGN << GEM_RX_CONFIG_FBOFF_SHFT));
7498defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_RX_BLANKING,
7509ba2b298SMarius Strobl 	    ((6 * (sc->sc_flags & GEM_PCI66) != 0 ? 2 : 1) <<
7519ba2b298SMarius Strobl 	    GEM_RX_BLANKING_TIME_SHIFT) | 6);
7528defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_RX_PAUSE_THRESH,
7532a79fd39SMarius Strobl 	    (3 * sc->sc_rxfifosize / 256) |
7542a79fd39SMarius Strobl 	    ((sc->sc_rxfifosize / 256) << 12));
7558defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_RX_CONFIG,
7568defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_RX_CONFIG) | GEM_RX_CONFIG_RXDMA_EN);
7578defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_RX_MASK,
7581ed3fed7SMarius Strobl 	    GEM_MAC_RX_DONE | GEM_MAC_RX_FRAME_CNT);
7595ed0b954SMarius Strobl 	/*
7605ed0b954SMarius Strobl 	 * Clear the RX filter and reprogram it.  This will also set the
7615ed0b954SMarius Strobl 	 * current RX MAC configuration and enable it.
7625ed0b954SMarius Strobl 	 */
7635ed0b954SMarius Strobl 	gem_setladrf(sc);
7641ed3fed7SMarius Strobl }
76542c1b001SThomas Moestl 
76642c1b001SThomas Moestl static int
gem_reset_tx(struct gem_softc * sc)7672a79fd39SMarius Strobl gem_reset_tx(struct gem_softc *sc)
76842c1b001SThomas Moestl {
76942c1b001SThomas Moestl 
77042c1b001SThomas Moestl 	/*
77142c1b001SThomas Moestl 	 * Resetting while DMA is in progress can cause a bus hang, so we
77242c1b001SThomas Moestl 	 * disable DMA first.
77342c1b001SThomas Moestl 	 */
774c0e3e9d4SMarius Strobl 	(void)gem_disable_tx(sc);
7758defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_TX_CONFIG, 0);
7768defc88cSMarius Strobl 	GEM_BARRIER(sc, GEM_TX_CONFIG, 4,
777ccb1212aSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
7788defc88cSMarius Strobl 	if (!gem_bitwait(sc, GEM_TX_CONFIG, GEM_TX_CONFIG_TXDMA_EN, 0))
7791ed3fed7SMarius Strobl 		device_printf(sc->sc_dev, "cannot disable TX DMA\n");
78042c1b001SThomas Moestl 
7819a68cbd3SMarius Strobl 	/* Wait 5ms extra. */
7829a68cbd3SMarius Strobl 	DELAY(5000);
7839a68cbd3SMarius Strobl 
784801772ecSMarius Strobl 	/* Finally, reset the ETX. */
7858defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_RESET, GEM_RESET_TX);
7868defc88cSMarius Strobl 	GEM_BARRIER(sc, GEM_RESET, 4,
787ccb1212aSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
7888defc88cSMarius Strobl 	if (!gem_bitwait(sc, GEM_RESET, GEM_RESET_TX, 0)) {
7891ed3fed7SMarius Strobl 		device_printf(sc->sc_dev, "cannot reset transmitter\n");
79042c1b001SThomas Moestl 		return (1);
79142c1b001SThomas Moestl 	}
79242c1b001SThomas Moestl 	return (0);
79342c1b001SThomas Moestl }
79442c1b001SThomas Moestl 
79542c1b001SThomas Moestl static int
gem_disable_rx(struct gem_softc * sc)7962a79fd39SMarius Strobl gem_disable_rx(struct gem_softc *sc)
79742c1b001SThomas Moestl {
79842c1b001SThomas Moestl 
7998defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_RX_CONFIG,
8008defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_MAC_RX_CONFIG) & ~GEM_MAC_RX_ENABLE);
8018defc88cSMarius Strobl 	GEM_BARRIER(sc, GEM_MAC_RX_CONFIG, 4,
802ccb1212aSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
8038defc88cSMarius Strobl 	if (gem_bitwait(sc, GEM_MAC_RX_CONFIG, GEM_MAC_RX_ENABLE, 0))
804c0e3e9d4SMarius Strobl 		return (1);
805c0e3e9d4SMarius Strobl 	device_printf(sc->sc_dev, "cannot disable RX MAC\n");
806c0e3e9d4SMarius Strobl 	return (0);
80742c1b001SThomas Moestl }
80842c1b001SThomas Moestl 
80942c1b001SThomas Moestl static int
gem_disable_tx(struct gem_softc * sc)8102a79fd39SMarius Strobl gem_disable_tx(struct gem_softc *sc)
81142c1b001SThomas Moestl {
81242c1b001SThomas Moestl 
8138defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_TX_CONFIG,
8148defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_MAC_TX_CONFIG) & ~GEM_MAC_TX_ENABLE);
8158defc88cSMarius Strobl 	GEM_BARRIER(sc, GEM_MAC_TX_CONFIG, 4,
816ccb1212aSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
8178defc88cSMarius Strobl 	if (gem_bitwait(sc, GEM_MAC_TX_CONFIG, GEM_MAC_TX_ENABLE, 0))
818c0e3e9d4SMarius Strobl 		return (1);
819c0e3e9d4SMarius Strobl 	device_printf(sc->sc_dev, "cannot disable TX MAC\n");
820c0e3e9d4SMarius Strobl 	return (0);
82142c1b001SThomas Moestl }
82242c1b001SThomas Moestl 
82342c1b001SThomas Moestl static int
gem_meminit(struct gem_softc * sc)8249ba2b298SMarius Strobl gem_meminit(struct gem_softc *sc)
82542c1b001SThomas Moestl {
82642c1b001SThomas Moestl 	struct gem_rxsoft *rxs;
8272a79fd39SMarius Strobl 	int error, i;
82842c1b001SThomas Moestl 
8299ba2b298SMarius Strobl 	GEM_LOCK_ASSERT(sc, MA_OWNED);
8309ba2b298SMarius Strobl 
83142c1b001SThomas Moestl 	/*
83242c1b001SThomas Moestl 	 * Initialize the transmit descriptor ring.
83342c1b001SThomas Moestl 	 */
83442c1b001SThomas Moestl 	for (i = 0; i < GEM_NTXDESC; i++) {
83542c1b001SThomas Moestl 		sc->sc_txdescs[i].gd_flags = 0;
83642c1b001SThomas Moestl 		sc->sc_txdescs[i].gd_addr = 0;
83742c1b001SThomas Moestl 	}
838305f2c06SThomas Moestl 	sc->sc_txfree = GEM_MAXTXFREE;
83942c1b001SThomas Moestl 	sc->sc_txnext = 0;
840336cca9eSBenno Rice 	sc->sc_txwin = 0;
84142c1b001SThomas Moestl 
84242c1b001SThomas Moestl 	/*
84342c1b001SThomas Moestl 	 * Initialize the receive descriptor and receive job
84442c1b001SThomas Moestl 	 * descriptor rings.
84542c1b001SThomas Moestl 	 */
84642c1b001SThomas Moestl 	for (i = 0; i < GEM_NRXDESC; i++) {
84742c1b001SThomas Moestl 		rxs = &sc->sc_rxsoft[i];
84842c1b001SThomas Moestl 		if (rxs->rxs_mbuf == NULL) {
84942c1b001SThomas Moestl 			if ((error = gem_add_rxbuf(sc, i)) != 0) {
8502a79fd39SMarius Strobl 				device_printf(sc->sc_dev,
8512a79fd39SMarius Strobl 				    "unable to allocate or map RX buffer %d, "
8522a79fd39SMarius Strobl 				    "error = %d\n", i, error);
85342c1b001SThomas Moestl 				/*
8542a79fd39SMarius Strobl 				 * XXX we should attempt to run with fewer
8552a79fd39SMarius Strobl 				 * receive buffers instead of just failing.
85642c1b001SThomas Moestl 				 */
85742c1b001SThomas Moestl 				gem_rxdrain(sc);
85842c1b001SThomas Moestl 				return (1);
85942c1b001SThomas Moestl 			}
86042c1b001SThomas Moestl 		} else
86142c1b001SThomas Moestl 			GEM_INIT_RXDESC(sc, i);
86242c1b001SThomas Moestl 	}
86342c1b001SThomas Moestl 	sc->sc_rxptr = 0;
8649ba2b298SMarius Strobl 
8659ba2b298SMarius Strobl 	GEM_CDSYNC(sc, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
86642c1b001SThomas Moestl 
86742c1b001SThomas Moestl 	return (0);
86842c1b001SThomas Moestl }
86942c1b001SThomas Moestl 
8701ed3fed7SMarius Strobl static u_int
gem_ringsize(u_int sz)8712a79fd39SMarius Strobl gem_ringsize(u_int sz)
87242c1b001SThomas Moestl {
87342c1b001SThomas Moestl 
87442c1b001SThomas Moestl 	switch (sz) {
87542c1b001SThomas Moestl 	case 32:
8761ed3fed7SMarius Strobl 		return (GEM_RING_SZ_32);
87742c1b001SThomas Moestl 	case 64:
8781ed3fed7SMarius Strobl 		return (GEM_RING_SZ_64);
87942c1b001SThomas Moestl 	case 128:
8801ed3fed7SMarius Strobl 		return (GEM_RING_SZ_128);
88142c1b001SThomas Moestl 	case 256:
8821ed3fed7SMarius Strobl 		return (GEM_RING_SZ_256);
88342c1b001SThomas Moestl 	case 512:
8841ed3fed7SMarius Strobl 		return (GEM_RING_SZ_512);
88542c1b001SThomas Moestl 	case 1024:
8861ed3fed7SMarius Strobl 		return (GEM_RING_SZ_1024);
88742c1b001SThomas Moestl 	case 2048:
8881ed3fed7SMarius Strobl 		return (GEM_RING_SZ_2048);
88942c1b001SThomas Moestl 	case 4096:
8901ed3fed7SMarius Strobl 		return (GEM_RING_SZ_4096);
89142c1b001SThomas Moestl 	case 8192:
8921ed3fed7SMarius Strobl 		return (GEM_RING_SZ_8192);
89342c1b001SThomas Moestl 	default:
8941ed3fed7SMarius Strobl 		printf("%s: invalid ring size %d\n", __func__, sz);
8951ed3fed7SMarius Strobl 		return (GEM_RING_SZ_32);
89642c1b001SThomas Moestl 	}
89742c1b001SThomas Moestl }
89842c1b001SThomas Moestl 
89942c1b001SThomas Moestl static void
gem_init(void * xsc)9002a79fd39SMarius Strobl gem_init(void *xsc)
90142c1b001SThomas Moestl {
9022a79fd39SMarius Strobl 	struct gem_softc *sc = xsc;
9038cfaff7dSMarius Strobl 
9048cfaff7dSMarius Strobl 	GEM_LOCK(sc);
9058cfaff7dSMarius Strobl 	gem_init_locked(sc);
9068cfaff7dSMarius Strobl 	GEM_UNLOCK(sc);
9078cfaff7dSMarius Strobl }
9088cfaff7dSMarius Strobl 
9098cfaff7dSMarius Strobl /*
9108cfaff7dSMarius Strobl  * Initialization of interface; set up initialization block
9118cfaff7dSMarius Strobl  * and transmit/receive descriptor rings.
9128cfaff7dSMarius Strobl  */
9138cfaff7dSMarius Strobl static void
gem_init_locked(struct gem_softc * sc)9142a79fd39SMarius Strobl gem_init_locked(struct gem_softc *sc)
9158cfaff7dSMarius Strobl {
9169f012efbSJustin Hibbits 	if_t ifp = sc->sc_ifp;
9172a79fd39SMarius Strobl 	uint32_t v;
91842c1b001SThomas Moestl 
9198cfaff7dSMarius Strobl 	GEM_LOCK_ASSERT(sc, MA_OWNED);
92042c1b001SThomas Moestl 
9219f012efbSJustin Hibbits 	if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0)
92283242185SPyun YongHyeon 		return;
92383242185SPyun YongHyeon 
92418100346SThomas Moestl #ifdef GEM_DEBUG
92512fb0330SPyun YongHyeon 	CTR2(KTR_GEM, "%s: %s: calling stop", device_get_name(sc->sc_dev),
92612fb0330SPyun YongHyeon 	    __func__);
92718100346SThomas Moestl #endif
92842c1b001SThomas Moestl 	/*
92942c1b001SThomas Moestl 	 * Initialization sequence.  The numbered steps below correspond
93042c1b001SThomas Moestl 	 * to the sequence outlined in section 6.3.5.1 in the Ethernet
93142c1b001SThomas Moestl 	 * Channel Engine manual (part of the PCIO manual).
93242c1b001SThomas Moestl 	 * See also the STP2002-STQ document from Sun Microsystems.
93342c1b001SThomas Moestl 	 */
93442c1b001SThomas Moestl 
9352a79fd39SMarius Strobl 	/* step 1 & 2.  Reset the Ethernet Channel. */
936ccb1212aSMarius Strobl 	gem_stop(ifp, 0);
93742c1b001SThomas Moestl 	gem_reset(sc);
93818100346SThomas Moestl #ifdef GEM_DEBUG
93912fb0330SPyun YongHyeon 	CTR2(KTR_GEM, "%s: %s: restarting", device_get_name(sc->sc_dev),
94012fb0330SPyun YongHyeon 	    __func__);
94118100346SThomas Moestl #endif
94242c1b001SThomas Moestl 
94365f2c0ffSMarius Strobl 	if ((sc->sc_flags & GEM_SERDES) == 0)
9442a79fd39SMarius Strobl 		/* Re-initialize the MIF. */
94542c1b001SThomas Moestl 		gem_mifinit(sc);
94642c1b001SThomas Moestl 
9472a79fd39SMarius Strobl 	/* step 3.  Setup data structures in host memory. */
9481ed3fed7SMarius Strobl 	if (gem_meminit(sc) != 0)
9491ed3fed7SMarius Strobl 		return;
95042c1b001SThomas Moestl 
95142c1b001SThomas Moestl 	/* step 4.  TX MAC registers & counters */
95242c1b001SThomas Moestl 	gem_init_regs(sc);
95342c1b001SThomas Moestl 
95442c1b001SThomas Moestl 	/* step 5.  RX MAC registers & counters */
95542c1b001SThomas Moestl 
9562a79fd39SMarius Strobl 	/* step 6 & 7.  Program Descriptor Ring Base Addresses. */
95742c1b001SThomas Moestl 	/* NOTE: we use only 32-bit DMA addresses here. */
9588defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_TX_RING_PTR_HI, 0);
9598defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_TX_RING_PTR_LO, GEM_CDTXADDR(sc, 0));
96042c1b001SThomas Moestl 
9618defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_RX_RING_PTR_HI, 0);
9628defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_RX_RING_PTR_LO, GEM_CDRXADDR(sc, 0));
96318100346SThomas Moestl #ifdef GEM_DEBUG
9642a79fd39SMarius Strobl 	CTR3(KTR_GEM, "loading RX ring %lx, TX ring %lx, cddma %lx",
96542c1b001SThomas Moestl 	    GEM_CDRXADDR(sc, 0), GEM_CDTXADDR(sc, 0), sc->sc_cddma);
96618100346SThomas Moestl #endif
96742c1b001SThomas Moestl 
96842c1b001SThomas Moestl 	/* step 8.  Global Configuration & Interrupt Mask */
9699ba2b298SMarius Strobl 
9709ba2b298SMarius Strobl 	/*
9719ba2b298SMarius Strobl 	 * Set the internal arbitration to "infinite" bursts of the
9729ba2b298SMarius Strobl 	 * maximum length of 31 * 64 bytes so DMA transfers aren't
9739ba2b298SMarius Strobl 	 * split up in cache line size chunks.  This greatly improves
9749ba2b298SMarius Strobl 	 * RX performance.
9759ba2b298SMarius Strobl 	 * Enable silicon bug workarounds for the Apple variants.
9769ba2b298SMarius Strobl 	 */
9778defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_CONFIG,
9789ba2b298SMarius Strobl 	    GEM_CONFIG_TXDMA_LIMIT | GEM_CONFIG_RXDMA_LIMIT |
9798defc88cSMarius Strobl 	    GEM_CONFIG_BURST_INF | (GEM_IS_APPLE(sc) ?
9809ba2b298SMarius Strobl 	    GEM_CONFIG_RONPAULBIT | GEM_CONFIG_BUG2FIX : 0));
9819ba2b298SMarius Strobl 
9828defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_INTMASK,
9831ed3fed7SMarius Strobl 	    ~(GEM_INTR_TX_INTME | GEM_INTR_TX_EMPTY | GEM_INTR_RX_DONE |
9841ed3fed7SMarius Strobl 	    GEM_INTR_RX_NOBUF | GEM_INTR_RX_TAG_ERR | GEM_INTR_PERR |
9851ed3fed7SMarius Strobl 	    GEM_INTR_BERR
9861ed3fed7SMarius Strobl #ifdef GEM_DEBUG
9871ed3fed7SMarius Strobl 	    | GEM_INTR_PCS | GEM_INTR_MIF
9881ed3fed7SMarius Strobl #endif
9891ed3fed7SMarius Strobl 	    ));
9908defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_RX_MASK,
991336cca9eSBenno Rice 	    GEM_MAC_RX_DONE | GEM_MAC_RX_FRAME_CNT);
9928defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_TX_MASK,
9939ba2b298SMarius Strobl 	    GEM_MAC_TX_XMIT_DONE | GEM_MAC_TX_DEFER_EXP |
9949ba2b298SMarius Strobl 	    GEM_MAC_TX_PEAK_EXP);
9951ed3fed7SMarius Strobl #ifdef GEM_DEBUG
9968defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_CONTROL_MASK,
9971ed3fed7SMarius Strobl 	    ~(GEM_MAC_PAUSED | GEM_MAC_PAUSE | GEM_MAC_RESUME));
9981ed3fed7SMarius Strobl #else
9998defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_CONTROL_MASK,
10001ed3fed7SMarius Strobl 	    GEM_MAC_PAUSED | GEM_MAC_PAUSE | GEM_MAC_RESUME);
10011ed3fed7SMarius Strobl #endif
100242c1b001SThomas Moestl 
10032a79fd39SMarius Strobl 	/* step 9.  ETX Configuration: use mostly default values. */
100442c1b001SThomas Moestl 
10052a79fd39SMarius Strobl 	/* Enable DMA. */
10069ba2b298SMarius Strobl 	v = gem_ringsize(GEM_NTXDESC);
10079ba2b298SMarius Strobl 	/* Set TX FIFO threshold and enable DMA. */
10088defc88cSMarius Strobl 	v |= (0x4ff << 10) & GEM_TX_CONFIG_TXFIFO_TH;
10098defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_TX_CONFIG, v | GEM_TX_CONFIG_TXDMA_EN);
101042c1b001SThomas Moestl 
101142c1b001SThomas Moestl 	/* step 10.  ERX Configuration */
101242c1b001SThomas Moestl 
10131ed3fed7SMarius Strobl 	/* Encode Receive Descriptor ring size. */
101442c1b001SThomas Moestl 	v = gem_ringsize(GEM_NRXDESC /* XXX */);
10152a79fd39SMarius Strobl 	/* RX TCP/UDP checksum offset */
101612fb0330SPyun YongHyeon 	v |= ((ETHER_HDR_LEN + sizeof(struct ip)) <<
101712fb0330SPyun YongHyeon 	    GEM_RX_CONFIG_CXM_START_SHFT);
10189ba2b298SMarius Strobl 	/* Set RX FIFO threshold, set first byte offset and enable DMA. */
10198defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_RX_CONFIG,
102042c1b001SThomas Moestl 	    v | (GEM_THRSH_1024 << GEM_RX_CONFIG_FIFO_THRS_SHIFT) |
10219ba2b298SMarius Strobl 	    (ETHER_ALIGN << GEM_RX_CONFIG_FBOFF_SHFT) |
10229ba2b298SMarius Strobl 	    GEM_RX_CONFIG_RXDMA_EN);
10231ed3fed7SMarius Strobl 
10248defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_RX_BLANKING,
10259ba2b298SMarius Strobl 	    ((6 * (sc->sc_flags & GEM_PCI66) != 0 ? 2 : 1) <<
10269ba2b298SMarius Strobl 	    GEM_RX_BLANKING_TIME_SHIFT) | 6);
10271ed3fed7SMarius Strobl 
102842c1b001SThomas Moestl 	/*
1029336cca9eSBenno Rice 	 * The following value is for an OFF Threshold of about 3/4 full
1030336cca9eSBenno Rice 	 * and an ON Threshold of 1/4 full.
103142c1b001SThomas Moestl 	 */
10328defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_RX_PAUSE_THRESH,
1033336cca9eSBenno Rice 	    (3 * sc->sc_rxfifosize / 256) |
1034336cca9eSBenno Rice 	    ((sc->sc_rxfifosize / 256) << 12));
103542c1b001SThomas Moestl 
10362a79fd39SMarius Strobl 	/* step 11.  Configure Media. */
103742c1b001SThomas Moestl 
103842c1b001SThomas Moestl 	/* step 12.  RX_MAC Configuration Register */
10398defc88cSMarius Strobl 	v = GEM_READ_4(sc, GEM_MAC_RX_CONFIG);
10405ed0b954SMarius Strobl 	v &= ~GEM_MAC_RX_ENABLE;
10415ed0b954SMarius Strobl 	v |= GEM_MAC_RX_STRIP_CRC;
10425ed0b954SMarius Strobl 	sc->sc_mac_rxcfg = v;
10435ed0b954SMarius Strobl 	/*
10445ed0b954SMarius Strobl 	 * Clear the RX filter and reprogram it.  This will also set the
10455ed0b954SMarius Strobl 	 * current RX MAC configuration and enable it.
10465ed0b954SMarius Strobl 	 */
10475ed0b954SMarius Strobl 	gem_setladrf(sc);
104842c1b001SThomas Moestl 
1049ccb1212aSMarius Strobl 	/* step 13.  TX_MAC Configuration Register */
10508defc88cSMarius Strobl 	v = GEM_READ_4(sc, GEM_MAC_TX_CONFIG);
1051ccb1212aSMarius Strobl 	v |= GEM_MAC_TX_ENABLE;
1052c0e3e9d4SMarius Strobl 	(void)gem_disable_tx(sc);
10538defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_TX_CONFIG, v);
1054ccb1212aSMarius Strobl 
10552a79fd39SMarius Strobl 	/* step 14.  Issue Transmit Pending command. */
105642c1b001SThomas Moestl 
1057af5ac863SMarius Strobl 	/* step 15.  Give the receiver a swift kick. */
10588defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_RX_KICK, GEM_NRXDESC - 4);
105942c1b001SThomas Moestl 
10609f012efbSJustin Hibbits 	if_setdrvflagbits(ifp, IFF_DRV_RUNNING, 0);
10619f012efbSJustin Hibbits 	if_setdrvflagbits(ifp, 0, IFF_DRV_OACTIVE);
10621ed3fed7SMarius Strobl 
10631ed3fed7SMarius Strobl 	mii_mediachg(sc->sc_mii);
10641ed3fed7SMarius Strobl 
10651ed3fed7SMarius Strobl 	/* Start the one second timer. */
10661ed3fed7SMarius Strobl 	sc->sc_wdog_timer = 0;
10671ed3fed7SMarius Strobl 	callout_reset(&sc->sc_tick_ch, hz, gem_tick, sc);
106842c1b001SThomas Moestl }
106942c1b001SThomas Moestl 
107012fb0330SPyun YongHyeon static int
gem_load_txmbuf(struct gem_softc * sc,struct mbuf ** m_head)10712a79fd39SMarius Strobl gem_load_txmbuf(struct gem_softc *sc, struct mbuf **m_head)
107212fb0330SPyun YongHyeon {
107312fb0330SPyun YongHyeon 	bus_dma_segment_t txsegs[GEM_NTXSEGS];
10742a79fd39SMarius Strobl 	struct gem_txsoft *txs;
1075ccb1212aSMarius Strobl 	struct ip *ip;
107612fb0330SPyun YongHyeon 	struct mbuf *m;
10772a79fd39SMarius Strobl 	uint64_t cflags, flags;
1078ccb1212aSMarius Strobl 	int error, nexttx, nsegs, offset, seg;
107942c1b001SThomas Moestl 
10809ba2b298SMarius Strobl 	GEM_LOCK_ASSERT(sc, MA_OWNED);
10819ba2b298SMarius Strobl 
108242c1b001SThomas Moestl 	/* Get a work queue entry. */
108342c1b001SThomas Moestl 	if ((txs = STAILQ_FIRST(&sc->sc_txfreeq)) == NULL) {
1084305f2c06SThomas Moestl 		/* Ran out of descriptors. */
108512fb0330SPyun YongHyeon 		return (ENOBUFS);
1086305f2c06SThomas Moestl 	}
1087ccb1212aSMarius Strobl 
1088ccb1212aSMarius Strobl 	cflags = 0;
1089ccb1212aSMarius Strobl 	if (((*m_head)->m_pkthdr.csum_flags & sc->sc_csum_features) != 0) {
1090ccb1212aSMarius Strobl 		if (M_WRITABLE(*m_head) == 0) {
1091c6499eccSGleb Smirnoff 			m = m_dup(*m_head, M_NOWAIT);
1092ccb1212aSMarius Strobl 			m_freem(*m_head);
1093ccb1212aSMarius Strobl 			*m_head = m;
1094ccb1212aSMarius Strobl 			if (m == NULL)
1095ccb1212aSMarius Strobl 				return (ENOBUFS);
1096ccb1212aSMarius Strobl 		}
1097ccb1212aSMarius Strobl 		offset = sizeof(struct ether_header);
1098ccb1212aSMarius Strobl 		m = m_pullup(*m_head, offset + sizeof(struct ip));
1099ccb1212aSMarius Strobl 		if (m == NULL) {
1100ccb1212aSMarius Strobl 			*m_head = NULL;
1101ccb1212aSMarius Strobl 			return (ENOBUFS);
1102ccb1212aSMarius Strobl 		}
1103ccb1212aSMarius Strobl 		ip = (struct ip *)(mtod(m, caddr_t) + offset);
1104ccb1212aSMarius Strobl 		offset += (ip->ip_hl << 2);
1105ccb1212aSMarius Strobl 		cflags = offset << GEM_TD_CXSUM_STARTSHFT |
1106ccb1212aSMarius Strobl 		    ((offset + m->m_pkthdr.csum_data) <<
1107ccb1212aSMarius Strobl 		    GEM_TD_CXSUM_STUFFSHFT) | GEM_TD_CXSUM_ENABLE;
1108ccb1212aSMarius Strobl 		*m_head = m;
1109ccb1212aSMarius Strobl 	}
1110ccb1212aSMarius Strobl 
111112fb0330SPyun YongHyeon 	error = bus_dmamap_load_mbuf_sg(sc->sc_tdmatag, txs->txs_dmamap,
111212fb0330SPyun YongHyeon 	    *m_head, txsegs, &nsegs, BUS_DMA_NOWAIT);
111312fb0330SPyun YongHyeon 	if (error == EFBIG) {
1114c6499eccSGleb Smirnoff 		m = m_collapse(*m_head, M_NOWAIT, GEM_NTXSEGS);
111512fb0330SPyun YongHyeon 		if (m == NULL) {
111612fb0330SPyun YongHyeon 			m_freem(*m_head);
111712fb0330SPyun YongHyeon 			*m_head = NULL;
111812fb0330SPyun YongHyeon 			return (ENOBUFS);
111912fb0330SPyun YongHyeon 		}
112012fb0330SPyun YongHyeon 		*m_head = m;
11212a79fd39SMarius Strobl 		error = bus_dmamap_load_mbuf_sg(sc->sc_tdmatag,
11222a79fd39SMarius Strobl 		    txs->txs_dmamap, *m_head, txsegs, &nsegs,
11232a79fd39SMarius Strobl 		    BUS_DMA_NOWAIT);
112412fb0330SPyun YongHyeon 		if (error != 0) {
112512fb0330SPyun YongHyeon 			m_freem(*m_head);
112612fb0330SPyun YongHyeon 			*m_head = NULL;
112712fb0330SPyun YongHyeon 			return (error);
112812fb0330SPyun YongHyeon 		}
112912fb0330SPyun YongHyeon 	} else if (error != 0)
113012fb0330SPyun YongHyeon 		return (error);
1131801772ecSMarius Strobl 	/* If nsegs is wrong then the stack is corrupt. */
1132801772ecSMarius Strobl 	KASSERT(nsegs <= GEM_NTXSEGS,
1133801772ecSMarius Strobl 	    ("%s: too many DMA segments (%d)", __func__, nsegs));
113412fb0330SPyun YongHyeon 	if (nsegs == 0) {
113512fb0330SPyun YongHyeon 		m_freem(*m_head);
113612fb0330SPyun YongHyeon 		*m_head = NULL;
113712fb0330SPyun YongHyeon 		return (EIO);
113812fb0330SPyun YongHyeon 	}
113912fb0330SPyun YongHyeon 
114012fb0330SPyun YongHyeon 	/*
114112fb0330SPyun YongHyeon 	 * Ensure we have enough descriptors free to describe
114212fb0330SPyun YongHyeon 	 * the packet.  Note, we always reserve one descriptor
11432a79fd39SMarius Strobl 	 * at the end of the ring as a termination point, in
11442a79fd39SMarius Strobl 	 * order to prevent wrap-around.
114512fb0330SPyun YongHyeon 	 */
114612fb0330SPyun YongHyeon 	if (nsegs > sc->sc_txfree - 1) {
114712fb0330SPyun YongHyeon 		txs->txs_ndescs = 0;
114812fb0330SPyun YongHyeon 		bus_dmamap_unload(sc->sc_tdmatag, txs->txs_dmamap);
114912fb0330SPyun YongHyeon 		return (ENOBUFS);
115012fb0330SPyun YongHyeon 	}
115112fb0330SPyun YongHyeon 
115212fb0330SPyun YongHyeon 	txs->txs_ndescs = nsegs;
1153305f2c06SThomas Moestl 	txs->txs_firstdesc = sc->sc_txnext;
115412fb0330SPyun YongHyeon 	nexttx = txs->txs_firstdesc;
115512fb0330SPyun YongHyeon 	for (seg = 0; seg < nsegs; seg++, nexttx = GEM_NEXTTX(nexttx)) {
115612fb0330SPyun YongHyeon #ifdef GEM_DEBUG
11572a79fd39SMarius Strobl 		CTR6(KTR_GEM,
11582a79fd39SMarius Strobl 		    "%s: mapping seg %d (txd %d), len %lx, addr %#lx (%#lx)",
11592a79fd39SMarius Strobl 		    __func__, seg, nexttx, txsegs[seg].ds_len,
11608defc88cSMarius Strobl 		    txsegs[seg].ds_addr, htole64(txsegs[seg].ds_addr));
116112fb0330SPyun YongHyeon #endif
11628defc88cSMarius Strobl 		sc->sc_txdescs[nexttx].gd_addr = htole64(txsegs[seg].ds_addr);
116312fb0330SPyun YongHyeon 		KASSERT(txsegs[seg].ds_len < GEM_TD_BUFSIZE,
116412fb0330SPyun YongHyeon 		    ("%s: segment size too large!", __func__));
116512fb0330SPyun YongHyeon 		flags = txsegs[seg].ds_len & GEM_TD_BUFSIZE;
11668defc88cSMarius Strobl 		sc->sc_txdescs[nexttx].gd_flags = htole64(flags | cflags);
116712fb0330SPyun YongHyeon 		txs->txs_lastdesc = nexttx;
116842c1b001SThomas Moestl 	}
1169305f2c06SThomas Moestl 
11702a79fd39SMarius Strobl 	/* Set EOP on the last descriptor. */
117112fb0330SPyun YongHyeon #ifdef GEM_DEBUG
11722a79fd39SMarius Strobl 	CTR3(KTR_GEM, "%s: end of packet at segment %d, TX %d",
11732a79fd39SMarius Strobl 	    __func__, seg, nexttx);
117412fb0330SPyun YongHyeon #endif
117512fb0330SPyun YongHyeon 	sc->sc_txdescs[txs->txs_lastdesc].gd_flags |=
11768defc88cSMarius Strobl 	    htole64(GEM_TD_END_OF_PACKET);
117712fb0330SPyun YongHyeon 
11782a79fd39SMarius Strobl 	/* Lastly set SOP on the first descriptor. */
117912fb0330SPyun YongHyeon #ifdef GEM_DEBUG
11802a79fd39SMarius Strobl 	CTR3(KTR_GEM, "%s: start of packet at segment %d, TX %d",
11812a79fd39SMarius Strobl 	    __func__, seg, nexttx);
118212fb0330SPyun YongHyeon #endif
118312fb0330SPyun YongHyeon 	if (++sc->sc_txwin > GEM_NTXSEGS * 2 / 3) {
118412fb0330SPyun YongHyeon 		sc->sc_txwin = 0;
118512fb0330SPyun YongHyeon 		sc->sc_txdescs[txs->txs_firstdesc].gd_flags |=
11868defc88cSMarius Strobl 		    htole64(GEM_TD_INTERRUPT_ME | GEM_TD_START_OF_PACKET);
118712fb0330SPyun YongHyeon 	} else
118812fb0330SPyun YongHyeon 		sc->sc_txdescs[txs->txs_firstdesc].gd_flags |=
11898defc88cSMarius Strobl 		    htole64(GEM_TD_START_OF_PACKET);
119012fb0330SPyun YongHyeon 
119142c1b001SThomas Moestl 	/* Sync the DMA map. */
11922a79fd39SMarius Strobl 	bus_dmamap_sync(sc->sc_tdmatag, txs->txs_dmamap,
11932a79fd39SMarius Strobl 	    BUS_DMASYNC_PREWRITE);
1194305f2c06SThomas Moestl 
119518100346SThomas Moestl #ifdef GEM_DEBUG
119612fb0330SPyun YongHyeon 	CTR4(KTR_GEM, "%s: setting firstdesc=%d, lastdesc=%d, ndescs=%d",
11972a79fd39SMarius Strobl 	    __func__, txs->txs_firstdesc, txs->txs_lastdesc,
11982a79fd39SMarius Strobl 	    txs->txs_ndescs);
119918100346SThomas Moestl #endif
120042c1b001SThomas Moestl 	STAILQ_REMOVE_HEAD(&sc->sc_txfreeq, txs_q);
1201305f2c06SThomas Moestl 	STAILQ_INSERT_TAIL(&sc->sc_txdirtyq, txs, txs_q);
120212fb0330SPyun YongHyeon 	txs->txs_mbuf = *m_head;
1203305f2c06SThomas Moestl 
1204305f2c06SThomas Moestl 	sc->sc_txnext = GEM_NEXTTX(txs->txs_lastdesc);
1205305f2c06SThomas Moestl 	sc->sc_txfree -= txs->txs_ndescs;
120642c1b001SThomas Moestl 
120712fb0330SPyun YongHyeon 	return (0);
120842c1b001SThomas Moestl }
120942c1b001SThomas Moestl 
121042c1b001SThomas Moestl static void
gem_init_regs(struct gem_softc * sc)12112a79fd39SMarius Strobl gem_init_regs(struct gem_softc *sc)
121242c1b001SThomas Moestl {
12139f012efbSJustin Hibbits 	const u_char *laddr = if_getlladdr(sc->sc_ifp);
121442c1b001SThomas Moestl 
12159ba2b298SMarius Strobl 	GEM_LOCK_ASSERT(sc, MA_OWNED);
12169ba2b298SMarius Strobl 
12172a79fd39SMarius Strobl 	/* These registers are not cleared on reset. */
12181ed3fed7SMarius Strobl 	if ((sc->sc_flags & GEM_INITED) == 0) {
12192a79fd39SMarius Strobl 		/* magic values */
12208defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_IPG0, 0);
12218defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_IPG1, 8);
12228defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_IPG2, 4);
122342c1b001SThomas Moestl 
12249ba2b298SMarius Strobl 		/* min frame length */
12258defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_MAC_MIN_FRAME, ETHER_MIN_LEN);
12269ba2b298SMarius Strobl 		/* max frame length and max burst size */
12278defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_MAC_MAX_FRAME,
12281ed3fed7SMarius Strobl 		    (ETHER_MAX_LEN + ETHER_VLAN_ENCAP_LEN) | (0x2000 << 16));
1229336cca9eSBenno Rice 
12309ba2b298SMarius Strobl 		/* more magic values */
12318defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_PREAMBLE_LEN, 0x7);
12328defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_JAM_SIZE, 0x4);
12338defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_ATTEMPT_LIMIT, 0x10);
12348defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_CONTROL_TYPE, 0x8808);
12359ba2b298SMarius Strobl 
12369ba2b298SMarius Strobl 		/* random number seed */
12378defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_RANDOM_SEED,
1238336cca9eSBenno Rice 		    ((laddr[5] << 8) | laddr[4]) & 0x3ff);
1239336cca9eSBenno Rice 
12402a79fd39SMarius Strobl 		/* secondary MAC address: 0:0:0:0:0:0 */
12418defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_ADDR3, 0);
12428defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_ADDR4, 0);
12438defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_ADDR5, 0);
1244336cca9eSBenno Rice 
12452a79fd39SMarius Strobl 		/* MAC control address: 01:80:c2:00:00:01 */
12468defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_ADDR6, 0x0001);
12478defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_ADDR7, 0xc200);
12488defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_ADDR8, 0x0180);
124942c1b001SThomas Moestl 
12502a79fd39SMarius Strobl 		/* MAC filter address: 0:0:0:0:0:0 */
12518defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_ADDR_FILTER0, 0);
12528defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_ADDR_FILTER1, 0);
12538defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_ADDR_FILTER2, 0);
12548defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_ADR_FLT_MASK1_2, 0);
12558defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_ADR_FLT_MASK0, 0);
125642c1b001SThomas Moestl 
12571ed3fed7SMarius Strobl 		sc->sc_flags |= GEM_INITED;
125842c1b001SThomas Moestl 	}
125942c1b001SThomas Moestl 
12602a79fd39SMarius Strobl 	/* Counters need to be zeroed. */
12618defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_NORM_COLL_CNT, 0);
12628defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_FIRST_COLL_CNT, 0);
12638defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_EXCESS_COLL_CNT, 0);
12648defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_LATE_COLL_CNT, 0);
12658defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_DEFER_TMR_CNT, 0);
12668defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_PEAK_ATTEMPTS, 0);
12678defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_RX_FRAME_COUNT, 0);
12688defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_RX_LEN_ERR_CNT, 0);
12698defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_RX_ALIGN_ERR, 0);
12708defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_RX_CRC_ERR_CNT, 0);
12718defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_RX_CODE_VIOL, 0);
127242c1b001SThomas Moestl 
12731ed3fed7SMarius Strobl 	/* Set XOFF PAUSE time. */
12748defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_SEND_PAUSE_CMD, 0x1BF0);
12751ed3fed7SMarius Strobl 
12762a79fd39SMarius Strobl 	/* Set the station address. */
12778defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_ADDR0, (laddr[4] << 8) | laddr[5]);
12788defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_ADDR1, (laddr[2] << 8) | laddr[3]);
12798defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_ADDR2, (laddr[0] << 8) | laddr[1]);
1280336cca9eSBenno Rice 
12811ed3fed7SMarius Strobl 	/* Enable MII outputs. */
12828defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_XIF_CONFIG, GEM_MAC_XIF_TX_MII_ENA);
128342c1b001SThomas Moestl }
128442c1b001SThomas Moestl 
128542c1b001SThomas Moestl static void
gem_start(if_t ifp)12869f012efbSJustin Hibbits gem_start(if_t ifp)
128742c1b001SThomas Moestl {
12889f012efbSJustin Hibbits 	struct gem_softc *sc = if_getsoftc(ifp);
12898cfaff7dSMarius Strobl 
12908cfaff7dSMarius Strobl 	GEM_LOCK(sc);
12918cfaff7dSMarius Strobl 	gem_start_locked(ifp);
12928cfaff7dSMarius Strobl 	GEM_UNLOCK(sc);
12938cfaff7dSMarius Strobl }
12948cfaff7dSMarius Strobl 
12959ba2b298SMarius Strobl static inline void
gem_txkick(struct gem_softc * sc)12969ba2b298SMarius Strobl gem_txkick(struct gem_softc *sc)
12979ba2b298SMarius Strobl {
12989ba2b298SMarius Strobl 
12999ba2b298SMarius Strobl 	/*
13009ba2b298SMarius Strobl 	 * Update the TX kick register.  This register has to point to the
13019ba2b298SMarius Strobl 	 * descriptor after the last valid one and for optimum performance
13029ba2b298SMarius Strobl 	 * should be incremented in multiples of 4 (the DMA engine fetches/
13039ba2b298SMarius Strobl 	 * updates descriptors in batches of 4).
13049ba2b298SMarius Strobl 	 */
13059ba2b298SMarius Strobl #ifdef GEM_DEBUG
13069ba2b298SMarius Strobl 	CTR3(KTR_GEM, "%s: %s: kicking TX %d",
13079ba2b298SMarius Strobl 	    device_get_name(sc->sc_dev), __func__, sc->sc_txnext);
13089ba2b298SMarius Strobl #endif
13099ba2b298SMarius Strobl 	GEM_CDSYNC(sc, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
13108defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_TX_KICK, sc->sc_txnext);
13119ba2b298SMarius Strobl }
13129ba2b298SMarius Strobl 
13138cfaff7dSMarius Strobl static void
gem_start_locked(if_t ifp)13149f012efbSJustin Hibbits gem_start_locked(if_t ifp)
13158cfaff7dSMarius Strobl {
13169f012efbSJustin Hibbits 	struct gem_softc *sc = if_getsoftc(ifp);
131712fb0330SPyun YongHyeon 	struct mbuf *m;
13189ba2b298SMarius Strobl 	int kicked, ntx;
13199ba2b298SMarius Strobl 
13209ba2b298SMarius Strobl 	GEM_LOCK_ASSERT(sc, MA_OWNED);
132142c1b001SThomas Moestl 
13229f012efbSJustin Hibbits 	if ((if_getdrvflags(ifp) & (IFF_DRV_RUNNING | IFF_DRV_OACTIVE)) !=
13231ed3fed7SMarius Strobl 	    IFF_DRV_RUNNING || (sc->sc_flags & GEM_LINK) == 0)
132442c1b001SThomas Moestl 		return;
132542c1b001SThomas Moestl 
132618100346SThomas Moestl #ifdef GEM_DEBUG
132712fb0330SPyun YongHyeon 	CTR4(KTR_GEM, "%s: %s: txfree %d, txnext %d",
13281ed3fed7SMarius Strobl 	    device_get_name(sc->sc_dev), __func__, sc->sc_txfree,
13291ed3fed7SMarius Strobl 	    sc->sc_txnext);
133018100346SThomas Moestl #endif
13312a79fd39SMarius Strobl 	ntx = 0;
13329ba2b298SMarius Strobl 	kicked = 0;
13339f012efbSJustin Hibbits 	for (; !if_sendq_empty(ifp) && sc->sc_txfree > 1;) {
13349f012efbSJustin Hibbits 		m = if_dequeue(ifp);
133512fb0330SPyun YongHyeon 		if (m == NULL)
133642c1b001SThomas Moestl 			break;
13371ed3fed7SMarius Strobl 		if (gem_load_txmbuf(sc, &m) != 0) {
133812fb0330SPyun YongHyeon 			if (m == NULL)
133912fb0330SPyun YongHyeon 				break;
13409f012efbSJustin Hibbits 			if_setdrvflagbits(ifp, IFF_DRV_OACTIVE, 0);
13419f012efbSJustin Hibbits 			if_sendq_prepend(ifp, m);
134242c1b001SThomas Moestl 			break;
134342c1b001SThomas Moestl 		}
13449ba2b298SMarius Strobl 		if ((sc->sc_txnext % 4) == 0) {
13459ba2b298SMarius Strobl 			gem_txkick(sc);
13469ba2b298SMarius Strobl 			kicked = 1;
13479ba2b298SMarius Strobl 		} else
13489ba2b298SMarius Strobl 			kicked = 0;
134918100346SThomas Moestl 		ntx++;
135012fb0330SPyun YongHyeon 		BPF_MTAP(ifp, m);
1351305f2c06SThomas Moestl 	}
1352305f2c06SThomas Moestl 
1353305f2c06SThomas Moestl 	if (ntx > 0) {
13549ba2b298SMarius Strobl 		if (kicked == 0)
13559ba2b298SMarius Strobl 			gem_txkick(sc);
135618100346SThomas Moestl #ifdef GEM_DEBUG
1357305f2c06SThomas Moestl 		CTR2(KTR_GEM, "%s: packets enqueued, OWN on %d",
13581ed3fed7SMarius Strobl 		    device_get_name(sc->sc_dev), sc->sc_txnext);
135918100346SThomas Moestl #endif
1360305f2c06SThomas Moestl 
136142c1b001SThomas Moestl 		/* Set a watchdog timer in case the chip flakes out. */
13628cb37876SMarius Strobl 		sc->sc_wdog_timer = 5;
136318100346SThomas Moestl #ifdef GEM_DEBUG
136412fb0330SPyun YongHyeon 		CTR3(KTR_GEM, "%s: %s: watchdog %d",
13652a79fd39SMarius Strobl 		    device_get_name(sc->sc_dev), __func__,
13662a79fd39SMarius Strobl 		    sc->sc_wdog_timer);
136718100346SThomas Moestl #endif
136842c1b001SThomas Moestl 	}
136942c1b001SThomas Moestl }
137042c1b001SThomas Moestl 
137142c1b001SThomas Moestl static void
gem_tint(struct gem_softc * sc)13722a79fd39SMarius Strobl gem_tint(struct gem_softc *sc)
137342c1b001SThomas Moestl {
13749f012efbSJustin Hibbits 	if_t ifp = sc->sc_ifp;
137542c1b001SThomas Moestl 	struct gem_txsoft *txs;
13769ba2b298SMarius Strobl 	int progress;
13779ba2b298SMarius Strobl 	uint32_t txlast;
137818100346SThomas Moestl #ifdef GEM_DEBUG
13792a79fd39SMarius Strobl 	int i;
13802a79fd39SMarius Strobl 
13819ba2b298SMarius Strobl 	GEM_LOCK_ASSERT(sc, MA_OWNED);
13829ba2b298SMarius Strobl 
138312fb0330SPyun YongHyeon 	CTR2(KTR_GEM, "%s: %s", device_get_name(sc->sc_dev), __func__);
138418100346SThomas Moestl #endif
138542c1b001SThomas Moestl 
138642c1b001SThomas Moestl 	/*
13872a79fd39SMarius Strobl 	 * Go through our TX list and free mbufs for those
138842c1b001SThomas Moestl 	 * frames that have been transmitted.
138942c1b001SThomas Moestl 	 */
13902a79fd39SMarius Strobl 	progress = 0;
1391b2d59f42SThomas Moestl 	GEM_CDSYNC(sc, BUS_DMASYNC_POSTREAD);
139242c1b001SThomas Moestl 	while ((txs = STAILQ_FIRST(&sc->sc_txdirtyq)) != NULL) {
139342c1b001SThomas Moestl #ifdef GEM_DEBUG
13949f012efbSJustin Hibbits 		if ((if_getflags(ifp) & IFF_DEBUG) != 0) {
139542c1b001SThomas Moestl 			printf("    txsoft %p transmit chain:\n", txs);
139642c1b001SThomas Moestl 			for (i = txs->txs_firstdesc;; i = GEM_NEXTTX(i)) {
139742c1b001SThomas Moestl 				printf("descriptor %d: ", i);
13982a79fd39SMarius Strobl 				printf("gd_flags: 0x%016llx\t",
13998defc88cSMarius Strobl 				    (long long)le64toh(
14002a79fd39SMarius Strobl 				    sc->sc_txdescs[i].gd_flags));
14012a79fd39SMarius Strobl 				printf("gd_addr: 0x%016llx\n",
14028defc88cSMarius Strobl 				    (long long)le64toh(
14032a79fd39SMarius Strobl 				    sc->sc_txdescs[i].gd_addr));
140442c1b001SThomas Moestl 				if (i == txs->txs_lastdesc)
140542c1b001SThomas Moestl 					break;
140642c1b001SThomas Moestl 			}
140742c1b001SThomas Moestl 		}
140842c1b001SThomas Moestl #endif
140942c1b001SThomas Moestl 
141042c1b001SThomas Moestl 		/*
14111ed3fed7SMarius Strobl 		 * In theory, we could harvest some descriptors before
141242c1b001SThomas Moestl 		 * the ring is empty, but that's a bit complicated.
141342c1b001SThomas Moestl 		 *
141442c1b001SThomas Moestl 		 * GEM_TX_COMPLETION points to the last descriptor
141542c1b001SThomas Moestl 		 * processed + 1.
141642c1b001SThomas Moestl 		 */
14178defc88cSMarius Strobl 		txlast = GEM_READ_4(sc, GEM_TX_COMPLETION);
141818100346SThomas Moestl #ifdef GEM_DEBUG
141912fb0330SPyun YongHyeon 		CTR4(KTR_GEM, "%s: txs->txs_firstdesc = %d, "
142042c1b001SThomas Moestl 		    "txs->txs_lastdesc = %d, txlast = %d",
142112fb0330SPyun YongHyeon 		    __func__, txs->txs_firstdesc, txs->txs_lastdesc, txlast);
142218100346SThomas Moestl #endif
142342c1b001SThomas Moestl 		if (txs->txs_firstdesc <= txs->txs_lastdesc) {
142442c1b001SThomas Moestl 			if ((txlast >= txs->txs_firstdesc) &&
142542c1b001SThomas Moestl 			    (txlast <= txs->txs_lastdesc))
142642c1b001SThomas Moestl 				break;
142742c1b001SThomas Moestl 		} else {
14282a79fd39SMarius Strobl 			/* Ick -- this command wraps. */
142942c1b001SThomas Moestl 			if ((txlast >= txs->txs_firstdesc) ||
143042c1b001SThomas Moestl 			    (txlast <= txs->txs_lastdesc))
143142c1b001SThomas Moestl 				break;
143242c1b001SThomas Moestl 		}
143342c1b001SThomas Moestl 
143418100346SThomas Moestl #ifdef GEM_DEBUG
14352a79fd39SMarius Strobl 		CTR1(KTR_GEM, "%s: releasing a descriptor", __func__);
143618100346SThomas Moestl #endif
143742c1b001SThomas Moestl 		STAILQ_REMOVE_HEAD(&sc->sc_txdirtyq, txs_q);
143842c1b001SThomas Moestl 
143942c1b001SThomas Moestl 		sc->sc_txfree += txs->txs_ndescs;
144042c1b001SThomas Moestl 
1441305f2c06SThomas Moestl 		bus_dmamap_sync(sc->sc_tdmatag, txs->txs_dmamap,
144242c1b001SThomas Moestl 		    BUS_DMASYNC_POSTWRITE);
1443305f2c06SThomas Moestl 		bus_dmamap_unload(sc->sc_tdmatag, txs->txs_dmamap);
144442c1b001SThomas Moestl 		if (txs->txs_mbuf != NULL) {
144542c1b001SThomas Moestl 			m_freem(txs->txs_mbuf);
144642c1b001SThomas Moestl 			txs->txs_mbuf = NULL;
144742c1b001SThomas Moestl 		}
144842c1b001SThomas Moestl 
144942c1b001SThomas Moestl 		STAILQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q);
145042c1b001SThomas Moestl 
14518da56a6fSGleb Smirnoff 		if_inc_counter(ifp, IFCOUNTER_OPACKETS, 1);
1452336cca9eSBenno Rice 		progress = 1;
145342c1b001SThomas Moestl 	}
145442c1b001SThomas Moestl 
145518100346SThomas Moestl #ifdef GEM_DEBUG
14562a79fd39SMarius Strobl 	CTR4(KTR_GEM, "%s: GEM_TX_STATE_MACHINE %x GEM_TX_DATA_PTR %llx "
145742c1b001SThomas Moestl 	    "GEM_TX_COMPLETION %x",
14588defc88cSMarius Strobl 	    __func__, GEM_READ_4(sc, GEM_TX_STATE_MACHINE),
14598defc88cSMarius Strobl 	    ((long long)GEM_READ_4(sc, GEM_TX_DATA_PTR_HI) << 32) |
14608defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_TX_DATA_PTR_LO),
14618defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_TX_COMPLETION));
146218100346SThomas Moestl #endif
146342c1b001SThomas Moestl 
1464336cca9eSBenno Rice 	if (progress) {
1465336cca9eSBenno Rice 		if (sc->sc_txfree == GEM_NTXDESC - 1)
1466336cca9eSBenno Rice 			sc->sc_txwin = 0;
146742c1b001SThomas Moestl 
14682a79fd39SMarius Strobl 		/*
14692a79fd39SMarius Strobl 		 * We freed some descriptors, so reset IFF_DRV_OACTIVE
14702a79fd39SMarius Strobl 		 * and restart.
14712a79fd39SMarius Strobl 		 */
14729f012efbSJustin Hibbits 		if_setdrvflagbits(ifp, 0, IFF_DRV_OACTIVE);
14739ba2b298SMarius Strobl 		if (STAILQ_EMPTY(&sc->sc_txdirtyq))
14749ba2b298SMarius Strobl 		    sc->sc_wdog_timer = 0;
147512fb0330SPyun YongHyeon 		gem_start_locked(ifp);
1476336cca9eSBenno Rice 	}
147742c1b001SThomas Moestl 
147818100346SThomas Moestl #ifdef GEM_DEBUG
147912fb0330SPyun YongHyeon 	CTR3(KTR_GEM, "%s: %s: watchdog %d",
148012fb0330SPyun YongHyeon 	    device_get_name(sc->sc_dev), __func__, sc->sc_wdog_timer);
148118100346SThomas Moestl #endif
148242c1b001SThomas Moestl }
148342c1b001SThomas Moestl 
1484c3d5598aSMarius Strobl #ifdef GEM_RINT_TIMEOUT
14850d80b9bdSThomas Moestl static void
gem_rint_timeout(void * arg)14862a79fd39SMarius Strobl gem_rint_timeout(void *arg)
14870d80b9bdSThomas Moestl {
14882a79fd39SMarius Strobl 	struct gem_softc *sc = arg;
14890d80b9bdSThomas Moestl 
14901f317bf9SMarius Strobl 	GEM_LOCK_ASSERT(sc, MA_OWNED);
14919ba2b298SMarius Strobl 
14928cfaff7dSMarius Strobl 	gem_rint(sc);
14930d80b9bdSThomas Moestl }
149411e3f060SJake Burkholder #endif
14950d80b9bdSThomas Moestl 
149642c1b001SThomas Moestl static void
gem_rint(struct gem_softc * sc)14972a79fd39SMarius Strobl gem_rint(struct gem_softc *sc)
149842c1b001SThomas Moestl {
14999f012efbSJustin Hibbits 	if_t ifp = sc->sc_ifp;
150042c1b001SThomas Moestl 	struct mbuf *m;
15012a79fd39SMarius Strobl 	uint64_t rxstat;
15022a79fd39SMarius Strobl 	uint32_t rxcomp;
150342c1b001SThomas Moestl 
15049ba2b298SMarius Strobl 	GEM_LOCK_ASSERT(sc, MA_OWNED);
15059ba2b298SMarius Strobl 
1506c3d5598aSMarius Strobl #ifdef GEM_RINT_TIMEOUT
15070d80b9bdSThomas Moestl 	callout_stop(&sc->sc_rx_ch);
1508c3d5598aSMarius Strobl #endif
150918100346SThomas Moestl #ifdef GEM_DEBUG
151012fb0330SPyun YongHyeon 	CTR2(KTR_GEM, "%s: %s", device_get_name(sc->sc_dev), __func__);
151118100346SThomas Moestl #endif
1512336cca9eSBenno Rice 
1513336cca9eSBenno Rice 	/*
1514336cca9eSBenno Rice 	 * Read the completion register once.  This limits
1515336cca9eSBenno Rice 	 * how long the following loop can execute.
1516336cca9eSBenno Rice 	 */
15178defc88cSMarius Strobl 	rxcomp = GEM_READ_4(sc, GEM_RX_COMPLETION);
151818100346SThomas Moestl #ifdef GEM_DEBUG
15199ba2b298SMarius Strobl 	CTR3(KTR_GEM, "%s: sc->sc_rxptr %d, complete %d",
152012fb0330SPyun YongHyeon 	    __func__, sc->sc_rxptr, rxcomp);
152118100346SThomas Moestl #endif
15229ba2b298SMarius Strobl 	GEM_CDSYNC(sc, BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
15231ed3fed7SMarius Strobl 	for (; sc->sc_rxptr != rxcomp;) {
15241ed3fed7SMarius Strobl 		m = sc->sc_rxsoft[sc->sc_rxptr].rxs_mbuf;
15258defc88cSMarius Strobl 		rxstat = le64toh(sc->sc_rxdescs[sc->sc_rxptr].gd_flags);
152642c1b001SThomas Moestl 
152742c1b001SThomas Moestl 		if (rxstat & GEM_RD_OWN) {
1528c3d5598aSMarius Strobl #ifdef GEM_RINT_TIMEOUT
152942c1b001SThomas Moestl 			/*
15300d80b9bdSThomas Moestl 			 * The descriptor is still marked as owned, although
15310d80b9bdSThomas Moestl 			 * it is supposed to have completed.  This has been
15320d80b9bdSThomas Moestl 			 * observed on some machines.  Just exiting here
15330d80b9bdSThomas Moestl 			 * might leave the packet sitting around until another
15340d80b9bdSThomas Moestl 			 * one arrives to trigger a new interrupt, which is
15350d80b9bdSThomas Moestl 			 * generally undesirable, so set up a timeout.
153642c1b001SThomas Moestl 			 */
15370d80b9bdSThomas Moestl 			callout_reset(&sc->sc_rx_ch, GEM_RXOWN_TICKS,
15380d80b9bdSThomas Moestl 			    gem_rint_timeout, sc);
1539336cca9eSBenno Rice #endif
15401ed3fed7SMarius Strobl 			m = NULL;
15411ed3fed7SMarius Strobl 			goto kickit;
154242c1b001SThomas Moestl 		}
154342c1b001SThomas Moestl 
154442c1b001SThomas Moestl 		if (rxstat & GEM_RD_BAD_CRC) {
15458da56a6fSGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
154642c1b001SThomas Moestl 			device_printf(sc->sc_dev, "receive error: CRC error\n");
15471ed3fed7SMarius Strobl 			GEM_INIT_RXDESC(sc, sc->sc_rxptr);
15481ed3fed7SMarius Strobl 			m = NULL;
15491ed3fed7SMarius Strobl 			goto kickit;
155042c1b001SThomas Moestl 		}
155142c1b001SThomas Moestl 
155242c1b001SThomas Moestl #ifdef GEM_DEBUG
15539f012efbSJustin Hibbits 		if ((if_getflags(ifp) & IFF_DEBUG) != 0) {
15541ed3fed7SMarius Strobl 			printf("    rxsoft %p descriptor %d: ",
15551ed3fed7SMarius Strobl 			    &sc->sc_rxsoft[sc->sc_rxptr], sc->sc_rxptr);
15562a79fd39SMarius Strobl 			printf("gd_flags: 0x%016llx\t",
15578defc88cSMarius Strobl 			    (long long)le64toh(
15582a79fd39SMarius Strobl 			    sc->sc_rxdescs[sc->sc_rxptr].gd_flags));
15592a79fd39SMarius Strobl 			printf("gd_addr: 0x%016llx\n",
15608defc88cSMarius Strobl 			    (long long)le64toh(
15612a79fd39SMarius Strobl 			    sc->sc_rxdescs[sc->sc_rxptr].gd_addr));
156242c1b001SThomas Moestl 		}
156342c1b001SThomas Moestl #endif
156442c1b001SThomas Moestl 
156542c1b001SThomas Moestl 		/*
156642c1b001SThomas Moestl 		 * Allocate a new mbuf cluster.  If that fails, we are
156742c1b001SThomas Moestl 		 * out of memory, and must drop the packet and recycle
156842c1b001SThomas Moestl 		 * the buffer that's already attached to this descriptor.
156942c1b001SThomas Moestl 		 */
15701ed3fed7SMarius Strobl 		if (gem_add_rxbuf(sc, sc->sc_rxptr) != 0) {
15718da56a6fSGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_IQDROPS, 1);
15721ed3fed7SMarius Strobl 			GEM_INIT_RXDESC(sc, sc->sc_rxptr);
15731ed3fed7SMarius Strobl 			m = NULL;
15741ed3fed7SMarius Strobl 		}
15751ed3fed7SMarius Strobl 
15761ed3fed7SMarius Strobl  kickit:
15771ed3fed7SMarius Strobl 		/*
15781ed3fed7SMarius Strobl 		 * Update the RX kick register.  This register has to point
15791ed3fed7SMarius Strobl 		 * to the descriptor after the last valid one (before the
15809ba2b298SMarius Strobl 		 * current batch) and for optimum performance should be
15819ba2b298SMarius Strobl 		 * incremented in multiples of 4 (the DMA engine fetches/
15829ba2b298SMarius Strobl 		 * updates descriptors in batches of 4).
15831ed3fed7SMarius Strobl 		 */
15841ed3fed7SMarius Strobl 		sc->sc_rxptr = GEM_NEXTRX(sc->sc_rxptr);
15851ed3fed7SMarius Strobl 		if ((sc->sc_rxptr % 4) == 0) {
1586ccb1212aSMarius Strobl 			GEM_CDSYNC(sc,
1587ccb1212aSMarius Strobl 			    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
15888defc88cSMarius Strobl 			GEM_WRITE_4(sc, GEM_RX_KICK,
15891ed3fed7SMarius Strobl 			    (sc->sc_rxptr + GEM_NRXDESC - 4) &
15901ed3fed7SMarius Strobl 			    GEM_NRXDESC_MASK);
15911ed3fed7SMarius Strobl 		}
15921ed3fed7SMarius Strobl 
15931ed3fed7SMarius Strobl 		if (m == NULL) {
15941ed3fed7SMarius Strobl 			if (rxstat & GEM_RD_OWN)
15951ed3fed7SMarius Strobl 				break;
159642c1b001SThomas Moestl 			continue;
159742c1b001SThomas Moestl 		}
159842c1b001SThomas Moestl 
15998da56a6fSGleb Smirnoff 		if_inc_counter(ifp, IFCOUNTER_IPACKETS, 1);
16009ba2b298SMarius Strobl 		m->m_data += ETHER_ALIGN; /* first byte offset */
160142c1b001SThomas Moestl 		m->m_pkthdr.rcvif = ifp;
16021ed3fed7SMarius Strobl 		m->m_pkthdr.len = m->m_len = GEM_RD_BUFLEN(rxstat);
160312fb0330SPyun YongHyeon 
16049f012efbSJustin Hibbits 		if ((if_getcapenable(ifp) & IFCAP_RXCSUM) != 0)
160512fb0330SPyun YongHyeon 			gem_rxcksum(m, rxstat);
160642c1b001SThomas Moestl 
160742c1b001SThomas Moestl 		/* Pass it on. */
16088cfaff7dSMarius Strobl 		GEM_UNLOCK(sc);
16099f012efbSJustin Hibbits 		if_input(ifp, m);
16108cfaff7dSMarius Strobl 		GEM_LOCK(sc);
161142c1b001SThomas Moestl 	}
161242c1b001SThomas Moestl 
161318100346SThomas Moestl #ifdef GEM_DEBUG
16149ba2b298SMarius Strobl 	CTR3(KTR_GEM, "%s: done sc->sc_rxptr %d, complete %d", __func__,
16158defc88cSMarius Strobl 	    sc->sc_rxptr, GEM_READ_4(sc, GEM_RX_COMPLETION));
161618100346SThomas Moestl #endif
161742c1b001SThomas Moestl }
161842c1b001SThomas Moestl 
161942c1b001SThomas Moestl static int
gem_add_rxbuf(struct gem_softc * sc,int idx)16202a79fd39SMarius Strobl gem_add_rxbuf(struct gem_softc *sc, int idx)
162142c1b001SThomas Moestl {
162242c1b001SThomas Moestl 	struct gem_rxsoft *rxs = &sc->sc_rxsoft[idx];
162342c1b001SThomas Moestl 	struct mbuf *m;
1624c3d5598aSMarius Strobl 	bus_dma_segment_t segs[1];
1625c3d5598aSMarius Strobl 	int error, nsegs;
162642c1b001SThomas Moestl 
16279ba2b298SMarius Strobl 	GEM_LOCK_ASSERT(sc, MA_OWNED);
16289ba2b298SMarius Strobl 
1629c6499eccSGleb Smirnoff 	m = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
163042c1b001SThomas Moestl 	if (m == NULL)
163142c1b001SThomas Moestl 		return (ENOBUFS);
1632305f2c06SThomas Moestl 	m->m_len = m->m_pkthdr.len = m->m_ext.ext_size;
163342c1b001SThomas Moestl 
163442c1b001SThomas Moestl #ifdef GEM_DEBUG
16352a79fd39SMarius Strobl 	/* Bzero the packet to check DMA. */
163642c1b001SThomas Moestl 	memset(m->m_ext.ext_buf, 0, m->m_ext.ext_size);
163742c1b001SThomas Moestl #endif
163842c1b001SThomas Moestl 
1639b2d59f42SThomas Moestl 	if (rxs->rxs_mbuf != NULL) {
1640b2d59f42SThomas Moestl 		bus_dmamap_sync(sc->sc_rdmatag, rxs->rxs_dmamap,
1641b2d59f42SThomas Moestl 		    BUS_DMASYNC_POSTREAD);
1642305f2c06SThomas Moestl 		bus_dmamap_unload(sc->sc_rdmatag, rxs->rxs_dmamap);
1643b2d59f42SThomas Moestl 	}
164442c1b001SThomas Moestl 
1645c3d5598aSMarius Strobl 	error = bus_dmamap_load_mbuf_sg(sc->sc_rdmatag, rxs->rxs_dmamap,
1646c3d5598aSMarius Strobl 	    m, segs, &nsegs, BUS_DMA_NOWAIT);
1647c3d5598aSMarius Strobl 	if (error != 0) {
16482a79fd39SMarius Strobl 		device_printf(sc->sc_dev,
16492a79fd39SMarius Strobl 		    "cannot load RS DMA map %d, error = %d\n", idx, error);
1650c3d5598aSMarius Strobl 		m_freem(m);
16511ed3fed7SMarius Strobl 		return (error);
165242c1b001SThomas Moestl 	}
16532a79fd39SMarius Strobl 	/* If nsegs is wrong then the stack is corrupt. */
1654801772ecSMarius Strobl 	KASSERT(nsegs == 1,
1655801772ecSMarius Strobl 	    ("%s: too many DMA segments (%d)", __func__, nsegs));
16561ed3fed7SMarius Strobl 	rxs->rxs_mbuf = m;
1657c3d5598aSMarius Strobl 	rxs->rxs_paddr = segs[0].ds_addr;
165842c1b001SThomas Moestl 
16592a79fd39SMarius Strobl 	bus_dmamap_sync(sc->sc_rdmatag, rxs->rxs_dmamap,
16602a79fd39SMarius Strobl 	    BUS_DMASYNC_PREREAD);
166142c1b001SThomas Moestl 
166242c1b001SThomas Moestl 	GEM_INIT_RXDESC(sc, idx);
166342c1b001SThomas Moestl 
166442c1b001SThomas Moestl 	return (0);
166542c1b001SThomas Moestl }
166642c1b001SThomas Moestl 
166742c1b001SThomas Moestl static void
gem_eint(struct gem_softc * sc,u_int status)16682a79fd39SMarius Strobl gem_eint(struct gem_softc *sc, u_int status)
166942c1b001SThomas Moestl {
167042c1b001SThomas Moestl 
16718da56a6fSGleb Smirnoff 	if_inc_counter(sc->sc_ifp, IFCOUNTER_IERRORS, 1);
16721ed3fed7SMarius Strobl 	if ((status & GEM_INTR_RX_TAG_ERR) != 0) {
16731ed3fed7SMarius Strobl 		gem_reset_rxdma(sc);
167442c1b001SThomas Moestl 		return;
167542c1b001SThomas Moestl 	}
167642c1b001SThomas Moestl 
16779ba2b298SMarius Strobl 	device_printf(sc->sc_dev, "%s: status 0x%x", __func__, status);
16789ba2b298SMarius Strobl 	if ((status & GEM_INTR_BERR) != 0) {
16798defc88cSMarius Strobl 		printf(", PCI bus error 0x%x",
16808defc88cSMarius Strobl 		    GEM_READ_4(sc, GEM_PCI_ERROR_STATUS));
16819ba2b298SMarius Strobl 	}
16828defc88cSMarius Strobl 	printf("\n");
168342c1b001SThomas Moestl }
168442c1b001SThomas Moestl 
168542c1b001SThomas Moestl void
gem_intr(void * v)16862a79fd39SMarius Strobl gem_intr(void *v)
168742c1b001SThomas Moestl {
16882a79fd39SMarius Strobl 	struct gem_softc *sc = v;
16891ed3fed7SMarius Strobl 	uint32_t status, status2;
169042c1b001SThomas Moestl 
16918cfaff7dSMarius Strobl 	GEM_LOCK(sc);
16928defc88cSMarius Strobl 	status = GEM_READ_4(sc, GEM_STATUS);
16931ed3fed7SMarius Strobl 
169418100346SThomas Moestl #ifdef GEM_DEBUG
169512fb0330SPyun YongHyeon 	CTR4(KTR_GEM, "%s: %s: cplt %x, status %x",
16969ba2b298SMarius Strobl 	    device_get_name(sc->sc_dev), __func__,
16979ba2b298SMarius Strobl 	    (status >> GEM_STATUS_TX_COMPLETION_SHFT), (u_int)status);
16981ed3fed7SMarius Strobl 
16991ed3fed7SMarius Strobl 	/*
17001ed3fed7SMarius Strobl 	 * PCS interrupts must be cleared, otherwise no traffic is passed!
17011ed3fed7SMarius Strobl 	 */
17021ed3fed7SMarius Strobl 	if ((status & GEM_INTR_PCS) != 0) {
17032a79fd39SMarius Strobl 		status2 =
17048defc88cSMarius Strobl 		    GEM_READ_4(sc, GEM_MII_INTERRUP_STATUS) |
17058defc88cSMarius Strobl 		    GEM_READ_4(sc, GEM_MII_INTERRUP_STATUS);
17061ed3fed7SMarius Strobl 		if ((status2 & GEM_MII_INTERRUP_LINK) != 0)
17071ed3fed7SMarius Strobl 			device_printf(sc->sc_dev,
17081ed3fed7SMarius Strobl 			    "%s: PCS link status changed\n", __func__);
17091ed3fed7SMarius Strobl 	}
17101ed3fed7SMarius Strobl 	if ((status & GEM_MAC_CONTROL_STATUS) != 0) {
17118defc88cSMarius Strobl 		status2 = GEM_READ_4(sc, GEM_MAC_CONTROL_STATUS);
17121ed3fed7SMarius Strobl 		if ((status2 & GEM_MAC_PAUSED) != 0)
17131ed3fed7SMarius Strobl 			device_printf(sc->sc_dev,
17141ed3fed7SMarius Strobl 			    "%s: PAUSE received (PAUSE time %d slots)\n",
17151ed3fed7SMarius Strobl 			    __func__, GEM_MAC_PAUSE_TIME(status2));
17161ed3fed7SMarius Strobl 		if ((status2 & GEM_MAC_PAUSE) != 0)
17171ed3fed7SMarius Strobl 			device_printf(sc->sc_dev,
17181ed3fed7SMarius Strobl 			    "%s: transited to PAUSE state\n", __func__);
17191ed3fed7SMarius Strobl 		if ((status2 & GEM_MAC_RESUME) != 0)
17201ed3fed7SMarius Strobl 			device_printf(sc->sc_dev,
17211ed3fed7SMarius Strobl 			    "%s: transited to non-PAUSE state\n", __func__);
17221ed3fed7SMarius Strobl 	}
17231ed3fed7SMarius Strobl 	if ((status & GEM_INTR_MIF) != 0)
17241ed3fed7SMarius Strobl 		device_printf(sc->sc_dev, "%s: MIF interrupt\n", __func__);
172518100346SThomas Moestl #endif
172642c1b001SThomas Moestl 
17279ba2b298SMarius Strobl 	if (__predict_false(status &
17281ed3fed7SMarius Strobl 	    (GEM_INTR_RX_TAG_ERR | GEM_INTR_PERR | GEM_INTR_BERR)) != 0)
172942c1b001SThomas Moestl 		gem_eint(sc, status);
173042c1b001SThomas Moestl 
173142c1b001SThomas Moestl 	if ((status & (GEM_INTR_RX_DONE | GEM_INTR_RX_NOBUF)) != 0)
173242c1b001SThomas Moestl 		gem_rint(sc);
173342c1b001SThomas Moestl 
17341ed3fed7SMarius Strobl 	if ((status & (GEM_INTR_TX_EMPTY | GEM_INTR_TX_INTME)) != 0)
17351ed3fed7SMarius Strobl 		gem_tint(sc);
17361ed3fed7SMarius Strobl 
17379ba2b298SMarius Strobl 	if (__predict_false((status & GEM_INTR_TX_MAC) != 0)) {
17388defc88cSMarius Strobl 		status2 = GEM_READ_4(sc, GEM_MAC_TX_STATUS);
17392a79fd39SMarius Strobl 		if ((status2 &
17409ba2b298SMarius Strobl 		    ~(GEM_MAC_TX_XMIT_DONE | GEM_MAC_TX_DEFER_EXP |
17419ba2b298SMarius Strobl 		    GEM_MAC_TX_PEAK_EXP)) != 0)
17422a79fd39SMarius Strobl 			device_printf(sc->sc_dev,
17432a79fd39SMarius Strobl 			    "MAC TX fault, status %x\n", status2);
17442a79fd39SMarius Strobl 		if ((status2 &
17459ba2b298SMarius Strobl 		    (GEM_MAC_TX_UNDERRUN | GEM_MAC_TX_PKT_TOO_LONG)) != 0) {
17468da56a6fSGleb Smirnoff 			if_inc_counter(sc->sc_ifp, IFCOUNTER_OERRORS, 1);
17479f012efbSJustin Hibbits 			if_setdrvflagbits(sc->sc_ifp, 0, IFF_DRV_RUNNING);
17488cfaff7dSMarius Strobl 			gem_init_locked(sc);
174942c1b001SThomas Moestl 		}
17509ba2b298SMarius Strobl 	}
17519ba2b298SMarius Strobl 	if (__predict_false((status & GEM_INTR_RX_MAC) != 0)) {
17528defc88cSMarius Strobl 		status2 = GEM_READ_4(sc, GEM_MAC_RX_STATUS);
175300d12766SMarius Strobl 		/*
17548defc88cSMarius Strobl 		 * At least with GEM_SUN_GEM revisions GEM_MAC_RX_OVERFLOW
17558defc88cSMarius Strobl 		 * happen often due to a silicon bug so handle them silently.
17568defc88cSMarius Strobl 		 * Moreover, it's likely that the receiver has hung so we
17578defc88cSMarius Strobl 		 * reset it.
175800d12766SMarius Strobl 		 */
17592a79fd39SMarius Strobl 		if ((status2 & GEM_MAC_RX_OVERFLOW) != 0) {
17608da56a6fSGleb Smirnoff 			if_inc_counter(sc->sc_ifp, IFCOUNTER_IERRORS, 1);
17611ed3fed7SMarius Strobl 			gem_reset_rxdma(sc);
17622a79fd39SMarius Strobl 		} else if ((status2 &
17632a79fd39SMarius Strobl 		    ~(GEM_MAC_RX_DONE | GEM_MAC_RX_FRAME_CNT)) != 0)
17642a79fd39SMarius Strobl 			device_printf(sc->sc_dev,
17652a79fd39SMarius Strobl 			    "MAC RX fault, status %x\n", status2);
176642c1b001SThomas Moestl 	}
17678cfaff7dSMarius Strobl 	GEM_UNLOCK(sc);
176842c1b001SThomas Moestl }
176942c1b001SThomas Moestl 
17708cb37876SMarius Strobl static int
gem_watchdog(struct gem_softc * sc)17712a79fd39SMarius Strobl gem_watchdog(struct gem_softc *sc)
177242c1b001SThomas Moestl {
17739f012efbSJustin Hibbits 	if_t ifp = sc->sc_ifp;
177442c1b001SThomas Moestl 
17758cb37876SMarius Strobl 	GEM_LOCK_ASSERT(sc, MA_OWNED);
17768cb37876SMarius Strobl 
177718100346SThomas Moestl #ifdef GEM_DEBUG
17782a79fd39SMarius Strobl 	CTR4(KTR_GEM,
17792a79fd39SMarius Strobl 	    "%s: GEM_RX_CONFIG %x GEM_MAC_RX_STATUS %x GEM_MAC_RX_CONFIG %x",
17808defc88cSMarius Strobl 	    __func__, GEM_READ_4(sc, GEM_RX_CONFIG),
17818defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_MAC_RX_STATUS),
17828defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_MAC_RX_CONFIG));
17832a79fd39SMarius Strobl 	CTR4(KTR_GEM,
17842a79fd39SMarius Strobl 	    "%s: GEM_TX_CONFIG %x GEM_MAC_TX_STATUS %x GEM_MAC_TX_CONFIG %x",
17858defc88cSMarius Strobl 	    __func__, GEM_READ_4(sc, GEM_TX_CONFIG),
17868defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_MAC_TX_STATUS),
17878defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_MAC_TX_CONFIG));
178818100346SThomas Moestl #endif
178942c1b001SThomas Moestl 
17908cb37876SMarius Strobl 	if (sc->sc_wdog_timer == 0 || --sc->sc_wdog_timer != 0)
17918cb37876SMarius Strobl 		return (0);
17928cb37876SMarius Strobl 
17931ed3fed7SMarius Strobl 	if ((sc->sc_flags & GEM_LINK) != 0)
179442c1b001SThomas Moestl 		device_printf(sc->sc_dev, "device timeout\n");
17951ed3fed7SMarius Strobl 	else if (bootverbose)
17961ed3fed7SMarius Strobl 		device_printf(sc->sc_dev, "device timeout (no link)\n");
17978da56a6fSGleb Smirnoff 	if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
179842c1b001SThomas Moestl 
179942c1b001SThomas Moestl 	/* Try to get more packets going. */
18009f012efbSJustin Hibbits 	if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
18018cfaff7dSMarius Strobl 	gem_init_locked(sc);
1802ccb1212aSMarius Strobl 	gem_start_locked(ifp);
18038cb37876SMarius Strobl 	return (EJUSTRETURN);
180442c1b001SThomas Moestl }
180542c1b001SThomas Moestl 
180642c1b001SThomas Moestl static void
gem_mifinit(struct gem_softc * sc)18072a79fd39SMarius Strobl gem_mifinit(struct gem_softc *sc)
180842c1b001SThomas Moestl {
180942c1b001SThomas Moestl 
1810801772ecSMarius Strobl 	/* Configure the MIF in frame mode. */
18118defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MIF_CONFIG,
18128defc88cSMarius Strobl 	    GEM_READ_4(sc, GEM_MIF_CONFIG) & ~GEM_MIF_CONFIG_BB_ENA);
18138defc88cSMarius Strobl 	GEM_BARRIER(sc, GEM_MIF_CONFIG, 4,
181465f2c0ffSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
181542c1b001SThomas Moestl }
181642c1b001SThomas Moestl 
181742c1b001SThomas Moestl /*
181842c1b001SThomas Moestl  * MII interface
181942c1b001SThomas Moestl  *
182078d22f42SMarius Strobl  * The MII interface supports at least three different operating modes:
182142c1b001SThomas Moestl  *
182242c1b001SThomas Moestl  * Bitbang mode is implemented using data, clock and output enable registers.
182342c1b001SThomas Moestl  *
182442c1b001SThomas Moestl  * Frame mode is implemented by loading a complete frame into the frame
182542c1b001SThomas Moestl  * register and polling the valid bit for completion.
182642c1b001SThomas Moestl  *
182742c1b001SThomas Moestl  * Polling mode uses the frame register but completion is indicated by
182842c1b001SThomas Moestl  * an interrupt.
182942c1b001SThomas Moestl  *
183042c1b001SThomas Moestl  */
183142c1b001SThomas Moestl int
gem_mii_readreg(device_t dev,int phy,int reg)18322a79fd39SMarius Strobl gem_mii_readreg(device_t dev, int phy, int reg)
183342c1b001SThomas Moestl {
18342a79fd39SMarius Strobl 	struct gem_softc *sc;
183542c1b001SThomas Moestl 	int n;
18362a79fd39SMarius Strobl 	uint32_t v;
183742c1b001SThomas Moestl 
183842c1b001SThomas Moestl #ifdef GEM_DEBUG_PHY
18391ed3fed7SMarius Strobl 	printf("%s: phy %d reg %d\n", __func__, phy, reg);
184042c1b001SThomas Moestl #endif
184142c1b001SThomas Moestl 
18422a79fd39SMarius Strobl 	sc = device_get_softc(dev);
18431ed3fed7SMarius Strobl 	if ((sc->sc_flags & GEM_SERDES) != 0) {
18441ed3fed7SMarius Strobl 		switch (reg) {
18451ed3fed7SMarius Strobl 		case MII_BMCR:
18461ed3fed7SMarius Strobl 			reg = GEM_MII_CONTROL;
18471ed3fed7SMarius Strobl 			break;
18481ed3fed7SMarius Strobl 		case MII_BMSR:
18491ed3fed7SMarius Strobl 			reg = GEM_MII_STATUS;
18501ed3fed7SMarius Strobl 			break;
18511ed3fed7SMarius Strobl 		case MII_PHYIDR1:
18521ed3fed7SMarius Strobl 		case MII_PHYIDR2:
18531ed3fed7SMarius Strobl 			return (0);
18541ed3fed7SMarius Strobl 		case MII_ANAR:
18551ed3fed7SMarius Strobl 			reg = GEM_MII_ANAR;
18561ed3fed7SMarius Strobl 			break;
18571ed3fed7SMarius Strobl 		case MII_ANLPAR:
18581ed3fed7SMarius Strobl 			reg = GEM_MII_ANLPAR;
18591ed3fed7SMarius Strobl 			break;
18601ed3fed7SMarius Strobl 		case MII_EXTSR:
18611ed3fed7SMarius Strobl 			return (EXTSR_1000XFDX | EXTSR_1000XHDX);
18621ed3fed7SMarius Strobl 		default:
18631ed3fed7SMarius Strobl 			device_printf(sc->sc_dev,
18641ed3fed7SMarius Strobl 			    "%s: unhandled register %d\n", __func__, reg);
18651ed3fed7SMarius Strobl 			return (0);
18661ed3fed7SMarius Strobl 		}
18678defc88cSMarius Strobl 		return (GEM_READ_4(sc, reg));
18681ed3fed7SMarius Strobl 	}
186942c1b001SThomas Moestl 
18702a79fd39SMarius Strobl 	/* Construct the frame command. */
18711ed3fed7SMarius Strobl 	v = GEM_MIF_FRAME_READ |
18721ed3fed7SMarius Strobl 	    (phy << GEM_MIF_PHY_SHIFT) |
18731ed3fed7SMarius Strobl 	    (reg << GEM_MIF_REG_SHIFT);
187442c1b001SThomas Moestl 
18758defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MIF_FRAME, v);
18768defc88cSMarius Strobl 	GEM_BARRIER(sc, GEM_MIF_FRAME, 4,
1877ccb1212aSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
187842c1b001SThomas Moestl 	for (n = 0; n < 100; n++) {
187942c1b001SThomas Moestl 		DELAY(1);
18808defc88cSMarius Strobl 		v = GEM_READ_4(sc, GEM_MIF_FRAME);
18811f317bf9SMarius Strobl 		if (v & GEM_MIF_FRAME_TA0)
188242c1b001SThomas Moestl 			return (v & GEM_MIF_FRAME_DATA);
188342c1b001SThomas Moestl 	}
188442c1b001SThomas Moestl 
18852a79fd39SMarius Strobl 	device_printf(sc->sc_dev, "%s: timed out\n", __func__);
188642c1b001SThomas Moestl 	return (0);
188742c1b001SThomas Moestl }
188842c1b001SThomas Moestl 
188942c1b001SThomas Moestl int
gem_mii_writereg(device_t dev,int phy,int reg,int val)18902a79fd39SMarius Strobl gem_mii_writereg(device_t dev, int phy, int reg, int val)
189142c1b001SThomas Moestl {
18922a79fd39SMarius Strobl 	struct gem_softc *sc;
189342c1b001SThomas Moestl 	int n;
18942a79fd39SMarius Strobl 	uint32_t v;
189542c1b001SThomas Moestl 
189642c1b001SThomas Moestl #ifdef GEM_DEBUG_PHY
18971ed3fed7SMarius Strobl 	printf("%s: phy %d reg %d val %x\n", phy, reg, val, __func__);
189842c1b001SThomas Moestl #endif
189942c1b001SThomas Moestl 
19002a79fd39SMarius Strobl 	sc = device_get_softc(dev);
19011ed3fed7SMarius Strobl 	if ((sc->sc_flags & GEM_SERDES) != 0) {
19021ed3fed7SMarius Strobl 		switch (reg) {
19031ed3fed7SMarius Strobl 		case MII_BMSR:
19041ed3fed7SMarius Strobl 			reg = GEM_MII_STATUS;
19051ed3fed7SMarius Strobl 			break;
1906ccb1212aSMarius Strobl 		case MII_BMCR:
1907ccb1212aSMarius Strobl 			reg = GEM_MII_CONTROL;
1908ccb1212aSMarius Strobl 			if ((val & GEM_MII_CONTROL_RESET) == 0)
1909ccb1212aSMarius Strobl 				break;
19108defc88cSMarius Strobl 			GEM_WRITE_4(sc, GEM_MII_CONTROL, val);
19118defc88cSMarius Strobl 			GEM_BARRIER(sc, GEM_MII_CONTROL, 4,
1912ccb1212aSMarius Strobl 			    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
19138defc88cSMarius Strobl 			if (!gem_bitwait(sc, GEM_MII_CONTROL,
1914ccb1212aSMarius Strobl 			    GEM_MII_CONTROL_RESET, 0))
1915ccb1212aSMarius Strobl 				device_printf(sc->sc_dev,
1916ccb1212aSMarius Strobl 				    "cannot reset PCS\n");
1917ccb1212aSMarius Strobl 			/* FALLTHROUGH */
19181ed3fed7SMarius Strobl 		case MII_ANAR:
19198defc88cSMarius Strobl 			GEM_WRITE_4(sc, GEM_MII_CONFIG, 0);
19208defc88cSMarius Strobl 			GEM_BARRIER(sc, GEM_MII_CONFIG, 4,
19211ed3fed7SMarius Strobl 			    BUS_SPACE_BARRIER_WRITE);
19228defc88cSMarius Strobl 			GEM_WRITE_4(sc, GEM_MII_ANAR, val);
19238defc88cSMarius Strobl 			GEM_BARRIER(sc, GEM_MII_ANAR, 4,
192465f2c0ffSMarius Strobl 			    BUS_SPACE_BARRIER_WRITE);
19258defc88cSMarius Strobl 			GEM_WRITE_4(sc, GEM_MII_SLINK_CONTROL,
19261ed3fed7SMarius Strobl 			    GEM_MII_SLINK_LOOPBACK | GEM_MII_SLINK_EN_SYNC_D);
19278defc88cSMarius Strobl 			GEM_BARRIER(sc, GEM_MII_SLINK_CONTROL, 4,
192865f2c0ffSMarius Strobl 			    BUS_SPACE_BARRIER_WRITE);
19298defc88cSMarius Strobl 			GEM_WRITE_4(sc, GEM_MII_CONFIG,
19301ed3fed7SMarius Strobl 			    GEM_MII_CONFIG_ENABLE);
19318defc88cSMarius Strobl 			GEM_BARRIER(sc, GEM_MII_CONFIG, 4,
193265f2c0ffSMarius Strobl 			    BUS_SPACE_BARRIER_WRITE);
19331ed3fed7SMarius Strobl 			return (0);
19341ed3fed7SMarius Strobl 		case MII_ANLPAR:
19351ed3fed7SMarius Strobl 			reg = GEM_MII_ANLPAR;
19361ed3fed7SMarius Strobl 			break;
19371ed3fed7SMarius Strobl 		default:
19381ed3fed7SMarius Strobl 			device_printf(sc->sc_dev,
19391ed3fed7SMarius Strobl 			    "%s: unhandled register %d\n", __func__, reg);
19401ed3fed7SMarius Strobl 			return (0);
19411ed3fed7SMarius Strobl 		}
19428defc88cSMarius Strobl 		GEM_WRITE_4(sc, reg, val);
19438defc88cSMarius Strobl 		GEM_BARRIER(sc, reg, 4,
194465f2c0ffSMarius Strobl 		    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
19451ed3fed7SMarius Strobl 		return (0);
19461ed3fed7SMarius Strobl 	}
19471ed3fed7SMarius Strobl 
19482a79fd39SMarius Strobl 	/* Construct the frame command. */
194942c1b001SThomas Moestl 	v = GEM_MIF_FRAME_WRITE |
195042c1b001SThomas Moestl 	    (phy << GEM_MIF_PHY_SHIFT) |
195142c1b001SThomas Moestl 	    (reg << GEM_MIF_REG_SHIFT) |
195242c1b001SThomas Moestl 	    (val & GEM_MIF_FRAME_DATA);
195342c1b001SThomas Moestl 
19548defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MIF_FRAME, v);
19558defc88cSMarius Strobl 	GEM_BARRIER(sc, GEM_MIF_FRAME, 4,
1956ccb1212aSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
195742c1b001SThomas Moestl 	for (n = 0; n < 100; n++) {
195842c1b001SThomas Moestl 		DELAY(1);
19598defc88cSMarius Strobl 		v = GEM_READ_4(sc, GEM_MIF_FRAME);
19601f317bf9SMarius Strobl 		if (v & GEM_MIF_FRAME_TA0)
196142c1b001SThomas Moestl 			return (1);
196242c1b001SThomas Moestl 	}
196342c1b001SThomas Moestl 
19642a79fd39SMarius Strobl 	device_printf(sc->sc_dev, "%s: timed out\n", __func__);
196542c1b001SThomas Moestl 	return (0);
196642c1b001SThomas Moestl }
196742c1b001SThomas Moestl 
196842c1b001SThomas Moestl void
gem_mii_statchg(device_t dev)19692a79fd39SMarius Strobl gem_mii_statchg(device_t dev)
197042c1b001SThomas Moestl {
19712a79fd39SMarius Strobl 	struct gem_softc *sc;
19721ed3fed7SMarius Strobl 	int gigabit;
19731ed3fed7SMarius Strobl 	uint32_t rxcfg, txcfg, v;
197442c1b001SThomas Moestl 
19752a79fd39SMarius Strobl 	sc = device_get_softc(dev);
19762a79fd39SMarius Strobl 
19779ba2b298SMarius Strobl 	GEM_LOCK_ASSERT(sc, MA_OWNED);
19789ba2b298SMarius Strobl 
197942c1b001SThomas Moestl #ifdef GEM_DEBUG
19809f012efbSJustin Hibbits 	if ((sc->sc_if_getflags(ifp) & IFF_DEBUG) != 0)
19818e5d93dbSMarius Strobl 		device_printf(sc->sc_dev, "%s: status change\n", __func__);
198242c1b001SThomas Moestl #endif
198342c1b001SThomas Moestl 
19841ed3fed7SMarius Strobl 	if ((sc->sc_mii->mii_media_status & IFM_ACTIVE) != 0 &&
19851ed3fed7SMarius Strobl 	    IFM_SUBTYPE(sc->sc_mii->mii_media_active) != IFM_NONE)
19861ed3fed7SMarius Strobl 		sc->sc_flags |= GEM_LINK;
19871ed3fed7SMarius Strobl 	else
19881ed3fed7SMarius Strobl 		sc->sc_flags &= ~GEM_LINK;
19891ed3fed7SMarius Strobl 
19901ed3fed7SMarius Strobl 	switch (IFM_SUBTYPE(sc->sc_mii->mii_media_active)) {
19911ed3fed7SMarius Strobl 	case IFM_1000_SX:
19921ed3fed7SMarius Strobl 	case IFM_1000_LX:
19931ed3fed7SMarius Strobl 	case IFM_1000_CX:
19941ed3fed7SMarius Strobl 	case IFM_1000_T:
19951ed3fed7SMarius Strobl 		gigabit = 1;
19961ed3fed7SMarius Strobl 		break;
19971ed3fed7SMarius Strobl 	default:
19981ed3fed7SMarius Strobl 		gigabit = 0;
199942c1b001SThomas Moestl 	}
20001ed3fed7SMarius Strobl 
20011ed3fed7SMarius Strobl 	/*
20021ed3fed7SMarius Strobl 	 * The configuration done here corresponds to the steps F) and
20031ed3fed7SMarius Strobl 	 * G) and as far as enabling of RX and TX MAC goes also step H)
20041ed3fed7SMarius Strobl 	 * of the initialization sequence outlined in section 3.2.1 of
20051ed3fed7SMarius Strobl 	 * the GEM Gigabit Ethernet ASIC Specification.
20061ed3fed7SMarius Strobl 	 */
20071ed3fed7SMarius Strobl 
2008c0e3e9d4SMarius Strobl 	rxcfg = sc->sc_mac_rxcfg;
2009c0e3e9d4SMarius Strobl 	rxcfg &= ~GEM_MAC_RX_CARR_EXTEND;
20101ed3fed7SMarius Strobl 	txcfg = GEM_MAC_TX_ENA_IPG0 | GEM_MAC_TX_NGU | GEM_MAC_TX_NGU_LIMIT;
20111ed3fed7SMarius Strobl 	if ((IFM_OPTIONS(sc->sc_mii->mii_media_active) & IFM_FDX) != 0)
20121ed3fed7SMarius Strobl 		txcfg |= GEM_MAC_TX_IGN_CARRIER | GEM_MAC_TX_IGN_COLLIS;
20131ed3fed7SMarius Strobl 	else if (gigabit != 0) {
20141ed3fed7SMarius Strobl 		rxcfg |= GEM_MAC_RX_CARR_EXTEND;
20151ed3fed7SMarius Strobl 		txcfg |= GEM_MAC_TX_CARR_EXTEND;
20161ed3fed7SMarius Strobl 	}
2017c0e3e9d4SMarius Strobl 	(void)gem_disable_tx(sc);
20188defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_TX_CONFIG, txcfg);
2019c0e3e9d4SMarius Strobl 	(void)gem_disable_rx(sc);
20208defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_RX_CONFIG, rxcfg);
20211ed3fed7SMarius Strobl 
20228defc88cSMarius Strobl 	v = GEM_READ_4(sc, GEM_MAC_CONTROL_CONFIG) &
20231ed3fed7SMarius Strobl 	    ~(GEM_MAC_CC_RX_PAUSE | GEM_MAC_CC_TX_PAUSE);
20242a79fd39SMarius Strobl 	if ((IFM_OPTIONS(sc->sc_mii->mii_media_active) &
20252a79fd39SMarius Strobl 	    IFM_ETH_RXPAUSE) != 0)
20261ed3fed7SMarius Strobl 		v |= GEM_MAC_CC_RX_PAUSE;
20272a79fd39SMarius Strobl 	if ((IFM_OPTIONS(sc->sc_mii->mii_media_active) &
20282a79fd39SMarius Strobl 	    IFM_ETH_TXPAUSE) != 0)
20291ed3fed7SMarius Strobl 		v |= GEM_MAC_CC_TX_PAUSE;
20308defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_CONTROL_CONFIG, v);
20311ed3fed7SMarius Strobl 
20321ed3fed7SMarius Strobl 	if ((IFM_OPTIONS(sc->sc_mii->mii_media_active) & IFM_FDX) == 0 &&
20331ed3fed7SMarius Strobl 	    gigabit != 0)
20348defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_SLOT_TIME,
20351ed3fed7SMarius Strobl 		    GEM_MAC_SLOT_TIME_CARR_EXTEND);
20361ed3fed7SMarius Strobl 	else
20378defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_SLOT_TIME,
20381ed3fed7SMarius Strobl 		    GEM_MAC_SLOT_TIME_NORMAL);
203942c1b001SThomas Moestl 
204042c1b001SThomas Moestl 	/* XIF Configuration */
204142c1b001SThomas Moestl 	v = GEM_MAC_XIF_LINK_LED;
204242c1b001SThomas Moestl 	v |= GEM_MAC_XIF_TX_MII_ENA;
20431ed3fed7SMarius Strobl 	if ((sc->sc_flags & GEM_SERDES) == 0) {
20448defc88cSMarius Strobl 		if ((GEM_READ_4(sc, GEM_MIF_CONFIG) &
204578d22f42SMarius Strobl 		    GEM_MIF_CONFIG_PHY_SEL) != 0) {
204642c1b001SThomas Moestl 			/* External MII needs echo disable if half duplex. */
204778d22f42SMarius Strobl 			if ((IFM_OPTIONS(sc->sc_mii->mii_media_active) &
204878d22f42SMarius Strobl 			    IFM_FDX) == 0)
204942c1b001SThomas Moestl 				v |= GEM_MAC_XIF_ECHO_DISABL;
205078d22f42SMarius Strobl 		} else
20511ed3fed7SMarius Strobl 			/*
20521ed3fed7SMarius Strobl 			 * Internal MII needs buffer enable.
20531ed3fed7SMarius Strobl 			 * XXX buffer enable makes only sense for an
20541ed3fed7SMarius Strobl 			 * external PHY.
20551ed3fed7SMarius Strobl 			 */
205642c1b001SThomas Moestl 			v |= GEM_MAC_XIF_MII_BUF_ENA;
205742c1b001SThomas Moestl 	}
20581ed3fed7SMarius Strobl 	if (gigabit != 0)
20591ed3fed7SMarius Strobl 		v |= GEM_MAC_XIF_GMII_MODE;
20601ed3fed7SMarius Strobl 	if ((IFM_OPTIONS(sc->sc_mii->mii_media_active) & IFM_FDX) != 0)
20611ed3fed7SMarius Strobl 		v |= GEM_MAC_XIF_FDPLX_LED;
20628defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_XIF_CONFIG, v);
20631ed3fed7SMarius Strobl 
2064c0e3e9d4SMarius Strobl 	sc->sc_mac_rxcfg = rxcfg;
20659f012efbSJustin Hibbits 	if ((if_getdrvflags(sc->sc_ifp) & IFF_DRV_RUNNING) != 0 &&
20661ed3fed7SMarius Strobl 	    (sc->sc_flags & GEM_LINK) != 0) {
20678defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_TX_CONFIG,
20681ed3fed7SMarius Strobl 		    txcfg | GEM_MAC_TX_ENABLE);
20698defc88cSMarius Strobl 		GEM_WRITE_4(sc, GEM_MAC_RX_CONFIG,
20701ed3fed7SMarius Strobl 		    rxcfg | GEM_MAC_RX_ENABLE);
20711ed3fed7SMarius Strobl 	}
207242c1b001SThomas Moestl }
207342c1b001SThomas Moestl 
207442c1b001SThomas Moestl int
gem_mediachange(if_t ifp)20759f012efbSJustin Hibbits gem_mediachange(if_t ifp)
207642c1b001SThomas Moestl {
20779f012efbSJustin Hibbits 	struct gem_softc *sc = if_getsoftc(ifp);
20781f317bf9SMarius Strobl 	int error;
207942c1b001SThomas Moestl 
20802a79fd39SMarius Strobl 	/* XXX add support for serial media. */
208142c1b001SThomas Moestl 
20821f317bf9SMarius Strobl 	GEM_LOCK(sc);
20831f317bf9SMarius Strobl 	error = mii_mediachg(sc->sc_mii);
20841f317bf9SMarius Strobl 	GEM_UNLOCK(sc);
20851f317bf9SMarius Strobl 	return (error);
208642c1b001SThomas Moestl }
208742c1b001SThomas Moestl 
208842c1b001SThomas Moestl void
gem_mediastatus(if_t ifp,struct ifmediareq * ifmr)20899f012efbSJustin Hibbits gem_mediastatus(if_t ifp, struct ifmediareq *ifmr)
209042c1b001SThomas Moestl {
20919f012efbSJustin Hibbits 	struct gem_softc *sc = if_getsoftc(ifp);
209242c1b001SThomas Moestl 
20938cfaff7dSMarius Strobl 	GEM_LOCK(sc);
20949f012efbSJustin Hibbits 	if ((if_getflags(ifp) & IFF_UP) == 0) {
20958cfaff7dSMarius Strobl 		GEM_UNLOCK(sc);
209642c1b001SThomas Moestl 		return;
20978cfaff7dSMarius Strobl 	}
209842c1b001SThomas Moestl 
209942c1b001SThomas Moestl 	mii_pollstat(sc->sc_mii);
210042c1b001SThomas Moestl 	ifmr->ifm_active = sc->sc_mii->mii_media_active;
210142c1b001SThomas Moestl 	ifmr->ifm_status = sc->sc_mii->mii_media_status;
21028cfaff7dSMarius Strobl 	GEM_UNLOCK(sc);
210342c1b001SThomas Moestl }
210442c1b001SThomas Moestl 
210542c1b001SThomas Moestl static int
gem_ioctl(if_t ifp,u_long cmd,caddr_t data)21069f012efbSJustin Hibbits gem_ioctl(if_t ifp, u_long cmd, caddr_t data)
210742c1b001SThomas Moestl {
21089f012efbSJustin Hibbits 	struct gem_softc *sc = if_getsoftc(ifp);
210942c1b001SThomas Moestl 	struct ifreq *ifr = (struct ifreq *)data;
21102a79fd39SMarius Strobl 	int error;
21118cfaff7dSMarius Strobl 
21122a79fd39SMarius Strobl 	error = 0;
211342c1b001SThomas Moestl 	switch (cmd) {
211442c1b001SThomas Moestl 	case SIOCSIFFLAGS:
21151f317bf9SMarius Strobl 		GEM_LOCK(sc);
21169f012efbSJustin Hibbits 		if ((if_getflags(ifp) & IFF_UP) != 0) {
21179f012efbSJustin Hibbits 			if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0 &&
21189f012efbSJustin Hibbits 			    ((if_getflags(ifp) ^ sc->sc_ifflags) &
21191ed3fed7SMarius Strobl 			    (IFF_ALLMULTI | IFF_PROMISC)) != 0)
21205ed0b954SMarius Strobl 				gem_setladrf(sc);
212142c1b001SThomas Moestl 			else
21228cfaff7dSMarius Strobl 				gem_init_locked(sc);
21239f012efbSJustin Hibbits 		} else if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0)
212442c1b001SThomas Moestl 			gem_stop(ifp, 0);
21259f012efbSJustin Hibbits 		if ((if_getflags(ifp) & IFF_LINK0) != 0)
212612fb0330SPyun YongHyeon 			sc->sc_csum_features |= CSUM_UDP;
212712fb0330SPyun YongHyeon 		else
212812fb0330SPyun YongHyeon 			sc->sc_csum_features &= ~CSUM_UDP;
21299f012efbSJustin Hibbits 		if ((if_getcapenable(ifp) & IFCAP_TXCSUM) != 0)
21309f012efbSJustin Hibbits 			if_sethwassist(ifp, sc->sc_csum_features);
21319f012efbSJustin Hibbits 		sc->sc_ifflags = if_getflags(ifp);
21321f317bf9SMarius Strobl 		GEM_UNLOCK(sc);
213342c1b001SThomas Moestl 		break;
213442c1b001SThomas Moestl 	case SIOCADDMULTI:
213542c1b001SThomas Moestl 	case SIOCDELMULTI:
21361f317bf9SMarius Strobl 		GEM_LOCK(sc);
21379f012efbSJustin Hibbits 		if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0)
21385ed0b954SMarius Strobl 			gem_setladrf(sc);
21391f317bf9SMarius Strobl 		GEM_UNLOCK(sc);
214042c1b001SThomas Moestl 		break;
214142c1b001SThomas Moestl 	case SIOCGIFMEDIA:
214242c1b001SThomas Moestl 	case SIOCSIFMEDIA:
214342c1b001SThomas Moestl 		error = ifmedia_ioctl(ifp, ifr, &sc->sc_mii->mii_media, cmd);
214442c1b001SThomas Moestl 		break;
214512fb0330SPyun YongHyeon 	case SIOCSIFCAP:
214612fb0330SPyun YongHyeon 		GEM_LOCK(sc);
21479f012efbSJustin Hibbits 		if_setcapenable(ifp, ifr->ifr_reqcap);
21489f012efbSJustin Hibbits 		if ((if_getcapenable(ifp) & IFCAP_TXCSUM) != 0)
21499f012efbSJustin Hibbits 			if_sethwassist(ifp, sc->sc_csum_features);
215012fb0330SPyun YongHyeon 		else
21519f012efbSJustin Hibbits 			if_sethwassist(ifp, 0);
215212fb0330SPyun YongHyeon 		GEM_UNLOCK(sc);
215312fb0330SPyun YongHyeon 		break;
215442c1b001SThomas Moestl 	default:
21551f317bf9SMarius Strobl 		error = ether_ioctl(ifp, cmd, data);
215642c1b001SThomas Moestl 		break;
215742c1b001SThomas Moestl 	}
215842c1b001SThomas Moestl 
215942c1b001SThomas Moestl 	return (error);
216042c1b001SThomas Moestl }
216142c1b001SThomas Moestl 
216299e76377SGleb Smirnoff static u_int
gem_hash_maddr(void * arg,struct sockaddr_dl * sdl,u_int cnt)216399e76377SGleb Smirnoff gem_hash_maddr(void *arg, struct sockaddr_dl *sdl, u_int cnt)
216499e76377SGleb Smirnoff {
216599e76377SGleb Smirnoff 	uint32_t crc, *hash = arg;
216699e76377SGleb Smirnoff 
216799e76377SGleb Smirnoff 	crc = ether_crc32_le(LLADDR(sdl), ETHER_ADDR_LEN);
216899e76377SGleb Smirnoff 	/* We just want the 8 most significant bits. */
216999e76377SGleb Smirnoff 	crc >>= 24;
217099e76377SGleb Smirnoff 	/* Set the corresponding bit in the filter. */
217199e76377SGleb Smirnoff 	hash[crc >> 4] |= 1 << (15 - (crc & 15));
217299e76377SGleb Smirnoff 
217399e76377SGleb Smirnoff 	return (1);
217499e76377SGleb Smirnoff }
217599e76377SGleb Smirnoff 
217642c1b001SThomas Moestl static void
gem_setladrf(struct gem_softc * sc)21775ed0b954SMarius Strobl gem_setladrf(struct gem_softc *sc)
217842c1b001SThomas Moestl {
21799f012efbSJustin Hibbits 	if_t ifp = sc->sc_ifp;
2180336cca9eSBenno Rice 	int i;
21812a79fd39SMarius Strobl 	uint32_t hash[16];
218299e76377SGleb Smirnoff 	uint32_t v;
218342c1b001SThomas Moestl 
21848cfaff7dSMarius Strobl 	GEM_LOCK_ASSERT(sc, MA_OWNED);
21858cfaff7dSMarius Strobl 
2186336cca9eSBenno Rice 	/*
2187c0e3e9d4SMarius Strobl 	 * Turn off the RX MAC and the hash filter as required by the Sun GEM
2188c0e3e9d4SMarius Strobl 	 * programming restrictions.
2189336cca9eSBenno Rice 	 */
21902b2f3c09SMarius Strobl 	v = sc->sc_mac_rxcfg & ~GEM_MAC_RX_HASH_FILTER;
21918defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_RX_CONFIG, v);
21928defc88cSMarius Strobl 	GEM_BARRIER(sc, GEM_MAC_RX_CONFIG, 4,
2193ccb1212aSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
21948defc88cSMarius Strobl 	if (!gem_bitwait(sc, GEM_MAC_RX_CONFIG, GEM_MAC_RX_HASH_FILTER |
2195c0e3e9d4SMarius Strobl 	    GEM_MAC_RX_ENABLE, 0))
2196c0e3e9d4SMarius Strobl 		device_printf(sc->sc_dev,
2197c0e3e9d4SMarius Strobl 		    "cannot disable RX MAC or hash filter\n");
21981ed3fed7SMarius Strobl 
2199c0e3e9d4SMarius Strobl 	v &= ~(GEM_MAC_RX_PROMISCUOUS | GEM_MAC_RX_PROMISC_GRP);
22009f012efbSJustin Hibbits 	if ((if_getflags(ifp) & IFF_PROMISC) != 0) {
220142c1b001SThomas Moestl 		v |= GEM_MAC_RX_PROMISCUOUS;
220242c1b001SThomas Moestl 		goto chipit;
220342c1b001SThomas Moestl 	}
22049f012efbSJustin Hibbits 	if ((if_getflags(ifp) & IFF_ALLMULTI) != 0) {
2205336cca9eSBenno Rice 		v |= GEM_MAC_RX_PROMISC_GRP;
220642c1b001SThomas Moestl 		goto chipit;
220742c1b001SThomas Moestl 	}
220842c1b001SThomas Moestl 
220942c1b001SThomas Moestl 	/*
22102a79fd39SMarius Strobl 	 * Set up multicast address filter by passing all multicast
22112a79fd39SMarius Strobl 	 * addresses through a crc generator, and then using the high
22122a79fd39SMarius Strobl 	 * order 8 bits as an index into the 256 bit logical address
22132a79fd39SMarius Strobl 	 * filter.  The high order 4 bits selects the word, while the
22142a79fd39SMarius Strobl 	 * other 4 bits select the bit within the word (where bit 0
22152a79fd39SMarius Strobl 	 * is the MSB).
221642c1b001SThomas Moestl 	 */
221742c1b001SThomas Moestl 
2218336cca9eSBenno Rice 	memset(hash, 0, sizeof(hash));
221999e76377SGleb Smirnoff 	if_foreach_llmaddr(ifp, gem_hash_maddr, hash);
2220336cca9eSBenno Rice 
2221336cca9eSBenno Rice 	v |= GEM_MAC_RX_HASH_FILTER;
2222336cca9eSBenno Rice 
22232a79fd39SMarius Strobl 	/* Now load the hash table into the chip (if we are using it). */
22242a79fd39SMarius Strobl 	for (i = 0; i < 16; i++)
22258defc88cSMarius Strobl 		GEM_WRITE_4(sc,
2226336cca9eSBenno Rice 		    GEM_MAC_HASH0 + i * (GEM_MAC_HASH1 - GEM_MAC_HASH0),
2227336cca9eSBenno Rice 		    hash[i]);
222842c1b001SThomas Moestl 
222942c1b001SThomas Moestl  chipit:
2230c0e3e9d4SMarius Strobl 	sc->sc_mac_rxcfg = v;
22318defc88cSMarius Strobl 	GEM_WRITE_4(sc, GEM_MAC_RX_CONFIG, v | GEM_MAC_RX_ENABLE);
223242c1b001SThomas Moestl }
2233