mmc: core: Validate suspend prerequisites for SDIO at SUSPEND_PREPARE
[linux-2.6.git] / drivers / tty / serial / kgdboc.c
blob10020547c60b5735d4cbf667956c911aa06a1030
1 /*
2 * Based on the same principle as kgdboe using the NETPOLL api, this
3 * driver uses a console polling api to implement a gdb serial inteface
4 * which is multiplexed on a console port.
6 * Maintainer: Jason Wessel <jason.wessel@windriver.com>
8 * 2007-2008 (c) Jason Wessel - Wind River Systems, Inc.
10 * This file is licensed under the terms of the GNU General Public
11 * License version 2. This program is licensed "as is" without any
12 * warranty of any kind, whether express or implied.
14 #include <linux/kernel.h>
15 #include <linux/ctype.h>
16 #include <linux/kgdb.h>
17 #include <linux/kdb.h>
18 #include <linux/tty.h>
19 #include <linux/console.h>
20 #include <linux/vt_kern.h>
21 #include <linux/input.h>
22 #include <linux/module.h>
24 #define MAX_CONFIG_LEN 40
26 static struct kgdb_io kgdboc_io_ops;
28 /* -1 = init not run yet, 0 = unconfigured, 1 = configured. */
29 static int configured = -1;
31 static char config[MAX_CONFIG_LEN];
32 static struct kparam_string kps = {
33 .string = config,
34 .maxlen = MAX_CONFIG_LEN,
37 static int kgdboc_use_kms; /* 1 if we use kernel mode switching */
38 static struct tty_driver *kgdb_tty_driver;
39 static int kgdb_tty_line;
41 #ifdef CONFIG_KDB_KEYBOARD
42 static int kgdboc_reset_connect(struct input_handler *handler,
43 struct input_dev *dev,
44 const struct input_device_id *id)
46 input_reset_device(dev);
48 /* Retrun an error - we do not want to bind, just to reset */
49 return -ENODEV;
52 static void kgdboc_reset_disconnect(struct input_handle *handle)
54 /* We do not expect anyone to actually bind to us */
55 BUG();
58 static const struct input_device_id kgdboc_reset_ids[] = {
60 .flags = INPUT_DEVICE_ID_MATCH_EVBIT,
61 .evbit = { BIT_MASK(EV_KEY) },
63 { }
66 static struct input_handler kgdboc_reset_handler = {
67 .connect = kgdboc_reset_connect,
68 .disconnect = kgdboc_reset_disconnect,
69 .name = "kgdboc_reset",
70 .id_table = kgdboc_reset_ids,
73 static DEFINE_MUTEX(kgdboc_reset_mutex);
75 static void kgdboc_restore_input_helper(struct work_struct *dummy)
78 * We need to take a mutex to prevent several instances of
79 * this work running on different CPUs so they don't try
80 * to register again already registered handler.
82 mutex_lock(&kgdboc_reset_mutex);
84 if (input_register_handler(&kgdboc_reset_handler) == 0)
85 input_unregister_handler(&kgdboc_reset_handler);
87 mutex_unlock(&kgdboc_reset_mutex);
90 static DECLARE_WORK(kgdboc_restore_input_work, kgdboc_restore_input_helper);
92 static void kgdboc_restore_input(void)
94 if (likely(system_state == SYSTEM_RUNNING))
95 schedule_work(&kgdboc_restore_input_work);
98 static int kgdboc_register_kbd(char **cptr)
100 if (strncmp(*cptr, "kbd", 3) == 0 ||
101 strncmp(*cptr, "kdb", 3) == 0) {
102 if (kdb_poll_idx < KDB_POLL_FUNC_MAX) {
103 kdb_poll_funcs[kdb_poll_idx] = kdb_get_kbd_char;
104 kdb_poll_idx++;
105 if (cptr[0][3] == ',')
106 *cptr += 4;
107 else
108 return 1;
111 return 0;
114 static void kgdboc_unregister_kbd(void)
116 int i;
118 for (i = 0; i < kdb_poll_idx; i++) {
119 if (kdb_poll_funcs[i] == kdb_get_kbd_char) {
120 kdb_poll_idx--;
121 kdb_poll_funcs[i] = kdb_poll_funcs[kdb_poll_idx];
122 kdb_poll_funcs[kdb_poll_idx] = NULL;
123 i--;
126 flush_work(&kgdboc_restore_input_work);
128 #else /* ! CONFIG_KDB_KEYBOARD */
129 #define kgdboc_register_kbd(x) 0
130 #define kgdboc_unregister_kbd()
131 #define kgdboc_restore_input()
132 #endif /* ! CONFIG_KDB_KEYBOARD */
134 static int kgdboc_option_setup(char *opt)
136 if (strlen(opt) >= MAX_CONFIG_LEN) {
137 printk(KERN_ERR "kgdboc: config string too long\n");
138 return -ENOSPC;
140 strcpy(config, opt);
142 return 0;
145 __setup("kgdboc=", kgdboc_option_setup);
147 static void cleanup_kgdboc(void)
149 if (kgdb_unregister_nmi_console())
150 return;
151 kgdboc_unregister_kbd();
152 if (configured == 1)
153 kgdb_unregister_io_module(&kgdboc_io_ops);
156 static int configure_kgdboc(void)
158 struct tty_driver *p;
159 int tty_line = 0;
160 int err;
161 char *cptr = config;
162 struct console *cons;
164 err = kgdboc_option_setup(config);
165 if (err || !strlen(config) || isspace(config[0]))
166 goto noconfig;
168 err = -ENODEV;
169 kgdboc_io_ops.is_console = 0;
170 kgdb_tty_driver = NULL;
172 kgdboc_use_kms = 0;
173 if (strncmp(cptr, "kms,", 4) == 0) {
174 cptr += 4;
175 kgdboc_use_kms = 1;
178 if (kgdboc_register_kbd(&cptr))
179 goto do_register;
181 p = tty_find_polling_driver(cptr, &tty_line);
182 if (!p)
183 goto noconfig;
185 cons = console_drivers;
186 while (cons) {
187 int idx;
188 if (cons->device && cons->device(cons, &idx) == p &&
189 idx == tty_line) {
190 kgdboc_io_ops.is_console = 1;
191 break;
193 cons = cons->next;
196 kgdb_tty_driver = p;
197 kgdb_tty_line = tty_line;
199 do_register:
200 err = kgdb_register_io_module(&kgdboc_io_ops);
201 if (err)
202 goto noconfig;
204 err = kgdb_register_nmi_console();
205 if (err)
206 goto nmi_con_failed;
208 configured = 1;
210 return 0;
212 nmi_con_failed:
213 kgdb_unregister_io_module(&kgdboc_io_ops);
214 noconfig:
215 kgdboc_unregister_kbd();
216 config[0] = 0;
217 configured = 0;
218 cleanup_kgdboc();
220 return err;
223 static int __init init_kgdboc(void)
225 /* Already configured? */
226 if (configured == 1)
227 return 0;
229 return configure_kgdboc();
232 static int kgdboc_get_char(void)
234 if (!kgdb_tty_driver)
235 return -1;
236 return kgdb_tty_driver->ops->poll_get_char(kgdb_tty_driver,
237 kgdb_tty_line);
240 static void kgdboc_put_char(u8 chr)
242 if (!kgdb_tty_driver)
243 return;
244 kgdb_tty_driver->ops->poll_put_char(kgdb_tty_driver,
245 kgdb_tty_line, chr);
248 static int param_set_kgdboc_var(const char *kmessage, struct kernel_param *kp)
250 int len = strlen(kmessage);
252 if (len >= MAX_CONFIG_LEN) {
253 printk(KERN_ERR "kgdboc: config string too long\n");
254 return -ENOSPC;
257 /* Only copy in the string if the init function has not run yet */
258 if (configured < 0) {
259 strcpy(config, kmessage);
260 return 0;
263 if (kgdb_connected) {
264 printk(KERN_ERR
265 "kgdboc: Cannot reconfigure while KGDB is connected.\n");
267 return -EBUSY;
270 strcpy(config, kmessage);
271 /* Chop out \n char as a result of echo */
272 if (config[len - 1] == '\n')
273 config[len - 1] = '\0';
275 if (configured == 1)
276 cleanup_kgdboc();
278 /* Go and configure with the new params. */
279 return configure_kgdboc();
282 static int dbg_restore_graphics;
284 static void kgdboc_pre_exp_handler(void)
286 if (!dbg_restore_graphics && kgdboc_use_kms) {
287 dbg_restore_graphics = 1;
288 con_debug_enter(vc_cons[fg_console].d);
290 /* Increment the module count when the debugger is active */
291 if (!kgdb_connected)
292 try_module_get(THIS_MODULE);
295 static void kgdboc_post_exp_handler(void)
297 /* decrement the module count when the debugger detaches */
298 if (!kgdb_connected)
299 module_put(THIS_MODULE);
300 if (kgdboc_use_kms && dbg_restore_graphics) {
301 dbg_restore_graphics = 0;
302 con_debug_leave();
304 kgdboc_restore_input();
307 static struct kgdb_io kgdboc_io_ops = {
308 .name = "kgdboc",
309 .read_char = kgdboc_get_char,
310 .write_char = kgdboc_put_char,
311 .pre_exception = kgdboc_pre_exp_handler,
312 .post_exception = kgdboc_post_exp_handler,
315 #ifdef CONFIG_KGDB_SERIAL_CONSOLE
316 /* This is only available if kgdboc is a built in for early debugging */
317 static int __init kgdboc_early_init(char *opt)
319 /* save the first character of the config string because the
320 * init routine can destroy it.
322 char save_ch;
324 kgdboc_option_setup(opt);
325 save_ch = config[0];
326 init_kgdboc();
327 config[0] = save_ch;
328 return 0;
331 early_param("ekgdboc", kgdboc_early_init);
332 #endif /* CONFIG_KGDB_SERIAL_CONSOLE */
334 module_init(init_kgdboc);
335 module_exit(cleanup_kgdboc);
336 module_param_call(kgdboc, param_set_kgdboc_var, param_get_string, &kps, 0644);
337 MODULE_PARM_DESC(kgdboc, "<serial_device>[,baud]");
338 MODULE_DESCRIPTION("KGDB Console TTY Driver");
339 MODULE_LICENSE("GPL");