1 #ifndef _LINUX_TTY_H
2 #define _LINUX_TTY_H
3
4
5
6
7
8 #include <linux/termios.h>
9
10 #include <asm/system.h>
11
12 #define NR_CONSOLES 8
13
14
15
16
17
18 struct screen_info {
19 unsigned char orig_x;
20 unsigned char orig_y;
21 unsigned char unused1[2];
22 unsigned short orig_video_page;
23 unsigned char orig_video_mode;
24 unsigned char orig_video_cols;
25 unsigned short orig_video_ega_ax;
26 unsigned short orig_video_ega_bx;
27 unsigned short orig_video_ega_cx;
28 unsigned char orig_video_lines;
29 };
30
31 extern struct screen_info screen_info;
32
33 #define ORIG_X (screen_info.orig_x)
34 #define ORIG_Y (screen_info.orig_y)
35 #define ORIG_VIDEO_PAGE (screen_info.orig_video_page)
36 #define ORIG_VIDEO_MODE (screen_info.orig_video_mode)
37 #define ORIG_VIDEO_COLS (screen_info.orig_video_cols)
38 #define ORIG_VIDEO_EGA_AX (screen_info.orig_video_ega_ax)
39 #define ORIG_VIDEO_EGA_BX (screen_info.orig_video_ega_bx)
40 #define ORIG_VIDEO_EGA_CX (screen_info.orig_video_ega_cx)
41 #define ORIG_VIDEO_LINES (screen_info.orig_video_lines)
42
43 #define VIDEO_TYPE_MDA 0x10
44 #define VIDEO_TYPE_CGA 0x11
45 #define VIDEO_TYPE_EGAM 0x20
46 #define VIDEO_TYPE_EGAC 0x21
47
48
49
50
51
52
53 #define __DISABLED_CHAR '\0'
54
55
56
57
58
59
60
61 #define TTY_BUF_SIZE 1024
62
63 struct tty_queue {
64 unsigned long data;
65 unsigned long head;
66 unsigned long tail;
67 struct wait_queue * proc_list;
68 unsigned char buf[TTY_BUF_SIZE];
69 };
70
71 struct serial_struct {
72 int type;
73 int line;
74 int port;
75 int irq;
76 int flags;
77 int xmit_fifo_size;
78 int custom_divisor;
79 int reserved[8];
80 };
81
82
83
84
85 #define PORT_UNKNOWN 0
86 #define PORT_8250 1
87 #define PORT_16450 2
88 #define PORT_16550 3
89 #define PORT_16550A 4
90 #define PORT_MAX 4
91
92
93
94
95 #define ASYNC_NOSCRATCH 0x0001
96 #define ASYNC_FOURPORT 0x0002
97 #define ASYNC_SAK 0x0004
98
99 #define ASYNC_SPD_MASK 0x0030
100 #define ASYNC_SPD_HI 0x0010
101 #define ASYNC_SPD_VHI 0x0020
102 #define ASYNC_SPD_CUST 0x0030
103
104 #define ASYNC_FLAGS 0x0037
105
106 #define IS_A_CONSOLE(min) (((min) & 0xC0) == 0x00)
107 #define IS_A_SERIAL(min) (((min) & 0xC0) == 0x40)
108 #define IS_A_PTY(min) ((min) & 0x80)
109 #define IS_A_PTY_MASTER(min) (((min) & 0xC0) == 0x80)
110 #define IS_A_PTY_SLAVE(min) (((min) & 0xC0) == 0xC0)
111 #define PTY_OTHER(min) ((min) ^ 0x40)
112
113 #define SL_TO_DEV(line) ((line) | 0x40)
114 #define DEV_TO_SL(min) ((min) & 0x3F)
115
116 #define INC(a) ((a) = ((a)+1) & (TTY_BUF_SIZE-1))
117 #define DEC(a) ((a) = ((a)-1) & (TTY_BUF_SIZE-1))
118 #define EMPTY(a) ((a)->head == (a)->tail)
119 #define LEFT(a) (((a)->tail-(a)->head-1)&(TTY_BUF_SIZE-1))
120 #define LAST(a) ((a)->buf[(TTY_BUF_SIZE-1)&((a)->head-1)])
121 #define FULL(a) (!LEFT(a))
122 #define CHARS(a) (((a)->head-(a)->tail)&(TTY_BUF_SIZE-1))
123
124 extern void put_tty_queue(char c, struct tty_queue * queue);
125 extern int get_tty_queue(struct tty_queue * queue);
126
127 #define INTR_CHAR(tty) ((tty)->termios->c_cc[VINTR])
128 #define QUIT_CHAR(tty) ((tty)->termios->c_cc[VQUIT])
129 #define ERASE_CHAR(tty) ((tty)->termios->c_cc[VERASE])
130 #define KILL_CHAR(tty) ((tty)->termios->c_cc[VKILL])
131 #define EOF_CHAR(tty) ((tty)->termios->c_cc[VEOF])
132 #define START_CHAR(tty) ((tty)->termios->c_cc[VSTART])
133 #define STOP_CHAR(tty) ((tty)->termios->c_cc[VSTOP])
134 #define SUSPEND_CHAR(tty) ((tty)->termios->c_cc[VSUSP])
135
136 #define _L_FLAG(tty,f) ((tty)->termios->c_lflag & f)
137 #define _I_FLAG(tty,f) ((tty)->termios->c_iflag & f)
138 #define _O_FLAG(tty,f) ((tty)->termios->c_oflag & f)
139
140 #define L_CANON(tty) _L_FLAG((tty),ICANON)
141 #define L_ISIG(tty) _L_FLAG((tty),ISIG)
142 #define L_ECHO(tty) _L_FLAG((tty),ECHO)
143 #define L_ECHOE(tty) _L_FLAG((tty),ECHOE)
144 #define L_ECHOK(tty) _L_FLAG((tty),ECHOK)
145 #define L_ECHONL(tty) _L_FLAG((tty),ECHONL)
146 #define L_ECHOCTL(tty) _L_FLAG((tty),ECHOCTL)
147 #define L_ECHOKE(tty) _L_FLAG((tty),ECHOKE)
148 #define L_TOSTOP(tty) _L_FLAG((tty),TOSTOP)
149
150 #define I_UCLC(tty) _I_FLAG((tty),IUCLC)
151 #define I_NLCR(tty) _I_FLAG((tty),INLCR)
152 #define I_CRNL(tty) _I_FLAG((tty),ICRNL)
153 #define I_NOCR(tty) _I_FLAG((tty),IGNCR)
154 #define I_IXON(tty) _I_FLAG((tty),IXON)
155 #define I_IXANY(tty) _I_FLAG((tty),IXANY)
156 #define I_STRP(tty) _I_FLAG((tty),ISTRIP)
157
158 #define O_POST(tty) _O_FLAG((tty),OPOST)
159 #define O_NLCR(tty) _O_FLAG((tty),ONLCR)
160 #define O_CRNL(tty) _O_FLAG((tty),OCRNL)
161 #define O_NLRET(tty) _O_FLAG((tty),ONLRET)
162 #define O_LCUC(tty) _O_FLAG((tty),OLCUC)
163
164 #define C_SPEED(tty) ((tty)->termios->c_cflag & CBAUD)
165 #define C_HUP(tty) (C_SPEED((tty)) == B0)
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181 struct tty_struct {
182 struct termios *termios;
183 int pgrp;
184 int session;
185 unsigned char stopped:1, status_changed:1, packet:1;
186 unsigned char ctrl_status;
187 short line;
188 int flags;
189 int count;
190 struct winsize winsize;
191 int (*open)(struct tty_struct * tty, struct file * filp);
192 void (*close)(struct tty_struct * tty, struct file * filp);
193 void (*write)(struct tty_struct * tty);
194 int (*ioctl)(struct tty_struct *tty, struct file * file,
195 unsigned int cmd, unsigned int arg);
196 void (*throttle)(struct tty_struct * tty, int status);
197 struct tty_struct *link;
198 struct tty_queue read_q;
199 struct tty_queue write_q;
200 struct tty_queue secondary;
201 };
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219 #define TTY_THROTTLE_SQ_FULL 1
220 #define TTY_THROTTLE_SQ_AVAIL 2
221 #define TTY_THROTTLE_RQ_FULL 3
222 #define TTY_THROTTLE_RQ_AVAIL 4
223
224
225
226
227
228
229 #define SQ_THRESHOLD_LW 16
230 #define SQ_THRESHOLD_HW 768
231 #define RQ_THRESHOLD_LW 16
232 #define RQ_THRESHOLD_HW 768
233
234
235
236
237
238
239
240
241
242 #define TTY_WRITE_BUSY 0
243 #define TTY_READ_BUSY 1
244 #define TTY_CR_PENDING 2
245 #define TTY_SQ_THROTTLED 3
246 #define TTY_RQ_THROTTLED 4
247
248 #define TTY_WRITE_FLUSH(tty) tty_write_flush((tty))
249 #define TTY_READ_FLUSH(tty) tty_read_flush((tty))
250
251 extern void tty_write_flush(struct tty_struct *);
252 extern void tty_read_flush(struct tty_struct *);
253
254 extern struct tty_struct *tty_table[];
255 extern struct tty_struct * redirect;
256 extern int fg_console;
257 extern unsigned long video_num_columns;
258 extern unsigned long video_num_lines;
259 extern struct wait_queue * keypress_wait;
260
261 #define TTY_TABLE_IDX(nr) ((nr) ? (nr) : (fg_console+1))
262 #define TTY_TABLE(nr) (tty_table[TTY_TABLE_IDX(nr)])
263
264
265
266
267
268
269
270 #define INIT_C_CC "\003\034\177\025\004\0\1\0\021\023\032\0\022\017\027\026\0"
271
272 extern long rs_init(long);
273 extern long lp_init(long);
274 extern long con_init(long);
275 extern long tty_init(long);
276
277 extern void flush_input(struct tty_struct * tty);
278 extern void flush_output(struct tty_struct * tty);
279 extern void wait_until_sent(struct tty_struct * tty);
280 extern void copy_to_cooked(struct tty_struct * tty);
281
282 extern int tty_ioctl(struct inode *, struct file *, unsigned int, unsigned int);
283 extern int is_orphaned_pgrp(int pgrp);
284 extern int is_ignored(int sig);
285 extern int tty_signal(int sig, struct tty_struct *tty);
286 extern int kill_pg(int pgrp, int sig, int priv);
287 extern int kill_sl(int sess, int sig, int priv);
288 extern void do_SAK(struct tty_struct *tty);
289
290
291
292 extern void rs_write(struct tty_struct * tty);
293 extern void con_write(struct tty_struct * tty);
294
295
296
297 extern int rs_open(struct tty_struct * tty, struct file * filp);
298 extern void change_speed(unsigned int line);
299
300
301
302 extern int pty_open(struct tty_struct * tty, struct file * filp);
303
304
305
306 extern int con_open(struct tty_struct * tty, struct file * filp);
307 extern void update_screen(int new_console);
308 extern void blank_screen(void);
309 extern void unblank_screen(void);
310
311
312
313 extern int vt_ioctl(struct tty_struct *tty, struct file * file,
314 unsigned int cmd, unsigned int arg);
315
316 #endif