Home | History | Annotate | Line # | Download | only in dev
cgfourteen.c revision 1.40
      1  1.40       uwe /*	$NetBSD: cgfourteen.c,v 1.40 2005/11/16 00:49:03 uwe Exp $ */
      2   1.1    abrown 
      3   1.1    abrown /*
      4  1.12        pk  * Copyright (c) 1996
      5   1.1    abrown  *	The President and Fellows of Harvard College. All rights reserved.
      6   1.1    abrown  * Copyright (c) 1992, 1993
      7   1.1    abrown  *	The Regents of the University of California.  All rights reserved.
      8   1.1    abrown  *
      9   1.1    abrown  * This software was developed by the Computer Systems Engineering group
     10   1.1    abrown  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
     11   1.1    abrown  * contributed to Berkeley.
     12   1.1    abrown  *
     13   1.1    abrown  * All advertising materials mentioning features or use of this software
     14   1.1    abrown  * must display the following acknowledgement:
     15   1.1    abrown  *	This product includes software developed by Harvard University.
     16   1.1    abrown  *	This product includes software developed by the University of
     17   1.1    abrown  *	California, Lawrence Berkeley Laboratory.
     18   1.1    abrown  *
     19   1.1    abrown  * Redistribution and use in source and binary forms, with or without
     20   1.1    abrown  * modification, are permitted provided that the following conditions
     21   1.1    abrown  * are met:
     22   1.1    abrown  * 1. Redistributions of source code must retain the above copyright
     23   1.1    abrown  *    notice, this list of conditions and the following disclaimer.
     24   1.1    abrown  * 2. Redistributions in binary form must reproduce the above copyright
     25   1.1    abrown  *    notice, this list of conditions and the following disclaimer in the
     26   1.1    abrown  *    documentation and/or other materials provided with the distribution.
     27   1.1    abrown  * 3. All advertising materials mentioning features or use of this software
     28   1.1    abrown  *    must display the following acknowledgement:
     29   1.1    abrown  *	This product includes software developed by the University of
     30   1.1    abrown  *	California, Berkeley and its contributors.
     31   1.1    abrown  *	This product includes software developed by Harvard University and
     32   1.1    abrown  *	its contributors.
     33   1.1    abrown  * 4. Neither the name of the University nor the names of its contributors
     34   1.1    abrown  *    may be used to endorse or promote products derived from this software
     35   1.1    abrown  *    without specific prior written permission.
     36   1.1    abrown  *
     37   1.1    abrown  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     38   1.1    abrown  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     39   1.1    abrown  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     40   1.1    abrown  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     41   1.1    abrown  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     42   1.1    abrown  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     43   1.1    abrown  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     44   1.1    abrown  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     45   1.1    abrown  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     46   1.1    abrown  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     47   1.1    abrown  * SUCH DAMAGE.
     48   1.1    abrown  *
     49   1.1    abrown  *   Based on:
     50   1.1    abrown  *	NetBSD: cgthree.c,v 1.28 1996/05/31 09:59:22 pk Exp
     51   1.1    abrown  *	NetBSD: cgsix.c,v 1.25 1996/04/01 17:30:00 christos Exp
     52   1.1    abrown  */
     53   1.1    abrown 
     54   1.1    abrown /*
     55   1.1    abrown  * Driver for Campus-II on-board mbus-based video (cgfourteen).
     56   1.1    abrown  * Provides minimum emulation of a Sun cgthree 8-bit framebuffer to
     57   1.1    abrown  * allow X to run.
     58   1.1    abrown  *
     59   1.1    abrown  * Does not handle interrupts, even though they can occur.
     60   1.1    abrown  *
     61   1.1    abrown  * XXX should defer colormap updates to vertical retrace interrupts
     62   1.1    abrown  */
     63  1.10       mrg 
     64  1.12        pk /*
     65   1.1    abrown  * The following is for debugging only; it opens up a security hole
     66  1.12        pk  * enabled by allowing any user to map the control registers for the
     67   1.1    abrown  * cg14 into their space.
     68   1.1    abrown  */
     69   1.1    abrown #undef CG14_MAP_REGS
     70   1.1    abrown 
     71   1.1    abrown /*
     72   1.1    abrown  * The following enables 24-bit operation: when opened, the framebuffer
     73  1.12        pk  * will switch to 24-bit mode (actually 32-bit mode), and provide a
     74   1.1    abrown  * simple cg8 emulation.
     75   1.1    abrown  *
     76   1.1    abrown  * XXX Note that the code enabled by this define is currently untested/broken.
     77   1.1    abrown  */
     78   1.1    abrown #undef CG14_CG8
     79  1.35     lukem 
     80  1.35     lukem #include <sys/cdefs.h>
     81  1.40       uwe __KERNEL_RCSID(0, "$NetBSD: cgfourteen.c,v 1.40 2005/11/16 00:49:03 uwe Exp $");
     82   1.1    abrown 
     83   1.1    abrown #include <sys/param.h>
     84   1.1    abrown #include <sys/systm.h>
     85   1.1    abrown #include <sys/buf.h>
     86   1.1    abrown #include <sys/device.h>
     87   1.1    abrown #include <sys/ioctl.h>
     88   1.1    abrown #include <sys/malloc.h>
     89   1.1    abrown #include <sys/mman.h>
     90   1.1    abrown #include <sys/tty.h>
     91   1.1    abrown #include <sys/conf.h>
     92   1.1    abrown 
     93  1.18       mrg #include <uvm/uvm_extern.h>
     94   1.1    abrown 
     95  1.19        pk #include <machine/bus.h>
     96  1.19        pk #include <machine/autoconf.h>
     97  1.19        pk 
     98  1.19        pk #include <dev/sbus/sbusvar.h>
     99  1.19        pk 
    100  1.20        pk #include <dev/sun/fbio.h>
    101  1.20        pk #include <dev/sun/fbvar.h>
    102   1.1    abrown 
    103   1.1    abrown #include <sparc/dev/cgfourteenreg.h>
    104   1.1    abrown #include <sparc/dev/cgfourteenvar.h>
    105   1.1    abrown 
    106   1.1    abrown /* autoconfiguration driver */
    107  1.40       uwe static int	cgfourteenmatch(struct device *, struct cfdata *, void *);
    108   1.1    abrown static void	cgfourteenattach(struct device *, struct device *, void *);
    109   1.1    abrown static void	cgfourteenunblank(struct device *);
    110   1.1    abrown 
    111  1.29   thorpej CFATTACH_DECL(cgfourteen, sizeof(struct cgfourteen_softc),
    112  1.30   thorpej     cgfourteenmatch, cgfourteenattach, NULL, NULL);
    113   1.1    abrown 
    114   1.8   thorpej extern struct cfdriver cgfourteen_cd;
    115   1.1    abrown 
    116  1.26   gehenna dev_type_open(cgfourteenopen);
    117  1.26   gehenna dev_type_close(cgfourteenclose);
    118  1.26   gehenna dev_type_ioctl(cgfourteenioctl);
    119  1.26   gehenna dev_type_mmap(cgfourteenmmap);
    120  1.26   gehenna 
    121  1.26   gehenna const struct cdevsw cgfourteen_cdevsw = {
    122  1.26   gehenna 	cgfourteenopen, cgfourteenclose, noread, nowrite, cgfourteenioctl,
    123  1.31  jdolecek 	nostop, notty, nopoll, cgfourteenmmap, nokqfilter,
    124  1.26   gehenna };
    125  1.26   gehenna 
    126   1.1    abrown /* frame buffer generic driver */
    127   1.1    abrown static struct fbdriver cgfourteenfbdriver = {
    128  1.12        pk 	cgfourteenunblank, cgfourteenopen, cgfourteenclose, cgfourteenioctl,
    129  1.31  jdolecek 	nopoll, cgfourteenmmap, nokqfilter
    130   1.1    abrown };
    131   1.1    abrown 
    132  1.40       uwe static void cg14_set_video(struct cgfourteen_softc *, int);
    133  1.40       uwe static int  cg14_get_video(struct cgfourteen_softc *);
    134  1.40       uwe static int  cg14_get_cmap(struct fbcmap *, union cg14cmap *, int);
    135  1.40       uwe static int  cg14_put_cmap(struct fbcmap *, union cg14cmap *, int);
    136  1.40       uwe static void cg14_load_hwcmap(struct cgfourteen_softc *, int, int);
    137  1.40       uwe static void cg14_init(struct cgfourteen_softc *);
    138  1.40       uwe static void cg14_reset(struct cgfourteen_softc *);
    139  1.40       uwe static void cg14_loadomap(struct cgfourteen_softc *);	/* cursor overlay */
    140  1.40       uwe static void cg14_setcursor(struct cgfourteen_softc *);	/* set position */
    141  1.40       uwe static void cg14_loadcursor(struct cgfourteen_softc *);	/* set shape */
    142   1.1    abrown 
    143   1.1    abrown /*
    144  1.23   darrenr  * We map the display memory with an offset of 256K when emulating the cg3 or
    145  1.23   darrenr  * cg8; the cg3 uses this offset for compatibility with the cg4, and both the
    146  1.23   darrenr  * cg4 and cg8 have a mono overlay plane and an overlay enable plane in the
    147  1.23   darrenr  * first 256K.  Mapping at an offset of 0x04000000 causes only the color
    148  1.23   darrenr  * frame buffer to be mapped, without the overlay planes.
    149  1.23   darrenr  */
    150  1.23   darrenr #define START		(128*1024 + 128*1024)
    151  1.23   darrenr #define NOOVERLAY	(0x04000000)
    152  1.23   darrenr 
    153  1.23   darrenr /*
    154   1.1    abrown  * Match a cgfourteen.
    155   1.1    abrown  */
    156  1.40       uwe static int
    157  1.40       uwe cgfourteenmatch(struct device *parent, struct cfdata *cf, void *aux)
    158   1.1    abrown {
    159  1.11        pk 	union obio_attach_args *uoba = aux;
    160  1.11        pk 	struct sbus_attach_args *sa = &uoba->uoba_sbus;
    161   1.1    abrown 
    162   1.1    abrown 	/*
    163   1.1    abrown 	 * The cgfourteen is a local-bus video adaptor, accessed directly
    164   1.1    abrown 	 * via the processor, and not through device space or an external
    165   1.1    abrown 	 * bus. Thus we look _only_ at the obio bus.
    166   1.1    abrown 	 * Additionally, these things exist only on the Sun4m.
    167   1.1    abrown 	 */
    168  1.11        pk 
    169  1.11        pk 	if (uoba->uoba_isobio4 != 0 || !CPU_ISSUN4M)
    170  1.11        pk 		return (0);
    171  1.11        pk 
    172  1.11        pk 	/* Check driver name */
    173  1.27   thorpej 	return (strcmp(cf->cf_name, sa->sa_name) == 0);
    174   1.1    abrown }
    175   1.1    abrown 
    176   1.1    abrown /*
    177   1.1    abrown  * Attach a display.  We need to notice if it is the console, too.
    178   1.1    abrown  */
    179  1.40       uwe static void
    180  1.40       uwe cgfourteenattach(struct device *parent, struct device *self, void *aux)
    181   1.1    abrown {
    182  1.11        pk 	union obio_attach_args *uoba = aux;
    183  1.11        pk 	struct sbus_attach_args *sa = &uoba->uoba_sbus;
    184  1.11        pk 	struct cgfourteen_softc *sc = (struct cgfourteen_softc *)self;
    185  1.11        pk 	struct fbdevice *fb = &sc->sc_fb;
    186  1.11        pk 	bus_space_handle_t bh;
    187  1.11        pk 	int node, ramsize;
    188  1.40       uwe 	volatile uint32_t *lut;
    189   1.1    abrown 	int i, isconsole;
    190  1.11        pk 
    191  1.11        pk 	node = sa->sa_node;
    192  1.11        pk 
    193  1.11        pk 	/* Remember cookies for cgfourteenmmap() */
    194  1.11        pk 	sc->sc_bustag = sa->sa_bustag;
    195   1.1    abrown 
    196  1.11        pk 	fb->fb_driver = &cgfourteenfbdriver;
    197  1.11        pk 	fb->fb_device = &sc->sc_dev;
    198  1.11        pk 	/* Mask out invalid flags from the user. */
    199  1.11        pk 	fb->fb_flags = sc->sc_dev.dv_cfdata->cf_flags & FB_USERMASK;
    200   1.1    abrown 
    201   1.1    abrown 	/*
    202   1.1    abrown 	 * We're emulating a cg3/8, so represent ourselves as one
    203   1.1    abrown 	 */
    204   1.1    abrown #ifdef CG14_CG8
    205  1.11        pk 	fb->fb_type.fb_type = FBTYPE_MEMCOLOR;
    206  1.11        pk 	fb->fb_type.fb_depth = 32;
    207   1.1    abrown #else
    208  1.11        pk 	fb->fb_type.fb_type = FBTYPE_SUN3COLOR;
    209  1.11        pk 	fb->fb_type.fb_depth = 8;
    210   1.1    abrown #endif
    211  1.11        pk 	fb_setsize_obp(fb, sc->sc_fb.fb_type.fb_depth, 1152, 900, node);
    212  1.23   darrenr #ifdef CG14_CG8
    213  1.23   darrenr 	/*
    214  1.23   darrenr 	 * fb_setsize_obp set fb->fb_linebytes based on the current
    215  1.23   darrenr 	 * depth reported by obp, but that defaults to 8 bits (as
    216  1.23   darrenr 	 * reported by getpropint().  Update the value to reflect
    217  1.23   darrenr 	 * the depth that will be used after open.
    218  1.23   darrenr 	 * The display memory size returned by the cg8 driver includes
    219  1.23   darrenr 	 * the space used by the overlay planes, but the size returned
    220  1.23   darrenr 	 * by the cg3 driver does not; emulate the other drivers.
    221  1.23   darrenr 	 */
    222  1.23   darrenr 	fb->fb_linebytes = (fb->fb_type.fb_width * fb->fb_type.fb_depth) / 8;
    223  1.23   darrenr 	ramsize = roundup(START + (fb->fb_type.fb_height * fb->fb_linebytes),
    224  1.32   thorpej 			PAGE_SIZE);
    225  1.23   darrenr #else
    226  1.32   thorpej 	ramsize = roundup(fb->fb_type.fb_height * fb->fb_linebytes, PAGE_SIZE);
    227  1.23   darrenr #endif
    228  1.11        pk 	fb->fb_type.fb_cmsize = CG14_CLUT_SIZE;
    229  1.11        pk 	fb->fb_type.fb_size = ramsize;
    230  1.11        pk 
    231  1.13        pk 	if (sa->sa_nreg < 2) {
    232  1.13        pk 		printf("%s: only %d register sets\n",
    233  1.13        pk 			self->dv_xname, sa->sa_nreg);
    234  1.11        pk 		return;
    235  1.11        pk 	}
    236  1.13        pk 	bcopy(sa->sa_reg, sc->sc_physadr,
    237  1.25   thorpej 	      sa->sa_nreg * sizeof(struct openprom_addr));
    238   1.1    abrown 
    239   1.1    abrown 	/*
    240   1.1    abrown 	 * Now map in the 8 useful pages of registers
    241   1.1    abrown 	 */
    242  1.11        pk 	if (sa->sa_size < 0x10000) {
    243   1.1    abrown #ifdef DIAGNOSTIC
    244   1.5  christos 		printf("warning: can't find all cgfourteen registers...\n");
    245   1.1    abrown #endif
    246  1.11        pk 		sa->sa_size = 0x10000;
    247   1.1    abrown 	}
    248  1.22        pk 	if (sbus_bus_map(sa->sa_bustag,
    249  1.22        pk 			 sa->sa_slot, sa->sa_offset, sa->sa_size,
    250  1.22        pk 			 BUS_SPACE_MAP_LINEAR, &bh) != 0) {
    251  1.11        pk 		printf("%s: cannot map control registers\n", self->dv_xname);
    252  1.11        pk 		return;
    253  1.11        pk 	}
    254  1.11        pk 
    255  1.11        pk 	sc->sc_ctl   = (struct cg14ctl  *) (bh);
    256  1.11        pk 	sc->sc_hwc   = (struct cg14curs *) (bh + CG14_OFFSET_CURS);
    257  1.11        pk 	sc->sc_dac   = (struct cg14dac  *) (bh + CG14_OFFSET_DAC);
    258  1.11        pk 	sc->sc_xlut  = (struct cg14xlut *) (bh + CG14_OFFSET_XLUT);
    259  1.11        pk 	sc->sc_clut1 = (struct cg14clut *) (bh + CG14_OFFSET_CLUT1);
    260  1.11        pk 	sc->sc_clut2 = (struct cg14clut *) (bh + CG14_OFFSET_CLUT2);
    261  1.11        pk 	sc->sc_clut3 = (struct cg14clut *) (bh + CG14_OFFSET_CLUT3);
    262  1.11        pk 	sc->sc_clutincr =        (u_int *) (bh + CG14_OFFSET_CLUTINCR);
    263   1.1    abrown 
    264   1.1    abrown 	/*
    265   1.1    abrown 	 * Let the user know that we're here
    266   1.1    abrown 	 */
    267   1.1    abrown #ifdef CG14_CG8
    268   1.5  christos 	printf(": cgeight emulated at %dx%dx24bpp",
    269  1.11        pk 		fb->fb_type.fb_width, fb->fb_type.fb_height);
    270   1.1    abrown #else
    271   1.5  christos 	printf(": cgthree emulated at %dx%dx8bpp",
    272  1.11        pk 		fb->fb_type.fb_width, fb->fb_type.fb_height);
    273   1.1    abrown #endif
    274   1.1    abrown 	/*
    275   1.1    abrown 	 * Enable the video, but don't change the pixel depth.
    276   1.1    abrown 	 */
    277   1.1    abrown 	cg14_set_video(sc, 1);
    278   1.1    abrown 
    279   1.1    abrown 	/*
    280   1.1    abrown 	 * Grab the initial colormap
    281   1.1    abrown 	 */
    282  1.39   tsutsui 	lut = sc->sc_clut1->clut_lut;
    283   1.1    abrown 	for (i = 0; i < CG14_CLUT_SIZE; i++)
    284   1.1    abrown 		sc->sc_cmap.cm_chip[i] = lut[i];
    285   1.1    abrown 
    286   1.1    abrown 	/* See if we're the console */
    287  1.16        pk 	isconsole = fb_is_console(node);
    288   1.1    abrown 
    289   1.1    abrown 	if (isconsole) {
    290   1.5  christos 		printf(" (console)\n");
    291   1.1    abrown #ifdef notdef
    292  1.11        pk 		/*
    293  1.11        pk 		 * We don't use the raster console since the cg14 is
    294  1.11        pk 		 * fast enough already.
    295  1.11        pk 		 */
    296   1.1    abrown #ifdef RASTERCONSOLE
    297  1.11        pk 		fbrcons_init(fb);
    298   1.1    abrown #endif
    299   1.1    abrown #endif /* notdef */
    300   1.1    abrown 	} else
    301   1.5  christos 		printf("\n");
    302   1.1    abrown 
    303   1.1    abrown 	/* Attach to /dev/fb */
    304  1.16        pk 	fb_attach(&sc->sc_fb, isconsole);
    305   1.1    abrown }
    306   1.1    abrown 
    307   1.1    abrown /*
    308  1.12        pk  * Keep track of the number of opens made. In the 24-bit driver, we need to
    309   1.1    abrown  * switch to 24-bit mode on the first open, and switch back to 8-bit on
    310   1.1    abrown  * the last close. This kind of nonsense is needed to give screenblank
    311   1.1    abrown  * a fighting chance of working.
    312   1.1    abrown  */
    313   1.1    abrown static int cg14_opens = 0;
    314   1.1    abrown 
    315   1.1    abrown int
    316  1.40       uwe cgfourteenopen(dev_t dev, int flags, int mode, struct proc *p)
    317   1.1    abrown {
    318  1.11        pk 	struct cgfourteen_softc *sc = cgfourteen_cd.cd_devs[minor(dev)];
    319   1.1    abrown 	int unit = minor(dev);
    320   1.1    abrown 	int s, oldopens;
    321   1.1    abrown 
    322  1.12        pk 	if (unit >= cgfourteen_cd.cd_ndevs ||
    323   1.1    abrown 	    cgfourteen_cd.cd_devs[unit] == NULL)
    324   1.1    abrown 		return (ENXIO);
    325   1.1    abrown 
    326   1.1    abrown 	s = splhigh();
    327   1.1    abrown 	oldopens = cg14_opens++;
    328   1.1    abrown 	splx(s);
    329   1.1    abrown 
    330   1.1    abrown 	/* Setup the cg14 as we want it, and save the original PROM state */
    331   1.1    abrown 	if (oldopens == 0)	/* first open only, to make screenblank work */
    332   1.1    abrown 		cg14_init(sc);
    333   1.1    abrown 
    334   1.1    abrown 	return (0);
    335   1.1    abrown }
    336   1.1    abrown 
    337   1.1    abrown int
    338  1.40       uwe cgfourteenclose(dev_t dev, int flags, int mode, struct proc *p)
    339   1.1    abrown {
    340  1.11        pk 	struct cgfourteen_softc *sc = cgfourteen_cd.cd_devs[minor(dev)];
    341   1.1    abrown 	int s, opens;
    342   1.1    abrown 
    343   1.1    abrown 	s = splhigh();
    344   1.1    abrown 	opens = --cg14_opens;
    345   1.1    abrown 	if (cg14_opens < 0)
    346   1.1    abrown 		opens = cg14_opens = 0;
    347   1.1    abrown 	splx(s);
    348   1.1    abrown 
    349   1.1    abrown 	/*
    350   1.1    abrown 	 * Restore video state to make the PROM happy, on last close.
    351   1.1    abrown 	 */
    352   1.1    abrown 	if (opens == 0)
    353   1.1    abrown 		cg14_reset(sc);
    354   1.1    abrown 
    355   1.1    abrown 	return (0);
    356   1.1    abrown }
    357   1.1    abrown 
    358   1.1    abrown int
    359  1.40       uwe cgfourteenioctl(dev_t dev, u_long cmd, caddr_t data, int flags, struct proc *p)
    360   1.1    abrown {
    361  1.11        pk 	struct cgfourteen_softc *sc = cgfourteen_cd.cd_devs[minor(dev)];
    362  1.11        pk 	struct fbgattr *fba;
    363   1.1    abrown 	union cg14cursor_cmap tcm;
    364   1.1    abrown 	int v, error;
    365   1.1    abrown 	u_int count;
    366  1.38       chs 	u_int eplane[32], cplane[32];
    367   1.1    abrown 
    368   1.1    abrown 	switch (cmd) {
    369   1.1    abrown 
    370   1.1    abrown 	case FBIOGTYPE:
    371   1.1    abrown 		*(struct fbtype *)data = sc->sc_fb.fb_type;
    372   1.1    abrown 		break;
    373   1.1    abrown 
    374   1.1    abrown 	case FBIOGATTR:
    375   1.1    abrown 		fba = (struct fbgattr *)data;
    376   1.1    abrown 		fba->real_type = FBTYPE_MDICOLOR;
    377   1.1    abrown 		fba->owner = 0;		/* XXX ??? */
    378   1.1    abrown 		fba->fbtype = sc->sc_fb.fb_type;
    379   1.1    abrown 		fba->sattr.flags = 0;
    380   1.1    abrown 		fba->sattr.emu_type = sc->sc_fb.fb_type.fb_type;
    381   1.1    abrown 		fba->sattr.dev_specific[0] = -1;
    382   1.1    abrown 		fba->emu_types[0] = sc->sc_fb.fb_type.fb_type;
    383   1.1    abrown 		fba->emu_types[1] = -1;
    384   1.1    abrown 		break;
    385   1.1    abrown 
    386   1.1    abrown 	case FBIOGETCMAP:
    387  1.12        pk 		return (cg14_get_cmap((struct fbcmap *)data, &sc->sc_cmap,
    388   1.1    abrown 				     CG14_CLUT_SIZE));
    389   1.1    abrown 
    390   1.1    abrown 	case FBIOPUTCMAP:
    391   1.1    abrown 		/* copy to software map */
    392   1.1    abrown #define p ((struct fbcmap *)data)
    393   1.1    abrown #ifdef CG14_CG8
    394   1.1    abrown 		p->index &= 0xffffff;
    395   1.1    abrown #endif
    396   1.1    abrown 		error = cg14_put_cmap(p, &sc->sc_cmap, CG14_CLUT_SIZE);
    397   1.1    abrown 		if (error)
    398   1.1    abrown 			return (error);
    399   1.1    abrown 		/* now blast them into the chip */
    400   1.1    abrown 		/* XXX should use retrace interrupt */
    401   1.1    abrown 		cg14_load_hwcmap(sc, p->index, p->count);
    402   1.1    abrown #undef p
    403   1.1    abrown 		break;
    404   1.1    abrown 
    405   1.1    abrown 	case FBIOGVIDEO:
    406   1.1    abrown 		*(int *)data = cg14_get_video(sc);
    407   1.1    abrown 		break;
    408   1.1    abrown 
    409   1.1    abrown 	case FBIOSVIDEO:
    410   1.1    abrown 		cg14_set_video(sc, *(int *)data);
    411   1.1    abrown 		break;
    412   1.1    abrown 
    413   1.1    abrown /* these are for both FBIOSCURSOR and FBIOGCURSOR */
    414   1.1    abrown #define p ((struct fbcursor *)data)
    415   1.1    abrown #define cc (&sc->sc_cursor)
    416   1.1    abrown 	case FBIOGCURSOR:
    417   1.1    abrown 		/* do not quite want everything here... */
    418   1.1    abrown 		p->set = FB_CUR_SETALL;	/* close enough, anyway */
    419   1.1    abrown 		p->enable = cc->cc_enable;
    420   1.1    abrown 		p->pos = cc->cc_pos;
    421   1.1    abrown 		p->hot = cc->cc_hot;
    422   1.1    abrown 		p->size = cc->cc_size;
    423   1.1    abrown 
    424   1.1    abrown 		/* begin ugh ... can we lose some of this crap?? */
    425   1.1    abrown 		if (p->image != NULL) {
    426   1.1    abrown 			count = cc->cc_size.y * 32 / NBBY;
    427  1.38       chs 			error = copyout(cc->cc_cplane, p->image, count);
    428   1.1    abrown 			if (error)
    429   1.1    abrown 				return (error);
    430  1.38       chs 			error = copyout(cc->cc_eplane, p->mask, count);
    431   1.1    abrown 			if (error)
    432   1.1    abrown 				return (error);
    433   1.1    abrown 		}
    434   1.1    abrown 		if (p->cmap.red != NULL) {
    435   1.1    abrown 			error = cg14_get_cmap(&p->cmap,
    436   1.1    abrown 			    (union cg14cmap *)&cc->cc_color, 2);
    437   1.1    abrown 			if (error)
    438   1.1    abrown 				return (error);
    439   1.1    abrown 		} else {
    440   1.1    abrown 			p->cmap.index = 0;
    441   1.1    abrown 			p->cmap.count = 2;
    442   1.1    abrown 		}
    443   1.1    abrown 		/* end ugh */
    444   1.1    abrown 		break;
    445   1.1    abrown 
    446   1.1    abrown 	case FBIOSCURSOR:
    447   1.1    abrown 		/*
    448   1.1    abrown 		 * For setcmap and setshape, verify parameters, so that
    449   1.1    abrown 		 * we do not get halfway through an update and then crap
    450   1.1    abrown 		 * out with the software state screwed up.
    451   1.1    abrown 		 */
    452   1.1    abrown 		v = p->set;
    453   1.1    abrown 		if (v & FB_CUR_SETCMAP) {
    454   1.1    abrown 			/*
    455   1.1    abrown 			 * This use of a temporary copy of the cursor
    456   1.1    abrown 			 * colormap is not terribly efficient, but these
    457   1.1    abrown 			 * copies are small (8 bytes)...
    458   1.1    abrown 			 */
    459   1.1    abrown 			tcm = cc->cc_color;
    460   1.1    abrown 			error = cg14_put_cmap(&p->cmap, (union cg14cmap *)&tcm,
    461   1.1    abrown 					      2);
    462   1.1    abrown 			if (error)
    463   1.1    abrown 				return (error);
    464   1.1    abrown 		}
    465   1.1    abrown 		if (v & FB_CUR_SETSHAPE) {
    466   1.1    abrown 			if ((u_int)p->size.x > 32 || (u_int)p->size.y > 32)
    467   1.1    abrown 				return (EINVAL);
    468   1.1    abrown 			count = p->size.y * 32 / NBBY;
    469  1.38       chs 			error = copyin(p->mask, eplane, count);
    470  1.38       chs 			if (error)
    471  1.38       chs 				return error;
    472  1.38       chs 			error = copyin(p->image, cplane, count);
    473  1.38       chs 			if (error)
    474  1.38       chs 				return error;
    475   1.1    abrown 		}
    476   1.1    abrown 
    477   1.1    abrown 		/* parameters are OK; do it */
    478   1.1    abrown 		if (v & (FB_CUR_SETCUR | FB_CUR_SETPOS | FB_CUR_SETHOT)) {
    479   1.1    abrown 			if (v & FB_CUR_SETCUR)
    480   1.1    abrown 				cc->cc_enable = p->enable;
    481   1.1    abrown 			if (v & FB_CUR_SETPOS)
    482   1.1    abrown 				cc->cc_pos = p->pos;
    483   1.1    abrown 			if (v & FB_CUR_SETHOT)
    484   1.1    abrown 				cc->cc_hot = p->hot;
    485   1.1    abrown 			cg14_setcursor(sc);
    486   1.1    abrown 		}
    487   1.1    abrown 		if (v & FB_CUR_SETCMAP) {
    488   1.1    abrown 			cc->cc_color = tcm;
    489   1.1    abrown 			cg14_loadomap(sc); /* XXX defer to vertical retrace */
    490   1.1    abrown 		}
    491   1.1    abrown 		if (v & FB_CUR_SETSHAPE) {
    492   1.1    abrown 			cc->cc_size = p->size;
    493   1.1    abrown 			count = p->size.y * 32 / NBBY;
    494  1.38       chs 			memset(cc->cc_eplane, 0, sizeof cc->cc_eplane);
    495  1.38       chs 			memcpy(cc->cc_eplane, eplane, count);
    496  1.38       chs 			memset(cc->cc_cplane, 0, sizeof cc->cc_cplane);
    497  1.38       chs 			memcpy(cc->cc_cplane, cplane, count);
    498   1.1    abrown 			cg14_loadcursor(sc);
    499   1.1    abrown 		}
    500   1.1    abrown 		break;
    501   1.1    abrown 
    502   1.1    abrown #undef cc
    503   1.1    abrown #undef p
    504   1.1    abrown 	case FBIOGCURPOS:
    505   1.1    abrown 		*(struct fbcurpos *)data = sc->sc_cursor.cc_pos;
    506   1.1    abrown 		break;
    507   1.1    abrown 
    508   1.1    abrown 	case FBIOSCURPOS:
    509   1.1    abrown 		sc->sc_cursor.cc_pos = *(struct fbcurpos *)data;
    510   1.1    abrown 		cg14_setcursor(sc);
    511   1.1    abrown 		break;
    512   1.1    abrown 
    513   1.1    abrown 	case FBIOGCURMAX:
    514   1.1    abrown 		/* max cursor size is 32x32 */
    515   1.1    abrown 		((struct fbcurpos *)data)->x = 32;
    516   1.1    abrown 		((struct fbcurpos *)data)->y = 32;
    517   1.1    abrown 		break;
    518   1.1    abrown 
    519   1.1    abrown 	default:
    520   1.1    abrown 		return (ENOTTY);
    521   1.1    abrown 	}
    522   1.1    abrown 	return (0);
    523   1.1    abrown }
    524   1.1    abrown 
    525   1.1    abrown /*
    526   1.1    abrown  * Undo the effect of an FBIOSVIDEO that turns the video off.
    527   1.1    abrown  */
    528   1.1    abrown static void
    529  1.40       uwe cgfourteenunblank(struct device *dev)
    530   1.1    abrown {
    531   1.1    abrown 
    532   1.1    abrown 	cg14_set_video((struct cgfourteen_softc *)dev, 1);
    533   1.1    abrown }
    534   1.1    abrown 
    535   1.1    abrown /*
    536   1.1    abrown  * Return the address that would map the given device at the given
    537   1.1    abrown  * offset, allowing for the given protection, or return -1 for error.
    538   1.1    abrown  *
    539   1.1    abrown  * The cg14 frame buffer can be mapped in either 8-bit or 32-bit mode
    540   1.1    abrown  * starting at the address stored in the PROM. In 8-bit mode, the X
    541   1.1    abrown  * channel is not present, and can be ignored. In 32-bit mode, mapping
    542   1.1    abrown  * at 0K delivers a 32-bpp buffer where the upper 8 bits select the X
    543   1.1    abrown  * channel information. We hardwire the Xlut to all zeroes to insure
    544   1.1    abrown  * that, regardless of this value, direct 24-bit color access will be
    545   1.1    abrown  * used.
    546  1.12        pk  *
    547  1.12        pk  * Alternatively, mapping the frame buffer at an offset of 16M seems to
    548   1.1    abrown  * tell the chip to ignore the X channel. XXX where does it get the X value
    549   1.1    abrown  * to use?
    550   1.1    abrown  */
    551  1.17    simonb paddr_t
    552  1.40       uwe cgfourteenmmap(dev_t dev, off_t off, int prot)
    553   1.1    abrown {
    554  1.11        pk 	struct cgfourteen_softc *sc = cgfourteen_cd.cd_devs[minor(dev)];
    555  1.12        pk 
    556   1.1    abrown 	if (off & PGOFSET)
    557   1.1    abrown 		panic("cgfourteenmmap");
    558  1.14       mrg 
    559  1.14       mrg 	if (off < 0)
    560  1.14       mrg 		return (-1);
    561   1.1    abrown 
    562   1.1    abrown #if defined(DEBUG) && defined(CG14_MAP_REGS) /* XXX: security hole */
    563   1.1    abrown 	/*
    564  1.12        pk 	 * Map the control registers into user space. Should only be
    565   1.1    abrown 	 * used for debugging!
    566   1.1    abrown 	 */
    567   1.1    abrown 	if ((u_int)off >= 0x10000000 && (u_int)off < 0x10000000 + 16*4096) {
    568   1.1    abrown 		off -= 0x10000000;
    569  1.12        pk 		if (bus_space_mmap(sc->sc_bustag,
    570  1.21       eeh 			BUS_ADDR(sc->sc_physadr[CG14_CTL_IDX].sbr_slot,
    571  1.21       eeh 				sc->sc_physadr[CG14_CTL_IDX].sbr_offset),
    572  1.21       eeh 			off, prot, BUS_SPACE_MAP_LINEAR));
    573   1.1    abrown 	}
    574   1.1    abrown #endif
    575  1.40       uwe 
    576   1.1    abrown 	if ((u_int)off >= NOOVERLAY)
    577   1.1    abrown 		off -= NOOVERLAY;
    578  1.23   darrenr 	else if ((u_int)off >= START)
    579  1.23   darrenr 		off -= START;
    580  1.23   darrenr 	else
    581  1.23   darrenr 		off = 0;
    582  1.23   darrenr 
    583  1.23   darrenr 	/*
    584  1.23   darrenr 	 * fb_size includes the overlay space only for the CG8.
    585  1.23   darrenr 	 */
    586   1.1    abrown #ifdef CG14_CG8
    587  1.23   darrenr 	if (off >= sc->sc_fb.fb_type.fb_size - START)
    588   1.1    abrown #else
    589  1.23   darrenr 	if (off >= sc->sc_fb.fb_type.fb_size)
    590   1.1    abrown #endif
    591  1.23   darrenr 	{
    592   1.1    abrown #ifdef DEBUG
    593   1.5  christos 		printf("\nmmap request out of bounds: request 0x%x, "
    594  1.12        pk 		    "bound 0x%x\n", (unsigned) off,
    595   1.4  christos 		    (unsigned)sc->sc_fb.fb_type.fb_size);
    596   1.1    abrown #endif
    597   1.1    abrown 		return (-1);
    598   1.1    abrown 	}
    599   1.1    abrown 
    600  1.21       eeh 	return (bus_space_mmap(sc->sc_bustag,
    601  1.25   thorpej 		BUS_ADDR(sc->sc_physadr[CG14_PXL_IDX].oa_space,
    602  1.25   thorpej 			sc->sc_physadr[CG14_PXL_IDX].oa_base),
    603  1.21       eeh 		off, prot, BUS_SPACE_MAP_LINEAR));
    604  1.12        pk }
    605   1.1    abrown 
    606   1.1    abrown /*
    607  1.12        pk  * Miscellaneous helper functions
    608   1.1    abrown  */
    609   1.1    abrown 
    610   1.1    abrown /* Initialize the framebuffer, storing away useful state for later reset */
    611  1.12        pk static void
    612  1.40       uwe cg14_init(struct cgfourteen_softc *sc)
    613   1.1    abrown {
    614  1.40       uwe 	volatile uint32_t *clut;
    615  1.40       uwe 	volatile uint8_t  *xlut;
    616  1.11        pk 	int i;
    617   1.1    abrown 
    618   1.1    abrown 	/*
    619   1.1    abrown 	 * We stash away the following to restore on close:
    620   1.1    abrown 	 *
    621   1.1    abrown 	 * 	color look-up table 1 	(sc->sc_saveclut)
    622   1.1    abrown 	 *	x look-up table		(sc->sc_savexlut)
    623   1.1    abrown 	 *	control register	(sc->sc_savectl)
    624   1.1    abrown 	 *	cursor control register (sc->sc_savehwc)
    625   1.1    abrown 	 */
    626   1.1    abrown 	sc->sc_savectl = sc->sc_ctl->ctl_mctl;
    627   1.1    abrown 	sc->sc_savehwc = sc->sc_hwc->curs_ctl;
    628   1.1    abrown 
    629  1.39   tsutsui 	clut = sc->sc_clut1->clut_lut;
    630  1.39   tsutsui 	xlut = sc->sc_xlut->xlut_lut;
    631   1.1    abrown 	for (i = 0; i < CG14_CLUT_SIZE; i++) {
    632   1.1    abrown 		sc->sc_saveclut.cm_chip[i] = clut[i];
    633   1.1    abrown 		sc->sc_savexlut[i] = xlut[i];
    634   1.1    abrown 	}
    635   1.1    abrown 
    636   1.1    abrown #ifdef CG14_CG8
    637   1.1    abrown 	/*
    638   1.1    abrown 	 * Enable the video, and put in 24 bit mode.
    639   1.1    abrown 	 */
    640   1.1    abrown 	sc->sc_ctl->ctl_mctl = CG14_MCTL_ENABLEVID | CG14_MCTL_PIXMODE_32 |
    641   1.1    abrown 		CG14_MCTL_POWERCTL;
    642   1.1    abrown 
    643  1.12        pk 	/*
    644   1.1    abrown 	 * Zero the xlut to enable direct-color mode
    645   1.1    abrown 	 */
    646  1.38       chs 	memset(sc->sc_xlut, 0, CG14_CLUT_SIZE);
    647   1.1    abrown #else
    648   1.1    abrown 	/*
    649   1.1    abrown 	 * Enable the video and put it in 8 bit mode
    650   1.1    abrown 	 */
    651   1.1    abrown 	sc->sc_ctl->ctl_mctl = CG14_MCTL_ENABLEVID | CG14_MCTL_PIXMODE_8 |
    652   1.1    abrown 		CG14_MCTL_POWERCTL;
    653   1.1    abrown #endif
    654   1.1    abrown }
    655   1.1    abrown 
    656  1.40       uwe /* Restore the state saved on cg14_init */
    657   1.1    abrown static void
    658  1.40       uwe cg14_reset(struct cgfourteen_softc *sc)
    659   1.1    abrown {
    660  1.40       uwe 	volatile uint32_t *clut;
    661  1.40       uwe 	volatile uint8_t  *xlut;
    662  1.11        pk 	int i;
    663   1.1    abrown 
    664   1.1    abrown 	/*
    665   1.1    abrown 	 * We restore the following, saved in cg14_init:
    666   1.1    abrown 	 *
    667   1.1    abrown 	 * 	color look-up table 1 	(sc->sc_saveclut)
    668   1.1    abrown 	 *	x look-up table		(sc->sc_savexlut)
    669   1.1    abrown 	 *	control register	(sc->sc_savectl)
    670   1.1    abrown 	 *	cursor control register (sc->sc_savehwc)
    671   1.1    abrown 	 *
    672   1.1    abrown 	 * Note that we don't touch the video enable bits in the
    673   1.1    abrown 	 * control register; otherwise, screenblank wouldn't work.
    674   1.1    abrown 	 */
    675   1.1    abrown 	sc->sc_ctl->ctl_mctl = (sc->sc_ctl->ctl_mctl & (CG14_MCTL_ENABLEVID |
    676   1.1    abrown 							CG14_MCTL_POWERCTL)) |
    677   1.1    abrown 				(sc->sc_savectl & ~(CG14_MCTL_ENABLEVID |
    678   1.1    abrown 						    CG14_MCTL_POWERCTL));
    679   1.1    abrown 	sc->sc_hwc->curs_ctl = sc->sc_savehwc;
    680   1.1    abrown 
    681  1.39   tsutsui 	clut = sc->sc_clut1->clut_lut;
    682  1.39   tsutsui 	xlut = sc->sc_xlut->xlut_lut;
    683   1.1    abrown 	for (i = 0; i < CG14_CLUT_SIZE; i++) {
    684   1.1    abrown 		clut[i] = sc->sc_saveclut.cm_chip[i];
    685   1.1    abrown 		xlut[i] = sc->sc_savexlut[i];
    686   1.1    abrown 	}
    687   1.1    abrown }
    688   1.1    abrown 
    689   1.1    abrown /* Enable/disable video display; power down monitor if DPMS-capable */
    690   1.1    abrown static void
    691  1.40       uwe cg14_set_video(struct cgfourteen_softc *sc, int enable)
    692   1.1    abrown {
    693  1.40       uwe 
    694  1.12        pk 	/*
    695   1.1    abrown 	 * We can only use DPMS to power down the display if the chip revision
    696   1.1    abrown 	 * is greater than 0.
    697   1.1    abrown 	 */
    698   1.1    abrown 	if (enable) {
    699   1.1    abrown 		if ((sc->sc_ctl->ctl_rsr & CG14_RSR_REVMASK) > 0)
    700   1.1    abrown 			sc->sc_ctl->ctl_mctl |= (CG14_MCTL_ENABLEVID |
    701   1.1    abrown 						 CG14_MCTL_POWERCTL);
    702   1.1    abrown 		else
    703   1.1    abrown 			sc->sc_ctl->ctl_mctl |= CG14_MCTL_ENABLEVID;
    704   1.1    abrown 	} else {
    705   1.1    abrown 		if ((sc->sc_ctl->ctl_rsr & CG14_RSR_REVMASK) > 0)
    706   1.1    abrown 			sc->sc_ctl->ctl_mctl &= ~(CG14_MCTL_ENABLEVID |
    707   1.1    abrown 						  CG14_MCTL_POWERCTL);
    708   1.1    abrown 		else
    709   1.1    abrown 			sc->sc_ctl->ctl_mctl &= ~CG14_MCTL_ENABLEVID;
    710   1.1    abrown 	}
    711   1.1    abrown }
    712   1.1    abrown 
    713   1.1    abrown /* Get status of video display */
    714   1.1    abrown static int
    715  1.40       uwe cg14_get_video(struct cgfourteen_softc *sc)
    716   1.1    abrown {
    717  1.40       uwe 
    718   1.1    abrown 	return ((sc->sc_ctl->ctl_mctl & CG14_MCTL_ENABLEVID) != 0);
    719   1.1    abrown }
    720   1.1    abrown 
    721   1.1    abrown /* Read the software shadow colormap */
    722  1.12        pk static int
    723  1.40       uwe cg14_get_cmap(struct fbcmap *p, union cg14cmap *cm, int cmsize)
    724   1.1    abrown {
    725  1.24    itojun 	u_int i, start, count;
    726  1.24    itojun 	u_char *cp;
    727  1.38       chs 	int error;
    728  1.12        pk 
    729  1.24    itojun 	start = p->index;
    730  1.24    itojun 	count = p->count;
    731  1.24    itojun 	if (start >= cmsize || count > cmsize - start)
    732  1.24    itojun 		return (EINVAL);
    733   1.1    abrown 
    734  1.24    itojun 	for (cp = &cm->cm_map[start][0], i = 0; i < count; cp += 4, i++) {
    735  1.38       chs 		error = copyout(&cp[3], &p->red[i], 1);
    736  1.38       chs 		if (error)
    737  1.38       chs 			return error;
    738  1.38       chs 		error = copyout(&cp[2], &p->green[i], 1);
    739  1.38       chs 		if (error)
    740  1.38       chs 			return error;
    741  1.38       chs 		error = copyout(&cp[1], &p->blue[i], 1);
    742  1.38       chs 		if (error)
    743  1.38       chs 			return error;
    744  1.24    itojun 	}
    745  1.24    itojun 	return (0);
    746   1.1    abrown }
    747   1.1    abrown 
    748   1.1    abrown /* Write the software shadow colormap */
    749   1.1    abrown static int
    750  1.40       uwe cg14_put_cmap(struct fbcmap *p, union cg14cmap *cm, int cmsize)
    751  1.24    itojun {
    752  1.24    itojun 	u_int i, start, count;
    753  1.24    itojun 	u_char *cp;
    754  1.38       chs 	u_char cmap[256][4];
    755  1.38       chs 	int error;
    756  1.24    itojun 
    757  1.24    itojun 	start = p->index;
    758  1.24    itojun 	count = p->count;
    759  1.24    itojun 	if (start >= cmsize || count > cmsize - start)
    760  1.24    itojun 		return (EINVAL);
    761   1.1    abrown 
    762  1.38       chs 	memcpy(&cmap, &cm->cm_map, sizeof cmap);
    763  1.38       chs 	for (cp = &cmap[start][0], i = 0; i < count; cp += 4, i++) {
    764  1.38       chs 		error = copyin(&p->red[i], &cp[3], 1);
    765  1.38       chs 		if (error)
    766  1.38       chs 			return error;
    767  1.38       chs 		error = copyin(&p->green[i], &cp[2], 1);
    768  1.38       chs 		if (error)
    769  1.38       chs 			return error;
    770  1.38       chs 		error = copyin(&p->blue[i], &cp[1], 1);
    771  1.38       chs 		if (error)
    772  1.38       chs 			return error;
    773   1.1    abrown 		cp[0] = 0;	/* no alpha channel */
    774  1.24    itojun 	}
    775  1.38       chs 	memcpy(&cm->cm_map, &cmap, sizeof cmap);
    776  1.24    itojun 	return (0);
    777   1.1    abrown }
    778   1.1    abrown 
    779   1.1    abrown static void
    780  1.40       uwe cg14_load_hwcmap(struct cgfourteen_softc *sc, int start, int ncolors)
    781   1.1    abrown {
    782  1.40       uwe 
    783   1.1    abrown 	/* XXX switch to auto-increment, and on retrace intr */
    784  1.40       uwe 
    785   1.1    abrown 	/* Setup pointers to source and dest */
    786  1.40       uwe 	uint32_t *colp = &sc->sc_cmap.cm_chip[start];
    787  1.40       uwe 	volatile uint32_t *lutp = &sc->sc_clut1->clut_lut[start];
    788   1.1    abrown 
    789   1.1    abrown 	/* Copy by words */
    790   1.1    abrown 	while (--ncolors >= 0)
    791   1.1    abrown 		*lutp++ = *colp++;
    792   1.1    abrown }
    793   1.1    abrown 
    794   1.1    abrown /*
    795   1.1    abrown  * Load the cursor (overlay `foreground' and `background') colors.
    796   1.1    abrown  */
    797   1.1    abrown static void
    798  1.40       uwe cg14_setcursor(struct cgfourteen_softc *sc)
    799   1.1    abrown {
    800  1.40       uwe 
    801   1.1    abrown 	/* we need to subtract the hot-spot value here */
    802   1.1    abrown #define COORD(f) (sc->sc_cursor.cc_pos.f - sc->sc_cursor.cc_hot.f)
    803   1.1    abrown 
    804   1.1    abrown 	sc->sc_hwc->curs_ctl = (sc->sc_cursor.cc_enable ? CG14_CURS_ENABLE : 0);
    805   1.1    abrown 	sc->sc_hwc->curs_x = COORD(x);
    806   1.1    abrown 	sc->sc_hwc->curs_y = COORD(y);
    807   1.1    abrown 
    808   1.1    abrown #undef COORD
    809   1.1    abrown }
    810   1.1    abrown 
    811   1.1    abrown static void
    812  1.40       uwe cg14_loadcursor(struct cgfourteen_softc *sc)
    813   1.1    abrown {
    814  1.11        pk 	volatile struct cg14curs *hwc;
    815  1.11        pk 	u_int edgemask, m;
    816  1.11        pk 	int i;
    817   1.1    abrown 
    818   1.1    abrown 	/*
    819   1.1    abrown 	 * Keep the top size.x bits.  Here we *throw out* the top
    820   1.1    abrown 	 * size.x bits from an all-one-bits word, introducing zeros in
    821   1.1    abrown 	 * the top size.x bits, then invert all the bits to get what
    822   1.1    abrown 	 * we really wanted as our mask.  But this fails if size.x is
    823   1.1    abrown 	 * 32---a sparc uses only the low 5 bits of the shift count---
    824   1.1    abrown 	 * so we have to special case that.
    825   1.1    abrown 	 */
    826   1.1    abrown 	edgemask = ~0;
    827   1.1    abrown 	if (sc->sc_cursor.cc_size.x < 32)
    828   1.1    abrown 		edgemask = ~(edgemask >> sc->sc_cursor.cc_size.x);
    829   1.1    abrown 	hwc = sc->sc_hwc;
    830   1.1    abrown 	for (i = 0; i < 32; i++) {
    831   1.1    abrown 		m = sc->sc_cursor.cc_eplane[i] & edgemask;
    832   1.1    abrown 		hwc->curs_plane0[i] = m;
    833   1.1    abrown 		hwc->curs_plane1[i] = m & sc->sc_cursor.cc_cplane[i];
    834   1.1    abrown 	}
    835   1.1    abrown }
    836   1.1    abrown 
    837   1.1    abrown static void
    838  1.40       uwe cg14_loadomap(struct cgfourteen_softc *sc)
    839   1.1    abrown {
    840  1.40       uwe 
    841   1.1    abrown 	/* set background color */
    842   1.1    abrown 	sc->sc_hwc->curs_color1 = sc->sc_cursor.cc_color.cm_chip[0];
    843   1.1    abrown 	/* set foreground color */
    844   1.1    abrown 	sc->sc_hwc->curs_color2 = sc->sc_cursor.cc_color.cm_chip[1];
    845   1.1    abrown }
    846