Home | History | Annotate | Line # | Download | only in wsfb
genfb.c revision 1.14
      1  1.14       phx /*	$NetBSD: genfb.c,v 1.14 2008/03/09 20:32:30 phx Exp $ */
      2   1.1  macallan 
      3   1.1  macallan /*-
      4   1.1  macallan  * Copyright (c) 2007 Michael Lorenz
      5   1.1  macallan  * All rights reserved.
      6   1.1  macallan  *
      7   1.1  macallan  * Redistribution and use in source and binary forms, with or without
      8   1.1  macallan  * modification, are permitted provided that the following conditions
      9   1.1  macallan  * are met:
     10   1.1  macallan  * 1. Redistributions of source code must retain the above copyright
     11   1.1  macallan  *    notice, this list of conditions and the following disclaimer.
     12   1.1  macallan  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1  macallan  *    notice, this list of conditions and the following disclaimer in the
     14   1.1  macallan  *    documentation and/or other materials provided with the distribution.
     15   1.1  macallan  * 3. Neither the name of The NetBSD Foundation nor the names of its
     16   1.1  macallan  *    contributors may be used to endorse or promote products derived
     17   1.1  macallan  *    from this software without specific prior written permission.
     18   1.1  macallan  *
     19   1.1  macallan  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.1  macallan  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.1  macallan  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.1  macallan  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.1  macallan  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.1  macallan  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.1  macallan  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.1  macallan  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.1  macallan  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.1  macallan  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.1  macallan  * POSSIBILITY OF SUCH DAMAGE.
     30   1.1  macallan  */
     31   1.1  macallan 
     32   1.1  macallan #include <sys/cdefs.h>
     33  1.14       phx __KERNEL_RCSID(0, "$NetBSD: genfb.c,v 1.14 2008/03/09 20:32:30 phx Exp $");
     34   1.1  macallan 
     35   1.1  macallan #include <sys/param.h>
     36   1.1  macallan #include <sys/systm.h>
     37   1.1  macallan #include <sys/kernel.h>
     38   1.1  macallan #include <sys/device.h>
     39   1.1  macallan #include <sys/proc.h>
     40   1.1  macallan #include <sys/mutex.h>
     41   1.1  macallan #include <sys/ioctl.h>
     42   1.1  macallan #include <sys/kernel.h>
     43   1.1  macallan #include <sys/systm.h>
     44   1.5  macallan #include <sys/malloc.h>
     45   1.1  macallan 
     46   1.1  macallan #include <dev/wscons/wsconsio.h>
     47   1.1  macallan #include <dev/wscons/wsdisplayvar.h>
     48   1.1  macallan #include <dev/rasops/rasops.h>
     49   1.1  macallan #include <dev/wsfont/wsfont.h>
     50   1.1  macallan 
     51   1.1  macallan #include <dev/wscons/wsdisplay_vconsvar.h>
     52   1.1  macallan 
     53   1.1  macallan #include <dev/wsfb/genfbvar.h>
     54   1.1  macallan 
     55   1.1  macallan #include "opt_genfb.h"
     56   1.1  macallan #include "opt_wsfb.h"
     57   1.1  macallan 
     58  1.11  macallan #ifdef GENFB_DEBUG
     59  1.11  macallan #define GPRINTF panic
     60  1.11  macallan #else
     61  1.11  macallan #define GPRINTF aprint_verbose
     62  1.11  macallan #endif
     63  1.11  macallan 
     64   1.1  macallan static int	genfb_ioctl(void *, void *, u_long, void *, int, struct lwp *);
     65   1.1  macallan static paddr_t	genfb_mmap(void *, void *, off_t, int);
     66   1.1  macallan static void	genfb_init_screen(void *, struct vcons_screen *, int, long *);
     67   1.1  macallan 
     68   1.1  macallan static int	genfb_putcmap(struct genfb_softc *, struct wsdisplay_cmap *);
     69   1.1  macallan static int 	genfb_getcmap(struct genfb_softc *, struct wsdisplay_cmap *);
     70   1.1  macallan static void	genfb_restore_palette(struct genfb_softc *);
     71   1.1  macallan static int 	genfb_putpalreg(struct genfb_softc *, uint8_t, uint8_t,
     72   1.1  macallan 			    uint8_t, uint8_t);
     73   1.1  macallan 
     74   1.1  macallan extern const u_char rasops_cmap[768];
     75   1.1  macallan 
     76   1.1  macallan struct wsdisplay_accessops genfb_accessops = {
     77   1.1  macallan 	genfb_ioctl,
     78   1.1  macallan 	genfb_mmap,
     79   1.3  macallan 	NULL,	/* alloc_screen */
     80   1.3  macallan 	NULL,	/* free_screen */
     81   1.3  macallan 	NULL,	/* show_screen */
     82   1.3  macallan 	NULL, 	/* load_font */
     83   1.3  macallan 	NULL,	/* pollc */
     84   1.3  macallan 	NULL	/* scroll */
     85   1.1  macallan };
     86   1.1  macallan 
     87   1.2  macallan void
     88   1.2  macallan genfb_init(struct genfb_softc *sc)
     89   1.2  macallan {
     90   1.2  macallan 	prop_dictionary_t dict;
     91   1.4  macallan 	uint64_t cmap_cb;
     92   1.2  macallan 	uint32_t fboffset;
     93   1.2  macallan 
     94   1.2  macallan 	dict = device_properties(&sc->sc_dev);
     95   1.2  macallan #ifdef GENFB_DEBUG
     96   1.2  macallan 	printf(prop_dictionary_externalize(dict));
     97   1.2  macallan #endif
     98  1.11  macallan 	if (!prop_dictionary_get_uint32(dict, "width", &sc->sc_width)) {
     99  1.12  macallan 		GPRINTF("no width property\n");
    100  1.11  macallan 		return;
    101  1.11  macallan 	}
    102  1.11  macallan 	if (!prop_dictionary_get_uint32(dict, "height", &sc->sc_height)) {
    103  1.12  macallan 		GPRINTF("no height property\n");
    104  1.11  macallan 		return;
    105  1.11  macallan 	}
    106  1.11  macallan 	if (!prop_dictionary_get_uint32(dict, "depth", &sc->sc_depth)) {
    107  1.12  macallan 		GPRINTF("no depth property\n");
    108  1.11  macallan 		return;
    109  1.11  macallan 	}
    110   1.2  macallan 
    111   1.2  macallan 	/* XXX should be a 64bit value */
    112  1.11  macallan 	if (!prop_dictionary_get_uint32(dict, "address", &fboffset)) {
    113  1.12  macallan 		GPRINTF("no address property\n");
    114  1.11  macallan 		return;
    115  1.11  macallan 	}
    116  1.11  macallan 
    117   1.2  macallan 	sc->sc_fboffset = fboffset;
    118   1.2  macallan 
    119   1.2  macallan 	if (!prop_dictionary_get_uint32(dict, "linebytes", &sc->sc_stride))
    120   1.2  macallan 		sc->sc_stride = (sc->sc_width * sc->sc_depth) >> 3;
    121  1.13  macallan 
    122  1.13  macallan 	/*
    123  1.13  macallan 	 * deal with a bug in the Raptor firmware which always sets
    124  1.13  macallan 	 * stride = width even when depth != 8
    125  1.13  macallan 	 */
    126  1.13  macallan 	if (sc->sc_stride < sc->sc_width * (sc->sc_depth >> 3))
    127  1.13  macallan 		sc->sc_stride = sc->sc_width * (sc->sc_depth >> 3);
    128  1.13  macallan 
    129   1.6  macallan 	sc->sc_fbsize = sc->sc_height * sc->sc_stride;
    130   1.4  macallan 
    131   1.4  macallan 	/* optional colour map callback */
    132   1.4  macallan 	sc->sc_cmcb = NULL;
    133   1.4  macallan 	if (prop_dictionary_get_uint64(dict, "cmap_callback", &cmap_cb)) {
    134   1.4  macallan 		if (cmap_cb != 0)
    135   1.4  macallan 			sc->sc_cmcb = (void *)(vaddr_t)cmap_cb;
    136   1.4  macallan 	}
    137   1.2  macallan }
    138   1.2  macallan 
    139   1.2  macallan int
    140   1.2  macallan genfb_attach(struct genfb_softc *sc, struct genfb_ops *ops)
    141   1.1  macallan {
    142   1.1  macallan 	struct wsemuldisplaydev_attach_args aa;
    143   1.1  macallan 	prop_dictionary_t dict;
    144   1.1  macallan 	struct rasops_info *ri;
    145   1.1  macallan 	long defattr;
    146   1.7  macallan 	int i, j;
    147   1.7  macallan 	bool console;
    148   1.9      jmmv 
    149  1.14       phx 	dict = device_properties(&sc->sc_dev);
    150  1.14       phx 	prop_dictionary_get_bool(dict, "is_console", &console);
    151  1.14       phx 
    152  1.14       phx 	/* do not attach when we're not console */
    153  1.14       phx 	if (!console) {
    154  1.14       phx 		aprint_normal("%s: no console, unable to continue",
    155  1.14       phx 		    sc->sc_dev.dv_xname);
    156  1.14       phx 		return -1;
    157  1.14       phx 	}
    158  1.14       phx 
    159   1.9      jmmv 	aprint_verbose("%s: framebuffer at %p, size %dx%d, depth %d, "
    160   1.9      jmmv 	    "stride %d\n", sc->sc_dev.dv_xname, sc->sc_fbaddr,
    161   1.9      jmmv 	    sc->sc_width, sc->sc_height, sc->sc_depth, sc->sc_stride);
    162   1.9      jmmv 
    163   1.1  macallan 	sc->sc_defaultscreen_descr = (struct wsscreen_descr){
    164   1.1  macallan 		"default",
    165   1.1  macallan 		0, 0,
    166   1.1  macallan 		NULL,
    167   1.1  macallan 		8, 16,
    168   1.1  macallan 		WSSCREEN_WSCOLORS | WSSCREEN_HILIT,
    169   1.3  macallan 		NULL
    170   1.1  macallan 	};
    171   1.1  macallan 	sc->sc_screens[0] = &sc->sc_defaultscreen_descr;
    172   1.1  macallan 	sc->sc_screenlist = (struct wsscreen_list){1, sc->sc_screens};
    173   1.1  macallan 	memcpy(&sc->sc_ops, ops, sizeof(struct genfb_ops));
    174   1.1  macallan 	sc->sc_mode = WSDISPLAYIO_MODE_EMUL;
    175   1.1  macallan 
    176   1.5  macallan 	sc->sc_shadowfb = malloc(sc->sc_fbsize, M_DEVBUF, M_WAITOK);
    177   1.5  macallan 
    178   1.1  macallan 	vcons_init(&sc->vd, sc, &sc->sc_defaultscreen_descr,
    179   1.1  macallan 	    &genfb_accessops);
    180   1.1  macallan 	sc->vd.init_screen = genfb_init_screen;
    181   1.1  macallan 
    182  1.10      jmmv 	/* Do not print anything between this point and the screen
    183  1.10      jmmv 	 * clear operation below.  Otherwise it will be lost. */
    184  1.10      jmmv 
    185   1.1  macallan 	ri = &sc->sc_console_screen.scr_ri;
    186   1.1  macallan 
    187  1.14       phx 	vcons_init_screen(&sc->vd, &sc->sc_console_screen, 1,
    188  1.14       phx 	    &defattr);
    189  1.14       phx 	sc->sc_console_screen.scr_flags |= VCONS_SCREEN_IS_STATIC;
    190  1.14       phx 
    191  1.14       phx 	sc->sc_defaultscreen_descr.textops = &ri->ri_ops;
    192  1.14       phx 	sc->sc_defaultscreen_descr.capabilities = ri->ri_caps;
    193  1.14       phx 	sc->sc_defaultscreen_descr.nrows = ri->ri_rows;
    194  1.14       phx 	sc->sc_defaultscreen_descr.ncols = ri->ri_cols;
    195  1.14       phx 	wsdisplay_cnattach(&sc->sc_defaultscreen_descr, ri, 0, 0,
    196  1.14       phx 	    defattr);
    197   1.1  macallan 
    198  1.10      jmmv 	/* Clear the whole screen to bring it to a known state. */
    199  1.10      jmmv 	(*ri->ri_ops.eraserows)(ri, 0, ri->ri_rows, defattr);
    200  1.10      jmmv 
    201   1.1  macallan 	j = 0;
    202   1.8      jmmv 	for (i = 0; i < (1 << sc->sc_depth); i++) {
    203   1.4  macallan 
    204   1.4  macallan 		sc->sc_cmap_red[i] = rasops_cmap[j];
    205   1.4  macallan 		sc->sc_cmap_green[i] = rasops_cmap[j + 1];
    206   1.4  macallan 		sc->sc_cmap_blue[i] = rasops_cmap[j + 2];
    207   1.1  macallan 		genfb_putpalreg(sc, i, rasops_cmap[j], rasops_cmap[j + 1],
    208   1.1  macallan 		    rasops_cmap[j + 2]);
    209   1.1  macallan 		j += 3;
    210   1.1  macallan 	}
    211   1.1  macallan 
    212   1.1  macallan 	aa.console = console;
    213   1.1  macallan 	aa.scrdata = &sc->sc_screenlist;
    214   1.1  macallan 	aa.accessops = &genfb_accessops;
    215   1.1  macallan 	aa.accesscookie = &sc->vd;
    216   1.1  macallan 
    217   1.1  macallan 	config_found(&sc->sc_dev, &aa, wsemuldisplaydevprint);
    218   1.1  macallan 
    219   1.1  macallan 	return 0;
    220   1.1  macallan }
    221   1.1  macallan 
    222   1.1  macallan static int
    223   1.1  macallan genfb_ioctl(void *v, void *vs, u_long cmd, void *data, int flag,
    224   1.1  macallan 	struct lwp *l)
    225   1.1  macallan {
    226   1.1  macallan 	struct vcons_data *vd = v;
    227   1.1  macallan 	struct genfb_softc *sc = vd->cookie;
    228   1.1  macallan 	struct wsdisplay_fbinfo *wdf;
    229   1.1  macallan 	struct vcons_screen *ms = vd->active;
    230   1.1  macallan 
    231   1.1  macallan 	switch (cmd) {
    232   1.1  macallan 
    233   1.1  macallan 		case WSDISPLAYIO_GINFO:
    234   1.6  macallan 			if (ms == NULL)
    235   1.6  macallan 				return ENODEV;
    236   1.1  macallan 			wdf = (void *)data;
    237   1.1  macallan 			wdf->height = ms->scr_ri.ri_height;
    238   1.1  macallan 			wdf->width = ms->scr_ri.ri_width;
    239   1.1  macallan 			wdf->depth = ms->scr_ri.ri_depth;
    240   1.1  macallan 			wdf->cmsize = 256;
    241   1.1  macallan 			return 0;
    242   1.1  macallan 
    243   1.1  macallan 		case WSDISPLAYIO_GETCMAP:
    244   1.1  macallan 			return genfb_getcmap(sc,
    245   1.1  macallan 			    (struct wsdisplay_cmap *)data);
    246   1.1  macallan 
    247   1.1  macallan 		case WSDISPLAYIO_PUTCMAP:
    248   1.1  macallan 			return genfb_putcmap(sc,
    249   1.1  macallan 			    (struct wsdisplay_cmap *)data);
    250   1.1  macallan 
    251   1.3  macallan 		case WSDISPLAYIO_LINEBYTES:
    252   1.3  macallan 			*(u_int *)data = sc->sc_stride;
    253   1.3  macallan 			return 0;
    254   1.3  macallan 
    255   1.1  macallan 		case WSDISPLAYIO_SMODE:
    256   1.1  macallan 			{
    257   1.1  macallan 				int new_mode = *(int*)data;
    258  1.11  macallan 
    259  1.11  macallan 				/* notify the bus backend */
    260  1.11  macallan 				if (sc->sc_ops.genfb_ioctl)
    261  1.11  macallan 					return sc->sc_ops.genfb_ioctl(sc, vs,
    262  1.11  macallan 					    cmd, data, flag, l);
    263  1.11  macallan 
    264   1.1  macallan 				if (new_mode != sc->sc_mode) {
    265   1.1  macallan 					sc->sc_mode = new_mode;
    266   1.1  macallan 					if(new_mode == WSDISPLAYIO_MODE_EMUL) {
    267   1.1  macallan 						genfb_restore_palette(sc);
    268   1.1  macallan 						vcons_redraw_screen(ms);
    269   1.1  macallan 					}
    270   1.1  macallan 				}
    271   1.1  macallan 			}
    272   1.1  macallan 			return 0;
    273   1.1  macallan 		default:
    274   1.1  macallan 			if (sc->sc_ops.genfb_ioctl)
    275   1.1  macallan 				return sc->sc_ops.genfb_ioctl(sc, vs, cmd,
    276   1.1  macallan 				    data, flag, l);
    277   1.1  macallan 	}
    278   1.1  macallan 	return EPASSTHROUGH;
    279   1.1  macallan }
    280   1.1  macallan 
    281   1.1  macallan static paddr_t
    282   1.1  macallan genfb_mmap(void *v, void *vs, off_t offset, int prot)
    283   1.1  macallan {
    284   1.1  macallan 	struct vcons_data *vd = v;
    285   1.1  macallan 	struct genfb_softc *sc = vd->cookie;
    286   1.1  macallan 
    287   1.1  macallan 	if (sc->sc_ops.genfb_mmap)
    288   1.1  macallan 		return sc->sc_ops.genfb_mmap(sc, vs, offset, prot);
    289   1.1  macallan 
    290   1.1  macallan 	return -1;
    291   1.1  macallan }
    292   1.1  macallan 
    293   1.1  macallan static void
    294   1.1  macallan genfb_init_screen(void *cookie, struct vcons_screen *scr,
    295   1.1  macallan     int existing, long *defattr)
    296   1.1  macallan {
    297   1.1  macallan 	struct genfb_softc *sc = cookie;
    298   1.1  macallan 	struct rasops_info *ri = &scr->scr_ri;
    299   1.1  macallan 
    300   1.1  macallan 	ri->ri_depth = sc->sc_depth;
    301   1.1  macallan 	ri->ri_width = sc->sc_width;
    302   1.1  macallan 	ri->ri_height = sc->sc_height;
    303   1.1  macallan 	ri->ri_stride = sc->sc_stride;
    304   1.1  macallan 	ri->ri_flg = RI_CENTER | RI_FULLCLEAR;
    305   1.1  macallan 
    306   1.5  macallan 	if (sc->sc_shadowfb != NULL) {
    307   1.5  macallan 
    308   1.5  macallan 		ri->ri_hwbits = (char *)sc->sc_fbaddr;
    309   1.5  macallan 		ri->ri_bits = (char *)sc->sc_shadowfb;
    310   1.5  macallan 	} else
    311   1.5  macallan 		ri->ri_bits = (char *)sc->sc_fbaddr;
    312   1.1  macallan 
    313   1.1  macallan 	if (existing) {
    314   1.1  macallan 		ri->ri_flg |= RI_CLEAR;
    315   1.1  macallan 	}
    316   1.1  macallan 
    317   1.1  macallan 	rasops_init(ri, sc->sc_height / 8, sc->sc_width / 8);
    318   1.1  macallan 	ri->ri_caps = WSSCREEN_WSCOLORS;
    319   1.1  macallan 
    320   1.1  macallan 	rasops_reconfig(ri, sc->sc_height / ri->ri_font->fontheight,
    321   1.1  macallan 		    sc->sc_width / ri->ri_font->fontwidth);
    322   1.1  macallan 
    323   1.1  macallan 	ri->ri_hw = scr;
    324   1.1  macallan }
    325   1.1  macallan 
    326   1.1  macallan static int
    327   1.1  macallan genfb_putcmap(struct genfb_softc *sc, struct wsdisplay_cmap *cm)
    328   1.1  macallan {
    329   1.1  macallan 	u_char *r, *g, *b;
    330   1.1  macallan 	u_int index = cm->index;
    331   1.1  macallan 	u_int count = cm->count;
    332   1.1  macallan 	int i, error;
    333   1.1  macallan 	u_char rbuf[256], gbuf[256], bbuf[256];
    334   1.1  macallan 
    335   1.1  macallan #ifdef GENFB_DEBUG
    336   1.1  macallan 	aprint_debug("putcmap: %d %d\n",index, count);
    337   1.1  macallan #endif
    338   1.1  macallan 	if (cm->index >= 256 || cm->count > 256 ||
    339   1.1  macallan 	    (cm->index + cm->count) > 256)
    340   1.1  macallan 		return EINVAL;
    341   1.1  macallan 	error = copyin(cm->red, &rbuf[index], count);
    342   1.1  macallan 	if (error)
    343   1.1  macallan 		return error;
    344   1.1  macallan 	error = copyin(cm->green, &gbuf[index], count);
    345   1.1  macallan 	if (error)
    346   1.1  macallan 		return error;
    347   1.1  macallan 	error = copyin(cm->blue, &bbuf[index], count);
    348   1.1  macallan 	if (error)
    349   1.1  macallan 		return error;
    350   1.1  macallan 
    351   1.1  macallan 	memcpy(&sc->sc_cmap_red[index], &rbuf[index], count);
    352   1.1  macallan 	memcpy(&sc->sc_cmap_green[index], &gbuf[index], count);
    353   1.1  macallan 	memcpy(&sc->sc_cmap_blue[index], &bbuf[index], count);
    354   1.1  macallan 
    355   1.1  macallan 	r = &sc->sc_cmap_red[index];
    356   1.1  macallan 	g = &sc->sc_cmap_green[index];
    357   1.1  macallan 	b = &sc->sc_cmap_blue[index];
    358   1.1  macallan 
    359   1.1  macallan 	for (i = 0; i < count; i++) {
    360   1.1  macallan 		genfb_putpalreg(sc, index, *r, *g, *b);
    361   1.1  macallan 		index++;
    362   1.1  macallan 		r++, g++, b++;
    363   1.1  macallan 	}
    364   1.1  macallan 	return 0;
    365   1.1  macallan }
    366   1.1  macallan 
    367   1.1  macallan static int
    368   1.1  macallan genfb_getcmap(struct genfb_softc *sc, struct wsdisplay_cmap *cm)
    369   1.1  macallan {
    370   1.1  macallan 	u_int index = cm->index;
    371   1.1  macallan 	u_int count = cm->count;
    372   1.1  macallan 	int error;
    373   1.1  macallan 
    374   1.1  macallan 	if (index >= 255 || count > 256 || index + count > 256)
    375   1.1  macallan 		return EINVAL;
    376   1.1  macallan 
    377   1.1  macallan 	error = copyout(&sc->sc_cmap_red[index],   cm->red,   count);
    378   1.1  macallan 	if (error)
    379   1.1  macallan 		return error;
    380   1.1  macallan 	error = copyout(&sc->sc_cmap_green[index], cm->green, count);
    381   1.1  macallan 	if (error)
    382   1.1  macallan 		return error;
    383   1.1  macallan 	error = copyout(&sc->sc_cmap_blue[index],  cm->blue,  count);
    384   1.1  macallan 	if (error)
    385   1.1  macallan 		return error;
    386   1.1  macallan 
    387   1.1  macallan 	return 0;
    388   1.1  macallan }
    389   1.1  macallan 
    390   1.1  macallan static void
    391   1.1  macallan genfb_restore_palette(struct genfb_softc *sc)
    392   1.1  macallan {
    393   1.1  macallan 	int i;
    394   1.1  macallan 
    395   1.8      jmmv 	for (i = 0; i < (1 << sc->sc_depth); i++) {
    396   1.1  macallan 		genfb_putpalreg(sc, i, sc->sc_cmap_red[i],
    397   1.1  macallan 		    sc->sc_cmap_green[i], sc->sc_cmap_blue[i]);
    398   1.1  macallan 	}
    399   1.1  macallan }
    400   1.1  macallan 
    401   1.1  macallan static int
    402   1.1  macallan genfb_putpalreg(struct genfb_softc *sc, uint8_t idx, uint8_t r, uint8_t g,
    403   1.1  macallan     uint8_t b)
    404   1.1  macallan {
    405   1.1  macallan 
    406   1.4  macallan 	if (sc->sc_cmcb) {
    407   1.4  macallan 
    408   1.4  macallan 		sc->sc_cmcb->gcc_set_mapreg(sc->sc_cmcb->gcc_cookie,
    409   1.4  macallan 		    idx, r, g, b);
    410   1.4  macallan 	}
    411   1.1  macallan 	return 0;
    412   1.1  macallan }
    413   1.1  macallan 
    414