2 * drivers/s390/char/sclp_vt220.c
3 * SCLP VT220 terminal driver.
6 * Copyright (C) 2003 IBM Deutschland Entwicklung GmbH, IBM Corporation
7 * Author(s): Peter Oberparleiter <Peter.Oberparleiter@de.ibm.com>
10 #include <linux/module.h>
11 #include <linux/spinlock.h>
12 #include <linux/list.h>
13 #include <linux/wait.h>
14 #include <linux/timer.h>
15 #include <linux/kernel.h>
16 #include <linux/tty.h>
17 #include <linux/tty_driver.h>
18 #include <linux/tty_flip.h>
19 #include <linux/errno.h>
21 #include <linux/major.h>
22 #include <linux/console.h>
23 #include <linux/kdev_t.h>
24 #include <linux/bootmem.h>
25 #include <linux/interrupt.h>
26 #include <linux/init.h>
27 #include <asm/uaccess.h>
30 #define SCLP_VT220_PRINT_HEADER "sclp vt220 tty driver: "
31 #define SCLP_VT220_MAJOR TTY_MAJOR
32 #define SCLP_VT220_MINOR 65
33 #define SCLP_VT220_DRIVER_NAME "sclp_vt220"
34 #define SCLP_VT220_DEVICE_NAME "ttysclp"
35 #define SCLP_VT220_CONSOLE_NAME "ttyS"
36 #define SCLP_VT220_CONSOLE_INDEX 1 /* console=ttyS1 */
37 #define SCLP_VT220_BUF_SIZE 80
39 /* Representation of a single write request */
40 struct sclp_vt220_request
{
41 struct list_head list
;
42 struct sclp_req sclp_req
;
47 struct sclp_vt220_sccb
{
48 struct sccb_header header
;
49 struct evbuf_header evbuf
;
52 #define SCLP_VT220_MAX_CHARS_PER_BUFFER (PAGE_SIZE - \
53 sizeof(struct sclp_vt220_request) - \
54 sizeof(struct sclp_vt220_sccb))
56 /* Structures and data needed to register tty driver */
57 static struct tty_driver
*sclp_vt220_driver
;
59 /* The tty_struct that the kernel associated with us */
60 static struct tty_struct
*sclp_vt220_tty
;
62 /* Lock to protect internal data from concurrent access */
63 static spinlock_t sclp_vt220_lock
;
65 /* List of empty pages to be used as write request buffers */
66 static struct list_head sclp_vt220_empty
;
68 /* List of pending requests */
69 static struct list_head sclp_vt220_outqueue
;
71 /* Number of requests in outqueue */
72 static int sclp_vt220_outqueue_count
;
74 /* Wait queue used to delay write requests while we've run out of buffers */
75 static wait_queue_head_t sclp_vt220_waitq
;
77 /* Timer used for delaying write requests to merge subsequent messages into
79 static struct timer_list sclp_vt220_timer
;
81 /* Pointer to current request buffer which has been partially filled but not
83 static struct sclp_vt220_request
*sclp_vt220_current_request
;
85 /* Number of characters in current request buffer */
86 static int sclp_vt220_buffered_chars
;
88 /* Flag indicating whether this driver has already been initialized */
89 static int sclp_vt220_initialized
= 0;
91 /* Flag indicating that sclp_vt220_current_request should really
92 * have been already queued but wasn't because the SCLP was processing
94 static int sclp_vt220_flush_later
;
96 static void sclp_vt220_receiver_fn(struct evbuf_header
*evbuf
);
97 static int __sclp_vt220_emit(struct sclp_vt220_request
*request
);
98 static void sclp_vt220_emit_current(void);
100 /* Registration structure for our interest in SCLP event buffers */
101 static struct sclp_register sclp_vt220_register
= {
102 .send_mask
= EVTYP_VT220MSG_MASK
,
103 .receive_mask
= EVTYP_VT220MSG_MASK
,
104 .state_change_fn
= NULL
,
105 .receiver_fn
= sclp_vt220_receiver_fn
110 * Put provided request buffer back into queue and check emit pending
111 * buffers if necessary.
114 sclp_vt220_process_queue(struct sclp_vt220_request
*request
)
120 /* Put buffer back to list of empty buffers */
121 page
= request
->sclp_req
.sccb
;
122 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
123 /* Move request from outqueue to empty queue */
124 list_del(&request
->list
);
125 sclp_vt220_outqueue_count
--;
126 list_add_tail((struct list_head
*) page
, &sclp_vt220_empty
);
127 /* Check if there is a pending buffer on the out queue. */
129 if (!list_empty(&sclp_vt220_outqueue
))
130 request
= list_entry(sclp_vt220_outqueue
.next
,
131 struct sclp_vt220_request
, list
);
132 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
133 } while (request
&& __sclp_vt220_emit(request
));
134 if (request
== NULL
&& sclp_vt220_flush_later
)
135 sclp_vt220_emit_current();
136 wake_up(&sclp_vt220_waitq
);
137 /* Check if the tty needs a wake up call */
138 if (sclp_vt220_tty
!= NULL
) {
139 tty_wakeup(sclp_vt220_tty
);
143 #define SCLP_BUFFER_MAX_RETRY 1
146 * Callback through which the result of a write request is reported by the
150 sclp_vt220_callback(struct sclp_req
*request
, void *data
)
152 struct sclp_vt220_request
*vt220_request
;
153 struct sclp_vt220_sccb
*sccb
;
155 vt220_request
= (struct sclp_vt220_request
*) data
;
156 if (request
->status
== SCLP_REQ_FAILED
) {
157 sclp_vt220_process_queue(vt220_request
);
160 sccb
= (struct sclp_vt220_sccb
*) vt220_request
->sclp_req
.sccb
;
162 /* Check SCLP response code and choose suitable action */
163 switch (sccb
->header
.response_code
) {
167 case 0x05f0: /* Target resource in improper state */
170 case 0x0340: /* Contained SCLP equipment check */
171 if (++vt220_request
->retry_count
> SCLP_BUFFER_MAX_RETRY
)
173 /* Remove processed buffers and requeue rest */
174 if (sclp_remove_processed((struct sccb_header
*) sccb
) > 0) {
175 /* Not all buffers were processed */
176 sccb
->header
.response_code
= 0x0000;
177 vt220_request
->sclp_req
.status
= SCLP_REQ_FILLED
;
178 if (sclp_add_request(request
) == 0)
183 case 0x0040: /* SCLP equipment check */
184 if (++vt220_request
->retry_count
> SCLP_BUFFER_MAX_RETRY
)
186 sccb
->header
.response_code
= 0x0000;
187 vt220_request
->sclp_req
.status
= SCLP_REQ_FILLED
;
188 if (sclp_add_request(request
) == 0)
195 sclp_vt220_process_queue(vt220_request
);
199 * Emit vt220 request buffer to SCLP. Return zero on success, non-zero
203 __sclp_vt220_emit(struct sclp_vt220_request
*request
)
205 if (!(sclp_vt220_register
.sclp_send_mask
& EVTYP_VT220MSG_MASK
)) {
206 request
->sclp_req
.status
= SCLP_REQ_FAILED
;
209 request
->sclp_req
.command
= SCLP_CMDW_WRITE_EVENT_DATA
;
210 request
->sclp_req
.status
= SCLP_REQ_FILLED
;
211 request
->sclp_req
.callback
= sclp_vt220_callback
;
212 request
->sclp_req
.callback_data
= (void *) request
;
214 return sclp_add_request(&request
->sclp_req
);
218 * Queue and emit given request.
221 sclp_vt220_emit(struct sclp_vt220_request
*request
)
226 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
227 list_add_tail(&request
->list
, &sclp_vt220_outqueue
);
228 count
= sclp_vt220_outqueue_count
++;
229 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
230 /* Emit only the first buffer immediately - callback takes care of
232 if (count
== 0 && __sclp_vt220_emit(request
))
233 sclp_vt220_process_queue(request
);
237 * Queue and emit current request. Return zero on success, non-zero otherwise.
240 sclp_vt220_emit_current(void)
243 struct sclp_vt220_request
*request
;
244 struct sclp_vt220_sccb
*sccb
;
246 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
248 if (sclp_vt220_current_request
!= NULL
) {
249 sccb
= (struct sclp_vt220_sccb
*)
250 sclp_vt220_current_request
->sclp_req
.sccb
;
251 /* Only emit buffers with content */
252 if (sccb
->header
.length
!= sizeof(struct sclp_vt220_sccb
)) {
253 request
= sclp_vt220_current_request
;
254 sclp_vt220_current_request
= NULL
;
255 if (timer_pending(&sclp_vt220_timer
))
256 del_timer(&sclp_vt220_timer
);
258 sclp_vt220_flush_later
= 0;
260 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
262 sclp_vt220_emit(request
);
265 #define SCLP_NORMAL_WRITE 0x00
268 * Helper function to initialize a page with the sclp request structure.
270 static struct sclp_vt220_request
*
271 sclp_vt220_initialize_page(void *page
)
273 struct sclp_vt220_request
*request
;
274 struct sclp_vt220_sccb
*sccb
;
276 /* Place request structure at end of page */
277 request
= ((struct sclp_vt220_request
*)
278 ((addr_t
) page
+ PAGE_SIZE
)) - 1;
279 request
->retry_count
= 0;
280 request
->sclp_req
.sccb
= page
;
281 /* SCCB goes at start of page */
282 sccb
= (struct sclp_vt220_sccb
*) page
;
283 memset((void *) sccb
, 0, sizeof(struct sclp_vt220_sccb
));
284 sccb
->header
.length
= sizeof(struct sclp_vt220_sccb
);
285 sccb
->header
.function_code
= SCLP_NORMAL_WRITE
;
286 sccb
->header
.response_code
= 0x0000;
287 sccb
->evbuf
.type
= EVTYP_VT220MSG
;
288 sccb
->evbuf
.length
= sizeof(struct evbuf_header
);
293 static inline unsigned int
294 sclp_vt220_space_left(struct sclp_vt220_request
*request
)
296 struct sclp_vt220_sccb
*sccb
;
297 sccb
= (struct sclp_vt220_sccb
*) request
->sclp_req
.sccb
;
298 return PAGE_SIZE
- sizeof(struct sclp_vt220_request
) -
302 static inline unsigned int
303 sclp_vt220_chars_stored(struct sclp_vt220_request
*request
)
305 struct sclp_vt220_sccb
*sccb
;
306 sccb
= (struct sclp_vt220_sccb
*) request
->sclp_req
.sccb
;
307 return sccb
->evbuf
.length
- sizeof(struct evbuf_header
);
311 * Add msg to buffer associated with request. Return the number of characters
315 sclp_vt220_add_msg(struct sclp_vt220_request
*request
,
316 const unsigned char *msg
, int count
, int convertlf
)
318 struct sclp_vt220_sccb
*sccb
;
324 if (count
> sclp_vt220_space_left(request
))
325 count
= sclp_vt220_space_left(request
);
329 sccb
= (struct sclp_vt220_sccb
*) request
->sclp_req
.sccb
;
330 buffer
= (void *) ((addr_t
) sccb
+ sccb
->header
.length
);
333 /* Perform Linefeed conversion (0x0a -> 0x0a 0x0d)*/
335 (from
< count
) && (to
< sclp_vt220_space_left(request
));
337 /* Retrieve character */
339 /* Perform conversion */
341 if (to
+ 1 < sclp_vt220_space_left(request
)) {
342 ((unsigned char *) buffer
)[to
++] = c
;
343 ((unsigned char *) buffer
)[to
++] = 0x0d;
348 ((unsigned char *) buffer
)[to
++] = c
;
350 sccb
->header
.length
+= to
;
351 sccb
->evbuf
.length
+= to
;
354 memcpy(buffer
, (const void *) msg
, count
);
355 sccb
->header
.length
+= count
;
356 sccb
->evbuf
.length
+= count
;
362 * Emit buffer after having waited long enough for more data to arrive.
365 sclp_vt220_timeout(unsigned long data
)
367 sclp_vt220_emit_current();
370 #define BUFFER_MAX_DELAY HZ/2
373 * Internal implementation of the write function. Write COUNT bytes of data
375 * to the SCLP interface. In case that the data does not fit into the current
376 * write buffer, emit the current one and allocate a new one. If there are no
377 * more empty buffers available, wait until one gets emptied. If DO_SCHEDULE
378 * is non-zero, the buffer will be scheduled for emitting after a timeout -
379 * otherwise the user has to explicitly call the flush function.
380 * A non-zero CONVERTLF parameter indicates that 0x0a characters in the message
381 * buffer should be converted to 0x0a 0x0d. After completion, return the number
385 __sclp_vt220_write(const unsigned char *buf
, int count
, int do_schedule
,
396 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
398 /* Create a sclp output buffer if none exists yet */
399 if (sclp_vt220_current_request
== NULL
) {
400 while (list_empty(&sclp_vt220_empty
)) {
401 spin_unlock_irqrestore(&sclp_vt220_lock
,
406 wait_event(sclp_vt220_waitq
,
407 !list_empty(&sclp_vt220_empty
));
408 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
410 page
= (void *) sclp_vt220_empty
.next
;
411 list_del((struct list_head
*) page
);
412 sclp_vt220_current_request
=
413 sclp_vt220_initialize_page(page
);
415 /* Try to write the string to the current request buffer */
416 written
= sclp_vt220_add_msg(sclp_vt220_current_request
,
417 buf
, count
, convertlf
);
418 overall_written
+= written
;
419 if (written
== count
)
422 * Not all characters could be written to the current
423 * output buffer. Emit the buffer, create a new buffer
424 * and then output the rest of the string.
426 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
427 sclp_vt220_emit_current();
428 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
432 /* Setup timer to output current console buffer after some time */
433 if (sclp_vt220_current_request
!= NULL
&&
434 !timer_pending(&sclp_vt220_timer
) && do_schedule
) {
435 sclp_vt220_timer
.function
= sclp_vt220_timeout
;
436 sclp_vt220_timer
.data
= 0UL;
437 sclp_vt220_timer
.expires
= jiffies
+ BUFFER_MAX_DELAY
;
438 add_timer(&sclp_vt220_timer
);
440 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
441 return overall_written
;
445 * This routine is called by the kernel to write a series of
446 * characters to the tty device. The characters may come from
447 * user space or kernel space. This routine will return the
448 * number of characters actually accepted for writing.
451 sclp_vt220_write(struct tty_struct
*tty
, const unsigned char *buf
, int count
)
453 return __sclp_vt220_write(buf
, count
, 1, 0);
456 #define SCLP_VT220_SESSION_ENDED 0x01
457 #define SCLP_VT220_SESSION_STARTED 0x80
458 #define SCLP_VT220_SESSION_DATA 0x00
461 * Called by the SCLP to report incoming event buffers.
464 sclp_vt220_receiver_fn(struct evbuf_header
*evbuf
)
469 /* Ignore input if device is not open */
470 if (sclp_vt220_tty
== NULL
)
473 buffer
= (char *) ((addr_t
) evbuf
+ sizeof(struct evbuf_header
));
474 count
= evbuf
->length
- sizeof(struct evbuf_header
);
477 case SCLP_VT220_SESSION_ENDED
:
478 case SCLP_VT220_SESSION_STARTED
:
480 case SCLP_VT220_SESSION_DATA
:
481 /* Send input to line discipline */
484 tty_insert_flip_string(sclp_vt220_tty
, buffer
, count
);
485 tty_flip_buffer_push(sclp_vt220_tty
);
491 * This routine is called when a particular tty device is opened.
494 sclp_vt220_open(struct tty_struct
*tty
, struct file
*filp
)
496 if (tty
->count
== 1) {
497 sclp_vt220_tty
= tty
;
498 tty
->driver_data
= kmalloc(SCLP_VT220_BUF_SIZE
, GFP_KERNEL
);
499 if (tty
->driver_data
== NULL
)
501 tty
->low_latency
= 0;
507 * This routine is called when a particular tty device is closed.
510 sclp_vt220_close(struct tty_struct
*tty
, struct file
*filp
)
512 if (tty
->count
== 1) {
513 sclp_vt220_tty
= NULL
;
514 kfree(tty
->driver_data
);
515 tty
->driver_data
= NULL
;
520 * This routine is called by the kernel to write a single
521 * character to the tty device. If the kernel uses this routine,
522 * it must call the flush_chars() routine (if defined) when it is
523 * done stuffing characters into the driver.
525 * NOTE: include/linux/tty_driver.h specifies that a character should be
526 * ignored if there is no room in the queue. This driver implements a different
527 * semantic in that it will block when there is no more room left.
530 sclp_vt220_put_char(struct tty_struct
*tty
, unsigned char ch
)
532 __sclp_vt220_write(&ch
, 1, 0, 0);
536 * This routine is called by the kernel after it has written a
537 * series of characters to the tty device using put_char().
540 sclp_vt220_flush_chars(struct tty_struct
*tty
)
542 if (sclp_vt220_outqueue_count
== 0)
543 sclp_vt220_emit_current();
545 sclp_vt220_flush_later
= 1;
549 * This routine returns the numbers of characters the tty driver
550 * will accept for queuing to be written. This number is subject
551 * to change as output buffers get emptied, or if the output flow
555 sclp_vt220_write_room(struct tty_struct
*tty
)
561 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
563 if (sclp_vt220_current_request
!= NULL
)
564 count
= sclp_vt220_space_left(sclp_vt220_current_request
);
565 list_for_each(l
, &sclp_vt220_empty
)
566 count
+= SCLP_VT220_MAX_CHARS_PER_BUFFER
;
567 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
572 * Return number of buffered chars.
575 sclp_vt220_chars_in_buffer(struct tty_struct
*tty
)
579 struct sclp_vt220_request
*r
;
582 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
584 if (sclp_vt220_current_request
!= NULL
)
585 count
= sclp_vt220_chars_stored(sclp_vt220_current_request
);
586 list_for_each(l
, &sclp_vt220_outqueue
) {
587 r
= list_entry(l
, struct sclp_vt220_request
, list
);
588 count
+= sclp_vt220_chars_stored(r
);
590 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
595 __sclp_vt220_flush_buffer(void)
599 sclp_vt220_emit_current();
600 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
601 if (timer_pending(&sclp_vt220_timer
))
602 del_timer(&sclp_vt220_timer
);
603 while (sclp_vt220_outqueue_count
> 0) {
604 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
606 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
608 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
612 * Pass on all buffers to the hardware. Return only when there are no more
616 sclp_vt220_flush_buffer(struct tty_struct
*tty
)
618 sclp_vt220_emit_current();
622 * Initialize all relevant components and register driver with system.
624 static void __init
__sclp_vt220_cleanup(void)
626 struct list_head
*page
, *p
;
628 list_for_each_safe(page
, p
, &sclp_vt220_empty
) {
630 if (slab_is_available())
631 free_page((unsigned long) page
);
633 free_bootmem((unsigned long) page
, PAGE_SIZE
);
637 static int __init
__sclp_vt220_init(void)
643 if (sclp_vt220_initialized
)
645 sclp_vt220_initialized
= 1;
646 spin_lock_init(&sclp_vt220_lock
);
647 INIT_LIST_HEAD(&sclp_vt220_empty
);
648 INIT_LIST_HEAD(&sclp_vt220_outqueue
);
649 init_waitqueue_head(&sclp_vt220_waitq
);
650 init_timer(&sclp_vt220_timer
);
651 sclp_vt220_current_request
= NULL
;
652 sclp_vt220_buffered_chars
= 0;
653 sclp_vt220_outqueue_count
= 0;
654 sclp_vt220_tty
= NULL
;
655 sclp_vt220_flush_later
= 0;
657 /* Allocate pages for output buffering */
658 num_pages
= slab_is_available() ? MAX_KMEM_PAGES
: MAX_CONSOLE_PAGES
;
659 for (i
= 0; i
< num_pages
; i
++) {
660 if (slab_is_available())
661 page
= (void *) get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
663 page
= alloc_bootmem_low_pages(PAGE_SIZE
);
665 __sclp_vt220_cleanup();
668 list_add_tail((struct list_head
*) page
, &sclp_vt220_empty
);
673 static const struct tty_operations sclp_vt220_ops
= {
674 .open
= sclp_vt220_open
,
675 .close
= sclp_vt220_close
,
676 .write
= sclp_vt220_write
,
677 .put_char
= sclp_vt220_put_char
,
678 .flush_chars
= sclp_vt220_flush_chars
,
679 .write_room
= sclp_vt220_write_room
,
680 .chars_in_buffer
= sclp_vt220_chars_in_buffer
,
681 .flush_buffer
= sclp_vt220_flush_buffer
,
685 * Register driver with SCLP and Linux and initialize internal tty structures.
687 static int __init
sclp_vt220_tty_init(void)
689 struct tty_driver
*driver
;
692 /* Note: we're not testing for CONSOLE_IS_SCLP here to preserve
693 * symmetry between VM and LPAR systems regarding ttyS1. */
694 driver
= alloc_tty_driver(1);
697 rc
= __sclp_vt220_init();
700 rc
= sclp_register(&sclp_vt220_register
);
702 printk(KERN_ERR SCLP_VT220_PRINT_HEADER
703 "could not register tty - "
704 "sclp_register returned %d\n", rc
);
708 driver
->owner
= THIS_MODULE
;
709 driver
->driver_name
= SCLP_VT220_DRIVER_NAME
;
710 driver
->name
= SCLP_VT220_DEVICE_NAME
;
711 driver
->major
= SCLP_VT220_MAJOR
;
712 driver
->minor_start
= SCLP_VT220_MINOR
;
713 driver
->type
= TTY_DRIVER_TYPE_SYSTEM
;
714 driver
->subtype
= SYSTEM_TYPE_TTY
;
715 driver
->init_termios
= tty_std_termios
;
716 driver
->flags
= TTY_DRIVER_REAL_RAW
;
717 tty_set_operations(driver
, &sclp_vt220_ops
);
719 rc
= tty_register_driver(driver
);
721 printk(KERN_ERR SCLP_VT220_PRINT_HEADER
722 "could not register tty - "
723 "tty_register_driver returned %d\n", rc
);
726 sclp_vt220_driver
= driver
;
730 sclp_unregister(&sclp_vt220_register
);
732 __sclp_vt220_cleanup();
734 put_tty_driver(driver
);
737 __initcall(sclp_vt220_tty_init
);
739 #ifdef CONFIG_SCLP_VT220_CONSOLE
742 sclp_vt220_con_write(struct console
*con
, const char *buf
, unsigned int count
)
744 __sclp_vt220_write((const unsigned char *) buf
, count
, 1, 1);
747 static struct tty_driver
*
748 sclp_vt220_con_device(struct console
*c
, int *index
)
751 return sclp_vt220_driver
;
755 * This routine is called from panic when the kernel is going to give up.
756 * We have to make sure that all buffers will be flushed to the SCLP.
757 * Note that this function may be called from within an interrupt context.
760 sclp_vt220_con_unblank(void)
762 __sclp_vt220_flush_buffer();
765 /* Structure needed to register with printk */
766 static struct console sclp_vt220_console
=
768 .name
= SCLP_VT220_CONSOLE_NAME
,
769 .write
= sclp_vt220_con_write
,
770 .device
= sclp_vt220_con_device
,
771 .unblank
= sclp_vt220_con_unblank
,
772 .flags
= CON_PRINTBUFFER
,
773 .index
= SCLP_VT220_CONSOLE_INDEX
777 sclp_vt220_con_init(void)
781 if (!CONSOLE_IS_SCLP
)
783 rc
= __sclp_vt220_init();
786 /* Attach linux console */
787 register_console(&sclp_vt220_console
);
791 console_initcall(sclp_vt220_con_init
);
792 #endif /* CONFIG_SCLP_VT220_CONSOLE */