p9100.c revision 1.26.8.5       1  1.26.8.5      yamt /*	$NetBSD: p9100.c,v 1.26.8.5 2006/06/26 12:52:27 yamt Exp $ */
      2       1.1        pk 
      3       1.1        pk /*-
      4  1.26.8.1      yamt  * Copyright (c) 1998, 2005, 2006 The NetBSD Foundation, Inc.
      5       1.1        pk  * All rights reserved.
      6       1.1        pk  *
      7       1.1        pk  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1        pk  * by Matt Thomas.
      9       1.1        pk  *
     10       1.1        pk  * Redistribution and use in source and binary forms, with or without
     11       1.1        pk  * modification, are permitted provided that the following conditions
     12       1.1        pk  * are met:
     13       1.1        pk  * 1. Redistributions of source code must retain the above copyright
     14       1.1        pk  *    notice, this list of conditions and the following disclaimer.
     15       1.1        pk  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1        pk  *    notice, this list of conditions and the following disclaimer in the
     17       1.1        pk  *    documentation and/or other materials provided with the distribution.
     18       1.1        pk  * 3. All advertising materials mentioning features or use of this software
     19       1.1        pk  *    must display the following acknowledgement:
     20       1.1        pk  *        This product includes software developed by the NetBSD
     21       1.1        pk  *        Foundation, Inc. and its contributors.
     22       1.1        pk  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.1        pk  *    contributors may be used to endorse or promote products derived
     24       1.1        pk  *    from this software without specific prior written permission.
     25       1.1        pk  *
     26       1.1        pk  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.1        pk  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.1        pk  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.1        pk  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.1        pk  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.1        pk  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.1        pk  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.1        pk  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.1        pk  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.1        pk  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.1        pk  * POSSIBILITY OF SUCH DAMAGE.
     37       1.1        pk  */
     38       1.1        pk 
     39       1.1        pk /*
     40       1.1        pk  * color display (p9100) driver.
     41       1.1        pk  *
     42       1.1        pk  * Does not handle interrupts, even though they can occur.
     43       1.1        pk  *
     44       1.1        pk  * XXX should defer colormap updates to vertical retrace interrupts
     45       1.1        pk  */
     46       1.5     lukem 
     47       1.5     lukem #include <sys/cdefs.h>
     48  1.26.8.5      yamt __KERNEL_RCSID(0, "$NetBSD: p9100.c,v 1.26.8.5 2006/06/26 12:52:27 yamt Exp $");
     49       1.1        pk 
     50       1.1        pk #include <sys/param.h>
     51       1.1        pk #include <sys/systm.h>
     52       1.1        pk #include <sys/buf.h>
     53       1.1        pk #include <sys/device.h>
     54       1.1        pk #include <sys/ioctl.h>
     55       1.1        pk #include <sys/malloc.h>
     56       1.1        pk #include <sys/mman.h>
     57       1.1        pk #include <sys/tty.h>
     58       1.1        pk #include <sys/conf.h>
     59       1.1        pk 
     60       1.1        pk #include <machine/bus.h>
     61       1.1        pk #include <machine/autoconf.h>
     62       1.1        pk 
     63       1.1        pk #include <dev/sun/fbio.h>
     64       1.1        pk #include <dev/sun/fbvar.h>
     65       1.1        pk #include <dev/sun/btreg.h>
     66       1.1        pk #include <dev/sun/btvar.h>
     67      1.21  macallan 
     68       1.1        pk #include <dev/sbus/p9100reg.h>
     69       1.1        pk 
     70       1.1        pk #include <dev/sbus/sbusvar.h>
     71       1.1        pk 
     72      1.21  macallan /*#include <dev/wscons/wsdisplayvar.h>*/
     73      1.21  macallan #include <dev/wscons/wsconsio.h>
     74      1.21  macallan #include <dev/wsfont/wsfont.h>
     75      1.21  macallan #include <dev/rasops/rasops.h>
     76      1.21  macallan 
     77  1.26.8.1      yamt #include <dev/wscons/wsdisplay_vconsvar.h>
     78  1.26.8.1      yamt 
     79      1.21  macallan #include "opt_wsemul.h"
     80      1.22  macallan #include "rasops_glue.h"
     81      1.21  macallan 
     82       1.1        pk #include "tctrl.h"
     83       1.1        pk #if NTCTRL > 0
     84       1.1        pk #include <machine/tctrl.h>
     85       1.1        pk #include <sparc/dev/tctrlvar.h>/*XXX*/
     86       1.1        pk #endif
     87       1.1        pk 
     88      1.24  macallan struct pnozz_cursor {
     89      1.24  macallan 	short	pc_enable;		/* cursor is enabled */
     90      1.24  macallan 	struct	fbcurpos pc_pos;	/* position */
     91      1.24  macallan 	struct	fbcurpos pc_hot;	/* hot-spot */
     92      1.24  macallan 	struct	fbcurpos pc_size;	/* size of mask & image fields */
     93      1.24  macallan 	uint32_t pc_bits[0x100];	/* space for mask & image bits */
     94      1.24  macallan 	unsigned char red[3], green[3];
     95      1.24  macallan 	unsigned char blue[3];		/* cursor palette */
     96      1.24  macallan };
     97      1.24  macallan 
     98       1.1        pk /* per-display variables */
     99       1.1        pk struct p9100_softc {
    100       1.1        pk 	struct device	sc_dev;		/* base device */
    101       1.1        pk 	struct sbusdev	sc_sd;		/* sbus device */
    102       1.1        pk 	struct fbdevice	sc_fb;		/* frame buffer device */
    103      1.24  macallan 
    104       1.1        pk 	bus_space_tag_t	sc_bustag;
    105       1.8        pk 
    106       1.8        pk 	bus_addr_t	sc_ctl_paddr;	/* phys address description */
    107       1.1        pk 	bus_size_t	sc_ctl_psize;	/*   for device mmap() */
    108       1.1        pk 	bus_space_handle_t sc_ctl_memh;	/*   bus space handle */
    109       1.8        pk 
    110       1.8        pk 	bus_addr_t	sc_cmd_paddr;	/* phys address description */
    111       1.1        pk 	bus_size_t	sc_cmd_psize;	/*   for device mmap() */
    112       1.1        pk 	bus_space_handle_t sc_cmd_memh;	/*   bus space handle */
    113       1.8        pk 
    114       1.8        pk 	bus_addr_t	sc_fb_paddr;	/* phys address description */
    115       1.1        pk 	bus_size_t	sc_fb_psize;	/*   for device mmap() */
    116       1.1        pk 	bus_space_handle_t sc_fb_memh;	/*   bus space handle */
    117       1.8        pk 
    118  1.26.8.1      yamt 	volatile uint32_t sc_junk;
    119      1.21  macallan 	uint32_t sc_mono_width;	/* for setup_mono */
    120  1.26.8.5      yamt 
    121      1.21  macallan 	uint32_t sc_width;
    122      1.21  macallan 	uint32_t sc_height;	/* panel width / height */
    123      1.21  macallan 	uint32_t sc_stride;
    124      1.21  macallan 	uint32_t sc_depth;
    125      1.21  macallan 	union	bt_cmap sc_cmap;	/* Brooktree color map */
    126      1.21  macallan 
    127      1.24  macallan 	struct pnozz_cursor sc_cursor;
    128      1.24  macallan 
    129      1.21  macallan 	int sc_mode;
    130  1.26.8.1      yamt 	int sc_video, sc_powerstate;
    131      1.21  macallan 	uint32_t sc_bg;
    132  1.26.8.1      yamt 	volatile uint32_t sc_last_offset;
    133  1.26.8.1      yamt 	struct vcons_data vd;
    134      1.21  macallan };
    135      1.21  macallan 
    136      1.21  macallan 
    137  1.26.8.1      yamt static struct vcons_screen p9100_console_screen;
    138      1.21  macallan 
    139      1.21  macallan extern const u_char rasops_cmap[768];
    140      1.21  macallan 
    141      1.21  macallan struct wsscreen_descr p9100_defscreendesc = {
    142      1.21  macallan 	"default",
    143      1.21  macallan 	0, 0,
    144      1.21  macallan 	NULL,
    145      1.21  macallan 	8, 16,
    146      1.21  macallan 	WSSCREEN_WSCOLORS,
    147      1.21  macallan };
    148       1.1        pk 
    149      1.21  macallan const struct wsscreen_descr *_p9100_scrlist[] = {
    150      1.21  macallan 	&p9100_defscreendesc,
    151      1.21  macallan 	/* XXX other formats, graphics screen? */
    152       1.1        pk };
    153       1.1        pk 
    154      1.21  macallan struct wsscreen_list p9100_screenlist = {
    155      1.21  macallan 	sizeof(_p9100_scrlist) / sizeof(struct wsscreen_descr *), _p9100_scrlist
    156      1.21  macallan };
    157       1.1        pk 
    158       1.1        pk /* autoconfiguration driver */
    159       1.1        pk static int	p9100_sbus_match(struct device *, struct cfdata *, void *);
    160       1.1        pk static void	p9100_sbus_attach(struct device *, struct device *, void *);
    161       1.1        pk 
    162       1.1        pk static void	p9100unblank(struct device *);
    163       1.1        pk static void	p9100_shutdown(void *);
    164       1.1        pk 
    165      1.12   thorpej CFATTACH_DECL(pnozz, sizeof(struct p9100_softc),
    166      1.13   thorpej     p9100_sbus_match, p9100_sbus_attach, NULL, NULL);
    167       1.1        pk 
    168       1.1        pk extern struct cfdriver pnozz_cd;
    169       1.1        pk 
    170  1.26.8.1      yamt static dev_type_open(p9100open);
    171  1.26.8.1      yamt static dev_type_ioctl(p9100ioctl);
    172  1.26.8.1      yamt static dev_type_mmap(p9100mmap);
    173      1.10   gehenna 
    174      1.10   gehenna const struct cdevsw pnozz_cdevsw = {
    175      1.10   gehenna 	p9100open, nullclose, noread, nowrite, p9100ioctl,
    176      1.14  jdolecek 	nostop, notty, nopoll, p9100mmap, nokqfilter,
    177      1.10   gehenna };
    178      1.10   gehenna 
    179       1.1        pk /* frame buffer generic driver */
    180       1.1        pk static struct fbdriver p9100fbdriver = {
    181      1.10   gehenna 	p9100unblank, p9100open, nullclose, p9100ioctl, nopoll,
    182      1.14  jdolecek 	p9100mmap, nokqfilter
    183       1.1        pk };
    184       1.1        pk 
    185      1.21  macallan static void	p9100loadcmap(struct p9100_softc *, int, int);
    186      1.21  macallan static void	p9100_set_video(struct p9100_softc *, int);
    187      1.21  macallan static int	p9100_get_video(struct p9100_softc *);
    188       1.1        pk static uint32_t p9100_ctl_read_4(struct p9100_softc *, bus_size_t);
    189      1.21  macallan static void	p9100_ctl_write_4(struct p9100_softc *, bus_size_t, uint32_t);
    190  1.26.8.1      yamt static uint8_t	p9100_ramdac_read(struct p9100_softc *, bus_size_t);
    191  1.26.8.1      yamt static void	p9100_ramdac_write(struct p9100_softc *, bus_size_t, uint8_t);
    192  1.26.8.1      yamt 
    193  1.26.8.1      yamt static uint8_t	p9100_ramdac_read_ctl(struct p9100_softc *, int);
    194  1.26.8.1      yamt static void	p9100_ramdac_write_ctl(struct p9100_softc *, int, uint8_t);
    195      1.21  macallan 
    196      1.21  macallan static void 	p9100_init_engine(struct p9100_softc *);
    197  1.26.8.1      yamt 
    198  1.26.8.1      yamt #if NWSDISPLAY > 0
    199  1.26.8.1      yamt static void	p9100_sync(struct p9100_softc *);
    200  1.26.8.1      yamt static void	p9100_bitblt(void *, int, int, int, int, int, int, uint32_t);
    201  1.26.8.1      yamt static void 	p9100_rectfill(void *, int, int, int, int, uint32_t);
    202  1.26.8.1      yamt static void	p9100_clearscreen(struct p9100_softc *);
    203  1.26.8.1      yamt 
    204  1.26.8.5      yamt static void	p9100_setup_mono(struct p9100_softc *, int, int, int, int,
    205  1.26.8.5      yamt 		    uint32_t, uint32_t);
    206  1.26.8.1      yamt static void	p9100_feed_line(struct p9100_softc *, int, uint8_t *);
    207      1.21  macallan static void	p9100_set_color_reg(struct p9100_softc *, int, int32_t);
    208      1.21  macallan 
    209  1.26.8.1      yamt static void	p9100_copycols(void *, int, int, int, int);
    210  1.26.8.1      yamt static void	p9100_erasecols(void *, int, int, int, long);
    211  1.26.8.1      yamt static void	p9100_copyrows(void *, int, int, int);
    212  1.26.8.1      yamt static void	p9100_eraserows(void *, int, int, long);
    213  1.26.8.1      yamt /*static int	p9100_mapchar(void *, int, u_int *);*/
    214  1.26.8.1      yamt static void	p9100_putchar(void *, int, int, u_int, long);
    215  1.26.8.1      yamt static void	p9100_cursor(void *, int, int, int);
    216  1.26.8.1      yamt static int	p9100_allocattr(void *, int, int, int, long *);
    217  1.26.8.1      yamt 
    218  1.26.8.1      yamt /*static void	p9100_scroll(void *, void *, int);*/
    219  1.26.8.1      yamt 
    220  1.26.8.1      yamt static int	p9100_putcmap(struct p9100_softc *, struct wsdisplay_cmap *);
    221  1.26.8.1      yamt static int 	p9100_getcmap(struct p9100_softc *, struct wsdisplay_cmap *);
    222  1.26.8.4      yamt static int	p9100_ioctl(void *, void *, u_long, caddr_t, int, struct lwp *);
    223  1.26.8.4      yamt static paddr_t	p9100_mmap(void *, void *, off_t, int);
    224  1.26.8.5      yamt 
    225  1.26.8.1      yamt /*static int	p9100_load_font(void *, void *, struct wsdisplay_font *);*/
    226      1.21  macallan 
    227  1.26.8.5      yamt static void	p9100_init_screen(void *, struct vcons_screen *, int,
    228      1.21  macallan 	    long *);
    229  1.26.8.1      yamt #endif
    230  1.26.8.1      yamt 
    231  1.26.8.1      yamt static void	p9100_init_cursor(struct p9100_softc *);
    232      1.21  macallan 
    233  1.26.8.1      yamt static void	p9100_set_fbcursor(struct p9100_softc *);
    234  1.26.8.1      yamt static void	p9100_setcursorcmap(struct p9100_softc *);
    235  1.26.8.1      yamt static void	p9100_loadcursor(struct p9100_softc *);
    236      1.21  macallan 
    237  1.26.8.1      yamt static int	p9100_intr(void *);
    238  1.26.8.1      yamt 
    239  1.26.8.1      yamt /* power management stuff */
    240  1.26.8.1      yamt static void p9100_power_hook(int, void *);
    241  1.26.8.1      yamt 
    242  1.26.8.1      yamt static void p9100_set_extvga(void *, int);
    243  1.26.8.1      yamt 
    244  1.26.8.1      yamt #if NWSDISPLAY > 0
    245      1.21  macallan struct wsdisplay_accessops p9100_accessops = {
    246      1.21  macallan 	p9100_ioctl,
    247      1.21  macallan 	p9100_mmap,
    248  1.26.8.1      yamt 	NULL,	/* vcons_alloc_screen */
    249  1.26.8.1      yamt 	NULL,	/* vcons_free_screen */
    250  1.26.8.1      yamt 	NULL,	/* vcons_show_screen */
    251      1.21  macallan 	NULL,	/* load_font */
    252      1.21  macallan 	NULL,	/* polls */
    253      1.21  macallan 	NULL,	/* scroll */
    254      1.21  macallan };
    255  1.26.8.1      yamt #endif
    256  1.26.8.1      yamt 
    257  1.26.8.1      yamt #define PNOZZ_LATCH(sc, off) if(sc->sc_last_offset == (off & 0xffffff80)) { \
    258  1.26.8.1      yamt 		sc->sc_junk = bus_space_read_4(sc->sc_bustag, sc->sc_fb_memh, \
    259  1.26.8.1      yamt 		    off); \
    260  1.26.8.1      yamt 		sc->sc_last_offset = off & 0xffffff80; }
    261       1.1        pk 
    262       1.1        pk /*
    263       1.1        pk  * Match a p9100.
    264       1.1        pk  */
    265       1.1        pk static int
    266       1.1        pk p9100_sbus_match(struct device *parent, struct cfdata *cf, void *aux)
    267       1.1        pk {
    268       1.1        pk 	struct sbus_attach_args *sa = aux;
    269       1.1        pk 
    270       1.1        pk 	return (strcmp("p9100", sa->sa_name) == 0);
    271       1.1        pk }
    272       1.1        pk 
    273       1.1        pk 
    274       1.1        pk /*
    275       1.1        pk  * Attach a display.  We need to notice if it is the console, too.
    276       1.1        pk  */
    277       1.1        pk static void
    278       1.1        pk p9100_sbus_attach(struct device *parent, struct device *self, void *args)
    279       1.1        pk {
    280       1.1        pk 	struct p9100_softc *sc = (struct p9100_softc *)self;
    281       1.1        pk 	struct sbus_attach_args *sa = args;
    282       1.1        pk 	struct fbdevice *fb = &sc->sc_fb;
    283       1.1        pk 	int isconsole;
    284       1.1        pk 	int node;
    285      1.21  macallan 	int i, j;
    286  1.26.8.1      yamt 	uint8_t ver;
    287      1.21  macallan 
    288      1.21  macallan #if NWSDISPLAY > 0
    289      1.21  macallan 	struct wsemuldisplaydev_attach_args aa;
    290      1.21  macallan 	struct rasops_info *ri;
    291      1.21  macallan 	unsigned long defattr;
    292      1.21  macallan #endif
    293       1.1        pk 
    294  1.26.8.1      yamt 	sc->sc_last_offset = 0xffffffff;
    295  1.26.8.1      yamt 
    296       1.1        pk 	/* Remember cookies for p9100_mmap() */
    297       1.1        pk 	sc->sc_bustag = sa->sa_bustag;
    298      1.20     perry 	sc->sc_ctl_paddr = sbus_bus_addr(sa->sa_bustag,
    299       1.9   thorpej 		sa->sa_reg[0].oa_space, sa->sa_reg[0].oa_base);
    300      1.21  macallan 	sc->sc_ctl_psize = 0x8000;/*(bus_size_t)sa->sa_reg[0].oa_size;*/
    301       1.3       eeh 
    302      1.20     perry 	sc->sc_cmd_paddr = sbus_bus_addr(sa->sa_bustag,
    303       1.9   thorpej 		sa->sa_reg[1].oa_space, sa->sa_reg[1].oa_base);
    304       1.9   thorpej 	sc->sc_cmd_psize = (bus_size_t)sa->sa_reg[1].oa_size;
    305       1.3       eeh 
    306      1.20     perry 	sc->sc_fb_paddr = sbus_bus_addr(sa->sa_bustag,
    307       1.9   thorpej 		sa->sa_reg[2].oa_space, sa->sa_reg[2].oa_base);
    308       1.9   thorpej 	sc->sc_fb_psize = (bus_size_t)sa->sa_reg[2].oa_size;
    309       1.1        pk 
    310       1.1        pk 	fb->fb_driver = &p9100fbdriver;
    311       1.1        pk 	fb->fb_device = &sc->sc_dev;
    312  1.26.8.2      yamt 	fb->fb_flags = device_cfdata(&sc->sc_dev)->cf_flags & FB_USERMASK;
    313      1.21  macallan #ifdef PNOZZ_EMUL_CG3
    314       1.1        pk 	fb->fb_type.fb_type = FBTYPE_SUN3COLOR;
    315      1.21  macallan #else
    316      1.21  macallan 	fb->fb_type.fb_type = FBTYPE_P9100;
    317      1.21  macallan #endif
    318       1.7     cyber 	fb->fb_pixels = NULL;
    319  1.26.8.5      yamt 
    320      1.21  macallan 	sc->sc_mode = WSDISPLAYIO_MODE_EMUL;
    321       1.1        pk 
    322       1.1        pk 	node = sa->sa_node;
    323       1.7     cyber 	isconsole = fb_is_console(node);
    324       1.7     cyber 	if (!isconsole) {
    325  1.26.8.5      yamt 		printf("\n%s: fatal error: PROM didn't configure device\n",
    326      1.21  macallan 		    self->dv_xname);
    327       1.7     cyber 		return;
    328       1.7     cyber 	}
    329       1.1        pk 
    330       1.1        pk 	/*
    331       1.1        pk 	 * When the ROM has mapped in a p9100 display, the address
    332       1.1        pk 	 * maps only the video RAM, so in any case we have to map the
    333       1.1        pk 	 * registers ourselves.  We only need the video RAM if we are
    334       1.1        pk 	 * going to print characters via rconsole.
    335       1.1        pk 	 */
    336       1.8        pk 	if (sbus_bus_map(sc->sc_bustag,
    337       1.9   thorpej 			 sa->sa_reg[0].oa_space,
    338       1.9   thorpej 			 sa->sa_reg[0].oa_base,
    339  1.26.8.5      yamt 			 /*
    340  1.26.8.5      yamt 			  * XXX for some reason the SBus resources don't cover
    341  1.26.8.5      yamt 			  * all registers, so we just map what we need
    342      1.21  macallan 			  */
    343      1.21  macallan 			 /*sc->sc_ctl_psize*/ 0x8000,
    344      1.24  macallan 			 /*BUS_SPACE_MAP_LINEAR*/0, &sc->sc_ctl_memh) != 0) {
    345       1.1        pk 		printf("%s: cannot map control registers\n", self->dv_xname);
    346       1.1        pk 		return;
    347       1.1        pk 	}
    348       1.1        pk 
    349       1.1        pk 	if (sa->sa_npromvaddrs != 0)
    350       1.1        pk 		fb->fb_pixels = (caddr_t)sa->sa_promvaddrs[0];
    351       1.7     cyber 
    352       1.7     cyber 	if (fb->fb_pixels == NULL) {
    353       1.8        pk 		if (sbus_bus_map(sc->sc_bustag,
    354       1.9   thorpej 				sa->sa_reg[2].oa_space,
    355       1.9   thorpej 				sa->sa_reg[2].oa_base,
    356       1.8        pk 				sc->sc_fb_psize,
    357       1.8        pk 				BUS_SPACE_MAP_LINEAR, &sc->sc_fb_memh) != 0) {
    358       1.1        pk 			printf("%s: cannot map framebuffer\n", self->dv_xname);
    359       1.1        pk 			return;
    360       1.1        pk 		}
    361       1.1        pk 		fb->fb_pixels = (char *)sc->sc_fb_memh;
    362       1.1        pk 	} else {
    363       1.1        pk 		sc->sc_fb_memh = (bus_space_handle_t) fb->fb_pixels;
    364       1.1        pk 	}
    365       1.1        pk 
    366       1.1        pk 	i = p9100_ctl_read_4(sc, 0x0004);
    367       1.1        pk 	switch ((i >> 26) & 7) {
    368       1.1        pk 	    case 5: fb->fb_type.fb_depth = 32; break;
    369       1.1        pk 	    case 7: fb->fb_type.fb_depth = 24; break;
    370       1.1        pk 	    case 3: fb->fb_type.fb_depth = 16; break;
    371       1.1        pk 	    case 2: fb->fb_type.fb_depth = 8; break;
    372       1.1        pk 	    default: {
    373       1.1        pk 		panic("pnozz: can't determine screen depth (0x%02x)", i);
    374       1.1        pk 	    }
    375       1.1        pk 	}
    376      1.21  macallan 	sc->sc_depth = (fb->fb_type.fb_depth >> 3);
    377  1.26.8.5      yamt 
    378      1.21  macallan 	/* XXX for some reason I get a kernel trap with this */
    379      1.21  macallan 	sc->sc_width = prom_getpropint(node, "width", 800);
    380      1.21  macallan 	sc->sc_height = prom_getpropint(node, "height", 600);
    381  1.26.8.5      yamt 
    382  1.26.8.5      yamt 	sc->sc_stride = prom_getpropint(node, "linebytes", sc->sc_width *
    383      1.21  macallan 	    (fb->fb_type.fb_depth >> 3));
    384      1.21  macallan 
    385  1.26.8.1      yamt 	/* check the RAMDAC */
    386  1.26.8.1      yamt 	ver = p9100_ramdac_read_ctl(sc, DAC_VERSION);
    387  1.26.8.5      yamt 
    388      1.21  macallan 	p9100_init_engine(sc);
    389  1.26.8.5      yamt 
    390  1.26.8.5      yamt 	fb_setsize_obp(fb, fb->fb_type.fb_depth, sc->sc_width, sc->sc_height,
    391      1.21  macallan 	    node);
    392       1.1        pk 
    393       1.1        pk 	sbus_establish(&sc->sc_sd, &sc->sc_dev);
    394  1.26.8.1      yamt 	bus_intr_establish(sc->sc_bustag, sa->sa_pri, IPL_BIO,
    395  1.26.8.1      yamt 	    p9100_intr, sc);
    396  1.26.8.5      yamt 
    397       1.1        pk 	fb->fb_type.fb_size = fb->fb_type.fb_height * fb->fb_linebytes;
    398  1.26.8.1      yamt 	printf(": rev %d / %x, %dx%d, depth %d mem %x",
    399  1.26.8.1      yamt 	       (i & 7), ver, fb->fb_type.fb_width, fb->fb_type.fb_height,
    400      1.21  macallan 	       fb->fb_type.fb_depth, (unsigned int)sc->sc_fb_psize);
    401       1.1        pk 
    402      1.19        pk 	fb->fb_type.fb_cmsize = prom_getpropint(node, "cmsize", 256);
    403       1.1        pk 	if ((1 << fb->fb_type.fb_depth) != fb->fb_type.fb_cmsize)
    404       1.1        pk 		printf(", %d entry colormap", fb->fb_type.fb_cmsize);
    405       1.1        pk 
    406       1.1        pk 	/* Initialize the default color map. */
    407      1.21  macallan 	/*bt_initcmap(&sc->sc_cmap, 256);*/
    408      1.21  macallan 	j = 0;
    409      1.21  macallan 	for (i = 0; i < 256; i++) {
    410      1.21  macallan 		sc->sc_cmap.cm_map[i][0] = rasops_cmap[j];
    411      1.21  macallan 		j++;
    412      1.21  macallan 		sc->sc_cmap.cm_map[i][1] = rasops_cmap[j];
    413      1.21  macallan 		j++;
    414      1.21  macallan 		sc->sc_cmap.cm_map[i][2] = rasops_cmap[j];
    415      1.21  macallan 		j++;
    416      1.21  macallan 	}
    417       1.1        pk 	p9100loadcmap(sc, 0, 256);
    418       1.1        pk 
    419       1.1        pk 	/* make sure we are not blanked */
    420       1.7     cyber 	if (isconsole)
    421       1.7     cyber 		p9100_set_video(sc, 1);
    422       1.1        pk 
    423       1.1        pk 	if (shutdownhook_establish(p9100_shutdown, sc) == NULL) {
    424       1.1        pk 		panic("%s: could not establish shutdown hook",
    425       1.1        pk 		      sc->sc_dev.dv_xname);
    426       1.1        pk 	}
    427       1.1        pk 
    428       1.1        pk 	if (isconsole) {
    429       1.1        pk 		printf(" (console)\n");
    430       1.1        pk #ifdef RASTERCONSOLE
    431      1.21  macallan 		/*p9100loadcmap(sc, 255, 1);*/
    432       1.1        pk 		fbrcons_init(fb);
    433       1.1        pk #endif
    434       1.1        pk 	} else
    435       1.1        pk 		printf("\n");
    436  1.26.8.5      yamt 
    437      1.21  macallan #if NWSDISPLAY > 0
    438      1.21  macallan 	wsfont_init();
    439  1.26.8.5      yamt 
    440  1.26.8.1      yamt 	vcons_init(&sc->vd, sc, &p9100_defscreendesc, &p9100_accessops);
    441  1.26.8.1      yamt 	sc->vd.init_screen = p9100_init_screen;
    442  1.26.8.5      yamt 
    443  1.26.8.1      yamt 	vcons_init_screen(&sc->vd, &p9100_console_screen, 1, &defattr);
    444  1.26.8.1      yamt 	p9100_console_screen.scr_flags |= VCONS_SCREEN_IS_STATIC;
    445      1.21  macallan 
    446  1.26.8.1      yamt 	sc->sc_bg = (defattr >> 16) & 0xff;
    447  1.26.8.1      yamt 	p9100_clearscreen(sc);
    448  1.26.8.5      yamt 
    449  1.26.8.1      yamt 	ri = &p9100_console_screen.scr_ri;
    450      1.21  macallan 
    451      1.21  macallan 	p9100_defscreendesc.nrows = ri->ri_rows;
    452      1.21  macallan 	p9100_defscreendesc.ncols = ri->ri_cols;
    453      1.21  macallan 	p9100_defscreendesc.textops = &ri->ri_ops;
    454      1.21  macallan 	p9100_defscreendesc.capabilities = ri->ri_caps;
    455  1.26.8.5      yamt 
    456      1.21  macallan 	if(isconsole) {
    457      1.21  macallan 		wsdisplay_cnattach(&p9100_defscreendesc, ri, 0, 0, defattr);
    458      1.21  macallan 	}
    459      1.21  macallan 
    460      1.21  macallan 	aa.console = isconsole;
    461      1.21  macallan 	aa.scrdata = &p9100_screenlist;
    462      1.21  macallan 	aa.accessops = &p9100_accessops;
    463  1.26.8.1      yamt 	aa.accesscookie = &sc->vd;
    464       1.1        pk 
    465      1.21  macallan 	config_found(self, &aa, wsemuldisplaydevprint);
    466      1.21  macallan #endif
    467  1.26.8.1      yamt 	/* cursor sprite handling */
    468  1.26.8.1      yamt 	p9100_init_cursor(sc);
    469  1.26.8.1      yamt 
    470      1.21  macallan 	/* attach the fb */
    471       1.1        pk 	fb_attach(fb, isconsole);
    472      1.21  macallan 
    473  1.26.8.1      yamt 	/* register with power management */
    474  1.26.8.1      yamt 	sc->sc_video = 1;
    475  1.26.8.1      yamt 	sc->sc_powerstate = PWR_RESUME;
    476  1.26.8.1      yamt 	powerhook_establish(p9100_power_hook, sc);
    477  1.26.8.5      yamt 
    478  1.26.8.1      yamt #if NTCTRL > 0
    479  1.26.8.1      yamt 	/* register callback for external monitor status change */
    480  1.26.8.1      yamt 	tadpole_register_callback(p9100_set_extvga, sc);
    481      1.21  macallan #endif
    482       1.1        pk }
    483       1.1        pk 
    484       1.1        pk static void
    485       1.1        pk p9100_shutdown(arg)
    486       1.1        pk 	void *arg;
    487       1.1        pk {
    488       1.1        pk 	struct p9100_softc *sc = arg;
    489  1.26.8.5      yamt 
    490       1.2       mrg #ifdef RASTERCONSOLE
    491       1.1        pk 	sc->sc_cmap.cm_map[0][0] = 0xff;
    492       1.1        pk 	sc->sc_cmap.cm_map[0][1] = 0xff;
    493       1.1        pk 	sc->sc_cmap.cm_map[0][2] = 0xff;
    494       1.1        pk 	sc->sc_cmap.cm_map[1][0] = 0;
    495       1.1        pk 	sc->sc_cmap.cm_map[1][1] = 0;
    496      1.21  macallan 	sc->sc_cmap.cm_map[1][2] = 0x00;
    497       1.1        pk 	p9100loadcmap(sc, 0, 2);
    498       1.1        pk 	sc->sc_cmap.cm_map[255][0] = 0;
    499       1.1        pk 	sc->sc_cmap.cm_map[255][1] = 0;
    500       1.1        pk 	sc->sc_cmap.cm_map[255][2] = 0;
    501       1.1        pk 	p9100loadcmap(sc, 255, 1);
    502       1.1        pk #endif
    503       1.1        pk 	p9100_set_video(sc, 1);
    504       1.1        pk }
    505       1.1        pk 
    506       1.1        pk int
    507      1.25  christos p9100open(dev_t dev, int flags, int mode, struct lwp *l)
    508       1.1        pk {
    509       1.1        pk 	int unit = minor(dev);
    510       1.1        pk 
    511       1.1        pk 	if (unit >= pnozz_cd.cd_ndevs || pnozz_cd.cd_devs[unit] == NULL)
    512       1.1        pk 		return (ENXIO);
    513       1.1        pk 	return (0);
    514       1.1        pk }
    515       1.1        pk 
    516       1.1        pk int
    517      1.25  christos p9100ioctl(dev_t dev, u_long cmd, caddr_t data, int flags, struct lwp *l)
    518       1.1        pk {
    519       1.1        pk 	struct p9100_softc *sc = pnozz_cd.cd_devs[minor(dev)];
    520       1.1        pk 	struct fbgattr *fba;
    521      1.24  macallan 	int error, v;
    522       1.1        pk 
    523       1.1        pk 	switch (cmd) {
    524       1.1        pk 
    525       1.1        pk 	case FBIOGTYPE:
    526       1.1        pk 		*(struct fbtype *)data = sc->sc_fb.fb_type;
    527       1.1        pk 		break;
    528       1.1        pk 
    529       1.1        pk 	case FBIOGATTR:
    530       1.1        pk 		fba = (struct fbgattr *)data;
    531       1.1        pk 		fba->real_type = sc->sc_fb.fb_type.fb_type;
    532       1.1        pk 		fba->owner = 0;		/* XXX ??? */
    533       1.1        pk 		fba->fbtype = sc->sc_fb.fb_type;
    534       1.1        pk 		fba->sattr.flags = 0;
    535       1.1        pk 		fba->sattr.emu_type = sc->sc_fb.fb_type.fb_type;
    536       1.1        pk 		fba->sattr.dev_specific[0] = -1;
    537       1.1        pk 		fba->emu_types[0] = sc->sc_fb.fb_type.fb_type;
    538       1.1        pk 		fba->emu_types[1] = -1;
    539       1.1        pk 		break;
    540       1.1        pk 
    541       1.1        pk 	case FBIOGETCMAP:
    542       1.1        pk #define p ((struct fbcmap *)data)
    543       1.1        pk 		return (bt_getcmap(p, &sc->sc_cmap, 256, 1));
    544       1.1        pk 
    545       1.1        pk 	case FBIOPUTCMAP:
    546       1.1        pk 		/* copy to software map */
    547       1.1        pk 		error = bt_putcmap(p, &sc->sc_cmap, 256, 1);
    548       1.1        pk 		if (error)
    549       1.1        pk 			return (error);
    550       1.1        pk 		/* now blast them into the chip */
    551       1.1        pk 		/* XXX should use retrace interrupt */
    552       1.1        pk 		p9100loadcmap(sc, p->index, p->count);
    553       1.1        pk #undef p
    554       1.1        pk 		break;
    555       1.1        pk 
    556       1.1        pk 	case FBIOGVIDEO:
    557       1.1        pk 		*(int *)data = p9100_get_video(sc);
    558       1.1        pk 		break;
    559       1.1        pk 
    560       1.1        pk 	case FBIOSVIDEO:
    561       1.1        pk 		p9100_set_video(sc, *(int *)data);
    562       1.1        pk 		break;
    563       1.1        pk 
    564      1.24  macallan /* these are for both FBIOSCURSOR and FBIOGCURSOR */
    565      1.24  macallan #define p ((struct fbcursor *)data)
    566      1.24  macallan #define pc (&sc->sc_cursor)
    567      1.24  macallan 
    568      1.24  macallan 	case FBIOGCURSOR:
    569      1.24  macallan 		p->set = FB_CUR_SETALL;	/* close enough, anyway */
    570      1.24  macallan 		p->enable = pc->pc_enable;
    571      1.24  macallan 		p->pos = pc->pc_pos;
    572      1.24  macallan 		p->hot = pc->pc_hot;
    573      1.24  macallan 		p->size = pc->pc_size;
    574      1.24  macallan 
    575      1.24  macallan 		if (p->image != NULL) {
    576      1.24  macallan 			error = copyout(pc->pc_bits, p->image, 0x200);
    577      1.24  macallan 			if (error)
    578      1.24  macallan 				return error;
    579      1.24  macallan 			error = copyout(&pc->pc_bits[0x80], p->mask, 0x200);
    580      1.24  macallan 			if (error)
    581      1.24  macallan 				return error;
    582      1.24  macallan 		}
    583  1.26.8.5      yamt 
    584      1.24  macallan 		p->cmap.index = 0;
    585      1.24  macallan 		p->cmap.count = 3;
    586      1.24  macallan 		if (p->cmap.red != NULL) {
    587      1.24  macallan 			copyout(pc->red, p->cmap.red, 3);
    588      1.24  macallan 			copyout(pc->green, p->cmap.green, 3);
    589      1.24  macallan 			copyout(pc->blue, p->cmap.blue, 3);
    590      1.24  macallan 		}
    591      1.24  macallan 		break;
    592      1.24  macallan 
    593      1.24  macallan 	case FBIOSCURSOR:
    594      1.24  macallan 	{
    595      1.24  macallan 		int count;
    596      1.24  macallan 		uint32_t image[0x80], mask[0x80];
    597      1.24  macallan 		uint8_t red[3], green[3], blue[3];
    598  1.26.8.5      yamt 
    599      1.24  macallan 		v = p->set;
    600      1.24  macallan 		if (v & FB_CUR_SETCMAP) {
    601      1.24  macallan 			error = copyin(p->cmap.red, red, 3);
    602      1.24  macallan 			error |= copyin(p->cmap.green, green, 3);
    603      1.24  macallan 			error |= copyin(p->cmap.blue, blue, 3);
    604      1.24  macallan 			if (error)
    605      1.24  macallan 				return error;
    606      1.24  macallan 		}
    607      1.24  macallan 		if (v & FB_CUR_SETSHAPE) {
    608      1.24  macallan 			if (p->size.x > 64 || p->size.y > 64)
    609      1.24  macallan 				return EINVAL;
    610      1.24  macallan 			memset(&mask, 0, 0x200);
    611      1.24  macallan 			memset(&image, 0, 0x200);
    612      1.24  macallan 			count = p->size.y * 8;
    613      1.24  macallan 			error = copyin(p->image, image, count);
    614      1.24  macallan 			if (error)
    615      1.24  macallan 				return error;
    616      1.24  macallan 			error = copyin(p->mask, mask, count);
    617      1.24  macallan 			if (error)
    618      1.24  macallan 				return error;
    619      1.24  macallan 		}
    620      1.24  macallan 
    621      1.24  macallan 		/* parameters are OK; do it */
    622      1.24  macallan 		if (v & (FB_CUR_SETCUR | FB_CUR_SETPOS | FB_CUR_SETHOT)) {
    623      1.24  macallan 			if (v & FB_CUR_SETCUR)
    624      1.24  macallan 				pc->pc_enable = p->enable;
    625      1.24  macallan 			if (v & FB_CUR_SETPOS)
    626      1.24  macallan 				pc->pc_pos = p->pos;
    627      1.24  macallan 			if (v & FB_CUR_SETHOT)
    628      1.24  macallan 				pc->pc_hot = p->hot;
    629      1.24  macallan 			p9100_set_fbcursor(sc);
    630      1.24  macallan 		}
    631  1.26.8.5      yamt 
    632      1.24  macallan 		if (v & FB_CUR_SETCMAP) {
    633      1.24  macallan 			memcpy(pc->red, red, 3);
    634      1.24  macallan 			memcpy(pc->green, green, 3);
    635      1.24  macallan 			memcpy(pc->blue, blue, 3);
    636      1.24  macallan 			p9100_setcursorcmap(sc);
    637      1.24  macallan 		}
    638  1.26.8.5      yamt 
    639      1.24  macallan 		if (v & FB_CUR_SETSHAPE) {
    640      1.24  macallan 			memcpy(pc->pc_bits, image, 0x200);
    641      1.24  macallan 			memcpy(&pc->pc_bits[0x80], mask, 0x200);
    642      1.24  macallan 			p9100_loadcursor(sc);
    643      1.24  macallan 		}
    644      1.24  macallan 	}
    645      1.24  macallan 	break;
    646      1.24  macallan 
    647      1.24  macallan #undef p
    648      1.24  macallan #undef cc
    649      1.24  macallan 
    650      1.24  macallan 	case FBIOGCURPOS:
    651      1.24  macallan 		*(struct fbcurpos *)data = sc->sc_cursor.pc_pos;
    652      1.24  macallan 		break;
    653      1.24  macallan 
    654      1.24  macallan 	case FBIOSCURPOS:
    655      1.24  macallan 		sc->sc_cursor.pc_pos = *(struct fbcurpos *)data;
    656      1.24  macallan 		p9100_set_fbcursor(sc);
    657      1.24  macallan 		break;
    658      1.24  macallan 
    659      1.24  macallan 	case FBIOGCURMAX:
    660      1.24  macallan 		/* max cursor size is 64x64 */
    661      1.24  macallan 		((struct fbcurpos *)data)->x = 64;
    662      1.24  macallan 		((struct fbcurpos *)data)->y = 64;
    663      1.24  macallan 		break;
    664      1.24  macallan 
    665       1.1        pk 	default:
    666       1.1        pk 		return (ENOTTY);
    667       1.1        pk 	}
    668       1.1        pk 	return (0);
    669       1.1        pk }
    670       1.1        pk 
    671       1.1        pk static uint32_t
    672       1.1        pk p9100_ctl_read_4(struct p9100_softc *sc, bus_size_t off)
    673       1.1        pk {
    674  1.26.8.1      yamt 
    675  1.26.8.1      yamt 	PNOZZ_LATCH(sc, off);
    676       1.1        pk 	return bus_space_read_4(sc->sc_bustag, sc->sc_ctl_memh, off);
    677       1.1        pk }
    678       1.1        pk 
    679       1.1        pk static void
    680       1.1        pk p9100_ctl_write_4(struct p9100_softc *sc, bus_size_t off, uint32_t v)
    681       1.1        pk {
    682  1.26.8.1      yamt 
    683  1.26.8.1      yamt 	PNOZZ_LATCH(sc, off);
    684       1.1        pk 	bus_space_write_4(sc->sc_bustag, sc->sc_ctl_memh, off, v);
    685       1.1        pk }
    686       1.1        pk 
    687  1.26.8.1      yamt /* initialize the drawing engine */
    688  1.26.8.1      yamt static void
    689  1.26.8.1      yamt p9100_init_engine(struct p9100_softc *sc)
    690  1.26.8.1      yamt {
    691  1.26.8.1      yamt 	/* reset clipping rectangles */
    692  1.26.8.5      yamt 	uint32_t rmax = ((sc->sc_width & 0x3fff) << 16) |
    693  1.26.8.1      yamt 	    (sc->sc_height & 0x3fff);
    694  1.26.8.1      yamt 
    695  1.26.8.1      yamt 	sc->sc_last_offset = 0xffffffff;
    696  1.26.8.1      yamt 
    697  1.26.8.1      yamt 	p9100_ctl_write_4(sc, WINDOW_OFFSET, 0);
    698  1.26.8.1      yamt 	p9100_ctl_write_4(sc, WINDOW_MIN, 0);
    699  1.26.8.1      yamt 	p9100_ctl_write_4(sc, WINDOW_MAX, rmax);
    700  1.26.8.1      yamt 	p9100_ctl_write_4(sc, BYTE_CLIP_MIN, 0);
    701  1.26.8.1      yamt 	p9100_ctl_write_4(sc, BYTE_CLIP_MAX, rmax);
    702  1.26.8.1      yamt 	p9100_ctl_write_4(sc, DRAW_MODE, 0);
    703  1.26.8.5      yamt 	p9100_ctl_write_4(sc, PLANE_MASK, 0xffffffff);
    704  1.26.8.5      yamt 	p9100_ctl_write_4(sc, PATTERN0, 0xffffffff);
    705  1.26.8.5      yamt 	p9100_ctl_write_4(sc, PATTERN1, 0xffffffff);
    706  1.26.8.5      yamt 	p9100_ctl_write_4(sc, PATTERN2, 0xffffffff);
    707  1.26.8.5      yamt 	p9100_ctl_write_4(sc, PATTERN3, 0xffffffff);
    708  1.26.8.1      yamt }
    709  1.26.8.1      yamt 
    710  1.26.8.1      yamt /* we only need these in the wsdisplay case */
    711  1.26.8.1      yamt #if NWSDISPLAY > 0
    712  1.26.8.1      yamt 
    713      1.21  macallan /* wait until the engine is idle */
    714      1.21  macallan static void
    715      1.21  macallan p9100_sync(struct p9100_softc *sc)
    716      1.21  macallan {
    717  1.26.8.5      yamt 	while((p9100_ctl_read_4(sc, ENGINE_STATUS) &
    718      1.21  macallan 	    (ENGINE_BUSY | BLITTER_BUSY)) != 0);
    719      1.21  macallan }
    720      1.21  macallan 
    721  1.26.8.5      yamt static void
    722      1.21  macallan p9100_set_color_reg(struct p9100_softc *sc, int reg, int32_t col)
    723      1.21  macallan {
    724      1.21  macallan 	uint32_t out;
    725  1.26.8.5      yamt 
    726      1.21  macallan 	switch(sc->sc_depth)
    727      1.21  macallan 	{
    728      1.21  macallan 		case 1:	/* 8 bit */
    729      1.21  macallan 			out = (col << 8) | col;
    730  1.26.8.5      yamt 			out |= out << 16;
    731      1.21  macallan 			break;
    732      1.21  macallan 		case 2: /* 16 bit */
    733  1.26.8.5      yamt 			out = col | (col << 16);
    734      1.21  macallan 			break;
    735      1.21  macallan 		default:
    736      1.21  macallan 			out = col;
    737      1.21  macallan 	}
    738      1.21  macallan 	p9100_ctl_write_4(sc, reg, out);
    739      1.21  macallan }
    740      1.21  macallan 
    741      1.21  macallan /* screen-to-screen blit */
    742  1.26.8.5      yamt static void
    743  1.26.8.1      yamt p9100_bitblt(void *cookie, int xs, int ys, int xd, int yd, int wi,
    744      1.21  macallan     int he, uint32_t rop)
    745      1.21  macallan {
    746  1.26.8.1      yamt 	struct p9100_softc *sc = cookie;
    747  1.26.8.1      yamt 	uint32_t src, dst, srcw, dstw;
    748  1.26.8.1      yamt 
    749  1.26.8.1      yamt 	sc->sc_last_offset = 0xffffffff;
    750  1.26.8.1      yamt 
    751      1.21  macallan 	src = ((xs & 0x3fff) << 16) | (ys & 0x3fff);
    752      1.21  macallan 	dst = ((xd & 0x3fff) << 16) | (yd & 0x3fff);
    753      1.21  macallan 	srcw = (((xs + wi - 1) & 0x3fff) << 16) | ((ys + he - 1) & 0x3fff);
    754      1.21  macallan 	dstw = (((xd + wi - 1) & 0x3fff) << 16) | ((yd + he - 1) & 0x3fff);
    755      1.21  macallan 	p9100_sync(sc);
    756      1.21  macallan 	p9100_ctl_write_4(sc, RASTER_OP, rop);
    757  1.26.8.5      yamt 
    758      1.21  macallan 	p9100_ctl_write_4(sc, ABS_XY0, src);
    759  1.26.8.5      yamt 
    760      1.21  macallan 	p9100_ctl_write_4(sc, ABS_XY1, srcw);
    761      1.21  macallan 	p9100_ctl_write_4(sc, ABS_XY2, dst);
    762      1.21  macallan 	p9100_ctl_write_4(sc, ABS_XY3, dstw);
    763  1.26.8.1      yamt 	sc->sc_junk = p9100_ctl_read_4(sc, COMMAND_BLIT);
    764      1.21  macallan }
    765      1.21  macallan 
    766      1.21  macallan /* solid rectangle fill */
    767  1.26.8.5      yamt static void
    768  1.26.8.1      yamt p9100_rectfill(void *cookie, int xs, int ys, int wi, int he, uint32_t col)
    769      1.21  macallan {
    770  1.26.8.1      yamt 	struct p9100_softc *sc = cookie;
    771  1.26.8.1      yamt 	uint32_t src, srcw;
    772  1.26.8.1      yamt 
    773  1.26.8.1      yamt 	sc->sc_last_offset = 0xffffffff;
    774  1.26.8.1      yamt 
    775      1.21  macallan 	src = ((xs & 0x3fff) << 16) | (ys & 0x3fff);
    776      1.21  macallan 	srcw = (((xs + wi) & 0x3fff) << 16) | ((ys + he) & 0x3fff);
    777      1.21  macallan 	p9100_sync(sc);
    778      1.21  macallan 	p9100_set_color_reg(sc, FOREGROUND_COLOR, col);
    779      1.21  macallan 	p9100_set_color_reg(sc, BACKGROUND_COLOR, col);
    780      1.21  macallan 	p9100_ctl_write_4(sc, RASTER_OP, ROP_PAT);
    781      1.21  macallan 	p9100_ctl_write_4(sc, COORD_INDEX, 0);
    782      1.21  macallan 	p9100_ctl_write_4(sc, RECT_RTW_XY, src);
    783      1.21  macallan 	p9100_ctl_write_4(sc, RECT_RTW_XY, srcw);
    784  1.26.8.1      yamt 	sc->sc_junk = p9100_ctl_read_4(sc, COMMAND_QUAD);
    785      1.21  macallan }
    786      1.21  macallan 
    787      1.21  macallan /* setup for mono->colour expansion */
    788  1.26.8.5      yamt static void
    789  1.26.8.5      yamt p9100_setup_mono(struct p9100_softc *sc, int x, int y, int wi, int he,
    790  1.26.8.5      yamt     uint32_t fg, uint32_t bg)
    791      1.21  macallan {
    792  1.26.8.1      yamt 
    793  1.26.8.1      yamt 	sc->sc_last_offset = 0xffffffff;
    794  1.26.8.1      yamt 
    795      1.21  macallan 	p9100_sync(sc);
    796  1.26.8.5      yamt 	/*
    797      1.21  macallan 	 * this doesn't make any sense to me either, but for some reason the
    798  1.26.8.5      yamt 	 * chip applies the foreground colour to 0 pixels
    799      1.21  macallan 	 */
    800  1.26.8.5      yamt 
    801      1.21  macallan 	p9100_set_color_reg(sc,FOREGROUND_COLOR,bg);
    802      1.21  macallan 	p9100_set_color_reg(sc,BACKGROUND_COLOR,fg);
    803      1.21  macallan 
    804      1.21  macallan 	p9100_ctl_write_4(sc, RASTER_OP, ROP_SRC);
    805      1.21  macallan 	p9100_ctl_write_4(sc, ABS_X0, x);
    806      1.21  macallan 	p9100_ctl_write_4(sc, ABS_XY1, (x << 16) | (y & 0xFFFFL));
    807      1.21  macallan 	p9100_ctl_write_4(sc, ABS_X2, (x + wi));
    808      1.21  macallan 	p9100_ctl_write_4(sc, ABS_Y3, he);
    809      1.21  macallan 	/* now feed the data into the chip */
    810      1.21  macallan 	sc->sc_mono_width = wi;
    811      1.21  macallan }
    812      1.21  macallan 
    813      1.21  macallan /* write monochrome data to the screen through the blitter */
    814  1.26.8.5      yamt static void
    815      1.21  macallan p9100_feed_line(struct p9100_softc *sc, int count, uint8_t *data)
    816      1.21  macallan {
    817      1.21  macallan 	int i;
    818      1.21  macallan 	uint32_t latch = 0, bork;
    819      1.21  macallan 	int shift = 24;
    820      1.21  macallan 	int to_go = sc->sc_mono_width;
    821  1.26.8.1      yamt 
    822  1.26.8.1      yamt 	PNOZZ_LATCH(sc, PIXEL_1);
    823  1.26.8.1      yamt 
    824      1.21  macallan 	for (i = 0; i < count; i++) {
    825      1.21  macallan 		bork = data[i];
    826      1.21  macallan 		latch |= (bork << shift);
    827      1.21  macallan 		if (shift == 0) {
    828      1.21  macallan 			/* check how many bits are significant */
    829      1.21  macallan 			if (to_go > 31) {
    830  1.26.8.1      yamt 				bus_space_write_4(sc->sc_bustag, sc->sc_ctl_memh,
    831  1.26.8.1      yamt 				    (PIXEL_1 + (31 << 2)), latch);
    832  1.26.8.5      yamt 				/*p9100_ctl_write_4(sc, (PIXEL_1 +
    833  1.26.8.1      yamt 				    (31 << 2)), latch);*/
    834      1.21  macallan 				to_go -= 32;
    835      1.21  macallan 			} else
    836      1.21  macallan 			{
    837  1.26.8.1      yamt 				bus_space_write_4(sc->sc_bustag, sc->sc_ctl_memh,
    838  1.26.8.1      yamt 				    (PIXEL_1 + ((to_go - 1) << 2)), latch);
    839  1.26.8.5      yamt 				/*p9100_ctl_write_4(sc, (PIXEL_1 +
    840  1.26.8.1      yamt 				    ((to_go - 1) << 2)), latch);*/
    841      1.21  macallan 				to_go = 0;
    842      1.21  macallan 			}
    843      1.21  macallan 			latch = 0;
    844      1.21  macallan 			shift = 24;
    845      1.21  macallan 		} else
    846      1.21  macallan 			shift -= 8;
    847      1.21  macallan 		}
    848      1.21  macallan 	if (shift != 24)
    849      1.21  macallan 		p9100_ctl_write_4(sc, (PIXEL_1 + ((to_go - 1) << 2)), latch);
    850  1.26.8.5      yamt }
    851      1.21  macallan 
    852  1.26.8.1      yamt static void
    853      1.21  macallan p9100_clearscreen(struct p9100_softc *sc)
    854      1.21  macallan {
    855  1.26.8.5      yamt 
    856      1.21  macallan 	p9100_rectfill(sc, 0, 0, sc->sc_width, sc->sc_height, sc->sc_bg);
    857      1.21  macallan }
    858  1.26.8.1      yamt #endif /* NWSDISPLAY > 0 */
    859      1.21  macallan 
    860  1.26.8.1      yamt static uint8_t
    861       1.1        pk p9100_ramdac_read(struct p9100_softc *sc, bus_size_t off)
    862       1.1        pk {
    863  1.26.8.1      yamt 
    864       1.1        pk 	sc->sc_junk = p9100_ctl_read_4(sc, PWRUP_CNFG);
    865  1.26.8.5      yamt 	return ((bus_space_read_4(sc->sc_bustag,
    866      1.21  macallan 	    sc->sc_ctl_memh, off) >> 16) & 0xff);
    867       1.1        pk }
    868       1.1        pk 
    869  1.26.8.1      yamt static void
    870       1.1        pk p9100_ramdac_write(struct p9100_softc *sc, bus_size_t off, uint8_t v)
    871       1.1        pk {
    872  1.26.8.1      yamt 
    873       1.1        pk 	sc->sc_junk = p9100_ctl_read_4(sc, PWRUP_CNFG);
    874  1.26.8.5      yamt 	bus_space_write_4(sc->sc_bustag, sc->sc_ctl_memh, off,
    875      1.21  macallan 	    ((uint32_t)v) << 16);
    876       1.1        pk }
    877       1.1        pk 
    878  1.26.8.1      yamt static uint8_t
    879  1.26.8.1      yamt p9100_ramdac_read_ctl(struct p9100_softc *sc, int off)
    880  1.26.8.1      yamt {
    881  1.26.8.1      yamt 	p9100_ramdac_write(sc, DAC_INDX_LO, off & 0xff);
    882  1.26.8.1      yamt 	p9100_ramdac_write(sc, DAC_INDX_HI, (off & 0xff00) >> 8);
    883  1.26.8.1      yamt 	return p9100_ramdac_read(sc, DAC_INDX_DATA);
    884  1.26.8.1      yamt }
    885  1.26.8.1      yamt 
    886  1.26.8.1      yamt static void
    887  1.26.8.1      yamt p9100_ramdac_write_ctl(struct p9100_softc *sc, int off, uint8_t val)
    888  1.26.8.1      yamt {
    889  1.26.8.1      yamt 	p9100_ramdac_write(sc, DAC_INDX_LO, off & 0xff);
    890  1.26.8.1      yamt 	p9100_ramdac_write(sc, DAC_INDX_HI, (off & 0xff00) >> 8);
    891  1.26.8.1      yamt 	p9100_ramdac_write(sc, DAC_INDX_DATA, val);
    892  1.26.8.1      yamt }
    893  1.26.8.1      yamt 
    894       1.1        pk /*
    895       1.1        pk  * Undo the effect of an FBIOSVIDEO that turns the video off.
    896       1.1        pk  */
    897       1.1        pk static void
    898       1.1        pk p9100unblank(struct device *dev)
    899       1.1        pk {
    900  1.26.8.1      yamt 	struct p9100_softc *sc = (struct p9100_softc *)dev;
    901  1.26.8.5      yamt 
    902       1.1        pk 	p9100_set_video((struct p9100_softc *)dev, 1);
    903  1.26.8.5      yamt 
    904  1.26.8.5      yamt 	/*
    905  1.26.8.1      yamt 	 * Check if we're in terminal mode. If not force the console screen
    906  1.26.8.1      yamt 	 * to front so we can see ddb, panic messages and so on
    907  1.26.8.1      yamt 	 */
    908  1.26.8.1      yamt 	if (sc->sc_mode != WSDISPLAYIO_MODE_EMUL) {
    909  1.26.8.1      yamt 		sc->sc_mode = WSDISPLAYIO_MODE_EMUL;
    910  1.26.8.1      yamt 		if (sc->vd.active != &p9100_console_screen) {
    911  1.26.8.1      yamt 			SCREEN_INVISIBLE(sc->vd.active);
    912  1.26.8.1      yamt 			sc->vd.active = &p9100_console_screen;
    913  1.26.8.1      yamt 			SCREEN_VISIBLE(&p9100_console_screen);
    914  1.26.8.1      yamt 		}
    915  1.26.8.1      yamt 		vcons_redraw_screen(&p9100_console_screen);
    916  1.26.8.1      yamt 	}
    917       1.1        pk }
    918       1.1        pk 
    919       1.1        pk static void
    920       1.1        pk p9100_set_video(struct p9100_softc *sc, int enable)
    921       1.1        pk {
    922       1.1        pk 	u_int32_t v = p9100_ctl_read_4(sc, SCRN_RPNT_CTL_1);
    923  1.26.8.5      yamt 
    924       1.1        pk 	if (enable)
    925       1.1        pk 		v |= VIDEO_ENABLED;
    926       1.1        pk 	else
    927       1.1        pk 		v &= ~VIDEO_ENABLED;
    928       1.1        pk 	p9100_ctl_write_4(sc, SCRN_RPNT_CTL_1, v);
    929       1.1        pk #if NTCTRL > 0
    930       1.1        pk 	/* Turn On/Off the TFT if we know how.
    931       1.1        pk 	 */
    932       1.1        pk 	tadpole_set_video(enable);
    933       1.1        pk #endif
    934       1.1        pk }
    935       1.1        pk 
    936       1.1        pk static int
    937       1.1        pk p9100_get_video(struct p9100_softc *sc)
    938       1.1        pk {
    939       1.1        pk 	return (p9100_ctl_read_4(sc, SCRN_RPNT_CTL_1) & VIDEO_ENABLED) != 0;
    940       1.1        pk }
    941       1.1        pk 
    942  1.26.8.5      yamt static void
    943  1.26.8.1      yamt p9100_power_hook(int why, void *cookie)
    944  1.26.8.1      yamt {
    945  1.26.8.1      yamt 	struct p9100_softc *sc = cookie;
    946  1.26.8.5      yamt 
    947  1.26.8.1      yamt 	if (why == sc->sc_powerstate)
    948  1.26.8.1      yamt 		return;
    949  1.26.8.5      yamt 
    950  1.26.8.1      yamt 	switch(why)
    951  1.26.8.1      yamt 	{
    952  1.26.8.1      yamt 		case PWR_SUSPEND:
    953  1.26.8.1      yamt 		case PWR_STANDBY:
    954  1.26.8.1      yamt 			sc->sc_video = p9100_get_video(sc);
    955  1.26.8.1      yamt 			p9100_set_video(sc, 0);
    956  1.26.8.1      yamt 			sc->sc_powerstate = why;
    957  1.26.8.1      yamt 			break;
    958  1.26.8.1      yamt 		case PWR_RESUME:
    959  1.26.8.1      yamt 			p9100_set_video(sc, sc->sc_video);
    960  1.26.8.1      yamt 			sc->sc_powerstate = why;
    961  1.26.8.1      yamt 			break;
    962  1.26.8.1      yamt 	}
    963  1.26.8.1      yamt }
    964  1.26.8.1      yamt 
    965       1.1        pk /*
    966       1.1        pk  * Load a subset of the current (new) colormap into the IBM RAMDAC.
    967       1.1        pk  */
    968       1.1        pk static void
    969       1.1        pk p9100loadcmap(struct p9100_softc *sc, int start, int ncolors)
    970       1.1        pk {
    971      1.21  macallan 	int i;
    972  1.26.8.1      yamt 
    973  1.26.8.1      yamt 	sc->sc_last_offset = 0xffffffff;
    974  1.26.8.1      yamt 
    975       1.1        pk 	p9100_ramdac_write(sc, DAC_CMAP_WRIDX, start);
    976       1.1        pk 
    977      1.21  macallan 	for (i=0;i<ncolors;i++) {
    978  1.26.8.5      yamt 		p9100_ramdac_write(sc, DAC_CMAP_DATA,
    979      1.21  macallan 		    sc->sc_cmap.cm_map[i + start][0]);
    980  1.26.8.5      yamt 		p9100_ramdac_write(sc, DAC_CMAP_DATA,
    981      1.21  macallan 		    sc->sc_cmap.cm_map[i + start][1]);
    982  1.26.8.5      yamt 		p9100_ramdac_write(sc, DAC_CMAP_DATA,
    983      1.21  macallan 		    sc->sc_cmap.cm_map[i + start][2]);
    984       1.1        pk 	}
    985       1.1        pk }
    986       1.1        pk 
    987       1.1        pk /*
    988       1.1        pk  * Return the address that would map the given device at the given
    989       1.1        pk  * offset, allowing for the given protection, or return -1 for error.
    990       1.1        pk  */
    991  1.26.8.1      yamt static paddr_t
    992       1.1        pk p9100mmap(dev_t dev, off_t off, int prot)
    993       1.1        pk {
    994       1.1        pk 	struct p9100_softc *sc = pnozz_cd.cd_devs[minor(dev)];
    995       1.1        pk 
    996       1.1        pk 	if (off & PGOFSET)
    997       1.1        pk 		panic("p9100mmap");
    998       1.1        pk 	if (off < 0)
    999       1.1        pk 		return (-1);
   1000       1.1        pk 
   1001      1.21  macallan #ifdef PNOZZ_EMUL_CG3
   1002       1.1        pk #define CG3_MMAP_OFFSET	0x04000000
   1003       1.1        pk 	/* Make Xsun think we are a CG3 (SUN3COLOR)
   1004       1.1        pk 	 */
   1005       1.1        pk 	if (off >= CG3_MMAP_OFFSET && off < CG3_MMAP_OFFSET + sc->sc_fb_psize) {
   1006       1.1        pk 		off -= CG3_MMAP_OFFSET;
   1007       1.3       eeh 		return (bus_space_mmap(sc->sc_bustag,
   1008       1.3       eeh 			sc->sc_fb_paddr,
   1009       1.3       eeh 			off,
   1010       1.3       eeh 			prot,
   1011       1.3       eeh 			BUS_SPACE_MAP_LINEAR));
   1012       1.1        pk 	}
   1013      1.21  macallan #endif
   1014       1.1        pk 
   1015       1.1        pk 	if (off >= sc->sc_fb_psize + sc->sc_ctl_psize + sc->sc_cmd_psize)
   1016       1.1        pk 		return (-1);
   1017       1.1        pk 
   1018       1.1        pk 	if (off < sc->sc_fb_psize) {
   1019       1.3       eeh 		return (bus_space_mmap(sc->sc_bustag,
   1020       1.3       eeh 			sc->sc_fb_paddr,
   1021       1.3       eeh 			off,
   1022       1.3       eeh 			prot,
   1023       1.3       eeh 			BUS_SPACE_MAP_LINEAR));
   1024       1.1        pk 	}
   1025       1.1        pk 	off -= sc->sc_fb_psize;
   1026       1.1        pk 	if (off < sc->sc_ctl_psize) {
   1027       1.3       eeh 		return (bus_space_mmap(sc->sc_bustag,
   1028       1.3       eeh 			sc->sc_ctl_paddr,
   1029       1.3       eeh 			off,
   1030       1.3       eeh 			prot,
   1031       1.3       eeh 			BUS_SPACE_MAP_LINEAR));
   1032       1.1        pk 	}
   1033       1.1        pk 	off -= sc->sc_ctl_psize;
   1034       1.1        pk 
   1035       1.3       eeh 	return (bus_space_mmap(sc->sc_bustag,
   1036       1.3       eeh 		sc->sc_cmd_paddr,
   1037       1.3       eeh 		off,
   1038       1.3       eeh 		prot,
   1039       1.3       eeh 		BUS_SPACE_MAP_LINEAR));
   1040       1.1        pk }
   1041      1.21  macallan 
   1042      1.21  macallan /* wscons stuff */
   1043  1.26.8.1      yamt #if NWSDISPLAY > 0
   1044      1.21  macallan 
   1045  1.26.8.1      yamt static void
   1046      1.21  macallan p9100_cursor(void *cookie, int on, int row, int col)
   1047      1.21  macallan {
   1048      1.21  macallan 	struct rasops_info *ri = cookie;
   1049  1.26.8.1      yamt 	struct vcons_screen *scr = ri->ri_hw;
   1050  1.26.8.1      yamt 	struct p9100_softc *sc = scr->scr_cookie;
   1051      1.21  macallan 	int x, y, wi,he;
   1052  1.26.8.5      yamt 
   1053      1.21  macallan 	wi = ri->ri_font->fontwidth;
   1054      1.21  macallan 	he = ri->ri_font->fontheight;
   1055  1.26.8.5      yamt 
   1056  1.26.8.1      yamt 	if (ri->ri_flg & RI_CURSOR) {
   1057  1.26.8.1      yamt 		x = ri->ri_ccol * wi + ri->ri_xorigin;
   1058  1.26.8.1      yamt 		y = ri->ri_crow * he + ri->ri_yorigin;
   1059  1.26.8.1      yamt 		p9100_bitblt(sc, x, y, x, y, wi, he, ROP_SRC ^ 0xff);
   1060  1.26.8.1      yamt 		ri->ri_flg &= ~RI_CURSOR;
   1061  1.26.8.1      yamt 	}
   1062  1.26.8.1      yamt 	ri->ri_crow = row;
   1063  1.26.8.1      yamt 	ri->ri_ccol = col;
   1064  1.26.8.1      yamt 	if (on)
   1065  1.26.8.1      yamt 	{
   1066  1.26.8.1      yamt 		x = ri->ri_ccol * wi + ri->ri_xorigin;
   1067  1.26.8.1      yamt 		y = ri->ri_crow * he + ri->ri_yorigin;
   1068  1.26.8.1      yamt 		p9100_bitblt(sc, x, y, x, y, wi, he, ROP_SRC ^ 0xff);
   1069  1.26.8.1      yamt 		ri->ri_flg |= RI_CURSOR;
   1070      1.21  macallan 	}
   1071      1.21  macallan }
   1072      1.21  macallan 
   1073      1.21  macallan #if 0
   1074  1.26.8.1      yamt static int
   1075      1.21  macallan p9100_mapchar(void *cookie, int uni, u_int *index)
   1076      1.21  macallan {
   1077      1.21  macallan 	return 0;
   1078      1.21  macallan }
   1079      1.21  macallan #endif
   1080      1.21  macallan 
   1081  1.26.8.1      yamt static void
   1082      1.21  macallan p9100_putchar(void *cookie, int row, int col, u_int c, long attr)
   1083      1.21  macallan {
   1084      1.21  macallan 	struct rasops_info *ri = cookie;
   1085  1.26.8.1      yamt 	struct vcons_screen *scr = ri->ri_hw;
   1086  1.26.8.1      yamt 	struct p9100_softc *sc = scr->scr_cookie;
   1087  1.26.8.5      yamt 
   1088  1.26.8.1      yamt 	int fg, bg, uc, i;
   1089  1.26.8.1      yamt 	uint8_t *data;
   1090  1.26.8.1      yamt 	int x, y, wi,he;
   1091  1.26.8.5      yamt 
   1092  1.26.8.1      yamt 	wi = ri->ri_font->fontwidth;
   1093  1.26.8.1      yamt 	he = ri->ri_font->fontheight;
   1094  1.26.8.5      yamt 
   1095  1.26.8.1      yamt 	if (!CHAR_IN_FONT(c, ri->ri_font))
   1096  1.26.8.1      yamt 		return;
   1097  1.26.8.1      yamt 	bg = (u_char)ri->ri_devcmap[(attr >> 16) & 0xff];
   1098  1.26.8.1      yamt 	fg = (u_char)ri->ri_devcmap[(attr >> 24) & 0xff];
   1099  1.26.8.1      yamt 	x = ri->ri_xorigin + col * wi;
   1100  1.26.8.1      yamt 	y = ri->ri_yorigin + row * he;
   1101  1.26.8.1      yamt 	if (c == 0x20) {
   1102  1.26.8.1      yamt 		p9100_rectfill(sc, x, y, wi, he, bg);
   1103  1.26.8.1      yamt 	} else {
   1104  1.26.8.1      yamt 		uc = c-ri->ri_font->firstchar;
   1105  1.26.8.5      yamt 		data = (uint8_t *)ri->ri_font->data + uc *
   1106  1.26.8.1      yamt 		    ri->ri_fontscale;
   1107  1.26.8.1      yamt 
   1108  1.26.8.5      yamt 		p9100_setup_mono(sc, x, y, wi, 1, fg, bg);
   1109  1.26.8.1      yamt 		for (i = 0; i < he; i++) {
   1110  1.26.8.1      yamt 			p9100_feed_line(sc, ri->ri_font->stride,
   1111  1.26.8.1      yamt 			    data);
   1112  1.26.8.1      yamt 			data += ri->ri_font->stride;
   1113      1.21  macallan 		}
   1114  1.26.8.1      yamt 		/*p9100_sync(sc);*/
   1115      1.21  macallan 	}
   1116      1.21  macallan }
   1117      1.21  macallan 
   1118      1.21  macallan /*
   1119      1.21  macallan  * wsdisplay_accessops
   1120      1.21  macallan  */
   1121      1.21  macallan 
   1122      1.21  macallan int
   1123  1.26.8.4      yamt p9100_ioctl(void *v, void *vs, u_long cmd, caddr_t data, int flag,
   1124  1.26.8.4      yamt 	struct lwp *l)
   1125      1.21  macallan {
   1126  1.26.8.1      yamt 	struct vcons_data *vd = v;
   1127  1.26.8.1      yamt 	struct p9100_softc *sc = vd->cookie;
   1128      1.21  macallan 	struct wsdisplay_fbinfo *wdf;
   1129  1.26.8.1      yamt 	struct vcons_screen *ms = vd->active;
   1130      1.21  macallan 
   1131      1.21  macallan 	switch (cmd) {
   1132      1.21  macallan 		case WSDISPLAYIO_GTYPE:
   1133      1.21  macallan 			*(u_int *)data = WSDISPLAY_TYPE_SB_P9100;
   1134      1.21  macallan 			return 0;
   1135  1.26.8.5      yamt 
   1136      1.21  macallan 		case FBIOGVIDEO:
   1137      1.21  macallan 		case WSDISPLAYIO_GVIDEO:
   1138      1.21  macallan 			*(int *)data = p9100_get_video(sc);
   1139      1.21  macallan 			return 0;
   1140  1.26.8.5      yamt 
   1141      1.21  macallan 		case WSDISPLAYIO_SVIDEO:
   1142      1.21  macallan 		case FBIOSVIDEO:
   1143      1.21  macallan 			p9100_set_video(sc, *(int *)data);
   1144      1.21  macallan 			return 0;
   1145      1.21  macallan 
   1146      1.21  macallan 		case WSDISPLAYIO_GINFO:
   1147      1.21  macallan 			wdf = (void *)data;
   1148  1.26.8.1      yamt 			wdf->height = ms->scr_ri.ri_height;
   1149  1.26.8.1      yamt 			wdf->width = ms->scr_ri.ri_width;
   1150  1.26.8.1      yamt 			wdf->depth = ms->scr_ri.ri_depth;
   1151      1.21  macallan 			wdf->cmsize = 256;
   1152      1.21  macallan 			return 0;
   1153      1.21  macallan 
   1154      1.21  macallan 		case WSDISPLAYIO_GETCMAP:
   1155      1.21  macallan 			return p9100_getcmap(sc, (struct wsdisplay_cmap *)data);
   1156      1.21  macallan 
   1157      1.21  macallan 		case WSDISPLAYIO_PUTCMAP:
   1158      1.21  macallan 			return p9100_putcmap(sc, (struct wsdisplay_cmap *)data);
   1159      1.21  macallan 
   1160      1.21  macallan 		case WSDISPLAYIO_SMODE:
   1161      1.21  macallan 			{
   1162      1.21  macallan 				int new_mode = *(int*)data;
   1163      1.21  macallan 				if (new_mode != sc->sc_mode)
   1164      1.21  macallan 				{
   1165      1.21  macallan 					sc->sc_mode = new_mode;
   1166      1.21  macallan 					if (new_mode == WSDISPLAYIO_MODE_EMUL)
   1167      1.21  macallan 					{
   1168  1.26.8.5      yamt 						p9100_init_engine(sc);
   1169  1.26.8.1      yamt 						p9100loadcmap(sc, 0, 256);
   1170  1.26.8.1      yamt 						p9100_clearscreen(sc);
   1171  1.26.8.1      yamt 						vcons_redraw_screen(ms);
   1172      1.21  macallan 					}
   1173      1.21  macallan 				}
   1174      1.21  macallan 			}
   1175      1.21  macallan 	}
   1176      1.21  macallan 	return EPASSTHROUGH;
   1177      1.21  macallan }
   1178      1.21  macallan 
   1179  1.26.8.1      yamt static paddr_t
   1180  1.26.8.4      yamt p9100_mmap(void *v, void *vs, off_t offset, int prot)
   1181      1.21  macallan {
   1182  1.26.8.1      yamt 	struct vcons_data *vd = v;
   1183  1.26.8.5      yamt 	struct p9100_softc *sc = vd->cookie;
   1184      1.21  macallan 	paddr_t pa;
   1185  1.26.8.5      yamt 
   1186      1.21  macallan 	/* 'regular' framebuffer mmap()ing */
   1187      1.21  macallan 	if (offset < sc->sc_fb_psize) {
   1188  1.26.8.5      yamt 		pa = bus_space_mmap(sc->sc_bustag, sc->sc_fb_paddr + offset, 0,
   1189  1.26.8.5      yamt 		    prot, BUS_SPACE_MAP_LINEAR);
   1190      1.21  macallan 		return pa;
   1191      1.21  macallan 	}
   1192      1.21  macallan 
   1193  1.26.8.5      yamt 	if ((offset >= sc->sc_fb_paddr) && (offset < (sc->sc_fb_paddr +
   1194      1.21  macallan 	    sc->sc_fb_psize))) {
   1195  1.26.8.5      yamt 		pa = bus_space_mmap(sc->sc_bustag, offset, 0, prot,
   1196  1.26.8.5      yamt 		    BUS_SPACE_MAP_LINEAR);
   1197      1.21  macallan 		return pa;
   1198      1.21  macallan 	}
   1199      1.21  macallan 
   1200  1.26.8.5      yamt 	if ((offset >= sc->sc_ctl_paddr) && (offset < (sc->sc_ctl_paddr +
   1201      1.21  macallan 	    sc->sc_ctl_psize))) {
   1202  1.26.8.5      yamt 		pa = bus_space_mmap(sc->sc_bustag, offset, 0, prot,
   1203  1.26.8.5      yamt 		    BUS_SPACE_MAP_LINEAR);
   1204      1.21  macallan 		return pa;
   1205      1.21  macallan 	}
   1206      1.21  macallan 
   1207      1.21  macallan 	return -1;
   1208      1.21  macallan }
   1209      1.21  macallan 
   1210  1.26.8.1      yamt static void
   1211  1.26.8.1      yamt p9100_init_screen(void *cookie, struct vcons_screen *scr,
   1212      1.21  macallan     int existing, long *defattr)
   1213      1.21  macallan {
   1214  1.26.8.1      yamt 	struct p9100_softc *sc = cookie;
   1215  1.26.8.1      yamt 	struct rasops_info *ri = &scr->scr_ri;
   1216  1.26.8.5      yamt 
   1217      1.21  macallan 	ri->ri_depth = sc->sc_depth << 3;
   1218      1.21  macallan 	ri->ri_width = sc->sc_width;
   1219      1.21  macallan 	ri->ri_height = sc->sc_height;
   1220      1.21  macallan 	ri->ri_stride = sc->sc_stride;
   1221  1.26.8.1      yamt 	ri->ri_flg = RI_CENTER | RI_FULLCLEAR;
   1222      1.21  macallan 
   1223      1.21  macallan 	ri->ri_bits = bus_space_vaddr(sc->sc_bustag, sc->sc_fb_memh);
   1224      1.21  macallan 
   1225      1.21  macallan #ifdef DEBUG_P9100
   1226      1.21  macallan 	printf("addr: %08lx\n",(ulong)ri->ri_bits);
   1227      1.21  macallan #endif
   1228      1.21  macallan 	rasops_init(ri, sc->sc_height/8, sc->sc_width/8);
   1229      1.21  macallan 	ri->ri_caps = WSSCREEN_WSCOLORS;
   1230      1.21  macallan 	rasops_reconfig(ri, sc->sc_height / ri->ri_font->fontheight,
   1231      1.21  macallan 		    sc->sc_width / ri->ri_font->fontwidth);
   1232      1.21  macallan 
   1233      1.21  macallan 	/* enable acceleration */
   1234  1.26.8.1      yamt 	ri->ri_ops.cursor    = p9100_cursor;
   1235  1.26.8.1      yamt 	ri->ri_ops.copyrows  = p9100_copyrows;
   1236      1.21  macallan 	ri->ri_ops.eraserows = p9100_eraserows;
   1237  1.26.8.1      yamt 	ri->ri_ops.copycols  = p9100_copycols;
   1238      1.21  macallan 	ri->ri_ops.erasecols = p9100_erasecols;
   1239  1.26.8.1      yamt 	ri->ri_ops.putchar   = p9100_putchar;
   1240      1.21  macallan 	ri->ri_ops.allocattr = p9100_allocattr;
   1241      1.21  macallan }
   1242      1.21  macallan 
   1243  1.26.8.1      yamt static int
   1244      1.21  macallan p9100_putcmap(struct p9100_softc *sc, struct wsdisplay_cmap *cm)
   1245      1.21  macallan {
   1246      1.21  macallan 	u_int index = cm->index;
   1247      1.21  macallan 	u_int count = cm->count;
   1248      1.21  macallan 	int i, error;
   1249      1.21  macallan 	u_char rbuf[256], gbuf[256], bbuf[256];
   1250      1.21  macallan 	u_char *r, *g, *b;
   1251      1.21  macallan 
   1252      1.21  macallan 	if (cm->index >= 256 || cm->count > 256 ||
   1253      1.21  macallan 	    (cm->index + cm->count) > 256)
   1254      1.21  macallan 		return EINVAL;
   1255      1.21  macallan 	error = copyin(cm->red, &rbuf[index], count);
   1256      1.21  macallan 	if (error)
   1257      1.21  macallan 		return error;
   1258      1.21  macallan 	error = copyin(cm->green, &gbuf[index], count);
   1259      1.21  macallan 	if (error)
   1260      1.21  macallan 		return error;
   1261      1.21  macallan 	error = copyin(cm->blue, &bbuf[index], count);
   1262      1.21  macallan 	if (error)
   1263      1.21  macallan 		return error;
   1264      1.21  macallan 
   1265      1.21  macallan 	r = &rbuf[index];
   1266      1.21  macallan 	g = &gbuf[index];
   1267      1.21  macallan 	b = &bbuf[index];
   1268      1.21  macallan 
   1269      1.21  macallan 	for (i = 0; i < count; i++) {
   1270      1.21  macallan 		sc->sc_cmap.cm_map[index][0] = *r;
   1271      1.21  macallan 		sc->sc_cmap.cm_map[index][1] = *g;
   1272      1.21  macallan 		sc->sc_cmap.cm_map[index][2] = *b;
   1273      1.21  macallan 		index++;
   1274      1.21  macallan 		r++, g++, b++;
   1275      1.21  macallan 	}
   1276      1.21  macallan 	p9100loadcmap(sc, 0, 256);
   1277      1.21  macallan 	return 0;
   1278      1.21  macallan }
   1279      1.21  macallan 
   1280  1.26.8.1      yamt static int
   1281      1.21  macallan p9100_getcmap(struct p9100_softc *sc, struct wsdisplay_cmap *cm)
   1282      1.21  macallan {
   1283      1.21  macallan 	u_int index = cm->index;
   1284      1.21  macallan 	u_int count = cm->count;
   1285      1.21  macallan 	int error, i;
   1286  1.26.8.1      yamt 	uint8_t red[256], green[256], blue[256];
   1287      1.21  macallan 
   1288      1.21  macallan 	if (index >= 255 || count > 256 || index + count > 256)
   1289      1.21  macallan 		return EINVAL;
   1290      1.21  macallan 
   1291      1.21  macallan 	i = index;
   1292      1.21  macallan 	while (i < (index + count)) {
   1293      1.21  macallan 		red[i] = sc->sc_cmap.cm_map[i][0];
   1294      1.21  macallan 		green[i] = sc->sc_cmap.cm_map[i][1];
   1295      1.21  macallan 		blue[i] = sc->sc_cmap.cm_map[i][2];
   1296      1.21  macallan 		i++;
   1297      1.21  macallan 	}
   1298      1.21  macallan 	error = copyout(&red[index],   cm->red,   count);
   1299      1.21  macallan 	if (error)
   1300      1.21  macallan 		return error;
   1301      1.21  macallan 	error = copyout(&green[index], cm->green, count);
   1302      1.21  macallan 	if (error)
   1303      1.21  macallan 		return error;
   1304      1.21  macallan 	error = copyout(&blue[index],  cm->blue,  count);
   1305      1.21  macallan 	if (error)
   1306      1.21  macallan 		return error;
   1307      1.21  macallan 
   1308      1.21  macallan 	return 0;
   1309      1.21  macallan }
   1310      1.21  macallan 
   1311  1.26.8.1      yamt static void
   1312  1.26.8.1      yamt p9100_copycols(void *cookie, int row, int srccol, int dstcol, int ncols)
   1313  1.26.8.1      yamt {
   1314  1.26.8.1      yamt 	struct rasops_info *ri = cookie;
   1315  1.26.8.1      yamt 	struct vcons_screen *scr = ri->ri_hw;
   1316  1.26.8.1      yamt 	int32_t xs, xd, y, width, height;
   1317  1.26.8.5      yamt 
   1318  1.26.8.1      yamt 	xs = ri->ri_xorigin + ri->ri_font->fontwidth * srccol;
   1319  1.26.8.1      yamt 	xd = ri->ri_xorigin + ri->ri_font->fontwidth * dstcol;
   1320  1.26.8.1      yamt 	y = ri->ri_yorigin + ri->ri_font->fontheight * row;
   1321  1.26.8.1      yamt 	width = ri->ri_font->fontwidth * ncols;
   1322  1.26.8.1      yamt 	height = ri->ri_font->fontheight;
   1323  1.26.8.1      yamt 	p9100_bitblt(scr->scr_cookie, xs, y, xd, y, width, height, ROP_SRC);
   1324  1.26.8.1      yamt }
   1325  1.26.8.1      yamt 
   1326  1.26.8.1      yamt static void
   1327  1.26.8.1      yamt p9100_erasecols(void *cookie, int row, int startcol, int ncols, long fillattr)
   1328  1.26.8.1      yamt {
   1329  1.26.8.1      yamt 	struct rasops_info *ri = cookie;
   1330  1.26.8.1      yamt 	struct vcons_screen *scr = ri->ri_hw;
   1331  1.26.8.1      yamt 	int32_t x, y, width, height, bg;
   1332  1.26.8.5      yamt 
   1333  1.26.8.1      yamt 	x = ri->ri_xorigin + ri->ri_font->fontwidth * startcol;
   1334  1.26.8.1      yamt 	y = ri->ri_yorigin + ri->ri_font->fontheight * row;
   1335  1.26.8.1      yamt 	width = ri->ri_font->fontwidth * ncols;
   1336  1.26.8.5      yamt 	height = ri->ri_font->fontheight;
   1337  1.26.8.1      yamt 	bg = (uint32_t)ri->ri_devcmap[(fillattr >> 16) & 0xff];
   1338  1.26.8.1      yamt 	p9100_rectfill(scr->scr_cookie, x, y, width, height, bg);
   1339  1.26.8.1      yamt }
   1340  1.26.8.1      yamt 
   1341  1.26.8.1      yamt static void
   1342  1.26.8.1      yamt p9100_copyrows(void *cookie, int srcrow, int dstrow, int nrows)
   1343  1.26.8.1      yamt {
   1344  1.26.8.1      yamt 	struct rasops_info *ri = cookie;
   1345  1.26.8.1      yamt 	struct vcons_screen *scr = ri->ri_hw;
   1346  1.26.8.1      yamt 	int32_t x, ys, yd, width, height;
   1347  1.26.8.1      yamt 
   1348  1.26.8.1      yamt 	x = ri->ri_xorigin;
   1349  1.26.8.1      yamt 	ys = ri->ri_yorigin + ri->ri_font->fontheight * srcrow;
   1350  1.26.8.1      yamt 	yd = ri->ri_yorigin + ri->ri_font->fontheight * dstrow;
   1351  1.26.8.1      yamt 	width = ri->ri_emuwidth;
   1352  1.26.8.5      yamt 	height = ri->ri_font->fontheight * nrows;
   1353  1.26.8.1      yamt 	p9100_bitblt(scr->scr_cookie, x, ys, x, yd, width, height, ROP_SRC);
   1354  1.26.8.1      yamt }
   1355  1.26.8.1      yamt 
   1356  1.26.8.1      yamt static void
   1357  1.26.8.1      yamt p9100_eraserows(void *cookie, int row, int nrows, long fillattr)
   1358  1.26.8.1      yamt {
   1359  1.26.8.1      yamt 	struct rasops_info *ri = cookie;
   1360  1.26.8.1      yamt 	struct vcons_screen *scr = ri->ri_hw;
   1361  1.26.8.1      yamt 	int32_t x, y, width, height, bg;
   1362  1.26.8.5      yamt 
   1363  1.26.8.1      yamt 	if ((row == 0) && (nrows == ri->ri_rows)) {
   1364  1.26.8.1      yamt 		x = y = 0;
   1365  1.26.8.1      yamt 		width = ri->ri_width;
   1366  1.26.8.1      yamt 		height = ri->ri_height;
   1367  1.26.8.1      yamt 	} else {
   1368  1.26.8.1      yamt 		x = ri->ri_xorigin;
   1369  1.26.8.1      yamt 		y = ri->ri_yorigin + ri->ri_font->fontheight * row;
   1370  1.26.8.1      yamt 		width = ri->ri_emuwidth;
   1371  1.26.8.1      yamt 		height = ri->ri_font->fontheight * nrows;
   1372  1.26.8.1      yamt 	}
   1373  1.26.8.1      yamt 	bg = (uint32_t)ri->ri_devcmap[(fillattr >> 16) & 0xff];
   1374  1.26.8.1      yamt 	p9100_rectfill(scr->scr_cookie, x, y, width, height, bg);
   1375  1.26.8.1      yamt }
   1376  1.26.8.1      yamt 
   1377  1.26.8.1      yamt 
   1378  1.26.8.1      yamt static int
   1379  1.26.8.1      yamt p9100_allocattr(void *cookie, int fg, int bg, int flags, long *attrp)
   1380  1.26.8.1      yamt {
   1381  1.26.8.1      yamt 	if ((fg == 0) && (bg == 0))
   1382  1.26.8.1      yamt 	{
   1383  1.26.8.1      yamt 		fg = WS_DEFAULT_FG;
   1384  1.26.8.1      yamt 		bg = WS_DEFAULT_BG;
   1385  1.26.8.1      yamt 	}
   1386  1.26.8.1      yamt 	if (flags & WSATTR_REVERSE) {
   1387  1.26.8.5      yamt 		*attrp = (bg & 0xff) << 24 | (fg & 0xff) << 16 |
   1388  1.26.8.1      yamt 		    (flags & 0xff) << 8;
   1389  1.26.8.1      yamt 	} else
   1390  1.26.8.5      yamt 		*attrp = (fg & 0xff) << 24 | (bg & 0xff) << 16 |
   1391  1.26.8.1      yamt 		    (flags & 0xff) << 8;
   1392  1.26.8.1      yamt 	return 0;
   1393  1.26.8.1      yamt }
   1394  1.26.8.1      yamt 
   1395      1.21  macallan #if 0
   1396  1.26.8.1      yamt static int
   1397      1.21  macallan p9100_load_font(void *v, void *cookie, struct wsdisplay_font *data)
   1398      1.21  macallan {
   1399      1.21  macallan 
   1400      1.21  macallan 	return 0;
   1401      1.21  macallan }
   1402      1.21  macallan #endif
   1403      1.21  macallan 
   1404  1.26.8.1      yamt #endif /* NWSDISPLAY > 0 */
   1405  1.26.8.1      yamt 
   1406  1.26.8.1      yamt static int
   1407      1.21  macallan p9100_intr(void *arg)
   1408      1.21  macallan {
   1409      1.21  macallan 	/*p9100_softc *sc=arg;
   1410      1.21  macallan 	printf(".");*/
   1411      1.21  macallan 	return 1;
   1412      1.21  macallan }
   1413      1.24  macallan 
   1414  1.26.8.1      yamt static void
   1415      1.24  macallan p9100_init_cursor(struct p9100_softc *sc)
   1416      1.24  macallan {
   1417  1.26.8.5      yamt 
   1418      1.24  macallan 	memset(&sc->sc_cursor, 0, sizeof(struct pnozz_cursor));
   1419      1.24  macallan 	sc->sc_cursor.pc_size.x = 64;
   1420      1.24  macallan 	sc->sc_cursor.pc_size.y = 64;
   1421      1.24  macallan 
   1422      1.24  macallan }
   1423      1.24  macallan 
   1424  1.26.8.1      yamt static void
   1425      1.24  macallan p9100_set_fbcursor(struct p9100_softc *sc)
   1426      1.24  macallan {
   1427      1.24  macallan #ifdef PNOZZ_PARANOID
   1428      1.24  macallan 	int s;
   1429  1.26.8.5      yamt 
   1430      1.24  macallan 	s = splhigh();	/* just in case... */
   1431      1.24  macallan #endif
   1432  1.26.8.1      yamt 	sc->sc_last_offset = 0xffffffff;
   1433  1.26.8.1      yamt 
   1434      1.24  macallan 	/* set position and hotspot */
   1435      1.24  macallan 	p9100_ramdac_write(sc, DAC_INDX_CTL, DAC_INDX_AUTOINCR);
   1436      1.24  macallan 	p9100_ramdac_write(sc, DAC_INDX_HI, 0);
   1437      1.24  macallan 	p9100_ramdac_write(sc, DAC_INDX_LO, DAC_CURSOR_CTL);
   1438      1.24  macallan 	if (sc->sc_cursor.pc_enable) {
   1439  1.26.8.5      yamt 		p9100_ramdac_write(sc, DAC_INDX_DATA, DAC_CURSOR_X11 |
   1440      1.24  macallan 		    DAC_CURSOR_64);
   1441      1.24  macallan 	} else
   1442      1.24  macallan 		p9100_ramdac_write(sc, DAC_INDX_DATA, DAC_CURSOR_OFF);
   1443      1.24  macallan 	/* next two registers - x low, high, y low, high */
   1444      1.24  macallan 	p9100_ramdac_write(sc, DAC_INDX_DATA, sc->sc_cursor.pc_pos.x & 0xff);
   1445  1.26.8.5      yamt 	p9100_ramdac_write(sc, DAC_INDX_DATA, (sc->sc_cursor.pc_pos.x >> 8) &
   1446      1.24  macallan 	    0xff);
   1447      1.24  macallan 	p9100_ramdac_write(sc, DAC_INDX_DATA, sc->sc_cursor.pc_pos.y & 0xff);
   1448  1.26.8.5      yamt 	p9100_ramdac_write(sc, DAC_INDX_DATA, (sc->sc_cursor.pc_pos.y >> 8) &
   1449      1.24  macallan 	    0xff);
   1450      1.24  macallan 	/* hotspot */
   1451      1.24  macallan 	p9100_ramdac_write(sc, DAC_INDX_DATA, sc->sc_cursor.pc_hot.x & 0xff);
   1452      1.24  macallan 	p9100_ramdac_write(sc, DAC_INDX_DATA, sc->sc_cursor.pc_hot.y & 0xff);
   1453  1.26.8.5      yamt 
   1454      1.24  macallan #ifdef PNOZZ_PARANOID
   1455      1.24  macallan 	splx(s);
   1456      1.24  macallan #endif
   1457      1.24  macallan 
   1458      1.24  macallan }
   1459      1.24  macallan 
   1460  1.26.8.1      yamt static void
   1461      1.24  macallan p9100_setcursorcmap(struct p9100_softc *sc)
   1462      1.24  macallan {
   1463      1.24  macallan 	int i;
   1464  1.26.8.5      yamt 
   1465      1.24  macallan #ifdef PNOZZ_PARANOID
   1466      1.24  macallan 	int s;
   1467      1.24  macallan 	s = splhigh();	/* just in case... */
   1468      1.24  macallan #endif
   1469  1.26.8.1      yamt 	sc->sc_last_offset = 0xffffffff;
   1470  1.26.8.5      yamt 
   1471      1.24  macallan 	/* set cursor colours */
   1472      1.24  macallan 	p9100_ramdac_write(sc, DAC_INDX_CTL, DAC_INDX_AUTOINCR);
   1473      1.24  macallan 	p9100_ramdac_write(sc, DAC_INDX_HI, 0);
   1474      1.24  macallan 	p9100_ramdac_write(sc, DAC_INDX_LO, DAC_CURSOR_COL_1);
   1475      1.24  macallan 
   1476      1.24  macallan 	for (i = 0; i < 3; i++) {
   1477      1.24  macallan 		p9100_ramdac_write(sc, DAC_INDX_DATA, sc->sc_cursor.red[i]);
   1478      1.24  macallan 		p9100_ramdac_write(sc, DAC_INDX_DATA, sc->sc_cursor.green[i]);
   1479      1.24  macallan 		p9100_ramdac_write(sc, DAC_INDX_DATA, sc->sc_cursor.blue[i]);
   1480      1.24  macallan 	}
   1481  1.26.8.5      yamt 
   1482      1.24  macallan #ifdef PNOZZ_PARANOID
   1483      1.24  macallan 	splx(s);
   1484      1.24  macallan #endif
   1485      1.24  macallan }
   1486      1.24  macallan 
   1487  1.26.8.1      yamt static void
   1488      1.24  macallan p9100_loadcursor(struct p9100_softc *sc)
   1489      1.24  macallan {
   1490      1.24  macallan 	uint32_t *image, *mask;
   1491      1.24  macallan 	uint32_t bit, bbit, im, ma;
   1492      1.24  macallan 	int i, j, k;
   1493      1.24  macallan 	uint8_t latch1, latch2;
   1494  1.26.8.5      yamt 
   1495      1.24  macallan #ifdef PNOZZ_PARANOID
   1496      1.24  macallan 	int s;
   1497      1.24  macallan 	s = splhigh();	/* just in case... */
   1498      1.24  macallan #endif
   1499  1.26.8.1      yamt 	sc->sc_last_offset = 0xffffffff;
   1500  1.26.8.1      yamt 
   1501      1.24  macallan 	/* set cursor shape */
   1502      1.24  macallan 	p9100_ramdac_write(sc, DAC_INDX_CTL, DAC_INDX_AUTOINCR);
   1503      1.24  macallan 	p9100_ramdac_write(sc, DAC_INDX_HI, 1);
   1504      1.24  macallan 	p9100_ramdac_write(sc, DAC_INDX_LO, 0);
   1505      1.24  macallan 
   1506      1.24  macallan 	image = sc->sc_cursor.pc_bits;
   1507      1.24  macallan 	mask = &sc->sc_cursor.pc_bits[0x80];
   1508      1.24  macallan 
   1509      1.24  macallan 	for (i = 0; i < 0x80; i++) {
   1510      1.24  macallan 		bit = 0x80000000;
   1511      1.24  macallan 		im = image[i];
   1512      1.24  macallan 		ma = mask[i];
   1513      1.24  macallan 		for (k = 0; k < 4; k++) {
   1514      1.24  macallan 			bbit = 0x1;
   1515      1.24  macallan 			latch1 = 0;
   1516      1.24  macallan 			for (j = 0; j < 4; j++) {
   1517      1.24  macallan 				if (im & bit)
   1518      1.24  macallan 					latch1 |= bbit;
   1519      1.24  macallan 				bbit <<= 1;
   1520      1.24  macallan 				if (ma & bit)
   1521      1.24  macallan 					latch1 |= bbit;
   1522      1.24  macallan 				bbit <<= 1;
   1523      1.24  macallan 				bit >>= 1;
   1524      1.24  macallan 			}
   1525      1.24  macallan 			bbit = 0x1;
   1526      1.24  macallan 			latch2 = 0;
   1527      1.24  macallan 			for (j = 0; j < 4; j++) {
   1528      1.24  macallan 				if (im & bit)
   1529      1.24  macallan 					latch2 |= bbit;
   1530      1.24  macallan 				bbit <<= 1;
   1531      1.24  macallan 				if (ma & bit)
   1532      1.24  macallan 					latch2 |= bbit;
   1533      1.24  macallan 				bbit <<= 1;
   1534      1.24  macallan 				bit >>= 1;
   1535      1.24  macallan 			}
   1536      1.24  macallan 			p9100_ramdac_write(sc, DAC_INDX_DATA, latch1);
   1537      1.24  macallan 			p9100_ramdac_write(sc, DAC_INDX_DATA, latch2);
   1538      1.24  macallan 		}
   1539      1.24  macallan 	}
   1540      1.24  macallan #ifdef DEBUG_CURSOR
   1541      1.24  macallan 	printf("image:\n");
   1542      1.24  macallan 	for (i=0;i<0x80;i+=2)
   1543      1.24  macallan 		printf("%08x %08x\n", image[i], image[i+1]);
   1544      1.24  macallan 	printf("mask:\n");
   1545      1.24  macallan 	for (i=0;i<0x80;i+=2)
   1546      1.24  macallan 		printf("%08x %08x\n", mask[i], mask[i+1]);
   1547      1.24  macallan #endif
   1548      1.24  macallan #ifdef PNOZZ_PARANOID
   1549      1.24  macallan 	splx(s);
   1550      1.24  macallan #endif
   1551      1.24  macallan }
   1552  1.26.8.1      yamt 
   1553  1.26.8.1      yamt static void
   1554  1.26.8.1      yamt p9100_set_extvga(void *cookie, int status)
   1555  1.26.8.1      yamt {
   1556  1.26.8.1      yamt 	struct p9100_softc *sc = cookie;
   1557  1.26.8.1      yamt #ifdef PNOZZ_PARANOID
   1558  1.26.8.1      yamt 	int s;
   1559  1.26.8.1      yamt 
   1560  1.26.8.1      yamt 	s = splhigh();
   1561  1.26.8.1      yamt #endif
   1562  1.26.8.1      yamt #ifdef DEBUG
   1563  1.26.8.1      yamt 	printf("%s: external VGA %s\n", sc->sc_dev.dv_xname,
   1564  1.26.8.1      yamt 	    status ? "on" : "off");
   1565  1.26.8.1      yamt #endif
   1566  1.26.8.1      yamt 	sc->sc_last_offset = 0xffffffff;
   1567  1.26.8.1      yamt 
   1568  1.26.8.1      yamt 	if (status) {
   1569  1.26.8.1      yamt 		p9100_ramdac_write_ctl(sc, DAC_POWER,
   1570  1.26.8.1      yamt 		    p9100_ramdac_read_ctl(sc, DAC_POWER) &
   1571  1.26.8.1      yamt 		    ~DAC_POWER_IPWR_DISABLE);
   1572  1.26.8.1      yamt 	} else {
   1573  1.26.8.1      yamt 		p9100_ramdac_write_ctl(sc, DAC_POWER,
   1574  1.26.8.1      yamt 		    p9100_ramdac_read_ctl(sc, DAC_POWER) |
   1575  1.26.8.1      yamt 		    DAC_POWER_IPWR_DISABLE);
   1576  1.26.8.1      yamt 	}
   1577  1.26.8.1      yamt #ifdef PNOZZ_PARANOID
   1578  1.26.8.1      yamt 	splx(s);
   1579  1.26.8.1      yamt #endif
   1580  1.26.8.1      yamt }
   1581