blob: 931d10e86837c917f35df331ca919c3ba33f60cf [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);
Martin Schwidefsky26d766c2014-07-15 17:53:12 +0200291 raw->flags &= ~RAW3215_TIMER_RUNS;
Peter Hurley80f02d52016-04-09 17:53:24 -0700292 if (!tty_port_suspended(&raw->port)) {
Martin Schwidefsky26d766c2014-07-15 17:53:12 +0200293 raw3215_mk_write_req(raw);
294 raw3215_start_io(raw);
295 if ((raw->queued_read || raw->queued_write) &&
296 !(raw->flags & RAW3215_WORKING) &&
297 !(raw->flags & RAW3215_TIMER_RUNS)) {
298 raw->timer.expires = RAW3215_TIMEOUT + jiffies;
299 add_timer(&raw->timer);
300 raw->flags |= RAW3215_TIMER_RUNS;
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100303 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
306/*
307 * Function to conditionally start an IO. A read is started immediately,
308 * a write is only started immediately if the flush flag is on or the
309 * amount of data is bigger than RAW3215_MIN_WRITE. If a write is not
310 * done immediately a timer is started with a delay of RAW3215_TIMEOUT.
311 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200312static inline void raw3215_try_io(struct raw3215_info *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Peter Hurleyd41861c2016-04-09 17:53:25 -0700314 if (!tty_port_initialized(&raw->port) || tty_port_suspended(&raw->port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return;
316 if (raw->queued_read != NULL)
317 raw3215_start_io(raw);
318 else if (raw->queued_write != NULL) {
319 if ((raw->queued_write->delayable == 0) ||
320 (raw->flags & RAW3215_FLUSHING)) {
321 /* execute write requests bigger than minimum size */
322 raw3215_start_io(raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
324 }
Martin Schwidefsky26d766c2014-07-15 17:53:12 +0200325 if ((raw->queued_read || raw->queued_write) &&
326 !(raw->flags & RAW3215_WORKING) &&
327 !(raw->flags & RAW3215_TIMER_RUNS)) {
328 raw->timer.expires = RAW3215_TIMEOUT + jiffies;
329 add_timer(&raw->timer);
330 raw->flags |= RAW3215_TIMER_RUNS;
331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
334/*
Martin Schwidefsky656d9122012-02-17 10:29:22 +0100335 * Call tty_wakeup from tasklet context
336 */
337static void raw3215_wakeup(unsigned long data)
338{
339 struct raw3215_info *raw = (struct raw3215_info *) data;
Heiko Carstense695b282012-04-17 13:16:34 +0200340 struct tty_struct *tty;
341
342 tty = tty_port_tty_get(&raw->port);
Heiko Carstensae289dc2012-11-15 09:22:40 +0100343 if (tty) {
344 tty_wakeup(tty);
345 tty_kref_put(tty);
346 }
Martin Schwidefsky656d9122012-02-17 10:29:22 +0100347}
348
349/*
Heiko Carstens408aec32008-10-10 21:33:28 +0200350 * Try to start the next IO and wake up processes waiting on the tty.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 */
Jiri Slaby86b260072012-04-11 11:14:59 +0200352static void raw3215_next_io(struct raw3215_info *raw, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 raw3215_mk_write_req(raw);
355 raw3215_try_io(raw);
Jiri Slaby86b260072012-04-11 11:14:59 +0200356 if (tty && RAW3215_BUFFER_SIZE - raw->count >= RAW3215_MIN_SPACE)
Martin Schwidefsky656d9122012-02-17 10:29:22 +0100357 tasklet_schedule(&raw->tlet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
360/*
361 * Interrupt routine, called from common io layer
362 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200363static void raw3215_irq(struct ccw_device *cdev, unsigned long intparm,
364 struct irb *irb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
366 struct raw3215_info *raw;
367 struct raw3215_req *req;
368 struct tty_struct *tty;
369 int cstat, dstat;
Heiko Carstens1d030372008-07-14 09:59:44 +0200370 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700372 raw = dev_get_drvdata(&cdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 req = (struct raw3215_req *) intparm;
Jiri Slaby86b260072012-04-11 11:14:59 +0200374 tty = tty_port_tty_get(&raw->port);
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200375 cstat = irb->scsw.cmd.cstat;
376 dstat = irb->scsw.cmd.dstat;
Martin Schwidefsky26348f72008-07-14 09:59:26 +0200377 if (cstat != 0)
Jiri Slaby86b260072012-04-11 11:14:59 +0200378 raw3215_next_io(raw, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (dstat & 0x01) { /* we got a unit exception */
380 dstat &= ~0x01; /* we can ignore it */
381 }
382 switch (dstat) {
383 case 0x80:
384 if (cstat != 0)
385 break;
386 /* Attention interrupt, someone hit the enter key */
387 raw3215_mk_read_req(raw);
Jiri Slaby86b260072012-04-11 11:14:59 +0200388 raw3215_next_io(raw, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 break;
390 case 0x08:
391 case 0x0C:
392 /* Channel end interrupt. */
393 if ((raw = req->info) == NULL)
Jiri Slaby86b260072012-04-11 11:14:59 +0200394 goto put_tty; /* That shouldn't happen ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (req->type == RAW3215_READ) {
396 /* store residual count, then wait for device end */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200397 req->residual = irb->scsw.cmd.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
399 if (dstat == 0x08)
400 break;
401 case 0x04:
402 /* Device end interrupt. */
403 if ((raw = req->info) == NULL)
Jiri Slaby86b260072012-04-11 11:14:59 +0200404 goto put_tty; /* That shouldn't happen ... */
405 if (req->type == RAW3215_READ && tty != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 unsigned int cchar;
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 count = 160 - req->residual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 EBCASC(raw->inbuf, count);
410 cchar = ctrlchar_handle(raw->inbuf, count, tty);
411 switch (cchar & CTRLCHAR_MASK) {
412 case CTRLCHAR_SYSRQ:
413 break;
414
415 case CTRLCHAR_CTRL:
Jiri Slaby92a19f92013-01-03 15:53:03 +0100416 tty_insert_flip_char(&raw->port, cchar,
417 TTY_NORMAL);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100418 tty_flip_buffer_push(&raw->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 break;
420
421 case CTRLCHAR_NONE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (count < 2 ||
Alan Cox33f0f882006-01-09 20:54:13 -0800423 (strncmp(raw->inbuf+count-2, "\252n", 2) &&
424 strncmp(raw->inbuf+count-2, "^n", 2)) ) {
425 /* add the auto \n */
426 raw->inbuf[count] = '\n';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 count++;
428 } else
Alan Cox33f0f882006-01-09 20:54:13 -0800429 count -= 2;
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100430 tty_insert_flip_string(&raw->port, raw->inbuf,
431 count);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100432 tty_flip_buffer_push(&raw->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 break;
434 }
435 } else if (req->type == RAW3215_WRITE) {
436 raw->count -= req->len;
437 raw->written -= req->len;
438 }
439 raw->flags &= ~RAW3215_WORKING;
440 raw3215_free_req(req);
441 /* check for empty wait */
442 if (waitqueue_active(&raw->empty_wait) &&
443 raw->queued_write == NULL &&
444 raw->queued_read == NULL) {
445 wake_up_interruptible(&raw->empty_wait);
446 }
Jiri Slaby86b260072012-04-11 11:14:59 +0200447 raw3215_next_io(raw, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 break;
449 default:
450 /* Strange interrupt, I'll do my best to clean up */
451 if (req != NULL && req->type != RAW3215_FREE) {
452 if (req->type == RAW3215_WRITE) {
453 raw->count -= req->len;
454 raw->written -= req->len;
455 }
456 raw->flags &= ~RAW3215_WORKING;
457 raw3215_free_req(req);
458 }
Jiri Slaby86b260072012-04-11 11:14:59 +0200459 raw3215_next_io(raw, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
Jiri Slaby86b260072012-04-11 11:14:59 +0200461put_tty:
462 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
465/*
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200466 * Drop the oldest line from the output buffer.
467 */
468static void raw3215_drop_line(struct raw3215_info *raw)
469{
470 int ix;
471 char ch;
472
473 BUG_ON(raw->written != 0);
474 ix = (raw->head - raw->count) & (RAW3215_BUFFER_SIZE - 1);
475 while (raw->count > 0) {
476 ch = raw->buffer[ix];
477 ix = (ix + 1) & (RAW3215_BUFFER_SIZE - 1);
478 raw->count--;
479 if (ch == 0x15)
480 break;
481 }
482 raw->head = ix;
483}
484
485/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 * Wait until length bytes are available int the output buffer.
487 * Has to be called with the s390irq lock held. Can be called
488 * disabled.
489 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200490static void raw3215_make_room(struct raw3215_info *raw, unsigned int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
492 while (RAW3215_BUFFER_SIZE - raw->count < length) {
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200493 /* While console is frozen for suspend we have no other
494 * choice but to drop message from the buffer to make
495 * room for even more messages. */
Peter Hurley80f02d52016-04-09 17:53:24 -0700496 if (tty_port_suspended(&raw->port)) {
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200497 raw3215_drop_line(raw);
498 continue;
499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 /* there might be a request pending */
501 raw->flags |= RAW3215_FLUSHING;
502 raw3215_mk_write_req(raw);
503 raw3215_try_io(raw);
504 raw->flags &= ~RAW3215_FLUSHING;
505#ifdef CONFIG_TN3215_CONSOLE
Sebastian Ott188561a2013-04-13 12:53:21 +0200506 ccw_device_wait_idle(raw->cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507#endif
508 /* Enough room freed up ? */
509 if (RAW3215_BUFFER_SIZE - raw->count >= length)
510 break;
511 /* there might be another cpu waiting for the lock */
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100512 spin_unlock(get_ccwdev_lock(raw->cdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 udelay(100);
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100514 spin_lock(get_ccwdev_lock(raw->cdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
516}
517
518/*
519 * String write routine for 3215 devices
520 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200521static void raw3215_write(struct raw3215_info *raw, const char *str,
522 unsigned int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524 unsigned long flags;
525 int c, count;
526
527 while (length > 0) {
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100528 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 count = (length > RAW3215_BUFFER_SIZE) ?
530 RAW3215_BUFFER_SIZE : length;
531 length -= count;
532
533 raw3215_make_room(raw, count);
534
535 /* copy string to output buffer and convert it to EBCDIC */
536 while (1) {
537 c = min_t(int, count,
538 min(RAW3215_BUFFER_SIZE - raw->count,
539 RAW3215_BUFFER_SIZE - raw->head));
540 if (c <= 0)
541 break;
542 memcpy(raw->buffer + raw->head, str, c);
543 ASCEBC(raw->buffer + raw->head, c);
544 raw->head = (raw->head + c) & (RAW3215_BUFFER_SIZE - 1);
545 raw->count += c;
546 raw->line_pos += c;
547 str += c;
548 count -= c;
549 }
550 if (!(raw->flags & RAW3215_WORKING)) {
551 raw3215_mk_write_req(raw);
552 /* start or queue request */
553 raw3215_try_io(raw);
554 }
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100555 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
557}
558
559/*
560 * Put character routine for 3215 devices
561 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200562static void raw3215_putchar(struct raw3215_info *raw, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
564 unsigned long flags;
565 unsigned int length, i;
566
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100567 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (ch == '\t') {
569 length = TAB_STOP_SIZE - (raw->line_pos%TAB_STOP_SIZE);
570 raw->line_pos += length;
571 ch = ' ';
572 } else if (ch == '\n') {
573 length = 1;
574 raw->line_pos = 0;
575 } else {
576 length = 1;
577 raw->line_pos++;
578 }
579 raw3215_make_room(raw, length);
580
581 for (i = 0; i < length; i++) {
582 raw->buffer[raw->head] = (char) _ascebc[(int) ch];
583 raw->head = (raw->head + 1) & (RAW3215_BUFFER_SIZE - 1);
584 raw->count++;
585 }
586 if (!(raw->flags & RAW3215_WORKING)) {
587 raw3215_mk_write_req(raw);
588 /* start or queue request */
589 raw3215_try_io(raw);
590 }
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100591 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
594/*
595 * Flush routine, it simply sets the flush flag and tries to start
596 * pending IO.
597 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200598static void raw3215_flush_buffer(struct raw3215_info *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
600 unsigned long flags;
601
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100602 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 if (raw->count > 0) {
604 raw->flags |= RAW3215_FLUSHING;
605 raw3215_try_io(raw);
606 raw->flags &= ~RAW3215_FLUSHING;
607 }
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100608 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
611/*
612 * Fire up a 3215 device.
613 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200614static int raw3215_startup(struct raw3215_info *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
616 unsigned long flags;
617
Peter Hurleyd41861c2016-04-09 17:53:25 -0700618 if (tty_port_initialized(&raw->port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 return 0;
620 raw->line_pos = 0;
Peter Hurleyd41861c2016-04-09 17:53:25 -0700621 tty_port_set_initialized(&raw->port, 1);
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100622 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 raw3215_try_io(raw);
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100624 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 return 0;
627}
628
629/*
630 * Shutdown a 3215 device.
631 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200632static void raw3215_shutdown(struct raw3215_info *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 DECLARE_WAITQUEUE(wait, current);
635 unsigned long flags;
636
Peter Hurleyd41861c2016-04-09 17:53:25 -0700637 if (!tty_port_initialized(&raw->port) || (raw->flags & RAW3215_FIXED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return;
639 /* Wait for outstanding requests, then free irq */
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100640 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if ((raw->flags & RAW3215_WORKING) ||
642 raw->queued_write != NULL ||
643 raw->queued_read != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 add_wait_queue(&raw->empty_wait, &wait);
645 set_current_state(TASK_INTERRUPTIBLE);
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100646 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 schedule();
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100648 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 remove_wait_queue(&raw->empty_wait, &wait);
650 set_current_state(TASK_RUNNING);
Peter Hurleyd41861c2016-04-09 17:53:25 -0700651 tty_port_set_initialized(&raw->port, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100653 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200656static struct raw3215_info *raw3215_alloc_info(void)
657{
658 struct raw3215_info *info;
659
660 info = kzalloc(sizeof(struct raw3215_info), GFP_KERNEL | GFP_DMA);
661 if (!info)
662 return NULL;
663
664 info->buffer = kzalloc(RAW3215_BUFFER_SIZE, GFP_KERNEL | GFP_DMA);
665 info->inbuf = kzalloc(RAW3215_INBUF_SIZE, GFP_KERNEL | GFP_DMA);
666 if (!info->buffer || !info->inbuf) {
Christophe Jaillet0a7c501e2015-04-20 10:26:52 +0200667 kfree(info->inbuf);
668 kfree(info->buffer);
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200669 kfree(info);
670 return NULL;
671 }
672
673 setup_timer(&info->timer, raw3215_timeout, (unsigned long)info);
674 init_waitqueue_head(&info->empty_wait);
675 tasklet_init(&info->tlet, raw3215_wakeup, (unsigned long)info);
Jiri Slaby8dd360f2012-04-11 11:14:58 +0200676 tty_port_init(&info->port);
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200677
678 return info;
679}
680
681static void raw3215_free_info(struct raw3215_info *raw)
682{
683 kfree(raw->inbuf);
684 kfree(raw->buffer);
Jiri Slaby191c5f12012-11-15 09:49:56 +0100685 tty_port_destroy(&raw->port);
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200686 kfree(raw);
687}
688
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200689static int raw3215_probe (struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
691 struct raw3215_info *raw;
692 int line;
693
Cornelia Hucka2e53802007-10-12 16:11:52 +0200694 /* Console is special. */
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700695 if (raw3215[0] && (raw3215[0] == dev_get_drvdata(&cdev->dev)))
Cornelia Hucka2e53802007-10-12 16:11:52 +0200696 return 0;
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200697
698 raw = raw3215_alloc_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (raw == NULL)
700 return -ENOMEM;
701
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200702 raw->cdev = cdev;
703 dev_set_drvdata(&cdev->dev, raw);
704 cdev->handler = raw3215_irq;
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 spin_lock(&raw3215_device_lock);
707 for (line = 0; line < NR_3215; line++) {
708 if (!raw3215[line]) {
709 raw3215[line] = raw;
710 break;
711 }
712 }
713 spin_unlock(&raw3215_device_lock);
714 if (line == NR_3215) {
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200715 raw3215_free_info(raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 return -ENODEV;
717 }
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 return 0;
720}
721
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200722static void raw3215_remove (struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
724 struct raw3215_info *raw;
Jiri Slaby3ec0a172012-08-07 21:47:57 +0200725 unsigned int line;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 ccw_device_set_offline(cdev);
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700728 raw = dev_get_drvdata(&cdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (raw) {
Jiri Slaby3ec0a172012-08-07 21:47:57 +0200730 spin_lock(&raw3215_device_lock);
731 for (line = 0; line < NR_3215; line++)
732 if (raw3215[line] == raw)
733 break;
734 raw3215[line] = NULL;
735 spin_unlock(&raw3215_device_lock);
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700736 dev_set_drvdata(&cdev->dev, NULL);
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200737 raw3215_free_info(raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
739}
740
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200741static int raw3215_set_online (struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
743 struct raw3215_info *raw;
744
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700745 raw = dev_get_drvdata(&cdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (!raw)
747 return -ENODEV;
748
749 return raw3215_startup(raw);
750}
751
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200752static int raw3215_set_offline (struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
754 struct raw3215_info *raw;
755
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700756 raw = dev_get_drvdata(&cdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if (!raw)
758 return -ENODEV;
759
760 raw3215_shutdown(raw);
761
762 return 0;
763}
764
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200765static int raw3215_pm_stop(struct ccw_device *cdev)
766{
767 struct raw3215_info *raw;
768 unsigned long flags;
769
770 /* Empty the output buffer, then prevent new I/O. */
Martin Schwidefsky4f0076f2009-06-22 12:08:19 +0200771 raw = dev_get_drvdata(&cdev->dev);
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200772 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
773 raw3215_make_room(raw, RAW3215_BUFFER_SIZE);
Peter Hurley80f02d52016-04-09 17:53:24 -0700774 tty_port_set_suspended(&raw->port, 1);
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200775 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
776 return 0;
777}
778
779static int raw3215_pm_start(struct ccw_device *cdev)
780{
781 struct raw3215_info *raw;
782 unsigned long flags;
783
784 /* Allow I/O again and flush output buffer. */
Martin Schwidefsky4f0076f2009-06-22 12:08:19 +0200785 raw = dev_get_drvdata(&cdev->dev);
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200786 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Peter Hurley80f02d52016-04-09 17:53:24 -0700787 tty_port_set_suspended(&raw->port, 0);
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200788 raw->flags |= RAW3215_FLUSHING;
789 raw3215_try_io(raw);
790 raw->flags &= ~RAW3215_FLUSHING;
791 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
792 return 0;
793}
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795static struct ccw_device_id raw3215_id[] = {
796 { CCW_DEVICE(0x3215, 0) },
797 { /* end of list */ },
798};
799
800static struct ccw_driver raw3215_ccw_driver = {
Sebastian Ott3bda0582011-03-23 10:16:02 +0100801 .driver = {
802 .name = "3215",
803 .owner = THIS_MODULE,
804 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 .ids = raw3215_id,
806 .probe = &raw3215_probe,
807 .remove = &raw3215_remove,
808 .set_online = &raw3215_set_online,
809 .set_offline = &raw3215_set_offline,
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200810 .freeze = &raw3215_pm_stop,
811 .thaw = &raw3215_pm_start,
812 .restore = &raw3215_pm_start,
Heiko Carstens420f42e2013-01-02 15:18:18 +0100813 .int_class = IRQIO_C15,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814};
815
816#ifdef CONFIG_TN3215_CONSOLE
817/*
818 * Write a string to the 3215 console
819 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200820static void con3215_write(struct console *co, const char *str,
821 unsigned int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
823 struct raw3215_info *raw;
824 int i;
825
826 if (count <= 0)
827 return;
828 raw = raw3215[0]; /* console 3215 is the first one */
829 while (count > 0) {
830 for (i = 0; i < count; i++)
831 if (str[i] == '\t' || str[i] == '\n')
832 break;
833 raw3215_write(raw, str, i);
834 count -= i;
835 str += i;
836 if (count > 0) {
837 raw3215_putchar(raw, *str);
838 count--;
839 str++;
840 }
841 }
842}
843
844static struct tty_driver *con3215_device(struct console *c, int *index)
845{
846 *index = c->index;
847 return tty3215_driver;
848}
849
850/*
Holger Smolinski2332ce12008-10-10 21:33:27 +0200851 * panic() calls con3215_flush through a panic_notifier
852 * before the system enters a disabled, endless loop.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200854static void con3215_flush(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
856 struct raw3215_info *raw;
857 unsigned long flags;
858
859 raw = raw3215[0]; /* console 3215 is the first one */
Peter Hurley80f02d52016-04-09 17:53:24 -0700860 if (tty_port_suspended(&raw->port))
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200861 /* The console is still frozen for suspend. */
Sebastian Ottf10ccca2013-04-13 12:56:51 +0200862 if (ccw_device_force_console(raw->cdev))
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200863 /* Forcing didn't work, no panic message .. */
864 return;
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100865 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 raw3215_make_room(raw, RAW3215_BUFFER_SIZE);
Martin Schwidefsky520a4e32006-12-04 15:40:07 +0100867 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
869
Holger Smolinski2332ce12008-10-10 21:33:27 +0200870static int con3215_notify(struct notifier_block *self,
871 unsigned long event, void *data)
872{
873 con3215_flush();
874 return NOTIFY_OK;
875}
876
877static struct notifier_block on_panic_nb = {
878 .notifier_call = con3215_notify,
879 .priority = 0,
880};
881
882static struct notifier_block on_reboot_nb = {
883 .notifier_call = con3215_notify,
884 .priority = 0,
885};
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887/*
888 * The console structure for the 3215 console
889 */
890static struct console con3215 = {
891 .name = "ttyS",
892 .write = con3215_write,
893 .device = con3215_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 .flags = CON_PRINTBUFFER,
895};
896
897/*
898 * 3215 console initialization code called from console_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200900static int __init con3215_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
902 struct ccw_device *cdev;
903 struct raw3215_info *raw;
904 struct raw3215_req *req;
905 int i;
906
907 /* Check if 3215 is to be the console */
908 if (!CONSOLE_IS_3215)
909 return -ENODEV;
910
911 /* Set the console mode for VM */
912 if (MACHINE_IS_VM) {
Christian Borntraeger6b979de2005-06-25 14:55:32 -0700913 cpcmd("TERM CONMODE 3215", NULL, 0, NULL);
914 cpcmd("TERM AUTOCR OFF", NULL, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
916
917 /* allocate 3215 request structures */
918 raw3215_freelist = NULL;
919 spin_lock_init(&raw3215_freelist_lock);
920 for (i = 0; i < NR_3215_REQ; i++) {
Heiko Carstens6d56eee2009-06-22 12:08:04 +0200921 req = kzalloc(sizeof(struct raw3215_req), GFP_KERNEL | GFP_DMA);
Julia Lawall8cb708f2015-12-20 12:15:52 +0100922 if (!req)
923 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 req->next = raw3215_freelist;
925 raw3215_freelist = req;
926 }
927
Sebastian Ott1e532092014-01-27 13:28:10 +0100928 cdev = ccw_device_create_console(&raw3215_ccw_driver);
Peter Oberparleiter600b5d12006-02-01 03:06:35 -0800929 if (IS_ERR(cdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 return -ENODEV;
931
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200932 raw3215[0] = raw = raw3215_alloc_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 raw->cdev = cdev;
Greg Kroah-Hartmandff59b62009-05-04 12:40:54 -0700934 dev_set_drvdata(&cdev->dev, raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 cdev->handler = raw3215_irq;
936
Heiko Carstens6673cd02013-01-03 14:31:53 +0100937 raw->flags |= RAW3215_FIXED;
Sebastian Ott1e532092014-01-27 13:28:10 +0100938 if (ccw_device_enable_console(cdev)) {
939 ccw_device_destroy_console(cdev);
940 raw3215_free_info(raw);
941 raw3215[0] = NULL;
942 return -ENODEV;
943 }
Heiko Carstens6673cd02013-01-03 14:31:53 +0100944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 /* Request the console irq */
946 if (raw3215_startup(raw) != 0) {
Jiri Slabyfe2fc9c2012-04-02 13:54:08 +0200947 raw3215_free_info(raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 raw3215[0] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return -ENODEV;
950 }
Holger Smolinski2332ce12008-10-10 21:33:27 +0200951 atomic_notifier_chain_register(&panic_notifier_list, &on_panic_nb);
952 register_reboot_notifier(&on_reboot_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 register_console(&con3215);
954 return 0;
955}
956console_initcall(con3215_init);
957#endif
958
Jiri Slabyd2281102012-08-07 21:47:58 +0200959static int tty3215_install(struct tty_driver *driver, struct tty_struct *tty)
960{
961 struct raw3215_info *raw;
962
963 raw = raw3215[tty->index];
964 if (raw == NULL)
965 return -ENODEV;
966
967 tty->driver_data = raw;
968
969 return tty_port_install(&raw->port, driver, tty);
970}
971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972/*
973 * tty3215_open
974 *
975 * This routine is called whenever a 3215 tty is opened.
976 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +0200977static int tty3215_open(struct tty_struct *tty, struct file * filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
Jiri Slabyd2281102012-08-07 21:47:58 +0200979 struct raw3215_info *raw = tty->driver_data;
Jiri Slaby410235f2012-03-05 14:52:01 +0100980 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Jiri Slaby86b260072012-04-11 11:14:59 +0200982 tty_port_tty_set(&raw->port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Jiri Slabyd6c53c02013-01-03 15:53:05 +0100984 raw->port.low_latency = 0; /* don't use bottom half for pushing chars */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 /*
986 * Start up 3215 device
987 */
988 retval = raw3215_startup(raw);
989 if (retval)
990 return retval;
991
992 return 0;
993}
994
995/*
996 * tty3215_close()
997 *
998 * This routine is called when the 3215 tty is closed. We wait
999 * for the remaining request to be completed. Then we clean up.
1000 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001001static void tty3215_close(struct tty_struct *tty, struct file * filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
1003 struct raw3215_info *raw;
1004
1005 raw = (struct raw3215_info *) tty->driver_data;
1006 if (raw == NULL || tty->count > 1)
1007 return;
1008 tty->closing = 1;
1009 /* Shutdown the terminal */
1010 raw3215_shutdown(raw);
Martin Schwidefsky656d9122012-02-17 10:29:22 +01001011 tasklet_kill(&raw->tlet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 tty->closing = 0;
Jiri Slaby86b260072012-04-11 11:14:59 +02001013 tty_port_tty_set(&raw->port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014}
1015
1016/*
1017 * Returns the amount of free space in the output buffer.
1018 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001019static int tty3215_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
1021 struct raw3215_info *raw;
1022
1023 raw = (struct raw3215_info *) tty->driver_data;
1024
1025 /* Subtract TAB_STOP_SIZE to allow for a tab, 8 <<< 64K */
1026 if ((RAW3215_BUFFER_SIZE - raw->count - TAB_STOP_SIZE) >= 0)
1027 return RAW3215_BUFFER_SIZE - raw->count - TAB_STOP_SIZE;
1028 else
1029 return 0;
1030}
1031
1032/*
1033 * String write routine for 3215 ttys
1034 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001035static int tty3215_write(struct tty_struct * tty,
1036 const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
1038 struct raw3215_info *raw;
Martin Schwidefskye512d562014-08-13 12:01:30 +02001039 int i, written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 if (!tty)
1042 return 0;
1043 raw = (struct raw3215_info *) tty->driver_data;
Martin Schwidefskye512d562014-08-13 12:01:30 +02001044 written = count;
1045 while (count > 0) {
1046 for (i = 0; i < count; i++)
1047 if (buf[i] == '\t' || buf[i] == '\n')
1048 break;
1049 raw3215_write(raw, buf, i);
1050 count -= i;
1051 buf += i;
1052 if (count > 0) {
1053 raw3215_putchar(raw, *buf);
1054 count--;
1055 buf++;
1056 }
1057 }
1058 return written;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059}
1060
1061/*
1062 * Put character routine for 3215 ttys
1063 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001064static int tty3215_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
1066 struct raw3215_info *raw;
1067
1068 if (!tty)
Alan Cox9e7c9a12008-04-30 00:54:00 -07001069 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 raw = (struct raw3215_info *) tty->driver_data;
1071 raw3215_putchar(raw, ch);
Alan Cox9e7c9a12008-04-30 00:54:00 -07001072 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073}
1074
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001075static void tty3215_flush_chars(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076{
1077}
1078
1079/*
1080 * Returns the number of characters in the output buffer
1081 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001082static int tty3215_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083{
1084 struct raw3215_info *raw;
1085
1086 raw = (struct raw3215_info *) tty->driver_data;
1087 return raw->count;
1088}
1089
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001090static void tty3215_flush_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
1092 struct raw3215_info *raw;
1093
1094 raw = (struct raw3215_info *) tty->driver_data;
1095 raw3215_flush_buffer(raw);
1096 tty_wakeup(tty);
1097}
1098
1099/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 * Disable reading from a 3215 tty
1101 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001102static void tty3215_throttle(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_THROTTLED;
1108}
1109
1110/*
1111 * Enable reading from a 3215 tty
1112 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001113static void tty3215_unthrottle(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_THROTTLED) {
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_THROTTLED;
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
1127/*
1128 * Disable writing to a 3215 tty
1129 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001130static void tty3215_stop(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131{
1132 struct raw3215_info *raw;
1133
1134 raw = (struct raw3215_info *) tty->driver_data;
1135 raw->flags |= RAW3215_STOPPED;
1136}
1137
1138/*
1139 * Enable writing to a 3215 tty
1140 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001141static void tty3215_start(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
1143 struct raw3215_info *raw;
1144 unsigned long flags;
1145
1146 raw = (struct raw3215_info *) tty->driver_data;
1147 if (raw->flags & RAW3215_STOPPED) {
Martin Schwidefsky520a4e32006-12-04 15:40:07 +01001148 spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 raw->flags &= ~RAW3215_STOPPED;
1150 raw3215_try_io(raw);
Martin Schwidefsky520a4e32006-12-04 15:40:07 +01001151 spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 }
1153}
1154
Jeff Dikeb68e31d2006-10-02 02:17:18 -07001155static const struct tty_operations tty3215_ops = {
Jiri Slabyd2281102012-08-07 21:47:58 +02001156 .install = tty3215_install,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 .open = tty3215_open,
1158 .close = tty3215_close,
1159 .write = tty3215_write,
1160 .put_char = tty3215_put_char,
1161 .flush_chars = tty3215_flush_chars,
1162 .write_room = tty3215_write_room,
1163 .chars_in_buffer = tty3215_chars_in_buffer,
1164 .flush_buffer = tty3215_flush_buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 .throttle = tty3215_throttle,
1166 .unthrottle = tty3215_unthrottle,
1167 .stop = tty3215_stop,
1168 .start = tty3215_start,
1169};
1170
1171/*
1172 * 3215 tty registration code called from tty_init().
1173 * Most kernel services (incl. kmalloc) are available at this poimt.
1174 */
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001175static int __init tty3215_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
1177 struct tty_driver *driver;
1178 int ret;
1179
1180 if (!CONSOLE_IS_3215)
1181 return 0;
1182
1183 driver = alloc_tty_driver(NR_3215);
1184 if (!driver)
1185 return -ENOMEM;
1186
1187 ret = ccw_driver_register(&raw3215_ccw_driver);
1188 if (ret) {
1189 put_tty_driver(driver);
1190 return ret;
1191 }
1192 /*
1193 * Initialize the tty_driver structure
1194 * Entries in tty3215_driver that are NOT initialized:
1195 * proc_entry, set_termios, flush_buffer, set_ldisc, write_proc
1196 */
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 driver->driver_name = "tty3215";
1199 driver->name = "ttyS";
1200 driver->major = TTY_MAJOR;
1201 driver->minor_start = 64;
1202 driver->type = TTY_DRIVER_TYPE_SYSTEM;
1203 driver->subtype = SYSTEM_TYPE_TTY;
1204 driver->init_termios = tty_std_termios;
1205 driver->init_termios.c_iflag = IGNBRK | IGNPAR;
Martin Schwidefskye512d562014-08-13 12:01:30 +02001206 driver->init_termios.c_oflag = ONLCR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 driver->init_termios.c_lflag = ISIG;
1208 driver->flags = TTY_DRIVER_REAL_RAW;
1209 tty_set_operations(driver, &tty3215_ops);
1210 ret = tty_register_driver(driver);
1211 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 put_tty_driver(driver);
1213 return ret;
1214 }
1215 tty3215_driver = driver;
1216 return 0;
1217}
1218
Martin Schwidefsky77812a22009-06-16 10:30:29 +02001219static void __exit tty3215_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
1221 tty_unregister_driver(tty3215_driver);
1222 put_tty_driver(tty3215_driver);
1223 ccw_driver_unregister(&raw3215_ccw_driver);
1224}
1225
1226module_init(tty3215_init);
1227module_exit(tty3215_exit);