1 // SPDX-License-Identifier: GPL-2.0
3 * 3215 line mode terminal driver.
5 * Copyright IBM Corp. 1999, 2009
6 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
9 * Aug-2000: Added tab support
10 * Dan Morrison, IBM Corporation <dmorriso@cse.buffalo.edu>
13 #include <linux/types.h>
14 #include <linux/kdev_t.h>
15 #include <linux/tty.h>
16 #include <linux/tty_flip.h>
17 #include <linux/vt_kern.h>
18 #include <linux/init.h>
19 #include <linux/console.h>
20 #include <linux/interrupt.h>
21 #include <linux/err.h>
22 #include <linux/panic_notifier.h>
23 #include <linux/reboot.h>
24 #include <linux/serial.h> /* ASYNC_* flags */
25 #include <linux/slab.h>
26 #include <asm/ccwdev.h>
29 #include <asm/ebcdic.h>
30 #include <linux/uaccess.h>
31 #include <asm/delay.h>
32 #include <asm/cpcmd.h>
33 #include <asm/setup.h>
38 #define NR_3215_REQ (4*NR_3215)
39 #define RAW3215_BUFFER_SIZE 65536 /* output buffer size */
40 #define RAW3215_INBUF_SIZE 256 /* input buffer size */
41 #define RAW3215_MIN_SPACE 128 /* minimum free space for wakeup */
42 #define RAW3215_MIN_WRITE 1024 /* min. length for immediate output */
43 #define RAW3215_MAX_BYTES 3968 /* max. bytes to write with one ssch */
44 #define RAW3215_MAX_NEWLINE 50 /* max. lines to write with one ssch */
45 #define RAW3215_NR_CCWS 3
46 #define RAW3215_TIMEOUT HZ/10 /* time for delayed output */
48 #define RAW3215_FIXED 1 /* 3215 console device is not be freed */
49 #define RAW3215_WORKING 4 /* set if a request is being worked on */
50 #define RAW3215_THROTTLED 8 /* set if reading is disabled */
51 #define RAW3215_STOPPED 16 /* set if writing is disabled */
52 #define RAW3215_TIMER_RUNS 64 /* set if the output delay timer is on */
53 #define RAW3215_FLUSHING 128 /* set to flush buffer (no delay) */
55 #define TAB_STOP_SIZE 8 /* tab stop size */
58 * Request types for a 3215 device
61 RAW3215_FREE
, RAW3215_READ
, RAW3215_WRITE
65 * Request structure for a 3215 device
68 enum raw3215_type type
; /* type of the request */
69 int start
, len
; /* start index & len in output buffer */
70 int delayable
; /* indication to wait for more data */
71 int residual
; /* residual count for read request */
72 struct ccw1 ccws
[RAW3215_NR_CCWS
]; /* space for the channel program */
73 struct raw3215_info
*info
; /* pointer to main structure */
74 struct raw3215_req
*next
; /* pointer to next request */
75 } __attribute__ ((aligned(8)));
79 struct ccw_device
*cdev
; /* device for tty driver */
80 spinlock_t
*lock
; /* pointer to irq lock */
81 int flags
; /* state flags */
82 u8
*buffer
; /* pointer to output buffer */
83 u8
*inbuf
; /* pointer to input buffer */
84 int head
; /* first free byte in output buffer */
85 int count
; /* number of bytes in output buffer */
86 int written
; /* number of bytes in write requests */
87 struct raw3215_req
*queued_read
; /* pointer to queued read requests */
88 struct raw3215_req
*queued_write
;/* pointer to queued write requests */
89 wait_queue_head_t empty_wait
; /* wait queue for flushing */
90 struct timer_list timer
; /* timer for delayed output */
91 int line_pos
; /* position on the line (for tabs) */
94 /* array of 3215 devices structures */
95 static struct raw3215_info
*raw3215
[NR_3215
];
96 /* spinlock to protect the raw3215 array */
97 static DEFINE_SPINLOCK(raw3215_device_lock
);
98 /* list of free request structures */
99 static struct raw3215_req
*raw3215_freelist
;
100 /* spinlock to protect free list */
101 static DEFINE_SPINLOCK(raw3215_freelist_lock
);
103 static struct tty_driver
*tty3215_driver
;
104 static bool con3215_drop
= true;
107 * Get a request structure from the free list
109 static inline struct raw3215_req
*raw3215_alloc_req(void)
111 struct raw3215_req
*req
;
114 spin_lock_irqsave(&raw3215_freelist_lock
, flags
);
115 req
= raw3215_freelist
;
116 raw3215_freelist
= req
->next
;
117 spin_unlock_irqrestore(&raw3215_freelist_lock
, flags
);
122 * Put a request structure back to the free list
124 static inline void raw3215_free_req(struct raw3215_req
*req
)
128 if (req
->type
== RAW3215_FREE
)
129 return; /* don't free a free request */
130 req
->type
= RAW3215_FREE
;
131 spin_lock_irqsave(&raw3215_freelist_lock
, flags
);
132 req
->next
= raw3215_freelist
;
133 raw3215_freelist
= req
;
134 spin_unlock_irqrestore(&raw3215_freelist_lock
, flags
);
138 * Set up a read request that reads up to 160 byte from the 3215 device.
139 * If there is a queued read request it is used, but that shouldn't happen
140 * because a 3215 terminal won't accept a new read before the old one is
143 static void raw3215_mk_read_req(struct raw3215_info
*raw
)
145 struct raw3215_req
*req
;
148 /* there can only be ONE read request at a time */
149 req
= raw
->queued_read
;
151 /* no queued read request, use new req structure */
152 req
= raw3215_alloc_req();
153 req
->type
= RAW3215_READ
;
155 raw
->queued_read
= req
;
159 ccw
->cmd_code
= 0x0A; /* read inquiry */
160 ccw
->flags
= 0x20; /* ignore incorrect length */
162 ccw
->cda
= virt_to_dma32(raw
->inbuf
);
166 * Set up a write request with the information from the main structure.
167 * A ccw chain is created that writes as much as possible from the output
168 * buffer to the 3215 device. If a queued write exists it is replaced by
169 * the new, probably lengthened request.
171 static void raw3215_mk_write_req(struct raw3215_info
*raw
)
173 struct raw3215_req
*req
;
175 int len
, count
, ix
, lines
;
177 if (raw
->count
<= raw
->written
)
179 /* check if there is a queued write request */
180 req
= raw
->queued_write
;
182 /* no queued write request, use new req structure */
183 req
= raw3215_alloc_req();
184 req
->type
= RAW3215_WRITE
;
186 raw
->queued_write
= req
;
188 raw
->written
-= req
->len
;
192 req
->start
= (raw
->head
- raw
->count
+ raw
->written
) &
193 (RAW3215_BUFFER_SIZE
- 1);
195 * now we have to count newlines. We can at max accept
196 * RAW3215_MAX_NEWLINE newlines in a single ssch due to
197 * a restriction in VM
201 while (lines
< RAW3215_MAX_NEWLINE
&& ix
!= raw
->head
) {
202 if (raw
->buffer
[ix
] == 0x15)
204 ix
= (ix
+ 1) & (RAW3215_BUFFER_SIZE
- 1);
206 len
= ((ix
- 1 - req
->start
) & (RAW3215_BUFFER_SIZE
- 1)) + 1;
207 if (len
> RAW3215_MAX_BYTES
)
208 len
= RAW3215_MAX_BYTES
;
212 /* set the indication if we should try to enlarge this request */
213 req
->delayable
= (ix
== raw
->head
) && (len
< RAW3215_MIN_WRITE
);
218 ccw
[-1].flags
|= 0x40; /* use command chaining */
219 ccw
->cmd_code
= 0x01; /* write, auto carrier return */
220 ccw
->flags
= 0x20; /* ignore incorrect length ind. */
221 ccw
->cda
= virt_to_dma32(raw
->buffer
+ ix
);
223 if (ix
+ count
> RAW3215_BUFFER_SIZE
)
224 count
= RAW3215_BUFFER_SIZE
- ix
;
227 ix
= (ix
+ count
) & (RAW3215_BUFFER_SIZE
- 1);
231 * Add a NOP to the channel program. 3215 devices are purely
232 * emulated and its much better to avoid the channel end
233 * interrupt in this case.
236 ccw
[-1].flags
|= 0x40; /* use command chaining */
237 ccw
->cmd_code
= 0x03; /* NOP */
244 * Start a read or a write request
246 static void raw3215_start_io(struct raw3215_info
*raw
)
248 struct raw3215_req
*req
;
251 req
= raw
->queued_read
;
253 !(raw
->flags
& (RAW3215_WORKING
| RAW3215_THROTTLED
))) {
254 /* dequeue request */
255 raw
->queued_read
= NULL
;
256 res
= ccw_device_start(raw
->cdev
, req
->ccws
,
257 (unsigned long) req
, 0, 0);
259 /* do_IO failed, put request back to queue */
260 raw
->queued_read
= req
;
262 raw
->flags
|= RAW3215_WORKING
;
265 req
= raw
->queued_write
;
267 !(raw
->flags
& (RAW3215_WORKING
| RAW3215_STOPPED
))) {
268 /* dequeue request */
269 raw
->queued_write
= NULL
;
270 res
= ccw_device_start(raw
->cdev
, req
->ccws
,
271 (unsigned long) req
, 0, 0);
273 /* do_IO failed, put request back to queue */
274 raw
->queued_write
= req
;
276 raw
->flags
|= RAW3215_WORKING
;
282 * Function to start a delayed output after RAW3215_TIMEOUT seconds
284 static void raw3215_timeout(struct timer_list
*t
)
286 struct raw3215_info
*raw
= from_timer(raw
, t
, timer
);
289 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
290 raw
->flags
&= ~RAW3215_TIMER_RUNS
;
291 raw3215_mk_write_req(raw
);
292 raw3215_start_io(raw
);
293 if ((raw
->queued_read
|| raw
->queued_write
) &&
294 !(raw
->flags
& RAW3215_WORKING
) &&
295 !(raw
->flags
& RAW3215_TIMER_RUNS
)) {
296 raw
->timer
.expires
= RAW3215_TIMEOUT
+ jiffies
;
297 add_timer(&raw
->timer
);
298 raw
->flags
|= RAW3215_TIMER_RUNS
;
300 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
304 * Function to conditionally start an IO. A read is started immediately,
305 * a write is only started immediately if the flush flag is on or the
306 * amount of data is bigger than RAW3215_MIN_WRITE. If a write is not
307 * done immediately a timer is started with a delay of RAW3215_TIMEOUT.
309 static inline void raw3215_try_io(struct raw3215_info
*raw
)
311 if (!tty_port_initialized(&raw
->port
))
313 if (raw
->queued_read
!= NULL
)
314 raw3215_start_io(raw
);
315 else if (raw
->queued_write
!= NULL
) {
316 if ((raw
->queued_write
->delayable
== 0) ||
317 (raw
->flags
& RAW3215_FLUSHING
)) {
318 /* execute write requests bigger than minimum size */
319 raw3215_start_io(raw
);
322 if ((raw
->queued_read
|| raw
->queued_write
) &&
323 !(raw
->flags
& RAW3215_WORKING
) &&
324 !(raw
->flags
& RAW3215_TIMER_RUNS
)) {
325 raw
->timer
.expires
= RAW3215_TIMEOUT
+ jiffies
;
326 add_timer(&raw
->timer
);
327 raw
->flags
|= RAW3215_TIMER_RUNS
;
332 * Try to start the next IO and wake up processes waiting on the tty.
334 static void raw3215_next_io(struct raw3215_info
*raw
, struct tty_struct
*tty
)
336 raw3215_mk_write_req(raw
);
338 if (tty
&& RAW3215_BUFFER_SIZE
- raw
->count
>= RAW3215_MIN_SPACE
)
343 * Interrupt routine, called from common io layer
345 static void raw3215_irq(struct ccw_device
*cdev
, unsigned long intparm
,
348 struct raw3215_info
*raw
;
349 struct raw3215_req
*req
;
350 struct tty_struct
*tty
;
354 raw
= dev_get_drvdata(&cdev
->dev
);
355 req
= (struct raw3215_req
*) intparm
;
356 tty
= tty_port_tty_get(&raw
->port
);
357 cstat
= irb
->scsw
.cmd
.cstat
;
358 dstat
= irb
->scsw
.cmd
.dstat
;
360 raw3215_next_io(raw
, tty
);
361 if (dstat
& 0x01) { /* we got a unit exception */
362 dstat
&= ~0x01; /* we can ignore it */
368 /* Attention interrupt, someone hit the enter key */
369 raw3215_mk_read_req(raw
);
370 raw3215_next_io(raw
, tty
);
374 /* Channel end interrupt. */
375 if ((raw
= req
->info
) == NULL
)
376 goto put_tty
; /* That shouldn't happen ... */
377 if (req
->type
== RAW3215_READ
) {
378 /* store residual count, then wait for device end */
379 req
->residual
= irb
->scsw
.cmd
.count
;
385 /* Device end interrupt. */
386 if ((raw
= req
->info
) == NULL
)
387 goto put_tty
; /* That shouldn't happen ... */
388 if (req
->type
== RAW3215_READ
&& tty
!= NULL
) {
391 count
= 160 - req
->residual
;
392 EBCASC(raw
->inbuf
, count
);
393 cchar
= ctrlchar_handle(raw
->inbuf
, count
, tty
);
394 switch (cchar
& CTRLCHAR_MASK
) {
399 tty_insert_flip_char(&raw
->port
, cchar
,
401 tty_flip_buffer_push(&raw
->port
);
406 (strncmp(raw
->inbuf
+count
-2, "\252n", 2) &&
407 strncmp(raw
->inbuf
+count
-2, "^n", 2)) ) {
408 /* add the auto \n */
409 raw
->inbuf
[count
] = '\n';
413 tty_insert_flip_string(&raw
->port
, raw
->inbuf
,
415 tty_flip_buffer_push(&raw
->port
);
418 } else if (req
->type
== RAW3215_WRITE
) {
419 raw
->count
-= req
->len
;
420 raw
->written
-= req
->len
;
422 raw
->flags
&= ~RAW3215_WORKING
;
423 raw3215_free_req(req
);
424 /* check for empty wait */
425 if (waitqueue_active(&raw
->empty_wait
) &&
426 raw
->queued_write
== NULL
&&
427 raw
->queued_read
== NULL
) {
428 wake_up_interruptible(&raw
->empty_wait
);
430 raw3215_next_io(raw
, tty
);
433 /* Strange interrupt, I'll do my best to clean up */
434 if (req
!= NULL
&& req
->type
!= RAW3215_FREE
) {
435 if (req
->type
== RAW3215_WRITE
) {
436 raw
->count
-= req
->len
;
437 raw
->written
-= req
->len
;
439 raw
->flags
&= ~RAW3215_WORKING
;
440 raw3215_free_req(req
);
442 raw3215_next_io(raw
, tty
);
449 * Need to drop data to avoid blocking. Drop as much data as possible.
450 * This is unqueued part in the buffer and the queued part in the request.
451 * Also adjust the head position to append new data and set count
454 * Return number of bytes available in buffer.
456 static unsigned int raw3215_drop(struct raw3215_info
*raw
)
458 struct raw3215_req
*req
;
460 req
= raw
->queued_write
;
462 /* Drop queued data and delete request */
463 raw
->written
-= req
->len
;
464 raw3215_free_req(req
);
465 raw
->queued_write
= NULL
;
467 raw
->head
= (raw
->head
- raw
->count
+ raw
->written
) &
468 (RAW3215_BUFFER_SIZE
- 1);
469 raw
->count
= raw
->written
;
471 return RAW3215_BUFFER_SIZE
- raw
->count
;
475 * Wait until length bytes are available int the output buffer.
476 * If drop mode is active and wait condition holds true, start dropping
478 * Has to be called with the s390irq lock held. Can be called
481 static unsigned int raw3215_make_room(struct raw3215_info
*raw
,
482 unsigned int length
, bool drop
)
484 while (RAW3215_BUFFER_SIZE
- raw
->count
< length
) {
486 return raw3215_drop(raw
);
488 /* there might be a request pending */
489 raw
->flags
|= RAW3215_FLUSHING
;
490 raw3215_mk_write_req(raw
);
492 raw
->flags
&= ~RAW3215_FLUSHING
;
493 #ifdef CONFIG_TN3215_CONSOLE
494 ccw_device_wait_idle(raw
->cdev
);
496 /* Enough room freed up ? */
497 if (RAW3215_BUFFER_SIZE
- raw
->count
>= length
)
499 /* there might be another cpu waiting for the lock */
500 spin_unlock(get_ccwdev_lock(raw
->cdev
));
502 spin_lock(get_ccwdev_lock(raw
->cdev
));
507 #define RAW3215_COUNT 1
508 #define RAW3215_STORE 2
511 * Add text to console buffer. Find tabs in input and calculate size
512 * including tab replacement.
513 * This function operates in 2 different modes, depending on parameter
515 * RAW3215_COUNT: Get the size needed for the input string with
516 * proper tab replacement calculation.
517 * Return value is the number of bytes required to store the
518 * input. However no data is actually stored.
519 * The parameter todrop is not used.
520 * RAW3215_STORE: Add data to the console buffer. The parameter todrop is
521 * valid and contains the number of bytes to be dropped from head of
522 * string without blocking.
523 * Return value is the number of bytes copied.
525 static unsigned int raw3215_addtext(const u8
*str
, size_t length
,
526 struct raw3215_info
*raw
, int opmode
,
529 unsigned int i
, blanks
, expanded_size
= 0;
530 unsigned int column
= raw
->line_pos
;
534 if (opmode
== RAW3215_COUNT
)
537 for (c
= 0; c
< length
; ++c
) {
547 blanks
= TAB_STOP_SIZE
- (column
% TAB_STOP_SIZE
);
549 expanded_size
+= blanks
;
558 if (opmode
== RAW3215_COUNT
)
560 if (todrop
&& expanded_size
< todrop
) /* Drop head data */
562 for (i
= 0; i
< blanks
; i
++) {
563 raw
->buffer
[raw
->head
] = _ascebc
[ch
];
564 raw
->head
= (raw
->head
+ 1) & (RAW3215_BUFFER_SIZE
- 1);
567 raw
->line_pos
= column
;
569 return expanded_size
- todrop
;
573 * String write routine for 3215 devices
575 static void raw3215_write(struct raw3215_info
*raw
, const u8
*str
,
578 unsigned int count
, avail
;
581 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
583 count
= raw3215_addtext(str
, length
, raw
, RAW3215_COUNT
, 0);
585 avail
= raw3215_make_room(raw
, count
, con3215_drop
);
587 raw3215_addtext(str
, length
, raw
, RAW3215_STORE
,
590 if (!(raw
->flags
& RAW3215_WORKING
)) {
591 raw3215_mk_write_req(raw
);
592 /* start or queue request */
595 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
599 * Put character routine for 3215 devices
601 static void raw3215_putchar(struct raw3215_info
*raw
, u8 ch
)
603 raw3215_write(raw
, &ch
, 1);
607 * Flush routine, it simply sets the flush flag and tries to start
610 static void raw3215_flush_buffer(struct raw3215_info
*raw
)
614 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
615 if (raw
->count
> 0) {
616 raw
->flags
|= RAW3215_FLUSHING
;
618 raw
->flags
&= ~RAW3215_FLUSHING
;
620 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
624 * Fire up a 3215 device.
626 static int raw3215_startup(struct raw3215_info
*raw
)
630 if (tty_port_initialized(&raw
->port
))
633 tty_port_set_initialized(&raw
->port
, true);
634 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
636 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
642 * Shutdown a 3215 device.
644 static void raw3215_shutdown(struct raw3215_info
*raw
)
646 DECLARE_WAITQUEUE(wait
, current
);
649 if (!tty_port_initialized(&raw
->port
) || (raw
->flags
& RAW3215_FIXED
))
651 /* Wait for outstanding requests, then free irq */
652 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
653 if ((raw
->flags
& RAW3215_WORKING
) ||
654 raw
->queued_write
!= NULL
||
655 raw
->queued_read
!= NULL
) {
656 add_wait_queue(&raw
->empty_wait
, &wait
);
657 set_current_state(TASK_INTERRUPTIBLE
);
658 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
660 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
661 remove_wait_queue(&raw
->empty_wait
, &wait
);
662 set_current_state(TASK_RUNNING
);
663 tty_port_set_initialized(&raw
->port
, true);
665 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
668 static struct raw3215_info
*raw3215_alloc_info(void)
670 struct raw3215_info
*info
;
672 info
= kzalloc(sizeof(struct raw3215_info
), GFP_KERNEL
| GFP_DMA
);
676 info
->buffer
= kzalloc(RAW3215_BUFFER_SIZE
, GFP_KERNEL
| GFP_DMA
);
677 info
->inbuf
= kzalloc(RAW3215_INBUF_SIZE
, GFP_KERNEL
| GFP_DMA
);
678 if (!info
->buffer
|| !info
->inbuf
) {
685 timer_setup(&info
->timer
, raw3215_timeout
, 0);
686 init_waitqueue_head(&info
->empty_wait
);
687 tty_port_init(&info
->port
);
692 static void raw3215_free_info(struct raw3215_info
*raw
)
696 tty_port_destroy(&raw
->port
);
700 static int raw3215_probe(struct ccw_device
*cdev
)
702 struct raw3215_info
*raw
;
705 /* Console is special. */
706 if (raw3215
[0] && (raw3215
[0] == dev_get_drvdata(&cdev
->dev
)))
709 raw
= raw3215_alloc_info();
714 dev_set_drvdata(&cdev
->dev
, raw
);
715 cdev
->handler
= raw3215_irq
;
717 spin_lock(&raw3215_device_lock
);
718 for (line
= 0; line
< NR_3215
; line
++) {
719 if (!raw3215
[line
]) {
724 spin_unlock(&raw3215_device_lock
);
725 if (line
== NR_3215
) {
726 raw3215_free_info(raw
);
733 static void raw3215_remove(struct ccw_device
*cdev
)
735 struct raw3215_info
*raw
;
738 ccw_device_set_offline(cdev
);
739 raw
= dev_get_drvdata(&cdev
->dev
);
741 spin_lock(&raw3215_device_lock
);
742 for (line
= 0; line
< NR_3215
; line
++)
743 if (raw3215
[line
] == raw
)
745 raw3215
[line
] = NULL
;
746 spin_unlock(&raw3215_device_lock
);
747 dev_set_drvdata(&cdev
->dev
, NULL
);
748 raw3215_free_info(raw
);
752 static int raw3215_set_online(struct ccw_device
*cdev
)
754 struct raw3215_info
*raw
;
756 raw
= dev_get_drvdata(&cdev
->dev
);
760 return raw3215_startup(raw
);
763 static int raw3215_set_offline(struct ccw_device
*cdev
)
765 struct raw3215_info
*raw
;
767 raw
= dev_get_drvdata(&cdev
->dev
);
771 raw3215_shutdown(raw
);
776 static struct ccw_device_id raw3215_id
[] = {
777 { CCW_DEVICE(0x3215, 0) },
778 { /* end of list */ },
781 static ssize_t
con_drop_store(struct device_driver
*dev
, const char *buf
, size_t count
)
786 rc
= kstrtobool(buf
, &drop
);
792 static ssize_t
con_drop_show(struct device_driver
*dev
, char *buf
)
794 return sysfs_emit(buf
, "%d\n", con3215_drop
? 1 : 0);
797 static DRIVER_ATTR_RW(con_drop
);
799 static struct attribute
*con3215_drv_attrs
[] = {
800 &driver_attr_con_drop
.attr
,
804 static struct attribute_group con3215_drv_attr_group
= {
805 .attrs
= con3215_drv_attrs
,
808 static const struct attribute_group
*con3215_drv_attr_groups
[] = {
809 &con3215_drv_attr_group
,
813 static struct ccw_driver raw3215_ccw_driver
= {
816 .groups
= con3215_drv_attr_groups
,
817 .owner
= THIS_MODULE
,
820 .probe
= &raw3215_probe
,
821 .remove
= &raw3215_remove
,
822 .set_online
= &raw3215_set_online
,
823 .set_offline
= &raw3215_set_offline
,
824 .int_class
= IRQIO_C15
,
827 static void handle_write(struct raw3215_info
*raw
, const u8
*str
, size_t count
)
830 size_t i
= min_t(size_t, count
, RAW3215_BUFFER_SIZE
- 1);
831 raw3215_write(raw
, str
, i
);
837 #ifdef CONFIG_TN3215_CONSOLE
839 * Write a string to the 3215 console
841 static void con3215_write(struct console
*co
, const char *str
, unsigned int count
)
843 handle_write(raw3215
[0], str
, count
);
846 static struct tty_driver
*con3215_device(struct console
*c
, int *index
)
849 return tty3215_driver
;
853 * The below function is called as a panic/reboot notifier before the
854 * system enters a disabled, endless loop.
856 * Notice we must use the spin_trylock() alternative, to prevent lockups
857 * in atomic context (panic routine runs with secondary CPUs, local IRQs
858 * and preemption disabled).
860 static int con3215_notify(struct notifier_block
*self
,
861 unsigned long event
, void *data
)
863 struct raw3215_info
*raw
;
866 raw
= raw3215
[0]; /* console 3215 is the first one */
867 if (!spin_trylock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
))
869 raw3215_make_room(raw
, RAW3215_BUFFER_SIZE
, false);
870 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
875 static struct notifier_block on_panic_nb
= {
876 .notifier_call
= con3215_notify
,
877 .priority
= INT_MIN
+ 1, /* run the callback late */
880 static struct notifier_block on_reboot_nb
= {
881 .notifier_call
= con3215_notify
,
882 .priority
= INT_MIN
+ 1, /* run the callback late */
886 * The console structure for the 3215 console
888 static struct console con3215
= {
890 .write
= con3215_write
,
891 .device
= con3215_device
,
892 .flags
= CON_PRINTBUFFER
,
896 * 3215 console initialization code called from console_init().
898 static int __init
con3215_init(void)
900 struct ccw_device
*cdev
;
901 struct raw3215_info
*raw
;
902 struct raw3215_req
*req
;
905 /* Check if 3215 is to be the console */
906 if (!CONSOLE_IS_3215
)
909 /* Set the console mode for VM */
911 cpcmd("TERM CONMODE 3215", NULL
, 0, NULL
);
912 cpcmd("TERM AUTOCR OFF", NULL
, 0, NULL
);
915 /* allocate 3215 request structures */
916 raw3215_freelist
= NULL
;
917 for (i
= 0; i
< NR_3215_REQ
; i
++) {
918 req
= kzalloc(sizeof(struct raw3215_req
), GFP_KERNEL
| GFP_DMA
);
921 req
->next
= raw3215_freelist
;
922 raw3215_freelist
= req
;
925 cdev
= ccw_device_create_console(&raw3215_ccw_driver
);
929 raw3215
[0] = raw
= raw3215_alloc_info();
931 dev_set_drvdata(&cdev
->dev
, raw
);
932 cdev
->handler
= raw3215_irq
;
934 raw
->flags
|= RAW3215_FIXED
;
935 if (ccw_device_enable_console(cdev
)) {
936 ccw_device_destroy_console(cdev
);
937 raw3215_free_info(raw
);
942 /* Request the console irq */
943 if (raw3215_startup(raw
) != 0) {
944 raw3215_free_info(raw
);
948 atomic_notifier_chain_register(&panic_notifier_list
, &on_panic_nb
);
949 register_reboot_notifier(&on_reboot_nb
);
950 register_console(&con3215
);
953 console_initcall(con3215_init
);
956 static int tty3215_install(struct tty_driver
*driver
, struct tty_struct
*tty
)
958 struct raw3215_info
*raw
;
960 raw
= raw3215
[tty
->index
];
964 tty
->driver_data
= raw
;
966 return tty_port_install(&raw
->port
, driver
, tty
);
972 * This routine is called whenever a 3215 tty is opened.
974 static int tty3215_open(struct tty_struct
*tty
, struct file
* filp
)
976 struct raw3215_info
*raw
= tty
->driver_data
;
978 tty_port_tty_set(&raw
->port
, tty
);
981 * Start up 3215 device
983 return raw3215_startup(raw
);
989 * This routine is called when the 3215 tty is closed. We wait
990 * for the remaining request to be completed. Then we clean up.
992 static void tty3215_close(struct tty_struct
*tty
, struct file
* filp
)
994 struct raw3215_info
*raw
= tty
->driver_data
;
996 if (raw
== NULL
|| tty
->count
> 1)
999 /* Shutdown the terminal */
1000 raw3215_shutdown(raw
);
1002 tty_port_tty_set(&raw
->port
, NULL
);
1006 * Returns the amount of free space in the output buffer.
1008 static unsigned int tty3215_write_room(struct tty_struct
*tty
)
1010 struct raw3215_info
*raw
= tty
->driver_data
;
1012 /* Subtract TAB_STOP_SIZE to allow for a tab, 8 <<< 64K */
1013 if ((RAW3215_BUFFER_SIZE
- raw
->count
- TAB_STOP_SIZE
) >= 0)
1014 return RAW3215_BUFFER_SIZE
- raw
->count
- TAB_STOP_SIZE
;
1020 * String write routine for 3215 ttys
1022 static ssize_t
tty3215_write(struct tty_struct
*tty
, const u8
*buf
,
1025 handle_write(tty
->driver_data
, buf
, count
);
1030 * Put character routine for 3215 ttys
1032 static int tty3215_put_char(struct tty_struct
*tty
, u8 ch
)
1034 struct raw3215_info
*raw
= tty
->driver_data
;
1036 raw3215_putchar(raw
, ch
);
1041 static void tty3215_flush_chars(struct tty_struct
*tty
)
1046 * Returns the number of characters in the output buffer
1048 static unsigned int tty3215_chars_in_buffer(struct tty_struct
*tty
)
1050 struct raw3215_info
*raw
= tty
->driver_data
;
1055 static void tty3215_flush_buffer(struct tty_struct
*tty
)
1057 struct raw3215_info
*raw
= tty
->driver_data
;
1059 raw3215_flush_buffer(raw
);
1064 * Disable reading from a 3215 tty
1066 static void tty3215_throttle(struct tty_struct
*tty
)
1068 struct raw3215_info
*raw
= tty
->driver_data
;
1070 raw
->flags
|= RAW3215_THROTTLED
;
1074 * Enable reading from a 3215 tty
1076 static void tty3215_unthrottle(struct tty_struct
*tty
)
1078 struct raw3215_info
*raw
= tty
->driver_data
;
1079 unsigned long flags
;
1081 if (raw
->flags
& RAW3215_THROTTLED
) {
1082 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
1083 raw
->flags
&= ~RAW3215_THROTTLED
;
1084 raw3215_try_io(raw
);
1085 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
1090 * Disable writing to a 3215 tty
1092 static void tty3215_stop(struct tty_struct
*tty
)
1094 struct raw3215_info
*raw
= tty
->driver_data
;
1096 raw
->flags
|= RAW3215_STOPPED
;
1100 * Enable writing to a 3215 tty
1102 static void tty3215_start(struct tty_struct
*tty
)
1104 struct raw3215_info
*raw
= tty
->driver_data
;
1105 unsigned long flags
;
1107 if (raw
->flags
& RAW3215_STOPPED
) {
1108 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
1109 raw
->flags
&= ~RAW3215_STOPPED
;
1110 raw3215_try_io(raw
);
1111 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
1115 static const struct tty_operations tty3215_ops
= {
1116 .install
= tty3215_install
,
1117 .open
= tty3215_open
,
1118 .close
= tty3215_close
,
1119 .write
= tty3215_write
,
1120 .put_char
= tty3215_put_char
,
1121 .flush_chars
= tty3215_flush_chars
,
1122 .write_room
= tty3215_write_room
,
1123 .chars_in_buffer
= tty3215_chars_in_buffer
,
1124 .flush_buffer
= tty3215_flush_buffer
,
1125 .throttle
= tty3215_throttle
,
1126 .unthrottle
= tty3215_unthrottle
,
1127 .stop
= tty3215_stop
,
1128 .start
= tty3215_start
,
1131 static int __init
con3215_setup_drop(char *str
)
1136 rc
= kstrtobool(str
, &drop
);
1138 con3215_drop
= drop
;
1141 early_param("con3215_drop", con3215_setup_drop
);
1144 * 3215 tty registration code called from tty_init().
1145 * Most kernel services (incl. kmalloc) are available at this poimt.
1147 static int __init
tty3215_init(void)
1149 struct tty_driver
*driver
;
1152 if (!CONSOLE_IS_3215
)
1155 driver
= tty_alloc_driver(NR_3215
, TTY_DRIVER_REAL_RAW
);
1157 return PTR_ERR(driver
);
1159 ret
= ccw_driver_register(&raw3215_ccw_driver
);
1161 tty_driver_kref_put(driver
);
1165 * Initialize the tty_driver structure
1166 * Entries in tty3215_driver that are NOT initialized:
1167 * proc_entry, set_termios, flush_buffer, set_ldisc, write_proc
1170 driver
->driver_name
= "tty3215";
1171 driver
->name
= "ttyS";
1172 driver
->major
= TTY_MAJOR
;
1173 driver
->minor_start
= 64;
1174 driver
->type
= TTY_DRIVER_TYPE_SYSTEM
;
1175 driver
->subtype
= SYSTEM_TYPE_TTY
;
1176 driver
->init_termios
= tty_std_termios
;
1177 driver
->init_termios
.c_iflag
= IGNBRK
| IGNPAR
;
1178 driver
->init_termios
.c_oflag
= ONLCR
;
1179 driver
->init_termios
.c_lflag
= ISIG
;
1180 tty_set_operations(driver
, &tty3215_ops
);
1181 ret
= tty_register_driver(driver
);
1183 tty_driver_kref_put(driver
);
1186 tty3215_driver
= driver
;
1189 device_initcall(tty3215_init
);