2 * Copyright (C) 2000, 2001 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
6 #include "linux/config.h"
7 #include "linux/posix_types.h"
9 #include "linux/tty_flip.h"
10 #include "linux/types.h"
11 #include "linux/major.h"
12 #include "linux/kdev_t.h"
13 #include "linux/console.h"
14 #include "linux/string.h"
15 #include "linux/sched.h"
16 #include "linux/list.h"
17 #include "linux/init.h"
18 #include "linux/interrupt.h"
19 #include "linux/slab.h"
20 #include "linux/hardirq.h"
21 #include "asm/current.h"
23 #include "stdio_console.h"
25 #include "chan_kern.h"
26 #include "user_util.h"
27 #include "kern_util.h"
29 #include "mconsole_kern.h"
31 #include "2_5compat.h"
35 /* ----------------------------------------------------------------------------- */
37 /* Referenced only by tty_driver below - presumably it's locked correctly
41 static struct tty_driver
*console_driver
;
43 void stdio_announce(char *dev_name
, int dev
)
45 printk(KERN_INFO
"Virtual console %d assigned device '%s'\n", dev
,
49 static struct chan_opts opts
= {
50 .announce
= stdio_announce
,
51 .xterm_title
= "Virtual Console #%d",
57 static int con_config(char *str
);
58 static int con_get_config(char *dev
, char *str
, int size
, char **error_out
);
59 static int con_remove(char *str
);
61 static struct line_driver driver
= {
62 .name
= "UML console",
67 .type
= TTY_DRIVER_TYPE_CONSOLE
,
68 .subtype
= SYSTEM_TYPE_CONSOLE
,
69 .read_irq
= CONSOLE_IRQ
,
70 .read_irq_name
= "console",
71 .write_irq
= CONSOLE_WRITE_IRQ
,
72 .write_irq_name
= "console-write",
73 .symlink_from
= "ttys",
78 .get_config
= con_get_config
,
83 static struct lines console_lines
= LINES_INIT(MAX_TTYS
);
85 /* The array is initialized by line_init, which is an initcall. The
86 * individual elements are protected by individual semaphores.
88 struct line vts
[MAX_TTYS
] = { LINE_INIT(CONFIG_CON_ZERO_CHAN
, &driver
),
89 [ 1 ... MAX_TTYS
- 1 ] =
90 LINE_INIT(CONFIG_CON_CHAN
, &driver
) };
92 static int con_config(char *str
)
94 return(line_config(vts
, sizeof(vts
)/sizeof(vts
[0]), str
));
97 static int con_get_config(char *dev
, char *str
, int size
, char **error_out
)
99 return(line_get_config(dev
, vts
, sizeof(vts
)/sizeof(vts
[0]), str
,
103 static int con_remove(char *str
)
105 return(line_remove(vts
, sizeof(vts
)/sizeof(vts
[0]), str
));
108 static int con_open(struct tty_struct
*tty
, struct file
*filp
)
110 return line_open(vts
, tty
, &opts
);
113 static int con_init_done
= 0;
115 static struct tty_operations console_ops
= {
119 .write_room
= line_write_room
,
120 .chars_in_buffer
= line_chars_in_buffer
,
121 .set_termios
= line_set_termios
,
125 static void uml_console_write(struct console
*console
, const char *string
,
128 struct line
*line
= &vts
[console
->index
];
131 console_write_chan(&line
->chan_list
, string
, len
);
135 static struct tty_driver
*uml_console_device(struct console
*c
, int *index
)
138 return console_driver
;
141 static int uml_console_setup(struct console
*co
, char *options
)
143 struct line
*line
= &vts
[co
->index
];
145 return console_open_chan(line
,co
,&opts
);
148 static struct console stdiocons
= {
150 .write
= uml_console_write
,
151 .device
= uml_console_device
,
152 .setup
= uml_console_setup
,
153 .flags
= CON_PRINTBUFFER
,
162 console_driver
= line_register_devfs(&console_lines
, &driver
,
165 if (NULL
== console_driver
)
167 printk(KERN_INFO
"Initialized stdio console driver\n");
169 lines_init(vts
, sizeof(vts
)/sizeof(vts
[0]));
171 new_title
= add_xterm_umid(opts
.xterm_title
);
172 if(new_title
!= NULL
)
173 opts
.xterm_title
= new_title
;
176 register_console(&stdiocons
);
179 late_initcall(stdio_init
);
181 static void console_exit(void)
185 close_lines(vts
, sizeof(vts
)/sizeof(vts
[0]));
187 __uml_exitcall(console_exit
);
189 static int console_chan_setup(char *str
)
191 return(line_setup(vts
, sizeof(vts
)/sizeof(vts
[0]), str
, 1));
193 __setup("con", console_chan_setup
);
194 __channel_help(console_chan_setup
, "con");
197 * Overrides for Emacs so that we follow Linus's tabbing style.
198 * Emacs will notice this stuff at the end of the file and automatically
199 * adjust the settings for this buffer only. This must remain at the end
201 * ---------------------------------------------------------------------------
203 * c-file-style: "linux"