blob: d3890e8d30e11ef8ba090481b6b1175553b7dd1a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001 Anton Blanchard <anton@au.ibm.com>, IBM
3 * Copyright (C) 2001 Paul Mackerras <paulus@au.ibm.com>, IBM
4 * Copyright (C) 2004 Benjamin Herrenschmidt <benh@kernel.crashing.org>, IBM Corp.
5 * Copyright (C) 2004 IBM Corporation
6 *
7 * Additional Author(s):
8 * Ryan S. Arnold <rsa@us.ibm.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 */
24
25#include <linux/console.h>
26#include <linux/cpumask.h>
27#include <linux/init.h>
28#include <linux/kbd_kern.h>
29#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/kthread.h>
31#include <linux/list.h>
32#include <linux/module.h>
33#include <linux/major.h>
34#include <linux/sysrq.h>
35#include <linux/tty.h>
36#include <linux/tty_flip.h>
37#include <linux/sched.h>
38#include <linux/spinlock.h>
39#include <linux/delay.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080040#include <linux/freezer.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Ryan S. Arnold45d607e2006-03-27 21:25:16 +020042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/uaccess.h>
Ryan S. Arnold45d607e2006-03-27 21:25:16 +020044
45#include "hvc_console.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#define HVC_MAJOR 229
48#define HVC_MINOR 0
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/*
51 * Wait this long per iteration while trying to push buffered data to the
52 * hypervisor before allowing the tty to complete a close operation.
53 */
54#define HVC_CLOSE_WAIT (HZ/100) /* 1/10 of a second */
55
56/*
Ryan S. Arnold45d607e2006-03-27 21:25:16 +020057 * These sizes are most efficient for vio, because they are the
58 * native transfer size. We could make them selectable in the
59 * future to better deal with backends that want other buffer sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define N_OUTBUF 16
62#define N_INBUF 16
63
Ryan S. Arnold45d607e2006-03-27 21:25:16 +020064#define __ALIGNED__ __attribute__((__aligned__(sizeof(long))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Milton Miller837dcfa2005-07-07 17:56:16 -070066static struct tty_driver *hvc_driver;
67static struct task_struct *hvc_task;
68
69/* Picks up late kicks after list walk but before schedule() */
70static int hvc_kicked;
71
Rusty Russell3e6c6f62007-10-16 23:30:13 -070072static int hvc_init(void);
73
Milton Miller837dcfa2005-07-07 17:56:16 -070074#ifdef CONFIG_MAGIC_SYSRQ
75static int sysrq_pressed;
76#endif
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/* dynamic list of hvc_struct instances */
Denis Chengbed97592008-02-06 01:37:35 -080079static LIST_HEAD(hvc_structs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81/*
82 * Protect the list of hvc_struct instances from inserts and removals during
83 * list traversal.
84 */
85static DEFINE_SPINLOCK(hvc_structs_lock);
86
87/*
Milton Miller6f248082005-07-07 17:56:17 -070088 * This value is used to assign a tty->index value to a hvc_struct based
89 * upon order of exposure via hvc_probe(), when we can not match it to
will schmidtc3ea6922007-04-18 00:54:51 +100090 * a console candidate registered with hvc_instantiate().
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 */
Milton Miller6f248082005-07-07 17:56:17 -070092static int last_hvc = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/*
will schmidtc3ea6922007-04-18 00:54:51 +100095 * Do not call this function with either the hvc_structs_lock or the hvc_struct
Greg Kroah-Hartman12b20de2007-11-28 10:46:22 -080096 * lock held. If successful, this function increments the kref reference
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * count against the target hvc_struct so it should be released when finished.
98 */
Adrian Bunk4fa156e2007-05-08 00:24:24 -070099static struct hvc_struct *hvc_get_by_index(int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
101 struct hvc_struct *hp;
102 unsigned long flags;
103
104 spin_lock(&hvc_structs_lock);
105
106 list_for_each_entry(hp, &hvc_structs, next) {
107 spin_lock_irqsave(&hp->lock, flags);
108 if (hp->index == index) {
Greg Kroah-Hartman12b20de2007-11-28 10:46:22 -0800109 kref_get(&hp->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 spin_unlock_irqrestore(&hp->lock, flags);
111 spin_unlock(&hvc_structs_lock);
112 return hp;
113 }
114 spin_unlock_irqrestore(&hp->lock, flags);
115 }
116 hp = NULL;
117
118 spin_unlock(&hvc_structs_lock);
119 return hp;
120}
121
Milton Miller837dcfa2005-07-07 17:56:16 -0700122
123/*
124 * Initial console vtermnos for console API usage prior to full console
125 * initialization. Any vty adapter outside this range will not have usable
126 * console interfaces but can still be used as a tty device. This has to be
127 * static because kmalloc will not work during early console init.
128 */
Rusty Russellb5113062010-01-18 03:44:57 +0000129static const struct hv_ops *cons_ops[MAX_NR_HVC_CONSOLES];
Milton Miller64e4da52005-07-07 17:56:22 -0700130static uint32_t vtermnos[MAX_NR_HVC_CONSOLES] =
131 {[0 ... MAX_NR_HVC_CONSOLES - 1] = -1};
Milton Miller837dcfa2005-07-07 17:56:16 -0700132
133/*
134 * Console APIs, NOT TTY. These APIs are available immediately when
135 * hvc_console_setup() finds adapters.
136 */
137
Adrian Bunk4fa156e2007-05-08 00:24:24 -0700138static void hvc_console_print(struct console *co, const char *b,
139 unsigned count)
Milton Miller837dcfa2005-07-07 17:56:16 -0700140{
Ryan S. Arnold45d607e2006-03-27 21:25:16 +0200141 char c[N_OUTBUF] __ALIGNED__;
Milton Miller837dcfa2005-07-07 17:56:16 -0700142 unsigned i = 0, n = 0;
Milton Miller030ffad2005-07-07 17:56:25 -0700143 int r, donecr = 0, index = co->index;
Milton Miller837dcfa2005-07-07 17:56:16 -0700144
145 /* Console access attempt outside of acceptable console range. */
Milton Miller030ffad2005-07-07 17:56:25 -0700146 if (index >= MAX_NR_HVC_CONSOLES)
Milton Miller837dcfa2005-07-07 17:56:16 -0700147 return;
148
will schmidtc3ea6922007-04-18 00:54:51 +1000149 /* This console adapter was removed so it is not usable. */
Roel Kluinecfcbee2009-12-09 12:34:16 -0800150 if (vtermnos[index] == -1)
Milton Miller837dcfa2005-07-07 17:56:16 -0700151 return;
152
153 while (count > 0 || i > 0) {
154 if (count > 0 && i < sizeof(c)) {
155 if (b[n] == '\n' && !donecr) {
156 c[i++] = '\r';
157 donecr = 1;
158 } else {
159 c[i++] = b[n++];
160 donecr = 0;
161 --count;
162 }
163 } else {
Milton Miller030ffad2005-07-07 17:56:25 -0700164 r = cons_ops[index]->put_chars(vtermnos[index], c, i);
Hendrik Brueckner3feebbb2008-10-13 23:12:50 +0000165 if (r <= 0) {
Milton Miller837dcfa2005-07-07 17:56:16 -0700166 /* throw away chars on error */
167 i = 0;
168 } else if (r > 0) {
169 i -= r;
170 if (i > 0)
171 memmove(c, c+r, i);
172 }
173 }
174 }
175}
176
177static struct tty_driver *hvc_console_device(struct console *c, int *index)
178{
Milton Miller7805b1b2005-07-07 17:56:23 -0700179 if (vtermnos[c->index] == -1)
180 return NULL;
181
Milton Miller837dcfa2005-07-07 17:56:16 -0700182 *index = c->index;
183 return hvc_driver;
184}
185
186static int __init hvc_console_setup(struct console *co, char *options)
187{
Milton Miller7805b1b2005-07-07 17:56:23 -0700188 if (co->index < 0 || co->index >= MAX_NR_HVC_CONSOLES)
189 return -ENODEV;
190
191 if (vtermnos[co->index] == -1)
192 return -ENODEV;
193
Milton Miller837dcfa2005-07-07 17:56:16 -0700194 return 0;
195}
196
Adrian Bunk4fa156e2007-05-08 00:24:24 -0700197static struct console hvc_con_driver = {
Milton Miller837dcfa2005-07-07 17:56:16 -0700198 .name = "hvc",
199 .write = hvc_console_print,
200 .device = hvc_console_device,
201 .setup = hvc_console_setup,
202 .flags = CON_PRINTBUFFER,
203 .index = -1,
204};
205
Milton Millerd5ee2572005-07-07 17:56:24 -0700206/*
will schmidtc3ea6922007-04-18 00:54:51 +1000207 * Early console initialization. Precedes driver initialization.
Milton Millerd5ee2572005-07-07 17:56:24 -0700208 *
209 * (1) we are first, and the user specified another driver
210 * -- index will remain -1
211 * (2) we are first and the user specified no driver
212 * -- index will be set to 0, then we will fail setup.
213 * (3) we are first and the user specified our driver
214 * -- index will be set to user specified driver, and we will fail
215 * (4) we are after driver, and this initcall will register us
216 * -- if the user didn't specify a driver then the console will match
217 *
218 * Note that for cases 2 and 3, we will match later when the io driver
219 * calls hvc_instantiate() and call register again.
220 */
Milton Miller837dcfa2005-07-07 17:56:16 -0700221static int __init hvc_console_init(void)
222{
Milton Miller837dcfa2005-07-07 17:56:16 -0700223 register_console(&hvc_con_driver);
224 return 0;
225}
226console_initcall(hvc_console_init);
227
Greg Kroah-Hartman12b20de2007-11-28 10:46:22 -0800228/* callback when the kboject ref count reaches zero. */
229static void destroy_hvc_struct(struct kref *kref)
230{
231 struct hvc_struct *hp = container_of(kref, struct hvc_struct, kref);
232 unsigned long flags;
233
234 spin_lock(&hvc_structs_lock);
235
236 spin_lock_irqsave(&hp->lock, flags);
237 list_del(&(hp->next));
238 spin_unlock_irqrestore(&hp->lock, flags);
239
240 spin_unlock(&hvc_structs_lock);
241
242 kfree(hp);
243}
244
Milton Miller837dcfa2005-07-07 17:56:16 -0700245/*
Milton Miller6f248082005-07-07 17:56:17 -0700246 * hvc_instantiate() is an early console discovery method which locates
247 * consoles * prior to the vio subsystem discovering them. Hotplugged
248 * vty adapters do NOT get an hvc_instantiate() callback since they
249 * appear after early console init.
Milton Miller837dcfa2005-07-07 17:56:16 -0700250 */
Rusty Russellb5113062010-01-18 03:44:57 +0000251int hvc_instantiate(uint32_t vtermno, int index, const struct hv_ops *ops)
Milton Miller837dcfa2005-07-07 17:56:16 -0700252{
Milton Miller7805b1b2005-07-07 17:56:23 -0700253 struct hvc_struct *hp;
254
Milton Miller837dcfa2005-07-07 17:56:16 -0700255 if (index < 0 || index >= MAX_NR_HVC_CONSOLES)
256 return -1;
257
258 if (vtermnos[index] != -1)
259 return -1;
260
will schmidtc3ea6922007-04-18 00:54:51 +1000261 /* make sure no no tty has been registered in this index */
Milton Miller7805b1b2005-07-07 17:56:23 -0700262 hp = hvc_get_by_index(index);
263 if (hp) {
Greg Kroah-Hartman12b20de2007-11-28 10:46:22 -0800264 kref_put(&hp->kref, destroy_hvc_struct);
Milton Miller7805b1b2005-07-07 17:56:23 -0700265 return -1;
266 }
267
Milton Miller837dcfa2005-07-07 17:56:16 -0700268 vtermnos[index] = vtermno;
Milton Miller030ffad2005-07-07 17:56:25 -0700269 cons_ops[index] = ops;
Milton Miller6f248082005-07-07 17:56:17 -0700270
will schmidtc3ea6922007-04-18 00:54:51 +1000271 /* reserve all indices up to and including this index */
Milton Miller6f248082005-07-07 17:56:17 -0700272 if (last_hvc < index)
273 last_hvc = index;
274
Milton Millerd5ee2572005-07-07 17:56:24 -0700275 /* if this index is what the user requested, then register
276 * now (setup won't fail at this point). It's ok to just
277 * call register again if previously .setup failed.
278 */
279 if (index == hvc_con_driver.index)
280 register_console(&hvc_con_driver);
281
Milton Miller837dcfa2005-07-07 17:56:16 -0700282 return 0;
283}
Christian Borntraeger7721c492008-07-25 12:06:06 -0500284EXPORT_SYMBOL_GPL(hvc_instantiate);
Milton Miller837dcfa2005-07-07 17:56:16 -0700285
286/* Wake the sleeping khvcd */
Christian Borntraeger611e0972008-06-20 15:24:08 +0200287void hvc_kick(void)
Milton Miller837dcfa2005-07-07 17:56:16 -0700288{
289 hvc_kicked = 1;
290 wake_up_process(hvc_task);
291}
Christian Borntraeger7721c492008-07-25 12:06:06 -0500292EXPORT_SYMBOL_GPL(hvc_kick);
Milton Miller837dcfa2005-07-07 17:56:16 -0700293
Milton Miller837dcfa2005-07-07 17:56:16 -0700294static void hvc_unthrottle(struct tty_struct *tty)
295{
296 hvc_kick();
297}
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299/*
300 * The TTY interface won't be used until after the vio layer has exposed the vty
301 * adapter to the kernel.
302 */
303static int hvc_open(struct tty_struct *tty, struct file * filp)
304{
305 struct hvc_struct *hp;
306 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Greg Kroah-Hartman12b20de2007-11-28 10:46:22 -0800309 /* Auto increments kref reference if found. */
Olof Johansson87fd7722006-09-07 15:18:08 -0500310 if (!(hp = hvc_get_by_index(tty->index)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 spin_lock_irqsave(&hp->lock, flags);
314 /* Check and then increment for fast path open. */
315 if (hp->count++ > 0) {
Amit Shahe74d0982010-03-12 11:53:15 +0530316 tty_kref_get(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 spin_unlock_irqrestore(&hp->lock, flags);
318 hvc_kick();
319 return 0;
320 } /* else count == 0 */
321
322 tty->driver_data = hp;
Michal Ostrowskifb5c5942006-02-18 09:29:59 -0500323
Amit Shahe74d0982010-03-12 11:53:15 +0530324 hp->tty = tty_kref_get(tty);
Christian Borntraeger611e0972008-06-20 15:24:08 +0200325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 spin_unlock_irqrestore(&hp->lock, flags);
Christian Borntraeger611e0972008-06-20 15:24:08 +0200327
Christian Borntraegerb1b135c2008-08-07 09:18:34 +0200328 if (hp->ops->notifier_add)
329 rc = hp->ops->notifier_add(hp, hp->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 /*
Christian Borntraeger611e0972008-06-20 15:24:08 +0200332 * If the notifier fails we return an error. The tty layer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 * will call hvc_close() after a failed open but we don't want to clean
334 * up there so we'll clean up here and clear out the previously set
Greg Kroah-Hartman12b20de2007-11-28 10:46:22 -0800335 * tty fields and return the kref reference.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 */
337 if (rc) {
338 spin_lock_irqsave(&hp->lock, flags);
339 hp->tty = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 spin_unlock_irqrestore(&hp->lock, flags);
Amit Shahe74d0982010-03-12 11:53:15 +0530341 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 tty->driver_data = NULL;
Greg Kroah-Hartman12b20de2007-11-28 10:46:22 -0800343 kref_put(&hp->kref, destroy_hvc_struct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 printk(KERN_ERR "hvc_open: request_irq failed with rc %d.\n", rc);
345 }
346 /* Force wakeup of the polling thread */
347 hvc_kick();
348
349 return rc;
350}
351
352static void hvc_close(struct tty_struct *tty, struct file * filp)
353{
354 struct hvc_struct *hp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 unsigned long flags;
356
357 if (tty_hung_up_p(filp))
358 return;
359
360 /*
361 * No driver_data means that this close was issued after a failed
362 * hvc_open by the tty layer's release_dev() function and we can just
Greg Kroah-Hartman12b20de2007-11-28 10:46:22 -0800363 * exit cleanly because the kref reference wasn't made.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 */
365 if (!tty->driver_data)
366 return;
367
368 hp = tty->driver_data;
Amit Shahe74d0982010-03-12 11:53:15 +0530369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 spin_lock_irqsave(&hp->lock, flags);
Amit Shahe74d0982010-03-12 11:53:15 +0530371 tty_kref_get(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (--hp->count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 /* We are done with the tty pointer now. */
375 hp->tty = NULL;
376 spin_unlock_irqrestore(&hp->lock, flags);
377
Amit Shahe74d0982010-03-12 11:53:15 +0530378 /* Put the ref obtained in hvc_open() */
379 tty_kref_put(tty);
380
Christian Borntraegereef26222008-10-12 21:51:31 +0000381 if (hp->ops->notifier_del)
382 hp->ops->notifier_del(hp, hp->data);
383
Hendrik Bruecknerfebde372008-10-14 05:02:09 +0000384 /* cancel pending tty resize work */
385 cancel_work_sync(&hp->tty_resize);
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /*
388 * Chain calls chars_in_buffer() and returns immediately if
389 * there is no buffered data otherwise sleeps on a wait queue
390 * waking periodically to check chars_in_buffer().
391 */
392 tty_wait_until_sent(tty, HVC_CLOSE_WAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 } else {
394 if (hp->count < 0)
395 printk(KERN_ERR "hvc_close %X: oops, count is %d\n",
396 hp->vtermno, hp->count);
397 spin_unlock_irqrestore(&hp->lock, flags);
398 }
399
Amit Shahe74d0982010-03-12 11:53:15 +0530400 tty_kref_put(tty);
Greg Kroah-Hartman12b20de2007-11-28 10:46:22 -0800401 kref_put(&hp->kref, destroy_hvc_struct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404static void hvc_hangup(struct tty_struct *tty)
405{
406 struct hvc_struct *hp = tty->driver_data;
407 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 int temp_open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 if (!hp)
411 return;
412
Hendrik Bruecknerfebde372008-10-14 05:02:09 +0000413 /* cancel pending tty resize work */
414 cancel_work_sync(&hp->tty_resize);
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 spin_lock_irqsave(&hp->lock, flags);
417
418 /*
419 * The N_TTY line discipline has problems such that in a close vs
420 * open->hangup case this can be called after the final close so prevent
421 * that from happening for now.
422 */
423 if (hp->count <= 0) {
424 spin_unlock_irqrestore(&hp->lock, flags);
425 return;
426 }
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 temp_open_count = hp->count;
429 hp->count = 0;
430 hp->n_outbuf = 0;
431 hp->tty = NULL;
Christian Borntraeger611e0972008-06-20 15:24:08 +0200432
Christian Borntraegereef26222008-10-12 21:51:31 +0000433 spin_unlock_irqrestore(&hp->lock, flags);
434
Hendrik Bruecknerfc362e22008-10-13 23:12:48 +0000435 if (hp->ops->notifier_hangup)
Amit Shahe74d0982010-03-12 11:53:15 +0530436 hp->ops->notifier_hangup(hp, hp->data);
Christian Borntraeger611e0972008-06-20 15:24:08 +0200437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 while(temp_open_count) {
439 --temp_open_count;
Amit Shahe74d0982010-03-12 11:53:15 +0530440 tty_kref_put(tty);
Greg Kroah-Hartman12b20de2007-11-28 10:46:22 -0800441 kref_put(&hp->kref, destroy_hvc_struct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443}
444
445/*
446 * Push buffered characters whether they were just recently buffered or waiting
447 * on a blocked hypervisor. Call this function with hp->lock held.
448 */
Hendrik Brueckner3feebbb2008-10-13 23:12:50 +0000449static int hvc_push(struct hvc_struct *hp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 int n;
452
Milton Miller030ffad2005-07-07 17:56:25 -0700453 n = hp->ops->put_chars(hp->vtermno, hp->outbuf, hp->n_outbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 if (n <= 0) {
Ryan S. Arnold45d607e2006-03-27 21:25:16 +0200455 if (n == 0) {
456 hp->do_wakeup = 1;
Hendrik Brueckner3feebbb2008-10-13 23:12:50 +0000457 return 0;
Ryan S. Arnold45d607e2006-03-27 21:25:16 +0200458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 /* throw away output on error; this happens when
460 there is no session connected to the vterm. */
461 hp->n_outbuf = 0;
462 } else
463 hp->n_outbuf -= n;
464 if (hp->n_outbuf > 0)
465 memmove(hp->outbuf, hp->outbuf + n, hp->n_outbuf);
466 else
467 hp->do_wakeup = 1;
Hendrik Brueckner3feebbb2008-10-13 23:12:50 +0000468
469 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Ryan S. Arnold45d607e2006-03-27 21:25:16 +0200472static int hvc_write(struct tty_struct *tty, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Ryan S. Arnold45d607e2006-03-27 21:25:16 +0200474 struct hvc_struct *hp = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 unsigned long flags;
476 int rsize, written = 0;
477
Ryan S. Arnold45d607e2006-03-27 21:25:16 +0200478 /* This write was probably executed during a tty close. */
479 if (!hp)
480 return -EPIPE;
481
482 if (hp->count <= 0)
483 return -EIO;
484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 spin_lock_irqsave(&hp->lock, flags);
486
487 /* Push pending writes */
488 if (hp->n_outbuf > 0)
489 hvc_push(hp);
490
Stephen Rothwell4e9e95a2006-07-13 18:53:32 +1000491 while (count > 0 && (rsize = hp->outbuf_size - hp->n_outbuf) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (rsize > count)
493 rsize = count;
494 memcpy(hp->outbuf + hp->n_outbuf, buf, rsize);
495 count -= rsize;
496 buf += rsize;
497 hp->n_outbuf += rsize;
498 written += rsize;
499 hvc_push(hp);
500 }
501 spin_unlock_irqrestore(&hp->lock, flags);
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 /*
504 * Racy, but harmless, kick thread if there is still pending data.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 */
506 if (hp->n_outbuf)
507 hvc_kick();
508
509 return written;
510}
511
Hendrik Bruecknerfebde372008-10-14 05:02:09 +0000512/**
513 * hvc_set_winsz() - Resize the hvc tty terminal window.
514 * @work: work structure.
515 *
516 * The routine shall not be called within an atomic context because it
517 * might sleep.
518 *
519 * Locking: hp->lock
520 */
521static void hvc_set_winsz(struct work_struct *work)
522{
523 struct hvc_struct *hp;
524 unsigned long hvc_flags;
525 struct tty_struct *tty;
526 struct winsize ws;
527
528 hp = container_of(work, struct hvc_struct, tty_resize);
Hendrik Bruecknerfebde372008-10-14 05:02:09 +0000529
530 spin_lock_irqsave(&hp->lock, hvc_flags);
531 if (!hp->tty) {
532 spin_unlock_irqrestore(&hp->lock, hvc_flags);
533 return;
534 }
535 ws = hp->ws;
536 tty = tty_kref_get(hp->tty);
537 spin_unlock_irqrestore(&hp->lock, hvc_flags);
538
Alan Coxfc6f6232009-01-02 13:43:17 +0000539 tty_do_resize(tty, &ws);
Hendrik Bruecknerfebde372008-10-14 05:02:09 +0000540 tty_kref_put(tty);
541}
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543/*
544 * This is actually a contract between the driver and the tty layer outlining
will schmidtc3ea6922007-04-18 00:54:51 +1000545 * how much write room the driver can guarantee will be sent OR BUFFERED. This
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 * driver MUST honor the return value.
547 */
548static int hvc_write_room(struct tty_struct *tty)
549{
550 struct hvc_struct *hp = tty->driver_data;
551
552 if (!hp)
553 return -1;
554
Stephen Rothwell4e9e95a2006-07-13 18:53:32 +1000555 return hp->outbuf_size - hp->n_outbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
558static int hvc_chars_in_buffer(struct tty_struct *tty)
559{
560 struct hvc_struct *hp = tty->driver_data;
561
562 if (!hp)
Alan Cox23198fd2009-07-20 16:05:27 +0100563 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 return hp->n_outbuf;
565}
566
Will Schmidtb7910722007-04-18 00:44:46 +1000567/*
568 * timeout will vary between the MIN and MAX values defined here. By default
569 * and during console activity we will use a default MIN_TIMEOUT of 10. When
570 * the console is idle, we increase the timeout value on each pass through
571 * msleep until we reach the max. This may be noticeable as a brief (average
572 * one second) delay on the console before the console responds to input when
573 * there has been no input for some time.
574 */
575#define MIN_TIMEOUT (10)
576#define MAX_TIMEOUT (2000)
577static u32 timeout = MIN_TIMEOUT;
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579#define HVC_POLL_READ 0x00000001
580#define HVC_POLL_WRITE 0x00000002
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Christian Borntraeger611e0972008-06-20 15:24:08 +0200582int hvc_poll(struct hvc_struct *hp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
584 struct tty_struct *tty;
585 int i, n, poll_mask = 0;
586 char buf[N_INBUF] __ALIGNED__;
587 unsigned long flags;
588 int read_total = 0;
Hendrik Brueckner3feebbb2008-10-13 23:12:50 +0000589 int written_total = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591 spin_lock_irqsave(&hp->lock, flags);
592
593 /* Push pending writes */
594 if (hp->n_outbuf > 0)
Hendrik Brueckner3feebbb2008-10-13 23:12:50 +0000595 written_total = hvc_push(hp);
Michael Ellermanb5374462006-06-07 17:10:03 +1000596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 /* Reschedule us if still some write pending */
Hendrik Brueckner3feebbb2008-10-13 23:12:50 +0000598 if (hp->n_outbuf > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 poll_mask |= HVC_POLL_WRITE;
Hendrik Brueckner3feebbb2008-10-13 23:12:50 +0000600 /* If hvc_push() was not able to write, sleep a few msecs */
601 timeout = (written_total) ? 0 : MIN_TIMEOUT;
602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 /* No tty attached, just skip */
Amit Shahe74d0982010-03-12 11:53:15 +0530605 tty = tty_kref_get(hp->tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (tty == NULL)
607 goto bail;
608
609 /* Now check if we can get data (are we throttled ?) */
610 if (test_bit(TTY_THROTTLED, &tty->flags))
611 goto throttled;
612
Christian Borntraeger611e0972008-06-20 15:24:08 +0200613 /* If we aren't notifier driven and aren't throttled, we always
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 * request a reschedule
615 */
Christian Borntraeger611e0972008-06-20 15:24:08 +0200616 if (!hp->irq_requested)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 poll_mask |= HVC_POLL_READ;
618
619 /* Read data if any */
620 for (;;) {
Alan Cox33f0f882006-01-09 20:54:13 -0800621 int count = tty_buffer_request_room(tty, N_INBUF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 /* If flip is full, just reschedule a later read */
624 if (count == 0) {
625 poll_mask |= HVC_POLL_READ;
626 break;
627 }
628
Milton Miller030ffad2005-07-07 17:56:25 -0700629 n = hp->ops->get_chars(hp->vtermno, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (n <= 0) {
631 /* Hangup the tty when disconnected from host */
632 if (n == -EPIPE) {
633 spin_unlock_irqrestore(&hp->lock, flags);
634 tty_hangup(tty);
635 spin_lock_irqsave(&hp->lock, flags);
Ryan S. Arnold45d607e2006-03-27 21:25:16 +0200636 } else if ( n == -EAGAIN ) {
637 /*
638 * Some back-ends can only ensure a certain min
639 * num of bytes read, which may be > 'count'.
640 * Let the tty clear the flip buff to make room.
641 */
642 poll_mask |= HVC_POLL_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
644 break;
645 }
646 for (i = 0; i < n; ++i) {
647#ifdef CONFIG_MAGIC_SYSRQ
Milton Miller2b9e0ba2005-07-07 17:56:19 -0700648 if (hp->index == hvc_con_driver.index) {
649 /* Handle the SysRq Hack */
650 /* XXX should support a sequence */
651 if (buf[i] == '\x0f') { /* ^O */
Hendrik Brueckner368c1e32008-12-16 00:09:38 +0000652 /* if ^O is pressed again, reset
653 * sysrq_pressed and flip ^O char */
654 sysrq_pressed = !sysrq_pressed;
655 if (sysrq_pressed)
656 continue;
Milton Miller2b9e0ba2005-07-07 17:56:19 -0700657 } else if (sysrq_pressed) {
David Howells7d12e782006-10-05 14:55:46 +0100658 handle_sysrq(buf[i], tty);
Milton Miller2b9e0ba2005-07-07 17:56:19 -0700659 sysrq_pressed = 0;
660 continue;
661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663#endif /* CONFIG_MAGIC_SYSRQ */
664 tty_insert_flip_char(tty, buf[i], 0);
665 }
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 read_total += n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 }
669 throttled:
670 /* Wakeup write queue if necessary */
671 if (hp->do_wakeup) {
672 hp->do_wakeup = 0;
673 tty_wakeup(tty);
674 }
675 bail:
676 spin_unlock_irqrestore(&hp->lock, flags);
677
Will Schmidtb7910722007-04-18 00:44:46 +1000678 if (read_total) {
679 /* Activity is occurring, so reset the polling backoff value to
680 a minimum for performance. */
681 timeout = MIN_TIMEOUT;
682
Michal Ostrowskifb5c5942006-02-18 09:29:59 -0500683 tty_flip_buffer_push(tty);
Will Schmidtb7910722007-04-18 00:44:46 +1000684 }
Amit Shahe74d0982010-03-12 11:53:15 +0530685 if (tty)
686 tty_kref_put(tty);
Will Schmidtb7910722007-04-18 00:44:46 +1000687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 return poll_mask;
689}
Christian Borntraeger7721c492008-07-25 12:06:06 -0500690EXPORT_SYMBOL_GPL(hvc_poll);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Hendrik Bruecknerfebde372008-10-14 05:02:09 +0000692/**
Hendrik Brueckner254be492009-08-27 01:45:39 +0000693 * __hvc_resize() - Update terminal window size information.
Hendrik Bruecknerfebde372008-10-14 05:02:09 +0000694 * @hp: HVC console pointer
695 * @ws: Terminal window size structure
696 *
697 * Stores the specified window size information in the hvc structure of @hp.
698 * The function schedule the tty resize update.
699 *
700 * Locking: Locking free; the function MUST be called holding hp->lock
701 */
Hendrik Brueckner254be492009-08-27 01:45:39 +0000702void __hvc_resize(struct hvc_struct *hp, struct winsize ws)
Hendrik Bruecknerfebde372008-10-14 05:02:09 +0000703{
Hendrik Brueckner7947cf02008-11-18 01:28:28 +0000704 hp->ws = ws;
705 schedule_work(&hp->tty_resize);
Hendrik Bruecknerfebde372008-10-14 05:02:09 +0000706}
Hendrik Brueckner254be492009-08-27 01:45:39 +0000707EXPORT_SYMBOL_GPL(__hvc_resize);
Hendrik Bruecknerfebde372008-10-14 05:02:09 +0000708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709/*
710 * This kthread is either polling or interrupt driven. This is determined by
711 * calling hvc_poll() who determines whether a console adapter support
712 * interrupts.
713 */
Adrian Bunk5605d4d2007-07-09 11:37:38 -0700714static int khvcd(void *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
716 int poll_mask;
717 struct hvc_struct *hp;
718
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700719 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 __set_current_state(TASK_RUNNING);
721 do {
722 poll_mask = 0;
723 hvc_kicked = 0;
Andrew Mortonb64074e2006-09-16 12:15:38 -0700724 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 wmb();
Michael Ellerman1c8950f2008-05-08 14:27:17 +1000726 if (!cpus_are_in_xmon()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 spin_lock(&hvc_structs_lock);
728 list_for_each_entry(hp, &hvc_structs, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 poll_mask |= hvc_poll(hp);
730 }
731 spin_unlock(&hvc_structs_lock);
732 } else
733 poll_mask |= HVC_POLL_READ;
734 if (hvc_kicked)
735 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 set_current_state(TASK_INTERRUPTIBLE);
737 if (!hvc_kicked) {
738 if (poll_mask == 0)
739 schedule();
Will Schmidtb7910722007-04-18 00:44:46 +1000740 else {
741 if (timeout < MAX_TIMEOUT)
742 timeout += (timeout >> 6) + 1;
743
744 msleep_interruptible(timeout);
745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 }
747 __set_current_state(TASK_RUNNING);
748 } while (!kthread_should_stop());
749
750 return 0;
751}
752
Jeff Dikeb68e31d2006-10-02 02:17:18 -0700753static const struct tty_operations hvc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 .open = hvc_open,
755 .close = hvc_close,
756 .write = hvc_write,
757 .hangup = hvc_hangup,
758 .unthrottle = hvc_unthrottle,
759 .write_room = hvc_write_room,
760 .chars_in_buffer = hvc_chars_in_buffer,
761};
762
Amit Shah119ea102010-01-18 03:44:58 +0000763struct hvc_struct *hvc_alloc(uint32_t vtermno, int data,
764 const struct hv_ops *ops,
765 int outbuf_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
767 struct hvc_struct *hp;
Milton Miller6f248082005-07-07 17:56:17 -0700768 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700770 /* We wait until a driver actually comes along */
771 if (!hvc_driver) {
772 int err = hvc_init();
773 if (err)
774 return ERR_PTR(err);
775 }
776
Milton Miller2da75822009-01-08 02:14:28 +0000777 hp = kzalloc(ALIGN(sizeof(*hp), sizeof(long)) + outbuf_size,
Stephen Rothwell4e9e95a2006-07-13 18:53:32 +1000778 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (!hp)
Milton Milleracad9552005-07-07 17:56:24 -0700780 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Milton Milleracad9552005-07-07 17:56:24 -0700782 hp->vtermno = vtermno;
Christian Borntraeger611e0972008-06-20 15:24:08 +0200783 hp->data = data;
Milton Miller030ffad2005-07-07 17:56:25 -0700784 hp->ops = ops;
Stephen Rothwell4e9e95a2006-07-13 18:53:32 +1000785 hp->outbuf_size = outbuf_size;
786 hp->outbuf = &((char *)hp)[ALIGN(sizeof(*hp), sizeof(long))];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Greg Kroah-Hartman12b20de2007-11-28 10:46:22 -0800788 kref_init(&hp->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Hendrik Bruecknerfebde372008-10-14 05:02:09 +0000790 INIT_WORK(&hp->tty_resize, hvc_set_winsz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 spin_lock_init(&hp->lock);
792 spin_lock(&hvc_structs_lock);
Milton Miller6f248082005-07-07 17:56:17 -0700793
794 /*
795 * find index to use:
796 * see if this vterm id matches one registered for console.
797 */
798 for (i=0; i < MAX_NR_HVC_CONSOLES; i++)
Ryan S. Arnold45d607e2006-03-27 21:25:16 +0200799 if (vtermnos[i] == hp->vtermno &&
800 cons_ops[i] == hp->ops)
Milton Miller6f248082005-07-07 17:56:17 -0700801 break;
802
803 /* no matching slot, just use a counter */
804 if (i >= MAX_NR_HVC_CONSOLES)
805 i = ++last_hvc;
806
807 hp->index = i;
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 list_add_tail(&(hp->next), &hvc_structs);
810 spin_unlock(&hvc_structs_lock);
811
Milton Milleracad9552005-07-07 17:56:24 -0700812 return hp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813}
Christian Borntraeger7721c492008-07-25 12:06:06 -0500814EXPORT_SYMBOL_GPL(hvc_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Hendrik Brueckner934752d2008-10-13 23:12:52 +0000816int hvc_remove(struct hvc_struct *hp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 struct tty_struct *tty;
820
821 spin_lock_irqsave(&hp->lock, flags);
Amit Shahe74d0982010-03-12 11:53:15 +0530822 tty = tty_kref_get(hp->tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 if (hp->index < MAX_NR_HVC_CONSOLES)
825 vtermnos[hp->index] = -1;
826
827 /* Don't whack hp->irq because tty_hangup() will need to free the irq. */
828
829 spin_unlock_irqrestore(&hp->lock, flags);
830
831 /*
Greg Kroah-Hartman12b20de2007-11-28 10:46:22 -0800832 * We 'put' the instance that was grabbed when the kref instance
833 * was initialized using kref_init(). Let the last holder of this
Amit Shahe74d0982010-03-12 11:53:15 +0530834 * kref cause it to be removed, which will probably be the tty_vhangup
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 * below.
836 */
Greg Kroah-Hartman12b20de2007-11-28 10:46:22 -0800837 kref_put(&hp->kref, destroy_hvc_struct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 /*
Amit Shahe74d0982010-03-12 11:53:15 +0530840 * This function call will auto chain call hvc_hangup.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 */
Amit Shahe74d0982010-03-12 11:53:15 +0530842 if (tty) {
843 tty_vhangup(tty);
844 tty_kref_put(tty);
845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return 0;
847}
Amit Shahc0cefeb2009-11-27 20:50:49 +0000848EXPORT_SYMBOL_GPL(hvc_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700850/* Driver initialization: called as soon as someone uses hvc_alloc(). */
851static int hvc_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Michael Neuling55aab8c2006-03-25 17:30:00 +1100853 struct tty_driver *drv;
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700854 int err;
Michael Neuling55aab8c2006-03-25 17:30:00 +1100855
Milton Miller5f6d9c02005-07-07 17:56:21 -0700856 /* We need more than hvc_count adapters due to hotplug additions. */
Michael Neuling55aab8c2006-03-25 17:30:00 +1100857 drv = alloc_tty_driver(HVC_ALLOC_TTY_ADAPTERS);
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700858 if (!drv) {
859 err = -ENOMEM;
860 goto out;
861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Michael Neuling55aab8c2006-03-25 17:30:00 +1100863 drv->owner = THIS_MODULE;
Michael Neuling55aab8c2006-03-25 17:30:00 +1100864 drv->driver_name = "hvc";
865 drv->name = "hvc";
866 drv->major = HVC_MAJOR;
867 drv->minor_start = HVC_MINOR;
868 drv->type = TTY_DRIVER_TYPE_SYSTEM;
869 drv->init_termios = tty_std_termios;
Hendrik Brueckner56ce9e22008-10-13 23:12:49 +0000870 drv->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_RESET_TERMIOS;
Michael Neuling55aab8c2006-03-25 17:30:00 +1100871 tty_set_operations(drv, &hvc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 /* Always start the kthread because there can be hotplug vty adapters
874 * added later. */
875 hvc_task = kthread_run(khvcd, NULL, "khvcd");
876 if (IS_ERR(hvc_task)) {
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700877 printk(KERN_ERR "Couldn't create kthread for console.\n");
878 err = PTR_ERR(hvc_task);
879 goto put_tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
881
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700882 err = tty_register_driver(drv);
883 if (err) {
884 printk(KERN_ERR "Couldn't register hvc console driver\n");
885 goto stop_thread;
886 }
Anton Blanchardef4cbee2005-09-14 14:19:18 -0700887
Milton Miller9fef3d22009-01-08 02:14:18 +0000888 /*
889 * Make sure tty is fully registered before allowing it to be
890 * found by hvc_console_device.
891 */
892 smp_mb();
Michael Neuling55aab8c2006-03-25 17:30:00 +1100893 hvc_driver = drv;
Milton Milleracad9552005-07-07 17:56:24 -0700894 return 0;
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700895
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700896stop_thread:
897 kthread_stop(hvc_task);
898 hvc_task = NULL;
Julia Lawall2571cd62008-10-13 10:31:49 +0100899put_tty:
900 put_tty_driver(drv);
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700901out:
902 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
will schmidtc3ea6922007-04-18 00:54:51 +1000905/* This isn't particularly necessary due to this being a console driver
Milton Miller320da0d2005-07-07 17:56:20 -0700906 * but it is nice to be thorough.
907 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908static void __exit hvc_exit(void)
909{
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700910 if (hvc_driver) {
911 kthread_stop(hvc_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700913 tty_unregister_driver(hvc_driver);
914 /* return tty_struct instances allocated in hvc_init(). */
915 put_tty_driver(hvc_driver);
916 unregister_console(&hvc_con_driver);
917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919module_exit(hvc_exit);