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
7 * Additional Author(s):
8 * Ryan S. Arnold <rsa@us.ibm.com>
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.
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.
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
25 #include <linux/config.h>
26 #include <linux/console.h>
27 #include <linux/cpumask.h>
28 #include <linux/init.h>
29 #include <linux/kbd_kern.h>
30 #include <linux/kernel.h>
31 #include <linux/kobject.h>
32 #include <linux/kthread.h>
33 #include <linux/list.h>
34 #include <linux/module.h>
35 #include <linux/major.h>
36 #include <linux/sysrq.h>
37 #include <linux/tty.h>
38 #include <linux/tty_flip.h>
39 #include <linux/sched.h>
40 #include <linux/spinlock.h>
41 #include <linux/delay.h>
43 #include <asm/uaccess.h>
45 #include "hvc_console.h"
53 * Wait this long per iteration while trying to push buffered data to the
54 * hypervisor before allowing the tty to complete a close operation.
56 #define HVC_CLOSE_WAIT (HZ/100) /* 1/10 of a second */
59 * These sizes are most efficient for vio, because they are the
60 * native transfer size. We could make them selectable in the
61 * future to better deal with backends that want other buffer sizes.
66 #define __ALIGNED__ __attribute__((__aligned__(sizeof(long))))
68 static struct tty_driver
*hvc_driver
;
69 static struct task_struct
*hvc_task
;
71 /* Picks up late kicks after list walk but before schedule() */
72 static int hvc_kicked
;
74 #ifdef CONFIG_MAGIC_SYSRQ
75 static int sysrq_pressed
;
81 struct tty_struct
*tty
;
84 char outbuf
[N_OUTBUF
] __ALIGNED__
;
90 struct list_head next
;
91 struct kobject kobj
; /* ref count & hvc_struct lifetime */
94 /* dynamic list of hvc_struct instances */
95 static struct list_head hvc_structs
= LIST_HEAD_INIT(hvc_structs
);
98 * Protect the list of hvc_struct instances from inserts and removals during
101 static DEFINE_SPINLOCK(hvc_structs_lock
);
104 * This value is used to assign a tty->index value to a hvc_struct based
105 * upon order of exposure via hvc_probe(), when we can not match it to
106 * a console canidate registered with hvc_instantiate().
108 static int last_hvc
= -1;
111 * Do not call this function with either the hvc_strucst_lock or the hvc_struct
112 * lock held. If successful, this function increments the kobject reference
113 * count against the target hvc_struct so it should be released when finished.
115 struct hvc_struct
*hvc_get_by_index(int index
)
117 struct hvc_struct
*hp
;
120 spin_lock(&hvc_structs_lock
);
122 list_for_each_entry(hp
, &hvc_structs
, next
) {
123 spin_lock_irqsave(&hp
->lock
, flags
);
124 if (hp
->index
== index
) {
125 kobject_get(&hp
->kobj
);
126 spin_unlock_irqrestore(&hp
->lock
, flags
);
127 spin_unlock(&hvc_structs_lock
);
130 spin_unlock_irqrestore(&hp
->lock
, flags
);
134 spin_unlock(&hvc_structs_lock
);
140 * Initial console vtermnos for console API usage prior to full console
141 * initialization. Any vty adapter outside this range will not have usable
142 * console interfaces but can still be used as a tty device. This has to be
143 * static because kmalloc will not work during early console init.
145 static struct hv_ops
*cons_ops
[MAX_NR_HVC_CONSOLES
];
146 static uint32_t vtermnos
[MAX_NR_HVC_CONSOLES
] =
147 {[0 ... MAX_NR_HVC_CONSOLES
- 1] = -1};
150 * Console APIs, NOT TTY. These APIs are available immediately when
151 * hvc_console_setup() finds adapters.
154 void hvc_console_print(struct console
*co
, const char *b
, unsigned count
)
156 char c
[N_OUTBUF
] __ALIGNED__
;
157 unsigned i
= 0, n
= 0;
158 int r
, donecr
= 0, index
= co
->index
;
160 /* Console access attempt outside of acceptable console range. */
161 if (index
>= MAX_NR_HVC_CONSOLES
)
164 /* This console adapter was removed so it is not useable. */
165 if (vtermnos
[index
] < 0)
168 while (count
> 0 || i
> 0) {
169 if (count
> 0 && i
< sizeof(c
)) {
170 if (b
[n
] == '\n' && !donecr
) {
179 r
= cons_ops
[index
]->put_chars(vtermnos
[index
], c
, i
);
181 /* throw away chars on error */
192 static struct tty_driver
*hvc_console_device(struct console
*c
, int *index
)
194 if (vtermnos
[c
->index
] == -1)
201 static int __init
hvc_console_setup(struct console
*co
, char *options
)
203 if (co
->index
< 0 || co
->index
>= MAX_NR_HVC_CONSOLES
)
206 if (vtermnos
[co
->index
] == -1)
212 struct console hvc_con_driver
= {
214 .write
= hvc_console_print
,
215 .device
= hvc_console_device
,
216 .setup
= hvc_console_setup
,
217 .flags
= CON_PRINTBUFFER
,
222 * Early console initialization. Preceeds driver initialization.
224 * (1) we are first, and the user specified another driver
225 * -- index will remain -1
226 * (2) we are first and the user specified no driver
227 * -- index will be set to 0, then we will fail setup.
228 * (3) we are first and the user specified our driver
229 * -- index will be set to user specified driver, and we will fail
230 * (4) we are after driver, and this initcall will register us
231 * -- if the user didn't specify a driver then the console will match
233 * Note that for cases 2 and 3, we will match later when the io driver
234 * calls hvc_instantiate() and call register again.
236 static int __init
hvc_console_init(void)
238 register_console(&hvc_con_driver
);
241 console_initcall(hvc_console_init
);
244 * hvc_instantiate() is an early console discovery method which locates
245 * consoles * prior to the vio subsystem discovering them. Hotplugged
246 * vty adapters do NOT get an hvc_instantiate() callback since they
247 * appear after early console init.
249 int hvc_instantiate(uint32_t vtermno
, int index
, struct hv_ops
*ops
)
251 struct hvc_struct
*hp
;
253 if (index
< 0 || index
>= MAX_NR_HVC_CONSOLES
)
256 if (vtermnos
[index
] != -1)
259 /* make sure no no tty has been registerd in this index */
260 hp
= hvc_get_by_index(index
);
262 kobject_put(&hp
->kobj
);
266 vtermnos
[index
] = vtermno
;
267 cons_ops
[index
] = ops
;
269 /* reserve all indices upto and including this index */
270 if (last_hvc
< index
)
273 /* if this index is what the user requested, then register
274 * now (setup won't fail at this point). It's ok to just
275 * call register again if previously .setup failed.
277 if (index
== hvc_con_driver
.index
)
278 register_console(&hvc_con_driver
);
282 EXPORT_SYMBOL(hvc_instantiate
);
284 /* Wake the sleeping khvcd */
285 static void hvc_kick(void)
288 wake_up_process(hvc_task
);
291 static int hvc_poll(struct hvc_struct
*hp
);
294 * NOTE: This API isn't used if the console adapter doesn't support interrupts.
295 * In this case the console is poll driven.
297 static irqreturn_t
hvc_handle_interrupt(int irq
, void *dev_instance
, struct pt_regs
*regs
)
299 /* if hvc_poll request a repoll, then kick the hvcd thread */
300 if (hvc_poll(dev_instance
))
305 static void hvc_unthrottle(struct tty_struct
*tty
)
311 * The TTY interface won't be used until after the vio layer has exposed the vty
312 * adapter to the kernel.
314 static int hvc_open(struct tty_struct
*tty
, struct file
* filp
)
316 struct hvc_struct
*hp
;
320 struct kobject
*kobjp
;
322 /* Auto increments kobject reference if found. */
323 if (!(hp
= hvc_get_by_index(tty
->index
))) {
324 printk(KERN_WARNING
"hvc_console: tty open failed, no vty associated with tty.\n");
328 spin_lock_irqsave(&hp
->lock
, flags
);
329 /* Check and then increment for fast path open. */
330 if (hp
->count
++ > 0) {
331 spin_unlock_irqrestore(&hp
->lock
, flags
);
334 } /* else count == 0 */
336 tty
->driver_data
= hp
;
337 tty
->low_latency
= 1; /* Makes flushes to ldisc synchronous. */
340 /* Save for request_irq outside of spin_lock. */
343 hp
->irq_requested
= 1;
347 spin_unlock_irqrestore(&hp
->lock
, flags
);
348 /* check error, fallback to non-irq */
350 rc
= request_irq(irq
, hvc_handle_interrupt
, SA_INTERRUPT
, "hvc_console", hp
);
353 * If the request_irq() fails and we return an error. The tty layer
354 * will call hvc_close() after a failed open but we don't want to clean
355 * up there so we'll clean up here and clear out the previously set
356 * tty fields and return the kobject reference.
359 spin_lock_irqsave(&hp
->lock
, flags
);
361 hp
->irq_requested
= 0;
362 spin_unlock_irqrestore(&hp
->lock
, flags
);
363 tty
->driver_data
= NULL
;
365 printk(KERN_ERR
"hvc_open: request_irq failed with rc %d.\n", rc
);
367 /* Force wakeup of the polling thread */
373 static void hvc_close(struct tty_struct
*tty
, struct file
* filp
)
375 struct hvc_struct
*hp
;
376 struct kobject
*kobjp
;
380 if (tty_hung_up_p(filp
))
384 * No driver_data means that this close was issued after a failed
385 * hvc_open by the tty layer's release_dev() function and we can just
386 * exit cleanly because the kobject reference wasn't made.
388 if (!tty
->driver_data
)
391 hp
= tty
->driver_data
;
392 spin_lock_irqsave(&hp
->lock
, flags
);
395 if (--hp
->count
== 0) {
396 if (hp
->irq_requested
)
398 hp
->irq_requested
= 0;
400 /* We are done with the tty pointer now. */
402 spin_unlock_irqrestore(&hp
->lock
, flags
);
405 * Chain calls chars_in_buffer() and returns immediately if
406 * there is no buffered data otherwise sleeps on a wait queue
407 * waking periodically to check chars_in_buffer().
409 tty_wait_until_sent(tty
, HVC_CLOSE_WAIT
);
416 printk(KERN_ERR
"hvc_close %X: oops, count is %d\n",
417 hp
->vtermno
, hp
->count
);
418 spin_unlock_irqrestore(&hp
->lock
, flags
);
424 static void hvc_hangup(struct tty_struct
*tty
)
426 struct hvc_struct
*hp
= tty
->driver_data
;
430 struct kobject
*kobjp
;
435 spin_lock_irqsave(&hp
->lock
, flags
);
438 * The N_TTY line discipline has problems such that in a close vs
439 * open->hangup case this can be called after the final close so prevent
440 * that from happening for now.
442 if (hp
->count
<= 0) {
443 spin_unlock_irqrestore(&hp
->lock
, flags
);
448 temp_open_count
= hp
->count
;
452 if (hp
->irq_requested
)
453 /* Saved for use outside of spin_lock. */
455 hp
->irq_requested
= 0;
456 spin_unlock_irqrestore(&hp
->lock
, flags
);
459 while(temp_open_count
) {
466 * Push buffered characters whether they were just recently buffered or waiting
467 * on a blocked hypervisor. Call this function with hp->lock held.
469 static void hvc_push(struct hvc_struct
*hp
)
473 n
= hp
->ops
->put_chars(hp
->vtermno
, hp
->outbuf
, hp
->n_outbuf
);
479 /* throw away output on error; this happens when
480 there is no session connected to the vterm. */
484 if (hp
->n_outbuf
> 0)
485 memmove(hp
->outbuf
, hp
->outbuf
+ n
, hp
->n_outbuf
);
490 static int hvc_write(struct tty_struct
*tty
, const unsigned char *buf
, int count
)
492 struct hvc_struct
*hp
= tty
->driver_data
;
494 int rsize
, written
= 0;
496 /* This write was probably executed during a tty close. */
503 spin_lock_irqsave(&hp
->lock
, flags
);
505 /* Push pending writes */
506 if (hp
->n_outbuf
> 0)
509 while (count
> 0 && (rsize
= N_OUTBUF
- hp
->n_outbuf
) > 0) {
512 memcpy(hp
->outbuf
+ hp
->n_outbuf
, buf
, rsize
);
515 hp
->n_outbuf
+= rsize
;
519 spin_unlock_irqrestore(&hp
->lock
, flags
);
522 * Racy, but harmless, kick thread if there is still pending data.
531 * This is actually a contract between the driver and the tty layer outlining
532 * how much write room the driver can guarentee will be sent OR BUFFERED. This
533 * driver MUST honor the return value.
535 static int hvc_write_room(struct tty_struct
*tty
)
537 struct hvc_struct
*hp
= tty
->driver_data
;
542 return N_OUTBUF
- hp
->n_outbuf
;
545 static int hvc_chars_in_buffer(struct tty_struct
*tty
)
547 struct hvc_struct
*hp
= tty
->driver_data
;
554 #define HVC_POLL_READ 0x00000001
555 #define HVC_POLL_WRITE 0x00000002
556 #define HVC_POLL_QUICK 0x00000004
558 static int hvc_poll(struct hvc_struct
*hp
)
560 struct tty_struct
*tty
;
561 int i
, n
, poll_mask
= 0;
562 char buf
[N_INBUF
] __ALIGNED__
;
566 spin_lock_irqsave(&hp
->lock
, flags
);
568 /* Push pending writes */
569 if (hp
->n_outbuf
> 0)
571 /* Reschedule us if still some write pending */
572 if (hp
->n_outbuf
> 0)
573 poll_mask
|= HVC_POLL_WRITE
;
575 /* No tty attached, just skip */
580 /* Now check if we can get data (are we throttled ?) */
581 if (test_bit(TTY_THROTTLED
, &tty
->flags
))
584 /* If we aren't interrupt driven and aren't throttled, we always
585 * request a reschedule
587 if (hp
->irq
== NO_IRQ
)
588 poll_mask
|= HVC_POLL_READ
;
590 /* Read data if any */
592 int count
= tty_buffer_request_room(tty
, N_INBUF
);
594 /* If flip is full, just reschedule a later read */
596 poll_mask
|= HVC_POLL_READ
;
600 n
= hp
->ops
->get_chars(hp
->vtermno
, buf
, count
);
602 /* Hangup the tty when disconnected from host */
604 spin_unlock_irqrestore(&hp
->lock
, flags
);
606 spin_lock_irqsave(&hp
->lock
, flags
);
607 } else if ( n
== -EAGAIN
) {
609 * Some back-ends can only ensure a certain min
610 * num of bytes read, which may be > 'count'.
611 * Let the tty clear the flip buff to make room.
613 poll_mask
|= HVC_POLL_READ
;
617 for (i
= 0; i
< n
; ++i
) {
618 #ifdef CONFIG_MAGIC_SYSRQ
619 if (hp
->index
== hvc_con_driver
.index
) {
620 /* Handle the SysRq Hack */
621 /* XXX should support a sequence */
622 if (buf
[i
] == '\x0f') { /* ^O */
625 } else if (sysrq_pressed
) {
626 handle_sysrq(buf
[i
], NULL
, tty
);
631 #endif /* CONFIG_MAGIC_SYSRQ */
632 tty_insert_flip_char(tty
, buf
[i
], 0);
638 /* Wakeup write queue if necessary */
644 spin_unlock_irqrestore(&hp
->lock
, flags
);
647 tty_flip_buffer_push(tty
);
652 #if defined(CONFIG_XMON) && defined(CONFIG_SMP)
653 extern cpumask_t cpus_in_xmon
;
655 static const cpumask_t cpus_in_xmon
= CPU_MASK_NONE
;
659 * This kthread is either polling or interrupt driven. This is determined by
660 * calling hvc_poll() who determines whether a console adapter support
663 int khvcd(void *unused
)
666 struct hvc_struct
*hp
;
668 __set_current_state(TASK_RUNNING
);
673 if (cpus_empty(cpus_in_xmon
)) {
674 spin_lock(&hvc_structs_lock
);
675 list_for_each_entry(hp
, &hvc_structs
, next
) {
676 poll_mask
|= hvc_poll(hp
);
678 spin_unlock(&hvc_structs_lock
);
680 poll_mask
|= HVC_POLL_READ
;
683 if (poll_mask
& HVC_POLL_QUICK
) {
687 set_current_state(TASK_INTERRUPTIBLE
);
692 msleep_interruptible(TIMEOUT
);
694 __set_current_state(TASK_RUNNING
);
695 } while (!kthread_should_stop());
700 static struct tty_operations hvc_ops
= {
704 .hangup
= hvc_hangup
,
705 .unthrottle
= hvc_unthrottle
,
706 .write_room
= hvc_write_room
,
707 .chars_in_buffer
= hvc_chars_in_buffer
,
710 /* callback when the kboject ref count reaches zero. */
711 static void destroy_hvc_struct(struct kobject
*kobj
)
713 struct hvc_struct
*hp
= container_of(kobj
, struct hvc_struct
, kobj
);
716 spin_lock(&hvc_structs_lock
);
718 spin_lock_irqsave(&hp
->lock
, flags
);
719 list_del(&(hp
->next
));
720 spin_unlock_irqrestore(&hp
->lock
, flags
);
722 spin_unlock(&hvc_structs_lock
);
727 static struct kobj_type hvc_kobj_type
= {
728 .release
= destroy_hvc_struct
,
731 struct hvc_struct __devinit
*hvc_alloc(uint32_t vtermno
, int irq
,
734 struct hvc_struct
*hp
;
737 hp
= kmalloc(sizeof(*hp
), GFP_KERNEL
);
739 return ERR_PTR(-ENOMEM
);
741 memset(hp
, 0x00, sizeof(*hp
));
743 hp
->vtermno
= vtermno
;
747 kobject_init(&hp
->kobj
);
748 hp
->kobj
.ktype
= &hvc_kobj_type
;
750 spin_lock_init(&hp
->lock
);
751 spin_lock(&hvc_structs_lock
);
755 * see if this vterm id matches one registered for console.
757 for (i
=0; i
< MAX_NR_HVC_CONSOLES
; i
++)
758 if (vtermnos
[i
] == hp
->vtermno
&&
759 cons_ops
[i
] == hp
->ops
)
762 /* no matching slot, just use a counter */
763 if (i
>= MAX_NR_HVC_CONSOLES
)
768 list_add_tail(&(hp
->next
), &hvc_structs
);
769 spin_unlock(&hvc_structs_lock
);
773 EXPORT_SYMBOL(hvc_alloc
);
775 int __devexit
hvc_remove(struct hvc_struct
*hp
)
778 struct kobject
*kobjp
;
779 struct tty_struct
*tty
;
781 spin_lock_irqsave(&hp
->lock
, flags
);
785 if (hp
->index
< MAX_NR_HVC_CONSOLES
)
786 vtermnos
[hp
->index
] = -1;
788 /* Don't whack hp->irq because tty_hangup() will need to free the irq. */
790 spin_unlock_irqrestore(&hp
->lock
, flags
);
793 * We 'put' the instance that was grabbed when the kobject instance
794 * was intialized using kobject_init(). Let the last holder of this
795 * kobject cause it to be removed, which will probably be the tty_hangup
801 * This function call will auto chain call hvc_hangup. The tty should
802 * always be valid at this time unless a simultaneous tty close already
803 * cleaned up the hvc_struct.
809 EXPORT_SYMBOL(hvc_remove
);
811 /* Driver initialization. Follow console initialization. This is where the TTY
812 * interfaces start to become available. */
813 int __init
hvc_init(void)
815 struct tty_driver
*drv
;
817 /* We need more than hvc_count adapters due to hotplug additions. */
818 drv
= alloc_tty_driver(HVC_ALLOC_TTY_ADAPTERS
);
822 drv
->owner
= THIS_MODULE
;
823 drv
->devfs_name
= "hvc/";
824 drv
->driver_name
= "hvc";
826 drv
->major
= HVC_MAJOR
;
827 drv
->minor_start
= HVC_MINOR
;
828 drv
->type
= TTY_DRIVER_TYPE_SYSTEM
;
829 drv
->init_termios
= tty_std_termios
;
830 drv
->flags
= TTY_DRIVER_REAL_RAW
;
831 tty_set_operations(drv
, &hvc_ops
);
833 /* Always start the kthread because there can be hotplug vty adapters
835 hvc_task
= kthread_run(khvcd
, NULL
, "khvcd");
836 if (IS_ERR(hvc_task
)) {
837 panic("Couldn't create kthread for console.\n");
842 if (tty_register_driver(drv
))
843 panic("Couldn't register hvc console driver\n");
849 module_init(hvc_init
);
851 /* This isn't particularily necessary due to this being a console driver
852 * but it is nice to be thorough.
854 static void __exit
hvc_exit(void)
856 kthread_stop(hvc_task
);
858 tty_unregister_driver(hvc_driver
);
859 /* return tty_struct instances allocated in hvc_init(). */
860 put_tty_driver(hvc_driver
);
861 unregister_console(&hvc_con_driver
);
863 module_exit(hvc_exit
);