blob: 83925bd12c0b9946c0a687ede1f46455d234d9ff [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* $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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#ifndef _LINUX_CYCLADES_H
68#define _LINUX_CYCLADES_H
69
David Howells607ca462012-10-13 10:46:48 +010070#include <uapi/linux/cyclades.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Jiri Slabyb81cc3102007-05-08 00:36:38 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073/* Per card data structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074struct cyclades_card {
Jiri Slaby97e87f82009-06-11 12:29:27 +010075 void __iomem *base_addr;
76 union {
77 void __iomem *p9050;
78 struct RUNTIME_9060 __iomem *p9060;
79 } ctl_addr;
Jiri Slabyf0eefdc2009-09-19 13:13:13 -070080 struct BOARD_CTRL __iomem *board_ctrl; /* cyz specific */
Jiri Slaby97e87f82009-06-11 12:29:27 +010081 int irq;
82 unsigned int num_chips; /* 0 if card absent, -1 if Z/PCI, else Y */
83 unsigned int first_line; /* minor number of first channel on card */
84 unsigned int nports; /* Number of ports in the card */
85 int bus_index; /* address shift - 0 for ISA, 1 for PCI */
86 int intr_enabled; /* FW Interrupt flag - 0 disabled, 1 enabled */
Jiri Slaby101b8152009-06-11 12:30:10 +010087 u32 hw_ver;
Jiri Slaby97e87f82009-06-11 12:29:27 +010088 spinlock_t card_lock;
89 struct cyclades_port *ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090};
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/***************************************
93 * Memory access functions/macros *
94 * (required to support Alpha systems) *
95 ***************************************/
96
Jiri Slabydb05c3b2007-05-08 00:35:46 -070097#define cy_writeb(port,val) do { writeb((val), (port)); mb(); } while (0)
98#define cy_writew(port,val) do { writew((val), (port)); mb(); } while (0)
99#define cy_writel(port,val) do { writel((val), (port)); mb(); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101/*
102 * Statistics counters
103 */
104struct cyclades_icount {
105 __u32 cts, dsr, rng, dcd, tx, rx;
106 __u32 frame, parity, overrun, brk;
107 __u32 buf_overrun;
108};
109
110/*
111 * This is our internal structure for each serial port's state.
112 *
113 * Many fields are paralleled by the structure used by the serial_struct
114 * structure.
115 *
116 * For definitions of the flags field, see tty.h
117 */
118
119struct cyclades_port {
120 int magic;
Alan Cox77451e52008-07-16 21:57:02 +0100121 struct tty_port port;
Jiri Slaby875b2062007-05-08 00:36:49 -0700122 struct cyclades_card *card;
Jiri Slabyf0eefdc2009-09-19 13:13:13 -0700123 union {
124 struct {
Jiri Slaby3aeea5b2009-09-19 13:13:16 -0700125 void __iomem *base_addr;
Jiri Slabyf0eefdc2009-09-19 13:13:13 -0700126 } cyy;
127 struct {
128 struct CH_CTRL __iomem *ch_ctrl;
129 struct BUF_CTRL __iomem *buf_ctrl;
130 } cyz;
131 } u;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 int line;
133 int flags; /* defined in tty.h */
134 int type; /* UART type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 int read_status_mask;
136 int ignore_status_mask;
137 int timeout;
138 int xmit_fifo_size;
139 int cor1,cor2,cor3,cor4,cor5;
140 int tbpr,tco,rbpr,rco;
141 int baud;
142 int rflow;
143 int rtsdtr_inv;
144 int chip_rev;
145 int custom_divisor;
Jiri Slaby65f76a82007-10-18 03:06:22 -0700146 u8 x_char; /* to be pushed out ASAP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 int breakon;
148 int breakoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 int xmit_head;
150 int xmit_tail;
151 int xmit_cnt;
152 int default_threshold;
153 int default_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 unsigned long rflush_count;
155 struct cyclades_monitor mon;
156 struct cyclades_idle_stats idle_stats;
157 struct cyclades_icount icount;
Jiri Slaby2c7fea92007-05-08 00:36:51 -0700158 struct completion shutdown_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 int throttle;
160};
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#define CLOSING_WAIT_DELAY 30*HZ
Alan Cox44b7d1b2008-07-16 21:57:18 +0100163#define CY_CLOSING_WAIT_NONE ASYNC_CLOSING_WAIT_NONE
164#define CY_CLOSING_WAIT_INF ASYNC_CLOSING_WAIT_INF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166
167#define CyMAX_CHIPS_PER_CARD 8
168#define CyMAX_CHAR_FIFO 12
169#define CyPORTS_PER_CHIP 4
170#define CD1400_MAX_SPEED 115200
171
172#define CyISA_Ywin 0x2000
173
174#define CyPCI_Ywin 0x4000
175#define CyPCI_Yctl 0x80
176#define CyPCI_Zctl CTRL_WINDOW_SIZE
177#define CyPCI_Zwin 0x80000
178#define CyPCI_Ze_win (2 * CyPCI_Zwin)
179
180#define PCI_DEVICE_ID_MASK 0x06
181
182/**** CD1400 registers ****/
183
184#define CD1400_REV_G 0x46
185#define CD1400_REV_J 0x48
186
187#define CyRegSize 0x0400
188#define Cy_HwReset 0x1400
189#define Cy_ClrIntr 0x1800
190#define Cy_EpldRev 0x1e00
191
192/* Global Registers */
193
194#define CyGFRCR (0x40*2)
195#define CyRevE (44)
196#define CyCAR (0x68*2)
197#define CyCHAN_0 (0x00)
198#define CyCHAN_1 (0x01)
199#define CyCHAN_2 (0x02)
200#define CyCHAN_3 (0x03)
201#define CyGCR (0x4B*2)
202#define CyCH0_SERIAL (0x00)
203#define CyCH0_PARALLEL (0x80)
204#define CySVRR (0x67*2)
205#define CySRModem (0x04)
206#define CySRTransmit (0x02)
207#define CySRReceive (0x01)
208#define CyRICR (0x44*2)
209#define CyTICR (0x45*2)
210#define CyMICR (0x46*2)
211#define CyICR0 (0x00)
212#define CyICR1 (0x01)
213#define CyICR2 (0x02)
214#define CyICR3 (0x03)
215#define CyRIR (0x6B*2)
216#define CyTIR (0x6A*2)
217#define CyMIR (0x69*2)
218#define CyIRDirEq (0x80)
219#define CyIRBusy (0x40)
220#define CyIRUnfair (0x20)
221#define CyIRContext (0x1C)
222#define CyIRChannel (0x03)
223#define CyPPR (0x7E*2)
224#define CyCLOCK_20_1MS (0x27)
225#define CyCLOCK_25_1MS (0x31)
226#define CyCLOCK_25_5MS (0xf4)
227#define CyCLOCK_60_1MS (0x75)
228#define CyCLOCK_60_2MS (0xea)
229
230/* Virtual Registers */
231
232#define CyRIVR (0x43*2)
233#define CyTIVR (0x42*2)
234#define CyMIVR (0x41*2)
235#define CyIVRMask (0x07)
236#define CyIVRRxEx (0x07)
237#define CyIVRRxOK (0x03)
238#define CyIVRTxOK (0x02)
239#define CyIVRMdmOK (0x01)
240#define CyTDR (0x63*2)
241#define CyRDSR (0x62*2)
242#define CyTIMEOUT (0x80)
243#define CySPECHAR (0x70)
244#define CyBREAK (0x08)
245#define CyPARITY (0x04)
246#define CyFRAME (0x02)
247#define CyOVERRUN (0x01)
248#define CyMISR (0x4C*2)
249/* see CyMCOR_ and CyMSVR_ for bits*/
250#define CyEOSRR (0x60*2)
251
252/* Channel Registers */
253
254#define CyLIVR (0x18*2)
255#define CyMscsr (0x01)
256#define CyTdsr (0x02)
257#define CyRgdsr (0x03)
258#define CyRedsr (0x07)
259#define CyCCR (0x05*2)
260/* Format 1 */
261#define CyCHAN_RESET (0x80)
262#define CyCHIP_RESET (0x81)
263#define CyFlushTransFIFO (0x82)
264/* Format 2 */
265#define CyCOR_CHANGE (0x40)
266#define CyCOR1ch (0x02)
267#define CyCOR2ch (0x04)
268#define CyCOR3ch (0x08)
269/* Format 3 */
270#define CySEND_SPEC_1 (0x21)
271#define CySEND_SPEC_2 (0x22)
272#define CySEND_SPEC_3 (0x23)
273#define CySEND_SPEC_4 (0x24)
274/* Format 4 */
275#define CyCHAN_CTL (0x10)
276#define CyDIS_RCVR (0x01)
277#define CyENB_RCVR (0x02)
278#define CyDIS_XMTR (0x04)
279#define CyENB_XMTR (0x08)
280#define CySRER (0x06*2)
281#define CyMdmCh (0x80)
282#define CyRxData (0x10)
283#define CyTxRdy (0x04)
284#define CyTxMpty (0x02)
285#define CyNNDT (0x01)
286#define CyCOR1 (0x08*2)
287#define CyPARITY_NONE (0x00)
288#define CyPARITY_0 (0x20)
289#define CyPARITY_1 (0xA0)
290#define CyPARITY_E (0x40)
291#define CyPARITY_O (0xC0)
292#define Cy_1_STOP (0x00)
293#define Cy_1_5_STOP (0x04)
294#define Cy_2_STOP (0x08)
295#define Cy_5_BITS (0x00)
296#define Cy_6_BITS (0x01)
297#define Cy_7_BITS (0x02)
298#define Cy_8_BITS (0x03)
299#define CyCOR2 (0x09*2)
300#define CyIXM (0x80)
301#define CyTxIBE (0x40)
302#define CyETC (0x20)
303#define CyAUTO_TXFL (0x60)
304#define CyLLM (0x10)
305#define CyRLM (0x08)
306#define CyRtsAO (0x04)
307#define CyCtsAE (0x02)
308#define CyDsrAE (0x01)
309#define CyCOR3 (0x0A*2)
310#define CySPL_CH_DRANGE (0x80) /* special character detect range */
311#define CySPL_CH_DET1 (0x40) /* enable special character detection
312 on SCHR4-SCHR3 */
313#define CyFL_CTRL_TRNSP (0x20) /* Flow Control Transparency */
314#define CySPL_CH_DET2 (0x10) /* Enable special character detection
315 on SCHR2-SCHR1 */
316#define CyREC_FIFO (0x0F) /* Receive FIFO threshold */
317#define CyCOR4 (0x1E*2)
318#define CyCOR5 (0x1F*2)
319#define CyCCSR (0x0B*2)
320#define CyRxEN (0x80)
321#define CyRxFloff (0x40)
322#define CyRxFlon (0x20)
323#define CyTxEN (0x08)
324#define CyTxFloff (0x04)
325#define CyTxFlon (0x02)
326#define CyRDCR (0x0E*2)
327#define CySCHR1 (0x1A*2)
328#define CySCHR2 (0x1B*2)
329#define CySCHR3 (0x1C*2)
330#define CySCHR4 (0x1D*2)
331#define CySCRL (0x22*2)
332#define CySCRH (0x23*2)
333#define CyLNC (0x24*2)
334#define CyMCOR1 (0x15*2)
335#define CyMCOR2 (0x16*2)
336#define CyRTPR (0x21*2)
337#define CyMSVR1 (0x6C*2)
338#define CyMSVR2 (0x6D*2)
339#define CyANY_DELTA (0xF0)
340#define CyDSR (0x80)
341#define CyCTS (0x40)
342#define CyRI (0x20)
343#define CyDCD (0x10)
344#define CyDTR (0x02)
345#define CyRTS (0x01)
346#define CyPVSR (0x6F*2)
347#define CyRBPR (0x78*2)
348#define CyRCOR (0x7C*2)
349#define CyTBPR (0x72*2)
350#define CyTCOR (0x76*2)
351
352/* Custom Registers */
353
354#define CyPLX_VER (0x3400)
355#define PLX_9050 0x0b
356#define PLX_9060 0x0c
357#define PLX_9080 0x0d
358
359/***************************************************************************/
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361#endif /* _LINUX_CYCLADES_H */