home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 3 / hamradioversion3.0examsandprograms1992.iso / misc / 9q920411 / hapn.c < prev    next >
C/C++ Source or Header  |  1992-04-03  |  12KB  |  528 lines

  1. /*  Driver for HAPN-1 8273 card on PC
  2.  *  Jon Bloom, KE3Z; adapted from KA9Q's PC-100 driver
  3.  *  Modified Rx interrupt routine to prevent lockup
  4.  *  John Tanner VK2ZXQ 6th Feb 1988
  5.  *  Adapted back into 871225.9 by KA9Q 15 Feb 1988
  6.  */
  7. #include <stdio.h>
  8. #include <dos.h>
  9. #include "global.h"
  10. #ifdef    ANSIPROTO
  11. #include <stdarg.h>
  12. #endif
  13. #include "timer.h"
  14. #include "mbuf.h"
  15. #include "iface.h"
  16. #include "pktdrvr.h"
  17. #include "netuser.h"
  18. #include "hapn.h"
  19. #include "ax25.h"
  20. #include "trace.h"
  21. #include "pc.h"
  22. #include "proc.h"
  23.  
  24. static void cmd_8273 __ARGS((int16 base,int cmd,int np,...));
  25. static int hapn_init __ARGS((struct hapn *hp));
  26. static int hapn_raw __ARGS((struct iface *iface,struct mbuf *bp));
  27. static int hapn_stop __ARGS((struct iface *iface));
  28. static int hcdchk __ARGS((int16 base));
  29. static void hrxint __ARGS((struct hapn *hp));
  30. static void hrxgo __ARGS((struct hapn *hp));
  31. static void htxint __ARGS((void *p));
  32.  
  33. static struct hapn Hapn[NHAPN];
  34. static INTERRUPT (*H_handle[])() = { ha0vec };
  35. static int16 Nhapn;
  36.  
  37. /*  send command to the 8273
  38.  *  "base" = base port of 8273
  39.  *  "cmd"  = command byte
  40.  *  "np"   = number of parameter bytes
  41.  *  "p1"   = first parameter (parameters are int)
  42.  */
  43. #ifdef    ANSIPROTO
  44. static void
  45. cmd_8273(int16 base, int cmd, int np, ...)
  46. {
  47.     int p;
  48.     va_list ap;
  49.  
  50.     while(inportb(base+STA) & CBSY)
  51.         ;
  52.     outportb(base+CMD, cmd);
  53.  
  54.     va_start(ap,np);
  55.     while(np--){
  56.         while(inportb(base+STA) & CPBF)
  57.             ;
  58.         p = va_arg(ap,int);
  59.         outportb(base+PAR, p);
  60.     }
  61.     va_end(ap);
  62. }
  63. #else
  64. /*VARARGS3*/
  65. static void
  66. cmd_8273(base, cmd, np, p1)
  67. int16 base;
  68. int cmd, np, p1;
  69. {
  70.     int *p;
  71.  
  72.     while(inportb(base+STA) & CBSY)
  73.         ;
  74.     outportb(base+CMD, cmd);
  75.     p = &p1;
  76.     while(np--){
  77.         while(inportb(base+STA) & CPBF)
  78.             ;
  79.         outportb(base+PAR, *p++);
  80.     }
  81. }
  82. #endif
  83. /*  Start receiver of 8273 */
  84. static void
  85. hrxgo(hp)
  86. register struct hapn *hp;
  87. {
  88.     cmd_8273(hp->base, GENERAL_RX, 2, hp->bufsiz & 0xff, hp->bufsiz >> 8);
  89. }
  90.  
  91. /*  Interrupt service function.  Entered with hapn index
  92.  *  The "flag" variable is used in this routine to indicate a
  93.  *  valid TX or RX interrupt. If an invalid interrupt is detected
  94.  *  the 8273 is reset.
  95.  */
  96. INTERRUPT (far *(haint)(dev))()
  97. int dev;
  98. {
  99.     register struct hapn *hp;
  100.     register int16 base;
  101.     char flag = 0;
  102.  
  103.     hp = &Hapn[dev];
  104.     base = hp->base;
  105.  
  106.     /*  Check for TX interrupt  */
  107.     if(inportb(base+STA) & TXINT){
  108.         flag = 1;    /* Valid interrupt, set flag */
  109.         htxint(hp);
  110.     }
  111.     /*  Check for RX interrupt  */
  112.     if(inportb(base+STA) & RXINT){
  113.         flag = 1;    /* Valid interrupt, set flag */
  114.         hrxint(hp);
  115.     }
  116.     /* Check for unknown interrupt  */
  117.     if(!flag){
  118.         hp->badint++;    /* Increment error counter */
  119.         hapn_init(hp);    /* Reinitialise the 8273 */
  120.     }
  121.     return hp->chain ? hp->oldvec : NULL;
  122. }
  123. /*  RX interrupt service
  124.  *  if status register bit "RXIRA" is set, interrupt is final,
  125.  *  otherwise, interrupt is data request
  126.  */
  127. static void
  128. hrxint(hp)
  129. register struct hapn *hp;
  130. {
  131.     register struct mbuf *bp;
  132.     register int16 base;
  133.     unsigned char results[10];
  134.  
  135.     hp->rxints++;
  136.     base = hp->base;
  137.  
  138.     if(inportb(base+STA) & RXIRA){
  139.         /* RX result interrupt
  140.          * If the result is a good frame 3 bytes need to be read
  141.          * If an error has occurred only one byte need to be read
  142.          */
  143.  
  144.         /* Read first result byte and test for good data */
  145.         if((results[0]=(inportb(base + RXI))) == 0xe0){
  146.             /* Good result; read two more result bytes */
  147.             while((inportb(base + STA) & RXIRA) == 0)
  148.                 ;
  149.             /* Read second result byte */
  150.             results[1] = inportb(base + RXI);
  151.             /* Wait for third result byte  */
  152.             while((inportb(base + STA) & RXIRA) == 0)
  153.                 ;  
  154.             results[2] = inportb(base + RXI);/* Read it */
  155.  
  156.             /* Since this frame is ok put it on the queue */
  157.             net_route(hp->iface,CL_AX25,hp->rcvbuf);
  158.             hp->rcvbuf = NULLBUF;
  159.             hp->rframes++;
  160.         } else {
  161.             /* Error termination
  162.              * Parse RIC and act accordingly
  163.              * Only one result byte returned on error
  164.              */
  165.             switch(results[0]){
  166.             case CRCERR:
  167.                 hp->crcerr++;
  168.                 break;
  169.             case ABORT_DET:
  170.                 hp->aborts++;
  171.                 break;
  172.             case DMA_OVRN:
  173.                 hp->dmaorun++;
  174.                 break;
  175.             case MEM_OVFL:
  176.                 hp->toobig++;
  177.                 break;
  178.             case CD_LOSS:
  179.                 hp->cdloss++;
  180.                 hapn_init(hp);    /* 8273 reset on cd error */
  181.                 break;
  182.             case RX_ORUN:
  183.                 hp->rxorun++;
  184.                 break;
  185.             }
  186.             /* Throw rx buffer contents away to start over */
  187.             hp->rcp = hp->rcvbuf->data;
  188.             hp->rcvbuf->cnt = 0;
  189.         }
  190.         /* Restart the receiver */
  191.         cmd_8273(base,RX_DISABLE,0);
  192.         hrxgo(hp);
  193.     } else {
  194.         /* RX data interrupt; allocate new rx buffer if none present */
  195.         if((bp = hp->rcvbuf) == NULLBUF){
  196.             bp = hp->rcvbuf = alloc_mbuf(hp->bufsiz);
  197.             if(bp == NULLBUF){
  198.                 /* No memory available */
  199.                 hp->nomem++;
  200.                 cmd_8273(base, RX_DISABLE, 0);
  201.                 hrxgo(hp);
  202.                 return;
  203.             }
  204.             /* Init buffer pointer */
  205.             hp->rcp = hp->rcvbuf->data;
  206.         }
  207.         /*  Barf if rx data is more than buffer can hold (should never
  208.          *  happen since 8273 is also counting bytes).
  209.          */
  210.         if(bp->cnt++ >= hp->bufsiz){
  211.             hp->toobig++;
  212.             cmd_8273(base, RX_DISABLE, 0);
  213.             hrxgo(hp);
  214.             free_p(bp);
  215.             hp->rcvbuf = NULLBUF;
  216.             return;
  217.         }
  218.         /* Store the received byte */
  219.         *hp->rcp++ = inportb(base+RXD);
  220.     }
  221. }
  222.  
  223. /*  test for busy channel (CD active)
  224.  *  returns TRUE if channel busy
  225.  */
  226. static int
  227. hcdchk(base)
  228. int16 base;
  229. {
  230.     char isav;
  231.  
  232.     isav = dirps();
  233.     cmd_8273(base, READ_A, 0);
  234.     while(!(inportb(base+STA) & CRBF))
  235.         ;
  236.     restore(isav);
  237.     return((inportb(base+RES) & CD) != 0);
  238. }
  239.  
  240. /*  TX interrupt service
  241.  *  if status register bit "TXIRA" is set, interrupt is final,
  242.  *  otherwise, interrupt is data request
  243.  */
  244. static void
  245. htxint(p)
  246. void *p;
  247. {
  248.     register struct hapn *hp;
  249.     char isav;
  250.     register int16 base;
  251.     int16 len;
  252.     int c;
  253.  
  254.     hp = (struct hapn *)p;
  255.     isav = dirps();
  256.     hp->txints++;
  257.     base = hp->base;
  258.  
  259.     c = 0;
  260.     if(inportb(base+STA) & TXIRA){        /* TX result interupt */
  261.         hp->tstate = IDLE;
  262.         free_p(hp->sndbuf);
  263.         hp->sndbuf = NULLBUF;
  264.  
  265.         /*  Read result  */
  266.         while((inportb(base+STA) & (TXINT | TXIRA)) != (TXINT | TXIRA))
  267.             ;
  268.         c = inportb(base+TXI);
  269.  
  270.         /*  Test for tx abort  */
  271.         switch(c & 0x1f){
  272.         case DMA_URUN:
  273.             hp->t_urun++;
  274.             break;
  275.         case CTS_LOSS:
  276.             hp->ctsloss++;
  277.             break;
  278.         case ABORT_CMPLT:
  279.             hp->taborts++;
  280.             break;
  281.         }
  282.     }
  283.     switch(hp->tstate){
  284.     case IDLE:    /*  See if a buffer is ready to be sent  */
  285.         if((hp->sndbuf = dequeue(&hp->sndq)) == NULLBUF)
  286.             break;
  287.  
  288.     case DEFER:    /*  Busy-channel check  */
  289.         if(hp->mode == CSMA && (c & 0x1f) != EARLY_TXI){
  290.             if(hcdchk(base)){
  291.                 hp->tstate = DEFER;
  292.                 start_timer(&hp->defer);
  293.                 break;
  294.             }
  295.         }
  296.         /*  Start transmitter  */
  297.         stop_timer(&hp->defer);
  298.         len = len_p(hp->sndbuf);
  299.         cmd_8273(base, TX_FRAME, 2, len & 0xff, len >> 8);
  300.         hp->tstate = ACTIVE;
  301.         hp->tframes++;
  302.         break;
  303.     case ACTIVE:    /*  Get next byte to send  */
  304.         if((c = PULLCHAR(&hp->sndbuf)) == -1){
  305.             cmd_8273(base, ABORT_TXF, 0);
  306.             hp->tstate = IDLE;
  307.         } else
  308.             outportb(base+TXD, c);
  309.         break;
  310.     }
  311.     restore(isav);
  312. }
  313.  
  314. /*  Attach a HAPN adaptor to the system
  315.  *  argv[0]:  hardware type, must be "hapn"
  316.  *  argv[1]:  I/O address, e.g. "0x310"
  317.  *  argv[2]:  vector, e.g. "2"
  318.  *  argv[3]:  mode, must be "ax25"
  319.  *  argv[4]:  interface name, e.g. "ha0"
  320.  *  argv[5]:  rx packet buffer size in bytes
  321.  *  argv[6]:  maximum transmission unit in bytes
  322.  *  argv[7]:  channel-access mechanism, "csma" or "full"
  323.  *  argv[8]: IP address, optional (defaults to Ip_addr)
  324.  */
  325. int
  326. hapn_attach(argc, argv,p)
  327. int argc;
  328. char *argv[];
  329. void *p;
  330. {
  331.     register struct iface *if_h;
  332.     struct hapn *hp;
  333.     int dev, i;
  334.     char isav;
  335.     static struct {
  336.         char *str;
  337.         char type;
  338.     } ch_access [] = { "csma", 0, "full", 1 };
  339.  
  340.     if(Nhapn >= NHAPN){
  341.         tprintf("Too many HAPN adaptors\n");
  342.         return -1;
  343.     }
  344.     if(if_lookup(argv[4]) != NULLIF){
  345.         tprintf("Interface %s already exists\n",argv[4]);
  346.         return -1;
  347.     }
  348.     /*  Create new interface structure  */
  349.     if_h = (struct iface *) callocw(1,sizeof(struct iface));
  350.  
  351.     /*  Set interface address  */
  352.     if_h->addr = Ip_addr;
  353.     if(argc > 8)
  354.         if_h->addr = resolve(argv[8]);
  355.     if(if_h->addr == 0){
  356.         tprintf(Noipaddr);
  357.         free((char *)if_h);
  358.         return -1;
  359.     }
  360.     dev = Nhapn++;
  361.     hp = &Hapn[dev];
  362.  
  363.     /*  Initialize hardware constants */
  364.     hp->base = htoi(argv[1]);
  365.     hp->vec = atoi(argv[2]);
  366.     if(strchr(argv[2],'c') != NULLCHAR)
  367.         hp->chain = 1;
  368.     else
  369.         hp->chain = 0;
  370.  
  371.     /*  Save original interrupt vector  */
  372.     hp->oldvec = getirq(Hapn[dev].vec);
  373.  
  374.     /*  Set new interrupt vector  */
  375.     setirq(hp->vec, H_handle[dev]);
  376.  
  377.     /* Continue filling interface structure */
  378.     if_h->name = strdup(argv[4]);
  379.     if_h->type = CL_AX25;
  380.     if_h->mtu = atoi(argv[6]);
  381.     if_h->dev = dev;
  382.     if_h->stop = hapn_stop;
  383.     if_h->output = ax_output;
  384.     if_h->raw = hapn_raw;
  385.     hp->iface = if_h;
  386.  
  387.     if(strcmp(argv[3], "ax25")){
  388.         tprintf("Mode %s unknown for interface %s\n", argv[3], argv[4]);
  389.         free(if_h->name);
  390.         free((char *) if_h);
  391.         return -1;
  392.     }
  393.     if(Mycall[0] == '\0'){
  394.         tprintf("set mycall first\n");
  395.         free(if_h->name);
  396.         free((char *) if_h);
  397.         return -1;
  398.     }
  399.     if_h->send = ax_send;
  400.     if(if_h->hwaddr == NULLCHAR)
  401.         if_h->hwaddr = mallocw(AXALEN);
  402.     memcpy(if_h->hwaddr,Mycall,AXALEN);
  403.     /*  Link the interface into the interface list  */
  404.     if_h->next = Ifaces;
  405.     Ifaces = if_h;
  406.  
  407.     /*  Fill the local data structure  */
  408.     hp->bufsiz = atoi(argv[5]);
  409.     for(i = 0; i < (sizeof ch_access / sizeof ch_access[0]); i++)
  410.         if(!strcmp(argv[7], ch_access[i].str))
  411.             hp->mode = ch_access[i].type;
  412.  
  413.     /*  Initialize the hardware  */
  414.     isav = dirps();
  415.     hapn_init(hp);
  416.  
  417.     /* Initialize the defer timer */
  418.     set_timer(&hp->defer,MSPTICK);
  419.     hp->defer.func = htxint;
  420.     hp->defer.arg = hp;
  421.  
  422.     /*  Enable the interrupt  */
  423.     maskon(hp->vec);
  424.  
  425.     restore(isav);
  426.     if_h->txproc = newproc("hapn tx",512,if_tx,0,if_h,NULL,0);
  427.     return 0;
  428. }
  429.  
  430. /*  initialize the HAPN adaptor */
  431. static int
  432. hapn_init(hp)
  433. register struct hapn *hp;
  434. {
  435.     register int16 base;
  436.     char isav;
  437.  
  438.     isav = dirps();
  439.     base = hp->base;
  440.  
  441.     /*  Reset the 8273 */
  442.     outportb(base+RST, 1);
  443.     outportb(base+RST, 0);
  444.     inportb(base+TXI);        /* Clear any old IR contents */
  445.     inportb(base+RXI);
  446.  
  447.     /*  Select the operating modes  */
  448.     cmd_8273(base, SET_XFER, 1, 1);
  449.     cmd_8273(base, SET_MODE, 1, HDLC | EARLY | PREFRM | FLG_STM);
  450.     cmd_8273(base, SET_SERIAL, 1, NRZI);
  451.     cmd_8273(base, SET_B, 1, IRQ_ENB | RTS);
  452.     cmd_8273(base, RST_B, 1, 0xff ^ RTS);
  453.     hrxgo(hp);
  454.     restore(isav);
  455.     return 0;
  456. }
  457.  
  458. /*  shut down the HAPN adaptor */
  459. static int
  460. hapn_stop(iface)
  461. struct iface *iface;
  462. {
  463.     int dev;
  464.     int16 base;
  465.     struct hapn *hp;
  466.  
  467.     dev = iface->dev;
  468.     hp = &Hapn[dev];
  469.     base = hp->base;
  470.  
  471.     /*  Mask off interrupt input  */
  472.     maskoff(hp->vec);
  473.  
  474.     /*  Restore original interrupt vector  */
  475.     setirq(hp->vec,hp->oldvec);
  476.  
  477.     /*  Reset the 8273  */
  478.     outportb(base+RST, 1);
  479.     outportb(base+RST, 0);
  480.     return 0;
  481. }
  482.  
  483. /* Display adaptor statistics */
  484. int
  485. dohapnstat(argc,argv,p)
  486. int argc;
  487. char *argv[];
  488. void *p;
  489. {
  490.     struct hapn *hp;
  491.     int i;
  492.  
  493.     if(Nhapn == 0){
  494.         tprintf("No HAPN adaptor attached\n");
  495.         return 1;
  496.     }
  497.     for(i = 0; i < Nhapn; i++){
  498.         hp = &Hapn[i];
  499.         tprintf("HAPN %d:   rxints: %ld   txints: %ld   badint: %-5d\n", i,
  500.          hp->rxints,hp->txints,hp->badint);
  501.         tprintf(" receive  - frames:  %-5d  crcerrs: %-5d  aborts: %-5d  dmaorun: %-5d\n",
  502.          hp->rframes,hp->crcerr, hp->aborts, hp->dmaorun);
  503.         tprintf("          - toobig:  %-5d  dcdloss: %-5d  rxorun: %-5d\n",
  504.          hp->toobig,hp->cdloss,hp->rxorun);
  505.         if(tprintf(" transmit - frames:  %-5d  aborts : %-5d  uruns : %-5d  ctsloss: %-5d\n",
  506.          hp->tframes,hp->taborts, hp->t_urun, hp->ctsloss) == EOF)
  507.             break;
  508.     }
  509.     return 0;
  510. }
  511.  
  512. /* Send raw packet on HAPN interface */
  513. static int
  514. hapn_raw(iface,bp)
  515. struct iface *iface;
  516. struct mbuf *bp;
  517. {
  518.     struct hapn *hp;
  519.  
  520.     hp = &Hapn[iface->dev];
  521.     enqueue(&hp->sndq, bp);
  522.  
  523.     /*  See if anything being transmitted  */
  524.     if(hp->tstate == IDLE)
  525.         htxint(hp);
  526.     return 0;
  527. }
  528.