1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1990, 1991 UNIX System Laboratories, Inc. */
/* Copyright (c) 1984, 1986, 1987, 1988, 1989, 1990 AT&T */
/* All Rights Reserved */
#ifndef _SYS_TEM_IMPL_H
#define _SYS_TEM_IMPL_H
#pragma ident "%Z%%M% %I% %E% SMI"
#ifdef __cplusplus
extern "C" {
#endif
#include <sys/types.h>
#include <sys/sunddi.h>
#include <sys/sunldi.h>
#include <sys/visual_io.h>
#include <sys/font.h>
#include <sys/tem.h>
/*
* definitions for ANSI x3.64 terminal control language parser
*/
#define TEM_MAXPARAMS 5 /* maximum number of ANSI paramters */
#define TEM_MAXTAB 40 /* maximum number of tab stops */
#define TEM_MAXFKEY 30 /* max length of function key with <ESC>Q */
#define MAX_TEM 2 /* max number of loadable terminal emulators */
#define TEM_SCROLL_UP 0
#define TEM_SCROLL_DOWN 1
#define TEM_SHIFT_LEFT 0
#define TEM_SHIFT_RIGHT 1
#define TEM_ATTR_NORMAL 0x0000
#define TEM_ATTR_REVERSE 0x0001
#define TEM_ATTR_BOLD 0x0002
#define TEM_ATTR_BLINK 0x0004
#define TEM_ATTR_TRANSPARENT 0x0008
#define TEM_ATTR_SCREEN_REVERSE 0x0010
#define ANSI_COLOR_BLACK 0
#define ANSI_COLOR_WHITE 7
#define TEM_TEXT_WHITE 0
#define TEM_TEXT_BLACK 1
#define TEM_TEXT_BLACK24_RED 0x00
#define TEM_TEXT_BLACK24_GREEN 0x00
#define TEM_TEXT_BLACK24_BLUE 0x00
#define TEM_TEXT_WHITE24_RED 0xff
#define TEM_TEXT_WHITE24_GREEN 0xff
#define TEM_TEXT_WHITE24_BLUE 0xff
#define A_STATE_START 0
#define A_STATE_ESC 1
#define A_STATE_CSI 2
#define A_STATE_CSI_QMARK 3
#define A_STATE_CSI_EQUAL 4
/*
* Default number of rows and columns
*/
#define TEM_DEFAULT_ROWS 34
#define TEM_DEFAULT_COLS 80
/*
* Default foreground/background color
*/
#ifdef _HAVE_TEM_FIRMWARE
#define DEFAULT_ANSI_FOREGROUND ANSI_COLOR_BLACK
#define DEFAULT_ANSI_BACKGROUND ANSI_COLOR_WHITE
#else /* _HAVE_TEM_FIRMWARE */
#define DEFAULT_ANSI_FOREGROUND ANSI_COLOR_WHITE
#define DEFAULT_ANSI_BACKGROUND ANSI_COLOR_BLACK
#endif
#define BUF_LEN 160 /* Two lines of data can be processed at a time */
typedef uint8_t text_color_t;
typedef struct tem_color {
text_color_t fg_color;
text_color_t bg_color;
unsigned short a_flags;
} tem_color_t;
struct tem_pix_pos {
screen_pos_t x;
screen_pos_t y;
};
struct tem_char_pos {
screen_pos_t col;
screen_pos_t row;
};
struct tem_size {
screen_size_t width;
screen_size_t height;
};
typedef struct {
uint8_t red[16];
uint8_t green[16];
uint8_t blue[16];
} text_cmap_t;
extern text_cmap_t cmap4_to_24;
struct tem; /* Forward declare */
enum called_from { CALLED_FROM_NORMAL, CALLED_FROM_STANDALONE };
struct in_func_ptrs {
void (*f_display)(struct tem *, unsigned char *, int,
screen_pos_t, screen_pos_t, unsigned char, unsigned char,
cred_t *, enum called_from);
void (*f_copy)(struct tem *,
screen_pos_t, screen_pos_t, screen_pos_t, screen_pos_t,
screen_pos_t, screen_pos_t, cred_t *, enum called_from);
void (*f_cursor)(struct tem *, short, cred_t *,
enum called_from);
void (*f_bit2pix)(struct tem *, unsigned char,
unsigned char, unsigned char);
void (*f_cls)(struct tem *, int,
screen_pos_t, screen_pos_t, cred_t *, enum called_from);
};
/*
* State structure for terminal emulator
*/
typedef struct tem_state { /* state for tem x3.64 emulator */
int display_mode; /* What mode we are in */
screen_size_t linebytes; /* Layered on bytes per scan line */
unsigned short a_flags; /* flags for this x3.64 terminal */
int a_state; /* state in output esc seq processing */
boolean_t a_gotparam; /* does output esc seq have a param */
int a_curparam; /* current param # of output esc seq */
int a_paramval; /* value of current param */
int a_params[TEM_MAXPARAMS]; /* parameters of output esc seq */
screen_pos_t a_tabs[TEM_MAXTAB]; /* tab stops */
int a_ntabs; /* number of tabs used */
int a_nscroll; /* number of lines to scroll */
struct tem_char_pos a_s_cursor; /* start cursor position */
struct tem_char_pos a_c_cursor; /* current cursor position */
struct tem_char_pos a_r_cursor; /* remembered cursor position */
struct tem_size a_c_dimension; /* window dimensions in characters */
struct tem_size a_p_dimension; /* screen dimensions in pixels */
struct tem_pix_pos a_p_offset; /* pix offset to center the display */
unsigned char *a_outbuf; /* place to keep incomplete lines */
unsigned char *a_blank_line; /* a blank line for scrolling */
int a_outindex; /* index into a_outbuf */
struct in_func_ptrs in_fp; /* internal output functions */
struct font a_font; /* font table */
int a_pdepth; /* pixel depth */
int a_initialized; /* initialization flag */
void *a_pix_data; /* pointer to tmp bitmap area */
int a_pix_data_size; /* size of bitmap data areas */
text_color_t fg_color;
text_color_t bg_color;
int first_line; /* kernel console output begins */
} tem_state_t;
/*
* State structure for terminal emulator
*/
typedef struct tem {
#ifdef _HAVE_TEM_FIRMWARE
void (*cons_wrtvec) /* PROM output gets redirected thru this vec. */
(struct tem *, uchar_t *, ssize_t, cred_t *);
#endif /* _HAVE_TEM_FIRMWARE */
ldi_handle_t hdl; /* Framework handle for layered on dev */
dev_info_t *dip; /* Our dip */
kmutex_t lock;
struct vis_polledio *fb_polledio;
tem_state_t *state;
tem_modechg_cb_t modechg_cb;
tem_modechg_cb_arg_t modechg_arg;
tem_color_t init_color; /* initial color and attributes */
} tem_t;
void tem_check_first_time(tem_t *tem, cred_t *, enum called_from);
void tem_reset_colormap(tem_t *, cred_t *, enum called_from);
void tem_align_cursor(tem_t *);
void tem_reset_emulator(tem_t *, cred_t *, enum called_from, tem_color_t *);
void tem_reset_display(tem_t *, cred_t *, enum called_from, int,
tem_color_t *);
void tem_display_layered(tem_t *, struct vis_consdisplay *, cred_t *);
void tem_copy_layered(tem_t *, struct vis_conscopy *, cred_t *);
void tem_cursor_layered(tem_t *, struct vis_conscursor *, cred_t *);
void tem_terminal_emulate(tem_t *, uchar_t *, int, cred_t *,
enum called_from);
void tem_text_display(tem_t *, uchar_t *,
int, screen_pos_t, screen_pos_t,
text_color_t, text_color_t,
cred_t *, enum called_from);
void tem_text_copy(tem_t *,
screen_pos_t, screen_pos_t,
screen_pos_t, screen_pos_t,
screen_pos_t, screen_pos_t,
cred_t *, enum called_from);
void tem_text_cursor(tem_t *, short, cred_t *, enum called_from);
void tem_text_cls(tem_t *,
int count, screen_pos_t row, screen_pos_t col,
cred_t *credp, enum called_from called_from);
void tem_pix_display(tem_t *, uchar_t *,
int, screen_pos_t, screen_pos_t,
text_color_t, text_color_t,
cred_t *, enum called_from);
void tem_pix_copy(tem_t *,
screen_pos_t, screen_pos_t,
screen_pos_t, screen_pos_t,
screen_pos_t, screen_pos_t,
cred_t *, enum called_from);
void tem_copy(tem_t *,
struct vis_conscopy *,
cred_t *, enum called_from);
void tem_pix_cursor(tem_t *, short, cred_t *, enum called_from);
void tem_pix_cls(tem_t *, int, screen_pos_t, screen_pos_t,
cred_t *, enum called_from);
void tem_pix_cls_range(tem_t *,
screen_pos_t, int, int,
screen_pos_t, int, int,
boolean_t, cred_t *, enum called_from);
void bit_to_pix24(tem_t *, uchar_t, text_color_t, text_color_t);
void bit_to_pix8(tem_t *, uchar_t, text_color_t, text_color_t);
void bit_to_pix4(tem_t *, uchar_t, text_color_t, text_color_t);
text_color_t ansi_bg_to_solaris(tem_t *, int);
text_color_t ansi_fg_to_solaris(tem_t *, int);
void set_font(struct font *, short *, short *, short, short);
#ifdef __cplusplus
}
#endif
#endif /* _SYS_TEM_IMPL_H */
|