blob: 33b7141a182f6ef369ef9475f1a9f5293561cd2c [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
Heiko Carstens6673cd02013-01-03 14:31:53 +010047#define RAW3215_FIXED 1 /* 3215 console device is not be freed */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define RAW3215_TIMER_RUNS 64 /* set if the output delay timer is on */
52#define RAW3215_FLUSHING 128 /* set to flush buffer (no delay) */
53
54#define TAB_STOP_SIZE 8 /* tab stop size */
55
56/*
57 * Request types for a 3215 device
58 */
59enum raw3215_type {
60 RAW3215_FREE, RAW3215_READ, RAW3215_WRITE
61};
62
63/*
64 * Request structure for a 3215 device
65 */
66struct raw3215_req {
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)));
75
76struct raw3215_info {
Jiri Slaby8dd360f2012-04-11 11:14:58 +020077 struct tty_port port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 struct raw3215_req *queued_read; /* pointer to queued read requests */
87 struct raw3215_req *queued_write;/* pointer to queued write requests */
Martin Schwidefsky656d9122012-02-17 10:29:22 +010088 struct tasklet_struct tlet; /* tasklet to invoke tty_wakeup */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 wait_queue_head_t empty_wait; /* wait queue for flushing */
90 struct timer_list timer; /* timer for delayed output */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 int line_pos; /* position on the line (for tabs) */
92 char ubuffer[80]; /* copy_from_user buffer */
93};
94
95/* array of 3215 devices structures */
96static struct raw3215_info *raw3215[NR_3215];
97/* spinlock to protect the raw3215 array */
98static DEFINE_SPINLOCK(raw3215_device_lock);
99/* list of free request structures */
100static struct raw3215_req *raw3215_freelist;
101/* spinlock to protect free list */
102static spinlock_t raw3215_freelist_lock;
103
104static struct tty_driver *tty3215_driver;
105
106/*
107 * Get a request structure from the free list
108 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200109static inline struct raw3215_req *raw3215_alloc_req(void)
110{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 struct raw3215_req *req;
112 unsigned long flags;
113
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);
118 return req;
119}
120
121/*
122 * Put a request structure back to the free list
123 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200124static inline void raw3215_free_req(struct raw3215_req *req)
125{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 unsigned long flags;
127
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);
135}
136
137/*
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
141 * completed.
142 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200143static void raw3215_mk_read_req(struct raw3215_info *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
145 struct raw3215_req *req;
146 struct ccw1 *ccw;
147
148 /* there can only be ONE read request at a time */
149 req = raw->queued_read;
150 if (req == NULL) {
151 /* no queued read request, use new req structure */
152 req = raw3215_alloc_req();
153 req->type = RAW3215_READ;
154 req->info = raw;
155 raw->queued_read = req;
156 }
157
158 ccw = req->ccws;
159 ccw->cmd_code = 0x0A; /* read inquiry */
160 ccw->flags = 0x20; /* ignore incorrect length */
161 ccw->count = 160;
162 ccw->cda = (__u32) __pa(raw->inbuf);
163}
164
165/*
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.
170 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200171static void raw3215_mk_write_req(struct raw3215_info *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 struct raw3215_req *req;
174 struct ccw1 *ccw;
175 int len, count, ix, lines;
176
177 if (raw->count <= raw->written)
178 return;
179 /* check if there is a queued write request */
180 req = raw->queued_write;
181 if (req == NULL) {
182 /* no queued write request, use new req structure */
183 req = raw3215_alloc_req();
184 req->type = RAW3215_WRITE;
185 req->info = raw;
186 raw->queued_write = req;
187 } else {
188 raw->written -= req->len;
189 }
190
191 ccw = req->ccws;
192 req->start = (raw->head - raw->count + raw->written) &
193 (RAW3215_BUFFER_SIZE - 1);
194 /*
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
198 */
199 lines = 0;
200 ix = req->start;
201 while (lines < RAW3215_MAX_NEWLINE && ix != raw->head) {
202 if (raw->buffer[ix] == 0x15)
203 lines++;
204 ix = (ix + 1) & (RAW3215_BUFFER_SIZE - 1);
205 }
206 len = ((ix - 1 - req->start) & (RAW3215_BUFFER_SIZE - 1)) + 1;
207 if (len > RAW3215_MAX_BYTES)
208 len = RAW3215_MAX_BYTES;
209 req->len = len;
210 raw->written += len;
211
212 /* set the indication if we should try to enlarge this request */
213 req->delayable = (ix == raw->head) && (len < RAW3215_MIN_WRITE);
214
215 ix = req->start;
216 while (len > 0) {
217 if (ccw > req->ccws)
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 =
222 (__u32) __pa(raw->buffer + ix);
223 count = len;
224 if (ix + count > RAW3215_BUFFER_SIZE)
225 count = RAW3215_BUFFER_SIZE - ix;
226 ccw->count = count;
227 len -= count;
228 ix = (ix + count) & (RAW3215_BUFFER_SIZE - 1);
229 ccw++;
230 }
231 /*
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.
235 */
236 if (ccw > req->ccws)
237 ccw[-1].flags |= 0x40; /* use command chaining */
238 ccw->cmd_code = 0x03; /* NOP */
239 ccw->flags = 0;
240 ccw->cda = 0;
241 ccw->count = 1;
242}
243
244/*
245 * Start a read or a write request
246 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200247static void raw3215_start_io(struct raw3215_info *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 struct raw3215_req *req;
250 int res;
251
252 req = raw->queued_read;
253 if (req != NULL &&
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);
259 if (res != 0) {
260 /* do_IO failed, put request back to queue */
261 raw->queued_read = req;
262 } else {
263 raw->flags |= RAW3215_WORKING;
264 }
265 }
266 req = raw->queued_write;
267 if (req != NULL &&
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);
273 if (res != 0) {
274 /* do_IO failed, put request back to queue */
275 raw->queued_write = req;
276 } else {
277 raw->flags |= RAW3215_WORKING;
278 }
279 }
280}
281
282/*
283 * Function to start a delayed output after RAW3215_TIMEOUT seconds
284 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200285static void raw3215_timeout(unsigned long __data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
287 struct raw3215_info *raw = (struct raw3215_info *) __data;
288 unsigned long flags;
289
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100290 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (raw->flags & RAW3215_TIMER_RUNS) {
292 del_timer(&raw->timer);
293 raw->flags &= ~RAW3215_TIMER_RUNS;
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200294 if (!(raw->port.flags & ASYNC_SUSPENDED)) {
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200295 raw3215_mk_write_req(raw);
296 raw3215_start_io(raw);
297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100299 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
302/*
303 * Function to conditionally start an IO. A read is started immediately,
304 * a write is only started immediately if the flush flag is on or the
305 * amount of data is bigger than RAW3215_MIN_WRITE. If a write is not
306 * done immediately a timer is started with a delay of RAW3215_TIMEOUT.
307 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200308static inline void raw3215_try_io(struct raw3215_info *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200310 if (!(raw->port.flags & ASYNC_INITIALIZED) ||
311 (raw->port.flags & ASYNC_SUSPENDED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 return;
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);
320 if (raw->flags & RAW3215_TIMER_RUNS) {
321 del_timer(&raw->timer);
322 raw->flags &= ~RAW3215_TIMER_RUNS;
323 }
324 } else if (!(raw->flags & RAW3215_TIMER_RUNS)) {
325 /* delay small writes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 raw->timer.expires = RAW3215_TIMEOUT + jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 add_timer(&raw->timer);
328 raw->flags |= RAW3215_TIMER_RUNS;
329 }
330 }
331}
332
333/*
Martin Schwidefsky656d9122012-02-17 10:29:22 +0100334 * Call tty_wakeup from tasklet context
335 */
336static void raw3215_wakeup(unsigned long data)
337{
338 struct raw3215_info *raw = (struct raw3215_info *) data;
Heiko Carstense695b282012-04-17 13:16:34 +0200339 struct tty_struct *tty;
340
341 tty = tty_port_tty_get(&raw->port);
Heiko Carstensae289dc2012-11-15 09:22:40 +0100342 if (tty) {
343 tty_wakeup(tty);
344 tty_kref_put(tty);
345 }
Martin Schwidefsky656d9122012-02-17 10:29:22 +0100346}
347
348/*
Heiko Carstens408aec32008-10-10 21:33:28 +0200349 * Try to start the next IO and wake up processes waiting on the tty.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 */
Jiri Slaby86b260072012-04-11 11:14:59 +0200351static void raw3215_next_io(struct raw3215_info *raw, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 raw3215_mk_write_req(raw);
354 raw3215_try_io(raw);
Jiri Slaby86b260072012-04-11 11:14:59 +0200355 if (tty && RAW3215_BUFFER_SIZE - raw->count >= RAW3215_MIN_SPACE)
Martin Schwidefsky656d9122012-02-17 10:29:22 +0100356 tasklet_schedule(&raw->tlet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
359/*
360 * Interrupt routine, called from common io layer
361 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200362static void raw3215_irq(struct ccw_device *cdev, unsigned long intparm,
363 struct irb *irb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
365 struct raw3215_info *raw;
366 struct raw3215_req *req;
367 struct tty_struct *tty;
368 int cstat, dstat;
Heiko Carstens1d030372008-07-14 09:59:44 +0200369 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700371 raw = dev_get_drvdata(&cdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 req = (struct raw3215_req *) intparm;
Jiri Slaby86b260072012-04-11 11:14:59 +0200373 tty = tty_port_tty_get(&raw->port);
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200374 cstat = irb->scsw.cmd.cstat;
375 dstat = irb->scsw.cmd.dstat;
Martin Schwidefsky26348f72008-07-14 09:59:26 +0200376 if (cstat != 0)
Jiri Slaby86b260072012-04-11 11:14:59 +0200377 raw3215_next_io(raw, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 if (dstat & 0x01) { /* we got a unit exception */
379 dstat &= ~0x01; /* we can ignore it */
380 }
381 switch (dstat) {
382 case 0x80:
383 if (cstat != 0)
384 break;
385 /* Attention interrupt, someone hit the enter key */
386 raw3215_mk_read_req(raw);
Jiri Slaby86b260072012-04-11 11:14:59 +0200387 raw3215_next_io(raw, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 break;
389 case 0x08:
390 case 0x0C:
391 /* Channel end interrupt. */
392 if ((raw = req->info) == NULL)
Jiri Slaby86b260072012-04-11 11:14:59 +0200393 goto put_tty; /* That shouldn't happen ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (req->type == RAW3215_READ) {
395 /* store residual count, then wait for device end */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200396 req->residual = irb->scsw.cmd.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
398 if (dstat == 0x08)
399 break;
400 case 0x04:
401 /* Device end interrupt. */
402 if ((raw = req->info) == NULL)
Jiri Slaby86b260072012-04-11 11:14:59 +0200403 goto put_tty; /* That shouldn't happen ... */
404 if (req->type == RAW3215_READ && tty != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 unsigned int cchar;
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 count = 160 - req->residual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 EBCASC(raw->inbuf, count);
409 cchar = ctrlchar_handle(raw->inbuf, count, tty);
410 switch (cchar & CTRLCHAR_MASK) {
411 case CTRLCHAR_SYSRQ:
412 break;
413
414 case CTRLCHAR_CTRL:
Alan Cox33f0f882006-01-09 20:54:13 -0800415 tty_insert_flip_char(tty, cchar, 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 Carstens6673cd02013-01-03 14:31:53 +0100634 if (!(raw->port.flags & ASYNC_INITIALIZED) ||
635 (raw->flags & RAW3215_FIXED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return;
637 /* Wait for outstanding requests, then free irq */
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100638 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if ((raw->flags & RAW3215_WORKING) ||
640 raw->queued_write != NULL ||
641 raw->queued_read != NULL) {
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200642 raw->port.flags |= ASYNC_CLOSING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 add_wait_queue(&raw->empty_wait, &wait);
644 set_current_state(TASK_INTERRUPTIBLE);
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100645 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 schedule();
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100647 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 remove_wait_queue(&raw->empty_wait, &wait);
649 set_current_state(TASK_RUNNING);
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200650 raw->port.flags &= ~(ASYNC_INITIALIZED | ASYNC_CLOSING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100652 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200655static struct raw3215_info *raw3215_alloc_info(void)
656{
657 struct raw3215_info *info;
658
659 info = kzalloc(sizeof(struct raw3215_info), GFP_KERNEL | GFP_DMA);
660 if (!info)
661 return NULL;
662
663 info->buffer = kzalloc(RAW3215_BUFFER_SIZE, GFP_KERNEL | GFP_DMA);
664 info->inbuf = kzalloc(RAW3215_INBUF_SIZE, GFP_KERNEL | GFP_DMA);
665 if (!info->buffer || !info->inbuf) {
666 kfree(info);
667 return NULL;
668 }
669
670 setup_timer(&info->timer, raw3215_timeout, (unsigned long)info);
671 init_waitqueue_head(&info->empty_wait);
672 tasklet_init(&info->tlet, raw3215_wakeup, (unsigned long)info);
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200673 tty_port_init(&info->port);
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200674
675 return info;
676}
677
678static void raw3215_free_info(struct raw3215_info *raw)
679{
680 kfree(raw->inbuf);
681 kfree(raw->buffer);
Jiri Slaby191c5f12012-11-15 09:49:56 +0100682 tty_port_destroy(&raw->port);
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200683 kfree(raw);
684}
685
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200686static int raw3215_probe (struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
688 struct raw3215_info *raw;
689 int line;
690
Cornelia Hucka2e53802007-10-12 16:11:52 +0200691 /* Console is special. */
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700692 if (raw3215[0] && (raw3215[0] == dev_get_drvdata(&cdev->dev)))
Cornelia Hucka2e53802007-10-12 16:11:52 +0200693 return 0;
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200694
695 raw = raw3215_alloc_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (raw == NULL)
697 return -ENOMEM;
698
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200699 raw->cdev = cdev;
700 dev_set_drvdata(&cdev->dev, raw);
701 cdev->handler = raw3215_irq;
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 spin_lock(&raw3215_device_lock);
704 for (line = 0; line < NR_3215; line++) {
705 if (!raw3215[line]) {
706 raw3215[line] = raw;
707 break;
708 }
709 }
710 spin_unlock(&raw3215_device_lock);
711 if (line == NR_3215) {
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200712 raw3215_free_info(raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return -ENODEV;
714 }
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 return 0;
717}
718
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200719static void raw3215_remove (struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
721 struct raw3215_info *raw;
Jiri Slaby3ec0a172012-08-07 21:47:57 +0200722 unsigned int line;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 ccw_device_set_offline(cdev);
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700725 raw = dev_get_drvdata(&cdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (raw) {
Jiri Slaby3ec0a172012-08-07 21:47:57 +0200727 spin_lock(&raw3215_device_lock);
728 for (line = 0; line < NR_3215; line++)
729 if (raw3215[line] == raw)
730 break;
731 raw3215[line] = NULL;
732 spin_unlock(&raw3215_device_lock);
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700733 dev_set_drvdata(&cdev->dev, NULL);
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200734 raw3215_free_info(raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
736}
737
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200738static int raw3215_set_online (struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
740 struct raw3215_info *raw;
741
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700742 raw = dev_get_drvdata(&cdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (!raw)
744 return -ENODEV;
745
746 return raw3215_startup(raw);
747}
748
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200749static int raw3215_set_offline (struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
751 struct raw3215_info *raw;
752
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700753 raw = dev_get_drvdata(&cdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (!raw)
755 return -ENODEV;
756
757 raw3215_shutdown(raw);
758
759 return 0;
760}
761
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200762static int raw3215_pm_stop(struct ccw_device *cdev)
763{
764 struct raw3215_info *raw;
765 unsigned long flags;
766
767 /* Empty the output buffer, then prevent new I/O. */
Martin Schwidefsky4f0076f2009-06-22 12:08:19 +0200768 raw = dev_get_drvdata(&cdev->dev);
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200769 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
770 raw3215_make_room(raw, RAW3215_BUFFER_SIZE);
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200771 raw->port.flags |= ASYNC_SUSPENDED;
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200772 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
773 return 0;
774}
775
776static int raw3215_pm_start(struct ccw_device *cdev)
777{
778 struct raw3215_info *raw;
779 unsigned long flags;
780
781 /* Allow I/O again and flush output buffer. */
Martin Schwidefsky4f0076f2009-06-22 12:08:19 +0200782 raw = dev_get_drvdata(&cdev->dev);
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200783 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200784 raw->port.flags &= ~ASYNC_SUSPENDED;
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200785 raw->flags |= RAW3215_FLUSHING;
786 raw3215_try_io(raw);
787 raw->flags &= ~RAW3215_FLUSHING;
788 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
789 return 0;
790}
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792static struct ccw_device_id raw3215_id[] = {
793 { CCW_DEVICE(0x3215, 0) },
794 { /* end of list */ },
795};
796
797static struct ccw_driver raw3215_ccw_driver = {
Sebastian Ott3bda0582011-03-23 10:16:02 +0100798 .driver = {
799 .name = "3215",
800 .owner = THIS_MODULE,
801 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 .ids = raw3215_id,
803 .probe = &raw3215_probe,
804 .remove = &raw3215_remove,
805 .set_online = &raw3215_set_online,
806 .set_offline = &raw3215_set_offline,
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200807 .freeze = &raw3215_pm_stop,
808 .thaw = &raw3215_pm_start,
809 .restore = &raw3215_pm_start,
Heiko Carstens420f42e2013-01-02 15:18:18 +0100810 .int_class = IRQIO_C15,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811};
812
813#ifdef CONFIG_TN3215_CONSOLE
814/*
815 * Write a string to the 3215 console
816 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200817static void con3215_write(struct console *co, const char *str,
818 unsigned int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
820 struct raw3215_info *raw;
821 int i;
822
823 if (count <= 0)
824 return;
825 raw = raw3215[0]; /* console 3215 is the first one */
826 while (count > 0) {
827 for (i = 0; i < count; i++)
828 if (str[i] == '\t' || str[i] == '\n')
829 break;
830 raw3215_write(raw, str, i);
831 count -= i;
832 str += i;
833 if (count > 0) {
834 raw3215_putchar(raw, *str);
835 count--;
836 str++;
837 }
838 }
839}
840
841static struct tty_driver *con3215_device(struct console *c, int *index)
842{
843 *index = c->index;
844 return tty3215_driver;
845}
846
847/*
Holger Smolinski2332ce12008-10-10 21:33:27 +0200848 * panic() calls con3215_flush through a panic_notifier
849 * before the system enters a disabled, endless loop.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200851static void con3215_flush(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
853 struct raw3215_info *raw;
854 unsigned long flags;
855
856 raw = raw3215[0]; /* console 3215 is the first one */
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200857 if (raw->port.flags & ASYNC_SUSPENDED)
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200858 /* The console is still frozen for suspend. */
859 if (ccw_device_force_console())
860 /* Forcing didn't work, no panic message .. */
861 return;
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100862 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 raw3215_make_room(raw, RAW3215_BUFFER_SIZE);
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100864 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865}
866
Holger Smolinski2332ce12008-10-10 21:33:27 +0200867static int con3215_notify(struct notifier_block *self,
868 unsigned long event, void *data)
869{
870 con3215_flush();
871 return NOTIFY_OK;
872}
873
874static struct notifier_block on_panic_nb = {
875 .notifier_call = con3215_notify,
876 .priority = 0,
877};
878
879static struct notifier_block on_reboot_nb = {
880 .notifier_call = con3215_notify,
881 .priority = 0,
882};
883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884/*
885 * The console structure for the 3215 console
886 */
887static struct console con3215 = {
888 .name = "ttyS",
889 .write = con3215_write,
890 .device = con3215_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 .flags = CON_PRINTBUFFER,
892};
893
894/*
895 * 3215 console initialization code called from console_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200897static int __init con3215_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
899 struct ccw_device *cdev;
900 struct raw3215_info *raw;
901 struct raw3215_req *req;
902 int i;
903
904 /* Check if 3215 is to be the console */
905 if (!CONSOLE_IS_3215)
906 return -ENODEV;
907
908 /* Set the console mode for VM */
909 if (MACHINE_IS_VM) {
Christian Borntraeger6b979de2005-06-25 14:55:32 -0700910 cpcmd("TERM CONMODE 3215", NULL, 0, NULL);
911 cpcmd("TERM AUTOCR OFF", NULL, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
913
914 /* allocate 3215 request structures */
915 raw3215_freelist = NULL;
916 spin_lock_init(&raw3215_freelist_lock);
917 for (i = 0; i < NR_3215_REQ; i++) {
Heiko Carstens6d56eee2009-06-22 12:08:04 +0200918 req = kzalloc(sizeof(struct raw3215_req), GFP_KERNEL | GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 req->next = raw3215_freelist;
920 raw3215_freelist = req;
921 }
922
923 cdev = ccw_device_probe_console();
Peter Oberparleiter600b5d12006-02-01 03:06:35 -0800924 if (IS_ERR(cdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 return -ENODEV;
926
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200927 raw3215[0] = raw = raw3215_alloc_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 raw->cdev = cdev;
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700929 dev_set_drvdata(&cdev->dev, raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 cdev->handler = raw3215_irq;
931
Heiko Carstens6673cd02013-01-03 14:31:53 +0100932 raw->flags |= RAW3215_FIXED;
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 /* Request the console irq */
935 if (raw3215_startup(raw) != 0) {
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200936 raw3215_free_info(raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 raw3215[0] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 return -ENODEV;
939 }
Holger Smolinski2332ce12008-10-10 21:33:27 +0200940 atomic_notifier_chain_register(&panic_notifier_list, &on_panic_nb);
941 register_reboot_notifier(&on_reboot_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 register_console(&con3215);
943 return 0;
944}
945console_initcall(con3215_init);
946#endif
947
Jiri Slabyd2281102012-08-07 21:47:58 +0200948static int tty3215_install(struct tty_driver *driver, struct tty_struct *tty)
949{
950 struct raw3215_info *raw;
951
952 raw = raw3215[tty->index];
953 if (raw == NULL)
954 return -ENODEV;
955
956 tty->driver_data = raw;
957
958 return tty_port_install(&raw->port, driver, tty);
959}
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961/*
962 * tty3215_open
963 *
964 * This routine is called whenever a 3215 tty is opened.
965 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200966static int tty3215_open(struct tty_struct *tty, struct file * filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
Jiri Slabyd2281102012-08-07 21:47:58 +0200968 struct raw3215_info *raw = tty->driver_data;
Jiri Slaby410235f2012-03-05 14:52:01 +0100969 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Jiri Slaby86b260072012-04-11 11:14:59 +0200971 tty_port_tty_set(&raw->port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 tty->low_latency = 0; /* don't use bottom half for pushing chars */
974 /*
975 * Start up 3215 device
976 */
977 retval = raw3215_startup(raw);
978 if (retval)
979 return retval;
980
981 return 0;
982}
983
984/*
985 * tty3215_close()
986 *
987 * This routine is called when the 3215 tty is closed. We wait
988 * for the remaining request to be completed. Then we clean up.
989 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200990static void tty3215_close(struct tty_struct *tty, struct file * filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
992 struct raw3215_info *raw;
993
994 raw = (struct raw3215_info *) tty->driver_data;
995 if (raw == NULL || tty->count > 1)
996 return;
997 tty->closing = 1;
998 /* Shutdown the terminal */
999 raw3215_shutdown(raw);
Martin Schwidefsky656d9122012-02-17 10:29:22 +01001000 tasklet_kill(&raw->tlet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 tty->closing = 0;
Jiri Slaby86b260072012-04-11 11:14:59 +02001002 tty_port_tty_set(&raw->port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
1005/*
1006 * Returns the amount of free space in the output buffer.
1007 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001008static int tty3215_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
1010 struct raw3215_info *raw;
1011
1012 raw = (struct raw3215_info *) tty->driver_data;
1013
1014 /* Subtract TAB_STOP_SIZE to allow for a tab, 8 <<< 64K */
1015 if ((RAW3215_BUFFER_SIZE - raw->count - TAB_STOP_SIZE) >= 0)
1016 return RAW3215_BUFFER_SIZE - raw->count - TAB_STOP_SIZE;
1017 else
1018 return 0;
1019}
1020
1021/*
1022 * String write routine for 3215 ttys
1023 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001024static int tty3215_write(struct tty_struct * tty,
1025 const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
1027 struct raw3215_info *raw;
1028
1029 if (!tty)
1030 return 0;
1031 raw = (struct raw3215_info *) tty->driver_data;
1032 raw3215_write(raw, buf, count);
1033 return count;
1034}
1035
1036/*
1037 * Put character routine for 3215 ttys
1038 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001039static int tty3215_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
1041 struct raw3215_info *raw;
1042
1043 if (!tty)
Alan Cox9e7c9a12008-04-30 00:54:00 -07001044 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 raw = (struct raw3215_info *) tty->driver_data;
1046 raw3215_putchar(raw, ch);
Alan Cox9e7c9a12008-04-30 00:54:00 -07001047 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048}
1049
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001050static void tty3215_flush_chars(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
1052}
1053
1054/*
1055 * Returns the number of characters in the output buffer
1056 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001057static int tty3215_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
1059 struct raw3215_info *raw;
1060
1061 raw = (struct raw3215_info *) tty->driver_data;
1062 return raw->count;
1063}
1064
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001065static void tty3215_flush_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
1067 struct raw3215_info *raw;
1068
1069 raw = (struct raw3215_info *) tty->driver_data;
1070 raw3215_flush_buffer(raw);
1071 tty_wakeup(tty);
1072}
1073
1074/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 * Disable reading from a 3215 tty
1076 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001077static void tty3215_throttle(struct tty_struct * tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
1079 struct raw3215_info *raw;
1080
1081 raw = (struct raw3215_info *) tty->driver_data;
1082 raw->flags |= RAW3215_THROTTLED;
1083}
1084
1085/*
1086 * Enable reading from a 3215 tty
1087 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001088static void tty3215_unthrottle(struct tty_struct * tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
1090 struct raw3215_info *raw;
1091 unsigned long flags;
1092
1093 raw = (struct raw3215_info *) tty->driver_data;
1094 if (raw->flags & RAW3215_THROTTLED) {
Martin Schwidefsky520a4e32006-12-04 15:40:07 +01001095 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 raw->flags &= ~RAW3215_THROTTLED;
1097 raw3215_try_io(raw);
Martin Schwidefsky520a4e32006-12-04 15:40:07 +01001098 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100}
1101
1102/*
1103 * Disable writing to a 3215 tty
1104 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001105static void tty3215_stop(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
1107 struct raw3215_info *raw;
1108
1109 raw = (struct raw3215_info *) tty->driver_data;
1110 raw->flags |= RAW3215_STOPPED;
1111}
1112
1113/*
1114 * Enable writing to a 3215 tty
1115 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001116static void tty3215_start(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
1118 struct raw3215_info *raw;
1119 unsigned long flags;
1120
1121 raw = (struct raw3215_info *) tty->driver_data;
1122 if (raw->flags & RAW3215_STOPPED) {
Martin Schwidefsky520a4e32006-12-04 15:40:07 +01001123 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 raw->flags &= ~RAW3215_STOPPED;
1125 raw3215_try_io(raw);
Martin Schwidefsky520a4e32006-12-04 15:40:07 +01001126 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 }
1128}
1129
Jeff Dikeb68e31d2006-10-02 02:17:18 -07001130static const struct tty_operations tty3215_ops = {
Jiri Slabyd2281102012-08-07 21:47:58 +02001131 .install = tty3215_install,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 .open = tty3215_open,
1133 .close = tty3215_close,
1134 .write = tty3215_write,
1135 .put_char = tty3215_put_char,
1136 .flush_chars = tty3215_flush_chars,
1137 .write_room = tty3215_write_room,
1138 .chars_in_buffer = tty3215_chars_in_buffer,
1139 .flush_buffer = tty3215_flush_buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 .throttle = tty3215_throttle,
1141 .unthrottle = tty3215_unthrottle,
1142 .stop = tty3215_stop,
1143 .start = tty3215_start,
1144};
1145
1146/*
1147 * 3215 tty registration code called from tty_init().
1148 * Most kernel services (incl. kmalloc) are available at this poimt.
1149 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001150static int __init tty3215_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
1152 struct tty_driver *driver;
1153 int ret;
1154
1155 if (!CONSOLE_IS_3215)
1156 return 0;
1157
1158 driver = alloc_tty_driver(NR_3215);
1159 if (!driver)
1160 return -ENOMEM;
1161
1162 ret = ccw_driver_register(&raw3215_ccw_driver);
1163 if (ret) {
1164 put_tty_driver(driver);
1165 return ret;
1166 }
1167 /*
1168 * Initialize the tty_driver structure
1169 * Entries in tty3215_driver that are NOT initialized:
1170 * proc_entry, set_termios, flush_buffer, set_ldisc, write_proc
1171 */
1172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 driver->driver_name = "tty3215";
1174 driver->name = "ttyS";
1175 driver->major = TTY_MAJOR;
1176 driver->minor_start = 64;
1177 driver->type = TTY_DRIVER_TYPE_SYSTEM;
1178 driver->subtype = SYSTEM_TYPE_TTY;
1179 driver->init_termios = tty_std_termios;
1180 driver->init_termios.c_iflag = IGNBRK | IGNPAR;
1181 driver->init_termios.c_oflag = ONLCR | XTABS;
1182 driver->init_termios.c_lflag = ISIG;
1183 driver->flags = TTY_DRIVER_REAL_RAW;
1184 tty_set_operations(driver, &tty3215_ops);
1185 ret = tty_register_driver(driver);
1186 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 put_tty_driver(driver);
1188 return ret;
1189 }
1190 tty3215_driver = driver;
1191 return 0;
1192}
1193
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001194static void __exit tty3215_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
1196 tty_unregister_driver(tty3215_driver);
1197 put_tty_driver(tty3215_driver);
1198 ccw_driver_unregister(&raw3215_ccw_driver);
1199}
1200
1201module_init(tty3215_init);
1202module_exit(tty3215_exit);