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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  sx.h
  3.  *
  4.  *  Copyright (C) 1998/1999 R.E.Wolff@BitWizard.nl
  5.  *
  6.  *  SX serial driver.
  7.  *  -- Supports SI, XIO and SX host cards. 
  8.  *  -- Supports TAs, MTAs and SXDCs.
  9.  *
  10.  *  Version 1.3 -- March, 1999. 
  11.  * 
  12.  */
  13. #define SX_NBOARDS        4
  14. #define SX_PORTSPERBOARD 32
  15. #define SX_NPORTS        (SX_NBOARDS * SX_PORTSPERBOARD)
  16. #ifdef __KERNEL__
  17. #define SX_MAGIC 0x12345678
  18. struct sx_port {
  19.   struct gs_port          gs;
  20.   /*
  21.   struct tq_struct        tqueue;
  22.   struct tq_struct        tqueue_hangup;
  23.   */
  24.   struct wait_queue       *shutdown_wait;
  25.   int                     ch_base;
  26.   int                     c_dcd;
  27.   struct sx_board         *board;
  28.   int                     line;
  29.   long                    locks;
  30. };
  31. struct sx_board {
  32.   int magic;
  33.   unsigned long base;
  34.   unsigned long base2;
  35.   unsigned long hw_base;
  36.   int eisa_base;
  37.   int port_base; /* Number of the first port */
  38.   struct sx_port *ports;
  39.   int nports;
  40.   int flags;
  41.   int irq;
  42.   int poll;
  43.   int ta_type;
  44.   struct timer_list       timer;
  45.   int                     locks;
  46. };
  47. struct vpd_prom {
  48.   unsigned short id;
  49.   char hwrev;
  50.   char hwass;
  51.   int uniqid;
  52.   char myear;
  53.   char mweek;
  54.   char hw_feature[5];
  55.   char oem_id;
  56.   char identifier[16];
  57. };
  58. #ifndef MOD_RS232DB25MALE
  59. #define MOD_RS232DB25MALE 0x0a
  60. #endif
  61. #define SI_ISA_BOARD         0x00000001
  62. #define SX_ISA_BOARD         0x00000002
  63. #define SX_PCI_BOARD         0x00000004
  64. #define SX_CFPCI_BOARD       0x00000008
  65. #define SX_CFISA_BOARD       0x00000010
  66. #define SI_EISA_BOARD        0x00000020
  67. #define SI1_ISA_BOARD        0x00000040
  68. #define SX_BOARD_PRESENT     0x00001000
  69. #define SX_BOARD_INITIALIZED 0x00002000
  70. #define SX_IRQ_ALLOCATED     0x00004000
  71. #define SX_BOARD_TYPE        0x000000ff
  72. #define IS_SX_BOARD(board) (board->flags & (SX_PCI_BOARD | SX_CFPCI_BOARD | 
  73.                                             SX_ISA_BOARD | SX_CFISA_BOARD))
  74. #define IS_SI_BOARD(board) (board->flags & SI_ISA_BOARD)
  75. #define IS_SI1_BOARD(board) (board->flags & SI1_ISA_BOARD)
  76. #define IS_EISA_BOARD(board) (board->flags & SI_EISA_BOARD)
  77. #define IS_CF_BOARD(board) (board->flags & (SX_CFISA_BOARD | SX_CFPCI_BOARD))
  78. #define SERIAL_TYPE_NORMAL 1
  79. /* The SI processor clock is required to calculate the cc_int_count register
  80.    value for the SI cards. */
  81. #define SI_PROCESSOR_CLOCK 25000000
  82. /* port flags */
  83. /* Make sure these don't clash with gs flags or async flags */
  84. #define SX_RX_THROTTLE        0x0000001
  85. #define SX_PORT_TRANSMIT_LOCK  0
  86. #define SX_BOARD_INTR_LOCK     0
  87. /* Debug flags. Add these together to get more debug info. */
  88. #define SX_DEBUG_OPEN          0x00000001
  89. #define SX_DEBUG_SETTING       0x00000002
  90. #define SX_DEBUG_FLOW          0x00000004
  91. #define SX_DEBUG_MODEMSIGNALS  0x00000008
  92. #define SX_DEBUG_TERMIOS       0x00000010
  93. #define SX_DEBUG_TRANSMIT      0x00000020
  94. #define SX_DEBUG_RECEIVE       0x00000040
  95. #define SX_DEBUG_INTERRUPTS    0x00000080
  96. #define SX_DEBUG_PROBE         0x00000100
  97. #define SX_DEBUG_INIT          0x00000200
  98. #define SX_DEBUG_CLEANUP       0x00000400
  99. #define SX_DEBUG_CLOSE         0x00000800
  100. #define SX_DEBUG_FIRMWARE      0x00001000
  101. #define SX_DEBUG_MEMTEST       0x00002000
  102. #define SX_DEBUG_ALL           0xffffffff
  103. #define O_OTHER(tty)    
  104.       ((O_OLCUC(tty))  ||
  105.       (O_ONLCR(tty))   ||
  106.       (O_OCRNL(tty))   ||
  107.       (O_ONOCR(tty))   ||
  108.       (O_ONLRET(tty))  ||
  109.       (O_OFILL(tty))   ||
  110.       (O_OFDEL(tty))   ||
  111.       (O_NLDLY(tty))   ||
  112.       (O_CRDLY(tty))   ||
  113.       (O_TABDLY(tty))  ||
  114.       (O_BSDLY(tty))   ||
  115.       (O_VTDLY(tty))   ||
  116.       (O_FFDLY(tty)))
  117. /* Same for input. */
  118. #define I_OTHER(tty)    
  119.       ((I_INLCR(tty))  ||
  120.       (I_IGNCR(tty))   ||
  121.       (I_ICRNL(tty))   ||
  122.       (I_IUCLC(tty))   ||
  123.       (L_ISIG(tty)))
  124. #define MOD_TA   (        TA>>4)
  125. #define MOD_MTA  (MTA_CD1400>>4)
  126. #define MOD_SXDC (      SXDC>>4)
  127. /* We copy the download code over to the card in chunks of ... bytes */
  128. #define SX_CHUNK_SIZE 128
  129. #endif /* __KERNEL__ */
  130. /* Specialix document 6210046-11 page 3 */
  131. #define SPX(X) (('S'<<24) | ('P' << 16) | (X))
  132. /* Specialix-Linux specific IOCTLS. */
  133. #define SPXL(X) (SPX(('L' << 8) | (X)))
  134. #define SXIO_SET_BOARD      SPXL(0x01)
  135. #define SXIO_GET_TYPE       SPXL(0x02)
  136. #define SXIO_DOWNLOAD       SPXL(0x03)
  137. #define SXIO_INIT           SPXL(0x04)
  138. #define SXIO_SETDEBUG       SPXL(0x05)
  139. #define SXIO_GETDEBUG       SPXL(0x06)
  140. #define SXIO_DO_RAMTEST     SPXL(0x07)
  141. #define SXIO_SETGSDEBUG     SPXL(0x08)
  142. #define SXIO_GETGSDEBUG     SPXL(0x09)
  143. #define SXIO_GETNPORTS      SPXL(0x0a)
  144. #ifndef SXCTL_MISC_MINOR 
  145. /* Allow others to gather this into "major.h" or something like that */
  146. #define SXCTL_MISC_MINOR    167
  147. #endif
  148. #ifndef SX_NORMAL_MAJOR
  149. /* This allows overriding on the compiler commandline, or in a "major.h" 
  150.    include or something like that */
  151. #define SX_NORMAL_MAJOR  32
  152. #define SX_CALLOUT_MAJOR 33
  153. #endif
  154. #define SX_TYPE_SX          0x01
  155. #define SX_TYPE_SI          0x02
  156. #define SX_TYPE_CF          0x03
  157. #define WINDOW_LEN(board) (IS_CF_BOARD(board)?0x20000:SX_WINDOW_LEN)
  158. /*                         Need a #define for ^^^^^^^ !!! */