]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/s390/char/fs3270.c
[S390] pm: con3270 power management callbacks.
[net-next-2.6.git] / drivers / s390 / char / fs3270.c
CommitLineData
1da177e4 1/*
4b214a0c 2 * IBM/3270 Driver - fullscreen driver.
1da177e4 3 *
4b214a0c
MS
4 * Author(s):
5 * Original 3270 Code for 2.4 written by Richard Hitt (UTS Global)
6 * Rewritten for 2.5/2.6 by Martin Schwidefsky <schwidefsky@de.ibm.com>
7 * Copyright IBM Corp. 2003, 2009
1da177e4
LT
8 */
9
1da177e4
LT
10#include <linux/bootmem.h>
11#include <linux/console.h>
12#include <linux/init.h>
13#include <linux/interrupt.h>
14#include <linux/list.h>
15#include <linux/types.h>
764a4a8e 16#include <linux/smp_lock.h>
1da177e4
LT
17
18#include <asm/ccwdev.h>
19#include <asm/cio.h>
1da177e4
LT
20#include <asm/ebcdic.h>
21#include <asm/idals.h>
22
23#include "raw3270.h"
24#include "ctrlchar.h"
25
2b67fc46 26static struct raw3270_fn fs3270_fn;
1da177e4
LT
27
28struct fs3270 {
29 struct raw3270_view view;
782237a2 30 struct pid *fs_pid; /* Pid of controlling program. */
1da177e4
LT
31 int read_command; /* ccw command to use for reads. */
32 int write_command; /* ccw command to use for writes. */
33 int attention; /* Got attention. */
ed3cb6f0
RH
34 int active; /* Fullscreen view is active. */
35 struct raw3270_request *init; /* single init request. */
36 wait_queue_head_t wait; /* Init & attention wait queue. */
37 struct idal_buffer *rdbuf; /* full-screen-deactivate buffer */
38 size_t rdbuf_size; /* size of data returned by RDBUF */
1da177e4
LT
39};
40
41static void
42fs3270_wake_up(struct raw3270_request *rq, void *data)
43{
44 wake_up((wait_queue_head_t *) data);
45}
46
ed3cb6f0
RH
47static inline int
48fs3270_working(struct fs3270 *fp)
49{
50 /*
51 * The fullscreen view is in working order if the view
52 * has been activated AND the initial request is finished.
53 */
54 return fp->active && raw3270_request_final(fp->init);
55}
56
1da177e4
LT
57static int
58fs3270_do_io(struct raw3270_view *view, struct raw3270_request *rq)
59{
ed3cb6f0 60 struct fs3270 *fp;
1da177e4
LT
61 int rc;
62
ed3cb6f0 63 fp = (struct fs3270 *) view;
1da177e4 64 rq->callback = fs3270_wake_up;
ed3cb6f0
RH
65 rq->callback_data = &fp->wait;
66
67 do {
68 if (!fs3270_working(fp)) {
69 /* Fullscreen view isn't ready yet. */
70 rc = wait_event_interruptible(fp->wait,
71 fs3270_working(fp));
72 if (rc != 0)
73 break;
74 }
75 rc = raw3270_start(view, rq);
76 if (rc == 0) {
77 /* Started sucessfully. Now wait for completion. */
78 wait_event(fp->wait, raw3270_request_final(rq));
79 }
80 } while (rc == -EACCES);
81 return rc;
1da177e4
LT
82}
83
ed3cb6f0
RH
84/*
85 * Switch to the fullscreen view.
86 */
1da177e4
LT
87static void
88fs3270_reset_callback(struct raw3270_request *rq, void *data)
89{
ed3cb6f0
RH
90 struct fs3270 *fp;
91
92 fp = (struct fs3270 *) rq->view;
1da177e4 93 raw3270_request_reset(rq);
ed3cb6f0
RH
94 wake_up(&fp->wait);
95}
96
97static void
98fs3270_restore_callback(struct raw3270_request *rq, void *data)
99{
100 struct fs3270 *fp;
101
102 fp = (struct fs3270 *) rq->view;
103 if (rq->rc != 0 || rq->rescnt != 0) {
104 if (fp->fs_pid)
782237a2 105 kill_pid(fp->fs_pid, SIGHUP, 1);
ed3cb6f0
RH
106 }
107 fp->rdbuf_size = 0;
108 raw3270_request_reset(rq);
109 wake_up(&fp->wait);
1da177e4
LT
110}
111
1da177e4
LT
112static int
113fs3270_activate(struct raw3270_view *view)
114{
115 struct fs3270 *fp;
ed3cb6f0
RH
116 char *cp;
117 int rc;
1da177e4
LT
118
119 fp = (struct fs3270 *) view;
ed3cb6f0
RH
120
121 /* If an old init command is still running just return. */
122 if (!raw3270_request_final(fp->init))
123 return 0;
124
125 if (fp->rdbuf_size == 0) {
126 /* No saved buffer. Just clear the screen. */
127 raw3270_request_set_cmd(fp->init, TC_EWRITEA);
128 fp->init->callback = fs3270_reset_callback;
129 } else {
130 /* Restore fullscreen buffer saved by fs3270_deactivate. */
131 raw3270_request_set_cmd(fp->init, TC_EWRITEA);
132 raw3270_request_set_idal(fp->init, fp->rdbuf);
133 fp->init->ccw.count = fp->rdbuf_size;
134 cp = fp->rdbuf->data[0];
135 cp[0] = TW_KR;
136 cp[1] = TO_SBA;
137 cp[2] = cp[6];
138 cp[3] = cp[7];
139 cp[4] = TO_IC;
140 cp[5] = TO_SBA;
141 cp[6] = 0x40;
142 cp[7] = 0x40;
143 fp->init->rescnt = 0;
144 fp->init->callback = fs3270_restore_callback;
145 }
146 rc = fp->init->rc = raw3270_start_locked(view, fp->init);
147 if (rc)
148 fp->init->callback(fp->init, NULL);
149 else
150 fp->active = 1;
151 return rc;
1da177e4
LT
152}
153
154/*
155 * Shutdown fullscreen view.
156 */
ed3cb6f0
RH
157static void
158fs3270_save_callback(struct raw3270_request *rq, void *data)
159{
160 struct fs3270 *fp;
161
162 fp = (struct fs3270 *) rq->view;
163
164 /* Correct idal buffer element 0 address. */
165 fp->rdbuf->data[0] -= 5;
166 fp->rdbuf->size += 5;
167
168 /*
169 * If the rdbuf command failed or the idal buffer is
170 * to small for the amount of data returned by the
171 * rdbuf command, then we have no choice but to send
172 * a SIGHUP to the application.
173 */
174 if (rq->rc != 0 || rq->rescnt == 0) {
175 if (fp->fs_pid)
782237a2 176 kill_pid(fp->fs_pid, SIGHUP, 1);
ed3cb6f0
RH
177 fp->rdbuf_size = 0;
178 } else
179 fp->rdbuf_size = fp->rdbuf->size - rq->rescnt;
180 raw3270_request_reset(rq);
181 wake_up(&fp->wait);
182}
183
1da177e4
LT
184static void
185fs3270_deactivate(struct raw3270_view *view)
186{
1da177e4
LT
187 struct fs3270 *fp;
188
189 fp = (struct fs3270 *) view;
ed3cb6f0
RH
190 fp->active = 0;
191
192 /* If an old init command is still running just return. */
193 if (!raw3270_request_final(fp->init))
194 return;
195
196 /* Prepare read-buffer request. */
197 raw3270_request_set_cmd(fp->init, TC_RDBUF);
198 /*
199 * Hackish: skip first 5 bytes of the idal buffer to make
200 * room for the TW_KR/TO_SBA/<address>/<address>/TO_IC sequence
201 * in the activation command.
202 */
203 fp->rdbuf->data[0] += 5;
204 fp->rdbuf->size -= 5;
205 raw3270_request_set_idal(fp->init, fp->rdbuf);
206 fp->init->rescnt = 0;
207 fp->init->callback = fs3270_save_callback;
208
209 /* Start I/O to read in the 3270 buffer. */
210 fp->init->rc = raw3270_start_locked(view, fp->init);
211 if (fp->init->rc)
212 fp->init->callback(fp->init, NULL);
1da177e4
LT
213}
214
215static int
216fs3270_irq(struct fs3270 *fp, struct raw3270_request *rq, struct irb *irb)
217{
218 /* Handle ATTN. Set indication and wake waiters for attention. */
23d805b6 219 if (irb->scsw.cmd.dstat & DEV_STAT_ATTENTION) {
1da177e4 220 fp->attention = 1;
ed3cb6f0 221 wake_up(&fp->wait);
1da177e4
LT
222 }
223
224 if (rq) {
23d805b6 225 if (irb->scsw.cmd.dstat & DEV_STAT_UNIT_CHECK)
1da177e4
LT
226 rq->rc = -EIO;
227 else
228 /* Normal end. Copy residual count. */
23d805b6 229 rq->rescnt = irb->scsw.cmd.count;
1da177e4
LT
230 }
231 return RAW3270_IO_DONE;
232}
233
234/*
235 * Process reads from fullscreen 3270.
236 */
237static ssize_t
d2c993d8 238fs3270_read(struct file *filp, char __user *data, size_t count, loff_t *off)
1da177e4
LT
239{
240 struct fs3270 *fp;
241 struct raw3270_request *rq;
242 struct idal_buffer *ib;
ed3cb6f0 243 ssize_t rc;
1da177e4
LT
244
245 if (count == 0 || count > 65535)
246 return -EINVAL;
247 fp = filp->private_data;
248 if (!fp)
249 return -ENODEV;
250 ib = idal_buffer_alloc(count, 0);
ed3cb6f0 251 if (IS_ERR(ib))
1da177e4
LT
252 return -ENOMEM;
253 rq = raw3270_request_alloc(0);
254 if (!IS_ERR(rq)) {
255 if (fp->read_command == 0 && fp->write_command != 0)
256 fp->read_command = 6;
257 raw3270_request_set_cmd(rq, fp->read_command ? : 2);
258 raw3270_request_set_idal(rq, ib);
ed3cb6f0
RH
259 rc = wait_event_interruptible(fp->wait, fp->attention);
260 fp->attention = 0;
261 if (rc == 0) {
262 rc = fs3270_do_io(&fp->view, rq);
263 if (rc == 0) {
264 count -= rq->rescnt;
265 if (idal_buffer_to_user(ib, data, count) != 0)
266 rc = -EFAULT;
267 else
268 rc = count;
269
270 }
271 }
1da177e4
LT
272 raw3270_request_free(rq);
273 } else
274 rc = PTR_ERR(rq);
275 idal_buffer_free(ib);
276 return rc;
277}
278
279/*
280 * Process writes to fullscreen 3270.
281 */
282static ssize_t
d2c993d8 283fs3270_write(struct file *filp, const char __user *data, size_t count, loff_t *off)
1da177e4
LT
284{
285 struct fs3270 *fp;
286 struct raw3270_request *rq;
287 struct idal_buffer *ib;
288 int write_command;
ed3cb6f0 289 ssize_t rc;
1da177e4
LT
290
291 fp = filp->private_data;
292 if (!fp)
293 return -ENODEV;
294 ib = idal_buffer_alloc(count, 0);
ed3cb6f0 295 if (IS_ERR(ib))
1da177e4
LT
296 return -ENOMEM;
297 rq = raw3270_request_alloc(0);
298 if (!IS_ERR(rq)) {
299 if (idal_buffer_from_user(ib, data, count) == 0) {
300 write_command = fp->write_command ? : 1;
301 if (write_command == 5)
302 write_command = 13;
303 raw3270_request_set_cmd(rq, write_command);
304 raw3270_request_set_idal(rq, ib);
305 rc = fs3270_do_io(&fp->view, rq);
ed3cb6f0
RH
306 if (rc == 0)
307 rc = count - rq->rescnt;
1da177e4
LT
308 } else
309 rc = -EFAULT;
310 raw3270_request_free(rq);
311 } else
312 rc = PTR_ERR(rq);
313 idal_buffer_free(ib);
314 return rc;
315}
316
317/*
318 * process ioctl commands for the tube driver
319 */
0f75e00c
CH
320static long
321fs3270_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1da177e4
LT
322{
323 struct fs3270 *fp;
324 struct raw3270_iocb iocb;
325 int rc;
326
327 fp = filp->private_data;
328 if (!fp)
329 return -ENODEV;
330 rc = 0;
0f75e00c 331 lock_kernel();
1da177e4
LT
332 switch (cmd) {
333 case TUBICMD:
334 fp->read_command = arg;
335 break;
336 case TUBOCMD:
337 fp->write_command = arg;
338 break;
339 case TUBGETI:
d2c993d8 340 rc = put_user(fp->read_command, (char __user *) arg);
1da177e4
LT
341 break;
342 case TUBGETO:
d2c993d8 343 rc = put_user(fp->write_command,(char __user *) arg);
1da177e4
LT
344 break;
345 case TUBGETMOD:
346 iocb.model = fp->view.model;
347 iocb.line_cnt = fp->view.rows;
348 iocb.col_cnt = fp->view.cols;
349 iocb.pf_cnt = 24;
350 iocb.re_cnt = 20;
351 iocb.map = 0;
d2c993d8 352 if (copy_to_user((char __user *) arg, &iocb,
1da177e4
LT
353 sizeof(struct raw3270_iocb)))
354 rc = -EFAULT;
355 break;
356 }
0f75e00c 357 unlock_kernel();
1da177e4
LT
358 return rc;
359}
360
361/*
ed3cb6f0 362 * Allocate fs3270 structure.
1da177e4
LT
363 */
364static struct fs3270 *
365fs3270_alloc_view(void)
366{
367 struct fs3270 *fp;
368
88abaab4 369 fp = kzalloc(sizeof(struct fs3270),GFP_KERNEL);
1da177e4
LT
370 if (!fp)
371 return ERR_PTR(-ENOMEM);
ed3cb6f0
RH
372 fp->init = raw3270_request_alloc(0);
373 if (IS_ERR(fp->init)) {
1da177e4
LT
374 kfree(fp);
375 return ERR_PTR(-ENOMEM);
376 }
377 return fp;
378}
379
380/*
ed3cb6f0 381 * Free fs3270 structure.
1da177e4
LT
382 */
383static void
384fs3270_free_view(struct raw3270_view *view)
385{
ed3cb6f0
RH
386 struct fs3270 *fp;
387
388 fp = (struct fs3270 *) view;
389 if (fp->rdbuf)
390 idal_buffer_free(fp->rdbuf);
391 raw3270_request_free(((struct fs3270 *) view)->init);
1da177e4
LT
392 kfree(view);
393}
394
395/*
396 * Unlink fs3270 data structure from filp.
397 */
398static void
399fs3270_release(struct raw3270_view *view)
400{
4b214a0c
MS
401 struct fs3270 *fp;
402
403 fp = (struct fs3270 *) view;
404 if (fp->fs_pid)
405 kill_pid(fp->fs_pid, SIGHUP, 1);
1da177e4
LT
406}
407
408/* View to a 3270 device. Can be console, tty or fullscreen. */
2b67fc46 409static struct raw3270_fn fs3270_fn = {
1da177e4
LT
410 .activate = fs3270_activate,
411 .deactivate = fs3270_deactivate,
412 .intv = (void *) fs3270_irq,
413 .release = fs3270_release,
414 .free = fs3270_free_view
415};
416
417/*
418 * This routine is called whenever a 3270 fullscreen device is opened.
419 */
420static int
421fs3270_open(struct inode *inode, struct file *filp)
422{
423 struct fs3270 *fp;
ed3cb6f0 424 struct idal_buffer *ib;
a18992d4 425 int minor, rc = 0;
1da177e4 426
49522c97 427 if (imajor(filp->f_path.dentry->d_inode) != IBM_FS3270_MAJOR)
1da177e4 428 return -ENODEV;
49522c97 429 minor = iminor(filp->f_path.dentry->d_inode);
ed3cb6f0
RH
430 /* Check for minor 0 multiplexer. */
431 if (minor == 0) {
a90610e5 432 struct tty_struct *tty = get_current_tty();
24ec839c 433 if (!tty || tty->driver->major != IBM_TTY3270_MAJOR) {
452a00d2 434 tty_kref_put(tty);
a18992d4 435 return -ENODEV;
24ec839c
PZ
436 }
437 minor = tty->index + RAW3270_FIRSTMINOR;
452a00d2 438 tty_kref_put(tty);
ed3cb6f0 439 }
a18992d4 440 lock_kernel();
1da177e4
LT
441 /* Check if some other program is already using fullscreen mode. */
442 fp = (struct fs3270 *) raw3270_find_view(&fs3270_fn, minor);
443 if (!IS_ERR(fp)) {
444 raw3270_put_view(&fp->view);
764a4a8e
JC
445 rc = -EBUSY;
446 goto out;
1da177e4
LT
447 }
448 /* Allocate fullscreen view structure. */
449 fp = fs3270_alloc_view();
764a4a8e
JC
450 if (IS_ERR(fp)) {
451 rc = PTR_ERR(fp);
452 goto out;
453 }
1da177e4 454
ed3cb6f0 455 init_waitqueue_head(&fp->wait);
782237a2 456 fp->fs_pid = get_pid(task_pid(current));
1da177e4
LT
457 rc = raw3270_add_view(&fp->view, &fs3270_fn, minor);
458 if (rc) {
459 fs3270_free_view(&fp->view);
764a4a8e 460 goto out;
1da177e4
LT
461 }
462
ed3cb6f0
RH
463 /* Allocate idal-buffer. */
464 ib = idal_buffer_alloc(2*fp->view.rows*fp->view.cols + 5, 0);
465 if (IS_ERR(ib)) {
466 raw3270_put_view(&fp->view);
467 raw3270_del_view(&fp->view);
764a4a8e
JC
468 rc = PTR_ERR(fp);
469 goto out;
ed3cb6f0
RH
470 }
471 fp->rdbuf = ib;
472
1da177e4
LT
473 rc = raw3270_activate_view(&fp->view);
474 if (rc) {
ed3cb6f0 475 raw3270_put_view(&fp->view);
1da177e4 476 raw3270_del_view(&fp->view);
764a4a8e 477 goto out;
1da177e4
LT
478 }
479 filp->private_data = fp;
764a4a8e
JC
480out:
481 unlock_kernel();
a18992d4 482 return rc;
1da177e4
LT
483}
484
485/*
486 * This routine is called when the 3270 tty is closed. We wait
487 * for the remaining request to be completed. Then we clean up.
488 */
489static int
490fs3270_close(struct inode *inode, struct file *filp)
491{
492 struct fs3270 *fp;
493
494 fp = filp->private_data;
d2c993d8 495 filp->private_data = NULL;
ed3cb6f0 496 if (fp) {
782237a2
CLG
497 put_pid(fp->fs_pid);
498 fp->fs_pid = NULL;
ed3cb6f0
RH
499 raw3270_reset(&fp->view);
500 raw3270_put_view(&fp->view);
1da177e4 501 raw3270_del_view(&fp->view);
ed3cb6f0 502 }
1da177e4
LT
503 return 0;
504}
505
d54b1fdb 506static const struct file_operations fs3270_fops = {
0f75e00c
CH
507 .owner = THIS_MODULE, /* owner */
508 .read = fs3270_read, /* read */
509 .write = fs3270_write, /* write */
510 .unlocked_ioctl = fs3270_ioctl, /* ioctl */
511 .compat_ioctl = fs3270_ioctl, /* ioctl */
512 .open = fs3270_open, /* open */
513 .release = fs3270_close, /* release */
1da177e4
LT
514};
515
516/*
517 * 3270 fullscreen driver initialization.
518 */
519static int __init
520fs3270_init(void)
521{
522 int rc;
523
524 rc = register_chrdev(IBM_FS3270_MAJOR, "fs3270", &fs3270_fops);
a26182ed 525 if (rc)
1da177e4 526 return rc;
1da177e4
LT
527 return 0;
528}
529
530static void __exit
531fs3270_exit(void)
532{
533 unregister_chrdev(IBM_FS3270_MAJOR, "fs3270");
534}
535
536MODULE_LICENSE("GPL");
537MODULE_ALIAS_CHARDEV_MAJOR(IBM_FS3270_MAJOR);
538
539module_init(fs3270_init);
540module_exit(fs3270_exit);