cyclades.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /* $Revision: 3.0 $$Date: 1998/11/02 14:20:59 $
  3. * linux/include/linux/cyclades.h
  4. *
  5. * This file was initially written by
  6. * Randolph Bentson <bentson@grieg.seaslug.org> and is maintained by
  7. * Ivan Passos <ivan@cyclades.com>.
  8. *
  9. * This file contains the general definitions for the cyclades.c driver
  10. *$Log: cyclades.h,v $
  11. *Revision 3.1 2002/01/29 11:36:16 henrique
  12. *added throttle field on struct cyclades_port to indicate whether the
  13. *port is throttled or not
  14. *
  15. *Revision 3.1 2000/04/19 18:52:52 ivan
  16. *converted address fields to unsigned long and added fields for physical
  17. *addresses on cyclades_card structure;
  18. *
  19. *Revision 3.0 1998/11/02 14:20:59 ivan
  20. *added nports field on cyclades_card structure;
  21. *
  22. *Revision 2.5 1998/08/03 16:57:01 ivan
  23. *added cyclades_idle_stats structure;
  24. *
  25. *Revision 2.4 1998/06/01 12:09:53 ivan
  26. *removed closing_wait2 from cyclades_port structure;
  27. *
  28. *Revision 2.3 1998/03/16 18:01:12 ivan
  29. *changes in the cyclades_port structure to get it closer to the
  30. *standard serial port structure;
  31. *added constants for new ioctls;
  32. *
  33. *Revision 2.2 1998/02/17 16:50:00 ivan
  34. *changes in the cyclades_port structure (addition of shutdown_wait and
  35. *chip_rev variables);
  36. *added constants for new ioctls and for CD1400 rev. numbers.
  37. *
  38. *Revision 2.1 1997/10/24 16:03:00 ivan
  39. *added rflow (which allows enabling the CD1400 special flow control
  40. *feature) and rtsdtr_inv (which allows DTR/RTS pin inversion) to
  41. *cyclades_port structure;
  42. *added Alpha support
  43. *
  44. *Revision 2.0 1997/06/30 10:30:00 ivan
  45. *added some new doorbell command constants related to IOCTLW and
  46. *UART error signaling
  47. *
  48. *Revision 1.8 1997/06/03 15:30:00 ivan
  49. *added constant ZFIRM_HLT
  50. *added constant CyPCI_Ze_win ( = 2 * Cy_PCI_Zwin)
  51. *
  52. *Revision 1.7 1997/03/26 10:30:00 daniel
  53. *new entries at the end of cyclades_port struct to reallocate
  54. *variables illegally allocated within card memory.
  55. *
  56. *Revision 1.6 1996/09/09 18:35:30 bentson
  57. *fold in changes for Cyclom-Z -- including structures for
  58. *communicating with board as well modest changes to original
  59. *structures to support new features.
  60. *
  61. *Revision 1.5 1995/11/13 21:13:31 bentson
  62. *changes suggested by Michael Chastain <mec@duracef.shout.net>
  63. *to support use of this file in non-kernel applications
  64. *
  65. *
  66. */
  67. #ifndef _UAPI_LINUX_CYCLADES_H
  68. #define _UAPI_LINUX_CYCLADES_H
  69. #include <linux/types.h>
  70. struct cyclades_monitor {
  71. unsigned long int_count;
  72. unsigned long char_count;
  73. unsigned long char_max;
  74. unsigned long char_last;
  75. };
  76. /*
  77. * These stats all reflect activity since the device was last initialized.
  78. * (i.e., since the port was opened with no other processes already having it
  79. * open)
  80. */
  81. struct cyclades_idle_stats {
  82. __kernel_time_t in_use; /* Time device has been in use (secs) */
  83. __kernel_time_t recv_idle; /* Time since last char received (secs) */
  84. __kernel_time_t xmit_idle; /* Time since last char transmitted (secs) */
  85. unsigned long recv_bytes; /* Bytes received */
  86. unsigned long xmit_bytes; /* Bytes transmitted */
  87. unsigned long overruns; /* Input overruns */
  88. unsigned long frame_errs; /* Input framing errors */
  89. unsigned long parity_errs; /* Input parity errors */
  90. };
  91. #define CYCLADES_MAGIC 0x4359
  92. #define CYGETMON 0x435901
  93. #define CYGETTHRESH 0x435902
  94. #define CYSETTHRESH 0x435903
  95. #define CYGETDEFTHRESH 0x435904
  96. #define CYSETDEFTHRESH 0x435905
  97. #define CYGETTIMEOUT 0x435906
  98. #define CYSETTIMEOUT 0x435907
  99. #define CYGETDEFTIMEOUT 0x435908
  100. #define CYSETDEFTIMEOUT 0x435909
  101. #define CYSETRFLOW 0x43590a
  102. #define CYGETRFLOW 0x43590b
  103. #define CYSETRTSDTR_INV 0x43590c
  104. #define CYGETRTSDTR_INV 0x43590d
  105. #define CYZSETPOLLCYCLE 0x43590e
  106. #define CYZGETPOLLCYCLE 0x43590f
  107. #define CYGETCD1400VER 0x435910
  108. #define CYSETWAIT 0x435912
  109. #define CYGETWAIT 0x435913
  110. /*************** CYCLOM-Z ADDITIONS ***************/
  111. #define CZIOC ('M' << 8)
  112. #define CZ_NBOARDS (CZIOC|0xfa)
  113. #define CZ_BOOT_START (CZIOC|0xfb)
  114. #define CZ_BOOT_DATA (CZIOC|0xfc)
  115. #define CZ_BOOT_END (CZIOC|0xfd)
  116. #define CZ_TEST (CZIOC|0xfe)
  117. #define CZ_DEF_POLL (HZ/25)
  118. #define MAX_BOARD 4 /* Max number of boards */
  119. #define MAX_DEV 256 /* Max number of ports total */
  120. #define CYZ_MAX_SPEED 921600
  121. #define CYZ_FIFO_SIZE 16
  122. #define CYZ_BOOT_NWORDS 0x100
  123. struct CYZ_BOOT_CTRL {
  124. unsigned short nboard;
  125. int status[MAX_BOARD];
  126. int nchannel[MAX_BOARD];
  127. int fw_rev[MAX_BOARD];
  128. unsigned long offset;
  129. unsigned long data[CYZ_BOOT_NWORDS];
  130. };
  131. #ifndef DP_WINDOW_SIZE
  132. /*
  133. * Memory Window Sizes
  134. */
  135. #define DP_WINDOW_SIZE (0x00080000) /* window size 512 Kb */
  136. #define ZE_DP_WINDOW_SIZE (0x00100000) /* window size 1 Mb (Ze and
  137. 8Zo V.2 */
  138. #define CTRL_WINDOW_SIZE (0x00000080) /* runtime regs 128 bytes */
  139. /*
  140. * CUSTOM_REG - Cyclom-Z/PCI Custom Registers Set. The driver
  141. * normally will access only interested on the fpga_id, fpga_version,
  142. * start_cpu and stop_cpu.
  143. */
  144. struct CUSTOM_REG {
  145. __u32 fpga_id; /* FPGA Identification Register */
  146. __u32 fpga_version; /* FPGA Version Number Register */
  147. __u32 cpu_start; /* CPU start Register (write) */
  148. __u32 cpu_stop; /* CPU stop Register (write) */
  149. __u32 misc_reg; /* Miscellaneous Register */
  150. __u32 idt_mode; /* IDT mode Register */
  151. __u32 uart_irq_status; /* UART IRQ status Register */
  152. __u32 clear_timer0_irq; /* Clear timer interrupt Register */
  153. __u32 clear_timer1_irq; /* Clear timer interrupt Register */
  154. __u32 clear_timer2_irq; /* Clear timer interrupt Register */
  155. __u32 test_register; /* Test Register */
  156. __u32 test_count; /* Test Count Register */
  157. __u32 timer_select; /* Timer select register */
  158. __u32 pr_uart_irq_status; /* Prioritized UART IRQ stat Reg */
  159. __u32 ram_wait_state; /* RAM wait-state Register */
  160. __u32 uart_wait_state; /* UART wait-state Register */
  161. __u32 timer_wait_state; /* timer wait-state Register */
  162. __u32 ack_wait_state; /* ACK wait State Register */
  163. };
  164. /*
  165. * RUNTIME_9060 - PLX PCI9060ES local configuration and shared runtime
  166. * registers. This structure can be used to access the 9060 registers
  167. * (memory mapped).
  168. */
  169. struct RUNTIME_9060 {
  170. __u32 loc_addr_range; /* 00h - Local Address Range */
  171. __u32 loc_addr_base; /* 04h - Local Address Base */
  172. __u32 loc_arbitr; /* 08h - Local Arbitration */
  173. __u32 endian_descr; /* 0Ch - Big/Little Endian Descriptor */
  174. __u32 loc_rom_range; /* 10h - Local ROM Range */
  175. __u32 loc_rom_base; /* 14h - Local ROM Base */
  176. __u32 loc_bus_descr; /* 18h - Local Bus descriptor */
  177. __u32 loc_range_mst; /* 1Ch - Local Range for Master to PCI */
  178. __u32 loc_base_mst; /* 20h - Local Base for Master PCI */
  179. __u32 loc_range_io; /* 24h - Local Range for Master IO */
  180. __u32 pci_base_mst; /* 28h - PCI Base for Master PCI */
  181. __u32 pci_conf_io; /* 2Ch - PCI configuration for Master IO */
  182. __u32 filler1; /* 30h */
  183. __u32 filler2; /* 34h */
  184. __u32 filler3; /* 38h */
  185. __u32 filler4; /* 3Ch */
  186. __u32 mail_box_0; /* 40h - Mail Box 0 */
  187. __u32 mail_box_1; /* 44h - Mail Box 1 */
  188. __u32 mail_box_2; /* 48h - Mail Box 2 */
  189. __u32 mail_box_3; /* 4Ch - Mail Box 3 */
  190. __u32 filler5; /* 50h */
  191. __u32 filler6; /* 54h */
  192. __u32 filler7; /* 58h */
  193. __u32 filler8; /* 5Ch */
  194. __u32 pci_doorbell; /* 60h - PCI to Local Doorbell */
  195. __u32 loc_doorbell; /* 64h - Local to PCI Doorbell */
  196. __u32 intr_ctrl_stat; /* 68h - Interrupt Control/Status */
  197. __u32 init_ctrl; /* 6Ch - EEPROM control, Init Control, etc */
  198. };
  199. /* Values for the Local Base Address re-map register */
  200. #define WIN_RAM 0x00000001L /* set the sliding window to RAM */
  201. #define WIN_CREG 0x14000001L /* set the window to custom Registers */
  202. /* Values timer select registers */
  203. #define TIMER_BY_1M 0x00 /* clock divided by 1M */
  204. #define TIMER_BY_256K 0x01 /* clock divided by 256k */
  205. #define TIMER_BY_128K 0x02 /* clock divided by 128k */
  206. #define TIMER_BY_32K 0x03 /* clock divided by 32k */
  207. /****************** ****************** *******************/
  208. #endif
  209. #ifndef ZFIRM_ID
  210. /* #include "zfwint.h" */
  211. /****************** ****************** *******************/
  212. /*
  213. * This file contains the definitions for interfacing with the
  214. * Cyclom-Z ZFIRM Firmware.
  215. */
  216. /* General Constant definitions */
  217. #define MAX_CHAN 64 /* max number of channels per board */
  218. /* firmware id structure (set after boot) */
  219. #define ID_ADDRESS 0x00000180L /* signature/pointer address */
  220. #define ZFIRM_ID 0x5557465AL /* ZFIRM/U signature */
  221. #define ZFIRM_HLT 0x59505B5CL /* ZFIRM needs external power supply */
  222. #define ZFIRM_RST 0x56040674L /* RST signal (due to FW reset) */
  223. #define ZF_TINACT_DEF 1000 /* default inactivity timeout
  224. (1000 ms) */
  225. #define ZF_TINACT ZF_TINACT_DEF
  226. struct FIRM_ID {
  227. __u32 signature; /* ZFIRM/U signature */
  228. __u32 zfwctrl_addr; /* pointer to ZFW_CTRL structure */
  229. };
  230. /* Op. System id */
  231. #define C_OS_LINUX 0x00000030 /* generic Linux system */
  232. /* channel op_mode */
  233. #define C_CH_DISABLE 0x00000000 /* channel is disabled */
  234. #define C_CH_TXENABLE 0x00000001 /* channel Tx enabled */
  235. #define C_CH_RXENABLE 0x00000002 /* channel Rx enabled */
  236. #define C_CH_ENABLE 0x00000003 /* channel Tx/Rx enabled */
  237. #define C_CH_LOOPBACK 0x00000004 /* Loopback mode */
  238. /* comm_parity - parity */
  239. #define C_PR_NONE 0x00000000 /* None */
  240. #define C_PR_ODD 0x00000001 /* Odd */
  241. #define C_PR_EVEN 0x00000002 /* Even */
  242. #define C_PR_MARK 0x00000004 /* Mark */
  243. #define C_PR_SPACE 0x00000008 /* Space */
  244. #define C_PR_PARITY 0x000000ff
  245. #define C_PR_DISCARD 0x00000100 /* discard char with frame/par error */
  246. #define C_PR_IGNORE 0x00000200 /* ignore frame/par error */
  247. /* comm_data_l - data length and stop bits */
  248. #define C_DL_CS5 0x00000001
  249. #define C_DL_CS6 0x00000002
  250. #define C_DL_CS7 0x00000004
  251. #define C_DL_CS8 0x00000008
  252. #define C_DL_CS 0x0000000f
  253. #define C_DL_1STOP 0x00000010
  254. #define C_DL_15STOP 0x00000020
  255. #define C_DL_2STOP 0x00000040
  256. #define C_DL_STOP 0x000000f0
  257. /* interrupt enabling/status */
  258. #define C_IN_DISABLE 0x00000000 /* zero, disable interrupts */
  259. #define C_IN_TXBEMPTY 0x00000001 /* tx buffer empty */
  260. #define C_IN_TXLOWWM 0x00000002 /* tx buffer below LWM */
  261. #define C_IN_RXHIWM 0x00000010 /* rx buffer above HWM */
  262. #define C_IN_RXNNDT 0x00000020 /* rx no new data timeout */
  263. #define C_IN_MDCD 0x00000100 /* modem DCD change */
  264. #define C_IN_MDSR 0x00000200 /* modem DSR change */
  265. #define C_IN_MRI 0x00000400 /* modem RI change */
  266. #define C_IN_MCTS 0x00000800 /* modem CTS change */
  267. #define C_IN_RXBRK 0x00001000 /* Break received */
  268. #define C_IN_PR_ERROR 0x00002000 /* parity error */
  269. #define C_IN_FR_ERROR 0x00004000 /* frame error */
  270. #define C_IN_OVR_ERROR 0x00008000 /* overrun error */
  271. #define C_IN_RXOFL 0x00010000 /* RX buffer overflow */
  272. #define C_IN_IOCTLW 0x00020000 /* I/O control w/ wait */
  273. #define C_IN_MRTS 0x00040000 /* modem RTS drop */
  274. #define C_IN_ICHAR 0x00080000
  275. /* flow control */
  276. #define C_FL_OXX 0x00000001 /* output Xon/Xoff flow control */
  277. #define C_FL_IXX 0x00000002 /* output Xon/Xoff flow control */
  278. #define C_FL_OIXANY 0x00000004 /* output Xon/Xoff (any xon) */
  279. #define C_FL_SWFLOW 0x0000000f
  280. /* flow status */
  281. #define C_FS_TXIDLE 0x00000000 /* no Tx data in the buffer or UART */
  282. #define C_FS_SENDING 0x00000001 /* UART is sending data */
  283. #define C_FS_SWFLOW 0x00000002 /* Tx is stopped by received Xoff */
  284. /* rs_control/rs_status RS-232 signals */
  285. #define C_RS_PARAM 0x80000000 /* Indicates presence of parameter in
  286. IOCTLM command */
  287. #define C_RS_RTS 0x00000001 /* RTS */
  288. #define C_RS_DTR 0x00000004 /* DTR */
  289. #define C_RS_DCD 0x00000100 /* CD */
  290. #define C_RS_DSR 0x00000200 /* DSR */
  291. #define C_RS_RI 0x00000400 /* RI */
  292. #define C_RS_CTS 0x00000800 /* CTS */
  293. /* commands Host <-> Board */
  294. #define C_CM_RESET 0x01 /* reset/flush buffers */
  295. #define C_CM_IOCTL 0x02 /* re-read CH_CTRL */
  296. #define C_CM_IOCTLW 0x03 /* re-read CH_CTRL, intr when done */
  297. #define C_CM_IOCTLM 0x04 /* RS-232 outputs change */
  298. #define C_CM_SENDXOFF 0x10 /* send Xoff */
  299. #define C_CM_SENDXON 0x11 /* send Xon */
  300. #define C_CM_CLFLOW 0x12 /* Clear flow control (resume) */
  301. #define C_CM_SENDBRK 0x41 /* send break */
  302. #define C_CM_INTBACK 0x42 /* Interrupt back */
  303. #define C_CM_SET_BREAK 0x43 /* Tx break on */
  304. #define C_CM_CLR_BREAK 0x44 /* Tx break off */
  305. #define C_CM_CMD_DONE 0x45 /* Previous command done */
  306. #define C_CM_INTBACK2 0x46 /* Alternate Interrupt back */
  307. #define C_CM_TINACT 0x51 /* set inactivity detection */
  308. #define C_CM_IRQ_ENBL 0x52 /* enable generation of interrupts */
  309. #define C_CM_IRQ_DSBL 0x53 /* disable generation of interrupts */
  310. #define C_CM_ACK_ENBL 0x54 /* enable acknowledged interrupt mode */
  311. #define C_CM_ACK_DSBL 0x55 /* disable acknowledged intr mode */
  312. #define C_CM_FLUSH_RX 0x56 /* flushes Rx buffer */
  313. #define C_CM_FLUSH_TX 0x57 /* flushes Tx buffer */
  314. #define C_CM_Q_ENABLE 0x58 /* enables queue access from the
  315. driver */
  316. #define C_CM_Q_DISABLE 0x59 /* disables queue access from the
  317. driver */
  318. #define C_CM_TXBEMPTY 0x60 /* Tx buffer is empty */
  319. #define C_CM_TXLOWWM 0x61 /* Tx buffer low water mark */
  320. #define C_CM_RXHIWM 0x62 /* Rx buffer high water mark */
  321. #define C_CM_RXNNDT 0x63 /* rx no new data timeout */
  322. #define C_CM_TXFEMPTY 0x64
  323. #define C_CM_ICHAR 0x65
  324. #define C_CM_MDCD 0x70 /* modem DCD change */
  325. #define C_CM_MDSR 0x71 /* modem DSR change */
  326. #define C_CM_MRI 0x72 /* modem RI change */
  327. #define C_CM_MCTS 0x73 /* modem CTS change */
  328. #define C_CM_MRTS 0x74 /* modem RTS drop */
  329. #define C_CM_RXBRK 0x84 /* Break received */
  330. #define C_CM_PR_ERROR 0x85 /* Parity error */
  331. #define C_CM_FR_ERROR 0x86 /* Frame error */
  332. #define C_CM_OVR_ERROR 0x87 /* Overrun error */
  333. #define C_CM_RXOFL 0x88 /* RX buffer overflow */
  334. #define C_CM_CMDERROR 0x90 /* command error */
  335. #define C_CM_FATAL 0x91 /* fatal error */
  336. #define C_CM_HW_RESET 0x92 /* reset board */
  337. /*
  338. * CH_CTRL - This per port structure contains all parameters
  339. * that control an specific port. It can be seen as the
  340. * configuration registers of a "super-serial-controller".
  341. */
  342. struct CH_CTRL {
  343. __u32 op_mode; /* operation mode */
  344. __u32 intr_enable; /* interrupt masking */
  345. __u32 sw_flow; /* SW flow control */
  346. __u32 flow_status; /* output flow status */
  347. __u32 comm_baud; /* baud rate - numerically specified */
  348. __u32 comm_parity; /* parity */
  349. __u32 comm_data_l; /* data length/stop */
  350. __u32 comm_flags; /* other flags */
  351. __u32 hw_flow; /* HW flow control */
  352. __u32 rs_control; /* RS-232 outputs */
  353. __u32 rs_status; /* RS-232 inputs */
  354. __u32 flow_xon; /* xon char */
  355. __u32 flow_xoff; /* xoff char */
  356. __u32 hw_overflow; /* hw overflow counter */
  357. __u32 sw_overflow; /* sw overflow counter */
  358. __u32 comm_error; /* frame/parity error counter */
  359. __u32 ichar;
  360. __u32 filler[7];
  361. };
  362. /*
  363. * BUF_CTRL - This per channel structure contains
  364. * all Tx and Rx buffer control for a given channel.
  365. */
  366. struct BUF_CTRL {
  367. __u32 flag_dma; /* buffers are in Host memory */
  368. __u32 tx_bufaddr; /* address of the tx buffer */
  369. __u32 tx_bufsize; /* tx buffer size */
  370. __u32 tx_threshold; /* tx low water mark */
  371. __u32 tx_get; /* tail index tx buf */
  372. __u32 tx_put; /* head index tx buf */
  373. __u32 rx_bufaddr; /* address of the rx buffer */
  374. __u32 rx_bufsize; /* rx buffer size */
  375. __u32 rx_threshold; /* rx high water mark */
  376. __u32 rx_get; /* tail index rx buf */
  377. __u32 rx_put; /* head index rx buf */
  378. __u32 filler[5]; /* filler to align structures */
  379. };
  380. /*
  381. * BOARD_CTRL - This per board structure contains all global
  382. * control fields related to the board.
  383. */
  384. struct BOARD_CTRL {
  385. /* static info provided by the on-board CPU */
  386. __u32 n_channel; /* number of channels */
  387. __u32 fw_version; /* firmware version */
  388. /* static info provided by the driver */
  389. __u32 op_system; /* op_system id */
  390. __u32 dr_version; /* driver version */
  391. /* board control area */
  392. __u32 inactivity; /* inactivity control */
  393. /* host to FW commands */
  394. __u32 hcmd_channel; /* channel number */
  395. __u32 hcmd_param; /* pointer to parameters */
  396. /* FW to Host commands */
  397. __u32 fwcmd_channel; /* channel number */
  398. __u32 fwcmd_param; /* pointer to parameters */
  399. __u32 zf_int_queue_addr; /* offset for INT_QUEUE structure */
  400. /* filler so the structures are aligned */
  401. __u32 filler[6];
  402. };
  403. /* Host Interrupt Queue */
  404. #define QUEUE_SIZE (10*MAX_CHAN)
  405. struct INT_QUEUE {
  406. unsigned char intr_code[QUEUE_SIZE];
  407. unsigned long channel[QUEUE_SIZE];
  408. unsigned long param[QUEUE_SIZE];
  409. unsigned long put;
  410. unsigned long get;
  411. };
  412. /*
  413. * ZFW_CTRL - This is the data structure that includes all other
  414. * data structures used by the Firmware.
  415. */
  416. struct ZFW_CTRL {
  417. struct BOARD_CTRL board_ctrl;
  418. struct CH_CTRL ch_ctrl[MAX_CHAN];
  419. struct BUF_CTRL buf_ctrl[MAX_CHAN];
  420. };
  421. /****************** ****************** *******************/
  422. #endif
  423. #endif /* _UAPI_LINUX_CYCLADES_H */