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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * macserial.h: Definitions for the Macintosh Z8530 serial driver.
  3.  *
  4.  * Adapted from drivers/sbus/char/sunserial.h by Paul Mackerras.
  5.  *
  6.  * Copyright (C) 1996 Paul Mackerras (Paul.Mackerras@cs.anu.edu.au)
  7.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  8.  */
  9. #ifndef _DECSERIAL_H
  10. #define _DECSERIAL_H
  11. #define NUM_ZSREGS    16
  12. struct serial_struct {
  13. int type;
  14. int line;
  15. int port;
  16. int irq;
  17. int flags;
  18. int xmit_fifo_size;
  19. int custom_divisor;
  20. int baud_base;
  21. unsigned short close_delay;
  22. char reserved_char[2];
  23. int hub6;
  24. unsigned short closing_wait; /* time to wait before closing */
  25. unsigned short closing_wait2; /* no longer used... */
  26. int reserved[4];
  27. };
  28. /*
  29.  * For the close wait times, 0 means wait forever for serial port to
  30.  * flush its output.  65535 means don't wait at all.
  31.  */
  32. #define ZILOG_CLOSING_WAIT_INF 0
  33. #define ZILOG_CLOSING_WAIT_NONE 65535
  34. /*
  35.  * Definitions for ZILOG_struct (and serial_struct) flags field
  36.  */
  37. #define ZILOG_HUP_NOTIFY 0x0001 /* Notify getty on hangups and closes
  38.    on the callout port */
  39. #define ZILOG_FOURPORT  0x0002 /* Set OU1, OUT2 per AST Fourport settings */
  40. #define ZILOG_SAK 0x0004 /* Secure Attention Key (Orange book) */
  41. #define ZILOG_SPLIT_TERMIOS 0x0008 /* Separate termios for dialin/callout */
  42. #define ZILOG_SPD_MASK 0x0030
  43. #define ZILOG_SPD_HI 0x0010 /* Use 56000 instead of 38400 bps */
  44. #define ZILOG_SPD_VHI 0x0020  /* Use 115200 instead of 38400 bps */
  45. #define ZILOG_SPD_CUST 0x0030  /* Use user-specified divisor */
  46. #define ZILOG_SKIP_TEST 0x0040 /* Skip UART test during autoconfiguration */
  47. #define ZILOG_AUTO_IRQ  0x0080 /* Do automatic IRQ during autoconfiguration */
  48. #define ZILOG_SESSION_LOCKOUT 0x0100 /* Lock out cua opens based on session */
  49. #define ZILOG_PGRP_LOCKOUT    0x0200 /* Lock out cua opens based on pgrp */
  50. #define ZILOG_CALLOUT_NOHUP   0x0400 /* Don't do hangups for cua device */
  51. #define ZILOG_FLAGS 0x0FFF /* Possible legal ZILOG flags */
  52. #define ZILOG_USR_MASK 0x0430 /* Legal flags that non-privileged
  53.  * users can set or reset */
  54. /* Internal flags used only by kernel/chr_drv/serial.c */
  55. #define ZILOG_INITIALIZED 0x80000000 /* Serial port was initialized */
  56. #define ZILOG_CALLOUT_ACTIVE 0x40000000 /* Call out device is active */
  57. #define ZILOG_NORMAL_ACTIVE 0x20000000 /* Normal device is active */
  58. #define ZILOG_BOOT_AUTOCONF 0x10000000 /* Autoconfigure port on bootup */
  59. #define ZILOG_CLOSING 0x08000000 /* Serial port is closing */
  60. #define ZILOG_CTS_FLOW 0x04000000 /* Do CTS flow control */
  61. #define ZILOG_CHECK_CD 0x02000000 /* i.e., CLOCAL */
  62. /* Software state per channel */
  63. #ifdef __KERNEL__
  64. /*
  65.  * This is our internal structure for each serial port's state.
  66.  *
  67.  * Many fields are paralleled by the structure used by the serial_struct
  68.  * structure.
  69.  *
  70.  * For definitions of the flags field, see tty.h
  71.  */
  72. struct dec_zschannel {
  73. volatile unsigned char *control;
  74. volatile unsigned char *data;
  75. /* Current write register values */
  76. unsigned char curregs[NUM_ZSREGS];
  77. };
  78. struct dec_serial;
  79. struct zs_hook {
  80. int (*init_channel)(struct dec_serial* info);
  81. void (*init_info)(struct dec_serial* info);
  82. void (*rx_char)(unsigned char ch, unsigned char stat);
  83. int  (*poll_rx_char)(struct dec_serial* info);
  84. int  (*poll_tx_char)(struct dec_serial* info,
  85.      unsigned char ch);
  86. unsigned cflags;
  87. };
  88. struct dec_serial {
  89. struct dec_serial *zs_next; /* For IRQ servicing chain */
  90. struct dec_zschannel *zs_channel; /* Channel registers */
  91. struct dec_zschannel *zs_chan_a; /* A side registers */
  92. unsigned char read_reg_zero;
  93. char soft_carrier;  /* Use soft carrier on this channel */
  94. char break_abort;   /* Is serial console in, so process brk/abrt */
  95. struct zs_hook *hook;  /* Hook on this channel */
  96. char is_cons;       /* Is this our console. */
  97. unsigned char tx_active; /* character is being xmitted */
  98. unsigned char tx_stopped; /* output is suspended */
  99. /* We need to know the current clock divisor
  100.  * to read the bps rate the chip has currently
  101.  * loaded.
  102.  */
  103. unsigned char clk_divisor;  /* May be 1, 16, 32, or 64 */
  104. int zs_baud;
  105. char change_needed;
  106. int magic;
  107. int baud_base;
  108. int port;
  109. int irq;
  110. int flags;  /* defined in tty.h */
  111. int type;  /* UART type */
  112. struct tty_struct  *tty;
  113. int read_status_mask;
  114. int ignore_status_mask;
  115. int timeout;
  116. int xmit_fifo_size;
  117. int custom_divisor;
  118. int x_char; /* xon/xoff character */
  119. int close_delay;
  120. unsigned short closing_wait;
  121. unsigned short closing_wait2;
  122. unsigned long event;
  123. unsigned long last_active;
  124. int line;
  125. int count;     /* # of fd on device */
  126. int blocked_open; /* # of blocked opens */
  127. long session; /* Session of opening process */
  128. long pgrp; /* pgrp of opening process */
  129. unsigned char  *xmit_buf;
  130. int xmit_head;
  131. int xmit_tail;
  132. int xmit_cnt;
  133. struct tq_struct tqueue;
  134. struct tq_struct tqueue_hangup;
  135. struct termios normal_termios;
  136. struct termios callout_termios;
  137. wait_queue_head_t open_wait;
  138. wait_queue_head_t close_wait;
  139. };
  140. #define SERIAL_MAGIC 0x5301
  141. /*
  142.  * The size of the serial xmit buffer is 1 page, or 4096 bytes
  143.  */
  144. #define SERIAL_XMIT_SIZE 4096
  145. /*
  146.  * Events are used to schedule things to happen at timer-interrupt
  147.  * time, instead of at rs interrupt time.
  148.  */
  149. #define RS_EVENT_WRITE_WAKEUP 0
  150. #endif /* __KERNEL__ */
  151. /* Conversion routines to/from brg time constants from/to bits
  152.  * per second.
  153.  */
  154. #define BRG_TO_BPS(brg, freq) ((freq) / 2 / ((brg) + 2))
  155. #define BPS_TO_BRG(bps, freq) ((((freq) + (bps)) / (2 * (bps))) - 2)
  156. /* The Zilog register set */
  157. #define FLAG 0x7e
  158. /* Write Register 0 */
  159. #define R0 0 /* Register selects */
  160. #define R1 1
  161. #define R2 2
  162. #define R3 3
  163. #define R4 4
  164. #define R5 5
  165. #define R6 6
  166. #define R7 7
  167. #define R8 8
  168. #define R9 9
  169. #define R10 10
  170. #define R11 11
  171. #define R12 12
  172. #define R13 13
  173. #define R14 14
  174. #define R15 15
  175. #define NULLCODE 0 /* Null Code */
  176. #define POINT_HIGH 0x8 /* Select upper half of registers */
  177. #define RES_EXT_INT 0x10 /* Reset Ext. Status Interrupts */
  178. #define SEND_ABORT 0x18 /* HDLC Abort */
  179. #define RES_RxINT_FC 0x20 /* Reset RxINT on First Character */
  180. #define RES_Tx_P 0x28 /* Reset TxINT Pending */
  181. #define ERR_RES 0x30 /* Error Reset */
  182. #define RES_H_IUS 0x38 /* Reset highest IUS */
  183. #define RES_Rx_CRC 0x40 /* Reset Rx CRC Checker */
  184. #define RES_Tx_CRC 0x80 /* Reset Tx CRC Checker */
  185. #define RES_EOM_L 0xC0 /* Reset EOM latch */
  186. /* Write Register 1 */
  187. #define EXT_INT_ENAB 0x1 /* Ext Int Enable */
  188. #define TxINT_ENAB 0x2 /* Tx Int Enable */
  189. #define PAR_SPEC 0x4 /* Parity is special condition */
  190. #define RxINT_DISAB 0 /* Rx Int Disable */
  191. #define RxINT_FCERR 0x8 /* Rx Int on First Character Only or Error */
  192. #define INT_ALL_Rx 0x10 /* Int on all Rx Characters or error */
  193. #define INT_ERR_Rx 0x18 /* Int on error only */
  194. #define WT_RDY_RT 0x20 /* Wait/Ready on R/T */
  195. #define WT_FN_RDYFN 0x40 /* Wait/FN/Ready FN */
  196. #define WT_RDY_ENAB 0x80 /* Wait/Ready Enable */
  197. /* Write Register #2 (Interrupt Vector) */
  198. /* Write Register 3 */
  199. #define RxENABLE 0x1 /* Rx Enable */
  200. #define SYNC_L_INH 0x2 /* Sync Character Load Inhibit */
  201. #define ADD_SM 0x4 /* Address Search Mode (SDLC) */
  202. #define RxCRC_ENAB 0x8 /* Rx CRC Enable */
  203. #define ENT_HM 0x10 /* Enter Hunt Mode */
  204. #define AUTO_ENAB 0x20 /* Auto Enables */
  205. #define Rx5 0x0 /* Rx 5 Bits/Character */
  206. #define Rx7 0x40 /* Rx 7 Bits/Character */
  207. #define Rx6 0x80 /* Rx 6 Bits/Character */
  208. #define Rx8 0xc0 /* Rx 8 Bits/Character */
  209. #define RxNBITS_MASK 0xc0
  210. /* Write Register 4 */
  211. #define PAR_ENA 0x1 /* Parity Enable */
  212. #define PAR_EVEN 0x2 /* Parity Even/Odd* */
  213. #define SYNC_ENAB 0 /* Sync Modes Enable */
  214. #define SB1 0x4 /* 1 stop bit/char */
  215. #define SB15 0x8 /* 1.5 stop bits/char */
  216. #define SB2 0xc /* 2 stop bits/char */
  217. #define SB_MASK 0xc
  218. #define MONSYNC 0 /* 8 Bit Sync character */
  219. #define BISYNC 0x10 /* 16 bit sync character */
  220. #define SDLC 0x20 /* SDLC Mode (01111110 Sync Flag) */
  221. #define EXTSYNC 0x30 /* External Sync Mode */
  222. #define X1CLK 0x0 /* x1 clock mode */
  223. #define X16CLK 0x40 /* x16 clock mode */
  224. #define X32CLK 0x80 /* x32 clock mode */
  225. #define X64CLK 0xC0 /* x64 clock mode */
  226. #define XCLK_MASK 0xC0
  227. /* Write Register 5 */
  228. #define TxCRC_ENAB 0x1 /* Tx CRC Enable */
  229. #define RTS 0x2 /* RTS */
  230. #define SDLC_CRC 0x4 /* SDLC/CRC-16 */
  231. #define TxENAB 0x8 /* Tx Enable */
  232. #define SND_BRK 0x10 /* Send Break */
  233. #define Tx5 0x0 /* Tx 5 bits (or less)/character */
  234. #define Tx7 0x20 /* Tx 7 bits/character */
  235. #define Tx6 0x40 /* Tx 6 bits/character */
  236. #define Tx8 0x60 /* Tx 8 bits/character */
  237. #define TxNBITS_MASK 0x60
  238. #define DTR 0x80 /* DTR */
  239. /* Write Register 6 (Sync bits 0-7/SDLC Address Field) */
  240. /* Write Register 7 (Sync bits 8-15/SDLC 01111110) */
  241. /* Write Register 8 (transmit buffer) */
  242. /* Write Register 9 (Master interrupt control) */
  243. #define VIS 1 /* Vector Includes Status */
  244. #define NV 2 /* No Vector */
  245. #define DLC 4 /* Disable Lower Chain */
  246. #define MIE 8 /* Master Interrupt Enable */
  247. #define STATHI 0x10 /* Status high */
  248. #define SOFTACK 0x20    /* Software Interrupt Acknowledge */
  249. #define NORESET 0 /* No reset on write to R9 */
  250. #define CHRB 0x40 /* Reset channel B */
  251. #define CHRA 0x80 /* Reset channel A */
  252. #define FHWRES 0xc0 /* Force hardware reset */
  253. /* Write Register 10 (misc control bits) */
  254. #define BIT6 1 /* 6 bit/8bit sync */
  255. #define LOOPMODE 2 /* SDLC Loop mode */
  256. #define ABUNDER 4 /* Abort/flag on SDLC xmit underrun */
  257. #define MARKIDLE 8 /* Mark/flag on idle */
  258. #define GAOP 0x10 /* Go active on poll */
  259. #define NRZ 0 /* NRZ mode */
  260. #define NRZI 0x20 /* NRZI mode */
  261. #define FM1 0x40 /* FM1 (transition = 1) */
  262. #define FM0 0x60 /* FM0 (transition = 0) */
  263. #define CRCPS 0x80 /* CRC Preset I/O */
  264. /* Write Register 11 (Clock Mode control) */
  265. #define TRxCXT 0 /* TRxC = Xtal output */
  266. #define TRxCTC 1 /* TRxC = Transmit clock */
  267. #define TRxCBR 2 /* TRxC = BR Generator Output */
  268. #define TRxCDP 3 /* TRxC = DPLL output */
  269. #define TRxCOI 4 /* TRxC O/I */
  270. #define TCRTxCP 0 /* Transmit clock = RTxC pin */
  271. #define TCTRxCP 8 /* Transmit clock = TRxC pin */
  272. #define TCBR 0x10 /* Transmit clock = BR Generator output */
  273. #define TCDPLL 0x18 /* Transmit clock = DPLL output */
  274. #define RCRTxCP 0 /* Receive clock = RTxC pin */
  275. #define RCTRxCP 0x20 /* Receive clock = TRxC pin */
  276. #define RCBR 0x40 /* Receive clock = BR Generator output */
  277. #define RCDPLL 0x60 /* Receive clock = DPLL output */
  278. #define RTxCX 0x80 /* RTxC Xtal/No Xtal */
  279. /* Write Register 12 (lower byte of baud rate generator time constant) */
  280. /* Write Register 13 (upper byte of baud rate generator time constant) */
  281. /* Write Register 14 (Misc control bits) */
  282. #define BRENABL 1 /* Baud rate generator enable */
  283. #define BRSRC 2 /* Baud rate generator source */
  284. #define DTRREQ 4 /* DTR/Request function */
  285. #define AUTOECHO 8 /* Auto Echo */
  286. #define LOOPBAK 0x10 /* Local loopback */
  287. #define SEARCH 0x20 /* Enter search mode */
  288. #define RMC 0x40 /* Reset missing clock */
  289. #define DISDPLL 0x60 /* Disable DPLL */
  290. #define SSBR 0x80 /* Set DPLL source = BR generator */
  291. #define SSRTxC 0xa0 /* Set DPLL source = RTxC */
  292. #define SFMM 0xc0 /* Set FM mode */
  293. #define SNRZI 0xe0 /* Set NRZI mode */
  294. /* Write Register 15 (external/status interrupt control) */
  295. #define ZCIE 2 /* Zero count IE */
  296. #define DCDIE 8 /* DCD IE */
  297. #define SYNCIE 0x10 /* Sync/hunt IE */
  298. #define CTSIE 0x20 /* CTS IE */
  299. #define TxUIE 0x40 /* Tx Underrun/EOM IE */
  300. #define BRKIE 0x80 /* Break/Abort IE */
  301. /* Read Register 0 */
  302. #define Rx_CH_AV 0x1 /* Rx Character Available */
  303. #define ZCOUNT 0x2 /* Zero count */
  304. #define Tx_BUF_EMP 0x4 /* Tx Buffer empty */
  305. #define DCD 0x8 /* DCD */
  306. #define SYNC_HUNT 0x10 /* Sync/hunt */
  307. #define CTS 0x20 /* CTS */
  308. #define TxEOM 0x40 /* Tx underrun */
  309. #define BRK_ABRT 0x80 /* Break/Abort */
  310. /* Read Register 1 */
  311. #define ALL_SNT 0x1 /* All sent */
  312. /* Residue Data for 8 Rx bits/char programmed */
  313. #define RES3 0x8 /* 0/3 */
  314. #define RES4 0x4 /* 0/4 */
  315. #define RES5 0xc /* 0/5 */
  316. #define RES6 0x2 /* 0/6 */
  317. #define RES7 0xa /* 0/7 */
  318. #define RES8 0x6 /* 0/8 */
  319. #define RES18 0xe /* 1/8 */
  320. #define RES28 0x0 /* 2/8 */
  321. /* Special Rx Condition Interrupts */
  322. #define PAR_ERR 0x10 /* Parity error */
  323. #define Rx_OVR 0x20 /* Rx Overrun Error */
  324. #define FRM_ERR 0x40 /* CRC/Framing Error */
  325. #define END_FR 0x80 /* End of Frame (SDLC) */
  326. /* Read Register 2 (channel b only) - Interrupt vector */
  327. /* Read Register 3 (interrupt pending register) ch a only */
  328. #define CHBEXT 0x1 /* Channel B Ext/Stat IP */
  329. #define CHBTxIP 0x2 /* Channel B Tx IP */
  330. #define CHBRxIP 0x4 /* Channel B Rx IP */
  331. #define CHAEXT 0x8 /* Channel A Ext/Stat IP */
  332. #define CHATxIP 0x10 /* Channel A Tx IP */
  333. #define CHARxIP 0x20 /* Channel A Rx IP */
  334. /* Read Register 8 (receive data register) */
  335. /* Read Register 10  (misc status bits) */
  336. #define ONLOOP 2 /* On loop */
  337. #define LOOPSEND 0x10 /* Loop sending */
  338. #define CLK2MIS 0x40 /* Two clocks missing */
  339. #define CLK1MIS 0x80 /* One clock missing */
  340. /* Read Register 12 (lower byte of baud rate generator constant) */
  341. /* Read Register 13 (upper byte of baud rate generator constant) */
  342. /* Read Register 15 (value of WR 15) */
  343. /* Misc macros */
  344. #define ZS_CLEARERR(channel)    (write_zsreg(channel, 0, ERR_RES))
  345. #define ZS_CLEARFIFO(channel)   do { volatile unsigned char garbage; 
  346.      garbage = read_zsdata(channel); 
  347.      garbage = read_zsdata(channel); 
  348.      garbage = read_zsdata(channel); 
  349. } while(0)
  350. #endif /* !(_DECSERIAL_H) */