itevar.h revision 1.1 1 1.1 thorpej /* $NetBSD: itevar.h,v 1.1 1997/02/04 03:52:38 thorpej Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*
4 1.1 thorpej * Copyright (c) 1988 University of Utah.
5 1.1 thorpej * Copyright (c) 1990, 1993
6 1.1 thorpej * The Regents of the University of California. All rights reserved.
7 1.1 thorpej *
8 1.1 thorpej * This code is derived from software contributed to Berkeley by
9 1.1 thorpej * the Systems Programming Group of the University of Utah Computer
10 1.1 thorpej * Science Department.
11 1.1 thorpej *
12 1.1 thorpej * Redistribution and use in source and binary forms, with or without
13 1.1 thorpej * modification, are permitted provided that the following conditions
14 1.1 thorpej * are met:
15 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
16 1.1 thorpej * notice, this list of conditions and the following disclaimer.
17 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
18 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
19 1.1 thorpej * documentation and/or other materials provided with the distribution.
20 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
21 1.1 thorpej * must display the following acknowledgement:
22 1.1 thorpej * This product includes software developed by the University of
23 1.1 thorpej * California, Berkeley and its contributors.
24 1.1 thorpej * 4. Neither the name of the University nor the names of its contributors
25 1.1 thorpej * may be used to endorse or promote products derived from this software
26 1.1 thorpej * without specific prior written permission.
27 1.1 thorpej *
28 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 1.1 thorpej * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 1.1 thorpej * SUCH DAMAGE.
39 1.1 thorpej *
40 1.1 thorpej * from: Utah $Hdr: itevar.h 1.15 92/12/20$
41 1.1 thorpej *
42 1.1 thorpej * @(#)itevar.h 8.1 (Berkeley) 6/10/93
43 1.1 thorpej */
44 1.1 thorpej
45 1.1 thorpej /*
46 1.1 thorpej * Standalone version of hp300 ITE.
47 1.1 thorpej */
48 1.1 thorpej
49 1.1 thorpej #define ITEUNIT(dev) minor(dev)
50 1.1 thorpej
51 1.1 thorpej #define getbyte(ip, offset) \
52 1.1 thorpej ((*(ip)->isw->ite_readbyte)(ip, offset))
53 1.1 thorpej
54 1.1 thorpej #define getword(ip, offset) \
55 1.1 thorpej ((getbyte(ip, offset) << 8) | getbyte(ip, (offset) + 2))
56 1.1 thorpej
57 1.1 thorpej #define writeglyph(ip, offset, fontbuf) \
58 1.1 thorpej ((*(ip)->isw->ite_writeglyph)((ip), (offset), (fontbuf)))
59 1.1 thorpej
60 1.1 thorpej struct ite_data {
61 1.1 thorpej int flags;
62 1.1 thorpej struct tty *tty;
63 1.1 thorpej struct itesw *isw;
64 1.1 thorpej struct grf_data *grf;
65 1.1 thorpej caddr_t regbase, fbbase;
66 1.1 thorpej short curx, cury;
67 1.1 thorpej short cursorx, cursory;
68 1.1 thorpej short cblankx, cblanky;
69 1.1 thorpej short rows, cols;
70 1.1 thorpej short cpl;
71 1.1 thorpej short dheight, dwidth;
72 1.1 thorpej short fbheight, fbwidth;
73 1.1 thorpej short ftheight, ftwidth;
74 1.1 thorpej short fontx, fonty;
75 1.1 thorpej short attribute;
76 1.1 thorpej u_char *attrbuf;
77 1.1 thorpej short planemask;
78 1.1 thorpej short pos;
79 1.1 thorpej char imode, escape, fpd, hold;
80 1.1 thorpej caddr_t devdata; /* display dependent data */
81 1.1 thorpej };
82 1.1 thorpej
83 1.1 thorpej struct itesw {
84 1.1 thorpej int ite_hwid;
85 1.1 thorpej void (*ite_init) __P((struct ite_data *));
86 1.1 thorpej void (*ite_deinit) __P((struct ite_data *));
87 1.1 thorpej void (*ite_clear) __P((struct ite_data *, int, int, int, int));
88 1.1 thorpej void (*ite_putc) __P((struct ite_data *, int, int, int, int));
89 1.1 thorpej void (*ite_cursor) __P((struct ite_data *, int));
90 1.1 thorpej void (*ite_scroll) __P((struct ite_data *, int, int, int, int));
91 1.1 thorpej u_char (*ite_readbyte) __P((struct ite_data *, int));
92 1.1 thorpej void (*ite_writeglyph) __P((struct ite_data *, u_char *, u_char *));
93 1.1 thorpej };
94 1.1 thorpej
95 1.1 thorpej /* Flags */
96 1.1 thorpej #define ITE_ALIVE 0x01 /* hardware exists */
97 1.1 thorpej #define ITE_INITED 0x02 /* device has been initialized */
98 1.1 thorpej #define ITE_CONSOLE 0x04 /* device can be console */
99 1.1 thorpej #define ITE_ISCONS 0x08 /* device is console */
100 1.1 thorpej #define ITE_ACTIVE 0x10 /* device is being used as ITE */
101 1.1 thorpej #define ITE_INGRF 0x20 /* device in use as non-ITE */
102 1.1 thorpej #define ITE_CURSORON 0x40 /* cursor being tracked */
103 1.1 thorpej
104 1.1 thorpej #define attrloc(ip, y, x) \
105 1.1 thorpej (ip->attrbuf + ((y) * ip->cols) + (x))
106 1.1 thorpej
107 1.1 thorpej #define attrclr(ip, sy, sx, h, w) \
108 1.1 thorpej bzero(ip->attrbuf + ((sy) * ip->cols) + (sx), (h) * (w))
109 1.1 thorpej
110 1.1 thorpej #define attrmov(ip, sy, sx, dy, dx, h, w) \
111 1.1 thorpej bcopy(ip->attrbuf + ((sy) * ip->cols) + (sx), \
112 1.1 thorpej ip->attrbuf + ((dy) * ip->cols) + (dx), \
113 1.1 thorpej (h) * (w))
114 1.1 thorpej
115 1.1 thorpej #define attrtest(ip, attr) \
116 1.1 thorpej ((* (u_char *) attrloc(ip, ip->cury, ip->curx)) & attr)
117 1.1 thorpej
118 1.1 thorpej #define attrset(ip, attr) \
119 1.1 thorpej ((* (u_char *) attrloc(ip, ip->cury, ip->curx)) = attr)
120 1.1 thorpej
121 1.1 thorpej /*
122 1.1 thorpej * X and Y location of character 'c' in the framebuffer, in pixels.
123 1.1 thorpej */
124 1.1 thorpej #define charX(ip,c) \
125 1.1 thorpej (((c) % (ip)->cpl) * (ip)->ftwidth + (ip)->fontx)
126 1.1 thorpej
127 1.1 thorpej #define charY(ip,c) \
128 1.1 thorpej (((c) / (ip)->cpl) * (ip)->ftheight + (ip)->fonty)
129 1.1 thorpej
130 1.1 thorpej /*
131 1.1 thorpej * The cursor is just an inverted space.
132 1.1 thorpej */
133 1.1 thorpej #define draw_cursor(ip) { \
134 1.1 thorpej WINDOWMOVER(ip, ip->cblanky, ip->cblankx, \
135 1.1 thorpej ip->cury * ip->ftheight, \
136 1.1 thorpej ip->curx * ip->ftwidth, \
137 1.1 thorpej ip->ftheight, ip->ftwidth, RR_XOR); \
138 1.1 thorpej ip->cursorx = ip->curx; \
139 1.1 thorpej ip->cursory = ip->cury; }
140 1.1 thorpej
141 1.1 thorpej #define erase_cursor(ip) \
142 1.1 thorpej WINDOWMOVER(ip, ip->cblanky, ip->cblankx, \
143 1.1 thorpej ip->cursory * ip->ftheight, \
144 1.1 thorpej ip->cursorx * ip->ftwidth, \
145 1.1 thorpej ip->ftheight, ip->ftwidth, RR_XOR);
146 1.1 thorpej
147 1.1 thorpej /* Character attributes */
148 1.1 thorpej #define ATTR_NOR 0x0 /* normal */
149 1.1 thorpej #define ATTR_INV 0x1 /* inverse */
150 1.1 thorpej #define ATTR_UL 0x2 /* underline */
151 1.1 thorpej #define ATTR_ALL (ATTR_INV | ATTR_UL)
152 1.1 thorpej
153 1.1 thorpej /* Keyboard attributes */
154 1.1 thorpej #define ATTR_KPAD 0x4 /* keypad transmit */
155 1.1 thorpej
156 1.1 thorpej /* Replacement Rules */
157 1.1 thorpej #define RR_CLEAR 0x0
158 1.1 thorpej #define RR_COPY 0x3
159 1.1 thorpej #define RR_XOR 0x6
160 1.1 thorpej #define RR_COPYINVERTED 0xc
161 1.1 thorpej
162 1.1 thorpej #define SCROLL_UP 0x01
163 1.1 thorpej #define SCROLL_DOWN 0x02
164 1.1 thorpej #define SCROLL_LEFT 0x03
165 1.1 thorpej #define SCROLL_RIGHT 0x04
166 1.1 thorpej #define DRAW_CURSOR 0x05
167 1.1 thorpej #define ERASE_CURSOR 0x06
168 1.1 thorpej #define MOVE_CURSOR 0x07
169 1.1 thorpej
170 1.1 thorpej #define KBD_SSHIFT 4 /* bits to shift status */
171 1.1 thorpej #define KBD_CHARMASK 0x7F
172 1.1 thorpej
173 1.1 thorpej /* keyboard status */
174 1.1 thorpej #define KBD_SMASK 0xF /* service request status mask */
175 1.1 thorpej #define KBD_CTRLSHIFT 0x8 /* key + CTRL + SHIFT */
176 1.1 thorpej #define KBD_CTRL 0x9 /* key + CTRL */
177 1.1 thorpej #define KBD_SHIFT 0xA /* key + SHIFT */
178 1.1 thorpej #define KBD_KEY 0xB /* key only */
179 1.1 thorpej
180 1.1 thorpej #define KBD_CAPSLOCK 0x18
181 1.1 thorpej
182 1.1 thorpej #define KBD_EXT_LEFT_DOWN 0x12
183 1.1 thorpej #define KBD_EXT_LEFT_UP 0x92
184 1.1 thorpej #define KBD_EXT_RIGHT_DOWN 0x13
185 1.1 thorpej #define KBD_EXT_RIGHT_UP 0x93
186 1.1 thorpej
187 1.1 thorpej #define TABSIZE 8
188 1.1 thorpej #define TABEND(ip) ((ip)->tty->t_winsize.ws_col - TABSIZE)
189 1.1 thorpej
190 1.1 thorpej extern struct ite_data ite_data[];
191 1.1 thorpej extern struct itesw itesw[];
192 1.1 thorpej extern int nitesw;
193 1.1 thorpej
194 1.1 thorpej /*
195 1.1 thorpej * Prototypes.
196 1.1 thorpej */
197 1.1 thorpej u_char ite_readbyte __P((struct ite_data *, int));
198 1.1 thorpej void ite_writeglyph __P((struct ite_data *, u_char *, u_char *));
199 1.1 thorpej
200 1.1 thorpej /*
201 1.1 thorpej * Framebuffer-specific ITE prototypes.
202 1.1 thorpej */
203 1.1 thorpej void topcat_init __P((struct ite_data *));
204 1.1 thorpej void topcat_clear __P((struct ite_data *, int, int, int, int));
205 1.1 thorpej void topcat_putc __P((struct ite_data *, int, int, int, int));
206 1.1 thorpej void topcat_cursor __P((struct ite_data *, int));
207 1.1 thorpej void topcat_scroll __P((struct ite_data *, int, int, int, int));
208 1.1 thorpej
209 1.1 thorpej void gbox_init __P((struct ite_data *));
210 1.1 thorpej void gbox_clear __P((struct ite_data *, int, int, int, int));
211 1.1 thorpej void gbox_putc __P((struct ite_data *, int, int, int, int));
212 1.1 thorpej void gbox_cursor __P((struct ite_data *, int));
213 1.1 thorpej void gbox_scroll __P((struct ite_data *, int, int, int, int));
214 1.1 thorpej
215 1.1 thorpej void rbox_init __P((struct ite_data *));
216 1.1 thorpej void rbox_clear __P((struct ite_data *, int, int, int, int));
217 1.1 thorpej void rbox_putc __P((struct ite_data *, int, int, int, int));
218 1.1 thorpej void rbox_cursor __P((struct ite_data *, int));
219 1.1 thorpej void rbox_scroll __P((struct ite_data *, int, int, int, int));
220 1.1 thorpej
221 1.1 thorpej void dvbox_init __P((struct ite_data *));
222 1.1 thorpej void dvbox_clear __P((struct ite_data *, int, int, int, int));
223 1.1 thorpej void dvbox_putc __P((struct ite_data *, int, int, int, int));
224 1.1 thorpej void dvbox_cursor __P((struct ite_data *, int));
225 1.1 thorpej void dvbox_scroll __P((struct ite_data *, int, int, int, int));
226 1.1 thorpej
227 1.1 thorpej void hyper_init __P((struct ite_data *));
228 1.1 thorpej void hyper_clear __P((struct ite_data *, int, int, int, int));
229 1.1 thorpej void hyper_putc __P((struct ite_data *, int, int, int, int));
230 1.1 thorpej void hyper_cursor __P((struct ite_data *, int));
231 1.1 thorpej void hyper_scroll __P((struct ite_data *, int, int, int, int));
232