if_qn.c revision 1.15 1 /* $NetBSD: if_qn.c,v 1.15 1998/07/05 00:51:06 jonathan 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 #define QN_CHECKS_no /* adds some checks (not needed in normal situations) */
74
75 #include "bpfilter.h"
76
77 /*
78 * Fujitsu MB86950 Ethernet Controller (as used in the QuickNet QN2000
79 * Ethernet card)
80 */
81
82 #include "opt_inet.h"
83
84 #include <sys/param.h>
85 #include <sys/systm.h>
86 #include <sys/mbuf.h>
87 #include <sys/buf.h>
88 #include <sys/device.h>
89 #include <sys/protosw.h>
90 #include <sys/socket.h>
91 #include <sys/syslog.h>
92 #include <sys/ioctl.h>
93 #include <sys/errno.h>
94
95 #include <net/if.h>
96 #include <net/if_dl.h>
97 #include <net/if_ether.h>
98
99 #ifdef INET
100 #include <netinet/in.h>
101 #include <netinet/in_systm.h>
102 #include <netinet/in_var.h>
103 #include <netinet/ip.h>
104 #include <netinet/if_inarp.h>
105 #endif
106
107 #ifdef NS
108 #include <netns/ns.h>
109 #include <netns/ns_if.h>
110 #endif
111
112 #include <machine/cpu.h>
113 #include <machine/mtpr.h>
114 #include <amiga/amiga/device.h>
115 #include <amiga/amiga/isr.h>
116 #include <amiga/dev/zbusvar.h>
117 #include <amiga/dev/if_qnreg.h>
118
119
120 #define ETHER_MIN_LEN 60
121 #define ETHER_MAX_LEN 1514
122 #define ETHER_HDR_SIZE 14
123 #define NIC_R_MASK (R_INT_PKT_RDY | R_INT_ALG_ERR |\
124 R_INT_CRC_ERR | R_INT_OVR_FLO)
125 #define MAX_PACKETS 30 /* max number of packets read per interrupt */
126
127 /*
128 * Ethernet software status per interface
129 *
130 * Each interface is referenced by a network interface structure,
131 * qn_if, which the routing code uses to locate the interface.
132 * This structure contains the output queue for the interface, its address, ...
133 */
134 struct qn_softc {
135 struct device sc_dev;
136 struct isr sc_isr;
137 struct ethercom sc_ethercom; /* Common ethernet structures */
138 u_char volatile *sc_base;
139 u_char volatile *sc_nic_base;
140 u_short volatile *nic_fifo;
141 u_short volatile *nic_r_status;
142 u_short volatile *nic_t_status;
143 u_short volatile *nic_r_mask;
144 u_short volatile *nic_t_mask;
145 u_short volatile *nic_r_mode;
146 u_short volatile *nic_t_mode;
147 u_short volatile *nic_reset;
148 u_short volatile *nic_len;
149 u_char transmit_pending;
150 #if NBPFILTER > 0
151 caddr_t sc_bpf;
152 #endif
153 } qn_softc[NQN];
154
155 #if NBPFILTER > 0
156 #include <net/bpf.h>
157 #include <net/bpfdesc.h>
158 #endif
159
160
161 int qnmatch __P((struct device *, struct cfdata *, void *));
162 void qnattach __P((struct device *, struct device *, void *));
163 int qnintr __P((void *));
164 int qnioctl __P((struct ifnet *, u_long, caddr_t));
165 void qnstart __P((struct ifnet *));
166 void qnwatchdog __P((struct ifnet *));
167 void qnreset __P((struct qn_softc *));
168 void qninit __P((struct qn_softc *));
169 void qnstop __P((struct qn_softc *));
170 static u_short qn_put __P((u_short volatile *, struct mbuf *));
171 static void qn_rint __P((struct qn_softc *, u_short));
172 static void qn_flush __P((struct qn_softc *));
173 static void inline word_copy_from_card __P((u_short volatile *, u_short *, u_short));
174 static void inline word_copy_to_card __P((u_short *, u_short volatile *, register u_short));
175 static void qn_get_packet __P((struct qn_softc *, u_short));
176 #ifdef QN_DEBUG1
177 static void qn_dump __P((struct qn_softc *));
178 #endif
179
180 struct cfattach qn_ca = {
181 sizeof(struct qn_softc), qnmatch, qnattach
182 };
183
184 int
185 qnmatch(parent, cfp, aux)
186 struct device *parent;
187 struct cfdata *cfp;
188 void *aux;
189 {
190 struct zbus_args *zap;
191
192 zap = (struct zbus_args *)aux;
193
194 /* RMF QuickNet QN2000 EtherNet card */
195 if (zap->manid == 2011 && zap->prodid == 2)
196 return (1);
197
198 return (0);
199 }
200
201 /*
202 * Interface exists: make available by filling in network interface
203 * record. System will initialize the interface when it is ready
204 * to accept packets.
205 */
206 void
207 qnattach(parent, self, aux)
208 struct device *parent, *self;
209 void *aux;
210 {
211 struct zbus_args *zap;
212 struct qn_softc *sc = (struct qn_softc *)self;
213 struct ifnet *ifp = &sc->sc_ethercom.ec_if;
214 u_int8_t myaddr[ETHER_ADDR_LEN];
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 myaddr[0] = 0x5c;
236 myaddr[1] = 0x5c;
237 myaddr[2] = 0x00;
238 myaddr[3] = (zap->serno >> 16) & 0xff;
239 myaddr[4] = (zap->serno >> 8) & 0xff;
240 myaddr[5] = zap->serno & 0xff;
241
242 /* set interface to stopped condition (reset) */
243 qnstop(sc);
244
245 bcopy(sc->sc_dev.dv_xname, ifp->if_xname, IFNAMSIZ);
246 ifp->if_softc = sc;
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, myaddr);
258
259 #ifdef QN_DEBUG
260 printf(": hardware address %s\n", ether_sprintf(myaddr));
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_ethercom.ec_if;
282 u_short i;
283 static int retry = 0;
284
285 *sc->nic_r_mask = NIC_R_MASK;
286 *sc->nic_t_mode = NO_LOOPBACK;
287
288 if (sc->sc_ethercom.ec_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)LLADDR(ifp->if_sadl)[i]) << 8) |
299 LLADDR(ifp->if_sadl)[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(ifp)
326 struct ifnet *ifp;
327 {
328 struct qn_softc *sc = ifp->if_softc;
329
330 log(LOG_INFO, "qn: device timeout (watchdog)\n");
331 ++sc->sc_ethercom.ec_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 = ifp->if_softc;
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(&ifp->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 if (sc->sc_bpf)
434 bpf_mtap(sc->sc_bpf, m);
435 #endif
436 len = qn_put(sc->nic_fifo, m);
437 m_freem(m);
438
439 /*
440 * Really transmit the packet.
441 */
442
443 /* Set packet length (byte-swapped). */
444 len = ((len >> 8) & 0x0007) | TRANSMIT_START | ((len & 0x00ff) << 8);
445 *sc->nic_len = len;
446
447 /* Wait for the packet to really leave. */
448 while (!(*sc->nic_t_status & T_TMT_OK) && --timout) {
449 if ((timout % 10000) == 0)
450 log(LOG_INFO, "qn: timout...\n");
451 }
452
453 if (timout == 0)
454 /* Maybe we should try to recover from this one? */
455 /* But now, let's just fall thru and hope the best... */
456 log(LOG_INFO, "qn: transmit timout (fatal?)\n");
457
458 sc->transmit_pending = 1;
459 *sc->nic_t_mask = INT_TMT_OK | INT_SIXTEEN_COL;
460
461 ifp->if_flags |= IFF_OACTIVE;
462 ifp->if_timer = 2;
463 }
464
465 /*
466 * Memory copy, copies word at a time
467 */
468 static void inline
469 word_copy_from_card(card, b, len)
470 u_short volatile *card;
471 u_short *b, len;
472 {
473 register u_short l = len/2;
474
475 while (l--)
476 *b++ = *card;
477 }
478
479 static void inline
480 word_copy_to_card(a, card, len)
481 u_short *a;
482 u_short volatile *card;
483 register u_short len;
484 {
485 /*register u_short l = len/2;*/
486
487 while (len--)
488 *card = *a++;
489 }
490
491 /*
492 * Copy packet from mbuf to the board memory
493 *
494 */
495 static u_short
496 qn_put(addr, m)
497 u_short volatile *addr;
498 struct mbuf *m;
499 {
500 u_short *data;
501 u_char savebyte[2];
502 int len, len1, wantbyte;
503 u_short totlen;
504
505 totlen = wantbyte = 0;
506
507 for (; m != NULL; m = m->m_next) {
508 data = mtod(m, u_short *);
509 len = m->m_len;
510 if (len > 0) {
511 totlen += len;
512
513 /* Finish the last word. */
514 if (wantbyte) {
515 savebyte[1] = *((u_char *)data);
516 *addr = *((u_short *)savebyte);
517 ((u_char *)data)++;
518 len--;
519 wantbyte = 0;
520 }
521 /* Output contiguous words. */
522 if (len > 1) {
523 len1 = len/2;
524 word_copy_to_card(data, addr, len1);
525 data += len1;
526 len &= 1;
527 }
528 /* Save last byte, if necessary. */
529 if (len == 1) {
530 savebyte[0] = *((u_char *)data);
531 wantbyte = 1;
532 }
533 }
534 }
535
536 if (wantbyte) {
537 savebyte[1] = 0;
538 *addr = *((u_short *)savebyte);
539 }
540
541 if(totlen < ETHER_MIN_LEN) {
542 /*
543 * Fill the rest of the packet with zeros.
544 * N.B.: This is required! Otherwise MB86950 fails.
545 */
546 for(len = totlen + 1; len < ETHER_MIN_LEN; len += 2)
547 *addr = (u_short)0x0000;
548 totlen = ETHER_MIN_LEN;
549 }
550
551 return (totlen);
552 }
553
554 /*
555 * Copy packet from board RAM.
556 *
557 * Trailers not supported.
558 *
559 */
560 static void
561 qn_get_packet(sc, len)
562 struct qn_softc *sc;
563 u_short len;
564 {
565 register u_short volatile *nic_fifo_ptr = sc->nic_fifo;
566 struct ifnet *ifp = &sc->sc_ethercom.ec_if;
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_ethercom.ec_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 if (sc->sc_bpf) {
629 bpf_mtap(sc->sc_bpf, head);
630
631 /*
632 * The interface cannot be in promiscuous mode if there are
633 * no BPF listeners. And in prom. mode we have to check
634 * if the packet is really ours...
635 */
636 if ((ifp->if_flags & IFF_PROMISC) &&
637 (eh->ether_dhost[0] & 1) == 0 && /* not bcast or mcast */
638 bcmp(eh->ether_dhost,
639 LLADDR(ifp->if_sadl),
640 ETHER_ADDR_LEN) != 0) {
641 m_freem(head);
642 return;
643 }
644 }
645 #endif
646
647 m_adj(head, sizeof(struct ether_header));
648 ether_input(ifp, eh, head);
649 return;
650
651 bad:
652 if (head) {
653 m_freem(head);
654 log(LOG_INFO, "qn_get_packet: mbuf alloc failed\n");
655 }
656 }
657
658 /*
659 * Ethernet interface receiver interrupt.
660 */
661 static void
662 qn_rint(sc, rstat)
663 struct qn_softc *sc;
664 u_short rstat;
665 {
666 int i;
667 u_short len, status;
668
669 /* Clear the status register. */
670 *sc->nic_r_status = CLEAR_R_ERR;
671
672 /*
673 * Was there some error?
674 * Some of them are senseless because they are masked off.
675 * XXX
676 */
677 if (rstat & R_INT_OVR_FLO) {
678 #ifdef QN_DEBUG
679 log(LOG_INFO, "Overflow\n");
680 #endif
681 ++sc->sc_ethercom.ec_if.if_ierrors;
682 }
683 if (rstat & R_INT_CRC_ERR) {
684 #ifdef QN_DEBUG
685 log(LOG_INFO, "CRC Error\n");
686 #endif
687 ++sc->sc_ethercom.ec_if.if_ierrors;
688 }
689 if (rstat & R_INT_ALG_ERR) {
690 #ifdef QN_DEBUG
691 log(LOG_INFO, "Alignment error\n");
692 #endif
693 ++sc->sc_ethercom.ec_if.if_ierrors;
694 }
695 if (rstat & R_INT_SRT_PKT) {
696 /* Short packet (these may occur and are
697 * no reason to worry about - or maybe
698 * they are?).
699 */
700 #ifdef QN_DEBUG
701 log(LOG_INFO, "Short packet\n");
702 #endif
703 ++sc->sc_ethercom.ec_if.if_ierrors;
704 }
705 if (rstat & 0x4040) {
706 #ifdef QN_DEBUG
707 log(LOG_INFO, "Bus read error\n");
708 #endif
709 ++sc->sc_ethercom.ec_if.if_ierrors;
710 qnreset(sc);
711 }
712
713 /*
714 * Read at most MAX_PACKETS packets per interrupt
715 */
716 for (i = 0; i < MAX_PACKETS; i++) {
717 if (*sc->nic_r_mode & RM_BUF_EMP)
718 /* Buffer empty. */
719 break;
720
721 /*
722 * Read the first word: upper byte contains useful
723 * information.
724 */
725 status = *sc->nic_fifo;
726 if ((status & 0x7000) != 0x2000) {
727 log(LOG_INFO, "qn: ERROR: status=%04x\n", status);
728 continue;
729 }
730
731 /*
732 * Read packet length (byte-swapped).
733 * CRC is stripped off by the NIC.
734 */
735 len = *sc->nic_fifo;
736 len = ((len << 8) & 0xff00) | ((len >> 8) & 0x00ff);
737
738 #ifdef QN_CHECKS
739 if (len > ETHER_MAX_LEN || len < ETHER_HDR_SIZE) {
740 log(LOG_WARNING,
741 "%s: received a %s packet? (%u bytes)\n",
742 sc->sc_dev.dv_xname,
743 len < ETHER_HDR_SIZE ? "partial" : "big", len);
744 ++sc->sc_ethercom.ec_if.if_ierrors;
745 continue;
746 }
747 #endif
748 #ifdef QN_CHECKS
749 if (len < ETHER_MIN_LEN)
750 log(LOG_WARNING,
751 "%s: received a short packet? (%u bytes)\n",
752 sc->sc_dev.dv_xname, len);
753 #endif
754
755 /* Read the packet. */
756 qn_get_packet(sc, len);
757
758 ++sc->sc_ethercom.ec_if.if_ipackets;
759 }
760
761 #ifdef QN_DEBUG
762 /* This print just to see whether MAX_PACKETS is large enough. */
763 if (i == MAX_PACKETS)
764 log(LOG_INFO, "used all the %d loops\n", MAX_PACKETS);
765 #endif
766 }
767
768 /*
769 * Our interrupt routine
770 */
771 int
772 qnintr(arg)
773 void *arg;
774 {
775 struct qn_softc *sc = arg;
776 u_short tint, rint, tintmask;
777 char return_tintmask = 0;
778
779 /*
780 * If the driver has not been initialized, just return immediately.
781 * This also happens if there is no QuickNet board present.
782 */
783 if (sc->sc_base == NULL)
784 return (0);
785
786 /* Get interrupt statuses and masks. */
787 rint = (*sc->nic_r_status) & NIC_R_MASK;
788 tintmask = *sc->nic_t_mask;
789 tint = (*sc->nic_t_status) & tintmask;
790 if (tint == 0 && rint == 0)
791 return (0);
792
793 /* Disable interrupts so that we won't miss anything. */
794 *sc->nic_r_mask = CLEAR_R_MASK;
795 *sc->nic_t_mask = CLEAR_T_MASK;
796
797 /*
798 * Handle transmitter interrupts. Some of them are not asked for
799 * but do happen, anyway.
800 */
801
802 if (tint != 0) {
803 /* Clear transmit interrupt status. */
804 *sc->nic_t_status = CLEAR_T_ERR;
805
806 if (sc->transmit_pending && (tint & T_TMT_OK)) {
807 sc->transmit_pending = 0;
808 /*
809 * Update total number of successfully
810 * transmitted packets.
811 */
812 sc->sc_ethercom.ec_if.if_opackets++;
813 }
814
815 if (tint & T_SIXTEEN_COL) {
816 /*
817 * 16 collision (i.e., packet lost).
818 */
819 log(LOG_INFO, "qn: 16 collision - packet lost\n");
820 #ifdef QN_DEBUG1
821 qn_dump(sc);
822 #endif
823 sc->sc_ethercom.ec_if.if_oerrors++;
824 sc->sc_ethercom.ec_if.if_collisions += 16;
825 sc->transmit_pending = 0;
826 }
827
828 if (sc->transmit_pending) {
829 log(LOG_INFO, "qn:still pending...\n");
830
831 /* Must return transmission interrupt mask. */
832 return_tintmask = 1;
833 } else {
834 sc->sc_ethercom.ec_if.if_flags &= ~IFF_OACTIVE;
835
836 /* Clear watchdog timer. */
837 sc->sc_ethercom.ec_if.if_timer = 0;
838 }
839 } else
840 return_tintmask = 1;
841
842 /*
843 * Handle receiver interrupts.
844 */
845 if (rint != 0)
846 qn_rint(sc, rint);
847
848 if ((sc->sc_ethercom.ec_if.if_flags & IFF_OACTIVE) == 0)
849 qnstart(&sc->sc_ethercom.ec_if);
850 else if (return_tintmask == 1)
851 *sc->nic_t_mask = tintmask;
852
853 /* Set receive interrupt mask back. */
854 *sc->nic_r_mask = NIC_R_MASK;
855
856 return (1);
857 }
858
859 /*
860 * Process an ioctl request. This code needs some work - it looks pretty ugly.
861 * I somehow think that this is quite a common excuse... ;-)
862 */
863 int
864 qnioctl(ifp, command, data)
865 register struct ifnet *ifp;
866 u_long command;
867 caddr_t data;
868 {
869 struct qn_softc *sc = ifp->if_softc;
870 register struct ifaddr *ifa = (struct ifaddr *)data;
871 #if 0
872 struct ifreg *ifr = (struct ifreg *)data;
873 #endif
874 int s, error = 0;
875
876 s = splnet();
877
878 switch (command) {
879
880 case SIOCSIFADDR:
881 ifp->if_flags |= IFF_UP;
882
883 switch (ifa->ifa_addr->sa_family) {
884 #ifdef INET
885 case AF_INET:
886 qnstop(sc);
887 qninit(sc);
888 arp_ifinit(ifp, ifa);
889 break;
890 #endif
891 #ifdef NS
892 case AF_NS:
893 {
894 register struct ns_addr *ina = &(IA_SNS(ifa)->sns_addr);
895
896 if (ns_nullhost(*ina))
897 ina->x_host =
898 *(union ns_host *)LLADDR(ifp->if_sadl);
899 else
900 bcopy(ina->x_host.c_host,
901 LLADDR(ifp->if_sadl), ETHER_ADDR_LEN);
902 qnstop(sc);
903 qninit(sc);
904 break;
905 }
906 #endif
907 default:
908 log(LOG_INFO, "qn:sa_family:default (not tested)\n");
909 qnstop(sc);
910 qninit(sc);
911 break;
912 }
913 break;
914
915 case SIOCSIFFLAGS:
916 if ((ifp->if_flags & IFF_UP) == 0 &&
917 (ifp->if_flags & IFF_RUNNING) != 0) {
918 /*
919 * If interface is marked down and it is running, then
920 * stop it.
921 */
922 #ifdef QN_DEBUG1
923 qn_dump(sc);
924 #endif
925 qnstop(sc);
926 ifp->if_flags &= ~IFF_RUNNING;
927 } else if ((ifp->if_flags & IFF_UP) != 0 &&
928 (ifp->if_flags & IFF_RUNNING) == 0) {
929 /*
930 * If interface is marked up and it is stopped, then
931 * start it.
932 */
933 qninit(sc);
934 } else {
935 /*
936 * Something else... we won't do anything so we won't
937 * break anything (hope so).
938 */
939 #ifdef QN_DEBUG1
940 log(LOG_INFO, "Else branch...\n");
941 #endif
942 }
943 break;
944
945 case SIOCADDMULTI:
946 case SIOCDELMULTI:
947 log(LOG_INFO, "qnioctl: multicast not done yet\n");
948 #if 0
949 error = (command == SIOCADDMULTI) ?
950 ether_addmulti(ifr, &sc->sc_ethercom) :
951 ether_delmulti(ifr, &sc->sc_ethercom);
952
953 if (error == ENETRESET) {
954 /*
955 * Multicast list has changed; set the hardware filter
956 * accordingly.
957 */
958 log(LOG_INFO, "qnioctl: multicast not done yet\n");
959 error = 0;
960 }
961 #else
962 error = EINVAL;
963 #endif
964 break;
965
966 default:
967 log(LOG_INFO, "qnioctl: default\n");
968 error = EINVAL;
969 }
970
971 splx(s);
972 return (error);
973 }
974
975 /*
976 * Dump some register information.
977 */
978 #ifdef QN_DEBUG1
979 static void
980 qn_dump(sc)
981 struct qn_softc *sc;
982 {
983
984 log(LOG_INFO, "t_status : %04x\n", *sc->nic_t_status);
985 log(LOG_INFO, "t_mask : %04x\n", *sc->nic_t_mask);
986 log(LOG_INFO, "t_mode : %04x\n", *sc->nic_t_mode);
987 log(LOG_INFO, "r_status : %04x\n", *sc->nic_r_status);
988 log(LOG_INFO, "r_mask : %04x\n", *sc->nic_r_mask);
989 log(LOG_INFO, "r_mode : %04x\n", *sc->nic_r_mode);
990 log(LOG_INFO, "pending : %02x\n", sc->transmit_pending);
991 log(LOG_INFO, "if_flags : %04x\n", sc->sc_ethercom.ec_if.if_flags);
992 }
993 #endif
994
995 #endif /* NQN > 0 */
996