OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [uclinux/] [uClinux-2.0.x/] [include/] [linux/] [cyclades.h] - Blame information for rev 1765

Details | Compare with Previous | View Log

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

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.