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/reboot.h>
23 #include <linux/serial.h> /* ASYNC_* flags */
24 #include <linux/slab.h>
25 #include <asm/ccwdev.h>
28 #include <asm/ebcdic.h>
29 #include <linux/uaccess.h>
30 #include <asm/delay.h>
31 #include <asm/cpcmd.h>
32 #include <asm/setup.h>
37 #define NR_3215_REQ (4*NR_3215)
38 #define RAW3215_BUFFER_SIZE 65536 /* output buffer size */
39 #define RAW3215_INBUF_SIZE 256 /* input buffer size */
40 #define RAW3215_MIN_SPACE 128 /* minimum free space for wakeup */
41 #define RAW3215_MIN_WRITE 1024 /* min. length for immediate output */
42 #define RAW3215_MAX_BYTES 3968 /* max. bytes to write with one ssch */
43 #define RAW3215_MAX_NEWLINE 50 /* max. lines to write with one ssch */
44 #define RAW3215_NR_CCWS 3
45 #define RAW3215_TIMEOUT HZ/10 /* time for delayed output */
47 #define RAW3215_FIXED 1 /* 3215 console device is not be freed */
48 #define RAW3215_WORKING 4 /* set if a request is being worked on */
49 #define RAW3215_THROTTLED 8 /* set if reading is disabled */
50 #define RAW3215_STOPPED 16 /* set if writing is disabled */
51 #define RAW3215_TIMER_RUNS 64 /* set if the output delay timer is on */
52 #define RAW3215_FLUSHING 128 /* set to flush buffer (no delay) */
54 #define TAB_STOP_SIZE 8 /* tab stop size */
57 * Request types for a 3215 device
60 RAW3215_FREE
, RAW3215_READ
, RAW3215_WRITE
64 * Request structure for a 3215 device
67 enum raw3215_type type
; /* type of the request */
68 int start
, len
; /* start index & len in output buffer */
69 int delayable
; /* indication to wait for more data */
70 int residual
; /* residual count for read request */
71 struct ccw1 ccws
[RAW3215_NR_CCWS
]; /* space for the channel program */
72 struct raw3215_info
*info
; /* pointer to main structure */
73 struct raw3215_req
*next
; /* pointer to next request */
74 } __attribute__ ((aligned(8)));
78 struct ccw_device
*cdev
; /* device for tty driver */
79 spinlock_t
*lock
; /* pointer to irq lock */
80 int flags
; /* state flags */
81 char *buffer
; /* pointer to output buffer */
82 char *inbuf
; /* pointer to input buffer */
83 int head
; /* first free byte in output buffer */
84 int count
; /* number of bytes in output buffer */
85 int written
; /* number of bytes in write requests */
86 struct raw3215_req
*queued_read
; /* pointer to queued read requests */
87 struct raw3215_req
*queued_write
;/* pointer to queued write requests */
88 struct tasklet_struct tlet
; /* tasklet to invoke tty_wakeup */
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) */
92 char ubuffer
[80]; /* copy_from_user buffer */
95 /* array of 3215 devices structures */
96 static struct raw3215_info
*raw3215
[NR_3215
];
97 /* spinlock to protect the raw3215 array */
98 static DEFINE_SPINLOCK(raw3215_device_lock
);
99 /* list of free request structures */
100 static struct raw3215_req
*raw3215_freelist
;
101 /* spinlock to protect free list */
102 static spinlock_t raw3215_freelist_lock
;
104 static struct tty_driver
*tty3215_driver
;
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
= (__u32
) __pa(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. */
222 (__u32
) __pa(raw
->buffer
+ ix
);
224 if (ix
+ count
> RAW3215_BUFFER_SIZE
)
225 count
= RAW3215_BUFFER_SIZE
- ix
;
228 ix
= (ix
+ count
) & (RAW3215_BUFFER_SIZE
- 1);
232 * Add a NOP to the channel program. 3215 devices are purely
233 * emulated and its much better to avoid the channel end
234 * interrupt in this case.
237 ccw
[-1].flags
|= 0x40; /* use command chaining */
238 ccw
->cmd_code
= 0x03; /* NOP */
245 * Start a read or a write request
247 static void raw3215_start_io(struct raw3215_info
*raw
)
249 struct raw3215_req
*req
;
252 req
= raw
->queued_read
;
254 !(raw
->flags
& (RAW3215_WORKING
| RAW3215_THROTTLED
))) {
255 /* dequeue request */
256 raw
->queued_read
= NULL
;
257 res
= ccw_device_start(raw
->cdev
, req
->ccws
,
258 (unsigned long) req
, 0, 0);
260 /* do_IO failed, put request back to queue */
261 raw
->queued_read
= req
;
263 raw
->flags
|= RAW3215_WORKING
;
266 req
= raw
->queued_write
;
268 !(raw
->flags
& (RAW3215_WORKING
| RAW3215_STOPPED
))) {
269 /* dequeue request */
270 raw
->queued_write
= NULL
;
271 res
= ccw_device_start(raw
->cdev
, req
->ccws
,
272 (unsigned long) req
, 0, 0);
274 /* do_IO failed, put request back to queue */
275 raw
->queued_write
= req
;
277 raw
->flags
|= RAW3215_WORKING
;
283 * Function to start a delayed output after RAW3215_TIMEOUT seconds
285 static void raw3215_timeout(struct timer_list
*t
)
287 struct raw3215_info
*raw
= from_timer(raw
, t
, timer
);
290 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
291 raw
->flags
&= ~RAW3215_TIMER_RUNS
;
292 if (!tty_port_suspended(&raw
->port
)) {
293 raw3215_mk_write_req(raw
);
294 raw3215_start_io(raw
);
295 if ((raw
->queued_read
|| raw
->queued_write
) &&
296 !(raw
->flags
& RAW3215_WORKING
) &&
297 !(raw
->flags
& RAW3215_TIMER_RUNS
)) {
298 raw
->timer
.expires
= RAW3215_TIMEOUT
+ jiffies
;
299 add_timer(&raw
->timer
);
300 raw
->flags
|= RAW3215_TIMER_RUNS
;
303 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
307 * Function to conditionally start an IO. A read is started immediately,
308 * a write is only started immediately if the flush flag is on or the
309 * amount of data is bigger than RAW3215_MIN_WRITE. If a write is not
310 * done immediately a timer is started with a delay of RAW3215_TIMEOUT.
312 static inline void raw3215_try_io(struct raw3215_info
*raw
)
314 if (!tty_port_initialized(&raw
->port
) || tty_port_suspended(&raw
->port
))
316 if (raw
->queued_read
!= NULL
)
317 raw3215_start_io(raw
);
318 else if (raw
->queued_write
!= NULL
) {
319 if ((raw
->queued_write
->delayable
== 0) ||
320 (raw
->flags
& RAW3215_FLUSHING
)) {
321 /* execute write requests bigger than minimum size */
322 raw3215_start_io(raw
);
325 if ((raw
->queued_read
|| raw
->queued_write
) &&
326 !(raw
->flags
& RAW3215_WORKING
) &&
327 !(raw
->flags
& RAW3215_TIMER_RUNS
)) {
328 raw
->timer
.expires
= RAW3215_TIMEOUT
+ jiffies
;
329 add_timer(&raw
->timer
);
330 raw
->flags
|= RAW3215_TIMER_RUNS
;
335 * Call tty_wakeup from tasklet context
337 static void raw3215_wakeup(unsigned long data
)
339 struct raw3215_info
*raw
= (struct raw3215_info
*) data
;
340 struct tty_struct
*tty
;
342 tty
= tty_port_tty_get(&raw
->port
);
350 * Try to start the next IO and wake up processes waiting on the tty.
352 static void raw3215_next_io(struct raw3215_info
*raw
, struct tty_struct
*tty
)
354 raw3215_mk_write_req(raw
);
356 if (tty
&& RAW3215_BUFFER_SIZE
- raw
->count
>= RAW3215_MIN_SPACE
)
357 tasklet_schedule(&raw
->tlet
);
361 * Interrupt routine, called from common io layer
363 static void raw3215_irq(struct ccw_device
*cdev
, unsigned long intparm
,
366 struct raw3215_info
*raw
;
367 struct raw3215_req
*req
;
368 struct tty_struct
*tty
;
372 raw
= dev_get_drvdata(&cdev
->dev
);
373 req
= (struct raw3215_req
*) intparm
;
374 tty
= tty_port_tty_get(&raw
->port
);
375 cstat
= irb
->scsw
.cmd
.cstat
;
376 dstat
= irb
->scsw
.cmd
.dstat
;
378 raw3215_next_io(raw
, tty
);
379 if (dstat
& 0x01) { /* we got a unit exception */
380 dstat
&= ~0x01; /* we can ignore it */
386 /* Attention interrupt, someone hit the enter key */
387 raw3215_mk_read_req(raw
);
388 raw3215_next_io(raw
, tty
);
392 /* Channel end interrupt. */
393 if ((raw
= req
->info
) == NULL
)
394 goto put_tty
; /* That shouldn't happen ... */
395 if (req
->type
== RAW3215_READ
) {
396 /* store residual count, then wait for device end */
397 req
->residual
= irb
->scsw
.cmd
.count
;
402 /* Device end interrupt. */
403 if ((raw
= req
->info
) == NULL
)
404 goto put_tty
; /* That shouldn't happen ... */
405 if (req
->type
== RAW3215_READ
&& tty
!= NULL
) {
408 count
= 160 - req
->residual
;
409 EBCASC(raw
->inbuf
, count
);
410 cchar
= ctrlchar_handle(raw
->inbuf
, count
, tty
);
411 switch (cchar
& CTRLCHAR_MASK
) {
416 tty_insert_flip_char(&raw
->port
, cchar
,
418 tty_flip_buffer_push(&raw
->port
);
423 (strncmp(raw
->inbuf
+count
-2, "\252n", 2) &&
424 strncmp(raw
->inbuf
+count
-2, "^n", 2)) ) {
425 /* add the auto \n */
426 raw
->inbuf
[count
] = '\n';
430 tty_insert_flip_string(&raw
->port
, raw
->inbuf
,
432 tty_flip_buffer_push(&raw
->port
);
435 } else 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
);
441 /* check for empty wait */
442 if (waitqueue_active(&raw
->empty_wait
) &&
443 raw
->queued_write
== NULL
&&
444 raw
->queued_read
== NULL
) {
445 wake_up_interruptible(&raw
->empty_wait
);
447 raw3215_next_io(raw
, tty
);
450 /* Strange interrupt, I'll do my best to clean up */
451 if (req
!= NULL
&& req
->type
!= RAW3215_FREE
) {
452 if (req
->type
== RAW3215_WRITE
) {
453 raw
->count
-= req
->len
;
454 raw
->written
-= req
->len
;
456 raw
->flags
&= ~RAW3215_WORKING
;
457 raw3215_free_req(req
);
459 raw3215_next_io(raw
, tty
);
466 * Drop the oldest line from the output buffer.
468 static void raw3215_drop_line(struct raw3215_info
*raw
)
473 BUG_ON(raw
->written
!= 0);
474 ix
= (raw
->head
- raw
->count
) & (RAW3215_BUFFER_SIZE
- 1);
475 while (raw
->count
> 0) {
476 ch
= raw
->buffer
[ix
];
477 ix
= (ix
+ 1) & (RAW3215_BUFFER_SIZE
- 1);
486 * Wait until length bytes are available int the output buffer.
487 * Has to be called with the s390irq lock held. Can be called
490 static void raw3215_make_room(struct raw3215_info
*raw
, unsigned int length
)
492 while (RAW3215_BUFFER_SIZE
- raw
->count
< length
) {
493 /* While console is frozen for suspend we have no other
494 * choice but to drop message from the buffer to make
495 * room for even more messages. */
496 if (tty_port_suspended(&raw
->port
)) {
497 raw3215_drop_line(raw
);
500 /* there might be a request pending */
501 raw
->flags
|= RAW3215_FLUSHING
;
502 raw3215_mk_write_req(raw
);
504 raw
->flags
&= ~RAW3215_FLUSHING
;
505 #ifdef CONFIG_TN3215_CONSOLE
506 ccw_device_wait_idle(raw
->cdev
);
508 /* Enough room freed up ? */
509 if (RAW3215_BUFFER_SIZE
- raw
->count
>= length
)
511 /* there might be another cpu waiting for the lock */
512 spin_unlock(get_ccwdev_lock(raw
->cdev
));
514 spin_lock(get_ccwdev_lock(raw
->cdev
));
519 * String write routine for 3215 devices
521 static void raw3215_write(struct raw3215_info
*raw
, const char *str
,
528 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
529 count
= (length
> RAW3215_BUFFER_SIZE
) ?
530 RAW3215_BUFFER_SIZE
: length
;
533 raw3215_make_room(raw
, count
);
535 /* copy string to output buffer and convert it to EBCDIC */
537 c
= min_t(int, count
,
538 min(RAW3215_BUFFER_SIZE
- raw
->count
,
539 RAW3215_BUFFER_SIZE
- raw
->head
));
542 memcpy(raw
->buffer
+ raw
->head
, str
, c
);
543 ASCEBC(raw
->buffer
+ raw
->head
, c
);
544 raw
->head
= (raw
->head
+ c
) & (RAW3215_BUFFER_SIZE
- 1);
550 if (!(raw
->flags
& RAW3215_WORKING
)) {
551 raw3215_mk_write_req(raw
);
552 /* start or queue request */
555 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
560 * Put character routine for 3215 devices
562 static void raw3215_putchar(struct raw3215_info
*raw
, unsigned char ch
)
565 unsigned int length
, i
;
567 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
569 length
= TAB_STOP_SIZE
- (raw
->line_pos
%TAB_STOP_SIZE
);
570 raw
->line_pos
+= length
;
572 } else if (ch
== '\n') {
579 raw3215_make_room(raw
, length
);
581 for (i
= 0; i
< length
; i
++) {
582 raw
->buffer
[raw
->head
] = (char) _ascebc
[(int) ch
];
583 raw
->head
= (raw
->head
+ 1) & (RAW3215_BUFFER_SIZE
- 1);
586 if (!(raw
->flags
& RAW3215_WORKING
)) {
587 raw3215_mk_write_req(raw
);
588 /* start or queue request */
591 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
595 * Flush routine, it simply sets the flush flag and tries to start
598 static void raw3215_flush_buffer(struct raw3215_info
*raw
)
602 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
603 if (raw
->count
> 0) {
604 raw
->flags
|= RAW3215_FLUSHING
;
606 raw
->flags
&= ~RAW3215_FLUSHING
;
608 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
612 * Fire up a 3215 device.
614 static int raw3215_startup(struct raw3215_info
*raw
)
618 if (tty_port_initialized(&raw
->port
))
621 tty_port_set_initialized(&raw
->port
, 1);
622 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
624 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
630 * Shutdown a 3215 device.
632 static void raw3215_shutdown(struct raw3215_info
*raw
)
634 DECLARE_WAITQUEUE(wait
, current
);
637 if (!tty_port_initialized(&raw
->port
) || (raw
->flags
& RAW3215_FIXED
))
639 /* Wait for outstanding requests, then free irq */
640 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
641 if ((raw
->flags
& RAW3215_WORKING
) ||
642 raw
->queued_write
!= NULL
||
643 raw
->queued_read
!= NULL
) {
644 add_wait_queue(&raw
->empty_wait
, &wait
);
645 set_current_state(TASK_INTERRUPTIBLE
);
646 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
648 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
649 remove_wait_queue(&raw
->empty_wait
, &wait
);
650 set_current_state(TASK_RUNNING
);
651 tty_port_set_initialized(&raw
->port
, 1);
653 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
656 static struct raw3215_info
*raw3215_alloc_info(void)
658 struct raw3215_info
*info
;
660 info
= kzalloc(sizeof(struct raw3215_info
), GFP_KERNEL
| GFP_DMA
);
664 info
->buffer
= kzalloc(RAW3215_BUFFER_SIZE
, GFP_KERNEL
| GFP_DMA
);
665 info
->inbuf
= kzalloc(RAW3215_INBUF_SIZE
, GFP_KERNEL
| GFP_DMA
);
666 if (!info
->buffer
|| !info
->inbuf
) {
673 timer_setup(&info
->timer
, raw3215_timeout
, 0);
674 init_waitqueue_head(&info
->empty_wait
);
675 tasklet_init(&info
->tlet
, raw3215_wakeup
, (unsigned long)info
);
676 tty_port_init(&info
->port
);
681 static void raw3215_free_info(struct raw3215_info
*raw
)
685 tty_port_destroy(&raw
->port
);
689 static int raw3215_probe (struct ccw_device
*cdev
)
691 struct raw3215_info
*raw
;
694 /* Console is special. */
695 if (raw3215
[0] && (raw3215
[0] == dev_get_drvdata(&cdev
->dev
)))
698 raw
= raw3215_alloc_info();
703 dev_set_drvdata(&cdev
->dev
, raw
);
704 cdev
->handler
= raw3215_irq
;
706 spin_lock(&raw3215_device_lock
);
707 for (line
= 0; line
< NR_3215
; line
++) {
708 if (!raw3215
[line
]) {
713 spin_unlock(&raw3215_device_lock
);
714 if (line
== NR_3215
) {
715 raw3215_free_info(raw
);
722 static void raw3215_remove (struct ccw_device
*cdev
)
724 struct raw3215_info
*raw
;
727 ccw_device_set_offline(cdev
);
728 raw
= dev_get_drvdata(&cdev
->dev
);
730 spin_lock(&raw3215_device_lock
);
731 for (line
= 0; line
< NR_3215
; line
++)
732 if (raw3215
[line
] == raw
)
734 raw3215
[line
] = NULL
;
735 spin_unlock(&raw3215_device_lock
);
736 dev_set_drvdata(&cdev
->dev
, NULL
);
737 raw3215_free_info(raw
);
741 static int raw3215_set_online (struct ccw_device
*cdev
)
743 struct raw3215_info
*raw
;
745 raw
= dev_get_drvdata(&cdev
->dev
);
749 return raw3215_startup(raw
);
752 static int raw3215_set_offline (struct ccw_device
*cdev
)
754 struct raw3215_info
*raw
;
756 raw
= dev_get_drvdata(&cdev
->dev
);
760 raw3215_shutdown(raw
);
765 static int raw3215_pm_stop(struct ccw_device
*cdev
)
767 struct raw3215_info
*raw
;
770 /* Empty the output buffer, then prevent new I/O. */
771 raw
= dev_get_drvdata(&cdev
->dev
);
772 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
773 raw3215_make_room(raw
, RAW3215_BUFFER_SIZE
);
774 tty_port_set_suspended(&raw
->port
, 1);
775 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
779 static int raw3215_pm_start(struct ccw_device
*cdev
)
781 struct raw3215_info
*raw
;
784 /* Allow I/O again and flush output buffer. */
785 raw
= dev_get_drvdata(&cdev
->dev
);
786 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
787 tty_port_set_suspended(&raw
->port
, 0);
788 raw
->flags
|= RAW3215_FLUSHING
;
790 raw
->flags
&= ~RAW3215_FLUSHING
;
791 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
795 static struct ccw_device_id raw3215_id
[] = {
796 { CCW_DEVICE(0x3215, 0) },
797 { /* end of list */ },
800 static struct ccw_driver raw3215_ccw_driver
= {
803 .owner
= THIS_MODULE
,
806 .probe
= &raw3215_probe
,
807 .remove
= &raw3215_remove
,
808 .set_online
= &raw3215_set_online
,
809 .set_offline
= &raw3215_set_offline
,
810 .freeze
= &raw3215_pm_stop
,
811 .thaw
= &raw3215_pm_start
,
812 .restore
= &raw3215_pm_start
,
813 .int_class
= IRQIO_C15
,
816 #ifdef CONFIG_TN3215_CONSOLE
818 * Write a string to the 3215 console
820 static void con3215_write(struct console
*co
, const char *str
,
823 struct raw3215_info
*raw
;
828 raw
= raw3215
[0]; /* console 3215 is the first one */
830 for (i
= 0; i
< count
; i
++)
831 if (str
[i
] == '\t' || str
[i
] == '\n')
833 raw3215_write(raw
, str
, i
);
837 raw3215_putchar(raw
, *str
);
844 static struct tty_driver
*con3215_device(struct console
*c
, int *index
)
847 return tty3215_driver
;
851 * panic() calls con3215_flush through a panic_notifier
852 * before the system enters a disabled, endless loop.
854 static void con3215_flush(void)
856 struct raw3215_info
*raw
;
859 raw
= raw3215
[0]; /* console 3215 is the first one */
860 if (tty_port_suspended(&raw
->port
))
861 /* The console is still frozen for suspend. */
862 if (ccw_device_force_console(raw
->cdev
))
863 /* Forcing didn't work, no panic message .. */
865 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
866 raw3215_make_room(raw
, RAW3215_BUFFER_SIZE
);
867 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
870 static int con3215_notify(struct notifier_block
*self
,
871 unsigned long event
, void *data
)
877 static struct notifier_block on_panic_nb
= {
878 .notifier_call
= con3215_notify
,
882 static struct notifier_block on_reboot_nb
= {
883 .notifier_call
= con3215_notify
,
888 * The console structure for the 3215 console
890 static struct console con3215
= {
892 .write
= con3215_write
,
893 .device
= con3215_device
,
894 .flags
= CON_PRINTBUFFER
,
898 * 3215 console initialization code called from console_init().
900 static int __init
con3215_init(void)
902 struct ccw_device
*cdev
;
903 struct raw3215_info
*raw
;
904 struct raw3215_req
*req
;
907 /* Check if 3215 is to be the console */
908 if (!CONSOLE_IS_3215
)
911 /* Set the console mode for VM */
913 cpcmd("TERM CONMODE 3215", NULL
, 0, NULL
);
914 cpcmd("TERM AUTOCR OFF", NULL
, 0, NULL
);
917 /* allocate 3215 request structures */
918 raw3215_freelist
= NULL
;
919 spin_lock_init(&raw3215_freelist_lock
);
920 for (i
= 0; i
< NR_3215_REQ
; i
++) {
921 req
= kzalloc(sizeof(struct raw3215_req
), GFP_KERNEL
| GFP_DMA
);
924 req
->next
= raw3215_freelist
;
925 raw3215_freelist
= req
;
928 cdev
= ccw_device_create_console(&raw3215_ccw_driver
);
932 raw3215
[0] = raw
= raw3215_alloc_info();
934 dev_set_drvdata(&cdev
->dev
, raw
);
935 cdev
->handler
= raw3215_irq
;
937 raw
->flags
|= RAW3215_FIXED
;
938 if (ccw_device_enable_console(cdev
)) {
939 ccw_device_destroy_console(cdev
);
940 raw3215_free_info(raw
);
945 /* Request the console irq */
946 if (raw3215_startup(raw
) != 0) {
947 raw3215_free_info(raw
);
951 atomic_notifier_chain_register(&panic_notifier_list
, &on_panic_nb
);
952 register_reboot_notifier(&on_reboot_nb
);
953 register_console(&con3215
);
956 console_initcall(con3215_init
);
959 static int tty3215_install(struct tty_driver
*driver
, struct tty_struct
*tty
)
961 struct raw3215_info
*raw
;
963 raw
= raw3215
[tty
->index
];
967 tty
->driver_data
= raw
;
969 return tty_port_install(&raw
->port
, driver
, tty
);
975 * This routine is called whenever a 3215 tty is opened.
977 static int tty3215_open(struct tty_struct
*tty
, struct file
* filp
)
979 struct raw3215_info
*raw
= tty
->driver_data
;
982 tty_port_tty_set(&raw
->port
, tty
);
984 raw
->port
.low_latency
= 0; /* don't use bottom half for pushing chars */
986 * Start up 3215 device
988 retval
= raw3215_startup(raw
);
998 * This routine is called when the 3215 tty is closed. We wait
999 * for the remaining request to be completed. Then we clean up.
1001 static void tty3215_close(struct tty_struct
*tty
, struct file
* filp
)
1003 struct raw3215_info
*raw
;
1005 raw
= (struct raw3215_info
*) tty
->driver_data
;
1006 if (raw
== NULL
|| tty
->count
> 1)
1009 /* Shutdown the terminal */
1010 raw3215_shutdown(raw
);
1011 tasklet_kill(&raw
->tlet
);
1013 tty_port_tty_set(&raw
->port
, NULL
);
1017 * Returns the amount of free space in the output buffer.
1019 static int tty3215_write_room(struct tty_struct
*tty
)
1021 struct raw3215_info
*raw
;
1023 raw
= (struct raw3215_info
*) tty
->driver_data
;
1025 /* Subtract TAB_STOP_SIZE to allow for a tab, 8 <<< 64K */
1026 if ((RAW3215_BUFFER_SIZE
- raw
->count
- TAB_STOP_SIZE
) >= 0)
1027 return RAW3215_BUFFER_SIZE
- raw
->count
- TAB_STOP_SIZE
;
1033 * String write routine for 3215 ttys
1035 static int tty3215_write(struct tty_struct
* tty
,
1036 const unsigned char *buf
, int count
)
1038 struct raw3215_info
*raw
;
1043 raw
= (struct raw3215_info
*) tty
->driver_data
;
1046 for (i
= 0; i
< count
; i
++)
1047 if (buf
[i
] == '\t' || buf
[i
] == '\n')
1049 raw3215_write(raw
, buf
, i
);
1053 raw3215_putchar(raw
, *buf
);
1062 * Put character routine for 3215 ttys
1064 static int tty3215_put_char(struct tty_struct
*tty
, unsigned char ch
)
1066 struct raw3215_info
*raw
;
1070 raw
= (struct raw3215_info
*) tty
->driver_data
;
1071 raw3215_putchar(raw
, ch
);
1075 static void tty3215_flush_chars(struct tty_struct
*tty
)
1080 * Returns the number of characters in the output buffer
1082 static int tty3215_chars_in_buffer(struct tty_struct
*tty
)
1084 struct raw3215_info
*raw
;
1086 raw
= (struct raw3215_info
*) tty
->driver_data
;
1090 static void tty3215_flush_buffer(struct tty_struct
*tty
)
1092 struct raw3215_info
*raw
;
1094 raw
= (struct raw3215_info
*) tty
->driver_data
;
1095 raw3215_flush_buffer(raw
);
1100 * Disable reading from a 3215 tty
1102 static void tty3215_throttle(struct tty_struct
* tty
)
1104 struct raw3215_info
*raw
;
1106 raw
= (struct raw3215_info
*) tty
->driver_data
;
1107 raw
->flags
|= RAW3215_THROTTLED
;
1111 * Enable reading from a 3215 tty
1113 static void tty3215_unthrottle(struct tty_struct
* tty
)
1115 struct raw3215_info
*raw
;
1116 unsigned long flags
;
1118 raw
= (struct raw3215_info
*) tty
->driver_data
;
1119 if (raw
->flags
& RAW3215_THROTTLED
) {
1120 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
1121 raw
->flags
&= ~RAW3215_THROTTLED
;
1122 raw3215_try_io(raw
);
1123 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
1128 * Disable writing to a 3215 tty
1130 static void tty3215_stop(struct tty_struct
*tty
)
1132 struct raw3215_info
*raw
;
1134 raw
= (struct raw3215_info
*) tty
->driver_data
;
1135 raw
->flags
|= RAW3215_STOPPED
;
1139 * Enable writing to a 3215 tty
1141 static void tty3215_start(struct tty_struct
*tty
)
1143 struct raw3215_info
*raw
;
1144 unsigned long flags
;
1146 raw
= (struct raw3215_info
*) tty
->driver_data
;
1147 if (raw
->flags
& RAW3215_STOPPED
) {
1148 spin_lock_irqsave(get_ccwdev_lock(raw
->cdev
), flags
);
1149 raw
->flags
&= ~RAW3215_STOPPED
;
1150 raw3215_try_io(raw
);
1151 spin_unlock_irqrestore(get_ccwdev_lock(raw
->cdev
), flags
);
1155 static const struct tty_operations tty3215_ops
= {
1156 .install
= tty3215_install
,
1157 .open
= tty3215_open
,
1158 .close
= tty3215_close
,
1159 .write
= tty3215_write
,
1160 .put_char
= tty3215_put_char
,
1161 .flush_chars
= tty3215_flush_chars
,
1162 .write_room
= tty3215_write_room
,
1163 .chars_in_buffer
= tty3215_chars_in_buffer
,
1164 .flush_buffer
= tty3215_flush_buffer
,
1165 .throttle
= tty3215_throttle
,
1166 .unthrottle
= tty3215_unthrottle
,
1167 .stop
= tty3215_stop
,
1168 .start
= tty3215_start
,
1172 * 3215 tty registration code called from tty_init().
1173 * Most kernel services (incl. kmalloc) are available at this poimt.
1175 static int __init
tty3215_init(void)
1177 struct tty_driver
*driver
;
1180 if (!CONSOLE_IS_3215
)
1183 driver
= alloc_tty_driver(NR_3215
);
1187 ret
= ccw_driver_register(&raw3215_ccw_driver
);
1189 put_tty_driver(driver
);
1193 * Initialize the tty_driver structure
1194 * Entries in tty3215_driver that are NOT initialized:
1195 * proc_entry, set_termios, flush_buffer, set_ldisc, write_proc
1198 driver
->driver_name
= "tty3215";
1199 driver
->name
= "ttyS";
1200 driver
->major
= TTY_MAJOR
;
1201 driver
->minor_start
= 64;
1202 driver
->type
= TTY_DRIVER_TYPE_SYSTEM
;
1203 driver
->subtype
= SYSTEM_TYPE_TTY
;
1204 driver
->init_termios
= tty_std_termios
;
1205 driver
->init_termios
.c_iflag
= IGNBRK
| IGNPAR
;
1206 driver
->init_termios
.c_oflag
= ONLCR
;
1207 driver
->init_termios
.c_lflag
= ISIG
;
1208 driver
->flags
= TTY_DRIVER_REAL_RAW
;
1209 tty_set_operations(driver
, &tty3215_ops
);
1210 ret
= tty_register_driver(driver
);
1212 put_tty_driver(driver
);
1215 tty3215_driver
= driver
;
1218 device_initcall(tty3215_init
);