smg.c revision 1.27.8.7 1 1.27.8.7 thorpej /* $NetBSD: smg.c,v 1.27.8.7 2003/01/03 16:57:16 thorpej Exp $ */
2 1.1 ragge /*
3 1.1 ragge * Copyright (c) 1998 Ludd, University of Lule}, Sweden.
4 1.1 ragge * All rights reserved.
5 1.1 ragge *
6 1.1 ragge * Redistribution and use in source and binary forms, with or without
7 1.1 ragge * modification, are permitted provided that the following conditions
8 1.1 ragge * are met:
9 1.1 ragge * 1. Redistributions of source code must retain the above copyright
10 1.1 ragge * notice, this list of conditions and the following disclaimer.
11 1.1 ragge * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 ragge * notice, this list of conditions and the following disclaimer in the
13 1.1 ragge * documentation and/or other materials provided with the distribution.
14 1.1 ragge * 3. All advertising materials mentioning features or use of this software
15 1.1 ragge * must display the following acknowledgement:
16 1.6 ragge * This product includes software developed at Ludd, University of
17 1.6 ragge * Lule}, Sweden and its contributors.
18 1.1 ragge * 4. The name of the author may not be used to endorse or promote products
19 1.1 ragge * derived from this software without specific prior written permission
20 1.1 ragge *
21 1.1 ragge * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 1.1 ragge * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 1.1 ragge * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 1.1 ragge * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 1.1 ragge * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 1.1 ragge * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 1.1 ragge * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 1.1 ragge * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 1.1 ragge * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 1.1 ragge * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 1.1 ragge */
32 1.1 ragge
33 1.1 ragge #include <sys/param.h>
34 1.1 ragge #include <sys/device.h>
35 1.1 ragge #include <sys/systm.h>
36 1.21 thorpej #include <sys/callout.h>
37 1.1 ragge #include <sys/time.h>
38 1.1 ragge #include <sys/malloc.h>
39 1.1 ragge #include <sys/conf.h>
40 1.6 ragge #include <sys/kernel.h>
41 1.1 ragge
42 1.26 ragge #include <machine/vsbus.h>
43 1.26 ragge #include <machine/sid.h>
44 1.26 ragge #include <machine/cpu.h>
45 1.26 ragge #include <machine/ka420.h>
46 1.26 ragge
47 1.1 ragge #include <dev/cons.h>
48 1.1 ragge
49 1.27.8.1 nathanw #include <dev/dec/dzreg.h>
50 1.27.8.1 nathanw #include <dev/dec/dzvar.h>
51 1.26 ragge #include <dev/dec/dzkbdvar.h>
52 1.26 ragge
53 1.1 ragge #include <dev/wscons/wsdisplayvar.h>
54 1.1 ragge #include <dev/wscons/wsconsio.h>
55 1.1 ragge #include <dev/wscons/wscons_callbacks.h>
56 1.1 ragge
57 1.26 ragge #include "dzkbd.h"
58 1.26 ragge #include "opt_wsfont.h"
59 1.1 ragge
60 1.26 ragge /* Safety guard */
61 1.26 ragge #ifndef FONT_QVSS8x15
62 1.26 ragge #include <dev/wsfont/qvss8x15.h>
63 1.26 ragge #endif
64 1.1 ragge
65 1.26 ragge /* Screen hardware defs */
66 1.6 ragge #define SM_COLS 128 /* char width of screen */
67 1.6 ragge #define SM_ROWS 57 /* rows of char on screen */
68 1.6 ragge #define SM_CHEIGHT 15 /* lines a char consists of */
69 1.6 ragge #define SM_NEXTROW (SM_COLS * SM_CHEIGHT)
70 1.26 ragge #define SM_YWIDTH 864
71 1.26 ragge #define SM_XWIDTH 1024
72 1.26 ragge
73 1.26 ragge /* Cursor register definitions */
74 1.26 ragge #define CUR_CMD 0
75 1.26 ragge #define CUR_XPOS 4
76 1.26 ragge #define CUR_YPOS 8
77 1.26 ragge #define CUR_XMIN_1 12
78 1.26 ragge #define CUR_XMAX_1 16
79 1.26 ragge #define CUR_YMIN_1 20
80 1.26 ragge #define CUR_YMAX_1 24
81 1.26 ragge #define CUR_XMIN_2 28
82 1.26 ragge #define CUR_XMAX_2 32
83 1.26 ragge #define CUR_YMIN_2 36
84 1.26 ragge #define CUR_YMAX_2 40
85 1.26 ragge #define CUR_LOAD 44
86 1.26 ragge
87 1.26 ragge #define CUR_CMD_TEST 0x8000
88 1.26 ragge #define CUR_CMD_HSHI 0x4000
89 1.26 ragge #define CUR_CMD_VBHI 0x2000
90 1.26 ragge #define CUR_CMD_LODSA 0x1000
91 1.26 ragge #define CUR_CMD_FORG2 0x0800
92 1.26 ragge #define CUR_CMD_ENRG2 0x0400
93 1.26 ragge #define CUR_CMD_FORG1 0x0200
94 1.26 ragge #define CUR_CMD_ENRG1 0x0100
95 1.26 ragge #define CUR_CMD_XHWID 0x0080
96 1.26 ragge #define CUR_CMD_XHCL1 0x0040
97 1.26 ragge #define CUR_CMD_XHCLP 0x0020
98 1.26 ragge #define CUR_CMD_XHAIR 0x0010
99 1.26 ragge #define CUR_CMD_FOPB 0x0008
100 1.26 ragge #define CUR_CMD_ENPB 0x0004
101 1.26 ragge #define CUR_CMD_FOPA 0x0002
102 1.26 ragge #define CUR_CMD_ENPA 0x0001
103 1.26 ragge
104 1.26 ragge #define CUR_XBIAS 216 /* Add to cursor position */
105 1.26 ragge #define CUR_YBIAS 33
106 1.26 ragge
107 1.26 ragge #define WRITECUR(addr, val) *(volatile short *)(curaddr + (addr)) = (val)
108 1.26 ragge static caddr_t curaddr;
109 1.26 ragge static short curcmd, curx, cury, hotX, hotY;
110 1.26 ragge static int bgmask, fgmask;
111 1.1 ragge
112 1.24 matt static int smg_match(struct device *, struct cfdata *, void *);
113 1.24 matt static void smg_attach(struct device *, struct device *, void *);
114 1.1 ragge
115 1.1 ragge struct smg_softc {
116 1.1 ragge struct device ss_dev;
117 1.1 ragge };
118 1.1 ragge
119 1.27.8.6 nathanw CFATTACH_DECL(smg, sizeof(struct smg_softc),
120 1.27.8.6 nathanw smg_match, smg_attach, NULL, NULL);
121 1.1 ragge
122 1.24 matt static void smg_cursor(void *, int, int, int);
123 1.24 matt static int smg_mapchar(void *, int, unsigned int *);
124 1.24 matt static void smg_putchar(void *, int, int, u_int, long);
125 1.24 matt static void smg_copycols(void *, int, int, int,int);
126 1.24 matt static void smg_erasecols(void *, int, int, int, long);
127 1.24 matt static void smg_copyrows(void *, int, int, int);
128 1.24 matt static void smg_eraserows(void *, int, int, long);
129 1.27.8.4 nathanw static int smg_allocattr(void *, int, int, int, long *);
130 1.1 ragge
131 1.1 ragge const struct wsdisplay_emulops smg_emulops = {
132 1.1 ragge smg_cursor,
133 1.5 drochner smg_mapchar,
134 1.4 drochner smg_putchar,
135 1.1 ragge smg_copycols,
136 1.1 ragge smg_erasecols,
137 1.1 ragge smg_copyrows,
138 1.1 ragge smg_eraserows,
139 1.27.8.4 nathanw smg_allocattr
140 1.1 ragge };
141 1.1 ragge
142 1.1 ragge const struct wsscreen_descr smg_stdscreen = {
143 1.6 ragge "128x57", SM_COLS, SM_ROWS,
144 1.6 ragge &smg_emulops,
145 1.6 ragge 8, SM_CHEIGHT,
146 1.6 ragge WSSCREEN_UNDERLINE|WSSCREEN_REVERSE,
147 1.1 ragge };
148 1.1 ragge
149 1.1 ragge const struct wsscreen_descr *_smg_scrlist[] = {
150 1.1 ragge &smg_stdscreen,
151 1.1 ragge };
152 1.1 ragge
153 1.1 ragge const struct wsscreen_list smg_screenlist = {
154 1.1 ragge sizeof(_smg_scrlist) / sizeof(struct wsscreen_descr *),
155 1.1 ragge _smg_scrlist,
156 1.1 ragge };
157 1.1 ragge
158 1.12 ragge static caddr_t sm_addr;
159 1.12 ragge
160 1.26 ragge extern struct wsdisplay_font qvss8x15;
161 1.26 ragge static u_char *qf;
162 1.26 ragge
163 1.6 ragge #define QCHAR(c) (c < 32 ? 32 : (c > 127 ? c - 66 : c - 32))
164 1.26 ragge #define QFONT(c,line) qf[QCHAR(c) * 15 + line]
165 1.6 ragge #define SM_ADDR(row, col, line) \
166 1.6 ragge sm_addr[col + (row * SM_CHEIGHT * SM_COLS) + line * SM_COLS]
167 1.6 ragge
168 1.6 ragge
169 1.24 matt static int smg_ioctl(void *, u_long, caddr_t, int, struct proc *);
170 1.24 matt static paddr_t smg_mmap(void *, off_t, int);
171 1.24 matt static int smg_alloc_screen(void *, const struct wsscreen_descr *,
172 1.24 matt void **, int *, int *, long *);
173 1.24 matt static void smg_free_screen(void *, void *);
174 1.24 matt static int smg_show_screen(void *, void *, int,
175 1.24 matt void (*) (void *, int, int), void *);
176 1.24 matt static void smg_crsr_blink(void *);
177 1.1 ragge
178 1.1 ragge const struct wsdisplay_accessops smg_accessops = {
179 1.1 ragge smg_ioctl,
180 1.1 ragge smg_mmap,
181 1.1 ragge smg_alloc_screen,
182 1.1 ragge smg_free_screen,
183 1.1 ragge smg_show_screen,
184 1.11 drochner 0 /* load_font */
185 1.1 ragge };
186 1.1 ragge
187 1.1 ragge struct smg_screen {
188 1.1 ragge int ss_curx;
189 1.1 ragge int ss_cury;
190 1.2 ragge u_char ss_image[SM_ROWS][SM_COLS]; /* Image of current screen */
191 1.6 ragge u_char ss_attr[SM_ROWS][SM_COLS]; /* Reversed etc... */
192 1.1 ragge };
193 1.1 ragge
194 1.2 ragge static struct smg_screen smg_conscreen;
195 1.2 ragge static struct smg_screen *curscr;
196 1.1 ragge
197 1.21 thorpej static struct callout smg_cursor_ch = CALLOUT_INITIALIZER;
198 1.21 thorpej
199 1.1 ragge int
200 1.26 ragge smg_match(struct device *parent, struct cfdata *match, void *aux)
201 1.1 ragge {
202 1.15 ragge struct vsbus_attach_args *va = aux;
203 1.17 ragge volatile short *curcmd;
204 1.17 ragge volatile short *cfgtst;
205 1.15 ragge short tmp, tmp2;
206 1.15 ragge
207 1.27 ragge if (vax_boardtype == VAX_BTYP_49 || vax_boardtype == VAX_BTYP_53)
208 1.17 ragge return 0;
209 1.17 ragge
210 1.17 ragge curcmd = (short *)va->va_addr;
211 1.17 ragge cfgtst = (short *)vax_map_physmem(VS_CFGTST, 1);
212 1.15 ragge /*
213 1.15 ragge * Try to find the cursor chip by testing the flip-flop.
214 1.15 ragge * If nonexistent, no glass tty.
215 1.15 ragge */
216 1.26 ragge curcmd[0] = CUR_CMD_HSHI|CUR_CMD_FOPB;
217 1.15 ragge DELAY(300000);
218 1.15 ragge tmp = cfgtst[0];
219 1.26 ragge curcmd[0] = CUR_CMD_TEST|CUR_CMD_HSHI;
220 1.15 ragge DELAY(300000);
221 1.15 ragge tmp2 = cfgtst[0];
222 1.15 ragge vax_unmap_physmem((vaddr_t)cfgtst, 1);
223 1.15 ragge
224 1.15 ragge if (tmp2 != tmp)
225 1.15 ragge return 20; /* Using periodic interrupt */
226 1.15 ragge else
227 1.12 ragge return 0;
228 1.1 ragge }
229 1.1 ragge
230 1.1 ragge void
231 1.26 ragge smg_attach(struct device *parent, struct device *self, void *aux)
232 1.1 ragge {
233 1.1 ragge struct wsemuldisplaydev_attach_args aa;
234 1.1 ragge
235 1.1 ragge printf("\n");
236 1.15 ragge sm_addr = (caddr_t)vax_map_physmem(SMADDR, (SMSIZE/VAX_NBPG));
237 1.26 ragge curaddr = (caddr_t)vax_map_physmem(KA420_CUR_BASE, 1);
238 1.15 ragge if (sm_addr == 0) {
239 1.15 ragge printf("%s: Couldn't alloc graphics memory.\n", self->dv_xname);
240 1.15 ragge return;
241 1.15 ragge }
242 1.2 ragge curscr = &smg_conscreen;
243 1.27.8.3 nathanw aa.console = (vax_confdata & (KA420_CFG_L3CON|KA420_CFG_MULTU)) == 0;
244 1.27.8.3 nathanw
245 1.1 ragge aa.scrdata = &smg_screenlist;
246 1.1 ragge aa.accessops = &smg_accessops;
247 1.22 ragge callout_reset(&smg_cursor_ch, hz / 2, smg_crsr_blink, NULL);
248 1.26 ragge curcmd = CUR_CMD_HSHI;
249 1.26 ragge WRITECUR(CUR_CMD, curcmd);
250 1.26 ragge qf = qvss8x15.data;
251 1.1 ragge
252 1.1 ragge config_found(self, &aa, wsemuldisplaydevprint);
253 1.1 ragge }
254 1.1 ragge
255 1.6 ragge static u_char *cursor;
256 1.6 ragge static int cur_on;
257 1.6 ragge
258 1.6 ragge static void
259 1.26 ragge smg_crsr_blink(void *arg)
260 1.6 ragge {
261 1.6 ragge if (cur_on)
262 1.6 ragge *cursor ^= 255;
263 1.21 thorpej callout_reset(&smg_cursor_ch, hz / 2, smg_crsr_blink, NULL);
264 1.6 ragge }
265 1.6 ragge
266 1.1 ragge void
267 1.26 ragge smg_cursor(void *id, int on, int row, int col)
268 1.1 ragge {
269 1.2 ragge struct smg_screen *ss = id;
270 1.2 ragge
271 1.6 ragge if (ss == curscr) {
272 1.6 ragge SM_ADDR(ss->ss_cury, ss->ss_curx, 14) =
273 1.6 ragge QFONT(ss->ss_image[ss->ss_cury][ss->ss_curx], 14);
274 1.6 ragge cursor = &SM_ADDR(row, col, 14);
275 1.6 ragge if ((cur_on = on))
276 1.6 ragge *cursor ^= 255;
277 1.6 ragge }
278 1.2 ragge ss->ss_curx = col;
279 1.2 ragge ss->ss_cury = row;
280 1.5 drochner }
281 1.5 drochner
282 1.14 ragge int
283 1.26 ragge smg_mapchar(void *id, int uni, unsigned int *index)
284 1.5 drochner {
285 1.13 drochner if (uni < 256) {
286 1.13 drochner *index = uni;
287 1.13 drochner return (5);
288 1.13 drochner }
289 1.13 drochner *index = ' ';
290 1.5 drochner return (0);
291 1.1 ragge }
292 1.1 ragge
293 1.1 ragge static void
294 1.26 ragge smg_putchar(void *id, int row, int col, u_int c, long attr)
295 1.1 ragge {
296 1.2 ragge struct smg_screen *ss = id;
297 1.4 drochner int i;
298 1.1 ragge
299 1.4 drochner c &= 0xff;
300 1.4 drochner
301 1.4 drochner ss->ss_image[row][col] = c;
302 1.6 ragge ss->ss_attr[row][col] = attr;
303 1.2 ragge if (ss != curscr)
304 1.2 ragge return;
305 1.6 ragge for (i = 0; i < 15; i++) {
306 1.6 ragge unsigned char ch = QFONT(c, i);
307 1.6 ragge
308 1.6 ragge SM_ADDR(row, col, i) = (attr & WSATTR_REVERSE ? ~ch : ch);
309 1.6 ragge
310 1.6 ragge }
311 1.6 ragge if (attr & WSATTR_UNDERLINE)
312 1.6 ragge SM_ADDR(row, col, 14) ^= SM_ADDR(row, col, 14);
313 1.1 ragge }
314 1.1 ragge
315 1.1 ragge /*
316 1.1 ragge * copies columns inside a row.
317 1.1 ragge */
318 1.1 ragge static void
319 1.26 ragge smg_copycols(void *id, int row, int srccol, int dstcol, int ncols)
320 1.1 ragge {
321 1.2 ragge struct smg_screen *ss = id;
322 1.1 ragge int i;
323 1.1 ragge
324 1.2 ragge bcopy(&ss->ss_image[row][srccol], &ss->ss_image[row][dstcol], ncols);
325 1.6 ragge bcopy(&ss->ss_attr[row][srccol], &ss->ss_attr[row][dstcol], ncols);
326 1.2 ragge if (ss != curscr)
327 1.2 ragge return;
328 1.1 ragge for (i = 0; i < SM_CHEIGHT; i++)
329 1.6 ragge bcopy(&SM_ADDR(row,srccol, i), &SM_ADDR(row, dstcol, i),ncols);
330 1.1 ragge }
331 1.1 ragge
332 1.1 ragge /*
333 1.1 ragge * Erases a bunch of chars inside one row.
334 1.1 ragge */
335 1.1 ragge static void
336 1.26 ragge smg_erasecols(void *id, int row, int startcol, int ncols, long fillattr)
337 1.1 ragge {
338 1.2 ragge struct smg_screen *ss = id;
339 1.1 ragge int i;
340 1.1 ragge
341 1.2 ragge bzero(&ss->ss_image[row][startcol], ncols);
342 1.6 ragge bzero(&ss->ss_attr[row][startcol], ncols);
343 1.2 ragge if (ss != curscr)
344 1.2 ragge return;
345 1.1 ragge for (i = 0; i < SM_CHEIGHT; i++)
346 1.6 ragge bzero(&SM_ADDR(row, startcol, i), ncols);
347 1.1 ragge }
348 1.1 ragge
349 1.1 ragge static void
350 1.26 ragge smg_copyrows(void *id, int srcrow, int dstrow, int nrows)
351 1.1 ragge {
352 1.2 ragge struct smg_screen *ss = id;
353 1.1 ragge int frows;
354 1.1 ragge
355 1.6 ragge bcopy(&ss->ss_image[srcrow][0], &ss->ss_image[dstrow][0],
356 1.6 ragge nrows * SM_COLS);
357 1.6 ragge bcopy(&ss->ss_attr[srcrow][0], &ss->ss_attr[dstrow][0],
358 1.6 ragge nrows * SM_COLS);
359 1.2 ragge if (ss != curscr)
360 1.2 ragge return;
361 1.1 ragge if (nrows > 25) {
362 1.1 ragge frows = nrows >> 1;
363 1.1 ragge if (srcrow > dstrow) {
364 1.1 ragge bcopy(&sm_addr[(srcrow * SM_NEXTROW)],
365 1.1 ragge &sm_addr[(dstrow * SM_NEXTROW)],
366 1.1 ragge frows * SM_NEXTROW);
367 1.1 ragge bcopy(&sm_addr[((srcrow + frows) * SM_NEXTROW)],
368 1.1 ragge &sm_addr[((dstrow + frows) * SM_NEXTROW)],
369 1.1 ragge (nrows - frows) * SM_NEXTROW);
370 1.1 ragge } else {
371 1.1 ragge bcopy(&sm_addr[((srcrow + frows) * SM_NEXTROW)],
372 1.1 ragge &sm_addr[((dstrow + frows) * SM_NEXTROW)],
373 1.1 ragge (nrows - frows) * SM_NEXTROW);
374 1.1 ragge bcopy(&sm_addr[(srcrow * SM_NEXTROW)],
375 1.1 ragge &sm_addr[(dstrow * SM_NEXTROW)],
376 1.1 ragge frows * SM_NEXTROW);
377 1.1 ragge }
378 1.1 ragge } else
379 1.1 ragge bcopy(&sm_addr[(srcrow * SM_NEXTROW)],
380 1.1 ragge &sm_addr[(dstrow * SM_NEXTROW)], nrows * SM_NEXTROW);
381 1.1 ragge }
382 1.1 ragge
383 1.1 ragge static void
384 1.26 ragge smg_eraserows(void *id, int startrow, int nrows, long fillattr)
385 1.1 ragge {
386 1.2 ragge struct smg_screen *ss = id;
387 1.1 ragge int frows;
388 1.1 ragge
389 1.6 ragge bzero(&ss->ss_image[startrow][0], nrows * SM_COLS);
390 1.6 ragge bzero(&ss->ss_attr[startrow][0], nrows * SM_COLS);
391 1.2 ragge if (ss != curscr)
392 1.2 ragge return;
393 1.1 ragge if (nrows > 25) {
394 1.1 ragge frows = nrows >> 1;
395 1.1 ragge bzero(&sm_addr[(startrow * SM_NEXTROW)], frows * SM_NEXTROW);
396 1.1 ragge bzero(&sm_addr[((startrow + frows) * SM_NEXTROW)],
397 1.1 ragge (nrows - frows) * SM_NEXTROW);
398 1.1 ragge } else
399 1.1 ragge bzero(&sm_addr[(startrow * SM_NEXTROW)], nrows * SM_NEXTROW);
400 1.1 ragge }
401 1.1 ragge
402 1.1 ragge static int
403 1.27.8.4 nathanw smg_allocattr(void *id, int fg, int bg, int flags, long *attrp)
404 1.1 ragge {
405 1.6 ragge *attrp = flags;
406 1.1 ragge return 0;
407 1.1 ragge }
408 1.1 ragge
409 1.26 ragge static void
410 1.26 ragge setcursor(struct wsdisplay_cursor *v)
411 1.26 ragge {
412 1.27.8.7 thorpej u_short red, green, blue;
413 1.27.8.7 thorpej u_int32_t curfg[16], curmask[16];
414 1.26 ragge int i;
415 1.26 ragge
416 1.26 ragge /* Enable cursor */
417 1.26 ragge if (v->which & WSDISPLAY_CURSOR_DOCUR) {
418 1.26 ragge if (v->enable)
419 1.26 ragge curcmd |= CUR_CMD_ENPB|CUR_CMD_ENPA;
420 1.26 ragge else
421 1.26 ragge curcmd &= ~(CUR_CMD_ENPB|CUR_CMD_ENPA);
422 1.26 ragge WRITECUR(CUR_CMD, curcmd);
423 1.26 ragge }
424 1.26 ragge if (v->which & WSDISPLAY_CURSOR_DOHOT) {
425 1.26 ragge hotX = v->hot.x;
426 1.26 ragge hotY = v->hot.y;
427 1.26 ragge }
428 1.26 ragge if (v->which & WSDISPLAY_CURSOR_DOCMAP) {
429 1.26 ragge /* First background */
430 1.26 ragge red = fusword(v->cmap.red);
431 1.26 ragge green = fusword(v->cmap.green);
432 1.26 ragge blue = fusword(v->cmap.blue);
433 1.26 ragge bgmask = (((30L * red + 59L * green + 11L * blue) >> 8) >=
434 1.26 ragge (((1<<8)-1)*50)) ? ~0 : 0;
435 1.26 ragge red = fusword(v->cmap.red+2);
436 1.26 ragge green = fusword(v->cmap.green+2);
437 1.26 ragge blue = fusword(v->cmap.blue+2);
438 1.26 ragge fgmask = (((30L * red + 59L * green + 11L * blue) >> 8) >=
439 1.26 ragge (((1<<8)-1)*50)) ? ~0 : 0;
440 1.26 ragge }
441 1.26 ragge if (v->which & WSDISPLAY_CURSOR_DOSHAPE) {
442 1.26 ragge WRITECUR(CUR_CMD, curcmd | CUR_CMD_LODSA);
443 1.26 ragge copyin(v->image, curfg, sizeof(curfg));
444 1.26 ragge copyin(v->mask, curmask, sizeof(curmask));
445 1.27.8.7 thorpej for (i = 0; i < sizeof(curfg)/sizeof(curfg[0]); i++) {
446 1.27.8.7 thorpej WRITECUR(CUR_LOAD, ((u_int16_t)curfg[i] & fgmask) |
447 1.27.8.7 thorpej (((u_int16_t)curmask[i] & (u_int16_t)~curfg[i])
448 1.27.8.7 thorpej & bgmask));
449 1.26 ragge }
450 1.27.8.7 thorpej for (i = 0; i < sizeof(curmask)/sizeof(curmask[0]); i++) {
451 1.27.8.7 thorpej WRITECUR(CUR_LOAD, (u_int16_t)curmask[i]);
452 1.26 ragge }
453 1.26 ragge WRITECUR(CUR_CMD, curcmd);
454 1.26 ragge }
455 1.26 ragge }
456 1.26 ragge
457 1.1 ragge int
458 1.26 ragge smg_ioctl(void *v, u_long cmd, caddr_t data, int flag, struct proc *p)
459 1.1 ragge {
460 1.26 ragge struct wsdisplay_fbinfo *fb = (void *)data;
461 1.26 ragge static short curc;
462 1.8 ragge
463 1.8 ragge switch (cmd) {
464 1.8 ragge case WSDISPLAYIO_GTYPE:
465 1.26 ragge *(u_int *)data = WSDISPLAY_TYPE_VAX_MONO;
466 1.8 ragge break;
467 1.8 ragge
468 1.8 ragge case WSDISPLAYIO_GINFO:
469 1.26 ragge fb->height = SM_YWIDTH;
470 1.26 ragge fb->width = SM_XWIDTH;
471 1.26 ragge fb->depth = 1;
472 1.26 ragge fb->cmsize = 2;
473 1.26 ragge break;
474 1.26 ragge
475 1.26 ragge case WSDISPLAYIO_SVIDEO:
476 1.26 ragge if (*(u_int *)data == WSDISPLAYIO_VIDEO_ON) {
477 1.26 ragge curcmd = curc;
478 1.26 ragge } else {
479 1.26 ragge curc = curcmd;
480 1.26 ragge curcmd &= ~(CUR_CMD_FOPA|CUR_CMD_ENPA);
481 1.26 ragge curcmd |= CUR_CMD_FOPB;
482 1.26 ragge }
483 1.26 ragge WRITECUR(CUR_CMD, curcmd);
484 1.26 ragge break;
485 1.26 ragge
486 1.26 ragge case WSDISPLAYIO_GVIDEO:
487 1.26 ragge *(u_int *)data = (curcmd & CUR_CMD_FOPB ?
488 1.26 ragge WSDISPLAYIO_VIDEO_OFF : WSDISPLAYIO_VIDEO_ON);
489 1.26 ragge break;
490 1.26 ragge
491 1.26 ragge case WSDISPLAYIO_SCURSOR:
492 1.26 ragge setcursor((struct wsdisplay_cursor *)data);
493 1.26 ragge break;
494 1.26 ragge
495 1.26 ragge case WSDISPLAYIO_SCURPOS:
496 1.26 ragge curx = ((struct wsdisplay_curpos *)data)->x;
497 1.26 ragge cury = ((struct wsdisplay_curpos *)data)->y;
498 1.26 ragge WRITECUR(CUR_XPOS, curx + CUR_XBIAS);
499 1.26 ragge WRITECUR(CUR_YPOS, cury + CUR_YBIAS);
500 1.26 ragge break;
501 1.26 ragge
502 1.26 ragge case WSDISPLAYIO_GCURPOS:
503 1.26 ragge ((struct wsdisplay_curpos *)data)->x = curx;
504 1.26 ragge ((struct wsdisplay_curpos *)data)->y = cury;
505 1.27.8.7 thorpej break;
506 1.27.8.7 thorpej
507 1.27.8.7 thorpej case WSDISPLAYIO_GCURMAX:
508 1.27.8.7 thorpej ((struct wsdisplay_curpos *)data)->x = 16;
509 1.27.8.7 thorpej ((struct wsdisplay_curpos *)data)->y = 16;
510 1.26 ragge break;
511 1.8 ragge
512 1.8 ragge default:
513 1.27.8.2 nathanw return EPASSTHROUGH;
514 1.8 ragge }
515 1.8 ragge return 0;
516 1.1 ragge }
517 1.1 ragge
518 1.23 simonb static paddr_t
519 1.26 ragge smg_mmap(void *v, off_t offset, int prot)
520 1.1 ragge {
521 1.9 mrg if (offset >= SMSIZE || offset < 0)
522 1.8 ragge return -1;
523 1.20 ragge return (SMADDR + offset) >> PGSHIFT;
524 1.1 ragge }
525 1.1 ragge
526 1.1 ragge int
527 1.26 ragge smg_alloc_screen(void *v, const struct wsscreen_descr *type, void **cookiep,
528 1.26 ragge int *curxp, int *curyp, long *defattrp)
529 1.1 ragge {
530 1.2 ragge *cookiep = malloc(sizeof(struct smg_screen), M_DEVBUF, M_WAITOK);
531 1.3 ragge bzero(*cookiep, sizeof(struct smg_screen));
532 1.3 ragge *curxp = *curyp = *defattrp = 0;
533 1.1 ragge return 0;
534 1.1 ragge }
535 1.1 ragge
536 1.1 ragge void
537 1.26 ragge smg_free_screen(void *v, void *cookie)
538 1.1 ragge {
539 1.1 ragge }
540 1.1 ragge
541 1.19 drochner int
542 1.26 ragge smg_show_screen(void *v, void *cookie, int waitok,
543 1.26 ragge void (*cb)(void *, int, int), void *cbarg)
544 1.1 ragge {
545 1.2 ragge struct smg_screen *ss = cookie;
546 1.2 ragge int row, col, line;
547 1.2 ragge
548 1.2 ragge if (ss == curscr)
549 1.19 drochner return (0);
550 1.2 ragge
551 1.6 ragge for (row = 0; row < SM_ROWS; row++)
552 1.8 ragge for (line = 0; line < SM_CHEIGHT; line++) {
553 1.6 ragge for (col = 0; col < SM_COLS; col++) {
554 1.6 ragge u_char s, c = ss->ss_image[row][col];
555 1.6 ragge
556 1.6 ragge if (c < 32)
557 1.6 ragge c = 32;
558 1.6 ragge s = QFONT(c, line);
559 1.6 ragge if (ss->ss_attr[row][col] & WSATTR_REVERSE)
560 1.6 ragge s ^= 255;
561 1.6 ragge SM_ADDR(row, col, line) = s;
562 1.2 ragge }
563 1.8 ragge if (ss->ss_attr[row][col] & WSATTR_UNDERLINE)
564 1.8 ragge SM_ADDR(row, col, line) = 255;
565 1.8 ragge }
566 1.6 ragge cursor = &sm_addr[(ss->ss_cury * SM_CHEIGHT * SM_COLS) + ss->ss_curx +
567 1.6 ragge ((SM_CHEIGHT - 1) * SM_COLS)];
568 1.2 ragge curscr = ss;
569 1.19 drochner return (0);
570 1.1 ragge }
571 1.1 ragge
572 1.1 ragge cons_decl(smg);
573 1.1 ragge
574 1.1 ragge void
575 1.1 ragge smgcninit(cndev)
576 1.6 ragge struct consdev *cndev;
577 1.1 ragge {
578 1.24 matt extern void lkccninit(struct consdev *);
579 1.24 matt extern int lkccngetc(dev_t);
580 1.26 ragge extern int dz_vsbus_lk201_cnattach __P((int));
581 1.1 ragge /* Clear screen */
582 1.10 ragge memset(sm_addr, 0, 128*864);
583 1.1 ragge
584 1.2 ragge curscr = &smg_conscreen;
585 1.2 ragge wsdisplay_cnattach(&smg_stdscreen, &smg_conscreen, 0, 0, 0);
586 1.18 ragge cn_tab->cn_pri = CN_INTERNAL;
587 1.26 ragge qf = qvss8x15.data;
588 1.26 ragge
589 1.26 ragge #if NDZKBD > 0
590 1.26 ragge dzkbd_cnattach(0); /* Connect keyboard and screen together */
591 1.1 ragge #endif
592 1.1 ragge }
593 1.1 ragge
594 1.18 ragge /*
595 1.18 ragge * Called very early to setup the glass tty as console.
596 1.18 ragge * Because it's called before the VM system is inited, virtual memory
597 1.18 ragge * for the framebuffer can be stolen directly without disturbing anything.
598 1.18 ragge */
599 1.18 ragge void
600 1.18 ragge smgcnprobe(cndev)
601 1.18 ragge struct consdev *cndev;
602 1.1 ragge {
603 1.18 ragge extern vaddr_t virtual_avail;
604 1.27.8.5 nathanw extern const struct cdevsw wsdisplay_cdevsw;
605 1.18 ragge
606 1.1 ragge switch (vax_boardtype) {
607 1.1 ragge case VAX_BTYP_410:
608 1.1 ragge case VAX_BTYP_420:
609 1.1 ragge case VAX_BTYP_43:
610 1.16 ragge if ((vax_confdata & KA420_CFG_L3CON) ||
611 1.16 ragge (vax_confdata & KA420_CFG_MULTU))
612 1.16 ragge break; /* doesn't use graphics console */
613 1.18 ragge sm_addr = (caddr_t)virtual_avail;
614 1.18 ragge virtual_avail += SMSIZE;
615 1.18 ragge ioaccess((vaddr_t)sm_addr, SMADDR, (SMSIZE/VAX_NBPG));
616 1.18 ragge cndev->cn_pri = CN_INTERNAL;
617 1.27.8.5 nathanw cndev->cn_dev = makedev(cdevsw_lookup_major(&wsdisplay_cdevsw),
618 1.27.8.5 nathanw 0);
619 1.18 ragge break;
620 1.1 ragge
621 1.1 ragge default:
622 1.1 ragge break;
623 1.1 ragge }
624 1.1 ragge }
625