netjet.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: netjet.h,v 1.1.4.1 2001/11/20 14:19:36 kai Exp $
  2.  *
  3.  * NETjet common header file
  4.  *
  5.  * Author       Karsten Keil
  6.  * Copyright    by Karsten Keil      <keil@isdn4linux.de>
  7.  *              by Matt Henderson,
  8.  *                 Traverse Technologies P/L www.traverse.com.au
  9.  * 
  10.  * This software may be used and distributed according to the terms
  11.  * of the GNU General Public License, incorporated herein by reference.
  12.  *
  13.  */
  14. extern const char *CardType[];
  15. #define byteout(addr,val) outb(val,addr)
  16. #define bytein(addr) inb(addr)
  17. #define NETJET_CTRL 0x00
  18. #define NETJET_DMACTRL 0x01
  19. #define NETJET_AUXCTRL 0x02
  20. #define NETJET_AUXDATA 0x03
  21. #define NETJET_IRQMASK0 0x04
  22. #define NETJET_IRQMASK1 0x05
  23. #define NETJET_IRQSTAT0 0x06
  24. #define NETJET_IRQSTAT1 0x07
  25. #define NETJET_DMA_READ_START 0x08
  26. #define NETJET_DMA_READ_IRQ 0x0c
  27. #define NETJET_DMA_READ_END 0x10
  28. #define NETJET_DMA_READ_ADR 0x14
  29. #define NETJET_DMA_WRITE_START 0x18
  30. #define NETJET_DMA_WRITE_IRQ 0x1c
  31. #define NETJET_DMA_WRITE_END 0x20
  32. #define NETJET_DMA_WRITE_ADR 0x24
  33. #define NETJET_PULSE_CNT 0x28
  34. #define NETJET_ISAC_OFF 0xc0
  35. #define NETJET_ISACIRQ 0x10
  36. #define NETJET_IRQM0_READ 0x0c
  37. #define NETJET_IRQM0_READ_1 0x04
  38. #define NETJET_IRQM0_READ_2 0x08
  39. #define NETJET_IRQM0_WRITE 0x03
  40. #define NETJET_IRQM0_WRITE_1 0x01
  41. #define NETJET_IRQM0_WRITE_2 0x02
  42. #define NETJET_DMA_TXSIZE 512
  43. #define NETJET_DMA_RXSIZE 128
  44. #define HDLC_ZERO_SEARCH 0
  45. #define HDLC_FLAG_SEARCH 1
  46. #define HDLC_FLAG_FOUND  2
  47. #define HDLC_FRAME_FOUND 3
  48. #define HDLC_NULL 4
  49. #define HDLC_PART 5
  50. #define HDLC_FULL 6
  51. #define HDLC_FLAG_VALUE 0x7e
  52. u_char NETjet_ReadIC(struct IsdnCardState *cs, u_char offset);
  53. void NETjet_WriteIC(struct IsdnCardState *cs, u_char offset, u_char value);
  54. void NETjet_ReadICfifo(struct IsdnCardState *cs, u_char *data, int size);
  55. void NETjet_WriteICfifo(struct IsdnCardState *cs, u_char *data, int size);
  56. void read_tiger(struct IsdnCardState *cs);
  57. void write_tiger(struct IsdnCardState *cs);
  58. void netjet_fill_dma(struct BCState *bcs);
  59. void netjet_interrupt(int intno, void *dev_id, struct pt_regs *regs);
  60. void inittiger(struct IsdnCardState *cs);
  61. void release_io_netjet(struct IsdnCardState *cs);