vidcvideo.c revision 1.32 1 1.32 chris /* $NetBSD: vidcvideo.c,v 1.32 2008/02/03 19:38:29 chris Exp $ */
2 1.1 reinoud
3 1.1 reinoud /*
4 1.1 reinoud * Copyright (c) 2001 Reinoud Zandijk
5 1.1 reinoud * Copyright (c) 1998, 1999 Tohru Nishimura. All rights reserved.
6 1.1 reinoud *
7 1.1 reinoud * Redistribution and use in source and binary forms, with or without
8 1.1 reinoud * modification, are permitted provided that the following conditions
9 1.1 reinoud * are met:
10 1.1 reinoud * 1. Redistributions of source code must retain the above copyright
11 1.1 reinoud * notice, this list of conditions and the following disclaimer.
12 1.1 reinoud * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 reinoud * notice, this list of conditions and the following disclaimer in the
14 1.1 reinoud * documentation and/or other materials provided with the distribution.
15 1.1 reinoud * 3. All advertising materials mentioning features or use of this software
16 1.1 reinoud * must display the following acknowledgement:
17 1.1 reinoud * This product includes software developed by Tohru Nishimura
18 1.1 reinoud * and Reinoud Zandijk for the NetBSD Project.
19 1.1 reinoud * 4. The name of the author may not be used to endorse or promote products
20 1.1 reinoud * derived from this software without specific prior written permission
21 1.1 reinoud *
22 1.1 reinoud * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 reinoud * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 reinoud * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 reinoud * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.1 reinoud * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.1 reinoud * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.1 reinoud * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.1 reinoud * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.1 reinoud * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 1.1 reinoud * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 reinoud *
33 1.1 reinoud * Created vidcvideo.c from /dev/tc/cfb.c to fit the Acorn/ARM VIDC1 and VIDC20 chips
34 1.1 reinoud *
35 1.1 reinoud */
36 1.1 reinoud
37 1.1 reinoud #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
38 1.1 reinoud
39 1.32 chris __KERNEL_RCSID(0, "$NetBSD: vidcvideo.c,v 1.32 2008/02/03 19:38:29 chris Exp $");
40 1.1 reinoud
41 1.1 reinoud #include <sys/param.h>
42 1.1 reinoud #include <sys/systm.h>
43 1.1 reinoud #include <sys/kernel.h>
44 1.1 reinoud #include <sys/device.h>
45 1.1 reinoud #include <sys/malloc.h>
46 1.1 reinoud #include <sys/buf.h>
47 1.1 reinoud #include <sys/ioctl.h>
48 1.1 reinoud
49 1.1 reinoud #include <arm/mainbus/mainbus.h>
50 1.1 reinoud #include <machine/bus.h>
51 1.1 reinoud #include <machine/intr.h>
52 1.1 reinoud
53 1.1 reinoud #include <dev/wscons/wsconsio.h>
54 1.1 reinoud #include <dev/wscons/wsdisplayvar.h>
55 1.1 reinoud
56 1.1 reinoud #include <dev/rasops/rasops.h>
57 1.1 reinoud #include <dev/wsfont/wsfont.h>
58 1.1 reinoud
59 1.1 reinoud #include <uvm/uvm_extern.h>
60 1.1 reinoud #include <arm/arm32/pmap.h>
61 1.9 reinoud #include <arm/cpufunc.h>
62 1.1 reinoud
63 1.1 reinoud /* for vidc_mode ... needs to be MI indepenent one day */
64 1.1 reinoud #include <arm/iomd/vidc.h>
65 1.1 reinoud #include <arm/iomd/vidc20config.h>
66 1.9 reinoud #include <arm/iomd/vidcvideo.h>
67 1.1 reinoud #include <machine/bootconfig.h>
68 1.9 reinoud
69 1.1 reinoud /* FOR DEBUG */
70 1.1 reinoud extern videomemory_t videomemory;
71 1.1 reinoud
72 1.1 reinoud struct hwcmap256 {
73 1.1 reinoud #define CMAP_SIZE 256 /* 256 R/G/B entries */
74 1.1 reinoud u_int8_t r[CMAP_SIZE];
75 1.1 reinoud u_int8_t g[CMAP_SIZE];
76 1.1 reinoud u_int8_t b[CMAP_SIZE];
77 1.1 reinoud };
78 1.1 reinoud
79 1.1 reinoud
80 1.1 reinoud /* XXX for CURSOR_MAX_WIDTH = 32 */
81 1.1 reinoud struct hwcursor32 {
82 1.1 reinoud struct wsdisplay_curpos cc_pos;
83 1.1 reinoud struct wsdisplay_curpos cc_hot;
84 1.1 reinoud struct wsdisplay_curpos cc_size;
85 1.1 reinoud u_int8_t cc_color[6]; /* how many? */
86 1.1 reinoud u_int32_t cc_image[(CURSOR_MAX_WIDTH/4) * CURSOR_MAX_HEIGHT];
87 1.1 reinoud u_int32_t cc_mask[(CURSOR_MAX_WIDTH/4) * CURSOR_MAX_HEIGHT];
88 1.1 reinoud };
89 1.1 reinoud
90 1.1 reinoud
91 1.9 reinoud struct fb_devconfig {
92 1.11 reinoud vaddr_t dc_vaddr; /* memory space virtual base address */
93 1.11 reinoud paddr_t dc_paddr; /* memory space physical base address */
94 1.11 reinoud vsize_t dc_size; /* size of slot memory */
95 1.11 reinoud int dc_wid; /* width of frame buffer */
96 1.11 reinoud int dc_ht; /* height of frame buffer */
97 1.11 reinoud int dc_log2_depth; /* log2 of bits per pixel */
98 1.11 reinoud int dc_depth; /* depth, bits per pixel */
99 1.11 reinoud int dc_rowbytes; /* bytes in a FB scan line */
100 1.11 reinoud vaddr_t dc_videobase; /* base of flat frame buffer */
101 1.11 reinoud int dc_blanked; /* currently has video disabled */
102 1.11 reinoud void *dc_hwscroll_cookie; /* cookie for hardware scroll */
103 1.11 reinoud
104 1.11 reinoud int dc_curenb; /* is cursor sprite enabled ? */
105 1.11 reinoud int dc_changed; /* need update of hardware */
106 1.11 reinoud int dc_writeback_delay; /* Screenarea write back vsync counter */
107 1.9 reinoud #define WSDISPLAY_CMAP_DOLUT 0x20
108 1.9 reinoud #define WSDISPLAY_VIDEO_ONOFF 0x40
109 1.9 reinoud #define WSDISPLAY_WB_COUNTER 0x80
110 1.9 reinoud
111 1.11 reinoud struct hwcmap256 dc_cmap;/* software copy of colormap */
112 1.11 reinoud struct hwcursor32 dc_cursor;/* software copy of cursor */
113 1.9 reinoud
114 1.9 reinoud struct vidc_mode mode_info;
115 1.9 reinoud struct rasops_info rinfo;
116 1.9 reinoud
117 1.9 reinoud struct wsdisplay_emulops orig_ri_ops; /* Rasops functions for deligation */
118 1.9 reinoud };
119 1.9 reinoud
120 1.9 reinoud
121 1.1 reinoud struct vidcvideo_softc {
122 1.1 reinoud struct device sc_dev;
123 1.9 reinoud struct fb_devconfig *sc_dc; /* device configuration */
124 1.9 reinoud int nscreens; /* number of screens configured */
125 1.1 reinoud };
126 1.1 reinoud
127 1.1 reinoud
128 1.1 reinoud /* Function prototypes for glue */
129 1.25 bjh21 static int vidcvideo_match(struct device *, struct cfdata *, void *);
130 1.25 bjh21 static void vidcvideo_attach(struct device *, struct device *, void *);
131 1.1 reinoud
132 1.1 reinoud
133 1.1 reinoud /* config glue */
134 1.15 thorpej CFATTACH_DECL(vidcvideo, sizeof(struct vidcvideo_softc),
135 1.16 thorpej vidcvideo_match, vidcvideo_attach, NULL, NULL);
136 1.1 reinoud
137 1.1 reinoud static struct fb_devconfig vidcvideo_console_dc;
138 1.1 reinoud static int vidcvideo_is_console;
139 1.1 reinoud
140 1.1 reinoud
141 1.1 reinoud static struct wsscreen_descr vidcvideo_stdscreen = {
142 1.1 reinoud "std", 0, 0,
143 1.1 reinoud 0, /* textops */
144 1.1 reinoud 0, 0,
145 1.1 reinoud WSSCREEN_REVERSE
146 1.1 reinoud };
147 1.1 reinoud
148 1.1 reinoud static const struct wsscreen_descr *_vidcvideo_scrlist[] = {
149 1.1 reinoud &vidcvideo_stdscreen,
150 1.1 reinoud };
151 1.1 reinoud
152 1.1 reinoud static const struct wsscreen_list vidcvideo_screenlist = {
153 1.25 bjh21 sizeof(_vidcvideo_scrlist) / sizeof(struct wsscreen_descr *),
154 1.25 bjh21 _vidcvideo_scrlist
155 1.1 reinoud };
156 1.1 reinoud
157 1.31 christos static int vidcvideoioctl(void *, void *, u_long, void *, int,
158 1.25 bjh21 struct lwp *);
159 1.25 bjh21 static paddr_t vidcvideommap(void *, void *, off_t, int);
160 1.25 bjh21
161 1.25 bjh21 static int vidcvideo_alloc_screen(void *, const struct wsscreen_descr *,
162 1.25 bjh21 void **, int *, int *, long *);
163 1.25 bjh21 static void vidcvideo_free_screen(void *, void *);
164 1.25 bjh21 static int vidcvideo_show_screen(void *, void *, int,
165 1.25 bjh21 void (*) (void *, int, int), void *);
166 1.1 reinoud
167 1.1 reinoud static const struct wsdisplay_accessops vidcvideo_accessops = {
168 1.1 reinoud vidcvideoioctl,
169 1.1 reinoud vidcvideommap,
170 1.1 reinoud vidcvideo_alloc_screen,
171 1.1 reinoud vidcvideo_free_screen,
172 1.1 reinoud vidcvideo_show_screen,
173 1.17 reinoud NULL, /* load_font */
174 1.23 jmmv NULL /* pollc */
175 1.1 reinoud };
176 1.1 reinoud
177 1.6 reinoud
178 1.1 reinoud /* Function prototypes */
179 1.25 bjh21 int vidcvideo_cnattach(vaddr_t);
180 1.25 bjh21 static void vidcvideo_colourmap_and_cursor_init(struct fb_devconfig *);
181 1.1 reinoud
182 1.25 bjh21 static int get_cmap(struct vidcvideo_softc *, struct wsdisplay_cmap *);
183 1.25 bjh21 static int set_cmap(struct vidcvideo_softc *, struct wsdisplay_cmap *);
184 1.25 bjh21 static int set_cursor(struct vidcvideo_softc *, struct wsdisplay_cursor *);
185 1.25 bjh21 static int get_cursor(struct vidcvideo_softc *, struct wsdisplay_cursor *);
186 1.25 bjh21 static void set_curpos(struct vidcvideo_softc *, struct wsdisplay_curpos *);
187 1.25 bjh21 static void vidcvideo_getdevconfig(vaddr_t, struct fb_devconfig *);
188 1.1 reinoud
189 1.25 bjh21 static int vidcvideointr(void *);
190 1.25 bjh21 static void vidcvideo_config_wscons(struct fb_devconfig *);
191 1.1 reinoud
192 1.6 reinoud
193 1.1 reinoud /* Acceleration function prototypes */
194 1.25 bjh21 static void vv_copyrows(void *, int, int, int);
195 1.25 bjh21 static void vv_eraserows(void *, int, int, long);
196 1.25 bjh21 static void vv_putchar(void *c, int row, int col, u_int uc, long attr);
197 1.1 reinoud
198 1.1 reinoud
199 1.1 reinoud static int
200 1.1 reinoud vidcvideo_match(parent, match, aux)
201 1.1 reinoud struct device *parent;
202 1.1 reinoud struct cfdata *match;
203 1.1 reinoud void *aux;
204 1.1 reinoud {
205 1.25 bjh21
206 1.1 reinoud /* Can't probe AFAIK ; how ? */
207 1.25 bjh21 return 1;
208 1.1 reinoud }
209 1.1 reinoud
210 1.1 reinoud
211 1.1 reinoud static void
212 1.25 bjh21 vidcvideo_getdevconfig(vaddr_t dense_addr, struct fb_devconfig *dc)
213 1.1 reinoud {
214 1.25 bjh21
215 1.1 reinoud dc->dc_vaddr = dense_addr;
216 1.11 reinoud (void) pmap_extract(pmap_kernel(), dc->dc_vaddr, &(dc->dc_paddr));
217 1.1 reinoud
218 1.1 reinoud vidcvideo_getmode(&dc->mode_info);
219 1.1 reinoud
220 1.27 bjh21 dc->dc_wid = dc->mode_info.timings.hdisplay;
221 1.27 bjh21 dc->dc_ht = dc->mode_info.timings.vdisplay;
222 1.1 reinoud dc->dc_log2_depth = dc->mode_info.log2_bpp;
223 1.1 reinoud dc->dc_depth = 1 << dc->dc_log2_depth;
224 1.1 reinoud dc->dc_videobase = dc->dc_vaddr;
225 1.1 reinoud dc->dc_blanked = 0;
226 1.1 reinoud
227 1.1 reinoud /* this should/could be done somewhat more elegant! */
228 1.1 reinoud switch (dc->dc_depth) {
229 1.1 reinoud case 1:
230 1.1 reinoud dc->dc_rowbytes = dc->dc_wid / 8;
231 1.1 reinoud break;
232 1.1 reinoud case 2:
233 1.1 reinoud dc->dc_rowbytes = dc->dc_wid / 4;
234 1.1 reinoud break;
235 1.1 reinoud case 4:
236 1.1 reinoud dc->dc_rowbytes = dc->dc_wid / 2;
237 1.1 reinoud break;
238 1.1 reinoud case 8:
239 1.1 reinoud dc->dc_rowbytes = dc->dc_wid;
240 1.1 reinoud break;
241 1.1 reinoud case 16:
242 1.1 reinoud dc->dc_rowbytes = dc->dc_wid * 2;
243 1.1 reinoud break;
244 1.1 reinoud case 32:
245 1.1 reinoud dc->dc_rowbytes = dc->dc_wid * 4;
246 1.1 reinoud break;
247 1.1 reinoud default:
248 1.1 reinoud printf("Unknown colour depth %d ... what to do ?", dc->dc_depth);
249 1.1 reinoud break;
250 1.25 bjh21 }
251 1.1 reinoud
252 1.1 reinoud /* euhm... correct ? i.e. not complete VIDC memory */
253 1.27 bjh21 dc->dc_size = dc->mode_info.timings.vdisplay * dc->dc_rowbytes;
254 1.1 reinoud
255 1.1 reinoud /* initialize colormap and cursor resource */
256 1.1 reinoud vidcvideo_colourmap_and_cursor_init(dc);
257 1.1 reinoud
258 1.1 reinoud dc->rinfo.ri_flg = 0; /* RI_CENTER; */
259 1.1 reinoud dc->rinfo.ri_depth = dc->dc_depth;
260 1.1 reinoud dc->rinfo.ri_bits = (void *) dc->dc_videobase;
261 1.1 reinoud dc->rinfo.ri_width = dc->dc_wid;
262 1.1 reinoud dc->rinfo.ri_height = dc->dc_ht;
263 1.1 reinoud dc->rinfo.ri_stride = dc->dc_rowbytes;
264 1.9 reinoud dc->rinfo.ri_hw = dc; /* link back */
265 1.9 reinoud
266 1.9 reinoud /* intitialise miscelanious */
267 1.9 reinoud dc->dc_writeback_delay = 0;
268 1.1 reinoud }
269 1.1 reinoud
270 1.1 reinoud
271 1.1 reinoud static void
272 1.25 bjh21 vidcvideo_config_wscons(struct fb_devconfig *dc)
273 1.1 reinoud {
274 1.4 ad int i, cookie, font_not_locked;
275 1.1 reinoud
276 1.25 bjh21 /*
277 1.25 bjh21 * clear the screen ; why not a memset ? - it was this way so
278 1.25 bjh21 * keep it for now
279 1.25 bjh21 */
280 1.1 reinoud for (i = 0; i < dc->dc_ht * dc->dc_rowbytes; i += sizeof(u_int32_t))
281 1.1 reinoud *(u_int32_t *)(dc->dc_videobase + i) = 0x0;
282 1.1 reinoud
283 1.1 reinoud wsfont_init();
284 1.1 reinoud
285 1.1 reinoud /* prefer 8 pixel wide font */
286 1.4 ad cookie = wsfont_find(NULL, 8, 0, 0, WSDISPLAY_FONTORDER_L2R,
287 1.4 ad WSDISPLAY_FONTORDER_L2R);
288 1.4 ad if (cookie <= 0)
289 1.4 ad cookie = wsfont_find(NULL, 0, 0, 0, WSDISPLAY_FONTORDER_L2R,
290 1.4 ad WSDISPLAY_FONTORDER_L2R);
291 1.1 reinoud
292 1.1 reinoud if (cookie < 0) {
293 1.1 reinoud /* Can I even print here ? */
294 1.1 reinoud printf("Font table empty! exiting\n");
295 1.1 reinoud return;
296 1.25 bjh21 }
297 1.1 reinoud
298 1.4 ad font_not_locked = wsfont_lock(cookie, &dc->rinfo.ri_font);
299 1.1 reinoud
300 1.1 reinoud dc->rinfo.ri_wsfcookie = cookie;
301 1.1 reinoud
302 1.1 reinoud rasops_init(&dc->rinfo,
303 1.25 bjh21 dc->rinfo.ri_height / dc->rinfo.ri_font->fontheight,
304 1.25 bjh21 dc->rinfo.ri_width / dc->rinfo.ri_font->fontwidth);
305 1.1 reinoud
306 1.6 reinoud /*
307 1.6 reinoud * Provide a hook for the acceleration functions and make a copy of the
308 1.6 reinoud * original rasops functions for passing on calls
309 1.6 reinoud */
310 1.6 reinoud dc->rinfo.ri_hw = dc;
311 1.25 bjh21 memcpy(&(dc->orig_ri_ops), &(dc->rinfo.ri_ops),
312 1.25 bjh21 sizeof(struct wsdisplay_emulops));
313 1.6 reinoud
314 1.6 reinoud /* add our accelerated functions */
315 1.1 reinoud dc->rinfo.ri_ops.eraserows = vv_eraserows;
316 1.1 reinoud dc->rinfo.ri_ops.copyrows = vv_copyrows;
317 1.1 reinoud
318 1.6 reinoud /* add the extra activity measuring functions; they just delegate on */
319 1.6 reinoud dc->rinfo.ri_ops.putchar = vv_putchar;
320 1.6 reinoud
321 1.1 reinoud /* XXX shouldn't be global */
322 1.1 reinoud vidcvideo_stdscreen.nrows = dc->rinfo.ri_rows;
323 1.1 reinoud vidcvideo_stdscreen.ncols = dc->rinfo.ri_cols;
324 1.1 reinoud vidcvideo_stdscreen.textops = &dc->rinfo.ri_ops;
325 1.1 reinoud vidcvideo_stdscreen.capabilities = dc->rinfo.ri_caps;
326 1.1 reinoud
327 1.25 bjh21 if (font_not_locked)
328 1.1 reinoud printf(" warning ... couldn't lock font! ");
329 1.1 reinoud }
330 1.1 reinoud
331 1.1 reinoud
332 1.1 reinoud static void
333 1.25 bjh21 vidcvideo_attach(struct device *parent, struct device *self, void *aux)
334 1.1 reinoud {
335 1.1 reinoud struct vidcvideo_softc *sc = (struct vidcvideo_softc *)self;
336 1.9 reinoud struct fb_devconfig *dc;
337 1.1 reinoud struct wsemuldisplaydev_attach_args waa;
338 1.1 reinoud struct hwcmap256 *cm;
339 1.1 reinoud const u_int8_t *p;
340 1.6 reinoud long defattr;
341 1.1 reinoud int index;
342 1.1 reinoud
343 1.1 reinoud vidcvideo_init();
344 1.1 reinoud if (sc->nscreens == 0) {
345 1.6 reinoud sc->sc_dc = &vidcvideo_console_dc;
346 1.6 reinoud if (!vidcvideo_is_console) {
347 1.6 reinoud printf(" : non console (no kbd yet) ");
348 1.6 reinoud vidcvideo_getdevconfig(videomemory.vidm_vbase, sc->sc_dc);
349 1.6 reinoud vidcvideo_config_wscons(sc->sc_dc);
350 1.13 junyoung (*sc->sc_dc->rinfo.ri_ops.allocattr)(&sc->sc_dc->rinfo, 0, 0, 0, &defattr);
351 1.25 bjh21 }
352 1.1 reinoud sc->nscreens = 1;
353 1.1 reinoud } else {
354 1.24 snj printf(": already attached ... can't cope with this\n");
355 1.1 reinoud return;
356 1.25 bjh21 }
357 1.1 reinoud
358 1.9 reinoud dc = sc->sc_dc;
359 1.9 reinoud
360 1.1 reinoud vidcvideo_printdetails();
361 1.28 bjh21 printf(": mode %s, %dbpp\n", dc->mode_info.timings.name,
362 1.9 reinoud dc->dc_depth);
363 1.1 reinoud
364 1.1 reinoud /* initialise rasops */
365 1.9 reinoud cm = &dc->dc_cmap;
366 1.1 reinoud p = rasops_cmap;
367 1.1 reinoud for (index = 0; index < CMAP_SIZE; index++, p += 3) {
368 1.1 reinoud cm->r[index] = p[0];
369 1.1 reinoud cm->g[index] = p[1];
370 1.1 reinoud cm->b[index] = p[2];
371 1.1 reinoud }
372 1.1 reinoud
373 1.1 reinoud /* set up interrupt flags */
374 1.9 reinoud dc->dc_changed |= WSDISPLAY_CMAP_DOLUT;
375 1.1 reinoud
376 1.6 reinoud /*
377 1.6 reinoud * Set up a link in the rasops structure to our device config
378 1.6 reinoud * for acceleration stuff
379 1.6 reinoud */
380 1.9 reinoud dc->rinfo.ri_hw = sc->sc_dc;
381 1.1 reinoud
382 1.1 reinoud /* Establish an interrupt handler, and clear any pending interrupts */
383 1.9 reinoud intr_claim(IRQ_FLYBACK, IPL_TTY, "vblank", vidcvideointr, dc);
384 1.1 reinoud
385 1.1 reinoud waa.console = (vidcvideo_is_console ? 1 : 0);
386 1.1 reinoud waa.scrdata = &vidcvideo_screenlist;
387 1.1 reinoud waa.accessops = &vidcvideo_accessops;
388 1.1 reinoud waa.accesscookie = sc;
389 1.1 reinoud
390 1.1 reinoud config_found(self, &waa, wsemuldisplaydevprint);
391 1.1 reinoud }
392 1.1 reinoud
393 1.1 reinoud
394 1.1 reinoud static int
395 1.31 christos vidcvideoioctl(void *v, void *vs, u_long cmd, void *data, int flag,
396 1.25 bjh21 struct lwp *l)
397 1.1 reinoud {
398 1.1 reinoud struct vidcvideo_softc *sc = v;
399 1.1 reinoud struct fb_devconfig *dc = sc->sc_dc;
400 1.1 reinoud int state;
401 1.1 reinoud
402 1.1 reinoud switch (cmd) {
403 1.1 reinoud case WSDISPLAYIO_GTYPE:
404 1.1 reinoud *(u_int *)data = WSDISPLAY_TYPE_VIDC;
405 1.25 bjh21 return 0;
406 1.1 reinoud
407 1.1 reinoud case WSDISPLAYIO_GINFO:
408 1.1 reinoud #define wsd_fbip ((struct wsdisplay_fbinfo *)data)
409 1.9 reinoud wsd_fbip->height = dc->dc_ht;
410 1.9 reinoud wsd_fbip->width = dc->dc_wid;
411 1.9 reinoud wsd_fbip->depth = dc->dc_depth;
412 1.1 reinoud wsd_fbip->cmsize = CMAP_SIZE;
413 1.1 reinoud #undef fbt
414 1.25 bjh21 return 0;
415 1.1 reinoud
416 1.1 reinoud case WSDISPLAYIO_GETCMAP:
417 1.1 reinoud return get_cmap(sc, (struct wsdisplay_cmap *)data);
418 1.1 reinoud
419 1.1 reinoud case WSDISPLAYIO_PUTCMAP:
420 1.1 reinoud return set_cmap(sc, (struct wsdisplay_cmap *)data);
421 1.1 reinoud
422 1.1 reinoud case WSDISPLAYIO_SVIDEO:
423 1.1 reinoud state = *(int *)data;
424 1.1 reinoud dc->dc_blanked = (state == WSDISPLAYIO_VIDEO_OFF);
425 1.9 reinoud dc->dc_changed |= WSDISPLAY_VIDEO_ONOFF;
426 1.1 reinoud /* done on video blank */
427 1.25 bjh21 return 0;
428 1.1 reinoud
429 1.1 reinoud case WSDISPLAYIO_GVIDEO:
430 1.1 reinoud *(u_int *)data = dc->dc_blanked ?
431 1.1 reinoud WSDISPLAYIO_VIDEO_OFF : WSDISPLAYIO_VIDEO_ON;
432 1.25 bjh21 return 0;
433 1.1 reinoud
434 1.1 reinoud case WSDISPLAYIO_GCURPOS:
435 1.9 reinoud *(struct wsdisplay_curpos *)data = dc->dc_cursor.cc_pos;
436 1.25 bjh21 return 0;
437 1.1 reinoud
438 1.1 reinoud case WSDISPLAYIO_SCURPOS:
439 1.1 reinoud set_curpos(sc, (struct wsdisplay_curpos *)data);
440 1.9 reinoud dc->dc_changed |= WSDISPLAY_CURSOR_DOPOS;
441 1.25 bjh21 return 0;
442 1.1 reinoud
443 1.1 reinoud case WSDISPLAYIO_GCURMAX:
444 1.1 reinoud ((struct wsdisplay_curpos *)data)->x = CURSOR_MAX_WIDTH;
445 1.1 reinoud ((struct wsdisplay_curpos *)data)->y = CURSOR_MAX_HEIGHT;
446 1.25 bjh21 return 0;
447 1.1 reinoud
448 1.1 reinoud case WSDISPLAYIO_GCURSOR:
449 1.1 reinoud return get_cursor(sc, (struct wsdisplay_cursor *)data);
450 1.1 reinoud
451 1.1 reinoud case WSDISPLAYIO_SCURSOR:
452 1.1 reinoud return set_cursor(sc, (struct wsdisplay_cursor *)data);
453 1.1 reinoud
454 1.1 reinoud case WSDISPLAYIO_SMODE:
455 1.1 reinoud state = *(int *)data;
456 1.25 bjh21 if (state == WSDISPLAYIO_MODE_MAPPED)
457 1.1 reinoud dc->dc_hwscroll_cookie = vidcvideo_hwscroll_reset();
458 1.25 bjh21 if (state == WSDISPLAYIO_MODE_EMUL)
459 1.1 reinoud vidcvideo_hwscroll_back(dc->dc_hwscroll_cookie);
460 1.1 reinoud vidcvideo_progr_scroll();
461 1.11 reinoud
462 1.25 bjh21 return 0;
463 1.1 reinoud }
464 1.5 atatat return EPASSTHROUGH;
465 1.1 reinoud }
466 1.1 reinoud
467 1.1 reinoud
468 1.1 reinoud paddr_t
469 1.25 bjh21 vidcvideommap(void *v, void *vs, off_t offset, int prot)
470 1.1 reinoud {
471 1.1 reinoud struct vidcvideo_softc *sc = v;
472 1.1 reinoud
473 1.1 reinoud if (offset >= sc->sc_dc->dc_size || offset < 0)
474 1.25 bjh21 return -1;
475 1.11 reinoud
476 1.11 reinoud return arm_btop(sc->sc_dc->dc_paddr + offset);
477 1.1 reinoud }
478 1.1 reinoud
479 1.1 reinoud
480 1.1 reinoud static int
481 1.25 bjh21 vidcvideo_alloc_screen(void *v, const struct wsscreen_descr *type,
482 1.25 bjh21 void **cookiep, int *curxp, int *curyp, long *attrp)
483 1.1 reinoud {
484 1.1 reinoud struct vidcvideo_softc *sc = v;
485 1.9 reinoud struct fb_devconfig *dc = sc->sc_dc;
486 1.1 reinoud long defattr;
487 1.1 reinoud
488 1.6 reinoud /*
489 1.6 reinoud * One and just only one for now :( ... if the vidcconsole is not the
490 1.6 reinoud * console then this makes one wsconsole screen free for use !
491 1.6 reinoud */
492 1.6 reinoud if ((sc->nscreens > 1) || vidcvideo_is_console)
493 1.25 bjh21 return ENOMEM;
494 1.1 reinoud
495 1.6 reinoud /* Add the screen to wscons to control */
496 1.9 reinoud *cookiep = &dc->rinfo;
497 1.1 reinoud *curxp = 0;
498 1.1 reinoud *curyp = 0;
499 1.9 reinoud vidcvideo_getdevconfig(videomemory.vidm_vbase, dc);
500 1.9 reinoud vidcvideo_config_wscons(dc);
501 1.13 junyoung (*dc->rinfo.ri_ops.allocattr)(&dc->rinfo, 0, 0, 0, &defattr);
502 1.1 reinoud *attrp = defattr;
503 1.1 reinoud sc->nscreens++;
504 1.6 reinoud
505 1.25 bjh21 return 0;
506 1.1 reinoud }
507 1.1 reinoud
508 1.1 reinoud
509 1.1 reinoud static void
510 1.25 bjh21 vidcvideo_free_screen(void *v, void *cookie)
511 1.1 reinoud {
512 1.1 reinoud struct vidcvideo_softc *sc = v;
513 1.1 reinoud
514 1.1 reinoud if (sc->sc_dc == &vidcvideo_console_dc)
515 1.1 reinoud panic("vidcvideo_free_screen: console");
516 1.1 reinoud
517 1.1 reinoud sc->nscreens--;
518 1.1 reinoud }
519 1.1 reinoud
520 1.1 reinoud
521 1.1 reinoud static int
522 1.25 bjh21 vidcvideo_show_screen(void *v, void *cookie, int waitok,
523 1.25 bjh21 void (*cb)(void *, int, int), void *cbarg)
524 1.1 reinoud {
525 1.1 reinoud
526 1.25 bjh21 return 0;
527 1.1 reinoud }
528 1.1 reinoud
529 1.1 reinoud
530 1.1 reinoud /* EXPORT */ int
531 1.25 bjh21 vidcvideo_cnattach(vaddr_t addr)
532 1.1 reinoud {
533 1.1 reinoud struct fb_devconfig *dcp = &vidcvideo_console_dc;
534 1.1 reinoud long defattr;
535 1.1 reinoud
536 1.1 reinoud vidcvideo_init();
537 1.1 reinoud vidcvideo_getdevconfig(addr, dcp);
538 1.1 reinoud vidcvideo_config_wscons(dcp);
539 1.13 junyoung (*dcp->rinfo.ri_ops.allocattr)(&dcp->rinfo, 0, 0, 0, &defattr);
540 1.1 reinoud wsdisplay_cnattach(&vidcvideo_stdscreen, &dcp->rinfo, 0, 0, defattr);
541 1.1 reinoud
542 1.1 reinoud vidcvideo_is_console = 1;
543 1.25 bjh21 return 0;
544 1.1 reinoud }
545 1.1 reinoud
546 1.1 reinoud
547 1.1 reinoud static int
548 1.25 bjh21 vidcvideointr(void *arg)
549 1.1 reinoud {
550 1.9 reinoud struct fb_devconfig *dc = arg;
551 1.9 reinoud int v, cleared = 0;
552 1.1 reinoud
553 1.9 reinoud v = dc->dc_changed;
554 1.1 reinoud if (v == 0)
555 1.25 bjh21 return 1;
556 1.1 reinoud
557 1.9 reinoud if (v & WSDISPLAY_WB_COUNTER) {
558 1.9 reinoud dc->dc_writeback_delay--;
559 1.9 reinoud if (dc->dc_writeback_delay == 0) {
560 1.9 reinoud cpu_dcache_wb_range(dc->dc_vaddr, dc->dc_size);
561 1.9 reinoud cleared |= WSDISPLAY_WB_COUNTER;
562 1.25 bjh21 }
563 1.9 reinoud }
564 1.9 reinoud
565 1.1 reinoud if (v & WSDISPLAY_CMAP_DOLUT) {
566 1.9 reinoud struct hwcmap256 *cm = &dc->dc_cmap;
567 1.1 reinoud int index;
568 1.1 reinoud
569 1.9 reinoud if (dc->dc_depth == 4) {
570 1.1 reinoud /* palette for 4 bpp is different from 8bpp */
571 1.1 reinoud vidcvideo_write(VIDC_PALREG, 0x00000000);
572 1.9 reinoud for (index=0; index < (1 << dc->dc_depth); index++)
573 1.1 reinoud vidcvideo_write(VIDC_PALETTE,
574 1.1 reinoud VIDC_COL(cm->r[index],
575 1.1 reinoud cm->g[index],
576 1.1 reinoud cm->b[index]));
577 1.25 bjh21 }
578 1.1 reinoud
579 1.9 reinoud if (dc->dc_depth == 8) {
580 1.25 bjh21 /*
581 1.25 bjh21 * dunno what to do in more than 8bpp
582 1.25 bjh21 * palettes only make sense in 8bpp and less modes
583 1.25 bjh21 * on VIDC
584 1.25 bjh21 */
585 1.1 reinoud vidcvideo_write(VIDC_PALREG, 0x00000000);
586 1.1 reinoud for (index = 0; index < CMAP_SIZE; index++) {
587 1.1 reinoud vidcvideo_write(VIDC_PALETTE,
588 1.25 bjh21 VIDC_COL(cm->r[index], cm->g[index],
589 1.25 bjh21 cm->b[index]));
590 1.25 bjh21 }
591 1.25 bjh21 }
592 1.9 reinoud cleared |= WSDISPLAY_CMAP_DOLUT;
593 1.1 reinoud }
594 1.1 reinoud
595 1.1 reinoud if (v & WSDISPLAY_VIDEO_ONOFF) {
596 1.9 reinoud vidcvideo_blank(dc->dc_blanked);
597 1.9 reinoud cleared |= WSDISPLAY_VIDEO_ONOFF;
598 1.25 bjh21 }
599 1.1 reinoud
600 1.1 reinoud if (v & (WSDISPLAY_CURSOR_DOPOS | WSDISPLAY_CURSOR_DOHOT)) {
601 1.1 reinoud int x, y;
602 1.9 reinoud x = dc->dc_cursor.cc_pos.x - dc->dc_cursor.cc_hot.x;
603 1.9 reinoud y = dc->dc_cursor.cc_pos.y - dc->dc_cursor.cc_hot.y;
604 1.1 reinoud
605 1.1 reinoud vidcvideo_updatecursor(x, y);
606 1.9 reinoud cleared |= WSDISPLAY_CURSOR_DOPOS | WSDISPLAY_CURSOR_DOHOT;
607 1.25 bjh21 }
608 1.1 reinoud
609 1.1 reinoud if (v & WSDISPLAY_CURSOR_DOCUR) {
610 1.9 reinoud vidcvideo_enablecursor(dc->dc_curenb);
611 1.9 reinoud cleared |= WSDISPLAY_CURSOR_DOCUR;
612 1.25 bjh21 }
613 1.1 reinoud
614 1.9 reinoud dc->dc_changed ^= cleared;
615 1.9 reinoud
616 1.25 bjh21 return 1;
617 1.1 reinoud }
618 1.1 reinoud
619 1.1 reinoud
620 1.1 reinoud static u_char ri_col_data[6][6] = {
621 1.1 reinoud { 0, 0, 0, 0, 0, 0}, /* 1 bpp */
622 1.1 reinoud { 0, 0, 0, 0, 0, 0}, /* 2 bpp */
623 1.1 reinoud { 0, 0, 0, 0, 0, 0}, /* 4 bpp */
624 1.1 reinoud { 0, 0, 0, 0, 0, 0}, /* 8 bpp */
625 1.12 bjh21 { 6, 5, 5, 0, 6, 11}, /* 16 bpp */
626 1.1 reinoud { 8, 8, 8, 0, 8, 16}, /* 32 bpp */
627 1.1 reinoud };
628 1.1 reinoud
629 1.1 reinoud static void
630 1.25 bjh21 vidcvideo_colourmap_and_cursor_init(struct fb_devconfig *dc)
631 1.1 reinoud {
632 1.1 reinoud struct rasops_info *ri = &dc->rinfo;
633 1.1 reinoud u_char *rgbdat;
634 1.1 reinoud
635 1.1 reinoud /* Whatever we do later... just make sure we have a
636 1.1 reinoud * sane palette to start with
637 1.1 reinoud */
638 1.1 reinoud vidcvideo_stdpalette();
639 1.1 reinoud
640 1.1 reinoud /* set up rgb bit pattern values for rasops_init */
641 1.1 reinoud rgbdat = ri_col_data[dc->dc_log2_depth];
642 1.1 reinoud ri->ri_rnum = rgbdat[0];
643 1.1 reinoud ri->ri_gnum = rgbdat[1];
644 1.1 reinoud ri->ri_bnum = rgbdat[2];
645 1.1 reinoud ri->ri_rpos = rgbdat[3];
646 1.1 reinoud ri->ri_gpos = rgbdat[4];
647 1.1 reinoud ri->ri_bpos = rgbdat[5];
648 1.1 reinoud }
649 1.1 reinoud
650 1.1 reinoud
651 1.1 reinoud static int
652 1.25 bjh21 get_cmap(struct vidcvideo_softc *sc, struct wsdisplay_cmap *p)
653 1.1 reinoud {
654 1.1 reinoud u_int index = p->index, count = p->count;
655 1.20 chs int error;
656 1.1 reinoud
657 1.14 itojun if (index >= CMAP_SIZE || count > CMAP_SIZE - index)
658 1.25 bjh21 return EINVAL;
659 1.1 reinoud
660 1.20 chs error = copyout(&sc->sc_dc->dc_cmap.r[index], p->red, count);
661 1.20 chs if (error)
662 1.20 chs return error;
663 1.20 chs error = copyout(&sc->sc_dc->dc_cmap.g[index], p->green, count);
664 1.20 chs if (error)
665 1.20 chs return error;
666 1.20 chs error = copyout(&sc->sc_dc->dc_cmap.b[index], p->blue, count);
667 1.20 chs return error;
668 1.1 reinoud }
669 1.1 reinoud
670 1.1 reinoud
671 1.1 reinoud static int
672 1.25 bjh21 set_cmap(struct vidcvideo_softc *sc, struct wsdisplay_cmap *p)
673 1.1 reinoud {
674 1.9 reinoud struct fb_devconfig *dc = sc->sc_dc;
675 1.20 chs struct hwcmap256 cmap;
676 1.1 reinoud u_int index = p->index, count = p->count;
677 1.20 chs int error;
678 1.1 reinoud
679 1.1 reinoud if (index >= CMAP_SIZE || (index + count) > CMAP_SIZE)
680 1.25 bjh21 return EINVAL;
681 1.1 reinoud
682 1.20 chs error = copyin(p->red, &cmap.r[index], count);
683 1.20 chs if (error)
684 1.20 chs return error;
685 1.20 chs error = copyin(p->green, &cmap.g[index], count);
686 1.20 chs if (error)
687 1.20 chs return error;
688 1.20 chs error = copyin(p->blue, &cmap.b[index], count);
689 1.20 chs if (error)
690 1.20 chs return error;
691 1.20 chs memcpy(&dc->dc_cmap.r[index], &cmap.r[index], count);
692 1.20 chs memcpy(&dc->dc_cmap.g[index], &cmap.g[index], count);
693 1.20 chs memcpy(&dc->dc_cmap.b[index], &cmap.b[index], count);
694 1.9 reinoud dc->dc_changed |= WSDISPLAY_CMAP_DOLUT;
695 1.25 bjh21 return 0;
696 1.1 reinoud }
697 1.1 reinoud
698 1.1 reinoud
699 1.1 reinoud static int
700 1.25 bjh21 set_cursor(struct vidcvideo_softc *sc, struct wsdisplay_cursor *p)
701 1.1 reinoud {
702 1.9 reinoud #define cc (&dc->dc_cursor)
703 1.9 reinoud struct fb_devconfig *dc = sc->sc_dc;
704 1.20 chs u_int v, index = 0, count = 0, icount = 0;
705 1.20 chs uint8_t r[2], g[2], b[2], image[512], mask[512];
706 1.20 chs int error;
707 1.19 he
708 1.19 he /* XXX gcc does not detect identical conditions */
709 1.19 he index = count = icount = 0;
710 1.1 reinoud
711 1.1 reinoud v = p->which;
712 1.1 reinoud if (v & WSDISPLAY_CURSOR_DOCMAP) {
713 1.1 reinoud index = p->cmap.index;
714 1.1 reinoud count = p->cmap.count;
715 1.20 chs if (index >= CURSOR_MAX_COLOURS ||
716 1.20 chs (index + count) > CURSOR_MAX_COLOURS)
717 1.25 bjh21 return EINVAL;
718 1.20 chs error = copyin(p->cmap.red, &r[index], count);
719 1.20 chs if (error)
720 1.20 chs return error;
721 1.20 chs error = copyin(p->cmap.green, &g[index], count);
722 1.20 chs if (error)
723 1.20 chs return error;
724 1.20 chs error = copyin(p->cmap.blue, &b[index], count);
725 1.20 chs if (error)
726 1.20 chs return error;
727 1.1 reinoud }
728 1.1 reinoud if (v & WSDISPLAY_CURSOR_DOSHAPE) {
729 1.20 chs if (p->size.x > CURSOR_MAX_WIDTH ||
730 1.20 chs p->size.y > CURSOR_MAX_HEIGHT)
731 1.25 bjh21 return EINVAL;
732 1.1 reinoud icount = sizeof(u_int32_t) * p->size.y;
733 1.20 chs error = copyin(p->image, &image, icount);
734 1.20 chs if (error)
735 1.20 chs return error;
736 1.20 chs error = copyin(p->mask, &mask, icount);
737 1.20 chs if (error)
738 1.20 chs return error;
739 1.1 reinoud }
740 1.1 reinoud
741 1.1 reinoud if (v & WSDISPLAY_CURSOR_DOCUR)
742 1.9 reinoud dc->dc_curenb = p->enable;
743 1.1 reinoud if (v & WSDISPLAY_CURSOR_DOPOS)
744 1.1 reinoud set_curpos(sc, &p->pos);
745 1.1 reinoud if (v & WSDISPLAY_CURSOR_DOHOT)
746 1.1 reinoud cc->cc_hot = p->hot;
747 1.1 reinoud if (v & WSDISPLAY_CURSOR_DOCMAP) {
748 1.20 chs memcpy(&cc->cc_color[index], &r[index], count);
749 1.20 chs memcpy(&cc->cc_color[index + 2], &g[index], count);
750 1.20 chs memcpy(&cc->cc_color[index + 4], &b[index], count);
751 1.1 reinoud }
752 1.1 reinoud if (v & WSDISPLAY_CURSOR_DOSHAPE) {
753 1.1 reinoud cc->cc_size = p->size;
754 1.1 reinoud memset(cc->cc_image, 0, sizeof cc->cc_image);
755 1.20 chs memcpy(cc->cc_image, image, icount);
756 1.1 reinoud memset(cc->cc_mask, 0, sizeof cc->cc_mask);
757 1.20 chs memcpy(cc->cc_mask, mask, icount);
758 1.1 reinoud }
759 1.9 reinoud dc->dc_changed |= v;
760 1.1 reinoud
761 1.25 bjh21 return 0;
762 1.1 reinoud #undef cc
763 1.1 reinoud }
764 1.1 reinoud
765 1.1 reinoud
766 1.1 reinoud static int
767 1.25 bjh21 get_cursor(struct vidcvideo_softc *sc, struct wsdisplay_cursor *p)
768 1.1 reinoud {
769 1.25 bjh21
770 1.25 bjh21 return EPASSTHROUGH; /* XXX */
771 1.1 reinoud }
772 1.1 reinoud
773 1.1 reinoud
774 1.1 reinoud static void
775 1.25 bjh21 set_curpos(struct vidcvideo_softc *sc, struct wsdisplay_curpos *curpos)
776 1.1 reinoud {
777 1.1 reinoud struct fb_devconfig *dc = sc->sc_dc;
778 1.1 reinoud int x = curpos->x, y = curpos->y;
779 1.1 reinoud
780 1.1 reinoud if (y < 0)
781 1.1 reinoud y = 0;
782 1.1 reinoud else if (y > dc->dc_ht)
783 1.1 reinoud y = dc->dc_ht;
784 1.1 reinoud if (x < 0)
785 1.1 reinoud x = 0;
786 1.1 reinoud else if (x > dc->dc_wid)
787 1.1 reinoud x = dc->dc_wid;
788 1.9 reinoud dc->dc_cursor.cc_pos.x = x;
789 1.9 reinoud dc->dc_cursor.cc_pos.y = y;
790 1.1 reinoud }
791 1.1 reinoud
792 1.1 reinoud
793 1.25 bjh21 static void vv_copyrows(void *id, int srcrow, int dstrow, int nrows)
794 1.1 reinoud {
795 1.1 reinoud struct rasops_info *ri = id;
796 1.1 reinoud int height, offset, size;
797 1.1 reinoud int scrollup, scrolldown;
798 1.1 reinoud unsigned char *src, *dst;
799 1.1 reinoud
800 1.1 reinoud /* All movements are done in multiples of character heigths */
801 1.1 reinoud height = ri->ri_font->fontheight * nrows;
802 1.1 reinoud offset = (srcrow - dstrow) * ri->ri_yscale;
803 1.1 reinoud size = height * ri->ri_stride;
804 1.1 reinoud
805 1.1 reinoud /* check if we are full screen scrolling */
806 1.1 reinoud scrollup = (srcrow + nrows >= ri->ri_rows);
807 1.1 reinoud scrolldown = (dstrow + nrows >= ri->ri_rows);
808 1.1 reinoud
809 1.25 bjh21 if ((scrollup || scrolldown) &&
810 1.25 bjh21 (videomemory.vidm_type == VIDEOMEM_TYPE_VRAM)) {
811 1.1 reinoud ri->ri_bits = vidcvideo_hwscroll(offset);
812 1.1 reinoud vidcvideo_progr_scroll(); /* sadistic ; shouldnt this be on vsync? */
813 1.1 reinoud
814 1.1 reinoud /* wipe out remains of the screen if nessisary */
815 1.25 bjh21 if (ri->ri_emuheight != ri->ri_height)
816 1.25 bjh21 vv_eraserows(id, ri->ri_rows, 1, 0);
817 1.1 reinoud return;
818 1.25 bjh21 }
819 1.1 reinoud
820 1.25 bjh21 /*
821 1.25 bjh21 * Else we just copy the area : we're braindead for now
822 1.25 bjh21 * Note: we can't use hardware scrolling when the softc isnt
823 1.25 bjh21 * known yet... if its not known we dont have interrupts and
824 1.25 bjh21 * we can't change the display address reliable other than in
825 1.25 bjh21 * a Vsync
826 1.1 reinoud */
827 1.1 reinoud
828 1.1 reinoud src = ri->ri_bits + srcrow * ri->ri_font->fontheight * ri->ri_stride;
829 1.1 reinoud dst = ri->ri_bits + dstrow * ri->ri_font->fontheight * ri->ri_stride;
830 1.1 reinoud
831 1.32 chris memmove(dst, src, size);
832 1.1 reinoud }
833 1.1 reinoud
834 1.1 reinoud
835 1.25 bjh21 static void vv_eraserows(void *id, int startrow, int nrows, long attr)
836 1.1 reinoud {
837 1.1 reinoud struct rasops_info *ri = id;
838 1.1 reinoud int height;
839 1.1 reinoud unsigned char *src;
840 1.1 reinoud
841 1.1 reinoud /* we're braindead for now */
842 1.1 reinoud height = ri->ri_font->fontheight * nrows * ri->ri_stride;
843 1.1 reinoud
844 1.1 reinoud src = ri->ri_bits + startrow * ri->ri_font->fontheight * ri->ri_stride;
845 1.1 reinoud
846 1.26 bjh21 memset(src, 0, height);
847 1.6 reinoud }
848 1.6 reinoud
849 1.6 reinoud
850 1.25 bjh21 static void vv_putchar(void *id, int row, int col, u_int uc, long attr)
851 1.6 reinoud {
852 1.6 reinoud struct rasops_info *ri = id;
853 1.6 reinoud struct fb_devconfig *dc = (struct fb_devconfig *) (ri->ri_hw);
854 1.9 reinoud
855 1.9 reinoud /* delay the write back operation of the screen area */
856 1.9 reinoud dc->dc_writeback_delay = SCREEN_WRITE_BACK_DELAY;
857 1.9 reinoud dc->dc_changed |= WSDISPLAY_WB_COUNTER;
858 1.6 reinoud
859 1.6 reinoud /* just delegate */
860 1.6 reinoud dc->orig_ri_ops.putchar(id, row, col, uc, attr);
861 1.1 reinoud }
862