Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 2 | * 3215 line mode terminal driver. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 4 | * Copyright IBM Corp. 1999, 2009 |
| 5 | * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 7 | * Updated: |
| 8 | * Aug-2000: Added tab support |
| 9 | * Dan Morrison, IBM Corporation <dmorriso@cse.buffalo.edu> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/module.h> |
| 13 | #include <linux/types.h> |
| 14 | #include <linux/kdev_t.h> |
| 15 | #include <linux/tty.h> |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 16 | #include <linux/tty_flip.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/vt_kern.h> |
| 18 | #include <linux/init.h> |
| 19 | #include <linux/console.h> |
| 20 | #include <linux/interrupt.h> |
Peter Oberparleiter | 600b5d1 | 2006-02-01 03:06:35 -0800 | [diff] [blame] | 21 | #include <linux/err.h> |
Holger Smolinski | 2332ce1 | 2008-10-10 21:33:27 +0200 | [diff] [blame] | 22 | #include <linux/reboot.h> |
Jiri Slaby | 8dd360f | 2012-04-11 11:14:58 +0200 | [diff] [blame] | 23 | #include <linux/serial.h> /* ASYNC_* flags */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <asm/ccwdev.h> |
| 26 | #include <asm/cio.h> |
| 27 | #include <asm/io.h> |
| 28 | #include <asm/ebcdic.h> |
| 29 | #include <asm/uaccess.h> |
| 30 | #include <asm/delay.h> |
| 31 | #include <asm/cpcmd.h> |
| 32 | #include <asm/setup.h> |
| 33 | |
| 34 | #include "ctrlchar.h" |
| 35 | |
| 36 | #define NR_3215 1 |
| 37 | #define NR_3215_REQ (4*NR_3215) |
| 38 | #define RAW3215_BUFFER_SIZE 65536 /* output buffer size */ |
| 39 | #define RAW3215_INBUF_SIZE 256 /* input buffer size */ |
| 40 | #define RAW3215_MIN_SPACE 128 /* minimum free space for wakeup */ |
| 41 | #define RAW3215_MIN_WRITE 1024 /* min. length for immediate output */ |
| 42 | #define RAW3215_MAX_BYTES 3968 /* max. bytes to write with one ssch */ |
| 43 | #define RAW3215_MAX_NEWLINE 50 /* max. lines to write with one ssch */ |
| 44 | #define RAW3215_NR_CCWS 3 |
| 45 | #define RAW3215_TIMEOUT HZ/10 /* time for delayed output */ |
| 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #define RAW3215_WORKING 4 /* set if a request is being worked on */ |
| 48 | #define RAW3215_THROTTLED 8 /* set if reading is disabled */ |
| 49 | #define RAW3215_STOPPED 16 /* set if writing is disabled */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #define RAW3215_TIMER_RUNS 64 /* set if the output delay timer is on */ |
| 51 | #define RAW3215_FLUSHING 128 /* set to flush buffer (no delay) */ |
| 52 | |
| 53 | #define TAB_STOP_SIZE 8 /* tab stop size */ |
| 54 | |
| 55 | /* |
| 56 | * Request types for a 3215 device |
| 57 | */ |
| 58 | enum raw3215_type { |
| 59 | RAW3215_FREE, RAW3215_READ, RAW3215_WRITE |
| 60 | }; |
| 61 | |
| 62 | /* |
| 63 | * Request structure for a 3215 device |
| 64 | */ |
| 65 | struct raw3215_req { |
| 66 | enum raw3215_type type; /* type of the request */ |
| 67 | int start, len; /* start index & len in output buffer */ |
| 68 | int delayable; /* indication to wait for more data */ |
| 69 | int residual; /* residual count for read request */ |
| 70 | struct ccw1 ccws[RAW3215_NR_CCWS]; /* space for the channel program */ |
| 71 | struct raw3215_info *info; /* pointer to main structure */ |
| 72 | struct raw3215_req *next; /* pointer to next request */ |
| 73 | } __attribute__ ((aligned(8))); |
| 74 | |
| 75 | struct raw3215_info { |
Jiri Slaby | 8dd360f | 2012-04-11 11:14:58 +0200 | [diff] [blame] | 76 | struct tty_port port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | struct ccw_device *cdev; /* device for tty driver */ |
| 78 | spinlock_t *lock; /* pointer to irq lock */ |
| 79 | int flags; /* state flags */ |
| 80 | char *buffer; /* pointer to output buffer */ |
| 81 | char *inbuf; /* pointer to input buffer */ |
| 82 | int head; /* first free byte in output buffer */ |
| 83 | int count; /* number of bytes in output buffer */ |
| 84 | int written; /* number of bytes in write requests */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | struct raw3215_req *queued_read; /* pointer to queued read requests */ |
| 86 | struct raw3215_req *queued_write;/* pointer to queued write requests */ |
Martin Schwidefsky | 656d912 | 2012-02-17 10:29:22 +0100 | [diff] [blame] | 87 | struct tasklet_struct tlet; /* tasklet to invoke tty_wakeup */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | wait_queue_head_t empty_wait; /* wait queue for flushing */ |
| 89 | struct timer_list timer; /* timer for delayed output */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | int line_pos; /* position on the line (for tabs) */ |
| 91 | char ubuffer[80]; /* copy_from_user buffer */ |
| 92 | }; |
| 93 | |
| 94 | /* array of 3215 devices structures */ |
| 95 | static struct raw3215_info *raw3215[NR_3215]; |
| 96 | /* spinlock to protect the raw3215 array */ |
| 97 | static DEFINE_SPINLOCK(raw3215_device_lock); |
| 98 | /* list of free request structures */ |
| 99 | static struct raw3215_req *raw3215_freelist; |
| 100 | /* spinlock to protect free list */ |
| 101 | static spinlock_t raw3215_freelist_lock; |
| 102 | |
| 103 | static struct tty_driver *tty3215_driver; |
| 104 | |
| 105 | /* |
| 106 | * Get a request structure from the free list |
| 107 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 108 | static inline struct raw3215_req *raw3215_alloc_req(void) |
| 109 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | struct raw3215_req *req; |
| 111 | unsigned long flags; |
| 112 | |
| 113 | spin_lock_irqsave(&raw3215_freelist_lock, flags); |
| 114 | req = raw3215_freelist; |
| 115 | raw3215_freelist = req->next; |
| 116 | spin_unlock_irqrestore(&raw3215_freelist_lock, flags); |
| 117 | return req; |
| 118 | } |
| 119 | |
| 120 | /* |
| 121 | * Put a request structure back to the free list |
| 122 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 123 | static inline void raw3215_free_req(struct raw3215_req *req) |
| 124 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | unsigned long flags; |
| 126 | |
| 127 | if (req->type == RAW3215_FREE) |
| 128 | return; /* don't free a free request */ |
| 129 | req->type = RAW3215_FREE; |
| 130 | spin_lock_irqsave(&raw3215_freelist_lock, flags); |
| 131 | req->next = raw3215_freelist; |
| 132 | raw3215_freelist = req; |
| 133 | spin_unlock_irqrestore(&raw3215_freelist_lock, flags); |
| 134 | } |
| 135 | |
| 136 | /* |
| 137 | * Set up a read request that reads up to 160 byte from the 3215 device. |
| 138 | * If there is a queued read request it is used, but that shouldn't happen |
| 139 | * because a 3215 terminal won't accept a new read before the old one is |
| 140 | * completed. |
| 141 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 142 | static void raw3215_mk_read_req(struct raw3215_info *raw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | { |
| 144 | struct raw3215_req *req; |
| 145 | struct ccw1 *ccw; |
| 146 | |
| 147 | /* there can only be ONE read request at a time */ |
| 148 | req = raw->queued_read; |
| 149 | if (req == NULL) { |
| 150 | /* no queued read request, use new req structure */ |
| 151 | req = raw3215_alloc_req(); |
| 152 | req->type = RAW3215_READ; |
| 153 | req->info = raw; |
| 154 | raw->queued_read = req; |
| 155 | } |
| 156 | |
| 157 | ccw = req->ccws; |
| 158 | ccw->cmd_code = 0x0A; /* read inquiry */ |
| 159 | ccw->flags = 0x20; /* ignore incorrect length */ |
| 160 | ccw->count = 160; |
| 161 | ccw->cda = (__u32) __pa(raw->inbuf); |
| 162 | } |
| 163 | |
| 164 | /* |
| 165 | * Set up a write request with the information from the main structure. |
| 166 | * A ccw chain is created that writes as much as possible from the output |
| 167 | * buffer to the 3215 device. If a queued write exists it is replaced by |
| 168 | * the new, probably lengthened request. |
| 169 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 170 | static void raw3215_mk_write_req(struct raw3215_info *raw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | { |
| 172 | struct raw3215_req *req; |
| 173 | struct ccw1 *ccw; |
| 174 | int len, count, ix, lines; |
| 175 | |
| 176 | if (raw->count <= raw->written) |
| 177 | return; |
| 178 | /* check if there is a queued write request */ |
| 179 | req = raw->queued_write; |
| 180 | if (req == NULL) { |
| 181 | /* no queued write request, use new req structure */ |
| 182 | req = raw3215_alloc_req(); |
| 183 | req->type = RAW3215_WRITE; |
| 184 | req->info = raw; |
| 185 | raw->queued_write = req; |
| 186 | } else { |
| 187 | raw->written -= req->len; |
| 188 | } |
| 189 | |
| 190 | ccw = req->ccws; |
| 191 | req->start = (raw->head - raw->count + raw->written) & |
| 192 | (RAW3215_BUFFER_SIZE - 1); |
| 193 | /* |
| 194 | * now we have to count newlines. We can at max accept |
| 195 | * RAW3215_MAX_NEWLINE newlines in a single ssch due to |
| 196 | * a restriction in VM |
| 197 | */ |
| 198 | lines = 0; |
| 199 | ix = req->start; |
| 200 | while (lines < RAW3215_MAX_NEWLINE && ix != raw->head) { |
| 201 | if (raw->buffer[ix] == 0x15) |
| 202 | lines++; |
| 203 | ix = (ix + 1) & (RAW3215_BUFFER_SIZE - 1); |
| 204 | } |
| 205 | len = ((ix - 1 - req->start) & (RAW3215_BUFFER_SIZE - 1)) + 1; |
| 206 | if (len > RAW3215_MAX_BYTES) |
| 207 | len = RAW3215_MAX_BYTES; |
| 208 | req->len = len; |
| 209 | raw->written += len; |
| 210 | |
| 211 | /* set the indication if we should try to enlarge this request */ |
| 212 | req->delayable = (ix == raw->head) && (len < RAW3215_MIN_WRITE); |
| 213 | |
| 214 | ix = req->start; |
| 215 | while (len > 0) { |
| 216 | if (ccw > req->ccws) |
| 217 | ccw[-1].flags |= 0x40; /* use command chaining */ |
| 218 | ccw->cmd_code = 0x01; /* write, auto carrier return */ |
| 219 | ccw->flags = 0x20; /* ignore incorrect length ind. */ |
| 220 | ccw->cda = |
| 221 | (__u32) __pa(raw->buffer + ix); |
| 222 | count = len; |
| 223 | if (ix + count > RAW3215_BUFFER_SIZE) |
| 224 | count = RAW3215_BUFFER_SIZE - ix; |
| 225 | ccw->count = count; |
| 226 | len -= count; |
| 227 | ix = (ix + count) & (RAW3215_BUFFER_SIZE - 1); |
| 228 | ccw++; |
| 229 | } |
| 230 | /* |
| 231 | * Add a NOP to the channel program. 3215 devices are purely |
| 232 | * emulated and its much better to avoid the channel end |
| 233 | * interrupt in this case. |
| 234 | */ |
| 235 | if (ccw > req->ccws) |
| 236 | ccw[-1].flags |= 0x40; /* use command chaining */ |
| 237 | ccw->cmd_code = 0x03; /* NOP */ |
| 238 | ccw->flags = 0; |
| 239 | ccw->cda = 0; |
| 240 | ccw->count = 1; |
| 241 | } |
| 242 | |
| 243 | /* |
| 244 | * Start a read or a write request |
| 245 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 246 | static void raw3215_start_io(struct raw3215_info *raw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | { |
| 248 | struct raw3215_req *req; |
| 249 | int res; |
| 250 | |
| 251 | req = raw->queued_read; |
| 252 | if (req != NULL && |
| 253 | !(raw->flags & (RAW3215_WORKING | RAW3215_THROTTLED))) { |
| 254 | /* dequeue request */ |
| 255 | raw->queued_read = NULL; |
| 256 | res = ccw_device_start(raw->cdev, req->ccws, |
| 257 | (unsigned long) req, 0, 0); |
| 258 | if (res != 0) { |
| 259 | /* do_IO failed, put request back to queue */ |
| 260 | raw->queued_read = req; |
| 261 | } else { |
| 262 | raw->flags |= RAW3215_WORKING; |
| 263 | } |
| 264 | } |
| 265 | req = raw->queued_write; |
| 266 | if (req != NULL && |
| 267 | !(raw->flags & (RAW3215_WORKING | RAW3215_STOPPED))) { |
| 268 | /* dequeue request */ |
| 269 | raw->queued_write = NULL; |
| 270 | res = ccw_device_start(raw->cdev, req->ccws, |
| 271 | (unsigned long) req, 0, 0); |
| 272 | if (res != 0) { |
| 273 | /* do_IO failed, put request back to queue */ |
| 274 | raw->queued_write = req; |
| 275 | } else { |
| 276 | raw->flags |= RAW3215_WORKING; |
| 277 | } |
| 278 | } |
| 279 | } |
| 280 | |
| 281 | /* |
| 282 | * Function to start a delayed output after RAW3215_TIMEOUT seconds |
| 283 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 284 | static void raw3215_timeout(unsigned long __data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | { |
| 286 | struct raw3215_info *raw = (struct raw3215_info *) __data; |
| 287 | unsigned long flags; |
| 288 | |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 289 | spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | if (raw->flags & RAW3215_TIMER_RUNS) { |
| 291 | del_timer(&raw->timer); |
| 292 | raw->flags &= ~RAW3215_TIMER_RUNS; |
Jiri Slaby | 8dd360f | 2012-04-11 11:14:58 +0200 | [diff] [blame] | 293 | if (!(raw->port.flags & ASYNC_SUSPENDED)) { |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 294 | raw3215_mk_write_req(raw); |
| 295 | raw3215_start_io(raw); |
| 296 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | } |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 298 | spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | /* |
| 302 | * Function to conditionally start an IO. A read is started immediately, |
| 303 | * a write is only started immediately if the flush flag is on or the |
| 304 | * amount of data is bigger than RAW3215_MIN_WRITE. If a write is not |
| 305 | * done immediately a timer is started with a delay of RAW3215_TIMEOUT. |
| 306 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 307 | static inline void raw3215_try_io(struct raw3215_info *raw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | { |
Jiri Slaby | 8dd360f | 2012-04-11 11:14:58 +0200 | [diff] [blame] | 309 | if (!(raw->port.flags & ASYNC_INITIALIZED) || |
| 310 | (raw->port.flags & ASYNC_SUSPENDED)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | return; |
| 312 | if (raw->queued_read != NULL) |
| 313 | raw3215_start_io(raw); |
| 314 | else if (raw->queued_write != NULL) { |
| 315 | if ((raw->queued_write->delayable == 0) || |
| 316 | (raw->flags & RAW3215_FLUSHING)) { |
| 317 | /* execute write requests bigger than minimum size */ |
| 318 | raw3215_start_io(raw); |
| 319 | if (raw->flags & RAW3215_TIMER_RUNS) { |
| 320 | del_timer(&raw->timer); |
| 321 | raw->flags &= ~RAW3215_TIMER_RUNS; |
| 322 | } |
| 323 | } else if (!(raw->flags & RAW3215_TIMER_RUNS)) { |
| 324 | /* delay small writes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | raw->timer.expires = RAW3215_TIMEOUT + jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | add_timer(&raw->timer); |
| 327 | raw->flags |= RAW3215_TIMER_RUNS; |
| 328 | } |
| 329 | } |
| 330 | } |
| 331 | |
| 332 | /* |
Martin Schwidefsky | 656d912 | 2012-02-17 10:29:22 +0100 | [diff] [blame] | 333 | * Call tty_wakeup from tasklet context |
| 334 | */ |
| 335 | static void raw3215_wakeup(unsigned long data) |
| 336 | { |
| 337 | struct raw3215_info *raw = (struct raw3215_info *) data; |
Heiko Carstens | e695b28 | 2012-04-17 13:16:34 +0200 | [diff] [blame] | 338 | struct tty_struct *tty; |
| 339 | |
| 340 | tty = tty_port_tty_get(&raw->port); |
Heiko Carstens | ae289dc | 2012-11-15 09:22:40 +0100 | [diff] [blame] | 341 | if (tty) { |
| 342 | tty_wakeup(tty); |
| 343 | tty_kref_put(tty); |
| 344 | } |
Martin Schwidefsky | 656d912 | 2012-02-17 10:29:22 +0100 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | /* |
Heiko Carstens | 408aec3 | 2008-10-10 21:33:28 +0200 | [diff] [blame] | 348 | * Try to start the next IO and wake up processes waiting on the tty. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | */ |
Jiri Slaby | 86b26007 | 2012-04-11 11:14:59 +0200 | [diff] [blame] | 350 | static void raw3215_next_io(struct raw3215_info *raw, struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | raw3215_mk_write_req(raw); |
| 353 | raw3215_try_io(raw); |
Jiri Slaby | 86b26007 | 2012-04-11 11:14:59 +0200 | [diff] [blame] | 354 | if (tty && RAW3215_BUFFER_SIZE - raw->count >= RAW3215_MIN_SPACE) |
Martin Schwidefsky | 656d912 | 2012-02-17 10:29:22 +0100 | [diff] [blame] | 355 | tasklet_schedule(&raw->tlet); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | } |
| 357 | |
| 358 | /* |
| 359 | * Interrupt routine, called from common io layer |
| 360 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 361 | static void raw3215_irq(struct ccw_device *cdev, unsigned long intparm, |
| 362 | struct irb *irb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | { |
| 364 | struct raw3215_info *raw; |
| 365 | struct raw3215_req *req; |
| 366 | struct tty_struct *tty; |
| 367 | int cstat, dstat; |
Heiko Carstens | 1d03037 | 2008-07-14 09:59:44 +0200 | [diff] [blame] | 368 | int count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | |
Greg Kroah-Hartman | dff59b6 | 2009-05-04 12:40:54 -0700 | [diff] [blame] | 370 | raw = dev_get_drvdata(&cdev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | req = (struct raw3215_req *) intparm; |
Jiri Slaby | 86b26007 | 2012-04-11 11:14:59 +0200 | [diff] [blame] | 372 | tty = tty_port_tty_get(&raw->port); |
Peter Oberparleiter | 23d805b6 | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 373 | cstat = irb->scsw.cmd.cstat; |
| 374 | dstat = irb->scsw.cmd.dstat; |
Martin Schwidefsky | 26348f7 | 2008-07-14 09:59:26 +0200 | [diff] [blame] | 375 | if (cstat != 0) |
Jiri Slaby | 86b26007 | 2012-04-11 11:14:59 +0200 | [diff] [blame] | 376 | raw3215_next_io(raw, tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | if (dstat & 0x01) { /* we got a unit exception */ |
| 378 | dstat &= ~0x01; /* we can ignore it */ |
| 379 | } |
| 380 | switch (dstat) { |
| 381 | case 0x80: |
| 382 | if (cstat != 0) |
| 383 | break; |
| 384 | /* Attention interrupt, someone hit the enter key */ |
| 385 | raw3215_mk_read_req(raw); |
Jiri Slaby | 86b26007 | 2012-04-11 11:14:59 +0200 | [diff] [blame] | 386 | raw3215_next_io(raw, tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | break; |
| 388 | case 0x08: |
| 389 | case 0x0C: |
| 390 | /* Channel end interrupt. */ |
| 391 | if ((raw = req->info) == NULL) |
Jiri Slaby | 86b26007 | 2012-04-11 11:14:59 +0200 | [diff] [blame] | 392 | goto put_tty; /* That shouldn't happen ... */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | if (req->type == RAW3215_READ) { |
| 394 | /* store residual count, then wait for device end */ |
Peter Oberparleiter | 23d805b6 | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 395 | req->residual = irb->scsw.cmd.count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | } |
| 397 | if (dstat == 0x08) |
| 398 | break; |
| 399 | case 0x04: |
| 400 | /* Device end interrupt. */ |
| 401 | if ((raw = req->info) == NULL) |
Jiri Slaby | 86b26007 | 2012-04-11 11:14:59 +0200 | [diff] [blame] | 402 | goto put_tty; /* That shouldn't happen ... */ |
| 403 | if (req->type == RAW3215_READ && tty != NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | unsigned int cchar; |
| 405 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | count = 160 - req->residual; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | EBCASC(raw->inbuf, count); |
| 408 | cchar = ctrlchar_handle(raw->inbuf, count, tty); |
| 409 | switch (cchar & CTRLCHAR_MASK) { |
| 410 | case CTRLCHAR_SYSRQ: |
| 411 | break; |
| 412 | |
| 413 | case CTRLCHAR_CTRL: |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 414 | tty_insert_flip_char(&raw->port, cchar, |
| 415 | TTY_NORMAL); |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame^] | 416 | tty_flip_buffer_push(&raw->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | break; |
| 418 | |
| 419 | case CTRLCHAR_NONE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | if (count < 2 || |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 421 | (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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | count++; |
| 426 | } else |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 427 | count -= 2; |
Jiri Slaby | 05c7cd3 | 2013-01-03 15:53:04 +0100 | [diff] [blame] | 428 | tty_insert_flip_string(&raw->port, raw->inbuf, |
| 429 | count); |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame^] | 430 | tty_flip_buffer_push(&raw->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | break; |
| 432 | } |
| 433 | } else if (req->type == RAW3215_WRITE) { |
| 434 | raw->count -= req->len; |
| 435 | raw->written -= req->len; |
| 436 | } |
| 437 | raw->flags &= ~RAW3215_WORKING; |
| 438 | raw3215_free_req(req); |
| 439 | /* check for empty wait */ |
| 440 | if (waitqueue_active(&raw->empty_wait) && |
| 441 | raw->queued_write == NULL && |
| 442 | raw->queued_read == NULL) { |
| 443 | wake_up_interruptible(&raw->empty_wait); |
| 444 | } |
Jiri Slaby | 86b26007 | 2012-04-11 11:14:59 +0200 | [diff] [blame] | 445 | raw3215_next_io(raw, tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | break; |
| 447 | default: |
| 448 | /* Strange interrupt, I'll do my best to clean up */ |
| 449 | if (req != NULL && req->type != RAW3215_FREE) { |
| 450 | if (req->type == RAW3215_WRITE) { |
| 451 | raw->count -= req->len; |
| 452 | raw->written -= req->len; |
| 453 | } |
| 454 | raw->flags &= ~RAW3215_WORKING; |
| 455 | raw3215_free_req(req); |
| 456 | } |
Jiri Slaby | 86b26007 | 2012-04-11 11:14:59 +0200 | [diff] [blame] | 457 | raw3215_next_io(raw, tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | } |
Jiri Slaby | 86b26007 | 2012-04-11 11:14:59 +0200 | [diff] [blame] | 459 | put_tty: |
| 460 | tty_kref_put(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | } |
| 462 | |
| 463 | /* |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 464 | * Drop the oldest line from the output buffer. |
| 465 | */ |
| 466 | static void raw3215_drop_line(struct raw3215_info *raw) |
| 467 | { |
| 468 | int ix; |
| 469 | char ch; |
| 470 | |
| 471 | BUG_ON(raw->written != 0); |
| 472 | ix = (raw->head - raw->count) & (RAW3215_BUFFER_SIZE - 1); |
| 473 | while (raw->count > 0) { |
| 474 | ch = raw->buffer[ix]; |
| 475 | ix = (ix + 1) & (RAW3215_BUFFER_SIZE - 1); |
| 476 | raw->count--; |
| 477 | if (ch == 0x15) |
| 478 | break; |
| 479 | } |
| 480 | raw->head = ix; |
| 481 | } |
| 482 | |
| 483 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | * Wait until length bytes are available int the output buffer. |
| 485 | * Has to be called with the s390irq lock held. Can be called |
| 486 | * disabled. |
| 487 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 488 | static void raw3215_make_room(struct raw3215_info *raw, unsigned int length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | { |
| 490 | while (RAW3215_BUFFER_SIZE - raw->count < length) { |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 491 | /* While console is frozen for suspend we have no other |
| 492 | * choice but to drop message from the buffer to make |
| 493 | * room for even more messages. */ |
Jiri Slaby | 8dd360f | 2012-04-11 11:14:58 +0200 | [diff] [blame] | 494 | if (raw->port.flags & ASYNC_SUSPENDED) { |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 495 | raw3215_drop_line(raw); |
| 496 | continue; |
| 497 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | /* there might be a request pending */ |
| 499 | raw->flags |= RAW3215_FLUSHING; |
| 500 | raw3215_mk_write_req(raw); |
| 501 | raw3215_try_io(raw); |
| 502 | raw->flags &= ~RAW3215_FLUSHING; |
| 503 | #ifdef CONFIG_TN3215_CONSOLE |
| 504 | wait_cons_dev(); |
| 505 | #endif |
| 506 | /* Enough room freed up ? */ |
| 507 | if (RAW3215_BUFFER_SIZE - raw->count >= length) |
| 508 | break; |
| 509 | /* there might be another cpu waiting for the lock */ |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 510 | spin_unlock(get_ccwdev_lock(raw->cdev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | udelay(100); |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 512 | spin_lock(get_ccwdev_lock(raw->cdev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | } |
| 514 | } |
| 515 | |
| 516 | /* |
| 517 | * String write routine for 3215 devices |
| 518 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 519 | static void raw3215_write(struct raw3215_info *raw, const char *str, |
| 520 | unsigned int length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | { |
| 522 | unsigned long flags; |
| 523 | int c, count; |
| 524 | |
| 525 | while (length > 0) { |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 526 | spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | count = (length > RAW3215_BUFFER_SIZE) ? |
| 528 | RAW3215_BUFFER_SIZE : length; |
| 529 | length -= count; |
| 530 | |
| 531 | raw3215_make_room(raw, count); |
| 532 | |
| 533 | /* copy string to output buffer and convert it to EBCDIC */ |
| 534 | while (1) { |
| 535 | c = min_t(int, count, |
| 536 | min(RAW3215_BUFFER_SIZE - raw->count, |
| 537 | RAW3215_BUFFER_SIZE - raw->head)); |
| 538 | if (c <= 0) |
| 539 | break; |
| 540 | memcpy(raw->buffer + raw->head, str, c); |
| 541 | ASCEBC(raw->buffer + raw->head, c); |
| 542 | raw->head = (raw->head + c) & (RAW3215_BUFFER_SIZE - 1); |
| 543 | raw->count += c; |
| 544 | raw->line_pos += c; |
| 545 | str += c; |
| 546 | count -= c; |
| 547 | } |
| 548 | if (!(raw->flags & RAW3215_WORKING)) { |
| 549 | raw3215_mk_write_req(raw); |
| 550 | /* start or queue request */ |
| 551 | raw3215_try_io(raw); |
| 552 | } |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 553 | spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | } |
| 555 | } |
| 556 | |
| 557 | /* |
| 558 | * Put character routine for 3215 devices |
| 559 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 560 | static void raw3215_putchar(struct raw3215_info *raw, unsigned char ch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | { |
| 562 | unsigned long flags; |
| 563 | unsigned int length, i; |
| 564 | |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 565 | spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | if (ch == '\t') { |
| 567 | length = TAB_STOP_SIZE - (raw->line_pos%TAB_STOP_SIZE); |
| 568 | raw->line_pos += length; |
| 569 | ch = ' '; |
| 570 | } else if (ch == '\n') { |
| 571 | length = 1; |
| 572 | raw->line_pos = 0; |
| 573 | } else { |
| 574 | length = 1; |
| 575 | raw->line_pos++; |
| 576 | } |
| 577 | raw3215_make_room(raw, length); |
| 578 | |
| 579 | for (i = 0; i < length; i++) { |
| 580 | raw->buffer[raw->head] = (char) _ascebc[(int) ch]; |
| 581 | raw->head = (raw->head + 1) & (RAW3215_BUFFER_SIZE - 1); |
| 582 | raw->count++; |
| 583 | } |
| 584 | if (!(raw->flags & RAW3215_WORKING)) { |
| 585 | raw3215_mk_write_req(raw); |
| 586 | /* start or queue request */ |
| 587 | raw3215_try_io(raw); |
| 588 | } |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 589 | spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | } |
| 591 | |
| 592 | /* |
| 593 | * Flush routine, it simply sets the flush flag and tries to start |
| 594 | * pending IO. |
| 595 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 596 | static void raw3215_flush_buffer(struct raw3215_info *raw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | { |
| 598 | unsigned long flags; |
| 599 | |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 600 | spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | if (raw->count > 0) { |
| 602 | raw->flags |= RAW3215_FLUSHING; |
| 603 | raw3215_try_io(raw); |
| 604 | raw->flags &= ~RAW3215_FLUSHING; |
| 605 | } |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 606 | spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | } |
| 608 | |
| 609 | /* |
| 610 | * Fire up a 3215 device. |
| 611 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 612 | static int raw3215_startup(struct raw3215_info *raw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | { |
| 614 | unsigned long flags; |
| 615 | |
Jiri Slaby | 8dd360f | 2012-04-11 11:14:58 +0200 | [diff] [blame] | 616 | if (raw->port.flags & ASYNC_INITIALIZED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | return 0; |
| 618 | raw->line_pos = 0; |
Jiri Slaby | 8dd360f | 2012-04-11 11:14:58 +0200 | [diff] [blame] | 619 | raw->port.flags |= ASYNC_INITIALIZED; |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 620 | spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | raw3215_try_io(raw); |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 622 | spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | |
| 624 | return 0; |
| 625 | } |
| 626 | |
| 627 | /* |
| 628 | * Shutdown a 3215 device. |
| 629 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 630 | static void raw3215_shutdown(struct raw3215_info *raw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | { |
| 632 | DECLARE_WAITQUEUE(wait, current); |
| 633 | unsigned long flags; |
| 634 | |
Heiko Carstens | ae289dc | 2012-11-15 09:22:40 +0100 | [diff] [blame] | 635 | if (!(raw->port.flags & ASYNC_INITIALIZED)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | return; |
| 637 | /* Wait for outstanding requests, then free irq */ |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 638 | spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | if ((raw->flags & RAW3215_WORKING) || |
| 640 | raw->queued_write != NULL || |
| 641 | raw->queued_read != NULL) { |
Jiri Slaby | 8dd360f | 2012-04-11 11:14:58 +0200 | [diff] [blame] | 642 | raw->port.flags |= ASYNC_CLOSING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | add_wait_queue(&raw->empty_wait, &wait); |
| 644 | set_current_state(TASK_INTERRUPTIBLE); |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 645 | spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | schedule(); |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 647 | spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | remove_wait_queue(&raw->empty_wait, &wait); |
| 649 | set_current_state(TASK_RUNNING); |
Jiri Slaby | 8dd360f | 2012-04-11 11:14:58 +0200 | [diff] [blame] | 650 | raw->port.flags &= ~(ASYNC_INITIALIZED | ASYNC_CLOSING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | } |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 652 | spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | } |
| 654 | |
Jiri Slaby | fe2fc9c | 2012-04-02 13:54:08 +0200 | [diff] [blame] | 655 | static 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 Slaby | 8dd360f | 2012-04-11 11:14:58 +0200 | [diff] [blame] | 673 | tty_port_init(&info->port); |
Jiri Slaby | fe2fc9c | 2012-04-02 13:54:08 +0200 | [diff] [blame] | 674 | |
| 675 | return info; |
| 676 | } |
| 677 | |
| 678 | static void raw3215_free_info(struct raw3215_info *raw) |
| 679 | { |
| 680 | kfree(raw->inbuf); |
| 681 | kfree(raw->buffer); |
Jiri Slaby | 191c5f1 | 2012-11-15 09:49:56 +0100 | [diff] [blame] | 682 | tty_port_destroy(&raw->port); |
Jiri Slaby | fe2fc9c | 2012-04-02 13:54:08 +0200 | [diff] [blame] | 683 | kfree(raw); |
| 684 | } |
| 685 | |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 686 | static int raw3215_probe (struct ccw_device *cdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | { |
| 688 | struct raw3215_info *raw; |
| 689 | int line; |
| 690 | |
Cornelia Huck | a2e5380 | 2007-10-12 16:11:52 +0200 | [diff] [blame] | 691 | /* Console is special. */ |
Greg Kroah-Hartman | dff59b6 | 2009-05-04 12:40:54 -0700 | [diff] [blame] | 692 | if (raw3215[0] && (raw3215[0] == dev_get_drvdata(&cdev->dev))) |
Cornelia Huck | a2e5380 | 2007-10-12 16:11:52 +0200 | [diff] [blame] | 693 | return 0; |
Jiri Slaby | fe2fc9c | 2012-04-02 13:54:08 +0200 | [diff] [blame] | 694 | |
| 695 | raw = raw3215_alloc_info(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | if (raw == NULL) |
| 697 | return -ENOMEM; |
| 698 | |
Jiri Slaby | fe2fc9c | 2012-04-02 13:54:08 +0200 | [diff] [blame] | 699 | raw->cdev = cdev; |
| 700 | dev_set_drvdata(&cdev->dev, raw); |
| 701 | cdev->handler = raw3215_irq; |
| 702 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | 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 Slaby | fe2fc9c | 2012-04-02 13:54:08 +0200 | [diff] [blame] | 712 | raw3215_free_info(raw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | return -ENODEV; |
| 714 | } |
| 715 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | return 0; |
| 717 | } |
| 718 | |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 719 | static void raw3215_remove (struct ccw_device *cdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | { |
| 721 | struct raw3215_info *raw; |
Jiri Slaby | 3ec0a17 | 2012-08-07 21:47:57 +0200 | [diff] [blame] | 722 | unsigned int line; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | |
| 724 | ccw_device_set_offline(cdev); |
Greg Kroah-Hartman | dff59b6 | 2009-05-04 12:40:54 -0700 | [diff] [blame] | 725 | raw = dev_get_drvdata(&cdev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | if (raw) { |
Jiri Slaby | 3ec0a17 | 2012-08-07 21:47:57 +0200 | [diff] [blame] | 727 | 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-Hartman | dff59b6 | 2009-05-04 12:40:54 -0700 | [diff] [blame] | 733 | dev_set_drvdata(&cdev->dev, NULL); |
Jiri Slaby | fe2fc9c | 2012-04-02 13:54:08 +0200 | [diff] [blame] | 734 | raw3215_free_info(raw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | } |
| 736 | } |
| 737 | |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 738 | static int raw3215_set_online (struct ccw_device *cdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | { |
| 740 | struct raw3215_info *raw; |
| 741 | |
Greg Kroah-Hartman | dff59b6 | 2009-05-04 12:40:54 -0700 | [diff] [blame] | 742 | raw = dev_get_drvdata(&cdev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | if (!raw) |
| 744 | return -ENODEV; |
| 745 | |
| 746 | return raw3215_startup(raw); |
| 747 | } |
| 748 | |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 749 | static int raw3215_set_offline (struct ccw_device *cdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | { |
| 751 | struct raw3215_info *raw; |
| 752 | |
Greg Kroah-Hartman | dff59b6 | 2009-05-04 12:40:54 -0700 | [diff] [blame] | 753 | raw = dev_get_drvdata(&cdev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | if (!raw) |
| 755 | return -ENODEV; |
| 756 | |
| 757 | raw3215_shutdown(raw); |
| 758 | |
| 759 | return 0; |
| 760 | } |
| 761 | |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 762 | static 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 Schwidefsky | 4f0076f | 2009-06-22 12:08:19 +0200 | [diff] [blame] | 768 | raw = dev_get_drvdata(&cdev->dev); |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 769 | spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags); |
| 770 | raw3215_make_room(raw, RAW3215_BUFFER_SIZE); |
Jiri Slaby | 8dd360f | 2012-04-11 11:14:58 +0200 | [diff] [blame] | 771 | raw->port.flags |= ASYNC_SUSPENDED; |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 772 | spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags); |
| 773 | return 0; |
| 774 | } |
| 775 | |
| 776 | static 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 Schwidefsky | 4f0076f | 2009-06-22 12:08:19 +0200 | [diff] [blame] | 782 | raw = dev_get_drvdata(&cdev->dev); |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 783 | spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags); |
Jiri Slaby | 8dd360f | 2012-04-11 11:14:58 +0200 | [diff] [blame] | 784 | raw->port.flags &= ~ASYNC_SUSPENDED; |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 785 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | static struct ccw_device_id raw3215_id[] = { |
| 793 | { CCW_DEVICE(0x3215, 0) }, |
| 794 | { /* end of list */ }, |
| 795 | }; |
| 796 | |
| 797 | static struct ccw_driver raw3215_ccw_driver = { |
Sebastian Ott | 3bda058 | 2011-03-23 10:16:02 +0100 | [diff] [blame] | 798 | .driver = { |
| 799 | .name = "3215", |
| 800 | .owner = THIS_MODULE, |
| 801 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | .ids = raw3215_id, |
| 803 | .probe = &raw3215_probe, |
| 804 | .remove = &raw3215_remove, |
| 805 | .set_online = &raw3215_set_online, |
| 806 | .set_offline = &raw3215_set_offline, |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 807 | .freeze = &raw3215_pm_stop, |
| 808 | .thaw = &raw3215_pm_start, |
| 809 | .restore = &raw3215_pm_start, |
Peter Oberparleiter | de400d6 | 2011-10-30 15:16:04 +0100 | [diff] [blame] | 810 | .int_class = IOINT_C15, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | }; |
| 812 | |
| 813 | #ifdef CONFIG_TN3215_CONSOLE |
| 814 | /* |
| 815 | * Write a string to the 3215 console |
| 816 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 817 | static void con3215_write(struct console *co, const char *str, |
| 818 | unsigned int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | { |
| 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 | |
| 841 | static struct tty_driver *con3215_device(struct console *c, int *index) |
| 842 | { |
| 843 | *index = c->index; |
| 844 | return tty3215_driver; |
| 845 | } |
| 846 | |
| 847 | /* |
Holger Smolinski | 2332ce1 | 2008-10-10 21:33:27 +0200 | [diff] [blame] | 848 | * panic() calls con3215_flush through a panic_notifier |
| 849 | * before the system enters a disabled, endless loop. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 851 | static void con3215_flush(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | { |
| 853 | struct raw3215_info *raw; |
| 854 | unsigned long flags; |
| 855 | |
| 856 | raw = raw3215[0]; /* console 3215 is the first one */ |
Jiri Slaby | 8dd360f | 2012-04-11 11:14:58 +0200 | [diff] [blame] | 857 | if (raw->port.flags & ASYNC_SUSPENDED) |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 858 | /* The console is still frozen for suspend. */ |
| 859 | if (ccw_device_force_console()) |
| 860 | /* Forcing didn't work, no panic message .. */ |
| 861 | return; |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 862 | spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | raw3215_make_room(raw, RAW3215_BUFFER_SIZE); |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 864 | spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | } |
| 866 | |
Holger Smolinski | 2332ce1 | 2008-10-10 21:33:27 +0200 | [diff] [blame] | 867 | static int con3215_notify(struct notifier_block *self, |
| 868 | unsigned long event, void *data) |
| 869 | { |
| 870 | con3215_flush(); |
| 871 | return NOTIFY_OK; |
| 872 | } |
| 873 | |
| 874 | static struct notifier_block on_panic_nb = { |
| 875 | .notifier_call = con3215_notify, |
| 876 | .priority = 0, |
| 877 | }; |
| 878 | |
| 879 | static struct notifier_block on_reboot_nb = { |
| 880 | .notifier_call = con3215_notify, |
| 881 | .priority = 0, |
| 882 | }; |
| 883 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | /* |
| 885 | * The console structure for the 3215 console |
| 886 | */ |
| 887 | static struct console con3215 = { |
| 888 | .name = "ttyS", |
| 889 | .write = con3215_write, |
| 890 | .device = con3215_device, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | .flags = CON_PRINTBUFFER, |
| 892 | }; |
| 893 | |
| 894 | /* |
| 895 | * 3215 console initialization code called from console_init(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 897 | static int __init con3215_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | { |
| 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 Borntraeger | 6b979de | 2005-06-25 14:55:32 -0700 | [diff] [blame] | 910 | cpcmd("TERM CONMODE 3215", NULL, 0, NULL); |
| 911 | cpcmd("TERM AUTOCR OFF", NULL, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | } |
| 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 Carstens | 6d56eee | 2009-06-22 12:08:04 +0200 | [diff] [blame] | 918 | req = kzalloc(sizeof(struct raw3215_req), GFP_KERNEL | GFP_DMA); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | req->next = raw3215_freelist; |
| 920 | raw3215_freelist = req; |
| 921 | } |
| 922 | |
| 923 | cdev = ccw_device_probe_console(); |
Peter Oberparleiter | 600b5d1 | 2006-02-01 03:06:35 -0800 | [diff] [blame] | 924 | if (IS_ERR(cdev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | return -ENODEV; |
| 926 | |
Jiri Slaby | fe2fc9c | 2012-04-02 13:54:08 +0200 | [diff] [blame] | 927 | raw3215[0] = raw = raw3215_alloc_info(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | raw->cdev = cdev; |
Greg Kroah-Hartman | dff59b6 | 2009-05-04 12:40:54 -0700 | [diff] [blame] | 929 | dev_set_drvdata(&cdev->dev, raw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | cdev->handler = raw3215_irq; |
| 931 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | /* Request the console irq */ |
| 933 | if (raw3215_startup(raw) != 0) { |
Jiri Slaby | fe2fc9c | 2012-04-02 13:54:08 +0200 | [diff] [blame] | 934 | raw3215_free_info(raw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | raw3215[0] = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | return -ENODEV; |
| 937 | } |
Holger Smolinski | 2332ce1 | 2008-10-10 21:33:27 +0200 | [diff] [blame] | 938 | atomic_notifier_chain_register(&panic_notifier_list, &on_panic_nb); |
| 939 | register_reboot_notifier(&on_reboot_nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | register_console(&con3215); |
| 941 | return 0; |
| 942 | } |
| 943 | console_initcall(con3215_init); |
| 944 | #endif |
| 945 | |
Jiri Slaby | d228110 | 2012-08-07 21:47:58 +0200 | [diff] [blame] | 946 | static int tty3215_install(struct tty_driver *driver, struct tty_struct *tty) |
| 947 | { |
| 948 | struct raw3215_info *raw; |
| 949 | |
| 950 | raw = raw3215[tty->index]; |
| 951 | if (raw == NULL) |
| 952 | return -ENODEV; |
| 953 | |
| 954 | tty->driver_data = raw; |
| 955 | |
| 956 | return tty_port_install(&raw->port, driver, tty); |
| 957 | } |
| 958 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | /* |
| 960 | * tty3215_open |
| 961 | * |
| 962 | * This routine is called whenever a 3215 tty is opened. |
| 963 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 964 | static int tty3215_open(struct tty_struct *tty, struct file * filp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | { |
Jiri Slaby | d228110 | 2012-08-07 21:47:58 +0200 | [diff] [blame] | 966 | struct raw3215_info *raw = tty->driver_data; |
Jiri Slaby | 410235f | 2012-03-05 14:52:01 +0100 | [diff] [blame] | 967 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | |
Jiri Slaby | 86b26007 | 2012-04-11 11:14:59 +0200 | [diff] [blame] | 969 | tty_port_tty_set(&raw->port, tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | |
Jiri Slaby | d6c53c0e | 2013-01-03 15:53:05 +0100 | [diff] [blame] | 971 | raw->port.low_latency = 0; /* don't use bottom half for pushing chars */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | /* |
| 973 | * Start up 3215 device |
| 974 | */ |
| 975 | retval = raw3215_startup(raw); |
| 976 | if (retval) |
| 977 | return retval; |
| 978 | |
| 979 | return 0; |
| 980 | } |
| 981 | |
| 982 | /* |
| 983 | * tty3215_close() |
| 984 | * |
| 985 | * This routine is called when the 3215 tty is closed. We wait |
| 986 | * for the remaining request to be completed. Then we clean up. |
| 987 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 988 | static void tty3215_close(struct tty_struct *tty, struct file * filp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | { |
| 990 | struct raw3215_info *raw; |
| 991 | |
| 992 | raw = (struct raw3215_info *) tty->driver_data; |
| 993 | if (raw == NULL || tty->count > 1) |
| 994 | return; |
| 995 | tty->closing = 1; |
| 996 | /* Shutdown the terminal */ |
| 997 | raw3215_shutdown(raw); |
Martin Schwidefsky | 656d912 | 2012-02-17 10:29:22 +0100 | [diff] [blame] | 998 | tasklet_kill(&raw->tlet); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | tty->closing = 0; |
Jiri Slaby | 86b26007 | 2012-04-11 11:14:59 +0200 | [diff] [blame] | 1000 | tty_port_tty_set(&raw->port, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | } |
| 1002 | |
| 1003 | /* |
| 1004 | * Returns the amount of free space in the output buffer. |
| 1005 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 1006 | static int tty3215_write_room(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | { |
| 1008 | struct raw3215_info *raw; |
| 1009 | |
| 1010 | raw = (struct raw3215_info *) tty->driver_data; |
| 1011 | |
| 1012 | /* Subtract TAB_STOP_SIZE to allow for a tab, 8 <<< 64K */ |
| 1013 | if ((RAW3215_BUFFER_SIZE - raw->count - TAB_STOP_SIZE) >= 0) |
| 1014 | return RAW3215_BUFFER_SIZE - raw->count - TAB_STOP_SIZE; |
| 1015 | else |
| 1016 | return 0; |
| 1017 | } |
| 1018 | |
| 1019 | /* |
| 1020 | * String write routine for 3215 ttys |
| 1021 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 1022 | static int tty3215_write(struct tty_struct * tty, |
| 1023 | const unsigned char *buf, int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | { |
| 1025 | struct raw3215_info *raw; |
| 1026 | |
| 1027 | if (!tty) |
| 1028 | return 0; |
| 1029 | raw = (struct raw3215_info *) tty->driver_data; |
| 1030 | raw3215_write(raw, buf, count); |
| 1031 | return count; |
| 1032 | } |
| 1033 | |
| 1034 | /* |
| 1035 | * Put character routine for 3215 ttys |
| 1036 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 1037 | static int tty3215_put_char(struct tty_struct *tty, unsigned char ch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | { |
| 1039 | struct raw3215_info *raw; |
| 1040 | |
| 1041 | if (!tty) |
Alan Cox | 9e7c9a1 | 2008-04-30 00:54:00 -0700 | [diff] [blame] | 1042 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | raw = (struct raw3215_info *) tty->driver_data; |
| 1044 | raw3215_putchar(raw, ch); |
Alan Cox | 9e7c9a1 | 2008-04-30 00:54:00 -0700 | [diff] [blame] | 1045 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | } |
| 1047 | |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 1048 | static void tty3215_flush_chars(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | { |
| 1050 | } |
| 1051 | |
| 1052 | /* |
| 1053 | * Returns the number of characters in the output buffer |
| 1054 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 1055 | static int tty3215_chars_in_buffer(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | { |
| 1057 | struct raw3215_info *raw; |
| 1058 | |
| 1059 | raw = (struct raw3215_info *) tty->driver_data; |
| 1060 | return raw->count; |
| 1061 | } |
| 1062 | |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 1063 | static void tty3215_flush_buffer(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | { |
| 1065 | struct raw3215_info *raw; |
| 1066 | |
| 1067 | raw = (struct raw3215_info *) tty->driver_data; |
| 1068 | raw3215_flush_buffer(raw); |
| 1069 | tty_wakeup(tty); |
| 1070 | } |
| 1071 | |
| 1072 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | * Disable reading from a 3215 tty |
| 1074 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 1075 | static void tty3215_throttle(struct tty_struct * tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | { |
| 1077 | struct raw3215_info *raw; |
| 1078 | |
| 1079 | raw = (struct raw3215_info *) tty->driver_data; |
| 1080 | raw->flags |= RAW3215_THROTTLED; |
| 1081 | } |
| 1082 | |
| 1083 | /* |
| 1084 | * Enable reading from a 3215 tty |
| 1085 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 1086 | static void tty3215_unthrottle(struct tty_struct * tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | { |
| 1088 | struct raw3215_info *raw; |
| 1089 | unsigned long flags; |
| 1090 | |
| 1091 | raw = (struct raw3215_info *) tty->driver_data; |
| 1092 | if (raw->flags & RAW3215_THROTTLED) { |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 1093 | spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | raw->flags &= ~RAW3215_THROTTLED; |
| 1095 | raw3215_try_io(raw); |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 1096 | spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | } |
| 1098 | } |
| 1099 | |
| 1100 | /* |
| 1101 | * Disable writing to a 3215 tty |
| 1102 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 1103 | static void tty3215_stop(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | { |
| 1105 | struct raw3215_info *raw; |
| 1106 | |
| 1107 | raw = (struct raw3215_info *) tty->driver_data; |
| 1108 | raw->flags |= RAW3215_STOPPED; |
| 1109 | } |
| 1110 | |
| 1111 | /* |
| 1112 | * Enable writing to a 3215 tty |
| 1113 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 1114 | static void tty3215_start(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | { |
| 1116 | struct raw3215_info *raw; |
| 1117 | unsigned long flags; |
| 1118 | |
| 1119 | raw = (struct raw3215_info *) tty->driver_data; |
| 1120 | if (raw->flags & RAW3215_STOPPED) { |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 1121 | spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | raw->flags &= ~RAW3215_STOPPED; |
| 1123 | raw3215_try_io(raw); |
Martin Schwidefsky | 520a4e3 | 2006-12-04 15:40:07 +0100 | [diff] [blame] | 1124 | spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | } |
| 1126 | } |
| 1127 | |
Jeff Dike | b68e31d | 2006-10-02 02:17:18 -0700 | [diff] [blame] | 1128 | static const struct tty_operations tty3215_ops = { |
Jiri Slaby | d228110 | 2012-08-07 21:47:58 +0200 | [diff] [blame] | 1129 | .install = tty3215_install, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | .open = tty3215_open, |
| 1131 | .close = tty3215_close, |
| 1132 | .write = tty3215_write, |
| 1133 | .put_char = tty3215_put_char, |
| 1134 | .flush_chars = tty3215_flush_chars, |
| 1135 | .write_room = tty3215_write_room, |
| 1136 | .chars_in_buffer = tty3215_chars_in_buffer, |
| 1137 | .flush_buffer = tty3215_flush_buffer, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | .throttle = tty3215_throttle, |
| 1139 | .unthrottle = tty3215_unthrottle, |
| 1140 | .stop = tty3215_stop, |
| 1141 | .start = tty3215_start, |
| 1142 | }; |
| 1143 | |
| 1144 | /* |
| 1145 | * 3215 tty registration code called from tty_init(). |
| 1146 | * Most kernel services (incl. kmalloc) are available at this poimt. |
| 1147 | */ |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 1148 | static int __init tty3215_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | { |
| 1150 | struct tty_driver *driver; |
| 1151 | int ret; |
| 1152 | |
| 1153 | if (!CONSOLE_IS_3215) |
| 1154 | return 0; |
| 1155 | |
| 1156 | driver = alloc_tty_driver(NR_3215); |
| 1157 | if (!driver) |
| 1158 | return -ENOMEM; |
| 1159 | |
| 1160 | ret = ccw_driver_register(&raw3215_ccw_driver); |
| 1161 | if (ret) { |
| 1162 | put_tty_driver(driver); |
| 1163 | return ret; |
| 1164 | } |
| 1165 | /* |
| 1166 | * Initialize the tty_driver structure |
| 1167 | * Entries in tty3215_driver that are NOT initialized: |
| 1168 | * proc_entry, set_termios, flush_buffer, set_ldisc, write_proc |
| 1169 | */ |
| 1170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | driver->driver_name = "tty3215"; |
| 1172 | driver->name = "ttyS"; |
| 1173 | driver->major = TTY_MAJOR; |
| 1174 | driver->minor_start = 64; |
| 1175 | driver->type = TTY_DRIVER_TYPE_SYSTEM; |
| 1176 | driver->subtype = SYSTEM_TYPE_TTY; |
| 1177 | driver->init_termios = tty_std_termios; |
| 1178 | driver->init_termios.c_iflag = IGNBRK | IGNPAR; |
| 1179 | driver->init_termios.c_oflag = ONLCR | XTABS; |
| 1180 | driver->init_termios.c_lflag = ISIG; |
| 1181 | driver->flags = TTY_DRIVER_REAL_RAW; |
| 1182 | tty_set_operations(driver, &tty3215_ops); |
| 1183 | ret = tty_register_driver(driver); |
| 1184 | if (ret) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | put_tty_driver(driver); |
| 1186 | return ret; |
| 1187 | } |
| 1188 | tty3215_driver = driver; |
| 1189 | return 0; |
| 1190 | } |
| 1191 | |
Martin Schwidefsky | 77812a2 | 2009-06-16 10:30:29 +0200 | [diff] [blame] | 1192 | static void __exit tty3215_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | { |
| 1194 | tty_unregister_driver(tty3215_driver); |
| 1195 | put_tty_driver(tty3215_driver); |
| 1196 | ccw_driver_unregister(&raw3215_ccw_driver); |
| 1197 | } |
| 1198 | |
| 1199 | module_init(tty3215_init); |
| 1200 | module_exit(tty3215_exit); |