Home | History | Annotate | Line # | Download | only in dev
cgfourteen.c revision 1.85.2.2
      1  1.85.2.2  pgoyette /*	$NetBSD: cgfourteen.c,v 1.85.2.2 2019/01/18 08:50:23 pgoyette 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  *
     57       1.1    abrown  * Does not handle interrupts, even though they can occur.
     58       1.1    abrown  *
     59       1.1    abrown  * XXX should defer colormap updates to vertical retrace interrupts
     60       1.1    abrown  */
     61      1.10       mrg 
     62      1.12        pk /*
     63       1.1    abrown  * The following is for debugging only; it opens up a security hole
     64      1.12        pk  * enabled by allowing any user to map the control registers for the
     65       1.1    abrown  * cg14 into their space.
     66       1.1    abrown  */
     67      1.47      elad #undef CG14_MAP_REGS
     68       1.1    abrown 
     69      1.70  macallan #include "opt_wsemul.h"
     70      1.70  macallan #include "sx.h"
     71      1.70  macallan 
     72       1.1    abrown #include <sys/param.h>
     73       1.1    abrown #include <sys/systm.h>
     74       1.1    abrown #include <sys/buf.h>
     75       1.1    abrown #include <sys/device.h>
     76       1.1    abrown #include <sys/ioctl.h>
     77       1.1    abrown #include <sys/malloc.h>
     78      1.55  macallan #include <sys/kmem.h>
     79       1.1    abrown #include <sys/mman.h>
     80       1.1    abrown #include <sys/tty.h>
     81       1.1    abrown #include <sys/conf.h>
     82      1.55  macallan #include <dev/pci/pciio.h>
     83       1.1    abrown 
     84      1.18       mrg #include <uvm/uvm_extern.h>
     85       1.1    abrown 
     86      1.42  christos #include <dev/sun/fbio.h>
     87      1.19        pk #include <machine/autoconf.h>
     88      1.42  christos #include <machine/pmap.h>
     89      1.42  christos #include <dev/sun/fbvar.h>
     90      1.42  christos #include <machine/cpu.h>
     91      1.19        pk #include <dev/sbus/sbusvar.h>
     92      1.19        pk 
     93      1.49  macallan #include "wsdisplay.h"
     94      1.49  macallan #include <dev/wscons/wsconsio.h>
     95      1.49  macallan #include <dev/wsfont/wsfont.h>
     96      1.49  macallan #include <dev/rasops/rasops.h>
     97      1.49  macallan 
     98      1.49  macallan #include <dev/wscons/wsdisplay_vconsvar.h>
     99      1.80  macallan #include <dev/wscons/wsdisplay_glyphcachevar.h>
    100      1.49  macallan 
    101      1.70  macallan #include <sparc/sparc/asm.h>
    102       1.1    abrown #include <sparc/dev/cgfourteenreg.h>
    103       1.1    abrown #include <sparc/dev/cgfourteenvar.h>
    104      1.70  macallan #include <sparc/dev/sxreg.h>
    105      1.70  macallan #include <sparc/dev/sxvar.h>
    106      1.49  macallan 
    107       1.1    abrown /* autoconfiguration driver */
    108      1.53  macallan static int	cgfourteenmatch(device_t, struct cfdata *, void *);
    109      1.53  macallan static void	cgfourteenattach(device_t, device_t, void *);
    110      1.53  macallan static void	cgfourteenunblank(device_t);
    111       1.1    abrown 
    112      1.53  macallan CFATTACH_DECL_NEW(cgfourteen, sizeof(struct cgfourteen_softc),
    113      1.30   thorpej     cgfourteenmatch, cgfourteenattach, NULL, NULL);
    114      1.76  macallan 
    115       1.8   thorpej extern struct cfdriver cgfourteen_cd;
    116       1.1    abrown 
    117      1.26   gehenna dev_type_open(cgfourteenopen);
    118      1.26   gehenna dev_type_close(cgfourteenclose);
    119      1.26   gehenna dev_type_ioctl(cgfourteenioctl);
    120      1.26   gehenna dev_type_mmap(cgfourteenmmap);
    121      1.42  christos dev_type_poll(cgfourteenpoll);
    122      1.26   gehenna 
    123      1.26   gehenna const struct cdevsw cgfourteen_cdevsw = {
    124      1.77  dholland         .d_open = cgfourteenopen,
    125      1.77  dholland 	.d_close = cgfourteenclose,
    126      1.77  dholland 	.d_read = noread,
    127      1.77  dholland 	.d_write = nowrite,
    128      1.77  dholland 	.d_ioctl = cgfourteenioctl,
    129      1.77  dholland         .d_stop = nostop,
    130      1.77  dholland 	.d_tty = notty,
    131      1.77  dholland 	.d_poll = cgfourteenpoll,
    132      1.77  dholland 	.d_mmap = cgfourteenmmap,
    133      1.77  dholland 	.d_kqfilter = nokqfilter,
    134      1.79  dholland 	.d_discard = nodiscard,
    135      1.77  dholland 	.d_flag = 0
    136      1.26   gehenna };
    137      1.26   gehenna 
    138       1.1    abrown /* frame buffer generic driver */
    139       1.1    abrown static struct fbdriver cgfourteenfbdriver = {
    140      1.12        pk 	cgfourteenunblank, cgfourteenopen, cgfourteenclose, cgfourteenioctl,
    141      1.42  christos 	cgfourteenpoll, cgfourteenmmap, nokqfilter
    142       1.1    abrown };
    143       1.1    abrown 
    144      1.40       uwe static void cg14_set_video(struct cgfourteen_softc *, int);
    145      1.40       uwe static int  cg14_get_video(struct cgfourteen_softc *);
    146      1.40       uwe static int  cg14_get_cmap(struct fbcmap *, union cg14cmap *, int);
    147      1.40       uwe static int  cg14_put_cmap(struct fbcmap *, union cg14cmap *, int);
    148      1.40       uwe static void cg14_load_hwcmap(struct cgfourteen_softc *, int, int);
    149      1.40       uwe static void cg14_init(struct cgfourteen_softc *);
    150      1.40       uwe static void cg14_reset(struct cgfourteen_softc *);
    151      1.23   darrenr 
    152      1.49  macallan #if NWSDISPLAY > 0
    153      1.49  macallan static void cg14_setup_wsdisplay(struct cgfourteen_softc *, int);
    154      1.49  macallan static void cg14_init_cmap(struct cgfourteen_softc *);
    155      1.49  macallan static int  cg14_putcmap(struct cgfourteen_softc *, struct wsdisplay_cmap *);
    156      1.49  macallan static int  cg14_getcmap(struct cgfourteen_softc *, struct wsdisplay_cmap *);
    157      1.49  macallan static void cg14_set_depth(struct cgfourteen_softc *, int);
    158      1.50  macallan static void cg14_move_cursor(struct cgfourteen_softc *, int, int);
    159      1.50  macallan static int  cg14_do_cursor(struct cgfourteen_softc *,
    160      1.50  macallan                            struct wsdisplay_cursor *);
    161      1.70  macallan 
    162      1.70  macallan #if NSX > 0
    163      1.70  macallan static void cg14_wait_idle(struct cgfourteen_softc *);
    164      1.72  macallan static void cg14_rectfill(struct cgfourteen_softc *, int, int, int, int,
    165      1.72  macallan     uint32_t);
    166      1.83  macallan static void cg14_rectfill_a(void *, int, int, int, int, long);
    167      1.71  macallan static void cg14_invert(struct cgfourteen_softc *, int, int, int, int);
    168      1.70  macallan static void cg14_bitblt(void *, int, int, int, int, int, int, int);
    169      1.80  macallan static void cg14_bitblt_gc(void *, int, int, int, int, int, int, int);
    170      1.70  macallan 
    171      1.70  macallan static void cg14_putchar_aa(void *, int, int, u_int, long);
    172      1.71  macallan static void cg14_cursor(void *, int, int, int);
    173      1.70  macallan static void cg14_putchar(void *, int, int, u_int, long);
    174      1.70  macallan static void cg14_copycols(void *, int, int, int, int);
    175      1.70  macallan static void cg14_erasecols(void *, int, int, int, long);
    176      1.70  macallan static void cg14_copyrows(void *, int, int, int);
    177      1.70  macallan static void cg14_eraserows(void *, int, int, long);
    178      1.70  macallan #endif /* NSX > 0 */
    179      1.70  macallan 
    180      1.49  macallan #endif
    181      1.49  macallan 
    182      1.23   darrenr /*
    183       1.1    abrown  * Match a cgfourteen.
    184       1.1    abrown  */
    185      1.42  christos int
    186      1.53  macallan cgfourteenmatch(device_t parent, struct cfdata *cf, void *aux)
    187       1.1    abrown {
    188      1.11        pk 	union obio_attach_args *uoba = aux;
    189      1.11        pk 	struct sbus_attach_args *sa = &uoba->uoba_sbus;
    190       1.1    abrown 
    191       1.1    abrown 	/*
    192       1.1    abrown 	 * The cgfourteen is a local-bus video adaptor, accessed directly
    193       1.1    abrown 	 * via the processor, and not through device space or an external
    194       1.1    abrown 	 * bus. Thus we look _only_ at the obio bus.
    195       1.1    abrown 	 * Additionally, these things exist only on the Sun4m.
    196       1.1    abrown 	 */
    197      1.11        pk 
    198      1.11        pk 	if (uoba->uoba_isobio4 != 0 || !CPU_ISSUN4M)
    199      1.11        pk 		return (0);
    200      1.11        pk 
    201      1.11        pk 	/* Check driver name */
    202      1.27   thorpej 	return (strcmp(cf->cf_name, sa->sa_name) == 0);
    203       1.1    abrown }
    204       1.1    abrown 
    205      1.49  macallan #if NWSDISPLAY > 0
    206      1.49  macallan static int	cg14_ioctl(void *, void *, u_long, void *, int, struct lwp *);
    207      1.49  macallan static paddr_t	cg14_mmap(void *, void *, off_t, int);
    208      1.49  macallan static void	cg14_init_screen(void *, struct vcons_screen *, int, long *);
    209      1.49  macallan 
    210      1.49  macallan 
    211      1.49  macallan struct wsdisplay_accessops cg14_accessops = {
    212      1.49  macallan 	cg14_ioctl,
    213      1.49  macallan 	cg14_mmap,
    214      1.49  macallan 	NULL,	/* alloc_screen */
    215      1.49  macallan 	NULL,	/* free_screen */
    216      1.49  macallan 	NULL,	/* show_screen */
    217      1.49  macallan 	NULL, 	/* load_font */
    218      1.49  macallan 	NULL,	/* pollc */
    219      1.49  macallan 	NULL	/* scroll */
    220      1.49  macallan };
    221      1.49  macallan #endif
    222      1.49  macallan 
    223      1.42  christos /*
    224       1.1    abrown  * Attach a display.  We need to notice if it is the console, too.
    225       1.1    abrown  */
    226      1.42  christos void
    227      1.53  macallan cgfourteenattach(device_t parent, device_t self, void *aux)
    228       1.1    abrown {
    229      1.11        pk 	union obio_attach_args *uoba = aux;
    230      1.11        pk 	struct sbus_attach_args *sa = &uoba->uoba_sbus;
    231      1.53  macallan 	struct cgfourteen_softc *sc = device_private(self);
    232      1.11        pk 	struct fbdevice *fb = &sc->sc_fb;
    233      1.11        pk 	bus_space_handle_t bh;
    234      1.75  macallan 	int node;
    235      1.40       uwe 	volatile uint32_t *lut;
    236      1.56  macallan 	int i, isconsole, items;
    237      1.56  macallan 	uint32_t fbva[2] = {0, 0};
    238      1.56  macallan 	uint32_t *ptr = fbva;
    239      1.70  macallan #if NSX > 0
    240      1.70  macallan 	device_t dv;
    241      1.70  macallan 	deviter_t di;
    242      1.70  macallan #endif
    243      1.11        pk 
    244      1.53  macallan 	sc->sc_dev = self;
    245      1.55  macallan 	sc->sc_opens = 0;
    246      1.11        pk 	node = sa->sa_node;
    247      1.11        pk 
    248      1.11        pk 	/* Remember cookies for cgfourteenmmap() */
    249      1.11        pk 	sc->sc_bustag = sa->sa_bustag;
    250       1.1    abrown 
    251      1.11        pk 	fb->fb_driver = &cgfourteenfbdriver;
    252      1.53  macallan 	fb->fb_device = sc->sc_dev;
    253      1.11        pk 	/* Mask out invalid flags from the user. */
    254      1.53  macallan 	fb->fb_flags = device_cfdata(sc->sc_dev)->cf_flags & FB_USERMASK;
    255       1.1    abrown 
    256      1.63  macallan 	fb->fb_type.fb_type = FBTYPE_MDICOLOR;
    257      1.11        pk 	fb->fb_type.fb_depth = 32;
    258      1.63  macallan 
    259      1.11        pk 	fb_setsize_obp(fb, sc->sc_fb.fb_type.fb_depth, 1152, 900, node);
    260      1.53  macallan 
    261      1.11        pk 	fb->fb_type.fb_cmsize = CG14_CLUT_SIZE;
    262      1.11        pk 
    263      1.13        pk 	if (sa->sa_nreg < 2) {
    264      1.13        pk 		printf("%s: only %d register sets\n",
    265      1.68       chs 			device_xname(self), sa->sa_nreg);
    266      1.11        pk 		return;
    267      1.11        pk 	}
    268      1.59    cegger 	memcpy(sc->sc_physadr, sa->sa_reg,
    269      1.42  christos 	      sa->sa_nreg * sizeof(struct sbus_reg));
    270       1.1    abrown 
    271      1.49  macallan 	sc->sc_vramsize = sc->sc_physadr[CG14_PXL_IDX].sbr_size;
    272      1.75  macallan 	fb->fb_type.fb_size = sc->sc_vramsize;
    273      1.49  macallan 
    274      1.49  macallan 	printf(": %d MB VRAM", (uint32_t)(sc->sc_vramsize >> 20));
    275       1.1    abrown 	/*
    276       1.1    abrown 	 * Now map in the 8 useful pages of registers
    277       1.1    abrown 	 */
    278      1.11        pk 	if (sa->sa_size < 0x10000) {
    279       1.1    abrown #ifdef DIAGNOSTIC
    280       1.5  christos 		printf("warning: can't find all cgfourteen registers...\n");
    281       1.1    abrown #endif
    282      1.11        pk 		sa->sa_size = 0x10000;
    283       1.1    abrown 	}
    284      1.42  christos 	if (sbus_bus_map(sa->sa_bustag, sa->sa_slot,
    285      1.42  christos 			 sa->sa_offset,
    286      1.42  christos 			 sa->sa_size,
    287  1.85.2.2  pgoyette 			 BUS_SPACE_MAP_LINEAR,
    288      1.42  christos 			 &bh) != 0) {
    289      1.72  macallan 		printf("%s: cannot map control registers\n",
    290      1.72  macallan 		    device_xname(self));
    291      1.11        pk 		return;
    292      1.11        pk 	}
    293      1.49  macallan 	sc->sc_regh = bh;
    294      1.64  macallan 	sc->sc_regaddr = BUS_ADDR(sa->sa_slot, sa->sa_offset);
    295      1.64  macallan 	sc->sc_fbaddr = BUS_ADDR(sc->sc_physadr[CG14_PXL_IDX].sbr_slot,
    296      1.64  macallan 				sc->sc_physadr[CG14_PXL_IDX].sbr_offset);
    297      1.64  macallan 
    298      1.11        pk 	sc->sc_ctl   = (struct cg14ctl  *) (bh);
    299      1.11        pk 	sc->sc_hwc   = (struct cg14curs *) (bh + CG14_OFFSET_CURS);
    300      1.11        pk 	sc->sc_dac   = (struct cg14dac  *) (bh + CG14_OFFSET_DAC);
    301      1.11        pk 	sc->sc_xlut  = (struct cg14xlut *) (bh + CG14_OFFSET_XLUT);
    302      1.11        pk 	sc->sc_clut1 = (struct cg14clut *) (bh + CG14_OFFSET_CLUT1);
    303      1.11        pk 	sc->sc_clut2 = (struct cg14clut *) (bh + CG14_OFFSET_CLUT2);
    304      1.11        pk 	sc->sc_clut3 = (struct cg14clut *) (bh + CG14_OFFSET_CLUT3);
    305      1.11        pk 	sc->sc_clutincr =        (u_int *) (bh + CG14_OFFSET_CLUTINCR);
    306       1.1    abrown 
    307       1.1    abrown 	/*
    308       1.1    abrown 	 * Let the user know that we're here
    309       1.1    abrown 	 */
    310      1.63  macallan 	printf(": %dx%d",
    311      1.11        pk 		fb->fb_type.fb_width, fb->fb_type.fb_height);
    312      1.63  macallan 
    313       1.1    abrown 	/*
    314      1.42  christos 	 * Enable the video.
    315       1.1    abrown 	 */
    316       1.1    abrown 	cg14_set_video(sc, 1);
    317       1.1    abrown 
    318       1.1    abrown 	/*
    319       1.1    abrown 	 * Grab the initial colormap
    320       1.1    abrown 	 */
    321      1.39   tsutsui 	lut = sc->sc_clut1->clut_lut;
    322       1.1    abrown 	for (i = 0; i < CG14_CLUT_SIZE; i++)
    323       1.1    abrown 		sc->sc_cmap.cm_chip[i] = lut[i];
    324       1.1    abrown 
    325       1.1    abrown 	/* See if we're the console */
    326      1.42  christos         isconsole = fb_is_console(node);
    327       1.1    abrown 
    328      1.49  macallan #if NWSDISPLAY > 0
    329      1.56  macallan 	prom_getprop(sa->sa_node, "address", 4, &items, &ptr);
    330      1.56  macallan 	if (fbva[1] == 0) {
    331      1.60  macallan 		if (sbus_bus_map( sc->sc_bustag,
    332      1.56  macallan 		    sc->sc_physadr[CG14_PXL_IDX].sbr_slot,
    333      1.56  macallan 		    sc->sc_physadr[CG14_PXL_IDX].sbr_offset,
    334      1.75  macallan 		    sc->sc_vramsize, BUS_SPACE_MAP_LINEAR | BUS_SPACE_MAP_LARGE,
    335      1.60  macallan 		    &bh) != 0) {
    336      1.58  macallan 			printf("%s: cannot map pixels\n",
    337      1.58  macallan 				device_xname(sc->sc_dev));
    338      1.56  macallan 			return;
    339      1.56  macallan 		}
    340      1.56  macallan 		sc->sc_fb.fb_pixels = bus_space_vaddr(sc->sc_bustag, bh);
    341      1.56  macallan 	} else {
    342      1.56  macallan 		sc->sc_fb.fb_pixels = (void *)fbva[1];
    343      1.49  macallan 	}
    344      1.49  macallan 
    345      1.49  macallan 	if (isconsole)
    346      1.49  macallan 		printf(" (console)\n");
    347      1.51       jdc 	else
    348      1.51       jdc 		printf("\n");
    349      1.49  macallan 
    350      1.49  macallan 	sc->sc_depth = 8;
    351      1.70  macallan 
    352      1.70  macallan #if NSX > 0
    353      1.70  macallan 	/* see if we've got an SX to help us */
    354      1.70  macallan 	sc->sc_sx = NULL;
    355      1.70  macallan 	for (dv = deviter_first(&di, DEVITER_F_ROOT_FIRST);
    356      1.70  macallan 	    dv != NULL;
    357      1.70  macallan 	    dv = deviter_next(&di)) {
    358      1.70  macallan 		if (device_is_a(dv, "sx")) {
    359      1.70  macallan 			sc->sc_sx = device_private(dv);
    360      1.70  macallan 		}
    361      1.70  macallan 	}
    362      1.70  macallan 	deviter_release(&di);
    363      1.70  macallan 	if (sc->sc_sx != NULL) {
    364      1.70  macallan 		sc->sc_fb_paddr = bus_space_mmap(sc->sc_bustag,
    365      1.70  macallan 		    sc->sc_fbaddr, 0, 0, 0) & 0xfffff000;
    366      1.70  macallan 		aprint_normal_dev(sc->sc_dev, "using %s\n",
    367      1.70  macallan 		    device_xname(sc->sc_sx->sc_dev));
    368      1.71  macallan 		aprint_debug_dev(sc->sc_dev, "fb paddr: %08x\n",
    369      1.70  macallan 		    sc->sc_fb_paddr);
    370      1.70  macallan 		sx_write(sc->sc_sx, SX_PAGE_BOUND_LOWER, sc->sc_fb_paddr);
    371      1.70  macallan 		sx_write(sc->sc_sx, SX_PAGE_BOUND_UPPER,
    372      1.70  macallan 		    sc->sc_fb_paddr + 0x03ffffff);
    373      1.70  macallan 	}
    374      1.71  macallan 	cg14_wait_idle(sc);
    375      1.70  macallan #endif
    376      1.49  macallan 	cg14_setup_wsdisplay(sc, isconsole);
    377      1.49  macallan #endif
    378       1.1    abrown 
    379       1.1    abrown 	/* Attach to /dev/fb */
    380      1.16        pk 	fb_attach(&sc->sc_fb, isconsole);
    381       1.1    abrown }
    382       1.1    abrown 
    383       1.1    abrown /*
    384      1.12        pk  * Keep track of the number of opens made. In the 24-bit driver, we need to
    385       1.1    abrown  * switch to 24-bit mode on the first open, and switch back to 8-bit on
    386       1.1    abrown  * the last close. This kind of nonsense is needed to give screenblank
    387       1.1    abrown  * a fighting chance of working.
    388       1.1    abrown  */
    389       1.1    abrown 
    390       1.1    abrown int
    391      1.41  christos cgfourteenopen(dev_t dev, int flags, int mode, struct lwp *l)
    392       1.1    abrown {
    393      1.42  christos 	struct cgfourteen_softc *sc;
    394      1.55  macallan 	int oldopens;
    395       1.1    abrown 
    396      1.54    cegger 	sc = device_lookup_private(&cgfourteen_cd, minor(dev));
    397      1.42  christos 	if (sc == NULL)
    398      1.42  christos 		return(ENXIO);
    399      1.55  macallan 	oldopens = sc->sc_opens++;
    400       1.1    abrown 
    401       1.1    abrown 	/* Setup the cg14 as we want it, and save the original PROM state */
    402       1.1    abrown 	if (oldopens == 0)	/* first open only, to make screenblank work */
    403       1.1    abrown 		cg14_init(sc);
    404       1.1    abrown 
    405       1.1    abrown 	return (0);
    406       1.1    abrown }
    407       1.1    abrown 
    408       1.1    abrown int
    409      1.41  christos cgfourteenclose(dev_t dev, int flags, int mode, struct lwp *l)
    410       1.1    abrown {
    411      1.53  macallan 	struct cgfourteen_softc *sc =
    412      1.54    cegger 	    device_lookup_private(&cgfourteen_cd, minor(dev));
    413      1.55  macallan 	int opens;
    414       1.1    abrown 
    415      1.55  macallan 	opens = --sc->sc_opens;
    416      1.55  macallan 	if (sc->sc_opens < 0)
    417      1.55  macallan 		opens = sc->sc_opens = 0;
    418       1.1    abrown 
    419       1.1    abrown 	/*
    420       1.1    abrown 	 * Restore video state to make the PROM happy, on last close.
    421       1.1    abrown 	 */
    422      1.82  macallan 	if (opens == 0) {
    423       1.1    abrown 		cg14_reset(sc);
    424      1.82  macallan #if NSX > 0
    425      1.82  macallan 		if (sc->sc_sx)
    426      1.82  macallan 			glyphcache_wipe(&sc->sc_gc);
    427      1.82  macallan #endif
    428      1.82  macallan 	}
    429       1.1    abrown 	return (0);
    430       1.1    abrown }
    431       1.1    abrown 
    432       1.1    abrown int
    433      1.48  christos cgfourteenioctl(dev_t dev, u_long cmd, void *data, int flags, struct lwp *l)
    434       1.1    abrown {
    435      1.53  macallan 	struct cgfourteen_softc *sc =
    436      1.54    cegger 	    device_lookup_private(&cgfourteen_cd, minor(dev));
    437      1.11        pk 	struct fbgattr *fba;
    438      1.42  christos 	int error;
    439       1.1    abrown 
    440       1.1    abrown 	switch (cmd) {
    441       1.1    abrown 
    442       1.1    abrown 	case FBIOGTYPE:
    443       1.1    abrown 		*(struct fbtype *)data = sc->sc_fb.fb_type;
    444       1.1    abrown 		break;
    445       1.1    abrown 
    446       1.1    abrown 	case FBIOGATTR:
    447       1.1    abrown 		fba = (struct fbgattr *)data;
    448       1.1    abrown 		fba->real_type = FBTYPE_MDICOLOR;
    449       1.1    abrown 		fba->owner = 0;		/* XXX ??? */
    450       1.1    abrown 		fba->fbtype = sc->sc_fb.fb_type;
    451       1.1    abrown 		fba->sattr.flags = 0;
    452       1.1    abrown 		fba->sattr.emu_type = sc->sc_fb.fb_type.fb_type;
    453       1.1    abrown 		fba->sattr.dev_specific[0] = -1;
    454       1.1    abrown 		fba->emu_types[0] = sc->sc_fb.fb_type.fb_type;
    455       1.1    abrown 		fba->emu_types[1] = -1;
    456       1.1    abrown 		break;
    457       1.1    abrown 
    458       1.1    abrown 	case FBIOGETCMAP:
    459      1.42  christos 		return(cg14_get_cmap((struct fbcmap *)data, &sc->sc_cmap,
    460       1.1    abrown 				     CG14_CLUT_SIZE));
    461       1.1    abrown 
    462       1.1    abrown 	case FBIOPUTCMAP:
    463       1.1    abrown 		/* copy to software map */
    464       1.1    abrown #define p ((struct fbcmap *)data)
    465       1.1    abrown 		error = cg14_put_cmap(p, &sc->sc_cmap, CG14_CLUT_SIZE);
    466       1.1    abrown 		if (error)
    467       1.1    abrown 			return (error);
    468       1.1    abrown 		/* now blast them into the chip */
    469       1.1    abrown 		/* XXX should use retrace interrupt */
    470       1.1    abrown 		cg14_load_hwcmap(sc, p->index, p->count);
    471       1.1    abrown #undef p
    472       1.1    abrown 		break;
    473       1.1    abrown 
    474       1.1    abrown 	case FBIOGVIDEO:
    475       1.1    abrown 		*(int *)data = cg14_get_video(sc);
    476       1.1    abrown 		break;
    477       1.1    abrown 
    478       1.1    abrown 	case FBIOSVIDEO:
    479       1.1    abrown 		cg14_set_video(sc, *(int *)data);
    480       1.1    abrown 		break;
    481       1.1    abrown 
    482      1.64  macallan 	case CG14_SET_PIXELMODE: {
    483      1.64  macallan 		int depth = *(int *)data;
    484      1.64  macallan 
    485      1.66  macallan 		if (sc->sc_mode == WSDISPLAYIO_MODE_EMUL)
    486      1.64  macallan 			return EINVAL;
    487      1.66  macallan 
    488      1.66  macallan 		cg14_set_depth(sc, depth);
    489      1.64  macallan 		}
    490      1.64  macallan 		break;
    491       1.1    abrown 	default:
    492       1.1    abrown 		return (ENOTTY);
    493       1.1    abrown 	}
    494       1.1    abrown 	return (0);
    495       1.1    abrown }
    496       1.1    abrown 
    497       1.1    abrown /*
    498       1.1    abrown  * Undo the effect of an FBIOSVIDEO that turns the video off.
    499       1.1    abrown  */
    500       1.1    abrown static void
    501      1.53  macallan cgfourteenunblank(device_t dev)
    502       1.1    abrown {
    503      1.53  macallan 	struct cgfourteen_softc *sc = device_private(dev);
    504       1.1    abrown 
    505      1.50  macallan 	cg14_set_video(sc, 1);
    506      1.50  macallan #if NWSDISPLAY > 0
    507      1.50  macallan 	if (sc->sc_mode != WSDISPLAYIO_MODE_EMUL) {
    508      1.50  macallan 		cg14_set_depth(sc, 8);
    509      1.50  macallan 		cg14_init_cmap(sc);
    510      1.50  macallan 		vcons_redraw_screen(sc->sc_vd.active);
    511      1.50  macallan 		sc->sc_mode = WSDISPLAYIO_MODE_EMUL;
    512      1.50  macallan 	}
    513      1.50  macallan #endif
    514       1.1    abrown }
    515       1.1    abrown 
    516       1.1    abrown /*
    517       1.1    abrown  * Return the address that would map the given device at the given
    518       1.1    abrown  * offset, allowing for the given protection, or return -1 for error.
    519      1.64  macallan   */
    520      1.17    simonb paddr_t
    521      1.40       uwe cgfourteenmmap(dev_t dev, off_t off, int prot)
    522       1.1    abrown {
    523      1.53  macallan 	struct cgfourteen_softc *sc =
    524      1.54    cegger 	    device_lookup_private(&cgfourteen_cd, minor(dev));
    525      1.64  macallan 	off_t offset = -1;
    526      1.12        pk 
    527       1.1    abrown 	if (off & PGOFSET)
    528       1.1    abrown 		panic("cgfourteenmmap");
    529      1.14       mrg 
    530      1.14       mrg 	if (off < 0)
    531      1.14       mrg 		return (-1);
    532       1.1    abrown 
    533      1.64  macallan 	if (off >= 0 && off < 0x10000) {
    534      1.64  macallan 		offset = sc->sc_regaddr;
    535      1.64  macallan 	} else if (off >= CG14_CURSOR_VOFF &&
    536      1.64  macallan 		   off < (CG14_CURSOR_VOFF + 0x1000)) {
    537      1.64  macallan 		offset = sc->sc_regaddr + CG14_OFFSET_CURS;
    538      1.64  macallan 		off -= CG14_CURSOR_VOFF;
    539      1.64  macallan 	} else if (off >= CG14_DIRECT_VOFF &&
    540      1.64  macallan 		   off < (CG14_DIRECT_VOFF + sc->sc_vramsize)) {
    541      1.64  macallan 		offset = sc->sc_fbaddr + CG14_FB_VRAM;
    542      1.64  macallan 		off -= CG14_DIRECT_VOFF;
    543      1.64  macallan 	} else if (off >= CG14_BGR_VOFF &&
    544      1.64  macallan 		   off < (CG14_BGR_VOFF + sc->sc_vramsize)) {
    545      1.64  macallan 		offset = sc->sc_fbaddr + CG14_FB_CBGR;
    546      1.64  macallan 		off -= CG14_BGR_VOFF;
    547      1.64  macallan 	} else if (off >= CG14_X32_VOFF &&
    548      1.64  macallan 		   off < (CG14_X32_VOFF + (sc->sc_vramsize >> 2))) {
    549      1.64  macallan 		offset = sc->sc_fbaddr + CG14_FB_PX32;
    550      1.64  macallan 		off -= CG14_X32_VOFF;
    551      1.64  macallan 	} else if (off >= CG14_B32_VOFF &&
    552      1.64  macallan 		   off < (CG14_B32_VOFF + (sc->sc_vramsize >> 2))) {
    553      1.64  macallan 		offset = sc->sc_fbaddr + CG14_FB_PB32;
    554      1.64  macallan 		off -= CG14_B32_VOFF;
    555      1.64  macallan 	} else if (off >= CG14_G32_VOFF &&
    556      1.64  macallan 		   off < (CG14_G32_VOFF + (sc->sc_vramsize >> 2))) {
    557      1.64  macallan 		offset = sc->sc_fbaddr + CG14_FB_PG32;
    558      1.64  macallan 		off -= CG14_G32_VOFF;
    559      1.64  macallan 	} else if (off >= CG14_R32_VOFF &&
    560      1.64  macallan 		   off < CG14_R32_VOFF + (sc->sc_vramsize >> 2)) {
    561      1.64  macallan 		offset = sc->sc_fbaddr + CG14_FB_PR32;
    562      1.64  macallan 		off -= CG14_R32_VOFF;
    563      1.73  macallan #if NSX > 0
    564      1.76  macallan 	/*
    565      1.76  macallan 	 * for convenience we also map the SX ranges here:
    566      1.76  macallan 	 * - one page userland registers
    567      1.76  macallan 	 * - CG14-sized IO space at 0x800000000 ( not a typo, it's above 4GB )
    568      1.76  macallan 	 */
    569      1.73  macallan 	} else if (sc->sc_sx == NULL) {
    570      1.73  macallan 		return -1;
    571      1.73  macallan 	} else if (off >= CG14_SXREG_VOFF &&
    572      1.73  macallan 		   off < (CG14_SXREG_VOFF + 0x400)) {
    573      1.73  macallan 		return (bus_space_mmap(sc->sc_sx->sc_tag, sc->sc_sx->sc_uregs,
    574      1.73  macallan 			0, prot, BUS_SPACE_MAP_LINEAR));
    575      1.73  macallan 	} else if (off >= CG14_SXIO_VOFF &&
    576      1.73  macallan 		   off < (CG14_SXIO_VOFF + 0x03ffffff)) {
    577      1.73  macallan 		return (bus_space_mmap(sc->sc_sx->sc_tag, 0x800000000LL,
    578      1.74  macallan 			sc->sc_fb_paddr + (off - CG14_SXIO_VOFF),
    579      1.74  macallan 			prot, BUS_SPACE_MAP_LINEAR));
    580      1.73  macallan #endif
    581      1.64  macallan 	} else
    582      1.64  macallan 		return -1;
    583      1.76  macallan 
    584      1.64  macallan 	return (bus_space_mmap(sc->sc_bustag, offset, off, prot,
    585      1.64  macallan 		    BUS_SPACE_MAP_LINEAR));
    586      1.12        pk }
    587       1.1    abrown 
    588      1.42  christos int
    589      1.42  christos cgfourteenpoll(dev_t dev, int events, struct lwp *l)
    590      1.42  christos {
    591      1.42  christos 
    592      1.42  christos 	return (seltrue(dev, events, l));
    593      1.42  christos }
    594      1.42  christos 
    595       1.1    abrown /*
    596      1.12        pk  * Miscellaneous helper functions
    597       1.1    abrown  */
    598       1.1    abrown 
    599       1.1    abrown /* Initialize the framebuffer, storing away useful state for later reset */
    600      1.12        pk static void
    601      1.40       uwe cg14_init(struct cgfourteen_softc *sc)
    602       1.1    abrown {
    603      1.66  macallan 	cg14_set_depth(sc, 32);
    604       1.1    abrown }
    605       1.1    abrown 
    606      1.42  christos static void
    607      1.40       uwe /* Restore the state saved on cg14_init */
    608      1.40       uwe cg14_reset(struct cgfourteen_softc *sc)
    609       1.1    abrown {
    610      1.66  macallan 	cg14_set_depth(sc, 8);
    611       1.1    abrown }
    612       1.1    abrown 
    613       1.1    abrown /* Enable/disable video display; power down monitor if DPMS-capable */
    614       1.1    abrown static void
    615      1.40       uwe cg14_set_video(struct cgfourteen_softc *sc, int enable)
    616       1.1    abrown {
    617      1.12        pk 	/*
    618       1.1    abrown 	 * We can only use DPMS to power down the display if the chip revision
    619       1.1    abrown 	 * is greater than 0.
    620       1.1    abrown 	 */
    621       1.1    abrown 	if (enable) {
    622       1.1    abrown 		if ((sc->sc_ctl->ctl_rsr & CG14_RSR_REVMASK) > 0)
    623       1.1    abrown 			sc->sc_ctl->ctl_mctl |= (CG14_MCTL_ENABLEVID |
    624       1.1    abrown 						 CG14_MCTL_POWERCTL);
    625       1.1    abrown 		else
    626       1.1    abrown 			sc->sc_ctl->ctl_mctl |= CG14_MCTL_ENABLEVID;
    627       1.1    abrown 	} else {
    628       1.1    abrown 		if ((sc->sc_ctl->ctl_rsr & CG14_RSR_REVMASK) > 0)
    629       1.1    abrown 			sc->sc_ctl->ctl_mctl &= ~(CG14_MCTL_ENABLEVID |
    630       1.1    abrown 						  CG14_MCTL_POWERCTL);
    631       1.1    abrown 		else
    632       1.1    abrown 			sc->sc_ctl->ctl_mctl &= ~CG14_MCTL_ENABLEVID;
    633       1.1    abrown 	}
    634       1.1    abrown }
    635       1.1    abrown 
    636       1.1    abrown /* Get status of video display */
    637       1.1    abrown static int
    638      1.40       uwe cg14_get_video(struct cgfourteen_softc *sc)
    639       1.1    abrown {
    640       1.1    abrown 	return ((sc->sc_ctl->ctl_mctl & CG14_MCTL_ENABLEVID) != 0);
    641       1.1    abrown }
    642       1.1    abrown 
    643       1.1    abrown /* Read the software shadow colormap */
    644      1.12        pk static int
    645      1.40       uwe cg14_get_cmap(struct fbcmap *p, union cg14cmap *cm, int cmsize)
    646       1.1    abrown {
    647      1.42  christos         u_int i, start, count;
    648      1.42  christos         u_char *cp;
    649      1.42  christos         int error;
    650      1.42  christos 
    651      1.42  christos         start = p->index;
    652      1.42  christos         count = p->count;
    653      1.42  christos         if (start >= cmsize || count > cmsize - start)
    654      1.42  christos                 return (EINVAL);
    655      1.42  christos 
    656      1.42  christos         for (cp = &cm->cm_map[start][0], i = 0; i < count; cp += 4, i++) {
    657      1.42  christos                 error = copyout(&cp[3], &p->red[i], 1);
    658      1.42  christos                 if (error)
    659      1.42  christos                         return error;
    660      1.42  christos                 error = copyout(&cp[2], &p->green[i], 1);
    661      1.42  christos                 if (error)
    662      1.42  christos                         return error;
    663      1.42  christos                 error = copyout(&cp[1], &p->blue[i], 1);
    664      1.42  christos                 if (error)
    665      1.42  christos                         return error;
    666      1.42  christos         }
    667      1.42  christos         return (0);
    668       1.1    abrown }
    669       1.1    abrown 
    670       1.1    abrown /* Write the software shadow colormap */
    671       1.1    abrown static int
    672      1.40       uwe cg14_put_cmap(struct fbcmap *p, union cg14cmap *cm, int cmsize)
    673      1.24    itojun {
    674      1.42  christos         u_int i, start, count;
    675      1.42  christos         u_char *cp;
    676      1.42  christos         u_char cmap[256][4];
    677      1.42  christos         int error;
    678      1.42  christos 
    679      1.42  christos         start = p->index;
    680      1.42  christos         count = p->count;
    681      1.42  christos         if (start >= cmsize || count > cmsize - start)
    682      1.42  christos                 return (EINVAL);
    683      1.42  christos 
    684      1.42  christos         memcpy(&cmap, &cm->cm_map, sizeof cmap);
    685      1.42  christos         for (cp = &cmap[start][0], i = 0; i < count; cp += 4, i++) {
    686      1.42  christos                 error = copyin(&p->red[i], &cp[3], 1);
    687      1.42  christos                 if (error)
    688      1.42  christos                         return error;
    689      1.42  christos                 error = copyin(&p->green[i], &cp[2], 1);
    690      1.42  christos                 if (error)
    691      1.42  christos                         return error;
    692      1.42  christos                 error = copyin(&p->blue[i], &cp[1], 1);
    693      1.42  christos                 if (error)
    694      1.42  christos                         return error;
    695      1.42  christos                 cp[0] = 0;      /* no alpha channel */
    696      1.42  christos         }
    697      1.42  christos         memcpy(&cm->cm_map, &cmap, sizeof cmap);
    698      1.42  christos         return (0);
    699       1.1    abrown }
    700       1.1    abrown 
    701       1.1    abrown static void
    702      1.40       uwe cg14_load_hwcmap(struct cgfourteen_softc *sc, int start, int ncolors)
    703       1.1    abrown {
    704       1.1    abrown 	/* XXX switch to auto-increment, and on retrace intr */
    705      1.40       uwe 
    706       1.1    abrown 	/* Setup pointers to source and dest */
    707      1.40       uwe 	uint32_t *colp = &sc->sc_cmap.cm_chip[start];
    708      1.40       uwe 	volatile uint32_t *lutp = &sc->sc_clut1->clut_lut[start];
    709       1.1    abrown 
    710       1.1    abrown 	/* Copy by words */
    711       1.1    abrown 	while (--ncolors >= 0)
    712       1.1    abrown 		*lutp++ = *colp++;
    713       1.1    abrown }
    714      1.49  macallan 
    715      1.49  macallan static void
    716      1.49  macallan cg14_setup_wsdisplay(struct cgfourteen_softc *sc, int is_cons)
    717      1.49  macallan {
    718      1.49  macallan 	struct wsemuldisplaydev_attach_args aa;
    719      1.49  macallan 	struct rasops_info *ri;
    720      1.49  macallan 	long defattr;
    721      1.49  macallan 
    722      1.49  macallan  	sc->sc_defaultscreen_descr = (struct wsscreen_descr){
    723      1.49  macallan 		"default",
    724      1.49  macallan 		0, 0,
    725      1.49  macallan 		NULL,
    726      1.49  macallan 		8, 16,
    727      1.84  macallan 		WSSCREEN_WSCOLORS | WSSCREEN_HILIT | WSSCREEN_UNDERLINE |
    728      1.84  macallan 		WSSCREEN_RESIZE,
    729      1.49  macallan 		NULL
    730      1.49  macallan 	};
    731      1.78  macallan 	cg14_set_depth(sc, 8);
    732      1.49  macallan 	sc->sc_screens[0] = &sc->sc_defaultscreen_descr;
    733      1.49  macallan 	sc->sc_screenlist = (struct wsscreen_list){1, sc->sc_screens};
    734      1.49  macallan 	sc->sc_mode = WSDISPLAYIO_MODE_EMUL;
    735      1.49  macallan 	vcons_init(&sc->sc_vd, sc, &sc->sc_defaultscreen_descr,
    736      1.49  macallan 	    &cg14_accessops);
    737      1.49  macallan 	sc->sc_vd.init_screen = cg14_init_screen;
    738      1.84  macallan 	sc->sc_vd.show_screen_cookie = &sc->sc_gc;
    739      1.84  macallan 	sc->sc_vd.show_screen_cb = glyphcache_adapt;
    740      1.49  macallan 
    741      1.49  macallan 	ri = &sc->sc_console_screen.scr_ri;
    742      1.49  macallan 
    743      1.80  macallan 	sc->sc_gc.gc_bitblt = cg14_bitblt_gc;
    744      1.80  macallan 	sc->sc_gc.gc_blitcookie = sc;
    745      1.83  macallan 	sc->sc_gc.gc_rectfill = cg14_rectfill_a;
    746      1.80  macallan 	sc->sc_gc.gc_rop = 0xc;
    747  1.85.2.2  pgoyette 
    748      1.49  macallan 		vcons_init_screen(&sc->sc_vd, &sc->sc_console_screen, 1,
    749      1.49  macallan 		    &defattr);
    750      1.55  macallan 
    751      1.55  macallan 		/* clear the screen with the default background colour */
    752      1.80  macallan 		if (sc->sc_sx != NULL) {
    753      1.80  macallan 			cg14_rectfill(sc, 0, 0, ri->ri_width, ri->ri_height,
    754      1.80  macallan 				ri->ri_devcmap[(defattr >> 16) & 0xf]);
    755      1.80  macallan 		} else {
    756      1.80  macallan 			memset(sc->sc_fb.fb_pixels,
    757      1.80  macallan 			       ri->ri_devcmap[(defattr >> 16) & 0xf],
    758      1.80  macallan 			       ri->ri_stride * ri->ri_height);
    759      1.80  macallan 		}
    760      1.49  macallan 		sc->sc_console_screen.scr_flags |= VCONS_SCREEN_IS_STATIC;
    761      1.49  macallan 
    762      1.49  macallan 		sc->sc_defaultscreen_descr.textops = &ri->ri_ops;
    763      1.49  macallan 		sc->sc_defaultscreen_descr.capabilities = ri->ri_caps;
    764      1.49  macallan 		sc->sc_defaultscreen_descr.nrows = ri->ri_rows;
    765      1.49  macallan 		sc->sc_defaultscreen_descr.ncols = ri->ri_cols;
    766      1.80  macallan 		glyphcache_init(&sc->sc_gc, sc->sc_fb.fb_type.fb_height + 5,
    767      1.80  macallan 			(sc->sc_vramsize / sc->sc_fb.fb_type.fb_width) -
    768      1.80  macallan 			 sc->sc_fb.fb_type.fb_height - 5,
    769      1.80  macallan 			sc->sc_fb.fb_type.fb_width,
    770      1.80  macallan 			ri->ri_font->fontwidth,
    771      1.80  macallan 			ri->ri_font->fontheight,
    772      1.80  macallan 			defattr);
    773  1.85.2.2  pgoyette 	if (is_cons) {
    774      1.49  macallan 		wsdisplay_cnattach(&sc->sc_defaultscreen_descr, ri, 0, 0,
    775      1.49  macallan 		    defattr);
    776      1.62  macallan 		vcons_replay_msgbuf(&sc->sc_console_screen);
    777      1.49  macallan 	}
    778      1.49  macallan 
    779      1.49  macallan 	cg14_init_cmap(sc);
    780      1.49  macallan 
    781      1.49  macallan 	aa.console = is_cons;
    782      1.49  macallan 	aa.scrdata = &sc->sc_screenlist;
    783      1.49  macallan 	aa.accessops = &cg14_accessops;
    784      1.49  macallan 	aa.accesscookie = &sc->sc_vd;
    785      1.49  macallan 
    786      1.53  macallan 	config_found(sc->sc_dev, &aa, wsemuldisplaydevprint);
    787      1.49  macallan }
    788      1.49  macallan 
    789      1.49  macallan static void
    790      1.49  macallan cg14_init_cmap(struct cgfourteen_softc *sc)
    791      1.49  macallan {
    792      1.80  macallan 	struct rasops_info *ri = &sc->sc_console_screen.scr_ri;
    793      1.49  macallan 	int i, j = 0;
    794      1.80  macallan 	uint8_t cmap[768];
    795      1.80  macallan 
    796      1.80  macallan 	rasops_get_cmap(ri, cmap, sizeof(cmap));
    797      1.49  macallan 
    798      1.49  macallan 	for (i = 0; i < 256; i++) {
    799      1.49  macallan 
    800      1.80  macallan 		sc->sc_cmap.cm_map[i][3] = cmap[j];
    801      1.80  macallan 		sc->sc_cmap.cm_map[i][2] = cmap[j + 1];
    802      1.80  macallan 		sc->sc_cmap.cm_map[i][1] = cmap[j + 2];
    803      1.49  macallan 		j += 3;
    804      1.49  macallan 	}
    805      1.49  macallan 	cg14_load_hwcmap(sc, 0, 256);
    806      1.49  macallan }
    807      1.49  macallan 
    808      1.49  macallan static int
    809      1.49  macallan cg14_putcmap(struct cgfourteen_softc *sc, struct wsdisplay_cmap *cm)
    810      1.49  macallan {
    811      1.49  macallan 	u_int index = cm->index;
    812      1.49  macallan 	u_int count = cm->count;
    813      1.49  macallan 	int i, error;
    814      1.49  macallan 	u_char rbuf[256], gbuf[256], bbuf[256];
    815      1.49  macallan 
    816      1.49  macallan 	if (cm->index >= 256 || cm->count > 256 ||
    817      1.49  macallan 	    (cm->index + cm->count) > 256)
    818      1.49  macallan 		return EINVAL;
    819      1.49  macallan 	error = copyin(cm->red, &rbuf[index], count);
    820      1.49  macallan 	if (error)
    821      1.49  macallan 		return error;
    822      1.49  macallan 	error = copyin(cm->green, &gbuf[index], count);
    823      1.49  macallan 	if (error)
    824      1.49  macallan 		return error;
    825      1.49  macallan 	error = copyin(cm->blue, &bbuf[index], count);
    826      1.49  macallan 	if (error)
    827      1.49  macallan 		return error;
    828      1.49  macallan 
    829      1.49  macallan 	for (i = 0; i < count; i++) {
    830      1.49  macallan 		sc->sc_cmap.cm_map[index][3] = rbuf[index];
    831      1.49  macallan 		sc->sc_cmap.cm_map[index][2] = gbuf[index];
    832      1.49  macallan 		sc->sc_cmap.cm_map[index][1] = bbuf[index];
    833      1.49  macallan 
    834      1.49  macallan 		index++;
    835      1.49  macallan 	}
    836      1.49  macallan 	cg14_load_hwcmap(sc, 0, 256);
    837      1.49  macallan 	return 0;
    838      1.49  macallan }
    839      1.49  macallan 
    840      1.49  macallan static int
    841      1.49  macallan cg14_getcmap(struct cgfourteen_softc *sc, struct wsdisplay_cmap *cm)
    842      1.49  macallan {
    843      1.49  macallan 	uint8_t rbuf[256], gbuf[256], bbuf[256];
    844      1.49  macallan 	u_int index = cm->index;
    845      1.49  macallan 	u_int count = cm->count;
    846      1.49  macallan 	int error, i;
    847      1.49  macallan 
    848      1.49  macallan 	if (index >= 255 || count > 256 || index + count > 256)
    849      1.49  macallan 		return EINVAL;
    850      1.49  macallan 
    851      1.49  macallan 
    852      1.49  macallan 	for (i = 0; i < count; i++) {
    853      1.49  macallan 		rbuf[i] = sc->sc_cmap.cm_map[index][3];
    854      1.49  macallan 		gbuf[i] = sc->sc_cmap.cm_map[index][2];
    855      1.49  macallan 		bbuf[i] = sc->sc_cmap.cm_map[index][1];
    856      1.49  macallan 
    857      1.49  macallan 		index++;
    858      1.49  macallan 	}
    859      1.49  macallan 	error = copyout(rbuf,   cm->red,   count);
    860      1.49  macallan 	if (error)
    861      1.49  macallan 		return error;
    862      1.49  macallan 	error = copyout(gbuf, cm->green, count);
    863      1.49  macallan 	if (error)
    864      1.49  macallan 		return error;
    865      1.49  macallan 	error = copyout(bbuf,  cm->blue,  count);
    866      1.49  macallan 	if (error)
    867      1.49  macallan 		return error;
    868      1.49  macallan 
    869      1.49  macallan 	return 0;
    870      1.49  macallan }
    871      1.63  macallan 
    872      1.49  macallan static int
    873      1.49  macallan cg14_ioctl(void *v, void *vs, u_long cmd, void *data, int flag,
    874      1.49  macallan 	struct lwp *l)
    875      1.49  macallan {
    876      1.49  macallan 	struct vcons_data *vd = v;
    877      1.49  macallan 	struct cgfourteen_softc *sc = vd->cookie;
    878      1.49  macallan 	struct wsdisplay_fbinfo *wdf;
    879      1.49  macallan 	struct vcons_screen *ms = vd->active;
    880      1.49  macallan 
    881      1.49  macallan 	switch (cmd) {
    882      1.49  macallan 
    883      1.49  macallan 		case WSDISPLAYIO_GTYPE:
    884      1.49  macallan 			*(uint32_t *)data = WSDISPLAY_TYPE_SUNCG14;
    885      1.49  macallan 			return 0;
    886      1.49  macallan 
    887      1.49  macallan 		case WSDISPLAYIO_GINFO:
    888      1.49  macallan 			wdf = (void *)data;
    889      1.49  macallan 			wdf->height = ms->scr_ri.ri_height;
    890      1.49  macallan 			wdf->width = ms->scr_ri.ri_width;
    891      1.49  macallan 			wdf->depth = 32;
    892      1.49  macallan 			wdf->cmsize = 256;
    893      1.49  macallan 			return 0;
    894      1.49  macallan 
    895      1.49  macallan 		case WSDISPLAYIO_GETCMAP:
    896      1.49  macallan 			return cg14_getcmap(sc,
    897      1.49  macallan 			    (struct wsdisplay_cmap *)data);
    898      1.49  macallan 
    899      1.49  macallan 		case WSDISPLAYIO_PUTCMAP:
    900      1.49  macallan 			return cg14_putcmap(sc,
    901      1.49  macallan 			    (struct wsdisplay_cmap *)data);
    902      1.49  macallan 
    903      1.49  macallan 		case WSDISPLAYIO_LINEBYTES:
    904      1.55  macallan 			*(u_int *)data = ms->scr_ri.ri_stride << 2;
    905      1.49  macallan 			return 0;
    906      1.49  macallan 
    907      1.49  macallan 		case WSDISPLAYIO_SMODE:
    908      1.49  macallan 			{
    909      1.49  macallan 				int new_mode = *(int*)data;
    910      1.49  macallan 				if (new_mode != sc->sc_mode) {
    911      1.49  macallan 					sc->sc_mode = new_mode;
    912      1.49  macallan 					if(new_mode == WSDISPLAYIO_MODE_EMUL) {
    913      1.50  macallan 						bus_space_write_1(sc->sc_bustag,
    914      1.50  macallan 						    sc->sc_regh,
    915      1.50  macallan 						    CG14_CURSOR_CONTROL, 0);
    916      1.66  macallan 
    917      1.49  macallan 						cg14_set_depth(sc, 8);
    918      1.49  macallan 						cg14_init_cmap(sc);
    919      1.82  macallan #if NSX > 0
    920      1.82  macallan 						if (sc->sc_sx)
    921      1.82  macallan 							glyphcache_wipe(&sc->sc_gc);
    922      1.82  macallan #endif
    923      1.49  macallan 						vcons_redraw_screen(ms);
    924      1.55  macallan 					} else {
    925      1.66  macallan 
    926      1.49  macallan 						cg14_set_depth(sc, 32);
    927      1.55  macallan 					}
    928      1.49  macallan 				}
    929      1.49  macallan 			}
    930      1.49  macallan 			return 0;
    931      1.50  macallan 		case WSDISPLAYIO_SVIDEO:
    932      1.50  macallan 			cg14_set_video(sc, *(int *)data);
    933      1.50  macallan 			return 0;
    934      1.50  macallan 		case WSDISPLAYIO_GVIDEO:
    935      1.50  macallan 			return cg14_get_video(sc) ?
    936      1.50  macallan 			    WSDISPLAYIO_VIDEO_ON : WSDISPLAYIO_VIDEO_OFF;
    937      1.50  macallan 		case WSDISPLAYIO_GCURPOS:
    938      1.50  macallan 			{
    939      1.50  macallan 				struct wsdisplay_curpos *cp = (void *)data;
    940      1.50  macallan 
    941      1.50  macallan 				cp->x = sc->sc_cursor.cc_pos.x;
    942      1.50  macallan 				cp->y = sc->sc_cursor.cc_pos.y;
    943      1.50  macallan 			}
    944      1.50  macallan 			return 0;
    945      1.50  macallan 		case WSDISPLAYIO_SCURPOS:
    946      1.50  macallan 			{
    947      1.50  macallan 				struct wsdisplay_curpos *cp = (void *)data;
    948      1.50  macallan 
    949      1.50  macallan 				cg14_move_cursor(sc, cp->x, cp->y);
    950      1.50  macallan 			}
    951      1.50  macallan 			return 0;
    952      1.50  macallan 		case WSDISPLAYIO_GCURMAX:
    953      1.50  macallan 			{
    954      1.50  macallan 				struct wsdisplay_curpos *cp = (void *)data;
    955      1.50  macallan 
    956      1.50  macallan 				cp->x = 32;
    957      1.50  macallan 				cp->y = 32;
    958      1.50  macallan 			}
    959      1.50  macallan 			return 0;
    960      1.50  macallan 		case WSDISPLAYIO_SCURSOR:
    961      1.50  macallan 			{
    962      1.50  macallan 				struct wsdisplay_cursor *cursor = (void *)data;
    963      1.50  macallan 
    964      1.50  macallan 				return cg14_do_cursor(sc, cursor);
    965      1.50  macallan 			}
    966      1.55  macallan 		case PCI_IOC_CFGREAD:
    967      1.55  macallan 		case PCI_IOC_CFGWRITE:
    968      1.55  macallan 			return EINVAL;
    969      1.55  macallan 
    970      1.49  macallan 	}
    971      1.49  macallan 	return EPASSTHROUGH;
    972      1.49  macallan }
    973      1.49  macallan 
    974      1.49  macallan static paddr_t
    975      1.49  macallan cg14_mmap(void *v, void *vs, off_t offset, int prot)
    976      1.49  macallan {
    977      1.49  macallan 	struct vcons_data *vd = v;
    978      1.49  macallan 	struct cgfourteen_softc *sc = vd->cookie;
    979      1.49  macallan 
    980      1.49  macallan 	/* allow mmap()ing the full framebuffer, not just what we use */
    981      1.49  macallan 	if (offset < sc->sc_vramsize)
    982      1.49  macallan 		return bus_space_mmap(sc->sc_bustag,
    983      1.49  macallan 		    BUS_ADDR(sc->sc_physadr[CG14_PXL_IDX].sbr_slot,
    984      1.49  macallan 		      sc->sc_physadr[CG14_PXL_IDX].sbr_offset),
    985      1.49  macallan 		    offset + CG14_FB_CBGR, prot, BUS_SPACE_MAP_LINEAR);
    986      1.49  macallan 
    987      1.49  macallan 	return -1;
    988      1.49  macallan }
    989      1.49  macallan 
    990      1.49  macallan static void
    991      1.49  macallan cg14_init_screen(void *cookie, struct vcons_screen *scr,
    992      1.49  macallan     int existing, long *defattr)
    993      1.49  macallan {
    994      1.49  macallan 	struct cgfourteen_softc *sc = cookie;
    995      1.49  macallan 	struct rasops_info *ri = &scr->scr_ri;
    996      1.49  macallan 
    997      1.49  macallan 	ri->ri_depth = 8;
    998      1.49  macallan 	ri->ri_width = sc->sc_fb.fb_type.fb_width;
    999      1.49  macallan 	ri->ri_height = sc->sc_fb.fb_type.fb_height;
   1000      1.49  macallan 	ri->ri_stride = ri->ri_width;
   1001      1.49  macallan 	ri->ri_flg = RI_CENTER | RI_FULLCLEAR;
   1002      1.49  macallan 
   1003      1.65  macallan 	ri->ri_bits = (char *)sc->sc_fb.fb_pixels;
   1004      1.84  macallan 
   1005      1.84  macallan 	scr->scr_flags |= VCONS_LOADFONT;
   1006      1.70  macallan #if NSX > 0
   1007      1.83  macallan 	ri->ri_flg |= RI_8BIT_IS_RGB | RI_ENABLE_ALPHA | RI_PREFER_ALPHA;
   1008      1.80  macallan 
   1009      1.71  macallan 	/*
   1010      1.71  macallan 	 * unaligned copies with horizontal overlap are slow, so don't bother
   1011      1.71  macallan 	 * handling them in cg14_bitblt() and use putchar() instead
   1012      1.71  macallan 	 */
   1013      1.71  macallan 	if (sc->sc_sx != NULL) {
   1014      1.71  macallan 		scr->scr_flags |= VCONS_NO_COPYCOLS;
   1015      1.71  macallan 	} else
   1016      1.70  macallan #endif
   1017      1.84  macallan 		scr->scr_flags |= VCONS_DONT_READ;
   1018      1.49  macallan 
   1019      1.49  macallan 	if (existing) {
   1020      1.49  macallan 		ri->ri_flg |= RI_CLEAR;
   1021      1.49  macallan 	}
   1022      1.49  macallan 
   1023      1.67  macallan 	rasops_init(ri, 0, 0);
   1024      1.84  macallan 	ri->ri_caps = WSSCREEN_WSCOLORS | WSSCREEN_HILIT | WSSCREEN_UNDERLINE |
   1025      1.84  macallan 		      WSSCREEN_RESIZE;
   1026      1.49  macallan 
   1027      1.49  macallan 	rasops_reconfig(ri,
   1028      1.49  macallan 	    sc->sc_fb.fb_type.fb_height / ri->ri_font->fontheight,
   1029      1.49  macallan 	    sc->sc_fb.fb_type.fb_width / ri->ri_font->fontwidth);
   1030      1.49  macallan 
   1031      1.49  macallan 	ri->ri_hw = scr;
   1032      1.70  macallan #if NSX > 0
   1033      1.70  macallan 	if (sc->sc_sx != NULL) {
   1034      1.70  macallan 		ri->ri_ops.copyrows = cg14_copyrows;
   1035      1.70  macallan 		ri->ri_ops.copycols = cg14_copycols;
   1036      1.70  macallan 		ri->ri_ops.eraserows = cg14_eraserows;
   1037      1.70  macallan 		ri->ri_ops.erasecols = cg14_erasecols;
   1038      1.71  macallan 		ri->ri_ops.cursor = cg14_cursor;
   1039      1.70  macallan 		if (FONT_IS_ALPHA(ri->ri_font)) {
   1040      1.70  macallan 			ri->ri_ops.putchar = cg14_putchar_aa;
   1041      1.70  macallan 		} else
   1042      1.70  macallan 			ri->ri_ops.putchar = cg14_putchar;
   1043      1.70  macallan 	}
   1044      1.70  macallan #endif /* NSX > 0 */
   1045      1.49  macallan }
   1046      1.49  macallan 
   1047      1.49  macallan static void
   1048      1.49  macallan cg14_set_depth(struct cgfourteen_softc *sc, int depth)
   1049      1.49  macallan {
   1050      1.49  macallan 	int i;
   1051      1.49  macallan 
   1052      1.49  macallan 	if (sc->sc_depth == depth)
   1053      1.49  macallan 		return;
   1054      1.66  macallan 
   1055      1.49  macallan 	switch (depth) {
   1056      1.49  macallan 		case 8:
   1057      1.49  macallan 			bus_space_write_1(sc->sc_bustag, sc->sc_regh,
   1058      1.49  macallan 			    CG14_MCTL, CG14_MCTL_ENABLEVID |
   1059      1.49  macallan 			    CG14_MCTL_PIXMODE_8 | CG14_MCTL_POWERCTL);
   1060      1.49  macallan 			sc->sc_depth = 8;
   1061      1.49  macallan 			/* everything is CLUT1 */
   1062      1.49  macallan 			for (i = 0; i < CG14_CLUT_SIZE; i++)
   1063      1.49  macallan 			     sc->sc_xlut->xlut_lut[i] = 0;
   1064      1.49  macallan 			break;
   1065      1.49  macallan 		case 32:
   1066      1.49  macallan 			bus_space_write_1(sc->sc_bustag, sc->sc_regh,
   1067      1.49  macallan 			    CG14_MCTL, CG14_MCTL_ENABLEVID |
   1068      1.49  macallan 			    CG14_MCTL_PIXMODE_32 | CG14_MCTL_POWERCTL);
   1069      1.49  macallan 			sc->sc_depth = 32;
   1070      1.49  macallan 			for (i = 0; i < CG14_CLUT_SIZE; i++)
   1071      1.49  macallan 			     sc->sc_xlut->xlut_lut[i] = 0;
   1072      1.49  macallan 			break;
   1073      1.49  macallan 		default:
   1074      1.49  macallan 			printf("%s: can't change to depth %d\n",
   1075      1.53  macallan 			    device_xname(sc->sc_dev), depth);
   1076      1.49  macallan 	}
   1077      1.49  macallan }
   1078      1.50  macallan 
   1079      1.50  macallan static void
   1080      1.50  macallan cg14_move_cursor(struct cgfourteen_softc *sc, int x, int y)
   1081      1.50  macallan {
   1082      1.50  macallan 	uint32_t pos;
   1083      1.50  macallan 
   1084      1.50  macallan 	sc->sc_cursor.cc_pos.x = x;
   1085      1.50  macallan 	sc->sc_cursor.cc_pos.y = y;
   1086      1.50  macallan 	pos = ((sc->sc_cursor.cc_pos.x - sc->sc_cursor.cc_hot.x ) << 16) |
   1087      1.50  macallan 	      ((sc->sc_cursor.cc_pos.y - sc->sc_cursor.cc_hot.y ) & 0xffff);
   1088      1.50  macallan 	bus_space_write_4(sc->sc_bustag, sc->sc_regh, CG14_CURSOR_X, pos);
   1089      1.50  macallan }
   1090      1.50  macallan 
   1091      1.50  macallan static int
   1092      1.50  macallan cg14_do_cursor(struct cgfourteen_softc *sc, struct wsdisplay_cursor *cur)
   1093      1.50  macallan {
   1094      1.50  macallan 	if (cur->which & WSDISPLAY_CURSOR_DOCUR) {
   1095      1.50  macallan 
   1096      1.50  macallan 		bus_space_write_1(sc->sc_bustag, sc->sc_regh,
   1097      1.50  macallan 		    CG14_CURSOR_CONTROL, cur->enable ? CG14_CRSR_ENABLE : 0);
   1098      1.50  macallan 	}
   1099      1.50  macallan 	if (cur->which & WSDISPLAY_CURSOR_DOHOT) {
   1100      1.50  macallan 
   1101      1.50  macallan 		sc->sc_cursor.cc_hot.x = cur->hot.x;
   1102      1.50  macallan 		sc->sc_cursor.cc_hot.y = cur->hot.y;
   1103      1.50  macallan 		cur->which |= WSDISPLAY_CURSOR_DOPOS;
   1104      1.50  macallan 	}
   1105      1.50  macallan 	if (cur->which & WSDISPLAY_CURSOR_DOPOS) {
   1106      1.50  macallan 
   1107      1.50  macallan 		cg14_move_cursor(sc, cur->pos.x, cur->pos.y);
   1108      1.50  macallan 	}
   1109      1.50  macallan 	if (cur->which & WSDISPLAY_CURSOR_DOCMAP) {
   1110      1.50  macallan 		int i;
   1111      1.50  macallan 		uint32_t val;
   1112      1.85  macallan 
   1113      1.85  macallan 		if ((cur->cmap.index > 2) || (cur->cmap.count > 3) ||
   1114      1.85  macallan 		    (cur->cmap.index + cur->cmap.count > 3))
   1115      1.85  macallan 			return EINVAL;
   1116      1.85  macallan 
   1117  1.85.2.1  pgoyette 		for (i = 0; i < uimin(cur->cmap.count, 3); i++) {
   1118      1.50  macallan 			val = (cur->cmap.red[i] ) |
   1119      1.50  macallan 			      (cur->cmap.green[i] << 8) |
   1120      1.50  macallan 			      (cur->cmap.blue[i] << 16);
   1121      1.50  macallan 			bus_space_write_4(sc->sc_bustag, sc->sc_regh,
   1122      1.50  macallan 			    CG14_CURSOR_COLOR1 + ((i + cur->cmap.index) << 2),
   1123      1.50  macallan 			    val);
   1124      1.50  macallan 		}
   1125      1.50  macallan 	}
   1126      1.50  macallan 	if (cur->which & WSDISPLAY_CURSOR_DOSHAPE) {
   1127      1.50  macallan 		uint32_t buffer[32], latch, tmp;
   1128      1.50  macallan 		int i;
   1129      1.50  macallan 
   1130      1.55  macallan 		copyin(cur->mask, buffer, 128);
   1131      1.50  macallan 		for (i = 0; i < 32; i++) {
   1132      1.50  macallan 			latch = 0;
   1133      1.50  macallan 			tmp = buffer[i] & 0x80808080;
   1134      1.50  macallan 			latch |= tmp >> 7;
   1135      1.50  macallan 			tmp = buffer[i] & 0x40404040;
   1136      1.50  macallan 			latch |= tmp >> 5;
   1137      1.50  macallan 			tmp = buffer[i] & 0x20202020;
   1138      1.50  macallan 			latch |= tmp >> 3;
   1139      1.50  macallan 			tmp = buffer[i] & 0x10101010;
   1140      1.50  macallan 			latch |= tmp >> 1;
   1141      1.50  macallan 			tmp = buffer[i] & 0x08080808;
   1142      1.50  macallan 			latch |= tmp << 1;
   1143      1.50  macallan 			tmp = buffer[i] & 0x04040404;
   1144      1.50  macallan 			latch |= tmp << 3;
   1145      1.50  macallan 			tmp = buffer[i] & 0x02020202;
   1146      1.50  macallan 			latch |= tmp << 5;
   1147      1.50  macallan 			tmp = buffer[i] & 0x01010101;
   1148      1.50  macallan 			latch |= tmp << 7;
   1149      1.50  macallan 			bus_space_write_4(sc->sc_bustag, sc->sc_regh,
   1150      1.50  macallan 			    CG14_CURSOR_PLANE0 + (i << 2), latch);
   1151      1.50  macallan 		}
   1152      1.55  macallan 		copyin(cur->image, buffer, 128);
   1153      1.50  macallan 		for (i = 0; i < 32; i++) {
   1154      1.50  macallan 			latch = 0;
   1155      1.50  macallan 			tmp = buffer[i] & 0x80808080;
   1156      1.50  macallan 			latch |= tmp >> 7;
   1157      1.50  macallan 			tmp = buffer[i] & 0x40404040;
   1158      1.50  macallan 			latch |= tmp >> 5;
   1159      1.50  macallan 			tmp = buffer[i] & 0x20202020;
   1160      1.50  macallan 			latch |= tmp >> 3;
   1161      1.50  macallan 			tmp = buffer[i] & 0x10101010;
   1162      1.50  macallan 			latch |= tmp >> 1;
   1163      1.50  macallan 			tmp = buffer[i] & 0x08080808;
   1164      1.50  macallan 			latch |= tmp << 1;
   1165      1.50  macallan 			tmp = buffer[i] & 0x04040404;
   1166      1.50  macallan 			latch |= tmp << 3;
   1167      1.50  macallan 			tmp = buffer[i] & 0x02020202;
   1168      1.50  macallan 			latch |= tmp << 5;
   1169      1.50  macallan 			tmp = buffer[i] & 0x01010101;
   1170      1.50  macallan 			latch |= tmp << 7;
   1171      1.50  macallan 			bus_space_write_4(sc->sc_bustag, sc->sc_regh,
   1172      1.50  macallan 			    CG14_CURSOR_PLANE1 + (i << 2), latch);
   1173      1.50  macallan 		}
   1174      1.50  macallan 	}
   1175      1.50  macallan 	return 0;
   1176      1.50  macallan }
   1177      1.70  macallan 
   1178      1.70  macallan #if NSX > 0
   1179      1.70  macallan 
   1180      1.70  macallan static void
   1181      1.70  macallan cg14_wait_idle(struct cgfourteen_softc *sc)
   1182      1.70  macallan {
   1183      1.70  macallan }
   1184      1.70  macallan 
   1185      1.70  macallan static void
   1186      1.70  macallan cg14_rectfill(struct cgfourteen_softc *sc, int x, int y, int wi, int he,
   1187      1.70  macallan      uint32_t colour)
   1188      1.70  macallan {
   1189      1.70  macallan 	uint32_t addr, pptr;
   1190      1.71  macallan 	int line, cnt, pre, words;
   1191      1.70  macallan 	int stride = sc->sc_fb.fb_type.fb_width;
   1192      1.70  macallan 
   1193      1.70  macallan 	addr = sc->sc_fb_paddr + x + stride * y;
   1194      1.70  macallan 	sx_write(sc->sc_sx, SX_QUEUED(8), colour);
   1195      1.70  macallan 	sx_write(sc->sc_sx, SX_QUEUED(9), colour);
   1196      1.71  macallan 	/*
   1197      1.71  macallan 	 * Calculate the number of pixels we need to do one by one
   1198      1.71  macallan 	 * until we're 32bit aligned, then do the rest in 32bit
   1199      1.71  macallan 	 * mode. Assumes that stride is always a multiple of 4.
   1200      1.71  macallan 	 */
   1201      1.73  macallan 	/* TODO: use 32bit writes with byte mask instead */
   1202      1.71  macallan 	pre = addr & 3;
   1203      1.71  macallan 	if (pre != 0) pre = 4 - pre;
   1204      1.70  macallan 	for (line = 0; line < he; line++) {
   1205      1.70  macallan 		pptr = addr;
   1206      1.70  macallan 		cnt = wi;
   1207      1.71  macallan 		if (pre) {
   1208      1.78  macallan 			sta(pptr & ~7, ASI_SX, SX_STBS(8, pre - 1, pptr & 7));
   1209      1.71  macallan 			pptr += pre;
   1210      1.71  macallan 			cnt -= pre;
   1211      1.70  macallan 		}
   1212      1.71  macallan 		/* now do the aligned pixels in 32bit chunks */
   1213      1.83  macallan 		while(cnt > 3) {
   1214  1.85.2.1  pgoyette 			words = uimin(32, cnt >> 2);
   1215      1.78  macallan 			sta(pptr & ~7, ASI_SX, SX_STS(8, words - 1, pptr & 7));
   1216      1.71  macallan 			pptr += words << 2;
   1217      1.71  macallan 			cnt -= words << 2;
   1218      1.71  macallan 		}
   1219      1.71  macallan 		/* do any remaining pixels byte-wise again */
   1220      1.70  macallan 		if (cnt > 0)
   1221      1.78  macallan 			sta(pptr & ~7, ASI_SX, SX_STBS(8, cnt - 1, pptr & 7));
   1222      1.70  macallan 		addr += stride;
   1223      1.70  macallan 	}
   1224      1.71  macallan }
   1225      1.71  macallan 
   1226      1.71  macallan static void
   1227      1.83  macallan cg14_rectfill_a(void *cookie, int dstx, int dsty,
   1228      1.83  macallan     int width, int height, long attr)
   1229      1.83  macallan {
   1230      1.83  macallan 	struct cgfourteen_softc *sc = cookie;
   1231      1.83  macallan 
   1232      1.83  macallan 	cg14_rectfill(sc, dstx, dsty, width, height,
   1233      1.83  macallan 	    sc->sc_vd.active->scr_ri.ri_devcmap[(attr >> 24 & 0xf)]);
   1234      1.83  macallan }
   1235      1.83  macallan 
   1236      1.83  macallan static void
   1237      1.71  macallan cg14_invert(struct cgfourteen_softc *sc, int x, int y, int wi, int he)
   1238      1.71  macallan {
   1239      1.71  macallan 	uint32_t addr, pptr;
   1240      1.71  macallan 	int line, cnt, pre, words;
   1241      1.71  macallan 	int stride = sc->sc_fb.fb_type.fb_width;
   1242      1.71  macallan 
   1243      1.71  macallan 	addr = sc->sc_fb_paddr + x + stride * y;
   1244      1.71  macallan 	sx_write(sc->sc_sx, SX_ROP_CONTROL, 0x33); /* ~src a */
   1245      1.71  macallan 	/*
   1246      1.71  macallan 	 * Calculate the number of pixels we need to do one by one
   1247      1.71  macallan 	 * until we're 32bit aligned, then do the rest in 32bit
   1248      1.71  macallan 	 * mode. Assumes that stride is always a multiple of 4.
   1249      1.71  macallan 	 */
   1250      1.73  macallan 	/* TODO: use 32bit writes with byte mask instead */
   1251      1.71  macallan 	pre = addr & 3;
   1252      1.71  macallan 	if (pre != 0) pre = 4 - pre;
   1253      1.71  macallan 	for (line = 0; line < he; line++) {
   1254      1.71  macallan 		pptr = addr;
   1255      1.71  macallan 		cnt = wi;
   1256      1.71  macallan 		if (pre) {
   1257      1.78  macallan 			sta(pptr & ~7, ASI_SX, SX_LDB(8, pre - 1, pptr & 7));
   1258      1.71  macallan 			sx_write(sc->sc_sx, SX_INSTRUCTIONS,
   1259      1.71  macallan 			    SX_ROP(8, 8, 32, pre - 1));
   1260      1.78  macallan 			sta(pptr & ~7, ASI_SX, SX_STB(32, pre - 1, pptr & 7));
   1261      1.71  macallan 			pptr += pre;
   1262      1.71  macallan 			cnt -= pre;
   1263      1.71  macallan 		}
   1264      1.71  macallan 		/* now do the aligned pixels in 32bit chunks */
   1265      1.71  macallan 		while(cnt > 15) {
   1266  1.85.2.1  pgoyette 			words = uimin(16, cnt >> 2);
   1267      1.78  macallan 			sta(pptr & ~7, ASI_SX, SX_LD(8, words - 1, pptr & 7));
   1268      1.71  macallan 			sx_write(sc->sc_sx, SX_INSTRUCTIONS,
   1269      1.71  macallan 			    SX_ROP(8, 8, 32, words - 1));
   1270      1.78  macallan 			sta(pptr & ~7, ASI_SX, SX_ST(32, words - 1, pptr & 7));
   1271      1.71  macallan 			pptr += words << 2;
   1272      1.71  macallan 			cnt -= words << 2;
   1273      1.71  macallan 		}
   1274      1.71  macallan 		/* do any remaining pixels byte-wise again */
   1275      1.71  macallan 		if (cnt > 0)
   1276      1.78  macallan 			sta(pptr & ~7, ASI_SX, SX_LDB(8, cnt - 1, pptr & 7));
   1277      1.71  macallan 			sx_write(sc->sc_sx, SX_INSTRUCTIONS,
   1278      1.71  macallan 			    SX_ROP(8, 8, 32, cnt - 1));
   1279      1.78  macallan 			sta(pptr & ~7, ASI_SX, SX_STB(32, cnt - 1, pptr & 7));
   1280      1.71  macallan 		addr += stride;
   1281      1.71  macallan 	}
   1282      1.71  macallan }
   1283      1.71  macallan 
   1284      1.71  macallan static inline void
   1285      1.71  macallan cg14_slurp(int reg, uint32_t addr, int cnt)
   1286      1.71  macallan {
   1287      1.71  macallan 	int num;
   1288      1.71  macallan 	while (cnt > 0) {
   1289  1.85.2.1  pgoyette 		num = uimin(32, cnt);
   1290      1.78  macallan 		sta(addr & ~7, ASI_SX, SX_LD(reg, num - 1, addr & 7));
   1291      1.71  macallan 		cnt -= num;
   1292      1.71  macallan 		reg += num;
   1293      1.71  macallan 		addr += (num << 2);
   1294      1.71  macallan 	}
   1295      1.71  macallan }
   1296      1.71  macallan 
   1297      1.71  macallan static inline void
   1298      1.71  macallan cg14_spit(int reg, uint32_t addr, int cnt)
   1299      1.71  macallan {
   1300      1.71  macallan 	int num;
   1301      1.71  macallan 	while (cnt > 0) {
   1302  1.85.2.1  pgoyette 		num = uimin(32, cnt);
   1303      1.78  macallan 		sta(addr & ~7, ASI_SX, SX_ST(reg, num - 1, addr & 7));
   1304      1.71  macallan 		cnt -= num;
   1305      1.71  macallan 		reg += num;
   1306      1.71  macallan 		addr += (num << 2);
   1307      1.71  macallan 	}
   1308      1.70  macallan }
   1309      1.70  macallan 
   1310      1.70  macallan static void
   1311      1.70  macallan cg14_bitblt(void *cookie, int xs, int ys, int xd, int yd,
   1312      1.70  macallan     int wi, int he, int rop)
   1313      1.70  macallan {
   1314      1.70  macallan 	struct cgfourteen_softc *sc = cookie;
   1315      1.70  macallan 	uint32_t saddr, daddr, sptr, dptr;
   1316      1.70  macallan 	int line, cnt, stride = sc->sc_fb.fb_type.fb_width;
   1317      1.71  macallan 	int num, words, skip;
   1318      1.71  macallan 
   1319      1.71  macallan 	if (ys < yd) {
   1320      1.71  macallan 		/* need to go bottom-up */
   1321      1.71  macallan 		saddr = sc->sc_fb_paddr + xs + stride * (ys + he - 1);
   1322      1.71  macallan 		daddr = sc->sc_fb_paddr + xd + stride * (yd + he - 1);
   1323      1.71  macallan 		skip = -stride;
   1324      1.71  macallan 	} else {
   1325      1.71  macallan 		saddr = sc->sc_fb_paddr + xs + stride * ys;
   1326      1.71  macallan 		daddr = sc->sc_fb_paddr + xd + stride * yd;
   1327      1.71  macallan 		skip = stride;
   1328      1.71  macallan 	}
   1329      1.70  macallan 
   1330      1.70  macallan 	if ((saddr & 3) == (daddr & 3)) {
   1331      1.70  macallan 		int pre = saddr & 3;	/* pixels to copy byte-wise */
   1332      1.70  macallan 		if (pre != 0) pre = 4 - pre;
   1333      1.70  macallan 		for (line = 0; line < he; line++) {
   1334      1.70  macallan 			sptr = saddr;
   1335      1.70  macallan 			dptr = daddr;
   1336      1.70  macallan 			cnt = wi;
   1337      1.70  macallan 			if (pre > 0) {
   1338      1.78  macallan 				sta(sptr & ~7, ASI_SX,
   1339      1.72  macallan 				    SX_LDB(32, pre - 1, sptr & 7));
   1340      1.78  macallan 				sta(dptr & ~7, ASI_SX,
   1341      1.72  macallan 				    SX_STB(32, pre - 1, dptr & 7));
   1342      1.70  macallan 				cnt -= pre;
   1343      1.70  macallan 				sptr += pre;
   1344      1.70  macallan 				dptr += pre;
   1345      1.70  macallan 			}
   1346      1.71  macallan 			words = cnt >> 2;
   1347      1.71  macallan 			while(cnt > 3) {
   1348  1.85.2.1  pgoyette 				num = uimin(120, words);
   1349      1.71  macallan 				cg14_slurp(8, sptr, num);
   1350      1.71  macallan 				cg14_spit(8, dptr, num);
   1351      1.71  macallan 				sptr += num << 2;
   1352      1.71  macallan 				dptr += num << 2;
   1353      1.71  macallan 				cnt -= num << 2;
   1354      1.70  macallan 			}
   1355      1.70  macallan 			if (cnt > 0) {
   1356      1.78  macallan 				sta(sptr & ~7, ASI_SX,
   1357      1.72  macallan 				    SX_LDB(32, cnt - 1, sptr & 7));
   1358      1.78  macallan 				sta(dptr & ~7, ASI_SX,
   1359      1.72  macallan 				    SX_STB(32, cnt - 1, dptr & 7));
   1360      1.70  macallan 			}
   1361      1.71  macallan 			saddr += skip;
   1362      1.71  macallan 			daddr += skip;
   1363      1.70  macallan 		}
   1364      1.70  macallan 	} else {
   1365      1.70  macallan 		/* unaligned, have to use byte mode */
   1366      1.73  macallan 		/* funnel shifter & byte mask trickery? */
   1367      1.70  macallan 		for (line = 0; line < he; line++) {
   1368      1.70  macallan 			sptr = saddr;
   1369      1.70  macallan 			dptr = daddr;
   1370      1.70  macallan 			cnt = wi;
   1371      1.71  macallan 			while(cnt > 31) {
   1372      1.78  macallan 				sta(sptr & ~7, ASI_SX, SX_LDB(32, 31, sptr & 7));
   1373      1.78  macallan 				sta(dptr & ~7, ASI_SX, SX_STB(32, 31, dptr & 7));
   1374      1.70  macallan 				sptr += 32;
   1375      1.70  macallan 				dptr += 32;
   1376      1.70  macallan 				cnt -= 32;
   1377      1.70  macallan 			}
   1378      1.70  macallan 			if (cnt > 0) {
   1379      1.78  macallan 				sta(sptr & ~7, ASI_SX,
   1380      1.72  macallan 				    SX_LDB(32, cnt - 1, sptr & 7));
   1381      1.78  macallan 				sta(dptr & ~7, ASI_SX,
   1382      1.72  macallan 				    SX_STB(32, cnt - 1, dptr & 7));
   1383      1.70  macallan 			}
   1384      1.71  macallan 			saddr += skip;
   1385      1.71  macallan 			daddr += skip;
   1386      1.70  macallan 		}
   1387      1.70  macallan 	}
   1388      1.70  macallan }
   1389      1.70  macallan 
   1390      1.80  macallan /*
   1391      1.80  macallan  * for copying glyphs around
   1392      1.80  macallan  * - uses all quads for reads
   1393      1.80  macallan  * - uses quads for writes as far as possible
   1394      1.80  macallan  * - limited by number of registers - won't do more than 120 wide
   1395      1.80  macallan  * - doesn't handle overlaps
   1396      1.80  macallan  */
   1397      1.80  macallan static void
   1398      1.80  macallan cg14_bitblt_gc(void *cookie, int xs, int ys, int xd, int yd,
   1399      1.80  macallan     int wi, int he, int rop)
   1400      1.80  macallan {
   1401      1.80  macallan 	struct cgfourteen_softc *sc = cookie;
   1402      1.80  macallan 	uint32_t saddr, daddr;
   1403      1.80  macallan 	int line, cnt = wi, stride = sc->sc_fb.fb_type.fb_width;
   1404      1.80  macallan 	int dreg = 8, swi = wi, dd;
   1405      1.80  macallan 	int in = 0, q = 0, out = 0, r;
   1406      1.80  macallan 
   1407      1.80  macallan 	saddr = sc->sc_fb_paddr + xs + stride * ys;
   1408      1.80  macallan 	daddr = sc->sc_fb_paddr + xd + stride * yd;
   1409      1.80  macallan 
   1410      1.80  macallan 	if (saddr & 3) {
   1411      1.80  macallan 		swi += saddr & 3;
   1412      1.80  macallan 		dreg += saddr & 3;
   1413      1.80  macallan 		saddr &= ~3;
   1414      1.80  macallan 	}
   1415      1.80  macallan 	swi = (swi + 3) >> 2;	/* round up, number of quads to read */
   1416      1.80  macallan 
   1417      1.80  macallan 	if (daddr & 3) {
   1418      1.80  macallan 		in = 4 - (daddr & 3); /* pixels to write in byte mode */
   1419      1.80  macallan 		cnt -= in;
   1420      1.80  macallan 	}
   1421      1.80  macallan 
   1422      1.80  macallan 	q = cnt >> 2;
   1423      1.80  macallan 	out = cnt & 3;
   1424      1.80  macallan 
   1425      1.80  macallan 	for (line = 0; line < he; line++) {
   1426      1.80  macallan 		/* read source line, in all quads */
   1427      1.80  macallan 		sta(saddr & ~7, ASI_SX, SX_LDUQ0(8, swi - 1, saddr & 7));
   1428      1.80  macallan 		/* now write it out */
   1429      1.80  macallan 		dd = daddr;
   1430      1.80  macallan 		r = dreg;
   1431      1.80  macallan 		if (in > 0) {
   1432      1.80  macallan 			sta(dd & ~7, ASI_SX, SX_STB(r, in - 1, dd & 7));
   1433      1.80  macallan 			dd += in;
   1434      1.80  macallan 			r += in;
   1435      1.80  macallan 		}
   1436      1.80  macallan 		if (q > 0) {
   1437      1.80  macallan 			sta(dd & ~7, ASI_SX, SX_STUQ0(r, q - 1, dd & 7));
   1438      1.80  macallan 			r += q << 2;
   1439      1.80  macallan 			dd += q << 2;
   1440      1.80  macallan 		}
   1441      1.80  macallan 		if (out > 0) {
   1442      1.80  macallan 			sta(dd & ~7, ASI_SX, SX_STB(r, out - 1, dd & 7));
   1443      1.80  macallan 		}
   1444      1.80  macallan 		saddr += stride;
   1445      1.80  macallan 		daddr += stride;
   1446      1.80  macallan 	}
   1447      1.80  macallan }
   1448      1.70  macallan 
   1449      1.70  macallan static void
   1450      1.70  macallan cg14_putchar(void *cookie, int row, int col, u_int c, long attr)
   1451      1.70  macallan {
   1452      1.70  macallan 	struct rasops_info *ri = cookie;
   1453      1.70  macallan 	struct wsdisplay_font *font = PICK_FONT(ri, c);
   1454      1.70  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1455      1.70  macallan 	struct cgfourteen_softc *sc = scr->scr_cookie;
   1456      1.70  macallan 	void *data;
   1457      1.70  macallan 	uint32_t fg, bg;
   1458      1.70  macallan 	int i, x, y, wi, he;
   1459      1.70  macallan 	uint32_t addr;
   1460      1.70  macallan 	int stride = sc->sc_fb.fb_type.fb_width;
   1461      1.70  macallan 
   1462      1.70  macallan 	if (sc->sc_mode != WSDISPLAYIO_MODE_EMUL)
   1463      1.70  macallan 		return;
   1464      1.70  macallan 
   1465      1.70  macallan 	if (!CHAR_IN_FONT(c, font))
   1466      1.70  macallan 		return;
   1467      1.70  macallan 
   1468      1.70  macallan 	wi = font->fontwidth;
   1469      1.70  macallan 	he = font->fontheight;
   1470      1.70  macallan 
   1471      1.70  macallan 	bg = ri->ri_devcmap[(attr >> 16) & 0xf];
   1472      1.70  macallan 	fg = ri->ri_devcmap[(attr >> 24) & 0xf];
   1473      1.70  macallan 
   1474      1.70  macallan 	x = ri->ri_xorigin + col * wi;
   1475      1.70  macallan 	y = ri->ri_yorigin + row * he;
   1476      1.70  macallan 
   1477      1.70  macallan 	if (c == 0x20) {
   1478      1.70  macallan 		cg14_rectfill(sc, x, y, wi, he, bg);
   1479      1.83  macallan 		if (attr & 1)
   1480      1.83  macallan 			cg14_rectfill(sc, x, y + he - 2, wi, 1, fg);
   1481      1.70  macallan 		return;
   1482      1.70  macallan 	}
   1483      1.70  macallan 
   1484      1.83  macallan 	sx_write(sc->sc_sx, SX_QUEUED(8), bg);
   1485      1.83  macallan 	sx_write(sc->sc_sx, SX_QUEUED(9), fg);
   1486      1.83  macallan 
   1487      1.70  macallan 	data = WSFONT_GLYPH(c, font);
   1488      1.70  macallan 	addr = sc->sc_fb_paddr + x + stride * y;
   1489      1.70  macallan 
   1490      1.70  macallan 	switch (font->stride) {
   1491      1.70  macallan 		case 1: {
   1492      1.70  macallan 			uint8_t *data8 = data;
   1493      1.70  macallan 			uint32_t reg;
   1494      1.70  macallan 			for (i = 0; i < he; i++) {
   1495      1.70  macallan 				reg = *data8;
   1496      1.72  macallan 				sx_write(sc->sc_sx, SX_QUEUED(R_MASK),
   1497      1.72  macallan 				    reg << 24);
   1498      1.78  macallan 				sta(addr & ~7, ASI_SX, SX_STBS(8, wi - 1, addr & 7));
   1499      1.70  macallan 				data8++;
   1500      1.70  macallan 				addr += stride;
   1501      1.70  macallan 			}
   1502      1.70  macallan 			break;
   1503      1.70  macallan 		}
   1504      1.70  macallan 		case 2: {
   1505      1.70  macallan 			uint16_t *data16 = data;
   1506      1.70  macallan 			uint32_t reg;
   1507      1.70  macallan 			for (i = 0; i < he; i++) {
   1508      1.70  macallan 				reg = *data16;
   1509      1.72  macallan 				sx_write(sc->sc_sx, SX_QUEUED(R_MASK),
   1510      1.72  macallan 				    reg << 16);
   1511      1.78  macallan 				sta(addr & ~7, ASI_SX, SX_STBS(8, wi - 1, addr & 7));
   1512      1.70  macallan 				data16++;
   1513      1.70  macallan 				addr += stride;
   1514      1.70  macallan 			}
   1515      1.70  macallan 			break;
   1516      1.70  macallan 		}
   1517      1.70  macallan 	}
   1518      1.83  macallan 	if (attr & 1)
   1519      1.83  macallan 		cg14_rectfill(sc, x, y + he - 2, wi, 1, fg);
   1520      1.70  macallan }
   1521      1.70  macallan 
   1522      1.70  macallan static void
   1523      1.71  macallan cg14_cursor(void *cookie, int on, int row, int col)
   1524      1.70  macallan {
   1525      1.70  macallan 	struct rasops_info *ri = cookie;
   1526      1.70  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1527      1.71  macallan 	struct cgfourteen_softc *sc = scr->scr_cookie;
   1528      1.70  macallan 	int x, y, wi, he;
   1529      1.70  macallan 
   1530      1.70  macallan 	wi = ri->ri_font->fontwidth;
   1531      1.70  macallan 	he = ri->ri_font->fontheight;
   1532      1.70  macallan 
   1533      1.70  macallan 	if (sc->sc_mode == WSDISPLAYIO_MODE_EMUL) {
   1534      1.70  macallan 		x = ri->ri_ccol * wi + ri->ri_xorigin;
   1535      1.70  macallan 		y = ri->ri_crow * he + ri->ri_yorigin;
   1536      1.70  macallan 		if (ri->ri_flg & RI_CURSOR) {
   1537      1.71  macallan 			cg14_invert(sc, x, y, wi, he);
   1538      1.70  macallan 			ri->ri_flg &= ~RI_CURSOR;
   1539      1.70  macallan 		}
   1540      1.70  macallan 		ri->ri_crow = row;
   1541      1.70  macallan 		ri->ri_ccol = col;
   1542      1.70  macallan 		if (on) {
   1543      1.70  macallan 			x = ri->ri_ccol * wi + ri->ri_xorigin;
   1544      1.70  macallan 			y = ri->ri_crow * he + ri->ri_yorigin;
   1545      1.71  macallan 			cg14_invert(sc, x, y, wi, he);
   1546      1.70  macallan 			ri->ri_flg |= RI_CURSOR;
   1547      1.70  macallan 		}
   1548      1.70  macallan 	} else {
   1549      1.70  macallan 		scr->scr_ri.ri_crow = row;
   1550      1.70  macallan 		scr->scr_ri.ri_ccol = col;
   1551      1.70  macallan 		scr->scr_ri.ri_flg &= ~RI_CURSOR;
   1552      1.70  macallan 	}
   1553      1.70  macallan 
   1554      1.70  macallan }
   1555      1.70  macallan 
   1556      1.70  macallan static void
   1557      1.80  macallan cg14_putchar_aa(void *cookie, int row, int col, u_int c, long attr)
   1558      1.70  macallan {
   1559      1.70  macallan 	struct rasops_info *ri = cookie;
   1560      1.70  macallan 	struct wsdisplay_font *font = PICK_FONT(ri, c);
   1561      1.70  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1562      1.80  macallan 	struct cgfourteen_softc *sc = scr->scr_cookie;
   1563      1.80  macallan 	int stride = sc->sc_fb.fb_type.fb_width;
   1564      1.83  macallan 	uint32_t bg, fg, addr, bg8, fg8, pixel, in, q, next;
   1565      1.80  macallan 	int i, j, x, y, wi, he, r, g, b, aval, cnt, reg;
   1566      1.80  macallan 	int r1, g1, b1, r0, g0, b0, fgo, bgo, rv;
   1567      1.70  macallan 	uint8_t *data8;
   1568      1.70  macallan 
   1569      1.70  macallan 	if (sc->sc_mode != WSDISPLAYIO_MODE_EMUL)
   1570      1.70  macallan 		return;
   1571      1.70  macallan 
   1572      1.70  macallan 	if (!CHAR_IN_FONT(c, font))
   1573      1.70  macallan 		return;
   1574      1.70  macallan 
   1575      1.70  macallan 	wi = font->fontwidth;
   1576      1.70  macallan 	he = font->fontheight;
   1577      1.70  macallan 
   1578      1.70  macallan 	bg = ri->ri_devcmap[(attr >> 16) & 0xf];
   1579      1.83  macallan 	fg = ri->ri_devcmap[(attr >> 24) & 0xf];
   1580      1.70  macallan 	x = ri->ri_xorigin + col * wi;
   1581      1.70  macallan 	y = ri->ri_yorigin + row * he;
   1582      1.70  macallan 	if (c == 0x20) {
   1583      1.80  macallan 		cg14_rectfill(sc, x, y, wi, he, bg);
   1584      1.83  macallan 		if (attr & 1)
   1585      1.83  macallan 			cg14_rectfill(sc, x, y + he - 2, wi, 1, fg);
   1586      1.70  macallan 		return;
   1587      1.70  macallan 	}
   1588      1.70  macallan 
   1589      1.70  macallan 	rv = glyphcache_try(&sc->sc_gc, c, x, y, attr);
   1590      1.70  macallan 	if (rv == GC_OK)
   1591      1.70  macallan 		return;
   1592      1.70  macallan 
   1593      1.80  macallan 	addr = sc->sc_fb_paddr + x + stride * y;
   1594      1.70  macallan 	data8 = WSFONT_GLYPH(c, font);
   1595      1.70  macallan 
   1596      1.70  macallan 	/*
   1597      1.70  macallan 	 * we need the RGB colours here, so get offsets into rasops_cmap
   1598      1.70  macallan 	 */
   1599      1.70  macallan 	fgo = ((attr >> 24) & 0xf) * 3;
   1600      1.70  macallan 	bgo = ((attr >> 16) & 0xf) * 3;
   1601      1.70  macallan 
   1602      1.70  macallan 	r0 = rasops_cmap[bgo];
   1603      1.70  macallan 	r1 = rasops_cmap[fgo];
   1604      1.70  macallan 	g0 = rasops_cmap[bgo + 1];
   1605      1.70  macallan 	g1 = rasops_cmap[fgo + 1];
   1606      1.70  macallan 	b0 = rasops_cmap[bgo + 2];
   1607      1.70  macallan 	b1 = rasops_cmap[fgo + 2];
   1608      1.70  macallan #define R3G3B2(r, g, b) ((r & 0xe0) | ((g >> 3) & 0x1c) | (b >> 6))
   1609      1.70  macallan 	bg8 = R3G3B2(r0, g0, b0);
   1610      1.70  macallan 	fg8 = R3G3B2(r1, g1, b1);
   1611      1.70  macallan 
   1612      1.80  macallan 	for (i = 0; i < he; i++) {
   1613      1.80  macallan 		/* calculate one line of pixels */
   1614      1.80  macallan 		for (j = 0; j < wi; j++) {
   1615      1.80  macallan 			aval = *data8;
   1616      1.80  macallan 			if (aval == 0) {
   1617      1.80  macallan 				pixel = bg8;
   1618      1.80  macallan 			} else if (aval == 255) {
   1619      1.80  macallan 				pixel = fg8;
   1620      1.80  macallan 			} else {
   1621      1.80  macallan 				r = aval * r1 + (255 - aval) * r0;
   1622      1.80  macallan 				g = aval * g1 + (255 - aval) * g0;
   1623      1.80  macallan 				b = aval * b1 + (255 - aval) * b0;
   1624      1.80  macallan 				pixel = ((r & 0xe000) >> 8) |
   1625      1.80  macallan 					((g & 0xe000) >> 11) |
   1626      1.80  macallan 					((b & 0xc000) >> 14);
   1627      1.80  macallan 			}
   1628      1.70  macallan 			/*
   1629      1.80  macallan 			 * stick them into SX registers and hope we never have
   1630      1.80  macallan 			 * to deal with fonts more than 120 pixels wide
   1631      1.70  macallan 			 */
   1632      1.80  macallan 			sx_write(sc->sc_sx, SX_QUEUED(j + 8), pixel);
   1633      1.80  macallan 			data8++;
   1634      1.80  macallan 		}
   1635      1.80  macallan 		/* now write them into video memory */
   1636      1.80  macallan 		in = (addr & 3);
   1637      1.80  macallan 		next = addr;
   1638      1.80  macallan 		reg = 8;
   1639      1.80  macallan 		cnt = wi;
   1640      1.80  macallan 		if (in != 0) {
   1641      1.80  macallan 			in = 4 - in;	/* pixels to write until aligned */
   1642      1.80  macallan 			sta(next & ~7, ASI_SX, SX_STB(8, in - 1, next & 7));
   1643      1.80  macallan 			next += in;
   1644      1.80  macallan 			reg = 8 + in;
   1645      1.80  macallan 			cnt -= in;
   1646      1.80  macallan 		}
   1647      1.80  macallan 		q = cnt >> 2;	/* number of writes we can do in quads */
   1648      1.80  macallan 		if (q > 0) {
   1649      1.80  macallan 			sta(next & ~7, ASI_SX, SX_STUQ0(reg, q - 1, next & 7));
   1650      1.80  macallan 			next += (q << 2);
   1651      1.80  macallan 			cnt -= (q << 2);
   1652      1.80  macallan 			reg += (q << 2);
   1653      1.80  macallan 		}
   1654      1.80  macallan 		if (cnt > 0) {
   1655      1.80  macallan 			sta(next & ~7, ASI_SX, SX_STB(reg, cnt - 1, next & 7));
   1656      1.70  macallan 		}
   1657      1.80  macallan 
   1658      1.80  macallan 		addr += stride;
   1659      1.70  macallan 	}
   1660      1.80  macallan 
   1661      1.70  macallan 	if (rv == GC_ADD) {
   1662      1.70  macallan 		glyphcache_add(&sc->sc_gc, c, x, y);
   1663      1.83  macallan 	} else if (attr & 1)
   1664      1.83  macallan 		cg14_rectfill(sc, x, y + he - 2, wi, 1, fg);
   1665      1.83  macallan 
   1666      1.70  macallan }
   1667      1.70  macallan 
   1668      1.70  macallan static void
   1669      1.70  macallan cg14_copycols(void *cookie, int row, int srccol, int dstcol, int ncols)
   1670      1.70  macallan {
   1671      1.70  macallan 	struct rasops_info *ri = cookie;
   1672      1.70  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1673      1.70  macallan 	struct cgfourteen_softc *sc = scr->scr_cookie;
   1674      1.70  macallan 	int32_t xs, xd, y, width, height;
   1675      1.70  macallan 
   1676      1.70  macallan 	if (sc->sc_mode == WSDISPLAYIO_MODE_EMUL) {
   1677      1.70  macallan 		xs = ri->ri_xorigin + ri->ri_font->fontwidth * srccol;
   1678      1.70  macallan 		xd = ri->ri_xorigin + ri->ri_font->fontwidth * dstcol;
   1679      1.70  macallan 		y = ri->ri_yorigin + ri->ri_font->fontheight * row;
   1680      1.70  macallan 		width = ri->ri_font->fontwidth * ncols;
   1681      1.70  macallan 		height = ri->ri_font->fontheight;
   1682      1.70  macallan 		cg14_bitblt(sc, xs, y, xd, y, width, height, 0x0c);
   1683      1.70  macallan 	}
   1684      1.70  macallan }
   1685      1.70  macallan 
   1686      1.70  macallan static void
   1687      1.70  macallan cg14_erasecols(void *cookie, int row, int startcol, int ncols, long fillattr)
   1688      1.70  macallan {
   1689      1.70  macallan 	struct rasops_info *ri = cookie;
   1690      1.70  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1691      1.70  macallan 	struct cgfourteen_softc *sc = scr->scr_cookie;
   1692      1.70  macallan 	int32_t x, y, width, height, fg, bg, ul;
   1693      1.70  macallan 
   1694      1.70  macallan 	if (sc->sc_mode == WSDISPLAYIO_MODE_EMUL) {
   1695      1.70  macallan 		x = ri->ri_xorigin + ri->ri_font->fontwidth * startcol;
   1696      1.70  macallan 		y = ri->ri_yorigin + ri->ri_font->fontheight * row;
   1697      1.70  macallan 		width = ri->ri_font->fontwidth * ncols;
   1698      1.70  macallan 		height = ri->ri_font->fontheight;
   1699      1.70  macallan 		rasops_unpack_attr(fillattr, &fg, &bg, &ul);
   1700      1.70  macallan 
   1701      1.70  macallan 		cg14_rectfill(sc, x, y, width, height, ri->ri_devcmap[bg]);
   1702      1.70  macallan 	}
   1703      1.70  macallan }
   1704      1.70  macallan 
   1705      1.70  macallan static void
   1706      1.70  macallan cg14_copyrows(void *cookie, int srcrow, int dstrow, int nrows)
   1707      1.70  macallan {
   1708      1.70  macallan 	struct rasops_info *ri = cookie;
   1709      1.70  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1710      1.70  macallan 	struct cgfourteen_softc *sc = scr->scr_cookie;
   1711      1.70  macallan 	int32_t x, ys, yd, width, height;
   1712      1.70  macallan 
   1713      1.70  macallan 	if (sc->sc_mode == WSDISPLAYIO_MODE_EMUL) {
   1714      1.70  macallan 		x = ri->ri_xorigin;
   1715      1.70  macallan 		ys = ri->ri_yorigin + ri->ri_font->fontheight * srcrow;
   1716      1.70  macallan 		yd = ri->ri_yorigin + ri->ri_font->fontheight * dstrow;
   1717      1.70  macallan 		width = ri->ri_emuwidth;
   1718      1.70  macallan 		height = ri->ri_font->fontheight * nrows;
   1719      1.70  macallan 		cg14_bitblt(sc, x, ys, x, yd, width, height, 0x0c);
   1720      1.70  macallan 	}
   1721      1.70  macallan }
   1722      1.70  macallan 
   1723      1.70  macallan static void
   1724      1.70  macallan cg14_eraserows(void *cookie, int row, int nrows, long fillattr)
   1725      1.70  macallan {
   1726      1.70  macallan 	struct rasops_info *ri = cookie;
   1727      1.70  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1728      1.70  macallan 	struct cgfourteen_softc *sc = scr->scr_cookie;
   1729      1.70  macallan 	int32_t x, y, width, height, fg, bg, ul;
   1730      1.70  macallan 
   1731      1.70  macallan 	if (sc->sc_mode == WSDISPLAYIO_MODE_EMUL) {
   1732      1.70  macallan 		x = ri->ri_xorigin;
   1733      1.70  macallan 		y = ri->ri_yorigin + ri->ri_font->fontheight * row;
   1734      1.70  macallan 		width = ri->ri_emuwidth;
   1735      1.70  macallan 		height = ri->ri_font->fontheight * nrows;
   1736      1.70  macallan 		rasops_unpack_attr(fillattr, &fg, &bg, &ul);
   1737      1.70  macallan 
   1738      1.70  macallan 		cg14_rectfill(sc, x, y, width, height, ri->ri_devcmap[bg]);
   1739      1.70  macallan 	}
   1740      1.70  macallan }
   1741      1.70  macallan 
   1742      1.70  macallan #endif /* NSX > 0 */
   1743      1.70  macallan 
   1744