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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rc203soc/] [sw/] [uClinux/] [drivers/] [char/] [specialix_io8.h] - Blame information for rev 1772

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1626 jcastillo
/*
2
 *      linux/drivers/char/specialix_io8.h  --
3
 *                                   Specialix IO8+ multiport serial driver.
4
 *
5
 *      Copyright (C) 1997 Roger Wolff (R.E.Wolff@BitWizard.nl)
6
 *      Copyright (C) 1994-1996  Dmitry Gorodchanin (pgmdsg@ibi.com)
7
 *
8
 *
9
 *      Specialix pays for the development and support of this driver.
10
 *      Please DO contact io8-linux@specialix.co.uk if you require
11
 *      support.
12
 *
13
 *      This driver was developped in the BitWizard linux device
14
 *      driver service. If you require a linux device driver for your
15
 *      product, please contact devices@BitWizard.nl for a quote.
16
 *
17
 *      This code is firmly based on the riscom/8 serial driver,
18
 *      written by Dmitry Gorodchanin. The specialix IO8+ card
19
 *      programming information was obtained from the CL-CD1865 Data
20
 *      Book, and Specialix document number 6200059: IO8+ Hardware
21
 *      Functional Specification.
22
 *
23
 *      This program is free software; you can redistribute it and/or
24
 *      modify it under the terms of the GNU General Public License as
25
 *      published by the Free Software Foundation; either version 2 of
26
 *      the License, or (at your option) any later version.
27
 *
28
 *      This program is distributed in the hope that it will be
29
 *      useful, but WITHOUT ANY WARRANTY; without even the implied
30
 *      warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
31
 *      PURPOSE.  See the GNU General Public License for more details.
32
 *
33
 *      You should have received a copy of the GNU General Public
34
 *      License along with this program; if not, write to the Free
35
 *      Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
36
 *      USA.
37
 * */
38
 
39
#ifndef __LINUX_SPECIALIX_H
40
#define __LINUX_SPECIALIX_H
41
 
42
#include <linux/serial.h>
43
 
44
#ifdef __KERNEL__
45
 
46
/* You can have max 4 ISA cards in one PC, and I recommend not much
47
more than a few  PCI versions of the card. */
48
 
49
#define SX_NBOARD               8
50
 
51
/* NOTE: Specialix decoder recognizes 4 addresses, but only two are used.... */
52
#define SX_IO_SPACE             4
53
/* The PCI version decodes 8 addresses, but still only 2 are used. */
54
#define SX_PCI_IO_SPACE         8
55
 
56
/* eight ports per board. */
57
#define SX_NPORT                8
58
#define SX_BOARD(line)          ((line) / SX_NPORT)
59
#define SX_PORT(line)           ((line) & (SX_NPORT - 1))
60
 
61
#define SX_DATA_REG 0     /* Base+0 : Data register */
62
#define SX_ADDR_REG 1     /* base+1 : Address register. */
63
 
64
#define MHz *1000000    /* I'm ashamed of myself. */
65
 
66
/* On-board oscillator frequency */
67
#define SX_OSCFREQ      (25 MHz/2)
68
/* There is a 25MHz crystal on the board, but the chip is in /2 mode */
69
 
70
 
71
/* Ticks per sec. Used for setting receiver timeout and break length */
72
#define SPECIALIX_TPS           4000
73
 
74
/* Yeah, after heavy testing I decided it must be 6.
75
 * Sure, You can change it if needed.
76
 */
77
#define SPECIALIX_RXFIFO        6       /* Max. receiver FIFO size (1-8) */
78
 
79
#define SPECIALIX_MAGIC         0x0907
80
 
81
#define SX_CCR_TIMEOUT 10000   /* CCR timeout. You may need to wait upto
82
                                  10 milliseconds before the internal
83
                                  processor is available again after
84
                                  you give it a command */
85
 
86
#define SX_IOBASE1      0x100
87
#define SX_IOBASE2      0x180
88
#define SX_IOBASE3      0x250
89
#define SX_IOBASE4      0x260
90
 
91
struct specialix_board {
92
        unsigned long   flags;
93
        unsigned short  base;
94
        unsigned char   irq;
95
        signed   char   count;
96
        unsigned char   DTR;
97
        int reg;
98
};
99
 
100
#define SX_BOARD_PRESENT        0x00000001
101
#define SX_BOARD_ACTIVE         0x00000002
102
#define SX_BOARD_IS_PCI         0x00000004
103
 
104
 
105
struct specialix_port {
106
        int                     magic;
107
        int                     baud_base;
108
        int                     flags;
109
        struct tty_struct       * tty;
110
        int                     count;
111
        int                     blocked_open;
112
        int                     event;
113
        int                     timeout;
114
        int                     close_delay;
115
        long                    session;
116
        long                    pgrp;
117
        unsigned char           * xmit_buf;
118
        int                     custom_divisor;
119
        int                     xmit_head;
120
        int                     xmit_tail;
121
        int                     xmit_cnt;
122
        struct termios          normal_termios;
123
        struct termios          callout_termios;
124
        struct wait_queue       *open_wait;
125
        struct wait_queue       *close_wait;
126
        struct tq_struct        tqueue;
127
        struct tq_struct        tqueue_hangup;
128
        short                   wakeup_chars;
129
        short                   break_length;
130
        unsigned short          closing_wait;
131
        unsigned char           mark_mask;
132
        unsigned char           IER;
133
        unsigned char           MSVR;
134
        unsigned char           COR2;
135
#ifdef SX_REPORT_OVERRUN
136
        unsigned long           overrun;
137
#endif  
138
#ifdef SX_REPORT_FIFO
139
        unsigned long           hits[10];
140
#endif
141
};
142
 
143
#endif /* __KERNEL__ */
144
#endif /* __LINUX_SPECIALIX_H */
145
 
146
 
147
 
148
 
149
 
150
 
151
 
152
 
153
 

powered by: WebSVN 2.1.0

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