blob: 59f1c0bd8f9c6f8734a1320185a3eb28a9b29990 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_TTY_DRIVER_H
2#define _LINUX_TTY_DRIVER_H
3
4/*
5 * This structure defines the interface between the low-level tty
6 * driver and the tty routines. The following routines can be
7 * defined; unless noted otherwise, they are optional, and can be
8 * filled in with a null pointer.
9 *
10 * int (*open)(struct tty_struct * tty, struct file * filp);
11 *
12 * This routine is called when a particular tty device is opened.
13 * This routine is mandatory; if this routine is not filled in,
14 * the attempted open will fail with ENODEV.
Alan Coxf34d7a52008-04-30 00:54:13 -070015 *
16 * Required method.
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 *
18 * void (*close)(struct tty_struct * tty, struct file * filp);
19 *
20 * This routine is called when a particular tty device is closed.
21 *
Alan Coxf34d7a52008-04-30 00:54:13 -070022 * Required method.
23 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * int (*write)(struct tty_struct * tty,
25 * const unsigned char *buf, int count);
26 *
27 * This routine is called by the kernel to write a series of
28 * characters to the tty device. The characters may come from
29 * user space or kernel space. This routine will return the
30 * number of characters actually accepted for writing. This
31 * routine is mandatory.
32 *
Alan Coxf34d7a52008-04-30 00:54:13 -070033 * Optional: Required for writable devices.
34 *
35 * int (*put_char)(struct tty_struct *tty, unsigned char ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 *
37 * This routine is called by the kernel to write a single
38 * character to the tty device. If the kernel uses this routine,
39 * it must call the flush_chars() routine (if defined) when it is
40 * done stuffing characters into the driver. If there is no room
41 * in the queue, the character is ignored.
42 *
Alan Coxf34d7a52008-04-30 00:54:13 -070043 * Optional: Kernel will use the write method if not provided.
44 *
45 * Note: Do not call this function directly, call tty_put_char
46 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 * void (*flush_chars)(struct tty_struct *tty);
48 *
49 * This routine is called by the kernel after it has written a
50 * series of characters to the tty device using put_char().
Alan Coxf34d7a52008-04-30 00:54:13 -070051 *
52 * Optional:
53 *
54 * Note: Do not call this function directly, call tty_driver_flush_chars
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 *
56 * int (*write_room)(struct tty_struct *tty);
57 *
58 * This routine returns the numbers of characters the tty driver
59 * will accept for queuing to be written. This number is subject
60 * to change as output buffers get emptied, or if the output flow
61 * control is acted.
Alan Coxf34d7a52008-04-30 00:54:13 -070062 *
63 * Required if write method is provided else not needed.
64 *
65 * Note: Do not call this function directly, call tty_write_room
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 *
67 * int (*ioctl)(struct tty_struct *tty, struct file * file,
68 * unsigned int cmd, unsigned long arg);
69 *
70 * This routine allows the tty driver to implement
71 * device-specific ioctl's. If the ioctl number passed in cmd
72 * is not recognized by the driver, it should return ENOIOCTLCMD.
Paul Fulghume10cc1d2007-05-10 22:22:50 -070073 *
Alan Coxf34d7a52008-04-30 00:54:13 -070074 * Optional
75 *
Paul Fulghume10cc1d2007-05-10 22:22:50 -070076 * long (*compat_ioctl)(struct tty_struct *tty, struct file * file,
77 * unsigned int cmd, unsigned long arg);
78 *
79 * implement ioctl processing for 32 bit process on 64 bit system
Alan Coxf34d7a52008-04-30 00:54:13 -070080 *
81 * Optional
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 *
Alan Coxedc6afc2006-12-08 02:38:44 -080083 * void (*set_termios)(struct tty_struct *tty, struct ktermios * old);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 *
85 * This routine allows the tty driver to be notified when
Alan Coxf34d7a52008-04-30 00:54:13 -070086 * device's termios settings have changed.
87 *
88 * Optional: Called under the termios lock
89 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 *
91 * void (*set_ldisc)(struct tty_struct *tty);
92 *
93 * This routine allows the tty driver to be notified when the
94 * device's termios settings have changed.
Alan Coxf34d7a52008-04-30 00:54:13 -070095 *
96 * Optional: Called under BKL (currently)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 *
98 * void (*throttle)(struct tty_struct * tty);
99 *
100 * This routine notifies the tty driver that input buffers for
101 * the line discipline are close to full, and it should somehow
102 * signal that no more characters should be sent to the tty.
Alan Cox39c2e602008-04-30 00:54:18 -0700103 *
104 * Optional: Always invoke via tty_throttle();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 *
106 * void (*unthrottle)(struct tty_struct * tty);
107 *
108 * This routine notifies the tty drivers that it should signals
109 * that characters can now be sent to the tty without fear of
110 * overrunning the input buffers of the line disciplines.
111 *
Alan Cox39c2e602008-04-30 00:54:18 -0700112 * Optional: Always invoke via tty_unthrottle();
113 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 * void (*stop)(struct tty_struct *tty);
115 *
116 * This routine notifies the tty driver that it should stop
117 * outputting characters to the tty device.
Alan Coxf34d7a52008-04-30 00:54:13 -0700118 *
119 * Optional:
120 *
121 * Note: Call stop_tty not this method.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 *
123 * void (*start)(struct tty_struct *tty);
124 *
125 * This routine notifies the tty driver that it resume sending
126 * characters to the tty device.
Alan Coxf34d7a52008-04-30 00:54:13 -0700127 *
128 * Optional:
129 *
130 * Note: Call start_tty not this method.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 *
132 * void (*hangup)(struct tty_struct *tty);
133 *
134 * This routine notifies the tty driver that it should hangup the
135 * tty device.
136 *
Alan Coxf34d7a52008-04-30 00:54:13 -0700137 * Required:
138 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 * void (*break_ctl)(struct tty_stuct *tty, int state);
140 *
141 * This optional routine requests the tty driver to turn on or
142 * off BREAK status on the RS-232 port. If state is -1,
143 * then the BREAK status should be turned on; if state is 0, then
144 * BREAK should be turned off.
145 *
146 * If this routine is implemented, the high-level tty driver will
147 * handle the following ioctls: TCSBRK, TCSBRKP, TIOCSBRK,
Alan Coxf34d7a52008-04-30 00:54:13 -0700148 * TIOCCBRK.
149 *
150 * Optional: Required for TCSBRK/BRKP/etc handling.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 *
152 * void (*wait_until_sent)(struct tty_struct *tty, int timeout);
153 *
154 * This routine waits until the device has written out all of the
155 * characters in its transmitter FIFO.
156 *
Alan Coxf34d7a52008-04-30 00:54:13 -0700157 * Optional: If not provided the device is assumed to have no FIFO
158 *
159 * Note: Usually correct to call tty_wait_until_sent
160 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 * void (*send_xchar)(struct tty_struct *tty, char ch);
162 *
163 * This routine is used to send a high-priority XON/XOFF
164 * character to the device.
Alan Coxf34d7a52008-04-30 00:54:13 -0700165 *
166 * Optional: If not provided then the write method is called under
167 * the atomic write lock to keep it serialized with the ldisc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 */
169
170#include <linux/fs.h>
171#include <linux/list.h>
172#include <linux/cdev.h>
173
174struct tty_struct;
Jason Wesself2d937f2008-04-17 20:05:37 +0200175struct tty_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177struct tty_operations {
178 int (*open)(struct tty_struct * tty, struct file * filp);
179 void (*close)(struct tty_struct * tty, struct file * filp);
180 int (*write)(struct tty_struct * tty,
181 const unsigned char *buf, int count);
Alan Coxf34d7a52008-04-30 00:54:13 -0700182 int (*put_char)(struct tty_struct *tty, unsigned char ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 void (*flush_chars)(struct tty_struct *tty);
184 int (*write_room)(struct tty_struct *tty);
185 int (*chars_in_buffer)(struct tty_struct *tty);
186 int (*ioctl)(struct tty_struct *tty, struct file * file,
187 unsigned int cmd, unsigned long arg);
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700188 long (*compat_ioctl)(struct tty_struct *tty, struct file * file,
189 unsigned int cmd, unsigned long arg);
Alan Coxedc6afc2006-12-08 02:38:44 -0800190 void (*set_termios)(struct tty_struct *tty, struct ktermios * old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 void (*throttle)(struct tty_struct * tty);
192 void (*unthrottle)(struct tty_struct * tty);
193 void (*stop)(struct tty_struct *tty);
194 void (*start)(struct tty_struct *tty);
195 void (*hangup)(struct tty_struct *tty);
196 void (*break_ctl)(struct tty_struct *tty, int state);
197 void (*flush_buffer)(struct tty_struct *tty);
198 void (*set_ldisc)(struct tty_struct *tty);
199 void (*wait_until_sent)(struct tty_struct *tty, int timeout);
200 void (*send_xchar)(struct tty_struct *tty, char ch);
201 int (*read_proc)(char *page, char **start, off_t off,
202 int count, int *eof, void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 int (*tiocmget)(struct tty_struct *tty, struct file *file);
204 int (*tiocmset)(struct tty_struct *tty, struct file *file,
205 unsigned int set, unsigned int clear);
Jason Wesself2d937f2008-04-17 20:05:37 +0200206#ifdef CONFIG_CONSOLE_POLL
207 int (*poll_init)(struct tty_driver *driver, int line, char *options);
208 int (*poll_get_char)(struct tty_driver *driver, int line);
209 void (*poll_put_char)(struct tty_driver *driver, int line, char ch);
210#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211};
212
213struct tty_driver {
214 int magic; /* magic number for this structure */
215 struct cdev cdev;
216 struct module *owner;
217 const char *driver_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 const char *name;
219 int name_base; /* offset of printed name */
220 int major; /* major device number */
221 int minor_start; /* start of minor device number */
222 int minor_num; /* number of *possible* devices */
223 int num; /* number of devices allocated */
224 short type; /* type of tty driver */
225 short subtype; /* subtype of tty driver */
Alan Coxedc6afc2006-12-08 02:38:44 -0800226 struct ktermios init_termios; /* Initial termios */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 int flags; /* tty driver flags */
228 int refcount; /* for loadable tty drivers */
229 struct proc_dir_entry *proc_entry; /* /proc fs entry */
230 struct tty_driver *other; /* only used for the PTY driver */
231
232 /*
233 * Pointer to the tty data structures
234 */
235 struct tty_struct **ttys;
Alan Coxedc6afc2006-12-08 02:38:44 -0800236 struct ktermios **termios;
237 struct ktermios **termios_locked;
Alan Coxf34d7a52008-04-30 00:54:13 -0700238 void *driver_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Alan Coxf34d7a52008-04-30 00:54:13 -0700240 /*
241 * Driver methods
242 */
243
244 const struct tty_operations *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 struct list_head tty_drivers;
246};
247
248extern struct list_head tty_drivers;
249
250struct tty_driver *alloc_tty_driver(int lines);
251void put_tty_driver(struct tty_driver *driver);
Jeff Dikeb68e31d2006-10-02 02:17:18 -0700252void tty_set_operations(struct tty_driver *driver,
253 const struct tty_operations *op);
Jason Wesself2d937f2008-04-17 20:05:37 +0200254extern struct tty_driver *tty_find_polling_driver(char *name, int *line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256/* tty driver magic number */
257#define TTY_DRIVER_MAGIC 0x5402
258
259/*
260 * tty driver flags
261 *
262 * TTY_DRIVER_RESET_TERMIOS --- requests the tty layer to reset the
263 * termios setting when the last process has closed the device.
264 * Used for PTY's, in particular.
265 *
266 * TTY_DRIVER_REAL_RAW --- if set, indicates that the driver will
267 * guarantee never not to set any special character handling
268 * flags if ((IGNBRK || (!BRKINT && !PARMRK)) && (IGNPAR ||
269 * !INPCK)). That is, if there is no reason for the driver to
270 * send notifications of parity and break characters up to the
271 * line driver, it won't do so. This allows the line driver to
272 * optimize for this case if this flag is set. (Note that there
273 * is also a promise, if the above case is true, not to signal
274 * overruns, either.)
275 *
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -0700276 * TTY_DRIVER_DYNAMIC_DEV --- if set, the individual tty devices need
277 * to be registered with a call to tty_register_driver() when the
278 * device is found in the system and unregistered with a call to
279 * tty_unregister_device() so the devices will be show up
280 * properly in sysfs. If not set, driver->num entries will be
281 * created by the tty core in sysfs when tty_register_driver() is
282 * called. This is to be used by drivers that have tty devices
283 * that can appear and disappear while the main tty driver is
284 * registered with the tty core.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 *
286 * TTY_DRIVER_DEVPTS_MEM -- don't use the standard arrays, instead
287 * use dynamic memory keyed through the devpts filesystem. This
288 * is only applicable to the pty driver.
289 */
290#define TTY_DRIVER_INSTALLED 0x0001
291#define TTY_DRIVER_RESET_TERMIOS 0x0002
292#define TTY_DRIVER_REAL_RAW 0x0004
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -0700293#define TTY_DRIVER_DYNAMIC_DEV 0x0008
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294#define TTY_DRIVER_DEVPTS_MEM 0x0010
295
296/* tty driver types */
297#define TTY_DRIVER_TYPE_SYSTEM 0x0001
298#define TTY_DRIVER_TYPE_CONSOLE 0x0002
299#define TTY_DRIVER_TYPE_SERIAL 0x0003
300#define TTY_DRIVER_TYPE_PTY 0x0004
301#define TTY_DRIVER_TYPE_SCC 0x0005 /* scc driver */
302#define TTY_DRIVER_TYPE_SYSCONS 0x0006
303
304/* system subtypes (magic, used by tty_io.c) */
305#define SYSTEM_TYPE_TTY 0x0001
306#define SYSTEM_TYPE_CONSOLE 0x0002
307#define SYSTEM_TYPE_SYSCONS 0x0003
308#define SYSTEM_TYPE_SYSPTMX 0x0004
309
310/* pty subtypes (magic, used by tty_io.c) */
311#define PTY_TYPE_MASTER 0x0001
312#define PTY_TYPE_SLAVE 0x0002
313
314/* serial subtype definitions */
315#define SERIAL_TYPE_NORMAL 1
316
317#endif /* #ifdef _LINUX_TTY_DRIVER_H */