]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/linux/tty_driver.h
ba891dd23550d1a593b9d2c6707db23fb83edb4b
[linux-2.6-omap-h63xx.git] / include / linux / tty_driver.h
1 #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  * struct tty_struct * (*lookup)(struct tty_driver *self, int idx)
11  *
12  *      Return the tty device corresponding to idx, NULL if there is not
13  *      one currently in use and an ERR_PTR value on error. Called under
14  *      tty_mutex (for now!)
15  *
16  *      Optional method. Default behaviour is to use the ttys array
17  *
18  * int  (*open)(struct tty_struct * tty, struct file * filp);
19  *
20  *      This routine is called when a particular tty device is opened.
21  *      This routine is mandatory; if this routine is not filled in,
22  *      the attempted open will fail with ENODEV.
23  *
24  *      Required method.
25  *     
26  * void (*close)(struct tty_struct * tty, struct file * filp);
27  *
28  *      This routine is called when a particular tty device is closed.
29  *
30  *      Required method.
31  *
32  * void (*shutdown)(struct tty_struct * tty);
33  *
34  *      This routine is called when a particular tty device is closed for
35  *      the last time freeing up the resources.
36  *
37  * int (*write)(struct tty_struct * tty,
38  *               const unsigned char *buf, int count);
39  *
40  *      This routine is called by the kernel to write a series of
41  *      characters to the tty device.  The characters may come from
42  *      user space or kernel space.  This routine will return the
43  *      number of characters actually accepted for writing.
44  *
45  *      Optional: Required for writable devices.
46  *
47  * int (*put_char)(struct tty_struct *tty, unsigned char ch);
48  *
49  *      This routine is called by the kernel to write a single
50  *      character to the tty device.  If the kernel uses this routine,
51  *      it must call the flush_chars() routine (if defined) when it is
52  *      done stuffing characters into the driver.  If there is no room
53  *      in the queue, the character is ignored.
54  *
55  *      Optional: Kernel will use the write method if not provided.
56  *
57  *      Note: Do not call this function directly, call tty_put_char
58  *
59  * void (*flush_chars)(struct tty_struct *tty);
60  *
61  *      This routine is called by the kernel after it has written a
62  *      series of characters to the tty device using put_char().  
63  *
64  *      Optional:
65  *
66  *      Note: Do not call this function directly, call tty_driver_flush_chars
67  * 
68  * int  (*write_room)(struct tty_struct *tty);
69  *
70  *      This routine returns the numbers of characters the tty driver
71  *      will accept for queuing to be written.  This number is subject
72  *      to change as output buffers get emptied, or if the output flow
73  *      control is acted.
74  *
75  *      Required if write method is provided else not needed.
76  *
77  *      Note: Do not call this function directly, call tty_write_room
78  * 
79  * int  (*ioctl)(struct tty_struct *tty, struct file * file,
80  *          unsigned int cmd, unsigned long arg);
81  *
82  *      This routine allows the tty driver to implement
83  *      device-specific ioctl's.  If the ioctl number passed in cmd
84  *      is not recognized by the driver, it should return ENOIOCTLCMD.
85  *
86  *      Optional
87  *
88  * long (*compat_ioctl)(struct tty_struct *tty, struct file * file,
89  *                      unsigned int cmd, unsigned long arg);
90  *
91  *      implement ioctl processing for 32 bit process on 64 bit system
92  *
93  *      Optional
94  * 
95  * void (*set_termios)(struct tty_struct *tty, struct ktermios * old);
96  *
97  *      This routine allows the tty driver to be notified when
98  *      device's termios settings have changed.
99  *
100  *      Optional: Called under the termios lock
101  *
102  *
103  * void (*set_ldisc)(struct tty_struct *tty);
104  *
105  *      This routine allows the tty driver to be notified when the
106  *      device's termios settings have changed.
107  *
108  *      Optional: Called under BKL (currently)
109  * 
110  * void (*throttle)(struct tty_struct * tty);
111  *
112  *      This routine notifies the tty driver that input buffers for
113  *      the line discipline are close to full, and it should somehow
114  *      signal that no more characters should be sent to the tty.
115  *
116  *      Optional: Always invoke via tty_throttle();
117  * 
118  * void (*unthrottle)(struct tty_struct * tty);
119  *
120  *      This routine notifies the tty drivers that it should signals
121  *      that characters can now be sent to the tty without fear of
122  *      overrunning the input buffers of the line disciplines.
123  * 
124  *      Optional: Always invoke via tty_unthrottle();
125  *
126  * void (*stop)(struct tty_struct *tty);
127  *
128  *      This routine notifies the tty driver that it should stop
129  *      outputting characters to the tty device.  
130  *
131  *      Optional:
132  *
133  *      Note: Call stop_tty not this method.
134  * 
135  * void (*start)(struct tty_struct *tty);
136  *
137  *      This routine notifies the tty driver that it resume sending
138  *      characters to the tty device.
139  *
140  *      Optional:
141  *
142  *      Note: Call start_tty not this method.
143  * 
144  * void (*hangup)(struct tty_struct *tty);
145  *
146  *      This routine notifies the tty driver that it should hangup the
147  *      tty device.
148  *
149  *      Optional:
150  *
151  * int (*break_ctl)(struct tty_stuct *tty, int state);
152  *
153  *      This optional routine requests the tty driver to turn on or
154  *      off BREAK status on the RS-232 port.  If state is -1,
155  *      then the BREAK status should be turned on; if state is 0, then
156  *      BREAK should be turned off.
157  *
158  *      If this routine is implemented, the high-level tty driver will
159  *      handle the following ioctls: TCSBRK, TCSBRKP, TIOCSBRK,
160  *      TIOCCBRK.
161  *
162  *      If the driver sets TTY_DRIVER_HARDWARE_BREAK then the interface
163  *      will also be called with actual times and the hardware is expected
164  *      to do the delay work itself. 0 and -1 are still used for on/off.
165  *
166  *      Optional: Required for TCSBRK/BRKP/etc handling.
167  *
168  * void (*wait_until_sent)(struct tty_struct *tty, int timeout);
169  * 
170  *      This routine waits until the device has written out all of the
171  *      characters in its transmitter FIFO.
172  *
173  *      Optional: If not provided the device is assumed to have no FIFO
174  *
175  *      Note: Usually correct to call tty_wait_until_sent
176  *
177  * void (*send_xchar)(struct tty_struct *tty, char ch);
178  *
179  *      This routine is used to send a high-priority XON/XOFF
180  *      character to the device.
181  *
182  *      Optional: If not provided then the write method is called under
183  *      the atomic write lock to keep it serialized with the ldisc.
184  *
185  * int (*resize)(struct tty_struct *tty, struct tty_struct *real_tty,
186  *                              unsigned int rows, unsigned int cols);
187  *
188  *      Called when a termios request is issued which changes the
189  *      requested terminal geometry.
190  *
191  *      Optional: the default action is to update the termios structure
192  *      without error. This is usually the correct behaviour. Drivers should
193  *      not force errors here if they are not resizable objects (eg a serial
194  *      line). See tty_do_resize() if you need to wrap the standard method
195  *      in your own logic - the usual case.
196  *
197  * void (*set_termiox)(struct tty_struct *tty, struct termiox *new);
198  *
199  *      Called when the device receives a termiox based ioctl. Passes down
200  *      the requested data from user space. This method will not be invoked
201  *      unless the tty also has a valid tty->termiox pointer.
202  *
203  *      Optional: Called under the termios lock
204  */
205
206 #include <linux/fs.h>
207 #include <linux/list.h>
208 #include <linux/cdev.h>
209
210 struct tty_struct;
211 struct tty_driver;
212
213 struct tty_operations {
214         struct tty_struct * (*lookup)(struct tty_driver *driver, int idx);
215         int  (*open)(struct tty_struct * tty, struct file * filp);
216         void (*close)(struct tty_struct * tty, struct file * filp);
217         void (*shutdown)(struct tty_struct *tty);
218         int  (*write)(struct tty_struct * tty,
219                       const unsigned char *buf, int count);
220         int  (*put_char)(struct tty_struct *tty, unsigned char ch);
221         void (*flush_chars)(struct tty_struct *tty);
222         int  (*write_room)(struct tty_struct *tty);
223         int  (*chars_in_buffer)(struct tty_struct *tty);
224         int  (*ioctl)(struct tty_struct *tty, struct file * file,
225                     unsigned int cmd, unsigned long arg);
226         long (*compat_ioctl)(struct tty_struct *tty, struct file * file,
227                              unsigned int cmd, unsigned long arg);
228         void (*set_termios)(struct tty_struct *tty, struct ktermios * old);
229         void (*throttle)(struct tty_struct * tty);
230         void (*unthrottle)(struct tty_struct * tty);
231         void (*stop)(struct tty_struct *tty);
232         void (*start)(struct tty_struct *tty);
233         void (*hangup)(struct tty_struct *tty);
234         int (*break_ctl)(struct tty_struct *tty, int state);
235         void (*flush_buffer)(struct tty_struct *tty);
236         void (*set_ldisc)(struct tty_struct *tty);
237         void (*wait_until_sent)(struct tty_struct *tty, int timeout);
238         void (*send_xchar)(struct tty_struct *tty, char ch);
239         int (*read_proc)(char *page, char **start, off_t off,
240                           int count, int *eof, void *data);
241         int (*tiocmget)(struct tty_struct *tty, struct file *file);
242         int (*tiocmset)(struct tty_struct *tty, struct file *file,
243                         unsigned int set, unsigned int clear);
244         int (*resize)(struct tty_struct *tty, struct tty_struct *real_tty,
245                                 struct winsize *ws);
246         int (*set_termiox)(struct tty_struct *tty, struct termiox *tnew);
247 #ifdef CONFIG_CONSOLE_POLL
248         int (*poll_init)(struct tty_driver *driver, int line, char *options);
249         int (*poll_get_char)(struct tty_driver *driver, int line);
250         void (*poll_put_char)(struct tty_driver *driver, int line, char ch);
251 #endif
252 };
253
254 struct tty_driver {
255         int     magic;          /* magic number for this structure */
256         struct kref kref;       /* Reference management */
257         struct cdev cdev;
258         struct module   *owner;
259         const char      *driver_name;
260         const char      *name;
261         int     name_base;      /* offset of printed name */
262         int     major;          /* major device number */
263         int     minor_start;    /* start of minor device number */
264         int     minor_num;      /* number of *possible* devices */
265         int     num;            /* number of devices allocated */
266         short   type;           /* type of tty driver */
267         short   subtype;        /* subtype of tty driver */
268         struct ktermios init_termios; /* Initial termios */
269         int     flags;          /* tty driver flags */
270         struct proc_dir_entry *proc_entry; /* /proc fs entry */
271         struct tty_driver *other; /* only used for the PTY driver */
272
273         /*
274          * Pointer to the tty data structures
275          */
276         struct tty_struct **ttys;
277         struct ktermios **termios;
278         struct ktermios **termios_locked;
279         void *driver_state;
280
281         /*
282          * Driver methods
283          */
284
285         const struct tty_operations *ops;
286         struct list_head tty_drivers;
287 };
288
289 extern struct list_head tty_drivers;
290
291 extern struct tty_driver *alloc_tty_driver(int lines);
292 extern void put_tty_driver(struct tty_driver *driver);
293 extern void tty_set_operations(struct tty_driver *driver,
294                         const struct tty_operations *op);
295 extern struct tty_driver *tty_find_polling_driver(char *name, int *line);
296
297 extern void tty_driver_kref_put(struct tty_driver *driver);
298 extern inline struct tty_driver *tty_driver_kref_get(struct tty_driver *d)
299 {
300         kref_get(&d->kref);
301         return d;
302 }
303
304 /* tty driver magic number */
305 #define TTY_DRIVER_MAGIC                0x5402
306
307 /*
308  * tty driver flags
309  * 
310  * TTY_DRIVER_RESET_TERMIOS --- requests the tty layer to reset the
311  *      termios setting when the last process has closed the device.
312  *      Used for PTY's, in particular.
313  * 
314  * TTY_DRIVER_REAL_RAW --- if set, indicates that the driver will
315  *      guarantee never not to set any special character handling
316  *      flags if ((IGNBRK || (!BRKINT && !PARMRK)) && (IGNPAR ||
317  *      !INPCK)).  That is, if there is no reason for the driver to
318  *      send notifications of parity and break characters up to the
319  *      line driver, it won't do so.  This allows the line driver to
320  *      optimize for this case if this flag is set.  (Note that there
321  *      is also a promise, if the above case is true, not to signal
322  *      overruns, either.)
323  *
324  * TTY_DRIVER_DYNAMIC_DEV --- if set, the individual tty devices need
325  *      to be registered with a call to tty_register_driver() when the
326  *      device is found in the system and unregistered with a call to
327  *      tty_unregister_device() so the devices will be show up
328  *      properly in sysfs.  If not set, driver->num entries will be
329  *      created by the tty core in sysfs when tty_register_driver() is
330  *      called.  This is to be used by drivers that have tty devices
331  *      that can appear and disappear while the main tty driver is
332  *      registered with the tty core.
333  *
334  * TTY_DRIVER_DEVPTS_MEM -- don't use the standard arrays, instead
335  *      use dynamic memory keyed through the devpts filesystem.  This
336  *      is only applicable to the pty driver.
337  *
338  * TTY_DRIVER_HARDWARE_BREAK -- hardware handles break signals. Pass
339  *      the requested timeout to the caller instead of using a simple
340  *      on/off interface.
341  *
342  */
343 #define TTY_DRIVER_INSTALLED            0x0001
344 #define TTY_DRIVER_RESET_TERMIOS        0x0002
345 #define TTY_DRIVER_REAL_RAW             0x0004
346 #define TTY_DRIVER_DYNAMIC_DEV          0x0008
347 #define TTY_DRIVER_DEVPTS_MEM           0x0010
348 #define TTY_DRIVER_HARDWARE_BREAK       0x0020
349
350 /* tty driver types */
351 #define TTY_DRIVER_TYPE_SYSTEM          0x0001
352 #define TTY_DRIVER_TYPE_CONSOLE         0x0002
353 #define TTY_DRIVER_TYPE_SERIAL          0x0003
354 #define TTY_DRIVER_TYPE_PTY             0x0004
355 #define TTY_DRIVER_TYPE_SCC             0x0005  /* scc driver */
356 #define TTY_DRIVER_TYPE_SYSCONS         0x0006
357
358 /* system subtypes (magic, used by tty_io.c) */
359 #define SYSTEM_TYPE_TTY                 0x0001
360 #define SYSTEM_TYPE_CONSOLE             0x0002
361 #define SYSTEM_TYPE_SYSCONS             0x0003
362 #define SYSTEM_TYPE_SYSPTMX             0x0004
363
364 /* pty subtypes (magic, used by tty_io.c) */
365 #define PTY_TYPE_MASTER                 0x0001
366 #define PTY_TYPE_SLAVE                  0x0002
367
368 /* serial subtype definitions */
369 #define SERIAL_TYPE_NORMAL      1
370
371 #endif /* #ifdef _LINUX_TTY_DRIVER_H */