crypto: pcrypt - Rename pcrypt_instance
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / serial / kgdboc.c
bloba9a94ae7234951f3b30b25829c67d1ee13a3a8f2
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>
21 #define MAX_CONFIG_LEN 40
23 static struct kgdb_io kgdboc_io_ops;
25 /* -1 = init not run yet, 0 = unconfigured, 1 = configured. */
26 static int configured = -1;
28 static char config[MAX_CONFIG_LEN];
29 static struct kparam_string kps = {
30 .string = config,
31 .maxlen = MAX_CONFIG_LEN,
34 static struct tty_driver *kgdb_tty_driver;
35 static int kgdb_tty_line;
37 #ifdef CONFIG_KDB_KEYBOARD
38 static int kgdboc_register_kbd(char **cptr)
40 if (strncmp(*cptr, "kbd", 3) == 0) {
41 if (kdb_poll_idx < KDB_POLL_FUNC_MAX) {
42 kdb_poll_funcs[kdb_poll_idx] = kdb_get_kbd_char;
43 kdb_poll_idx++;
44 if (cptr[0][3] == ',')
45 *cptr += 4;
46 else
47 return 1;
50 return 0;
53 static void kgdboc_unregister_kbd(void)
55 int i;
57 for (i = 0; i < kdb_poll_idx; i++) {
58 if (kdb_poll_funcs[i] == kdb_get_kbd_char) {
59 kdb_poll_idx--;
60 kdb_poll_funcs[i] = kdb_poll_funcs[kdb_poll_idx];
61 kdb_poll_funcs[kdb_poll_idx] = NULL;
62 i--;
66 #else /* ! CONFIG_KDB_KEYBOARD */
67 #define kgdboc_register_kbd(x) 0
68 #define kgdboc_unregister_kbd()
69 #endif /* ! CONFIG_KDB_KEYBOARD */
71 static int kgdboc_option_setup(char *opt)
73 if (strlen(opt) > MAX_CONFIG_LEN) {
74 printk(KERN_ERR "kgdboc: config string too long\n");
75 return -ENOSPC;
77 strcpy(config, opt);
79 return 0;
82 __setup("kgdboc=", kgdboc_option_setup);
84 static void cleanup_kgdboc(void)
86 kgdboc_unregister_kbd();
87 if (configured == 1)
88 kgdb_unregister_io_module(&kgdboc_io_ops);
91 static int configure_kgdboc(void)
93 struct tty_driver *p;
94 int tty_line = 0;
95 int err;
96 char *cptr = config;
97 struct console *cons;
99 err = kgdboc_option_setup(config);
100 if (err || !strlen(config) || isspace(config[0]))
101 goto noconfig;
103 err = -ENODEV;
104 kgdboc_io_ops.is_console = 0;
105 kgdb_tty_driver = NULL;
107 if (kgdboc_register_kbd(&cptr))
108 goto do_register;
110 p = tty_find_polling_driver(cptr, &tty_line);
111 if (!p)
112 goto noconfig;
114 cons = console_drivers;
115 while (cons) {
116 int idx;
117 if (cons->device && cons->device(cons, &idx) == p &&
118 idx == tty_line) {
119 kgdboc_io_ops.is_console = 1;
120 break;
122 cons = cons->next;
125 kgdb_tty_driver = p;
126 kgdb_tty_line = tty_line;
128 do_register:
129 err = kgdb_register_io_module(&kgdboc_io_ops);
130 if (err)
131 goto noconfig;
133 configured = 1;
135 return 0;
137 noconfig:
138 config[0] = 0;
139 configured = 0;
140 cleanup_kgdboc();
142 return err;
145 static int __init init_kgdboc(void)
147 /* Already configured? */
148 if (configured == 1)
149 return 0;
151 return configure_kgdboc();
154 static int kgdboc_get_char(void)
156 if (!kgdb_tty_driver)
157 return -1;
158 return kgdb_tty_driver->ops->poll_get_char(kgdb_tty_driver,
159 kgdb_tty_line);
162 static void kgdboc_put_char(u8 chr)
164 if (!kgdb_tty_driver)
165 return;
166 kgdb_tty_driver->ops->poll_put_char(kgdb_tty_driver,
167 kgdb_tty_line, chr);
170 static int param_set_kgdboc_var(const char *kmessage, struct kernel_param *kp)
172 int len = strlen(kmessage);
174 if (len >= MAX_CONFIG_LEN) {
175 printk(KERN_ERR "kgdboc: config string too long\n");
176 return -ENOSPC;
179 /* Only copy in the string if the init function has not run yet */
180 if (configured < 0) {
181 strcpy(config, kmessage);
182 return 0;
185 if (kgdb_connected) {
186 printk(KERN_ERR
187 "kgdboc: Cannot reconfigure while KGDB is connected.\n");
189 return -EBUSY;
192 strcpy(config, kmessage);
193 /* Chop out \n char as a result of echo */
194 if (config[len - 1] == '\n')
195 config[len - 1] = '\0';
197 if (configured == 1)
198 cleanup_kgdboc();
200 /* Go and configure with the new params. */
201 return configure_kgdboc();
204 static void kgdboc_pre_exp_handler(void)
206 /* Increment the module count when the debugger is active */
207 if (!kgdb_connected)
208 try_module_get(THIS_MODULE);
211 static void kgdboc_post_exp_handler(void)
213 /* decrement the module count when the debugger detaches */
214 if (!kgdb_connected)
215 module_put(THIS_MODULE);
218 static struct kgdb_io kgdboc_io_ops = {
219 .name = "kgdboc",
220 .read_char = kgdboc_get_char,
221 .write_char = kgdboc_put_char,
222 .pre_exception = kgdboc_pre_exp_handler,
223 .post_exception = kgdboc_post_exp_handler,
226 #ifdef CONFIG_KGDB_SERIAL_CONSOLE
227 /* This is only available if kgdboc is a built in for early debugging */
228 int __init kgdboc_early_init(char *opt)
230 /* save the first character of the config string because the
231 * init routine can destroy it.
233 char save_ch;
235 kgdboc_option_setup(opt);
236 save_ch = config[0];
237 init_kgdboc();
238 config[0] = save_ch;
239 return 0;
242 early_param("ekgdboc", kgdboc_early_init);
243 #endif /* CONFIG_KGDB_SERIAL_CONSOLE */
245 module_init(init_kgdboc);
246 module_exit(cleanup_kgdboc);
247 module_param_call(kgdboc, param_set_kgdboc_var, param_get_string, &kps, 0644);
248 MODULE_PARM_DESC(kgdboc, "<serial_device>[,baud]");
249 MODULE_DESCRIPTION("KGDB Console TTY Driver");
250 MODULE_LICENSE("GPL");