1 #ifndef _LINUX_TTY_H
2 #define _LINUX_TTY_H
3
4
5
6
7
8 #ifdef __KERNEL__
9 #include <linux/fs.h>
10 #include <linux/termios.h>
11 #include <linux/tqueue.h>
12 #include <linux/tty_driver.h>
13 #include <linux/tty_ldisc.h>
14
15 #include <asm/system.h>
16
17
18
19
20
21
22
23
24 #define MIN_NR_CONSOLES 1
25 #define MAX_NR_CONSOLES 63
26 #define MAX_NR_USER_CONSOLES 63
27
28
29 #define NR_PTYS 64
30 #define NR_LDISCS 16
31
32
33
34
35
36 struct screen_info {
37 unsigned char orig_x;
38 unsigned char orig_y;
39 unsigned char unused1[2];
40 unsigned short orig_video_page;
41 unsigned char orig_video_mode;
42 unsigned char orig_video_cols;
43 unsigned short orig_video_ega_ax;
44 unsigned short orig_video_ega_bx;
45 unsigned short orig_video_ega_cx;
46 unsigned char orig_video_lines;
47 unsigned char orig_video_isVGA;
48 unsigned short orig_video_points;
49 };
50
51 extern struct screen_info screen_info;
52
53 #define ORIG_X (screen_info.orig_x)
54 #define ORIG_Y (screen_info.orig_y)
55 #define ORIG_VIDEO_PAGE (screen_info.orig_video_page)
56 #define ORIG_VIDEO_MODE (screen_info.orig_video_mode)
57 #define ORIG_VIDEO_COLS (screen_info.orig_video_cols)
58 #define ORIG_VIDEO_EGA_AX (screen_info.orig_video_ega_ax)
59 #define ORIG_VIDEO_EGA_BX (screen_info.orig_video_ega_bx)
60 #define ORIG_VIDEO_EGA_CX (screen_info.orig_video_ega_cx)
61 #define ORIG_VIDEO_LINES (screen_info.orig_video_lines)
62 #define ORIG_VIDEO_ISVGA (screen_info.orig_video_isVGA)
63 #define ORIG_VIDEO_POINTS (screen_info.orig_video_points)
64
65 #define VIDEO_TYPE_MDA 0x10
66 #define VIDEO_TYPE_CGA 0x11
67 #define VIDEO_TYPE_EGAM 0x20
68 #define VIDEO_TYPE_EGAC 0x21
69 #define VIDEO_TYPE_VGAC 0x22
70
71
72
73
74
75
76 #define __DISABLED_CHAR '\0'
77
78
79
80
81
82
83 #define TTY_FLIPBUF_SIZE 512
84
85 struct tty_flip_buffer {
86 struct tq_struct tqueue;
87 unsigned char char_buf[2*TTY_FLIPBUF_SIZE];
88 char flag_buf[2*TTY_FLIPBUF_SIZE];
89 char *char_buf_ptr;
90 unsigned char *flag_buf_ptr;
91 int count;
92 int buf_num;
93 };
94
95
96
97
98
99 #define TTY_NORMAL 0
100 #define TTY_BREAK 1
101 #define TTY_FRAME 2
102 #define TTY_PARITY 3
103 #define TTY_OVERRUN 4
104
105 #define INTR_CHAR(tty) ((tty)->termios->c_cc[VINTR])
106 #define QUIT_CHAR(tty) ((tty)->termios->c_cc[VQUIT])
107 #define ERASE_CHAR(tty) ((tty)->termios->c_cc[VERASE])
108 #define KILL_CHAR(tty) ((tty)->termios->c_cc[VKILL])
109 #define EOF_CHAR(tty) ((tty)->termios->c_cc[VEOF])
110 #define TIME_CHAR(tty) ((tty)->termios->c_cc[VTIME])
111 #define MIN_CHAR(tty) ((tty)->termios->c_cc[VMIN])
112 #define SWTC_CHAR(tty) ((tty)->termios->c_cc[VSWTC])
113 #define START_CHAR(tty) ((tty)->termios->c_cc[VSTART])
114 #define STOP_CHAR(tty) ((tty)->termios->c_cc[VSTOP])
115 #define SUSP_CHAR(tty) ((tty)->termios->c_cc[VSUSP])
116 #define EOL_CHAR(tty) ((tty)->termios->c_cc[VEOL])
117 #define REPRINT_CHAR(tty) ((tty)->termios->c_cc[VREPRINT])
118 #define DISCARD_CHAR(tty) ((tty)->termios->c_cc[VDISCARD])
119 #define WERASE_CHAR(tty) ((tty)->termios->c_cc[VWERASE])
120 #define LNEXT_CHAR(tty) ((tty)->termios->c_cc[VLNEXT])
121 #define EOL2_CHAR(tty) ((tty)->termios->c_cc[VEOL2])
122
123 #define _I_FLAG(tty,f) ((tty)->termios->c_iflag & (f))
124 #define _O_FLAG(tty,f) ((tty)->termios->c_oflag & (f))
125 #define _C_FLAG(tty,f) ((tty)->termios->c_cflag & (f))
126 #define _L_FLAG(tty,f) ((tty)->termios->c_lflag & (f))
127
128 #define I_IGNBRK(tty) _I_FLAG((tty),IGNBRK)
129 #define I_BRKINT(tty) _I_FLAG((tty),BRKINT)
130 #define I_IGNPAR(tty) _I_FLAG((tty),IGNPAR)
131 #define I_PARMRK(tty) _I_FLAG((tty),PARMRK)
132 #define I_INPCK(tty) _I_FLAG((tty),INPCK)
133 #define I_ISTRIP(tty) _I_FLAG((tty),ISTRIP)
134 #define I_INLCR(tty) _I_FLAG((tty),INLCR)
135 #define I_IGNCR(tty) _I_FLAG((tty),IGNCR)
136 #define I_ICRNL(tty) _I_FLAG((tty),ICRNL)
137 #define I_IUCLC(tty) _I_FLAG((tty),IUCLC)
138 #define I_IXON(tty) _I_FLAG((tty),IXON)
139 #define I_IXANY(tty) _I_FLAG((tty),IXANY)
140 #define I_IXOFF(tty) _I_FLAG((tty),IXOFF)
141 #define I_IMAXBEL(tty) _I_FLAG((tty),IMAXBEL)
142
143 #define O_OPOST(tty) _O_FLAG((tty),OPOST)
144 #define O_OLCUC(tty) _O_FLAG((tty),OLCUC)
145 #define O_ONLCR(tty) _O_FLAG((tty),ONLCR)
146 #define O_OCRNL(tty) _O_FLAG((tty),OCRNL)
147 #define O_ONOCR(tty) _O_FLAG((tty),ONOCR)
148 #define O_ONLRET(tty) _O_FLAG((tty),ONLRET)
149 #define O_OFILL(tty) _O_FLAG((tty),OFILL)
150 #define O_OFDEL(tty) _O_FLAG((tty),OFDEL)
151 #define O_NLDLY(tty) _O_FLAG((tty),NLDLY)
152 #define O_CRDLY(tty) _O_FLAG((tty),CRDLY)
153 #define O_TABDLY(tty) _O_FLAG((tty),TABDLY)
154 #define O_BSDLY(tty) _O_FLAG((tty),BSDLY)
155 #define O_VTDLY(tty) _O_FLAG((tty),VTDLY)
156 #define O_FFDLY(tty) _O_FLAG((tty),FFDLY)
157
158 #define C_BAUD(tty) _C_FLAG((tty),CBAUD)
159 #define C_CSIZE(tty) _C_FLAG((tty),CSIZE)
160 #define C_CSTOPB(tty) _C_FLAG((tty),CSTOPB)
161 #define C_CREAD(tty) _C_FLAG((tty),CREAD)
162 #define C_PARENB(tty) _C_FLAG((tty),PARENB)
163 #define C_PARODD(tty) _C_FLAG((tty),PARODD)
164 #define C_HUPCL(tty) _C_FLAG((tty),HUPCL)
165 #define C_CLOCAL(tty) _C_FLAG((tty),CLOCAL)
166 #define C_CIBAUD(tty) _C_FLAG((tty),CIBAUD)
167 #define C_CRTSCTS(tty) _C_FLAG((tty),CRTSCTS)
168
169 #define L_ISIG(tty) _L_FLAG((tty),ISIG)
170 #define L_ICANON(tty) _L_FLAG((tty),ICANON)
171 #define L_XCASE(tty) _L_FLAG((tty),XCASE)
172 #define L_ECHO(tty) _L_FLAG((tty),ECHO)
173 #define L_ECHOE(tty) _L_FLAG((tty),ECHOE)
174 #define L_ECHOK(tty) _L_FLAG((tty),ECHOK)
175 #define L_ECHONL(tty) _L_FLAG((tty),ECHONL)
176 #define L_NOFLSH(tty) _L_FLAG((tty),NOFLSH)
177 #define L_TOSTOP(tty) _L_FLAG((tty),TOSTOP)
178 #define L_ECHOCTL(tty) _L_FLAG((tty),ECHOCTL)
179 #define L_ECHOPRT(tty) _L_FLAG((tty),ECHOPRT)
180 #define L_ECHOKE(tty) _L_FLAG((tty),ECHOKE)
181 #define L_FLUSHO(tty) _L_FLAG((tty),FLUSHO)
182 #define L_PENDIN(tty) _L_FLAG((tty),PENDIN)
183 #define L_IEXTEN(tty) _L_FLAG((tty),IEXTEN)
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199 struct tty_struct {
200 int magic;
201 struct tty_driver driver;
202 struct tty_ldisc ldisc;
203 struct termios *termios, *termios_locked;
204 int pgrp;
205 int session;
206 dev_t device;
207 unsigned long flags;
208 int count;
209 struct winsize winsize;
210 unsigned char stopped:1, hw_stopped:1, packet:1;
211 unsigned char ctrl_status;
212
213 struct tty_struct *link;
214 struct fasync_struct *fasync;
215 struct tty_flip_buffer flip;
216 int max_flip_cnt;
217 struct wait_queue *write_wait;
218 struct wait_queue *read_wait;
219 void *disc_data;
220 void *driver_data;
221
222 #define N_TTY_BUF_SIZE 4096
223
224
225
226
227
228 unsigned int column;
229 unsigned char lnext:1, erasing:1, raw:1, real_raw:1, icanon:1;
230 unsigned char closing:1;
231 unsigned short minimum_to_wake;
232 unsigned overrun_time;
233 int num_overrun;
234 unsigned long process_char_map[256/(8*sizeof(unsigned long))];
235 char *read_buf;
236 int read_head;
237 int read_tail;
238 int read_cnt;
239 unsigned long read_flags[N_TTY_BUF_SIZE/(8*sizeof(unsigned long))];
240 int canon_data;
241 unsigned long canon_head;
242 unsigned int canon_column;
243 };
244
245
246 #define TTY_MAGIC 0x5401
247
248
249
250
251
252
253
254
255
256 #define TTY_THROTTLED 0
257 #define TTY_IO_ERROR 1
258 #define TTY_SLAVE_CLOSED 2
259 #define TTY_EXCLUSIVE 3
260 #define TTY_DEBUG 4
261 #define TTY_DO_WRITE_WAKEUP 5
262 #define TTY_PUSH 6
263 #define TTY_CLOSING 7
264
265 #define TTY_WRITE_FLUSH(tty) tty_write_flush((tty))
266
267 extern void tty_write_flush(struct tty_struct *);
268
269 extern struct termios tty_std_termios;
270 extern struct tty_struct * redirect;
271 extern struct tty_ldisc ldiscs[];
272 extern int fg_console;
273 extern struct wait_queue * keypress_wait;
274
275 extern long rs_init(long);
276 extern long lp_init(long);
277 extern long con_init(long);
278 extern long pty_init(long);
279 extern long tty_init(long);
280 extern long vcs_init(long);
281 #ifdef CONFIG_CYCLADES
282 extern long cy_init(long);
283 #endif
284
285 extern int tty_paranoia_check(struct tty_struct *tty, dev_t device,
286 const char *routine);
287 extern char *_tty_name(struct tty_struct *tty, char *buf);
288 extern char *tty_name(struct tty_struct *tty);
289 extern void tty_wait_until_sent(struct tty_struct * tty, int timeout);
290 extern int tty_check_change(struct tty_struct * tty);
291 extern void stop_tty(struct tty_struct * tty);
292 extern void start_tty(struct tty_struct * tty);
293 extern int tty_register_ldisc(int disc, struct tty_ldisc *new_ldisc);
294 extern int tty_register_driver(struct tty_driver *driver);
295 extern int tty_unregister_driver(struct tty_driver *driver);
296 extern int tty_read_raw_data(struct tty_struct *tty, unsigned char *bufp,
297 int buflen);
298
299 extern int is_orphaned_pgrp(int pgrp);
300 extern int is_ignored(int sig);
301 extern int tty_signal(int sig, struct tty_struct *tty);
302 extern void tty_hangup(struct tty_struct * tty);
303 extern void tty_vhangup(struct tty_struct * tty);
304 extern void tty_unhangup(struct file *filp);
305 extern int tty_hung_up_p(struct file * filp);
306 extern void do_SAK(struct tty_struct *tty);
307 extern void disassociate_ctty(int priv);
308
309
310 extern struct tty_ldisc tty_ldisc_N_TTY;
311
312
313 extern int n_tty_ioctl(struct tty_struct * tty, struct file * file,
314 unsigned int cmd, unsigned long arg);
315
316
317
318 extern int rs_open(struct tty_struct * tty, struct file * filp);
319
320
321
322 extern int pty_open(struct tty_struct * tty, struct file * filp);
323
324
325
326 extern int con_open(struct tty_struct * tty, struct file * filp);
327 extern void update_screen(int new_console);
328
329
330
331 extern int vt_ioctl(struct tty_struct *tty, struct file * file,
332 unsigned int cmd, unsigned long arg);
333
334 #endif
335 #endif