summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-09-21 00:01:21 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-09-21 00:01:21 +0000
commit5679003b6c6f774e5375088053f9ae75ad76c104 (patch)
tree5dbaa328d7397aa1016c29da2cfa2af4a555dbd2 /sys/dev
parent346d3c7ae5fabb03022a17a5b2eb594a98245cdf (diff)
Driver for Sun GEM ethernet. Not ready yet.
From NetBSD
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ic/gem.c2052
-rw-r--r--sys/dev/ic/gemreg.h533
-rw-r--r--sys/dev/ic/gemvar.h310
-rw-r--r--sys/dev/pci/files.pci6
-rw-r--r--sys/dev/pci/if_gem_pci.c193
5 files changed, 3093 insertions, 1 deletions
diff --git a/sys/dev/ic/gem.c b/sys/dev/ic/gem.c
new file mode 100644
index 00000000000..7f6e55b0de5
--- /dev/null
+++ b/sys/dev/ic/gem.c
@@ -0,0 +1,2052 @@
+/* $NetBSD: gem.c,v 1.1 2001/09/16 00:11:43 eeh Exp $ */
+
+/*
+ *
+ * Copyright (C) 2001 Eduardo Horvath.
+ * All rights reserved.
+ *
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ */
+
+/*
+ * Driver for Sun GEM ethernet controllers.
+ */
+
+#define GEM_DEBUG
+int gem_opdebug = 0;
+
+#include "bpfilter.h"
+#include "vlan.h"
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/timeout.h>
+#include <sys/mbuf.h>
+#include <sys/syslog.h>
+#include <sys/malloc.h>
+#include <sys/kernel.h>
+#include <sys/socket.h>
+#include <sys/ioctl.h>
+#include <sys/errno.h>
+#include <sys/device.h>
+
+#include <machine/endian.h>
+
+#include <vm/vm.h>
+#include <uvm/uvm_extern.h>
+
+#include <net/if.h>
+#include <net/if_dl.h>
+#include <net/if_media.h>
+
+#ifdef INET
+#include <netinet/in.h>
+#include <netinet/if_ether.h>
+#endif
+
+#if NBPFILTER > 0
+#include <net/bpf.h>
+#endif
+
+#if NVLAN > 0
+#include <net/if_vlan_var.h>
+#endif
+
+#include <machine/bus.h>
+#include <machine/intr.h>
+
+#include <dev/mii/mii.h>
+#include <dev/mii/miivar.h>
+#include <dev/mii/mii_bitbang.h>
+
+#include <dev/ic/gemreg.h>
+#include <dev/ic/gemvar.h>
+
+#define TRIES 10000
+
+struct cfdriver gem_cd = {
+ NULL, "gem", DV_IFNET
+};
+
+void gem_start __P((struct ifnet *));
+void gem_stop __P((struct ifnet *, int));
+int gem_ioctl __P((struct ifnet *, u_long, caddr_t));
+void gem_tick __P((void *));
+void gem_watchdog __P((struct ifnet *));
+void gem_shutdown __P((void *));
+int gem_init __P((struct ifnet *));
+void gem_init_regs(struct gem_softc *sc);
+static int gem_ringsize(int sz);
+int gem_meminit __P((struct gem_softc *));
+void gem_mifinit __P((struct gem_softc *));
+void gem_reset __P((struct gem_softc *));
+int gem_reset_rx(struct gem_softc *sc);
+int gem_reset_tx(struct gem_softc *sc);
+int gem_disable_rx(struct gem_softc *sc);
+int gem_disable_tx(struct gem_softc *sc);
+void gem_rxdrain(struct gem_softc *sc);
+int gem_add_rxbuf(struct gem_softc *sc, int idx);
+void gem_setladrf __P((struct gem_softc *));
+
+/* MII methods & callbacks */
+static int gem_mii_readreg __P((struct device *, int, int));
+static void gem_mii_writereg __P((struct device *, int, int, int));
+static void gem_mii_statchg __P((struct device *));
+
+int gem_mediachange __P((struct ifnet *));
+void gem_mediastatus __P((struct ifnet *, struct ifmediareq *));
+
+struct mbuf *gem_get __P((struct gem_softc *, int, int));
+int gem_put __P((struct gem_softc *, int, struct mbuf *));
+void gem_read __P((struct gem_softc *, int, int));
+int gem_eint __P((struct gem_softc *, u_int));
+int gem_rint __P((struct gem_softc *));
+int gem_tint __P((struct gem_softc *));
+void gem_power __P((int, void *));
+
+static int ether_cmp __P((u_char *, u_char *));
+
+/* Default buffer copy routines */
+void gem_copytobuf_contig __P((struct gem_softc *, void *, int, int));
+void gem_copyfrombuf_contig __P((struct gem_softc *, void *, int, int));
+void gem_zerobuf_contig __P((struct gem_softc *, int, int));
+
+
+#ifdef GEM_DEBUG
+#define DPRINTF(sc, x) if ((sc)->sc_arpcom.ac_if.if_flags & IFF_DEBUG) \
+ printf x
+#else
+#define DPRINTF(sc, x) /* nothing */
+#endif
+
+
+/*
+ * gem_config:
+ *
+ * Attach a Gem interface to the system.
+ */
+void
+gem_config(sc)
+ struct gem_softc *sc;
+{
+ struct ifnet *ifp = &sc->sc_arpcom.ac_if;
+ struct mii_data *mii = &sc->sc_mii;
+ struct mii_softc *child;
+ int i, error;
+
+ bcopy(sc->sc_enaddr, sc->sc_arpcom.ac_enaddr, ETHER_ADDR_LEN);
+
+ /* Make sure the chip is stopped. */
+ ifp->if_softc = sc;
+ gem_reset(sc);
+
+ /*
+ * Allocate the control data structures, and create and load the
+ * DMA map for it.
+ */
+ if ((error = bus_dmamem_alloc(sc->sc_dmatag,
+ sizeof(struct gem_control_data), PAGE_SIZE, 0, &sc->sc_cdseg,
+ 1, &sc->sc_cdnseg, 0)) != 0) {
+ printf("%s: unable to allocate control data, error = %d\n",
+ sc->sc_dev.dv_xname, error);
+ goto fail_0;
+ }
+
+/* XXX should map this in with correct endianness */
+ if ((error = bus_dmamem_map(sc->sc_dmatag, &sc->sc_cdseg, sc->sc_cdnseg,
+ sizeof(struct gem_control_data), (caddr_t *)&sc->sc_control_data,
+ BUS_DMA_COHERENT)) != 0) {
+ printf("%s: unable to map control data, error = %d\n",
+ sc->sc_dev.dv_xname, error);
+ goto fail_1;
+ }
+
+ if ((error = bus_dmamap_create(sc->sc_dmatag,
+ sizeof(struct gem_control_data), 1,
+ sizeof(struct gem_control_data), 0, 0, &sc->sc_cddmamap)) != 0) {
+ printf("%s: unable to create control data DMA map, "
+ "error = %d\n", sc->sc_dev.dv_xname, error);
+ goto fail_2;
+ }
+
+ if ((error = bus_dmamap_load(sc->sc_dmatag, sc->sc_cddmamap,
+ sc->sc_control_data, sizeof(struct gem_control_data), NULL,
+ 0)) != 0) {
+ printf("%s: unable to load control data DMA map, error = %d\n",
+ sc->sc_dev.dv_xname, error);
+ goto fail_3;
+ }
+
+ /*
+ * Initialize the transmit job descriptors.
+ */
+ SIMPLEQ_INIT(&sc->sc_txfreeq);
+ SIMPLEQ_INIT(&sc->sc_txdirtyq);
+
+ /*
+ * Create the transmit buffer DMA maps.
+ */
+ for (i = 0; i < GEM_TXQUEUELEN; i++) {
+ struct gem_txsoft *txs;
+
+ txs = &sc->sc_txsoft[i];
+ txs->txs_mbuf = NULL;
+ if ((error = bus_dmamap_create(sc->sc_dmatag, MCLBYTES,
+ GEM_NTXSEGS, MCLBYTES, 0, 0,
+ &txs->txs_dmamap)) != 0) {
+ printf("%s: unable to create tx DMA map %d, "
+ "error = %d\n", sc->sc_dev.dv_xname, i, error);
+ goto fail_4;
+ }
+ SIMPLEQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q);
+ }
+
+ /*
+ * Create the receive buffer DMA maps.
+ */
+ for (i = 0; i < GEM_NRXDESC; i++) {
+ if ((error = bus_dmamap_create(sc->sc_dmatag, MCLBYTES, 1,
+ MCLBYTES, 0, 0, &sc->sc_rxsoft[i].rxs_dmamap)) != 0) {
+ printf("%s: unable to create rx DMA map %d, "
+ "error = %d\n", sc->sc_dev.dv_xname, i, error);
+ goto fail_5;
+ }
+ sc->sc_rxsoft[i].rxs_mbuf = NULL;
+ }
+
+ /*
+ * From this point forward, the attachment cannot fail. A failure
+ * before this point releases all resources that may have been
+ * allocated.
+ */
+ sc->sc_flags |= GEMF_ATTACHED;
+
+ /* Announce ourselves. */
+ printf("%s: Ethernet address %s\n", sc->sc_dev.dv_xname,
+ ether_sprintf(sc->sc_enaddr));
+
+ /* Initialize ifnet structure. */
+ strcpy(ifp->if_xname, sc->sc_dev.dv_xname);
+ ifp->if_softc = sc;
+ ifp->if_flags =
+ IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS | IFF_MULTICAST;
+ ifp->if_start = gem_start;
+ ifp->if_ioctl = gem_ioctl;
+ ifp->if_watchdog = gem_watchdog;
+ IFQ_SET_READY(&ifp->if_snd);
+
+ /* Initialize ifmedia structures and MII info */
+ mii->mii_ifp = ifp;
+ mii->mii_readreg = gem_mii_readreg;
+ mii->mii_writereg = gem_mii_writereg;
+ mii->mii_statchg = gem_mii_statchg;
+
+ ifmedia_init(&mii->mii_media, 0, gem_mediachange, gem_mediastatus);
+
+ gem_mifinit(sc);
+
+ mii_attach(&sc->sc_dev, mii, 0xffffffff,
+ MII_PHY_ANY, MII_OFFSET_ANY, 0);
+
+ child = LIST_FIRST(&mii->mii_phys);
+ if (child == NULL) {
+ /* No PHY attached */
+ ifmedia_add(&sc->sc_media, IFM_ETHER|IFM_MANUAL, 0, NULL);
+ ifmedia_set(&sc->sc_media, IFM_ETHER|IFM_MANUAL);
+ } else {
+ /*
+ * Walk along the list of attached MII devices and
+ * establish an `MII instance' to `phy number'
+ * mapping. We'll use this mapping in media change
+ * requests to determine which phy to use to program
+ * the MIF configuration register.
+ */
+ for (; child != NULL; child = LIST_NEXT(child, mii_list)) {
+ /*
+ * Note: we support just two PHYs: the built-in
+ * internal device and an external on the MII
+ * connector.
+ */
+ if (child->mii_phy > 1 || child->mii_inst > 1) {
+ printf("%s: cannot accomodate MII device %s"
+ " at phy %d, instance %d\n",
+ sc->sc_dev.dv_xname,
+ child->mii_dev.dv_xname,
+ child->mii_phy, child->mii_inst);
+ continue;
+ }
+
+ sc->sc_phys[child->mii_inst] = child->mii_phy;
+ }
+
+ /*
+ * Now select and activate the PHY we will use.
+ *
+ * The order of preference is External (MDI1),
+ * Internal (MDI0), Serial Link (no MII).
+ */
+ if (sc->sc_phys[1]) {
+#ifdef DEBUG
+ printf("using external phy\n");
+#endif
+ sc->sc_mif_config |= GEM_MIF_CONFIG_PHY_SEL;
+ } else {
+#ifdef DEBUG
+ printf("using internal phy\n");
+#endif
+ sc->sc_mif_config &= ~GEM_MIF_CONFIG_PHY_SEL;
+ }
+ bus_space_write_4(sc->sc_bustag, sc->sc_h, GEM_MIF_CONFIG,
+ sc->sc_mif_config);
+
+ /*
+ * XXX - we can really do the following ONLY if the
+ * phy indeed has the auto negotiation capability!!
+ */
+ ifmedia_set(&sc->sc_media, IFM_ETHER|IFM_AUTO);
+ }
+
+ /* Attach the interface. */
+ if_attach(ifp);
+ ether_ifattach(ifp);
+
+ sc->sc_sh = shutdownhook_establish(gem_shutdown, sc);
+ if (sc->sc_sh == NULL)
+ panic("gem_config: can't establish shutdownhook");
+
+
+#if notyet
+ /*
+ * Add a suspend hook to make sure we come back up after a
+ * resume.
+ */
+ sc->sc_powerhook = powerhook_establish(gem_power, sc);
+ if (sc->sc_powerhook == NULL)
+ printf("%s: WARNING: unable to establish power hook\n",
+ sc->sc_dev.dv_xname);
+#endif
+
+ timeout_set(&sc->sc_tick_ch, gem_tick, sc);
+ return;
+
+ /*
+ * Free any resources we've allocated during the failed attach
+ * attempt. Do this in reverse order and fall through.
+ */
+ fail_5:
+ for (i = 0; i < GEM_NRXDESC; i++) {
+ if (sc->sc_rxsoft[i].rxs_dmamap != NULL)
+ bus_dmamap_destroy(sc->sc_dmatag,
+ sc->sc_rxsoft[i].rxs_dmamap);
+ }
+ fail_4:
+ for (i = 0; i < GEM_TXQUEUELEN; i++) {
+ if (sc->sc_txsoft[i].txs_dmamap != NULL)
+ bus_dmamap_destroy(sc->sc_dmatag,
+ sc->sc_txsoft[i].txs_dmamap);
+ }
+ bus_dmamap_unload(sc->sc_dmatag, sc->sc_cddmamap);
+ fail_3:
+ bus_dmamap_destroy(sc->sc_dmatag, sc->sc_cddmamap);
+ fail_2:
+ bus_dmamem_unmap(sc->sc_dmatag, (caddr_t)sc->sc_control_data,
+ sizeof(struct gem_control_data));
+ fail_1:
+ bus_dmamem_free(sc->sc_dmatag, &sc->sc_cdseg, sc->sc_cdnseg);
+ fail_0:
+ return;
+}
+
+
+void
+gem_tick(arg)
+ void *arg;
+{
+ struct gem_softc *sc = arg;
+ int s;
+
+ s = splnet();
+ mii_tick(&sc->sc_mii);
+ splx(s);
+
+ timeout_add(&sc->sc_tick_ch, hz);
+}
+
+void
+gem_reset(sc)
+ struct gem_softc *sc;
+{
+ bus_space_tag_t t = sc->sc_bustag;
+ bus_space_handle_t h = sc->sc_h;
+ int i;
+ int s;
+
+ s = splnet();
+ DPRINTF(sc, ("%s: gem_reset\n", sc->sc_dev.dv_xname));
+ gem_reset_rx(sc);
+ gem_reset_tx(sc);
+
+ /* Do a full reset */
+ bus_space_write_4(t, h, GEM_RESET, GEM_RESET_RX|GEM_RESET_TX);
+ for (i=TRIES; i--; delay(100))
+ if ((bus_space_read_4(t, h, GEM_RESET) &
+ (GEM_RESET_RX|GEM_RESET_TX)) == 0)
+ break;
+ if ((bus_space_read_4(t, h, GEM_RESET) &
+ (GEM_RESET_RX|GEM_RESET_TX)) != 0) {
+ printf("%s: cannot reset device\n",
+ sc->sc_dev.dv_xname);
+ }
+ splx(s);
+}
+
+
+/*
+ * gem_rxdrain:
+ *
+ * Drain the receive queue.
+ */
+void
+gem_rxdrain(struct gem_softc *sc)
+{
+ struct gem_rxsoft *rxs;
+ int i;
+
+ for (i = 0; i < GEM_NRXDESC; i++) {
+ rxs = &sc->sc_rxsoft[i];
+ if (rxs->rxs_mbuf != NULL) {
+ bus_dmamap_unload(sc->sc_dmatag, rxs->rxs_dmamap);
+ m_freem(rxs->rxs_mbuf);
+ rxs->rxs_mbuf = NULL;
+ }
+ }
+}
+
+/*
+ * Reset the whole thing.
+ */
+void
+gem_stop(struct ifnet *ifp, int disable)
+{
+ struct gem_softc *sc = (struct gem_softc *)ifp->if_softc;
+ struct gem_txsoft *txs;
+
+if (gem_opdebug) printf("in stop %d\n", disable);
+ DPRINTF(sc, ("%s: gem_stop\n", sc->sc_dev.dv_xname));
+
+ timeout_del(&sc->sc_tick_ch);
+ mii_down(&sc->sc_mii);
+
+ /* XXX - Should we reset these instead? */
+ gem_disable_rx(sc);
+ gem_disable_rx(sc);
+
+ /*
+ * Release any queued transmit buffers.
+ */
+ while ((txs = SIMPLEQ_FIRST(&sc->sc_txdirtyq)) != NULL) {
+ SIMPLEQ_REMOVE_HEAD(&sc->sc_txdirtyq, txs, txs_q);
+ if (txs->txs_mbuf != NULL) {
+ bus_dmamap_unload(sc->sc_dmatag, txs->txs_dmamap);
+ m_freem(txs->txs_mbuf);
+ txs->txs_mbuf = NULL;
+ }
+ SIMPLEQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q);
+ }
+
+ if (disable) {
+ gem_rxdrain(sc);
+ }
+
+ /*
+ * Mark the interface down and cancel the watchdog timer.
+ */
+ ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
+ ifp->if_timer = 0;
+}
+
+
+/*
+ * Reset the receiver
+ */
+int
+gem_reset_rx(struct gem_softc *sc)
+{
+ bus_space_tag_t t = sc->sc_bustag;
+ bus_space_handle_t h = sc->sc_h;
+ int i;
+
+
+ /*
+ * Resetting while DMA is in progress can cause a bus hang, so we
+ * disable DMA first.
+ */
+ gem_disable_rx(sc);
+ bus_space_write_4(t, h, GEM_RX_CONFIG, 0);
+ /* Wait till it finishes */
+ for (i=TRIES; i--; delay(100))
+ if ((bus_space_read_4(t, h, GEM_RX_CONFIG) & 1) == 0)
+ break;
+ if ((bus_space_read_4(t, h, GEM_RX_CONFIG) & 1) != 0)
+ printf("%s: cannot disable read dma\n",
+ sc->sc_dev.dv_xname);
+
+ /* Wait 5ms extra. */
+ delay(5000);
+
+ /* Finally, reset the ERX */
+ bus_space_write_4(t, h, GEM_RESET, GEM_RESET_RX);
+ /* Wait till it finishes */
+ for (i=TRIES; i--; delay(100))
+ if ((bus_space_read_4(t, h, GEM_RESET) & GEM_RESET_RX) == 0)
+ break;
+ if ((bus_space_read_4(t, h, GEM_RESET) & GEM_RESET_RX) != 0) {
+ printf("%s: cannot reset receiver\n",
+ sc->sc_dev.dv_xname);
+ return (1);
+ }
+ return (0);
+}
+
+
+/*
+ * Reset the transmitter
+ */
+int
+gem_reset_tx(struct gem_softc *sc)
+{
+ bus_space_tag_t t = sc->sc_bustag;
+ bus_space_handle_t h = sc->sc_h;
+ int i;
+
+ /*
+ * Resetting while DMA is in progress can cause a bus hang, so we
+ * disable DMA first.
+ */
+ gem_disable_tx(sc);
+ bus_space_write_4(t, h, GEM_TX_CONFIG, 0);
+ /* Wait till it finishes */
+ for (i=TRIES; i--; delay(100))
+ if ((bus_space_read_4(t, h, GEM_TX_CONFIG) & 1) == 0)
+ break;
+ if ((bus_space_read_4(t, h, GEM_TX_CONFIG) & 1) != 0)
+ printf("%s: cannot disable read dma\n",
+ sc->sc_dev.dv_xname);
+
+ /* Wait 5ms extra. */
+ delay(5000);
+
+ /* Finally, reset the ETX */
+ bus_space_write_4(t, h, GEM_RESET, GEM_RESET_TX);
+ /* Wait till it finishes */
+ for (i=TRIES; i--; delay(100))
+ if ((bus_space_read_4(t, h, GEM_RESET) & GEM_RESET_TX) == 0)
+ break;
+ if ((bus_space_read_4(t, h, GEM_RESET) & GEM_RESET_TX) != 0) {
+ printf("%s: cannot reset receiver\n",
+ sc->sc_dev.dv_xname);
+ return (1);
+ }
+ return (0);
+}
+
+/*
+ * disable receiver.
+ */
+int
+gem_disable_rx(struct gem_softc *sc)
+{
+ bus_space_tag_t t = sc->sc_bustag;
+ bus_space_handle_t h = sc->sc_h;
+ int i;
+ u_int32_t cfg;
+
+ /* Flip the enable bit */
+ cfg = bus_space_read_4(t, h, GEM_MAC_RX_CONFIG);
+ cfg &= ~GEM_MAC_RX_ENABLE;
+ bus_space_write_4(t, h, GEM_MAC_RX_CONFIG, cfg);
+
+ /* Wait for it to finish */
+ for (i=TRIES; i--; delay(100))
+ if ((bus_space_read_4(t, h, GEM_MAC_RX_CONFIG) &
+ GEM_MAC_RX_ENABLE) == 0)
+ return (0);
+ return (1);
+}
+
+/*
+ * disable transmitter.
+ */
+int
+gem_disable_tx(struct gem_softc *sc)
+{
+ bus_space_tag_t t = sc->sc_bustag;
+ bus_space_handle_t h = sc->sc_h;
+ int i;
+ u_int32_t cfg;
+
+ /* Flip the enable bit */
+ cfg = bus_space_read_4(t, h, GEM_MAC_TX_CONFIG);
+ cfg &= ~GEM_MAC_TX_ENABLE;
+ bus_space_write_4(t, h, GEM_MAC_TX_CONFIG, cfg);
+
+ /* Wait for it to finish */
+ for (i=TRIES; i--; delay(100))
+ if ((bus_space_read_4(t, h, GEM_MAC_TX_CONFIG) &
+ GEM_MAC_TX_ENABLE) == 0)
+ return (0);
+ return (1);
+}
+
+/*
+ * Initialize interface.
+ */
+int
+gem_meminit(struct gem_softc *sc)
+{
+ struct gem_rxsoft *rxs;
+ int i, error;
+
+ /*
+ * Initialize the transmit descriptor ring.
+ */
+ memset((void *)sc->sc_txdescs, 0, sizeof(sc->sc_txdescs));
+ for (i = 0; i < GEM_NTXDESC; i++) {
+ sc->sc_txdescs[i].gd_flags = 0;
+ sc->sc_txdescs[i].gd_addr = 0;
+ }
+ GEM_CDTXSYNC(sc, 0, GEM_NTXDESC,
+ BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
+ sc->sc_txfree = GEM_NTXDESC;
+ sc->sc_txnext = 0;
+
+ /*
+ * Initialize the receive descriptor and receive job
+ * descriptor rings.
+ */
+ for (i = 0; i < GEM_NRXDESC; i++) {
+ rxs = &sc->sc_rxsoft[i];
+ if (rxs->rxs_mbuf == NULL) {
+ if ((error = gem_add_rxbuf(sc, i)) != 0) {
+ printf("%s: unable to allocate or map rx "
+ "buffer %d, error = %d\n",
+ sc->sc_dev.dv_xname, i, error);
+ /*
+ * XXX Should attempt to run with fewer receive
+ * XXX buffers instead of just failing.
+ */
+ gem_rxdrain(sc);
+ return (1);
+ }
+ } else
+ GEM_INIT_RXDESC(sc, i);
+ }
+ sc->sc_rxptr = 0;
+
+ return (0);
+}
+
+static int
+gem_ringsize(int sz)
+{
+ int v;
+
+ switch (sz) {
+ case 32:
+ v = GEM_RING_SZ_32;
+ break;
+ case 64:
+ v = GEM_RING_SZ_64;
+ break;
+ case 128:
+ v = GEM_RING_SZ_128;
+ break;
+ case 256:
+ v = GEM_RING_SZ_256;
+ break;
+ case 512:
+ v = GEM_RING_SZ_512;
+ break;
+ case 1024:
+ v = GEM_RING_SZ_1024;
+ break;
+ case 2048:
+ v = GEM_RING_SZ_2048;
+ break;
+ case 4096:
+ v = GEM_RING_SZ_4096;
+ break;
+ case 8192:
+ v = GEM_RING_SZ_8192;
+ break;
+ default:
+ printf("gem: invalid Receive Descriptor ring size\n");
+ break;
+ }
+ return (v);
+}
+
+/*
+ * Initialization of interface; set up initialization block
+ * and transmit/receive descriptor rings.
+ */
+int
+gem_init(struct ifnet *ifp)
+{
+ struct gem_softc *sc = (struct gem_softc *)ifp->if_softc;
+ bus_space_tag_t t = sc->sc_bustag;
+ bus_space_handle_t h = sc->sc_h;
+ int s;
+ u_int32_t v;
+
+ s = splnet();
+
+ DPRINTF(sc, ("%s: gem_init: calling stop\n", sc->sc_dev.dv_xname));
+ /*
+ * Initialization sequence. The numbered steps below correspond
+ * to the sequence outlined in section 6.3.5.1 in the Ethernet
+ * Channel Engine manual (part of the PCIO manual).
+ * See also the STP2002-STQ document from Sun Microsystems.
+ */
+
+ /* step 1 & 2. Reset the Ethernet Channel */
+ gem_stop(ifp, 0);
+if (gem_opdebug) printf("in init\n");
+ gem_reset(sc);
+ DPRINTF(sc, ("%s: gem_init: restarting\n", sc->sc_dev.dv_xname));
+
+ /* Re-initialize the MIF */
+ gem_mifinit(sc);
+
+ /* Call MI reset function if any */
+ if (sc->sc_hwreset)
+ (*sc->sc_hwreset)(sc);
+
+ /* step 3. Setup data structures in host memory */
+ gem_meminit(sc);
+
+ /* step 4. TX MAC registers & counters */
+ gem_init_regs(sc);
+ v = ETHERMTU +
+#if NVLAN > 0
+ EVL_ENCAPLEN +
+#endif
+ 0;
+ bus_space_write_4(t, h, GEM_MAC_MAC_MAX_FRAME, (v) | (0x2000<<16));
+
+ /* step 5. RX MAC registers & counters */
+ gem_setladrf(sc);
+
+ /* step 6 & 7. Program Descriptor Ring Base Addresses */
+ bus_space_write_8(t, h, GEM_TX_RING_PTR,
+ GEM_CDTXADDR(sc, 0));
+ /* Yeeech. The following has endianness issues. */
+ bus_space_write_4(t, h, GEM_RX_RING_PTR_HI,
+ (((uint64_t)GEM_CDRXADDR(sc, 0))>>32));
+ bus_space_write_4(t, h, GEM_RX_RING_PTR_LO,
+ GEM_CDRXADDR(sc, 0));
+
+ /* step 8. Global Configuration & Interrupt Mask */
+ bus_space_write_4(t, h, GEM_INTMASK,
+ ~(GEM_INTR_TX_INTME|
+ GEM_INTR_TX_EMPTY|
+ GEM_INTR_RX_DONE|GEM_INTR_RX_NOBUF|
+ GEM_INTR_RX_TAG_ERR|GEM_INTR_PCS|
+ GEM_INTR_MAC_CONTROL|GEM_INTR_MIF|
+ GEM_INTR_BERR));
+ bus_space_write_4(t, h, GEM_MAC_RX_MASK, 0); /* XXXX */
+ bus_space_write_4(t, h, GEM_MAC_TX_MASK, 0xffff); /* XXXX */
+ bus_space_write_4(t, h, GEM_MAC_CONTROL_MASK, 0); /* XXXX */
+#if 0
+ if (!sc->sc_pci) {
+ /* Config SBus */
+ switch (sc->sc_burst) {
+ default:
+ v = 0;
+ break;
+ case 16:
+ v = GEM_SEB_CFG_BURST16;
+ break;
+ case 32:
+ v = GEM_SEB_CFG_BURST32;
+ break;
+ case 64:
+ v = GEM_SEB_CFG_BURST64;
+ break;
+ }
+ bus_space_write_4(t, seb, GEM_SEBI_CFG,
+ v|GE_SIOCFG_PARITY|GE_SIOCFG_BMODE64);
+ }
+#endif
+ /* step 9. ETX Configuration: use mostly default values */
+
+ /* Enable DMA */
+ v = gem_ringsize(GEM_NTXDESC /*XXX*/);
+ bus_space_write_4(t, h, GEM_TX_CONFIG,
+ v|GEM_TX_CONFIG_TXDMA_EN|
+ ((0x400<<10)&GEM_TX_CONFIG_TXFIFO_TH));
+ bus_space_write_4(t, h, GEM_TX_KICK, sc->sc_txnext);
+
+ /* step 10. ERX Configuration */
+
+ /* Encode Receive Descriptor ring size: four possible values */
+ v = gem_ringsize(GEM_NRXDESC /*XXX*/);
+
+ /* Enable DMA */
+ bus_space_write_4(t, h, GEM_RX_CONFIG,
+ v|(GEM_THRSH_1024<<GEM_RX_CONFIG_FIFO_THRS_SHIFT)|
+ (2<<GEM_RX_CONFIG_FBOFF_SHFT)|GEM_RX_CONFIG_RXDMA_EN|
+ (0<<GEM_RX_CONFIG_CXM_START_SHFT));
+ /*
+ * The following value is for an OFF Threshold of about 15.5 Kbytes
+ * and an ON Threshold of 4K bytes.
+ */
+ bus_space_write_4(t, h, GEM_RX_PAUSE_THRESH, 0xf8 | (0x40 << 12));
+ bus_space_write_4(t, h, GEM_RX_BLANKING, (2<<12)|6);
+
+ /* step 11. Configure Media */
+ gem_mii_statchg(&sc->sc_dev);
+
+/* XXXX Serial link needs a whole different setup. */
+
+
+ /* step 12. RX_MAC Configuration Register */
+ v = bus_space_read_4(t, h, GEM_MAC_RX_CONFIG);
+ v |= GEM_MAC_RX_ENABLE;
+ bus_space_write_4(t, h, GEM_MAC_RX_CONFIG, v);
+
+ /* step 14. Issue Transmit Pending command */
+
+ /* Call MI initialization function if any */
+ if (sc->sc_hwinit)
+ (*sc->sc_hwinit)(sc);
+
+
+ /* step 15. Give the reciever a swift kick */
+ bus_space_write_4(t, h, GEM_RX_KICK, GEM_NRXDESC-4);
+
+ /* Start the one second timer. */
+ timeout_add(&sc->sc_tick_ch, hz);
+
+ ifp->if_flags |= IFF_RUNNING;
+ ifp->if_flags &= ~IFF_OACTIVE;
+ ifp->if_timer = 0;
+ splx(s);
+
+ return (0);
+}
+
+/*
+ * Compare two Ether/802 addresses for equality, inlined and unrolled for
+ * speed.
+ */
+static __inline__ int
+ether_cmp(a, b)
+ u_char *a, *b;
+{
+
+ if (a[5] != b[5] || a[4] != b[4] || a[3] != b[3] ||
+ a[2] != b[2] || a[1] != b[1] || a[0] != b[0])
+ return (0);
+ return (1);
+}
+
+
+void
+gem_init_regs(struct gem_softc *sc)
+{
+ struct ifnet *ifp = &sc->sc_arpcom.ac_if;
+ bus_space_tag_t t = sc->sc_bustag;
+ bus_space_handle_t h = sc->sc_h;
+
+ /* These regs are not cleared on reset */
+ sc->sc_inited = 0;
+ if (!sc->sc_inited) {
+
+ /* Wooo. Magic values. */
+ bus_space_write_4(t, h, GEM_MAC_IPG0, 0);
+ bus_space_write_4(t, h, GEM_MAC_IPG1, 8);
+ bus_space_write_4(t, h, GEM_MAC_IPG2, 4);
+
+ bus_space_write_4(t, h, GEM_MAC_MAC_MIN_FRAME, ETHER_MIN_LEN);
+ /* Max frame and max burst size */
+ bus_space_write_4(t, h, GEM_MAC_MAC_MAX_FRAME,
+ (ifp->if_mtu+18) | (0x2000<<16)/* Burst size */);
+ bus_space_write_4(t, h, GEM_MAC_PREAMBLE_LEN, 0x7);
+ bus_space_write_4(t, h, GEM_MAC_JAM_SIZE, 0x4);
+ bus_space_write_4(t, h, GEM_MAC_ATTEMPT_LIMIT, 0x10);
+ /* Dunno.... */
+ bus_space_write_4(t, h, GEM_MAC_CONTROL_TYPE, 0x8088);
+ bus_space_write_4(t, h, GEM_MAC_RANDOM_SEED,
+ ((sc->sc_enaddr[5]<<8)|sc->sc_enaddr[4])&0x3ff);
+ /* Secondary MAC addr set to 0:0:0:0:0:0 */
+ bus_space_write_4(t, h, GEM_MAC_ADDR3, 0);
+ bus_space_write_4(t, h, GEM_MAC_ADDR4, 0);
+ bus_space_write_4(t, h, GEM_MAC_ADDR5, 0);
+ /* MAC control addr set to 0:1:c2:0:1:80 */
+ bus_space_write_4(t, h, GEM_MAC_ADDR6, 0x0001);
+ bus_space_write_4(t, h, GEM_MAC_ADDR7, 0xc200);
+ bus_space_write_4(t, h, GEM_MAC_ADDR8, 0x0180);
+
+ /* MAC filter addr set to 0:0:0:0:0:0 */
+ bus_space_write_4(t, h, GEM_MAC_ADDR_FILTER0, 0);
+ bus_space_write_4(t, h, GEM_MAC_ADDR_FILTER1, 0);
+ bus_space_write_4(t, h, GEM_MAC_ADDR_FILTER2, 0);
+
+ bus_space_write_4(t, h, GEM_MAC_ADR_FLT_MASK1_2, 0);
+ bus_space_write_4(t, h, GEM_MAC_ADR_FLT_MASK0, 0);
+
+ sc->sc_inited = 1;
+ }
+
+ /* Counters need to be zeroed */
+ bus_space_write_4(t, h, GEM_MAC_NORM_COLL_CNT, 0);
+ bus_space_write_4(t, h, GEM_MAC_FIRST_COLL_CNT, 0);
+ bus_space_write_4(t, h, GEM_MAC_EXCESS_COLL_CNT, 0);
+ bus_space_write_4(t, h, GEM_MAC_LATE_COLL_CNT, 0);
+ bus_space_write_4(t, h, GEM_MAC_DEFER_TMR_CNT, 0);
+ bus_space_write_4(t, h, GEM_MAC_PEAK_ATTEMPTS, 0);
+ bus_space_write_4(t, h, GEM_MAC_RX_FRAME_COUNT, 0);
+ bus_space_write_4(t, h, GEM_MAC_RX_LEN_ERR_CNT, 0);
+ bus_space_write_4(t, h, GEM_MAC_RX_ALIGN_ERR, 0);
+ bus_space_write_4(t, h, GEM_MAC_RX_CRC_ERR_CNT, 0);
+ bus_space_write_4(t, h, GEM_MAC_RX_CODE_VIOL, 0);
+
+ /* Un-pause stuff */
+#if 0
+ bus_space_write_4(t, h, GEM_MAC_SEND_PAUSE_CMD, 0x1BF0);
+#else
+ bus_space_write_4(t, h, GEM_MAC_SEND_PAUSE_CMD, 0);
+#endif
+
+ /*
+ * Set the station address.
+ */
+ bus_space_write_4(t, h, GEM_MAC_ADDR0,
+ (sc->sc_enaddr[4]<<8) | sc->sc_enaddr[5]);
+ bus_space_write_4(t, h, GEM_MAC_ADDR1,
+ (sc->sc_enaddr[2]<<8) | sc->sc_enaddr[3]);
+ bus_space_write_4(t, h, GEM_MAC_ADDR2,
+ (sc->sc_enaddr[0]<<8) | sc->sc_enaddr[1]);
+
+}
+
+
+
+void
+gem_start(ifp)
+ struct ifnet *ifp;
+{
+ struct gem_softc *sc = (struct gem_softc *)ifp->if_softc;
+ struct mbuf *m0, *m;
+ struct gem_txsoft *txs, *last_txs;
+ bus_dmamap_t dmamap;
+ int error, firsttx, nexttx, lasttx, ofree, seg;
+
+if (gem_opdebug) printf("in start free %x next %x kick %x\n",
+sc->sc_txfree, sc->sc_txnext,
+bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_TX_KICK));
+ if ((ifp->if_flags & (IFF_RUNNING | IFF_OACTIVE)) != IFF_RUNNING)
+ return;
+
+ /*
+ * Remember the previous number of free descriptors and
+ * the first descriptor we'll use.
+ */
+ ofree = sc->sc_txfree;
+ firsttx = sc->sc_txnext;
+
+ DPRINTF(sc, ("%s: gem_start: txfree %d, txnext %d\n",
+ sc->sc_dev.dv_xname, ofree, firsttx));
+
+ /*
+ * Loop through the send queue, setting up transmit descriptors
+ * until we drain the queue, or use up all available transmit
+ * descriptors.
+ */
+ while ((txs = SIMPLEQ_FIRST(&sc->sc_txfreeq)) != NULL &&
+ sc->sc_txfree != 0) {
+ /*
+ * Grab a packet off the queue.
+ */
+ IFQ_POLL(&ifp->if_snd, m0);
+ if (m0 == NULL)
+ break;
+ m = NULL;
+
+ dmamap = txs->txs_dmamap;
+
+ /*
+ * Load the DMA map. If this fails, the packet either
+ * didn't fit in the alloted number of segments, or we were
+ * short on resources. In this case, we'll copy and try
+ * again.
+ */
+ if (bus_dmamap_load_mbuf(sc->sc_dmatag, dmamap, m0,
+ BUS_DMA_WRITE|BUS_DMA_NOWAIT) != 0) {
+ MGETHDR(m, M_DONTWAIT, MT_DATA);
+ if (m == NULL) {
+ printf("%s: unable to allocate Tx mbuf\n",
+ sc->sc_dev.dv_xname);
+ break;
+ }
+ if (m0->m_pkthdr.len > MHLEN) {
+ MCLGET(m, M_DONTWAIT);
+ if ((m->m_flags & M_EXT) == 0) {
+ printf("%s: unable to allocate Tx "
+ "cluster\n", sc->sc_dev.dv_xname);
+ m_freem(m);
+ break;
+ }
+ }
+ m_copydata(m0, 0, m0->m_pkthdr.len, mtod(m, caddr_t));
+ m->m_pkthdr.len = m->m_len = m0->m_pkthdr.len;
+ error = bus_dmamap_load_mbuf(sc->sc_dmatag, dmamap,
+ m, BUS_DMA_WRITE|BUS_DMA_NOWAIT);
+ if (error) {
+ printf("%s: unable to load Tx buffer, "
+ "error = %d\n", sc->sc_dev.dv_xname, error);
+ break;
+ }
+ }
+
+ /*
+ * Ensure we have enough descriptors free to describe
+ * the packet.
+ */
+ if (dmamap->dm_nsegs > sc->sc_txfree) {
+ /*
+ * Not enough free descriptors to transmit this
+ * packet. We haven't committed to anything yet,
+ * so just unload the DMA map, put the packet
+ * back on the queue, and punt. Notify the upper
+ * layer that there are no more slots left.
+ *
+ * XXX We could allocate an mbuf and copy, but
+ * XXX it is worth it?
+ */
+ ifp->if_flags |= IFF_OACTIVE;
+ bus_dmamap_unload(sc->sc_dmatag, dmamap);
+ if (m != NULL)
+ m_freem(m);
+ break;
+ }
+
+ IFQ_DEQUEUE(&ifp->if_snd, m0);
+ if (m != NULL) {
+ m_freem(m0);
+ m0 = m;
+ }
+
+ /*
+ * WE ARE NOW COMMITTED TO TRANSMITTING THE PACKET.
+ */
+
+ /* Sync the DMA map. */
+ bus_dmamap_sync(sc->sc_dmatag, dmamap, 0, dmamap->dm_mapsize,
+ BUS_DMASYNC_PREWRITE);
+
+ /*
+ * Initialize the transmit descriptors.
+ */
+ for (nexttx = sc->sc_txnext, seg = 0;
+ seg < dmamap->dm_nsegs;
+ seg++, nexttx = GEM_NEXTTX(nexttx)) {
+ uint64_t flags;
+
+ /*
+ * If this is the first descriptor we're
+ * enqueueing, set the start of packet flag,
+ * and the checksum stuff if we want the hardware
+ * to do it.
+ */
+ sc->sc_txdescs[nexttx].gd_addr =
+ htole64(dmamap->dm_segs[seg].ds_addr);
+ flags = dmamap->dm_segs[seg].ds_len & GEM_TD_BUFSIZE;
+ if (nexttx == firsttx) {
+ flags |= GEM_TD_START_OF_PACKET;
+ }
+ if (seg == dmamap->dm_nsegs - 1) {
+ flags |= GEM_TD_END_OF_PACKET;
+ }
+ sc->sc_txdescs[nexttx].gd_flags =
+ htole64(flags);
+ lasttx = nexttx;
+ }
+
+#ifdef GEM_DEBUG
+ if (ifp->if_flags & IFF_DEBUG) {
+ printf(" gem_start %p transmit chain:\n", txs);
+ for (seg = sc->sc_txnext;; seg = GEM_NEXTTX(seg)) {
+ printf("descriptor %d:\t", seg);
+ printf("gd_flags: 0x%016llx\t", (long long)
+ letoh64(sc->sc_txdescs[seg].gd_flags));
+ printf("gd_addr: 0x%016llx\n", (long long)
+ letoh64(sc->sc_txdescs[seg].gd_addr));
+ if (seg == lasttx)
+ break;
+ }
+ }
+#endif
+
+ /* Sync the descriptors we're using. */
+ GEM_CDTXSYNC(sc, sc->sc_txnext, dmamap->dm_nsegs,
+ BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
+
+ /*
+ * Store a pointer to the packet so we can free it later,
+ * and remember what txdirty will be once the packet is
+ * done.
+ */
+ txs->txs_mbuf = m0;
+ txs->txs_firstdesc = sc->sc_txnext;
+ txs->txs_lastdesc = lasttx;
+ txs->txs_ndescs = dmamap->dm_nsegs;
+
+ /* Advance the tx pointer. */
+ sc->sc_txfree -= dmamap->dm_nsegs;
+ sc->sc_txnext = nexttx;
+
+ SIMPLEQ_REMOVE_HEAD(&sc->sc_txfreeq, txs, txs_q);
+ SIMPLEQ_INSERT_TAIL(&sc->sc_txdirtyq, txs, txs_q);
+
+ last_txs = txs;
+
+#if NBPFILTER > 0
+ /*
+ * Pass the packet to any BPF listeners.
+ */
+ if (ifp->if_bpf)
+ bpf_mtap(ifp->if_bpf, m0);
+#endif /* NBPFILTER > 0 */
+ }
+
+ if (txs == NULL || sc->sc_txfree == 0) {
+ /* No more slots left; notify upper layer. */
+ ifp->if_flags |= IFF_OACTIVE;
+ }
+
+ if (sc->sc_txfree != ofree) {
+ DPRINTF(sc, ("%s: packets enqueued, IC on %d, OWN on %d\n",
+ sc->sc_dev.dv_xname, lasttx, firsttx));
+#if 0
+ /*
+ * Cause a transmit interrupt to happen on the
+ * last packet we enqueued.
+ */
+ sc->sc_txdescs[lasttx].gd_flags |= htole64(GEM_TD_INTERRUPT_ME);
+ GEM_CDTXSYNC(sc, lasttx, 1,
+ BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
+#endif
+ /*
+ * The entire packet chain is set up.
+ * Kick the transmitter.
+ */
+ DPRINTF(sc, ("%s: gem_start: kicking tx %d\n",
+ sc->sc_dev.dv_xname, nexttx));
+if (gem_opdebug) {
+ int i;
+ int64_t pa;
+ i = bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_TX_KICK);
+ printf("GEM_TX_KICK %x GEM_TX_DATA_PTR %llx GEM_TX_RING_PTR %llx\n",
+ i,
+ (long long)bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_TX_DATA_PTR),
+ (long long)bus_space_read_8(sc->sc_bustag, sc->sc_h, GEM_TX_RING_PTR));
+ printf("descriptor %d: ", (i = lasttx));
+ printf("gd_flags: 0x%016llx\t", (long long)
+ letoh64(sc->sc_txdescs[i].gd_flags));
+ pa = letoh64(sc->sc_txdescs[i].gd_addr);
+ printf("gd_addr: 0x%016llx\n", (long long) pa);
+ printf("GEM_TX_CONFIG %x GEM_MAC_XIF_CONFIG %x GEM_MAC_TX_CONFIG %x\n",
+ bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_TX_CONFIG),
+ bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_MAC_XIF_CONFIG),
+ bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_MAC_TX_CONFIG));
+}
+ bus_space_write_4(sc->sc_bustag, sc->sc_h, GEM_TX_KICK,
+ sc->sc_txnext);
+if (gem_opdebug) printf("gem_start: txkick %x\n",
+ bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_TX_KICK));
+
+ /* Set a watchdog timer in case the chip flakes out. */
+ ifp->if_timer = 5;
+ DPRINTF(sc, ("%s: gem_start: watchdog %d\n",
+ sc->sc_dev.dv_xname, ifp->if_timer));
+ }
+}
+
+/*
+ * Transmit interrupt.
+ */
+int
+gem_tint(sc)
+ struct gem_softc *sc;
+{
+ struct ifnet *ifp = &sc->sc_arpcom.ac_if;
+ bus_space_tag_t t = sc->sc_bustag;
+ bus_space_handle_t mac = sc->sc_h;
+ struct gem_txsoft *txs;
+ int txlast;
+
+
+ DPRINTF(sc, ("%s: gem_tint: sc_flags 0x%08x\n",
+ sc->sc_dev.dv_xname, sc->sc_flags));
+
+ /*
+ * Unload collision counters
+ */
+ ifp->if_collisions +=
+ bus_space_read_4(t, mac, GEM_MAC_NORM_COLL_CNT) +
+ bus_space_read_4(t, mac, GEM_MAC_FIRST_COLL_CNT) +
+ bus_space_read_4(t, mac, GEM_MAC_EXCESS_COLL_CNT) +
+ bus_space_read_4(t, mac, GEM_MAC_LATE_COLL_CNT);
+
+ /*
+ * then clear the hardware counters.
+ */
+ bus_space_write_4(t, mac, GEM_MAC_NORM_COLL_CNT, 0);
+ bus_space_write_4(t, mac, GEM_MAC_FIRST_COLL_CNT, 0);
+ bus_space_write_4(t, mac, GEM_MAC_EXCESS_COLL_CNT, 0);
+ bus_space_write_4(t, mac, GEM_MAC_LATE_COLL_CNT, 0);
+
+ /*
+ * Go through our Tx list and free mbufs for those
+ * frames that have been transmitted.
+ */
+ while ((txs = SIMPLEQ_FIRST(&sc->sc_txdirtyq)) != NULL) {
+ GEM_CDTXSYNC(sc, txs->txs_lastdesc,
+ txs->txs_ndescs,
+ BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
+
+#ifdef GEM_DEBUG
+ if (ifp->if_flags & IFF_DEBUG) {
+ int i;
+ printf(" txsoft %p transmit chain:\n", txs);
+ for (i = txs->txs_firstdesc;; i = GEM_NEXTTX(i)) {
+ printf("descriptor %d: ", i);
+ printf("gd_flags: 0x%016llx\t", (long long)
+ letoh64(sc->sc_txdescs[i].gd_flags));
+ printf("gd_addr: 0x%016llx\n", (long long)
+ letoh64(sc->sc_txdescs[i].gd_addr));
+ if (i == txs->txs_lastdesc)
+ break;
+ }
+ }
+#endif
+
+ /*
+ * In theory, we could harveast some descriptors before
+ * the ring is empty, but that's a bit complicated.
+ *
+ * GEM_TX_COMPLETION points to the last descriptor
+ * processed +1.
+ */
+ txlast = bus_space_read_4(t, mac, GEM_TX_COMPLETION);
+ DPRINTF(sc,
+ ("gem_tint: txs->txs_lastdesc = %d, txlast = %d\n",
+ txs->txs_lastdesc, txlast));
+ if (txs->txs_firstdesc <= txs->txs_lastdesc) {
+ if ((txlast >= txs->txs_firstdesc) &&
+ (txlast <= txs->txs_lastdesc))
+ break;
+ } else {
+ /* Ick -- this command wraps */
+ if ((txlast >= txs->txs_firstdesc) ||
+ (txlast <= txs->txs_lastdesc))
+ break;
+ }
+
+ DPRINTF(sc, ("gem_tint: releasing a desc\n"));
+ SIMPLEQ_REMOVE_HEAD(&sc->sc_txdirtyq, txs, txs_q);
+
+ sc->sc_txfree += txs->txs_ndescs;
+
+ if (txs->txs_mbuf == NULL) {
+#ifdef DIAGNOSTIC
+ panic("gem_txintr: null mbuf");
+#endif
+ }
+
+ bus_dmamap_sync(sc->sc_dmatag, txs->txs_dmamap,
+ 0, txs->txs_dmamap->dm_mapsize,
+ BUS_DMASYNC_POSTWRITE);
+ bus_dmamap_unload(sc->sc_dmatag, txs->txs_dmamap);
+ m_freem(txs->txs_mbuf);
+ txs->txs_mbuf = NULL;
+
+ SIMPLEQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q);
+
+ ifp->if_opackets++;
+ }
+
+ DPRINTF(sc, ("gem_tint: GEM_TX_STATE_MACHINE %x "
+ "GEM_TX_DATA_PTR %llx "
+ "GEM_TX_COMPLETION %x\n",
+ bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_TX_STATE_MACHINE),
+ (long long)bus_space_read_8(sc->sc_bustag, sc->sc_h,
+ GEM_TX_DATA_PTR),
+ bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_TX_COMPLETION)));
+
+ gem_start(ifp);
+
+ if (SIMPLEQ_FIRST(&sc->sc_txdirtyq) == NULL)
+ ifp->if_timer = 0;
+ DPRINTF(sc, ("%s: gem_tint: watchdog %d\n",
+ sc->sc_dev.dv_xname, ifp->if_timer));
+
+ return (1);
+}
+
+/*
+ * Receive interrupt.
+ */
+int
+gem_rint(sc)
+ struct gem_softc *sc;
+{
+ struct ifnet *ifp = &sc->sc_arpcom.ac_if;
+ bus_space_tag_t t = sc->sc_bustag;
+ bus_space_handle_t h = sc->sc_h;
+ struct ether_header *eh;
+ struct gem_rxsoft *rxs;
+ struct mbuf *m;
+ u_int64_t rxstat;
+ int i, len;
+
+ DPRINTF(sc, ("%s: gem_rint: sc_flags 0x%08x\n",
+ sc->sc_dev.dv_xname, sc->sc_flags));
+ /*
+ * XXXX Read the lastrx only once at the top for speed.
+ */
+ DPRINTF(sc, ("gem_rint: sc->rxptr %d, complete %d\n",
+ sc->sc_rxptr, bus_space_read_4(t, h, GEM_RX_COMPLETION)));
+ for (i = sc->sc_rxptr; i != bus_space_read_4(t, h, GEM_RX_COMPLETION);
+ i = GEM_NEXTRX(i)) {
+ rxs = &sc->sc_rxsoft[i];
+
+ GEM_CDRXSYNC(sc, i,
+ BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
+
+ rxstat = letoh64(sc->sc_rxdescs[i].gd_flags);
+
+ if (rxstat & GEM_RD_OWN) {
+ printf("gem_rint: completed descriptor "
+ "still owned %d\n", i);
+ /*
+ * We have processed all of the receive buffers.
+ */
+ break;
+ }
+
+ if (rxstat & GEM_RD_BAD_CRC) {
+ printf("%s: receive error: CRC error\n",
+ sc->sc_dev.dv_xname);
+ GEM_INIT_RXDESC(sc, i);
+ continue;
+ }
+
+ bus_dmamap_sync(sc->sc_dmatag, rxs->rxs_dmamap, 0,
+ rxs->rxs_dmamap->dm_mapsize, BUS_DMASYNC_POSTREAD);
+#ifdef GEM_DEBUG
+ if (ifp->if_flags & IFF_DEBUG) {
+ printf(" rxsoft %p descriptor %d: ", rxs, i);
+ printf("gd_flags: 0x%016llx\t", (long long)
+ letoh64(sc->sc_rxdescs[i].gd_flags));
+ printf("gd_addr: 0x%016llx\n", (long long)
+ letoh64(sc->sc_rxdescs[i].gd_addr));
+ }
+#endif
+
+ /*
+ * No errors; receive the packet. Note the Gem
+ * includes the CRC with every packet.
+ */
+ len = GEM_RD_BUFLEN(rxstat);
+
+ /*
+ * We align the mbuf data in gem_add_rxbuf() so
+ * we can use __NO_STRICT_ALIGNMENT here
+ */
+#define __NO_STRICT_ALIGNMENT
+#ifdef __NO_STRICT_ALIGNMENT
+ /*
+ * Allocate a new mbuf cluster. If that fails, we are
+ * out of memory, and must drop the packet and recycle
+ * the buffer that's already attached to this descriptor.
+ */
+ m = rxs->rxs_mbuf;
+ if (gem_add_rxbuf(sc, i) != 0) {
+ ifp->if_ierrors++;
+ GEM_INIT_RXDESC(sc, i);
+ bus_dmamap_sync(sc->sc_dmatag, rxs->rxs_dmamap, 0,
+ rxs->rxs_dmamap->dm_mapsize, BUS_DMASYNC_PREREAD);
+ continue;
+ }
+ m->m_data += 2; /* We're already off by two */
+#else
+ /*
+ * The Gem's receive buffers must be 4-byte aligned.
+ * But this means that the data after the Ethernet header
+ * is misaligned. We must allocate a new buffer and
+ * copy the data, shifted forward 2 bytes.
+ */
+ MGETHDR(m, M_DONTWAIT, MT_DATA);
+ if (m == NULL) {
+ dropit:
+ ifp->if_ierrors++;
+ GEM_INIT_RXDESC(sc, i);
+ bus_dmamap_sync(sc->sc_dmatag, rxs->rxs_dmamap, 0,
+ rxs->rxs_dmamap->dm_mapsize, BUS_DMASYNC_PREREAD);
+ continue;
+ }
+ if (len > (MHLEN - 2)) {
+ MCLGET(m, M_DONTWAIT);
+ if ((m->m_flags & M_EXT) == 0) {
+ m_freem(m);
+ goto dropit;
+ }
+ }
+ m->m_data += 2;
+
+ /*
+ * Note that we use clusters for incoming frames, so the
+ * buffer is virtually contiguous.
+ */
+ memcpy(mtod(m, caddr_t), mtod(rxs->rxs_mbuf, caddr_t), len);
+
+ /* Allow the receive descriptor to continue using its mbuf. */
+ GEM_INIT_RXDESC(sc, i);
+ bus_dmamap_sync(sc->sc_dmatag, rxs->rxs_dmamap, 0,
+ rxs->rxs_dmamap->dm_mapsize, BUS_DMASYNC_PREREAD);
+#endif /* __NO_STRICT_ALIGNMENT */
+
+ ifp->if_ipackets++;
+ eh = mtod(m, struct ether_header *);
+#if 0 /* XXXART */
+ m->m_flags |= M_HASFCS;
+#endif
+ m->m_pkthdr.rcvif = ifp;
+ m->m_pkthdr.len = m->m_len = len;
+
+#if NBPFILTER > 0
+ /*
+ * Pass this up to any BPF listeners, but only
+ * pass it up the stack if its for us.
+ */
+ if (ifp->if_bpf)
+ bpf_mtap(ifp->if_bpf, m);
+#endif /* NPBFILTER > 0 */
+
+#if 0
+ /*
+ * We sometimes have to run the 21140 in Hash-Only
+ * mode. If we're in that mode, and not in promiscuous
+ * mode, and we have a unicast packet that isn't for
+ * us, then drop it.
+ */
+ if (sc->sc_filtmode == TDCTL_Tx_FT_HASHONLY &&
+ (ifp->if_flags & IFF_PROMISC) == 0 &&
+ ETHER_IS_MULTICAST(eh->ether_dhost) == 0 &&
+ memcmp(LLADDR(ifp->if_sadl), eh->ether_dhost,
+ ETHER_ADDR_LEN) != 0) {
+ m_freem(m);
+ continue;
+ }
+#endif
+
+ /* Pass it on. */
+ ether_input_mbuf(ifp, m);
+ }
+
+ /* Update the receive pointer. */
+ sc->sc_rxptr = i;
+ bus_space_write_4(t, h, GEM_RX_KICK, i);
+
+ DPRINTF(sc, ("gem_rint: done sc->rxptr %d, complete %d\n",
+ sc->sc_rxptr, bus_space_read_4(t, h, GEM_RX_COMPLETION)));
+
+ return (1);
+}
+
+
+/*
+ * gem_add_rxbuf:
+ *
+ * Add a receive buffer to the indicated descriptor.
+ */
+int
+gem_add_rxbuf(struct gem_softc *sc, int idx)
+{
+ struct gem_rxsoft *rxs = &sc->sc_rxsoft[idx];
+ struct mbuf *m;
+ int error;
+
+ MGETHDR(m, M_DONTWAIT, MT_DATA);
+ if (m == NULL)
+ return (ENOBUFS);
+
+ MCLGET(m, M_DONTWAIT);
+ if ((m->m_flags & M_EXT) == 0) {
+ m_freem(m);
+ return (ENOBUFS);
+ }
+
+#ifdef GEM_DEBUG
+/* bzero the packet to check dma */
+ memset(m->m_ext.ext_buf, 0, m->m_ext.ext_size);
+#endif
+
+ if (rxs->rxs_mbuf != NULL)
+ bus_dmamap_unload(sc->sc_dmatag, rxs->rxs_dmamap);
+
+ rxs->rxs_mbuf = m;
+
+ error = bus_dmamap_load(sc->sc_dmatag, rxs->rxs_dmamap,
+ m->m_ext.ext_buf, m->m_ext.ext_size, NULL,
+ BUS_DMA_READ|BUS_DMA_NOWAIT);
+ if (error) {
+ printf("%s: can't load rx DMA map %d, error = %d\n",
+ sc->sc_dev.dv_xname, idx, error);
+ panic("gem_add_rxbuf"); /* XXX */
+ }
+
+ bus_dmamap_sync(sc->sc_dmatag, rxs->rxs_dmamap, 0,
+ rxs->rxs_dmamap->dm_mapsize, BUS_DMASYNC_PREREAD);
+
+ GEM_INIT_RXDESC(sc, idx);
+
+ return (0);
+}
+
+
+int
+gem_eint(sc, status)
+ struct gem_softc *sc;
+ u_int status;
+{
+#if 0
+ char bits[128];
+#endif
+
+ if ((status & GEM_INTR_MIF) != 0) {
+ printf("%s: XXXlink status changed\n", sc->sc_dev.dv_xname);
+ return (1);
+ }
+
+#if 0 /* XXXART - I'm lazy */
+ printf("%s: status=%s\n", sc->sc_dev.dv_xname,
+ bitmask_snprintf(status, GEM_INTR_BITS, bits, sizeof(bits)));
+#endif
+ return (1);
+}
+
+
+int
+gem_intr(v)
+ void *v;
+{
+ struct gem_softc *sc = (struct gem_softc *)v;
+ bus_space_tag_t t = sc->sc_bustag;
+ bus_space_handle_t seb = sc->sc_h;
+ u_int32_t status;
+ int r = 0;
+
+#if 0
+ char bits[128];
+#endif
+
+ status = bus_space_read_4(t, seb, GEM_STATUS);
+#if 0 /* XXXART - I'm lazy */
+ DPRINTF(sc, ("%s: gem_intr: cplt %xstatus %s\n",
+ sc->sc_dev.dv_xname, (status>>19),
+ bitmask_snprintf(status, GEM_INTR_BITS, bits, sizeof(bits))));
+#endif
+#if 0 /* XXXART */
+if (gem_opdebug) printf("%s: gem_intr: cplt %x status %s\n",
+ sc->sc_dev.dv_xname, (status>>19),
+ bitmask_snprintf(status, GEM_INTR_BITS, bits, sizeof(bits)));
+#endif
+if (gem_opdebug && (status & GEM_INTR_TX_DONE)) {
+ int i;
+ int64_t pa;
+ i = bus_space_read_4(t, seb, GEM_TX_KICK);
+ printf("GEM_TX_KICK %x GEM_TX_DATA_PTR %llx GEM_TX_RING_PTR %llx\n",
+ i, (long long)bus_space_read_4(t, seb, GEM_TX_DATA_PTR),
+ (long long)bus_space_read_8(t, seb, GEM_TX_RING_PTR));
+ printf("descriptor %d: ", --i);
+ printf("gd_flags: 0x%016llx\t", (long long)
+ letoh64(sc->sc_txdescs[i].gd_flags));
+ pa = letoh64(sc->sc_txdescs[i].gd_addr);
+ printf("gd_addr: 0x%016llx\n", (long long) pa);
+ printf("GEM_TX_CONFIG %x GEM_MAC_XIF_CONFIG %x GEM_MAC_TX_CONFIG %x "
+ "GEM_MAC_TX_STATUS %x\n",
+ bus_space_read_4(t, seb, GEM_TX_CONFIG),
+ bus_space_read_4(t, seb, GEM_MAC_XIF_CONFIG),
+ bus_space_read_4(t, seb, GEM_MAC_TX_CONFIG),
+ bus_space_read_4(t, seb, GEM_MAC_TX_STATUS));
+}
+
+ if ((status & (GEM_INTR_RX_TAG_ERR | GEM_INTR_BERR)) != 0)
+ r |= gem_eint(sc, status);
+
+ if ((status &
+ (GEM_INTR_TX_EMPTY | GEM_INTR_TX_INTME))
+ != 0)
+ r |= gem_tint(sc);
+
+ if ((status & (GEM_INTR_RX_DONE | GEM_INTR_RX_NOBUF)) != 0)
+ r |= gem_rint(sc);
+
+ /* We should eventually do more than just print out error stats. */
+ if (status & GEM_INTR_TX_MAC) {
+ int txstat = bus_space_read_4(t, seb, GEM_MAC_TX_STATUS);
+ if (txstat & ~GEM_MAC_TX_XMIT_DONE)
+ printf("MAC tx fault, status %x\n", txstat);
+ }
+ if (status & GEM_INTR_RX_MAC) {
+ int rxstat = bus_space_read_4(t, seb, GEM_MAC_RX_STATUS);
+ if (rxstat & ~GEM_MAC_RX_DONE)
+ printf("MAC rx fault, status %x\n", rxstat);
+ }
+ return (r);
+}
+
+
+void
+gem_watchdog(ifp)
+ struct ifnet *ifp;
+{
+ struct gem_softc *sc = ifp->if_softc;
+
+ DPRINTF(sc, ("gem_watchdog: GEM_RX_CONFIG %x GEM_MAC_RX_STATUS %x "
+ "GEM_MAC_RX_CONFIG %x\n",
+ bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_RX_CONFIG),
+ bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_MAC_RX_STATUS),
+ bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_MAC_RX_CONFIG)));
+
+ log(LOG_ERR, "%s: device timeout\n", sc->sc_dev.dv_xname);
+ ++ifp->if_oerrors;
+
+ /* Try to get more packets going. */
+// gem_reset(sc);
+ gem_start(ifp);
+}
+
+/*
+ * Initialize the MII Management Interface
+ */
+void
+gem_mifinit(sc)
+ struct gem_softc *sc;
+{
+ bus_space_tag_t t = sc->sc_bustag;
+ bus_space_handle_t mif = sc->sc_h;
+
+ /* Configure the MIF in frame mode */
+ sc->sc_mif_config = bus_space_read_4(t, mif, GEM_MIF_CONFIG);
+ sc->sc_mif_config &= ~GEM_MIF_CONFIG_BB_ENA;
+ bus_space_write_4(t, mif, GEM_MIF_CONFIG, sc->sc_mif_config);
+}
+
+/*
+ * MII interface
+ *
+ * The GEM MII interface supports at least three different operating modes:
+ *
+ * Bitbang mode is implemented using data, clock and output enable registers.
+ *
+ * Frame mode is implemented by loading a complete frame into the frame
+ * register and polling the valid bit for completion.
+ *
+ * Polling mode uses the frame register but completion is indicated by
+ * an interrupt.
+ *
+ */
+static int
+gem_mii_readreg(self, phy, reg)
+ struct device *self;
+ int phy, reg;
+{
+ struct gem_softc *sc = (void *)self;
+ bus_space_tag_t t = sc->sc_bustag;
+ bus_space_handle_t mif = sc->sc_h;
+ int n;
+ u_int32_t v;
+
+#ifdef GEM_DEBUG1
+ if (sc->sc_debug)
+ printf("gem_mii_readreg: phy %d reg %d\n", phy, reg);
+#endif
+
+#if 0
+ /* Select the desired PHY in the MIF configuration register */
+ v = bus_space_read_4(t, mif, GEM_MIF_CONFIG);
+ /* Clear PHY select bit */
+ v &= ~GEM_MIF_CONFIG_PHY_SEL;
+ if (phy == GEM_PHYAD_EXTERNAL)
+ /* Set PHY select bit to get at external device */
+ v |= GEM_MIF_CONFIG_PHY_SEL;
+ bus_space_write_4(t, mif, GEM_MIF_CONFIG, v);
+#endif
+
+ /* Construct the frame command */
+ v = (reg << GEM_MIF_REG_SHIFT) | (phy << GEM_MIF_PHY_SHIFT) |
+ GEM_MIF_FRAME_READ;
+
+ bus_space_write_4(t, mif, GEM_MIF_FRAME, v);
+ for (n = 0; n < 100; n++) {
+ DELAY(1);
+ v = bus_space_read_4(t, mif, GEM_MIF_FRAME);
+ if (v & GEM_MIF_FRAME_TA0)
+ return (v & GEM_MIF_FRAME_DATA);
+ }
+
+ printf("%s: mii_read timeout\n", sc->sc_dev.dv_xname);
+ return (0);
+}
+
+static void
+gem_mii_writereg(self, phy, reg, val)
+ struct device *self;
+ int phy, reg, val;
+{
+ struct gem_softc *sc = (void *)self;
+ bus_space_tag_t t = sc->sc_bustag;
+ bus_space_handle_t mif = sc->sc_h;
+ int n;
+ u_int32_t v;
+
+#ifdef GEM_DEBUG1
+ if (sc->sc_debug)
+ printf("gem_mii_writereg: phy %d reg %d val %x\n",
+ phy, reg, val);
+#endif
+
+#if 0
+ /* Select the desired PHY in the MIF configuration register */
+ v = bus_space_read_4(t, mif, GEM_MIF_CONFIG);
+ /* Clear PHY select bit */
+ v &= ~GEM_MIF_CONFIG_PHY_SEL;
+ if (phy == GEM_PHYAD_EXTERNAL)
+ /* Set PHY select bit to get at external device */
+ v |= GEM_MIF_CONFIG_PHY_SEL;
+ bus_space_write_4(t, mif, GEM_MIF_CONFIG, v);
+#endif
+ /* Construct the frame command */
+ v = GEM_MIF_FRAME_WRITE |
+ (phy << GEM_MIF_PHY_SHIFT) |
+ (reg << GEM_MIF_REG_SHIFT) |
+ (val & GEM_MIF_FRAME_DATA);
+
+ bus_space_write_4(t, mif, GEM_MIF_FRAME, v);
+ for (n = 0; n < 100; n++) {
+ DELAY(1);
+ v = bus_space_read_4(t, mif, GEM_MIF_FRAME);
+ if (v & GEM_MIF_FRAME_TA0)
+ return;
+ }
+
+ printf("%s: mii_write timeout\n", sc->sc_dev.dv_xname);
+}
+
+static void
+gem_mii_statchg(dev)
+ struct device *dev;
+{
+ struct gem_softc *sc = (void *)dev;
+ int instance = IFM_INST(sc->sc_mii.mii_media.ifm_cur->ifm_media);
+ int phy = sc->sc_phys[instance];
+ bus_space_tag_t t = sc->sc_bustag;
+ bus_space_handle_t mac = sc->sc_h;
+ u_int32_t v;
+
+#ifdef GEM_DEBUG
+ if (sc->sc_debug)
+ printf("gem_mii_statchg: status change: phy = %d\n", phy);
+#endif
+
+
+ /* Set tx full duplex options */
+ bus_space_write_4(t, mac, GEM_MAC_TX_CONFIG, 0);
+ delay(10000); /* reg must be cleared and delay before changing. */
+ v = GEM_MAC_TX_ENA_IPG0|GEM_MAC_TX_NGU|GEM_MAC_TX_NGU_LIMIT|
+ GEM_MAC_TX_ENABLE;
+ if ((IFM_OPTIONS(sc->sc_mii.mii_media_active) & IFM_FDX) != 0) {
+ v |= GEM_MAC_TX_IGN_CARRIER|GEM_MAC_TX_IGN_COLLIS;
+ }
+ bus_space_write_4(t, mac, GEM_MAC_TX_CONFIG, v);
+
+ /* XIF Configuration */
+ /* We should really calculate all this rather than rely on defaults */
+ v = bus_space_read_4(t, mac, GEM_MAC_XIF_CONFIG);
+ v = GEM_MAC_XIF_LINK_LED;
+ v |= GEM_MAC_XIF_TX_MII_ENA;
+ /* If an external transceiver is connected, enable its MII drivers */
+ sc->sc_mif_config = bus_space_read_4(t, mac, GEM_MIF_CONFIG);
+ if ((sc->sc_mif_config & GEM_MIF_CONFIG_MDI1) != 0) {
+ /* External MII needs echo disable if half duplex. */
+ if ((IFM_OPTIONS(sc->sc_mii.mii_media_active) & IFM_FDX) != 0)
+ /* turn on full duplex LED */
+ v |= GEM_MAC_XIF_FDPLX_LED;
+ else
+ /* half duplex -- disable echo */
+ v |= GEM_MAC_XIF_ECHO_DISABL;
+ } else
+ /* Internal MII needs buf enable */
+ v |= GEM_MAC_XIF_MII_BUF_ENA;
+ bus_space_write_4(t, mac, GEM_MAC_XIF_CONFIG, v);
+}
+
+int
+gem_mediachange(ifp)
+ struct ifnet *ifp;
+{
+ struct gem_softc *sc = ifp->if_softc;
+
+ if (IFM_TYPE(sc->sc_media.ifm_media) != IFM_ETHER)
+ return (EINVAL);
+
+ return (mii_mediachg(&sc->sc_mii));
+}
+
+void
+gem_mediastatus(ifp, ifmr)
+ struct ifnet *ifp;
+ struct ifmediareq *ifmr;
+{
+ struct gem_softc *sc = ifp->if_softc;
+
+ if ((ifp->if_flags & IFF_UP) == 0)
+ return;
+
+ mii_pollstat(&sc->sc_mii);
+ ifmr->ifm_active = sc->sc_mii.mii_media_active;
+ ifmr->ifm_status = sc->sc_mii.mii_media_status;
+}
+
+int gem_ioctldebug = 0;
+/*
+ * Process an ioctl request.
+ */
+int
+gem_ioctl(ifp, cmd, data)
+ struct ifnet *ifp;
+ u_long cmd;
+ caddr_t data;
+{
+ struct gem_softc *sc = ifp->if_softc;
+ struct ifreq *ifr = (struct ifreq *)data;
+ int s, error = 0;
+
+
+ switch (cmd) {
+ case SIOCGIFMEDIA:
+ case SIOCSIFMEDIA:
+ error = ifmedia_ioctl(ifp, ifr, &sc->sc_media, cmd);
+ break;
+
+ default:
+ error = ether_ioctl(ifp, &sc->sc_arpcom, cmd, data);
+ if (error == ENETRESET) {
+ /*
+ * Multicast list has changed; set the hardware filter
+ * accordingly.
+ */
+if (gem_ioctldebug) printf("reset1\n");
+ gem_init(ifp);
+ delay(50000);
+ error = 0;
+ }
+ break;
+ }
+
+ /* Try to get things going again */
+ if (ifp->if_flags & IFF_UP) {
+if (gem_ioctldebug) printf("start\n");
+ gem_start(ifp);
+ }
+ splx(s);
+ return (error);
+}
+
+
+void
+gem_shutdown(arg)
+ void *arg;
+{
+ struct gem_softc *sc = (struct gem_softc *)arg;
+ struct ifnet *ifp = &sc->sc_arpcom.ac_if;
+
+ gem_stop(ifp, 1);
+}
+
+/*
+ * Set up the logical address filter.
+ */
+void
+gem_setladrf(sc)
+ struct gem_softc *sc;
+{
+ struct ifnet *ifp = &sc->sc_arpcom.ac_if;
+ struct ether_multi *enm;
+ struct ether_multistep step;
+ struct arpcom *ac = &sc->sc_arpcom;
+ bus_space_tag_t t = sc->sc_bustag;
+ bus_space_handle_t h = sc->sc_h;
+ u_char *cp;
+ u_int32_t crc;
+ u_int32_t hash[16];
+ u_int32_t v;
+ int len;
+
+ /* Clear hash table */
+ memset(hash, 0, sizeof(hash));
+
+ /* Get current RX configuration */
+ v = bus_space_read_4(t, h, GEM_MAC_RX_CONFIG);
+
+ if ((ifp->if_flags & IFF_PROMISC) != 0) {
+ /* Turn on promiscuous mode; turn off the hash filter */
+ v |= GEM_MAC_RX_PROMISCUOUS;
+ v &= ~GEM_MAC_RX_HASH_FILTER;
+ ifp->if_flags |= IFF_ALLMULTI;
+ goto chipit;
+ }
+
+ /* Turn off promiscuous mode; turn on the hash filter */
+ v &= ~GEM_MAC_RX_PROMISCUOUS;
+ v |= GEM_MAC_RX_HASH_FILTER;
+
+ /*
+ * Set up multicast address filter by passing all multicast addresses
+ * through a crc generator, and then using the high order 6 bits as an
+ * index into the 256 bit logical address filter. The high order bit
+ * selects the word, while the rest of the bits select the bit within
+ * the word.
+ */
+
+ ETHER_FIRST_MULTI(step, ac, enm);
+ while (enm != NULL) {
+ if (ether_cmp(enm->enm_addrlo, enm->enm_addrhi)) {
+ /*
+ * We must listen to a range of multicast addresses.
+ * For now, just accept all multicasts, rather than
+ * trying to set only those filter bits needed to match
+ * the range. (At this time, the only use of address
+ * ranges is for IP multicast routing, for which the
+ * range is big enough to require all bits set.)
+ */
+ hash[3] = hash[2] = hash[1] = hash[0] = 0xffff;
+ ifp->if_flags |= IFF_ALLMULTI;
+ goto chipit;
+ }
+
+ cp = enm->enm_addrlo;
+ crc = 0xffffffff;
+ for (len = sizeof(enm->enm_addrlo); --len >= 0;) {
+ int octet = *cp++;
+ int i;
+
+#define MC_POLY_LE 0xedb88320UL /* mcast crc, little endian */
+ for (i = 0; i < 8; i++) {
+ if ((crc & 1) ^ (octet & 1)) {
+ crc >>= 1;
+ crc ^= MC_POLY_LE;
+ } else {
+ crc >>= 1;
+ }
+ octet >>= 1;
+ }
+ }
+ /* Just want the 8 most significant bits. */
+ crc >>= 24;
+
+ /* Set the corresponding bit in the filter. */
+ hash[crc >> 4] |= 1 << (crc & 0xf);
+
+ ETHER_NEXT_MULTI(step, enm);
+ }
+
+ ifp->if_flags &= ~IFF_ALLMULTI;
+
+chipit:
+ /* Now load the hash table into the chip */
+ bus_space_write_4(t, h, GEM_MAC_HASH0, hash[0]);
+ bus_space_write_4(t, h, GEM_MAC_HASH1, hash[1]);
+ bus_space_write_4(t, h, GEM_MAC_HASH2, hash[2]);
+ bus_space_write_4(t, h, GEM_MAC_HASH3, hash[3]);
+ bus_space_write_4(t, h, GEM_MAC_HASH4, hash[4]);
+ bus_space_write_4(t, h, GEM_MAC_HASH5, hash[5]);
+ bus_space_write_4(t, h, GEM_MAC_HASH6, hash[6]);
+ bus_space_write_4(t, h, GEM_MAC_HASH7, hash[7]);
+ bus_space_write_4(t, h, GEM_MAC_HASH8, hash[8]);
+ bus_space_write_4(t, h, GEM_MAC_HASH9, hash[9]);
+ bus_space_write_4(t, h, GEM_MAC_HASH10, hash[10]);
+ bus_space_write_4(t, h, GEM_MAC_HASH11, hash[11]);
+ bus_space_write_4(t, h, GEM_MAC_HASH12, hash[12]);
+ bus_space_write_4(t, h, GEM_MAC_HASH13, hash[13]);
+ bus_space_write_4(t, h, GEM_MAC_HASH14, hash[14]);
+ bus_space_write_4(t, h, GEM_MAC_HASH15, hash[15]);
+
+ bus_space_write_4(t, h, GEM_MAC_RX_CONFIG, v);
+}
+
+#if notyet
+
+/*
+ * gem_power:
+ *
+ * Power management (suspend/resume) hook.
+ */
+void
+gem_power(why, arg)
+ int why;
+ void *arg;
+{
+ struct gem_softc *sc = arg;
+ struct ifnet *ifp = &sc->sc_arpcom.ac_if;
+ int s;
+
+ s = splnet();
+ switch (why) {
+ case PWR_SUSPEND:
+ case PWR_STANDBY:
+ gem_stop(ifp, 1);
+ if (sc->sc_power != NULL)
+ (*sc->sc_power)(sc, why);
+ break;
+ case PWR_RESUME:
+ if (ifp->if_flags & IFF_UP) {
+ if (sc->sc_power != NULL)
+ (*sc->sc_power)(sc, why);
+ gem_init(ifp);
+ }
+ break;
+ case PWR_SOFTSUSPEND:
+ case PWR_SOFTSTANDBY:
+ case PWR_SOFTRESUME:
+ break;
+ }
+ splx(s);
+}
+#endif
diff --git a/sys/dev/ic/gemreg.h b/sys/dev/ic/gemreg.h
new file mode 100644
index 00000000000..af62ed7f418
--- /dev/null
+++ b/sys/dev/ic/gemreg.h
@@ -0,0 +1,533 @@
+/* $NetBSD: gemreg.h,v 1.1 2001/09/16 00:11:43 eeh Exp $ */
+
+/*
+ *
+ * Copyright (C) 2001 Eduardo Horvath.
+ * All rights reserved.
+ *
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ */
+
+#ifndef _IF_GEMREG_H
+#define _IF_GEMREG_H
+
+/* Register definitions for Sun GEM gigabit ethernet */
+
+#define GEM_SEB_STATE 0x0000 /* SEB state reg, R/O */
+#define GEM_CONFIG 0x0004 /* config reg */
+#define GEM_STATUS 0x000c /* status reg */
+/* Note: Reading the status reg clears bits 0-6 */
+#define GEM_INTMASK 0x0010
+#define GEM_INTACK 0x0014 /* Interrupt acknowledge, W/O */
+#define GEM_STATUS_ALIAS 0x001c
+/* This is the same as the GEM_STATUS reg but reading it does not clear bits. */
+#define GEM_ERROR_STATUS 0x1000 /* PCI error status R/C */
+#define GEM_ERROR_MASK 0x1004
+#define GEM_BIF_CONFIG 0x1008 /* BIF config reg */
+#define GEM_BIF_DIAG 0x100c
+#define GEM_RESET 0x1010 /* Software reset register */
+
+
+/* Bits in GEM_SEB register */
+#define GEM_SEB_ARB 0x000000002 /* Arbitration status */
+#define GEM_SEB_RXWON 0x000000004
+
+
+/* Bits in GEM_CONFIG register */
+#define GEM_CONFIG_BURST_64 0x000000000 /* 0->infininte, 1->64KB */
+#define GEM_CONFIG_BURST_INF 0x000000001 /* 0->infininte, 1->64KB */
+#define GEM_CONFIG_TXDMA_LIMIT 0x00000003e
+#define GEM_CONFIG_RXDMA_LIMIT 0x0000007c0
+
+#define GEM_CONFIG_TXDMA_LIMIT_SHIFT 1
+#define GEM_CONFIG_RXDMA_LIMIT_SHIFT 6
+
+
+/* Top part of GEM_STATUS has TX completion information */
+#define GEM_STATUS_TX_COMPL 0xfff800000 /* TX completion reg. */
+
+
+/* Interrupt bits, for both the GEM_STATUS and GEM_INTMASK regs. */
+#define GEM_INTR_TX_INTME 0x000000001 /* Frame w/INTME bit set sent */
+#define GEM_INTR_TX_EMPTY 0x000000002 /* TX ring empty */
+#define GEM_INTR_TX_DONE 0x000000004 /* TX complete */
+#define GEM_INTR_RX_DONE 0x000000010 /* Got a packet */
+#define GEM_INTR_RX_NOBUF 0x000000020
+#define GEM_INTR_RX_TAG_ERR 0x000000040
+#define GEM_INTR_PCS 0x000002000
+#define GEM_INTR_TX_MAC 0x000004000
+#define GEM_INTR_RX_MAC 0x000008000
+#define GEM_INTR_MAC_CONTROL 0x000010000 /* MAC control interrupt */
+#define GEM_INTR_MIF 0x000020000
+#define GEM_INTR_BERR 0x000040000 /* Bus error interrupt */
+#define GEM_INTR_BITS "\177\020" \
+ "b\0INTME\0b\1TXEMPTY\0b\2TXDONE\0" \
+ "b\4RXDONE\0b\5RXNOBUF\0b\6RX_TAG_ERR\0" \
+ "b\15PCS\0b\16TXMAC\0b\17RXMAC\0" \
+ "b\20MAC_CONTROL\0b\21MIF\0b\22BERR\0\0" \
+
+
+
+/* GEM_ERROR_STATUS and GEM_ERROR_MASK PCI error bits */
+#define GEM_ERROR_STAT_BADACK 0x000000001 /* No ACK64# */
+#define GEM_ERROR_STAT_DTRTO 0x000000002 /* Delayed xaction timeout */
+#define GEM_ERROR_STAT_OTHERS 0x000000004
+
+
+/* GEM_BIF_CONFIG register bits */
+#define GEM_BIF_CONFIG_SLOWCLK 0x000000001 /* Parity error timing */
+#define GEM_BIF_CONFIG_HOST_64 0x000000002 /* 64-bit host */
+#define GEM_BIF_CONFIG_B64D_DIS 0x000000004 /* no 64-bit data cycle */
+#define GEM_BIF_CONFIG_M66EN 0x000000008
+
+
+/* GEM_RESET register bits -- TX and RX self clear when complete. */
+#define GEM_RESET_TX 0x000000001 /* Reset TX half */
+#define GEM_RESET_RX 0x000000002 /* Reset RX half */
+#define GEM_RESET_RSTOUT 0x000000004 /* Force PCI RSTOUT# */
+
+
+/* GEM TX DMA registers */
+#define GEM_TX_KICK 0x2000 /* Write last valid desc + 1 */
+#define GEM_TX_CONFIG 0x2004
+#define GEM_TX_RING_PTR 0x2008 /* 64-bits */
+
+#define GEM_TX_FIFO_WR_PTR 0x2014 /* FIFO write pointer */
+#define GEM_TX_FIFO_SDWR_PTR 0x2018 /* FIFO shadow write pointer */
+#define GEM_TX_FIFO_RD_PTR 0x201c /* FIFO read pointer */
+#define GEM_TX_FIFO_SDRD_PTR 0x2020 /* FIFO shadow read pointer */
+#define GEM_TX_FIFO_PKT_CNT 0x2024 /* FIFO packet counter */
+
+#define GEM_TX_STATE_MACHINE 0x2028 /* ETX state machine reg */
+#define GEM_TX_DATA_PTR 0x2030 /* ETX state machine reg (64-bit)*/
+
+#define GEM_TX_COMPLETION 0x2100
+#define GEM_TX_FIFO_ADDRESS 0x2104
+#define GEM_TX_FIFO_TAG 0x2108
+#define GEM_TX_FIFO_DATA_LO 0x210c
+#define GEM_TX_FIFO_DATA_HI_T1 0x2110
+#define GEM_TX_FIFO_DATA_HI_T0 0x2114
+#define GEM_TX_FIFO_SIZE 0x2118
+#define GEM_TX_DEBUG 0x3028
+
+
+/* GEM_TX_CONFIG register bits. */
+#define GEM_TX_CONFIG_TXDMA_EN 0x00000001 /* TX DMA enable */
+#define GEM_TX_CONFIG_TXRING_SZ 0x0000001e /* TX ring size */
+#define GEM_TX_CONFIG_TXFIFO_TH 0x001ffc00 /* TX fifo threshold */
+#define GEM_TX_CONFIG_PACED 0x00200000 /* TX_all_int modifier */
+
+#define GEM_RING_SZ_32 (0<<1) /* 32 descriptors */
+#define GEM_RING_SZ_64 (1<<1)
+#define GEM_RING_SZ_128 (2<<1)
+#define GEM_RING_SZ_256 (3<<1)
+#define GEM_RING_SZ_512 (4<<1)
+#define GEM_RING_SZ_1024 (5<<1)
+#define GEM_RING_SZ_2048 (6<<1)
+#define GEM_RING_SZ_4096 (7<<1)
+#define GEM_RING_SZ_8192 (8<<1)
+
+
+/* GEM_TX_COMPLETION register bits */
+#define GEM_TX_COMPLETION_MASK 0x00001fff /* # of last descriptor */
+
+
+/* GEM RX DMA registers */
+#define GEM_RX_CONFIG 0x4000
+#define GEM_RX_RING_PTR_LO 0x4004 /* 64-bits unaligned GAK! */
+#define GEM_RX_RING_PTR_HI 0x4008 /* 64-bits unaligned GAK! */
+
+#define GEM_RX_FIFO_WR_PTR 0x400c /* FIFO write pointer */
+#define GEM_RX_FIFO_SDWR_PTR 0x4010 /* FIFO shadow write pointer */
+#define GEM_RX_FIFO_RD_PTR 0x4014 /* FIFO read pointer */
+#define GEM_RX_FIFO_PKT_CNT 0x4018 /* FIFO packet counter */
+
+#define GEM_RX_STATE_MACHINE 0x401c /* ERX state machine reg */
+#define GEM_RX_PAUSE_THRESH 0x4020
+
+#define GEM_RX_DATA_PTR_LO 0x4024 /* ERX state machine reg */
+#define GEM_RX_DATA_PTR_HI 0x4028 /* Damn thing is unaligned */
+
+#define GEM_RX_KICK 0x4100 /* Write last valid desc + 1 */
+#define GEM_RX_COMPLETION 0x4104 /* First pending desc */
+#define GEM_RX_BLANKING 0x4108 /* Interrupt blanking reg */
+
+#define GEM_RX_FIFO_ADDRESS 0x410c
+#define GEM_RX_FIFO_TAG 0x4110
+#define GEM_RX_FIFO_DATA_LO 0x4114
+#define GEM_RX_FIFO_DATA_HI_T1 0x4118
+#define GEM_RX_FIFO_DATA_HI_T0 0x411c
+#define GEM_RX_FIFO_SIZE 0x4120
+
+
+/* GEM_RX_CONFIG register bits. */
+#define GEM_RX_CONFIG_RXDMA_EN 0x00000001 /* RX DMA enable */
+#define GEM_RX_CONFIG_RXRING_SZ 0x0000001e /* RX ring size */
+#define GEM_RX_CONFIG_BATCH_DIS 0x00000020 /* desc batching disable */
+#define GEM_RX_CONFIG_FBOFF 0x00001c00 /* first byte offset */
+#define GEM_RX_CONFIG_CXM_START 0x000fe000 /* checksum start offset */
+#define GEM_RX_CONFIG_FIFO_THRS 0x07000000 /* fifo threshold size */
+
+#define GEM_THRSH_64 0
+#define GEM_THRSH_128 1
+#define GEM_THRSH_256 2
+#define GEM_THRSH_512 3
+#define GEM_THRSH_1024 4
+#define GEM_THRSH_2048 5
+
+#define GEM_RX_CONFIG_FIFO_THRS_SHIFT 24
+#define GEM_RX_CONFIG_FBOFF_SHFT 10
+#define GEM_RX_CONFIG_CXM_START_SHFT 13
+
+
+/* GEM_RX_PAUSE_THRESH register bits -- sizes in multiples of 64 bytes */
+#define GEM_RX_PTH_XOFF_THRESH 0x000001ff
+#define GEM_RX_PTH_XON_THRESH 0x07fc0000
+
+
+/* GEM_RX_BLANKING register bits */
+#define GEM_RX_BLANKING_PACKETS 0x000001ff /* Delay intr for x packets */
+#define GEM_RX_BLANKING_TIME 0x03fc0000 /* Delay intr for x ticks */
+/* One tick is 1048 PCI clocs, or 16us at 66MHz */
+
+
+/* GEM_MAC registers */
+#define GEM_MAC_TXRESET 0x6000 /* Store 1, cleared when done */
+#define GEM_MAC_RXRESET 0x6004 /* ditto */
+#define GEM_MAC_SEND_PAUSE_CMD 0x6008
+#define GEM_MAC_TX_STATUS 0x6010
+#define GEM_MAC_RX_STATUS 0x6014
+#define GEM_MAC_CONTROL_STATUS 0x6018 /* MAC control status reg */
+#define GEM_MAC_TX_MASK 0x6020 /* TX MAC mask register */
+#define GEM_MAC_RX_MASK 0x6024
+#define GEM_MAC_CONTROL_MASK 0x6028
+#define GEM_MAC_TX_CONFIG 0x6030
+#define GEM_MAC_RX_CONFIG 0x6034
+#define GEM_MAC_CONTROL_CONFIG 0x6038
+#define GEM_MAC_XIF_CONFIG 0x603c
+#define GEM_MAC_IPG0 0x6040 /* inter packet gap 0 */
+#define GEM_MAC_IPG1 0x6044 /* inter packet gap 1 */
+#define GEM_MAC_IPG2 0x6048 /* inter packet gap 2 */
+#define GEM_MAC_SLOT_TIME 0x604c
+#define GEM_MAC_MAC_MIN_FRAME 0x6050
+#define GEM_MAC_MAC_MAX_FRAME 0x6054
+#define GEM_MAC_PREAMBLE_LEN 0x6058
+#define GEM_MAC_JAM_SIZE 0x605c
+#define GEM_MAC_ATTEMPT_LIMIT 0x6060
+#define GEM_MAC_CONTROL_TYPE 0x6064
+
+#define GEM_MAC_ADDR0 0x6080 /* Normal MAC address 0 */
+#define GEM_MAC_ADDR1 0x6084
+#define GEM_MAC_ADDR2 0x6088
+#define GEM_MAC_ADDR3 0x608c /* Alternate MAC address 0 */
+#define GEM_MAC_ADDR4 0x6090
+#define GEM_MAC_ADDR5 0x6094
+#define GEM_MAC_ADDR6 0x6098 /* Control MAC address 0 */
+#define GEM_MAC_ADDR7 0x609c
+#define GEM_MAC_ADDR8 0x60a0
+
+#define GEM_MAC_ADDR_FILTER0 0x60a4
+#define GEM_MAC_ADDR_FILTER1 0x60a8
+#define GEM_MAC_ADDR_FILTER2 0x60ac
+#define GEM_MAC_ADR_FLT_MASK1_2 0x60b0 /* Address filter mask 1,2 */
+#define GEM_MAC_ADR_FLT_MASK0 0x60b4 /* Address filter mask 0 reg */
+
+#define GEM_MAC_HASH0 0x60c0 /* Hash table 0 */
+#define GEM_MAC_HASH1 0x60c4
+#define GEM_MAC_HASH2 0x60c8
+#define GEM_MAC_HASH3 0x60cc
+#define GEM_MAC_HASH4 0x60d0
+#define GEM_MAC_HASH5 0x60d4
+#define GEM_MAC_HASH6 0x60d8
+#define GEM_MAC_HASH7 0x60dc
+#define GEM_MAC_HASH8 0x60e0
+#define GEM_MAC_HASH9 0x60e4
+#define GEM_MAC_HASH10 0x60e8
+#define GEM_MAC_HASH11 0x60ec
+#define GEM_MAC_HASH12 0x60f0
+#define GEM_MAC_HASH13 0x60f4
+#define GEM_MAC_HASH14 0x60f8
+#define GEM_MAC_HASH15 0x60fc
+
+#define GEM_MAC_NORM_COLL_CNT 0x6100 /* Normal collision counter */
+#define GEM_MAC_FIRST_COLL_CNT 0x6104 /* 1st successful collision cntr */
+#define GEM_MAC_EXCESS_COLL_CNT 0x6108 /* Excess collision counter */
+#define GEM_MAC_LATE_COLL_CNT 0x610c /* Late collision counter */
+#define GEM_MAC_DEFER_TMR_CNT 0x6110 /* defer timer counter */
+#define GEM_MAC_PEAK_ATTEMPTS 0x6114
+#define GEM_MAC_RX_FRAME_COUNT 0x6118
+#define GEM_MAC_RX_LEN_ERR_CNT 0x611c
+#define GEM_MAC_RX_ALIGN_ERR 0x6120
+#define GEM_MAC_RX_CRC_ERR_CNT 0x6124
+#define GEM_MAC_RX_CODE_VIOL 0x6128
+#define GEM_MAC_RANDOM_SEED 0x6130
+#define GEM_MAC_MAC_STATE 0x6134 /* MAC sstate machine reg */
+
+
+/* GEM_MAC_SEND_PAUSE_CMD register bits */
+#define GEM_MAC_PAUSE_CMD_TIME 0x0000ffff
+#define GEM_MAC_PAUSE_CMD_SEND 0x00010000
+
+
+/* GEM_MAC_TX_STATUS and _MASK register bits */
+#define GEM_MAC_TX_XMIT_DONE 0x00000001
+#define GEM_MAC_TX_UNDERRUN 0x00000002
+#define GEM_MAC_TX_PKT_TOO_LONG 0x00000004
+#define GEM_MAC_TX_NCC_EXP 0x00000008 /* Normal collision cnt exp */
+#define GEM_MAC_TX_ECC_EXP 0x00000010
+#define GEM_MAC_TX_LCC_EXP 0x00000020
+#define GEM_MAC_TX_FCC_EXP 0x00000040
+#define GEM_MAC_TX_DEFER_EXP 0x00000080
+#define GEM_MAC_TX_PEAK_EXP 0x00000100
+
+
+/* GEM_MAC_RX_STATUS and _MASK register bits */
+#define GEM_MAC_RX_DONE 0x00000001
+#define GEM_MAC_RX_OVERFLOW 0x00000002
+#define GEM_MAC_RX_FRAME_CNT 0x00000004
+#define GEM_MAC_RX_ALIGN_EXP 0x00000008
+#define GEM_MAC_RX_CRC_EXP 0x00000010
+#define GEM_MAC_RX_LEN_EXP 0x00000020
+#define GEM_MAC_RX_CVI_EXP 0x00000040 /* Code violation */
+
+
+/* GEM_MAC_CONTROL_STATUS and GEM_MAC_CONTROL_MASK register bits */
+#define GEM_MAC_PAUSED 0x00000001 /* Pause received */
+#define GEM_MAC_PAUSE 0x00000002 /* enter pause state */
+#define GEM_MAC_RESUME 0x00000004 /* exit pause state */
+#define GEM_MAC_PAUSE_TIME 0xffff0000
+
+/* GEM_MAC_XIF_CONFIG register bits */
+#define GEM_MAC_XIF_TX_MII_ENA 0x00000001 /* Enable XIF output drivers */
+#define GEM_MAC_XIF_MII_LOOPBK 0x00000002 /* Enable MII loopback mode */
+#define GEM_MAC_XIF_ECHO_DISABL 0x00000004 /* Disable echo */
+#define GEM_MAC_XIF_MII_MODE 0x00000008 /* Select GMII/MII mode */
+#define GEM_MAC_XIF_MII_BUF_ENA 0x00000010 /* Enable MII recv buffers */
+#define GEM_MAC_XIF_LINK_LED 0x00000020 /* force link LED active */
+#define GEM_MAC_XIF_FDPLX_LED 0x00000040 /* force FDPLX LED active */
+
+/* GEM_MAC_TX_CONFIG register bits */
+#define GEM_MAC_TX_ENABLE 0x00000001 /* TX enable */
+#define GEM_MAC_TX_IGN_CARRIER 0x00000002 /* Ignore carrier sense */
+#define GEM_MAC_TX_IGN_COLLIS 0x00000004 /* ignore collitions */
+#define GEM_MAC_TX_ENA_IPG0 0x00000008 /* extend Rx-to-TX IPG */
+#define GEM_MAC_TX_NGU 0x00000010 /* Never give up */
+#define GEM_MAC_TX_NGU_LIMIT 0x00000020 /* Never give up limit */
+#define GEM_MAC_TX_NO_BACKOFF 0x00000040
+#define GEM_MAC_TX_SLOWDOWN 0x00000080
+#define GEM_MAC_TX_NO_FCS 0x00000100 /* no FCS will be generated */
+#define GEM_MAC_TX_CARR_EXTEND 0x00000200 /* Ena TX Carrier Extension */
+/* Carrier Extension is required for half duplex Gbps operation */
+
+
+/* GEM_MAC_RX_CONFIG register bits */
+#define GEM_MAC_RX_ENABLE 0x00000001 /* RX enable */
+#define GEM_MAC_RX_STRIP_PAD 0x00000002 /* strip pad bytes */
+#define GEM_MAC_RX_STRIP_CRC 0x00000004
+#define GEM_MAC_RX_PROMISCUOUS 0x00000008 /* promiscuous mode */
+#define GEM_MAC_RX_PROMISC_GRP 0x00000010 /* promiscuous group mode */
+#define GEM_MAC_RX_HASH_FILTER 0x00000020 /* enable hash filter */
+#define GEM_MAC_RX_ADDR_FILTER 0x00000040 /* enable address filter */
+#define GEM_MAC_RX_ERRCHK_DIS 0x00000080 /* disable error checking */
+#define GEM_MAC_RX_CARR_EXTEND 0x00000100 /* Ena RX Carrier Extension */
+/*
+ * Carrier Extension enables reception of packet bursts generated by
+ * senders with carrier extension enabled.
+ */
+
+
+/* GEM_MAC_CONTROL_CONFIG bits */
+#define GEM_MAC_CC_TX_PAUSE 0x00000001 /* send pause enabled */
+#define GEM_MAC_CC_RX_PAUSE 0x00000002 /* receive pause enabled */
+#define GEM_MAC_CC_PASS_PAUSE 0x00000004 /* pass pause up */
+
+
+/* GEM MIF registers */
+/* Bit bang registers use low bit only */
+#define GEM_MIF_BB_CLOCK 0x6200 /* bit bang clock */
+#define GEM_MIF_BB_DATA 0x6204 /* bit bang data */
+#define GEM_MIF_BB_OUTPUT_ENAB 0x6208
+#define GEM_MIF_FRAME 0x620c /* MIF frame - ctl and data */
+#define GEM_MIF_CONFIG 0x6210
+#define GEM_MIF_INTERRUPT_MASK 0x6214
+#define GEM_MIF_BASIC_STATUS 0x6218
+#define GEM_MIF_STATE_MACHINE 0x621c
+
+
+/* GEM_MIF_FRAME bits */
+#define GEM_MIF_FRAME_DATA 0x0000ffff
+#define GEM_MIF_FRAME_TA0 0x00010000 /* TA bit, 1 for completion */
+#define GEM_MIF_FRAME_TA1 0x00020000 /* TA bits */
+#define GEM_MIF_FRAME_REG_ADDR 0x007c0000
+#define GEM_MIF_FRAME_PHY_ADDR 0x0f800000 /* phy address, should be 0 */
+#define GEM_MIF_FRAME_OP 0x30000000 /* operation - write/read */
+#define GEM_MIF_FRAME_START 0xc0000000 /* START bits */
+
+#define GEM_MIF_FRAME_READ 0x60020000
+#define GEM_MIF_FRAME_WRITE 0x50020000
+
+#define GEM_MIF_REG_SHIFT 18
+#define GEM_MIF_PHY_SHIFT 23
+
+
+/* GEM_MIF_CONFIG register bits */
+#define GEM_MIF_CONFIG_PHY_SEL 0x00000001 /* PHY select */
+#define GEM_MIF_CONFIG_POLL_ENA 0x00000002 /* poll enable */
+#define GEM_MIF_CONFIG_BB_ENA 0x00000004 /* bit bang enable */
+#define GEM_MIF_CONFIG_REG_ADR 0x000000f8 /* poll register address */
+#define GEM_MIF_CONFIG_MDI0 0x00000100 /* MDIO_0 Data/MDIO_0 atached */
+#define GEM_MIF_CONFIG_MDI1 0x00000200 /* MDIO_1 Data/MDIO_1 atached */
+#define GEM_MIF_CONFIG_PHY_ADR 0x00007c00 /* poll PHY address */
+/* MDI0 is onboard tranciever MID1 is external, PHYAD for both is 0 */
+
+
+/* GEM_MIF_BASIC_STATUS and GEM_MIF_INTERRUPT_MASK bits */
+#define GEM_MIF_STATUS 0x0000ffff
+#define GEM_MIF_BASIC 0xffff0000
+/*
+ * The Basic part is the last value read in the POLL field of the config
+ * register.
+ *
+ * The status part indicates the bits that have changed.
+ */
+
+
+/* The GEM PCS/Serial link register. */
+#define GEM_MII_CONTROL 0x9000
+#define GEM_MII_STATUS 0x9004
+#define GEM_MII_ANAR 0x9008 /* MII advertisement reg */
+#define GEM_MII_ANLPAR 0x900c /* LP ability reg */
+#define GEM_MII_CONFIG 0x9010
+#define GEM_MII_STATE_MACHINE 0x9014
+#define GEM_MII_INTERRUP_STATUS 0x9018
+#define GEM_MII_DATAPATH_MODE 0x9050
+#define GEM_MII_SLINK_CONTROL 0x9054 /* Serial link control */
+#define GEM_MII_OUTPUT_SELECT 0x9058
+#define GEM_MII_SLINK_STATUS 0x905c /* serial link status */
+
+
+/* GEM_MII_CONTROL bits */
+/*
+ * DO NOT TOUCH THIS REGISTER ON ERI -- IT HARD HANGS.
+ */
+#define GEM_MII_CONTROL_RESET 0x00008000
+#define GEM_MII_CONTROL_LOOPBK 0x00004000 /* 10-bit i/f loopback */
+#define GEM_MII_CONTROL_1000M 0x00002000 /* speed select, always 0 */
+#define GEM_MII_CONTROL_AUTONEG 0x00001000 /* auto negotiation enabled */
+#define GEM_MII_CONTROL_POWERDN 0x00000800
+#define GEM_MII_CONTROL_ISOLATE 0x00000400 /* isolate phy from mii */
+#define GEM_MII_CONTROL_RAN 0x00000200 /* restart auto negotioation */
+#define GEM_MII_CONTROL_FDUPLEX 0x00000100 /* full duplex, always 0 */
+#define GEM_MII_CONTROL_COL_TST 0x00000080 /* collision test */
+
+
+/* GEM_MII_STATUS reg */
+#define GEM_MII_STATUS_GB_FDX 0x00000400 /* can perform GBit FDX */
+#define GEM_MII_STATUS_GB_HDX 0x00000200 /* can perform GBit HDX */
+#define GEM_MII_STATUS_ANEG_CPT 0x00000020 /* auto negotiate compete */
+#define GEM_MII_STATUS_REM_FLT 0x00000010 /* remote fault detected */
+#define GEM_MII_STATUS_ACFG 0x00000008 /* can auto negotiate */
+#define GEM_MII_STATUS_LINK_STS 0x00000004 /* link status */
+#define GEM_MII_STATUS_JABBER 0x00000002 /* jabber condition detected */
+#define GEM_MII_STATUS_EXTCAP 0x00000001 /* extended register capability */
+
+
+/* GEM_MII_ANAR and GEM_MII_ANLAR reg bits */
+#define GEM_MII_ANEG_NP 0x00008000 /* next page bit */
+#define GEM_MII_ANEG_ACK 0x00004000 /* ack reception of */
+ /* Link Partner Capability */
+#define GEM_MII_ANEG_RF 0x00003000 /* advertise remote fault cap */
+#define GEM_MII_ANEG_ASYM_PAUSE 0x00000100 /* asymmetric pause */
+#define GEM_MII_ANEG_SYM_PAUSE 0x00000080 /* symmetric pause */
+#define GEM_MII_ANEG_HLF_DUPLX 0x00000040
+#define GEM_MII_ANEG_FUL_DUPLX 0x00000020
+
+
+/* GEM_MII_CONFIG reg */
+#define GEM_MII_CONFIG_TIMER 0x0000001c /* link monitor timer values */
+#define GEM_MII_CONFIG_ENABLE 0x00000001 /* Enable PCS */
+
+
+/* GEM_MII_DATAPATH_MODE reg */
+#define GEM_MII_DATAPATH_SERIAL 0x00000001 /* Serial link */
+#define GEM_MII_DATAPATH_SERDES 0x00000002 /* Use PCS via 10bit interfac */
+#define GEM_MII_DATAPATH_MII 0x00000004 /* Use MII, not PCS */
+#define GEM_MII_DATAPATH_MIIOUT 0x00000008 /* enable serial output on GMII */
+
+
+/* GEM_MII_SLINK_CONTROL reg */
+#define GEM_MII_SLINK_LOOPBACK 0x00000001 /* enable loopback at sl */
+#define GEM_MII_SLINK_EN_SYNC_D 0x00000002 /* enable sync detection */
+#define GEM_MII_SLINK_LOCK_REF 0x00000004 /* lock reference clock */
+#define GEM_MII_SLINK_EMPHASIS 0x00000008 /* enable emphasis */
+#define GEM_MII_SLINK_SELFTEST 0x000001c0
+#define GEM_MII_SLINK_POWER_OFF 0x00000200 /* Power down serial link */
+
+
+/* GEM_MII_SLINK_STATUS reg */
+#define GEM_MII_SLINK_TEST 0x00000000 /* undergoing test */
+#define GEM_MII_SLINK_LOCKED 0x00000001 /* waiting 500us lockrefn */
+#define GEM_MII_SLINK_COMMA 0x00000002 /* waiting for comma detect */
+#define GEM_MII_SLINK_SYNC 0x00000003 /* recv data synchronized */
+
+
+/* Wired GEM PHY addresses */
+#define GEM_PHYAD_INTERNAL 1
+#define GEM_PHYAD_EXTERNAL 0
+
+/*
+ * GEM descriptor table structures.
+ */
+struct gem_desc {
+ uint64_t gd_flags;
+ uint64_t gd_addr;
+};
+
+/* Transmit flags */
+#define GEM_TD_BUFSIZE 0x0000000000007fffLL
+#define GEM_TD_CXSUM_START 0x00000000001f8000LL /* Cxsum start offset */
+#define GEM_TD_CXSUM_STUFF 0x000000001fe00000LL /* Cxsum stuff offset */
+#define GEM_TD_CXSUM_ENABLE 0x0000000020000000LL /* Cxsum generation enable */
+#define GEM_TD_END_OF_PACKET 0x0000000040000000LL
+#define GEM_TD_START_OF_PACKET 0x0000000080000000LL
+#define GEM_TD_INTERRUPT_ME 0x0000000100000000LL /* Interrupt me now */
+#define GEM_TD_NO_CRC 0x0000000200000000LL /* do not insert crc */
+/*
+ * Only need to set GEM_TD_CXSUM_ENABLE, GEM_TD_CXSUM_STUFF,
+ * GEM_TD_CXSUM_START, and GEM_TD_INTERRUPT_ME in 1st descriptor of a group.
+ */
+
+/* Receive flags */
+#define GEM_RD_CHECKSUM 0x000000000000ffffLL
+#define GEM_RD_BUFSIZE 0x000000007fff0000LL
+#define GEM_RD_OWN 0x0000000080000000LL /* 1 - owned by h/w */
+#define GEM_RD_HASHVAL 0x0ffff00000000000LL
+#define GEM_RD_HASH_PASS 0x1000000000000000LL /* passed hash filter */
+#define GEM_RD_ALTERNATE_MAC 0x2000000000000000LL /* Alternate MAC adrs */
+#define GEM_RD_BAD_CRC 0x4000000000000000LL
+
+#define GEM_RD_BUFSHIFT 16
+#define GEM_RD_BUFLEN(x) (((x)&GEM_RD_BUFSIZE)>>GEM_RD_BUFSHIFT)
+
+#endif
diff --git a/sys/dev/ic/gemvar.h b/sys/dev/ic/gemvar.h
new file mode 100644
index 00000000000..c78cd9f13db
--- /dev/null
+++ b/sys/dev/ic/gemvar.h
@@ -0,0 +1,310 @@
+/* $NetBSD: gemvar.h,v 1.1 2001/09/16 00:11:43 eeh Exp $ */
+
+/*
+ *
+ * Copyright (C) 2001 Eduardo Horvath.
+ * All rights reserved.
+ *
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ */
+
+#ifndef _IF_GEMVAR_H
+#define _IF_GEMVAR_H
+
+#include <sys/queue.h>
+#include <sys/timeout.h>
+
+/*
+ * Misc. definitions for the Sun ``Gem'' Ethernet controller family driver.
+ */
+
+/*
+ * Transmit descriptor list size. This is arbitrary, but allocate
+ * enough descriptors for 64 pending transmissions and 16 segments
+ * per packet.
+ */
+#define GEM_NTXSEGS 16
+
+#define GEM_TXQUEUELEN 64
+#define GEM_NTXDESC (GEM_TXQUEUELEN * GEM_NTXSEGS)
+#define GEM_NTXDESC_MASK (GEM_NTXDESC - 1)
+#define GEM_NEXTTX(x) ((x + 1) & GEM_NTXDESC_MASK)
+
+/*
+ * Receive descriptor list size. We have one Rx buffer per incoming
+ * packet, so this logic is a little simpler.
+ */
+#define GEM_NRXDESC 64
+#define GEM_NRXDESC_MASK (GEM_NRXDESC - 1)
+#define GEM_NEXTRX(x) ((x + 1) & GEM_NRXDESC_MASK)
+
+/*
+ * Control structures are DMA'd to the GEM chip. We allocate them in
+ * a single clump that maps to a single DMA segment to make several things
+ * easier.
+ */
+struct gem_control_data {
+ /*
+ * The transmit descriptors.
+ */
+ struct gem_desc gcd_txdescs[GEM_NTXDESC];
+
+ /*
+ * The receive descriptors.
+ */
+ struct gem_desc gcd_rxdescs[GEM_NRXDESC];
+};
+
+#define GEM_CDOFF(x) offsetof(struct gem_control_data, x)
+#define GEM_CDTXOFF(x) GEM_CDOFF(gcd_txdescs[(x)])
+#define GEM_CDRXOFF(x) GEM_CDOFF(gcd_rxdescs[(x)])
+
+/*
+ * Software state for transmit jobs.
+ */
+struct gem_txsoft {
+ struct mbuf *txs_mbuf; /* head of our mbuf chain */
+ bus_dmamap_t txs_dmamap; /* our DMA map */
+ int txs_firstdesc; /* first descriptor in packet */
+ int txs_lastdesc; /* last descriptor in packet */
+ int txs_ndescs; /* number of descriptors */
+ SIMPLEQ_ENTRY(gem_txsoft) txs_q;
+};
+
+SIMPLEQ_HEAD(gem_txsq, gem_txsoft);
+
+/*
+ * Software state for receive jobs.
+ */
+struct gem_rxsoft {
+ struct mbuf *rxs_mbuf; /* head of our mbuf chain */
+ bus_dmamap_t rxs_dmamap; /* our DMA map */
+};
+
+
+/*
+ * Table which describes the transmit threshold mode. We generally
+ * start at index 0. Whenever we get a transmit underrun, we increment
+ * our index, falling back if we encounter the NULL terminator.
+ */
+struct gem_txthresh_tab {
+ u_int32_t txth_opmode; /* OPMODE bits */
+ const char *txth_name; /* name of mode */
+};
+
+/*
+ * Some misc. statics, useful for debugging.
+ */
+struct gem_stats {
+ u_long ts_tx_uf; /* transmit underflow errors */
+ u_long ts_tx_to; /* transmit jabber timeouts */
+ u_long ts_tx_ec; /* excessve collision count */
+ u_long ts_tx_lc; /* late collision count */
+};
+
+/*
+ * Software state per device.
+ */
+struct gem_softc {
+ struct device sc_dev; /* generic device information */
+ struct arpcom sc_arpcom; /* ethernet common data */
+ struct mii_data sc_mii; /* MII media control */
+#define sc_media sc_mii.mii_media/* shorthand */
+ struct timeout sc_tick_ch; /* tick callout */
+
+ /* The following bus handles are to be provided by the bus front-end */
+ bus_space_tag_t sc_bustag; /* bus tag */
+ bus_dma_tag_t sc_dmatag; /* bus dma tag */
+ bus_dmamap_t sc_dmamap; /* bus dma handle */
+ bus_space_handle_t sc_h; /* bus space handle for all regs */
+#if 0
+ /* The following may be needed for SBus */
+ bus_space_handle_t sc_seb; /* HME Global registers */
+ bus_space_handle_t sc_erx; /* HME ERX registers */
+ bus_space_handle_t sc_etx; /* HME ETX registers */
+ bus_space_handle_t sc_mac; /* HME MAC registers */
+ bus_space_handle_t sc_mif; /* HME MIF registers */
+#endif
+ int sc_burst; /* DVMA burst size in effect */
+ int sc_phys[2]; /* MII instance -> PHY map */
+
+ int sc_mif_config; /* Selected MII reg setting */
+
+ int sc_pci; /* XXXXX -- PCI buses are LE. */
+
+ void *sc_sdhook; /* shutdown hook */
+ void *sc_powerhook; /* power management hook */
+
+ struct gem_stats sc_stats; /* debugging stats */
+
+ /*
+ * Ring buffer DMA stuff.
+ */
+ bus_dma_segment_t sc_cdseg; /* control data memory */
+ int sc_cdnseg; /* number of segments */
+ bus_dmamap_t sc_cddmamap; /* control data DMA map */
+#define sc_cddma sc_cddmamap->dm_segs[0].ds_addr
+
+ /*
+ * Software state for transmit and receive descriptors.
+ */
+ struct gem_txsoft sc_txsoft[GEM_TXQUEUELEN];
+ struct gem_rxsoft sc_rxsoft[GEM_NRXDESC];
+
+ /*
+ * Control data structures.
+ */
+ struct gem_control_data *sc_control_data;
+#define sc_txdescs sc_control_data->gcd_txdescs
+#define sc_rxdescs sc_control_data->gcd_rxdescs
+
+ int sc_txfree; /* number of free Tx descriptors */
+ int sc_txnext; /* next ready Tx descriptor */
+
+ u_int32_t sc_tdctl_ch; /* conditional desc chaining */
+ u_int32_t sc_tdctl_er; /* conditional desc end-of-ring */
+
+ u_int32_t sc_setup_fsls; /* FS|LS on setup descriptor */
+
+ struct gem_txsq sc_txfreeq; /* free Tx descsofts */
+ struct gem_txsq sc_txdirtyq; /* dirty Tx descsofts */
+
+ int sc_rxptr; /* next ready RX descriptor/descsoft */
+
+ /* ========== */
+ int sc_inited;
+ int sc_flags;
+ int sc_debug;
+ void *sc_sh; /* shutdownhook cookie */
+ u_int8_t sc_enaddr[ETHER_ADDR_LEN]; /* MAC address */
+
+ /* Special hardware hooks */
+ void (*sc_hwreset) __P((struct gem_softc *));
+ void (*sc_hwinit) __P((struct gem_softc *));
+};
+
+/* sc_flags */
+#define GEMF_WANT_SETUP 0x00000001 /* want filter setup */
+#define GEMF_DOING_SETUP 0x00000002 /* doing multicast setup */
+#define GEMF_HAS_MII 0x00000004 /* has media on MII */
+#define GEMF_IC_FS 0x00000008 /* IC bit on first tx seg */
+#define GEMF_MRL 0x00000010 /* memory read line okay */
+#define GEMF_MRM 0x00000020 /* memory read multi okay */
+#define GEMF_MWI 0x00000040 /* memory write inval okay */
+#define GEMF_AUTOPOLL 0x00000080 /* chip supports auto-poll */
+#define GEMF_LINK_UP 0x00000100 /* link is up (non-MII) */
+#define GEMF_LINK_VALID 0x00000200 /* link state valid */
+#define GEMF_DOINGAUTO 0x00000400 /* doing autoneg (non-MII) */
+#define GEMF_ATTACHED 0x00000800 /* attach has succeeded */
+#define GEMF_ENABLED 0x00001000 /* chip is enabled */
+#define GEMF_BLE 0x00002000 /* data is big endian */
+#define GEMF_DBO 0x00004000 /* descriptor is big endian */
+
+#define GEM_IS_ENABLED(sc) ((sc)->sc_flags & GEMF_ENABLED)
+
+/*
+ * This macro returns the current media entry for *non-MII* media.
+ */
+#define GEM_CURRENT_MEDIA(sc) \
+ (IFM_SUBTYPE((sc)->sc_mii.mii_media.ifm_cur->ifm_media) != IFM_AUTO ? \
+ (sc)->sc_mii.mii_media.ifm_cur : (sc)->sc_nway_active)
+
+/*
+ * This macro determines if a change to media-related OPMODE bits requires
+ * a chip reset.
+ */
+#define GEM_MEDIA_NEEDSRESET(sc, newbits) \
+ (((sc)->sc_opmode & OPMODE_MEDIA_BITS) != \
+ ((newbits) & OPMODE_MEDIA_BITS))
+
+#define GEM_CDTXADDR(sc, x) ((sc)->sc_cddma + GEM_CDTXOFF((x)))
+#define GEM_CDRXADDR(sc, x) ((sc)->sc_cddma + GEM_CDRXOFF((x)))
+
+#define GEM_CDSPADDR(sc) ((sc)->sc_cddma + GEM_CDSPOFF)
+
+#define GEM_CDTXSYNC(sc, x, n, ops) \
+do { \
+ int __x, __n; \
+ \
+ __x = (x); \
+ __n = (n); \
+ \
+ /* If it will wrap around, sync to the end of the ring. */ \
+ if ((__x + __n) > GEM_NTXDESC) { \
+ bus_dmamap_sync((sc)->sc_dmatag, (sc)->sc_cddmamap, \
+ GEM_CDTXOFF(__x), sizeof(struct gem_desc) * \
+ (GEM_NTXDESC - __x), (ops)); \
+ __n -= (GEM_NTXDESC - __x); \
+ __x = 0; \
+ } \
+ \
+ /* Now sync whatever is left. */ \
+ bus_dmamap_sync((sc)->sc_dmatag, (sc)->sc_cddmamap, \
+ GEM_CDTXOFF(__x), sizeof(struct gem_desc) * __n, (ops)); \
+} while (0)
+
+#define GEM_CDRXSYNC(sc, x, ops) \
+ bus_dmamap_sync((sc)->sc_dmatag, (sc)->sc_cddmamap, \
+ GEM_CDRXOFF((x)), sizeof(struct gem_desc), (ops))
+
+#define GEM_CDSPSYNC(sc, ops) \
+ bus_dmamap_sync((sc)->sc_dmatag, (sc)->sc_cddmamap, \
+ GEM_CDSPOFF, GEM_SETUP_PACKET_LEN, (ops))
+
+#define GEM_INIT_RXDESC(sc, x) \
+do { \
+ struct gem_rxsoft *__rxs = &sc->sc_rxsoft[(x)]; \
+ struct gem_desc *__rxd = &sc->sc_rxdescs[(x)]; \
+ struct mbuf *__m = __rxs->rxs_mbuf; \
+ \
+ __m->m_data = __m->m_ext.ext_buf; \
+ __rxd->gd_addr = \
+ htole64(__rxs->rxs_dmamap->dm_segs[0].ds_addr); \
+ __rxd->gd_flags = \
+ htole64((((__m->m_ext.ext_size)<<GEM_RD_BUFSHIFT) \
+ & GEM_RD_BUFSIZE) | GEM_RD_OWN); \
+ GEM_CDRXSYNC((sc), (x), BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE); \
+} while (0)
+
+#ifdef _KERNEL
+void gem_attach __P((struct gem_softc *, const u_int8_t *));
+int gem_activate __P((struct device *, enum devact));
+int gem_detach __P((struct gem_softc *));
+int gem_intr __P((void *));
+int gem_read_srom __P((struct gem_softc *));
+int gem_srom_crcok __P((const u_int8_t *));
+int gem_isv_srom __P((const u_int8_t *));
+int gem_isv_srom_enaddr __P((struct gem_softc *, u_int8_t *));
+int gem_parse_old_srom __P((struct gem_softc *, u_int8_t *));
+
+int gem_mediachange __P((struct ifnet *));
+void gem_mediastatus __P((struct ifnet *, struct ifmediareq *));
+
+void gem_config __P((struct gem_softc *));
+void gem_reset __P((struct gem_softc *));
+int gem_intr __P((void *));
+#endif /* _KERNEL */
+
+
+#endif
diff --git a/sys/dev/pci/files.pci b/sys/dev/pci/files.pci
index 96203565320..6d4c97c3388 100644
--- a/sys/dev/pci/files.pci
+++ b/sys/dev/pci/files.pci
@@ -1,4 +1,4 @@
-# $OpenBSD: files.pci,v 1.113 2001/09/05 20:53:02 nate Exp $
+# $OpenBSD: files.pci,v 1.114 2001/09/21 00:01:20 art Exp $
# $NetBSD: files.pci,v 1.20 1996/09/24 17:47:15 christos Exp $
#
# Config file and device description for machine-independent PCI code.
@@ -277,6 +277,10 @@ file dev/pci/if_ti.c ti
attach ne at pci with ne_pci: rtl80x9
file dev/pci/if_ne_pci.c ne_pci
+# Sun GEM ethernet
+attach gem at pci with gem_pci
+file dev/pci/if_gem_pci.c gem_pci
+
# Hi/fn 6500
device lofn: crypto
attach lofn at pci
diff --git a/sys/dev/pci/if_gem_pci.c b/sys/dev/pci/if_gem_pci.c
new file mode 100644
index 00000000000..00e0cddf921
--- /dev/null
+++ b/sys/dev/pci/if_gem_pci.c
@@ -0,0 +1,193 @@
+/* $NetBSD: if_gem_pci.c,v 1.1 2001/09/16 00:11:42 eeh Exp $ */
+
+/*
+ *
+ * Copyright (C) 2001 Eduardo Horvath.
+ * All rights reserved.
+ *
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ */
+
+/*
+ * PCI bindings for Sun GEM ethernet controllers.
+ */
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/malloc.h>
+#include <sys/kernel.h>
+#include <sys/socket.h>
+#include <sys/errno.h>
+#include <sys/device.h>
+
+#include <machine/endian.h>
+
+#include <vm/vm.h>
+#include <uvm/uvm_extern.h>
+
+#include <net/if.h>
+#include <net/if_dl.h>
+#include <net/if_media.h>
+
+#ifdef INET
+#include <netinet/in.h>
+#include <netinet/if_ether.h>
+#endif
+
+#if NBPFILTER > 0
+#include <net/bpf.h>
+#endif
+
+#include <machine/bus.h>
+#include <machine/intr.h>
+
+#include <dev/mii/mii.h>
+#include <dev/mii/miivar.h>
+#include <dev/mii/mii_bitbang.h>
+
+#include <dev/ic/gemreg.h>
+#include <dev/ic/gemvar.h>
+
+#include <dev/pci/pcivar.h>
+#include <dev/pci/pcireg.h>
+#include <dev/pci/pcidevs.h>
+
+struct gem_pci_softc {
+ struct gem_softc gsc_gem; /* GEM device */
+ bus_space_tag_t gsc_memt;
+ bus_space_handle_t gsc_memh;
+ void *gsc_ih;
+};
+
+int gem_match_pci __P((struct device *, void *, void *));
+void gem_attach_pci __P((struct device *, struct device *, void *));
+
+struct cfattach gem_pci_ca = {
+ sizeof(struct gem_pci_softc), gem_match_pci, gem_attach_pci
+};
+
+/*
+ * Attach routines need to be split out to different bus-specific files.
+ */
+
+int
+gem_match_pci(parent, cf, aux)
+ struct device *parent;
+ void *cf;
+ void *aux;
+{
+ struct pci_attach_args *pa = aux;
+
+ if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_SUN &&
+ (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_SUN_ERINETWORK ||
+ PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_SUN_GEMNETWORK))
+ return (1);
+
+ if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_APPLE &&
+ (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_APPLE_GMAC ||
+ PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_APPLE_GMAC2))
+ return (1);
+
+ return (0);
+}
+
+void
+gem_attach_pci(parent, self, aux)
+ struct device *parent, *self;
+ void *aux;
+{
+ struct pci_attach_args *pa = aux;
+ struct gem_pci_softc *gsc = (void *)self;
+ struct gem_softc *sc = &gsc->gsc_gem;
+ pci_intr_handle_t intrhandle;
+#ifdef __sparc__
+ /* XXX the following declarations should be elsewhere */
+ extern void myetheraddr __P((u_char *));
+#endif
+ const char *intrstr;
+ int type;
+
+ if (pa->pa_memt) {
+ type = PCI_MAPREG_TYPE_MEM;
+ sc->sc_bustag = pa->pa_memt;
+ } else {
+ type = PCI_MAPREG_TYPE_IO;
+ sc->sc_bustag = pa->pa_iot;
+ }
+
+ sc->sc_dmatag = pa->pa_dmat;
+
+ sc->sc_pci = 1; /* XXXXX should all be done in bus_dma. */
+
+#define PCI_GEM_BASEADDR 0x10
+ if (pci_mapreg_map(pa, PCI_GEM_BASEADDR, type, 0,
+ &gsc->gsc_memt, &gsc->gsc_memh, NULL, NULL, 0) != 0)
+ {
+ printf(": could not map gem registers\n");
+ return;
+ }
+
+ sc->sc_bustag = gsc->gsc_memt;
+ sc->sc_h = gsc->gsc_memh;
+
+#if 0
+/* SBUS compatible stuff? */
+ sc->sc_seb = gsc->gsc_memh;
+ sc->sc_etx = gsc->gsc_memh + 0x2000;
+ sc->sc_erx = gsc->gsc_memh + 0x4000;
+ sc->sc_mac = gsc->gsc_memh + 0x6000;
+ sc->sc_mif = gsc->gsc_memh + 0x7000;
+#endif
+#ifdef __sparc__
+ myetheraddr(sc->sc_enaddr);
+#endif
+
+ sc->sc_burst = 16; /* XXX */
+
+ /*
+ * call the main configure
+ */
+ gem_config(sc);
+
+ if (pci_intr_map(pa, &intrhandle) != 0) {
+ printf("%s: couldn't map interrupt\n",
+ sc->sc_dev.dv_xname);
+ return; /* bus_unmap ? */
+ }
+ intrstr = pci_intr_string(pa->pa_pc, intrhandle);
+ gsc->gsc_ih = pci_intr_establish(pa->pa_pc,
+ intrhandle, IPL_NET, gem_intr, sc, self->dv_xname);
+ if (gsc->gsc_ih != NULL) {
+ printf("%s: using %s for interrupt\n",
+ sc->sc_dev.dv_xname,
+ intrstr ? intrstr : "unknown interrupt");
+ } else {
+ printf("%s: couldn't establish interrupt",
+ sc->sc_dev.dv_xname);
+ if (intrstr != NULL)
+ printf(" at %s", intrstr);
+ printf("\n");
+ return; /* bus_unmap ? */
+ }
+}