blob: 46508a737064a49c3c6452ae3a0b4fcc8f7f21e9 [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>
41#include <asm/uaccess.h>
42#include <asm/hvconsole.h>
43#include <asm/vio.h>
44
45#define HVC_MAJOR 229
46#define HVC_MINOR 0
47
48#define TIMEOUT (10)
49
50/*
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/*
57 * The Linux TTY code does not support dynamic addition of tty derived devices
58 * so we need to know how many tty devices we might need when space is allocated
59 * for the tty device. Since this driver supports hotplug of vty adapters we
60 * need to make sure we have enough allocated.
61 */
62#define HVC_ALLOC_TTY_ADAPTERS 8
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define N_OUTBUF 16
65#define N_INBUF 16
66
67#define __ALIGNED__ __attribute__((__aligned__(8)))
68
Milton Miller837dcfa2005-07-07 17:56:16 -070069static struct tty_driver *hvc_driver;
70static struct task_struct *hvc_task;
71
72/* Picks up late kicks after list walk but before schedule() */
73static int hvc_kicked;
74
75#ifdef CONFIG_MAGIC_SYSRQ
76static int sysrq_pressed;
77#endif
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079struct hvc_struct {
80 spinlock_t lock;
81 int index;
82 struct tty_struct *tty;
83 unsigned int count;
84 int do_wakeup;
85 char outbuf[N_OUTBUF] __ALIGNED__;
86 int n_outbuf;
87 uint32_t vtermno;
88 int irq_requested;
89 int irq;
90 struct list_head next;
91 struct kobject kobj; /* ref count & hvc_struct lifetime */
92 struct vio_dev *vdev;
93};
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
107 * a console canidate 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/*
112 * Do not call this function with either the hvc_strucst_lock or the hvc_struct
113 * 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 */
116struct hvc_struct *hvc_get_by_index(int index)
117{
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 */
146static uint32_t vtermnos[MAX_NR_HVC_CONSOLES];
147
148/* Used for accounting purposes */
149static int num_vterms = 0;
150
151/*
152 * Console APIs, NOT TTY. These APIs are available immediately when
153 * hvc_console_setup() finds adapters.
154 */
155
156void hvc_console_print(struct console *co, const char *b, unsigned count)
157{
158 char c[16] __ALIGNED__;
159 unsigned i = 0, n = 0;
160 int r, donecr = 0;
161
162 /* Console access attempt outside of acceptable console range. */
163 if (co->index >= MAX_NR_HVC_CONSOLES)
164 return;
165
166 /* This console adapter was removed so it is not useable. */
167 if (vtermnos[co->index] < 0)
168 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 {
181 r = hvc_put_chars(vtermnos[co->index], c, i);
182 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{
196 *index = c->index;
197 return hvc_driver;
198}
199
200static int __init hvc_console_setup(struct console *co, char *options)
201{
202 return 0;
203}
204
205struct console hvc_con_driver = {
206 .name = "hvc",
207 .write = hvc_console_print,
208 .device = hvc_console_device,
209 .setup = hvc_console_setup,
210 .flags = CON_PRINTBUFFER,
211 .index = -1,
212};
213
214/* Early console initialization. Preceeds driver initialization. */
215static int __init hvc_console_init(void)
216{
217 int i;
218
219 for (i=0; i<MAX_NR_HVC_CONSOLES; i++)
220 vtermnos[i] = -1;
221 num_vterms = hvc_find_vtys();
222 register_console(&hvc_con_driver);
223 return 0;
224}
225console_initcall(hvc_console_init);
226
227/*
Milton Miller6f248082005-07-07 17:56:17 -0700228 * hvc_instantiate() is an early console discovery method which locates
229 * consoles * prior to the vio subsystem discovering them. Hotplugged
230 * vty adapters do NOT get an hvc_instantiate() callback since they
231 * appear after early console init.
Milton Miller837dcfa2005-07-07 17:56:16 -0700232 */
233int hvc_instantiate(uint32_t vtermno, int index)
234{
235 if (index < 0 || index >= MAX_NR_HVC_CONSOLES)
236 return -1;
237
238 if (vtermnos[index] != -1)
239 return -1;
240
241 vtermnos[index] = vtermno;
Milton Miller6f248082005-07-07 17:56:17 -0700242
243 /* reserve all indices upto and including this index */
244 if (last_hvc < index)
245 last_hvc = index;
246
Milton Miller837dcfa2005-07-07 17:56:16 -0700247 return 0;
248}
249
250/* Wake the sleeping khvcd */
251static void hvc_kick(void)
252{
253 hvc_kicked = 1;
254 wake_up_process(hvc_task);
255}
256
Milton Miller8b67f8c2005-07-07 17:56:18 -0700257static int hvc_poll(struct hvc_struct *hp);
258
Milton Miller837dcfa2005-07-07 17:56:16 -0700259/*
260 * NOTE: This API isn't used if the console adapter doesn't support interrupts.
261 * In this case the console is poll driven.
262 */
263static irqreturn_t hvc_handle_interrupt(int irq, void *dev_instance, struct pt_regs *regs)
264{
Milton Miller8b67f8c2005-07-07 17:56:18 -0700265 /* if hvc_poll request a repoll, then kick the hvcd thread */
266 if (hvc_poll(dev_instance))
267 hvc_kick();
Milton Miller837dcfa2005-07-07 17:56:16 -0700268 return IRQ_HANDLED;
269}
270
271static void hvc_unthrottle(struct tty_struct *tty)
272{
273 hvc_kick();
274}
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276/*
277 * The TTY interface won't be used until after the vio layer has exposed the vty
278 * adapter to the kernel.
279 */
280static int hvc_open(struct tty_struct *tty, struct file * filp)
281{
282 struct hvc_struct *hp;
283 unsigned long flags;
284 int irq = NO_IRQ;
285 int rc = 0;
286 struct kobject *kobjp;
287
288 /* Auto increments kobject reference if found. */
289 if (!(hp = hvc_get_by_index(tty->index))) {
290 printk(KERN_WARNING "hvc_console: tty open failed, no vty associated with tty.\n");
291 return -ENODEV;
292 }
293
294 spin_lock_irqsave(&hp->lock, flags);
295 /* Check and then increment for fast path open. */
296 if (hp->count++ > 0) {
297 spin_unlock_irqrestore(&hp->lock, flags);
298 hvc_kick();
299 return 0;
300 } /* else count == 0 */
301
302 tty->driver_data = hp;
303 hp->tty = tty;
304 /* Save for request_irq outside of spin_lock. */
305 irq = hp->irq;
306 if (irq != NO_IRQ)
307 hp->irq_requested = 1;
308
309 kobjp = &hp->kobj;
310
311 spin_unlock_irqrestore(&hp->lock, flags);
312 /* check error, fallback to non-irq */
313 if (irq != NO_IRQ)
314 rc = request_irq(irq, hvc_handle_interrupt, SA_INTERRUPT, "hvc_console", hp);
315
316 /*
317 * If the request_irq() fails and we return an error. The tty layer
318 * will call hvc_close() after a failed open but we don't want to clean
319 * up there so we'll clean up here and clear out the previously set
320 * tty fields and return the kobject reference.
321 */
322 if (rc) {
323 spin_lock_irqsave(&hp->lock, flags);
324 hp->tty = NULL;
325 hp->irq_requested = 0;
326 spin_unlock_irqrestore(&hp->lock, flags);
327 tty->driver_data = NULL;
328 kobject_put(kobjp);
329 printk(KERN_ERR "hvc_open: request_irq failed with rc %d.\n", rc);
330 }
331 /* Force wakeup of the polling thread */
332 hvc_kick();
333
334 return rc;
335}
336
337static void hvc_close(struct tty_struct *tty, struct file * filp)
338{
339 struct hvc_struct *hp;
340 struct kobject *kobjp;
341 int irq = NO_IRQ;
342 unsigned long flags;
343
344 if (tty_hung_up_p(filp))
345 return;
346
347 /*
348 * No driver_data means that this close was issued after a failed
349 * hvc_open by the tty layer's release_dev() function and we can just
350 * exit cleanly because the kobject reference wasn't made.
351 */
352 if (!tty->driver_data)
353 return;
354
355 hp = tty->driver_data;
356 spin_lock_irqsave(&hp->lock, flags);
357
358 kobjp = &hp->kobj;
359 if (--hp->count == 0) {
360 if (hp->irq_requested)
361 irq = hp->irq;
362 hp->irq_requested = 0;
363
364 /* We are done with the tty pointer now. */
365 hp->tty = NULL;
366 spin_unlock_irqrestore(&hp->lock, flags);
367
368 /*
369 * Chain calls chars_in_buffer() and returns immediately if
370 * there is no buffered data otherwise sleeps on a wait queue
371 * waking periodically to check chars_in_buffer().
372 */
373 tty_wait_until_sent(tty, HVC_CLOSE_WAIT);
374
375 if (irq != NO_IRQ)
376 free_irq(irq, hp);
377
378 } else {
379 if (hp->count < 0)
380 printk(KERN_ERR "hvc_close %X: oops, count is %d\n",
381 hp->vtermno, hp->count);
382 spin_unlock_irqrestore(&hp->lock, flags);
383 }
384
385 kobject_put(kobjp);
386}
387
388static void hvc_hangup(struct tty_struct *tty)
389{
390 struct hvc_struct *hp = tty->driver_data;
391 unsigned long flags;
392 int irq = NO_IRQ;
393 int temp_open_count;
394 struct kobject *kobjp;
395
396 if (!hp)
397 return;
398
399 spin_lock_irqsave(&hp->lock, flags);
400
401 /*
402 * The N_TTY line discipline has problems such that in a close vs
403 * open->hangup case this can be called after the final close so prevent
404 * that from happening for now.
405 */
406 if (hp->count <= 0) {
407 spin_unlock_irqrestore(&hp->lock, flags);
408 return;
409 }
410
411 kobjp = &hp->kobj;
412 temp_open_count = hp->count;
413 hp->count = 0;
414 hp->n_outbuf = 0;
415 hp->tty = NULL;
416 if (hp->irq_requested)
417 /* Saved for use outside of spin_lock. */
418 irq = hp->irq;
419 hp->irq_requested = 0;
420 spin_unlock_irqrestore(&hp->lock, flags);
421 if (irq != NO_IRQ)
422 free_irq(irq, hp);
423 while(temp_open_count) {
424 --temp_open_count;
425 kobject_put(kobjp);
426 }
427}
428
429/*
430 * Push buffered characters whether they were just recently buffered or waiting
431 * on a blocked hypervisor. Call this function with hp->lock held.
432 */
433static void hvc_push(struct hvc_struct *hp)
434{
435 int n;
436
437 n = hvc_put_chars(hp->vtermno, hp->outbuf, hp->n_outbuf);
438 if (n <= 0) {
439 if (n == 0)
440 return;
441 /* throw away output on error; this happens when
442 there is no session connected to the vterm. */
443 hp->n_outbuf = 0;
444 } else
445 hp->n_outbuf -= n;
446 if (hp->n_outbuf > 0)
447 memmove(hp->outbuf, hp->outbuf + n, hp->n_outbuf);
448 else
449 hp->do_wakeup = 1;
450}
451
452static inline int __hvc_write_kernel(struct hvc_struct *hp,
453 const unsigned char *buf, int count)
454{
455 unsigned long flags;
456 int rsize, written = 0;
457
458 spin_lock_irqsave(&hp->lock, flags);
459
460 /* Push pending writes */
461 if (hp->n_outbuf > 0)
462 hvc_push(hp);
463
464 while (count > 0 && (rsize = N_OUTBUF - hp->n_outbuf) > 0) {
465 if (rsize > count)
466 rsize = count;
467 memcpy(hp->outbuf + hp->n_outbuf, buf, rsize);
468 count -= rsize;
469 buf += rsize;
470 hp->n_outbuf += rsize;
471 written += rsize;
472 hvc_push(hp);
473 }
474 spin_unlock_irqrestore(&hp->lock, flags);
475
476 return written;
477}
478static int hvc_write(struct tty_struct *tty, const unsigned char *buf, int count)
479{
480 struct hvc_struct *hp = tty->driver_data;
481 int written;
482
483 /* This write was probably executed during a tty close. */
484 if (!hp)
485 return -EPIPE;
486
487 if (hp->count <= 0)
488 return -EIO;
489
490 written = __hvc_write_kernel(hp, buf, count);
491
492 /*
493 * Racy, but harmless, kick thread if there is still pending data.
494 * There really is nothing wrong with kicking the thread, even if there
495 * is no buffered data.
496 */
497 if (hp->n_outbuf)
498 hvc_kick();
499
500 return written;
501}
502
503/*
504 * This is actually a contract between the driver and the tty layer outlining
505 * how much write room the driver can guarentee will be sent OR BUFFERED. This
506 * driver MUST honor the return value.
507 */
508static int hvc_write_room(struct tty_struct *tty)
509{
510 struct hvc_struct *hp = tty->driver_data;
511
512 if (!hp)
513 return -1;
514
515 return N_OUTBUF - hp->n_outbuf;
516}
517
518static int hvc_chars_in_buffer(struct tty_struct *tty)
519{
520 struct hvc_struct *hp = tty->driver_data;
521
522 if (!hp)
523 return -1;
524 return hp->n_outbuf;
525}
526
527#define HVC_POLL_READ 0x00000001
528#define HVC_POLL_WRITE 0x00000002
529#define HVC_POLL_QUICK 0x00000004
530
531static int hvc_poll(struct hvc_struct *hp)
532{
533 struct tty_struct *tty;
534 int i, n, poll_mask = 0;
535 char buf[N_INBUF] __ALIGNED__;
536 unsigned long flags;
537 int read_total = 0;
538
539 spin_lock_irqsave(&hp->lock, flags);
540
541 /* Push pending writes */
542 if (hp->n_outbuf > 0)
543 hvc_push(hp);
544 /* Reschedule us if still some write pending */
545 if (hp->n_outbuf > 0)
546 poll_mask |= HVC_POLL_WRITE;
547
548 /* No tty attached, just skip */
549 tty = hp->tty;
550 if (tty == NULL)
551 goto bail;
552
553 /* Now check if we can get data (are we throttled ?) */
554 if (test_bit(TTY_THROTTLED, &tty->flags))
555 goto throttled;
556
557 /* If we aren't interrupt driven and aren't throttled, we always
558 * request a reschedule
559 */
560 if (hp->irq == NO_IRQ)
561 poll_mask |= HVC_POLL_READ;
562
563 /* Read data if any */
564 for (;;) {
565 int count = N_INBUF;
566 if (count > (TTY_FLIPBUF_SIZE - tty->flip.count))
567 count = TTY_FLIPBUF_SIZE - tty->flip.count;
568
569 /* If flip is full, just reschedule a later read */
570 if (count == 0) {
571 poll_mask |= HVC_POLL_READ;
572 break;
573 }
574
575 n = hvc_get_chars(hp->vtermno, buf, count);
576 if (n <= 0) {
577 /* Hangup the tty when disconnected from host */
578 if (n == -EPIPE) {
579 spin_unlock_irqrestore(&hp->lock, flags);
580 tty_hangup(tty);
581 spin_lock_irqsave(&hp->lock, flags);
582 }
583 break;
584 }
585 for (i = 0; i < n; ++i) {
586#ifdef CONFIG_MAGIC_SYSRQ
587 /* Handle the SysRq Hack */
588 if (buf[i] == '\x0f') { /* ^O -- should support a sequence */
589 sysrq_pressed = 1;
590 continue;
591 } else if (sysrq_pressed) {
592 handle_sysrq(buf[i], NULL, tty);
593 sysrq_pressed = 0;
594 continue;
595 }
596#endif /* CONFIG_MAGIC_SYSRQ */
597 tty_insert_flip_char(tty, buf[i], 0);
598 }
599
600 if (tty->flip.count)
601 tty_schedule_flip(tty);
602
603 /*
604 * Account for the total amount read in one loop, and if above
Milton Miller8b67f8c2005-07-07 17:56:18 -0700605 * 64 bytes, we do a quick schedule loop to let the tty grok
606 * the data and eventually throttle us.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 */
608 read_total += n;
609 if (read_total >= 64) {
610 poll_mask |= HVC_POLL_QUICK;
611 break;
612 }
613 }
614 throttled:
615 /* Wakeup write queue if necessary */
616 if (hp->do_wakeup) {
617 hp->do_wakeup = 0;
618 tty_wakeup(tty);
619 }
620 bail:
621 spin_unlock_irqrestore(&hp->lock, flags);
622
623 return poll_mask;
624}
625
626#if defined(CONFIG_XMON) && defined(CONFIG_SMP)
627extern cpumask_t cpus_in_xmon;
628#else
629static const cpumask_t cpus_in_xmon = CPU_MASK_NONE;
630#endif
631
632/*
633 * This kthread is either polling or interrupt driven. This is determined by
634 * calling hvc_poll() who determines whether a console adapter support
635 * interrupts.
636 */
637int khvcd(void *unused)
638{
639 int poll_mask;
640 struct hvc_struct *hp;
641
642 __set_current_state(TASK_RUNNING);
643 do {
644 poll_mask = 0;
645 hvc_kicked = 0;
646 wmb();
647 if (cpus_empty(cpus_in_xmon)) {
648 spin_lock(&hvc_structs_lock);
649 list_for_each_entry(hp, &hvc_structs, next) {
650 /*hp = list_entry(node, struct hvc_struct, * next); */
651 poll_mask |= hvc_poll(hp);
652 }
653 spin_unlock(&hvc_structs_lock);
654 } else
655 poll_mask |= HVC_POLL_READ;
656 if (hvc_kicked)
657 continue;
658 if (poll_mask & HVC_POLL_QUICK) {
659 yield();
660 continue;
661 }
662 set_current_state(TASK_INTERRUPTIBLE);
663 if (!hvc_kicked) {
664 if (poll_mask == 0)
665 schedule();
666 else
667 msleep_interruptible(TIMEOUT);
668 }
669 __set_current_state(TASK_RUNNING);
670 } while (!kthread_should_stop());
671
672 return 0;
673}
674
675static struct tty_operations hvc_ops = {
676 .open = hvc_open,
677 .close = hvc_close,
678 .write = hvc_write,
679 .hangup = hvc_hangup,
680 .unthrottle = hvc_unthrottle,
681 .write_room = hvc_write_room,
682 .chars_in_buffer = hvc_chars_in_buffer,
683};
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685/* callback when the kboject ref count reaches zero. */
686static void destroy_hvc_struct(struct kobject *kobj)
687{
688 struct hvc_struct *hp = container_of(kobj, struct hvc_struct, kobj);
689 unsigned long flags;
690
691 spin_lock(&hvc_structs_lock);
692
693 spin_lock_irqsave(&hp->lock, flags);
694 list_del(&(hp->next));
695 spin_unlock_irqrestore(&hp->lock, flags);
696
697 spin_unlock(&hvc_structs_lock);
698
699 kfree(hp);
700}
701
702static struct kobj_type hvc_kobj_type = {
703 .release = destroy_hvc_struct,
704};
705
706static int __devinit hvc_probe(
707 struct vio_dev *dev,
708 const struct vio_device_id *id)
709{
710 struct hvc_struct *hp;
Milton Miller6f248082005-07-07 17:56:17 -0700711 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 /* probed with invalid parameters. */
714 if (!dev || !id)
715 return -EPERM;
716
717 hp = kmalloc(sizeof(*hp), GFP_KERNEL);
718 if (!hp)
719 return -ENOMEM;
720
721 memset(hp, 0x00, sizeof(*hp));
722 hp->vtermno = dev->unit_address;
723 hp->vdev = dev;
724 hp->vdev->dev.driver_data = hp;
725 hp->irq = dev->irq;
726
727 kobject_init(&hp->kobj);
728 hp->kobj.ktype = &hvc_kobj_type;
729
730 spin_lock_init(&hp->lock);
731 spin_lock(&hvc_structs_lock);
Milton Miller6f248082005-07-07 17:56:17 -0700732
733 /*
734 * find index to use:
735 * see if this vterm id matches one registered for console.
736 */
737 for (i=0; i < MAX_NR_HVC_CONSOLES; i++)
738 if (vtermnos[i] == hp->vtermno)
739 break;
740
741 /* no matching slot, just use a counter */
742 if (i >= MAX_NR_HVC_CONSOLES)
743 i = ++last_hvc;
744
745 hp->index = i;
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 list_add_tail(&(hp->next), &hvc_structs);
748 spin_unlock(&hvc_structs_lock);
749
750 return 0;
751}
752
753static int __devexit hvc_remove(struct vio_dev *dev)
754{
755 struct hvc_struct *hp = dev->dev.driver_data;
756 unsigned long flags;
757 struct kobject *kobjp;
758 struct tty_struct *tty;
759
760 spin_lock_irqsave(&hp->lock, flags);
761 tty = hp->tty;
762 kobjp = &hp->kobj;
763
764 if (hp->index < MAX_NR_HVC_CONSOLES)
765 vtermnos[hp->index] = -1;
766
767 /* Don't whack hp->irq because tty_hangup() will need to free the irq. */
768
769 spin_unlock_irqrestore(&hp->lock, flags);
770
771 /*
772 * We 'put' the instance that was grabbed when the kobject instance
773 * was intialized using kobject_init(). Let the last holder of this
774 * kobject cause it to be removed, which will probably be the tty_hangup
775 * below.
776 */
777 kobject_put(kobjp);
778
779 /*
780 * This function call will auto chain call hvc_hangup. The tty should
781 * always be valid at this time unless a simultaneous tty close already
782 * cleaned up the hvc_struct.
783 */
784 if (tty)
785 tty_hangup(tty);
786 return 0;
787}
788
Milton Miller837dcfa2005-07-07 17:56:16 -0700789char hvc_driver_name[] = "hvc_console";
790
791static struct vio_device_id hvc_driver_table[] __devinitdata= {
792 {"serial", "hvterm1"},
793 { NULL, }
794};
795MODULE_DEVICE_TABLE(vio, hvc_driver_table);
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797static struct vio_driver hvc_vio_driver = {
798 .name = hvc_driver_name,
799 .id_table = hvc_driver_table,
800 .probe = hvc_probe,
801 .remove = hvc_remove,
802};
803
804/* Driver initialization. Follow console initialization. This is where the TTY
805 * interfaces start to become available. */
806int __init hvc_init(void)
807{
808 int rc;
809
810 /* We need more than num_vterms adapters due to hotplug additions. */
811 hvc_driver = alloc_tty_driver(HVC_ALLOC_TTY_ADAPTERS);
812 /* hvc_driver = alloc_tty_driver(num_vterms); */
813 if (!hvc_driver)
814 return -ENOMEM;
815
816 hvc_driver->owner = THIS_MODULE;
817 hvc_driver->devfs_name = "hvc/";
818 hvc_driver->driver_name = "hvc";
819 hvc_driver->name = "hvc";
820 hvc_driver->major = HVC_MAJOR;
821 hvc_driver->minor_start = HVC_MINOR;
822 hvc_driver->type = TTY_DRIVER_TYPE_SYSTEM;
823 hvc_driver->init_termios = tty_std_termios;
824 hvc_driver->flags = TTY_DRIVER_REAL_RAW;
825 tty_set_operations(hvc_driver, &hvc_ops);
826
827 if (tty_register_driver(hvc_driver))
828 panic("Couldn't register hvc console driver\n");
829
830 /* Always start the kthread because there can be hotplug vty adapters
831 * added later. */
832 hvc_task = kthread_run(khvcd, NULL, "khvcd");
833 if (IS_ERR(hvc_task)) {
834 panic("Couldn't create kthread for console.\n");
835 put_tty_driver(hvc_driver);
836 return -EIO;
837 }
838
839 /* Register as a vio device to receive callbacks */
840 rc = vio_register_driver(&hvc_vio_driver);
841
842 return rc;
843}
Milton Miller837dcfa2005-07-07 17:56:16 -0700844module_init(hvc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846/* This isn't particularily necessary due to this being a console driver but it
847 * is nice to be thorough */
848static void __exit hvc_exit(void)
849{
850 kthread_stop(hvc_task);
851
852 vio_unregister_driver(&hvc_vio_driver);
853 tty_unregister_driver(hvc_driver);
854 /* return tty_struct instances allocated in hvc_init(). */
855 put_tty_driver(hvc_driver);
856}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857module_exit(hvc_exit);