Deprecate MCLGET() in favor of m_getcl() or m_getl() in order to
[dragonfly.git] / sys / dev / netif / ar / if_ar.c
1 /*-
2  * Copyright (c) 1995 - 2001 John Hay.  All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  * 3. Neither the name of the author nor the names of any co-contributors
13  *    may be used to endorse or promote products derived from this software
14  *    without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY John Hay ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL John Hay BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $FreeBSD: src/sys/dev/ar/if_ar.c,v 1.66 2005/01/06 01:42:28 imp Exp $
29  * $DragonFly: src/sys/dev/netif/ar/if_ar.c,v 1.15 2005/06/11 04:26:53 hsu Exp $
30  */
31
32 /*
33  * Programming assumptions and other issues.
34  *
35  * The descriptors of a DMA channel will fit in a 16K memory window.
36  *
37  * The buffers of a transmit DMA channel will fit in a 16K memory window.
38  *
39  * Only the ISA bus cards with X.21 and V.35 is tested.
40  *
41  * When interface is going up, handshaking is set and it is only cleared
42  * when the interface is down'ed.
43  *
44  * There should be a way to set/reset Raw HDLC/PPP, Loopback, DCE/DTE,
45  * internal/external clock, etc.....
46  */
47
48 #include "opt_netgraph.h"
49
50 #include <sys/param.h>
51 #include <sys/systm.h>
52 #include <sys/kernel.h>
53 #include <sys/malloc.h>
54 #include <sys/mbuf.h>
55 #include <sys/socket.h>
56 #include <sys/sockio.h>
57 #include <sys/module.h>
58 #include <sys/bus.h>
59 #include <machine/bus.h>
60 #include <machine/resource.h>
61 #include <machine/bus_pio.h>
62 #include <machine/bus_memio.h>
63 #include <sys/rman.h>
64
65 #include <net/if.h>
66 #ifdef NETGRAPH
67 #include <netgraph/ng_message.h>
68 #include <netgraph/netgraph.h>
69 #include <sys/syslog.h>
70 #include <dev/netif/ar/if_ar.h>
71 #else /* NETGRAPH */
72 #include <net/sppp/if_sppp.h>
73 #include <net/bpf.h>
74 #endif /* NETGRAPH */
75
76 #include <machine/md_var.h>
77
78 #include <dev/netif/ic_layer/hd64570.h>
79 #include <dev/netif/ar/if_arregs.h>
80
81 #ifdef TRACE
82 #define TRC(x)               x
83 #else
84 #define TRC(x)
85 #endif
86
87 #define TRCL(x)              x
88
89 #define PPP_HEADER_LEN       4
90
91 devclass_t ar_devclass;
92
93 struct ar_softc {
94 #ifndef NETGRAPH
95         struct sppp ifsppp;
96 #endif /* NETGRAPH */
97         int unit;            /* With regards to all ar devices */
98         int subunit;         /* With regards to this card */
99         struct ar_hardc *hc;
100
101         struct buf_block {
102                 u_int txdesc;        /* On card address */
103                 u_int txstart;       /* On card address */
104                 u_int txend;         /* On card address */
105                 u_int txtail;        /* Index of first unused buffer */
106                 u_int txmax;         /* number of usable buffers/descriptors */
107                 u_int txeda;         /* Error descriptor addresses */
108         }block[AR_TX_BLOCKS];
109
110         char  xmit_busy;     /* Transmitter is busy */
111         char  txb_inuse;     /* Number of tx blocks currently in use */
112         u_char txb_new;      /* Index to where new buffer will be added */
113         u_char txb_next_tx;  /* Index to next block ready to tx */
114
115         u_int rxdesc;        /* On card address */
116         u_int rxstart;       /* On card address */
117         u_int rxend;         /* On card address */
118         u_int rxhind;        /* Index to the head of the rx buffers. */
119         u_int rxmax;         /* number of usable buffers/descriptors */
120
121         int scano;
122         int scachan;
123         sca_regs *sca;
124 #ifdef NETGRAPH
125         int     running;        /* something is attached so we are running */
126         int     dcd;            /* do we have dcd? */
127         /* ---netgraph bits --- */
128         char            nodename[NG_NODELEN + 1]; /* store our node name */
129         int             datahooks;      /* number of data hooks attached */
130         node_p          node;           /* netgraph node */
131         hook_p          hook;           /* data hook */
132         hook_p          debug_hook;
133         struct ifqueue  xmitq_hipri;    /* hi-priority transmit queue */
134         struct ifqueue  xmitq;          /* transmit queue */
135         int             flags;          /* state */
136 #define SCF_RUNNING     0x01            /* board is active */
137 #define SCF_OACTIVE     0x02            /* output is active */
138         int             out_dog;        /* watchdog cycles output count-down */
139         struct callout  timer;          /* watchdog timer */
140         u_long          inbytes, outbytes;      /* stats */
141         u_long          lastinbytes, lastoutbytes; /* a second ago */
142         u_long          inrate, outrate;        /* highest rate seen */
143         u_long          inlast;         /* last input N secs ago */
144         u_long          out_deficit;    /* output since last input */
145         u_long          oerrors, ierrors[6];
146         u_long          opackets, ipackets;
147 #endif /* NETGRAPH */
148 };
149
150 static int      next_ar_unit = 0;
151
152 #ifdef NETGRAPH
153 #define DOG_HOLDOFF     6       /* dog holds off for 6 secs */
154 #define QUITE_A_WHILE   300     /* 5 MINUTES */
155 #define LOTS_OF_PACKETS 100
156 #endif /* NETGRAPH */
157
158 /*
159  * This translate from irq numbers to
160  * the value that the arnet card needs
161  * in the lower part of the AR_INT_SEL
162  * register.
163  */
164 static int irqtable[16] = {
165         0,      /*  0 */
166         0,      /*  1 */
167         0,      /*  2 */
168         1,      /*  3 */
169         0,      /*  4 */
170         2,      /*  5 */
171         0,      /*  6 */
172         3,      /*  7 */
173         0,      /*  8 */
174         0,      /*  9 */
175         4,      /* 10 */
176         5,      /* 11 */
177         6,      /* 12 */
178         0,      /* 13 */
179         0,      /* 14 */
180         7       /* 15 */
181 };
182
183 #ifndef NETGRAPH
184 DECLARE_DUMMY_MODULE(if_ar);
185 MODULE_DEPEND(if_ar, sppp, 1, 1, 1);
186 #else
187 MODULE_DEPEND(ng_sync_ar, netgraph, 1, 1, 1);
188 #endif
189
190 static void arintr(void *arg);
191 static void ar_xmit(struct ar_softc *sc);
192 #ifndef NETGRAPH
193 static void arstart(struct ifnet *ifp);
194 static int arioctl(struct ifnet *ifp, u_long cmd, caddr_t data, struct ucred *);
195 static void arwatchdog(struct ifnet *ifp);
196 #else   /* NETGRAPH */
197 static void arstart(struct ar_softc *sc);
198 static void arwatchdog(struct ar_softc *sc);
199 #endif  /* NETGRAPH */
200 static int ar_packet_avail(struct ar_softc *sc, int *len, u_char *rxstat);
201 static void ar_copy_rxbuf(struct mbuf *m, struct ar_softc *sc, int len);
202 static void ar_eat_packet(struct ar_softc *sc, int single);
203 static void ar_get_packets(struct ar_softc *sc);
204
205 static int ar_read_pim_iface(volatile struct ar_hardc *hc, int channel);
206 static void ar_up(struct ar_softc *sc);
207 static void ar_down(struct ar_softc *sc);
208 static void arc_init(struct ar_hardc *hc);
209 static void ar_init_sca(struct ar_hardc *hc, int scano);
210 static void ar_init_msci(struct ar_softc *sc);
211 static void ar_init_rx_dmac(struct ar_softc *sc);
212 static void ar_init_tx_dmac(struct ar_softc *sc);
213 static void ar_dmac_intr(struct ar_hardc *hc, int scano, u_char isr);
214 static void ar_msci_intr(struct ar_hardc *hc, int scano, u_char isr);
215 static void ar_timer_intr(struct ar_hardc *hc, int scano, u_char isr);
216
217 #ifdef  NETGRAPH
218 static  void    ngar_watchdog_frame(void * arg);
219 static  void    ngar_init(void* ignored);
220
221 static ng_constructor_t ngar_constructor;
222 static ng_rcvmsg_t      ngar_rcvmsg;
223 static ng_shutdown_t    ngar_shutdown;
224 static ng_newhook_t     ngar_newhook;
225 /*static ng_findhook_t  ngar_findhook; */
226 static ng_connect_t     ngar_connect;
227 static ng_rcvdata_t     ngar_rcvdata;
228 static ng_disconnect_t  ngar_disconnect;
229         
230 static struct ng_type typestruct = {
231         NG_VERSION,
232         NG_AR_NODE_TYPE,
233         NULL,
234         ngar_constructor,
235         ngar_rcvmsg,
236         ngar_shutdown,
237         ngar_newhook,
238         NULL,
239         ngar_connect,
240         ngar_rcvdata,
241         ngar_rcvdata,
242         ngar_disconnect,
243         NULL
244 };
245
246 static int      ngar_done_init = 0;
247 #endif /* NETGRAPH */
248
249 int
250 ar_attach(device_t device)
251 {
252         struct ar_hardc *hc;
253         struct ar_softc *sc;
254 #ifndef NETGRAPH
255         struct ifnet *ifp;
256         char *iface;
257 #endif  /* NETGRAPH */
258         int unit;
259         int error;
260
261         hc = (struct ar_hardc *)device_get_softc(device);
262
263         printf("arc%d: %uK RAM, %u ports, rev %u.\n",
264                 hc->cunit,
265                 hc->memsize/1024,
266                 hc->numports,
267                 hc->revision);
268         
269         arc_init(hc);
270
271         error = BUS_SETUP_INTR(device_get_parent(device), device, hc->res_irq,
272                                INTR_TYPE_NET, arintr, hc,
273                                &hc->intr_cookie, NULL);
274         if (error)
275                 return (1);
276
277         sc = hc->sc;
278
279         for(unit=0;unit<hc->numports;unit+=NCHAN)
280                 ar_init_sca(hc, unit / NCHAN);
281
282         /*
283          * Now configure each port on the card.
284          */
285         for(unit=0;unit<hc->numports;sc++,unit++) {
286                 sc->hc = hc;
287                 sc->subunit = unit;
288                 sc->unit = next_ar_unit;
289                 next_ar_unit++;
290                 sc->scano = unit / NCHAN;
291                 sc->scachan = unit%NCHAN;
292
293                 ar_init_rx_dmac(sc);
294                 ar_init_tx_dmac(sc);
295                 ar_init_msci(sc);
296
297 #ifndef NETGRAPH
298                 ifp = &sc->ifsppp.pp_if;
299
300                 ifp->if_softc = sc;
301                 if_initname(ifp, device_get_name(device), sc->unit);
302                 ifp->if_mtu = PP_MTU;
303                 ifp->if_flags = IFF_POINTOPOINT | IFF_MULTICAST;
304                 ifp->if_ioctl = arioctl;
305                 ifp->if_start = arstart;
306                 ifp->if_watchdog = arwatchdog;
307
308                 sc->ifsppp.pp_flags = PP_KEEPALIVE;
309
310                 switch(hc->interface[unit]) {
311                 default: iface = "UNKNOWN"; break;
312                 case AR_IFACE_EIA_232: iface = "EIA-232"; break;
313                 case AR_IFACE_V_35: iface = "EIA-232 or V.35"; break;
314                 case AR_IFACE_EIA_530: iface = "EIA-530"; break;
315                 case AR_IFACE_X_21: iface = "X.21"; break;
316                 case AR_IFACE_COMBO: iface = "COMBO X.21 / EIA-530"; break;
317                 }
318
319                 printf("ar%d: Adapter %d, port %d, interface %s.\n",
320                         sc->unit,
321                         hc->cunit,
322                         sc->subunit,
323                         iface);
324
325                 sppp_attach((struct ifnet *)&sc->ifsppp);
326                 if_attach(ifp);
327
328                 bpfattach(ifp, DLT_PPP, PPP_HEADER_LEN);
329 #else   /* NETGRAPH */
330                 /*
331                  * we have found a node, make sure our 'type' is availabe.
332                  */
333                 if (ngar_done_init == 0) ngar_init(NULL);
334                 if (ng_make_node_common(&typestruct, &sc->node) != 0)
335                         return (1);
336                 sprintf(sc->nodename, "%s%d", NG_AR_NODE_TYPE, sc->unit);
337                 if (ng_name_node(sc->node, sc->nodename)) {
338                         NG_NODE_UNREF(sc->node); /* drop it again */
339                         return (1);
340                 }
341                 NG_NODE_SET_PRIVATE(sc->node, sc);
342                 callout_init(&sc->timer);
343                 sc->xmitq.ifq_maxlen = IFQ_MAXLEN;
344                 sc->xmitq_hipri.ifq_maxlen = IFQ_MAXLEN;
345                 sc->running = 0;
346 #endif  /* NETGRAPH */
347         }
348
349         if(hc->bustype == AR_BUS_ISA)
350                 ARC_SET_OFF(hc);
351
352         return (0);
353 }
354
355 int
356 ar_detach(device_t device)
357 {
358         device_t parent = device_get_parent(device);
359         struct ar_hardc *hc = device_get_softc(device);
360
361         if (hc->intr_cookie != NULL) {
362                 if (BUS_TEARDOWN_INTR(parent, device,
363                         hc->res_irq, hc->intr_cookie) != 0) {
364                                 printf("intr teardown failed.. continuing\n");
365                 }
366                 hc->intr_cookie = NULL;
367         }
368
369         /*
370          * deallocate any system resources we may have
371          * allocated on behalf of this driver.
372          */
373         FREE(hc->sc, M_DEVBUF);
374         hc->sc = NULL;
375         hc->mem_start = NULL;
376         return (ar_deallocate_resources(device));
377 }
378
379 int
380 ar_allocate_ioport(device_t device, int rid, u_long size)
381 {
382         struct ar_hardc *hc = device_get_softc(device);
383
384         hc->rid_ioport = rid;
385         hc->res_ioport = bus_alloc_resource(device, SYS_RES_IOPORT,
386                         &hc->rid_ioport, 0ul, ~0ul, size, RF_ACTIVE);
387         if (hc->res_ioport == NULL) {
388                 goto errexit;
389         }
390         hc->bt = rman_get_bustag(hc->res_ioport);
391         hc->bh = rman_get_bushandle(hc->res_ioport);
392
393         return (0);
394
395 errexit:
396         ar_deallocate_resources(device);
397         return (ENXIO);
398 }
399
400 int
401 ar_allocate_irq(device_t device, int rid, u_long size)
402 {
403         struct ar_hardc *hc = device_get_softc(device);
404
405         hc->rid_irq = rid;
406         hc->res_irq = bus_alloc_resource_any(device, SYS_RES_IRQ,
407                         &hc->rid_irq, RF_SHAREABLE|RF_ACTIVE);
408         if (hc->res_irq == NULL) {
409                 goto errexit;
410         }
411         return (0);
412
413 errexit:
414         ar_deallocate_resources(device);
415         return (ENXIO);
416 }
417
418 int
419 ar_allocate_memory(device_t device, int rid, u_long size)
420 {
421         struct ar_hardc *hc = device_get_softc(device);
422
423         hc->rid_memory = rid;
424         hc->res_memory = bus_alloc_resource(device, SYS_RES_MEMORY,
425                         &hc->rid_memory, 0ul, ~0ul, size, RF_ACTIVE);
426         if (hc->res_memory == NULL) {
427                 goto errexit;
428         }
429         return (0);
430
431 errexit:
432         ar_deallocate_resources(device);
433         return (ENXIO);
434 }
435
436 int
437 ar_allocate_plx_memory(device_t device, int rid, u_long size)
438 {
439         struct ar_hardc *hc = device_get_softc(device);
440
441         hc->rid_plx_memory = rid;
442         hc->res_plx_memory = bus_alloc_resource(device, SYS_RES_MEMORY,
443                         &hc->rid_plx_memory, 0ul, ~0ul, size, RF_ACTIVE);
444         if (hc->res_plx_memory == NULL) {
445                 goto errexit;
446         }
447         return (0);
448
449 errexit:
450         ar_deallocate_resources(device);
451         return (ENXIO);
452 }
453
454 int
455 ar_deallocate_resources(device_t device)
456 {
457         struct ar_hardc *hc = device_get_softc(device);
458
459         if (hc->res_irq != 0) {
460                 bus_deactivate_resource(device, SYS_RES_IRQ,
461                         hc->rid_irq, hc->res_irq);
462                 bus_release_resource(device, SYS_RES_IRQ,
463                         hc->rid_irq, hc->res_irq);
464                 hc->res_irq = 0;
465         }
466         if (hc->res_ioport != 0) {
467                 bus_deactivate_resource(device, SYS_RES_IOPORT,
468                         hc->rid_ioport, hc->res_ioport);
469                 bus_release_resource(device, SYS_RES_IOPORT,
470                         hc->rid_ioport, hc->res_ioport);
471                 hc->res_ioport = 0;
472         }
473         if (hc->res_memory != 0) {
474                 bus_deactivate_resource(device, SYS_RES_MEMORY,
475                         hc->rid_memory, hc->res_memory);
476                 bus_release_resource(device, SYS_RES_MEMORY,
477                         hc->rid_memory, hc->res_memory);
478                 hc->res_memory = 0;
479         }
480         if (hc->res_plx_memory != 0) {
481                 bus_deactivate_resource(device, SYS_RES_MEMORY,
482                         hc->rid_plx_memory, hc->res_plx_memory);
483                 bus_release_resource(device, SYS_RES_MEMORY,
484                         hc->rid_plx_memory, hc->res_plx_memory);
485                 hc->res_plx_memory = 0;
486         }
487         return (0);
488 }
489
490 /*
491  * First figure out which SCA gave the interrupt.
492  * Process it.
493  * See if there is other interrupts pending.
494  * Repeat until there is no more interrupts.
495  */
496 static void
497 arintr(void *arg)
498 {
499         struct ar_hardc *hc = (struct ar_hardc *)arg;
500         sca_regs *sca;
501         u_char isr0, isr1, isr2, arisr;
502         int scano;
503
504         /* XXX Use the PCI interrupt score board register later */
505         if(hc->bustype == AR_BUS_PCI)
506                 arisr = hc->orbase[AR_ISTAT * 4];
507         else
508                 arisr = ar_inb(hc, AR_ISTAT);
509
510         while(arisr & AR_BD_INT) {
511                 TRC(printf("arisr = %x\n", arisr));
512                 if(arisr & AR_INT_0)
513                         scano = 0;
514                 else if(arisr & AR_INT_1)
515                         scano = 1;
516                 else {
517                         /* XXX Oops this shouldn't happen. */
518                         printf("arc%d: Interrupted with no interrupt.\n",
519                                 hc->cunit);
520                         return;
521                 }
522                 sca = hc->sca[scano];
523
524                 if(hc->bustype == AR_BUS_ISA)
525                         ARC_SET_SCA(hc, scano);
526
527                 isr0 = sca->isr0;
528                 isr1 = sca->isr1;
529                 isr2 = sca->isr2;
530
531                 TRC(printf("arc%d: ARINTR isr0 %x, isr1 %x, isr2 %x\n",
532                         hc->cunit,
533                         isr0,
534                         isr1,
535                         isr2));
536                 if(isr0)
537                         ar_msci_intr(hc, scano, isr0);
538
539                 if(isr1)
540                         ar_dmac_intr(hc, scano, isr1);
541
542                 if(isr2)
543                         ar_timer_intr(hc, scano, isr2);
544
545                 /*
546                  * Proccess the second sca's interrupt if available.
547                  * Else see if there are any new interrupts.
548                  */
549                 if((arisr & AR_INT_0) && (arisr & AR_INT_1))
550                         arisr &= ~AR_INT_0;
551                 else {
552                         if(hc->bustype == AR_BUS_PCI)
553                                 arisr = hc->orbase[AR_ISTAT * 4];
554                         else
555                                 arisr = ar_inb(hc, AR_ISTAT);
556                 }
557         }
558
559         if(hc->bustype == AR_BUS_ISA)
560                 ARC_SET_OFF(hc);
561 }
562
563
564 /*
565  * This will only start the transmitter. It is assumed that the data
566  * is already there. It is normally called from arstart() or ar_dmac_intr().
567  *
568  */
569 static void
570 ar_xmit(struct ar_softc *sc)
571 {
572 #ifndef NETGRAPH
573         struct ifnet *ifp;
574 #endif /* NETGRAPH */
575         dmac_channel *dmac;
576
577 #ifndef NETGRAPH
578         ifp = &sc->ifsppp.pp_if;
579 #endif /* NETGRAPH */
580         dmac = &sc->sca->dmac[DMAC_TXCH(sc->scachan)];
581
582         if(sc->hc->bustype == AR_BUS_ISA)
583                 ARC_SET_SCA(sc->hc, sc->scano);
584         dmac->cda = (u_short)(sc->block[sc->txb_next_tx].txdesc & 0xffff);
585
586         dmac->eda = (u_short)(sc->block[sc->txb_next_tx].txeda & 0xffff);
587         dmac->dsr = SCA_DSR_DE;
588
589         sc->xmit_busy = 1;
590
591         sc->txb_next_tx++;
592         if(sc->txb_next_tx == AR_TX_BLOCKS)
593                 sc->txb_next_tx = 0;
594
595 #ifndef NETGRAPH
596         ifp->if_timer = 2; /* Value in seconds. */
597 #else   /* NETGRAPH */
598         sc->out_dog = DOG_HOLDOFF;      /* give ourself some breathing space*/
599 #endif  /* NETGRAPH */
600         if(sc->hc->bustype == AR_BUS_ISA)
601                 ARC_SET_OFF(sc->hc);
602 }
603
604 /*
605  * This function will be called from the upper level when a user add a
606  * packet to be send, and from the interrupt handler after a finished
607  * transmit.
608  *
609  * NOTE: it should run at spl_imp().
610  *
611  * This function only place the data in the oncard buffers. It does not
612  * start the transmition. ar_xmit() does that.
613  *
614  * Transmitter idle state is indicated by the IFF_OACTIVE flag. The function
615  * that clears that should ensure that the transmitter and its DMA is
616  * in a "good" idle state.
617  */
618 #ifndef NETGRAPH
619 static void
620 arstart(struct ifnet *ifp)
621 {
622         struct ar_softc *sc = ifp->if_softc;
623 #else   /* NETGRAPH */
624 static void
625 arstart(struct ar_softc *sc)
626 {
627 #endif  /* NETGRAPH */
628         int i, len, tlen;
629         struct mbuf *mtx;
630         u_char *txdata;
631         sca_descriptor *txdesc;
632         struct buf_block *blkp;
633
634 #ifndef NETGRAPH
635         if(!(ifp->if_flags & IFF_RUNNING))
636                 return;
637 #else   /* NETGRAPH */
638 /* XXX */
639 #endif  /* NETGRAPH */
640   
641 top_arstart:
642
643         /*
644          * See if we have space for more packets.
645          */
646         if(sc->txb_inuse == AR_TX_BLOCKS) {
647 #ifndef NETGRAPH
648                 ifp->if_flags |= IFF_OACTIVE;   /* yes, mark active */
649 #else   /* NETGRAPH */
650 /*XXX*/         /*ifp->if_flags |= IFF_OACTIVE;*/       /* yes, mark active */
651 #endif /* NETGRAPH */
652                 return;
653         }
654
655 #ifndef NETGRAPH
656         mtx = sppp_dequeue(ifp);
657 #else   /* NETGRAPH */
658         IF_DEQUEUE(&sc->xmitq_hipri, mtx);
659         if (mtx == NULL) {
660                 IF_DEQUEUE(&sc->xmitq, mtx);
661         }
662 #endif /* NETGRAPH */
663         if(!mtx)
664                 return;
665
666         /*
667          * It is OK to set the memory window outside the loop because
668          * all tx buffers and descriptors are assumed to be in the same
669          * 16K window.
670          */
671         if(sc->hc->bustype == AR_BUS_ISA)
672                 ARC_SET_MEM(sc->hc, sc->block[0].txdesc);
673
674         /*
675          * We stay in this loop until there is nothing in the
676          * TX queue left or the tx buffer is full.
677          */
678         i = 0;
679         blkp = &sc->block[sc->txb_new];
680         txdesc = (sca_descriptor *)
681                 (sc->hc->mem_start + (blkp->txdesc & sc->hc->winmsk));
682         txdata = (u_char *)(sc->hc->mem_start + (blkp->txstart & sc->hc->winmsk));
683         for(;;) {
684                 len = mtx->m_pkthdr.len;
685
686                 TRC(printf("ar%d: ARstart len %u\n", sc->unit, len));
687
688                 /*
689                  * We can do this because the tx buffers don't wrap.
690                  */
691                 m_copydata(mtx, 0, len, txdata);
692                 tlen = len;
693                 while(tlen > AR_BUF_SIZ) {
694                         txdesc->stat = 0;
695                         txdesc->len = AR_BUF_SIZ;
696                         tlen -= AR_BUF_SIZ;
697                         txdesc++;
698                         txdata += AR_BUF_SIZ;
699                         i++;
700                 }
701                 /* XXX Move into the loop? */
702                 txdesc->stat = SCA_DESC_EOM;
703                 txdesc->len = tlen;
704                 txdesc++;
705                 txdata += AR_BUF_SIZ;
706                 i++;
707
708 #ifndef NETGRAPH
709                 BPF_MTAP(ifp, mtx);
710                 m_freem(mtx);
711                 ++sc->ifsppp.pp_if.if_opackets;
712 #else   /* NETGRAPH */
713                 m_freem(mtx);
714                 sc->outbytes += len;
715                 ++sc->opackets;
716 #endif  /* NETGRAPH */
717
718                 /*
719                  * Check if we have space for another mbuf.
720                  * XXX This is hardcoded. A packet won't be larger
721                  * than 3 buffers (3 x 512).
722                  */
723                 if((i + 3) >= blkp->txmax)
724                         break;
725
726 #ifndef NETGRAPH
727                 mtx = sppp_dequeue(ifp);
728 #else   /* NETGRAPH */
729                 IF_DEQUEUE(&sc->xmitq_hipri, mtx);
730                 if (mtx == NULL) {
731                         IF_DEQUEUE(&sc->xmitq, mtx);
732                 }
733 #endif /* NETGRAPH */
734                 if(!mtx)
735                         break;
736         }
737
738         blkp->txtail = i;
739
740         /*
741          * Mark the last descriptor, so that the SCA know where
742          * to stop.
743          */
744         txdesc--;
745         txdesc->stat |= SCA_DESC_EOT;
746
747         txdesc = (sca_descriptor *)blkp->txdesc;
748         blkp->txeda = (u_short)((u_int)&txdesc[i]);
749
750 #if 0
751         printf("ARstart: %p desc->cp %x\n", &txdesc->cp, txdesc->cp);
752         printf("ARstart: %p desc->bp %x\n", &txdesc->bp, txdesc->bp);
753         printf("ARstart: %p desc->bpb %x\n", &txdesc->bpb, txdesc->bpb);
754         printf("ARstart: %p desc->len %x\n", &txdesc->len, txdesc->len);
755         printf("ARstart: %p desc->stat %x\n", &txdesc->stat, txdesc->stat);
756 #endif
757
758         sc->txb_inuse++;
759         sc->txb_new++;
760         if(sc->txb_new == AR_TX_BLOCKS)
761                 sc->txb_new = 0;
762
763         if(sc->xmit_busy == 0)
764                 ar_xmit(sc);
765
766         if(sc->hc->bustype == AR_BUS_ISA)
767                 ARC_SET_OFF(sc->hc);
768
769         goto top_arstart;
770 }
771
772 #ifndef NETGRAPH
773 static int
774 arioctl(struct ifnet *ifp, u_long cmd, caddr_t data, struct ucred *cr)
775 {
776         int s, error;
777         int was_up, should_be_up;
778         struct ar_softc *sc = ifp->if_softc;
779
780         TRC(if_printf(ifp, "arioctl.\n");)
781
782         was_up = ifp->if_flags & IFF_RUNNING;
783
784         error = sppp_ioctl(ifp, cmd, data);
785         TRC(if_printf(ifp, "ioctl: ifsppp.pp_flags = %x, if_flags %x.\n", 
786                 ((struct sppp *)ifp)->pp_flags, ifp->if_flags);)
787         if(error)
788                 return (error);
789
790         if((cmd != SIOCSIFFLAGS) && cmd != (SIOCSIFADDR))
791                 return (0);
792
793         TRC(if_printf(ifp, "arioctl %s.\n",
794                 (cmd == SIOCSIFFLAGS) ? "SIOCSIFFLAGS" : "SIOCSIFADDR");)
795
796         s = splimp();
797         should_be_up = ifp->if_flags & IFF_RUNNING;
798
799         if(!was_up && should_be_up) {
800                 /* Interface should be up -- start it. */
801                 ar_up(sc);
802                 arstart(ifp);
803                 /* XXX Maybe clear the IFF_UP flag so that the link
804                  * will only go up after sppp lcp and ipcp negotiation.
805                  */
806         } else if(was_up && !should_be_up) {
807                 /* Interface should be down -- stop it. */
808                 ar_down(sc);
809                 sppp_flush(ifp);
810         }
811         splx(s);
812         return (0);
813 }
814 #endif  /* NETGRAPH */
815
816 /*
817  * This is to catch lost tx interrupts.
818  */
819 static void
820 #ifndef NETGRAPH
821 arwatchdog(struct ifnet *ifp)
822 {
823         struct ar_softc *sc = ifp->if_softc;
824 #else   /* NETGRAPH */
825 arwatchdog(struct ar_softc *sc)
826 {
827 #endif  /* NETGRAPH */
828         msci_channel *msci = &sc->sca->msci[sc->scachan];
829
830 #ifndef NETGRAPH
831         if(!(ifp->if_flags & IFF_RUNNING))
832                 return;
833 #endif  /* NETGRAPH */
834
835         if(sc->hc->bustype == AR_BUS_ISA)
836                 ARC_SET_SCA(sc->hc, sc->scano);
837
838         /* XXX if(sc->ifsppp.pp_if.if_flags & IFF_DEBUG) */
839                 printf("ar%d: transmit failed, "
840                         "ST0 %x, ST1 %x, ST3 %x, DSR %x.\n",
841                         sc->unit,
842                         msci->st0,
843                         msci->st1,
844                         msci->st3,
845                         sc->sca->dmac[DMAC_TXCH(sc->scachan)].dsr);
846
847         if(msci->st1 & SCA_ST1_UDRN) {
848                 msci->cmd = SCA_CMD_TXABORT;
849                 msci->cmd = SCA_CMD_TXENABLE;
850                 msci->st1 = SCA_ST1_UDRN;
851         }
852
853         sc->xmit_busy = 0;
854 #ifndef NETGRAPH
855         ifp->if_flags &= ~IFF_OACTIVE;
856 #else   /* NETGRAPH */
857         /* XXX ifp->if_flags &= ~IFF_OACTIVE; */
858 #endif  /* NETGRAPH */
859
860         if(sc->txb_inuse && --sc->txb_inuse)
861                 ar_xmit(sc);
862
863 #ifndef NETGRAPH
864         arstart(ifp);
865 #else   /* NETGRAPH */
866         arstart(sc);
867 #endif  /* NETGRAPH */
868 }
869
870 static void
871 ar_up(struct ar_softc *sc)
872 {
873         sca_regs *sca;
874         msci_channel *msci;
875
876         sca = sc->sca;
877         msci = &sca->msci[sc->scachan];
878
879         TRC(printf("ar%d: sca %p, msci %p, ch %d\n",
880                 sc->unit, sca, msci, sc->scachan));
881
882         /*
883          * Enable transmitter and receiver.
884          * Raise DTR and RTS.
885          * Enable interrupts.
886          */
887         if(sc->hc->bustype == AR_BUS_ISA)
888                 ARC_SET_SCA(sc->hc, sc->scano);
889
890         /* XXX
891          * What about using AUTO mode in msci->md0 ???
892          * And what about CTS/DCD etc... ?
893          */
894         if(sc->hc->handshake & AR_SHSK_RTS)
895                 msci->ctl &= ~SCA_CTL_RTS;
896         if(sc->hc->handshake & AR_SHSK_DTR) {
897                 sc->hc->txc_dtr[sc->scano] &= sc->scachan ? 
898                         ~AR_TXC_DTR_DTR1 : ~AR_TXC_DTR_DTR0;
899                 if(sc->hc->bustype == AR_BUS_PCI)
900                         sc->hc->orbase[sc->hc->txc_dtr_off[sc->scano]] =
901                                 sc->hc->txc_dtr[sc->scano];
902                 else
903                         ar_outb(sc->hc, sc->hc->txc_dtr_off[sc->scano],
904                                 sc->hc->txc_dtr[sc->scano]);
905         }
906
907         if(sc->scachan == 0) {
908                 sca->ier0 |= 0x0F;
909                 sca->ier1 |= 0x0F;
910         } else {
911                 sca->ier0 |= 0xF0;
912                 sca->ier1 |= 0xF0;
913         }
914
915         msci->cmd = SCA_CMD_RXENABLE;
916         if(sc->hc->bustype == AR_BUS_ISA)
917                 ar_inb(sc->hc, AR_ID_5); /* XXX slow it down a bit. */
918         msci->cmd = SCA_CMD_TXENABLE;
919
920         if(sc->hc->bustype == AR_BUS_ISA)
921                 ARC_SET_OFF(sc->hc);
922 #ifdef  NETGRAPH
923         callout_reset(&sc->timer, hz, ngar_watchdog_frame, sc);
924         sc->running = 1;
925 #endif  /* NETGRAPH */
926 }
927
928 static void
929 ar_down(struct ar_softc *sc)
930 {
931         sca_regs *sca;
932         msci_channel *msci;
933
934         sca = sc->sca;
935         msci = &sca->msci[sc->scachan];
936
937 #ifdef  NETGRAPH
938         callout_stop(&sc->timer);
939         sc->running = 0;
940 #endif  /* NETGRAPH */
941         /*
942          * Disable transmitter and receiver.
943          * Lower DTR and RTS.
944          * Disable interrupts.
945          */
946         if(sc->hc->bustype == AR_BUS_ISA)
947                 ARC_SET_SCA(sc->hc, sc->scano);
948         msci->cmd = SCA_CMD_RXDISABLE;
949         if(sc->hc->bustype == AR_BUS_ISA)
950                 ar_inb(sc->hc, AR_ID_5); /* XXX slow it down a bit. */
951         msci->cmd = SCA_CMD_TXDISABLE;
952
953         if(sc->hc->handshake & AR_SHSK_RTS)
954                 msci->ctl |= SCA_CTL_RTS;
955         if(sc->hc->handshake & AR_SHSK_DTR) {
956                 sc->hc->txc_dtr[sc->scano] |= sc->scachan ? 
957                         AR_TXC_DTR_DTR1 : AR_TXC_DTR_DTR0;
958                 if(sc->hc->bustype == AR_BUS_PCI)
959                         sc->hc->orbase[sc->hc->txc_dtr_off[sc->scano]] =
960                                 sc->hc->txc_dtr[sc->scano];
961                 else
962                         ar_outb(sc->hc, sc->hc->txc_dtr_off[sc->scano],
963                                 sc->hc->txc_dtr[sc->scano]);
964         }
965
966         if(sc->scachan == 0) {
967                 sca->ier0 &= ~0x0F;
968                 sca->ier1 &= ~0x0F;
969         } else {
970                 sca->ier0 &= ~0xF0;
971                 sca->ier1 &= ~0xF0;
972         }
973
974         if(sc->hc->bustype == AR_BUS_ISA)
975                 ARC_SET_OFF(sc->hc);
976 }
977
978 static int
979 ar_read_pim_iface(volatile struct ar_hardc *hc, int channel)
980 {
981         int ctype, i, val, x;
982         volatile u_char *pimctrl;
983
984         ctype = 0;
985         val = 0;
986
987         pimctrl = hc->orbase + AR_PIMCTRL;
988
989         /* Reset the PIM */
990         *pimctrl = 0x00;
991         *pimctrl = AR_PIM_STROBE;
992
993         /* Check if there is a PIM */
994         *pimctrl = 0x00;
995         *pimctrl = AR_PIM_READ;
996         x = *pimctrl;
997         TRC(printf("x = %x", x));
998         if(x & AR_PIM_DATA) {
999                 printf("No PIM installed\n");
1000                 return (AR_IFACE_UNKNOWN);
1001         }
1002
1003         x = (x >> 1) & 0x01;
1004         val |= x << 0;
1005
1006         /* Now read the next 15 bits */
1007         for(i = 1; i < 16; i++) {
1008                 *pimctrl = AR_PIM_READ;
1009                 *pimctrl = AR_PIM_READ | AR_PIM_STROBE;
1010                 x = *pimctrl;
1011                 TRC(printf(" %x ", x));
1012                 x = (x >> 1) & 0x01;
1013                 val |= x << i;
1014                 if(i == 8 && (val & 0x000f) == 0x0004) {
1015                         int ii;
1016                         
1017                         /* Start bit */
1018                         *pimctrl = AR_PIM_A2D_DOUT | AR_PIM_A2D_STROBE;
1019                         *pimctrl = AR_PIM_A2D_DOUT;
1020
1021                         /* Mode bit */
1022                         *pimctrl = AR_PIM_A2D_DOUT | AR_PIM_A2D_STROBE;
1023                         *pimctrl = AR_PIM_A2D_DOUT;
1024
1025                         /* Sign bit */
1026                         *pimctrl = AR_PIM_A2D_DOUT | AR_PIM_A2D_STROBE;
1027                         *pimctrl = AR_PIM_A2D_DOUT;
1028
1029                         /* Select channel */
1030                         *pimctrl = AR_PIM_A2D_STROBE | ((channel & 2) << 2);
1031                         *pimctrl = ((channel & 2) << 2);
1032                         *pimctrl = AR_PIM_A2D_STROBE | ((channel & 1) << 3);
1033                         *pimctrl = ((channel & 1) << 3);
1034
1035                         *pimctrl = AR_PIM_A2D_STROBE;
1036
1037                         x = *pimctrl;
1038                         if(x & AR_PIM_DATA)
1039                                 printf("\nOops A2D start bit not zero (%X)\n", x);
1040
1041                         for(ii = 7; ii >= 0; ii--) {
1042                                 *pimctrl = 0x00;
1043                                 *pimctrl = AR_PIM_A2D_STROBE;
1044                                 x = *pimctrl;
1045                                 if(x & AR_PIM_DATA)
1046                                         ctype |= 1 << ii;
1047                         }
1048                 }
1049         }
1050         TRC(printf("\nPIM val %x, ctype %x, %d\n", val, ctype, ctype));
1051         *pimctrl = AR_PIM_MODEG;
1052         *pimctrl = AR_PIM_MODEG | AR_PIM_AUTO_LED;
1053         if(ctype > 255)
1054                 return (AR_IFACE_UNKNOWN);
1055         if(ctype > 239)
1056                 return (AR_IFACE_V_35);
1057         if(ctype > 207)
1058                 return (AR_IFACE_EIA_232);
1059         if(ctype > 178)
1060                 return (AR_IFACE_X_21);
1061         if(ctype > 150)
1062                 return (AR_IFACE_EIA_530);
1063         if(ctype > 25)
1064                 return (AR_IFACE_UNKNOWN);
1065         if(ctype > 7)
1066                 return (AR_IFACE_LOOPBACK);
1067         return (AR_IFACE_UNKNOWN);
1068 }
1069
1070 /*
1071  * Initialize the card, allocate memory for the ar_softc structures
1072  * and fill in the pointers.
1073  */
1074 static void
1075 arc_init(struct ar_hardc *hc)
1076 {
1077         struct ar_softc *sc;
1078         int x;
1079         u_int chanmem;
1080         u_int bufmem;
1081         u_int next;
1082         u_int descneeded;
1083         u_char isr, mar;
1084         u_long memst;
1085
1086         MALLOC(sc, struct ar_softc *, hc->numports * sizeof(struct ar_softc),
1087                 M_DEVBUF, M_WAITOK | M_ZERO);
1088         if (sc == NULL)
1089                 return;
1090         hc->sc = sc;
1091
1092         hc->txc_dtr[0] = AR_TXC_DTR_NOTRESET |
1093                          AR_TXC_DTR_DTR0 | AR_TXC_DTR_DTR1;
1094         hc->txc_dtr[1] = AR_TXC_DTR_DTR0 | AR_TXC_DTR_DTR1;
1095         hc->txc_dtr_off[0] = AR_TXC_DTR0;
1096         hc->txc_dtr_off[1] = AR_TXC_DTR2;
1097         if(hc->bustype == AR_BUS_PCI) {
1098                 hc->txc_dtr_off[0] *= 4;
1099                 hc->txc_dtr_off[1] *= 4;
1100         }
1101
1102         /*
1103          * reset the card and wait at least 1uS.
1104          */
1105         if(hc->bustype == AR_BUS_PCI)
1106                 hc->orbase[AR_TXC_DTR0 * 4] = ~AR_TXC_DTR_NOTRESET &
1107                         hc->txc_dtr[0];
1108         else
1109                 ar_outb(hc, AR_TXC_DTR0, ~AR_TXC_DTR_NOTRESET &
1110                         hc->txc_dtr[0]);
1111         DELAY(2);
1112         if(hc->bustype == AR_BUS_PCI)
1113                 hc->orbase[AR_TXC_DTR0 * 4] = hc->txc_dtr[0];
1114         else
1115                 ar_outb(hc, AR_TXC_DTR0, hc->txc_dtr[0]);
1116
1117         if(hc->bustype == AR_BUS_ISA) {
1118                 /*
1119                  * Configure the card.
1120                  * Mem address, irq, 
1121                  */
1122                 memst = rman_get_start(hc->res_memory);
1123                 mar = memst >> 16;
1124                 isr = irqtable[hc->isa_irq] << 1;
1125                 if(isr == 0)
1126                         printf("ar%d: Warning illegal interrupt %d\n",
1127                                 hc->cunit, hc->isa_irq);
1128                 isr = isr | ((memst & 0xc000) >> 10);
1129
1130                 hc->sca[0] = (sca_regs *)hc->mem_start;
1131                 hc->sca[1] = (sca_regs *)hc->mem_start;
1132
1133                 ar_outb(hc, AR_MEM_SEL, mar);
1134                 ar_outb(hc, AR_INT_SEL, isr | AR_INTS_CEN);
1135         }
1136
1137         if(hc->bustype == AR_BUS_PCI && hc->interface[0] == AR_IFACE_PIM)
1138                 for(x = 0; x < hc->numports; x++)
1139                         hc->interface[x] = ar_read_pim_iface(hc, x);
1140
1141         /*
1142          * Set the TX clock direction and enable TX.
1143          */
1144         for(x=0;x<hc->numports;x++) {
1145                 switch(hc->interface[x]) {
1146                 case AR_IFACE_V_35:
1147                         hc->txc_dtr[x / NCHAN] |= (x % NCHAN == 0) ?
1148                             AR_TXC_DTR_TX0 : AR_TXC_DTR_TX1;
1149                         hc->txc_dtr[x / NCHAN] |= (x % NCHAN == 0) ?
1150                             AR_TXC_DTR_TXCS0 : AR_TXC_DTR_TXCS1;
1151                         break;
1152                 case AR_IFACE_EIA_530:
1153                 case AR_IFACE_COMBO:
1154                 case AR_IFACE_X_21:
1155                         hc->txc_dtr[x / NCHAN] |= (x % NCHAN == 0) ?
1156                             AR_TXC_DTR_TX0 : AR_TXC_DTR_TX1;
1157                         break;
1158                 }
1159         }
1160
1161         if(hc->bustype == AR_BUS_PCI)
1162                 hc->orbase[AR_TXC_DTR0 * 4] = hc->txc_dtr[0];
1163         else
1164                 ar_outb(hc, AR_TXC_DTR0, hc->txc_dtr[0]);
1165         if(hc->numports > NCHAN) {
1166                 if(hc->bustype == AR_BUS_PCI)
1167                         hc->orbase[AR_TXC_DTR2 * 4] = hc->txc_dtr[1];
1168                 else
1169                         ar_outb(hc, AR_TXC_DTR2, hc->txc_dtr[1]);
1170         }
1171
1172         chanmem = hc->memsize / hc->numports;
1173         next = 0;
1174
1175         for(x=0;x<hc->numports;x++, sc++) {
1176                 int blk;
1177
1178                 sc->sca = hc->sca[x / NCHAN];
1179
1180                 for(blk = 0; blk < AR_TX_BLOCKS; blk++) {
1181                         sc->block[blk].txdesc = next;
1182                         bufmem = (16 * 1024) / AR_TX_BLOCKS;
1183                         descneeded = bufmem / AR_BUF_SIZ;
1184                         sc->block[blk].txstart = sc->block[blk].txdesc +
1185                                 ((((descneeded * sizeof(sca_descriptor)) /
1186                                         AR_BUF_SIZ) + 1) * AR_BUF_SIZ);
1187                         sc->block[blk].txend = next + bufmem;
1188                         sc->block[blk].txmax =
1189                                 (sc->block[blk].txend - sc->block[blk].txstart)
1190                                 / AR_BUF_SIZ;
1191                         next += bufmem;
1192
1193                         TRC(printf("ar%d: blk %d: txdesc %x, txstart %x, "
1194                                    "txend %x, txmax %d\n",
1195                                    x,
1196                                    blk,
1197                                    sc->block[blk].txdesc,
1198                                    sc->block[blk].txstart,
1199                                    sc->block[blk].txend,
1200                                    sc->block[blk].txmax));
1201                 }
1202
1203                 sc->rxdesc = next;
1204                 bufmem = chanmem - (bufmem * AR_TX_BLOCKS);
1205                 descneeded = bufmem / AR_BUF_SIZ;
1206                 sc->rxstart = sc->rxdesc +
1207                                 ((((descneeded * sizeof(sca_descriptor)) /
1208                                         AR_BUF_SIZ) + 1) * AR_BUF_SIZ);
1209                 sc->rxend = next + bufmem;
1210                 sc->rxmax = (sc->rxend - sc->rxstart) / AR_BUF_SIZ;
1211                 next += bufmem;
1212                 TRC(printf("ar%d: rxdesc %x, rxstart %x, "
1213                            "rxend %x, rxmax %d\n",
1214                            x, sc->rxdesc, sc->rxstart, sc->rxend, sc->rxmax));
1215         }
1216
1217         if(hc->bustype == AR_BUS_PCI)
1218                 hc->orbase[AR_PIMCTRL] = AR_PIM_MODEG | AR_PIM_AUTO_LED;
1219 }
1220
1221
1222 /*
1223  * The things done here are channel independent.
1224  *
1225  *   Configure the sca waitstates.
1226  *   Configure the global interrupt registers.
1227  *   Enable master dma enable.
1228  */
1229 static void
1230 ar_init_sca(struct ar_hardc *hc, int scano)
1231 {
1232         sca_regs *sca;
1233
1234         sca = hc->sca[scano];
1235         if(hc->bustype == AR_BUS_ISA)
1236                 ARC_SET_SCA(hc, scano);
1237
1238         /*
1239          * Do the wait registers.
1240          * Set everything to 0 wait states.
1241          */
1242         sca->pabr0 = 0;
1243         sca->pabr1 = 0;
1244         sca->wcrl  = 0;
1245         sca->wcrm  = 0;
1246         sca->wcrh  = 0;
1247
1248         /*
1249          * Configure the interrupt registers.
1250          * Most are cleared until the interface is configured.
1251          */
1252         sca->ier0 = 0x00; /* MSCI interrupts... Not used with dma. */
1253         sca->ier1 = 0x00; /* DMAC interrupts */
1254         sca->ier2 = 0x00; /* TIMER interrupts... Not used yet. */
1255         sca->itcr = 0x00; /* Use ivr and no intr ack */
1256         sca->ivr  = 0x40; /* Fill in the interrupt vector. */
1257         sca->imvr = 0x40;
1258
1259         /*
1260          * Configure the timers.
1261          * XXX Later
1262          */
1263
1264
1265         /*
1266          * Set the DMA channel priority to rotate between
1267          * all four channels.
1268          *
1269          * Enable all dma channels.
1270          */
1271         if(hc->bustype == AR_BUS_PCI) {
1272                 u_char *t;
1273
1274                 /*
1275                  * Stupid problem with the PCI interface chip that break
1276                  * things.
1277                  * XXX
1278                  */
1279                 t = (u_char *)sca;
1280                 t[AR_PCI_SCA_PCR] = SCA_PCR_PR2;
1281                 t[AR_PCI_SCA_DMER] = SCA_DMER_EN;
1282         } else {
1283                 sca->pcr = SCA_PCR_PR2;
1284                 sca->dmer = SCA_DMER_EN;
1285         }
1286 }
1287
1288
1289 /*
1290  * Configure the msci
1291  *
1292  * NOTE: The serial port configuration is hardcoded at the moment.
1293  */
1294 static void
1295 ar_init_msci(struct ar_softc *sc)
1296 {
1297         msci_channel *msci;
1298
1299         msci = &sc->sca->msci[sc->scachan];
1300
1301         if(sc->hc->bustype == AR_BUS_ISA)
1302                 ARC_SET_SCA(sc->hc, sc->scano);
1303
1304         msci->cmd = SCA_CMD_RESET;
1305
1306         msci->md0 = SCA_MD0_CRC_1 |
1307                     SCA_MD0_CRC_CCITT |
1308                     SCA_MD0_CRC_ENABLE |
1309                     SCA_MD0_MODE_HDLC;
1310         msci->md1 = SCA_MD1_NOADDRCHK;
1311         msci->md2 = SCA_MD2_DUPLEX | SCA_MD2_NRZ;
1312
1313         /*
1314          * Acording to the manual I should give a reset after changing the
1315          * mode registers.
1316          */
1317         msci->cmd = SCA_CMD_RXRESET;
1318         msci->ctl = SCA_CTL_IDLPAT | SCA_CTL_UDRNC | SCA_CTL_RTS;
1319
1320         /*
1321          * For now all interfaces are programmed to use the RX clock for
1322          * the TX clock.
1323          */
1324         switch(sc->hc->interface[sc->subunit]) {
1325         case AR_IFACE_V_35:
1326                 msci->rxs = SCA_RXS_CLK_RXC0 | SCA_RXS_DIV1;
1327                 msci->txs = SCA_TXS_CLK_TXC | SCA_TXS_DIV1;
1328                 break;
1329         case AR_IFACE_X_21:
1330         case AR_IFACE_EIA_530:
1331         case AR_IFACE_COMBO:
1332                 msci->rxs = SCA_RXS_CLK_RXC0 | SCA_RXS_DIV1;
1333                 msci->txs = SCA_TXS_CLK_RX | SCA_TXS_DIV1;
1334         }
1335
1336         msci->tmc = 153;   /* This give 64k for loopback */
1337
1338         /* XXX
1339          * Disable all interrupts for now. I think if you are using
1340          * the dmac you don't use these interrupts.
1341          */
1342         msci->ie0 = 0;
1343         msci->ie1 = 0x0C; /* XXX CTS and DCD (DSR on 570I) level change. */
1344         msci->ie2 = 0;
1345         msci->fie = 0;
1346
1347         msci->sa0 = 0;
1348         msci->sa1 = 0;
1349
1350         msci->idl = 0x7E; /* XXX This is what cisco does. */
1351
1352         /*
1353          * This is what the ARNET diags use.
1354          */
1355         msci->rrc  = 0x0E;
1356         msci->trc0 = 0x12;
1357         msci->trc1 = 0x1F;
1358 }
1359
1360 /*
1361  * Configure the rx dma controller.
1362  */
1363 static void
1364 ar_init_rx_dmac(struct ar_softc *sc)
1365 {
1366         dmac_channel *dmac;
1367         sca_descriptor *rxd;
1368         u_int rxbuf;
1369         u_int rxda;
1370         u_int rxda_d;
1371         int x = 0;
1372
1373         dmac = &sc->sca->dmac[DMAC_RXCH(sc->scachan)];
1374
1375         if(sc->hc->bustype == AR_BUS_ISA)
1376                 ARC_SET_MEM(sc->hc, sc->rxdesc);
1377
1378         rxd = (sca_descriptor *)(sc->hc->mem_start + (sc->rxdesc&sc->hc->winmsk));
1379         rxda_d = (u_int)sc->hc->mem_start - (sc->rxdesc & ~sc->hc->winmsk);
1380
1381         for(rxbuf=sc->rxstart;rxbuf<sc->rxend;rxbuf += AR_BUF_SIZ, rxd++) {
1382                 rxda = (u_int)&rxd[1] - rxda_d;
1383                 rxd->cp = (u_short)(rxda & 0xfffful);
1384
1385                 x++;
1386                 if(x < 6)
1387                 TRC(printf("Descrp %p, data pt %x, data %x, ",
1388                         rxd, rxda, rxbuf));
1389
1390                 rxd->bp = (u_short)(rxbuf & 0xfffful);
1391                 rxd->bpb = (u_char)((rxbuf >> 16) & 0xff);
1392                 rxd->len = 0;
1393                 rxd->stat = 0xff; /* The sca write here when it is finished. */
1394
1395                 if(x < 6)
1396                 TRC(printf("bpb %x, bp %x.\n", rxd->bpb, rxd->bp));
1397         }
1398         rxd--;
1399         rxd->cp = (u_short)(sc->rxdesc & 0xfffful);
1400
1401         sc->rxhind = 0;
1402
1403         if(sc->hc->bustype == AR_BUS_ISA)
1404                 ARC_SET_SCA(sc->hc, sc->scano);
1405
1406         dmac->dsr = 0;    /* Disable DMA transfer */
1407         dmac->dcr = SCA_DCR_ABRT;
1408
1409         /* XXX maybe also SCA_DMR_CNTE */
1410         dmac->dmr = SCA_DMR_TMOD | SCA_DMR_NF;
1411         dmac->bfl = AR_BUF_SIZ;
1412
1413         dmac->cda = (u_short)(sc->rxdesc & 0xffff);
1414         dmac->sarb = (u_char)((sc->rxdesc >> 16) & 0xff);
1415
1416         rxd = (sca_descriptor *)sc->rxstart;
1417         dmac->eda = (u_short)((u_int)&rxd[sc->rxmax - 1] & 0xffff);
1418
1419         dmac->dir = 0xF0;
1420
1421         dmac->dsr = SCA_DSR_DE;
1422 }
1423
1424 /*
1425  * Configure the TX DMA descriptors.
1426  * Initialize the needed values and chain the descriptors.
1427  */
1428 static void
1429 ar_init_tx_dmac(struct ar_softc *sc)
1430 {
1431         dmac_channel *dmac;
1432         struct buf_block *blkp;
1433         int blk;
1434         sca_descriptor *txd;
1435         u_int txbuf;
1436         u_int txda;
1437         u_int txda_d;
1438
1439         dmac = &sc->sca->dmac[DMAC_TXCH(sc->scachan)];
1440
1441         if(sc->hc->bustype == AR_BUS_ISA)
1442                 ARC_SET_MEM(sc->hc, sc->block[0].txdesc);
1443
1444         for(blk = 0; blk < AR_TX_BLOCKS; blk++) {
1445                 blkp = &sc->block[blk];
1446                 txd = (sca_descriptor *)(sc->hc->mem_start +
1447                                         (blkp->txdesc&sc->hc->winmsk));
1448                 txda_d = (u_int)sc->hc->mem_start -
1449                                 (blkp->txdesc & ~sc->hc->winmsk);
1450
1451                 txbuf=blkp->txstart;
1452                 for(;txbuf<blkp->txend;txbuf += AR_BUF_SIZ, txd++) {
1453                         txda = (u_int)&txd[1] - txda_d;
1454                         txd->cp = (u_short)(txda & 0xfffful);
1455
1456                         txd->bp = (u_short)(txbuf & 0xfffful);
1457                         txd->bpb = (u_char)((txbuf >> 16) & 0xff);
1458                         TRC(printf("ar%d: txbuf %x, bpb %x, bp %x\n",
1459                                 sc->unit, txbuf, txd->bpb, txd->bp));
1460                         txd->len = 0;
1461                         txd->stat = 0;
1462                 }
1463                 txd--;
1464                 txd->cp = (u_short)(blkp->txdesc & 0xfffful);
1465
1466                 blkp->txtail = (u_int)txd - (u_int)sc->hc->mem_start;
1467                 TRC(printf("TX Descriptors start %x, end %x.\n",
1468                         blkp->txdesc,
1469                         blkp->txtail));
1470         }
1471
1472         if(sc->hc->bustype == AR_BUS_ISA)
1473                 ARC_SET_SCA(sc->hc, sc->scano);
1474
1475         dmac->dsr = 0; /* Disable DMA */
1476         dmac->dcr = SCA_DCR_ABRT;
1477         dmac->dmr = SCA_DMR_TMOD | SCA_DMR_NF;
1478         dmac->dir = SCA_DIR_EOT | SCA_DIR_BOF | SCA_DIR_COF;
1479
1480         dmac->sarb = (u_char)((sc->block[0].txdesc >> 16) & 0xff);
1481 }
1482
1483
1484 /*
1485  * Look through the descriptors to see if there is a complete packet
1486  * available. Stop if we get to where the sca is busy.
1487  *
1488  * Return the length and status of the packet.
1489  * Return nonzero if there is a packet available.
1490  *
1491  * NOTE:
1492  * It seems that we get the interrupt a bit early. The updateing of
1493  * descriptor values is not always completed when this is called.
1494  */
1495 static int
1496 ar_packet_avail(struct ar_softc *sc,
1497                     int *len,
1498                     u_char *rxstat)
1499 {
1500         dmac_channel *dmac;
1501         sca_descriptor *rxdesc;
1502         sca_descriptor *endp;
1503         sca_descriptor *cda;
1504
1505         if(sc->hc->bustype == AR_BUS_ISA)
1506                 ARC_SET_SCA(sc->hc, sc->scano);
1507         dmac = &sc->sca->dmac[DMAC_RXCH(sc->scachan)];
1508         cda = (sca_descriptor *)(sc->hc->mem_start +
1509               ((((u_int)dmac->sarb << 16) + dmac->cda) & sc->hc->winmsk));
1510
1511         if(sc->hc->bustype == AR_BUS_ISA)
1512                 ARC_SET_MEM(sc->hc, sc->rxdesc);
1513         rxdesc = (sca_descriptor *)
1514                         (sc->hc->mem_start + (sc->rxdesc & sc->hc->winmsk));
1515         endp = rxdesc;
1516         rxdesc = &rxdesc[sc->rxhind];
1517         endp = &endp[sc->rxmax];
1518
1519         *len = 0;
1520
1521         while(rxdesc != cda) {
1522                 *len += rxdesc->len;
1523
1524                 if(rxdesc->stat & SCA_DESC_EOM) {
1525                         *rxstat = rxdesc->stat;
1526                         TRC(printf("ar%d: PKT AVAIL len %d, %x.\n",
1527                                 sc->unit, *len, *rxstat));
1528                         return (1);
1529                 }
1530
1531                 rxdesc++;
1532                 if(rxdesc == endp)
1533                         rxdesc = (sca_descriptor *)
1534                                (sc->hc->mem_start + (sc->rxdesc & sc->hc->winmsk));
1535         }
1536
1537         *len = 0;
1538         *rxstat = 0;
1539         return (0);
1540 }
1541
1542
1543 /*
1544  * Copy a packet from the on card memory into a provided mbuf.
1545  * Take into account that buffers wrap and that a packet may
1546  * be larger than a buffer.
1547  */
1548 static void 
1549 ar_copy_rxbuf(struct mbuf *m,
1550                    struct ar_softc *sc,
1551                    int len)
1552 {
1553         sca_descriptor *rxdesc;
1554         u_int rxdata;
1555         u_int rxmax;
1556         u_int off = 0;
1557         u_int tlen;
1558
1559         rxdata = sc->rxstart + (sc->rxhind * AR_BUF_SIZ);
1560         rxmax = sc->rxstart + (sc->rxmax * AR_BUF_SIZ);
1561
1562         rxdesc = (sca_descriptor *)
1563                         (sc->hc->mem_start + (sc->rxdesc & sc->hc->winmsk));
1564         rxdesc = &rxdesc[sc->rxhind];
1565
1566         while(len) {
1567                 tlen = (len < AR_BUF_SIZ) ? len : AR_BUF_SIZ;
1568                 if(sc->hc->bustype == AR_BUS_ISA)
1569                         ARC_SET_MEM(sc->hc, rxdata);
1570                 bcopy(sc->hc->mem_start + (rxdata & sc->hc->winmsk), 
1571                         mtod(m, caddr_t) + off,
1572                         tlen);
1573
1574                 off += tlen;
1575                 len -= tlen;
1576
1577                 if(sc->hc->bustype == AR_BUS_ISA)
1578                         ARC_SET_MEM(sc->hc, sc->rxdesc);
1579                 rxdesc->len = 0;
1580                 rxdesc->stat = 0xff;
1581
1582                 rxdata += AR_BUF_SIZ;
1583                 rxdesc++;
1584                 if(rxdata == rxmax) {
1585                         rxdata = sc->rxstart;
1586                         rxdesc = (sca_descriptor *)
1587                                 (sc->hc->mem_start + (sc->rxdesc & sc->hc->winmsk));
1588                 }
1589         }
1590 }
1591
1592 /*
1593  * If single is set, just eat a packet. Otherwise eat everything up to
1594  * where cda points. Update pointers to point to the next packet.
1595  */
1596 static void
1597 ar_eat_packet(struct ar_softc *sc, int single)
1598 {
1599         dmac_channel *dmac;
1600         sca_descriptor *rxdesc;
1601         sca_descriptor *endp;
1602         sca_descriptor *cda;
1603         int loopcnt = 0;
1604         u_char stat;
1605
1606         if(sc->hc->bustype == AR_BUS_ISA)
1607                 ARC_SET_SCA(sc->hc, sc->scano);
1608         dmac = &sc->sca->dmac[DMAC_RXCH(sc->scachan)];
1609         cda = (sca_descriptor *)(sc->hc->mem_start +
1610               ((((u_int)dmac->sarb << 16) + dmac->cda) & sc->hc->winmsk));
1611
1612         /*
1613          * Loop until desc->stat == (0xff || EOM)
1614          * Clear the status and length in the descriptor.
1615          * Increment the descriptor.
1616          */
1617         if(sc->hc->bustype == AR_BUS_ISA)
1618                 ARC_SET_MEM(sc->hc, sc->rxdesc);
1619         rxdesc = (sca_descriptor *)
1620                 (sc->hc->mem_start + (sc->rxdesc & sc->hc->winmsk));
1621         endp = rxdesc;
1622         rxdesc = &rxdesc[sc->rxhind];
1623         endp = &endp[sc->rxmax];
1624
1625         while(rxdesc != cda) {
1626                 loopcnt++;
1627                 if(loopcnt > sc->rxmax) {
1628                         printf("ar%d: eat pkt %d loop, cda %p, "
1629                                "rxdesc %p, stat %x.\n",
1630                                sc->unit,
1631                                loopcnt,
1632                                (void *)cda,
1633                                (void *)rxdesc,
1634                                rxdesc->stat);
1635                         break;
1636                 }
1637
1638                 stat = rxdesc->stat;
1639
1640                 rxdesc->len = 0;
1641                 rxdesc->stat = 0xff;
1642
1643                 rxdesc++;
1644                 sc->rxhind++;
1645                 if(rxdesc == endp) {
1646                         rxdesc = (sca_descriptor *)
1647                                (sc->hc->mem_start + (sc->rxdesc & sc->hc->winmsk));
1648                         sc->rxhind = 0;
1649                 }
1650
1651                 if(single && (stat == SCA_DESC_EOM))
1652                         break;
1653         }
1654
1655         /*
1656          * Update the eda to the previous descriptor.
1657          */
1658         if(sc->hc->bustype == AR_BUS_ISA)
1659                 ARC_SET_SCA(sc->hc, sc->scano);
1660
1661         rxdesc = (sca_descriptor *)sc->rxdesc;
1662         rxdesc = &rxdesc[(sc->rxhind + sc->rxmax - 2 ) % sc->rxmax];
1663
1664         sc->sca->dmac[DMAC_RXCH(sc->scachan)].eda = 
1665                         (u_short)((u_int)rxdesc & 0xffff);
1666 }
1667
1668
1669 /*
1670  * While there is packets available in the rx buffer, read them out
1671  * into mbufs and ship them off.
1672  */
1673 static void
1674 ar_get_packets(struct ar_softc *sc)
1675 {
1676         sca_descriptor *rxdesc;
1677         struct mbuf *m = NULL;
1678         int i;
1679         int len;
1680         u_char rxstat;
1681 #ifdef NETGRAPH
1682         int error;
1683 #endif
1684
1685         while(ar_packet_avail(sc, &len, &rxstat)) {
1686                 TRC(printf("apa: len %d, rxstat %x\n", len, rxstat));
1687                 if(((rxstat & SCA_DESC_ERRORS) == 0) && (len < MCLBYTES)) {
1688                         m =  m_getl(len, MB_DONTWAIT, MT_DATA, M_PKTHDR, NULL);
1689                         if(m == NULL) {
1690                                 /* eat packet if get mbuf fail!! */
1691                                 ar_eat_packet(sc, 1);
1692                                 continue;
1693                         }
1694 #ifdef NETGRAPH
1695                         m->m_pkthdr.rcvif = NULL;
1696                         sc->inbytes += len;
1697                         sc->inlast = 0;
1698 #else
1699                         m->m_pkthdr.rcvif = &sc->ifsppp.pp_if;
1700 #endif
1701                         m->m_pkthdr.len = m->m_len = len;
1702                         ar_copy_rxbuf(m, sc, len);
1703 #ifdef NETGRAPH
1704                         NG_SEND_DATA_ONLY(error, sc->hook, m);
1705                         sc->ipackets++;
1706 #else
1707                         BPF_MTAP(&sc->ifsppp.pp_if, m);
1708                         sppp_input(&sc->ifsppp.pp_if, m);
1709                         sc->ifsppp.pp_if.if_ipackets++;
1710 #endif
1711                         /*
1712                          * Update the eda to the previous descriptor.
1713                          */
1714                         i = (len + AR_BUF_SIZ - 1) / AR_BUF_SIZ;
1715                         sc->rxhind = (sc->rxhind + i) % sc->rxmax;
1716
1717                         if(sc->hc->bustype == AR_BUS_ISA)
1718                                 ARC_SET_SCA(sc->hc, sc->scano);
1719
1720                         rxdesc = (sca_descriptor *)sc->rxdesc;
1721                         rxdesc =
1722                              &rxdesc[(sc->rxhind + sc->rxmax - 2 ) % sc->rxmax];
1723
1724                         sc->sca->dmac[DMAC_RXCH(sc->scachan)].eda = 
1725                                 (u_short)((u_int)rxdesc & 0xffff);
1726                 } else {
1727                         int tries = 5;
1728
1729                         while((rxstat == 0xff) && --tries)
1730                                 ar_packet_avail(sc, &len, &rxstat);
1731
1732                         /*
1733                          * It look like we get an interrupt early
1734                          * sometimes and then the status is not
1735                          * filled in yet.
1736                          */
1737                         if(tries && (tries != 5))
1738                                 continue;
1739
1740                         ar_eat_packet(sc, 1);
1741
1742 #ifndef NETGRAPH
1743                         sc->ifsppp.pp_if.if_ierrors++;
1744 #else   /* NETGRAPH */
1745                         sc->ierrors[0]++;
1746 #endif  /* NETGRAPH */
1747
1748                         if(sc->hc->bustype == AR_BUS_ISA)
1749                                 ARC_SET_SCA(sc->hc, sc->scano);
1750
1751                         TRCL(printf("ar%d: Receive error chan %d, "
1752                                         "stat %x, msci st3 %x,"
1753                                         "rxhind %d, cda %x, eda %x.\n",
1754                                         sc->unit,
1755                                         sc->scachan, 
1756                                         rxstat,
1757                                         sc->sca->msci[sc->scachan].st3,
1758                                         sc->rxhind,
1759                                         sc->sca->dmac[
1760                                                 DMAC_RXCH(sc->scachan)].cda,
1761                                         sc->sca->dmac[
1762                                                 DMAC_RXCH(sc->scachan)].eda));
1763                 }
1764         }
1765 }
1766
1767
1768 /*
1769  * All DMA interrupts come here.
1770  *
1771  * Each channel has two interrupts.
1772  * Interrupt A for errors and Interrupt B for normal stuff like end
1773  * of transmit or receive dmas.
1774  */
1775 static void
1776 ar_dmac_intr(struct ar_hardc *hc, int scano, u_char isr1)
1777 {
1778         u_char dsr;
1779         u_char dotxstart = isr1;
1780         int mch;
1781         struct ar_softc *sc;
1782         sca_regs *sca;
1783         dmac_channel *dmac;
1784
1785         sca = hc->sca[scano];
1786         mch = 0;
1787         /*
1788          * Shortcut if there is no interrupts for dma channel 0 or 1
1789          */
1790         if((isr1 & 0x0F) == 0) {
1791                 mch = 1;
1792                 isr1 >>= 4;
1793         }
1794
1795         do {
1796                 sc = &hc->sc[mch + (NCHAN * scano)];
1797
1798                 /*
1799                  * Transmit channel
1800                  */
1801                 if(isr1 & 0x0C) {
1802                         dmac = &sca->dmac[DMAC_TXCH(mch)];
1803
1804                         if(hc->bustype == AR_BUS_ISA)
1805                                 ARC_SET_SCA(hc, scano);
1806
1807                         dsr = dmac->dsr;
1808                         dmac->dsr = dsr;
1809
1810                         /* Counter overflow */
1811                         if(dsr & SCA_DSR_COF) {
1812                                 printf("ar%d: TX DMA Counter overflow, "
1813                                         "txpacket no %lu.\n",
1814                                         sc->unit,
1815 #ifndef NETGRAPH
1816                                         sc->ifsppp.pp_if.if_opackets);
1817                                 sc->ifsppp.pp_if.if_oerrors++;
1818 #else   /* NETGRAPH */
1819                                         sc->opackets);
1820                                 sc->oerrors++;
1821 #endif  /* NETGRAPH */
1822                         }
1823
1824                         /* Buffer overflow */
1825                         if(dsr & SCA_DSR_BOF) {
1826                                 printf("ar%d: TX DMA Buffer overflow, "
1827                                         "txpacket no %lu, dsr %02x, "
1828                                         "cda %04x, eda %04x.\n",
1829                                         sc->unit,
1830 #ifndef NETGRAPH
1831                                         sc->ifsppp.pp_if.if_opackets,
1832 #else   /* NETGRAPH */
1833                                         sc->opackets,
1834 #endif  /* NETGRAPH */
1835                                         dsr,
1836                                         dmac->cda,
1837                                         dmac->eda);
1838 #ifndef NETGRAPH
1839                                 sc->ifsppp.pp_if.if_oerrors++;
1840 #else   /* NETGRAPH */
1841                                 sc->oerrors++;
1842 #endif  /* NETGRAPH */
1843                         }
1844
1845                         /* End of Transfer */
1846                         if(dsr & SCA_DSR_EOT) {
1847                                 /*
1848                                  * This should be the most common case.
1849                                  *
1850                                  * Clear the IFF_OACTIVE flag.
1851                                  *
1852                                  * Call arstart to start a new transmit if
1853                                  * there is data to transmit.
1854                                  */
1855                                 sc->xmit_busy = 0;
1856 #ifndef NETGRAPH
1857                                 sc->ifsppp.pp_if.if_flags &= ~IFF_OACTIVE;
1858                                 sc->ifsppp.pp_if.if_timer = 0;
1859 #else   /* NETGRAPH */
1860                         /* XXX  c->ifsppp.pp_if.if_flags &= ~IFF_OACTIVE; */
1861                                 sc->out_dog = 0; /* XXX */
1862 #endif  /* NETGRAPH */
1863
1864                                 if(sc->txb_inuse && --sc->txb_inuse)
1865                                         ar_xmit(sc);
1866                         }
1867                 }
1868
1869                 /*
1870                  * Receive channel
1871                  */
1872                 if(isr1 & 0x03) {
1873                         dmac = &sca->dmac[DMAC_RXCH(mch)];
1874
1875                         if(hc->bustype == AR_BUS_ISA)
1876                                 ARC_SET_SCA(hc, scano);
1877
1878                         dsr = dmac->dsr;
1879                         dmac->dsr = dsr;
1880
1881                         TRC(printf("AR: RX DSR %x\n", dsr));
1882
1883                         /* End of frame */
1884                         if(dsr & SCA_DSR_EOM) {
1885                                 TRC(int tt = sc->ifsppp.pp_if.if_ipackets;)
1886                                 TRC(int ind = sc->rxhind;)
1887
1888                                 ar_get_packets(sc);
1889 #ifndef NETGRAPH
1890 #define IPACKETS sc->ifsppp.pp_if.if_ipackets
1891 #else   /* NETGRAPH */
1892 #define IPACKETS sc->ipackets
1893 #endif  /* NETGRAPH */
1894                                 TRC(if(tt == IPACKETS) {
1895                                         sca_descriptor *rxdesc;
1896                                         int i;
1897
1898                                         if(hc->bustype == AR_BUS_ISA)
1899                                                 ARC_SET_SCA(hc, scano);
1900                                         printf("AR: RXINTR isr1 %x, dsr %x, "
1901                                                "no data %d pkts, orxhind %d.\n",
1902                                                dotxstart,
1903                                                dsr,
1904                                                tt,
1905                                                ind);
1906                                         printf("AR: rxdesc %x, rxstart %x, "
1907                                                "rxend %x, rxhind %d, "
1908                                                "rxmax %d.\n",
1909                                                sc->rxdesc,
1910                                                sc->rxstart,
1911                                                sc->rxend,
1912                                                sc->rxhind,
1913                                                sc->rxmax);
1914                                         printf("AR: cda %x, eda %x.\n",
1915                                                dmac->cda,
1916                                                dmac->eda);
1917
1918                                         if(sc->hc->bustype == AR_BUS_ISA)
1919                                                 ARC_SET_MEM(sc->hc,
1920                                                     sc->rxdesc);
1921                                         rxdesc = (sca_descriptor *)
1922                                                  (sc->hc->mem_start +
1923                                                   (sc->rxdesc & sc->hc->winmsk));
1924                                         rxdesc = &rxdesc[sc->rxhind];
1925                                         for(i=0;i<3;i++,rxdesc++)
1926                                                 printf("AR: rxdesc->stat %x, "
1927                                                         "len %d.\n",
1928                                                         rxdesc->stat,
1929                                                         rxdesc->len);
1930                                 })
1931                         }
1932
1933                         /* Counter overflow */
1934                         if(dsr & SCA_DSR_COF) {
1935                                 printf("ar%d: RX DMA Counter overflow, "
1936                                         "rxpkts %lu.\n",
1937                                         sc->unit,
1938 #ifndef NETGRAPH
1939                                         sc->ifsppp.pp_if.if_ipackets);
1940                                 sc->ifsppp.pp_if.if_ierrors++;
1941 #else   /* NETGRAPH */
1942                                         sc->ipackets);
1943                                 sc->ierrors[1]++;
1944 #endif  /* NETGRAPH */
1945                         }
1946
1947                         /* Buffer overflow */
1948                         if(dsr & SCA_DSR_BOF) {
1949                                 if(hc->bustype == AR_BUS_ISA)
1950                                         ARC_SET_SCA(hc, scano);
1951                                 printf("ar%d: RX DMA Buffer overflow, "
1952                                         "rxpkts %lu, rxind %d, "
1953                                         "cda %x, eda %x, dsr %x.\n",
1954                                         sc->unit,
1955 #ifndef NETGRAPH
1956                                         sc->ifsppp.pp_if.if_ipackets,
1957 #else   /* NETGRAPH */
1958                                         sc->ipackets,
1959 #endif  /* NETGRAPH */
1960                                         sc->rxhind,
1961                                         dmac->cda,
1962                                         dmac->eda,
1963                                         dsr);
1964                                 /*
1965                                  * Make sure we eat as many as possible.
1966                                  * Then get the system running again.
1967                                  */
1968                                 ar_eat_packet(sc, 0);
1969 #ifndef NETGRAPH
1970                                 sc->ifsppp.pp_if.if_ierrors++;
1971 #else   /* NETGRAPH */
1972                                 sc->ierrors[2]++;
1973 #endif  /* NETGRAPH */
1974                                 if(hc->bustype == AR_BUS_ISA)
1975                                         ARC_SET_SCA(hc, scano);
1976                                 sca->msci[mch].cmd = SCA_CMD_RXMSGREJ;
1977                                 dmac->dsr = SCA_DSR_DE;
1978
1979                                 TRC(printf("ar%d: RX DMA Buffer overflow, "
1980                                         "rxpkts %lu, rxind %d, "
1981                                         "cda %x, eda %x, dsr %x. After\n",
1982                                         sc->unit,
1983                                         sc->ifsppp.pp_if.if_ipackets,
1984                                         sc->rxhind,
1985                                         dmac->cda,
1986                                         dmac->eda,
1987                                         dmac->dsr);)
1988                         }
1989
1990                         /* End of Transfer */
1991                         if(dsr & SCA_DSR_EOT) {
1992                                 /*
1993                                  * If this happen, it means that we are
1994                                  * receiving faster than what the processor
1995                                  * can handle.
1996                                  *
1997                                  * XXX We should enable the dma again.
1998                                  */
1999                                 printf("ar%d: RX End of transfer, rxpkts %lu.\n",
2000                                         sc->unit,
2001 #ifndef NETGRAPH
2002                                         sc->ifsppp.pp_if.if_ipackets);
2003                                 sc->ifsppp.pp_if.if_ierrors++;
2004 #else   /* NETGRAPH */
2005                                         sc->ipackets);
2006                                 sc->ierrors[3]++;
2007 #endif  /* NETGRAPH */
2008                         }
2009                 }
2010
2011                 isr1 >>= 4;
2012
2013                 mch++;
2014         }while((mch<NCHAN) && isr1);
2015
2016         /*
2017          * Now that we have done all the urgent things, see if we
2018          * can fill the transmit buffers.
2019          */
2020         for(mch = 0; mch < NCHAN; mch++) {
2021                 if(dotxstart & 0x0C) {
2022                         sc = &hc->sc[mch + (NCHAN * scano)];
2023 #ifndef NETGRAPH
2024                         arstart(&sc->ifsppp.pp_if);
2025 #else   /* NETGRAPH */
2026                         arstart(sc);
2027 #endif  /* NETGRAPH */
2028                 }
2029                 dotxstart >>= 4;
2030         }
2031 }
2032
2033 static void
2034 ar_msci_intr(struct ar_hardc *hc, int scano, u_char isr0)
2035 {
2036         printf("arc%d: ARINTR: MSCI\n", hc->cunit);
2037 }
2038
2039 static void
2040 ar_timer_intr(struct ar_hardc *hc, int scano, u_char isr2)
2041 {
2042         printf("arc%d: ARINTR: TIMER\n", hc->cunit);
2043 }
2044
2045
2046 #ifdef  NETGRAPH
2047 /*****************************************
2048  * Device timeout/watchdog routine.
2049  * called once per second.
2050  * checks to see that if activity was expected, that it hapenned.
2051  * At present we only look to see if expected output was completed.
2052  */
2053 static void
2054 ngar_watchdog_frame(void * arg)
2055 {
2056         struct ar_softc * sc = arg;
2057         int s;
2058         int     speed;
2059
2060         if(sc->running == 0)
2061                 return; /* if we are not running let timeouts die */
2062         /*
2063          * calculate the apparent throughputs 
2064          *  XXX a real hack
2065          */
2066         s = splimp();
2067         speed = sc->inbytes - sc->lastinbytes;
2068         sc->lastinbytes = sc->inbytes;
2069         if ( sc->inrate < speed )
2070                 sc->inrate = speed;
2071         speed = sc->outbytes - sc->lastoutbytes;
2072         sc->lastoutbytes = sc->outbytes;
2073         if ( sc->outrate < speed )
2074                 sc->outrate = speed;
2075         sc->inlast++;
2076         splx(s);
2077
2078         if ((sc->inlast > QUITE_A_WHILE)
2079         && (sc->out_deficit > LOTS_OF_PACKETS)) {
2080                 log(LOG_ERR, "ar%d: No response from remote end\n", sc->unit);
2081                 s = splimp();
2082                 ar_down(sc);
2083                 ar_up(sc);
2084                 sc->inlast = sc->out_deficit = 0;
2085                 splx(s);
2086         } else if ( sc->xmit_busy ) { /* no TX -> no TX timeouts */
2087                 if (sc->out_dog == 0) { 
2088                         log(LOG_ERR, "ar%d: Transmit failure.. no clock?\n",
2089                                         sc->unit);
2090                         s = splimp();
2091                         arwatchdog(sc);
2092 #if 0
2093                         ar_down(sc);
2094                         ar_up(sc);
2095 #endif
2096                         splx(s);
2097                         sc->inlast = sc->out_deficit = 0;
2098                 } else {
2099                         sc->out_dog--;
2100                 }
2101         }
2102         callout_reset(&sc->timer, hz, ngar_watchdog_frame, sc);
2103 }
2104
2105 /***********************************************************************
2106  * This section contains the methods for the Netgraph interface
2107  ***********************************************************************/
2108 /*
2109  * It is not possible or allowable to create a node of this type.
2110  * If the hardware exists, it will already have created it.
2111  */
2112 static  int
2113 ngar_constructor(node_p *nodep)
2114 {
2115         return (EINVAL);
2116 }
2117
2118 /*
2119  * give our ok for a hook to be added...
2120  * If we are not running this should kick the device into life.
2121  * The hook's private info points to our stash of info about that
2122  * channel.
2123  */
2124 static int
2125 ngar_newhook(node_p node, hook_p hook, const char *name)
2126 {
2127         struct ar_softc *       sc = NG_NODE_PRIVATE(node);
2128
2129         /*
2130          * check if it's our friend the debug hook
2131          */
2132         if (strcmp(name, NG_AR_HOOK_DEBUG) == 0) {
2133                 NG_HOOK_SET_PRIVATE(hook, NULL); /* paranoid */
2134                 sc->debug_hook = hook;
2135                 return (0);
2136         }
2137
2138         /*
2139          * Check for raw mode hook.
2140          */
2141         if (strcmp(name, NG_AR_HOOK_RAW) != 0) {
2142                 return (EINVAL);
2143         }
2144         NG_HOOK_SET_PRIVATE(hook, sc);
2145         sc->hook = hook;
2146         sc->datahooks++;
2147         ar_up(sc);
2148         return (0);
2149 }
2150
2151 /*
2152  * incoming messages.
2153  * Just respond to the generic TEXT_STATUS message
2154  */
2155 static  int
2156 ngar_rcvmsg(node_p node, struct ng_mesg *msg, const char *retaddr,
2157             struct ng_mesg **rptr)
2158 {
2159         struct ar_softc *sc;
2160         int error = 0;
2161         struct ng_mesg *resp = NULL;
2162
2163         sc = NG_NODE_PRIVATE(node);
2164         switch (msg->header.typecookie) {
2165         case    NG_AR_COOKIE: 
2166                 error = EINVAL;
2167                 break;
2168         case    NGM_GENERIC_COOKIE: 
2169                 switch(msg->header.cmd) {
2170                 case NGM_TEXT_STATUS: {
2171                         char        *arg;
2172                         int pos = 0;
2173
2174                         int resplen = sizeof(struct ng_mesg) + 512;
2175                         NG_MKRESPONSE(resp, msg, resplen, M_INTWAIT);
2176                         if (resp == NULL) {
2177                                 error = ENOMEM;
2178                                 break;
2179                         }
2180                         arg = (resp)->data;
2181                         pos = sprintf(arg, "%ld bytes in, %ld bytes out\n"
2182                             "highest rate seen: %ld B/S in, %ld B/S out\n",
2183                         sc->inbytes, sc->outbytes,
2184                         sc->inrate, sc->outrate);
2185                         pos += sprintf(arg + pos,
2186                                 "%ld output errors\n",
2187                                 sc->oerrors);
2188                         pos += sprintf(arg + pos,
2189                                 "ierrors = %ld, %ld, %ld, %ld\n",
2190                                 sc->ierrors[0],
2191                                 sc->ierrors[1],
2192                                 sc->ierrors[2],
2193                                 sc->ierrors[3]);
2194
2195                         (resp)->header.arglen = pos + 1;
2196                         break;
2197                       }
2198                 default:
2199                         error = EINVAL;
2200                         break;
2201                     }
2202                 break;
2203         default:
2204                 error = EINVAL;
2205                 break;
2206         }
2207         /* Take care of synchronous response, if any */
2208         NG_RESPOND_MSG(error, node, retaddr, resp, rptr);
2209         NG_FREE_MSG(msg);
2210         return (error);
2211 }
2212
2213 /*
2214  * get data from another node and transmit it to the correct channel
2215  */
2216 static int
2217 ngar_rcvdata(hook_p hook, struct mbuf *m, meta_p meta)
2218 {
2219         int s;
2220         int error = 0;
2221         struct ar_softc * sc = NG_NODE_PRIVATE(NG_HOOK_NODE(hook));
2222         struct ifqueue  *xmitq_p;
2223         
2224         /*
2225          * data doesn't come in from just anywhere (e.g control hook)
2226          */
2227         if ( NG_HOOK_PRIVATE(hook) == NULL) {
2228                 error = ENETDOWN;
2229                 goto bad;
2230         }
2231
2232         /* 
2233          * Now queue the data for when it can be sent
2234          */
2235         if (meta && meta->priority > 0)
2236                 xmitq_p = (&sc->xmitq_hipri);
2237         else
2238                 xmitq_p = (&sc->xmitq);
2239
2240         s = splimp();
2241         if (IF_QFULL(xmitq_p)) {
2242                 IF_DROP(xmitq_p);
2243                 splx(s);
2244                 error = ENOBUFS;
2245                 goto bad;
2246         }
2247         IF_ENQUEUE(xmitq_p, m);
2248         arstart(sc);
2249         splx(s);
2250         return (0);
2251
2252 bad:
2253         /* 
2254          * It was an error case.
2255          * check if we need to free the mbuf, and then return the error
2256          */
2257         NG_FREE_DATA(m, meta);
2258         return (error);
2259 }
2260
2261 /*
2262  * do local shutdown processing..
2263  * this node will refuse to go away, unless the hardware says to..
2264  * don't unref the node, or remove our name. just clear our links up.
2265  */
2266 static  int
2267 ngar_shutdown(node_p node)
2268 {
2269         struct ar_softc * sc = NG_NODE_PRIVATE(node);
2270
2271         ar_down(sc);
2272         NG_NODE_UNREF(node);
2273         /* XXX need to drain the output queues! */
2274
2275         /* The node is dead, long live the node! */
2276         /* stolen from the attach routine */
2277         if (ng_make_node_common(&typestruct, &sc->node) != 0)
2278                 return (0);
2279         sprintf(sc->nodename, "%s%d", NG_AR_NODE_TYPE, sc->unit);
2280         if (ng_name_node(sc->node, sc->nodename)) {
2281                 sc->node = NULL;
2282                 printf("node naming failed\n");
2283                 NG_NODE_UNREF(sc->node); /* node dissappears */
2284                 return (0);
2285         }
2286         NG_NODE_SET_PRIVATE(sc->node, sc);
2287         sc->running = 0;
2288         return (0);
2289 }
2290
2291 /* already linked */
2292 static  int
2293 ngar_connect(hook_p hook)
2294 {
2295         /* be really amiable and just say "YUP that's OK by me! " */
2296         return (0);
2297 }
2298
2299 /*
2300  * notify on hook disconnection (destruction)
2301  *
2302  * Invalidate the private data associated with this dlci.
2303  * For this type, removal of the last link resets tries to destroy the node.
2304  * As the device still exists, the shutdown method will not actually
2305  * destroy the node, but reset the device and leave it 'fresh' :)
2306  *
2307  * The node removal code will remove all references except that owned by the
2308  * driver. 
2309  */
2310 static  int
2311 ngar_disconnect(hook_p hook)
2312 {
2313         struct ar_softc * sc = NG_NODE_PRIVATE(NG_HOOK_NODE(hook));
2314         int     s;
2315         /*
2316          * If it's the data hook, then free resources etc.
2317          */
2318         if (NG_HOOK_PRIVATE(hook)) {
2319                 s = splimp();
2320                 sc->datahooks--;
2321                 if (sc->datahooks == 0)
2322                         ar_down(sc);
2323                 splx(s);
2324         } else {
2325                 sc->debug_hook = NULL;
2326         }
2327         return (0);
2328 }
2329
2330 /*
2331  * called during bootup
2332  * or LKM loading to put this type into the list of known modules
2333  */
2334 static void
2335 ngar_init(void *ignored)
2336 {
2337         if (ng_newtype(&typestruct))
2338                 printf("ngar install failed\n");
2339         ngar_done_init = 1;
2340 }
2341 #endif /* NETGRAPH */
2342
2343 /*
2344  ********************************* END ************************************
2345  */