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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * dz.h: Serial port driver for DECStations equiped 
  3.  *       with the DZ chipset.
  4.  *
  5.  * Copyright (C) 1998 Olivier A. D. Lebaillif 
  6.  *             
  7.  * Email: olivier.lebaillif@ifrsys.com
  8.  *
  9.  */
  10. #ifndef DZ_SERIAL_H
  11. #define DZ_SERIAL_H
  12. #define SERIAL_MAGIC 0x5301
  13. /*
  14.  * Definitions for the Control and Status Received.
  15.  */
  16. #define DZ_TRDY        0x8000                 /* Transmitter empty */
  17. #define DZ_TIE         0x4000                 /* Transmitter Interrupt Enable */
  18. #define DZ_RDONE       0x0080                 /* Receiver data ready */
  19. #define DZ_RIE         0x0040                 /* Receive Interrupt Enable */
  20. #define DZ_MSE         0x0020                 /* Master Scan Enable */
  21. #define DZ_CLR         0x0010                 /* Master reset */
  22. #define DZ_MAINT       0x0008                 /* Loop Back Mode */
  23. /*
  24.  * Definitions for the Received buffer. 
  25.  */
  26. #define DZ_RBUF_MASK   0x00FF                 /* Data Mask in the Receive Buffer */
  27. #define DZ_LINE_MASK   0x0300                 /* Line Mask in the Receive Buffer */
  28. #define DZ_DVAL        0x8000                 /* Valid Data indicator */
  29. #define DZ_OERR        0x4000                 /* Overrun error indicator */
  30. #define DZ_FERR        0x2000                 /* Frame error indicator */
  31. #define DZ_PERR        0x1000                 /* Parity error indicator */
  32. #define LINE(x) (x & DZ_LINE_MASK) >> 8       /* Get the line number from the input buffer */
  33. #define UCHAR(x) (unsigned char)(x & DZ_RBUF_MASK)
  34. /*
  35.  * Definitions for the Transmit Register.
  36.  */
  37. #define DZ_LINE_KEYBOARD 0x0001
  38. #define DZ_LINE_MOUSE    0x0002
  39. #define DZ_LINE_MODEM    0x0004
  40. #define DZ_LINE_PRINTER  0x0008
  41. #define DZ_MODEM_DTR     0x0400               /* DTR for the modem line (2) */
  42. /*
  43.  * Definitions for the Modem Status Register.
  44.  */
  45. #define DZ_MODEM_DSR     0x0200               /* DSR for the modem line (2) */
  46. /*
  47.  * Definitions for the Transmit Data Register.
  48.  */
  49. #define DZ_BRK0          0x0100               /* Break assertion for line 0 */
  50. #define DZ_BRK1          0x0200               /* Break assertion for line 1 */
  51. #define DZ_BRK2          0x0400               /* Break assertion for line 2 */
  52. #define DZ_BRK3          0x0800               /* Break assertion for line 3 */
  53. /*
  54.  * Definitions for the Line Parameter Register.
  55.  */
  56. #define DZ_KEYBOARD      0x0000               /* line 0 = keyboard */
  57. #define DZ_MOUSE         0x0001               /* line 1 = mouse */
  58. #define DZ_MODEM         0x0002               /* line 2 = modem */
  59. #define DZ_PRINTER       0x0003               /* line 3 = printer */
  60. #define DZ_CSIZE         0x0018               /* Number of bits per byte (mask) */
  61. #define DZ_CS5           0x0000               /* 5 bits per byte */
  62. #define DZ_CS6           0x0008               /* 6 bits per byte */
  63. #define DZ_CS7           0x0010               /* 7 bits per byte */
  64. #define DZ_CS8           0x0018               /* 8 bits per byte */
  65. #define DZ_CSTOPB        0x0020               /* 2 stop bits instead of one */ 
  66. #define DZ_PARENB        0x0040               /* Parity enable */
  67. #define DZ_PARODD        0x0080               /* Odd parity instead of even */
  68. #define DZ_CBAUD         0x0E00               /* Baud Rate (mask) */
  69. #define DZ_B50           0x0000
  70. #define DZ_B75           0x0100
  71. #define DZ_B110          0x0200
  72. #define DZ_B134          0x0300
  73. #define DZ_B150          0x0400
  74. #define DZ_B300          0x0500
  75. #define DZ_B600          0x0600
  76. #define DZ_B1200         0x0700 
  77. #define DZ_B1800         0x0800
  78. #define DZ_B2000         0x0900
  79. #define DZ_B2400         0x0A00
  80. #define DZ_B3600         0x0B00
  81. #define DZ_B4800         0x0C00
  82. #define DZ_B7200         0x0D00
  83. #define DZ_B9600         0x0E00
  84. #define DZ_CREAD         0x1000               /* Enable receiver */
  85. #define DZ_RXENAB        0x1000               /* enable receive char */
  86. /*
  87.  * Addresses for the DZ registers
  88.  */
  89. #define DZ_CSR       0x00            /* Control and Status Register */
  90. #define DZ_RBUF      0x08            /* Receive Buffer */
  91. #define DZ_LPR       0x08            /* Line Parameters Register */
  92. #define DZ_TCR       0x10            /* Transmitter Control Register */
  93. #define DZ_MSR       0x18            /* Modem Status Register */
  94. #define DZ_TDR       0x18            /* Transmit Data Register */
  95. #define DZ_NB_PORT 4
  96. #define DZ_XMIT_SIZE   4096                 /* buffer size */
  97. #define WAKEUP_CHARS   DZ_XMIT_SIZE/4
  98. #define DZ_EVENT_WRITE_WAKEUP   0
  99. #ifndef MIN
  100. #define MIN(a,b)        ((a) < (b) ? (a) : (b))
  101. #define DZ_INITIALIZED       0x80000000 /* Serial port was initialized */
  102. #define DZ_CALLOUT_ACTIVE    0x40000000 /* Call out device is active */
  103. #define DZ_NORMAL_ACTIVE     0x20000000 /* Normal device is active */
  104. #define DZ_BOOT_AUTOCONF     0x10000000 /* Autoconfigure port on bootup */
  105. #define DZ_CLOSING           0x08000000 /* Serial port is closing */
  106. #define DZ_CTS_FLOW          0x04000000 /* Do CTS flow control */
  107. #define DZ_CHECK_CD          0x02000000 /* i.e., CLOCAL */
  108. #define DZ_CLOSING_WAIT_INF  0
  109. #define DZ_CLOSING_WAIT_NONE 65535
  110. #define DZ_SPLIT_TERMIOS   0x0008 /* Separate termios for dialin/callout */
  111. #define DZ_SESSION_LOCKOUT 0x0100 /* Lock out cua opens based on session */
  112. #define DZ_PGRP_LOCKOUT    0x0200 /* Lock out cua opens based on pgrp */
  113. struct dz_serial {
  114.   unsigned                port;                /* base address for the port */
  115.   int                     type;
  116.   int                     flags; 
  117.   int                     baud_base;
  118.   int                     blocked_open;
  119.   unsigned short          close_delay;
  120.   unsigned short          closing_wait;
  121.   unsigned short          line;                /* port/line number */
  122.   unsigned short          cflags;              /* line configuration flag */
  123.   unsigned short          x_char;              /* xon/xoff character */
  124.   unsigned short          read_status_mask;    /* mask for read condition */
  125.   unsigned short          ignore_status_mask;  /* mask for ignore condition */
  126.   unsigned long           event;               /* mask used in BH */
  127.   unsigned char           *xmit_buf;           /* Transmit buffer */
  128.   int                     xmit_head;           /* Position of the head */
  129.   int                     xmit_tail;           /* Position of the tail */
  130.   int                     xmit_cnt;            /* Count of the chars in the buffer */
  131.   int                     count;               /* indicates how many times it has been opened */
  132.   int                     magic;
  133.   struct async_icount     icount;              /* keep track of things ... */
  134.   struct tty_struct       *tty;                /* tty associated */
  135.   struct tq_struct        tqueue;              /* Queue for BH */
  136.   struct tq_struct        tqueue_hangup;
  137.   struct termios          normal_termios;
  138.   struct termios          callout_termios;
  139.   wait_queue_head_t       open_wait;
  140.   wait_queue_head_t       close_wait;
  141.   long                    session;             /* Session of opening process */
  142.   long                    pgrp;                /* pgrp of opening process */
  143.   unsigned char           is_console;          /* flag indicating a serial console */
  144.   unsigned char           is_initialized;
  145. };
  146. static struct dz_serial multi[DZ_NB_PORT];    /* Four serial lines in the DZ chip */
  147. static struct dz_serial *dz_console;
  148. static struct tty_driver serial_driver, callout_driver;
  149. static struct tty_struct *serial_table[DZ_NB_PORT];
  150. static struct termios *serial_termios[DZ_NB_PORT];
  151. static struct termios *serial_termios_locked[DZ_NB_PORT];
  152. static int serial_refcount;
  153. /*
  154.  * tmp_buf is used as a temporary buffer by serial_write.  We need to
  155.  * lock it in case the copy_from_user blocks while swapping in a page,
  156.  * and some other program tries to do a serial write at the same time.
  157.  * Since the lock will only come under contention when the system is
  158.  * swapping and available memory is low, it makes sense to share one
  159.  * buffer across all the serial ports, since it significantly saves
  160.  * memory if large numbers of serial ports are open.
  161.  */
  162. static unsigned char *tmp_buf;
  163. static DECLARE_MUTEX(tmp_buf_sem);
  164. static char *dz_name = "DECstation DZ serial driver version ";
  165. static char *dz_version = "1.02";
  166. static inline unsigned short dz_in (struct dz_serial *, unsigned);
  167. static inline void dz_out (struct dz_serial *, unsigned, unsigned short);
  168. static inline void dz_sched_event (struct dz_serial *, int);
  169. static inline void receive_chars (struct dz_serial *);
  170. static inline void transmit_chars (struct dz_serial *);
  171. static inline void check_modem_status (struct dz_serial *);
  172. static void dz_stop (struct tty_struct *);
  173. static void dz_start (struct tty_struct *);
  174. static void dz_interrupt (int, void *, struct pt_regs *);
  175. static void do_serial_bh (void);
  176. static void do_softint (void *);
  177. static void do_serial_hangup (void *);
  178. static void change_speed (struct dz_serial *);
  179. static void dz_flush_chars (struct tty_struct *);
  180. static void dz_console_print (struct console *, const char *, unsigned int);
  181. static void dz_flush_buffer (struct tty_struct *);
  182. static void dz_throttle (struct tty_struct *);
  183. static void dz_unthrottle (struct tty_struct *);
  184. static void dz_send_xchar (struct tty_struct *, char);
  185. static void shutdown (struct dz_serial *);
  186. static void send_break (struct dz_serial *, int);
  187. static void dz_set_termios (struct tty_struct *, struct termios *);
  188. static void dz_close (struct tty_struct *, struct file *);
  189. static void dz_hangup (struct tty_struct *);
  190. static void show_serial_version (void);
  191. static int dz_write (struct tty_struct *, int, const unsigned char *, int);
  192. static int dz_write_room (struct tty_struct *);
  193. static int dz_chars_in_buffer (struct tty_struct *);
  194. static int startup (struct dz_serial *);
  195. static int get_serial_info (struct dz_serial *, struct serial_struct *);
  196. static int set_serial_info (struct dz_serial *, struct serial_struct *);
  197. static int get_lsr_info (struct dz_serial *, unsigned int *);
  198. static int dz_ioctl (struct tty_struct *, struct file *, unsigned int, unsigned long);
  199. static int block_til_ready (struct tty_struct *, struct file *, struct dz_serial *);
  200. static int dz_open (struct tty_struct *, struct file *);
  201. #ifdef MODULE
  202. int init_module (void)
  203. void cleanup_module (void)
  204. #endif
  205. #endif
  206. #endif /* DZ_SERIAL_H */