itevar.h revision 1.1 1 1.1 oki /*
2 1.1 oki * Copyright (c) 1988 University of Utah.
3 1.1 oki * Copyright (c) 1990 The Regents of the University of California.
4 1.1 oki * All rights reserved.
5 1.1 oki *
6 1.1 oki * This code is derived from software contributed to Berkeley by
7 1.1 oki * the Systems Programming Group of the University of Utah Computer
8 1.1 oki * Science Department.
9 1.1 oki *
10 1.1 oki * Redistribution and use in source and binary forms, with or without
11 1.1 oki * modification, are permitted provided that the following conditions
12 1.1 oki * are met:
13 1.1 oki * 1. Redistributions of source code must retain the above copyright
14 1.1 oki * notice, this list of conditions and the following disclaimer.
15 1.1 oki * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 oki * notice, this list of conditions and the following disclaimer in the
17 1.1 oki * documentation and/or other materials provided with the distribution.
18 1.1 oki * 3. All advertising materials mentioning features or use of this software
19 1.1 oki * must display the following acknowledgement:
20 1.1 oki * This product includes software developed by the University of
21 1.1 oki * California, Berkeley and its contributors.
22 1.1 oki * 4. Neither the name of the University nor the names of its contributors
23 1.1 oki * may be used to endorse or promote products derived from this software
24 1.1 oki * without specific prior written permission.
25 1.1 oki *
26 1.1 oki * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 1.1 oki * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 1.1 oki * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 1.1 oki * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 1.1 oki * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 1.1 oki * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 1.1 oki * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 1.1 oki * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 1.1 oki * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 1.1 oki * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 1.1 oki * SUCH DAMAGE.
37 1.1 oki *
38 1.1 oki * from: Utah $Hdr: itevar.h 1.1 90/07/09$
39 1.1 oki *
40 1.1 oki * @(#)itevar.h 7.2 (Berkeley) 11/4/90
41 1.1 oki */
42 1.1 oki
43 1.1 oki #define UNIT(dev) minor(dev)
44 1.1 oki
45 1.1 oki struct ite_softc;
46 1.1 oki
47 1.1 oki struct itesw {
48 1.1 oki int (*ite_cnprobe) __P((int minor));
49 1.1 oki void (*ite_init) __P((struct ite_softc *));
50 1.1 oki void (*ite_deinit) __P((struct ite_softc *));
51 1.1 oki void (*ite_clear) __P((struct ite_softc *,int,int,int,int));
52 1.1 oki void (*ite_putc) __P((struct ite_softc *,int,int,int,int));
53 1.1 oki void (*ite_cursor) __P((struct ite_softc *,int));
54 1.1 oki void (*ite_scroll) __P((struct ite_softc *,int,int,int,int));
55 1.1 oki };
56 1.1 oki
57 1.1 oki enum ite_arraymaxs {
58 1.1 oki MAX_ARGSIZE = 256,
59 1.1 oki MAX_TABS = 256,
60 1.1 oki };
61 1.1 oki
62 1.1 oki /* maximum number of argument characters (<CSI>33;34;3m for example) */
63 1.1 oki #define ARGBUF_SIZE 256
64 1.1 oki
65 1.1 oki struct ite_softc {
66 1.1 oki struct device device;
67 1.1 oki struct grf_softc *grf;
68 1.1 oki struct itesw *isw;
69 1.1 oki int flags;
70 1.1 oki int type;
71 1.1 oki int open_cnt;
72 1.1 oki void *priv;
73 1.1 oki short curx, cury;
74 1.1 oki short cursorx, cursory;
75 1.1 oki u_char *font;
76 1.1 oki u_char *cursor;
77 1.1 oki u_char font_lo, font_hi;
78 1.1 oki short rows, cols;
79 1.1 oki short cpl;
80 1.1 oki short ftheight, ftwidth, ftbaseline, ftboldsmear;
81 1.1 oki short attribute;
82 1.1 oki u_char *attrbuf;
83 1.1 oki short planemask;
84 1.1 oki short pos;
85 1.1 oki char imode, fpd, hold;
86 1.1 oki u_char escape, cursor_opt, key_repeat;
87 1.1 oki char *GL, *GR, *save_GL;
88 1.1 oki char G0, G1, G2, G3;
89 1.1 oki char fgcolor, bgcolor;
90 1.1 oki char linefeed_newline, auto_wrap;
91 1.1 oki char cursor_appmode, keypad_appmode;
92 1.1 oki char argbuf[ARGBUF_SIZE], *ap, *tabs;
93 1.1 oki char emul_level, eightbit_C1;
94 1.1 oki int top_margin, bottom_margin;
95 1.1 oki char inside_margins, sc_om;
96 1.1 oki short save_curx, save_cury, save_attribute, save_char;
97 1.1 oki char sc_G0, sc_G1, sc_G2, sc_G3;
98 1.1 oki char *sc_GL, *sc_GR;
99 1.1 oki };
100 1.1 oki
101 1.1 oki enum emul_level {
102 1.1 oki EMUL_VT100 = 1,
103 1.1 oki EMUL_VT300_8,
104 1.1 oki EMUL_VT300_7
105 1.1 oki };
106 1.1 oki
107 1.1 oki /* Flags */
108 1.1 oki #define ITE_ALIVE 0x01 /* hardware exists */
109 1.1 oki #define ITE_INITED 0x02 /* device has been initialized */
110 1.1 oki #define ITE_CONSOLE 0x04 /* device can be console */
111 1.1 oki #define ITE_ISCONS 0x08 /* device is console */
112 1.1 oki #define ITE_ACTIVE 0x10 /* device is being used as ITE */
113 1.1 oki #define ITE_INGRF 0x20 /* device in use as non-ITE */
114 1.1 oki
115 1.1 oki #ifdef DO_WEIRD_ATTRIBUTES
116 1.1 oki #define attrloc(ip, y, x) \
117 1.1 oki (ip->attrbuf + ((y) * ip->cols) + (x))
118 1.1 oki
119 1.1 oki #define attrclr(ip, sy, sx, h, w) \
120 1.1 oki bzero(ip->attrbuf + ((sy) * ip->cols) + (sx), (h) * (w))
121 1.1 oki
122 1.1 oki #define attrmov(ip, sy, sx, dy, dx, h, w) \
123 1.1 oki bcopy(ip->attrbuf + ((sy) * ip->cols) + (sx), \
124 1.1 oki ip->attrbuf + ((dy) * ip->cols) + (dx), \
125 1.1 oki (h) * (w))
126 1.1 oki
127 1.1 oki #define attrtest(ip, attr) \
128 1.1 oki ((* (u_char *) attrloc(ip, ip->cury, ip->curx)) & attr)
129 1.1 oki
130 1.1 oki #define attrset(ip, attr) \
131 1.1 oki ((* (u_char *) attrloc(ip, ip->cury, ip->curx)) = attr)
132 1.1 oki #else
133 1.1 oki #define attrloc(ip, y, x) 0
134 1.1 oki #define attrclr(ip, sy, sx, h, w)
135 1.1 oki #define attrmov(ip, sy, sx, dy, dx, h, w)
136 1.1 oki #define attrtest(ip, attr) 0
137 1.1 oki #define attrset(ip, attr)
138 1.1 oki #endif
139 1.1 oki
140 1.1 oki
141 1.1 oki /*
142 1.1 oki * X and Y location of character 'c' in the framebuffer, in pixels.
143 1.1 oki */
144 1.1 oki #define charX(ip,c) \
145 1.1 oki (((c) % (ip)->cpl) * (ip)->ftwidth + (ip)->fontx)
146 1.1 oki
147 1.1 oki #define charY(ip,c) \
148 1.1 oki (((c) / (ip)->cpl) * (ip)->ftheight + (ip)->fonty)
149 1.1 oki
150 1.1 oki /* Character attributes */
151 1.1 oki #define ATTR_NOR 0x0 /* normal */
152 1.1 oki #define ATTR_INV 0x1 /* inverse */
153 1.1 oki #define ATTR_UL 0x2 /* underline */
154 1.1 oki #define ATTR_BOLD 0x4 /* bold */
155 1.1 oki #define ATTR_BLINK 0x8 /* blink */
156 1.1 oki #define ATTR_ALL (ATTR_INV | ATTR_UL|ATTR_BOLD|ATTR_BLINK)
157 1.1 oki
158 1.1 oki /* Keyboard attributes */
159 1.1 oki #define ATTR_KPAD 0x80 /* keypad transmit */
160 1.1 oki
161 1.1 oki /* Replacement Rules */
162 1.1 oki #define RR_CLEAR 0x0
163 1.1 oki #define RR_COPY 0x3
164 1.1 oki #define RR_XOR 0x6
165 1.1 oki #define RR_COPYINVERTED 0xc
166 1.1 oki
167 1.1 oki #define SCROLL_UP 0x01
168 1.1 oki #define SCROLL_DOWN 0x02
169 1.1 oki #define SCROLL_LEFT 0x03
170 1.1 oki #define SCROLL_RIGHT 0x04
171 1.1 oki #define DRAW_CURSOR 0x05
172 1.1 oki #define ERASE_CURSOR 0x06
173 1.1 oki #define MOVE_CURSOR 0x07
174 1.1 oki #define START_CURSOROPT 0x08 /* at start of output. May disable cursor */
175 1.1 oki #define END_CURSOROPT 0x09 /* at end, make sure cursor state is ok */
176 1.1 oki
177 1.1 oki /* special key codes */
178 1.1 oki #define KBD_LEFT_SHIFT 0x70
179 1.1 oki #define KBD_RIGHT_SHIFT 0x70
180 1.1 oki #define KBD_CAPS_LOCK 0x5d
181 1.1 oki #define KBD_CTRL 0x71
182 1.1 oki #define KBD_LEFT_ALT 0x55
183 1.1 oki #define KBD_RIGHT_ALT 0x58
184 1.1 oki #define KBD_LEFT_META 0x56
185 1.1 oki #define KBD_RIGHT_META 0x57
186 1.1 oki #define KBD_OPT1 0x72
187 1.1 oki #define KBD_OPT2 0x73
188 1.1 oki #define KBD_RECONNECT 0x7f
189 1.1 oki
190 1.1 oki /* modifier map for use in itefilter() */
191 1.1 oki #define KBD_MOD_LSHIFT (1<<0)
192 1.1 oki #define KBD_MOD_RSHIFT (1<<1)
193 1.1 oki #define KBD_MOD_SHIFT (KBD_MOD_LSHIFT | KBD_MOD_RSHIFT)
194 1.1 oki #define KBD_MOD_CTRL (1<<2)
195 1.1 oki #define KBD_MOD_LALT (1<<3)
196 1.1 oki #define KBD_MOD_RALT (1<<4)
197 1.1 oki #define KBD_MOD_ALT (KBD_MOD_LALT | KBD_MOD_RALT)
198 1.1 oki #define KBD_MOD_LMETA (1<<5)
199 1.1 oki #define KBD_MOD_RMETA (1<<6)
200 1.1 oki #define KBD_MOD_META (KBD_MOD_LMETA | KBD_MOD_RMETA)
201 1.1 oki #define KBD_MOD_CAPS (1<<7)
202 1.1 oki #define KBD_MOD_OPT1 (1<<8)
203 1.1 oki #define KBD_MOD_OPT2 (1<<9)
204 1.1 oki
205 1.1 oki /* type for the second argument to itefilter(). Note that the
206 1.1 oki driver doesn't support key-repeat for console-mode, since it can't use
207 1.1 oki timeout() for polled I/O. */
208 1.1 oki
209 1.1 oki enum caller { ITEFILT_TTY, ITEFILT_CONSOLE, ITEFILT_REPEATER };
210 1.1 oki
211 1.1 oki enum tab_size { TABSIZE = 8 };
212 1.1 oki #define TABEND(u) (ite_tty[u]->t_windsize.ws_col - TABSIZE) /* XXX */
213 1.1 oki
214 1.1 oki #define set_attr(ip, attr) ((ip)->attribute |= (attr))
215 1.1 oki #define clr_attr(ip, attr) ((ip)->attribute &= ~(attr))
216 1.1 oki #define attrloc(ip, y, x) 0
217 1.1 oki #define attrclr(ip, sy, sx, h, w)
218 1.1 oki #define attrmov(ip, sy, sx, dy, dx, h, w)
219 1.1 oki #define attrtest(ip, attr) 0
220 1.1 oki #define attrset(ip, attr)
221 1.1 oki
222 1.1 oki /* character set */
223 1.1 oki #define CSET_MULTI 0x80 /* multibytes flag */
224 1.1 oki #define CSET_ASCII 0 /* ascii */
225 1.1 oki #define CSET_JISROMA 1 /* iso2022jp romaji */
226 1.1 oki #define CSET_JISKANA 2 /* iso2022jp kana */
227 1.1 oki #define CSET_JIS1978 (3|CSET_MULTI) /* iso2022jp old jis kanji */
228 1.1 oki #define CSET_JIS1983 (4|CSET_MULTI) /* iso2022jp new jis kanji */
229 1.1 oki #define CSET_JIS1990 (5|CSET_MULTI) /* iso2022jp hojo kanji */
230 1.1 oki
231 1.1 oki struct consdev;
232 1.1 oki
233 1.1 oki /* console related function */
234 1.1 oki void itecnprobe __P((struct consdev *));
235 1.1 oki void itecninit __P((struct consdev *));
236 1.1 oki int itecngetc __P((dev_t));
237 1.1 oki void itecnputc __P((dev_t, int));
238 1.1 oki void itecnfinish __P((struct ite_softc *));
239 1.1 oki
240 1.1 oki /* standard ite device entry points. */
241 1.1 oki void iteinit __P((dev_t));
242 1.1 oki int iteopen __P((dev_t, int, int, struct proc *));
243 1.1 oki int iteclose __P((dev_t, int, int, struct proc *));
244 1.1 oki int iteread __P((dev_t, struct uio *, int));
245 1.1 oki int itewrite __P((dev_t, struct uio *, int));
246 1.1 oki int iteioctl __P((dev_t, u_long, caddr_t, int, struct proc *));
247 1.1 oki void itestart __P((struct tty *));
248 1.1 oki
249 1.1 oki /* ite functions */
250 1.1 oki int ite_on __P((dev_t, int));
251 1.1 oki int ite_off __P((dev_t, int));
252 1.1 oki void ite_reinit __P((dev_t));
253 1.1 oki void ite_reset __P((struct ite_softc *));
254 1.1 oki int ite_cnfilter __P((u_char, enum caller));
255 1.1 oki void ite_filter __P((u_char ,enum caller));
256 1.1 oki
257 1.1 oki /* lower layer functions */
258 1.1 oki int view_cnprobe __P((int));
259 1.1 oki void view_init __P((struct ite_softc *));
260 1.1 oki void view_deinit __P((struct ite_softc *));
261 1.1 oki
262 1.1 oki #ifdef _KERNEL
263 1.1 oki extern struct ite_softc ite_softc[];
264 1.1 oki #if ITEKANJI
265 1.1 oki extern unsigned char kern_font[];
266 1.1 oki #endif
267 1.1 oki #if x68k
268 1.1 oki /* keyboard LED status variable */
269 1.1 oki extern unsigned char kbdled;
270 1.1 oki #endif
271 1.1 oki #endif
272