3 * drivers/char/viocons.c
5 * iSeries Virtual Terminal
7 * Authors: Dave Boutcher <boutcher@us.ibm.com>
8 * Ryan Arnold <ryanarn@us.ibm.com>
9 * Colin Devilbiss <devilbis@us.ibm.com>
12 * (C) Copyright 2000, 2001, 2002, 2003, 2004 IBM Corporation
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of the
17 * License, or (at your option) anyu later version.
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #include <linux/kernel.h>
29 #include <linux/proc_fs.h>
30 #include <linux/errno.h>
31 #include <linux/vmalloc.h>
33 #include <linux/console.h>
34 #include <linux/module.h>
35 #include <asm/uaccess.h>
36 #include <linux/init.h>
37 #include <linux/wait.h>
38 #include <linux/spinlock.h>
39 #include <asm/ioctls.h>
41 #include <linux/tty.h>
42 #include <linux/tty_flip.h>
43 #include <linux/sysrq.h>
45 #include <asm/firmware.h>
46 #include <asm/iseries/vio.h>
47 #include <asm/iseries/hv_lp_event.h>
48 #include <asm/iseries/hv_call_event.h>
49 #include <asm/iseries/hv_lp_config.h>
50 #include <asm/iseries/hv_call.h>
53 #error You must turn off CONFIG_VT to use CONFIG_VIOCONS
56 #define VIOTTY_MAGIC (0x0DCB)
59 #define VIOCONS_KERN_WARN KERN_WARNING "viocons: "
60 #define VIOCONS_KERN_INFO KERN_INFO "viocons: "
62 static DEFINE_SPINLOCK(consolelock
);
63 static DEFINE_SPINLOCK(consoleloglock
);
65 static int vio_sysrq_pressed
;
67 #define VIOCHAR_NUM_BUF 16
70 * Our port information. We store a pointer to one entry in the
73 static struct port_info
{
75 struct tty_struct
*tty
;
78 u64 seq
; /* sequence number of last HV send */
79 u64 ack
; /* last ack from HV */
81 * When we get writes faster than we can send it to the partition,
82 * buffer the data here. Note that used is a bit map of used buffers.
83 * It had better have enough bits to hold VIOCHAR_NUM_BUF the bitops assume
84 * it is a multiple of unsigned long
87 u8
*buffer
[VIOCHAR_NUM_BUF
];
88 int bufferBytes
[VIOCHAR_NUM_BUF
];
92 } port_info
[VTTY_PORTS
];
94 #define viochar_is_console(pi) ((pi) == &port_info[0])
95 #define viochar_port(pi) ((pi) - &port_info[0])
97 static void initDataEvent(struct viocharlpevent
*viochar
, HvLpIndex lp
);
99 static struct tty_driver
*viotty_driver
;
101 static void hvlog(char *fmt
, ...)
106 static char buf
[256];
108 spin_lock_irqsave(&consoleloglock
, flags
);
110 i
= vscnprintf(buf
, sizeof(buf
) - 1, fmt
, args
);
113 HvCall_writeLogBuffer(buf
, i
);
114 spin_unlock_irqrestore(&consoleloglock
, flags
);
117 static void hvlogOutput(const char *buf
, int count
)
122 static const char cr
= '\r';
125 spin_lock_irqsave(&consoleloglock
, flags
);
126 for (index
= 0; index
< count
; index
++) {
127 if (buf
[index
] == '\n') {
129 * Start right after the last '\n' or at the zeroth
130 * array position and output the number of characters
131 * including the newline.
133 HvCall_writeLogBuffer(&buf
[begin
], index
- begin
+ 1);
135 HvCall_writeLogBuffer(&cr
, 1);
138 if ((index
- begin
) > 0)
139 HvCall_writeLogBuffer(&buf
[begin
], index
- begin
);
140 spin_unlock_irqrestore(&consoleloglock
, flags
);
144 * Make sure we're pointing to a valid port_info structure. Shamelessly
145 * plagerized from serial.c
147 static inline int viotty_paranoia_check(struct port_info
*pi
,
148 char *name
, const char *routine
)
150 static const char *bad_pi_addr
= VIOCONS_KERN_WARN
151 "warning: bad address for port_info struct (%s) in %s\n";
152 static const char *badmagic
= VIOCONS_KERN_WARN
153 "warning: bad magic number for port_info struct (%s) in %s\n";
155 if ((pi
< &port_info
[0]) || (viochar_port(pi
) > VTTY_PORTS
)) {
156 printk(bad_pi_addr
, name
, routine
);
159 if (pi
->magic
!= VIOTTY_MAGIC
) {
160 printk(badmagic
, name
, routine
);
167 * Add data to our pending-send buffers.
169 * NOTE: Don't use printk in here because it gets nastily recursive.
170 * hvlog can be used to log to the hypervisor buffer
172 static int buffer_add(struct port_info
*pi
, const char *buf
, size_t len
)
183 * If there is no space left in the current buffer, we have
184 * filled everything up, so return. If we filled the previous
185 * buffer we would already have moved to the next one.
187 if (pi
->bufferBytes
[pi
->curbuf
] == VIOCHAR_MAX_DATA
) {
188 hvlog ("\n\rviocons: No overflow buffer available for memcpy().\n");
189 pi
->bufferOverflow
++;
190 pi
->overflowMessage
= 1;
195 * Turn on the "used" bit for this buffer. If it's already on,
198 set_bit(pi
->curbuf
, &pi
->used
);
201 * See if this buffer has been allocated. If not, allocate it.
203 if (pi
->buffer
[pi
->curbuf
] == NULL
) {
204 pi
->buffer
[pi
->curbuf
] =
205 kmalloc(VIOCHAR_MAX_DATA
, GFP_ATOMIC
);
206 if (pi
->buffer
[pi
->curbuf
] == NULL
) {
207 hvlog("\n\rviocons: kmalloc failed allocating spaces for buffer %d.",
213 /* Figure out how much we can copy into this buffer. */
214 if (bleft
< (VIOCHAR_MAX_DATA
- pi
->bufferBytes
[pi
->curbuf
]))
217 curlen
= VIOCHAR_MAX_DATA
- pi
->bufferBytes
[pi
->curbuf
];
219 /* Copy the data into the buffer. */
220 memcpy(pi
->buffer
[pi
->curbuf
] + pi
->bufferBytes
[pi
->curbuf
],
223 pi
->bufferBytes
[pi
->curbuf
] += curlen
;
228 * Now see if we've filled this buffer. If not then
229 * we'll try to use it again later. If we've filled it
230 * up then we'll advance the curbuf to the next in the
233 if (pi
->bufferBytes
[pi
->curbuf
] == VIOCHAR_MAX_DATA
) {
234 nextbuf
= (pi
->curbuf
+ 1) % VIOCHAR_NUM_BUF
;
236 * Move to the next buffer if it hasn't been used yet
238 if (test_bit(nextbuf
, &pi
->used
) == 0)
239 pi
->curbuf
= nextbuf
;
248 * NOTE: Don't use printk in here because it gets nastily recursive.
249 * hvlog can be used to log to the hypervisor buffer
251 static void send_buffers(struct port_info
*pi
)
255 struct viocharlpevent
*viochar
;
258 spin_lock_irqsave(&consolelock
, flags
);
260 viochar
= (struct viocharlpevent
*)
261 vio_get_event_buffer(viomajorsubtype_chario
);
263 /* Make sure we got a buffer */
264 if (viochar
== NULL
) {
265 hvlog("\n\rviocons: Can't get viochar buffer in sendBuffers().");
266 spin_unlock_irqrestore(&consolelock
, flags
);
271 hvlog("\n\rviocons: in sendbuffers(), but no buffers used.\n");
272 vio_free_event_buffer(viomajorsubtype_chario
, viochar
);
273 spin_unlock_irqrestore(&consolelock
, flags
);
278 * curbuf points to the buffer we're filling. We want to
279 * start sending AFTER this one.
281 nextbuf
= (pi
->curbuf
+ 1) % VIOCHAR_NUM_BUF
;
284 * Loop until we find a buffer with the used bit on
286 while (test_bit(nextbuf
, &pi
->used
) == 0)
287 nextbuf
= (nextbuf
+ 1) % VIOCHAR_NUM_BUF
;
289 initDataEvent(viochar
, pi
->lp
);
292 * While we have buffers with data, and our send window
295 while ((test_bit(nextbuf
, &pi
->used
)) &&
296 ((pi
->seq
- pi
->ack
) < VIOCHAR_WINDOW
)) {
297 viochar
->len
= pi
->bufferBytes
[nextbuf
];
298 viochar
->event
.xCorrelationToken
= pi
->seq
++;
299 viochar
->event
.xSizeMinus1
=
300 offsetof(struct viocharlpevent
, data
) + viochar
->len
;
302 memcpy(viochar
->data
, pi
->buffer
[nextbuf
], viochar
->len
);
304 hvrc
= HvCallEvent_signalLpEvent(&viochar
->event
);
307 * MUST unlock the spinlock before doing a printk
309 vio_free_event_buffer(viomajorsubtype_chario
, viochar
);
310 spin_unlock_irqrestore(&consolelock
, flags
);
312 printk(VIOCONS_KERN_WARN
313 "error sending event! return code %d\n",
319 * clear the used bit, zero the number of bytes in
320 * this buffer, and move to the next buffer
322 clear_bit(nextbuf
, &pi
->used
);
323 pi
->bufferBytes
[nextbuf
] = 0;
324 nextbuf
= (nextbuf
+ 1) % VIOCHAR_NUM_BUF
;
328 * If we have emptied all the buffers, start at 0 again.
329 * this will re-use any allocated buffers
334 if (pi
->overflowMessage
)
335 pi
->overflowMessage
= 0;
342 vio_free_event_buffer(viomajorsubtype_chario
, viochar
);
343 spin_unlock_irqrestore(&consolelock
, flags
);
347 * Our internal writer. Gets called both from the console device and
348 * the tty device. the tty pointer will be NULL if called from the console.
349 * Return total number of bytes "written".
351 * NOTE: Don't use printk in here because it gets nastily recursive. hvlog
352 * can be used to log to the hypervisor buffer
354 static int internal_write(struct port_info
*pi
, const char *buf
, size_t len
)
361 struct viocharlpevent
*viochar
;
364 * Write to the hvlog of inbound data are now done prior to
365 * calling internal_write() since internal_write() is only called in
366 * the event that an lp event path is active, which isn't the case for
367 * logging attempts prior to console initialization.
369 * If there is already data queued for this port, send it prior to
370 * attempting to send any new data.
375 spin_lock_irqsave(&consolelock
, flags
);
377 viochar
= vio_get_event_buffer(viomajorsubtype_chario
);
378 if (viochar
== NULL
) {
379 spin_unlock_irqrestore(&consolelock
, flags
);
380 hvlog("\n\rviocons: Can't get vio buffer in internal_write().");
383 initDataEvent(viochar
, pi
->lp
);
388 while ((bleft
> 0) && (pi
->used
== 0) &&
389 ((pi
->seq
- pi
->ack
) < VIOCHAR_WINDOW
)) {
390 if (bleft
> VIOCHAR_MAX_DATA
)
391 curlen
= VIOCHAR_MAX_DATA
;
395 viochar
->event
.xCorrelationToken
= pi
->seq
++;
396 memcpy(viochar
->data
, curbuf
, curlen
);
397 viochar
->len
= curlen
;
398 viochar
->event
.xSizeMinus1
=
399 offsetof(struct viocharlpevent
, data
) + curlen
;
401 hvrc
= HvCallEvent_signalLpEvent(&viochar
->event
);
403 hvlog("viocons: error sending event! %d\n", (int)hvrc
);
410 /* If we didn't send it all, buffer as much of it as we can. */
412 bleft
-= buffer_add(pi
, curbuf
, bleft
);
414 vio_free_event_buffer(viomajorsubtype_chario
, viochar
);
415 spin_unlock_irqrestore(&consolelock
, flags
);
419 static struct port_info
*get_port_data(struct tty_struct
*tty
)
422 struct port_info
*pi
;
424 spin_lock_irqsave(&consolelock
, flags
);
426 pi
= (struct port_info
*)tty
->driver_data
;
427 if (!pi
|| viotty_paranoia_check(pi
, tty
->name
,
433 * If this is the console device, use the lp from
434 * the first port entry
437 spin_unlock_irqrestore(&consolelock
, flags
);
442 * Initialize the common fields in a charLpEvent
444 static void initDataEvent(struct viocharlpevent
*viochar
, HvLpIndex lp
)
446 struct HvLpEvent
*hev
= &viochar
->event
;
448 memset(viochar
, 0, sizeof(struct viocharlpevent
));
450 hev
->flags
= HV_LP_EVENT_VALID
| HV_LP_EVENT_DEFERRED_ACK
|
452 hev
->xType
= HvLpEvent_Type_VirtualIo
;
453 hev
->xSubtype
= viomajorsubtype_chario
| viochardata
;
454 hev
->xSourceLp
= HvLpConfig_getLpIndex();
456 hev
->xSizeMinus1
= sizeof(struct viocharlpevent
);
457 hev
->xSourceInstanceId
= viopath_sourceinst(lp
);
458 hev
->xTargetInstanceId
= viopath_targetinst(lp
);
462 * early console device write
464 static void viocons_write_early(struct console
*co
, const char *s
, unsigned count
)
466 hvlogOutput(s
, count
);
470 * console device write
472 static void viocons_write(struct console
*co
, const char *s
, unsigned count
)
476 struct port_info
*pi
;
478 static const char cr
= '\r';
481 * Check port data first because the target LP might be valid but
482 * simply not active, in which case we want to hvlog the output.
484 pi
= get_port_data(NULL
);
486 hvlog("\n\rviocons_write: unable to get port data.");
490 hvlogOutput(s
, count
);
492 if (!viopath_isactive(pi
->lp
))
496 * Any newline character found will cause a
497 * carriage return character to be emitted as well.
500 for (index
= 0; index
< count
; index
++) {
501 if (s
[index
] == '\n') {
503 * Newline found. Print everything up to and
504 * including the newline
506 internal_write(pi
, &s
[begin
], index
- begin
+ 1);
508 /* Emit a carriage return as well */
509 internal_write(pi
, &cr
, 1);
513 /* If any characters left to write, write them now */
514 if ((index
- begin
) > 0)
515 internal_write(pi
, &s
[begin
], index
- begin
);
519 * Work out the device associate with this console
521 static struct tty_driver
*viocons_device(struct console
*c
, int *index
)
524 return viotty_driver
;
528 * console device I/O methods
530 static struct console viocons_early
= {
532 .write
= viocons_write_early
,
533 .flags
= CON_PRINTBUFFER
,
537 static struct console viocons
= {
539 .write
= viocons_write
,
540 .device
= viocons_device
,
541 .flags
= CON_PRINTBUFFER
,
548 static int viotty_open(struct tty_struct
*tty
, struct file
*filp
)
552 struct port_info
*pi
;
556 if ((port
< 0) || (port
>= VTTY_PORTS
))
559 spin_lock_irqsave(&consolelock
, flags
);
561 pi
= &port_info
[port
];
562 /* If some other TTY is already connected here, reject the open */
563 if ((pi
->tty
) && (pi
->tty
!= tty
)) {
564 spin_unlock_irqrestore(&consolelock
, flags
);
565 printk(VIOCONS_KERN_WARN
566 "attempt to open device twice from different ttys\n");
569 tty
->driver_data
= pi
;
571 spin_unlock_irqrestore(&consolelock
, flags
);
579 static void viotty_close(struct tty_struct
*tty
, struct file
*filp
)
582 struct port_info
*pi
;
584 spin_lock_irqsave(&consolelock
, flags
);
585 pi
= (struct port_info
*)tty
->driver_data
;
587 if (!pi
|| viotty_paranoia_check(pi
, tty
->name
, "viotty_close")) {
588 spin_unlock_irqrestore(&consolelock
, flags
);
593 spin_unlock_irqrestore(&consolelock
, flags
);
599 static int viotty_write(struct tty_struct
*tty
, const unsigned char *buf
,
602 struct port_info
*pi
;
604 pi
= get_port_data(tty
);
606 hvlog("\n\rviotty_write: no port data.");
610 if (viochar_is_console(pi
))
611 hvlogOutput(buf
, count
);
614 * If the path to this LP is closed, don't bother doing anything more.
615 * just dump the data on the floor and return count. For some reason
616 * some user level programs will attempt to probe available tty's and
617 * they'll attempt a viotty_write on an invalid port which maps to an
618 * invalid target lp. If this is the case then ignore the
619 * viotty_write call and, since the viopath isn't active to this
620 * partition, return count.
622 if (!viopath_isactive(pi
->lp
))
625 return internal_write(pi
, buf
, count
);
629 * TTY put_char method
631 static int viotty_put_char(struct tty_struct
*tty
, unsigned char ch
)
633 struct port_info
*pi
;
635 pi
= get_port_data(tty
);
639 /* This will append '\r' as well if the char is '\n' */
640 if (viochar_is_console(pi
))
643 if (viopath_isactive(pi
->lp
))
644 internal_write(pi
, &ch
, 1);
649 * TTY write_room method
651 static int viotty_write_room(struct tty_struct
*tty
)
655 struct port_info
*pi
;
658 spin_lock_irqsave(&consolelock
, flags
);
659 pi
= (struct port_info
*)tty
->driver_data
;
660 if (!pi
|| viotty_paranoia_check(pi
, tty
->name
, "viotty_write_room")) {
661 spin_unlock_irqrestore(&consolelock
, flags
);
665 /* If no buffers are used, return the max size. */
667 spin_unlock_irqrestore(&consolelock
, flags
);
668 return VIOCHAR_MAX_DATA
* VIOCHAR_NUM_BUF
;
672 * We retain the spinlock because we want to get an accurate
673 * count and it can change on us between each operation if we
674 * don't hold the spinlock.
676 for (i
= 0; ((i
< VIOCHAR_NUM_BUF
) && (room
< VIOCHAR_MAX_DATA
)); i
++)
677 room
+= (VIOCHAR_MAX_DATA
- pi
->bufferBytes
[i
]);
678 spin_unlock_irqrestore(&consolelock
, flags
);
680 if (room
> VIOCHAR_MAX_DATA
)
681 room
= VIOCHAR_MAX_DATA
;
686 * TTY chars_in_buffer method
688 static int viotty_chars_in_buffer(struct tty_struct
*tty
)
693 static int viotty_ioctl(struct tty_struct
*tty
, struct file
*file
,
694 unsigned int cmd
, unsigned long arg
)
698 * the ioctls below read/set the flags usually shown in the leds
699 * don't use them - they will go away without warning
703 return put_user(0, (char *)arg
);
708 /* FIXME: WTF is this being called for ??? */
710 ret
= n_tty_ioctl(tty
, file
, cmd
, arg
);
716 * Handle an open charLpEvent. Could be either interrupt or ack
718 static void vioHandleOpenEvent(struct HvLpEvent
*event
)
721 struct viocharlpevent
*cevent
= (struct viocharlpevent
*)event
;
722 u8 port
= cevent
->virtual_device
;
723 struct port_info
*pi
;
726 if (hvlpevent_is_ack(event
)) {
727 if (port
>= VTTY_PORTS
)
730 spin_lock_irqsave(&consolelock
, flags
);
731 /* Got the lock, don't cause console output */
733 pi
= &port_info
[port
];
734 if (event
->xRc
== HvLpEvent_Rc_Good
) {
735 pi
->seq
= pi
->ack
= 0;
737 * This line allows connections from the primary
738 * partition but once one is connected from the
739 * primary partition nothing short of a reboot
740 * of linux will allow access from the hosting
741 * partition again without a required iSeries fix.
743 pi
->lp
= event
->xTargetLp
;
746 spin_unlock_irqrestore(&consolelock
, flags
);
747 if (event
->xRc
!= HvLpEvent_Rc_Good
)
748 printk(VIOCONS_KERN_WARN
749 "handle_open_event: event->xRc == (%d).\n",
752 if (event
->xCorrelationToken
!= 0) {
753 atomic_t
*aptr
= (atomic_t
*)event
->xCorrelationToken
;
756 printk(VIOCONS_KERN_WARN
757 "weird...got open ack without atomic\n");
761 /* This had better require an ack, otherwise complain */
762 if (!hvlpevent_need_ack(event
)) {
763 printk(VIOCONS_KERN_WARN
"viocharopen without ack bit!\n");
767 spin_lock_irqsave(&consolelock
, flags
);
768 /* Got the lock, don't cause console output */
770 /* Make sure this is a good virtual tty */
771 if (port
>= VTTY_PORTS
) {
772 event
->xRc
= HvLpEvent_Rc_SubtypeError
;
773 cevent
->subtype_result_code
= viorc_openRejected
;
775 * Flag state here since we can't printk while holding
780 pi
= &port_info
[port
];
781 if ((pi
->lp
!= HvLpIndexInvalid
) &&
782 (pi
->lp
!= event
->xSourceLp
)) {
784 * If this is tty is already connected to a different
787 event
->xRc
= HvLpEvent_Rc_SubtypeError
;
788 cevent
->subtype_result_code
= viorc_openRejected
;
791 pi
->lp
= event
->xSourceLp
;
792 event
->xRc
= HvLpEvent_Rc_Good
;
793 cevent
->subtype_result_code
= viorc_good
;
794 pi
->seq
= pi
->ack
= 0;
799 spin_unlock_irqrestore(&consolelock
, flags
);
802 printk(VIOCONS_KERN_WARN
"open rejected: bad virtual tty.\n");
803 else if (reject
== 2)
804 printk(VIOCONS_KERN_WARN
805 "open rejected: console in exclusive use by another partition.\n");
807 /* Return the acknowledgement */
808 HvCallEvent_ackLpEvent(event
);
812 * Handle a close charLpEvent. This should ONLY be an Interrupt because the
813 * virtual console should never actually issue a close event to the hypervisor
814 * because the virtual console never goes away. A close event coming from the
815 * hypervisor simply means that there are no client consoles connected to the
818 * Regardless of the number of connections masqueraded on the other side of
819 * the hypervisor ONLY ONE close event should be called to accompany the ONE
820 * open event that is called. The close event should ONLY be called when NO
821 * MORE connections (masqueraded or not) exist on the other side of the
824 static void vioHandleCloseEvent(struct HvLpEvent
*event
)
827 struct viocharlpevent
*cevent
= (struct viocharlpevent
*)event
;
828 u8 port
= cevent
->virtual_device
;
830 if (hvlpevent_is_int(event
)) {
831 if (port
>= VTTY_PORTS
) {
832 printk(VIOCONS_KERN_WARN
833 "close message from invalid virtual device.\n");
837 /* For closes, just mark the console partition invalid */
838 spin_lock_irqsave(&consolelock
, flags
);
839 /* Got the lock, don't cause console output */
841 if (port_info
[port
].lp
== event
->xSourceLp
)
842 port_info
[port
].lp
= HvLpIndexInvalid
;
844 spin_unlock_irqrestore(&consolelock
, flags
);
845 printk(VIOCONS_KERN_INFO
"close from %d\n", event
->xSourceLp
);
847 printk(VIOCONS_KERN_WARN
848 "got unexpected close acknowlegement\n");
852 * Handle a config charLpEvent. Could be either interrupt or ack
854 static void vioHandleConfig(struct HvLpEvent
*event
)
856 struct viocharlpevent
*cevent
= (struct viocharlpevent
*)event
;
858 HvCall_writeLogBuffer(cevent
->data
, cevent
->len
);
860 if (cevent
->data
[0] == 0x01)
861 printk(VIOCONS_KERN_INFO
"window resized to %d: %d: %d: %d\n",
862 cevent
->data
[1], cevent
->data
[2],
863 cevent
->data
[3], cevent
->data
[4]);
865 printk(VIOCONS_KERN_WARN
"unknown config event\n");
869 * Handle a data charLpEvent.
871 static void vioHandleData(struct HvLpEvent
*event
)
873 struct tty_struct
*tty
;
875 struct viocharlpevent
*cevent
= (struct viocharlpevent
*)event
;
876 struct port_info
*pi
;
879 u8 port
= cevent
->virtual_device
;
881 if (port
>= VTTY_PORTS
) {
882 printk(VIOCONS_KERN_WARN
"data on invalid virtual device %d\n",
888 * Hold the spinlock so that we don't take an interrupt that
889 * changes tty between the time we fetch the port_info
890 * pointer and the time we paranoia check.
892 spin_lock_irqsave(&consolelock
, flags
);
893 pi
= &port_info
[port
];
896 * Change 05/01/2003 - Ryan Arnold: If a partition other than
897 * the current exclusive partition tries to send us data
898 * events then just drop them on the floor because we don't
899 * want his stinking data. He isn't authorized to receive
900 * data because he wasn't the first one to get the console,
901 * therefore he shouldn't be allowed to send data either.
902 * This will work without an iSeries fix.
904 if (pi
->lp
!= event
->xSourceLp
) {
905 spin_unlock_irqrestore(&consolelock
, flags
);
911 spin_unlock_irqrestore(&consolelock
, flags
);
912 printk(VIOCONS_KERN_WARN
"no tty for virtual device %d\n",
917 if (tty
->magic
!= TTY_MAGIC
) {
918 spin_unlock_irqrestore(&consolelock
, flags
);
919 printk(VIOCONS_KERN_WARN
"tty bad magic\n");
924 * Just to be paranoid, make sure the tty points back to this port
926 pi
= (struct port_info
*)tty
->driver_data
;
927 if (!pi
|| viotty_paranoia_check(pi
, tty
->name
, "vioHandleData")) {
928 spin_unlock_irqrestore(&consolelock
, flags
);
931 spin_unlock_irqrestore(&consolelock
, flags
);
934 * Change 07/21/2003 - Ryan Arnold: functionality added to
935 * support sysrq utilizing ^O as the sysrq key. The sysrq
936 * functionality will only work if built into the kernel and
937 * then only if sysrq is enabled through the proc filesystem.
940 for (index
= 0; index
< cevent
->len
; index
++) {
942 * Will be optimized away if !CONFIG_MAGIC_SYSRQ:
945 /* 0x0f is the ascii character for ^O */
946 if (cevent
->data
[index
] == '\x0f') {
947 vio_sysrq_pressed
= 1;
949 * continue because we don't want to add
950 * the sysrq key into the data string.
953 } else if (vio_sysrq_pressed
) {
954 handle_sysrq(cevent
->data
[index
], tty
);
955 vio_sysrq_pressed
= 0;
957 * continue because we don't want to add
958 * the sysrq sequence into the data string.
964 * The sysrq sequence isn't included in this check if
965 * sysrq is enabled and compiled into the kernel because
966 * the sequence will never get inserted into the buffer.
967 * Don't attempt to copy more data into the buffer than we
968 * have room for because it would fail without indication.
970 if(tty_insert_flip_char(tty
, cevent
->data
[index
], TTY_NORMAL
) == 0) {
971 printk(VIOCONS_KERN_WARN
"input buffer overflow!\n");
978 tty_flip_buffer_push(tty
);
982 * Handle an ack charLpEvent.
984 static void vioHandleAck(struct HvLpEvent
*event
)
986 struct viocharlpevent
*cevent
= (struct viocharlpevent
*)event
;
988 u8 port
= cevent
->virtual_device
;
990 if (port
>= VTTY_PORTS
) {
991 printk(VIOCONS_KERN_WARN
"data on invalid virtual device\n");
995 spin_lock_irqsave(&consolelock
, flags
);
996 port_info
[port
].ack
= event
->xCorrelationToken
;
997 spin_unlock_irqrestore(&consolelock
, flags
);
999 if (port_info
[port
].used
)
1000 send_buffers(&port_info
[port
]);
1004 * Handle charLpEvents and route to the appropriate routine
1006 static void vioHandleCharEvent(struct HvLpEvent
*event
)
1013 charminor
= event
->xSubtype
& VIOMINOR_SUBTYPE_MASK
;
1014 switch (charminor
) {
1016 vioHandleOpenEvent(event
);
1019 vioHandleCloseEvent(event
);
1022 vioHandleData(event
);
1025 vioHandleAck(event
);
1028 vioHandleConfig(event
);
1031 if (hvlpevent_is_int(event
) && hvlpevent_need_ack(event
)) {
1032 event
->xRc
= HvLpEvent_Rc_InvalidSubtype
;
1033 HvCallEvent_ackLpEvent(event
);
1039 * Send an open event
1041 static int send_open(HvLpIndex remoteLp
, void *sem
)
1043 return HvCallEvent_signalLpEventFast(remoteLp
,
1044 HvLpEvent_Type_VirtualIo
,
1045 viomajorsubtype_chario
| viocharopen
,
1046 HvLpEvent_AckInd_DoAck
, HvLpEvent_AckType_ImmediateAck
,
1047 viopath_sourceinst(remoteLp
),
1048 viopath_targetinst(remoteLp
),
1049 (u64
)(unsigned long)sem
, VIOVERSION
<< 16,
1053 static const struct tty_operations serial_ops
= {
1054 .open
= viotty_open
,
1055 .close
= viotty_close
,
1056 .write
= viotty_write
,
1057 .put_char
= viotty_put_char
,
1058 .write_room
= viotty_write_room
,
1059 .chars_in_buffer
= viotty_chars_in_buffer
,
1060 .ioctl
= viotty_ioctl
,
1063 static int __init
viocons_init2(void)
1068 if (!firmware_has_feature(FW_FEATURE_ISERIES
))
1072 rc
= viopath_open(HvLpConfig_getPrimaryLpIndex(),
1073 viomajorsubtype_chario
, VIOCHAR_WINDOW
+ 2);
1075 printk(VIOCONS_KERN_WARN
"error opening to primary %d\n", rc
);
1077 if (viopath_hostLp
== HvLpIndexInvalid
)
1081 * And if the primary is not the same as the hosting LP, open to the
1084 if ((viopath_hostLp
!= HvLpIndexInvalid
) &&
1085 (viopath_hostLp
!= HvLpConfig_getPrimaryLpIndex())) {
1086 printk(VIOCONS_KERN_INFO
"open path to hosting (%d)\n",
1088 rc
= viopath_open(viopath_hostLp
, viomajorsubtype_chario
,
1089 VIOCHAR_WINDOW
+ 2); /* +2 for fudge */
1091 printk(VIOCONS_KERN_WARN
1092 "error opening to partition %d: %d\n",
1093 viopath_hostLp
, rc
);
1096 if (vio_setHandler(viomajorsubtype_chario
, vioHandleCharEvent
) < 0)
1097 printk(VIOCONS_KERN_WARN
1098 "error seting handler for console events!\n");
1101 * First, try to open the console to the hosting lp.
1102 * Wait on a semaphore for the response.
1104 atomic_set(&wait_flag
, 0);
1105 if ((viopath_isactive(viopath_hostLp
)) &&
1106 (send_open(viopath_hostLp
, (void *)&wait_flag
) == 0)) {
1107 printk(VIOCONS_KERN_INFO
"hosting partition %d\n",
1109 while (atomic_read(&wait_flag
) == 0)
1111 atomic_set(&wait_flag
, 0);
1115 * If we don't have an active console, try the primary
1117 if ((!viopath_isactive(port_info
[0].lp
)) &&
1118 (viopath_isactive(HvLpConfig_getPrimaryLpIndex())) &&
1119 (send_open(HvLpConfig_getPrimaryLpIndex(), (void *)&wait_flag
)
1121 printk(VIOCONS_KERN_INFO
"opening console to primary partition\n");
1122 while (atomic_read(&wait_flag
) == 0)
1126 /* Initialize the tty_driver structure */
1127 viotty_driver
= alloc_tty_driver(VTTY_PORTS
);
1128 viotty_driver
->owner
= THIS_MODULE
;
1129 viotty_driver
->driver_name
= "vioconsole";
1130 viotty_driver
->name
= "tty";
1131 viotty_driver
->name_base
= 1;
1132 viotty_driver
->major
= TTY_MAJOR
;
1133 viotty_driver
->minor_start
= 1;
1134 viotty_driver
->type
= TTY_DRIVER_TYPE_CONSOLE
;
1135 viotty_driver
->subtype
= 1;
1136 viotty_driver
->init_termios
= tty_std_termios
;
1137 viotty_driver
->flags
= TTY_DRIVER_REAL_RAW
| TTY_DRIVER_RESET_TERMIOS
;
1138 tty_set_operations(viotty_driver
, &serial_ops
);
1140 if (tty_register_driver(viotty_driver
)) {
1141 printk(VIOCONS_KERN_WARN
"couldn't register console driver\n");
1142 put_tty_driver(viotty_driver
);
1143 viotty_driver
= NULL
;
1146 unregister_console(&viocons_early
);
1147 register_console(&viocons
);
1152 static int __init
viocons_init(void)
1156 if (!firmware_has_feature(FW_FEATURE_ISERIES
))
1159 printk(VIOCONS_KERN_INFO
"registering console\n");
1160 for (i
= 0; i
< VTTY_PORTS
; i
++) {
1161 port_info
[i
].lp
= HvLpIndexInvalid
;
1162 port_info
[i
].magic
= VIOTTY_MAGIC
;
1164 HvCall_setLogBufferFormatAndCodepage(HvCall_LogBuffer_ASCII
, 437);
1165 add_preferred_console("viocons", 0, NULL
);
1166 register_console(&viocons_early
);
1170 console_initcall(viocons_init
);
1171 module_init(viocons_init2
);