1 // SPDX-License-Identifier: GPL-2.0
3 * SCLP VT220 terminal driver.
5 * Copyright IBM Corp. 2003, 2009
7 * Author(s): Peter Oberparleiter <Peter.Oberparleiter@de.ibm.com>
10 #include <linux/module.h>
11 #include <linux/spinlock.h>
12 #include <linux/panic_notifier.h>
13 #include <linux/list.h>
14 #include <linux/wait.h>
15 #include <linux/timer.h>
16 #include <linux/kernel.h>
17 #include <linux/sysrq.h>
18 #include <linux/tty.h>
19 #include <linux/tty_driver.h>
20 #include <linux/tty_flip.h>
21 #include <linux/errno.h>
23 #include <linux/major.h>
24 #include <linux/console.h>
25 #include <linux/kdev_t.h>
26 #include <linux/interrupt.h>
27 #include <linux/init.h>
28 #include <linux/reboot.h>
29 #include <linux/slab.h>
31 #include <linux/uaccess.h>
35 #define SCLP_VT220_MAJOR TTY_MAJOR
36 #define SCLP_VT220_MINOR 65
37 #define SCLP_VT220_DRIVER_NAME "sclp_vt220"
38 #define SCLP_VT220_DEVICE_NAME "ttysclp"
39 #define SCLP_VT220_CONSOLE_NAME "ttysclp"
40 #define SCLP_VT220_CONSOLE_INDEX 0 /* console=ttysclp0 */
42 /* Representation of a single write request */
43 struct sclp_vt220_request
{
44 struct list_head list
;
45 struct sclp_req sclp_req
;
50 struct sclp_vt220_sccb
{
51 struct sccb_header header
;
52 struct evbuf_header evbuf
;
55 #define SCLP_VT220_MAX_CHARS_PER_BUFFER (PAGE_SIZE - \
56 sizeof(struct sclp_vt220_request) - \
57 sizeof(struct sclp_vt220_sccb))
59 /* Structures and data needed to register tty driver */
60 static struct tty_driver
*sclp_vt220_driver
;
62 static struct tty_port sclp_vt220_port
;
64 /* Lock to protect internal data from concurrent access */
65 static DEFINE_SPINLOCK(sclp_vt220_lock
);
67 /* List of empty pages to be used as write request buffers */
68 static LIST_HEAD(sclp_vt220_empty
);
70 /* List of pending requests */
71 static LIST_HEAD(sclp_vt220_outqueue
);
73 /* Flag that output queue is currently running */
74 static int sclp_vt220_queue_running
;
76 /* Timer used for delaying write requests to merge subsequent messages into
78 static struct timer_list sclp_vt220_timer
;
80 /* Pointer to current request buffer which has been partially filled but not
82 static struct sclp_vt220_request
*sclp_vt220_current_request
;
84 /* Number of characters in current request buffer */
85 static int sclp_vt220_buffered_chars
;
87 /* Counter controlling core driver initialization. */
88 static int __initdata sclp_vt220_init_count
;
90 /* Flag indicating that sclp_vt220_current_request should really
91 * have been already queued but wasn't because the SCLP was processing
93 static int sclp_vt220_flush_later
;
95 static void sclp_vt220_receiver_fn(struct evbuf_header
*evbuf
);
96 static int __sclp_vt220_emit(struct sclp_vt220_request
*request
);
97 static void sclp_vt220_emit_current(void);
99 /* Registration structure for SCLP output event buffers */
100 static struct sclp_register sclp_vt220_register
= {
101 .send_mask
= EVTYP_VT220MSG_MASK
,
104 /* Registration structure for SCLP input event buffers */
105 static struct sclp_register sclp_vt220_register_input
= {
106 .receive_mask
= EVTYP_VT220MSG_MASK
,
107 .receiver_fn
= sclp_vt220_receiver_fn
,
112 * Put provided request buffer back into queue and check emit pending
113 * buffers if necessary.
116 sclp_vt220_process_queue(struct sclp_vt220_request
*request
)
122 /* Put buffer back to list of empty buffers */
123 page
= request
->sclp_req
.sccb
;
124 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
125 /* Move request from outqueue to empty queue */
126 list_del(&request
->list
);
127 list_add_tail((struct list_head
*) page
, &sclp_vt220_empty
);
128 /* Check if there is a pending buffer on the out queue. */
130 if (!list_empty(&sclp_vt220_outqueue
))
131 request
= list_entry(sclp_vt220_outqueue
.next
,
132 struct sclp_vt220_request
, list
);
134 sclp_vt220_queue_running
= 0;
135 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
138 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
139 } while (__sclp_vt220_emit(request
));
140 if (request
== NULL
&& sclp_vt220_flush_later
)
141 sclp_vt220_emit_current();
142 tty_port_tty_wakeup(&sclp_vt220_port
);
145 #define SCLP_BUFFER_MAX_RETRY 1
148 * Callback through which the result of a write request is reported by the
152 sclp_vt220_callback(struct sclp_req
*request
, void *data
)
154 struct sclp_vt220_request
*vt220_request
;
155 struct sclp_vt220_sccb
*sccb
;
157 vt220_request
= (struct sclp_vt220_request
*) data
;
158 if (request
->status
== SCLP_REQ_FAILED
) {
159 sclp_vt220_process_queue(vt220_request
);
162 sccb
= (struct sclp_vt220_sccb
*) vt220_request
->sclp_req
.sccb
;
164 /* Check SCLP response code and choose suitable action */
165 switch (sccb
->header
.response_code
) {
169 case 0x05f0: /* Target resource in improper state */
172 case 0x0340: /* Contained SCLP equipment check */
173 if (++vt220_request
->retry_count
> SCLP_BUFFER_MAX_RETRY
)
175 /* Remove processed buffers and requeue rest */
176 if (sclp_remove_processed((struct sccb_header
*) sccb
) > 0) {
177 /* Not all buffers were processed */
178 sccb
->header
.response_code
= 0x0000;
179 vt220_request
->sclp_req
.status
= SCLP_REQ_FILLED
;
180 if (sclp_add_request(request
) == 0)
185 case 0x0040: /* SCLP equipment check */
186 if (++vt220_request
->retry_count
> SCLP_BUFFER_MAX_RETRY
)
188 sccb
->header
.response_code
= 0x0000;
189 vt220_request
->sclp_req
.status
= SCLP_REQ_FILLED
;
190 if (sclp_add_request(request
) == 0)
197 sclp_vt220_process_queue(vt220_request
);
201 * Emit vt220 request buffer to SCLP. Return zero on success, non-zero
205 __sclp_vt220_emit(struct sclp_vt220_request
*request
)
207 request
->sclp_req
.command
= SCLP_CMDW_WRITE_EVENT_DATA
;
208 request
->sclp_req
.status
= SCLP_REQ_FILLED
;
209 request
->sclp_req
.callback
= sclp_vt220_callback
;
210 request
->sclp_req
.callback_data
= (void *) request
;
212 return sclp_add_request(&request
->sclp_req
);
216 * Queue and emit current request.
219 sclp_vt220_emit_current(void)
222 struct sclp_vt220_request
*request
;
223 struct sclp_vt220_sccb
*sccb
;
225 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
226 if (sclp_vt220_current_request
) {
227 sccb
= (struct sclp_vt220_sccb
*)
228 sclp_vt220_current_request
->sclp_req
.sccb
;
229 /* Only emit buffers with content */
230 if (sccb
->header
.length
!= sizeof(struct sclp_vt220_sccb
)) {
231 list_add_tail(&sclp_vt220_current_request
->list
,
232 &sclp_vt220_outqueue
);
233 sclp_vt220_current_request
= NULL
;
234 del_timer(&sclp_vt220_timer
);
236 sclp_vt220_flush_later
= 0;
238 if (sclp_vt220_queue_running
)
240 if (list_empty(&sclp_vt220_outqueue
))
242 request
= list_first_entry(&sclp_vt220_outqueue
,
243 struct sclp_vt220_request
, list
);
244 sclp_vt220_queue_running
= 1;
245 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
247 if (__sclp_vt220_emit(request
))
248 sclp_vt220_process_queue(request
);
251 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
254 #define SCLP_NORMAL_WRITE 0x00
257 * Helper function to initialize a page with the sclp request structure.
259 static struct sclp_vt220_request
*
260 sclp_vt220_initialize_page(void *page
)
262 struct sclp_vt220_request
*request
;
263 struct sclp_vt220_sccb
*sccb
;
265 /* Place request structure at end of page */
266 request
= ((struct sclp_vt220_request
*)
267 ((addr_t
) page
+ PAGE_SIZE
)) - 1;
268 request
->retry_count
= 0;
269 request
->sclp_req
.sccb
= page
;
270 /* SCCB goes at start of page */
271 sccb
= (struct sclp_vt220_sccb
*) page
;
272 memset((void *) sccb
, 0, sizeof(struct sclp_vt220_sccb
));
273 sccb
->header
.length
= sizeof(struct sclp_vt220_sccb
);
274 sccb
->header
.function_code
= SCLP_NORMAL_WRITE
;
275 sccb
->header
.response_code
= 0x0000;
276 sccb
->evbuf
.type
= EVTYP_VT220MSG
;
277 sccb
->evbuf
.length
= sizeof(struct evbuf_header
);
282 static inline unsigned int
283 sclp_vt220_space_left(struct sclp_vt220_request
*request
)
285 struct sclp_vt220_sccb
*sccb
;
286 sccb
= (struct sclp_vt220_sccb
*) request
->sclp_req
.sccb
;
287 return PAGE_SIZE
- sizeof(struct sclp_vt220_request
) -
291 static inline unsigned int
292 sclp_vt220_chars_stored(struct sclp_vt220_request
*request
)
294 struct sclp_vt220_sccb
*sccb
;
295 sccb
= (struct sclp_vt220_sccb
*) request
->sclp_req
.sccb
;
296 return sccb
->evbuf
.length
- sizeof(struct evbuf_header
);
300 * Add msg to buffer associated with request. Return the number of characters
304 sclp_vt220_add_msg(struct sclp_vt220_request
*request
,
305 const unsigned char *msg
, int count
, int convertlf
)
307 struct sclp_vt220_sccb
*sccb
;
313 if (count
> sclp_vt220_space_left(request
))
314 count
= sclp_vt220_space_left(request
);
318 sccb
= (struct sclp_vt220_sccb
*) request
->sclp_req
.sccb
;
319 buffer
= (void *) ((addr_t
) sccb
+ sccb
->header
.length
);
322 /* Perform Linefeed conversion (0x0a -> 0x0d 0x0a)*/
324 (from
< count
) && (to
< sclp_vt220_space_left(request
));
326 /* Retrieve character */
328 /* Perform conversion */
330 if (to
+ 1 < sclp_vt220_space_left(request
)) {
331 ((unsigned char *) buffer
)[to
++] = 0x0d;
332 ((unsigned char *) buffer
)[to
++] = c
;
337 ((unsigned char *) buffer
)[to
++] = c
;
339 sccb
->header
.length
+= to
;
340 sccb
->evbuf
.length
+= to
;
343 memcpy(buffer
, (const void *) msg
, count
);
344 sccb
->header
.length
+= count
;
345 sccb
->evbuf
.length
+= count
;
351 * Emit buffer after having waited long enough for more data to arrive.
354 sclp_vt220_timeout(struct timer_list
*unused
)
356 sclp_vt220_emit_current();
359 #define BUFFER_MAX_DELAY HZ/20
362 * Drop oldest console buffer if sclp_con_drop is set
365 sclp_vt220_drop_buffer(void)
367 struct list_head
*list
;
368 struct sclp_vt220_request
*request
;
371 if (!sclp_console_drop
)
373 list
= sclp_vt220_outqueue
.next
;
374 if (sclp_vt220_queue_running
)
375 /* The first element is in I/O */
377 if (list
== &sclp_vt220_outqueue
)
380 request
= list_entry(list
, struct sclp_vt220_request
, list
);
381 page
= request
->sclp_req
.sccb
;
382 list_add_tail((struct list_head
*) page
, &sclp_vt220_empty
);
387 * Internal implementation of the write function. Write COUNT bytes of data
389 * to the SCLP interface. In case that the data does not fit into the current
390 * write buffer, emit the current one and allocate a new one. If there are no
391 * more empty buffers available, wait until one gets emptied. If DO_SCHEDULE
392 * is non-zero, the buffer will be scheduled for emitting after a timeout -
393 * otherwise the user has to explicitly call the flush function.
394 * A non-zero CONVERTLF parameter indicates that 0x0a characters in the message
395 * buffer should be converted to 0x0a 0x0d. After completion, return the number
399 __sclp_vt220_write(const unsigned char *buf
, int count
, int do_schedule
,
400 int convertlf
, int may_fail
)
410 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
412 /* Create an sclp output buffer if none exists yet */
413 if (sclp_vt220_current_request
== NULL
) {
414 if (list_empty(&sclp_vt220_empty
))
416 while (list_empty(&sclp_vt220_empty
)) {
419 if (sclp_vt220_drop_buffer())
421 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
424 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
426 page
= (void *) sclp_vt220_empty
.next
;
427 list_del((struct list_head
*) page
);
428 sclp_vt220_current_request
=
429 sclp_vt220_initialize_page(page
);
431 /* Try to write the string to the current request buffer */
432 written
= sclp_vt220_add_msg(sclp_vt220_current_request
,
433 buf
, count
, convertlf
);
434 overall_written
+= written
;
435 if (written
== count
)
438 * Not all characters could be written to the current
439 * output buffer. Emit the buffer, create a new buffer
440 * and then output the rest of the string.
442 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
443 sclp_vt220_emit_current();
444 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
448 /* Setup timer to output current console buffer after some time */
449 if (sclp_vt220_current_request
!= NULL
&&
450 !timer_pending(&sclp_vt220_timer
) && do_schedule
) {
451 sclp_vt220_timer
.expires
= jiffies
+ BUFFER_MAX_DELAY
;
452 add_timer(&sclp_vt220_timer
);
455 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
456 return overall_written
;
460 * This routine is called by the kernel to write a series of
461 * characters to the tty device. The characters may come from
462 * user space or kernel space. This routine will return the
463 * number of characters actually accepted for writing.
466 sclp_vt220_write(struct tty_struct
*tty
, const u8
*buf
, size_t count
)
468 return __sclp_vt220_write(buf
, count
, 1, 0, 1);
471 #define SCLP_VT220_SESSION_ENDED 0x01
472 #define SCLP_VT220_SESSION_STARTED 0x80
473 #define SCLP_VT220_SESSION_DATA 0x00
475 #ifdef CONFIG_MAGIC_SYSRQ
477 static int sysrq_pressed
;
478 static struct sysrq_work sysrq
;
480 static void sclp_vt220_reset_session(void)
485 static void sclp_vt220_handle_input(const char *buffer
, unsigned int count
)
489 for (i
= 0; i
< count
; i
++) {
490 /* Handle magic sys request */
491 if (buffer
[i
] == ('O' ^ 0100)) { /* CTRL-O */
493 * If pressed again, reset sysrq_pressed
494 * and flip CTRL-O character
496 sysrq_pressed
= !sysrq_pressed
;
499 } else if (sysrq_pressed
) {
500 sysrq
.key
= buffer
[i
];
501 schedule_sysrq_work(&sysrq
);
505 tty_insert_flip_char(&sclp_vt220_port
, buffer
[i
], 0);
511 static void sclp_vt220_reset_session(void)
515 static void sclp_vt220_handle_input(const char *buffer
, unsigned int count
)
517 tty_insert_flip_string(&sclp_vt220_port
, buffer
, count
);
523 * Called by the SCLP to report incoming event buffers.
526 sclp_vt220_receiver_fn(struct evbuf_header
*evbuf
)
531 buffer
= (char *) ((addr_t
) evbuf
+ sizeof(struct evbuf_header
));
532 count
= evbuf
->length
- sizeof(struct evbuf_header
);
535 case SCLP_VT220_SESSION_ENDED
:
536 case SCLP_VT220_SESSION_STARTED
:
537 sclp_vt220_reset_session();
539 case SCLP_VT220_SESSION_DATA
:
540 /* Send input to line discipline */
543 sclp_vt220_handle_input(buffer
, count
);
544 tty_flip_buffer_push(&sclp_vt220_port
);
550 * This routine is called when a particular tty device is opened.
553 sclp_vt220_open(struct tty_struct
*tty
, struct file
*filp
)
555 if (tty
->count
== 1) {
556 tty_port_tty_set(&sclp_vt220_port
, tty
);
557 if (!tty
->winsize
.ws_row
&& !tty
->winsize
.ws_col
) {
558 tty
->winsize
.ws_row
= 24;
559 tty
->winsize
.ws_col
= 80;
566 * This routine is called when a particular tty device is closed.
569 sclp_vt220_close(struct tty_struct
*tty
, struct file
*filp
)
572 tty_port_tty_set(&sclp_vt220_port
, NULL
);
576 * This routine is called by the kernel to write a single
577 * character to the tty device. If the kernel uses this routine,
578 * it must call the flush_chars() routine (if defined) when it is
579 * done stuffing characters into the driver.
582 sclp_vt220_put_char(struct tty_struct
*tty
, u8 ch
)
584 return __sclp_vt220_write(&ch
, 1, 0, 0, 1);
588 * This routine is called by the kernel after it has written a
589 * series of characters to the tty device using put_char().
592 sclp_vt220_flush_chars(struct tty_struct
*tty
)
594 if (!sclp_vt220_queue_running
)
595 sclp_vt220_emit_current();
597 sclp_vt220_flush_later
= 1;
601 * This routine returns the numbers of characters the tty driver
602 * will accept for queuing to be written. This number is subject
603 * to change as output buffers get emptied, or if the output flow
607 sclp_vt220_write_room(struct tty_struct
*tty
)
613 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
615 if (sclp_vt220_current_request
!= NULL
)
616 count
= sclp_vt220_space_left(sclp_vt220_current_request
);
617 list_for_each(l
, &sclp_vt220_empty
)
618 count
+= SCLP_VT220_MAX_CHARS_PER_BUFFER
;
619 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
624 * Return number of buffered chars.
627 sclp_vt220_chars_in_buffer(struct tty_struct
*tty
)
631 struct sclp_vt220_request
*r
;
632 unsigned int count
= 0;
634 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
635 if (sclp_vt220_current_request
!= NULL
)
636 count
= sclp_vt220_chars_stored(sclp_vt220_current_request
);
637 list_for_each(l
, &sclp_vt220_outqueue
) {
638 r
= list_entry(l
, struct sclp_vt220_request
, list
);
639 count
+= sclp_vt220_chars_stored(r
);
641 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
646 * Pass on all buffers to the hardware. Return only when there are no more
650 sclp_vt220_flush_buffer(struct tty_struct
*tty
)
652 sclp_vt220_emit_current();
655 /* Release allocated pages. */
656 static void __init
__sclp_vt220_free_pages(void)
658 struct list_head
*page
, *p
;
660 list_for_each_safe(page
, p
, &sclp_vt220_empty
) {
662 free_page((unsigned long) page
);
666 /* Release memory and unregister from sclp core. Controlled by init counting -
667 * only the last invoker will actually perform these actions. */
668 static void __init
__sclp_vt220_cleanup(void)
670 sclp_vt220_init_count
--;
671 if (sclp_vt220_init_count
!= 0)
673 sclp_unregister(&sclp_vt220_register
);
674 __sclp_vt220_free_pages();
675 tty_port_destroy(&sclp_vt220_port
);
678 /* Allocate buffer pages and register with sclp core. Controlled by init
679 * counting - only the first invoker will actually perform these actions. */
680 static int __init
__sclp_vt220_init(int num_pages
)
686 sclp_vt220_init_count
++;
687 if (sclp_vt220_init_count
!= 1)
689 timer_setup(&sclp_vt220_timer
, sclp_vt220_timeout
, 0);
690 tty_port_init(&sclp_vt220_port
);
691 sclp_vt220_current_request
= NULL
;
692 sclp_vt220_buffered_chars
= 0;
693 sclp_vt220_flush_later
= 0;
695 /* Allocate pages for output buffering */
697 for (i
= 0; i
< num_pages
; i
++) {
698 page
= (void *) get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
701 list_add_tail(page
, &sclp_vt220_empty
);
703 rc
= sclp_register(&sclp_vt220_register
);
706 __sclp_vt220_free_pages();
707 sclp_vt220_init_count
--;
708 tty_port_destroy(&sclp_vt220_port
);
713 static const struct tty_operations sclp_vt220_ops
= {
714 .open
= sclp_vt220_open
,
715 .close
= sclp_vt220_close
,
716 .write
= sclp_vt220_write
,
717 .put_char
= sclp_vt220_put_char
,
718 .flush_chars
= sclp_vt220_flush_chars
,
719 .write_room
= sclp_vt220_write_room
,
720 .chars_in_buffer
= sclp_vt220_chars_in_buffer
,
721 .flush_buffer
= sclp_vt220_flush_buffer
,
725 * Register driver with SCLP and Linux and initialize internal tty structures.
727 static int __init
sclp_vt220_tty_init(void)
729 struct tty_driver
*driver
;
732 /* Note: we're not testing for CONSOLE_IS_SCLP here to preserve
733 * symmetry between VM and LPAR systems regarding ttyS1. */
734 driver
= tty_alloc_driver(1, TTY_DRIVER_REAL_RAW
);
736 return PTR_ERR(driver
);
737 rc
= __sclp_vt220_init(MAX_KMEM_PAGES
);
741 driver
->driver_name
= SCLP_VT220_DRIVER_NAME
;
742 driver
->name
= SCLP_VT220_DEVICE_NAME
;
743 driver
->major
= SCLP_VT220_MAJOR
;
744 driver
->minor_start
= SCLP_VT220_MINOR
;
745 driver
->type
= TTY_DRIVER_TYPE_SYSTEM
;
746 driver
->subtype
= SYSTEM_TYPE_TTY
;
747 driver
->init_termios
= tty_std_termios
;
748 tty_set_operations(driver
, &sclp_vt220_ops
);
749 tty_port_link_device(&sclp_vt220_port
, driver
, 0);
751 rc
= tty_register_driver(driver
);
754 rc
= sclp_register(&sclp_vt220_register_input
);
757 sclp_vt220_driver
= driver
;
761 tty_unregister_driver(driver
);
763 __sclp_vt220_cleanup();
765 tty_driver_kref_put(driver
);
768 __initcall(sclp_vt220_tty_init
);
770 #ifdef CONFIG_SCLP_VT220_CONSOLE
773 sclp_vt220_con_write(struct console
*con
, const char *buf
, unsigned int count
)
775 __sclp_vt220_write((const unsigned char *) buf
, count
, 1, 1, 0);
778 static struct tty_driver
*
779 sclp_vt220_con_device(struct console
*c
, int *index
)
782 return sclp_vt220_driver
;
786 * This panic/reboot notifier runs in atomic context, so
787 * locking restrictions apply to prevent potential lockups.
790 sclp_vt220_notify(struct notifier_block
*self
,
791 unsigned long event
, void *data
)
795 if (spin_is_locked(&sclp_vt220_lock
))
798 sclp_vt220_emit_current();
800 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
801 del_timer(&sclp_vt220_timer
);
802 while (sclp_vt220_queue_running
) {
803 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
805 spin_lock_irqsave(&sclp_vt220_lock
, flags
);
807 spin_unlock_irqrestore(&sclp_vt220_lock
, flags
);
812 static struct notifier_block on_panic_nb
= {
813 .notifier_call
= sclp_vt220_notify
,
814 .priority
= INT_MIN
+ 1, /* run the callback late */
817 static struct notifier_block on_reboot_nb
= {
818 .notifier_call
= sclp_vt220_notify
,
819 .priority
= INT_MIN
+ 1, /* run the callback late */
822 /* Structure needed to register with printk */
823 static struct console sclp_vt220_console
=
825 .name
= SCLP_VT220_CONSOLE_NAME
,
826 .write
= sclp_vt220_con_write
,
827 .device
= sclp_vt220_con_device
,
828 .flags
= CON_PRINTBUFFER
,
829 .index
= SCLP_VT220_CONSOLE_INDEX
833 sclp_vt220_con_init(void)
837 rc
= __sclp_vt220_init(sclp_console_pages
);
840 /* Attach linux console */
841 atomic_notifier_chain_register(&panic_notifier_list
, &on_panic_nb
);
842 register_reboot_notifier(&on_reboot_nb
);
843 register_console(&sclp_vt220_console
);
847 console_initcall(sclp_vt220_con_init
);
848 #endif /* CONFIG_SCLP_VT220_CONSOLE */