blob: 7c72945908801a8dfb3fb64d98435858250f0645 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Martin Schwidefsky77812a22009-06-16 10:30:29 +02002 * 3215 line mode terminal driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Martin Schwidefsky77812a22009-06-16 10:30:29 +02004 * Copyright IBM Corp. 1999, 2009
5 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Martin Schwidefsky77812a22009-06-16 10:30:29 +02007 * Updated:
8 * Aug-2000: Added tab support
9 * Dan Morrison, IBM Corporation <dmorriso@cse.buffalo.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
13#include <linux/types.h>
14#include <linux/kdev_t.h>
15#include <linux/tty.h>
Alan Cox33f0f882006-01-09 20:54:13 -080016#include <linux/tty_flip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/vt_kern.h>
18#include <linux/init.h>
19#include <linux/console.h>
20#include <linux/interrupt.h>
Peter Oberparleiter600b5d12006-02-01 03:06:35 -080021#include <linux/err.h>
Holger Smolinski2332ce12008-10-10 21:33:27 +020022#include <linux/reboot.h>
Jiri Slaby8dd360f2012-04-11 11:14:58 +020023#include <linux/serial.h> /* ASYNC_* flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/ccwdev.h>
26#include <asm/cio.h>
27#include <asm/io.h>
28#include <asm/ebcdic.h>
29#include <asm/uaccess.h>
30#include <asm/delay.h>
31#include <asm/cpcmd.h>
32#include <asm/setup.h>
33
34#include "ctrlchar.h"
35
36#define NR_3215 1
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 */
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define RAW3215_WORKING 4 /* set if a request is being worked on */
48#define RAW3215_THROTTLED 8 /* set if reading is disabled */
49#define RAW3215_STOPPED 16 /* set if writing is disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define RAW3215_TIMER_RUNS 64 /* set if the output delay timer is on */
51#define RAW3215_FLUSHING 128 /* set to flush buffer (no delay) */
52
53#define TAB_STOP_SIZE 8 /* tab stop size */
54
55/*
56 * Request types for a 3215 device
57 */
58enum raw3215_type {
59 RAW3215_FREE, RAW3215_READ, RAW3215_WRITE
60};
61
62/*
63 * Request structure for a 3215 device
64 */
65struct raw3215_req {
66 enum raw3215_type type; /* type of the request */
67 int start, len; /* start index & len in output buffer */
68 int delayable; /* indication to wait for more data */
69 int residual; /* residual count for read request */
70 struct ccw1 ccws[RAW3215_NR_CCWS]; /* space for the channel program */
71 struct raw3215_info *info; /* pointer to main structure */
72 struct raw3215_req *next; /* pointer to next request */
73} __attribute__ ((aligned(8)));
74
75struct raw3215_info {
Jiri Slaby8dd360f2012-04-11 11:14:58 +020076 struct tty_port port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 struct ccw_device *cdev; /* device for tty driver */
78 spinlock_t *lock; /* pointer to irq lock */
79 int flags; /* state flags */
80 char *buffer; /* pointer to output buffer */
81 char *inbuf; /* pointer to input buffer */
82 int head; /* first free byte in output buffer */
83 int count; /* number of bytes in output buffer */
84 int written; /* number of bytes in write requests */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 struct raw3215_req *queued_read; /* pointer to queued read requests */
86 struct raw3215_req *queued_write;/* pointer to queued write requests */
Martin Schwidefsky656d9122012-02-17 10:29:22 +010087 struct tasklet_struct tlet; /* tasklet to invoke tty_wakeup */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 wait_queue_head_t empty_wait; /* wait queue for flushing */
89 struct timer_list timer; /* timer for delayed output */
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 int line_pos; /* position on the line (for tabs) */
91 char ubuffer[80]; /* copy_from_user buffer */
92};
93
94/* array of 3215 devices structures */
95static struct raw3215_info *raw3215[NR_3215];
96/* spinlock to protect the raw3215 array */
97static DEFINE_SPINLOCK(raw3215_device_lock);
98/* list of free request structures */
99static struct raw3215_req *raw3215_freelist;
100/* spinlock to protect free list */
101static spinlock_t raw3215_freelist_lock;
102
103static struct tty_driver *tty3215_driver;
104
105/*
106 * Get a request structure from the free list
107 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200108static inline struct raw3215_req *raw3215_alloc_req(void)
109{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 struct raw3215_req *req;
111 unsigned long flags;
112
113 spin_lock_irqsave(&raw3215_freelist_lock, flags);
114 req = raw3215_freelist;
115 raw3215_freelist = req->next;
116 spin_unlock_irqrestore(&raw3215_freelist_lock, flags);
117 return req;
118}
119
120/*
121 * Put a request structure back to the free list
122 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200123static inline void raw3215_free_req(struct raw3215_req *req)
124{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 unsigned long flags;
126
127 if (req->type == RAW3215_FREE)
128 return; /* don't free a free request */
129 req->type = RAW3215_FREE;
130 spin_lock_irqsave(&raw3215_freelist_lock, flags);
131 req->next = raw3215_freelist;
132 raw3215_freelist = req;
133 spin_unlock_irqrestore(&raw3215_freelist_lock, flags);
134}
135
136/*
137 * Set up a read request that reads up to 160 byte from the 3215 device.
138 * If there is a queued read request it is used, but that shouldn't happen
139 * because a 3215 terminal won't accept a new read before the old one is
140 * completed.
141 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200142static void raw3215_mk_read_req(struct raw3215_info *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
144 struct raw3215_req *req;
145 struct ccw1 *ccw;
146
147 /* there can only be ONE read request at a time */
148 req = raw->queued_read;
149 if (req == NULL) {
150 /* no queued read request, use new req structure */
151 req = raw3215_alloc_req();
152 req->type = RAW3215_READ;
153 req->info = raw;
154 raw->queued_read = req;
155 }
156
157 ccw = req->ccws;
158 ccw->cmd_code = 0x0A; /* read inquiry */
159 ccw->flags = 0x20; /* ignore incorrect length */
160 ccw->count = 160;
161 ccw->cda = (__u32) __pa(raw->inbuf);
162}
163
164/*
165 * Set up a write request with the information from the main structure.
166 * A ccw chain is created that writes as much as possible from the output
167 * buffer to the 3215 device. If a queued write exists it is replaced by
168 * the new, probably lengthened request.
169 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200170static void raw3215_mk_write_req(struct raw3215_info *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 struct raw3215_req *req;
173 struct ccw1 *ccw;
174 int len, count, ix, lines;
175
176 if (raw->count <= raw->written)
177 return;
178 /* check if there is a queued write request */
179 req = raw->queued_write;
180 if (req == NULL) {
181 /* no queued write request, use new req structure */
182 req = raw3215_alloc_req();
183 req->type = RAW3215_WRITE;
184 req->info = raw;
185 raw->queued_write = req;
186 } else {
187 raw->written -= req->len;
188 }
189
190 ccw = req->ccws;
191 req->start = (raw->head - raw->count + raw->written) &
192 (RAW3215_BUFFER_SIZE - 1);
193 /*
194 * now we have to count newlines. We can at max accept
195 * RAW3215_MAX_NEWLINE newlines in a single ssch due to
196 * a restriction in VM
197 */
198 lines = 0;
199 ix = req->start;
200 while (lines < RAW3215_MAX_NEWLINE && ix != raw->head) {
201 if (raw->buffer[ix] == 0x15)
202 lines++;
203 ix = (ix + 1) & (RAW3215_BUFFER_SIZE - 1);
204 }
205 len = ((ix - 1 - req->start) & (RAW3215_BUFFER_SIZE - 1)) + 1;
206 if (len > RAW3215_MAX_BYTES)
207 len = RAW3215_MAX_BYTES;
208 req->len = len;
209 raw->written += len;
210
211 /* set the indication if we should try to enlarge this request */
212 req->delayable = (ix == raw->head) && (len < RAW3215_MIN_WRITE);
213
214 ix = req->start;
215 while (len > 0) {
216 if (ccw > req->ccws)
217 ccw[-1].flags |= 0x40; /* use command chaining */
218 ccw->cmd_code = 0x01; /* write, auto carrier return */
219 ccw->flags = 0x20; /* ignore incorrect length ind. */
220 ccw->cda =
221 (__u32) __pa(raw->buffer + ix);
222 count = len;
223 if (ix + count > RAW3215_BUFFER_SIZE)
224 count = RAW3215_BUFFER_SIZE - ix;
225 ccw->count = count;
226 len -= count;
227 ix = (ix + count) & (RAW3215_BUFFER_SIZE - 1);
228 ccw++;
229 }
230 /*
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.
234 */
235 if (ccw > req->ccws)
236 ccw[-1].flags |= 0x40; /* use command chaining */
237 ccw->cmd_code = 0x03; /* NOP */
238 ccw->flags = 0;
239 ccw->cda = 0;
240 ccw->count = 1;
241}
242
243/*
244 * Start a read or a write request
245 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200246static void raw3215_start_io(struct raw3215_info *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 struct raw3215_req *req;
249 int res;
250
251 req = raw->queued_read;
252 if (req != NULL &&
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);
258 if (res != 0) {
259 /* do_IO failed, put request back to queue */
260 raw->queued_read = req;
261 } else {
262 raw->flags |= RAW3215_WORKING;
263 }
264 }
265 req = raw->queued_write;
266 if (req != NULL &&
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);
272 if (res != 0) {
273 /* do_IO failed, put request back to queue */
274 raw->queued_write = req;
275 } else {
276 raw->flags |= RAW3215_WORKING;
277 }
278 }
279}
280
281/*
282 * Function to start a delayed output after RAW3215_TIMEOUT seconds
283 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200284static void raw3215_timeout(unsigned long __data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 struct raw3215_info *raw = (struct raw3215_info *) __data;
287 unsigned long flags;
288
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100289 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (raw->flags & RAW3215_TIMER_RUNS) {
291 del_timer(&raw->timer);
292 raw->flags &= ~RAW3215_TIMER_RUNS;
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200293 if (!(raw->port.flags & ASYNC_SUSPENDED)) {
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200294 raw3215_mk_write_req(raw);
295 raw3215_start_io(raw);
296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100298 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
301/*
302 * Function to conditionally start an IO. A read is started immediately,
303 * a write is only started immediately if the flush flag is on or the
304 * amount of data is bigger than RAW3215_MIN_WRITE. If a write is not
305 * done immediately a timer is started with a delay of RAW3215_TIMEOUT.
306 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200307static inline void raw3215_try_io(struct raw3215_info *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200309 if (!(raw->port.flags & ASYNC_INITIALIZED) ||
310 (raw->port.flags & ASYNC_SUSPENDED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return;
312 if (raw->queued_read != NULL)
313 raw3215_start_io(raw);
314 else if (raw->queued_write != NULL) {
315 if ((raw->queued_write->delayable == 0) ||
316 (raw->flags & RAW3215_FLUSHING)) {
317 /* execute write requests bigger than minimum size */
318 raw3215_start_io(raw);
319 if (raw->flags & RAW3215_TIMER_RUNS) {
320 del_timer(&raw->timer);
321 raw->flags &= ~RAW3215_TIMER_RUNS;
322 }
323 } else if (!(raw->flags & RAW3215_TIMER_RUNS)) {
324 /* delay small writes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 raw->timer.expires = RAW3215_TIMEOUT + jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 add_timer(&raw->timer);
327 raw->flags |= RAW3215_TIMER_RUNS;
328 }
329 }
330}
331
332/*
Martin Schwidefsky656d9122012-02-17 10:29:22 +0100333 * Call tty_wakeup from tasklet context
334 */
335static void raw3215_wakeup(unsigned long data)
336{
337 struct raw3215_info *raw = (struct raw3215_info *) data;
Heiko Carstense695b282012-04-17 13:16:34 +0200338 struct tty_struct *tty;
339
340 tty = tty_port_tty_get(&raw->port);
Heiko Carstensae289dc2012-11-15 09:22:40 +0100341 if (tty) {
342 tty_wakeup(tty);
343 tty_kref_put(tty);
344 }
Martin Schwidefsky656d9122012-02-17 10:29:22 +0100345}
346
347/*
Heiko Carstens408aec32008-10-10 21:33:28 +0200348 * Try to start the next IO and wake up processes waiting on the tty.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 */
Jiri Slaby86b260072012-04-11 11:14:59 +0200350static void raw3215_next_io(struct raw3215_info *raw, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 raw3215_mk_write_req(raw);
353 raw3215_try_io(raw);
Jiri Slaby86b260072012-04-11 11:14:59 +0200354 if (tty && RAW3215_BUFFER_SIZE - raw->count >= RAW3215_MIN_SPACE)
Martin Schwidefsky656d9122012-02-17 10:29:22 +0100355 tasklet_schedule(&raw->tlet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
357
358/*
359 * Interrupt routine, called from common io layer
360 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200361static void raw3215_irq(struct ccw_device *cdev, unsigned long intparm,
362 struct irb *irb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
364 struct raw3215_info *raw;
365 struct raw3215_req *req;
366 struct tty_struct *tty;
367 int cstat, dstat;
Heiko Carstens1d030372008-07-14 09:59:44 +0200368 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700370 raw = dev_get_drvdata(&cdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 req = (struct raw3215_req *) intparm;
Jiri Slaby86b260072012-04-11 11:14:59 +0200372 tty = tty_port_tty_get(&raw->port);
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200373 cstat = irb->scsw.cmd.cstat;
374 dstat = irb->scsw.cmd.dstat;
Martin Schwidefsky26348f72008-07-14 09:59:26 +0200375 if (cstat != 0)
Jiri Slaby86b260072012-04-11 11:14:59 +0200376 raw3215_next_io(raw, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 if (dstat & 0x01) { /* we got a unit exception */
378 dstat &= ~0x01; /* we can ignore it */
379 }
380 switch (dstat) {
381 case 0x80:
382 if (cstat != 0)
383 break;
384 /* Attention interrupt, someone hit the enter key */
385 raw3215_mk_read_req(raw);
Jiri Slaby86b260072012-04-11 11:14:59 +0200386 raw3215_next_io(raw, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 break;
388 case 0x08:
389 case 0x0C:
390 /* Channel end interrupt. */
391 if ((raw = req->info) == NULL)
Jiri Slaby86b260072012-04-11 11:14:59 +0200392 goto put_tty; /* That shouldn't happen ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (req->type == RAW3215_READ) {
394 /* store residual count, then wait for device end */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200395 req->residual = irb->scsw.cmd.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397 if (dstat == 0x08)
398 break;
399 case 0x04:
400 /* Device end interrupt. */
401 if ((raw = req->info) == NULL)
Jiri Slaby86b260072012-04-11 11:14:59 +0200402 goto put_tty; /* That shouldn't happen ... */
403 if (req->type == RAW3215_READ && tty != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 unsigned int cchar;
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 count = 160 - req->residual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 EBCASC(raw->inbuf, count);
408 cchar = ctrlchar_handle(raw->inbuf, count, tty);
409 switch (cchar & CTRLCHAR_MASK) {
410 case CTRLCHAR_SYSRQ:
411 break;
412
413 case CTRLCHAR_CTRL:
Jiri Slaby92a19f92013-01-03 15:53:03 +0100414 tty_insert_flip_char(&raw->port, cchar,
415 TTY_NORMAL);
Jiri Slaby86b260072012-04-11 11:14:59 +0200416 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 break;
418
419 case CTRLCHAR_NONE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 if (count < 2 ||
Alan Cox33f0f882006-01-09 20:54:13 -0800421 (strncmp(raw->inbuf+count-2, "\252n", 2) &&
422 strncmp(raw->inbuf+count-2, "^n", 2)) ) {
423 /* add the auto \n */
424 raw->inbuf[count] = '\n';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 count++;
426 } else
Alan Cox33f0f882006-01-09 20:54:13 -0800427 count -= 2;
428 tty_insert_flip_string(tty, raw->inbuf, count);
Jiri Slaby86b260072012-04-11 11:14:59 +0200429 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 break;
431 }
432 } else if (req->type == RAW3215_WRITE) {
433 raw->count -= req->len;
434 raw->written -= req->len;
435 }
436 raw->flags &= ~RAW3215_WORKING;
437 raw3215_free_req(req);
438 /* check for empty wait */
439 if (waitqueue_active(&raw->empty_wait) &&
440 raw->queued_write == NULL &&
441 raw->queued_read == NULL) {
442 wake_up_interruptible(&raw->empty_wait);
443 }
Jiri Slaby86b260072012-04-11 11:14:59 +0200444 raw3215_next_io(raw, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 break;
446 default:
447 /* Strange interrupt, I'll do my best to clean up */
448 if (req != NULL && req->type != RAW3215_FREE) {
449 if (req->type == RAW3215_WRITE) {
450 raw->count -= req->len;
451 raw->written -= req->len;
452 }
453 raw->flags &= ~RAW3215_WORKING;
454 raw3215_free_req(req);
455 }
Jiri Slaby86b260072012-04-11 11:14:59 +0200456 raw3215_next_io(raw, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
Jiri Slaby86b260072012-04-11 11:14:59 +0200458put_tty:
459 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
462/*
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200463 * Drop the oldest line from the output buffer.
464 */
465static void raw3215_drop_line(struct raw3215_info *raw)
466{
467 int ix;
468 char ch;
469
470 BUG_ON(raw->written != 0);
471 ix = (raw->head - raw->count) & (RAW3215_BUFFER_SIZE - 1);
472 while (raw->count > 0) {
473 ch = raw->buffer[ix];
474 ix = (ix + 1) & (RAW3215_BUFFER_SIZE - 1);
475 raw->count--;
476 if (ch == 0x15)
477 break;
478 }
479 raw->head = ix;
480}
481
482/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 * Wait until length bytes are available int the output buffer.
484 * Has to be called with the s390irq lock held. Can be called
485 * disabled.
486 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200487static void raw3215_make_room(struct raw3215_info *raw, unsigned int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
489 while (RAW3215_BUFFER_SIZE - raw->count < length) {
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200490 /* While console is frozen for suspend we have no other
491 * choice but to drop message from the buffer to make
492 * room for even more messages. */
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200493 if (raw->port.flags & ASYNC_SUSPENDED) {
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200494 raw3215_drop_line(raw);
495 continue;
496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 /* there might be a request pending */
498 raw->flags |= RAW3215_FLUSHING;
499 raw3215_mk_write_req(raw);
500 raw3215_try_io(raw);
501 raw->flags &= ~RAW3215_FLUSHING;
502#ifdef CONFIG_TN3215_CONSOLE
503 wait_cons_dev();
504#endif
505 /* Enough room freed up ? */
506 if (RAW3215_BUFFER_SIZE - raw->count >= length)
507 break;
508 /* there might be another cpu waiting for the lock */
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100509 spin_unlock(get_ccwdev_lock(raw->cdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 udelay(100);
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100511 spin_lock(get_ccwdev_lock(raw->cdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
513}
514
515/*
516 * String write routine for 3215 devices
517 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200518static void raw3215_write(struct raw3215_info *raw, const char *str,
519 unsigned int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
521 unsigned long flags;
522 int c, count;
523
524 while (length > 0) {
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100525 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 count = (length > RAW3215_BUFFER_SIZE) ?
527 RAW3215_BUFFER_SIZE : length;
528 length -= count;
529
530 raw3215_make_room(raw, count);
531
532 /* copy string to output buffer and convert it to EBCDIC */
533 while (1) {
534 c = min_t(int, count,
535 min(RAW3215_BUFFER_SIZE - raw->count,
536 RAW3215_BUFFER_SIZE - raw->head));
537 if (c <= 0)
538 break;
539 memcpy(raw->buffer + raw->head, str, c);
540 ASCEBC(raw->buffer + raw->head, c);
541 raw->head = (raw->head + c) & (RAW3215_BUFFER_SIZE - 1);
542 raw->count += c;
543 raw->line_pos += c;
544 str += c;
545 count -= c;
546 }
547 if (!(raw->flags & RAW3215_WORKING)) {
548 raw3215_mk_write_req(raw);
549 /* start or queue request */
550 raw3215_try_io(raw);
551 }
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100552 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554}
555
556/*
557 * Put character routine for 3215 devices
558 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200559static void raw3215_putchar(struct raw3215_info *raw, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
561 unsigned long flags;
562 unsigned int length, i;
563
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100564 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (ch == '\t') {
566 length = TAB_STOP_SIZE - (raw->line_pos%TAB_STOP_SIZE);
567 raw->line_pos += length;
568 ch = ' ';
569 } else if (ch == '\n') {
570 length = 1;
571 raw->line_pos = 0;
572 } else {
573 length = 1;
574 raw->line_pos++;
575 }
576 raw3215_make_room(raw, length);
577
578 for (i = 0; i < length; i++) {
579 raw->buffer[raw->head] = (char) _ascebc[(int) ch];
580 raw->head = (raw->head + 1) & (RAW3215_BUFFER_SIZE - 1);
581 raw->count++;
582 }
583 if (!(raw->flags & RAW3215_WORKING)) {
584 raw3215_mk_write_req(raw);
585 /* start or queue request */
586 raw3215_try_io(raw);
587 }
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100588 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
591/*
592 * Flush routine, it simply sets the flush flag and tries to start
593 * pending IO.
594 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200595static void raw3215_flush_buffer(struct raw3215_info *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 unsigned long flags;
598
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100599 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (raw->count > 0) {
601 raw->flags |= RAW3215_FLUSHING;
602 raw3215_try_io(raw);
603 raw->flags &= ~RAW3215_FLUSHING;
604 }
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100605 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
608/*
609 * Fire up a 3215 device.
610 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200611static int raw3215_startup(struct raw3215_info *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
613 unsigned long flags;
614
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200615 if (raw->port.flags & ASYNC_INITIALIZED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return 0;
617 raw->line_pos = 0;
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200618 raw->port.flags |= ASYNC_INITIALIZED;
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100619 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 raw3215_try_io(raw);
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100621 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 return 0;
624}
625
626/*
627 * Shutdown a 3215 device.
628 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200629static void raw3215_shutdown(struct raw3215_info *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
631 DECLARE_WAITQUEUE(wait, current);
632 unsigned long flags;
633
Heiko Carstensae289dc2012-11-15 09:22:40 +0100634 if (!(raw->port.flags & ASYNC_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return;
636 /* Wait for outstanding requests, then free irq */
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100637 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 if ((raw->flags & RAW3215_WORKING) ||
639 raw->queued_write != NULL ||
640 raw->queued_read != NULL) {
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200641 raw->port.flags |= ASYNC_CLOSING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 add_wait_queue(&raw->empty_wait, &wait);
643 set_current_state(TASK_INTERRUPTIBLE);
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100644 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 schedule();
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100646 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 remove_wait_queue(&raw->empty_wait, &wait);
648 set_current_state(TASK_RUNNING);
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200649 raw->port.flags &= ~(ASYNC_INITIALIZED | ASYNC_CLOSING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100651 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200654static struct raw3215_info *raw3215_alloc_info(void)
655{
656 struct raw3215_info *info;
657
658 info = kzalloc(sizeof(struct raw3215_info), GFP_KERNEL | GFP_DMA);
659 if (!info)
660 return NULL;
661
662 info->buffer = kzalloc(RAW3215_BUFFER_SIZE, GFP_KERNEL | GFP_DMA);
663 info->inbuf = kzalloc(RAW3215_INBUF_SIZE, GFP_KERNEL | GFP_DMA);
664 if (!info->buffer || !info->inbuf) {
665 kfree(info);
666 return NULL;
667 }
668
669 setup_timer(&info->timer, raw3215_timeout, (unsigned long)info);
670 init_waitqueue_head(&info->empty_wait);
671 tasklet_init(&info->tlet, raw3215_wakeup, (unsigned long)info);
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200672 tty_port_init(&info->port);
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200673
674 return info;
675}
676
677static void raw3215_free_info(struct raw3215_info *raw)
678{
679 kfree(raw->inbuf);
680 kfree(raw->buffer);
Jiri Slaby191c5f12012-11-15 09:49:56 +0100681 tty_port_destroy(&raw->port);
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200682 kfree(raw);
683}
684
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200685static int raw3215_probe (struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
687 struct raw3215_info *raw;
688 int line;
689
Cornelia Hucka2e53802007-10-12 16:11:52 +0200690 /* Console is special. */
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700691 if (raw3215[0] && (raw3215[0] == dev_get_drvdata(&cdev->dev)))
Cornelia Hucka2e53802007-10-12 16:11:52 +0200692 return 0;
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200693
694 raw = raw3215_alloc_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if (raw == NULL)
696 return -ENOMEM;
697
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200698 raw->cdev = cdev;
699 dev_set_drvdata(&cdev->dev, raw);
700 cdev->handler = raw3215_irq;
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 spin_lock(&raw3215_device_lock);
703 for (line = 0; line < NR_3215; line++) {
704 if (!raw3215[line]) {
705 raw3215[line] = raw;
706 break;
707 }
708 }
709 spin_unlock(&raw3215_device_lock);
710 if (line == NR_3215) {
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200711 raw3215_free_info(raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return -ENODEV;
713 }
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return 0;
716}
717
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200718static void raw3215_remove (struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
720 struct raw3215_info *raw;
Jiri Slaby3ec0a172012-08-07 21:47:57 +0200721 unsigned int line;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 ccw_device_set_offline(cdev);
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700724 raw = dev_get_drvdata(&cdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (raw) {
Jiri Slaby3ec0a172012-08-07 21:47:57 +0200726 spin_lock(&raw3215_device_lock);
727 for (line = 0; line < NR_3215; line++)
728 if (raw3215[line] == raw)
729 break;
730 raw3215[line] = NULL;
731 spin_unlock(&raw3215_device_lock);
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700732 dev_set_drvdata(&cdev->dev, NULL);
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200733 raw3215_free_info(raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
735}
736
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200737static int raw3215_set_online (struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
739 struct raw3215_info *raw;
740
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700741 raw = dev_get_drvdata(&cdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (!raw)
743 return -ENODEV;
744
745 return raw3215_startup(raw);
746}
747
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200748static int raw3215_set_offline (struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
750 struct raw3215_info *raw;
751
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700752 raw = dev_get_drvdata(&cdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (!raw)
754 return -ENODEV;
755
756 raw3215_shutdown(raw);
757
758 return 0;
759}
760
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200761static int raw3215_pm_stop(struct ccw_device *cdev)
762{
763 struct raw3215_info *raw;
764 unsigned long flags;
765
766 /* Empty the output buffer, then prevent new I/O. */
Martin Schwidefsky4f0076f2009-06-22 12:08:19 +0200767 raw = dev_get_drvdata(&cdev->dev);
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200768 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
769 raw3215_make_room(raw, RAW3215_BUFFER_SIZE);
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200770 raw->port.flags |= ASYNC_SUSPENDED;
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200771 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
772 return 0;
773}
774
775static int raw3215_pm_start(struct ccw_device *cdev)
776{
777 struct raw3215_info *raw;
778 unsigned long flags;
779
780 /* Allow I/O again and flush output buffer. */
Martin Schwidefsky4f0076f2009-06-22 12:08:19 +0200781 raw = dev_get_drvdata(&cdev->dev);
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200782 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200783 raw->port.flags &= ~ASYNC_SUSPENDED;
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200784 raw->flags |= RAW3215_FLUSHING;
785 raw3215_try_io(raw);
786 raw->flags &= ~RAW3215_FLUSHING;
787 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
788 return 0;
789}
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791static struct ccw_device_id raw3215_id[] = {
792 { CCW_DEVICE(0x3215, 0) },
793 { /* end of list */ },
794};
795
796static struct ccw_driver raw3215_ccw_driver = {
Sebastian Ott3bda0582011-03-23 10:16:02 +0100797 .driver = {
798 .name = "3215",
799 .owner = THIS_MODULE,
800 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 .ids = raw3215_id,
802 .probe = &raw3215_probe,
803 .remove = &raw3215_remove,
804 .set_online = &raw3215_set_online,
805 .set_offline = &raw3215_set_offline,
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200806 .freeze = &raw3215_pm_stop,
807 .thaw = &raw3215_pm_start,
808 .restore = &raw3215_pm_start,
Peter Oberparleiterde400d62011-10-30 15:16:04 +0100809 .int_class = IOINT_C15,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810};
811
812#ifdef CONFIG_TN3215_CONSOLE
813/*
814 * Write a string to the 3215 console
815 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200816static void con3215_write(struct console *co, const char *str,
817 unsigned int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
819 struct raw3215_info *raw;
820 int i;
821
822 if (count <= 0)
823 return;
824 raw = raw3215[0]; /* console 3215 is the first one */
825 while (count > 0) {
826 for (i = 0; i < count; i++)
827 if (str[i] == '\t' || str[i] == '\n')
828 break;
829 raw3215_write(raw, str, i);
830 count -= i;
831 str += i;
832 if (count > 0) {
833 raw3215_putchar(raw, *str);
834 count--;
835 str++;
836 }
837 }
838}
839
840static struct tty_driver *con3215_device(struct console *c, int *index)
841{
842 *index = c->index;
843 return tty3215_driver;
844}
845
846/*
Holger Smolinski2332ce12008-10-10 21:33:27 +0200847 * panic() calls con3215_flush through a panic_notifier
848 * before the system enters a disabled, endless loop.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200850static void con3215_flush(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
852 struct raw3215_info *raw;
853 unsigned long flags;
854
855 raw = raw3215[0]; /* console 3215 is the first one */
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200856 if (raw->port.flags & ASYNC_SUSPENDED)
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200857 /* The console is still frozen for suspend. */
858 if (ccw_device_force_console())
859 /* Forcing didn't work, no panic message .. */
860 return;
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100861 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 raw3215_make_room(raw, RAW3215_BUFFER_SIZE);
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100863 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
Holger Smolinski2332ce12008-10-10 21:33:27 +0200866static int con3215_notify(struct notifier_block *self,
867 unsigned long event, void *data)
868{
869 con3215_flush();
870 return NOTIFY_OK;
871}
872
873static struct notifier_block on_panic_nb = {
874 .notifier_call = con3215_notify,
875 .priority = 0,
876};
877
878static struct notifier_block on_reboot_nb = {
879 .notifier_call = con3215_notify,
880 .priority = 0,
881};
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883/*
884 * The console structure for the 3215 console
885 */
886static struct console con3215 = {
887 .name = "ttyS",
888 .write = con3215_write,
889 .device = con3215_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 .flags = CON_PRINTBUFFER,
891};
892
893/*
894 * 3215 console initialization code called from console_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200896static int __init con3215_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
898 struct ccw_device *cdev;
899 struct raw3215_info *raw;
900 struct raw3215_req *req;
901 int i;
902
903 /* Check if 3215 is to be the console */
904 if (!CONSOLE_IS_3215)
905 return -ENODEV;
906
907 /* Set the console mode for VM */
908 if (MACHINE_IS_VM) {
Christian Borntraeger6b979de2005-06-25 14:55:32 -0700909 cpcmd("TERM CONMODE 3215", NULL, 0, NULL);
910 cpcmd("TERM AUTOCR OFF", NULL, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 }
912
913 /* allocate 3215 request structures */
914 raw3215_freelist = NULL;
915 spin_lock_init(&raw3215_freelist_lock);
916 for (i = 0; i < NR_3215_REQ; i++) {
Heiko Carstens6d56eee2009-06-22 12:08:04 +0200917 req = kzalloc(sizeof(struct raw3215_req), GFP_KERNEL | GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 req->next = raw3215_freelist;
919 raw3215_freelist = req;
920 }
921
922 cdev = ccw_device_probe_console();
Peter Oberparleiter600b5d12006-02-01 03:06:35 -0800923 if (IS_ERR(cdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return -ENODEV;
925
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200926 raw3215[0] = raw = raw3215_alloc_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 raw->cdev = cdev;
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700928 dev_set_drvdata(&cdev->dev, raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 cdev->handler = raw3215_irq;
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 /* Request the console irq */
932 if (raw3215_startup(raw) != 0) {
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200933 raw3215_free_info(raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 raw3215[0] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return -ENODEV;
936 }
Holger Smolinski2332ce12008-10-10 21:33:27 +0200937 atomic_notifier_chain_register(&panic_notifier_list, &on_panic_nb);
938 register_reboot_notifier(&on_reboot_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 register_console(&con3215);
940 return 0;
941}
942console_initcall(con3215_init);
943#endif
944
Jiri Slabyd2281102012-08-07 21:47:58 +0200945static int tty3215_install(struct tty_driver *driver, struct tty_struct *tty)
946{
947 struct raw3215_info *raw;
948
949 raw = raw3215[tty->index];
950 if (raw == NULL)
951 return -ENODEV;
952
953 tty->driver_data = raw;
954
955 return tty_port_install(&raw->port, driver, tty);
956}
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958/*
959 * tty3215_open
960 *
961 * This routine is called whenever a 3215 tty is opened.
962 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200963static int tty3215_open(struct tty_struct *tty, struct file * filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
Jiri Slabyd2281102012-08-07 21:47:58 +0200965 struct raw3215_info *raw = tty->driver_data;
Jiri Slaby410235f2012-03-05 14:52:01 +0100966 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Jiri Slaby86b260072012-04-11 11:14:59 +0200968 tty_port_tty_set(&raw->port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 tty->low_latency = 0; /* don't use bottom half for pushing chars */
971 /*
972 * Start up 3215 device
973 */
974 retval = raw3215_startup(raw);
975 if (retval)
976 return retval;
977
978 return 0;
979}
980
981/*
982 * tty3215_close()
983 *
984 * This routine is called when the 3215 tty is closed. We wait
985 * for the remaining request to be completed. Then we clean up.
986 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200987static void tty3215_close(struct tty_struct *tty, struct file * filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
989 struct raw3215_info *raw;
990
991 raw = (struct raw3215_info *) tty->driver_data;
992 if (raw == NULL || tty->count > 1)
993 return;
994 tty->closing = 1;
995 /* Shutdown the terminal */
996 raw3215_shutdown(raw);
Martin Schwidefsky656d9122012-02-17 10:29:22 +0100997 tasklet_kill(&raw->tlet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 tty->closing = 0;
Jiri Slaby86b260072012-04-11 11:14:59 +0200999 tty_port_tty_set(&raw->port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
1002/*
1003 * Returns the amount of free space in the output buffer.
1004 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001005static int tty3215_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006{
1007 struct raw3215_info *raw;
1008
1009 raw = (struct raw3215_info *) tty->driver_data;
1010
1011 /* Subtract TAB_STOP_SIZE to allow for a tab, 8 <<< 64K */
1012 if ((RAW3215_BUFFER_SIZE - raw->count - TAB_STOP_SIZE) >= 0)
1013 return RAW3215_BUFFER_SIZE - raw->count - TAB_STOP_SIZE;
1014 else
1015 return 0;
1016}
1017
1018/*
1019 * String write routine for 3215 ttys
1020 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001021static int tty3215_write(struct tty_struct * tty,
1022 const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
1024 struct raw3215_info *raw;
1025
1026 if (!tty)
1027 return 0;
1028 raw = (struct raw3215_info *) tty->driver_data;
1029 raw3215_write(raw, buf, count);
1030 return count;
1031}
1032
1033/*
1034 * Put character routine for 3215 ttys
1035 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001036static int tty3215_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
1038 struct raw3215_info *raw;
1039
1040 if (!tty)
Alan Cox9e7c9a12008-04-30 00:54:00 -07001041 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 raw = (struct raw3215_info *) tty->driver_data;
1043 raw3215_putchar(raw, ch);
Alan Cox9e7c9a12008-04-30 00:54:00 -07001044 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
1046
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001047static void tty3215_flush_chars(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049}
1050
1051/*
1052 * Returns the number of characters in the output buffer
1053 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001054static int tty3215_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
1056 struct raw3215_info *raw;
1057
1058 raw = (struct raw3215_info *) tty->driver_data;
1059 return raw->count;
1060}
1061
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001062static void tty3215_flush_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
1064 struct raw3215_info *raw;
1065
1066 raw = (struct raw3215_info *) tty->driver_data;
1067 raw3215_flush_buffer(raw);
1068 tty_wakeup(tty);
1069}
1070
1071/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 * Disable reading from a 3215 tty
1073 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001074static void tty3215_throttle(struct tty_struct * tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
1076 struct raw3215_info *raw;
1077
1078 raw = (struct raw3215_info *) tty->driver_data;
1079 raw->flags |= RAW3215_THROTTLED;
1080}
1081
1082/*
1083 * Enable reading from a 3215 tty
1084 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001085static void tty3215_unthrottle(struct tty_struct * tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
1087 struct raw3215_info *raw;
1088 unsigned long flags;
1089
1090 raw = (struct raw3215_info *) tty->driver_data;
1091 if (raw->flags & RAW3215_THROTTLED) {
Martin Schwidefsky520a4e32006-12-04 15:40:07 +01001092 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 raw->flags &= ~RAW3215_THROTTLED;
1094 raw3215_try_io(raw);
Martin Schwidefsky520a4e32006-12-04 15:40:07 +01001095 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 }
1097}
1098
1099/*
1100 * Disable writing to a 3215 tty
1101 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001102static void tty3215_stop(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
1104 struct raw3215_info *raw;
1105
1106 raw = (struct raw3215_info *) tty->driver_data;
1107 raw->flags |= RAW3215_STOPPED;
1108}
1109
1110/*
1111 * Enable writing to a 3215 tty
1112 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001113static void tty3215_start(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
1115 struct raw3215_info *raw;
1116 unsigned long flags;
1117
1118 raw = (struct raw3215_info *) tty->driver_data;
1119 if (raw->flags & RAW3215_STOPPED) {
Martin Schwidefsky520a4e32006-12-04 15:40:07 +01001120 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 raw->flags &= ~RAW3215_STOPPED;
1122 raw3215_try_io(raw);
Martin Schwidefsky520a4e32006-12-04 15:40:07 +01001123 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 }
1125}
1126
Jeff Dikeb68e31d2006-10-02 02:17:18 -07001127static const struct tty_operations tty3215_ops = {
Jiri Slabyd2281102012-08-07 21:47:58 +02001128 .install = tty3215_install,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 .open = tty3215_open,
1130 .close = tty3215_close,
1131 .write = tty3215_write,
1132 .put_char = tty3215_put_char,
1133 .flush_chars = tty3215_flush_chars,
1134 .write_room = tty3215_write_room,
1135 .chars_in_buffer = tty3215_chars_in_buffer,
1136 .flush_buffer = tty3215_flush_buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 .throttle = tty3215_throttle,
1138 .unthrottle = tty3215_unthrottle,
1139 .stop = tty3215_stop,
1140 .start = tty3215_start,
1141};
1142
1143/*
1144 * 3215 tty registration code called from tty_init().
1145 * Most kernel services (incl. kmalloc) are available at this poimt.
1146 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001147static int __init tty3215_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
1149 struct tty_driver *driver;
1150 int ret;
1151
1152 if (!CONSOLE_IS_3215)
1153 return 0;
1154
1155 driver = alloc_tty_driver(NR_3215);
1156 if (!driver)
1157 return -ENOMEM;
1158
1159 ret = ccw_driver_register(&raw3215_ccw_driver);
1160 if (ret) {
1161 put_tty_driver(driver);
1162 return ret;
1163 }
1164 /*
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
1168 */
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 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 | XTABS;
1179 driver->init_termios.c_lflag = ISIG;
1180 driver->flags = TTY_DRIVER_REAL_RAW;
1181 tty_set_operations(driver, &tty3215_ops);
1182 ret = tty_register_driver(driver);
1183 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 put_tty_driver(driver);
1185 return ret;
1186 }
1187 tty3215_driver = driver;
1188 return 0;
1189}
1190
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001191static void __exit tty3215_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192{
1193 tty_unregister_driver(tty3215_driver);
1194 put_tty_driver(tty3215_driver);
1195 ccw_driver_unregister(&raw3215_ccw_driver);
1196}
1197
1198module_init(tty3215_init);
1199module_exit(tty3215_exit);