1 // SPDX-License-Identifier: GPL-2.0
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 IBM Corp. 2003
11 #include <linux/module.h>
12 #include <linux/types.h>
13 #include <linux/kdev_t.h>
14 #include <linux/tty.h>
15 #include <linux/vt_kern.h>
16 #include <linux/init.h>
17 #include <linux/console.h>
18 #include <linux/interrupt.h>
19 #include <linux/workqueue.h>
21 #include <linux/slab.h>
22 #include <linux/bootmem.h>
23 #include <linux/compat.h>
25 #include <asm/ccwdev.h>
27 #include <asm/ebcdic.h>
28 #include <linux/uaccess.h>
34 #define TTY3270_CHAR_BUF_SIZE 256
35 #define TTY3270_OUTPUT_BUFFER_SIZE 1024
36 #define TTY3270_STRING_PAGES 5
38 struct tty_driver
*tty3270_driver
;
39 static int tty3270_max_index
;
41 static struct raw3270_fn tty3270_fn
;
44 unsigned char character
;
45 unsigned char highlight
;
46 unsigned char f_color
;
50 struct tty3270_cell
*cells
;
57 * The main tty view data structure.
59 * 1) describe line orientation & lines list concept against screen
60 * 2) describe conversion of screen to lines
61 * 3) describe line format.
64 struct raw3270_view view
;
66 void **freemem_pages
; /* Array of pages used for freemem. */
67 struct list_head freemem
; /* List of free memory for strings. */
70 struct list_head lines
; /* List of lines. */
71 struct list_head update
; /* List of lines to update. */
72 unsigned char wcc
; /* Write control character. */
73 int nr_lines
; /* # lines in list. */
74 int nr_up
; /* # lines up in history. */
75 unsigned long update_flags
; /* Update indication bits. */
76 struct string
*status
; /* Lower right of display. */
77 struct raw3270_request
*write
; /* Single write request. */
78 struct timer_list timer
; /* Output delay timer. */
80 /* Current tty screen. */
81 unsigned int cx
, cy
; /* Current output position. */
82 unsigned int highlight
; /* Blink/reverse/underscore */
83 unsigned int f_color
; /* Foreground color */
84 struct tty3270_line
*screen
;
85 unsigned int n_model
, n_cols
, n_rows
; /* New model & size */
86 struct work_struct resize_work
;
89 struct string
*prompt
; /* Output string for input area. */
90 struct string
*input
; /* Input string for read request. */
91 struct raw3270_request
*read
; /* Single read request. */
92 struct raw3270_request
*kreset
; /* Single keyboard reset request. */
93 unsigned char inattr
; /* Visible/invisible input. */
94 int throttle
, attn
; /* tty throttle/unthrottle. */
95 struct tasklet_struct readlet
; /* Tasklet to issue read request. */
96 struct tasklet_struct hanglet
; /* Tasklet to hang up the tty. */
97 struct kbd_data
*kbd
; /* key_maps stuff. */
99 /* Escape sequence parsing. */
100 int esc_state
, esc_ques
, esc_npar
;
101 int esc_par
[ESCAPE_NPAR
];
102 unsigned int saved_cx
, saved_cy
;
103 unsigned int saved_highlight
, saved_f_color
;
105 /* Command recalling. */
106 struct list_head rcl_lines
; /* List of recallable lines. */
107 struct list_head
*rcl_walk
; /* Point in rcl_lines list. */
108 int rcl_nr
, rcl_max
; /* Number/max number of rcl_lines. */
110 /* Character array for put_char/flush_chars. */
111 unsigned int char_count
;
112 char char_buf
[TTY3270_CHAR_BUF_SIZE
];
115 /* tty3270->update_flags. See tty3270_update for details. */
116 #define TTY_UPDATE_ERASE 1 /* Use EWRITEA instead of WRITE. */
117 #define TTY_UPDATE_LIST 2 /* Update lines in tty3270->update. */
118 #define TTY_UPDATE_INPUT 4 /* Update input line. */
119 #define TTY_UPDATE_STATUS 8 /* Update status line. */
120 #define TTY_UPDATE_ALL 16 /* Recreate screen. */
122 static void tty3270_update(struct timer_list
*);
123 static void tty3270_resize_work(struct work_struct
*work
);
126 * Setup timeout for a device. On timeout trigger an update.
128 static void tty3270_set_timer(struct tty3270
*tp
, int expires
)
130 mod_timer(&tp
->timer
, jiffies
+ expires
);
134 * The input line are the two last lines of the screen.
137 tty3270_update_prompt(struct tty3270
*tp
, char *input
, int count
)
144 line
->string
[5] = TF_INMDT
;
146 line
->string
[5] = tp
->inattr
;
147 if (count
> tp
->view
.cols
* 2 - 11)
148 count
= tp
->view
.cols
* 2 - 11;
149 memcpy(line
->string
+ 6, input
, count
);
150 line
->string
[6 + count
] = TO_IC
;
151 /* Clear to end of input line. */
152 if (count
< tp
->view
.cols
* 2 - 11) {
153 line
->string
[7 + count
] = TO_RA
;
154 line
->string
[10 + count
] = 0;
155 off
= tp
->view
.cols
* tp
->view
.rows
- 9;
156 raw3270_buffer_address(tp
->view
.dev
, line
->string
+count
+8, off
);
157 line
->len
= 11 + count
;
159 line
->len
= 7 + count
;
160 tp
->update_flags
|= TTY_UPDATE_INPUT
;
164 tty3270_create_prompt(struct tty3270
*tp
)
166 static const unsigned char blueprint
[] =
167 { TO_SBA
, 0, 0, 0x6e, TO_SF
, TF_INPUT
,
168 /* empty input string */
169 TO_IC
, TO_RA
, 0, 0, 0 };
173 line
= alloc_string(&tp
->freemem
,
174 sizeof(blueprint
) + tp
->view
.cols
* 2 - 9);
176 tp
->inattr
= TF_INPUT
;
177 /* Copy blueprint to status line */
178 memcpy(line
->string
, blueprint
, sizeof(blueprint
));
179 line
->len
= sizeof(blueprint
);
180 /* Set output offsets. */
181 offset
= tp
->view
.cols
* (tp
->view
.rows
- 2);
182 raw3270_buffer_address(tp
->view
.dev
, line
->string
+ 1, offset
);
183 offset
= tp
->view
.cols
* tp
->view
.rows
- 9;
184 raw3270_buffer_address(tp
->view
.dev
, line
->string
+ 8, offset
);
186 /* Allocate input string for reading. */
187 tp
->input
= alloc_string(&tp
->freemem
, tp
->view
.cols
* 2 - 9 + 6);
191 * The status line is the last line of the screen. It shows the string
192 * "Running"/"Holding" in the lower right corner of the screen.
195 tty3270_update_status(struct tty3270
* tp
)
199 str
= (tp
->nr_up
!= 0) ? "History" : "Running";
200 memcpy(tp
->status
->string
+ 8, str
, 7);
201 codepage_convert(tp
->view
.ascebc
, tp
->status
->string
+ 8, 7);
202 tp
->update_flags
|= TTY_UPDATE_STATUS
;
206 tty3270_create_status(struct tty3270
* tp
)
208 static const unsigned char blueprint
[] =
209 { TO_SBA
, 0, 0, TO_SF
, TF_LOG
, TO_SA
, TAT_COLOR
, TAC_GREEN
,
210 0, 0, 0, 0, 0, 0, 0, TO_SF
, TF_LOG
, TO_SA
, TAT_COLOR
,
215 line
= alloc_string(&tp
->freemem
,sizeof(blueprint
));
217 /* Copy blueprint to status line */
218 memcpy(line
->string
, blueprint
, sizeof(blueprint
));
219 /* Set address to start of status string (= last 9 characters). */
220 offset
= tp
->view
.cols
* tp
->view
.rows
- 9;
221 raw3270_buffer_address(tp
->view
.dev
, line
->string
+ 1, offset
);
225 * Set output offsets to 3270 datastream fragment of a tty string.
226 * (TO_SBA offset at the start and TO_RA offset at the end of the string)
229 tty3270_update_string(struct tty3270
*tp
, struct string
*line
, int nr
)
233 raw3270_buffer_address(tp
->view
.dev
, line
->string
+ 1,
235 cp
= line
->string
+ line
->len
- 4;
237 raw3270_buffer_address(tp
->view
.dev
, cp
+ 1,
238 tp
->view
.cols
* (nr
+ 1));
242 * Rebuild update list to print all lines.
245 tty3270_rebuild_update(struct tty3270
*tp
)
247 struct string
*s
, *n
;
251 * Throw away update list and create a new one,
252 * containing all lines that will fit on the screen.
254 list_for_each_entry_safe(s
, n
, &tp
->update
, update
)
255 list_del_init(&s
->update
);
256 line
= tp
->view
.rows
- 3;
258 list_for_each_entry_reverse(s
, &tp
->lines
, list
) {
263 tty3270_update_string(tp
, s
, line
);
264 list_add(&s
->update
, &tp
->update
);
268 tp
->update_flags
|= TTY_UPDATE_LIST
;
272 * Alloc string for size bytes. If there is not enough room in
273 * freemem, free strings until there is room.
275 static struct string
*
276 tty3270_alloc_string(struct tty3270
*tp
, size_t size
)
278 struct string
*s
, *n
;
280 s
= alloc_string(&tp
->freemem
, size
);
283 list_for_each_entry_safe(s
, n
, &tp
->lines
, list
) {
284 BUG_ON(tp
->nr_lines
<= tp
->view
.rows
- 2);
286 if (!list_empty(&s
->update
))
287 list_del(&s
->update
);
289 if (free_string(&tp
->freemem
, s
) >= size
)
292 s
= alloc_string(&tp
->freemem
, size
);
294 if (tp
->nr_up
!= 0 &&
295 tp
->nr_up
+ tp
->view
.rows
- 2 >= tp
->nr_lines
) {
296 tp
->nr_up
= tp
->nr_lines
- tp
->view
.rows
+ 2;
297 tty3270_rebuild_update(tp
);
298 tty3270_update_status(tp
);
304 * Add an empty line to the list.
307 tty3270_blank_line(struct tty3270
*tp
)
309 static const unsigned char blueprint
[] =
310 { TO_SBA
, 0, 0, TO_SA
, TAT_EXTHI
, TAX_RESET
,
311 TO_SA
, TAT_COLOR
, TAC_RESET
, TO_RA
, 0, 0, 0 };
314 s
= tty3270_alloc_string(tp
, sizeof(blueprint
));
315 memcpy(s
->string
, blueprint
, sizeof(blueprint
));
316 s
->len
= sizeof(blueprint
);
317 list_add_tail(&s
->list
, &tp
->lines
);
324 * Create a blank screen and remove all lines from the history.
327 tty3270_blank_screen(struct tty3270
*tp
)
329 struct string
*s
, *n
;
332 for (i
= 0; i
< tp
->view
.rows
- 2; i
++)
333 tp
->screen
[i
].len
= 0;
335 list_for_each_entry_safe(s
, n
, &tp
->lines
, list
) {
337 if (!list_empty(&s
->update
))
338 list_del(&s
->update
);
340 free_string(&tp
->freemem
, s
);
345 * Write request completion callback.
348 tty3270_write_callback(struct raw3270_request
*rq
, void *data
)
350 struct tty3270
*tp
= container_of(rq
->view
, struct tty3270
, view
);
353 /* Write wasn't successful. Refresh all. */
354 tp
->update_flags
= TTY_UPDATE_ALL
;
355 tty3270_set_timer(tp
, 1);
357 raw3270_request_reset(rq
);
358 xchg(&tp
->write
, rq
);
362 * Update 3270 display.
365 tty3270_update(struct timer_list
*t
)
367 struct tty3270
*tp
= from_timer(tp
, t
, timer
);
368 static char invalid_sba
[2] = { 0xff, 0xff };
369 struct raw3270_request
*wrq
;
370 unsigned long updated
;
371 struct string
*s
, *n
;
375 wrq
= xchg(&tp
->write
, 0);
377 tty3270_set_timer(tp
, 1);
381 spin_lock(&tp
->view
.lock
);
383 if (tp
->update_flags
& TTY_UPDATE_ALL
) {
384 tty3270_rebuild_update(tp
);
385 tty3270_update_status(tp
);
386 tp
->update_flags
= TTY_UPDATE_ERASE
| TTY_UPDATE_LIST
|
387 TTY_UPDATE_INPUT
| TTY_UPDATE_STATUS
;
389 if (tp
->update_flags
& TTY_UPDATE_ERASE
) {
390 /* Use erase write alternate to erase display. */
391 raw3270_request_set_cmd(wrq
, TC_EWRITEA
);
392 updated
|= TTY_UPDATE_ERASE
;
394 raw3270_request_set_cmd(wrq
, TC_WRITE
);
396 raw3270_request_add_data(wrq
, &tp
->wcc
, 1);
400 * Update status line.
402 if (tp
->update_flags
& TTY_UPDATE_STATUS
)
403 if (raw3270_request_add_data(wrq
, tp
->status
->string
,
404 tp
->status
->len
) == 0)
405 updated
|= TTY_UPDATE_STATUS
;
410 if (tp
->update_flags
& TTY_UPDATE_INPUT
)
411 if (raw3270_request_add_data(wrq
, tp
->prompt
->string
,
412 tp
->prompt
->len
) == 0)
413 updated
|= TTY_UPDATE_INPUT
;
417 if (tp
->update_flags
& TTY_UPDATE_LIST
) {
418 /* Write strings in the update list to the screen. */
419 list_for_each_entry_safe(s
, n
, &tp
->update
, update
) {
423 * Skip TO_SBA at the start of the string if the
424 * last output position matches the start address
427 if (s
->string
[1] == sba
[0] && s
->string
[2] == sba
[1])
429 if (raw3270_request_add_data(wrq
, str
, len
) != 0)
431 list_del_init(&s
->update
);
432 if (s
->string
[s
->len
- 4] == TO_RA
)
433 sba
= s
->string
+ s
->len
- 3;
437 if (list_empty(&tp
->update
))
438 updated
|= TTY_UPDATE_LIST
;
440 wrq
->callback
= tty3270_write_callback
;
441 rc
= raw3270_start(&tp
->view
, wrq
);
443 tp
->update_flags
&= ~updated
;
444 if (tp
->update_flags
)
445 tty3270_set_timer(tp
, 1);
447 raw3270_request_reset(wrq
);
448 xchg(&tp
->write
, wrq
);
450 spin_unlock(&tp
->view
.lock
);
457 tty3270_rcl_add(struct tty3270
*tp
, char *input
, int len
)
464 if (tp
->rcl_nr
>= tp
->rcl_max
) {
465 s
= list_entry(tp
->rcl_lines
.next
, struct string
, list
);
467 free_string(&tp
->freemem
, s
);
470 s
= tty3270_alloc_string(tp
, len
);
471 memcpy(s
->string
, input
, len
);
472 list_add_tail(&s
->list
, &tp
->rcl_lines
);
477 tty3270_rcl_backward(struct kbd_data
*kbd
)
479 struct tty3270
*tp
= container_of(kbd
->port
, struct tty3270
, port
);
482 spin_lock_bh(&tp
->view
.lock
);
483 if (tp
->inattr
== TF_INPUT
) {
484 if (tp
->rcl_walk
&& tp
->rcl_walk
->prev
!= &tp
->rcl_lines
)
485 tp
->rcl_walk
= tp
->rcl_walk
->prev
;
486 else if (!list_empty(&tp
->rcl_lines
))
487 tp
->rcl_walk
= tp
->rcl_lines
.prev
;
489 list_entry(tp
->rcl_walk
, struct string
, list
) : NULL
;
491 s
= list_entry(tp
->rcl_walk
, struct string
, list
);
492 tty3270_update_prompt(tp
, s
->string
, s
->len
);
494 tty3270_update_prompt(tp
, NULL
, 0);
495 tty3270_set_timer(tp
, 1);
497 spin_unlock_bh(&tp
->view
.lock
);
501 * Deactivate tty view.
504 tty3270_exit_tty(struct kbd_data
*kbd
)
506 struct tty3270
*tp
= container_of(kbd
->port
, struct tty3270
, port
);
508 raw3270_deactivate_view(&tp
->view
);
512 * Scroll forward in history.
515 tty3270_scroll_forward(struct kbd_data
*kbd
)
517 struct tty3270
*tp
= container_of(kbd
->port
, struct tty3270
, port
);
520 spin_lock_bh(&tp
->view
.lock
);
521 nr_up
= tp
->nr_up
- tp
->view
.rows
+ 2;
524 if (nr_up
!= tp
->nr_up
) {
526 tty3270_rebuild_update(tp
);
527 tty3270_update_status(tp
);
528 tty3270_set_timer(tp
, 1);
530 spin_unlock_bh(&tp
->view
.lock
);
534 * Scroll backward in history.
537 tty3270_scroll_backward(struct kbd_data
*kbd
)
539 struct tty3270
*tp
= container_of(kbd
->port
, struct tty3270
, port
);
542 spin_lock_bh(&tp
->view
.lock
);
543 nr_up
= tp
->nr_up
+ tp
->view
.rows
- 2;
544 if (nr_up
+ tp
->view
.rows
- 2 > tp
->nr_lines
)
545 nr_up
= tp
->nr_lines
- tp
->view
.rows
+ 2;
546 if (nr_up
!= tp
->nr_up
) {
548 tty3270_rebuild_update(tp
);
549 tty3270_update_status(tp
);
550 tty3270_set_timer(tp
, 1);
552 spin_unlock_bh(&tp
->view
.lock
);
556 * Pass input line to tty.
559 tty3270_read_tasklet(struct raw3270_request
*rrq
)
561 static char kreset_data
= TW_KR
;
562 struct tty3270
*tp
= container_of(rrq
->view
, struct tty3270
, view
);
566 spin_lock_bh(&tp
->view
.lock
);
568 * Two AID keys are special: For 0x7d (enter) the input line
569 * has to be emitted to the tty and for 0x6d the screen
570 * needs to be redrawn.
574 if (tp
->input
->string
[0] == 0x7d) {
575 /* Enter: write input to tty. */
576 input
= tp
->input
->string
+ 6;
577 len
= tp
->input
->len
- 6 - rrq
->rescnt
;
578 if (tp
->inattr
!= TF_INPUTN
)
579 tty3270_rcl_add(tp
, input
, len
);
582 tty3270_rebuild_update(tp
);
583 tty3270_update_status(tp
);
585 /* Clear input area. */
586 tty3270_update_prompt(tp
, NULL
, 0);
587 tty3270_set_timer(tp
, 1);
588 } else if (tp
->input
->string
[0] == 0x6d) {
589 /* Display has been cleared. Redraw. */
590 tp
->update_flags
= TTY_UPDATE_ALL
;
591 tty3270_set_timer(tp
, 1);
593 spin_unlock_bh(&tp
->view
.lock
);
595 /* Start keyboard reset command. */
596 raw3270_request_reset(tp
->kreset
);
597 raw3270_request_set_cmd(tp
->kreset
, TC_WRITE
);
598 raw3270_request_add_data(tp
->kreset
, &kreset_data
, 1);
599 raw3270_start(&tp
->view
, tp
->kreset
);
602 kbd_keycode(tp
->kbd
, *input
++);
603 /* Emit keycode for AID byte. */
604 kbd_keycode(tp
->kbd
, 256 + tp
->input
->string
[0]);
606 raw3270_request_reset(rrq
);
607 xchg(&tp
->read
, rrq
);
608 raw3270_put_view(&tp
->view
);
612 * Read request completion callback.
615 tty3270_read_callback(struct raw3270_request
*rq
, void *data
)
617 struct tty3270
*tp
= container_of(rq
->view
, struct tty3270
, view
);
618 raw3270_get_view(rq
->view
);
619 /* Schedule tasklet to pass input to tty. */
620 tasklet_schedule(&tp
->readlet
);
624 * Issue a read request. Call with device lock.
627 tty3270_issue_read(struct tty3270
*tp
, int lock
)
629 struct raw3270_request
*rrq
;
632 rrq
= xchg(&tp
->read
, 0);
634 /* Read already scheduled. */
636 rrq
->callback
= tty3270_read_callback
;
637 rrq
->callback_data
= tp
;
638 raw3270_request_set_cmd(rrq
, TC_READMOD
);
639 raw3270_request_set_data(rrq
, tp
->input
->string
, tp
->input
->len
);
640 /* Issue the read modified request. */
642 rc
= raw3270_start(&tp
->view
, rrq
);
644 rc
= raw3270_start_irq(&tp
->view
, rrq
);
646 raw3270_request_reset(rrq
);
647 xchg(&tp
->read
, rrq
);
655 tty3270_hangup_tasklet(struct tty3270
*tp
)
657 tty_port_tty_hangup(&tp
->port
, true);
658 raw3270_put_view(&tp
->view
);
662 * Switch to the tty view.
665 tty3270_activate(struct raw3270_view
*view
)
667 struct tty3270
*tp
= container_of(view
, struct tty3270
, view
);
669 tp
->update_flags
= TTY_UPDATE_ALL
;
670 tty3270_set_timer(tp
, 1);
675 tty3270_deactivate(struct raw3270_view
*view
)
677 struct tty3270
*tp
= container_of(view
, struct tty3270
, view
);
679 del_timer(&tp
->timer
);
683 tty3270_irq(struct tty3270
*tp
, struct raw3270_request
*rq
, struct irb
*irb
)
685 /* Handle ATTN. Schedule tasklet to read aid. */
686 if (irb
->scsw
.cmd
.dstat
& DEV_STAT_ATTENTION
) {
688 tty3270_issue_read(tp
, 0);
694 if (irb
->scsw
.cmd
.dstat
& DEV_STAT_UNIT_CHECK
) {
696 raw3270_get_view(&tp
->view
);
697 tasklet_schedule(&tp
->hanglet
);
699 /* Normal end. Copy residual count. */
700 rq
->rescnt
= irb
->scsw
.cmd
.count
;
702 } else if (irb
->scsw
.cmd
.dstat
& DEV_STAT_DEV_END
) {
703 /* Interrupt without an outstanding request -> update all */
704 tp
->update_flags
= TTY_UPDATE_ALL
;
705 tty3270_set_timer(tp
, 1);
710 * Allocate tty3270 structure.
712 static struct tty3270
*
713 tty3270_alloc_view(void)
718 tp
= kzalloc(sizeof(struct tty3270
), GFP_KERNEL
);
722 kmalloc_array(TTY3270_STRING_PAGES
, sizeof(void *),
724 if (!tp
->freemem_pages
)
726 INIT_LIST_HEAD(&tp
->freemem
);
727 INIT_LIST_HEAD(&tp
->lines
);
728 INIT_LIST_HEAD(&tp
->update
);
729 INIT_LIST_HEAD(&tp
->rcl_lines
);
732 for (pages
= 0; pages
< TTY3270_STRING_PAGES
; pages
++) {
733 tp
->freemem_pages
[pages
] = (void *)
734 __get_free_pages(GFP_KERNEL
|GFP_DMA
, 0);
735 if (!tp
->freemem_pages
[pages
])
737 add_string_memory(&tp
->freemem
,
738 tp
->freemem_pages
[pages
], PAGE_SIZE
);
740 tp
->write
= raw3270_request_alloc(TTY3270_OUTPUT_BUFFER_SIZE
);
741 if (IS_ERR(tp
->write
))
743 tp
->read
= raw3270_request_alloc(0);
744 if (IS_ERR(tp
->read
))
746 tp
->kreset
= raw3270_request_alloc(1);
747 if (IS_ERR(tp
->kreset
))
749 tp
->kbd
= kbd_alloc();
753 tty_port_init(&tp
->port
);
754 timer_setup(&tp
->timer
, tty3270_update
, 0);
755 tasklet_init(&tp
->readlet
,
756 (void (*)(unsigned long)) tty3270_read_tasklet
,
757 (unsigned long) tp
->read
);
758 tasklet_init(&tp
->hanglet
,
759 (void (*)(unsigned long)) tty3270_hangup_tasklet
,
761 INIT_WORK(&tp
->resize_work
, tty3270_resize_work
);
766 raw3270_request_free(tp
->kreset
);
768 raw3270_request_free(tp
->read
);
770 raw3270_request_free(tp
->write
);
773 free_pages((unsigned long) tp
->freemem_pages
[pages
], 0);
774 kfree(tp
->freemem_pages
);
775 tty_port_destroy(&tp
->port
);
779 return ERR_PTR(-ENOMEM
);
783 * Free tty3270 structure.
786 tty3270_free_view(struct tty3270
*tp
)
791 raw3270_request_free(tp
->kreset
);
792 raw3270_request_free(tp
->read
);
793 raw3270_request_free(tp
->write
);
794 for (pages
= 0; pages
< TTY3270_STRING_PAGES
; pages
++)
795 free_pages((unsigned long) tp
->freemem_pages
[pages
], 0);
796 kfree(tp
->freemem_pages
);
797 tty_port_destroy(&tp
->port
);
802 * Allocate tty3270 screen.
804 static struct tty3270_line
*
805 tty3270_alloc_screen(unsigned int rows
, unsigned int cols
)
807 struct tty3270_line
*screen
;
811 size
= sizeof(struct tty3270_line
) * (rows
- 2);
812 screen
= kzalloc(size
, GFP_KERNEL
);
815 for (lines
= 0; lines
< rows
- 2; lines
++) {
816 size
= sizeof(struct tty3270_cell
) * cols
;
817 screen
[lines
].cells
= kzalloc(size
, GFP_KERNEL
);
818 if (!screen
[lines
].cells
)
824 kfree(screen
[lines
].cells
);
827 return ERR_PTR(-ENOMEM
);
831 * Free tty3270 screen.
834 tty3270_free_screen(struct tty3270_line
*screen
, unsigned int rows
)
838 for (lines
= 0; lines
< rows
- 2; lines
++)
839 kfree(screen
[lines
].cells
);
844 * Resize tty3270 screen
846 static void tty3270_resize_work(struct work_struct
*work
)
848 struct tty3270
*tp
= container_of(work
, struct tty3270
, resize_work
);
849 struct tty3270_line
*screen
, *oscreen
;
850 struct tty_struct
*tty
;
854 screen
= tty3270_alloc_screen(tp
->n_rows
, tp
->n_cols
);
857 /* Switch to new output size */
858 spin_lock_bh(&tp
->view
.lock
);
859 tty3270_blank_screen(tp
);
860 oscreen
= tp
->screen
;
861 orows
= tp
->view
.rows
;
862 tp
->view
.model
= tp
->n_model
;
863 tp
->view
.rows
= tp
->n_rows
;
864 tp
->view
.cols
= tp
->n_cols
;
866 free_string(&tp
->freemem
, tp
->prompt
);
867 free_string(&tp
->freemem
, tp
->status
);
868 tty3270_create_prompt(tp
);
869 tty3270_create_status(tp
);
870 while (tp
->nr_lines
< tp
->view
.rows
- 2)
871 tty3270_blank_line(tp
);
872 tp
->update_flags
= TTY_UPDATE_ALL
;
873 spin_unlock_bh(&tp
->view
.lock
);
874 tty3270_free_screen(oscreen
, orows
);
875 tty3270_set_timer(tp
, 1);
876 /* Informat tty layer about new size */
877 tty
= tty_port_tty_get(&tp
->port
);
880 ws
.ws_row
= tp
->view
.rows
- 2;
881 ws
.ws_col
= tp
->view
.cols
;
882 tty_do_resize(tty
, &ws
);
887 tty3270_resize(struct raw3270_view
*view
, int model
, int rows
, int cols
)
889 struct tty3270
*tp
= container_of(view
, struct tty3270
, view
);
891 if (tp
->n_model
== model
&& tp
->n_rows
== rows
&& tp
->n_cols
== cols
)
896 schedule_work(&tp
->resize_work
);
900 * Unlink tty3270 data structure from tty.
903 tty3270_release(struct raw3270_view
*view
)
905 struct tty3270
*tp
= container_of(view
, struct tty3270
, view
);
906 struct tty_struct
*tty
= tty_port_tty_get(&tp
->port
);
909 tty
->driver_data
= NULL
;
910 tty_port_tty_set(&tp
->port
, NULL
);
912 raw3270_put_view(&tp
->view
);
918 * Free tty3270 data structure
921 tty3270_free(struct raw3270_view
*view
)
923 struct tty3270
*tp
= container_of(view
, struct tty3270
, view
);
925 del_timer_sync(&tp
->timer
);
926 tty3270_free_screen(tp
->screen
, tp
->view
.rows
);
927 tty3270_free_view(tp
);
931 * Delayed freeing of tty3270 views.
934 tty3270_del_views(void)
938 for (i
= RAW3270_FIRSTMINOR
; i
<= tty3270_max_index
; i
++) {
939 struct raw3270_view
*view
= raw3270_find_view(&tty3270_fn
, i
);
941 raw3270_del_view(view
);
945 static struct raw3270_fn tty3270_fn
= {
946 .activate
= tty3270_activate
,
947 .deactivate
= tty3270_deactivate
,
948 .intv
= (void *) tty3270_irq
,
949 .release
= tty3270_release
,
950 .free
= tty3270_free
,
951 .resize
= tty3270_resize
955 * This routine is called whenever a 3270 tty is opened first time.
957 static int tty3270_install(struct tty_driver
*driver
, struct tty_struct
*tty
)
959 struct raw3270_view
*view
;
963 /* Check if the tty3270 is already there. */
964 view
= raw3270_find_view(&tty3270_fn
, tty
->index
+ RAW3270_FIRSTMINOR
);
966 tp
= container_of(view
, struct tty3270
, view
);
967 tty
->driver_data
= tp
;
968 tty
->winsize
.ws_row
= tp
->view
.rows
- 2;
969 tty
->winsize
.ws_col
= tp
->view
.cols
;
970 tp
->port
.low_latency
= 0;
971 tp
->inattr
= TF_INPUT
;
974 if (tty3270_max_index
< tty
->index
+ 1)
975 tty3270_max_index
= tty
->index
+ 1;
977 /* Allocate tty3270 structure on first open. */
978 tp
= tty3270_alloc_view();
982 rc
= raw3270_add_view(&tp
->view
, &tty3270_fn
,
983 tty
->index
+ RAW3270_FIRSTMINOR
);
985 tty3270_free_view(tp
);
989 tp
->screen
= tty3270_alloc_screen(tp
->view
.rows
, tp
->view
.cols
);
990 if (IS_ERR(tp
->screen
)) {
991 rc
= PTR_ERR(tp
->screen
);
992 raw3270_put_view(&tp
->view
);
993 raw3270_del_view(&tp
->view
);
994 tty3270_free_view(tp
);
998 tp
->port
.low_latency
= 0;
999 tty
->winsize
.ws_row
= tp
->view
.rows
- 2;
1000 tty
->winsize
.ws_col
= tp
->view
.cols
;
1002 tty3270_create_prompt(tp
);
1003 tty3270_create_status(tp
);
1004 tty3270_update_status(tp
);
1006 /* Create blank line for every line in the tty output area. */
1007 for (i
= 0; i
< tp
->view
.rows
- 2; i
++)
1008 tty3270_blank_line(tp
);
1010 tp
->kbd
->port
= &tp
->port
;
1011 tp
->kbd
->fn_handler
[KVAL(K_INCRCONSOLE
)] = tty3270_exit_tty
;
1012 tp
->kbd
->fn_handler
[KVAL(K_SCROLLBACK
)] = tty3270_scroll_backward
;
1013 tp
->kbd
->fn_handler
[KVAL(K_SCROLLFORW
)] = tty3270_scroll_forward
;
1014 tp
->kbd
->fn_handler
[KVAL(K_CONS
)] = tty3270_rcl_backward
;
1015 kbd_ascebc(tp
->kbd
, tp
->view
.ascebc
);
1017 raw3270_activate_view(&tp
->view
);
1020 rc
= tty_port_install(&tp
->port
, driver
, tty
);
1022 raw3270_put_view(&tp
->view
);
1026 tty
->driver_data
= tp
;
1032 * This routine is called whenever a 3270 tty is opened.
1035 tty3270_open(struct tty_struct
*tty
, struct file
*filp
)
1037 struct tty3270
*tp
= tty
->driver_data
;
1038 struct tty_port
*port
= &tp
->port
;
1041 tty_port_tty_set(port
, tty
);
1046 * This routine is called when the 3270 tty is closed. We wait
1047 * for the remaining request to be completed. Then we clean up.
1050 tty3270_close(struct tty_struct
*tty
, struct file
* filp
)
1052 struct tty3270
*tp
= tty
->driver_data
;
1057 tty_port_tty_set(&tp
->port
, NULL
);
1060 static void tty3270_cleanup(struct tty_struct
*tty
)
1062 struct tty3270
*tp
= tty
->driver_data
;
1065 tty
->driver_data
= NULL
;
1066 raw3270_put_view(&tp
->view
);
1071 * We always have room.
1074 tty3270_write_room(struct tty_struct
*tty
)
1080 * Insert character into the screen at the current position with the
1081 * current color and highlight. This function does NOT do cursor movement.
1083 static void tty3270_put_character(struct tty3270
*tp
, char ch
)
1085 struct tty3270_line
*line
;
1086 struct tty3270_cell
*cell
;
1088 line
= tp
->screen
+ tp
->cy
;
1089 if (line
->len
<= tp
->cx
) {
1090 while (line
->len
< tp
->cx
) {
1091 cell
= line
->cells
+ line
->len
;
1092 cell
->character
= tp
->view
.ascebc
[' '];
1093 cell
->highlight
= tp
->highlight
;
1094 cell
->f_color
= tp
->f_color
;
1099 cell
= line
->cells
+ tp
->cx
;
1100 cell
->character
= tp
->view
.ascebc
[(unsigned int) ch
];
1101 cell
->highlight
= tp
->highlight
;
1102 cell
->f_color
= tp
->f_color
;
1106 * Convert a tty3270_line to a 3270 data fragment usable for output.
1109 tty3270_convert_line(struct tty3270
*tp
, int line_nr
)
1111 struct tty3270_line
*line
;
1112 struct tty3270_cell
*cell
;
1113 struct string
*s
, *n
;
1114 unsigned char highlight
;
1115 unsigned char f_color
;
1119 /* Determine how long the fragment will be. */
1120 flen
= 3; /* Prefix (TO_SBA). */
1121 line
= tp
->screen
+ line_nr
;
1123 highlight
= TAX_RESET
;
1124 f_color
= TAC_RESET
;
1125 for (i
= 0, cell
= line
->cells
; i
< line
->len
; i
++, cell
++) {
1126 if (cell
->highlight
!= highlight
) {
1127 flen
+= 3; /* TO_SA to switch highlight. */
1128 highlight
= cell
->highlight
;
1130 if (cell
->f_color
!= f_color
) {
1131 flen
+= 3; /* TO_SA to switch color. */
1132 f_color
= cell
->f_color
;
1135 if (highlight
!= TAX_RESET
)
1136 flen
+= 3; /* TO_SA to reset hightlight. */
1137 if (f_color
!= TAC_RESET
)
1138 flen
+= 3; /* TO_SA to reset color. */
1139 if (line
->len
< tp
->view
.cols
)
1140 flen
+= 4; /* Postfix (TO_RA). */
1142 /* Find the line in the list. */
1143 i
= tp
->view
.rows
- 2 - line_nr
;
1144 list_for_each_entry_reverse(s
, &tp
->lines
, list
)
1148 * Check if the line needs to get reallocated.
1150 if (s
->len
!= flen
) {
1151 /* Reallocate string. */
1152 n
= tty3270_alloc_string(tp
, flen
);
1153 list_add(&n
->list
, &s
->list
);
1154 list_del_init(&s
->list
);
1155 if (!list_empty(&s
->update
))
1156 list_del_init(&s
->update
);
1157 free_string(&tp
->freemem
, s
);
1161 /* Write 3270 data fragment. */
1167 highlight
= TAX_RESET
;
1168 f_color
= TAC_RESET
;
1169 for (i
= 0, cell
= line
->cells
; i
< line
->len
; i
++, cell
++) {
1170 if (cell
->highlight
!= highlight
) {
1173 *cp
++ = cell
->highlight
;
1174 highlight
= cell
->highlight
;
1176 if (cell
->f_color
!= f_color
) {
1179 *cp
++ = cell
->f_color
;
1180 f_color
= cell
->f_color
;
1182 *cp
++ = cell
->character
;
1184 if (highlight
!= TAX_RESET
) {
1189 if (f_color
!= TAC_RESET
) {
1194 if (line
->len
< tp
->view
.cols
) {
1201 if (tp
->nr_up
+ line_nr
< tp
->view
.rows
- 2) {
1202 /* Line is currently visible on screen. */
1203 tty3270_update_string(tp
, s
, line_nr
);
1204 /* Add line to update list. */
1205 if (list_empty(&s
->update
)) {
1206 list_add_tail(&s
->update
, &tp
->update
);
1207 tp
->update_flags
|= TTY_UPDATE_LIST
;
1213 * Do carriage return.
1216 tty3270_cr(struct tty3270
*tp
)
1225 tty3270_lf(struct tty3270
*tp
)
1227 struct tty3270_line temp
;
1230 tty3270_convert_line(tp
, tp
->cy
);
1231 if (tp
->cy
< tp
->view
.rows
- 3) {
1235 /* Last line just filled up. Add new, blank line. */
1236 tty3270_blank_line(tp
);
1237 temp
= tp
->screen
[0];
1239 for (i
= 0; i
< tp
->view
.rows
- 3; i
++)
1240 tp
->screen
[i
] = tp
->screen
[i
+1];
1241 tp
->screen
[tp
->view
.rows
- 3] = temp
;
1242 tty3270_rebuild_update(tp
);
1246 tty3270_ri(struct tty3270
*tp
)
1249 tty3270_convert_line(tp
, tp
->cy
);
1255 * Insert characters at current position.
1258 tty3270_insert_characters(struct tty3270
*tp
, int n
)
1260 struct tty3270_line
*line
;
1263 line
= tp
->screen
+ tp
->cy
;
1264 while (line
->len
< tp
->cx
) {
1265 line
->cells
[line
->len
].character
= tp
->view
.ascebc
[' '];
1266 line
->cells
[line
->len
].highlight
= TAX_RESET
;
1267 line
->cells
[line
->len
].f_color
= TAC_RESET
;
1270 if (n
> tp
->view
.cols
- tp
->cx
)
1271 n
= tp
->view
.cols
- tp
->cx
;
1272 k
= min_t(int, line
->len
- tp
->cx
, tp
->view
.cols
- tp
->cx
- n
);
1274 line
->cells
[tp
->cx
+ n
+ k
] = line
->cells
[tp
->cx
+ k
];
1276 if (line
->len
> tp
->view
.cols
)
1277 line
->len
= tp
->view
.cols
;
1279 line
->cells
[tp
->cx
+ n
].character
= tp
->view
.ascebc
[' '];
1280 line
->cells
[tp
->cx
+ n
].highlight
= tp
->highlight
;
1281 line
->cells
[tp
->cx
+ n
].f_color
= tp
->f_color
;
1286 * Delete characters at current position.
1289 tty3270_delete_characters(struct tty3270
*tp
, int n
)
1291 struct tty3270_line
*line
;
1294 line
= tp
->screen
+ tp
->cy
;
1295 if (line
->len
<= tp
->cx
)
1297 if (line
->len
- tp
->cx
<= n
) {
1301 for (i
= tp
->cx
; i
+ n
< line
->len
; i
++)
1302 line
->cells
[i
] = line
->cells
[i
+ n
];
1307 * Erase characters at current position.
1310 tty3270_erase_characters(struct tty3270
*tp
, int n
)
1312 struct tty3270_line
*line
;
1313 struct tty3270_cell
*cell
;
1315 line
= tp
->screen
+ tp
->cy
;
1316 while (line
->len
> tp
->cx
&& n
-- > 0) {
1317 cell
= line
->cells
+ tp
->cx
++;
1318 cell
->character
= ' ';
1319 cell
->highlight
= TAX_RESET
;
1320 cell
->f_color
= TAC_RESET
;
1323 tp
->cx
= min_t(int, tp
->cx
, tp
->view
.cols
- 1);
1327 * Erase line, 3 different cases:
1328 * Esc [ 0 K Erase from current position to end of line inclusive
1329 * Esc [ 1 K Erase from beginning of line to current position inclusive
1330 * Esc [ 2 K Erase entire line (without moving cursor)
1333 tty3270_erase_line(struct tty3270
*tp
, int mode
)
1335 struct tty3270_line
*line
;
1336 struct tty3270_cell
*cell
;
1339 line
= tp
->screen
+ tp
->cy
;
1342 else if (mode
== 1) {
1343 for (i
= 0; i
< tp
->cx
; i
++) {
1344 cell
= line
->cells
+ i
;
1345 cell
->character
= ' ';
1346 cell
->highlight
= TAX_RESET
;
1347 cell
->f_color
= TAC_RESET
;
1349 if (line
->len
<= tp
->cx
)
1350 line
->len
= tp
->cx
+ 1;
1351 } else if (mode
== 2)
1353 tty3270_convert_line(tp
, tp
->cy
);
1357 * Erase display, 3 different cases:
1358 * Esc [ 0 J Erase from current position to bottom of screen inclusive
1359 * Esc [ 1 J Erase from top of screen to current position inclusive
1360 * Esc [ 2 J Erase entire screen (without moving the cursor)
1363 tty3270_erase_display(struct tty3270
*tp
, int mode
)
1368 tty3270_erase_line(tp
, 0);
1369 for (i
= tp
->cy
+ 1; i
< tp
->view
.rows
- 2; i
++) {
1370 tp
->screen
[i
].len
= 0;
1371 tty3270_convert_line(tp
, i
);
1373 } else if (mode
== 1) {
1374 for (i
= 0; i
< tp
->cy
; i
++) {
1375 tp
->screen
[i
].len
= 0;
1376 tty3270_convert_line(tp
, i
);
1378 tty3270_erase_line(tp
, 1);
1379 } else if (mode
== 2) {
1380 for (i
= 0; i
< tp
->view
.rows
- 2; i
++) {
1381 tp
->screen
[i
].len
= 0;
1382 tty3270_convert_line(tp
, i
);
1385 tty3270_rebuild_update(tp
);
1389 * Set attributes found in an escape sequence.
1390 * Esc [ <attr> ; <attr> ; ... m
1393 tty3270_set_attributes(struct tty3270
*tp
)
1395 static unsigned char f_colors
[] = {
1396 TAC_DEFAULT
, TAC_RED
, TAC_GREEN
, TAC_YELLOW
, TAC_BLUE
,
1397 TAC_PINK
, TAC_TURQ
, TAC_WHITE
, 0, TAC_DEFAULT
1401 for (i
= 0; i
<= tp
->esc_npar
; i
++) {
1402 attr
= tp
->esc_par
[i
];
1405 tp
->highlight
= TAX_RESET
;
1406 tp
->f_color
= TAC_RESET
;
1409 case 4: /* Start underlining. */
1410 tp
->highlight
= TAX_UNDER
;
1412 case 5: /* Start blink. */
1413 tp
->highlight
= TAX_BLINK
;
1415 case 7: /* Start reverse. */
1416 tp
->highlight
= TAX_REVER
;
1418 case 24: /* End underlining */
1419 if (tp
->highlight
== TAX_UNDER
)
1420 tp
->highlight
= TAX_RESET
;
1422 case 25: /* End blink. */
1423 if (tp
->highlight
== TAX_BLINK
)
1424 tp
->highlight
= TAX_RESET
;
1426 case 27: /* End reverse. */
1427 if (tp
->highlight
== TAX_REVER
)
1428 tp
->highlight
= TAX_RESET
;
1430 /* Foreground color. */
1431 case 30: /* Black */
1433 case 32: /* Green */
1434 case 33: /* Yellow */
1436 case 35: /* Magenta */
1438 case 37: /* White */
1439 case 39: /* Black */
1440 tp
->f_color
= f_colors
[attr
- 30];
1447 tty3270_getpar(struct tty3270
*tp
, int ix
)
1449 return (tp
->esc_par
[ix
] > 0) ? tp
->esc_par
[ix
] : 1;
1453 tty3270_goto_xy(struct tty3270
*tp
, int cx
, int cy
)
1455 int max_cx
= max(0, cx
);
1456 int max_cy
= max(0, cy
);
1458 tp
->cx
= min_t(int, tp
->view
.cols
- 1, max_cx
);
1459 cy
= min_t(int, tp
->view
.rows
- 3, max_cy
);
1461 tty3270_convert_line(tp
, tp
->cy
);
1467 * Process escape sequences. Known sequences:
1468 * Esc 7 Save Cursor Position
1469 * Esc 8 Restore Cursor Position
1470 * Esc [ Pn ; Pn ; .. m Set attributes
1471 * Esc [ Pn ; Pn H Cursor Position
1472 * Esc [ Pn ; Pn f Cursor Position
1473 * Esc [ Pn A Cursor Up
1474 * Esc [ Pn B Cursor Down
1475 * Esc [ Pn C Cursor Forward
1476 * Esc [ Pn D Cursor Backward
1477 * Esc [ Pn G Cursor Horizontal Absolute
1478 * Esc [ Pn X Erase Characters
1479 * Esc [ Ps J Erase in Display
1480 * Esc [ Ps K Erase in Line
1481 * // FIXME: add all the new ones.
1483 * Pn is a numeric parameter, a string of zero or more decimal digits.
1484 * Ps is a selective parameter.
1487 tty3270_escape_sequence(struct tty3270
*tp
, char ch
)
1489 enum { ESnormal
, ESesc
, ESsquare
, ESgetpars
};
1491 if (tp
->esc_state
== ESnormal
) {
1493 /* Starting new escape sequence. */
1494 tp
->esc_state
= ESesc
;
1497 if (tp
->esc_state
== ESesc
) {
1498 tp
->esc_state
= ESnormal
;
1501 tp
->esc_state
= ESsquare
;
1513 case 'Z': /* Respond ID. */
1514 kbd_puts_queue(&tp
->port
, "\033[?6c");
1516 case '7': /* Save cursor position. */
1517 tp
->saved_cx
= tp
->cx
;
1518 tp
->saved_cy
= tp
->cy
;
1519 tp
->saved_highlight
= tp
->highlight
;
1520 tp
->saved_f_color
= tp
->f_color
;
1522 case '8': /* Restore cursor position. */
1523 tty3270_convert_line(tp
, tp
->cy
);
1524 tty3270_goto_xy(tp
, tp
->saved_cx
, tp
->saved_cy
);
1525 tp
->highlight
= tp
->saved_highlight
;
1526 tp
->f_color
= tp
->saved_f_color
;
1528 case 'c': /* Reset terminal. */
1529 tp
->cx
= tp
->saved_cx
= 0;
1530 tp
->cy
= tp
->saved_cy
= 0;
1531 tp
->highlight
= tp
->saved_highlight
= TAX_RESET
;
1532 tp
->f_color
= tp
->saved_f_color
= TAC_RESET
;
1533 tty3270_erase_display(tp
, 2);
1538 if (tp
->esc_state
== ESsquare
) {
1539 tp
->esc_state
= ESgetpars
;
1540 memset(tp
->esc_par
, 0, sizeof(tp
->esc_par
));
1542 tp
->esc_ques
= (ch
== '?');
1546 if (tp
->esc_state
== ESgetpars
) {
1547 if (ch
== ';' && tp
->esc_npar
< ESCAPE_NPAR
- 1) {
1551 if (ch
>= '0' && ch
<= '9') {
1552 tp
->esc_par
[tp
->esc_npar
] *= 10;
1553 tp
->esc_par
[tp
->esc_npar
] += ch
- '0';
1557 tp
->esc_state
= ESnormal
;
1558 if (ch
== 'n' && !tp
->esc_ques
) {
1559 if (tp
->esc_par
[0] == 5) /* Status report. */
1560 kbd_puts_queue(&tp
->port
, "\033[0n");
1561 else if (tp
->esc_par
[0] == 6) { /* Cursor report. */
1563 sprintf(buf
, "\033[%d;%dR", tp
->cy
+ 1, tp
->cx
+ 1);
1564 kbd_puts_queue(&tp
->port
, buf
);
1572 tty3270_set_attributes(tp
);
1574 case 'H': /* Set cursor position. */
1576 tty3270_goto_xy(tp
, tty3270_getpar(tp
, 1) - 1,
1577 tty3270_getpar(tp
, 0) - 1);
1579 case 'd': /* Set y position. */
1580 tty3270_goto_xy(tp
, tp
->cx
, tty3270_getpar(tp
, 0) - 1);
1582 case 'A': /* Cursor up. */
1584 tty3270_goto_xy(tp
, tp
->cx
, tp
->cy
- tty3270_getpar(tp
, 0));
1586 case 'B': /* Cursor down. */
1589 tty3270_goto_xy(tp
, tp
->cx
, tp
->cy
+ tty3270_getpar(tp
, 0));
1591 case 'C': /* Cursor forward. */
1593 tty3270_goto_xy(tp
, tp
->cx
+ tty3270_getpar(tp
, 0), tp
->cy
);
1595 case 'D': /* Cursor backward. */
1596 tty3270_goto_xy(tp
, tp
->cx
- tty3270_getpar(tp
, 0), tp
->cy
);
1598 case 'G': /* Set x position. */
1600 tty3270_goto_xy(tp
, tty3270_getpar(tp
, 0), tp
->cy
);
1602 case 'X': /* Erase Characters. */
1603 tty3270_erase_characters(tp
, tty3270_getpar(tp
, 0));
1605 case 'J': /* Erase display. */
1606 tty3270_erase_display(tp
, tp
->esc_par
[0]);
1608 case 'K': /* Erase line. */
1609 tty3270_erase_line(tp
, tp
->esc_par
[0]);
1611 case 'P': /* Delete characters. */
1612 tty3270_delete_characters(tp
, tty3270_getpar(tp
, 0));
1614 case '@': /* Insert characters. */
1615 tty3270_insert_characters(tp
, tty3270_getpar(tp
, 0));
1617 case 's': /* Save cursor position. */
1618 tp
->saved_cx
= tp
->cx
;
1619 tp
->saved_cy
= tp
->cy
;
1620 tp
->saved_highlight
= tp
->highlight
;
1621 tp
->saved_f_color
= tp
->f_color
;
1623 case 'u': /* Restore cursor position. */
1624 tty3270_convert_line(tp
, tp
->cy
);
1625 tty3270_goto_xy(tp
, tp
->saved_cx
, tp
->saved_cy
);
1626 tp
->highlight
= tp
->saved_highlight
;
1627 tp
->f_color
= tp
->saved_f_color
;
1633 * String write routine for 3270 ttys
1636 tty3270_do_write(struct tty3270
*tp
, struct tty_struct
*tty
,
1637 const unsigned char *buf
, int count
)
1641 spin_lock_bh(&tp
->view
.lock
);
1642 for (i_msg
= 0; !tty
->stopped
&& i_msg
< count
; i_msg
++) {
1643 if (tp
->esc_state
!= 0) {
1644 /* Continue escape sequence. */
1645 tty3270_escape_sequence(tp
, buf
[i_msg
]);
1649 switch (buf
[i_msg
]) {
1650 case 0x07: /* '\a' -- Alarm */
1651 tp
->wcc
|= TW_PLUSALARM
;
1653 case 0x08: /* Backspace. */
1656 tty3270_put_character(tp
, ' ');
1659 case 0x09: /* '\t' -- Tabulate */
1660 for (i
= tp
->cx
% 8; i
< 8; i
++) {
1661 if (tp
->cx
>= tp
->view
.cols
) {
1666 tty3270_put_character(tp
, ' ');
1670 case 0x0a: /* '\n' -- New Line */
1674 case 0x0c: /* '\f' -- Form Feed */
1675 tty3270_erase_display(tp
, 2);
1676 tp
->cx
= tp
->cy
= 0;
1678 case 0x0d: /* '\r' -- Carriage Return */
1681 case 0x0f: /* SuSE "exit alternate mode" */
1683 case 0x1b: /* Start escape sequence. */
1684 tty3270_escape_sequence(tp
, buf
[i_msg
]);
1686 default: /* Insert normal character. */
1687 if (tp
->cx
>= tp
->view
.cols
) {
1691 tty3270_put_character(tp
, buf
[i_msg
]);
1696 /* Convert current line to 3270 data fragment. */
1697 tty3270_convert_line(tp
, tp
->cy
);
1699 /* Setup timer to update display after 1/10 second */
1700 if (!timer_pending(&tp
->timer
))
1701 tty3270_set_timer(tp
, HZ
/10);
1703 spin_unlock_bh(&tp
->view
.lock
);
1707 * String write routine for 3270 ttys
1710 tty3270_write(struct tty_struct
* tty
,
1711 const unsigned char *buf
, int count
)
1715 tp
= tty
->driver_data
;
1718 if (tp
->char_count
> 0) {
1719 tty3270_do_write(tp
, tty
, tp
->char_buf
, tp
->char_count
);
1722 tty3270_do_write(tp
, tty
, buf
, count
);
1727 * Put single characters to the ttys character buffer
1729 static int tty3270_put_char(struct tty_struct
*tty
, unsigned char ch
)
1733 tp
= tty
->driver_data
;
1734 if (!tp
|| tp
->char_count
>= TTY3270_CHAR_BUF_SIZE
)
1736 tp
->char_buf
[tp
->char_count
++] = ch
;
1741 * Flush all characters from the ttys characeter buffer put there
1742 * by tty3270_put_char.
1745 tty3270_flush_chars(struct tty_struct
*tty
)
1749 tp
= tty
->driver_data
;
1752 if (tp
->char_count
> 0) {
1753 tty3270_do_write(tp
, tty
, tp
->char_buf
, tp
->char_count
);
1759 * Returns the number of characters in the output buffer. This is
1760 * used in tty_wait_until_sent to wait until all characters have
1761 * appeared on the screen.
1764 tty3270_chars_in_buffer(struct tty_struct
*tty
)
1770 tty3270_flush_buffer(struct tty_struct
*tty
)
1775 * Check for visible/invisible input switches
1778 tty3270_set_termios(struct tty_struct
*tty
, struct ktermios
*old
)
1783 tp
= tty
->driver_data
;
1786 spin_lock_bh(&tp
->view
.lock
);
1787 if (L_ICANON(tty
)) {
1788 new = L_ECHO(tty
) ? TF_INPUT
: TF_INPUTN
;
1789 if (new != tp
->inattr
) {
1791 tty3270_update_prompt(tp
, NULL
, 0);
1792 tty3270_set_timer(tp
, 1);
1795 spin_unlock_bh(&tp
->view
.lock
);
1799 * Disable reading from a 3270 tty
1802 tty3270_throttle(struct tty_struct
* tty
)
1806 tp
= tty
->driver_data
;
1813 * Enable reading from a 3270 tty
1816 tty3270_unthrottle(struct tty_struct
* tty
)
1820 tp
= tty
->driver_data
;
1825 tty3270_issue_read(tp
, 1);
1829 * Hang up the tty device.
1832 tty3270_hangup(struct tty_struct
*tty
)
1836 tp
= tty
->driver_data
;
1839 spin_lock_bh(&tp
->view
.lock
);
1840 tp
->cx
= tp
->saved_cx
= 0;
1841 tp
->cy
= tp
->saved_cy
= 0;
1842 tp
->highlight
= tp
->saved_highlight
= TAX_RESET
;
1843 tp
->f_color
= tp
->saved_f_color
= TAC_RESET
;
1844 tty3270_blank_screen(tp
);
1845 while (tp
->nr_lines
< tp
->view
.rows
- 2)
1846 tty3270_blank_line(tp
);
1847 tp
->update_flags
= TTY_UPDATE_ALL
;
1848 spin_unlock_bh(&tp
->view
.lock
);
1849 tty3270_set_timer(tp
, 1);
1853 tty3270_wait_until_sent(struct tty_struct
*tty
, int timeout
)
1857 static int tty3270_ioctl(struct tty_struct
*tty
, unsigned int cmd
,
1862 tp
= tty
->driver_data
;
1865 if (tty_io_error(tty
))
1867 return kbd_ioctl(tp
->kbd
, cmd
, arg
);
1870 #ifdef CONFIG_COMPAT
1871 static long tty3270_compat_ioctl(struct tty_struct
*tty
,
1872 unsigned int cmd
, unsigned long arg
)
1876 tp
= tty
->driver_data
;
1879 if (tty_io_error(tty
))
1881 return kbd_ioctl(tp
->kbd
, cmd
, (unsigned long)compat_ptr(arg
));
1885 static const struct tty_operations tty3270_ops
= {
1886 .install
= tty3270_install
,
1887 .cleanup
= tty3270_cleanup
,
1888 .open
= tty3270_open
,
1889 .close
= tty3270_close
,
1890 .write
= tty3270_write
,
1891 .put_char
= tty3270_put_char
,
1892 .flush_chars
= tty3270_flush_chars
,
1893 .write_room
= tty3270_write_room
,
1894 .chars_in_buffer
= tty3270_chars_in_buffer
,
1895 .flush_buffer
= tty3270_flush_buffer
,
1896 .throttle
= tty3270_throttle
,
1897 .unthrottle
= tty3270_unthrottle
,
1898 .hangup
= tty3270_hangup
,
1899 .wait_until_sent
= tty3270_wait_until_sent
,
1900 .ioctl
= tty3270_ioctl
,
1901 #ifdef CONFIG_COMPAT
1902 .compat_ioctl
= tty3270_compat_ioctl
,
1904 .set_termios
= tty3270_set_termios
1907 static void tty3270_create_cb(int minor
)
1909 tty_register_device(tty3270_driver
, minor
- RAW3270_FIRSTMINOR
, NULL
);
1912 static void tty3270_destroy_cb(int minor
)
1914 tty_unregister_device(tty3270_driver
, minor
- RAW3270_FIRSTMINOR
);
1917 static struct raw3270_notifier tty3270_notifier
=
1919 .create
= tty3270_create_cb
,
1920 .destroy
= tty3270_destroy_cb
,
1924 * 3270 tty registration code called from tty_init().
1925 * Most kernel services (incl. kmalloc) are available at this poimt.
1927 static int __init
tty3270_init(void)
1929 struct tty_driver
*driver
;
1932 driver
= tty_alloc_driver(RAW3270_MAXDEVS
,
1933 TTY_DRIVER_REAL_RAW
|
1934 TTY_DRIVER_DYNAMIC_DEV
|
1935 TTY_DRIVER_RESET_TERMIOS
);
1937 return PTR_ERR(driver
);
1940 * Initialize the tty_driver structure
1941 * Entries in tty3270_driver that are NOT initialized:
1942 * proc_entry, set_termios, flush_buffer, set_ldisc, write_proc
1944 driver
->driver_name
= "tty3270";
1945 driver
->name
= "3270/tty";
1946 driver
->major
= IBM_TTY3270_MAJOR
;
1947 driver
->minor_start
= RAW3270_FIRSTMINOR
;
1948 driver
->name_base
= RAW3270_FIRSTMINOR
;
1949 driver
->type
= TTY_DRIVER_TYPE_SYSTEM
;
1950 driver
->subtype
= SYSTEM_TYPE_TTY
;
1951 driver
->init_termios
= tty_std_termios
;
1952 tty_set_operations(driver
, &tty3270_ops
);
1953 ret
= tty_register_driver(driver
);
1955 put_tty_driver(driver
);
1958 tty3270_driver
= driver
;
1959 raw3270_register_notifier(&tty3270_notifier
);
1966 struct tty_driver
*driver
;
1968 raw3270_unregister_notifier(&tty3270_notifier
);
1969 driver
= tty3270_driver
;
1970 tty3270_driver
= NULL
;
1971 tty_unregister_driver(driver
);
1972 put_tty_driver(driver
);
1973 tty3270_del_views();
1976 MODULE_LICENSE("GPL");
1977 MODULE_ALIAS_CHARDEV_MAJOR(IBM_TTY3270_MAJOR
);
1979 module_init(tty3270_init
);
1980 module_exit(tty3270_exit
);