Home | History | Annotate | Line # | Download | only in dev
if_qn.c revision 1.5
      1 /*	$NetBSD: if_qn.c,v 1.5 1996/04/21 21:11:50 veego Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1995 Mika Kortelainen
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. All advertising materials mentioning features or use of this software
     16  *    must display the following acknowledgement:
     17  *      This product includes software developed by  Mika Kortelainen
     18  * 4. The name of the author may not be used to endorse or promote products
     19  *    derived from this software without specific prior written permission
     20  *
     21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31  *
     32  * Thanks for Aspecs Oy (Finland) for the data book for the NIC used
     33  * in this card and also many thanks for the Resource Management Force
     34  * (QuickNet card manufacturer) and especially Daniel Koch for providing
     35  * me with the necessary 'inside' information to write the driver.
     36  *
     37  * This is partly based on other code:
     38  * - if_ed.c: basic function structure for Ethernet driver and now also
     39  *	qn_put() is done similarly, i.e. no extra packet buffers.
     40  *
     41  *	Device driver for National Semiconductor DS8390/WD83C690 based ethernet
     42  *	adapters.
     43  *
     44  *	Copyright (c) 1994, 1995 Charles M. Hannum.  All rights reserved.
     45  *
     46  *	Copyright (C) 1993, David Greenman.  This software may be used,
     47  *	modified, copied, distributed, and sold, in both source and binary
     48  *	form provided that the above copyright and these terms are retained.
     49  *	Under no circumstances is the author responsible for the proper
     50  *	functioning of this software, nor does the author assume any
     51  *	responsibility for damages incurred with its use.
     52  *
     53  * - if_es.c: used as an example of -current driver
     54  *
     55  *	Copyright (c) 1995 Michael L. Hitch
     56  *	All rights reserved.
     57  *
     58  * - if_fe.c: some ideas for error handling for qn_rint() which might
     59  *	have fixed those random lock ups, too.
     60  *
     61  *	All Rights Reserved, Copyright (C) Fujitsu Limited 1995
     62  *
     63  *
     64  * TODO:
     65  * - add multicast support
     66  */
     67 
     68 #include "qn.h"
     69 #if NQN > 0
     70 
     71 #define QN_DEBUG
     72 #define QN_DEBUG1_no /* hides some old tests */
     73 
     74 #include "bpfilter.h"
     75 
     76 /*
     77  * Fujitsu MB86950 Ethernet Controller (as used in the QuickNet QN2000
     78  * Ethernet card)
     79  */
     80 
     81 #include <sys/param.h>
     82 #include <sys/systm.h>
     83 #include <sys/mbuf.h>
     84 #include <sys/buf.h>
     85 #include <sys/device.h>
     86 #include <sys/protosw.h>
     87 #include <sys/socket.h>
     88 #include <sys/syslog.h>
     89 #include <sys/ioctl.h>
     90 #include <sys/errno.h>
     91 
     92 #include <net/if.h>
     93 #include <net/netisr.h>
     94 #include <net/route.h>
     95 
     96 #ifdef INET
     97 #include <netinet/in.h>
     98 #include <netinet/in_systm.h>
     99 #include <netinet/in_var.h>
    100 #include <netinet/ip.h>
    101 #include <netinet/if_ether.h>
    102 #endif
    103 
    104 #ifdef NS
    105 #include <netns/ns.h>
    106 #include <netns/ns_if.h>
    107 #endif
    108 
    109 #include <machine/cpu.h>
    110 #include <machine/mtpr.h>
    111 #include <amiga/amiga/device.h>
    112 #include <amiga/amiga/isr.h>
    113 #include <amiga/dev/zbusvar.h>
    114 #include <amiga/dev/if_qnreg.h>
    115 
    116 
    117 #define ETHER_MIN_LEN	60
    118 #define ETHER_MAX_LEN	1514
    119 #define ETHER_HDR_SIZE	14
    120 #define	NIC_R_MASK	(R_INT_PKT_RDY | R_INT_ALG_ERR |\
    121 			 R_INT_CRC_ERR | R_INT_OVR_FLO)
    122 #define	MAX_PACKETS	30 /* max number of packets read per interrupt */
    123 
    124 /*
    125  * Ethernet software status per interface
    126  *
    127  * Each interface is referenced by a network interface structure,
    128  * qn_if, which the routing code uses to locate the interface.
    129  * This structure contains the output queue for the interface, its address, ...
    130  */
    131 struct	qn_softc {
    132 	struct	device sc_dev;
    133 	struct	isr sc_isr;
    134 	struct	arpcom sc_arpcom;	/* Common ethernet structures */
    135 	u_char	volatile *sc_base;
    136 	u_char	volatile *sc_nic_base;
    137 	u_short	volatile *nic_fifo;
    138 	u_short	volatile *nic_r_status;
    139 	u_short	volatile *nic_t_status;
    140 	u_short	volatile *nic_r_mask;
    141 	u_short	volatile *nic_t_mask;
    142 	u_short	volatile *nic_r_mode;
    143 	u_short	volatile *nic_t_mode;
    144 	u_short	volatile *nic_reset;
    145 	u_short	volatile *nic_len;
    146 	u_char	transmit_pending;
    147 #if NBPFILTER > 0
    148 	caddr_t	sc_bpf;
    149 #endif
    150 } qn_softc[NQN];
    151 
    152 #if NBPFILTER > 0
    153 #include <net/bpf.h>
    154 #include <net/bpfdesc.h>
    155 #endif
    156 
    157 
    158 int	qnmatch __P((struct device *, void *, void *));
    159 void	qnattach __P((struct device *, struct device *, void *));
    160 int	qnintr __P((void *));
    161 int	qnioctl __P((struct ifnet *, u_long, caddr_t));
    162 void	qnstart __P((struct ifnet *));
    163 void	qnwatchdog __P((int));
    164 void	qnreset __P((struct qn_softc *));
    165 void	qninit __P((struct qn_softc *));
    166 void	qnstop __P((struct qn_softc *));
    167 static	u_short qn_put __P((u_short volatile *, struct mbuf *));
    168 static	void qn_rint __P((struct qn_softc *, u_short));
    169 static	void qn_flush __P((struct qn_softc *));
    170 static	void inline word_copy_from_card __P((u_short volatile *, u_short *, u_short));
    171 static	void inline word_copy_to_card __P((u_short *, u_short volatile *, u_short));
    172 static	void qn_get_packet __P((struct qn_softc *, u_short));
    173 #ifdef QN_DEBUG1
    174 static	void qn_dump __P((struct qn_softc *));
    175 #endif
    176 
    177 struct cfattach qn_ca = {
    178 	sizeof(struct qn_softc), qnmatch, qnattach
    179 };
    180 
    181 struct cfdriver qn_cd = {
    182 	NULL, "qn", DV_IFNET
    183 };
    184 
    185 
    186 int
    187 qnmatch(parent, match, aux)
    188 	struct device *parent;
    189 	void *match, *aux;
    190 {
    191 	struct zbus_args *zap;
    192 
    193 	zap = (struct zbus_args *)aux;
    194 
    195 	/* RMF QuickNet QN2000 EtherNet card */
    196 	if (zap->manid == 2011 && zap->prodid == 2)
    197 		return (1);
    198 
    199 	return (0);
    200 }
    201 
    202 /*
    203  * Interface exists: make available by filling in network interface
    204  * record.  System will initialize the interface when it is ready
    205  * to accept packets.
    206  */
    207 void
    208 qnattach(parent, self, aux)
    209 	struct device *parent, *self;
    210 	void *aux;
    211 {
    212 	struct zbus_args *zap;
    213 	struct qn_softc *sc = (struct qn_softc *)self;
    214 	struct ifnet *ifp = &sc->sc_arpcom.ac_if;
    215 
    216 	zap = (struct zbus_args *)aux;
    217 
    218 	sc->sc_base = zap->va;
    219 	sc->sc_nic_base = sc->sc_base + QUICKNET_NIC_BASE;
    220 	sc->nic_fifo = (u_short volatile *)(sc->sc_nic_base + NIC_BMPR0);
    221 	sc->nic_len = (u_short volatile *)(sc->sc_nic_base + NIC_BMPR2);
    222 	sc->nic_t_status = (u_short volatile *)(sc->sc_nic_base + NIC_DLCR0);
    223 	sc->nic_r_status = (u_short volatile *)(sc->sc_nic_base + NIC_DLCR2);
    224 	sc->nic_t_mask = (u_short volatile *)(sc->sc_nic_base + NIC_DLCR1);
    225 	sc->nic_r_mask = (u_short volatile *)(sc->sc_nic_base + NIC_DLCR3);
    226 	sc->nic_t_mode = (u_short volatile *)(sc->sc_nic_base + NIC_DLCR4);
    227 	sc->nic_r_mode = (u_short volatile *)(sc->sc_nic_base + NIC_DLCR5);
    228 	sc->nic_reset = (u_short volatile *)(sc->sc_nic_base + NIC_DLCR6);
    229 	sc->transmit_pending = 0;
    230 
    231 	/*
    232 	 * The ethernet address of the board (1st three bytes are the vendor
    233 	 * address, the rest is the serial number of the board).
    234 	 */
    235 	sc->sc_arpcom.ac_enaddr[0] = 0x5c;
    236 	sc->sc_arpcom.ac_enaddr[1] = 0x5c;
    237 	sc->sc_arpcom.ac_enaddr[2] = 0x00;
    238 	sc->sc_arpcom.ac_enaddr[3] = (zap->serno >> 16) & 0xff;
    239 	sc->sc_arpcom.ac_enaddr[4] = (zap->serno >> 8) & 0xff;
    240 	sc->sc_arpcom.ac_enaddr[5] = zap->serno & 0xff;
    241 
    242 	/* set interface to stopped condition (reset) */
    243 	qnstop(sc);
    244 
    245 	ifp->if_unit = sc->sc_dev.dv_unit;
    246 	ifp->if_name = qn_cd.cd_name;
    247 	ifp->if_ioctl = qnioctl;
    248 	ifp->if_watchdog = qnwatchdog;
    249 	ifp->if_output = ether_output;
    250 	ifp->if_start = qnstart;
    251 	/* XXX IFF_MULTICAST */
    252 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS;
    253 	ifp->if_mtu = ETHERMTU;
    254 
    255 	/* Attach the interface. */
    256 	if_attach(ifp);
    257 	ether_ifattach(ifp);
    258 
    259 #ifdef QN_DEBUG
    260 	printf(": hardware address %s\n", ether_sprintf(sc->sc_arpcom.ac_enaddr));
    261 #endif
    262 
    263 #if NBPFILTER > 0
    264 	bpfattach(&sc->sc_bpf, ifp, DLT_EN10MB, sizeof(struct ether_header));
    265 #endif
    266 
    267 	sc->sc_isr.isr_intr = qnintr;
    268 	sc->sc_isr.isr_arg = sc;
    269 	sc->sc_isr.isr_ipl = 2;
    270 	add_isr(&sc->sc_isr);
    271 }
    272 
    273 /*
    274  * Initialize device
    275  *
    276  */
    277 void
    278 qninit(sc)
    279 	struct qn_softc *sc;
    280 {
    281 	struct ifnet *ifp = &sc->sc_arpcom.ac_if;
    282 	u_short i;
    283 	static retry = 0;
    284 
    285 	*sc->nic_r_mask   = NIC_R_MASK;
    286 	*sc->nic_t_mode   = NO_LOOPBACK;
    287 
    288 	if (sc->sc_arpcom.ac_if.if_flags & IFF_PROMISC) {
    289 		*sc->nic_r_mode = PROMISCUOUS_MODE;
    290 		log(LOG_INFO, "qn: Promiscuous mode (not tested)\n");
    291 	} else
    292 		*sc->nic_r_mode = NORMAL_MODE;
    293 
    294 	/* Set physical ethernet address. */
    295 	for (i = 0; i < ETHER_ADDR_LEN; i++)
    296 		*((u_short volatile *)(sc->sc_nic_base+
    297 				       QNET_HARDWARE_ADDRESS+2*i)) =
    298 		    ((((u_short)sc->sc_arpcom.ac_enaddr[i]) << 8) |
    299 		    sc->sc_arpcom.ac_enaddr[i]);
    300 
    301 	ifp->if_flags |= IFF_RUNNING;
    302 	ifp->if_flags &= ~IFF_OACTIVE;
    303 	sc->transmit_pending = 0;
    304 
    305 	qn_flush(sc);
    306 
    307 	/* QuickNet magic. Done ONLY once, otherwise a lockup occurs. */
    308 	if (retry == 0) {
    309 		*((u_short volatile *)(sc->sc_nic_base + QNET_MAGIC)) = 0;
    310 		retry = 1;
    311 	}
    312 
    313 	/* Enable data link controller. */
    314 	*sc->nic_reset = ENABLE_DLC;
    315 
    316 	/* Attempt to start output, if any. */
    317 	qnstart(ifp);
    318 }
    319 
    320 /*
    321  * Device timeout/watchdog routine.  Entered if the device neglects to
    322  * generate an interrupt after a transmit has been started on it.
    323  */
    324 void
    325 qnwatchdog(unit)
    326 	int unit;
    327 {
    328 	struct qn_softc *sc = qn_cd.cd_devs[unit];
    329 
    330 	log(LOG_INFO, "qn: device timeout (watchdog)\n");
    331 	++sc->sc_arpcom.ac_if.if_oerrors;
    332 
    333 	qnreset(sc);
    334 }
    335 
    336 /*
    337  * Flush card's buffer RAM.
    338  */
    339 static void
    340 qn_flush(sc)
    341 	struct qn_softc *sc;
    342 {
    343 #if 1
    344 	/* Read data until bus read error (i.e. buffer empty). */
    345 	while (!(*sc->nic_r_status & R_BUS_RD_ERR))
    346 		(void)(*sc->nic_fifo);
    347 #else
    348 	/* Read data twice to clear some internal pipelines. */
    349 	(void)(*sc->nic_fifo);
    350 	(void)(*sc->nic_fifo);
    351 #endif
    352 
    353 	/* Clear bus read error. */
    354 	*sc->nic_r_status = R_BUS_RD_ERR;
    355 }
    356 
    357 /*
    358  * Reset the interface.
    359  *
    360  */
    361 void
    362 qnreset(sc)
    363 	struct qn_softc *sc;
    364 {
    365 	int s;
    366 
    367 	s = splnet();
    368 	qnstop(sc);
    369 	qninit(sc);
    370 	splx(s);
    371 }
    372 
    373 /*
    374  * Take interface offline.
    375  */
    376 void
    377 qnstop(sc)
    378 	struct qn_softc *sc;
    379 {
    380 
    381 	/* Stop the interface. */
    382 	*sc->nic_reset    = DISABLE_DLC;
    383 	delay(200);
    384 	*sc->nic_t_status = CLEAR_T_ERR;
    385 	*sc->nic_t_mask   = CLEAR_T_MASK;
    386 	*sc->nic_r_status = CLEAR_R_ERR;
    387 	*sc->nic_r_mask   = CLEAR_R_MASK;
    388 
    389 	/* Turn DMA off */
    390 	*((u_short volatile *)(sc->sc_nic_base + NIC_BMPR4)) = 0;
    391 
    392 	/* Accept no packets. */
    393 	*sc->nic_r_mode = 0;
    394 	*sc->nic_t_mode = 0;
    395 
    396 	qn_flush(sc);
    397 }
    398 
    399 /*
    400  * Start output on interface. Get another datagram to send
    401  * off the interface queue, and copy it to the
    402  * interface before starting the output.
    403  *
    404  * This assumes that it is called inside a critical section...
    405  *
    406  */
    407 void
    408 qnstart(ifp)
    409 	struct ifnet *ifp;
    410 {
    411 	struct qn_softc *sc = qn_cd.cd_devs[ifp->if_unit];
    412 	struct mbuf *m;
    413 	u_short len;
    414 	int timout = 60000;
    415 
    416 
    417 	if ((ifp->if_flags & (IFF_RUNNING | IFF_OACTIVE)) != IFF_RUNNING)
    418 		return;
    419 
    420 	IF_DEQUEUE(&sc->sc_arpcom.ac_if.if_snd, m);
    421 	if (m == 0)
    422 		return;
    423 
    424 #if NBPFILTER > 0
    425 	/*
    426 	 * If bpf is listening on this interface, let it
    427 	 * see the packet before we commit it to the wire
    428 	 *
    429 	 * (can't give the copy in QuickNet card RAM to bpf, because
    430 	 * that RAM is not visible to the host but is read from FIFO)
    431 	 *
    432 	 */
    433 	log(LOG_INFO, "NBPFILTER... no-one has tested this with qn.\n");
    434 	if (sc->sc_bpf)
    435 		bpf_mtap(sc->sc_bpf, m);
    436 #endif
    437 	len = qn_put(sc->nic_fifo, m);
    438 	m_freem(m);
    439 
    440 	/*
    441 	 * Really transmit the packet.
    442 	 */
    443 
    444 	/* Set packet length (byte-swapped). */
    445 	len = ((len >> 8) & 0x0007) | TRANSMIT_START | ((len & 0x00ff) << 8);
    446 	*sc->nic_len = len;
    447 
    448 	/* Wait for the packet to really leave. */
    449 	while (!(*sc->nic_t_status & T_TMT_OK) && --timout) {
    450 		if ((timout % 10000) == 0)
    451 			log(LOG_INFO, "qn: timout...\n");
    452 	}
    453 
    454 	if (timout == 0)
    455 		/* Maybe we should try to recover from this one? */
    456 		/* But now, let's just fall thru and hope the best... */
    457 		log(LOG_INFO, "qn: transmit timout (fatal?)\n");
    458 
    459 	sc->transmit_pending = 1;
    460 	*sc->nic_t_mask = INT_TMT_OK | INT_SIXTEEN_COL;
    461 
    462 	sc->sc_arpcom.ac_if.if_flags |= IFF_OACTIVE;
    463 	ifp->if_timer = 2;
    464 }
    465 
    466 /*
    467  * Memory copy, copies word at a time
    468  */
    469 static void inline
    470 word_copy_from_card(card, b, len)
    471 	u_short volatile *card;
    472 	u_short *b, len;
    473 {
    474 	register u_short l = len/2;
    475 
    476 	while (l--)
    477 		*b++ = *card;
    478 }
    479 
    480 static void inline
    481 word_copy_to_card(a, card, len)
    482 	u_short *a;
    483 	u_short volatile *card;
    484 	u_short len;
    485 {
    486 	register u_short l = len/2;
    487 
    488 	while (l--)
    489 		*card = *a++;
    490 }
    491 
    492 /*
    493  * Copy packet from mbuf to the board memory
    494  *
    495  * Uses an extra buffer/extra memory copy,
    496  * unless the whole packet fits in one mbuf.
    497  *
    498  */
    499 static u_short
    500 qn_put(addr, m)
    501 	u_short volatile *addr;
    502 	struct mbuf *m;
    503 {
    504 	u_short *data, savebyte[2];
    505 	int len, wantbyte;
    506 	u_short totlen;
    507 
    508 	totlen = wantbyte = 0;
    509 
    510 	for (; m != NULL; m = m->m_next) {
    511 		data = mtod(m, u_short *);
    512 		len = m->m_len;
    513 		totlen += len;
    514 		if (len > 0) {
    515 			/* Finish the last word. */
    516 			if (wantbyte) {
    517 				savebyte[1] = *data;
    518 				*addr = *((u_short *)savebyte);
    519 				data++;
    520 				len--;
    521 				wantbyte = 0;
    522 			}
    523 			/* Output contiguous words. */
    524 			if (len > 1) {
    525 				word_copy_to_card(data, addr, len);
    526 				data += len & ~1;
    527 				len &= 1;
    528 			}
    529 			/* Save last byte, if necessary. */
    530 			if (len == 1) {
    531 				savebyte[0] = *data;
    532 				wantbyte = 1;
    533 			}
    534 		}
    535 	}
    536 
    537 	if (wantbyte) {
    538 		savebyte[1] = 0;
    539 		*addr = *((u_short *)savebyte);
    540 	}
    541 
    542 	if(totlen < ETHER_MIN_LEN) {
    543 		/*
    544 		 * Fill the rest of the packet with zeros.
    545 		 * N.B.: This is required! Otherwise MB86950 fails.
    546 		 */
    547 		for(len = totlen + 1; len < ETHER_MIN_LEN; len += 2)
    548 	  		*addr = (u_short)0x0000;
    549 		totlen = ETHER_MIN_LEN;
    550 	}
    551 
    552 	return (totlen);
    553 }
    554 
    555 /*
    556  * Copy packet from board RAM.
    557  *
    558  * Trailers not supported.
    559  *
    560  */
    561 static void
    562 qn_get_packet(sc, len)
    563 	struct qn_softc *sc;
    564 	u_short len;
    565 {
    566 	register u_short volatile *nic_fifo_ptr = sc->nic_fifo;
    567 	struct ether_header *eh;
    568 	struct mbuf *m, *dst, *head = NULL;
    569 	register u_short len1;
    570 	u_short amount;
    571 
    572 	/* Allocate header mbuf. */
    573 	MGETHDR(m, M_DONTWAIT, MT_DATA);
    574 	if (m == NULL)
    575 		goto bad;
    576 
    577 	/*
    578 	 * Round len to even value.
    579 	 */
    580 	if (len & 1)
    581 		len++;
    582 
    583 	m->m_pkthdr.rcvif = &sc->sc_arpcom.ac_if;
    584 	m->m_pkthdr.len = len;
    585 	m->m_len = 0;
    586 	head = m;
    587 
    588 	eh = mtod(head, struct ether_header *);
    589 
    590 	word_copy_from_card(nic_fifo_ptr,
    591 	    mtod(head, u_short *),
    592 	    sizeof(struct ether_header));
    593 
    594 	head->m_len += sizeof(struct ether_header);
    595 	len -= sizeof(struct ether_header);
    596 
    597 	while (len > 0) {
    598 		len1 = len;
    599 
    600 		amount = M_TRAILINGSPACE(m);
    601 		if (amount == 0) {
    602 			/* Allocate another mbuf. */
    603 			dst = m;
    604 			MGET(m, M_DONTWAIT, MT_DATA);
    605 			if (m == NULL)
    606 				goto bad;
    607 
    608 			if (len1 >= MINCLSIZE)
    609 				MCLGET(m, M_DONTWAIT);
    610 
    611 			m->m_len = 0;
    612 			dst->m_next = m;
    613 
    614 			amount = M_TRAILINGSPACE(m);
    615 		}
    616 
    617 		if (amount < len1)
    618 			len1 = amount;
    619 
    620 		word_copy_from_card(nic_fifo_ptr,
    621 		    (u_short *)(mtod(m, caddr_t) + m->m_len),
    622 		    len1);
    623 		m->m_len += len1;
    624 		len -= len1;
    625 	}
    626 
    627 #if NBPFILTER > 0
    628 	log(LOG_INFO, "qn: Beware, an untested code section\n");
    629 	if (sc->sc_bpf) {
    630 		bpf_mtap(sc->sc_bpf, head);
    631 
    632 		/*
    633 		 * The interface cannot be in promiscuous mode if there are
    634 		 * no BPF listeners. And in prom. mode we have to check
    635 		 * if the packet is really ours...
    636 		 */
    637 		if ((sc->sc_arpcom.ac_if.if_flags & IFF_PROMISC) &&
    638 		    (eh->ether_dhost[0] & 1) == 0 && /* not bcast or mcast */
    639 		    bcmp(eh->ether_dhost,
    640         	        sc->sc_arpcom.ac_enaddr,
    641 		        ETHER_ADDR_LEN) != 0) {
    642 			m_freem(head);
    643 			return;
    644 		}
    645 	}
    646 #endif
    647 
    648 	m_adj(head, sizeof(struct ether_header));
    649 	ether_input(&sc->sc_arpcom.ac_if, eh, head);
    650 	return;
    651 
    652 bad:
    653 	if (head) {
    654 		m_freem(head);
    655 		log(LOG_INFO, "qn_get_packet: mbuf alloc failed\n");
    656 	}
    657 }
    658 
    659 /*
    660  * Ethernet interface receiver interrupt.
    661  */
    662 static void
    663 qn_rint(sc, rstat)
    664 	struct qn_softc *sc;
    665 	u_short rstat;
    666 {
    667 	int i;
    668 	u_short len, status;
    669 
    670 	/* Clear the status register. */
    671 	*sc->nic_r_status = CLEAR_R_ERR;
    672 
    673 	/*
    674 	 * Was there some error?
    675 	 * Some of them are senseless because they are masked off.
    676 	 * XXX
    677 	 */
    678 	if (rstat & 0x0101) {
    679 #ifdef QN_DEBUG
    680 		log(LOG_INFO, "Overflow\n");
    681 #endif
    682 		++sc->sc_arpcom.ac_if.if_ierrors;
    683 	}
    684 	if (rstat & 0x0202) {
    685 #ifdef QN_DEBUG
    686 		log(LOG_INFO, "CRC Error\n");
    687 #endif
    688 		++sc->sc_arpcom.ac_if.if_ierrors;
    689 	}
    690 	if (rstat & 0x0404) {
    691 #ifdef QN_DEBUG
    692 		log(LOG_INFO, "Alignment error\n");
    693 #endif
    694 		++sc->sc_arpcom.ac_if.if_ierrors;
    695 	}
    696 	if (rstat & 0x0808) {
    697 		/* Short packet (these may occur and are
    698 		 * no reason to worry about - or maybe
    699 		 * they are?).
    700 		 */
    701 #ifdef QN_DEBUG
    702 		log(LOG_INFO, "Short packet\n");
    703 #endif
    704 		++sc->sc_arpcom.ac_if.if_ierrors;
    705 	}
    706 	if (rstat & 0x4040) {
    707 #ifdef QN_DEBUG
    708 		log(LOG_INFO, "Bus read error\n");
    709 #endif
    710 		++sc->sc_arpcom.ac_if.if_ierrors;
    711 		qnreset(sc);
    712 	}
    713 
    714 	/*
    715 	 * Read at most MAX_PACKETS packets per interrupt
    716 	 */
    717 	for (i = 0; i < MAX_PACKETS; i++) {
    718 		if (*sc->nic_r_mode & RM_BUF_EMP)
    719 			/* Buffer empty. */
    720 			break;
    721 
    722 		/*
    723 		 * Read the first word: upper byte contains useful
    724 		 * information.
    725 		 */
    726 		status = *sc->nic_fifo;
    727 		if ((status & 0x7000) != 0x2000) {
    728 			log(LOG_INFO, "qn: ERROR: status=%04x\n", status);
    729 			continue;
    730 		}
    731 
    732 		/*
    733 		 * Read packet length (byte-swapped).
    734 		 * CRC is stripped off by the NIC.
    735 		 */
    736 		len = *sc->nic_fifo;
    737 		len = ((len << 8) & 0xff00) | ((len >> 8) & 0x00ff);
    738 
    739 #ifdef QN_DEBUG
    740 		if (len > ETHER_MAX_LEN || len < ETHER_HDR_SIZE) {
    741 			log(LOG_WARNING,
    742 			    "%s: received a %s packet? (%u bytes)\n",
    743 			    sc->sc_dev.dv_xname,
    744 			    len < ETHER_HDR_SIZE ? "partial" : "big", len);
    745 			++sc->sc_arpcom.ac_if.if_ierrors;
    746 			continue;
    747 		}
    748 #endif
    749 #ifdef QN_DEBUG
    750 		if (len < ETHER_MIN_LEN)
    751 			log(LOG_WARNING,
    752 			    "%s: received a short packet? (%u bytes)\n",
    753 			    sc->sc_dev.dv_xname, len);
    754 #endif
    755 
    756 		/* Read the packet. */
    757 		qn_get_packet(sc, len);
    758 
    759 		++sc->sc_arpcom.ac_if.if_ipackets;
    760 	}
    761 
    762 #ifdef QN_DEBUG
    763 	/* This print just to see whether MAX_PACKETS is large enough. */
    764 	if (i == MAX_PACKETS)
    765 		log(LOG_INFO, "used all the %d loops\n", MAX_PACKETS);
    766 #endif
    767 }
    768 
    769 /*
    770  * Our interrupt routine
    771  */
    772 int
    773 qnintr(arg)
    774 	void *arg;
    775 {
    776 	struct qn_softc *sc = arg;
    777 	u_short tint, rint, tintmask;
    778 	char return_tintmask = 0;
    779 
    780 	/*
    781 	 * If the driver has not been initialized, just return immediately.
    782 	 * This also happens if there is no QuickNet board present.
    783 	 */
    784 	if (sc->sc_base == NULL)
    785 		return (0);
    786 
    787 	/* Get interrupt statuses and masks. */
    788 	rint = (*sc->nic_r_status) & NIC_R_MASK;
    789 	tintmask = *sc->nic_t_mask;
    790 	tint = (*sc->nic_t_status) & tintmask;
    791 	if (tint == 0 && rint == 0)
    792 		return (0);
    793 
    794 	/* Disable interrupts so that we won't miss anything. */
    795 	*sc->nic_r_mask = CLEAR_R_MASK;
    796 	*sc->nic_t_mask = CLEAR_T_MASK;
    797 
    798 	/*
    799 	 * Handle transmitter interrupts. Some of them are not asked for
    800 	 * but do happen, anyway.
    801 	 */
    802 
    803 	if (tint != 0) {
    804 		/* Clear transmit interrupt status. */
    805 		*sc->nic_t_status = CLEAR_T_ERR;
    806 
    807 		if (sc->transmit_pending && (tint & T_TMT_OK)) {
    808 			sc->transmit_pending = 0;
    809 			/*
    810 			 * Update total number of successfully
    811 			 * transmitted packets.
    812 			 */
    813 			sc->sc_arpcom.ac_if.if_opackets++;
    814 		}
    815 
    816 		if (tint & T_SIXTEEN_COL) {
    817 			/*
    818 			 * 16 collision (i.e., packet lost).
    819 			 */
    820 			log(LOG_INFO, "qn: 16 collision - packet lost\n");
    821 #ifdef QN_DEBUG1
    822 			qn_dump(sc);
    823 #endif
    824 			sc->sc_arpcom.ac_if.if_oerrors++;
    825 			sc->sc_arpcom.ac_if.if_collisions += 16;
    826 			sc->transmit_pending = 0;
    827 		}
    828 
    829 		if (sc->transmit_pending) {
    830 			log(LOG_INFO, "qn:still pending...\n");
    831 
    832 			/* Must return transmission interrupt mask. */
    833 			return_tintmask = 1;
    834 		} else {
    835 			sc->sc_arpcom.ac_if.if_flags &= ~IFF_OACTIVE;
    836 
    837 			/* Clear watchdog timer. */
    838 			sc->sc_arpcom.ac_if.if_timer = 0;
    839 		}
    840 	} else
    841 		return_tintmask = 1;
    842 
    843 	/*
    844 	 * Handle receiver interrupts.
    845 	 */
    846 	if (rint != 0)
    847 		qn_rint(sc, rint);
    848 
    849 	if ((sc->sc_arpcom.ac_if.if_flags & IFF_OACTIVE) == 0)
    850 		qnstart(&sc->sc_arpcom.ac_if);
    851 	else if (return_tintmask == 1)
    852 		*sc->nic_t_mask = tintmask;
    853 
    854 	/* Set receive interrupt mask back. */
    855 	*sc->nic_r_mask = NIC_R_MASK;
    856 
    857 	return (1);
    858 }
    859 
    860 /*
    861  * Process an ioctl request. This code needs some work - it looks pretty ugly.
    862  * I somehow think that this is quite a common excuse... ;-)
    863  */
    864 int
    865 qnioctl(ifp, command, data)
    866 	register struct ifnet *ifp;
    867 	u_long command;
    868 	caddr_t data;
    869 {
    870 	struct qn_softc *sc = qn_cd.cd_devs[ifp->if_unit];
    871 	register struct ifaddr *ifa = (struct ifaddr *)data;
    872 #if 0
    873 	struct ifreg *ifr = (struct ifreg *)data;
    874 #endif
    875 	int s, error = 0;
    876 
    877 	s = splnet();
    878 
    879 	switch (command) {
    880 
    881 	case SIOCSIFADDR:
    882 		ifp->if_flags |= IFF_UP;
    883 
    884 		switch (ifa->ifa_addr->sa_family) {
    885 #ifdef INET
    886 		case AF_INET:
    887 			qnstop(sc);
    888 			qninit(sc);
    889 			arp_ifinit(&sc->sc_arpcom, ifa);
    890 			break;
    891 #endif
    892 #ifdef NS
    893 		case AF_NS:
    894 		    {
    895 			register struct ns_addr *ina = &(IA_SNS(ifa)->sns_addr);
    896 
    897 			if (ns_nullhost(*ina))
    898 				ina->x_host =
    899 				    *(union ns_host *)(sc->sc_arpcom.ac_enaddr);
    900 			else
    901 				bcopy(ina->x_host.c_host,
    902 				    sc->sc_arpcom.ac_enaddr,
    903 				    sizeof(sc->sc_arpcom.ac_enaddr));
    904 			qnstop(sc);
    905 			qninit(sc);
    906 			break;
    907 		    }
    908 #endif
    909 		default:
    910 			log(LOG_INFO, "qn:sa_family:default (not tested)\n");
    911 			qnstop(sc);
    912 			qninit(sc);
    913 			break;
    914 		}
    915 		break;
    916 
    917 	case SIOCSIFFLAGS:
    918 		if ((ifp->if_flags & IFF_UP) == 0 &&
    919 		    (ifp->if_flags & IFF_RUNNING) != 0) {
    920 			/*
    921 			 * If interface is marked down and it is running, then
    922 			 * stop it.
    923 			 */
    924 #ifdef QN_DEBUG1
    925 			qn_dump(sc);
    926 #endif
    927 			qnstop(sc);
    928 			ifp->if_flags &= ~IFF_RUNNING;
    929 		} else if ((ifp->if_flags & IFF_UP) != 0 &&
    930 			   (ifp->if_flags & IFF_RUNNING) == 0) {
    931 			/*
    932 			 * If interface is marked up and it is stopped, then
    933 			 * start it.
    934 			 */
    935 			qninit(sc);
    936 		} else {
    937 			/*
    938 			 * Something else... we won't do anything so we won't
    939 			 * break anything (hope so).
    940 			 */
    941 #ifdef QN_DEBUG1
    942 			log(LOG_INFO, "Else branch...\n");
    943 #endif
    944 		}
    945 		break;
    946 
    947 	case SIOCADDMULTI:
    948 	case SIOCDELMULTI:
    949 		log(LOG_INFO, "qnioctl: multicast not done yet\n");
    950 #if 0
    951 		error = (command == SIOCADDMULTI) ?
    952 		    ether_addmulti(ifr, &sc->sc_arpcom) :
    953 		    ether_delmulti(ifr, &sc->sc_arpcom);
    954 
    955 		if (error == ENETRESET) {
    956 			/*
    957 			 * Multicast list has changed; set the hardware filter
    958 			 * accordingly.
    959 			 */
    960 			log(LOG_INFO, "qnioctl: multicast not done yet\n");
    961 			error = 0;
    962 		}
    963 #else
    964 		error = EINVAL;
    965 #endif
    966 		break;
    967 
    968 	default:
    969 		log(LOG_INFO, "qnioctl: default\n");
    970 		error = EINVAL;
    971 	}
    972 
    973 	splx(s);
    974 	return (error);
    975 }
    976 
    977 /*
    978  * Dump some register information.
    979  */
    980 #ifdef QN_DEBUG1
    981 static void
    982 qn_dump(sc)
    983 	struct qn_softc *sc;
    984 {
    985 
    986 	log(LOG_INFO, "t_status  : %04x\n", *sc->nic_t_status);
    987 	log(LOG_INFO, "t_mask    : %04x\n", *sc->nic_t_mask);
    988 	log(LOG_INFO, "t_mode    : %04x\n", *sc->nic_t_mode);
    989 	log(LOG_INFO, "r_status  : %04x\n", *sc->nic_r_status);
    990 	log(LOG_INFO, "r_mask    : %04x\n", *sc->nic_r_mask);
    991 	log(LOG_INFO, "r_mode    : %04x\n", *sc->nic_r_mode);
    992 	log(LOG_INFO, "pending   : %02x\n", sc->transmit_pending);
    993 	log(LOG_INFO, "if_flags  : %04x\n", sc->sc_arpcom.ac_if.if_flags);
    994 }
    995 #endif
    996 
    997 #endif /* NQN > 0 */
    998