cyclades.h 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784
  1. /* $Revision: 3.0 $$Date: 1998/11/02 14:20:59 $
  2. * linux/include/linux/cyclades.h
  3. *
  4. * This file was initially written by
  5. * Randolph Bentson <bentson@grieg.seaslug.org> and is maintained by
  6. * Ivan Passos <ivan@cyclades.com>.
  7. *
  8. * This file contains the general definitions for the cyclades.c driver
  9. *$Log: cyclades.h,v $
  10. *Revision 3.1 2002/01/29 11:36:16 henrique
  11. *added throttle field on struct cyclades_port to indicate whether the
  12. *port is throttled or not
  13. *
  14. *Revision 3.1 2000/04/19 18:52:52 ivan
  15. *converted address fields to unsigned long and added fields for physical
  16. *addresses on cyclades_card structure;
  17. *
  18. *Revision 3.0 1998/11/02 14:20:59 ivan
  19. *added nports field on cyclades_card structure;
  20. *
  21. *Revision 2.5 1998/08/03 16:57:01 ivan
  22. *added cyclades_idle_stats structure;
  23. *
  24. *Revision 2.4 1998/06/01 12:09:53 ivan
  25. *removed closing_wait2 from cyclades_port structure;
  26. *
  27. *Revision 2.3 1998/03/16 18:01:12 ivan
  28. *changes in the cyclades_port structure to get it closer to the
  29. *standard serial port structure;
  30. *added constants for new ioctls;
  31. *
  32. *Revision 2.2 1998/02/17 16:50:00 ivan
  33. *changes in the cyclades_port structure (addition of shutdown_wait and
  34. *chip_rev variables);
  35. *added constants for new ioctls and for CD1400 rev. numbers.
  36. *
  37. *Revision 2.1 1997/10/24 16:03:00 ivan
  38. *added rflow (which allows enabling the CD1400 special flow control
  39. *feature) and rtsdtr_inv (which allows DTR/RTS pin inversion) to
  40. *cyclades_port structure;
  41. *added Alpha support
  42. *
  43. *Revision 2.0 1997/06/30 10:30:00 ivan
  44. *added some new doorbell command constants related to IOCTLW and
  45. *UART error signaling
  46. *
  47. *Revision 1.8 1997/06/03 15:30:00 ivan
  48. *added constant ZFIRM_HLT
  49. *added constant CyPCI_Ze_win ( = 2 * Cy_PCI_Zwin)
  50. *
  51. *Revision 1.7 1997/03/26 10:30:00 daniel
  52. *new entries at the end of cyclades_port struct to reallocate
  53. *variables illegally allocated within card memory.
  54. *
  55. *Revision 1.6 1996/09/09 18:35:30 bentson
  56. *fold in changes for Cyclom-Z -- including structures for
  57. *communicating with board as well modest changes to original
  58. *structures to support new features.
  59. *
  60. *Revision 1.5 1995/11/13 21:13:31 bentson
  61. *changes suggested by Michael Chastain <mec@duracef.shout.net>
  62. *to support use of this file in non-kernel applications
  63. *
  64. *
  65. */
  66. #ifndef _LINUX_CYCLADES_H
  67. #define _LINUX_CYCLADES_H
  68. #include <linux/types.h>
  69. struct cyclades_monitor {
  70. unsigned long int_count;
  71. unsigned long char_count;
  72. unsigned long char_max;
  73. unsigned long char_last;
  74. };
  75. /*
  76. * These stats all reflect activity since the device was last initialized.
  77. * (i.e., since the port was opened with no other processes already having it
  78. * open)
  79. */
  80. struct cyclades_idle_stats {
  81. __kernel_time_t in_use; /* Time device has been in use (secs) */
  82. __kernel_time_t recv_idle; /* Time since last char received (secs) */
  83. __kernel_time_t xmit_idle; /* Time since last char transmitted (secs) */
  84. unsigned long recv_bytes; /* Bytes received */
  85. unsigned long xmit_bytes; /* Bytes transmitted */
  86. unsigned long overruns; /* Input overruns */
  87. unsigned long frame_errs; /* Input framing errors */
  88. unsigned long parity_errs; /* Input parity errors */
  89. };
  90. #define CYCLADES_MAGIC 0x4359
  91. #define CYGETMON 0x435901
  92. #define CYGETTHRESH 0x435902
  93. #define CYSETTHRESH 0x435903
  94. #define CYGETDEFTHRESH 0x435904
  95. #define CYSETDEFTHRESH 0x435905
  96. #define CYGETTIMEOUT 0x435906
  97. #define CYSETTIMEOUT 0x435907
  98. #define CYGETDEFTIMEOUT 0x435908
  99. #define CYSETDEFTIMEOUT 0x435909
  100. #define CYSETRFLOW 0x43590a
  101. #define CYGETRFLOW 0x43590b
  102. #define CYSETRTSDTR_INV 0x43590c
  103. #define CYGETRTSDTR_INV 0x43590d
  104. #define CYZSETPOLLCYCLE 0x43590e
  105. #define CYZGETPOLLCYCLE 0x43590f
  106. #define CYGETCD1400VER 0x435910
  107. #define CYSETWAIT 0x435912
  108. #define CYGETWAIT 0x435913
  109. /*************** CYCLOM-Z ADDITIONS ***************/
  110. #define CZIOC ('M' << 8)
  111. #define CZ_NBOARDS (CZIOC|0xfa)
  112. #define CZ_BOOT_START (CZIOC|0xfb)
  113. #define CZ_BOOT_DATA (CZIOC|0xfc)
  114. #define CZ_BOOT_END (CZIOC|0xfd)
  115. #define CZ_TEST (CZIOC|0xfe)
  116. #define CZ_DEF_POLL (HZ/25)
  117. #define MAX_BOARD 4 /* Max number of boards */
  118. #define MAX_DEV 256 /* Max number of ports total */
  119. #define CYZ_MAX_SPEED 921600
  120. #define CYZ_FIFO_SIZE 16
  121. #define CYZ_BOOT_NWORDS 0x100
  122. struct CYZ_BOOT_CTRL {
  123. unsigned short nboard;
  124. int status[MAX_BOARD];
  125. int nchannel[MAX_BOARD];
  126. int fw_rev[MAX_BOARD];
  127. unsigned long offset;
  128. unsigned long data[CYZ_BOOT_NWORDS];
  129. };
  130. #ifndef DP_WINDOW_SIZE
  131. /* #include "cyclomz.h" */
  132. /****************** ****************** *******************/
  133. /*
  134. * The data types defined below are used in all ZFIRM interface
  135. * data structures. They accomodate differences between HW
  136. * architectures and compilers.
  137. */
  138. typedef __u64 ucdouble; /* 64 bits, unsigned */
  139. typedef __u32 uclong; /* 32 bits, unsigned */
  140. typedef __u16 ucshort; /* 16 bits, unsigned */
  141. typedef __u8 ucchar; /* 8 bits, unsigned */
  142. /*
  143. * Memory Window Sizes
  144. */
  145. #define DP_WINDOW_SIZE (0x00080000) /* window size 512 Kb */
  146. #define ZE_DP_WINDOW_SIZE (0x00100000) /* window size 1 Mb (Ze and
  147. 8Zo V.2 */
  148. #define CTRL_WINDOW_SIZE (0x00000080) /* runtime regs 128 bytes */
  149. /*
  150. * CUSTOM_REG - Cyclom-Z/PCI Custom Registers Set. The driver
  151. * normally will access only interested on the fpga_id, fpga_version,
  152. * start_cpu and stop_cpu.
  153. */
  154. struct CUSTOM_REG {
  155. __u32 fpga_id; /* FPGA Identification Register */
  156. __u32 fpga_version; /* FPGA Version Number Register */
  157. __u32 cpu_start; /* CPU start Register (write) */
  158. __u32 cpu_stop; /* CPU stop Register (write) */
  159. __u32 misc_reg; /* Miscellaneous Register */
  160. __u32 idt_mode; /* IDT mode Register */
  161. __u32 uart_irq_status; /* UART IRQ status Register */
  162. __u32 clear_timer0_irq; /* Clear timer interrupt Register */
  163. __u32 clear_timer1_irq; /* Clear timer interrupt Register */
  164. __u32 clear_timer2_irq; /* Clear timer interrupt Register */
  165. __u32 test_register; /* Test Register */
  166. __u32 test_count; /* Test Count Register */
  167. __u32 timer_select; /* Timer select register */
  168. __u32 pr_uart_irq_status; /* Prioritized UART IRQ stat Reg */
  169. __u32 ram_wait_state; /* RAM wait-state Register */
  170. __u32 uart_wait_state; /* UART wait-state Register */
  171. __u32 timer_wait_state; /* timer wait-state Register */
  172. __u32 ack_wait_state; /* ACK wait State Register */
  173. };
  174. /*
  175. * RUNTIME_9060 - PLX PCI9060ES local configuration and shared runtime
  176. * registers. This structure can be used to access the 9060 registers
  177. * (memory mapped).
  178. */
  179. struct RUNTIME_9060 {
  180. __u32 loc_addr_range; /* 00h - Local Address Range */
  181. __u32 loc_addr_base; /* 04h - Local Address Base */
  182. __u32 loc_arbitr; /* 08h - Local Arbitration */
  183. __u32 endian_descr; /* 0Ch - Big/Little Endian Descriptor */
  184. __u32 loc_rom_range; /* 10h - Local ROM Range */
  185. __u32 loc_rom_base; /* 14h - Local ROM Base */
  186. __u32 loc_bus_descr; /* 18h - Local Bus descriptor */
  187. __u32 loc_range_mst; /* 1Ch - Local Range for Master to PCI */
  188. __u32 loc_base_mst; /* 20h - Local Base for Master PCI */
  189. __u32 loc_range_io; /* 24h - Local Range for Master IO */
  190. __u32 pci_base_mst; /* 28h - PCI Base for Master PCI */
  191. __u32 pci_conf_io; /* 2Ch - PCI configuration for Master IO */
  192. __u32 filler1; /* 30h */
  193. __u32 filler2; /* 34h */
  194. __u32 filler3; /* 38h */
  195. __u32 filler4; /* 3Ch */
  196. __u32 mail_box_0; /* 40h - Mail Box 0 */
  197. __u32 mail_box_1; /* 44h - Mail Box 1 */
  198. __u32 mail_box_2; /* 48h - Mail Box 2 */
  199. __u32 mail_box_3; /* 4Ch - Mail Box 3 */
  200. __u32 filler5; /* 50h */
  201. __u32 filler6; /* 54h */
  202. __u32 filler7; /* 58h */
  203. __u32 filler8; /* 5Ch */
  204. __u32 pci_doorbell; /* 60h - PCI to Local Doorbell */
  205. __u32 loc_doorbell; /* 64h - Local to PCI Doorbell */
  206. __u32 intr_ctrl_stat; /* 68h - Interrupt Control/Status */
  207. __u32 init_ctrl; /* 6Ch - EEPROM control, Init Control, etc */
  208. };
  209. /* Values for the Local Base Address re-map register */
  210. #define WIN_RAM 0x00000001L /* set the sliding window to RAM */
  211. #define WIN_CREG 0x14000001L /* set the window to custom Registers */
  212. /* Values timer select registers */
  213. #define TIMER_BY_1M 0x00 /* clock divided by 1M */
  214. #define TIMER_BY_256K 0x01 /* clock divided by 256k */
  215. #define TIMER_BY_128K 0x02 /* clock divided by 128k */
  216. #define TIMER_BY_32K 0x03 /* clock divided by 32k */
  217. /****************** ****************** *******************/
  218. #endif
  219. #ifndef ZFIRM_ID
  220. /* #include "zfwint.h" */
  221. /****************** ****************** *******************/
  222. /*
  223. * This file contains the definitions for interfacing with the
  224. * Cyclom-Z ZFIRM Firmware.
  225. */
  226. /* General Constant definitions */
  227. #define MAX_CHAN 64 /* max number of channels per board */
  228. /* firmware id structure (set after boot) */
  229. #define ID_ADDRESS 0x00000180L /* signature/pointer address */
  230. #define ZFIRM_ID 0x5557465AL /* ZFIRM/U signature */
  231. #define ZFIRM_HLT 0x59505B5CL /* ZFIRM needs external power supply */
  232. #define ZFIRM_RST 0x56040674L /* RST signal (due to FW reset) */
  233. #define ZF_TINACT_DEF 1000 /* default inactivity timeout
  234. (1000 ms) */
  235. #define ZF_TINACT ZF_TINACT_DEF
  236. struct FIRM_ID {
  237. __u32 signature; /* ZFIRM/U signature */
  238. __u32 zfwctrl_addr; /* pointer to ZFW_CTRL structure */
  239. };
  240. /* Op. System id */
  241. #define C_OS_LINUX 0x00000030 /* generic Linux system */
  242. /* channel op_mode */
  243. #define C_CH_DISABLE 0x00000000 /* channel is disabled */
  244. #define C_CH_TXENABLE 0x00000001 /* channel Tx enabled */
  245. #define C_CH_RXENABLE 0x00000002 /* channel Rx enabled */
  246. #define C_CH_ENABLE 0x00000003 /* channel Tx/Rx enabled */
  247. #define C_CH_LOOPBACK 0x00000004 /* Loopback mode */
  248. /* comm_parity - parity */
  249. #define C_PR_NONE 0x00000000 /* None */
  250. #define C_PR_ODD 0x00000001 /* Odd */
  251. #define C_PR_EVEN 0x00000002 /* Even */
  252. #define C_PR_MARK 0x00000004 /* Mark */
  253. #define C_PR_SPACE 0x00000008 /* Space */
  254. #define C_PR_PARITY 0x000000ff
  255. #define C_PR_DISCARD 0x00000100 /* discard char with frame/par error */
  256. #define C_PR_IGNORE 0x00000200 /* ignore frame/par error */
  257. /* comm_data_l - data length and stop bits */
  258. #define C_DL_CS5 0x00000001
  259. #define C_DL_CS6 0x00000002
  260. #define C_DL_CS7 0x00000004
  261. #define C_DL_CS8 0x00000008
  262. #define C_DL_CS 0x0000000f
  263. #define C_DL_1STOP 0x00000010
  264. #define C_DL_15STOP 0x00000020
  265. #define C_DL_2STOP 0x00000040
  266. #define C_DL_STOP 0x000000f0
  267. /* interrupt enabling/status */
  268. #define C_IN_DISABLE 0x00000000 /* zero, disable interrupts */
  269. #define C_IN_TXBEMPTY 0x00000001 /* tx buffer empty */
  270. #define C_IN_TXLOWWM 0x00000002 /* tx buffer below LWM */
  271. #define C_IN_RXHIWM 0x00000010 /* rx buffer above HWM */
  272. #define C_IN_RXNNDT 0x00000020 /* rx no new data timeout */
  273. #define C_IN_MDCD 0x00000100 /* modem DCD change */
  274. #define C_IN_MDSR 0x00000200 /* modem DSR change */
  275. #define C_IN_MRI 0x00000400 /* modem RI change */
  276. #define C_IN_MCTS 0x00000800 /* modem CTS change */
  277. #define C_IN_RXBRK 0x00001000 /* Break received */
  278. #define C_IN_PR_ERROR 0x00002000 /* parity error */
  279. #define C_IN_FR_ERROR 0x00004000 /* frame error */
  280. #define C_IN_OVR_ERROR 0x00008000 /* overrun error */
  281. #define C_IN_RXOFL 0x00010000 /* RX buffer overflow */
  282. #define C_IN_IOCTLW 0x00020000 /* I/O control w/ wait */
  283. #define C_IN_MRTS 0x00040000 /* modem RTS drop */
  284. #define C_IN_ICHAR 0x00080000
  285. /* flow control */
  286. #define C_FL_OXX 0x00000001 /* output Xon/Xoff flow control */
  287. #define C_FL_IXX 0x00000002 /* output Xon/Xoff flow control */
  288. #define C_FL_OIXANY 0x00000004 /* output Xon/Xoff (any xon) */
  289. #define C_FL_SWFLOW 0x0000000f
  290. /* flow status */
  291. #define C_FS_TXIDLE 0x00000000 /* no Tx data in the buffer or UART */
  292. #define C_FS_SENDING 0x00000001 /* UART is sending data */
  293. #define C_FS_SWFLOW 0x00000002 /* Tx is stopped by received Xoff */
  294. /* rs_control/rs_status RS-232 signals */
  295. #define C_RS_PARAM 0x80000000 /* Indicates presence of parameter in
  296. IOCTLM command */
  297. #define C_RS_RTS 0x00000001 /* RTS */
  298. #define C_RS_DTR 0x00000004 /* DTR */
  299. #define C_RS_DCD 0x00000100 /* CD */
  300. #define C_RS_DSR 0x00000200 /* DSR */
  301. #define C_RS_RI 0x00000400 /* RI */
  302. #define C_RS_CTS 0x00000800 /* CTS */
  303. /* commands Host <-> Board */
  304. #define C_CM_RESET 0x01 /* reset/flush buffers */
  305. #define C_CM_IOCTL 0x02 /* re-read CH_CTRL */
  306. #define C_CM_IOCTLW 0x03 /* re-read CH_CTRL, intr when done */
  307. #define C_CM_IOCTLM 0x04 /* RS-232 outputs change */
  308. #define C_CM_SENDXOFF 0x10 /* send Xoff */
  309. #define C_CM_SENDXON 0x11 /* send Xon */
  310. #define C_CM_CLFLOW 0x12 /* Clear flow control (resume) */
  311. #define C_CM_SENDBRK 0x41 /* send break */
  312. #define C_CM_INTBACK 0x42 /* Interrupt back */
  313. #define C_CM_SET_BREAK 0x43 /* Tx break on */
  314. #define C_CM_CLR_BREAK 0x44 /* Tx break off */
  315. #define C_CM_CMD_DONE 0x45 /* Previous command done */
  316. #define C_CM_INTBACK2 0x46 /* Alternate Interrupt back */
  317. #define C_CM_TINACT 0x51 /* set inactivity detection */
  318. #define C_CM_IRQ_ENBL 0x52 /* enable generation of interrupts */
  319. #define C_CM_IRQ_DSBL 0x53 /* disable generation of interrupts */
  320. #define C_CM_ACK_ENBL 0x54 /* enable acknowledged interrupt mode */
  321. #define C_CM_ACK_DSBL 0x55 /* disable acknowledged intr mode */
  322. #define C_CM_FLUSH_RX 0x56 /* flushes Rx buffer */
  323. #define C_CM_FLUSH_TX 0x57 /* flushes Tx buffer */
  324. #define C_CM_Q_ENABLE 0x58 /* enables queue access from the
  325. driver */
  326. #define C_CM_Q_DISABLE 0x59 /* disables queue access from the
  327. driver */
  328. #define C_CM_TXBEMPTY 0x60 /* Tx buffer is empty */
  329. #define C_CM_TXLOWWM 0x61 /* Tx buffer low water mark */
  330. #define C_CM_RXHIWM 0x62 /* Rx buffer high water mark */
  331. #define C_CM_RXNNDT 0x63 /* rx no new data timeout */
  332. #define C_CM_TXFEMPTY 0x64
  333. #define C_CM_ICHAR 0x65
  334. #define C_CM_MDCD 0x70 /* modem DCD change */
  335. #define C_CM_MDSR 0x71 /* modem DSR change */
  336. #define C_CM_MRI 0x72 /* modem RI change */
  337. #define C_CM_MCTS 0x73 /* modem CTS change */
  338. #define C_CM_MRTS 0x74 /* modem RTS drop */
  339. #define C_CM_RXBRK 0x84 /* Break received */
  340. #define C_CM_PR_ERROR 0x85 /* Parity error */
  341. #define C_CM_FR_ERROR 0x86 /* Frame error */
  342. #define C_CM_OVR_ERROR 0x87 /* Overrun error */
  343. #define C_CM_RXOFL 0x88 /* RX buffer overflow */
  344. #define C_CM_CMDERROR 0x90 /* command error */
  345. #define C_CM_FATAL 0x91 /* fatal error */
  346. #define C_CM_HW_RESET 0x92 /* reset board */
  347. /*
  348. * CH_CTRL - This per port structure contains all parameters
  349. * that control an specific port. It can be seen as the
  350. * configuration registers of a "super-serial-controller".
  351. */
  352. struct CH_CTRL {
  353. __u32 op_mode; /* operation mode */
  354. __u32 intr_enable; /* interrupt masking */
  355. __u32 sw_flow; /* SW flow control */
  356. __u32 flow_status; /* output flow status */
  357. __u32 comm_baud; /* baud rate - numerically specified */
  358. __u32 comm_parity; /* parity */
  359. __u32 comm_data_l; /* data length/stop */
  360. __u32 comm_flags; /* other flags */
  361. __u32 hw_flow; /* HW flow control */
  362. __u32 rs_control; /* RS-232 outputs */
  363. __u32 rs_status; /* RS-232 inputs */
  364. __u32 flow_xon; /* xon char */
  365. __u32 flow_xoff; /* xoff char */
  366. __u32 hw_overflow; /* hw overflow counter */
  367. __u32 sw_overflow; /* sw overflow counter */
  368. __u32 comm_error; /* frame/parity error counter */
  369. __u32 ichar;
  370. __u32 filler[7];
  371. };
  372. /*
  373. * BUF_CTRL - This per channel structure contains
  374. * all Tx and Rx buffer control for a given channel.
  375. */
  376. struct BUF_CTRL {
  377. __u32 flag_dma; /* buffers are in Host memory */
  378. __u32 tx_bufaddr; /* address of the tx buffer */
  379. __u32 tx_bufsize; /* tx buffer size */
  380. __u32 tx_threshold; /* tx low water mark */
  381. __u32 tx_get; /* tail index tx buf */
  382. __u32 tx_put; /* head index tx buf */
  383. __u32 rx_bufaddr; /* address of the rx buffer */
  384. __u32 rx_bufsize; /* rx buffer size */
  385. __u32 rx_threshold; /* rx high water mark */
  386. __u32 rx_get; /* tail index rx buf */
  387. __u32 rx_put; /* head index rx buf */
  388. __u32 filler[5]; /* filler to align structures */
  389. };
  390. /*
  391. * BOARD_CTRL - This per board structure contains all global
  392. * control fields related to the board.
  393. */
  394. struct BOARD_CTRL {
  395. /* static info provided by the on-board CPU */
  396. __u32 n_channel; /* number of channels */
  397. __u32 fw_version; /* firmware version */
  398. /* static info provided by the driver */
  399. __u32 op_system; /* op_system id */
  400. __u32 dr_version; /* driver version */
  401. /* board control area */
  402. __u32 inactivity; /* inactivity control */
  403. /* host to FW commands */
  404. __u32 hcmd_channel; /* channel number */
  405. __u32 hcmd_param; /* pointer to parameters */
  406. /* FW to Host commands */
  407. __u32 fwcmd_channel; /* channel number */
  408. __u32 fwcmd_param; /* pointer to parameters */
  409. __u32 zf_int_queue_addr; /* offset for INT_QUEUE structure */
  410. /* filler so the structures are aligned */
  411. __u32 filler[6];
  412. };
  413. /* Host Interrupt Queue */
  414. #define QUEUE_SIZE (10*MAX_CHAN)
  415. struct INT_QUEUE {
  416. unsigned char intr_code[QUEUE_SIZE];
  417. unsigned long channel[QUEUE_SIZE];
  418. unsigned long param[QUEUE_SIZE];
  419. unsigned long put;
  420. unsigned long get;
  421. };
  422. /*
  423. * ZFW_CTRL - This is the data structure that includes all other
  424. * data structures used by the Firmware.
  425. */
  426. struct ZFW_CTRL {
  427. struct BOARD_CTRL board_ctrl;
  428. struct CH_CTRL ch_ctrl[MAX_CHAN];
  429. struct BUF_CTRL buf_ctrl[MAX_CHAN];
  430. };
  431. /****************** ****************** *******************/
  432. #endif
  433. #ifdef __KERNEL__
  434. /* Per card data structure */
  435. struct cyclades_card {
  436. void __iomem *base_addr;
  437. void __iomem *ctl_addr;
  438. int irq;
  439. unsigned int num_chips; /* 0 if card absent, -1 if Z/PCI, else Y */
  440. unsigned int first_line; /* minor number of first channel on card */
  441. unsigned int nports; /* Number of ports in the card */
  442. int bus_index; /* address shift - 0 for ISA, 1 for PCI */
  443. int intr_enabled; /* FW Interrupt flag - 0 disabled, 1 enabled */
  444. spinlock_t card_lock;
  445. struct cyclades_port *ports;
  446. };
  447. /***************************************
  448. * Memory access functions/macros *
  449. * (required to support Alpha systems) *
  450. ***************************************/
  451. #define cy_writeb(port,val) do { writeb((val), (port)); mb(); } while (0)
  452. #define cy_writew(port,val) do { writew((val), (port)); mb(); } while (0)
  453. #define cy_writel(port,val) do { writel((val), (port)); mb(); } while (0)
  454. /*
  455. * Statistics counters
  456. */
  457. struct cyclades_icount {
  458. __u32 cts, dsr, rng, dcd, tx, rx;
  459. __u32 frame, parity, overrun, brk;
  460. __u32 buf_overrun;
  461. };
  462. /*
  463. * This is our internal structure for each serial port's state.
  464. *
  465. * Many fields are paralleled by the structure used by the serial_struct
  466. * structure.
  467. *
  468. * For definitions of the flags field, see tty.h
  469. */
  470. struct cyclades_port {
  471. int magic;
  472. struct tty_port port;
  473. struct cyclades_card *card;
  474. int line;
  475. int flags; /* defined in tty.h */
  476. int type; /* UART type */
  477. int read_status_mask;
  478. int ignore_status_mask;
  479. int timeout;
  480. int xmit_fifo_size;
  481. int cor1,cor2,cor3,cor4,cor5;
  482. int tbpr,tco,rbpr,rco;
  483. int baud;
  484. int rflow;
  485. int rtsdtr_inv;
  486. int chip_rev;
  487. int custom_divisor;
  488. u8 x_char; /* to be pushed out ASAP */
  489. int breakon;
  490. int breakoff;
  491. int xmit_head;
  492. int xmit_tail;
  493. int xmit_cnt;
  494. int default_threshold;
  495. int default_timeout;
  496. unsigned long rflush_count;
  497. struct cyclades_monitor mon;
  498. struct cyclades_idle_stats idle_stats;
  499. struct cyclades_icount icount;
  500. struct completion shutdown_wait;
  501. wait_queue_head_t delta_msr_wait;
  502. int throttle;
  503. };
  504. #define CLOSING_WAIT_DELAY 30*HZ
  505. #define CY_CLOSING_WAIT_NONE ASYNC_CLOSING_WAIT_NONE
  506. #define CY_CLOSING_WAIT_INF ASYNC_CLOSING_WAIT_INF
  507. #define CyMAX_CHIPS_PER_CARD 8
  508. #define CyMAX_CHAR_FIFO 12
  509. #define CyPORTS_PER_CHIP 4
  510. #define CD1400_MAX_SPEED 115200
  511. #define CyISA_Ywin 0x2000
  512. #define CyPCI_Ywin 0x4000
  513. #define CyPCI_Yctl 0x80
  514. #define CyPCI_Zctl CTRL_WINDOW_SIZE
  515. #define CyPCI_Zwin 0x80000
  516. #define CyPCI_Ze_win (2 * CyPCI_Zwin)
  517. #define PCI_DEVICE_ID_MASK 0x06
  518. /**** CD1400 registers ****/
  519. #define CD1400_REV_G 0x46
  520. #define CD1400_REV_J 0x48
  521. #define CyRegSize 0x0400
  522. #define Cy_HwReset 0x1400
  523. #define Cy_ClrIntr 0x1800
  524. #define Cy_EpldRev 0x1e00
  525. /* Global Registers */
  526. #define CyGFRCR (0x40*2)
  527. #define CyRevE (44)
  528. #define CyCAR (0x68*2)
  529. #define CyCHAN_0 (0x00)
  530. #define CyCHAN_1 (0x01)
  531. #define CyCHAN_2 (0x02)
  532. #define CyCHAN_3 (0x03)
  533. #define CyGCR (0x4B*2)
  534. #define CyCH0_SERIAL (0x00)
  535. #define CyCH0_PARALLEL (0x80)
  536. #define CySVRR (0x67*2)
  537. #define CySRModem (0x04)
  538. #define CySRTransmit (0x02)
  539. #define CySRReceive (0x01)
  540. #define CyRICR (0x44*2)
  541. #define CyTICR (0x45*2)
  542. #define CyMICR (0x46*2)
  543. #define CyICR0 (0x00)
  544. #define CyICR1 (0x01)
  545. #define CyICR2 (0x02)
  546. #define CyICR3 (0x03)
  547. #define CyRIR (0x6B*2)
  548. #define CyTIR (0x6A*2)
  549. #define CyMIR (0x69*2)
  550. #define CyIRDirEq (0x80)
  551. #define CyIRBusy (0x40)
  552. #define CyIRUnfair (0x20)
  553. #define CyIRContext (0x1C)
  554. #define CyIRChannel (0x03)
  555. #define CyPPR (0x7E*2)
  556. #define CyCLOCK_20_1MS (0x27)
  557. #define CyCLOCK_25_1MS (0x31)
  558. #define CyCLOCK_25_5MS (0xf4)
  559. #define CyCLOCK_60_1MS (0x75)
  560. #define CyCLOCK_60_2MS (0xea)
  561. /* Virtual Registers */
  562. #define CyRIVR (0x43*2)
  563. #define CyTIVR (0x42*2)
  564. #define CyMIVR (0x41*2)
  565. #define CyIVRMask (0x07)
  566. #define CyIVRRxEx (0x07)
  567. #define CyIVRRxOK (0x03)
  568. #define CyIVRTxOK (0x02)
  569. #define CyIVRMdmOK (0x01)
  570. #define CyTDR (0x63*2)
  571. #define CyRDSR (0x62*2)
  572. #define CyTIMEOUT (0x80)
  573. #define CySPECHAR (0x70)
  574. #define CyBREAK (0x08)
  575. #define CyPARITY (0x04)
  576. #define CyFRAME (0x02)
  577. #define CyOVERRUN (0x01)
  578. #define CyMISR (0x4C*2)
  579. /* see CyMCOR_ and CyMSVR_ for bits*/
  580. #define CyEOSRR (0x60*2)
  581. /* Channel Registers */
  582. #define CyLIVR (0x18*2)
  583. #define CyMscsr (0x01)
  584. #define CyTdsr (0x02)
  585. #define CyRgdsr (0x03)
  586. #define CyRedsr (0x07)
  587. #define CyCCR (0x05*2)
  588. /* Format 1 */
  589. #define CyCHAN_RESET (0x80)
  590. #define CyCHIP_RESET (0x81)
  591. #define CyFlushTransFIFO (0x82)
  592. /* Format 2 */
  593. #define CyCOR_CHANGE (0x40)
  594. #define CyCOR1ch (0x02)
  595. #define CyCOR2ch (0x04)
  596. #define CyCOR3ch (0x08)
  597. /* Format 3 */
  598. #define CySEND_SPEC_1 (0x21)
  599. #define CySEND_SPEC_2 (0x22)
  600. #define CySEND_SPEC_3 (0x23)
  601. #define CySEND_SPEC_4 (0x24)
  602. /* Format 4 */
  603. #define CyCHAN_CTL (0x10)
  604. #define CyDIS_RCVR (0x01)
  605. #define CyENB_RCVR (0x02)
  606. #define CyDIS_XMTR (0x04)
  607. #define CyENB_XMTR (0x08)
  608. #define CySRER (0x06*2)
  609. #define CyMdmCh (0x80)
  610. #define CyRxData (0x10)
  611. #define CyTxRdy (0x04)
  612. #define CyTxMpty (0x02)
  613. #define CyNNDT (0x01)
  614. #define CyCOR1 (0x08*2)
  615. #define CyPARITY_NONE (0x00)
  616. #define CyPARITY_0 (0x20)
  617. #define CyPARITY_1 (0xA0)
  618. #define CyPARITY_E (0x40)
  619. #define CyPARITY_O (0xC0)
  620. #define Cy_1_STOP (0x00)
  621. #define Cy_1_5_STOP (0x04)
  622. #define Cy_2_STOP (0x08)
  623. #define Cy_5_BITS (0x00)
  624. #define Cy_6_BITS (0x01)
  625. #define Cy_7_BITS (0x02)
  626. #define Cy_8_BITS (0x03)
  627. #define CyCOR2 (0x09*2)
  628. #define CyIXM (0x80)
  629. #define CyTxIBE (0x40)
  630. #define CyETC (0x20)
  631. #define CyAUTO_TXFL (0x60)
  632. #define CyLLM (0x10)
  633. #define CyRLM (0x08)
  634. #define CyRtsAO (0x04)
  635. #define CyCtsAE (0x02)
  636. #define CyDsrAE (0x01)
  637. #define CyCOR3 (0x0A*2)
  638. #define CySPL_CH_DRANGE (0x80) /* special character detect range */
  639. #define CySPL_CH_DET1 (0x40) /* enable special character detection
  640. on SCHR4-SCHR3 */
  641. #define CyFL_CTRL_TRNSP (0x20) /* Flow Control Transparency */
  642. #define CySPL_CH_DET2 (0x10) /* Enable special character detection
  643. on SCHR2-SCHR1 */
  644. #define CyREC_FIFO (0x0F) /* Receive FIFO threshold */
  645. #define CyCOR4 (0x1E*2)
  646. #define CyCOR5 (0x1F*2)
  647. #define CyCCSR (0x0B*2)
  648. #define CyRxEN (0x80)
  649. #define CyRxFloff (0x40)
  650. #define CyRxFlon (0x20)
  651. #define CyTxEN (0x08)
  652. #define CyTxFloff (0x04)
  653. #define CyTxFlon (0x02)
  654. #define CyRDCR (0x0E*2)
  655. #define CySCHR1 (0x1A*2)
  656. #define CySCHR2 (0x1B*2)
  657. #define CySCHR3 (0x1C*2)
  658. #define CySCHR4 (0x1D*2)
  659. #define CySCRL (0x22*2)
  660. #define CySCRH (0x23*2)
  661. #define CyLNC (0x24*2)
  662. #define CyMCOR1 (0x15*2)
  663. #define CyMCOR2 (0x16*2)
  664. #define CyRTPR (0x21*2)
  665. #define CyMSVR1 (0x6C*2)
  666. #define CyMSVR2 (0x6D*2)
  667. #define CyANY_DELTA (0xF0)
  668. #define CyDSR (0x80)
  669. #define CyCTS (0x40)
  670. #define CyRI (0x20)
  671. #define CyDCD (0x10)
  672. #define CyDTR (0x02)
  673. #define CyRTS (0x01)
  674. #define CyPVSR (0x6F*2)
  675. #define CyRBPR (0x78*2)
  676. #define CyRCOR (0x7C*2)
  677. #define CyTBPR (0x72*2)
  678. #define CyTCOR (0x76*2)
  679. /* Custom Registers */
  680. #define CyPLX_VER (0x3400)
  681. #define PLX_9050 0x0b
  682. #define PLX_9060 0x0c
  683. #define PLX_9080 0x0d
  684. /***************************************************************************/
  685. #endif /* __KERNEL__ */
  686. #endif /* _LINUX_CYCLADES_H */