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