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

Linux/Unix编程

开发平台:

Unix_Linux

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