2 * drivers/s390/char/tty3270.c
3 * IBM/3270 Driver - tty 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/module.h>
13 #include <linux/types.h>
14 #include <linux/kdev_t.h>
15 #include <linux/tty.h>
16 #include <linux/vt_kern.h>
17 #include <linux/init.h>
18 #include <linux/console.h>
19 #include <linux/interrupt.h>
21 #include <linux/slab.h>
22 #include <linux/bootmem.h>
24 #include <asm/ccwdev.h>
26 #include <asm/ebcdic.h>
27 #include <asm/uaccess.h>
33 #define TTY3270_CHAR_BUF_SIZE 256
34 #define TTY3270_OUTPUT_BUFFER_SIZE 1024
35 #define TTY3270_STRING_PAGES 5
37 struct tty_driver
*tty3270_driver
;
38 static int tty3270_max_index
;
40 struct raw3270_fn tty3270_fn
;
43 unsigned char character
;
44 unsigned char highlight
;
45 unsigned char f_color
;
49 struct tty3270_cell
*cells
;
56 * The main tty view data structure.
58 * 1) describe line orientation & lines list concept against screen
59 * 2) describe conversion of screen to lines
60 * 3) describe line format.
63 struct raw3270_view view
;
64 struct tty_struct
*tty
; /* Pointer to tty structure */
65 void **freemem_pages
; /* Array of pages used for freemem. */
66 struct list_head freemem
; /* List of free memory for strings. */
69 struct list_head lines
; /* List of lines. */
70 struct list_head update
; /* List of lines to update. */
71 unsigned char wcc
; /* Write control character. */
72 int nr_lines
; /* # lines in list. */
73 int nr_up
; /* # lines up in history. */
74 unsigned long update_flags
; /* Update indication bits. */
75 struct string
*status
; /* Lower right of display. */
76 struct raw3270_request
*write
; /* Single write request. */
77 struct timer_list timer
; /* Output delay timer. */
79 /* Current tty screen. */
80 unsigned int cx
, cy
; /* Current output position. */
81 unsigned int highlight
; /* Blink/reverse/underscore */
82 unsigned int f_color
; /* Foreground color */
83 struct tty3270_line
*screen
;
86 struct string
*prompt
; /* Output string for input area. */
87 struct string
*input
; /* Input string for read request. */
88 struct raw3270_request
*read
; /* Single read request. */
89 struct raw3270_request
*kreset
; /* Single keyboard reset request. */
90 unsigned char inattr
; /* Visible/invisible input. */
91 int throttle
, attn
; /* tty throttle/unthrottle. */
92 struct tasklet_struct readlet
; /* Tasklet to issue read request. */
93 struct kbd_data
*kbd
; /* key_maps stuff. */
95 /* Escape sequence parsing. */
96 int esc_state
, esc_ques
, esc_npar
;
97 int esc_par
[ESCAPE_NPAR
];
98 unsigned int saved_cx
, saved_cy
;
99 unsigned int saved_highlight
, saved_f_color
;
101 /* Command recalling. */
102 struct list_head rcl_lines
; /* List of recallable lines. */
103 struct list_head
*rcl_walk
; /* Point in rcl_lines list. */
104 int rcl_nr
, rcl_max
; /* Number/max number of rcl_lines. */
106 /* Character array for put_char/flush_chars. */
107 unsigned int char_count
;
108 char char_buf
[TTY3270_CHAR_BUF_SIZE
];
111 /* tty3270->update_flags. See tty3270_update for details. */
112 #define TTY_UPDATE_ERASE 1 /* Use EWRITEA instead of WRITE. */
113 #define TTY_UPDATE_LIST 2 /* Update lines in tty3270->update. */
114 #define TTY_UPDATE_INPUT 4 /* Update input line. */
115 #define TTY_UPDATE_STATUS 8 /* Update status line. */
116 #define TTY_UPDATE_ALL 15
118 static void tty3270_update(struct tty3270
*);
121 * Setup timeout for a device. On timeout trigger an update.
124 tty3270_set_timer(struct tty3270
*tp
, int expires
)
127 if (timer_pending(&tp
->timer
) && del_timer(&tp
->timer
))
128 raw3270_put_view(&tp
->view
);
131 if (timer_pending(&tp
->timer
) &&
132 mod_timer(&tp
->timer
, jiffies
+ expires
))
134 raw3270_get_view(&tp
->view
);
135 tp
->timer
.function
= (void (*)(unsigned long)) tty3270_update
;
136 tp
->timer
.data
= (unsigned long) tp
;
137 tp
->timer
.expires
= jiffies
+ expires
;
138 add_timer(&tp
->timer
);
142 * The input line are the two last lines of the screen.
145 tty3270_update_prompt(struct tty3270
*tp
, char *input
, int count
)
152 line
->string
[5] = TF_INMDT
;
154 line
->string
[5] = tp
->inattr
;
155 if (count
> tp
->view
.cols
* 2 - 11)
156 count
= tp
->view
.cols
* 2 - 11;
157 memcpy(line
->string
+ 6, input
, count
);
158 line
->string
[6 + count
] = TO_IC
;
159 /* Clear to end of input line. */
160 if (count
< tp
->view
.cols
* 2 - 11) {
161 line
->string
[7 + count
] = TO_RA
;
162 line
->string
[10 + count
] = 0;
163 off
= tp
->view
.cols
* tp
->view
.rows
- 9;
164 raw3270_buffer_address(tp
->view
.dev
, line
->string
+count
+8, off
);
165 line
->len
= 11 + count
;
167 line
->len
= 7 + count
;
168 tp
->update_flags
|= TTY_UPDATE_INPUT
;
172 tty3270_create_prompt(struct tty3270
*tp
)
174 static const unsigned char blueprint
[] =
175 { TO_SBA
, 0, 0, 0x6e, TO_SF
, TF_INPUT
,
176 /* empty input string */
177 TO_IC
, TO_RA
, 0, 0, 0 };
181 line
= alloc_string(&tp
->freemem
,
182 sizeof(blueprint
) + tp
->view
.cols
* 2 - 9);
184 tp
->inattr
= TF_INPUT
;
185 /* Copy blueprint to status line */
186 memcpy(line
->string
, blueprint
, sizeof(blueprint
));
187 line
->len
= sizeof(blueprint
);
188 /* Set output offsets. */
189 offset
= tp
->view
.cols
* (tp
->view
.rows
- 2);
190 raw3270_buffer_address(tp
->view
.dev
, line
->string
+ 1, offset
);
191 offset
= tp
->view
.cols
* tp
->view
.rows
- 9;
192 raw3270_buffer_address(tp
->view
.dev
, line
->string
+ 8, offset
);
194 /* Allocate input string for reading. */
195 tp
->input
= alloc_string(&tp
->freemem
, tp
->view
.cols
* 2 - 9 + 6);
199 * The status line is the last line of the screen. It shows the string
200 * "Running"/"Holding" in the lower right corner of the screen.
203 tty3270_update_status(struct tty3270
* tp
)
207 str
= (tp
->nr_up
!= 0) ? "History" : "Running";
208 memcpy(tp
->status
->string
+ 8, str
, 7);
209 codepage_convert(tp
->view
.ascebc
, tp
->status
->string
+ 8, 7);
210 tp
->update_flags
|= TTY_UPDATE_STATUS
;
214 tty3270_create_status(struct tty3270
* tp
)
216 static const unsigned char blueprint
[] =
217 { TO_SBA
, 0, 0, TO_SF
, TF_LOG
, TO_SA
, TAT_COLOR
, TAC_GREEN
,
218 0, 0, 0, 0, 0, 0, 0, TO_SF
, TF_LOG
, TO_SA
, TAT_COLOR
,
223 line
= alloc_string(&tp
->freemem
,sizeof(blueprint
));
225 /* Copy blueprint to status line */
226 memcpy(line
->string
, blueprint
, sizeof(blueprint
));
227 /* Set address to start of status string (= last 9 characters). */
228 offset
= tp
->view
.cols
* tp
->view
.rows
- 9;
229 raw3270_buffer_address(tp
->view
.dev
, line
->string
+ 1, offset
);
233 * Set output offsets to 3270 datastream fragment of a tty string.
234 * (TO_SBA offset at the start and TO_RA offset at the end of the string)
237 tty3270_update_string(struct tty3270
*tp
, struct string
*line
, int nr
)
241 raw3270_buffer_address(tp
->view
.dev
, line
->string
+ 1,
243 cp
= line
->string
+ line
->len
- 4;
245 raw3270_buffer_address(tp
->view
.dev
, cp
+ 1,
246 tp
->view
.cols
* (nr
+ 1));
250 * Rebuild update list to print all lines.
253 tty3270_rebuild_update(struct tty3270
*tp
)
255 struct string
*s
, *n
;
259 * Throw away update list and create a new one,
260 * containing all lines that will fit on the screen.
262 list_for_each_entry_safe(s
, n
, &tp
->update
, update
)
263 list_del_init(&s
->update
);
264 line
= tp
->view
.rows
- 3;
266 list_for_each_entry_reverse(s
, &tp
->lines
, list
) {
271 tty3270_update_string(tp
, s
, line
);
272 list_add(&s
->update
, &tp
->update
);
276 tp
->update_flags
|= TTY_UPDATE_LIST
;
280 * Alloc string for size bytes. If there is not enough room in
281 * freemem, free strings until there is room.
283 static struct string
*
284 tty3270_alloc_string(struct tty3270
*tp
, size_t size
)
286 struct string
*s
, *n
;
288 s
= alloc_string(&tp
->freemem
, size
);
291 list_for_each_entry_safe(s
, n
, &tp
->lines
, list
) {
292 BUG_ON(tp
->nr_lines
<= tp
->view
.rows
- 2);
294 if (!list_empty(&s
->update
))
295 list_del(&s
->update
);
297 if (free_string(&tp
->freemem
, s
) >= size
)
300 s
= alloc_string(&tp
->freemem
, size
);
302 if (tp
->nr_up
!= 0 &&
303 tp
->nr_up
+ tp
->view
.rows
- 2 >= tp
->nr_lines
) {
304 tp
->nr_up
= tp
->nr_lines
- tp
->view
.rows
+ 2;
305 tty3270_rebuild_update(tp
);
306 tty3270_update_status(tp
);
312 * Add an empty line to the list.
315 tty3270_blank_line(struct tty3270
*tp
)
317 static const unsigned char blueprint
[] =
318 { TO_SBA
, 0, 0, TO_SA
, TAT_EXTHI
, TAX_RESET
,
319 TO_SA
, TAT_COLOR
, TAC_RESET
, TO_RA
, 0, 0, 0 };
322 s
= tty3270_alloc_string(tp
, sizeof(blueprint
));
323 memcpy(s
->string
, blueprint
, sizeof(blueprint
));
324 s
->len
= sizeof(blueprint
);
325 list_add_tail(&s
->list
, &tp
->lines
);
332 * Write request completion callback.
335 tty3270_write_callback(struct raw3270_request
*rq
, void *data
)
339 tp
= (struct tty3270
*) rq
->view
;
341 /* Write wasn't successfull. Refresh all. */
342 tty3270_rebuild_update(tp
);
343 tp
->update_flags
= TTY_UPDATE_ALL
;
344 tty3270_set_timer(tp
, 1);
346 raw3270_request_reset(rq
);
347 xchg(&tp
->write
, rq
);
351 * Update 3270 display.
354 tty3270_update(struct tty3270
*tp
)
356 static char invalid_sba
[2] = { 0xff, 0xff };
357 struct raw3270_request
*wrq
;
358 unsigned long updated
;
359 struct string
*s
, *n
;
363 wrq
= xchg(&tp
->write
, 0);
365 tty3270_set_timer(tp
, 1);
369 spin_lock(&tp
->view
.lock
);
371 if (tp
->update_flags
& TTY_UPDATE_ERASE
) {
372 /* Use erase write alternate to erase display. */
373 raw3270_request_set_cmd(wrq
, TC_EWRITEA
);
374 updated
|= TTY_UPDATE_ERASE
;
376 raw3270_request_set_cmd(wrq
, TC_WRITE
);
378 raw3270_request_add_data(wrq
, &tp
->wcc
, 1);
382 * Update status line.
384 if (tp
->update_flags
& TTY_UPDATE_STATUS
)
385 if (raw3270_request_add_data(wrq
, tp
->status
->string
,
386 tp
->status
->len
) == 0)
387 updated
|= TTY_UPDATE_STATUS
;
392 if (tp
->update_flags
& TTY_UPDATE_INPUT
)
393 if (raw3270_request_add_data(wrq
, tp
->prompt
->string
,
394 tp
->prompt
->len
) == 0)
395 updated
|= TTY_UPDATE_INPUT
;
399 if (tp
->update_flags
& TTY_UPDATE_LIST
) {
400 /* Write strings in the update list to the screen. */
401 list_for_each_entry_safe(s
, n
, &tp
->update
, update
) {
405 * Skip TO_SBA at the start of the string if the
406 * last output position matches the start address
409 if (s
->string
[1] == sba
[0] && s
->string
[2] == sba
[1])
411 if (raw3270_request_add_data(wrq
, str
, len
) != 0)
413 list_del_init(&s
->update
);
414 sba
= s
->string
+ s
->len
- 3;
416 if (list_empty(&tp
->update
))
417 updated
|= TTY_UPDATE_LIST
;
419 wrq
->callback
= tty3270_write_callback
;
420 rc
= raw3270_start(&tp
->view
, wrq
);
422 tp
->update_flags
&= ~updated
;
423 if (tp
->update_flags
)
424 tty3270_set_timer(tp
, 1);
426 raw3270_request_reset(wrq
);
427 xchg(&tp
->write
, wrq
);
429 spin_unlock(&tp
->view
.lock
);
430 raw3270_put_view(&tp
->view
);
437 tty3270_rcl_add(struct tty3270
*tp
, char *input
, int len
)
444 if (tp
->rcl_nr
>= tp
->rcl_max
) {
445 s
= list_entry(tp
->rcl_lines
.next
, struct string
, list
);
447 free_string(&tp
->freemem
, s
);
450 s
= tty3270_alloc_string(tp
, len
);
451 memcpy(s
->string
, input
, len
);
452 list_add_tail(&s
->list
, &tp
->rcl_lines
);
457 tty3270_rcl_backward(struct kbd_data
*kbd
)
462 tp
= kbd
->tty
->driver_data
;
463 spin_lock_bh(&tp
->view
.lock
);
464 if (tp
->inattr
== TF_INPUT
) {
465 if (tp
->rcl_walk
&& tp
->rcl_walk
->prev
!= &tp
->rcl_lines
)
466 tp
->rcl_walk
= tp
->rcl_walk
->prev
;
467 else if (!list_empty(&tp
->rcl_lines
))
468 tp
->rcl_walk
= tp
->rcl_lines
.prev
;
470 list_entry(tp
->rcl_walk
, struct string
, list
) : 0;
472 s
= list_entry(tp
->rcl_walk
, struct string
, list
);
473 tty3270_update_prompt(tp
, s
->string
, s
->len
);
475 tty3270_update_prompt(tp
, 0, 0);
476 tty3270_set_timer(tp
, 1);
478 spin_unlock_bh(&tp
->view
.lock
);
482 * Deactivate tty view.
485 tty3270_exit_tty(struct kbd_data
*kbd
)
489 tp
= kbd
->tty
->driver_data
;
490 raw3270_deactivate_view(&tp
->view
);
494 * Scroll forward in history.
497 tty3270_scroll_forward(struct kbd_data
*kbd
)
502 tp
= kbd
->tty
->driver_data
;
503 spin_lock_bh(&tp
->view
.lock
);
504 nr_up
= tp
->nr_up
- tp
->view
.rows
+ 2;
507 if (nr_up
!= tp
->nr_up
) {
509 tty3270_rebuild_update(tp
);
510 tty3270_update_status(tp
);
511 tty3270_set_timer(tp
, 1);
513 spin_unlock_bh(&tp
->view
.lock
);
517 * Scroll backward in history.
520 tty3270_scroll_backward(struct kbd_data
*kbd
)
525 tp
= kbd
->tty
->driver_data
;
526 spin_lock_bh(&tp
->view
.lock
);
527 nr_up
= tp
->nr_up
+ tp
->view
.rows
- 2;
528 if (nr_up
+ tp
->view
.rows
- 2 > tp
->nr_lines
)
529 nr_up
= tp
->nr_lines
- tp
->view
.rows
+ 2;
530 if (nr_up
!= tp
->nr_up
) {
532 tty3270_rebuild_update(tp
);
533 tty3270_update_status(tp
);
534 tty3270_set_timer(tp
, 1);
536 spin_unlock_bh(&tp
->view
.lock
);
540 * Pass input line to tty.
543 tty3270_read_tasklet(struct raw3270_request
*rrq
)
545 static char kreset_data
= TW_KR
;
550 tp
= (struct tty3270
*) rrq
->view
;
551 spin_lock_bh(&tp
->view
.lock
);
553 * Two AID keys are special: For 0x7d (enter) the input line
554 * has to be emitted to the tty and for 0x6d the screen
555 * needs to be redrawn.
559 if (tp
->input
->string
[0] == 0x7d) {
560 /* Enter: write input to tty. */
561 input
= tp
->input
->string
+ 6;
562 len
= tp
->input
->len
- 6 - rrq
->rescnt
;
563 if (tp
->inattr
!= TF_INPUTN
)
564 tty3270_rcl_add(tp
, input
, len
);
567 tty3270_rebuild_update(tp
);
568 tty3270_update_status(tp
);
570 /* Clear input area. */
571 tty3270_update_prompt(tp
, 0, 0);
572 tty3270_set_timer(tp
, 1);
573 } else if (tp
->input
->string
[0] == 0x6d) {
574 /* Display has been cleared. Redraw. */
575 tty3270_rebuild_update(tp
);
576 tp
->update_flags
= TTY_UPDATE_ALL
;
577 tty3270_set_timer(tp
, 1);
579 spin_unlock_bh(&tp
->view
.lock
);
581 /* Start keyboard reset command. */
582 raw3270_request_reset(tp
->kreset
);
583 raw3270_request_set_cmd(tp
->kreset
, TC_WRITE
);
584 raw3270_request_add_data(tp
->kreset
, &kreset_data
, 1);
585 raw3270_start(&tp
->view
, tp
->kreset
);
587 /* Emit input string. */
590 kbd_keycode(tp
->kbd
, *input
++);
591 /* Emit keycode for AID byte. */
592 kbd_keycode(tp
->kbd
, 256 + tp
->input
->string
[0]);
595 raw3270_request_reset(rrq
);
596 xchg(&tp
->read
, rrq
);
597 raw3270_put_view(&tp
->view
);
601 * Read request completion callback.
604 tty3270_read_callback(struct raw3270_request
*rq
, void *data
)
606 raw3270_get_view(rq
->view
);
607 /* Schedule tasklet to pass input to tty. */
608 tasklet_schedule(&((struct tty3270
*) rq
->view
)->readlet
);
612 * Issue a read request. Call with device lock.
615 tty3270_issue_read(struct tty3270
*tp
, int lock
)
617 struct raw3270_request
*rrq
;
620 rrq
= xchg(&tp
->read
, 0);
622 /* Read already scheduled. */
624 rrq
->callback
= tty3270_read_callback
;
625 rrq
->callback_data
= tp
;
626 raw3270_request_set_cmd(rrq
, TC_READMOD
);
627 raw3270_request_set_data(rrq
, tp
->input
->string
, tp
->input
->len
);
628 /* Issue the read modified request. */
630 rc
= raw3270_start(&tp
->view
, rrq
);
632 rc
= raw3270_start_irq(&tp
->view
, rrq
);
634 raw3270_request_reset(rrq
);
635 xchg(&tp
->read
, rrq
);
640 * Switch to the tty view.
643 tty3270_activate(struct raw3270_view
*view
)
648 tp
= (struct tty3270
*) view
;
649 spin_lock_irqsave(&tp
->view
.lock
, flags
);
651 tty3270_rebuild_update(tp
);
652 tty3270_update_status(tp
);
653 tp
->update_flags
= TTY_UPDATE_ALL
;
654 tty3270_set_timer(tp
, 1);
655 spin_unlock_irqrestore(&tp
->view
.lock
, flags
);
660 tty3270_deactivate(struct raw3270_view
*view
)
665 tty3270_irq(struct tty3270
*tp
, struct raw3270_request
*rq
, struct irb
*irb
)
667 /* Handle ATTN. Schedule tasklet to read aid. */
668 if (irb
->scsw
.dstat
& DEV_STAT_ATTENTION
) {
670 tty3270_issue_read(tp
, 0);
676 if (irb
->scsw
.dstat
& DEV_STAT_UNIT_CHECK
)
679 /* Normal end. Copy residual count. */
680 rq
->rescnt
= irb
->scsw
.count
;
682 return RAW3270_IO_DONE
;
686 * Allocate tty3270 structure.
688 static struct tty3270
*
689 tty3270_alloc_view(void)
694 tp
= kzalloc(sizeof(struct tty3270
), GFP_KERNEL
);
698 kmalloc(sizeof(void *) * TTY3270_STRING_PAGES
, GFP_KERNEL
);
699 if (!tp
->freemem_pages
)
701 INIT_LIST_HEAD(&tp
->freemem
);
702 init_timer(&tp
->timer
);
703 for (pages
= 0; pages
< TTY3270_STRING_PAGES
; pages
++) {
704 tp
->freemem_pages
[pages
] = (void *)
705 __get_free_pages(GFP_KERNEL
|GFP_DMA
, 0);
706 if (!tp
->freemem_pages
[pages
])
708 add_string_memory(&tp
->freemem
,
709 tp
->freemem_pages
[pages
], PAGE_SIZE
);
711 tp
->write
= raw3270_request_alloc(TTY3270_OUTPUT_BUFFER_SIZE
);
712 if (IS_ERR(tp
->write
))
714 tp
->read
= raw3270_request_alloc(0);
715 if (IS_ERR(tp
->read
))
717 tp
->kreset
= raw3270_request_alloc(1);
718 if (IS_ERR(tp
->kreset
))
720 tp
->kbd
= kbd_alloc();
726 raw3270_request_free(tp
->kreset
);
728 raw3270_request_free(tp
->read
);
730 raw3270_request_free(tp
->write
);
733 free_pages((unsigned long) tp
->freemem_pages
[pages
], 0);
734 kfree(tp
->freemem_pages
);
738 return ERR_PTR(-ENOMEM
);
742 * Free tty3270 structure.
745 tty3270_free_view(struct tty3270
*tp
)
750 raw3270_request_free(tp
->kreset
);
751 raw3270_request_free(tp
->read
);
752 raw3270_request_free(tp
->write
);
753 for (pages
= 0; pages
< TTY3270_STRING_PAGES
; pages
++)
754 free_pages((unsigned long) tp
->freemem_pages
[pages
], 0);
755 kfree(tp
->freemem_pages
);
760 * Allocate tty3270 screen.
763 tty3270_alloc_screen(struct tty3270
*tp
)
768 size
= sizeof(struct tty3270_line
) * (tp
->view
.rows
- 2);
769 tp
->screen
= kzalloc(size
, GFP_KERNEL
);
772 for (lines
= 0; lines
< tp
->view
.rows
- 2; lines
++) {
773 size
= sizeof(struct tty3270_cell
) * tp
->view
.cols
;
774 tp
->screen
[lines
].cells
= kzalloc(size
, GFP_KERNEL
);
775 if (!tp
->screen
[lines
].cells
)
781 kfree(tp
->screen
[lines
].cells
);
788 * Free tty3270 screen.
791 tty3270_free_screen(struct tty3270
*tp
)
795 for (lines
= 0; lines
< tp
->view
.rows
- 2; lines
++)
796 kfree(tp
->screen
[lines
].cells
);
801 * Unlink tty3270 data structure from tty.
804 tty3270_release(struct raw3270_view
*view
)
807 struct tty_struct
*tty
;
809 tp
= (struct tty3270
*) view
;
812 tty
->driver_data
= 0;
813 tp
->tty
= tp
->kbd
->tty
= 0;
815 raw3270_put_view(&tp
->view
);
820 * Free tty3270 data structure
823 tty3270_free(struct raw3270_view
*view
)
825 tty3270_free_screen((struct tty3270
*) view
);
826 tty3270_free_view((struct tty3270
*) view
);
830 * Delayed freeing of tty3270 views.
833 tty3270_del_views(void)
838 for (i
= 0; i
< tty3270_max_index
; i
++) {
839 tp
= (struct tty3270
*)
840 raw3270_find_view(&tty3270_fn
, i
+ RAW3270_FIRSTMINOR
);
842 raw3270_del_view(&tp
->view
);
846 struct raw3270_fn tty3270_fn
= {
847 .activate
= tty3270_activate
,
848 .deactivate
= tty3270_deactivate
,
849 .intv
= (void *) tty3270_irq
,
850 .release
= tty3270_release
,
855 * This routine is called whenever a 3270 tty is opened.
858 tty3270_open(struct tty_struct
*tty
, struct file
* filp
)
865 /* Check if the tty3270 is already there. */
866 tp
= (struct tty3270
*)
867 raw3270_find_view(&tty3270_fn
,
868 tty
->index
+ RAW3270_FIRSTMINOR
);
870 tty
->driver_data
= tp
;
871 tty
->winsize
.ws_row
= tp
->view
.rows
- 2;
872 tty
->winsize
.ws_col
= tp
->view
.cols
;
873 tty
->low_latency
= 0;
876 tp
->inattr
= TF_INPUT
;
879 if (tty3270_max_index
< tty
->index
+ 1)
880 tty3270_max_index
= tty
->index
+ 1;
882 /* Quick exit if there is no device for tty->index. */
883 if (PTR_ERR(tp
) == -ENODEV
)
886 /* Allocate tty3270 structure on first open. */
887 tp
= tty3270_alloc_view();
891 INIT_LIST_HEAD(&tp
->lines
);
892 INIT_LIST_HEAD(&tp
->update
);
893 INIT_LIST_HEAD(&tp
->rcl_lines
);
895 init_timer(&tp
->timer
);
896 tasklet_init(&tp
->readlet
,
897 (void (*)(unsigned long)) tty3270_read_tasklet
,
898 (unsigned long) tp
->read
);
900 rc
= raw3270_add_view(&tp
->view
, &tty3270_fn
,
901 tty
->index
+ RAW3270_FIRSTMINOR
);
903 tty3270_free_view(tp
);
907 rc
= tty3270_alloc_screen(tp
);
909 raw3270_put_view(&tp
->view
);
910 raw3270_del_view(&tp
->view
);
915 tty
->low_latency
= 0;
916 tty
->driver_data
= tp
;
917 tty
->winsize
.ws_row
= tp
->view
.rows
- 2;
918 tty
->winsize
.ws_col
= tp
->view
.cols
;
920 tty3270_create_prompt(tp
);
921 tty3270_create_status(tp
);
922 tty3270_update_status(tp
);
924 /* Create blank line for every line in the tty output area. */
925 for (i
= 0; i
< tp
->view
.rows
- 2; i
++)
926 tty3270_blank_line(tp
);
929 tp
->kbd
->fn_handler
[KVAL(K_INCRCONSOLE
)] = tty3270_exit_tty
;
930 tp
->kbd
->fn_handler
[KVAL(K_SCROLLBACK
)] = tty3270_scroll_backward
;
931 tp
->kbd
->fn_handler
[KVAL(K_SCROLLFORW
)] = tty3270_scroll_forward
;
932 tp
->kbd
->fn_handler
[KVAL(K_CONS
)] = tty3270_rcl_backward
;
933 kbd_ascebc(tp
->kbd
, tp
->view
.ascebc
);
935 raw3270_activate_view(&tp
->view
);
940 * This routine is called when the 3270 tty is closed. We wait
941 * for the remaining request to be completed. Then we clean up.
944 tty3270_close(struct tty_struct
*tty
, struct file
* filp
)
950 tp
= (struct tty3270
*) tty
->driver_data
;
952 tty
->driver_data
= 0;
953 tp
->tty
= tp
->kbd
->tty
= 0;
954 raw3270_put_view(&tp
->view
);
959 * We always have room.
962 tty3270_write_room(struct tty_struct
*tty
)
968 * Insert character into the screen at the current position with the
969 * current color and highlight. This function does NOT do cursor movement.
972 tty3270_put_character(struct tty3270
*tp
, char ch
)
974 struct tty3270_line
*line
;
975 struct tty3270_cell
*cell
;
977 line
= tp
->screen
+ tp
->cy
;
978 if (line
->len
<= tp
->cx
) {
979 while (line
->len
< tp
->cx
) {
980 cell
= line
->cells
+ line
->len
;
981 cell
->character
= tp
->view
.ascebc
[' '];
982 cell
->highlight
= tp
->highlight
;
983 cell
->f_color
= tp
->f_color
;
988 cell
= line
->cells
+ tp
->cx
;
989 cell
->character
= tp
->view
.ascebc
[(unsigned int) ch
];
990 cell
->highlight
= tp
->highlight
;
991 cell
->f_color
= tp
->f_color
;
995 * Convert a tty3270_line to a 3270 data fragment usable for output.
998 tty3270_convert_line(struct tty3270
*tp
, int line_nr
)
1000 struct tty3270_line
*line
;
1001 struct tty3270_cell
*cell
;
1002 struct string
*s
, *n
;
1003 unsigned char highlight
;
1004 unsigned char f_color
;
1008 /* Determine how long the fragment will be. */
1009 flen
= 3; /* Prefix (TO_SBA). */
1010 line
= tp
->screen
+ line_nr
;
1012 highlight
= TAX_RESET
;
1013 f_color
= TAC_RESET
;
1014 for (i
= 0, cell
= line
->cells
; i
< line
->len
; i
++, cell
++) {
1015 if (cell
->highlight
!= highlight
) {
1016 flen
+= 3; /* TO_SA to switch highlight. */
1017 highlight
= cell
->highlight
;
1019 if (cell
->f_color
!= f_color
) {
1020 flen
+= 3; /* TO_SA to switch color. */
1021 f_color
= cell
->f_color
;
1024 if (highlight
!= TAX_RESET
)
1025 flen
+= 3; /* TO_SA to reset hightlight. */
1026 if (f_color
!= TAC_RESET
)
1027 flen
+= 3; /* TO_SA to reset color. */
1028 if (line
->len
< tp
->view
.cols
)
1029 flen
+= 4; /* Postfix (TO_RA). */
1031 /* Find the line in the list. */
1032 i
= tp
->view
.rows
- 2 - line_nr
;
1033 list_for_each_entry_reverse(s
, &tp
->lines
, list
)
1037 * Check if the line needs to get reallocated.
1039 if (s
->len
!= flen
) {
1040 /* Reallocate string. */
1041 n
= tty3270_alloc_string(tp
, flen
);
1042 list_add(&n
->list
, &s
->list
);
1043 list_del_init(&s
->list
);
1044 if (!list_empty(&s
->update
))
1045 list_del_init(&s
->update
);
1046 free_string(&tp
->freemem
, s
);
1050 /* Write 3270 data fragment. */
1056 highlight
= TAX_RESET
;
1057 f_color
= TAC_RESET
;
1058 for (i
= 0, cell
= line
->cells
; i
< line
->len
; i
++, cell
++) {
1059 if (cell
->highlight
!= highlight
) {
1062 *cp
++ = cell
->highlight
;
1063 highlight
= cell
->highlight
;
1065 if (cell
->f_color
!= f_color
) {
1068 *cp
++ = cell
->f_color
;
1069 f_color
= cell
->f_color
;
1071 *cp
++ = cell
->character
;
1073 if (highlight
!= TAX_RESET
) {
1078 if (f_color
!= TAC_RESET
) {
1083 if (line
->len
< tp
->view
.cols
) {
1090 if (tp
->nr_up
+ line_nr
< tp
->view
.rows
- 2) {
1091 /* Line is currently visible on screen. */
1092 tty3270_update_string(tp
, s
, line_nr
);
1093 /* Add line to update list. */
1094 if (list_empty(&s
->update
)) {
1095 list_add_tail(&s
->update
, &tp
->update
);
1096 tp
->update_flags
|= TTY_UPDATE_LIST
;
1102 * Do carriage return.
1105 tty3270_cr(struct tty3270
*tp
)
1114 tty3270_lf(struct tty3270
*tp
)
1116 struct tty3270_line temp
;
1119 tty3270_convert_line(tp
, tp
->cy
);
1120 if (tp
->cy
< tp
->view
.rows
- 3) {
1124 /* Last line just filled up. Add new, blank line. */
1125 tty3270_blank_line(tp
);
1126 temp
= tp
->screen
[0];
1128 for (i
= 0; i
< tp
->view
.rows
- 3; i
++)
1129 tp
->screen
[i
] = tp
->screen
[i
+1];
1130 tp
->screen
[tp
->view
.rows
- 3] = temp
;
1131 tty3270_rebuild_update(tp
);
1135 tty3270_ri(struct tty3270
*tp
)
1138 tty3270_convert_line(tp
, tp
->cy
);
1144 * Insert characters at current position.
1147 tty3270_insert_characters(struct tty3270
*tp
, int n
)
1149 struct tty3270_line
*line
;
1152 line
= tp
->screen
+ tp
->cy
;
1153 while (line
->len
< tp
->cx
) {
1154 line
->cells
[line
->len
].character
= tp
->view
.ascebc
[' '];
1155 line
->cells
[line
->len
].highlight
= TAX_RESET
;
1156 line
->cells
[line
->len
].f_color
= TAC_RESET
;
1159 if (n
> tp
->view
.cols
- tp
->cx
)
1160 n
= tp
->view
.cols
- tp
->cx
;
1161 k
= min_t(int, line
->len
- tp
->cx
, tp
->view
.cols
- tp
->cx
- n
);
1163 line
->cells
[tp
->cx
+ n
+ k
] = line
->cells
[tp
->cx
+ k
];
1165 if (line
->len
> tp
->view
.cols
)
1166 line
->len
= tp
->view
.cols
;
1168 line
->cells
[tp
->cx
+ n
].character
= tp
->view
.ascebc
[' '];
1169 line
->cells
[tp
->cx
+ n
].highlight
= tp
->highlight
;
1170 line
->cells
[tp
->cx
+ n
].f_color
= tp
->f_color
;
1175 * Delete characters at current position.
1178 tty3270_delete_characters(struct tty3270
*tp
, int n
)
1180 struct tty3270_line
*line
;
1183 line
= tp
->screen
+ tp
->cy
;
1184 if (line
->len
<= tp
->cx
)
1186 if (line
->len
- tp
->cx
<= n
) {
1190 for (i
= tp
->cx
; i
+ n
< line
->len
; i
++)
1191 line
->cells
[i
] = line
->cells
[i
+ n
];
1196 * Erase characters at current position.
1199 tty3270_erase_characters(struct tty3270
*tp
, int n
)
1201 struct tty3270_line
*line
;
1202 struct tty3270_cell
*cell
;
1204 line
= tp
->screen
+ tp
->cy
;
1205 while (line
->len
> tp
->cx
&& n
-- > 0) {
1206 cell
= line
->cells
+ tp
->cx
++;
1207 cell
->character
= ' ';
1208 cell
->highlight
= TAX_RESET
;
1209 cell
->f_color
= TAC_RESET
;
1212 tp
->cx
= min_t(int, tp
->cx
, tp
->view
.cols
- 1);
1216 * Erase line, 3 different cases:
1217 * Esc [ 0 K Erase from current position to end of line inclusive
1218 * Esc [ 1 K Erase from beginning of line to current position inclusive
1219 * Esc [ 2 K Erase entire line (without moving cursor)
1222 tty3270_erase_line(struct tty3270
*tp
, int mode
)
1224 struct tty3270_line
*line
;
1225 struct tty3270_cell
*cell
;
1228 line
= tp
->screen
+ tp
->cy
;
1231 else if (mode
== 1) {
1232 for (i
= 0; i
< tp
->cx
; i
++) {
1233 cell
= line
->cells
+ i
;
1234 cell
->character
= ' ';
1235 cell
->highlight
= TAX_RESET
;
1236 cell
->f_color
= TAC_RESET
;
1238 if (line
->len
<= tp
->cx
)
1239 line
->len
= tp
->cx
+ 1;
1240 } else if (mode
== 2)
1242 tty3270_convert_line(tp
, tp
->cy
);
1246 * Erase display, 3 different cases:
1247 * Esc [ 0 J Erase from current position to bottom of screen inclusive
1248 * Esc [ 1 J Erase from top of screen to current position inclusive
1249 * Esc [ 2 J Erase entire screen (without moving the cursor)
1252 tty3270_erase_display(struct tty3270
*tp
, int mode
)
1257 tty3270_erase_line(tp
, 0);
1258 for (i
= tp
->cy
+ 1; i
< tp
->view
.rows
- 2; i
++) {
1259 tp
->screen
[i
].len
= 0;
1260 tty3270_convert_line(tp
, i
);
1262 } else if (mode
== 1) {
1263 for (i
= 0; i
< tp
->cy
; i
++) {
1264 tp
->screen
[i
].len
= 0;
1265 tty3270_convert_line(tp
, i
);
1267 tty3270_erase_line(tp
, 1);
1268 } else if (mode
== 2) {
1269 for (i
= 0; i
< tp
->view
.rows
- 2; i
++) {
1270 tp
->screen
[i
].len
= 0;
1271 tty3270_convert_line(tp
, i
);
1274 tty3270_rebuild_update(tp
);
1278 * Set attributes found in an escape sequence.
1279 * Esc [ <attr> ; <attr> ; ... m
1282 tty3270_set_attributes(struct tty3270
*tp
)
1284 static unsigned char f_colors
[] = {
1285 TAC_DEFAULT
, TAC_RED
, TAC_GREEN
, TAC_YELLOW
, TAC_BLUE
,
1286 TAC_PINK
, TAC_TURQ
, TAC_WHITE
, 0, TAC_DEFAULT
1290 for (i
= 0; i
<= tp
->esc_npar
; i
++) {
1291 attr
= tp
->esc_par
[i
];
1294 tp
->highlight
= TAX_RESET
;
1295 tp
->f_color
= TAC_RESET
;
1298 case 4: /* Start underlining. */
1299 tp
->highlight
= TAX_UNDER
;
1301 case 5: /* Start blink. */
1302 tp
->highlight
= TAX_BLINK
;
1304 case 7: /* Start reverse. */
1305 tp
->highlight
= TAX_REVER
;
1307 case 24: /* End underlining */
1308 if (tp
->highlight
== TAX_UNDER
)
1309 tp
->highlight
= TAX_RESET
;
1311 case 25: /* End blink. */
1312 if (tp
->highlight
== TAX_BLINK
)
1313 tp
->highlight
= TAX_RESET
;
1315 case 27: /* End reverse. */
1316 if (tp
->highlight
== TAX_REVER
)
1317 tp
->highlight
= TAX_RESET
;
1319 /* Foreground color. */
1320 case 30: /* Black */
1322 case 32: /* Green */
1323 case 33: /* Yellow */
1325 case 35: /* Magenta */
1327 case 37: /* White */
1328 case 39: /* Black */
1329 tp
->f_color
= f_colors
[attr
- 30];
1336 tty3270_getpar(struct tty3270
*tp
, int ix
)
1338 return (tp
->esc_par
[ix
] > 0) ? tp
->esc_par
[ix
] : 1;
1342 tty3270_goto_xy(struct tty3270
*tp
, int cx
, int cy
)
1344 tp
->cx
= min_t(int, tp
->view
.cols
- 1, max_t(int, 0, cx
));
1345 cy
= min_t(int, tp
->view
.rows
- 3, max_t(int, 0, cy
));
1347 tty3270_convert_line(tp
, tp
->cy
);
1353 * Process escape sequences. Known sequences:
1354 * Esc 7 Save Cursor Position
1355 * Esc 8 Restore Cursor Position
1356 * Esc [ Pn ; Pn ; .. m Set attributes
1357 * Esc [ Pn ; Pn H Cursor Position
1358 * Esc [ Pn ; Pn f Cursor Position
1359 * Esc [ Pn A Cursor Up
1360 * Esc [ Pn B Cursor Down
1361 * Esc [ Pn C Cursor Forward
1362 * Esc [ Pn D Cursor Backward
1363 * Esc [ Pn G Cursor Horizontal Absolute
1364 * Esc [ Pn X Erase Characters
1365 * Esc [ Ps J Erase in Display
1366 * Esc [ Ps K Erase in Line
1367 * // FIXME: add all the new ones.
1369 * Pn is a numeric parameter, a string of zero or more decimal digits.
1370 * Ps is a selective parameter.
1373 tty3270_escape_sequence(struct tty3270
*tp
, char ch
)
1375 enum { ESnormal
, ESesc
, ESsquare
, ESgetpars
};
1377 if (tp
->esc_state
== ESnormal
) {
1379 /* Starting new escape sequence. */
1380 tp
->esc_state
= ESesc
;
1383 if (tp
->esc_state
== ESesc
) {
1384 tp
->esc_state
= ESnormal
;
1387 tp
->esc_state
= ESsquare
;
1399 case 'Z': /* Respond ID. */
1400 kbd_puts_queue(tp
->tty
, "\033[?6c");
1402 case '7': /* Save cursor position. */
1403 tp
->saved_cx
= tp
->cx
;
1404 tp
->saved_cy
= tp
->cy
;
1405 tp
->saved_highlight
= tp
->highlight
;
1406 tp
->saved_f_color
= tp
->f_color
;
1408 case '8': /* Restore cursor position. */
1409 tty3270_convert_line(tp
, tp
->cy
);
1410 tty3270_goto_xy(tp
, tp
->saved_cx
, tp
->saved_cy
);
1411 tp
->highlight
= tp
->saved_highlight
;
1412 tp
->f_color
= tp
->saved_f_color
;
1414 case 'c': /* Reset terminal. */
1415 tp
->cx
= tp
->saved_cx
= 0;
1416 tp
->cy
= tp
->saved_cy
= 0;
1417 tp
->highlight
= tp
->saved_highlight
= TAX_RESET
;
1418 tp
->f_color
= tp
->saved_f_color
= TAC_RESET
;
1419 tty3270_erase_display(tp
, 2);
1424 if (tp
->esc_state
== ESsquare
) {
1425 tp
->esc_state
= ESgetpars
;
1426 memset(tp
->esc_par
, 0, sizeof(tp
->esc_par
));
1428 tp
->esc_ques
= (ch
== '?');
1432 if (tp
->esc_state
== ESgetpars
) {
1433 if (ch
== ';' && tp
->esc_npar
< ESCAPE_NPAR
- 1) {
1437 if (ch
>= '0' && ch
<= '9') {
1438 tp
->esc_par
[tp
->esc_npar
] *= 10;
1439 tp
->esc_par
[tp
->esc_npar
] += ch
- '0';
1443 tp
->esc_state
= ESnormal
;
1444 if (ch
== 'n' && !tp
->esc_ques
) {
1445 if (tp
->esc_par
[0] == 5) /* Status report. */
1446 kbd_puts_queue(tp
->tty
, "\033[0n");
1447 else if (tp
->esc_par
[0] == 6) { /* Cursor report. */
1449 sprintf(buf
, "\033[%d;%dR", tp
->cy
+ 1, tp
->cx
+ 1);
1450 kbd_puts_queue(tp
->tty
, buf
);
1458 tty3270_set_attributes(tp
);
1460 case 'H': /* Set cursor position. */
1462 tty3270_goto_xy(tp
, tty3270_getpar(tp
, 1) - 1,
1463 tty3270_getpar(tp
, 0) - 1);
1465 case 'd': /* Set y position. */
1466 tty3270_goto_xy(tp
, tp
->cx
, tty3270_getpar(tp
, 0) - 1);
1468 case 'A': /* Cursor up. */
1470 tty3270_goto_xy(tp
, tp
->cx
, tp
->cy
- tty3270_getpar(tp
, 0));
1472 case 'B': /* Cursor down. */
1475 tty3270_goto_xy(tp
, tp
->cx
, tp
->cy
+ tty3270_getpar(tp
, 0));
1477 case 'C': /* Cursor forward. */
1479 tty3270_goto_xy(tp
, tp
->cx
+ tty3270_getpar(tp
, 0), tp
->cy
);
1481 case 'D': /* Cursor backward. */
1482 tty3270_goto_xy(tp
, tp
->cx
- tty3270_getpar(tp
, 0), tp
->cy
);
1484 case 'G': /* Set x position. */
1486 tty3270_goto_xy(tp
, tty3270_getpar(tp
, 0), tp
->cy
);
1488 case 'X': /* Erase Characters. */
1489 tty3270_erase_characters(tp
, tty3270_getpar(tp
, 0));
1491 case 'J': /* Erase display. */
1492 tty3270_erase_display(tp
, tp
->esc_par
[0]);
1494 case 'K': /* Erase line. */
1495 tty3270_erase_line(tp
, tp
->esc_par
[0]);
1497 case 'P': /* Delete characters. */
1498 tty3270_delete_characters(tp
, tty3270_getpar(tp
, 0));
1500 case '@': /* Insert characters. */
1501 tty3270_insert_characters(tp
, tty3270_getpar(tp
, 0));
1503 case 's': /* Save cursor position. */
1504 tp
->saved_cx
= tp
->cx
;
1505 tp
->saved_cy
= tp
->cy
;
1506 tp
->saved_highlight
= tp
->highlight
;
1507 tp
->saved_f_color
= tp
->f_color
;
1509 case 'u': /* Restore cursor position. */
1510 tty3270_convert_line(tp
, tp
->cy
);
1511 tty3270_goto_xy(tp
, tp
->saved_cx
, tp
->saved_cy
);
1512 tp
->highlight
= tp
->saved_highlight
;
1513 tp
->f_color
= tp
->saved_f_color
;
1519 * String write routine for 3270 ttys
1522 tty3270_do_write(struct tty3270
*tp
, const unsigned char *buf
, int count
)
1526 spin_lock_bh(&tp
->view
.lock
);
1527 for (i_msg
= 0; !tp
->tty
->stopped
&& i_msg
< count
; i_msg
++) {
1528 if (tp
->esc_state
!= 0) {
1529 /* Continue escape sequence. */
1530 tty3270_escape_sequence(tp
, buf
[i_msg
]);
1534 switch (buf
[i_msg
]) {
1535 case 0x07: /* '\a' -- Alarm */
1536 tp
->wcc
|= TW_PLUSALARM
;
1538 case 0x08: /* Backspace. */
1541 tty3270_put_character(tp
, ' ');
1544 case 0x09: /* '\t' -- Tabulate */
1545 for (i
= tp
->cx
% 8; i
< 8; i
++) {
1546 if (tp
->cx
>= tp
->view
.cols
) {
1551 tty3270_put_character(tp
, ' ');
1555 case 0x0a: /* '\n' -- New Line */
1559 case 0x0c: /* '\f' -- Form Feed */
1560 tty3270_erase_display(tp
, 2);
1561 tp
->cx
= tp
->cy
= 0;
1563 case 0x0d: /* '\r' -- Carriage Return */
1566 case 0x0f: /* SuSE "exit alternate mode" */
1568 case 0x1b: /* Start escape sequence. */
1569 tty3270_escape_sequence(tp
, buf
[i_msg
]);
1571 default: /* Insert normal character. */
1572 if (tp
->cx
>= tp
->view
.cols
) {
1576 tty3270_put_character(tp
, buf
[i_msg
]);
1581 /* Convert current line to 3270 data fragment. */
1582 tty3270_convert_line(tp
, tp
->cy
);
1584 /* Setup timer to update display after 1/10 second */
1585 if (!timer_pending(&tp
->timer
))
1586 tty3270_set_timer(tp
, HZ
/10);
1588 spin_unlock_bh(&tp
->view
.lock
);
1592 * String write routine for 3270 ttys
1595 tty3270_write(struct tty_struct
* tty
,
1596 const unsigned char *buf
, int count
)
1600 tp
= tty
->driver_data
;
1603 if (tp
->char_count
> 0) {
1604 tty3270_do_write(tp
, tp
->char_buf
, tp
->char_count
);
1607 tty3270_do_write(tp
, buf
, count
);
1612 * Put single characters to the ttys character buffer
1615 tty3270_put_char(struct tty_struct
*tty
, unsigned char ch
)
1619 tp
= tty
->driver_data
;
1622 if (tp
->char_count
< TTY3270_CHAR_BUF_SIZE
)
1623 tp
->char_buf
[tp
->char_count
++] = ch
;
1627 * Flush all characters from the ttys characeter buffer put there
1628 * by tty3270_put_char.
1631 tty3270_flush_chars(struct tty_struct
*tty
)
1635 tp
= tty
->driver_data
;
1638 if (tp
->char_count
> 0) {
1639 tty3270_do_write(tp
, tp
->char_buf
, tp
->char_count
);
1645 * Returns the number of characters in the output buffer. This is
1646 * used in tty_wait_until_sent to wait until all characters have
1647 * appeared on the screen.
1650 tty3270_chars_in_buffer(struct tty_struct
*tty
)
1656 tty3270_flush_buffer(struct tty_struct
*tty
)
1661 * Check for visible/invisible input switches
1664 tty3270_set_termios(struct tty_struct
*tty
, struct termios
*old
)
1669 tp
= tty
->driver_data
;
1672 spin_lock_bh(&tp
->view
.lock
);
1673 if (L_ICANON(tty
)) {
1674 new = L_ECHO(tty
) ? TF_INPUT
: TF_INPUTN
;
1675 if (new != tp
->inattr
) {
1677 tty3270_update_prompt(tp
, 0, 0);
1678 tty3270_set_timer(tp
, 1);
1681 spin_unlock_bh(&tp
->view
.lock
);
1685 * Disable reading from a 3270 tty
1688 tty3270_throttle(struct tty_struct
* tty
)
1692 tp
= tty
->driver_data
;
1699 * Enable reading from a 3270 tty
1702 tty3270_unthrottle(struct tty_struct
* tty
)
1706 tp
= tty
->driver_data
;
1711 tty3270_issue_read(tp
, 1);
1715 * Hang up the tty device.
1718 tty3270_hangup(struct tty_struct
*tty
)
1724 tty3270_wait_until_sent(struct tty_struct
*tty
, int timeout
)
1729 tty3270_ioctl(struct tty_struct
*tty
, struct file
*file
,
1730 unsigned int cmd
, unsigned long arg
)
1734 tp
= tty
->driver_data
;
1737 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1739 return kbd_ioctl(tp
->kbd
, file
, cmd
, arg
);
1742 static struct tty_operations tty3270_ops
= {
1743 .open
= tty3270_open
,
1744 .close
= tty3270_close
,
1745 .write
= tty3270_write
,
1746 .put_char
= tty3270_put_char
,
1747 .flush_chars
= tty3270_flush_chars
,
1748 .write_room
= tty3270_write_room
,
1749 .chars_in_buffer
= tty3270_chars_in_buffer
,
1750 .flush_buffer
= tty3270_flush_buffer
,
1751 .throttle
= tty3270_throttle
,
1752 .unthrottle
= tty3270_unthrottle
,
1753 .hangup
= tty3270_hangup
,
1754 .wait_until_sent
= tty3270_wait_until_sent
,
1755 .ioctl
= tty3270_ioctl
,
1756 .set_termios
= tty3270_set_termios
1760 tty3270_notifier(int index
, int active
)
1763 tty_register_device(tty3270_driver
, index
, 0);
1765 tty_unregister_device(tty3270_driver
, index
);
1769 * 3270 tty registration code called from tty_init().
1770 * Most kernel services (incl. kmalloc) are available at this poimt.
1775 struct tty_driver
*driver
;
1778 driver
= alloc_tty_driver(RAW3270_MAXDEVS
);
1783 * Initialize the tty_driver structure
1784 * Entries in tty3270_driver that are NOT initialized:
1785 * proc_entry, set_termios, flush_buffer, set_ldisc, write_proc
1787 driver
->owner
= THIS_MODULE
;
1788 driver
->devfs_name
= "ttyTUB/";
1789 driver
->driver_name
= "ttyTUB";
1790 driver
->name
= "ttyTUB";
1791 driver
->major
= IBM_TTY3270_MAJOR
;
1792 driver
->minor_start
= RAW3270_FIRSTMINOR
;
1793 driver
->type
= TTY_DRIVER_TYPE_SYSTEM
;
1794 driver
->subtype
= SYSTEM_TYPE_TTY
;
1795 driver
->init_termios
= tty_std_termios
;
1796 driver
->flags
= TTY_DRIVER_RESET_TERMIOS
| TTY_DRIVER_NO_DEVFS
;
1797 tty_set_operations(driver
, &tty3270_ops
);
1798 ret
= tty_register_driver(driver
);
1800 printk(KERN_ERR
"tty3270 registration failed with %d\n", ret
);
1801 put_tty_driver(driver
);
1804 tty3270_driver
= driver
;
1805 ret
= raw3270_register_notifier(tty3270_notifier
);
1807 printk(KERN_ERR
"tty3270 notifier registration failed "
1809 put_tty_driver(driver
);
1819 struct tty_driver
*driver
;
1821 raw3270_unregister_notifier(tty3270_notifier
);
1822 driver
= tty3270_driver
;
1824 tty_unregister_driver(driver
);
1825 tty3270_del_views();
1828 MODULE_LICENSE("GPL");
1829 MODULE_ALIAS_CHARDEV_MAJOR(IBM_TTY3270_MAJOR
);
1831 module_init(tty3270_init
);
1832 module_exit(tty3270_exit
);