xref: /netbsd-src/sys/dev/wsfb/genfb.c (revision b7b7574d3bf8eeb51a1fa3977b59142ec6434a55)
1 /*	$NetBSD: genfb.c,v 1.53 2014/03/18 18:20:42 riastradh Exp $ */
2 
3 /*-
4  * Copyright (c) 2007 Michael Lorenz
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26  * POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #include <sys/cdefs.h>
30 __KERNEL_RCSID(0, "$NetBSD: genfb.c,v 1.53 2014/03/18 18:20:42 riastradh Exp $");
31 
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/kernel.h>
35 #include <sys/device.h>
36 #include <sys/proc.h>
37 #include <sys/mutex.h>
38 #include <sys/ioctl.h>
39 #include <sys/kernel.h>
40 #include <sys/systm.h>
41 #include <sys/kmem.h>
42 
43 #include <dev/wscons/wsconsio.h>
44 #include <dev/wscons/wsdisplayvar.h>
45 #include <dev/rasops/rasops.h>
46 #include <dev/wsfont/wsfont.h>
47 
48 #include <dev/wscons/wsdisplay_vconsvar.h>
49 
50 #include <dev/wsfb/genfbvar.h>
51 
52 #ifdef GENFB_DISABLE_TEXT
53 #include <sys/reboot.h>
54 #define DISABLESPLASH (boothowto & (RB_SINGLE | RB_USERCONF | RB_ASKNAME | \
55 		AB_VERBOSE | AB_DEBUG) )
56 #endif
57 
58 #ifdef _KERNEL_OPT
59 #include "opt_genfb.h"
60 #include "opt_wsfb.h"
61 #endif
62 
63 #ifdef GENFB_DEBUG
64 #define GPRINTF panic
65 #else
66 #define GPRINTF aprint_debug
67 #endif
68 
69 #define GENFB_BRIGHTNESS_STEP 15
70 
71 static int	genfb_ioctl(void *, void *, u_long, void *, int, struct lwp *);
72 static paddr_t	genfb_mmap(void *, void *, off_t, int);
73 static void	genfb_pollc(void *, int);
74 
75 static void	genfb_init_screen(void *, struct vcons_screen *, int, long *);
76 
77 static int	genfb_putcmap(struct genfb_softc *, struct wsdisplay_cmap *);
78 static int 	genfb_getcmap(struct genfb_softc *, struct wsdisplay_cmap *);
79 static int 	genfb_putpalreg(struct genfb_softc *, uint8_t, uint8_t,
80 			    uint8_t, uint8_t);
81 static void	genfb_init_palette(struct genfb_softc *);
82 
83 static void	genfb_brightness_up(device_t);
84 static void	genfb_brightness_down(device_t);
85 
86 extern const u_char rasops_cmap[768];
87 
88 static int genfb_cnattach_called = 0;
89 static int genfb_enabled = 1;
90 
91 static struct genfb_softc *genfb_softc = NULL;
92 
93 void
94 genfb_init(struct genfb_softc *sc)
95 {
96 	prop_dictionary_t dict;
97 	uint64_t cmap_cb, pmf_cb, mode_cb, bl_cb, br_cb, fbaddr;
98 	uint32_t fboffset;
99 	bool console;
100 
101 	dict = device_properties(sc->sc_dev);
102 #ifdef GENFB_DEBUG
103 	printf(prop_dictionary_externalize(dict));
104 #endif
105 	prop_dictionary_get_bool(dict, "is_console", &console);
106 
107 	if (!prop_dictionary_get_uint32(dict, "width", &sc->sc_width)) {
108 		GPRINTF("no width property\n");
109 		return;
110 	}
111 	if (!prop_dictionary_get_uint32(dict, "height", &sc->sc_height)) {
112 		GPRINTF("no height property\n");
113 		return;
114 	}
115 	if (!prop_dictionary_get_uint32(dict, "depth", &sc->sc_depth)) {
116 		GPRINTF("no depth property\n");
117 		return;
118 	}
119 
120 	/* XXX should be a 64bit value */
121 	if (!prop_dictionary_get_uint32(dict, "address", &fboffset)) {
122 		GPRINTF("no address property\n");
123 		return;
124 	}
125 
126 	sc->sc_fboffset = fboffset;
127 
128 	sc->sc_fbaddr = NULL;
129 	if (prop_dictionary_get_uint64(dict, "virtual_address", &fbaddr)) {
130 		sc->sc_fbaddr = (void *)(uintptr_t)fbaddr;
131 	}
132 
133 	if (!prop_dictionary_get_uint32(dict, "linebytes", &sc->sc_stride))
134 		sc->sc_stride = (sc->sc_width * sc->sc_depth) >> 3;
135 
136 	/*
137 	 * deal with a bug in the Raptor firmware which always sets
138 	 * stride = width even when depth != 8
139 	 */
140 	if (sc->sc_stride < sc->sc_width * (sc->sc_depth >> 3))
141 		sc->sc_stride = sc->sc_width * (sc->sc_depth >> 3);
142 
143 	sc->sc_fbsize = sc->sc_height * sc->sc_stride;
144 
145 	/* optional colour map callback */
146 	sc->sc_cmcb = NULL;
147 	if (prop_dictionary_get_uint64(dict, "cmap_callback", &cmap_cb)) {
148 		if (cmap_cb != 0)
149 			sc->sc_cmcb = (void *)(vaddr_t)cmap_cb;
150 	}
151 
152 	/* optional pmf callback */
153 	sc->sc_pmfcb = NULL;
154 	if (prop_dictionary_get_uint64(dict, "pmf_callback", &pmf_cb)) {
155 		if (pmf_cb != 0)
156 			sc->sc_pmfcb = (void *)(vaddr_t)pmf_cb;
157 	}
158 
159 	/* optional mode callback */
160 	sc->sc_modecb = NULL;
161 	if (prop_dictionary_get_uint64(dict, "mode_callback", &mode_cb)) {
162 		if (mode_cb != 0)
163 			sc->sc_modecb = (void *)(vaddr_t)mode_cb;
164 	}
165 
166 	/* optional backlight control callback */
167 	sc->sc_backlight = NULL;
168 	if (prop_dictionary_get_uint64(dict, "backlight_callback", &bl_cb)) {
169 		if (bl_cb != 0) {
170 			sc->sc_backlight = (void *)(vaddr_t)bl_cb;
171 			aprint_naive_dev(sc->sc_dev,
172 			    "enabling backlight control\n");
173 		}
174 	}
175 
176 	/* optional brightness control callback */
177 	sc->sc_brightness = NULL;
178 	if (prop_dictionary_get_uint64(dict, "brightness_callback", &br_cb)) {
179 		if (br_cb != 0) {
180 			sc->sc_brightness = (void *)(vaddr_t)br_cb;
181 			aprint_naive_dev(sc->sc_dev,
182 			    "enabling brightness control\n");
183 			if (console &&
184 			    sc->sc_brightness->gpc_upd_parameter != NULL) {
185 				pmf_event_register(sc->sc_dev,
186 				    PMFE_DISPLAY_BRIGHTNESS_UP,
187 				    genfb_brightness_up, TRUE);
188 				pmf_event_register(sc->sc_dev,
189 				    PMFE_DISPLAY_BRIGHTNESS_DOWN,
190 				    genfb_brightness_down, TRUE);
191 			}
192 		}
193 	}
194 }
195 
196 int
197 genfb_attach(struct genfb_softc *sc, struct genfb_ops *ops)
198 {
199 	struct wsemuldisplaydev_attach_args aa;
200 	prop_dictionary_t dict;
201 	struct rasops_info *ri;
202 	uint16_t crow;
203 	long defattr;
204 	bool console;
205 #ifdef SPLASHSCREEN
206 	int i, j;
207 	int error = ENXIO;
208 #endif
209 
210 	dict = device_properties(sc->sc_dev);
211 	prop_dictionary_get_bool(dict, "is_console", &console);
212 
213 	if (prop_dictionary_get_uint16(dict, "cursor-row", &crow) == false)
214 		crow = 0;
215 	if (prop_dictionary_get_bool(dict, "clear-screen", &sc->sc_want_clear)
216 	    == false)
217 		sc->sc_want_clear = true;
218 
219 	aprint_verbose_dev(sc->sc_dev, "framebuffer at %p, size %dx%d, depth %d, "
220 	    "stride %d\n",
221 	    sc->sc_fboffset ? (void *)(intptr_t)sc->sc_fboffset : sc->sc_fbaddr,
222 	    sc->sc_width, sc->sc_height, sc->sc_depth, sc->sc_stride);
223 
224 	sc->sc_defaultscreen_descr = (struct wsscreen_descr){
225 		"default",
226 		0, 0,
227 		NULL,
228 		8, 16,
229 		WSSCREEN_WSCOLORS | WSSCREEN_HILIT,
230 		NULL
231 	};
232 	sc->sc_screens[0] = &sc->sc_defaultscreen_descr;
233 	sc->sc_screenlist = (struct wsscreen_list){1, sc->sc_screens};
234 	memcpy(&sc->sc_ops, ops, sizeof(struct genfb_ops));
235 	sc->sc_mode = WSDISPLAYIO_MODE_EMUL;
236 	if (sc->sc_modecb != NULL)
237 		sc->sc_modecb->gmc_setmode(sc, sc->sc_mode);
238 
239 	sc->sc_accessops.ioctl = genfb_ioctl;
240 	sc->sc_accessops.mmap = genfb_mmap;
241 	sc->sc_accessops.pollc = genfb_pollc;
242 
243 #ifdef GENFB_SHADOWFB
244 	sc->sc_shadowfb = kmem_alloc(sc->sc_fbsize, KM_SLEEP);
245 	if (sc->sc_want_clear == false && sc->sc_shadowfb != NULL)
246 		memcpy(sc->sc_shadowfb, sc->sc_fbaddr, sc->sc_fbsize);
247 #endif
248 
249 	vcons_init(&sc->vd, sc, &sc->sc_defaultscreen_descr,
250 	    &sc->sc_accessops);
251 	sc->vd.init_screen = genfb_init_screen;
252 
253 	/* Do not print anything between this point and the screen
254 	 * clear operation below.  Otherwise it will be lost. */
255 
256 	ri = &sc->sc_console_screen.scr_ri;
257 
258 	vcons_init_screen(&sc->vd, &sc->sc_console_screen, 1,
259 	    &defattr);
260 	sc->sc_console_screen.scr_flags |= VCONS_SCREEN_IS_STATIC;
261 
262 #ifdef SPLASHSCREEN
263 /*
264  * If system isn't going to go multiuser, or user has requested to see
265  * boot text, don't render splash screen immediately
266  */
267 	if (DISABLESPLASH)
268 #endif
269 		vcons_redraw_screen(&sc->sc_console_screen);
270 
271 	sc->sc_defaultscreen_descr.textops = &ri->ri_ops;
272 	sc->sc_defaultscreen_descr.capabilities = ri->ri_caps;
273 	sc->sc_defaultscreen_descr.nrows = ri->ri_rows;
274 	sc->sc_defaultscreen_descr.ncols = ri->ri_cols;
275 
276 	if (crow >= ri->ri_rows) {
277 		crow = 0;
278 		sc->sc_want_clear = 1;
279 	}
280 
281 	if (console)
282 		wsdisplay_cnattach(&sc->sc_defaultscreen_descr, ri, 0, crow,
283 		    defattr);
284 
285 	/* Clear the whole screen to bring it to a known state. */
286 	if (sc->sc_want_clear)
287 		(*ri->ri_ops.eraserows)(ri, 0, ri->ri_rows, defattr);
288 
289 #ifdef SPLASHSCREEN
290 	j = 0;
291 	for (i = 0; i < min(1 << sc->sc_depth, 256); i++) {
292 		if (i >= SPLASH_CMAP_OFFSET &&
293 		    i < SPLASH_CMAP_OFFSET + SPLASH_CMAP_SIZE) {
294 			splash_get_cmap(i,
295 			    &sc->sc_cmap_red[i],
296 			    &sc->sc_cmap_green[i],
297 			    &sc->sc_cmap_blue[i]);
298 		} else {
299 			sc->sc_cmap_red[i] = rasops_cmap[j];
300 			sc->sc_cmap_green[i] = rasops_cmap[j + 1];
301 			sc->sc_cmap_blue[i] = rasops_cmap[j + 2];
302 		}
303 		j += 3;
304 	}
305 	genfb_restore_palette(sc);
306 
307 	sc->sc_splash.si_depth = sc->sc_depth;
308 	sc->sc_splash.si_bits = sc->sc_console_screen.scr_ri.ri_bits;
309 	sc->sc_splash.si_hwbits = sc->sc_fbaddr;
310 	sc->sc_splash.si_width = sc->sc_width;
311 	sc->sc_splash.si_height = sc->sc_height;
312 	sc->sc_splash.si_stride = sc->sc_stride;
313 	sc->sc_splash.si_fillrect = NULL;
314 	if (!DISABLESPLASH) {
315 		error = splash_render(&sc->sc_splash,
316 		    SPLASH_F_CENTER|SPLASH_F_FILL);
317 		if (error) {
318 			SCREEN_ENABLE_DRAWING(&sc->sc_console_screen);
319 			genfb_init_palette(sc);
320 			vcons_replay_msgbuf(&sc->sc_console_screen);
321 		}
322 	}
323 #else
324 	genfb_init_palette(sc);
325 	if (console)
326 		vcons_replay_msgbuf(&sc->sc_console_screen);
327 #endif
328 
329 	if (genfb_softc == NULL)
330 		genfb_softc = sc;
331 
332 	aa.console = console;
333 	aa.scrdata = &sc->sc_screenlist;
334 	aa.accessops = &sc->sc_accessops;
335 	aa.accesscookie = &sc->vd;
336 
337 #ifdef GENFB_DISABLE_TEXT
338 	if (!DISABLESPLASH && error == 0)
339 		SCREEN_DISABLE_DRAWING(&sc->sc_console_screen);
340 #endif
341 
342 	config_found_ia(sc->sc_dev, "wsemuldisplaydev", &aa,
343 	    wsemuldisplaydevprint);
344 
345 	return 0;
346 }
347 
348 static int
349 genfb_ioctl(void *v, void *vs, u_long cmd, void *data, int flag,
350 	struct lwp *l)
351 {
352 	struct vcons_data *vd = v;
353 	struct genfb_softc *sc = vd->cookie;
354 	struct wsdisplay_fbinfo *wdf;
355 	struct vcons_screen *ms = vd->active;
356 	struct wsdisplay_param *param;
357 	int new_mode, error, val;
358 
359 	switch (cmd) {
360 		case WSDISPLAYIO_GINFO:
361 			if (ms == NULL)
362 				return ENODEV;
363 			wdf = (void *)data;
364 			wdf->height = ms->scr_ri.ri_height;
365 			wdf->width = ms->scr_ri.ri_width;
366 			wdf->depth = ms->scr_ri.ri_depth;
367 			wdf->cmsize = 256;
368 			return 0;
369 
370 		case WSDISPLAYIO_GETCMAP:
371 			return genfb_getcmap(sc,
372 			    (struct wsdisplay_cmap *)data);
373 
374 		case WSDISPLAYIO_PUTCMAP:
375 			return genfb_putcmap(sc,
376 			    (struct wsdisplay_cmap *)data);
377 
378 		case WSDISPLAYIO_LINEBYTES:
379 			*(u_int *)data = sc->sc_stride;
380 			return 0;
381 
382 		case WSDISPLAYIO_SMODE:
383 			new_mode = *(int *)data;
384 
385 			/* notify the bus backend */
386 			error = 0;
387 			if (sc->sc_ops.genfb_ioctl)
388 				error = sc->sc_ops.genfb_ioctl(sc, vs,
389 					    cmd, data, flag, l);
390 			if (error && error != EPASSTHROUGH)
391 				return error;
392 
393 			if (new_mode != sc->sc_mode) {
394 				sc->sc_mode = new_mode;
395 				if (sc->sc_modecb != NULL)
396 					sc->sc_modecb->gmc_setmode(sc,
397 					    sc->sc_mode);
398 				if (new_mode == WSDISPLAYIO_MODE_EMUL) {
399 					genfb_restore_palette(sc);
400 					vcons_redraw_screen(ms);
401 				}
402 			}
403 			return 0;
404 
405 		case WSDISPLAYIO_SSPLASH:
406 #if defined(SPLASHSCREEN)
407 			if(*(int *)data == 1) {
408 				SCREEN_DISABLE_DRAWING(&sc->sc_console_screen);
409 				splash_render(&sc->sc_splash,
410 						SPLASH_F_CENTER|SPLASH_F_FILL);
411 			} else {
412 				SCREEN_ENABLE_DRAWING(&sc->sc_console_screen);
413 				genfb_init_palette(sc);
414 			}
415 			vcons_redraw_screen(ms);
416 			return 0;
417 #else
418 			return ENODEV;
419 #endif
420 		case WSDISPLAYIO_GETPARAM:
421 			param = (struct wsdisplay_param *)data;
422 			switch (param->param) {
423 			case WSDISPLAYIO_PARAM_BRIGHTNESS:
424 				if (sc->sc_brightness == NULL)
425 					return EPASSTHROUGH;
426 				param->min = 0;
427 				param->max = 255;
428 				return sc->sc_brightness->gpc_get_parameter(
429 				    sc->sc_brightness->gpc_cookie,
430 				    &param->curval);
431 			case WSDISPLAYIO_PARAM_BACKLIGHT:
432 				if (sc->sc_backlight == NULL)
433 					return EPASSTHROUGH;
434 				param->min = 0;
435 				param->max = 1;
436 				return sc->sc_backlight->gpc_get_parameter(
437 				    sc->sc_backlight->gpc_cookie,
438 				    &param->curval);
439 			}
440 			return EPASSTHROUGH;
441 
442 		case WSDISPLAYIO_SETPARAM:
443 			param = (struct wsdisplay_param *)data;
444 			switch (param->param) {
445 			case WSDISPLAYIO_PARAM_BRIGHTNESS:
446 				if (sc->sc_brightness == NULL)
447 					return EPASSTHROUGH;
448 				val = param->curval;
449 				if (val < 0) val = 0;
450 				if (val > 255) val = 255;
451 				return sc->sc_brightness->gpc_set_parameter(
452 				    sc->sc_brightness->gpc_cookie, val);
453 			case WSDISPLAYIO_PARAM_BACKLIGHT:
454 				if (sc->sc_backlight == NULL)
455 					return EPASSTHROUGH;
456 				val = param->curval;
457 				if (val < 0) val = 0;
458 				if (val > 1) val = 1;
459 				return sc->sc_backlight->gpc_set_parameter(
460 				    sc->sc_backlight->gpc_cookie, val);
461 			}
462 			return EPASSTHROUGH;
463 
464 		case WSDISPLAYIO_GET_EDID: {
465 			struct wsdisplayio_edid_info *d = data;
466 			return wsdisplayio_get_edid(sc->sc_dev, d);
467 		}
468 
469 		case WSDISPLAYIO_GET_FBINFO: {
470 			struct wsdisplayio_fbinfo *fbi = data;
471 			return wsdisplayio_get_fbinfo(&ms->scr_ri, fbi);
472 		}
473 
474 		default:
475 			if (sc->sc_ops.genfb_ioctl)
476 				return sc->sc_ops.genfb_ioctl(sc, vs, cmd,
477 				    data, flag, l);
478 	}
479 	return EPASSTHROUGH;
480 }
481 
482 static paddr_t
483 genfb_mmap(void *v, void *vs, off_t offset, int prot)
484 {
485 	struct vcons_data *vd = v;
486 	struct genfb_softc *sc = vd->cookie;
487 
488 	if (sc->sc_ops.genfb_mmap)
489 		return sc->sc_ops.genfb_mmap(sc, vs, offset, prot);
490 
491 	return -1;
492 }
493 
494 static void
495 genfb_pollc(void *v, int on)
496 {
497 	struct vcons_data *vd = v;
498 	struct genfb_softc *sc = vd->cookie;
499 
500 	if (sc == NULL)
501 		return;
502 
503 	if (on)
504 		genfb_enable_polling(sc->sc_dev);
505 	else
506 		genfb_disable_polling(sc->sc_dev);
507 }
508 
509 static void
510 genfb_init_screen(void *cookie, struct vcons_screen *scr,
511     int existing, long *defattr)
512 {
513 	struct genfb_softc *sc = cookie;
514 	struct rasops_info *ri = &scr->scr_ri;
515 
516 	ri->ri_depth = sc->sc_depth;
517 	ri->ri_width = sc->sc_width;
518 	ri->ri_height = sc->sc_height;
519 	ri->ri_stride = sc->sc_stride;
520 	ri->ri_flg = RI_CENTER;
521 	if (sc->sc_want_clear)
522 		ri->ri_flg |= RI_FULLCLEAR;
523 
524 #ifdef GENFB_SHADOWFB
525 	if (sc->sc_shadowfb != NULL) {
526 
527 		ri->ri_hwbits = (char *)sc->sc_fbaddr;
528 		ri->ri_bits = (char *)sc->sc_shadowfb;
529 	} else
530 #endif
531 	{
532 		ri->ri_bits = (char *)sc->sc_fbaddr;
533 		scr->scr_flags |= VCONS_DONT_READ;
534 	}
535 
536 	if (existing && sc->sc_want_clear) {
537 		ri->ri_flg |= RI_CLEAR;
538 	}
539 
540 	if (ri->ri_depth == 32) {
541 		bool is_bgr = false;
542 
543 		ri->ri_flg |= RI_ENABLE_ALPHA;
544 		prop_dictionary_get_bool(device_properties(sc->sc_dev),
545 		    "is_bgr", &is_bgr);
546 		if (is_bgr) {
547 			/* someone requested BGR */
548 			ri->ri_rnum = 8;
549 			ri->ri_gnum = 8;
550 			ri->ri_bnum = 8;
551 			ri->ri_rpos = 0;
552 			ri->ri_gpos = 8;
553 			ri->ri_bpos = 16;
554 		} else {
555 			/* assume RGB */
556 			ri->ri_rnum = 8;
557 			ri->ri_gnum = 8;
558 			ri->ri_bnum = 8;
559 			ri->ri_rpos = 16;
560 			ri->ri_gpos = 8;
561 			ri->ri_bpos = 0;
562 		}
563 	}
564 
565 	if (ri->ri_depth == 8 && sc->sc_cmcb != NULL)
566 		ri->ri_flg |= RI_ENABLE_ALPHA | RI_8BIT_IS_RGB;
567 
568 
569 	rasops_init(ri, 0, 0);
570 	ri->ri_caps = WSSCREEN_WSCOLORS;
571 
572 	rasops_reconfig(ri, sc->sc_height / ri->ri_font->fontheight,
573 		    sc->sc_width / ri->ri_font->fontwidth);
574 
575 	/* TODO: actually center output */
576 	ri->ri_hw = scr;
577 
578 #ifdef GENFB_DISABLE_TEXT
579 	if (scr == &sc->sc_console_screen && !DISABLESPLASH)
580 		SCREEN_DISABLE_DRAWING(&sc->sc_console_screen);
581 #endif
582 }
583 
584 static int
585 genfb_putcmap(struct genfb_softc *sc, struct wsdisplay_cmap *cm)
586 {
587 	u_char *r, *g, *b;
588 	u_int index = cm->index;
589 	u_int count = cm->count;
590 	int i, error;
591 	u_char rbuf[256], gbuf[256], bbuf[256];
592 
593 #ifdef GENFB_DEBUG
594 	aprint_debug("putcmap: %d %d\n",index, count);
595 #endif
596 	if (cm->index >= 256 || cm->count > 256 ||
597 	    (cm->index + cm->count) > 256)
598 		return EINVAL;
599 	error = copyin(cm->red, &rbuf[index], count);
600 	if (error)
601 		return error;
602 	error = copyin(cm->green, &gbuf[index], count);
603 	if (error)
604 		return error;
605 	error = copyin(cm->blue, &bbuf[index], count);
606 	if (error)
607 		return error;
608 
609 	memcpy(&sc->sc_cmap_red[index], &rbuf[index], count);
610 	memcpy(&sc->sc_cmap_green[index], &gbuf[index], count);
611 	memcpy(&sc->sc_cmap_blue[index], &bbuf[index], count);
612 
613 	r = &sc->sc_cmap_red[index];
614 	g = &sc->sc_cmap_green[index];
615 	b = &sc->sc_cmap_blue[index];
616 
617 	for (i = 0; i < count; i++) {
618 		genfb_putpalreg(sc, index, *r, *g, *b);
619 		index++;
620 		r++, g++, b++;
621 	}
622 	return 0;
623 }
624 
625 static int
626 genfb_getcmap(struct genfb_softc *sc, struct wsdisplay_cmap *cm)
627 {
628 	u_int index = cm->index;
629 	u_int count = cm->count;
630 	int error;
631 
632 	if (index >= 255 || count > 256 || index + count > 256)
633 		return EINVAL;
634 
635 	error = copyout(&sc->sc_cmap_red[index],   cm->red,   count);
636 	if (error)
637 		return error;
638 	error = copyout(&sc->sc_cmap_green[index], cm->green, count);
639 	if (error)
640 		return error;
641 	error = copyout(&sc->sc_cmap_blue[index],  cm->blue,  count);
642 	if (error)
643 		return error;
644 
645 	return 0;
646 }
647 
648 void
649 genfb_restore_palette(struct genfb_softc *sc)
650 {
651 	int i;
652 
653 	if (sc->sc_depth <= 8) {
654 		for (i = 0; i < (1 << sc->sc_depth); i++) {
655 			genfb_putpalreg(sc, i, sc->sc_cmap_red[i],
656 			    sc->sc_cmap_green[i], sc->sc_cmap_blue[i]);
657 		}
658 	}
659 }
660 
661 static void
662 genfb_init_palette(struct genfb_softc *sc)
663 {
664 	int i, j, tmp;
665 
666 	if (sc->sc_depth == 8) {
667 		/* generate an r3g3b2 colour map */
668 		for (i = 0; i < 256; i++) {
669 			tmp = i & 0xe0;
670 			/*
671 			 * replicate bits so 0xe0 maps to a red value of 0xff
672 			 * in order to make white look actually white
673 			 */
674 			tmp |= (tmp >> 3) | (tmp >> 6);
675 			sc->sc_cmap_red[i] = tmp;
676 
677 			tmp = (i & 0x1c) << 3;
678 			tmp |= (tmp >> 3) | (tmp >> 6);
679 			sc->sc_cmap_green[i] = tmp;
680 
681 			tmp = (i & 0x03) << 6;
682 			tmp |= tmp >> 2;
683 			tmp |= tmp >> 4;
684 			sc->sc_cmap_blue[i] = tmp;
685 
686 			genfb_putpalreg(sc, i, sc->sc_cmap_red[i],
687 				       sc->sc_cmap_green[i],
688 				       sc->sc_cmap_blue[i]);
689 		}
690 	} else {
691 		/* steal rasops' ANSI cmap */
692 		j = 0;
693 		for (i = 0; i < 256; i++) {
694 			sc->sc_cmap_red[i] = rasops_cmap[j];
695 			sc->sc_cmap_green[i] = rasops_cmap[j + 1];
696 			sc->sc_cmap_blue[i] = rasops_cmap[j + 2];
697 			j += 3;
698 		}
699 	}
700 }
701 
702 static int
703 genfb_putpalreg(struct genfb_softc *sc, uint8_t idx, uint8_t r, uint8_t g,
704     uint8_t b)
705 {
706 
707 	if (sc->sc_cmcb) {
708 
709 		sc->sc_cmcb->gcc_set_mapreg(sc->sc_cmcb->gcc_cookie,
710 		    idx, r, g, b);
711 	}
712 	return 0;
713 }
714 
715 void
716 genfb_cnattach(void)
717 {
718 	genfb_cnattach_called = 1;
719 }
720 
721 void
722 genfb_disable(void)
723 {
724 	genfb_enabled = 0;
725 }
726 
727 int
728 genfb_is_console(void)
729 {
730 	return genfb_cnattach_called;
731 }
732 
733 int
734 genfb_is_enabled(void)
735 {
736 	return genfb_enabled;
737 }
738 
739 int
740 genfb_borrow(bus_addr_t addr, bus_space_handle_t *hdlp)
741 {
742 	struct genfb_softc *sc = genfb_softc;
743 
744 	if (sc && sc->sc_ops.genfb_borrow)
745 		return sc->sc_ops.genfb_borrow(sc, addr, hdlp);
746 	return 0;
747 }
748 
749 static void
750 genfb_brightness_up(device_t dev)
751 {
752 	struct genfb_softc *sc = device_private(dev);
753 
754 	KASSERT(sc->sc_brightness != NULL &&
755 		sc->sc_brightness->gpc_upd_parameter != NULL);
756 
757 	(void)sc->sc_brightness->gpc_upd_parameter(
758 	    sc->sc_brightness->gpc_cookie, GENFB_BRIGHTNESS_STEP);
759 }
760 
761 static void
762 genfb_brightness_down(device_t dev)
763 {
764 	struct genfb_softc *sc = device_private(dev);
765 
766 	KASSERT(sc->sc_brightness != NULL &&
767 		sc->sc_brightness->gpc_upd_parameter != NULL);
768 
769 	(void)sc->sc_brightness->gpc_upd_parameter(
770 	    sc->sc_brightness->gpc_cookie, - GENFB_BRIGHTNESS_STEP);
771 }
772 
773 void
774 genfb_enable_polling(device_t dev)
775 {
776 	struct genfb_softc *sc = device_private(dev);
777 
778 	if (sc->sc_console_screen.scr_vd) {
779 		SCREEN_ENABLE_DRAWING(&sc->sc_console_screen);
780 		vcons_hard_switch(&sc->sc_console_screen);
781 		vcons_enable_polling(&sc->vd);
782 	}
783 }
784 
785 void
786 genfb_disable_polling(device_t dev)
787 {
788 	struct genfb_softc *sc = device_private(dev);
789 
790 	if (sc->sc_console_screen.scr_vd) {
791 		vcons_disable_polling(&sc->vd);
792 	}
793 }
794