Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2000, 2001 Jeff Dike (jdike@karaya.com) |
| 3 | * Licensed under the GPL |
| 4 | */ |
| 5 | |
| 6 | #ifndef __CHAN_KERN_H__ |
| 7 | #define __CHAN_KERN_H__ |
| 8 | |
| 9 | #include "linux/tty.h" |
| 10 | #include "linux/list.h" |
| 11 | #include "linux/console.h" |
| 12 | #include "chan_user.h" |
| 13 | #include "line.h" |
| 14 | |
| 15 | struct chan { |
| 16 | struct list_head list; |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 17 | struct list_head free_list; |
| 18 | struct line *line; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | char *dev; |
| 20 | unsigned int primary:1; |
| 21 | unsigned int input:1; |
| 22 | unsigned int output:1; |
| 23 | unsigned int opened:1; |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 24 | unsigned int enabled:1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | int fd; |
Jeff Dike | 5e7672e | 2006-09-27 01:50:33 -0700 | [diff] [blame] | 26 | const struct chan_ops *ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | void *data; |
| 28 | }; |
| 29 | |
Andrew Morton | a2ce774 | 2006-12-06 20:31:36 -0800 | [diff] [blame] | 30 | extern void chan_interrupt(struct list_head *chans, struct delayed_work *task, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | struct tty_struct *tty, int irq); |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 32 | extern int parse_chan_pair(char *str, struct line *line, int device, |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 33 | const struct chan_opts *opts, char **error_out); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | extern int open_chan(struct list_head *chans); |
| 35 | extern int write_chan(struct list_head *chans, const char *buf, int len, |
| 36 | int write_irq); |
| 37 | extern int console_write_chan(struct list_head *chans, const char *buf, |
| 38 | int len); |
Jeff Dike | a52f362 | 2007-02-10 01:44:06 -0800 | [diff] [blame] | 39 | extern int console_open_chan(struct line *line, struct console *co); |
Jeff Dike | e4dcee8 | 2006-01-06 00:18:58 -0800 | [diff] [blame] | 40 | extern void deactivate_chan(struct list_head *chans, int irq); |
| 41 | extern void reactivate_chan(struct list_head *chans, int irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | extern void chan_enable_winch(struct list_head *chans, struct tty_struct *tty); |
Jeff Dike | d14ad81 | 2007-07-15 23:38:54 -0700 | [diff] [blame] | 43 | extern int enable_chan(struct line *line); |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 44 | extern void close_chan(struct list_head *chans, int delay_free_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | extern int chan_window_size(struct list_head *chans, |
| 46 | unsigned short *rows_out, |
| 47 | unsigned short *cols_out); |
| 48 | extern int chan_out_fd(struct list_head *chans); |
| 49 | extern int chan_config_string(struct list_head *chans, char *str, int size, |
| 50 | char **error_out); |
| 51 | |
| 52 | #endif |