2 * Copyright (C) 2000, 2001 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
6 #ifndef __CHAN_KERN_H__
7 #define __CHAN_KERN_H__
10 #include "linux/list.h"
11 #include "linux/console.h"
12 #include "chan_user.h"
16 struct list_head list;
17 struct list_head free_list;
20 unsigned int primary:1;
22 unsigned int output:1;
23 unsigned int opened:1;
24 unsigned int enabled:1;
26 const struct chan_ops *ops;
30 extern void chan_interrupt(struct list_head *chans, struct delayed_work *task,
31 struct tty_struct *tty, int irq);
32 extern int parse_chan_pair(char *str, struct line *line, int device,
33 const struct chan_opts *opts, char **error_out);
34 extern int open_chan(struct list_head *chans);
35 extern int write_chan(struct list_head *chans, const char *buf, int len,
37 extern int console_write_chan(struct list_head *chans, const char *buf,
39 extern int console_open_chan(struct line *line, struct console *co);
40 extern void deactivate_chan(struct list_head *chans, int irq);
41 extern void reactivate_chan(struct list_head *chans, int irq);
42 extern void chan_enable_winch(struct list_head *chans, struct tty_struct *tty);
43 extern int enable_chan(struct line *line);
44 extern void close_chan(struct list_head *chans, int delay_free_irq);
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,