2 * drivers/s390/char/raw3270.c
3 * IBM/3270 Driver - core functions.
6 * Original 3270 Code for 2.4 written by Richard Hitt (UTS Global)
7 * Rewritten for 2.5 by Martin Schwidefsky <schwidefsky@de.ibm.com>
8 * -- Copyright (C) 2003 IBM Deutschland Entwicklung GmbH, IBM Corporation
11 #include <linux/config.h>
12 #include <linux/bootmem.h>
13 #include <linux/module.h>
14 #include <linux/err.h>
15 #include <linux/init.h>
16 #include <linux/interrupt.h>
17 #include <linux/list.h>
18 #include <linux/slab.h>
19 #include <linux/types.h>
20 #include <linux/wait.h>
22 #include <asm/ccwdev.h>
24 #include <asm/ebcdic.h>
28 /* The main 3270 data structure. */
30 struct list_head list
;
31 struct ccw_device
*cdev
;
34 short model
, rows
, cols
;
37 struct list_head req_queue
; /* Request queue. */
38 struct list_head view_list
; /* List of available views. */
39 struct raw3270_view
*view
; /* Active view. */
41 struct timer_list timer
; /* Device timer. */
43 unsigned char *ascebc
; /* ascii -> ebcdic table */
47 #define RAW3270_FLAGS_14BITADDR 0 /* 14-bit buffer addresses */
48 #define RAW3270_FLAGS_BUSY 1 /* Device busy, leave it alone */
49 #define RAW3270_FLAGS_ATTN 2 /* Device sent an ATTN interrupt */
50 #define RAW3270_FLAGS_READY 4 /* Device is useable by views */
51 #define RAW3270_FLAGS_CONSOLE 8 /* Device is the console. */
53 /* Semaphore to protect global data of raw3270 (devices, views, etc). */
54 static DECLARE_MUTEX(raw3270_sem
);
56 /* List of 3270 devices. */
57 static struct list_head raw3270_devices
= LIST_HEAD_INIT(raw3270_devices
);
60 * Flag to indicate if the driver has been registered. Some operations
61 * like waiting for the end of i/o need to be done differently as long
62 * as the kernel is still starting up (console support).
64 static int raw3270_registered
;
66 /* Module parameters */
67 static int tubxcorrect
= 0;
68 module_param(tubxcorrect
, bool, 0);
71 * Wait queue for device init/delete, view delete.
73 DECLARE_WAIT_QUEUE_HEAD(raw3270_wait_queue
);
76 * Encode array for 12 bit 3270 addresses.
78 unsigned char raw3270_ebcgraf
[64] = {
79 0x40, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,
80 0xc8, 0xc9, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,
81 0x50, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7,
82 0xd8, 0xd9, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,
83 0x60, 0x61, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7,
84 0xe8, 0xe9, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
85 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
86 0xf8, 0xf9, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f
90 raw3270_buffer_address(struct raw3270
*rp
, char *cp
, unsigned short addr
)
92 if (test_bit(RAW3270_FLAGS_14BITADDR
, &rp
->flags
)) {
93 cp
[0] = (addr
>> 8) & 0x3f;
96 cp
[0] = raw3270_ebcgraf
[(addr
>> 6) & 0x3f];
97 cp
[1] = raw3270_ebcgraf
[addr
& 0x3f];
102 * Allocate a new 3270 ccw request
104 struct raw3270_request
*
105 raw3270_request_alloc(size_t size
)
107 struct raw3270_request
*rq
;
109 /* Allocate request structure */
110 rq
= kmalloc(sizeof(struct raw3270_request
), GFP_KERNEL
| GFP_DMA
);
112 return ERR_PTR(-ENOMEM
);
113 memset(rq
, 0, sizeof(struct raw3270_request
));
115 /* alloc output buffer. */
117 rq
->buffer
= kmalloc(size
, GFP_KERNEL
| GFP_DMA
);
120 return ERR_PTR(-ENOMEM
);
124 INIT_LIST_HEAD(&rq
->list
);
129 rq
->ccw
.cda
= __pa(rq
->buffer
);
130 rq
->ccw
.flags
= CCW_FLAG_SLI
;
135 #ifdef CONFIG_TN3270_CONSOLE
137 * Allocate a new 3270 ccw request from bootmem. Only works very
138 * early in the boot process. Only con3270.c should be using this.
140 struct raw3270_request
*
141 raw3270_request_alloc_bootmem(size_t size
)
143 struct raw3270_request
*rq
;
145 rq
= alloc_bootmem_low(sizeof(struct raw3270
));
147 return ERR_PTR(-ENOMEM
);
148 memset(rq
, 0, sizeof(struct raw3270_request
));
150 /* alloc output buffer. */
152 rq
->buffer
= alloc_bootmem_low(size
);
154 free_bootmem((unsigned long) rq
,
155 sizeof(struct raw3270
));
156 return ERR_PTR(-ENOMEM
);
160 INIT_LIST_HEAD(&rq
->list
);
165 rq
->ccw
.cda
= __pa(rq
->buffer
);
166 rq
->ccw
.flags
= CCW_FLAG_SLI
;
173 * Free 3270 ccw request
176 raw3270_request_free (struct raw3270_request
*rq
)
184 * Reset request to initial state.
187 raw3270_request_reset(struct raw3270_request
*rq
)
189 BUG_ON(!list_empty(&rq
->list
));
190 rq
->ccw
.cmd_code
= 0;
192 rq
->ccw
.cda
= __pa(rq
->buffer
);
193 rq
->ccw
.flags
= CCW_FLAG_SLI
;
199 * Set command code to ccw of a request.
202 raw3270_request_set_cmd(struct raw3270_request
*rq
, u8 cmd
)
204 rq
->ccw
.cmd_code
= cmd
;
208 * Add data fragment to output buffer.
211 raw3270_request_add_data(struct raw3270_request
*rq
, void *data
, size_t size
)
213 if (size
+ rq
->ccw
.count
> rq
->size
)
215 memcpy(rq
->buffer
+ rq
->ccw
.count
, data
, size
);
216 rq
->ccw
.count
+= size
;
221 * Set address/length pair to ccw of a request.
224 raw3270_request_set_data(struct raw3270_request
*rq
, void *data
, size_t size
)
226 rq
->ccw
.cda
= __pa(data
);
227 rq
->ccw
.count
= size
;
231 * Set idal buffer to ccw of a request.
234 raw3270_request_set_idal(struct raw3270_request
*rq
, struct idal_buffer
*ib
)
236 rq
->ccw
.cda
= __pa(ib
->data
);
237 rq
->ccw
.count
= ib
->size
;
238 rq
->ccw
.flags
|= CCW_FLAG_IDA
;
245 raw3270_halt_io_nolock(struct raw3270
*rp
, struct raw3270_request
*rq
)
250 if (raw3270_request_final(rq
))
252 /* Check if interrupt has already been processed */
253 for (retries
= 0; retries
< 5; retries
++) {
255 rc
= ccw_device_halt(rp
->cdev
, (long) rq
);
257 rc
= ccw_device_clear(rp
->cdev
, (long) rq
);
259 break; /* termination successful */
265 raw3270_halt_io(struct raw3270
*rp
, struct raw3270_request
*rq
)
270 spin_lock_irqsave(get_ccwdev_lock(rp
->cdev
), flags
);
271 rc
= raw3270_halt_io_nolock(rp
, rq
);
272 spin_unlock_irqrestore(get_ccwdev_lock(rp
->cdev
), flags
);
277 * Add the request to the request queue, try to start it if the
278 * 3270 device is idle. Return without waiting for end of i/o.
281 __raw3270_start(struct raw3270
*rp
, struct raw3270_view
*view
,
282 struct raw3270_request
*rq
)
285 raw3270_get_view(view
);
286 if (list_empty(&rp
->req_queue
) &&
287 !test_bit(RAW3270_FLAGS_BUSY
, &rp
->flags
)) {
288 /* No other requests are on the queue. Start this one. */
289 rq
->rc
= ccw_device_start(rp
->cdev
, &rq
->ccw
,
290 (unsigned long) rq
, 0, 0);
292 raw3270_put_view(view
);
296 list_add_tail(&rq
->list
, &rp
->req_queue
);
301 raw3270_start(struct raw3270_view
*view
, struct raw3270_request
*rq
)
307 spin_lock_irqsave(get_ccwdev_lock(view
->dev
->cdev
), flags
);
309 if (!rp
|| rp
->view
!= view
)
311 else if (!test_bit(RAW3270_FLAGS_READY
, &rp
->flags
))
314 rc
= __raw3270_start(rp
, view
, rq
);
315 spin_unlock_irqrestore(get_ccwdev_lock(view
->dev
->cdev
), flags
);
320 raw3270_start_irq(struct raw3270_view
*view
, struct raw3270_request
*rq
)
326 raw3270_get_view(view
);
327 list_add_tail(&rq
->list
, &rp
->req_queue
);
332 * 3270 interrupt routine, called from the ccw_device layer
335 raw3270_irq (struct ccw_device
*cdev
, unsigned long intparm
, struct irb
*irb
)
338 struct raw3270_view
*view
;
339 struct raw3270_request
*rq
;
342 rp
= (struct raw3270
*) cdev
->dev
.driver_data
;
345 rq
= (struct raw3270_request
*) intparm
;
346 view
= rq
? rq
->view
: rp
->view
;
349 rc
= RAW3270_IO_RETRY
;
350 else if (irb
->scsw
.fctl
& SCSW_FCTL_HALT_FUNC
) {
352 rc
= RAW3270_IO_DONE
;
353 } else if (irb
->scsw
.dstat
== (DEV_STAT_CHN_END
| DEV_STAT_DEV_END
|
354 DEV_STAT_UNIT_EXCEP
)) {
355 /* Handle CE-DE-UE and subsequent UDE */
356 set_bit(RAW3270_FLAGS_BUSY
, &rp
->flags
);
357 rc
= RAW3270_IO_BUSY
;
358 } else if (test_bit(RAW3270_FLAGS_BUSY
, &rp
->flags
)) {
359 /* Wait for UDE if busy flag is set. */
360 if (irb
->scsw
.dstat
& DEV_STAT_DEV_END
) {
361 clear_bit(RAW3270_FLAGS_BUSY
, &rp
->flags
);
362 /* Got it, now retry. */
363 rc
= RAW3270_IO_RETRY
;
365 rc
= RAW3270_IO_BUSY
;
367 rc
= view
->fn
->intv(view
, rq
, irb
);
369 rc
= RAW3270_IO_DONE
;
372 case RAW3270_IO_DONE
:
374 case RAW3270_IO_BUSY
:
376 * Intervention required by the operator. We have to wait
377 * for unsolicited device end.
380 case RAW3270_IO_RETRY
:
383 rq
->rc
= ccw_device_start(rp
->cdev
, &rq
->ccw
,
384 (unsigned long) rq
, 0, 0);
386 return; /* Sucessfully restarted. */
388 case RAW3270_IO_STOP
:
391 raw3270_halt_io_nolock(rp
, rq
);
398 BUG_ON(list_empty(&rq
->list
));
399 /* The request completed, remove from queue and do callback. */
400 list_del_init(&rq
->list
);
402 rq
->callback(rq
, rq
->callback_data
);
403 /* Do put_device for get_device in raw3270_start. */
404 raw3270_put_view(view
);
407 * Try to start each request on request queue until one is
408 * started successful.
410 while (!list_empty(&rp
->req_queue
)) {
411 rq
= list_entry(rp
->req_queue
.next
,struct raw3270_request
,list
);
412 rq
->rc
= ccw_device_start(rp
->cdev
, &rq
->ccw
,
413 (unsigned long) rq
, 0, 0);
416 /* Start failed. Remove request and do callback. */
417 list_del_init(&rq
->list
);
419 rq
->callback(rq
, rq
->callback_data
);
420 /* Do put_device for get_device in raw3270_start. */
421 raw3270_put_view(view
);
429 struct raw3270_ua
{ /* Query Reply structure for Usable Area */
430 struct { /* Usable Area Query Reply Base */
431 short l
; /* Length of this structured field */
432 char sfid
; /* 0x81 if Query Reply */
433 char qcode
; /* 0x81 if Usable Area */
436 short w
; /* Width of usable area */
437 short h
; /* Heigth of usavle area */
438 char units
; /* 0x00:in; 0x01:mm */
443 short buffsz
; /* Character buffer size, bytes */
448 } __attribute__ ((packed
)) uab
;
449 struct { /* Alternate Usable Area Self-Defining Parameter */
450 char l
; /* Length of this Self-Defining Parm */
451 char sdpid
; /* 0x02 if Alternate Usable Area */
453 char auaid
; /* 0x01 is Id for the A U A */
454 short wauai
; /* Width of AUAi */
455 short hauai
; /* Height of AUAi */
456 char auaunits
; /* 0x00:in, 0x01:mm */
461 } __attribute__ ((packed
)) aua
;
462 } __attribute__ ((packed
));
464 static unsigned char raw3270_init_data
[256];
465 static struct raw3270_request raw3270_init_request
;
466 static struct diag210 raw3270_init_diag210
;
467 static DECLARE_MUTEX(raw3270_init_sem
);
470 raw3270_init_irq(struct raw3270_view
*view
, struct raw3270_request
*rq
,
474 * Unit-Check Processing:
475 * Expect Command Reject or Intervention Required.
477 if (irb
->scsw
.dstat
& DEV_STAT_UNIT_CHECK
) {
478 /* Request finished abnormally. */
479 if (irb
->ecw
[0] & SNS0_INTERVENTION_REQ
) {
480 set_bit(RAW3270_FLAGS_BUSY
, &view
->dev
->flags
);
481 return RAW3270_IO_BUSY
;
485 if (irb
->scsw
.dstat
& DEV_STAT_UNIT_CHECK
) {
486 if (irb
->ecw
[0] & SNS0_CMD_REJECT
)
487 rq
->rc
= -EOPNOTSUPP
;
491 /* Request finished normally. Copy residual count. */
492 rq
->rescnt
= irb
->scsw
.count
;
494 if (irb
->scsw
.dstat
& DEV_STAT_ATTENTION
) {
495 set_bit(RAW3270_FLAGS_ATTN
, &view
->dev
->flags
);
496 wake_up(&raw3270_wait_queue
);
498 return RAW3270_IO_DONE
;
501 static struct raw3270_fn raw3270_init_fn
= {
502 .intv
= raw3270_init_irq
505 static struct raw3270_view raw3270_init_view
= {
506 .fn
= &raw3270_init_fn
510 * raw3270_wait/raw3270_wait_interruptible/__raw3270_wakeup
511 * Wait for end of request. The request must have been started
512 * with raw3270_start, rc = 0. The device lock may NOT have been
513 * released between calling raw3270_start and raw3270_wait.
516 raw3270_wake_init(struct raw3270_request
*rq
, void *data
)
518 wake_up((wait_queue_head_t
*) data
);
522 * Special wait function that can cope with console initialization.
525 raw3270_start_init(struct raw3270
*rp
, struct raw3270_view
*view
,
526 struct raw3270_request
*rq
)
529 wait_queue_head_t wq
;
532 #ifdef CONFIG_TN3270_CONSOLE
533 if (raw3270_registered
== 0) {
534 spin_lock_irqsave(get_ccwdev_lock(view
->dev
->cdev
), flags
);
536 rc
= __raw3270_start(rp
, view
, rq
);
538 while (!raw3270_request_final(rq
)) {
542 spin_unlock_irqrestore(get_ccwdev_lock(view
->dev
->cdev
), flags
);
546 init_waitqueue_head(&wq
);
547 rq
->callback
= raw3270_wake_init
;
548 rq
->callback_data
= &wq
;
549 spin_lock_irqsave(get_ccwdev_lock(view
->dev
->cdev
), flags
);
550 rc
= __raw3270_start(rp
, view
, rq
);
551 spin_unlock_irqrestore(get_ccwdev_lock(view
->dev
->cdev
), flags
);
554 /* Now wait for the completion. */
555 rc
= wait_event_interruptible(wq
, raw3270_request_final(rq
));
556 if (rc
== -ERESTARTSYS
) { /* Interrupted by a signal. */
557 raw3270_halt_io(view
->dev
, rq
);
558 /* No wait for the halt to complete. */
559 wait_event(wq
, raw3270_request_final(rq
));
566 __raw3270_size_device_vm(struct raw3270
*rp
)
570 raw3270_init_diag210
.vrdcdvno
=
571 _ccw_device_get_device_number(rp
->cdev
);
572 raw3270_init_diag210
.vrdclen
= sizeof(struct diag210
);
573 rc
= diag210(&raw3270_init_diag210
);
576 model
= raw3270_init_diag210
.vrdccrmd
;
599 printk(KERN_WARNING
"vrdccrmd is 0x%.8x\n", model
);
607 __raw3270_size_device(struct raw3270
*rp
)
609 static const unsigned char wbuf
[] =
610 { 0x00, 0x07, 0x01, 0xff, 0x03, 0x00, 0x81 };
611 struct raw3270_ua
*uap
;
612 unsigned short count
;
616 * To determine the size of the 3270 device we need to do:
617 * 1) send a 'read partition' data stream to the device
618 * 2) wait for the attn interrupt that preceeds the query reply
619 * 3) do a read modified to get the query reply
620 * To make things worse we have to cope with intervention
621 * required (3270 device switched to 'stand-by') and command
622 * rejects (old devices that can't do 'read partition').
624 memset(&raw3270_init_request
, 0, sizeof(raw3270_init_request
));
625 memset(raw3270_init_data
, 0, sizeof(raw3270_init_data
));
626 /* Store 'read partition' data stream to raw3270_init_data */
627 memcpy(raw3270_init_data
, wbuf
, sizeof(wbuf
));
628 INIT_LIST_HEAD(&raw3270_init_request
.list
);
629 raw3270_init_request
.ccw
.cmd_code
= TC_WRITESF
;
630 raw3270_init_request
.ccw
.flags
= CCW_FLAG_SLI
;
631 raw3270_init_request
.ccw
.count
= sizeof(wbuf
);
632 raw3270_init_request
.ccw
.cda
= (__u32
) __pa(raw3270_init_data
);
634 rc
= raw3270_start_init(rp
, &raw3270_init_view
, &raw3270_init_request
);
636 /* Check error cases: -ERESTARTSYS, -EIO and -EOPNOTSUPP */
637 if (rc
== -EOPNOTSUPP
&& MACHINE_IS_VM
)
638 return __raw3270_size_device_vm(rp
);
642 /* Wait for attention interrupt. */
643 #ifdef CONFIG_TN3270_CONSOLE
644 if (raw3270_registered
== 0) {
647 spin_lock_irqsave(get_ccwdev_lock(rp
->cdev
), flags
);
648 while (!test_and_clear_bit(RAW3270_FLAGS_ATTN
, &rp
->flags
))
650 spin_unlock_irqrestore(get_ccwdev_lock(rp
->cdev
), flags
);
653 rc
= wait_event_interruptible(raw3270_wait_queue
,
654 test_and_clear_bit(RAW3270_FLAGS_ATTN
, &rp
->flags
));
659 * The device accepted the 'read partition' command. Now
660 * set up a read ccw and issue it.
662 raw3270_init_request
.ccw
.cmd_code
= TC_READMOD
;
663 raw3270_init_request
.ccw
.flags
= CCW_FLAG_SLI
;
664 raw3270_init_request
.ccw
.count
= sizeof(raw3270_init_data
);
665 raw3270_init_request
.ccw
.cda
= (__u32
) __pa(raw3270_init_data
);
666 rc
= raw3270_start_init(rp
, &raw3270_init_view
, &raw3270_init_request
);
669 /* Got a Query Reply */
670 count
= sizeof(raw3270_init_data
) - raw3270_init_request
.rescnt
;
671 uap
= (struct raw3270_ua
*) (raw3270_init_data
+ 1);
672 /* Paranoia check. */
673 if (raw3270_init_data
[0] != 0x88 || uap
->uab
.qcode
!= 0x81)
675 /* Copy rows/columns of default Usable Area */
676 rp
->rows
= uap
->uab
.h
;
677 rp
->cols
= uap
->uab
.w
;
678 /* Check for 14 bit addressing */
679 if ((uap
->uab
.flags0
& 0x0d) == 0x01)
680 set_bit(RAW3270_FLAGS_14BITADDR
, &rp
->flags
);
681 /* Check for Alternate Usable Area */
682 if (uap
->uab
.l
== sizeof(struct raw3270_ua
) &&
683 uap
->aua
.sdpid
== 0x02) {
684 rp
->rows
= uap
->aua
.hauai
;
685 rp
->cols
= uap
->aua
.wauai
;
691 raw3270_size_device(struct raw3270
*rp
)
695 down(&raw3270_init_sem
);
696 rp
->view
= &raw3270_init_view
;
697 raw3270_init_view
.dev
= rp
;
698 rc
= __raw3270_size_device(rp
);
699 raw3270_init_view
.dev
= 0;
701 up(&raw3270_init_sem
);
702 if (rc
== 0) { /* Found something. */
703 /* Try to find a model. */
705 if (rp
->rows
== 24 && rp
->cols
== 80)
707 if (rp
->rows
== 32 && rp
->cols
== 80)
709 if (rp
->rows
== 43 && rp
->cols
== 80)
711 if (rp
->rows
== 27 && rp
->cols
== 132)
718 raw3270_reset_device(struct raw3270
*rp
)
722 down(&raw3270_init_sem
);
723 memset(&raw3270_init_request
, 0, sizeof(raw3270_init_request
));
724 memset(raw3270_init_data
, 0, sizeof(raw3270_init_data
));
725 /* Store reset data stream to raw3270_init_data/raw3270_init_request */
726 raw3270_init_data
[0] = TW_KR
;
727 INIT_LIST_HEAD(&raw3270_init_request
.list
);
728 raw3270_init_request
.ccw
.cmd_code
= TC_EWRITEA
;
729 raw3270_init_request
.ccw
.flags
= CCW_FLAG_SLI
;
730 raw3270_init_request
.ccw
.count
= 1;
731 raw3270_init_request
.ccw
.cda
= (__u32
) __pa(raw3270_init_data
);
732 rp
->view
= &raw3270_init_view
;
733 raw3270_init_view
.dev
= rp
;
734 rc
= raw3270_start_init(rp
, &raw3270_init_view
, &raw3270_init_request
);
735 raw3270_init_view
.dev
= 0;
737 up(&raw3270_init_sem
);
742 * Setup new 3270 device.
745 raw3270_setup_device(struct ccw_device
*cdev
, struct raw3270
*rp
, char *ascebc
)
751 memset(rp
, 0, sizeof(struct raw3270
));
752 /* Copy ebcdic -> ascii translation table. */
753 memcpy(ascebc
, _ascebc
, 256);
755 /* correct brackets and circumflex */
766 INIT_LIST_HEAD(&rp
->req_queue
);
767 INIT_LIST_HEAD(&rp
->view_list
);
770 * Add device to list and find the smallest unused minor
774 /* Keep the list sorted. */
777 list_for_each(l
, &raw3270_devices
) {
778 tmp
= list_entry(l
, struct raw3270
, list
);
779 if (tmp
->minor
> minor
) {
781 __list_add(&rp
->list
, l
->prev
, l
);
786 if (rp
->minor
== -1 && minor
< RAW3270_MAXDEVS
) {
788 list_add_tail(&rp
->list
, &raw3270_devices
);
791 /* No free minor number? Then give up. */
795 cdev
->dev
.driver_data
= rp
;
796 cdev
->handler
= raw3270_irq
;
800 #ifdef CONFIG_TN3270_CONSOLE
802 * Setup 3270 device configured as console.
805 raw3270_setup_console(struct ccw_device
*cdev
)
811 rp
= (struct raw3270
*) alloc_bootmem(sizeof(struct raw3270
));
812 ascebc
= (char *) alloc_bootmem(256);
813 rc
= raw3270_setup_device(cdev
, rp
, ascebc
);
816 set_bit(RAW3270_FLAGS_CONSOLE
, &rp
->flags
);
817 rc
= raw3270_reset_device(rp
);
820 rc
= raw3270_size_device(rp
);
823 rc
= raw3270_reset_device(rp
);
826 set_bit(RAW3270_FLAGS_READY
, &rp
->flags
);
831 raw3270_wait_cons_dev(struct raw3270
*rp
)
835 spin_lock_irqsave(get_ccwdev_lock(rp
->cdev
), flags
);
837 spin_unlock_irqrestore(get_ccwdev_lock(rp
->cdev
), flags
);
843 * Create a 3270 device structure.
845 static struct raw3270
*
846 raw3270_create_device(struct ccw_device
*cdev
)
852 rp
= kmalloc(sizeof(struct raw3270
), GFP_KERNEL
);
854 return ERR_PTR(-ENOMEM
);
855 ascebc
= kmalloc(256, GFP_KERNEL
);
858 return ERR_PTR(-ENOMEM
);
860 rc
= raw3270_setup_device(cdev
, rp
, ascebc
);
866 /* Get reference to ccw_device structure. */
867 get_device(&cdev
->dev
);
875 raw3270_activate_view(struct raw3270_view
*view
)
878 struct raw3270_view
*oldview
, *nv
;
885 spin_lock_irqsave(get_ccwdev_lock(rp
->cdev
), flags
);
886 if (rp
->view
== view
)
888 else if (!test_bit(RAW3270_FLAGS_READY
, &rp
->flags
))
894 oldview
->fn
->deactivate(oldview
);
897 rc
= view
->fn
->activate(view
);
899 /* Didn't work. Try to reactivate the old view. */
901 if (!oldview
|| oldview
->fn
->activate(oldview
) != 0) {
902 /* Didn't work as well. Try any other view. */
903 list_for_each_entry(nv
, &rp
->view_list
, list
)
904 if (nv
!= view
&& nv
!= oldview
) {
906 if (nv
->fn
->activate(nv
) == 0)
913 spin_unlock_irqrestore(get_ccwdev_lock(rp
->cdev
), flags
);
918 * Deactivate current view.
921 raw3270_deactivate_view(struct raw3270_view
*view
)
929 spin_lock_irqsave(get_ccwdev_lock(rp
->cdev
), flags
);
930 if (rp
->view
== view
) {
931 view
->fn
->deactivate(view
);
933 /* Move deactivated view to end of list. */
934 list_del_init(&view
->list
);
935 list_add_tail(&view
->list
, &rp
->view_list
);
936 /* Try to activate another view. */
937 if (test_bit(RAW3270_FLAGS_READY
, &rp
->flags
)) {
938 list_for_each_entry(view
, &rp
->view_list
, list
)
939 if (view
->fn
->activate(view
) == 0) {
945 spin_unlock_irqrestore(get_ccwdev_lock(rp
->cdev
), flags
);
949 * Add view to device with minor "minor".
952 raw3270_add_view(struct raw3270_view
*view
, struct raw3270_fn
*fn
, int minor
)
960 list_for_each_entry(rp
, &raw3270_devices
, list
) {
961 if (rp
->minor
!= minor
)
963 spin_lock_irqsave(get_ccwdev_lock(rp
->cdev
), flags
);
964 if (test_bit(RAW3270_FLAGS_READY
, &rp
->flags
)) {
965 atomic_set(&view
->ref_count
, 2);
968 view
->model
= rp
->model
;
969 view
->rows
= rp
->rows
;
970 view
->cols
= rp
->cols
;
971 view
->ascebc
= rp
->ascebc
;
972 spin_lock_init(&view
->lock
);
973 list_add_tail(&view
->list
, &rp
->view_list
);
976 spin_unlock_irqrestore(get_ccwdev_lock(rp
->cdev
), flags
);
984 * Find specific view of device with minor "minor".
986 struct raw3270_view
*
987 raw3270_find_view(struct raw3270_fn
*fn
, int minor
)
990 struct raw3270_view
*view
, *tmp
;
994 view
= ERR_PTR(-ENODEV
);
995 list_for_each_entry(rp
, &raw3270_devices
, list
) {
996 if (rp
->minor
!= minor
)
998 spin_lock_irqsave(get_ccwdev_lock(rp
->cdev
), flags
);
999 if (test_bit(RAW3270_FLAGS_READY
, &rp
->flags
)) {
1000 view
= ERR_PTR(-ENOENT
);
1001 list_for_each_entry(tmp
, &rp
->view_list
, list
) {
1002 if (tmp
->fn
== fn
) {
1003 raw3270_get_view(tmp
);
1009 spin_unlock_irqrestore(get_ccwdev_lock(rp
->cdev
), flags
);
1017 * Remove view from device and free view structure via call to view->fn->free.
1020 raw3270_del_view(struct raw3270_view
*view
)
1022 unsigned long flags
;
1024 struct raw3270_view
*nv
;
1027 spin_lock_irqsave(get_ccwdev_lock(rp
->cdev
), flags
);
1028 if (rp
->view
== view
) {
1029 view
->fn
->deactivate(view
);
1032 list_del_init(&view
->list
);
1033 if (!rp
->view
&& test_bit(RAW3270_FLAGS_READY
, &rp
->flags
)) {
1034 /* Try to activate another view. */
1035 list_for_each_entry(nv
, &rp
->view_list
, list
) {
1036 if (nv
->fn
->activate(view
) == 0) {
1042 spin_unlock_irqrestore(get_ccwdev_lock(rp
->cdev
), flags
);
1043 /* Wait for reference counter to drop to zero. */
1044 atomic_dec(&view
->ref_count
);
1045 wait_event(raw3270_wait_queue
, atomic_read(&view
->ref_count
) == 0);
1047 view
->fn
->free(view
);
1051 * Remove a 3270 device structure.
1054 raw3270_delete_device(struct raw3270
*rp
)
1056 struct ccw_device
*cdev
;
1058 /* Remove from device chain. */
1060 list_del_init(&rp
->list
);
1063 /* Disconnect from ccw_device. */
1066 cdev
->dev
.driver_data
= 0;
1069 /* Put ccw_device structure. */
1070 put_device(&cdev
->dev
);
1072 /* Now free raw3270 structure. */
1078 raw3270_probe (struct ccw_device
*cdev
)
1084 * Additional attributes for a 3270 device
1087 raw3270_model_show(struct device
*dev
, char *buf
)
1089 return snprintf(buf
, PAGE_SIZE
, "%i\n",
1090 ((struct raw3270
*) dev
->driver_data
)->model
);
1092 static DEVICE_ATTR(model
, 0444, raw3270_model_show
, 0);
1095 raw3270_rows_show(struct device
*dev
, char *buf
)
1097 return snprintf(buf
, PAGE_SIZE
, "%i\n",
1098 ((struct raw3270
*) dev
->driver_data
)->rows
);
1100 static DEVICE_ATTR(rows
, 0444, raw3270_rows_show
, 0);
1103 raw3270_columns_show(struct device
*dev
, char *buf
)
1105 return snprintf(buf
, PAGE_SIZE
, "%i\n",
1106 ((struct raw3270
*) dev
->driver_data
)->cols
);
1108 static DEVICE_ATTR(columns
, 0444, raw3270_columns_show
, 0);
1110 static struct attribute
* raw3270_attrs
[] = {
1111 &dev_attr_model
.attr
,
1112 &dev_attr_rows
.attr
,
1113 &dev_attr_columns
.attr
,
1117 static struct attribute_group raw3270_attr_group
= {
1118 .attrs
= raw3270_attrs
,
1122 raw3270_create_attributes(struct raw3270
*rp
)
1124 //FIXME: check return code
1125 sysfs_create_group(&rp
->cdev
->dev
.kobj
, &raw3270_attr_group
);
1129 * Notifier for device addition/removal
1131 struct raw3270_notifier
{
1132 struct list_head list
;
1133 void (*notifier
)(int, int);
1136 static struct list_head raw3270_notifier
= LIST_HEAD_INIT(raw3270_notifier
);
1138 int raw3270_register_notifier(void (*notifier
)(int, int))
1140 struct raw3270_notifier
*np
;
1143 np
= kmalloc(sizeof(struct raw3270_notifier
), GFP_KERNEL
);
1146 np
->notifier
= notifier
;
1148 list_add_tail(&np
->list
, &raw3270_notifier
);
1149 list_for_each_entry(rp
, &raw3270_devices
, list
) {
1150 get_device(&rp
->cdev
->dev
);
1151 notifier(rp
->minor
, 1);
1157 void raw3270_unregister_notifier(void (*notifier
)(int, int))
1159 struct raw3270_notifier
*np
;
1162 list_for_each_entry(np
, &raw3270_notifier
, list
)
1163 if (np
->notifier
== notifier
) {
1164 list_del(&np
->list
);
1172 * Set 3270 device online.
1175 raw3270_set_online (struct ccw_device
*cdev
)
1178 struct raw3270_notifier
*np
;
1181 rp
= raw3270_create_device(cdev
);
1184 rc
= raw3270_reset_device(rp
);
1187 rc
= raw3270_size_device(rp
);
1190 rc
= raw3270_reset_device(rp
);
1193 raw3270_create_attributes(rp
);
1194 set_bit(RAW3270_FLAGS_READY
, &rp
->flags
);
1196 list_for_each_entry(np
, &raw3270_notifier
, list
)
1197 np
->notifier(rp
->minor
, 1);
1203 * Remove 3270 device structure.
1206 raw3270_remove (struct ccw_device
*cdev
)
1208 unsigned long flags
;
1210 struct raw3270_view
*v
;
1211 struct raw3270_notifier
*np
;
1213 rp
= cdev
->dev
.driver_data
;
1214 clear_bit(RAW3270_FLAGS_READY
, &rp
->flags
);
1216 sysfs_remove_group(&cdev
->dev
.kobj
, &raw3270_attr_group
);
1218 /* Deactivate current view and remove all views. */
1219 spin_lock_irqsave(get_ccwdev_lock(cdev
), flags
);
1221 rp
->view
->fn
->deactivate(rp
->view
);
1224 while (!list_empty(&rp
->view_list
)) {
1225 v
= list_entry(rp
->view_list
.next
, struct raw3270_view
, list
);
1228 spin_unlock_irqrestore(get_ccwdev_lock(cdev
), flags
);
1229 raw3270_del_view(v
);
1230 spin_lock_irqsave(get_ccwdev_lock(cdev
), flags
);
1232 spin_unlock_irqrestore(get_ccwdev_lock(cdev
), flags
);
1235 list_for_each_entry(np
, &raw3270_notifier
, list
)
1236 np
->notifier(rp
->minor
, 0);
1239 /* Reset 3270 device. */
1240 raw3270_reset_device(rp
);
1241 /* And finally remove it. */
1242 raw3270_delete_device(rp
);
1246 * Set 3270 device offline.
1249 raw3270_set_offline (struct ccw_device
*cdev
)
1253 rp
= cdev
->dev
.driver_data
;
1254 if (test_bit(RAW3270_FLAGS_CONSOLE
, &rp
->flags
))
1256 raw3270_remove(cdev
);
1260 static struct ccw_device_id raw3270_id
[] = {
1261 { CCW_DEVICE(0x3270, 0) },
1262 { CCW_DEVICE(0x3271, 0) },
1263 { CCW_DEVICE(0x3272, 0) },
1264 { CCW_DEVICE(0x3273, 0) },
1265 { CCW_DEVICE(0x3274, 0) },
1266 { CCW_DEVICE(0x3275, 0) },
1267 { CCW_DEVICE(0x3276, 0) },
1268 { CCW_DEVICE(0x3277, 0) },
1269 { CCW_DEVICE(0x3278, 0) },
1270 { CCW_DEVICE(0x3279, 0) },
1271 { CCW_DEVICE(0x3174, 0) },
1272 { /* end of list */ },
1275 static struct ccw_driver raw3270_ccw_driver
= {
1277 .owner
= THIS_MODULE
,
1279 .probe
= &raw3270_probe
,
1280 .remove
= &raw3270_remove
,
1281 .set_online
= &raw3270_set_online
,
1282 .set_offline
= &raw3270_set_offline
,
1291 if (raw3270_registered
)
1293 raw3270_registered
= 1;
1294 rc
= ccw_driver_register(&raw3270_ccw_driver
);
1296 /* Create attributes for early (= console) device. */
1298 list_for_each_entry(rp
, &raw3270_devices
, list
) {
1299 get_device(&rp
->cdev
->dev
);
1300 raw3270_create_attributes(rp
);
1310 ccw_driver_unregister(&raw3270_ccw_driver
);
1313 MODULE_LICENSE("GPL");
1315 module_init(raw3270_init
);
1316 module_exit(raw3270_exit
);
1318 EXPORT_SYMBOL(raw3270_request_alloc
);
1319 EXPORT_SYMBOL(raw3270_request_free
);
1320 EXPORT_SYMBOL(raw3270_request_reset
);
1321 EXPORT_SYMBOL(raw3270_request_set_cmd
);
1322 EXPORT_SYMBOL(raw3270_request_add_data
);
1323 EXPORT_SYMBOL(raw3270_request_set_data
);
1324 EXPORT_SYMBOL(raw3270_request_set_idal
);
1325 EXPORT_SYMBOL(raw3270_buffer_address
);
1326 EXPORT_SYMBOL(raw3270_add_view
);
1327 EXPORT_SYMBOL(raw3270_del_view
);
1328 EXPORT_SYMBOL(raw3270_find_view
);
1329 EXPORT_SYMBOL(raw3270_activate_view
);
1330 EXPORT_SYMBOL(raw3270_deactivate_view
);
1331 EXPORT_SYMBOL(raw3270_start
);
1332 EXPORT_SYMBOL(raw3270_start_irq
);
1333 EXPORT_SYMBOL(raw3270_register_notifier
);
1334 EXPORT_SYMBOL(raw3270_unregister_notifier
);
1335 EXPORT_SYMBOL(raw3270_wait_queue
);