n_r3964.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* r3964 linediscipline for linux
  2.  *
  3.  * -----------------------------------------------------------
  4.  * Copyright by
  5.  * Philips Automation Projects
  6.  * Kassel (Germany)
  7.  * http://www.pap-philips.de
  8.  * -----------------------------------------------------------
  9.  * This software may be used and distributed according to the terms of
  10.  * the GNU General Public License, incorporated herein by reference.
  11.  *
  12.  * Author:
  13.  * L. Haag
  14.  *
  15.  * $Log: r3964.h,v $
  16.  * Revision 1.1.1.1  1998/10/13 16:43:14  dwmw2
  17.  * This'll screw the version control
  18.  *
  19.  * Revision 1.6  1998/09/30 00:40:38  dwmw2
  20.  * Updated to use kernel's N_R3964 if available
  21.  *
  22.  * Revision 1.4  1998/04/02 20:29:44  lhaag
  23.  * select, blocking, ...
  24.  *
  25.  * Revision 1.3  1998/02/12 18:58:43  root
  26.  * fixed some memory leaks
  27.  * calculation of checksum characters
  28.  *
  29.  * Revision 1.2  1998/02/07 13:03:17  root
  30.  * ioctl read_telegram
  31.  *
  32.  * Revision 1.1  1998/02/06 19:19:43  root
  33.  * Initial revision
  34.  *
  35.  *
  36.  */
  37. #ifndef __LINUX_N_R3964_H__
  38. #define __LINUX_N_R3964_H__
  39. /* line disciplines for r3964 protocol */
  40. #include <asm/termios.h>
  41. #ifdef __KERNEL__
  42. /*
  43.  * Common ascii handshake characters:
  44.  */
  45. #define STX 0x02
  46. #define ETX 0x03
  47. #define DLE 0x10
  48. #define NAK 0x15
  49. /*
  50.  * Timeouts (msecs/10 msecs per timer interrupt):
  51.  */
  52. #define R3964_TO_QVZ 550/10
  53. #define R3964_TO_ZVZ 220/10
  54. #define R3964_TO_NO_BUF 400/10
  55. #define R3964_NO_TX_ROOM 100/10
  56. #define R3964_TO_RX_PANIC 4000/10
  57. #define R3964_MAX_RETRIES 5
  58. #endif
  59. /*
  60.  * Ioctl-commands
  61.  */
  62. #define R3964_ENABLE_SIGNALS      0x5301
  63. #define R3964_SETPRIORITY         0x5302
  64. #define R3964_USE_BCC             0x5303
  65. #define R3964_READ_TELEGRAM       0x5304
  66. /* Options for R3964_SETPRIORITY */
  67. #define R3964_MASTER   0
  68. #define R3964_SLAVE    1
  69. /* Options for R3964_ENABLE_SIGNALS */
  70. #define R3964_SIG_ACK   0x0001
  71. #define R3964_SIG_DATA  0x0002
  72. #define R3964_SIG_ALL   0x000f
  73. #define R3964_SIG_NONE  0x0000
  74. #define R3964_USE_SIGIO 0x1000
  75. /*
  76.  * r3964 operation states:
  77.  */
  78. #ifdef __KERNEL__
  79. enum { R3964_IDLE, 
  80.    R3964_TX_REQUEST, R3964_TRANSMITTING, 
  81.    R3964_WAIT_ZVZ_BEFORE_TX_RETRY, R3964_WAIT_FOR_TX_ACK,
  82.    R3964_WAIT_FOR_RX_BUF,
  83.    R3964_RECEIVING, R3964_WAIT_FOR_BCC, R3964_WAIT_FOR_RX_REPEAT
  84.    };
  85. /*
  86.  * All open file-handles are 'clients' and are stored in a linked list:
  87.  */
  88. struct r3964_message;
  89. struct r3964_client_info {
  90. pid_t          pid;
  91.     unsigned int   sig_flags;
  92. struct r3964_client_info *next;
  93. struct r3964_message *first_msg;
  94. struct r3964_message *last_msg;
  95. struct r3964_block_header *next_block_to_read;
  96. int            msg_count;
  97. };
  98. #endif
  99. /* types for msg_id: */
  100. enum {R3964_MSG_ACK=1, R3964_MSG_DATA };
  101. #define R3964_MAX_MSG_COUNT 32
  102. /* error codes for client messages */
  103. #define R3964_OK 0        /* no error. */
  104. #define R3964_TX_FAIL -1  /* transmission error, block NOT sent */
  105. #define R3964_OVERFLOW -2 /* msg queue overflow */
  106. /* the client gets this struct when calling read(fd,...): */
  107. struct r3964_client_message {
  108.   int     msg_id;
  109.   int     arg;
  110.   int     error_code;
  111. };
  112. #define R3964_MTU      256
  113. #ifdef __KERNEL__
  114. struct r3964_block_header;
  115. /* internal version of client_message: */
  116. struct r3964_message {
  117.   int     msg_id;
  118.   int     arg;
  119.   int     error_code;
  120.   struct r3964_block_header *block;
  121.   struct r3964_message *next;
  122. };
  123. /*
  124.  * Header of received block in rx_buf/tx_buf:
  125.  */
  126. struct r3964_block_header 
  127. {
  128. unsigned int length;             /* length in chars without header */
  129. unsigned char *data;             /* usually data is located 
  130.                                         immediatly behind this struct */
  131. unsigned int locks;              /* only used in rx_buffer */
  132.   
  133.     struct r3964_block_header *next;
  134. struct r3964_client_info *owner;  /* =NULL in rx_buffer */
  135. };
  136. /*
  137.  * If rx_buf hasn't enough space to store R3964_MTU chars,
  138.  * we will reject all incoming STX-requests by sending NAK.
  139.  */
  140. #define RX_BUF_SIZE    4000
  141. #define TX_BUF_SIZE    4000
  142. #define R3964_MAX_BLOCKS_IN_RX_QUEUE 100
  143. #define R3964_PARITY 0x0001
  144. #define R3964_FRAME  0x0002
  145. #define R3964_OVERRUN 0x0004
  146. #define R3964_UNKNOWN 0x0008
  147. #define R3964_BREAK   0x0010
  148. #define R3964_CHECKSUM 0x0020
  149. #define R3964_ERROR  0x003f
  150. #define R3964_BCC   0x4000
  151. #define R3964_DEBUG 0x8000
  152. struct r3964_info {
  153. struct tty_struct *tty;
  154. unsigned char priority;
  155. unsigned char *rx_buf;            /* ring buffer */
  156. unsigned char *tx_buf;
  157. wait_queue_head_t read_wait;
  158. //struct wait_queue *read_wait;
  159. struct r3964_block_header *rx_first;
  160. struct r3964_block_header *rx_last;
  161. struct r3964_block_header *tx_first;
  162. struct r3964_block_header *tx_last;
  163. unsigned int tx_position;
  164.         unsigned int rx_position;
  165. unsigned char last_rx;
  166. unsigned char bcc;
  167.         unsigned int  blocks_in_rx_queue;
  168.   
  169. struct r3964_client_info *firstClient;
  170. unsigned int state;
  171. unsigned int flags;
  172. int count_down;
  173.     int nRetry;
  174.     struct tq_struct bh_1;
  175.     struct tq_struct bh_2;
  176. };
  177. #endif
  178. #endif