| Jeff Dike | b4ac91a | 2007-02-10 01:44:07 -0800 | [diff] [blame] | 1 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 |  * Copyright (C) 2000, 2001 Jeff Dike (jdike@karaya.com) | 
 | 3 |  * Licensed under the GPL | 
 | 4 |  */ | 
 | 5 |  | 
 | 6 | #ifndef __CHAN_USER_H__ | 
 | 7 | #define __CHAN_USER_H__ | 
 | 8 |  | 
 | 9 | #include "init.h" | 
 | 10 |  | 
 | 11 | struct chan_opts { | 
| Jeff Dike | a52f362 | 2007-02-10 01:44:06 -0800 | [diff] [blame] | 12 | 	void (*const announce)(char *dev_name, int dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | 	char *xterm_title; | 
| Jeff Dike | a52f362 | 2007-02-10 01:44:06 -0800 | [diff] [blame] | 14 | 	const int raw; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | }; | 
 | 16 |  | 
 | 17 | enum chan_init_pri { INIT_STATIC, INIT_ALL, INIT_ONE }; | 
 | 18 |  | 
 | 19 | struct chan_ops { | 
 | 20 | 	char *type; | 
| Jeff Dike | 5e7672e | 2006-09-27 01:50:33 -0700 | [diff] [blame] | 21 | 	void *(*init)(char *, int, const struct chan_opts *); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | 	int (*open)(int, int, int, void *, char **); | 
 | 23 | 	void (*close)(int, void *); | 
 | 24 | 	int (*read)(int, char *, void *); | 
 | 25 | 	int (*write)(int, const char *, int, void *); | 
| Paolo 'Blaisorblade' Giarrusso | 55c033c | 2005-11-13 16:07:11 -0800 | [diff] [blame] | 26 | 	int (*console_write)(int, const char *, int); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | 	int (*window_size)(int, void *, unsigned short *, unsigned short *); | 
 | 28 | 	void (*free)(void *); | 
 | 29 | 	int winch; | 
 | 30 | }; | 
 | 31 |  | 
| Jeff Dike | 5e7672e | 2006-09-27 01:50:33 -0700 | [diff] [blame] | 32 | extern const struct chan_ops fd_ops, null_ops, port_ops, pts_ops, pty_ops, | 
 | 33 | 	tty_ops, xterm_ops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 |  | 
 | 35 | extern void generic_close(int fd, void *unused); | 
 | 36 | extern int generic_read(int fd, char *c_out, void *unused); | 
 | 37 | extern int generic_write(int fd, const char *buf, int n, void *unused); | 
| Paolo 'Blaisorblade' Giarrusso | 55c033c | 2005-11-13 16:07:11 -0800 | [diff] [blame] | 38 | extern int generic_console_write(int fd, const char *buf, int n); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | extern int generic_window_size(int fd, void *unused, unsigned short *rows_out, | 
 | 40 | 			       unsigned short *cols_out); | 
 | 41 | extern void generic_free(void *data); | 
 | 42 |  | 
 | 43 | struct tty_struct; | 
 | 44 | extern void register_winch(int fd,  struct tty_struct *tty); | 
| Jeff Dike | 42a359e | 2007-07-15 23:38:55 -0700 | [diff] [blame] | 45 | extern void register_winch_irq(int fd, int tty_fd, int pid, | 
 | 46 | 			       struct tty_struct *tty, unsigned long stack); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 |  | 
 | 48 | #define __channel_help(fn, prefix) \ | 
 | 49 | __uml_help(fn, prefix "[0-9]*=<channel description>\n" \ | 
 | 50 | "    Attach a console or serial line to a host channel.  See\n" \ | 
 | 51 | "    http://user-mode-linux.sourceforge.net/input.html for a complete\n" \ | 
 | 52 | "    description of this switch.\n\n" \ | 
 | 53 | ); | 
 | 54 |  | 
 | 55 | #endif |