blob: c0b334327d9313e71b099b2ff0667671be417c50 [file] [log] [blame]
Jason Wesself2d937f2008-04-17 20:05:37 +02001/*
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.
5 *
6 * Maintainer: Jason Wessel <jason.wessel@windriver.com>
7 *
8 * 2007-2008 (c) Jason Wessel - Wind River Systems, Inc.
9 *
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.
13 */
14#include <linux/kernel.h>
15#include <linux/ctype.h>
16#include <linux/kgdb.h>
Jason Wesselada64e42010-05-20 21:04:24 -050017#include <linux/kdb.h>
Jason Wesself2d937f2008-04-17 20:05:37 +020018#include <linux/tty.h>
Jason Wesselefe2f292010-05-20 21:04:26 -050019#include <linux/console.h>
Jason Wessel408a4be2010-08-05 09:22:30 -050020#include <linux/vt_kern.h>
Dmitry Torokhov111c1822010-11-03 11:04:05 -070021#include <linux/input.h>
Paul Gortmaker578b9ce2011-05-27 16:14:23 -040022#include <linux/module.h>
Jason Wesself2d937f2008-04-17 20:05:37 +020023
24#define MAX_CONFIG_LEN 40
25
26static struct kgdb_io kgdboc_io_ops;
27
28/* -1 = init not run yet, 0 = unconfigured, 1 = configured. */
29static int configured = -1;
30
31static char config[MAX_CONFIG_LEN];
32static struct kparam_string kps = {
33 .string = config,
34 .maxlen = MAX_CONFIG_LEN,
35};
36
Jason Wessel408a4be2010-08-05 09:22:30 -050037static int kgdboc_use_kms; /* 1 if we use kernel mode switching */
Jason Wesself2d937f2008-04-17 20:05:37 +020038static struct tty_driver *kgdb_tty_driver;
39static int kgdb_tty_line;
40
Jason Wesselada64e42010-05-20 21:04:24 -050041#ifdef CONFIG_KDB_KEYBOARD
Dmitry Torokhov111c1822010-11-03 11:04:05 -070042static int kgdboc_reset_connect(struct input_handler *handler,
43 struct input_dev *dev,
44 const struct input_device_id *id)
45{
46 input_reset_device(dev);
47
48 /* Retrun an error - we do not want to bind, just to reset */
49 return -ENODEV;
50}
51
52static void kgdboc_reset_disconnect(struct input_handle *handle)
53{
54 /* We do not expect anyone to actually bind to us */
55 BUG();
56}
57
58static const struct input_device_id kgdboc_reset_ids[] = {
59 {
60 .flags = INPUT_DEVICE_ID_MATCH_EVBIT,
61 .evbit = { BIT_MASK(EV_KEY) },
62 },
63 { }
64};
65
66static 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,
71};
72
73static DEFINE_MUTEX(kgdboc_reset_mutex);
74
75static void kgdboc_restore_input_helper(struct work_struct *dummy)
76{
77 /*
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.
81 */
82 mutex_lock(&kgdboc_reset_mutex);
83
84 if (input_register_handler(&kgdboc_reset_handler) == 0)
85 input_unregister_handler(&kgdboc_reset_handler);
86
87 mutex_unlock(&kgdboc_reset_mutex);
88}
89
90static DECLARE_WORK(kgdboc_restore_input_work, kgdboc_restore_input_helper);
91
92static void kgdboc_restore_input(void)
93{
Jason Wessel8863ada2010-12-01 13:01:01 -060094 if (likely(system_state == SYSTEM_RUNNING))
95 schedule_work(&kgdboc_restore_input_work);
Dmitry Torokhov111c1822010-11-03 11:04:05 -070096}
97
Jason Wesselada64e42010-05-20 21:04:24 -050098static int kgdboc_register_kbd(char **cptr)
99{
100 if (strncmp(*cptr, "kbd", 3) == 0) {
101 if (kdb_poll_idx < KDB_POLL_FUNC_MAX) {
102 kdb_poll_funcs[kdb_poll_idx] = kdb_get_kbd_char;
103 kdb_poll_idx++;
104 if (cptr[0][3] == ',')
105 *cptr += 4;
106 else
107 return 1;
108 }
109 }
110 return 0;
111}
112
113static void kgdboc_unregister_kbd(void)
114{
115 int i;
116
117 for (i = 0; i < kdb_poll_idx; i++) {
118 if (kdb_poll_funcs[i] == kdb_get_kbd_char) {
119 kdb_poll_idx--;
120 kdb_poll_funcs[i] = kdb_poll_funcs[kdb_poll_idx];
121 kdb_poll_funcs[kdb_poll_idx] = NULL;
122 i--;
123 }
124 }
Tejun Heo43829732012-08-20 14:51:24 -0700125 flush_work(&kgdboc_restore_input_work);
Jason Wesselada64e42010-05-20 21:04:24 -0500126}
127#else /* ! CONFIG_KDB_KEYBOARD */
128#define kgdboc_register_kbd(x) 0
129#define kgdboc_unregister_kbd()
Dmitry Torokhov111c1822010-11-03 11:04:05 -0700130#define kgdboc_restore_input()
Jason Wesselada64e42010-05-20 21:04:24 -0500131#endif /* ! CONFIG_KDB_KEYBOARD */
132
Jason Wesself2d937f2008-04-17 20:05:37 +0200133static int kgdboc_option_setup(char *opt)
134{
Dan Carpenteradb4b832010-03-15 07:28:00 -0500135 if (strlen(opt) >= MAX_CONFIG_LEN) {
Jason Wesself2d937f2008-04-17 20:05:37 +0200136 printk(KERN_ERR "kgdboc: config string too long\n");
137 return -ENOSPC;
138 }
139 strcpy(config, opt);
140
141 return 0;
142}
143
144__setup("kgdboc=", kgdboc_option_setup);
145
Jason Wesselada64e42010-05-20 21:04:24 -0500146static void cleanup_kgdboc(void)
147{
Anton Vorontsov0c57dfc2012-09-24 14:27:56 -0700148 if (kgdb_unregister_nmi_console())
149 return;
Jason Wesselada64e42010-05-20 21:04:24 -0500150 kgdboc_unregister_kbd();
151 if (configured == 1)
152 kgdb_unregister_io_module(&kgdboc_io_ops);
153}
154
Jason Wesself2d937f2008-04-17 20:05:37 +0200155static int configure_kgdboc(void)
156{
157 struct tty_driver *p;
158 int tty_line = 0;
159 int err;
Jason Wesselada64e42010-05-20 21:04:24 -0500160 char *cptr = config;
Jason Wesselefe2f292010-05-20 21:04:26 -0500161 struct console *cons;
Jason Wesself2d937f2008-04-17 20:05:37 +0200162
163 err = kgdboc_option_setup(config);
164 if (err || !strlen(config) || isspace(config[0]))
165 goto noconfig;
166
167 err = -ENODEV;
Jason Wesselefe2f292010-05-20 21:04:26 -0500168 kgdboc_io_ops.is_console = 0;
Jason Wesselada64e42010-05-20 21:04:24 -0500169 kgdb_tty_driver = NULL;
Jason Wesself2d937f2008-04-17 20:05:37 +0200170
Jason Wessel408a4be2010-08-05 09:22:30 -0500171 kgdboc_use_kms = 0;
172 if (strncmp(cptr, "kms,", 4) == 0) {
173 cptr += 4;
174 kgdboc_use_kms = 1;
175 }
176
Jason Wesselada64e42010-05-20 21:04:24 -0500177 if (kgdboc_register_kbd(&cptr))
178 goto do_register;
179
180 p = tty_find_polling_driver(cptr, &tty_line);
Jason Wesself2d937f2008-04-17 20:05:37 +0200181 if (!p)
182 goto noconfig;
183
Jason Wesselefe2f292010-05-20 21:04:26 -0500184 cons = console_drivers;
185 while (cons) {
186 int idx;
187 if (cons->device && cons->device(cons, &idx) == p &&
188 idx == tty_line) {
189 kgdboc_io_ops.is_console = 1;
190 break;
191 }
192 cons = cons->next;
193 }
194
Jason Wesself2d937f2008-04-17 20:05:37 +0200195 kgdb_tty_driver = p;
196 kgdb_tty_line = tty_line;
197
Jason Wesselada64e42010-05-20 21:04:24 -0500198do_register:
Jason Wesself2d937f2008-04-17 20:05:37 +0200199 err = kgdb_register_io_module(&kgdboc_io_ops);
200 if (err)
201 goto noconfig;
202
Anton Vorontsov0c57dfc2012-09-24 14:27:56 -0700203 err = kgdb_register_nmi_console();
204 if (err)
205 goto nmi_con_failed;
206
Jason Wesself2d937f2008-04-17 20:05:37 +0200207 configured = 1;
208
209 return 0;
210
Anton Vorontsov0c57dfc2012-09-24 14:27:56 -0700211nmi_con_failed:
212 kgdb_unregister_io_module(&kgdboc_io_ops);
Jason Wesself2d937f2008-04-17 20:05:37 +0200213noconfig:
Anton Vorontsov0c57dfc2012-09-24 14:27:56 -0700214 kgdboc_unregister_kbd();
Jason Wesself2d937f2008-04-17 20:05:37 +0200215 config[0] = 0;
216 configured = 0;
Jason Wesselada64e42010-05-20 21:04:24 -0500217 cleanup_kgdboc();
Jason Wesself2d937f2008-04-17 20:05:37 +0200218
219 return err;
220}
221
222static int __init init_kgdboc(void)
223{
224 /* Already configured? */
225 if (configured == 1)
226 return 0;
227
228 return configure_kgdboc();
229}
230
Jason Wesself2d937f2008-04-17 20:05:37 +0200231static int kgdboc_get_char(void)
232{
Jason Wesselada64e42010-05-20 21:04:24 -0500233 if (!kgdb_tty_driver)
234 return -1;
Alan Coxf34d7a52008-04-30 00:54:13 -0700235 return kgdb_tty_driver->ops->poll_get_char(kgdb_tty_driver,
236 kgdb_tty_line);
Jason Wesself2d937f2008-04-17 20:05:37 +0200237}
238
239static void kgdboc_put_char(u8 chr)
240{
Jason Wesselada64e42010-05-20 21:04:24 -0500241 if (!kgdb_tty_driver)
242 return;
Alan Coxf34d7a52008-04-30 00:54:13 -0700243 kgdb_tty_driver->ops->poll_put_char(kgdb_tty_driver,
244 kgdb_tty_line, chr);
Jason Wesself2d937f2008-04-17 20:05:37 +0200245}
246
247static int param_set_kgdboc_var(const char *kmessage, struct kernel_param *kp)
248{
Jason Wesselc191e5a2008-02-15 14:55:52 -0600249 int len = strlen(kmessage);
250
251 if (len >= MAX_CONFIG_LEN) {
Jason Wesself2d937f2008-04-17 20:05:37 +0200252 printk(KERN_ERR "kgdboc: config string too long\n");
253 return -ENOSPC;
254 }
255
256 /* Only copy in the string if the init function has not run yet */
257 if (configured < 0) {
258 strcpy(config, kmessage);
259 return 0;
260 }
261
262 if (kgdb_connected) {
263 printk(KERN_ERR
264 "kgdboc: Cannot reconfigure while KGDB is connected.\n");
265
266 return -EBUSY;
267 }
268
269 strcpy(config, kmessage);
Jason Wesselc191e5a2008-02-15 14:55:52 -0600270 /* Chop out \n char as a result of echo */
271 if (config[len - 1] == '\n')
272 config[len - 1] = '\0';
Jason Wesself2d937f2008-04-17 20:05:37 +0200273
274 if (configured == 1)
275 cleanup_kgdboc();
276
277 /* Go and configure with the new params. */
278 return configure_kgdboc();
279}
280
Jason Wessel408a4be2010-08-05 09:22:30 -0500281static int dbg_restore_graphics;
282
Jason Wesself2d937f2008-04-17 20:05:37 +0200283static void kgdboc_pre_exp_handler(void)
284{
Jason Wessel408a4be2010-08-05 09:22:30 -0500285 if (!dbg_restore_graphics && kgdboc_use_kms) {
286 dbg_restore_graphics = 1;
287 con_debug_enter(vc_cons[fg_console].d);
288 }
Jason Wesself2d937f2008-04-17 20:05:37 +0200289 /* Increment the module count when the debugger is active */
290 if (!kgdb_connected)
291 try_module_get(THIS_MODULE);
292}
293
294static void kgdboc_post_exp_handler(void)
295{
296 /* decrement the module count when the debugger detaches */
297 if (!kgdb_connected)
298 module_put(THIS_MODULE);
Jason Wessel408a4be2010-08-05 09:22:30 -0500299 if (kgdboc_use_kms && dbg_restore_graphics) {
300 dbg_restore_graphics = 0;
301 con_debug_leave();
302 }
Dmitry Torokhov111c1822010-11-03 11:04:05 -0700303 kgdboc_restore_input();
Jason Wesself2d937f2008-04-17 20:05:37 +0200304}
305
306static struct kgdb_io kgdboc_io_ops = {
307 .name = "kgdboc",
308 .read_char = kgdboc_get_char,
309 .write_char = kgdboc_put_char,
310 .pre_exception = kgdboc_pre_exp_handler,
311 .post_exception = kgdboc_post_exp_handler,
312};
313
Jason Wessel97311912010-05-20 21:04:30 -0500314#ifdef CONFIG_KGDB_SERIAL_CONSOLE
315/* This is only available if kgdboc is a built in for early debugging */
Jason Wessel91b152a2010-08-23 09:20:14 -0500316static int __init kgdboc_early_init(char *opt)
Jason Wessel97311912010-05-20 21:04:30 -0500317{
318 /* save the first character of the config string because the
319 * init routine can destroy it.
320 */
321 char save_ch;
322
323 kgdboc_option_setup(opt);
324 save_ch = config[0];
325 init_kgdboc();
326 config[0] = save_ch;
327 return 0;
328}
329
330early_param("ekgdboc", kgdboc_early_init);
331#endif /* CONFIG_KGDB_SERIAL_CONSOLE */
332
Jason Wesself2d937f2008-04-17 20:05:37 +0200333module_init(init_kgdboc);
334module_exit(cleanup_kgdboc);
335module_param_call(kgdboc, param_set_kgdboc_var, param_get_string, &kps, 0644);
336MODULE_PARM_DESC(kgdboc, "<serial_device>[,baud]");
337MODULE_DESCRIPTION("KGDB Console TTY Driver");
338MODULE_LICENSE("GPL");