blob: 8252f86685385f341aa6f34797d52581264ed543 [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>
30#include <linux/kobject.h>
31#include <linux/kthread.h>
32#include <linux/list.h>
33#include <linux/module.h>
34#include <linux/major.h>
35#include <linux/sysrq.h>
36#include <linux/tty.h>
37#include <linux/tty_flip.h>
38#include <linux/sched.h>
39#include <linux/spinlock.h>
40#include <linux/delay.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080041#include <linux/freezer.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 -070078struct hvc_struct {
79 spinlock_t lock;
80 int index;
81 struct tty_struct *tty;
82 unsigned int count;
83 int do_wakeup;
Stephen Rothwell4e9e95a2006-07-13 18:53:32 +100084 char *outbuf;
85 int outbuf_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 int n_outbuf;
87 uint32_t vtermno;
Milton Miller030ffad2005-07-07 17:56:25 -070088 struct hv_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 int irq_requested;
90 int irq;
91 struct list_head next;
92 struct kobject kobj; /* ref count & hvc_struct lifetime */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093};
94
95/* dynamic list of hvc_struct instances */
96static struct list_head hvc_structs = LIST_HEAD_INIT(hvc_structs);
97
98/*
99 * Protect the list of hvc_struct instances from inserts and removals during
100 * list traversal.
101 */
102static DEFINE_SPINLOCK(hvc_structs_lock);
103
104/*
Milton Miller6f248082005-07-07 17:56:17 -0700105 * This value is used to assign a tty->index value to a hvc_struct based
106 * upon order of exposure via hvc_probe(), when we can not match it to
will schmidtc3ea6922007-04-18 00:54:51 +1000107 * a console candidate registered with hvc_instantiate().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 */
Milton Miller6f248082005-07-07 17:56:17 -0700109static int last_hvc = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/*
will schmidtc3ea6922007-04-18 00:54:51 +1000112 * Do not call this function with either the hvc_structs_lock or the hvc_struct
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 * lock held. If successful, this function increments the kobject reference
114 * count against the target hvc_struct so it should be released when finished.
115 */
Adrian Bunk4fa156e2007-05-08 00:24:24 -0700116static struct hvc_struct *hvc_get_by_index(int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 struct hvc_struct *hp;
119 unsigned long flags;
120
121 spin_lock(&hvc_structs_lock);
122
123 list_for_each_entry(hp, &hvc_structs, next) {
124 spin_lock_irqsave(&hp->lock, flags);
125 if (hp->index == index) {
126 kobject_get(&hp->kobj);
127 spin_unlock_irqrestore(&hp->lock, flags);
128 spin_unlock(&hvc_structs_lock);
129 return hp;
130 }
131 spin_unlock_irqrestore(&hp->lock, flags);
132 }
133 hp = NULL;
134
135 spin_unlock(&hvc_structs_lock);
136 return hp;
137}
138
Milton Miller837dcfa2005-07-07 17:56:16 -0700139
140/*
141 * Initial console vtermnos for console API usage prior to full console
142 * initialization. Any vty adapter outside this range will not have usable
143 * console interfaces but can still be used as a tty device. This has to be
144 * static because kmalloc will not work during early console init.
145 */
Milton Miller030ffad2005-07-07 17:56:25 -0700146static struct hv_ops *cons_ops[MAX_NR_HVC_CONSOLES];
Milton Miller64e4da52005-07-07 17:56:22 -0700147static uint32_t vtermnos[MAX_NR_HVC_CONSOLES] =
148 {[0 ... MAX_NR_HVC_CONSOLES - 1] = -1};
Milton Miller837dcfa2005-07-07 17:56:16 -0700149
150/*
151 * Console APIs, NOT TTY. These APIs are available immediately when
152 * hvc_console_setup() finds adapters.
153 */
154
Adrian Bunk4fa156e2007-05-08 00:24:24 -0700155static void hvc_console_print(struct console *co, const char *b,
156 unsigned count)
Milton Miller837dcfa2005-07-07 17:56:16 -0700157{
Ryan S. Arnold45d607e2006-03-27 21:25:16 +0200158 char c[N_OUTBUF] __ALIGNED__;
Milton Miller837dcfa2005-07-07 17:56:16 -0700159 unsigned i = 0, n = 0;
Milton Miller030ffad2005-07-07 17:56:25 -0700160 int r, donecr = 0, index = co->index;
Milton Miller837dcfa2005-07-07 17:56:16 -0700161
162 /* Console access attempt outside of acceptable console range. */
Milton Miller030ffad2005-07-07 17:56:25 -0700163 if (index >= MAX_NR_HVC_CONSOLES)
Milton Miller837dcfa2005-07-07 17:56:16 -0700164 return;
165
will schmidtc3ea6922007-04-18 00:54:51 +1000166 /* This console adapter was removed so it is not usable. */
Milton Miller030ffad2005-07-07 17:56:25 -0700167 if (vtermnos[index] < 0)
Milton Miller837dcfa2005-07-07 17:56:16 -0700168 return;
169
170 while (count > 0 || i > 0) {
171 if (count > 0 && i < sizeof(c)) {
172 if (b[n] == '\n' && !donecr) {
173 c[i++] = '\r';
174 donecr = 1;
175 } else {
176 c[i++] = b[n++];
177 donecr = 0;
178 --count;
179 }
180 } else {
Milton Miller030ffad2005-07-07 17:56:25 -0700181 r = cons_ops[index]->put_chars(vtermnos[index], c, i);
Milton Miller837dcfa2005-07-07 17:56:16 -0700182 if (r < 0) {
183 /* throw away chars on error */
184 i = 0;
185 } else if (r > 0) {
186 i -= r;
187 if (i > 0)
188 memmove(c, c+r, i);
189 }
190 }
191 }
192}
193
194static struct tty_driver *hvc_console_device(struct console *c, int *index)
195{
Milton Miller7805b1b2005-07-07 17:56:23 -0700196 if (vtermnos[c->index] == -1)
197 return NULL;
198
Milton Miller837dcfa2005-07-07 17:56:16 -0700199 *index = c->index;
200 return hvc_driver;
201}
202
203static int __init hvc_console_setup(struct console *co, char *options)
204{
Milton Miller7805b1b2005-07-07 17:56:23 -0700205 if (co->index < 0 || co->index >= MAX_NR_HVC_CONSOLES)
206 return -ENODEV;
207
208 if (vtermnos[co->index] == -1)
209 return -ENODEV;
210
Milton Miller837dcfa2005-07-07 17:56:16 -0700211 return 0;
212}
213
Adrian Bunk4fa156e2007-05-08 00:24:24 -0700214static struct console hvc_con_driver = {
Milton Miller837dcfa2005-07-07 17:56:16 -0700215 .name = "hvc",
216 .write = hvc_console_print,
217 .device = hvc_console_device,
218 .setup = hvc_console_setup,
219 .flags = CON_PRINTBUFFER,
220 .index = -1,
221};
222
Milton Millerd5ee2572005-07-07 17:56:24 -0700223/*
will schmidtc3ea6922007-04-18 00:54:51 +1000224 * Early console initialization. Precedes driver initialization.
Milton Millerd5ee2572005-07-07 17:56:24 -0700225 *
226 * (1) we are first, and the user specified another driver
227 * -- index will remain -1
228 * (2) we are first and the user specified no driver
229 * -- index will be set to 0, then we will fail setup.
230 * (3) we are first and the user specified our driver
231 * -- index will be set to user specified driver, and we will fail
232 * (4) we are after driver, and this initcall will register us
233 * -- if the user didn't specify a driver then the console will match
234 *
235 * Note that for cases 2 and 3, we will match later when the io driver
236 * calls hvc_instantiate() and call register again.
237 */
Milton Miller837dcfa2005-07-07 17:56:16 -0700238static int __init hvc_console_init(void)
239{
Milton Miller837dcfa2005-07-07 17:56:16 -0700240 register_console(&hvc_con_driver);
241 return 0;
242}
243console_initcall(hvc_console_init);
244
245/*
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 */
Milton Miller030ffad2005-07-07 17:56:25 -0700251int hvc_instantiate(uint32_t vtermno, int index, 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) {
264 kobject_put(&hp->kobj);
265 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}
284
285/* Wake the sleeping khvcd */
286static void hvc_kick(void)
287{
288 hvc_kicked = 1;
289 wake_up_process(hvc_task);
290}
291
Milton Miller8b67f8c2005-07-07 17:56:18 -0700292static int hvc_poll(struct hvc_struct *hp);
293
Milton Miller837dcfa2005-07-07 17:56:16 -0700294/*
295 * NOTE: This API isn't used if the console adapter doesn't support interrupts.
296 * In this case the console is poll driven.
297 */
David Howells7d12e782006-10-05 14:55:46 +0100298static irqreturn_t hvc_handle_interrupt(int irq, void *dev_instance)
Milton Miller837dcfa2005-07-07 17:56:16 -0700299{
Milton Miller8b67f8c2005-07-07 17:56:18 -0700300 /* if hvc_poll request a repoll, then kick the hvcd thread */
301 if (hvc_poll(dev_instance))
302 hvc_kick();
Milton Miller837dcfa2005-07-07 17:56:16 -0700303 return IRQ_HANDLED;
304}
305
306static void hvc_unthrottle(struct tty_struct *tty)
307{
308 hvc_kick();
309}
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311/*
312 * The TTY interface won't be used until after the vio layer has exposed the vty
313 * adapter to the kernel.
314 */
315static int hvc_open(struct tty_struct *tty, struct file * filp)
316{
317 struct hvc_struct *hp;
318 unsigned long flags;
Rusty Russell8cd0ae02007-02-23 14:12:02 +1100319 int irq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 int rc = 0;
321 struct kobject *kobjp;
322
323 /* Auto increments kobject reference if found. */
Olof Johansson87fd7722006-09-07 15:18:08 -0500324 if (!(hp = hvc_get_by_index(tty->index)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 spin_lock_irqsave(&hp->lock, flags);
328 /* Check and then increment for fast path open. */
329 if (hp->count++ > 0) {
330 spin_unlock_irqrestore(&hp->lock, flags);
331 hvc_kick();
332 return 0;
333 } /* else count == 0 */
334
335 tty->driver_data = hp;
Michal Ostrowskifb5c5942006-02-18 09:29:59 -0500336 tty->low_latency = 1; /* Makes flushes to ldisc synchronous. */
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 hp->tty = tty;
339 /* Save for request_irq outside of spin_lock. */
340 irq = hp->irq;
Rusty Russell8cd0ae02007-02-23 14:12:02 +1100341 if (irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 hp->irq_requested = 1;
343
344 kobjp = &hp->kobj;
345
346 spin_unlock_irqrestore(&hp->lock, flags);
347 /* check error, fallback to non-irq */
Rusty Russell8cd0ae02007-02-23 14:12:02 +1100348 if (irq)
Thomas Gleixner0f2ed4c2006-07-01 19:29:33 -0700349 rc = request_irq(irq, hvc_handle_interrupt, IRQF_DISABLED, "hvc_console", hp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 /*
352 * If the request_irq() fails and we return an error. The tty layer
353 * will call hvc_close() after a failed open but we don't want to clean
354 * up there so we'll clean up here and clear out the previously set
355 * tty fields and return the kobject reference.
356 */
357 if (rc) {
358 spin_lock_irqsave(&hp->lock, flags);
359 hp->tty = NULL;
360 hp->irq_requested = 0;
361 spin_unlock_irqrestore(&hp->lock, flags);
362 tty->driver_data = NULL;
363 kobject_put(kobjp);
364 printk(KERN_ERR "hvc_open: request_irq failed with rc %d.\n", rc);
365 }
366 /* Force wakeup of the polling thread */
367 hvc_kick();
368
369 return rc;
370}
371
372static void hvc_close(struct tty_struct *tty, struct file * filp)
373{
374 struct hvc_struct *hp;
375 struct kobject *kobjp;
Rusty Russell8cd0ae02007-02-23 14:12:02 +1100376 int irq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 unsigned long flags;
378
379 if (tty_hung_up_p(filp))
380 return;
381
382 /*
383 * No driver_data means that this close was issued after a failed
384 * hvc_open by the tty layer's release_dev() function and we can just
385 * exit cleanly because the kobject reference wasn't made.
386 */
387 if (!tty->driver_data)
388 return;
389
390 hp = tty->driver_data;
391 spin_lock_irqsave(&hp->lock, flags);
392
393 kobjp = &hp->kobj;
394 if (--hp->count == 0) {
395 if (hp->irq_requested)
396 irq = hp->irq;
397 hp->irq_requested = 0;
398
399 /* We are done with the tty pointer now. */
400 hp->tty = NULL;
401 spin_unlock_irqrestore(&hp->lock, flags);
402
403 /*
404 * Chain calls chars_in_buffer() and returns immediately if
405 * there is no buffered data otherwise sleeps on a wait queue
406 * waking periodically to check chars_in_buffer().
407 */
408 tty_wait_until_sent(tty, HVC_CLOSE_WAIT);
409
Rusty Russell8cd0ae02007-02-23 14:12:02 +1100410 if (irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 free_irq(irq, hp);
412
413 } else {
414 if (hp->count < 0)
415 printk(KERN_ERR "hvc_close %X: oops, count is %d\n",
416 hp->vtermno, hp->count);
417 spin_unlock_irqrestore(&hp->lock, flags);
418 }
419
420 kobject_put(kobjp);
421}
422
423static void hvc_hangup(struct tty_struct *tty)
424{
425 struct hvc_struct *hp = tty->driver_data;
426 unsigned long flags;
Rusty Russell8cd0ae02007-02-23 14:12:02 +1100427 int irq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 int temp_open_count;
429 struct kobject *kobjp;
430
431 if (!hp)
432 return;
433
434 spin_lock_irqsave(&hp->lock, flags);
435
436 /*
437 * The N_TTY line discipline has problems such that in a close vs
438 * open->hangup case this can be called after the final close so prevent
439 * that from happening for now.
440 */
441 if (hp->count <= 0) {
442 spin_unlock_irqrestore(&hp->lock, flags);
443 return;
444 }
445
446 kobjp = &hp->kobj;
447 temp_open_count = hp->count;
448 hp->count = 0;
449 hp->n_outbuf = 0;
450 hp->tty = NULL;
451 if (hp->irq_requested)
452 /* Saved for use outside of spin_lock. */
453 irq = hp->irq;
454 hp->irq_requested = 0;
455 spin_unlock_irqrestore(&hp->lock, flags);
Rusty Russell8cd0ae02007-02-23 14:12:02 +1100456 if (irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 free_irq(irq, hp);
458 while(temp_open_count) {
459 --temp_open_count;
460 kobject_put(kobjp);
461 }
462}
463
464/*
465 * Push buffered characters whether they were just recently buffered or waiting
466 * on a blocked hypervisor. Call this function with hp->lock held.
467 */
468static void hvc_push(struct hvc_struct *hp)
469{
470 int n;
471
Milton Miller030ffad2005-07-07 17:56:25 -0700472 n = hp->ops->put_chars(hp->vtermno, hp->outbuf, hp->n_outbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (n <= 0) {
Ryan S. Arnold45d607e2006-03-27 21:25:16 +0200474 if (n == 0) {
475 hp->do_wakeup = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 return;
Ryan S. Arnold45d607e2006-03-27 21:25:16 +0200477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 /* throw away output on error; this happens when
479 there is no session connected to the vterm. */
480 hp->n_outbuf = 0;
481 } else
482 hp->n_outbuf -= n;
483 if (hp->n_outbuf > 0)
484 memmove(hp->outbuf, hp->outbuf + n, hp->n_outbuf);
485 else
486 hp->do_wakeup = 1;
487}
488
Ryan S. Arnold45d607e2006-03-27 21:25:16 +0200489static int hvc_write(struct tty_struct *tty, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Ryan S. Arnold45d607e2006-03-27 21:25:16 +0200491 struct hvc_struct *hp = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 unsigned long flags;
493 int rsize, written = 0;
494
Ryan S. Arnold45d607e2006-03-27 21:25:16 +0200495 /* This write was probably executed during a tty close. */
496 if (!hp)
497 return -EPIPE;
498
499 if (hp->count <= 0)
500 return -EIO;
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 spin_lock_irqsave(&hp->lock, flags);
503
504 /* Push pending writes */
505 if (hp->n_outbuf > 0)
506 hvc_push(hp);
507
Stephen Rothwell4e9e95a2006-07-13 18:53:32 +1000508 while (count > 0 && (rsize = hp->outbuf_size - hp->n_outbuf) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (rsize > count)
510 rsize = count;
511 memcpy(hp->outbuf + hp->n_outbuf, buf, rsize);
512 count -= rsize;
513 buf += rsize;
514 hp->n_outbuf += rsize;
515 written += rsize;
516 hvc_push(hp);
517 }
518 spin_unlock_irqrestore(&hp->lock, flags);
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 /*
521 * Racy, but harmless, kick thread if there is still pending data.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 */
523 if (hp->n_outbuf)
524 hvc_kick();
525
526 return written;
527}
528
529/*
530 * This is actually a contract between the driver and the tty layer outlining
will schmidtc3ea6922007-04-18 00:54:51 +1000531 * how much write room the driver can guarantee will be sent OR BUFFERED. This
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 * driver MUST honor the return value.
533 */
534static int hvc_write_room(struct tty_struct *tty)
535{
536 struct hvc_struct *hp = tty->driver_data;
537
538 if (!hp)
539 return -1;
540
Stephen Rothwell4e9e95a2006-07-13 18:53:32 +1000541 return hp->outbuf_size - hp->n_outbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
544static int hvc_chars_in_buffer(struct tty_struct *tty)
545{
546 struct hvc_struct *hp = tty->driver_data;
547
548 if (!hp)
549 return -1;
550 return hp->n_outbuf;
551}
552
Will Schmidtb7910722007-04-18 00:44:46 +1000553/*
554 * timeout will vary between the MIN and MAX values defined here. By default
555 * and during console activity we will use a default MIN_TIMEOUT of 10. When
556 * the console is idle, we increase the timeout value on each pass through
557 * msleep until we reach the max. This may be noticeable as a brief (average
558 * one second) delay on the console before the console responds to input when
559 * there has been no input for some time.
560 */
561#define MIN_TIMEOUT (10)
562#define MAX_TIMEOUT (2000)
563static u32 timeout = MIN_TIMEOUT;
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565#define HVC_POLL_READ 0x00000001
566#define HVC_POLL_WRITE 0x00000002
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568static int hvc_poll(struct hvc_struct *hp)
569{
570 struct tty_struct *tty;
571 int i, n, poll_mask = 0;
572 char buf[N_INBUF] __ALIGNED__;
573 unsigned long flags;
574 int read_total = 0;
575
576 spin_lock_irqsave(&hp->lock, flags);
577
578 /* Push pending writes */
579 if (hp->n_outbuf > 0)
580 hvc_push(hp);
Michael Ellermanb5374462006-06-07 17:10:03 +1000581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 /* Reschedule us if still some write pending */
583 if (hp->n_outbuf > 0)
584 poll_mask |= HVC_POLL_WRITE;
585
586 /* No tty attached, just skip */
587 tty = hp->tty;
588 if (tty == NULL)
589 goto bail;
590
591 /* Now check if we can get data (are we throttled ?) */
592 if (test_bit(TTY_THROTTLED, &tty->flags))
593 goto throttled;
594
595 /* If we aren't interrupt driven and aren't throttled, we always
596 * request a reschedule
597 */
Rusty Russell8cd0ae02007-02-23 14:12:02 +1100598 if (hp->irq == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 poll_mask |= HVC_POLL_READ;
600
601 /* Read data if any */
602 for (;;) {
Alan Cox33f0f882006-01-09 20:54:13 -0800603 int count = tty_buffer_request_room(tty, N_INBUF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 /* If flip is full, just reschedule a later read */
606 if (count == 0) {
607 poll_mask |= HVC_POLL_READ;
608 break;
609 }
610
Milton Miller030ffad2005-07-07 17:56:25 -0700611 n = hp->ops->get_chars(hp->vtermno, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (n <= 0) {
613 /* Hangup the tty when disconnected from host */
614 if (n == -EPIPE) {
615 spin_unlock_irqrestore(&hp->lock, flags);
616 tty_hangup(tty);
617 spin_lock_irqsave(&hp->lock, flags);
Ryan S. Arnold45d607e2006-03-27 21:25:16 +0200618 } else if ( n == -EAGAIN ) {
619 /*
620 * Some back-ends can only ensure a certain min
621 * num of bytes read, which may be > 'count'.
622 * Let the tty clear the flip buff to make room.
623 */
624 poll_mask |= HVC_POLL_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626 break;
627 }
628 for (i = 0; i < n; ++i) {
629#ifdef CONFIG_MAGIC_SYSRQ
Milton Miller2b9e0ba2005-07-07 17:56:19 -0700630 if (hp->index == hvc_con_driver.index) {
631 /* Handle the SysRq Hack */
632 /* XXX should support a sequence */
633 if (buf[i] == '\x0f') { /* ^O */
634 sysrq_pressed = 1;
635 continue;
636 } else if (sysrq_pressed) {
David Howells7d12e782006-10-05 14:55:46 +0100637 handle_sysrq(buf[i], tty);
Milton Miller2b9e0ba2005-07-07 17:56:19 -0700638 sysrq_pressed = 0;
639 continue;
640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
642#endif /* CONFIG_MAGIC_SYSRQ */
643 tty_insert_flip_char(tty, buf[i], 0);
644 }
645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 read_total += n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
648 throttled:
649 /* Wakeup write queue if necessary */
650 if (hp->do_wakeup) {
651 hp->do_wakeup = 0;
652 tty_wakeup(tty);
653 }
654 bail:
655 spin_unlock_irqrestore(&hp->lock, flags);
656
Will Schmidtb7910722007-04-18 00:44:46 +1000657 if (read_total) {
658 /* Activity is occurring, so reset the polling backoff value to
659 a minimum for performance. */
660 timeout = MIN_TIMEOUT;
661
Michal Ostrowskifb5c5942006-02-18 09:29:59 -0500662 tty_flip_buffer_push(tty);
Will Schmidtb7910722007-04-18 00:44:46 +1000663 }
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return poll_mask;
666}
667
668#if defined(CONFIG_XMON) && defined(CONFIG_SMP)
669extern cpumask_t cpus_in_xmon;
670#else
671static const cpumask_t cpus_in_xmon = CPU_MASK_NONE;
672#endif
673
674/*
675 * This kthread is either polling or interrupt driven. This is determined by
676 * calling hvc_poll() who determines whether a console adapter support
677 * interrupts.
678 */
Adrian Bunk5605d4d2007-07-09 11:37:38 -0700679static int khvcd(void *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
681 int poll_mask;
682 struct hvc_struct *hp;
683
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700684 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 __set_current_state(TASK_RUNNING);
686 do {
687 poll_mask = 0;
688 hvc_kicked = 0;
Andrew Mortonb64074e2006-09-16 12:15:38 -0700689 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 wmb();
691 if (cpus_empty(cpus_in_xmon)) {
692 spin_lock(&hvc_structs_lock);
693 list_for_each_entry(hp, &hvc_structs, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 poll_mask |= hvc_poll(hp);
695 }
696 spin_unlock(&hvc_structs_lock);
697 } else
698 poll_mask |= HVC_POLL_READ;
699 if (hvc_kicked)
700 continue;
Michael Ellermanb5374462006-06-07 17:10:03 +1000701 if (poll_mask & HVC_POLL_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 yield();
703 continue;
704 }
705 set_current_state(TASK_INTERRUPTIBLE);
706 if (!hvc_kicked) {
707 if (poll_mask == 0)
708 schedule();
Will Schmidtb7910722007-04-18 00:44:46 +1000709 else {
710 if (timeout < MAX_TIMEOUT)
711 timeout += (timeout >> 6) + 1;
712
713 msleep_interruptible(timeout);
714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716 __set_current_state(TASK_RUNNING);
717 } while (!kthread_should_stop());
718
719 return 0;
720}
721
Jeff Dikeb68e31d2006-10-02 02:17:18 -0700722static const struct tty_operations hvc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 .open = hvc_open,
724 .close = hvc_close,
725 .write = hvc_write,
726 .hangup = hvc_hangup,
727 .unthrottle = hvc_unthrottle,
728 .write_room = hvc_write_room,
729 .chars_in_buffer = hvc_chars_in_buffer,
730};
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732/* callback when the kboject ref count reaches zero. */
733static void destroy_hvc_struct(struct kobject *kobj)
734{
735 struct hvc_struct *hp = container_of(kobj, struct hvc_struct, kobj);
736 unsigned long flags;
737
738 spin_lock(&hvc_structs_lock);
739
740 spin_lock_irqsave(&hp->lock, flags);
741 list_del(&(hp->next));
742 spin_unlock_irqrestore(&hp->lock, flags);
743
744 spin_unlock(&hvc_structs_lock);
745
746 kfree(hp);
747}
748
749static struct kobj_type hvc_kobj_type = {
750 .release = destroy_hvc_struct,
751};
752
Milton Miller030ffad2005-07-07 17:56:25 -0700753struct hvc_struct __devinit *hvc_alloc(uint32_t vtermno, int irq,
Stephen Rothwell4e9e95a2006-07-13 18:53:32 +1000754 struct hv_ops *ops, int outbuf_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
756 struct hvc_struct *hp;
Milton Miller6f248082005-07-07 17:56:17 -0700757 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700759 /* We wait until a driver actually comes along */
760 if (!hvc_driver) {
761 int err = hvc_init();
762 if (err)
763 return ERR_PTR(err);
764 }
765
Stephen Rothwell4e9e95a2006-07-13 18:53:32 +1000766 hp = kmalloc(ALIGN(sizeof(*hp), sizeof(long)) + outbuf_size,
767 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 if (!hp)
Milton Milleracad9552005-07-07 17:56:24 -0700769 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 memset(hp, 0x00, sizeof(*hp));
Milton Milleracad9552005-07-07 17:56:24 -0700772
773 hp->vtermno = vtermno;
774 hp->irq = irq;
Milton Miller030ffad2005-07-07 17:56:25 -0700775 hp->ops = ops;
Stephen Rothwell4e9e95a2006-07-13 18:53:32 +1000776 hp->outbuf_size = outbuf_size;
777 hp->outbuf = &((char *)hp)[ALIGN(sizeof(*hp), sizeof(long))];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 kobject_init(&hp->kobj);
780 hp->kobj.ktype = &hvc_kobj_type;
781
782 spin_lock_init(&hp->lock);
783 spin_lock(&hvc_structs_lock);
Milton Miller6f248082005-07-07 17:56:17 -0700784
785 /*
786 * find index to use:
787 * see if this vterm id matches one registered for console.
788 */
789 for (i=0; i < MAX_NR_HVC_CONSOLES; i++)
Ryan S. Arnold45d607e2006-03-27 21:25:16 +0200790 if (vtermnos[i] == hp->vtermno &&
791 cons_ops[i] == hp->ops)
Milton Miller6f248082005-07-07 17:56:17 -0700792 break;
793
794 /* no matching slot, just use a counter */
795 if (i >= MAX_NR_HVC_CONSOLES)
796 i = ++last_hvc;
797
798 hp->index = i;
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 list_add_tail(&(hp->next), &hvc_structs);
801 spin_unlock(&hvc_structs_lock);
802
Milton Milleracad9552005-07-07 17:56:24 -0700803 return hp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
Milton Milleracad9552005-07-07 17:56:24 -0700806int __devexit hvc_remove(struct hvc_struct *hp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 unsigned long flags;
809 struct kobject *kobjp;
810 struct tty_struct *tty;
811
812 spin_lock_irqsave(&hp->lock, flags);
813 tty = hp->tty;
814 kobjp = &hp->kobj;
815
816 if (hp->index < MAX_NR_HVC_CONSOLES)
817 vtermnos[hp->index] = -1;
818
819 /* Don't whack hp->irq because tty_hangup() will need to free the irq. */
820
821 spin_unlock_irqrestore(&hp->lock, flags);
822
823 /*
824 * We 'put' the instance that was grabbed when the kobject instance
will schmidtc3ea6922007-04-18 00:54:51 +1000825 * was initialized using kobject_init(). Let the last holder of this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 * kobject cause it to be removed, which will probably be the tty_hangup
827 * below.
828 */
829 kobject_put(kobjp);
830
831 /*
832 * This function call will auto chain call hvc_hangup. The tty should
833 * always be valid at this time unless a simultaneous tty close already
834 * cleaned up the hvc_struct.
835 */
836 if (tty)
837 tty_hangup(tty);
838 return 0;
839}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700841/* Driver initialization: called as soon as someone uses hvc_alloc(). */
842static int hvc_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Michael Neuling55aab8c2006-03-25 17:30:00 +1100844 struct tty_driver *drv;
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700845 int err;
Michael Neuling55aab8c2006-03-25 17:30:00 +1100846
Milton Miller5f6d9c02005-07-07 17:56:21 -0700847 /* We need more than hvc_count adapters due to hotplug additions. */
Michael Neuling55aab8c2006-03-25 17:30:00 +1100848 drv = alloc_tty_driver(HVC_ALLOC_TTY_ADAPTERS);
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700849 if (!drv) {
850 err = -ENOMEM;
851 goto out;
852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Michael Neuling55aab8c2006-03-25 17:30:00 +1100854 drv->owner = THIS_MODULE;
Michael Neuling55aab8c2006-03-25 17:30:00 +1100855 drv->driver_name = "hvc";
856 drv->name = "hvc";
857 drv->major = HVC_MAJOR;
858 drv->minor_start = HVC_MINOR;
859 drv->type = TTY_DRIVER_TYPE_SYSTEM;
860 drv->init_termios = tty_std_termios;
861 drv->flags = TTY_DRIVER_REAL_RAW;
862 tty_set_operations(drv, &hvc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 /* Always start the kthread because there can be hotplug vty adapters
865 * added later. */
866 hvc_task = kthread_run(khvcd, NULL, "khvcd");
867 if (IS_ERR(hvc_task)) {
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700868 printk(KERN_ERR "Couldn't create kthread for console.\n");
869 err = PTR_ERR(hvc_task);
870 goto put_tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
872
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700873 err = tty_register_driver(drv);
874 if (err) {
875 printk(KERN_ERR "Couldn't register hvc console driver\n");
876 goto stop_thread;
877 }
Anton Blanchardef4cbee2005-09-14 14:19:18 -0700878
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700879 /* FIXME: This mb() seems completely random. Remove it. */
Michael Neuling55aab8c2006-03-25 17:30:00 +1100880 mb();
881 hvc_driver = drv;
Milton Milleracad9552005-07-07 17:56:24 -0700882 return 0;
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700883
884put_tty:
885 put_tty_driver(hvc_driver);
886stop_thread:
887 kthread_stop(hvc_task);
888 hvc_task = NULL;
889out:
890 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891}
892
will schmidtc3ea6922007-04-18 00:54:51 +1000893/* This isn't particularly necessary due to this being a console driver
Milton Miller320da0d2005-07-07 17:56:20 -0700894 * but it is nice to be thorough.
895 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896static void __exit hvc_exit(void)
897{
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700898 if (hvc_driver) {
899 kthread_stop(hvc_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Rusty Russell3e6c6f62007-10-16 23:30:13 -0700901 tty_unregister_driver(hvc_driver);
902 /* return tty_struct instances allocated in hvc_init(). */
903 put_tty_driver(hvc_driver);
904 unregister_console(&hvc_con_driver);
905 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907module_exit(hvc_exit);