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