Home | History | Annotate | Line # | Download | only in ebus
if_le_ebus.c revision 1.4.10.1
      1  1.4.10.1    rmind /*	$NetBSD: if_le_ebus.c,v 1.4.10.1 2014/05/18 17:45:02 rmind Exp $	*/
      2       1.1    pooka 
      3       1.1    pooka /*-
      4       1.1    pooka  * Copyright (c) 2010 The NetBSD Foundation, Inc.
      5       1.1    pooka  * All rights reserved.
      6       1.1    pooka  *
      7       1.1    pooka  * This code was written by Alessandro Forin and Neil Pittman
      8       1.1    pooka  * at Microsoft Research and contributed to The NetBSD Foundation
      9       1.1    pooka  * by Microsoft Corporation.
     10       1.1    pooka  *
     11       1.1    pooka  * Redistribution and use in source and binary forms, with or without
     12       1.1    pooka  * modification, are permitted provided that the following conditions
     13       1.1    pooka  * are met:
     14       1.1    pooka  * 1. Redistributions of source code must retain the above copyright
     15       1.1    pooka  *    notice, this list of conditions and the following disclaimer.
     16       1.1    pooka  * 2. Redistributions in binary form must reproduce the above copyright
     17       1.1    pooka  *    notice, this list of conditions and the following disclaimer in the
     18       1.1    pooka  *    documentation and/or other materials provided with the distribution.
     19       1.1    pooka  *
     20       1.1    pooka  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21       1.1    pooka  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22       1.1    pooka  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23       1.1    pooka  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24       1.1    pooka  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25       1.1    pooka  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26       1.1    pooka  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27       1.1    pooka  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28       1.1    pooka  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29       1.1    pooka  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30       1.1    pooka  * POSSIBILITY OF SUCH DAMAGE.
     31       1.1    pooka  */
     32       1.1    pooka 
     33       1.1    pooka #include <sys/cdefs.h>
     34  1.4.10.1    rmind __KERNEL_RCSID(0, "$NetBSD: if_le_ebus.c,v 1.4.10.1 2014/05/18 17:45:02 rmind Exp $");
     35       1.1    pooka 
     36       1.1    pooka #include "opt_inet.h"
     37       1.1    pooka 
     38       1.4      tls 
     39       1.1    pooka 
     40       1.1    pooka #include <sys/param.h>
     41       1.1    pooka #include <sys/systm.h>
     42       1.1    pooka #include <sys/mbuf.h>
     43       1.1    pooka #include <sys/syslog.h>
     44       1.1    pooka #include <sys/socket.h>
     45       1.1    pooka #include <sys/device.h>
     46       1.1    pooka #include <sys/malloc.h>
     47       1.1    pooka #include <sys/ioctl.h>
     48       1.1    pooka #include <sys/errno.h>
     49       1.1    pooka 
     50       1.1    pooka #include <net/if.h>
     51       1.1    pooka #include <net/if_dl.h>
     52       1.1    pooka #include <net/if_ether.h>
     53       1.1    pooka #include <net/if_media.h>
     54       1.1    pooka 
     55       1.1    pooka #ifdef INET
     56       1.1    pooka #include <netinet/in.h>
     57       1.1    pooka #include <netinet/if_inarp.h>
     58       1.1    pooka #endif
     59       1.1    pooka 
     60       1.1    pooka #include <net/bpf.h>
     61       1.1    pooka #include <net/bpfdesc.h>
     62       1.1    pooka 
     63       1.1    pooka #include <sys/rnd.h>
     64       1.1    pooka 
     65       1.1    pooka #include <emips/ebus/ebusvar.h>
     66       1.1    pooka #include <emips/emips/machdep.h>
     67       1.1    pooka #include <machine/emipsreg.h>
     68       1.1    pooka 
     69       1.1    pooka extern paddr_t kvtophys(vaddr_t);
     70       1.1    pooka 
     71       1.1    pooka struct bufmap {
     72       1.2  tsutsui 	struct mbuf *mbuf;
     73       1.2  tsutsui 	paddr_t phys;
     74       1.1    pooka };
     75       1.1    pooka 
     76       1.1    pooka struct enic_softc {
     77       1.1    pooka 	device_t sc_dev;		/* base device glue */
     78       1.1    pooka 	struct	ethercom sc_ethercom;	/* Ethernet common part */
     79       1.1    pooka 	struct	ifmedia sc_media;	/* our supported media */
     80       1.1    pooka 
     81       1.2  tsutsui 	struct _Enic *sc_regs;		/* hw registers */
     82       1.1    pooka 
     83       1.2  tsutsui 	int	sc_havecarrier;		/* carrier status */
     84       1.2  tsutsui 	void	*sc_sh;			/* shutdownhook cookie */
     85       1.2  tsutsui 	int inited;
     86       1.2  tsutsui 
     87       1.2  tsutsui 	int sc_no_rd;
     88       1.2  tsutsui 	int sc_n_recv;
     89       1.2  tsutsui 	int sc_recv_h;
     90       1.2  tsutsui 	/* BUGBUG really should be malloc-ed */
     91       1.1    pooka #define SC_MAX_N_RECV 64
     92       1.2  tsutsui 	struct bufmap sc_recv[SC_MAX_N_RECV];
     93       1.1    pooka 
     94       1.2  tsutsui 	int sc_no_td;
     95       1.2  tsutsui 	int sc_n_xmit;
     96       1.2  tsutsui 	int sc_xmit_h;
     97       1.2  tsutsui 	/* BUGBUG really should be malloc-ed */
     98       1.1    pooka #define SC_MAX_N_XMIT 16
     99       1.2  tsutsui 	struct bufmap sc_xmit[SC_MAX_N_XMIT];
    100       1.1    pooka 
    101       1.1    pooka #if DEBUG
    102       1.2  tsutsui 	int xhit;
    103       1.2  tsutsui 	int xmiss;
    104       1.2  tsutsui 	int tfull;
    105       1.2  tsutsui 	int tfull2;
    106       1.2  tsutsui 	int brh;
    107       1.2  tsutsui 	int rf;
    108       1.2  tsutsui 	int bxh;
    109       1.1    pooka 
    110       1.2  tsutsui 	int it;
    111       1.1    pooka #endif
    112       1.1    pooka 
    113       1.2  tsutsui 	uint8_t sc_enaddr[ETHER_ADDR_LEN];
    114       1.2  tsutsui 	uint8_t sc_pad[2];
    115       1.3      tls 	krndsource_t	rnd_source;
    116       1.1    pooka };
    117       1.1    pooka 
    118       1.1    pooka void enic_reset(struct ifnet *);
    119       1.1    pooka int enic_init(struct ifnet *);
    120       1.2  tsutsui void enic_stop(struct ifnet *, int);
    121       1.2  tsutsui void enic_start(struct ifnet *);
    122       1.1    pooka void enic_shutdown(void *);
    123       1.2  tsutsui void enic_watchdog(struct ifnet *);
    124       1.2  tsutsui int enic_mediachange(struct ifnet *);
    125       1.2  tsutsui void enic_mediastatus(struct ifnet *, struct ifmediareq *);
    126       1.2  tsutsui int enic_ioctl(struct ifnet *, u_long, void *);
    127       1.2  tsutsui int enic_intr(void *, void *);
    128       1.1    pooka void enic_rint(struct enic_softc *, uint32_t, paddr_t);
    129       1.1    pooka void enic_tint(struct enic_softc *, uint32_t, paddr_t);
    130       1.2  tsutsui void enic_kill_xmit(struct enic_softc *);
    131       1.2  tsutsui void enic_post_recv(struct enic_softc *, struct mbuf *);
    132       1.2  tsutsui void enic_refill(struct enic_softc *);
    133       1.2  tsutsui static int enic_gethwinfo(struct enic_softc *);
    134       1.2  tsutsui int enic_put(struct enic_softc *, struct mbuf **);
    135       1.1    pooka 
    136       1.2  tsutsui static int enic_match(device_t, cfdata_t, void *);
    137       1.2  tsutsui static void enic_attach(device_t, device_t, void *);
    138       1.1    pooka 
    139       1.1    pooka CFATTACH_DECL_NEW(enic_emips, sizeof(struct enic_softc),
    140       1.1    pooka     enic_match, enic_attach, NULL, NULL);
    141       1.1    pooka 
    142       1.1    pooka int
    143       1.2  tsutsui enic_match(device_t parent, cfdata_t cf, void *aux)
    144       1.1    pooka {
    145       1.1    pooka 	struct ebus_attach_args *d = aux;
    146       1.1    pooka 	/* donno yet */
    147       1.1    pooka 	struct _Enic *et = (struct _Enic *)d->ia_vaddr;
    148       1.1    pooka 
    149       1.1    pooka 	if (strcmp("enic", d->ia_name) != 0)
    150       1.2  tsutsui 		return 0;
    151       1.1    pooka 	if ((et == NULL) || (et->Tag != PMTTAG_ETHERNET))
    152       1.1    pooka 		return 0;
    153       1.2  tsutsui 	return 1;
    154       1.1    pooka }
    155       1.1    pooka 
    156       1.1    pooka void
    157       1.2  tsutsui enic_attach(device_t parent, device_t self, void *aux)
    158       1.1    pooka {
    159       1.1    pooka 	struct enic_softc *sc = device_private(self);
    160       1.1    pooka 	struct ebus_attach_args *ia = aux;
    161       1.1    pooka 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    162       1.1    pooka 
    163       1.1    pooka 	sc->sc_regs = (struct _Enic *)(ia->ia_vaddr);
    164       1.1    pooka #if DEBUG
    165       1.2  tsutsui 	printf(" virt=%p ", (void *)sc->sc_regs);
    166       1.1    pooka #endif
    167       1.1    pooka 
    168       1.1    pooka 	/* Get the MAC and the depth of the FIFOs */
    169       1.1    pooka 	if (!enic_gethwinfo(sc)) {
    170       1.1    pooka 		printf(" <cannot get hw info> DISABLED.\n");
    171       1.1    pooka 		/*
    172       1.1    pooka 		 * NB: caveat maintainer: make sure what we
    173       1.1    pooka 		 * did NOT do below does not hurt the system
    174       1.1    pooka 		 */
    175       1.1    pooka 		return;
    176       1.1    pooka 	}
    177       1.1    pooka 
    178       1.1    pooka 	sc->sc_dev = self;
    179       1.1    pooka 	sc->sc_no_td = 0;
    180       1.1    pooka 	sc->sc_havecarrier = 1; /* BUGBUG */
    181       1.1    pooka 	sc->sc_recv_h = 0;
    182       1.1    pooka 	sc->sc_xmit_h = 0;
    183       1.1    pooka 	/* uhmm do I need to do this? */
    184       1.2  tsutsui 	memset(sc->sc_recv, 0, sizeof sc->sc_recv);
    185       1.2  tsutsui 	memset(sc->sc_xmit, 0, sizeof sc->sc_xmit);
    186       1.1    pooka 
    187       1.1    pooka 	/* Initialize ifnet structure. */
    188       1.1    pooka 	strcpy(ifp->if_xname, device_xname(sc->sc_dev));
    189       1.1    pooka 	ifp->if_softc = sc;
    190       1.1    pooka 	ifp->if_start = enic_start;
    191       1.1    pooka 	ifp->if_ioctl = enic_ioctl;
    192       1.1    pooka 	ifp->if_watchdog = enic_watchdog;
    193       1.1    pooka 	ifp->if_init = enic_init;
    194       1.1    pooka 	ifp->if_stop = enic_stop;
    195       1.1    pooka 	ifp->if_flags =
    196       1.1    pooka 	    IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS | IFF_MULTICAST;
    197       1.1    pooka 	IFQ_SET_READY(&ifp->if_snd);
    198       1.1    pooka 
    199       1.1    pooka 	/* Initialize ifmedia structures. */
    200       1.1    pooka 	ifmedia_init(&sc->sc_media, 0, enic_mediachange, enic_mediastatus);
    201       1.1    pooka 	ifmedia_add(&sc->sc_media, IFM_ETHER|IFM_MANUAL, 0, NULL);
    202       1.1    pooka 	ifmedia_set(&sc->sc_media, IFM_ETHER|IFM_MANUAL);
    203       1.1    pooka 
    204       1.1    pooka 	/* Make sure the chip is stopped. */
    205       1.1    pooka 	enic_stop(ifp, 0);
    206       1.1    pooka 	sc->inited = 0;
    207       1.1    pooka 
    208       1.1    pooka 	/* Get the mac address and print it */
    209       1.1    pooka 	printf(": eNIC [%d %d], address %s\n",
    210       1.1    pooka 	    sc->sc_n_recv, sc->sc_n_xmit, ether_sprintf(sc->sc_enaddr));
    211       1.1    pooka 
    212       1.1    pooka 	/* claim 802.1q capability */
    213       1.2  tsutsui #if 0
    214       1.2  tsutsui 	sc->sc_ethercom.ec_capabilities |= ETHERCAP_VLAN_MTU;
    215       1.2  tsutsui #endif
    216       1.1    pooka 
    217       1.1    pooka 	/* Attach the interface. */
    218       1.1    pooka 	if_attach(ifp);
    219       1.1    pooka 	ether_ifattach(ifp, sc->sc_enaddr);
    220       1.1    pooka 
    221       1.1    pooka 	sc->sc_sh = shutdownhook_establish(enic_shutdown, ifp);
    222       1.1    pooka 	if (sc->sc_sh == NULL)
    223       1.1    pooka 		panic("enic_attach: cannot establish shutdown hook");
    224       1.1    pooka 
    225       1.1    pooka 	rnd_attach_source(&sc->rnd_source, device_xname(sc->sc_dev),
    226       1.1    pooka 			  RND_TYPE_NET, 0);
    227       1.1    pooka 
    228       1.2  tsutsui 	ebus_intr_establish(parent, (void *)ia->ia_cookie, IPL_NET,
    229       1.1    pooka 	    enic_intr, sc);
    230       1.1    pooka }
    231       1.1    pooka 
    232       1.2  tsutsui /*
    233       1.2  tsutsui  * Beware: does not work while the nic is running
    234       1.1    pooka  */
    235       1.1    pooka static int enic_gethwinfo(struct enic_softc *sc)
    236       1.1    pooka {
    237       1.2  tsutsui 	uint8_t buffer[8];	/* 64bits max */
    238       1.2  tsutsui 	PENIC_INFO hw = (PENIC_INFO)buffer;
    239       1.2  tsutsui 	paddr_t phys = kvtophys((vaddr_t)&buffer[0]), phys2;
    240       1.2  tsutsui 	int i;
    241       1.2  tsutsui 
    242       1.2  tsutsui 	/*
    243       1.2  tsutsui 	 * First thing first, get the MAC address
    244       1.2  tsutsui 	 */
    245       1.2  tsutsui 	memset(buffer,0,sizeof buffer);
    246       1.2  tsutsui 	buffer[0] = ENIC_CMD_GET_ADDRESS;
    247       1.2  tsutsui 	buffer[3] = ENIC_CMD_GET_ADDRESS;	/* bswap bug */
    248       1.2  tsutsui 	sc->sc_regs->SizeAndFlags = (sizeof buffer) | ES_F_CMD;
    249       1.2  tsutsui 	sc->sc_regs->BufferAddressHi32 = 0;
    250       1.2  tsutsui 	sc->sc_regs->BufferAddressLo32 = phys; /* go! */
    251       1.2  tsutsui 
    252       1.2  tsutsui 	for (i = 0; i < 100; i++) {
    253       1.2  tsutsui 		DELAY(100);
    254       1.2  tsutsui 		if ((sc->sc_regs->Control & EC_OF_EMPTY) == 0)
    255       1.2  tsutsui 			break;
    256       1.2  tsutsui 	}
    257       1.2  tsutsui 	if (i == 100)
    258       1.2  tsutsui 		return 0;
    259       1.1    pooka 
    260       1.2  tsutsui 	phys2 = sc->sc_regs->BufferAddressLo32;
    261       1.2  tsutsui 	if (phys2 != phys) {
    262       1.2  tsutsui 		printf("enic uhu? %llx != %llx?\n",
    263       1.2  tsutsui 		    (long long)phys, (long long)phys2);
    264       1.2  tsutsui 		return 0;
    265       1.2  tsutsui 	}
    266       1.2  tsutsui 	memcpy(sc->sc_enaddr, buffer, ETHER_ADDR_LEN);
    267       1.2  tsutsui 
    268       1.2  tsutsui 	/*
    269       1.2  tsutsui 	 * Next get the HW parameters
    270       1.2  tsutsui 	 */
    271       1.2  tsutsui 	memset(buffer,0,sizeof buffer);
    272       1.2  tsutsui 	buffer[0] = ENIC_CMD_GET_INFO;
    273       1.2  tsutsui 	buffer[3] = ENIC_CMD_GET_INFO;	/* bswap bug */
    274       1.2  tsutsui 	sc->sc_regs->SizeAndFlags = (sizeof buffer) | ES_F_CMD;
    275       1.2  tsutsui 	sc->sc_regs->BufferAddressHi32 = 0;
    276       1.2  tsutsui 	sc->sc_regs->BufferAddressLo32 = phys; /* go! */
    277       1.2  tsutsui 
    278       1.2  tsutsui 	for (i = 0; i < 100; i++) {
    279       1.2  tsutsui 		DELAY(100);
    280       1.2  tsutsui 		if ((sc->sc_regs->Control & EC_OF_EMPTY) == 0)
    281       1.2  tsutsui 			break;
    282       1.2  tsutsui 	}
    283       1.2  tsutsui 	if (i == 100)
    284       1.2  tsutsui 		return 0;
    285       1.2  tsutsui 
    286       1.2  tsutsui 	phys2 = sc->sc_regs->BufferAddressLo32;
    287       1.2  tsutsui 	if (phys2 != phys) {
    288       1.2  tsutsui 		printf("enic uhu2? %llx != %llx?\n",
    289       1.2  tsutsui 		    (long long)phys, (long long)phys2);
    290       1.2  tsutsui 		return 0;
    291       1.2  tsutsui 	}
    292       1.2  tsutsui #if 0
    293       1.2  tsutsui 	printf("enic: hwinfo: %x %x %x %x %x %x \n",
    294       1.2  tsutsui 	    hw->InputFifoSize, hw->OutputFifoSize, hw->CompletionFifoSize,
    295       1.2  tsutsui 	    hw->ErrorCount, hw->FramesDropped, hw->Reserved);
    296       1.2  tsutsui #endif
    297       1.2  tsutsui 
    298       1.2  tsutsui 	/*
    299       1.2  tsutsui 	 * Get FIFO depths and cap them
    300       1.2  tsutsui 	 */
    301       1.2  tsutsui 	sc->sc_n_recv = hw->InputFifoSize;
    302       1.2  tsutsui 	if (sc->sc_n_recv > SC_MAX_N_RECV)
    303       1.2  tsutsui 		sc->sc_n_recv = SC_MAX_N_RECV;
    304       1.2  tsutsui 	if (sc->sc_n_recv == 0) { /* sanity and compat with old hw/simulator */
    305       1.2  tsutsui 		sc->sc_n_recv = 8;
    306       1.2  tsutsui 		sc->sc_n_xmit = 4;
    307       1.2  tsutsui 	} else {
    308       1.2  tsutsui 		sc->sc_n_xmit = hw->OutputFifoSize;
    309       1.2  tsutsui 		if (sc->sc_n_xmit > SC_MAX_N_XMIT)
    310       1.2  tsutsui 			sc->sc_n_xmit = SC_MAX_N_XMIT;
    311       1.2  tsutsui 	}
    312       1.2  tsutsui 
    313       1.2  tsutsui 	return 1;
    314       1.1    pooka }
    315       1.1    pooka 
    316       1.1    pooka void
    317       1.1    pooka enic_reset(struct ifnet *ifp)
    318       1.1    pooka {
    319       1.1    pooka 	int s;
    320       1.1    pooka 
    321       1.1    pooka 	s = splnet();
    322       1.1    pooka 	enic_stop(ifp,0);
    323       1.1    pooka 	enic_init(ifp);
    324       1.1    pooka 	splx(s);
    325       1.1    pooka }
    326       1.1    pooka 
    327       1.1    pooka void
    328       1.1    pooka enic_stop(struct ifnet *ifp, int suspend)
    329       1.1    pooka {
    330       1.1    pooka 	struct enic_softc *sc = ifp->if_softc;
    331       1.1    pooka 
    332       1.2  tsutsui #if 0
    333       1.2  tsutsui 	printf("enic_stop %x\n", sc->sc_regs->Control);
    334       1.2  tsutsui #endif
    335       1.1    pooka 
    336       1.2  tsutsui 	/*
    337       1.2  tsutsui 	 * NB: only "ifconfig down" says suspend=1 (then "up" calls init)
    338       1.2  tsutsui 	 * Could simply set RXDIS in this case
    339       1.2  tsutsui 	 */
    340       1.2  tsutsui 	sc->inited = 2;
    341       1.2  tsutsui 	sc->sc_regs->Control = EC_RESET;
    342       1.2  tsutsui 	sc->sc_no_rd = 0; /* they are gone */
    343       1.2  tsutsui 	sc->sc_no_td = 0; /* they are gone */
    344       1.1    pooka }
    345       1.1    pooka 
    346       1.1    pooka void
    347       1.1    pooka enic_shutdown(void *arg)
    348       1.1    pooka {
    349       1.1    pooka 	struct ifnet *ifp = arg;
    350       1.1    pooka 
    351       1.1    pooka 	enic_stop(ifp, 0);
    352       1.1    pooka }
    353       1.1    pooka 
    354       1.1    pooka void
    355       1.1    pooka enic_kill_xmit(struct enic_softc *sc)
    356       1.1    pooka {
    357       1.2  tsutsui 	int i;
    358       1.2  tsutsui 	struct mbuf *m;
    359       1.1    pooka 
    360       1.2  tsutsui 	for (i = 0; i < sc->sc_n_xmit; i++) {
    361       1.2  tsutsui 		if ((m = sc->sc_xmit[i].mbuf) != NULL) {
    362       1.2  tsutsui 			sc->sc_xmit[i].mbuf = NULL;
    363       1.2  tsutsui 			sc->sc_xmit[i].phys = ~0;
    364       1.2  tsutsui 			m_freem(m);
    365       1.2  tsutsui 		}
    366       1.2  tsutsui 	}
    367       1.1    pooka 	sc->sc_no_td = 0;
    368       1.2  tsutsui 	sc->sc_xmit_h = 0;
    369       1.1    pooka }
    370       1.1    pooka 
    371       1.1    pooka void
    372       1.1    pooka enic_post_recv(struct enic_softc *sc, struct mbuf *m)
    373       1.1    pooka {
    374       1.2  tsutsui 	int i, waitmode = M_DONTWAIT;
    375       1.2  tsutsui 	paddr_t phys;
    376       1.1    pooka 
    377       1.1    pooka #define rpostone(_p_) \
    378       1.1    pooka     sc->sc_regs->SizeAndFlags = ES_F_RECV | MCLBYTES; \
    379       1.1    pooka     sc->sc_regs->BufferAddressHi32 = 0; \
    380       1.1    pooka     sc->sc_regs->BufferAddressLo32 = _p_;
    381       1.1    pooka #define tpostone(_p_,_s_) \
    382       1.1    pooka     sc->sc_regs->SizeAndFlags = ES_F_XMIT | (_s_); \
    383       1.1    pooka     sc->sc_regs->BufferAddressHi32 = 0; \
    384       1.1    pooka     sc->sc_regs->BufferAddressLo32 = _p_;
    385       1.1    pooka 
    386       1.2  tsutsui 	/* Operational reload? */
    387       1.2  tsutsui 	if (m != NULL) {
    388       1.2  tsutsui 		/* But is the hw ready for it */
    389       1.2  tsutsui 		if (sc->sc_regs->Control & EC_IF_FULL)
    390       1.2  tsutsui 			goto no_room;
    391       1.2  tsutsui 		/* Yes, find a spot. Include empty q case. */
    392       1.2  tsutsui 		for (i = sc->sc_recv_h; i < sc->sc_n_recv; i++)
    393       1.2  tsutsui 			if (sc->sc_recv[i].mbuf == NULL)
    394       1.2  tsutsui 				goto found;
    395       1.2  tsutsui 		for (i = 0; i < sc->sc_recv_h; i++)
    396       1.2  tsutsui 			if (sc->sc_recv[i].mbuf == NULL)
    397       1.2  tsutsui 				goto found;
    398       1.2  tsutsui 		/* no spot, drop it (sigh) */
    399       1.2  tsutsui  no_room:
    400       1.2  tsutsui #if DEBUG
    401       1.2  tsutsui 		sc->rf++;
    402       1.2  tsutsui #endif
    403       1.2  tsutsui 		m_freem(m);
    404       1.2  tsutsui 		return;
    405       1.2  tsutsui  found:
    406       1.2  tsutsui 		phys = kvtophys((vaddr_t)m->m_data);
    407       1.2  tsutsui 		sc->sc_recv[i].mbuf = m;
    408       1.2  tsutsui 		sc->sc_recv[i].phys = phys;
    409       1.2  tsutsui 		rpostone(phys);
    410       1.2  tsutsui 		sc->sc_no_rd++;
    411       1.2  tsutsui 		return;
    412       1.2  tsutsui 	}
    413       1.2  tsutsui 
    414       1.2  tsutsui 	/* Repost after reset? */
    415       1.2  tsutsui 	if (sc->inited) {
    416       1.2  tsutsui 		/* order doesnt matter, might as well keep it clean */
    417       1.2  tsutsui 		int j = 0;
    418       1.2  tsutsui 		sc->sc_recv_h = 0;
    419       1.2  tsutsui 		for (i = 0; i < sc->sc_n_recv; i++)
    420       1.2  tsutsui 			if ((m = sc->sc_recv[i].mbuf) != NULL) {
    421       1.2  tsutsui 				phys = sc->sc_recv[i].phys;
    422       1.2  tsutsui 				sc->sc_recv[i].mbuf = NULL;
    423       1.2  tsutsui 				sc->sc_recv[i].phys = ~0;
    424       1.2  tsutsui 				sc->sc_recv[j].mbuf = m;
    425       1.2  tsutsui 				sc->sc_recv[j].phys = phys;
    426       1.2  tsutsui #if DEBUG
    427       1.2  tsutsui 				if (sc->sc_regs->Control & EC_IF_FULL)
    428       1.2  tsutsui 					printf("?uhu? postrecv full? %d\n",
    429       1.2  tsutsui 					    sc->sc_no_rd);
    430       1.2  tsutsui #endif
    431       1.2  tsutsui 				sc->sc_no_rd++;
    432       1.2  tsutsui 				rpostone(phys);
    433       1.2  tsutsui 				j++;
    434       1.2  tsutsui 			}
    435       1.2  tsutsui 		/* Any holes left? */
    436       1.2  tsutsui 		sc->inited = 1;
    437       1.2  tsutsui 		if (j >= sc->sc_n_recv)
    438       1.2  tsutsui 			return;	/* no, we are done */
    439       1.2  tsutsui 		/* continue on with the loop below */
    440       1.2  tsutsui 		i = j; m = NULL;
    441       1.2  tsutsui 		goto fillem;
    442       1.2  tsutsui 	}
    443       1.2  tsutsui 
    444       1.2  tsutsui 	/* Initial refill, we can wait */
    445       1.2  tsutsui 	waitmode = M_WAIT;
    446       1.2  tsutsui 	sc->sc_recv_h = 0;
    447       1.2  tsutsui 	memset(sc->sc_recv, 0, sizeof(sc->sc_recv[0]) * sc->sc_n_recv);
    448       1.2  tsutsui 	i = 0;
    449       1.1    pooka  fillem:
    450       1.2  tsutsui 	for (; i < sc->sc_n_recv; i++) {
    451       1.2  tsutsui 		MGETHDR(m, waitmode, MT_DATA);
    452       1.2  tsutsui 		if (m == 0)
    453       1.2  tsutsui 			break;
    454       1.2  tsutsui 		m->m_pkthdr.rcvif = &sc->sc_ethercom.ec_if;
    455       1.2  tsutsui 		m->m_pkthdr.len = 0;
    456       1.2  tsutsui 
    457       1.2  tsutsui 		MCLGET(m, waitmode);
    458       1.2  tsutsui 		if ((m->m_flags & M_EXT) == 0)
    459       1.2  tsutsui 			break;
    460       1.1    pooka 
    461       1.2  tsutsui 		/*
    462       1.2  tsutsui 		 * This offset aligns IP/TCP headers and helps performance
    463       1.2  tsutsui 		 */
    464       1.1    pooka #if 1
    465       1.1    pooka #define ADJUST_MBUF_OFFSET(_m_) { \
    466       1.2  tsutsui 	(_m_)->m_data += 2; \
    467       1.2  tsutsui 	(_m_)->m_len -= 2; \
    468       1.1    pooka }
    469       1.1    pooka #else
    470       1.2  tsutsui #define ADJUST_MBUF_OFFSET(_m_)
    471       1.1    pooka #endif
    472       1.1    pooka 
    473       1.1    pooka 		m->m_len = MCLBYTES;
    474       1.1    pooka 
    475       1.2  tsutsui 		ADJUST_MBUF_OFFSET(m);
    476       1.2  tsutsui 		phys = kvtophys((vaddr_t)m->m_data);
    477       1.2  tsutsui 		sc->sc_recv[i].mbuf = m;
    478       1.2  tsutsui 		sc->sc_recv[i].phys = phys;
    479       1.2  tsutsui #if DEBUG
    480       1.2  tsutsui 		if (sc->sc_regs->Control & EC_IF_FULL)
    481       1.2  tsutsui 			printf("?uhu? postrecv2 full? %d\n", sc->sc_no_rd);
    482       1.2  tsutsui #endif
    483       1.2  tsutsui 		sc->sc_no_rd++;
    484       1.2  tsutsui 		rpostone(phys);
    485       1.2  tsutsui 		m = NULL;
    486       1.1    pooka 	}
    487       1.1    pooka 
    488       1.2  tsutsui 	if (m)
    489       1.2  tsutsui 		m_freem(m);
    490       1.2  tsutsui 	sc->inited = 1;
    491       1.1    pooka }
    492       1.1    pooka 
    493       1.1    pooka void enic_refill(struct enic_softc *sc)
    494       1.1    pooka {
    495       1.2  tsutsui 	struct mbuf *m;
    496       1.2  tsutsui 	int waitmode = M_DONTWAIT;
    497       1.1    pooka 
    498       1.2  tsutsui 	MGETHDR(m, waitmode, MT_DATA);
    499       1.2  tsutsui 	if (m == NULL)
    500       1.2  tsutsui 		return;
    501       1.2  tsutsui 	m->m_pkthdr.rcvif = &sc->sc_ethercom.ec_if;
    502       1.2  tsutsui 	m->m_pkthdr.len = 0;
    503       1.1    pooka 
    504       1.2  tsutsui 	MCLGET(m, waitmode);
    505       1.2  tsutsui 	if ((m->m_flags & M_EXT) == 0) {
    506       1.2  tsutsui 		m_freem(m);
    507       1.2  tsutsui 		return;
    508       1.2  tsutsui 	}
    509       1.2  tsutsui 
    510       1.2  tsutsui 	m->m_len = MCLBYTES;
    511       1.2  tsutsui 	ADJUST_MBUF_OFFSET(m);
    512       1.1    pooka 
    513       1.2  tsutsui 	enic_post_recv(sc,m);
    514       1.1    pooka }
    515       1.1    pooka 
    516       1.1    pooka int
    517       1.1    pooka enic_init(struct ifnet *ifp)
    518       1.1    pooka {
    519       1.1    pooka 	struct enic_softc *sc = ifp->if_softc;
    520       1.2  tsutsui 	uint32_t ctl;
    521       1.2  tsutsui 
    522       1.2  tsutsui 	/* no need to init many times unless we are in reset */
    523       1.2  tsutsui 	if (sc->inited != 1) {
    524       1.1    pooka 
    525       1.2  tsutsui 		/* Cancel all xmit buffers */
    526       1.2  tsutsui 		enic_kill_xmit(sc);
    527       1.1    pooka 
    528       1.2  tsutsui 		/* Re-post all recv buffers */
    529       1.2  tsutsui 		enic_post_recv(sc,NULL);
    530       1.2  tsutsui 	}
    531       1.1    pooka 
    532       1.2  tsutsui 	/* Start the eNIC */
    533       1.2  tsutsui 	ifp->if_flags |= IFF_RUNNING;
    534       1.2  tsutsui 	ifp->if_flags &= ~IFF_OACTIVE;
    535       1.2  tsutsui 	ifp->if_timer = 0;
    536       1.2  tsutsui 	ctl = sc->sc_regs->Control | EC_INTEN;
    537       1.2  tsutsui 	ctl &= ~EC_RXDIS;
    538       1.2  tsutsui 	sc->sc_regs->Control = ctl;
    539       1.2  tsutsui #if 0
    540       1.2  tsutsui 	printf("enic_init <- %x\n",ctl);
    541       1.2  tsutsui #endif
    542       1.1    pooka 
    543       1.2  tsutsui 	enic_start(ifp);
    544       1.1    pooka 
    545       1.2  tsutsui 	return 0;
    546       1.1    pooka }
    547       1.1    pooka 
    548       1.1    pooka 
    549       1.1    pooka void
    550       1.1    pooka enic_watchdog(struct ifnet *ifp)
    551       1.1    pooka {
    552       1.1    pooka 	struct enic_softc *sc = ifp->if_softc;
    553       1.1    pooka 
    554       1.2  tsutsui #if 0
    555       1.2  tsutsui 	printf("enic_watch ctl=%x\n", sc->sc_regs->Control);
    556       1.2  tsutsui #endif
    557       1.1    pooka 	log(LOG_ERR, "%s: device timeout\n", device_xname(sc->sc_dev));
    558       1.1    pooka 	++ifp->if_oerrors;
    559       1.1    pooka 
    560       1.1    pooka 	enic_reset(ifp);
    561       1.1    pooka }
    562       1.1    pooka 
    563       1.1    pooka int
    564       1.1    pooka enic_mediachange(struct ifnet *ifp)
    565       1.1    pooka {
    566       1.2  tsutsui #if 0
    567       1.2  tsutsui 	struct enic_softc *sc = ifp->if_softc;
    568       1.2  tsutsui #endif
    569       1.2  tsutsui 	/* more code here.. */
    570       1.1    pooka 
    571       1.2  tsutsui 	return 0;
    572       1.1    pooka }
    573       1.1    pooka 
    574       1.1    pooka void
    575       1.2  tsutsui enic_mediastatus(struct ifnet *ifp, struct ifmediareq *ifmr)
    576       1.1    pooka {
    577       1.1    pooka 	struct enic_softc *sc = ifp->if_softc;
    578       1.1    pooka 
    579       1.1    pooka 	if ((ifp->if_flags & IFF_UP) == 0)
    580       1.1    pooka 		return;
    581       1.1    pooka 
    582       1.1    pooka 	ifmr->ifm_status = IFM_AVALID;
    583       1.1    pooka 	if (sc->sc_havecarrier)
    584       1.1    pooka 		ifmr->ifm_status |= IFM_ACTIVE;
    585       1.1    pooka 
    586       1.2  tsutsui 	/* more code here someday.. */
    587       1.1    pooka }
    588       1.1    pooka 
    589       1.1    pooka /*
    590       1.1    pooka  * Process an ioctl request.
    591       1.1    pooka  */
    592       1.1    pooka int
    593       1.1    pooka enic_ioctl(struct ifnet *ifp, u_long cmd, void *data)
    594       1.1    pooka {
    595       1.1    pooka 	struct enic_softc *sc = ifp->if_softc;
    596       1.1    pooka 	struct ifreq *ifr = (struct ifreq *)data;
    597       1.1    pooka 	int s, error = 0;
    598       1.1    pooka 
    599       1.1    pooka 	s = splnet();
    600       1.1    pooka 
    601       1.1    pooka 	switch (cmd) {
    602       1.1    pooka 	case SIOCGIFMEDIA:
    603       1.1    pooka 	case SIOCSIFMEDIA:
    604       1.1    pooka #if 0 /*DEBUG*/
    605       1.2  tsutsui 	    {
    606       1.2  tsutsui 		extern int ei_drops[];
    607       1.2  tsutsui 		static int flip = 0;
    608       1.2  tsutsui 		if (flip++ == 2) {
    609       1.2  tsutsui 			int i;
    610       1.2  tsutsui 			flip = 0;
    611       1.2  tsutsui 			printf("enic_ioctl(%x) %qd/%qd %qd/%qd %d/%d %d:%d "
    612       1.2  tsutsui 			    "%d+%d %d/%d/%d\n", ifp->if_flags,
    613       1.2  tsutsui 			    ifp->if_ierrors, ifp->if_oerrors,
    614       1.2  tsutsui 			    ifp->if_ipackets, ifp->if_opackets,
    615       1.2  tsutsui 			    sc->sc_no_rd, sc->sc_no_td,
    616       1.2  tsutsui 			    sc->xhit, sc->xmiss,
    617       1.2  tsutsui 			    sc->tfull, sc->tfull2,
    618       1.2  tsutsui 			    sc->brh, sc->rf, sc->bxh);
    619       1.2  tsutsui 			printf(" Ctl %x lt %x tim %d\n",
    620       1.2  tsutsui 			    sc->sc_regs->Control, sc->it, ifp->if_timer);
    621       1.2  tsutsui 
    622       1.2  tsutsui 			for (i = 0; i < 64; i++)
    623       1.2  tsutsui 				if (ei_drops[i])
    624       1.2  tsutsui 					printf(" %d.%d",i,ei_drops[i]);
    625       1.2  tsutsui 			printf("\n");
    626       1.1    pooka 		}
    627       1.2  tsutsui 	    }
    628       1.1    pooka #endif
    629       1.1    pooka 		error = ifmedia_ioctl(ifp, ifr, &sc->sc_media, cmd);
    630       1.1    pooka 		break;
    631       1.1    pooka 
    632       1.1    pooka 	default:
    633       1.1    pooka 		error = ether_ioctl(ifp, cmd, data);
    634       1.1    pooka 		if (cmd == SIOCSIFADDR) {
    635       1.1    pooka 			/*
    636       1.1    pooka 			 * hackattack: NFS does not turn us back
    637       1.1    pooka 			 * on after a stop. So.
    638       1.1    pooka 			 */
    639       1.2  tsutsui #if 0
    640       1.2  tsutsui 			printf("enic_ioctl(%lx)\n",cmd);
    641       1.2  tsutsui #endif
    642       1.1    pooka 			enic_init(ifp);
    643       1.1    pooka 		}
    644       1.1    pooka 		if (error != ENETRESET)
    645       1.1    pooka 			break;
    646       1.1    pooka 		error = 0;
    647       1.1    pooka 		if (cmd != SIOCADDMULTI && cmd != SIOCDELMULTI)
    648       1.1    pooka 			break;
    649       1.1    pooka 		if (ifp->if_flags & IFF_RUNNING) {
    650       1.1    pooka 			enic_reset(ifp);
    651       1.1    pooka 		}
    652       1.1    pooka 		break;
    653       1.1    pooka 	}
    654       1.1    pooka 	splx(s);
    655       1.1    pooka 
    656       1.2  tsutsui 	return error;
    657       1.1    pooka }
    658       1.1    pooka 
    659       1.1    pooka int
    660       1.1    pooka enic_intr(void *cookie, void *f)
    661       1.1    pooka {
    662       1.1    pooka 	struct enic_softc *sc = cookie;
    663       1.2  tsutsui 	uint32_t isr, saf, hi, lo, fl;
    664       1.1    pooka 
    665       1.1    pooka 	isr = sc->sc_regs->Control;
    666       1.1    pooka 
    667       1.2  tsutsui 	/* Make sure there is one and that we should take it */
    668       1.1    pooka 	if ((isr & (EC_INTEN|EC_DONE)) != (EC_INTEN|EC_DONE))
    669       1.2  tsutsui 		return 0;
    670       1.1    pooka 
    671       1.1    pooka 	if (isr & EC_ERROR) {
    672       1.2  tsutsui 		printf("%s: internal error\n", device_xname(sc->sc_dev));
    673       1.2  tsutsui 		enic_reset(&sc->sc_ethercom.ec_if);
    674       1.2  tsutsui 		return 1;
    675       1.2  tsutsui 	}
    676       1.1    pooka 
    677       1.2  tsutsui 	/*
    678       1.2  tsutsui 	 * pull out all completed buffers
    679       1.2  tsutsui 	 */
    680       1.2  tsutsui 	while ((isr & EC_OF_EMPTY) == 0) {
    681       1.2  tsutsui 
    682       1.2  tsutsui 		/* beware, order matters */
    683       1.2  tsutsui 		saf = sc->sc_regs->SizeAndFlags;
    684       1.2  tsutsui 		hi  = sc->sc_regs->BufferAddressHi32; /* BUGBUG 64bit */
    685       1.2  tsutsui 		lo  = sc->sc_regs->BufferAddressLo32; /* this pops the fifo */
    686  1.4.10.1    rmind 		__USE(hi);
    687       1.2  tsutsui 
    688       1.2  tsutsui 		fl = saf & (ES_F_MASK &~ ES_F_DONE);
    689       1.2  tsutsui 		if (fl == ES_F_RECV)
    690       1.2  tsutsui 			enic_rint(sc,saf,lo);
    691       1.2  tsutsui 		else if (fl == ES_F_XMIT)
    692       1.2  tsutsui 			enic_tint(sc,saf,lo);
    693       1.2  tsutsui 		else {
    694       1.2  tsutsui 			/*
    695       1.2  tsutsui 			 * we do not currently expect or care for
    696       1.2  tsutsui 			 * command completions?
    697       1.2  tsutsui 			 */
    698       1.2  tsutsui 			if (fl != ES_F_CMD)
    699       1.2  tsutsui 				printf("%s: invalid saf=x%x (lo=%x)\n",
    700       1.2  tsutsui 				    device_xname(sc->sc_dev), saf, lo);
    701       1.2  tsutsui 		}
    702       1.2  tsutsui 
    703       1.2  tsutsui 		isr = sc->sc_regs->Control;
    704       1.2  tsutsui 	}
    705       1.1    pooka 
    706       1.1    pooka 	rnd_add_uint32(&sc->rnd_source, isr);
    707       1.1    pooka 
    708       1.2  tsutsui 	return 1;
    709       1.1    pooka }
    710       1.1    pooka 
    711       1.1    pooka void
    712       1.1    pooka enic_rint(struct enic_softc *sc, uint32_t saf, paddr_t phys)
    713       1.1    pooka {
    714       1.1    pooka 	struct mbuf *m;
    715       1.1    pooka 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    716       1.2  tsutsui 	int len = saf & ES_S_MASK, i;
    717       1.1    pooka 
    718       1.2  tsutsui 	/* Find what buffer it is. Should be the first. */
    719       1.2  tsutsui 	for (i = sc->sc_recv_h; i < sc->sc_n_recv; i++)
    720       1.2  tsutsui 		if (sc->sc_recv[i].phys == phys)
    721       1.2  tsutsui 			goto found;
    722       1.2  tsutsui 	for (i = 0; i < sc->sc_recv_h; i++)
    723       1.2  tsutsui 		if (sc->sc_recv[i].phys == phys)
    724       1.2  tsutsui 			goto found;
    725       1.2  tsutsui 
    726       1.2  tsutsui 	/* uhu?? */
    727       1.2  tsutsui 	printf("%s: bad recv phys %llx\n", device_xname(sc->sc_dev),
    728       1.2  tsutsui 	    (long long)phys);
    729       1.2  tsutsui 	ifp->if_ierrors++;
    730       1.2  tsutsui 	return;
    731       1.1    pooka 
    732       1.2  tsutsui 	/* got it, pop it */
    733       1.1    pooka  found:
    734       1.2  tsutsui 	sc->sc_no_rd--;
    735       1.2  tsutsui 	m = sc->sc_recv[i].mbuf;
    736       1.2  tsutsui 	sc->sc_recv[i].mbuf = NULL;
    737       1.2  tsutsui 	sc->sc_recv[i].phys = ~0;
    738       1.2  tsutsui 	if (i == sc->sc_recv_h) { /* should be */
    739       1.2  tsutsui 		sc->sc_recv_h = (++i == sc->sc_n_recv) ? 0 : i;
    740       1.2  tsutsui 	}
    741       1.1    pooka #if DEBUG
    742       1.2  tsutsui 	else
    743       1.2  tsutsui 		sc->brh++;
    744       1.1    pooka #endif
    745       1.1    pooka 
    746       1.1    pooka 	if (len <= sizeof(struct ether_header) ||
    747       1.1    pooka 	    len > ((sc->sc_ethercom.ec_capenable & ETHERCAP_VLAN_MTU) ?
    748       1.1    pooka 		ETHER_VLAN_ENCAP_LEN + ETHERMTU + sizeof(struct ether_header) :
    749       1.1    pooka 		ETHERMTU + sizeof(struct ether_header))) {
    750       1.1    pooka 		ifp->if_ierrors++;
    751       1.1    pooka 
    752       1.2  tsutsui 		/* reuse it */
    753       1.2  tsutsui 		enic_post_recv(sc,m);
    754       1.1    pooka 		return;
    755       1.1    pooka 	}
    756       1.1    pooka 
    757       1.1    pooka 	/* Adjust size */
    758       1.1    pooka 	m->m_pkthdr.len = len;
    759       1.1    pooka 	m->m_len = len; /* recheck */
    760       1.1    pooka 
    761       1.1    pooka 	ifp->if_ipackets++;
    762       1.1    pooka 
    763       1.1    pooka 	/*
    764       1.1    pooka 	 * Check if there's a BPF listener on this interface.
    765       1.1    pooka 	 * If so, hand off the raw packet to BPF.
    766       1.1    pooka 	 */
    767       1.1    pooka 	if (ifp->if_bpf)
    768       1.1    pooka 		bpf_mtap(ifp, m);
    769       1.1    pooka 
    770       1.1    pooka 	/* Pass the packet up. */
    771       1.1    pooka 	(*ifp->if_input)(ifp, m);
    772       1.1    pooka 
    773       1.1    pooka 	/* Need to refill now */
    774       1.1    pooka 	enic_refill(sc);
    775       1.1    pooka }
    776       1.1    pooka 
    777       1.1    pooka void enic_tint(struct enic_softc *sc, uint32_t saf, paddr_t phys)
    778       1.1    pooka {
    779       1.1    pooka 	struct mbuf *m;
    780       1.1    pooka 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    781       1.2  tsutsui 	int i;
    782       1.1    pooka 
    783       1.1    pooka #if DEBUG
    784       1.2  tsutsui 	sc->it = 1;
    785       1.1    pooka #endif
    786       1.1    pooka 
    787       1.2  tsutsui 	/* BUGBUG should there be a per-buffer error bit in SAF? */
    788       1.1    pooka 
    789       1.2  tsutsui 	/* Find what buffer it is. Should be the first. */
    790       1.2  tsutsui 	for (i = sc->sc_xmit_h; i < sc->sc_n_xmit; i++)
    791       1.2  tsutsui 		if (sc->sc_xmit[i].phys == phys)
    792       1.2  tsutsui 			goto found;
    793       1.2  tsutsui 	for (i = 0; i < sc->sc_xmit_h; i++)
    794       1.2  tsutsui 		if (sc->sc_xmit[i].phys == phys)
    795       1.2  tsutsui 			goto found;
    796       1.1    pooka 
    797       1.2  tsutsui 	/* uhu?? */
    798       1.2  tsutsui 	printf("%s: bad xmit phys %llx\n", device_xname(sc->sc_dev),
    799       1.2  tsutsui 	    (long long)phys);
    800       1.2  tsutsui 	ifp->if_oerrors++;
    801       1.2  tsutsui 	return;
    802       1.1    pooka 
    803       1.2  tsutsui 	/* got it, pop it */
    804       1.1    pooka  found:
    805       1.2  tsutsui 	m = sc->sc_xmit[i].mbuf;
    806       1.2  tsutsui 	sc->sc_xmit[i].mbuf = NULL;
    807       1.2  tsutsui 	sc->sc_xmit[i].phys = ~0;
    808       1.2  tsutsui 	if (i == sc->sc_xmit_h) { /* should be */
    809       1.2  tsutsui 		sc->sc_xmit_h = (++i == sc->sc_n_xmit) ? 0 : i;
    810       1.2  tsutsui 	}
    811       1.1    pooka #if DEBUG
    812       1.2  tsutsui 	else
    813       1.2  tsutsui 		sc->bxh++;
    814       1.1    pooka #endif
    815       1.2  tsutsui 	m_freem(m);
    816       1.2  tsutsui 	ifp->if_opackets++;
    817       1.1    pooka 
    818       1.1    pooka 	if (--sc->sc_no_td == 0)
    819       1.1    pooka 		ifp->if_timer = 0;
    820       1.1    pooka 
    821       1.2  tsutsui 	ifp->if_flags &= ~IFF_OACTIVE;
    822       1.2  tsutsui 	enic_start(ifp);
    823       1.1    pooka #if DEBUG
    824       1.2  tsutsui 	sc->it = 1;
    825       1.1    pooka #endif
    826       1.1    pooka }
    827       1.1    pooka 
    828       1.1    pooka /*
    829       1.1    pooka  * Setup output on interface.
    830       1.1    pooka  * Get another datagram to send off of the interface queue, and map it to the
    831       1.1    pooka  * interface before starting the output.
    832       1.1    pooka  * Called only at splnet or interrupt level.
    833       1.1    pooka  */
    834       1.1    pooka void
    835       1.1    pooka enic_start(struct ifnet *ifp)
    836       1.1    pooka {
    837       1.1    pooka 	struct enic_softc *sc = ifp->if_softc;
    838       1.1    pooka 	struct mbuf *m;
    839       1.1    pooka 	int len, ix, s;
    840       1.2  tsutsui 	paddr_t phys;
    841       1.1    pooka 
    842       1.1    pooka #if DEBUG
    843       1.2  tsutsui 	sc->it = 0;
    844       1.1    pooka #endif
    845       1.1    pooka 
    846       1.2  tsutsui #if 0
    847       1.2  tsutsui 	printf("enic_start(%x)\n", ifp->if_flags);
    848       1.2  tsutsui #endif
    849       1.1    pooka 
    850       1.1    pooka 	if ((ifp->if_flags & (IFF_RUNNING | IFF_OACTIVE)) != IFF_RUNNING)
    851       1.1    pooka 		return;
    852       1.1    pooka 
    853       1.2  tsutsui 	s = splnet();	/* I know, I dont trust people.. */
    854       1.1    pooka 
    855       1.2  tsutsui 	ix = sc->sc_xmit_h;
    856       1.1    pooka 	for (;;) {
    857       1.1    pooka 
    858       1.2  tsutsui 		/* Anything to do? */
    859       1.2  tsutsui 		IFQ_POLL(&ifp->if_snd, m);
    860       1.2  tsutsui 		if (m == NULL)
    861       1.1    pooka 			break;
    862       1.1    pooka 
    863       1.2  tsutsui 		/* find a spot, if any */
    864       1.2  tsutsui 		for (; ix < sc->sc_n_xmit; ix++)
    865       1.2  tsutsui 			if (sc->sc_xmit[ix].mbuf == NULL)
    866       1.2  tsutsui 				goto found;
    867       1.2  tsutsui 		for (ix = 0; ix < sc->sc_xmit_h; ix++)
    868       1.2  tsutsui 			if (sc->sc_xmit[ix].mbuf == NULL)
    869       1.2  tsutsui 				goto found;
    870       1.2  tsutsui 		/* oh well */
    871       1.2  tsutsui 		ifp->if_flags |= IFF_OACTIVE;
    872       1.1    pooka #if DEBUG
    873       1.2  tsutsui 		sc->tfull++;
    874       1.1    pooka #endif
    875       1.2  tsutsui 		break;
    876       1.1    pooka 
    877       1.2  tsutsui  found:
    878       1.1    pooka 		IFQ_DEQUEUE(&ifp->if_snd, m);
    879       1.2  tsutsui 		if (m == NULL)
    880       1.1    pooka 			break;
    881       1.1    pooka 
    882       1.1    pooka 		/*
    883       1.1    pooka 		 * If BPF is listening on this interface, let it see the packet
    884       1.1    pooka 		 * before we commit it to the wire.
    885       1.1    pooka 		 */
    886       1.1    pooka 		if (ifp->if_bpf)
    887       1.1    pooka 			bpf_mtap(ifp, m);
    888       1.1    pooka 
    889       1.1    pooka 		/*
    890       1.1    pooka 		 * Copy the mbuf chain into a contiguous transmit buffer.
    891       1.1    pooka 		 */
    892       1.1    pooka 		len = enic_put(sc, &m);
    893       1.2  tsutsui 		if (len == 0)
    894       1.2  tsutsui 			break;	/* sanity */
    895       1.2  tsutsui 		if (len > (ETHERMTU + sizeof(struct ether_header))) {
    896       1.2  tsutsui 			printf("enic? tlen %d > %d\n",
    897       1.2  tsutsui 			    len, ETHERMTU + sizeof(struct ether_header));
    898       1.2  tsutsui 			len = ETHERMTU + sizeof(struct ether_header);
    899       1.2  tsutsui 		}
    900       1.1    pooka 
    901       1.1    pooka 		ifp->if_timer = 5;
    902       1.1    pooka 
    903       1.1    pooka 		/*
    904       1.1    pooka 		 * Remember and post the buffer
    905       1.1    pooka 		 */
    906       1.2  tsutsui 		phys = kvtophys((vaddr_t)m->m_data);
    907       1.2  tsutsui 		sc->sc_xmit[ix].mbuf = m;
    908       1.2  tsutsui 		sc->sc_xmit[ix].phys = phys;
    909       1.1    pooka 
    910       1.2  tsutsui 		sc->sc_no_td++;
    911       1.1    pooka 
    912       1.2  tsutsui 		tpostone(phys,len);
    913       1.1    pooka 
    914       1.1    pooka 		if (sc->sc_regs->Control & EC_IF_FULL) {
    915       1.1    pooka 			ifp->if_flags |= IFF_OACTIVE;
    916       1.1    pooka #if DEBUG
    917       1.2  tsutsui 			sc->tfull2++;
    918       1.1    pooka #endif
    919       1.1    pooka 			break;
    920       1.1    pooka 		}
    921       1.1    pooka 
    922       1.2  tsutsui 		ix++;
    923       1.1    pooka 	}
    924       1.1    pooka 
    925       1.2  tsutsui 	splx(s);
    926       1.1    pooka }
    927       1.1    pooka 
    928       1.1    pooka int enic_put(struct enic_softc *sc, struct mbuf **pm)
    929       1.1    pooka {
    930       1.1    pooka 	struct mbuf *n, *m = *pm, *mm;
    931       1.1    pooka 	int len, tlen = 0, xlen = m->m_pkthdr.len;
    932       1.2  tsutsui 	uint8_t *cp;
    933       1.1    pooka 
    934       1.1    pooka #if 0
    935       1.2  tsutsui 	/* drop garbage */
    936       1.2  tsutsui 	tlen = xlen;
    937       1.1    pooka 	for (; m; m = n) {
    938       1.1    pooka 		len = m->m_len;
    939       1.1    pooka 		if (len == 0) {
    940       1.1    pooka 			MFREE(m, n);
    941       1.2  tsutsui 		if (m == *pm)
    942       1.2  tsutsui 			*pm = n;
    943       1.1    pooka 			continue;
    944       1.1    pooka 		}
    945       1.1    pooka 		tlen -= len;
    946       1.2  tsutsui 		KASSERT(m != m->m_next);
    947       1.2  tsutsui 		n = m->m_next;
    948       1.2  tsutsui 		if (tlen <= 0)
    949       1.2  tsutsui 			break;
    950       1.2  tsutsui 	}
    951       1.1    pooka 
    952       1.2  tsutsui 	/*
    953       1.2  tsutsui 	 * We might be done:
    954       1.2  tsutsui 	 * (a) empty chain (b) only one segment (c) bad chain
    955       1.2  tsutsui 	 */
    956       1.2  tsutsui 	if (((m = *pm) == NULL) || (tlen > 0))
    957       1.2  tsutsui 		xlen = 0;
    958       1.2  tsutsui #endif
    959       1.2  tsutsui 
    960       1.2  tsutsui 	if ((xlen == 0) || (xlen <= m->m_len)) {
    961       1.2  tsutsui #if DEBUG
    962       1.2  tsutsui 		sc->xhit++;
    963       1.2  tsutsui #endif
    964       1.2  tsutsui 		return xlen;
    965       1.2  tsutsui 	}
    966       1.2  tsutsui 
    967       1.2  tsutsui 	/* Nope, true chain. Copy to contig :-(( */
    968       1.2  tsutsui 	tlen = xlen;
    969       1.2  tsutsui 	MGETHDR(n, M_NOWAIT, MT_DATA);
    970       1.2  tsutsui 	if (n == NULL)
    971       1.2  tsutsui 		goto Bad;
    972       1.2  tsutsui 	n->m_pkthdr.rcvif = &sc->sc_ethercom.ec_if;
    973       1.2  tsutsui 	n->m_pkthdr.len = tlen;
    974       1.2  tsutsui 
    975       1.2  tsutsui 	MCLGET(n, M_NOWAIT);
    976       1.2  tsutsui 	if ((n->m_flags & M_EXT) == 0) {
    977       1.2  tsutsui 		m_freem(n);
    978       1.2  tsutsui 		goto Bad;
    979       1.2  tsutsui 	}
    980       1.2  tsutsui 
    981       1.2  tsutsui 	n->m_len = tlen;
    982       1.2  tsutsui 	cp = mtod(n, uint8_t *);
    983       1.1    pooka 	for (; m && tlen; m = mm) {
    984       1.1    pooka 
    985       1.2  tsutsui 		len = m->m_len;
    986       1.2  tsutsui 		if (len > tlen)
    987       1.2  tsutsui 			len = tlen;
    988       1.2  tsutsui 		if (len)
    989       1.2  tsutsui 			memcpy(cp, mtod(m, void *), len);
    990       1.1    pooka 
    991       1.1    pooka 		cp += len;
    992       1.2  tsutsui 		tlen -= len;
    993       1.1    pooka 		MFREE(m, mm);
    994       1.2  tsutsui 
    995       1.1    pooka 	}
    996       1.1    pooka 
    997       1.2  tsutsui 	*pm = n;
    998       1.1    pooka #if DEBUG
    999       1.2  tsutsui 	sc->xmiss++;
   1000       1.1    pooka #endif
   1001       1.1    pooka 	return (xlen);
   1002       1.1    pooka 
   1003       1.1    pooka  Bad:
   1004       1.2  tsutsui 	printf("enic_put: no mem?\n");
   1005       1.2  tsutsui 	m_freem(m);
   1006       1.2  tsutsui 	return 0;
   1007       1.1    pooka }
   1008