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