Home | History | Annotate | Line # | Download | only in iomd
vidcvideo.c revision 1.26
      1  1.26     bjh21 /* $NetBSD: vidcvideo.c,v 1.26 2006/08/05 21:25:39 bjh21 Exp $ */
      2   1.1   reinoud 
      3   1.1   reinoud /*
      4   1.1   reinoud  * Copyright (c) 2001 Reinoud Zandijk
      5   1.1   reinoud  * Copyright (c) 1998, 1999 Tohru Nishimura.  All rights reserved.
      6   1.1   reinoud  *
      7   1.1   reinoud  * Redistribution and use in source and binary forms, with or without
      8   1.1   reinoud  * modification, are permitted provided that the following conditions
      9   1.1   reinoud  * are met:
     10   1.1   reinoud  * 1. Redistributions of source code must retain the above copyright
     11   1.1   reinoud  *    notice, this list of conditions and the following disclaimer.
     12   1.1   reinoud  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1   reinoud  *    notice, this list of conditions and the following disclaimer in the
     14   1.1   reinoud  *    documentation and/or other materials provided with the distribution.
     15   1.1   reinoud  * 3. All advertising materials mentioning features or use of this software
     16   1.1   reinoud  *    must display the following acknowledgement:
     17   1.1   reinoud  *      This product includes software developed by Tohru Nishimura
     18   1.1   reinoud  *	and Reinoud Zandijk for the NetBSD Project.
     19   1.1   reinoud  * 4. The name of the author may not be used to endorse or promote products
     20   1.1   reinoud  *    derived from this software without specific prior written permission
     21   1.1   reinoud  *
     22   1.1   reinoud  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23   1.1   reinoud  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24   1.1   reinoud  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25   1.1   reinoud  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26   1.1   reinoud  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27   1.1   reinoud  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28   1.1   reinoud  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29   1.1   reinoud  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30   1.1   reinoud  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31   1.1   reinoud  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32   1.1   reinoud  *
     33   1.1   reinoud  * Created vidcvideo.c from /dev/tc/cfb.c to fit the Acorn/ARM VIDC1 and VIDC20 chips
     34   1.1   reinoud  *
     35   1.1   reinoud  */
     36   1.1   reinoud 
     37   1.1   reinoud #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
     38   1.1   reinoud 
     39  1.26     bjh21 __KERNEL_RCSID(0, "$NetBSD: vidcvideo.c,v 1.26 2006/08/05 21:25:39 bjh21 Exp $");
     40   1.1   reinoud 
     41   1.1   reinoud #include <sys/param.h>
     42   1.1   reinoud #include <sys/systm.h>
     43   1.1   reinoud #include <sys/kernel.h>
     44   1.1   reinoud #include <sys/device.h>
     45   1.1   reinoud #include <sys/malloc.h>
     46   1.1   reinoud #include <sys/buf.h>
     47   1.1   reinoud #include <sys/ioctl.h>
     48   1.1   reinoud 
     49   1.1   reinoud #include <arm/mainbus/mainbus.h>
     50   1.1   reinoud #include <machine/bus.h>
     51   1.1   reinoud #include <machine/intr.h>
     52   1.1   reinoud 
     53   1.1   reinoud #include <dev/wscons/wsconsio.h>
     54   1.1   reinoud #include <dev/wscons/wsdisplayvar.h>
     55   1.1   reinoud 
     56   1.1   reinoud #include <dev/rasops/rasops.h>
     57   1.1   reinoud #include <dev/wsfont/wsfont.h>
     58   1.1   reinoud 
     59   1.1   reinoud #include <uvm/uvm_extern.h>
     60   1.1   reinoud #include <arm/arm32/pmap.h>
     61   1.9   reinoud #include <arm/cpufunc.h>
     62   1.2   thorpej #include <machine/intr.h>
     63   1.1   reinoud 
     64   1.1   reinoud /* for vidc_mode ... needs to be MI indepenent one day */
     65   1.1   reinoud #include <arm/iomd/vidc.h>
     66   1.1   reinoud #include <arm/iomd/vidc20config.h>
     67   1.9   reinoud #include <arm/iomd/vidcvideo.h>
     68   1.1   reinoud #include <machine/bootconfig.h>
     69   1.9   reinoud 
     70   1.1   reinoud /* FOR DEBUG */
     71   1.1   reinoud extern videomemory_t videomemory;
     72   1.1   reinoud 
     73   1.1   reinoud struct hwcmap256 {
     74   1.1   reinoud #define	CMAP_SIZE	256	/* 256 R/G/B entries */
     75   1.1   reinoud 	u_int8_t r[CMAP_SIZE];
     76   1.1   reinoud 	u_int8_t g[CMAP_SIZE];
     77   1.1   reinoud 	u_int8_t b[CMAP_SIZE];
     78   1.1   reinoud };
     79   1.1   reinoud 
     80   1.1   reinoud 
     81   1.1   reinoud /* XXX for CURSOR_MAX_WIDTH = 32 */
     82   1.1   reinoud struct hwcursor32 {
     83   1.1   reinoud 	struct wsdisplay_curpos cc_pos;
     84   1.1   reinoud 	struct wsdisplay_curpos cc_hot;
     85   1.1   reinoud 	struct wsdisplay_curpos cc_size;
     86   1.1   reinoud 	struct wsdisplay_curpos cc_magic;
     87   1.1   reinoud 	u_int8_t cc_color[6];		/* how many? */
     88   1.1   reinoud 	u_int32_t cc_image[(CURSOR_MAX_WIDTH/4) * CURSOR_MAX_HEIGHT];
     89   1.1   reinoud 	u_int32_t cc_mask[(CURSOR_MAX_WIDTH/4) * CURSOR_MAX_HEIGHT];
     90   1.1   reinoud };
     91   1.1   reinoud 
     92   1.1   reinoud 
     93   1.9   reinoud struct fb_devconfig {
     94  1.11   reinoud 	vaddr_t dc_vaddr;		/* memory space virtual base address */
     95  1.11   reinoud 	paddr_t dc_paddr;		/* memory space physical base address */
     96  1.11   reinoud 	vsize_t dc_size;		/* size of slot memory */
     97  1.11   reinoud 	int	dc_wid;			/* width of frame buffer */
     98  1.11   reinoud 	int	dc_ht;			/* height of frame buffer */
     99  1.11   reinoud 	int	dc_log2_depth;		/* log2 of bits per pixel */
    100  1.11   reinoud 	int	dc_depth;		/* depth, bits per pixel */
    101  1.11   reinoud 	int	dc_rowbytes;		/* bytes in a FB scan line */
    102  1.11   reinoud 	vaddr_t	dc_videobase;		/* base of flat frame buffer */
    103  1.11   reinoud 	int	dc_blanked;		/* currently has video disabled */
    104  1.11   reinoud 	void   *dc_hwscroll_cookie;	/* cookie for hardware scroll */
    105  1.11   reinoud 
    106  1.11   reinoud 	int	dc_curenb;		/* is cursor sprite enabled ?	*/
    107  1.11   reinoud 	int	dc_changed;		/* need update of hardware	*/
    108  1.11   reinoud 	int	dc_writeback_delay;	/* Screenarea write back vsync counter */
    109   1.9   reinoud #define	WSDISPLAY_CMAP_DOLUT	0x20
    110   1.9   reinoud #define WSDISPLAY_VIDEO_ONOFF	0x40
    111   1.9   reinoud #define WSDISPLAY_WB_COUNTER	0x80
    112   1.9   reinoud 
    113  1.11   reinoud 	struct hwcmap256	dc_cmap;/* software copy of colormap	*/
    114  1.11   reinoud 	struct hwcursor32	dc_cursor;/* software copy of cursor	*/
    115   1.9   reinoud 
    116   1.9   reinoud 	struct vidc_mode	mode_info;
    117   1.9   reinoud 	struct rasops_info	rinfo;
    118   1.9   reinoud 
    119   1.9   reinoud 	struct wsdisplay_emulops orig_ri_ops;	/* Rasops functions for deligation */
    120   1.9   reinoud };
    121   1.9   reinoud 
    122   1.9   reinoud 
    123   1.1   reinoud struct vidcvideo_softc {
    124   1.1   reinoud 	struct device sc_dev;
    125   1.9   reinoud 	struct fb_devconfig *sc_dc;	/* device configuration		*/
    126   1.9   reinoud 	int nscreens;			/* number of screens configured */
    127   1.1   reinoud };
    128   1.1   reinoud 
    129   1.1   reinoud 
    130   1.1   reinoud /* XXX has to go XXX */
    131   1.1   reinoud #define	CX_MAGIC_X	220
    132   1.1   reinoud #define	CX_MAGIC_Y 	35
    133   1.1   reinoud #define	CX_FB_OFFSET	0x000000
    134   1.1   reinoud #define	CX_FB_SIZE	0x100000
    135   1.1   reinoud #define	CX_BT459_OFFSET	0x200000
    136   1.1   reinoud #define	CX_OFFSET_IREQ	0x300000	/* Interrupt req. control */
    137   1.1   reinoud /* XXX till here XXX */
    138   1.1   reinoud 
    139   1.1   reinoud 
    140   1.1   reinoud /* Function prototypes for glue */
    141  1.25     bjh21 static int  vidcvideo_match(struct device *, struct cfdata *, void *);
    142  1.25     bjh21 static void vidcvideo_attach(struct device *, struct device *, void *);
    143   1.1   reinoud 
    144   1.1   reinoud 
    145   1.1   reinoud /* config glue */
    146  1.15   thorpej CFATTACH_DECL(vidcvideo, sizeof(struct vidcvideo_softc),
    147  1.16   thorpej     vidcvideo_match, vidcvideo_attach, NULL, NULL);
    148   1.1   reinoud 
    149   1.1   reinoud static struct fb_devconfig vidcvideo_console_dc;
    150   1.1   reinoud static int vidcvideo_is_console;
    151   1.1   reinoud 
    152   1.1   reinoud 
    153   1.1   reinoud static struct wsscreen_descr vidcvideo_stdscreen = {
    154   1.1   reinoud 	"std", 0, 0,
    155   1.1   reinoud 	0, /* textops */
    156   1.1   reinoud 	0, 0,
    157   1.1   reinoud 	WSSCREEN_REVERSE
    158   1.1   reinoud };
    159   1.1   reinoud 
    160   1.1   reinoud static const struct wsscreen_descr *_vidcvideo_scrlist[] = {
    161   1.1   reinoud 	&vidcvideo_stdscreen,
    162   1.1   reinoud };
    163   1.1   reinoud 
    164   1.1   reinoud static const struct wsscreen_list vidcvideo_screenlist = {
    165  1.25     bjh21 	sizeof(_vidcvideo_scrlist) / sizeof(struct wsscreen_descr *),
    166  1.25     bjh21 	_vidcvideo_scrlist
    167   1.1   reinoud };
    168   1.1   reinoud 
    169  1.25     bjh21 static int	vidcvideoioctl(void *, void *, u_long, caddr_t, int,
    170  1.25     bjh21     struct lwp *);
    171  1.25     bjh21 static paddr_t	vidcvideommap(void *, void *, off_t, int);
    172  1.25     bjh21 
    173  1.25     bjh21 static int	vidcvideo_alloc_screen(void *, const struct wsscreen_descr *,
    174  1.25     bjh21     void **, int *, int *, long *);
    175  1.25     bjh21 static void	vidcvideo_free_screen(void *, void *);
    176  1.25     bjh21 static int	vidcvideo_show_screen(void *, void *, int,
    177  1.25     bjh21 				     void (*) (void *, int, int), void *);
    178   1.1   reinoud 
    179   1.1   reinoud static const struct wsdisplay_accessops vidcvideo_accessops = {
    180   1.1   reinoud 	vidcvideoioctl,
    181   1.1   reinoud 	vidcvideommap,
    182   1.1   reinoud 	vidcvideo_alloc_screen,
    183   1.1   reinoud 	vidcvideo_free_screen,
    184   1.1   reinoud 	vidcvideo_show_screen,
    185  1.17   reinoud 	NULL, /* load_font	*/
    186  1.23      jmmv 	NULL  /* pollc		*/
    187   1.1   reinoud };
    188   1.1   reinoud 
    189   1.6   reinoud 
    190   1.1   reinoud /* Function prototypes */
    191  1.25     bjh21 int         vidcvideo_cnattach(vaddr_t);
    192  1.25     bjh21 static void vidcvideo_colourmap_and_cursor_init(struct fb_devconfig *);
    193   1.1   reinoud 
    194  1.25     bjh21 static int  get_cmap(struct vidcvideo_softc *, struct wsdisplay_cmap *);
    195  1.25     bjh21 static int  set_cmap(struct vidcvideo_softc *, struct wsdisplay_cmap *);
    196  1.25     bjh21 static int  set_cursor(struct vidcvideo_softc *, struct wsdisplay_cursor *);
    197  1.25     bjh21 static int  get_cursor(struct vidcvideo_softc *, struct wsdisplay_cursor *);
    198  1.25     bjh21 static void set_curpos(struct vidcvideo_softc *, struct wsdisplay_curpos *);
    199  1.25     bjh21 static void vidcvideo_getdevconfig(vaddr_t, struct fb_devconfig *);
    200   1.1   reinoud 
    201  1.25     bjh21 static int  vidcvideointr(void *);
    202  1.25     bjh21 static void vidcvideo_config_wscons(struct fb_devconfig *);
    203   1.1   reinoud 
    204   1.6   reinoud 
    205   1.1   reinoud /* Acceleration function prototypes */
    206  1.25     bjh21 static void vv_copyrows(void *, int, int, int);
    207  1.25     bjh21 static void vv_eraserows(void *, int, int, long);
    208  1.25     bjh21 static void vv_putchar(void *c, int row, int col, u_int uc, long attr);
    209   1.1   reinoud 
    210   1.1   reinoud 
    211   1.1   reinoud static int
    212   1.1   reinoud vidcvideo_match(parent, match, aux)
    213   1.1   reinoud 	struct device *parent;
    214   1.1   reinoud 	struct cfdata *match;
    215   1.1   reinoud 	void *aux;
    216   1.1   reinoud {
    217  1.25     bjh21 
    218   1.1   reinoud 	/* Can't probe AFAIK ; how ? */
    219  1.25     bjh21 	return 1;
    220   1.1   reinoud }
    221   1.1   reinoud 
    222   1.1   reinoud 
    223   1.1   reinoud static void
    224  1.25     bjh21 vidcvideo_getdevconfig(vaddr_t dense_addr, struct fb_devconfig *dc)
    225   1.1   reinoud {
    226  1.25     bjh21 
    227   1.1   reinoud 	dc->dc_vaddr = dense_addr;
    228  1.11   reinoud 	(void) pmap_extract(pmap_kernel(), dc->dc_vaddr, &(dc->dc_paddr));
    229   1.1   reinoud 
    230   1.1   reinoud 	vidcvideo_getmode(&dc->mode_info);
    231   1.1   reinoud 
    232   1.1   reinoud 	dc->dc_wid = dc->mode_info.hder;
    233   1.1   reinoud 	dc->dc_ht = dc->mode_info.vder;
    234   1.1   reinoud 	dc->dc_log2_depth = dc->mode_info.log2_bpp;
    235   1.1   reinoud 	dc->dc_depth = 1 << dc->dc_log2_depth;
    236   1.1   reinoud 	dc->dc_videobase = dc->dc_vaddr;
    237   1.1   reinoud 	dc->dc_blanked = 0;
    238   1.1   reinoud 
    239   1.1   reinoud 	/* this should/could be done somewhat more elegant! */
    240   1.1   reinoud 	switch (dc->dc_depth) {
    241   1.1   reinoud 		case 1:
    242   1.1   reinoud 			dc->dc_rowbytes = dc->dc_wid / 8;
    243   1.1   reinoud 			break;
    244   1.1   reinoud 		case 2:
    245   1.1   reinoud 			dc->dc_rowbytes = dc->dc_wid / 4;
    246   1.1   reinoud 			break;
    247   1.1   reinoud 		case 4:
    248   1.1   reinoud 			dc->dc_rowbytes = dc->dc_wid / 2;
    249   1.1   reinoud 			break;
    250   1.1   reinoud 		case 8:
    251   1.1   reinoud 			dc->dc_rowbytes = dc->dc_wid;
    252   1.1   reinoud 			break;
    253   1.1   reinoud 		case 16:
    254   1.1   reinoud 			dc->dc_rowbytes = dc->dc_wid * 2;
    255   1.1   reinoud 			break;
    256   1.1   reinoud 		case 32:
    257   1.1   reinoud 			dc->dc_rowbytes = dc->dc_wid * 4;
    258   1.1   reinoud 			break;
    259   1.1   reinoud 		default:
    260   1.1   reinoud 			printf("Unknown colour depth %d ... what to do ?", dc->dc_depth);
    261   1.1   reinoud 			break;
    262  1.25     bjh21 	}
    263   1.1   reinoud 
    264   1.1   reinoud 	/* euhm... correct ? i.e. not complete VIDC memory */
    265   1.1   reinoud 	dc->dc_size = dc->mode_info.vder * dc->dc_rowbytes;
    266   1.1   reinoud 
    267   1.1   reinoud 	/* initialize colormap and cursor resource */
    268   1.1   reinoud 	vidcvideo_colourmap_and_cursor_init(dc);
    269   1.1   reinoud 
    270   1.1   reinoud 	dc->rinfo.ri_flg    = 0; /* RI_CENTER; */
    271   1.1   reinoud 	dc->rinfo.ri_depth  = dc->dc_depth;
    272   1.1   reinoud 	dc->rinfo.ri_bits   = (void *) dc->dc_videobase;
    273   1.1   reinoud 	dc->rinfo.ri_width  = dc->dc_wid;
    274   1.1   reinoud 	dc->rinfo.ri_height = dc->dc_ht;
    275   1.1   reinoud 	dc->rinfo.ri_stride = dc->dc_rowbytes;
    276   1.9   reinoud 	dc->rinfo.ri_hw	    = dc;		/* link back */
    277   1.9   reinoud 
    278   1.9   reinoud 	/* intitialise miscelanious */
    279   1.9   reinoud 	dc->dc_writeback_delay = 0;
    280   1.1   reinoud }
    281   1.1   reinoud 
    282   1.1   reinoud 
    283   1.1   reinoud static void
    284  1.25     bjh21 vidcvideo_config_wscons(struct fb_devconfig *dc)
    285   1.1   reinoud {
    286   1.4        ad 	int i, cookie, font_not_locked;
    287   1.1   reinoud 
    288  1.25     bjh21 	/*
    289  1.25     bjh21 	 * clear the screen ; why not a memset ? - it was this way so
    290  1.25     bjh21 	 * keep it for now
    291  1.25     bjh21 	 */
    292   1.1   reinoud 	for (i = 0; i < dc->dc_ht * dc->dc_rowbytes; i += sizeof(u_int32_t))
    293   1.1   reinoud 		*(u_int32_t *)(dc->dc_videobase + i) = 0x0;
    294   1.1   reinoud 
    295   1.1   reinoud 	wsfont_init();
    296   1.1   reinoud 
    297   1.1   reinoud 	/* prefer 8 pixel wide font */
    298   1.4        ad 	cookie = wsfont_find(NULL, 8, 0, 0, WSDISPLAY_FONTORDER_L2R,
    299   1.4        ad 	    WSDISPLAY_FONTORDER_L2R);
    300   1.4        ad 	if (cookie <= 0)
    301   1.4        ad 		cookie = wsfont_find(NULL, 0, 0, 0, WSDISPLAY_FONTORDER_L2R,
    302   1.4        ad 		    WSDISPLAY_FONTORDER_L2R);
    303   1.1   reinoud 
    304   1.1   reinoud 	if (cookie < 0) {
    305   1.1   reinoud 		/* Can I even print here ? */
    306   1.1   reinoud 		printf("Font table empty! exiting\n");
    307   1.1   reinoud 		return;
    308  1.25     bjh21 	}
    309   1.1   reinoud 
    310   1.4        ad 	font_not_locked = wsfont_lock(cookie, &dc->rinfo.ri_font);
    311   1.1   reinoud 
    312   1.1   reinoud 	dc->rinfo.ri_wsfcookie = cookie;
    313   1.1   reinoud 
    314   1.1   reinoud 	rasops_init(&dc->rinfo,
    315  1.25     bjh21 	    dc->rinfo.ri_height / dc->rinfo.ri_font->fontheight,
    316  1.25     bjh21 	    dc->rinfo.ri_width / dc->rinfo.ri_font->fontwidth);
    317   1.1   reinoud 
    318   1.6   reinoud 	/*
    319   1.6   reinoud 	 * Provide a hook for the acceleration functions and make a copy of the
    320   1.6   reinoud 	 * original rasops functions for passing on calls
    321   1.6   reinoud 	 */
    322   1.6   reinoud 	dc->rinfo.ri_hw = dc;
    323  1.25     bjh21 	memcpy(&(dc->orig_ri_ops), &(dc->rinfo.ri_ops),
    324  1.25     bjh21 	    sizeof(struct wsdisplay_emulops));
    325   1.6   reinoud 
    326   1.6   reinoud 	/* add our accelerated functions */
    327   1.1   reinoud 	dc->rinfo.ri_ops.eraserows = vv_eraserows;
    328   1.1   reinoud 	dc->rinfo.ri_ops.copyrows  = vv_copyrows;
    329   1.1   reinoud 
    330   1.6   reinoud 	/* add the extra activity measuring functions; they just delegate on */
    331   1.6   reinoud 	dc->rinfo.ri_ops.putchar   = vv_putchar;
    332   1.6   reinoud 
    333   1.1   reinoud 	/* XXX shouldn't be global */
    334   1.1   reinoud 	vidcvideo_stdscreen.nrows = dc->rinfo.ri_rows;
    335   1.1   reinoud 	vidcvideo_stdscreen.ncols = dc->rinfo.ri_cols;
    336   1.1   reinoud 	vidcvideo_stdscreen.textops = &dc->rinfo.ri_ops;
    337   1.1   reinoud 	vidcvideo_stdscreen.capabilities = dc->rinfo.ri_caps;
    338   1.1   reinoud 
    339  1.25     bjh21 	if (font_not_locked)
    340   1.1   reinoud 		printf(" warning ... couldn't lock font! ");
    341   1.1   reinoud }
    342   1.1   reinoud 
    343   1.1   reinoud 
    344   1.1   reinoud static void
    345  1.25     bjh21 vidcvideo_attach(struct device *parent, struct device *self, void *aux)
    346   1.1   reinoud {
    347   1.1   reinoud 	struct vidcvideo_softc *sc = (struct vidcvideo_softc *)self;
    348   1.9   reinoud 	struct fb_devconfig *dc;
    349   1.1   reinoud 	struct wsemuldisplaydev_attach_args waa;
    350   1.1   reinoud 	struct hwcmap256 *cm;
    351   1.1   reinoud 	const u_int8_t *p;
    352   1.6   reinoud 	long defattr;
    353   1.1   reinoud 	int index;
    354   1.1   reinoud 
    355   1.1   reinoud 	vidcvideo_init();
    356   1.1   reinoud 	if (sc->nscreens == 0) {
    357   1.6   reinoud 		sc->sc_dc = &vidcvideo_console_dc;
    358   1.6   reinoud 		if (!vidcvideo_is_console) {
    359   1.6   reinoud 			printf(" : non console (no kbd yet) ");
    360   1.6   reinoud 			vidcvideo_getdevconfig(videomemory.vidm_vbase, sc->sc_dc);
    361   1.6   reinoud 			vidcvideo_config_wscons(sc->sc_dc);
    362  1.13  junyoung 			(*sc->sc_dc->rinfo.ri_ops.allocattr)(&sc->sc_dc->rinfo, 0, 0, 0, &defattr);
    363  1.25     bjh21 		}
    364   1.1   reinoud 		sc->nscreens = 1;
    365   1.1   reinoud 	} else {
    366  1.24       snj 			printf(": already attached ... can't cope with this\n");
    367   1.1   reinoud 			return;
    368  1.25     bjh21 	}
    369   1.1   reinoud 
    370   1.9   reinoud 	dc = sc->sc_dc;
    371   1.9   reinoud 
    372   1.1   reinoud 	vidcvideo_printdetails();
    373   1.9   reinoud 	printf(": using %d x %d, %dbpp\n", dc->dc_wid, dc->dc_ht,
    374   1.9   reinoud 	    dc->dc_depth);
    375   1.1   reinoud 
    376   1.1   reinoud 	/* initialise rasops */
    377   1.9   reinoud 	cm = &dc->dc_cmap;
    378   1.1   reinoud 	p = rasops_cmap;
    379   1.1   reinoud 	for (index = 0; index < CMAP_SIZE; index++, p += 3) {
    380   1.1   reinoud 		cm->r[index] = p[0];
    381   1.1   reinoud 		cm->g[index] = p[1];
    382   1.1   reinoud 		cm->b[index] = p[2];
    383   1.1   reinoud 	}
    384   1.1   reinoud 
    385   1.1   reinoud 	/* what does these do ? */
    386   1.9   reinoud 	dc->dc_cursor.cc_magic.x = CX_MAGIC_X;
    387   1.9   reinoud 	dc->dc_cursor.cc_magic.y = CX_MAGIC_Y;
    388   1.1   reinoud 
    389   1.1   reinoud 	/* set up interrupt flags */
    390   1.9   reinoud 	dc->dc_changed |= WSDISPLAY_CMAP_DOLUT;
    391   1.1   reinoud 
    392   1.6   reinoud 	/*
    393   1.6   reinoud 	 * Set up a link in the rasops structure to our device config
    394   1.6   reinoud 	 * for acceleration stuff
    395   1.6   reinoud 	 */
    396   1.9   reinoud 	dc->rinfo.ri_hw = sc->sc_dc;
    397   1.1   reinoud 
    398   1.1   reinoud 	/* Establish an interrupt handler, and clear any pending interrupts */
    399   1.9   reinoud 	intr_claim(IRQ_FLYBACK, IPL_TTY, "vblank", vidcvideointr, dc);
    400   1.1   reinoud 
    401   1.1   reinoud 	waa.console = (vidcvideo_is_console ? 1 : 0);
    402   1.1   reinoud 	waa.scrdata = &vidcvideo_screenlist;
    403   1.1   reinoud 	waa.accessops = &vidcvideo_accessops;
    404   1.1   reinoud 	waa.accesscookie = sc;
    405   1.1   reinoud 
    406   1.1   reinoud 	config_found(self, &waa, wsemuldisplaydevprint);
    407   1.1   reinoud }
    408   1.1   reinoud 
    409   1.1   reinoud 
    410   1.1   reinoud static int
    411  1.25     bjh21 vidcvideoioctl(void *v, void *vs, u_long cmd, caddr_t data, int flag,
    412  1.25     bjh21     struct lwp *l)
    413   1.1   reinoud {
    414   1.1   reinoud 	struct vidcvideo_softc *sc = v;
    415   1.1   reinoud 	struct fb_devconfig *dc = sc->sc_dc;
    416   1.1   reinoud 	int state;
    417   1.1   reinoud 
    418   1.1   reinoud 	switch (cmd) {
    419   1.1   reinoud 	case WSDISPLAYIO_GTYPE:
    420   1.1   reinoud 		*(u_int *)data = WSDISPLAY_TYPE_VIDC;
    421  1.25     bjh21 		return 0;
    422   1.1   reinoud 
    423   1.1   reinoud 	case WSDISPLAYIO_GINFO:
    424   1.1   reinoud #define	wsd_fbip ((struct wsdisplay_fbinfo *)data)
    425   1.9   reinoud 		wsd_fbip->height = dc->dc_ht;
    426   1.9   reinoud 		wsd_fbip->width  = dc->dc_wid;
    427   1.9   reinoud 		wsd_fbip->depth  = dc->dc_depth;
    428   1.1   reinoud 		wsd_fbip->cmsize = CMAP_SIZE;
    429   1.1   reinoud #undef fbt
    430  1.25     bjh21 		return 0;
    431   1.1   reinoud 
    432   1.1   reinoud 	case WSDISPLAYIO_GETCMAP:
    433   1.1   reinoud 		return get_cmap(sc, (struct wsdisplay_cmap *)data);
    434   1.1   reinoud 
    435   1.1   reinoud 	case WSDISPLAYIO_PUTCMAP:
    436   1.1   reinoud 		return set_cmap(sc, (struct wsdisplay_cmap *)data);
    437   1.1   reinoud 
    438   1.1   reinoud 	case WSDISPLAYIO_SVIDEO:
    439   1.1   reinoud 		state = *(int *)data;
    440   1.1   reinoud 		dc->dc_blanked = (state == WSDISPLAYIO_VIDEO_OFF);
    441   1.9   reinoud 		dc->dc_changed |= WSDISPLAY_VIDEO_ONOFF;
    442   1.1   reinoud 		/* done on video blank */
    443  1.25     bjh21 		return 0;
    444   1.1   reinoud 
    445   1.1   reinoud 	case WSDISPLAYIO_GVIDEO:
    446   1.1   reinoud 		*(u_int *)data = dc->dc_blanked ?
    447   1.1   reinoud 		    WSDISPLAYIO_VIDEO_OFF : WSDISPLAYIO_VIDEO_ON;
    448  1.25     bjh21 		return 0;
    449   1.1   reinoud 
    450   1.1   reinoud 	case WSDISPLAYIO_GCURPOS:
    451   1.9   reinoud 		*(struct wsdisplay_curpos *)data = dc->dc_cursor.cc_pos;
    452  1.25     bjh21 		return 0;
    453   1.1   reinoud 
    454   1.1   reinoud 	case WSDISPLAYIO_SCURPOS:
    455   1.1   reinoud 		set_curpos(sc, (struct wsdisplay_curpos *)data);
    456   1.9   reinoud 		dc->dc_changed |= WSDISPLAY_CURSOR_DOPOS;
    457  1.25     bjh21 		return 0;
    458   1.1   reinoud 
    459   1.1   reinoud 	case WSDISPLAYIO_GCURMAX:
    460   1.1   reinoud 		((struct wsdisplay_curpos *)data)->x = CURSOR_MAX_WIDTH;
    461   1.1   reinoud 		((struct wsdisplay_curpos *)data)->y = CURSOR_MAX_HEIGHT;
    462  1.25     bjh21 		return 0;
    463   1.1   reinoud 
    464   1.1   reinoud 	case WSDISPLAYIO_GCURSOR:
    465   1.1   reinoud 		return get_cursor(sc, (struct wsdisplay_cursor *)data);
    466   1.1   reinoud 
    467   1.1   reinoud 	case WSDISPLAYIO_SCURSOR:
    468   1.1   reinoud 		return set_cursor(sc, (struct wsdisplay_cursor *)data);
    469   1.1   reinoud 
    470   1.1   reinoud 	case WSDISPLAYIO_SMODE:
    471   1.1   reinoud 		state = *(int *)data;
    472  1.25     bjh21 		if (state == WSDISPLAYIO_MODE_MAPPED)
    473   1.1   reinoud 			dc->dc_hwscroll_cookie = vidcvideo_hwscroll_reset();
    474  1.25     bjh21 		if (state == WSDISPLAYIO_MODE_EMUL)
    475   1.1   reinoud 			vidcvideo_hwscroll_back(dc->dc_hwscroll_cookie);
    476   1.1   reinoud 		vidcvideo_progr_scroll();
    477  1.11   reinoud 
    478  1.25     bjh21 		return 0;
    479   1.1   reinoud 	}
    480   1.5    atatat 	return EPASSTHROUGH;
    481   1.1   reinoud }
    482   1.1   reinoud 
    483   1.1   reinoud 
    484   1.1   reinoud paddr_t
    485  1.25     bjh21 vidcvideommap(void *v, void *vs, off_t offset, int prot)
    486   1.1   reinoud {
    487   1.1   reinoud 	struct vidcvideo_softc *sc = v;
    488   1.1   reinoud 
    489   1.1   reinoud 	if (offset >= sc->sc_dc->dc_size || offset < 0)
    490  1.25     bjh21 		return -1;
    491  1.11   reinoud 
    492  1.11   reinoud 	return arm_btop(sc->sc_dc->dc_paddr + offset);
    493   1.1   reinoud }
    494   1.1   reinoud 
    495   1.1   reinoud 
    496   1.1   reinoud static int
    497  1.25     bjh21 vidcvideo_alloc_screen(void *v, const struct wsscreen_descr *type,
    498  1.25     bjh21     void **cookiep, int *curxp, int *curyp, long *attrp)
    499   1.1   reinoud {
    500   1.1   reinoud 	struct vidcvideo_softc *sc = v;
    501   1.9   reinoud 	struct fb_devconfig *dc = sc->sc_dc;
    502   1.1   reinoud 	long defattr;
    503   1.1   reinoud 
    504   1.6   reinoud 	/*
    505   1.6   reinoud 	 * One and just only one for now :( ... if the vidcconsole is not the
    506   1.6   reinoud 	 * console then this makes one wsconsole screen free for use !
    507   1.6   reinoud 	 */
    508   1.6   reinoud 	if ((sc->nscreens > 1) || vidcvideo_is_console)
    509  1.25     bjh21 		return ENOMEM;
    510   1.1   reinoud 
    511   1.6   reinoud 	/* Add the screen to wscons to control */
    512   1.9   reinoud 	*cookiep = &dc->rinfo;
    513   1.1   reinoud 	*curxp = 0;
    514   1.1   reinoud 	*curyp = 0;
    515   1.9   reinoud 	vidcvideo_getdevconfig(videomemory.vidm_vbase, dc);
    516   1.9   reinoud 	vidcvideo_config_wscons(dc);
    517  1.13  junyoung 	(*dc->rinfo.ri_ops.allocattr)(&dc->rinfo, 0, 0, 0, &defattr);
    518   1.1   reinoud 	*attrp = defattr;
    519   1.1   reinoud 	sc->nscreens++;
    520   1.6   reinoud 
    521  1.25     bjh21 	return 0;
    522   1.1   reinoud }
    523   1.1   reinoud 
    524   1.1   reinoud 
    525   1.1   reinoud static void
    526  1.25     bjh21 vidcvideo_free_screen(void *v, void *cookie)
    527   1.1   reinoud {
    528   1.1   reinoud 	struct vidcvideo_softc *sc = v;
    529   1.1   reinoud 
    530   1.1   reinoud 	if (sc->sc_dc == &vidcvideo_console_dc)
    531   1.1   reinoud 		panic("vidcvideo_free_screen: console");
    532   1.1   reinoud 
    533   1.1   reinoud 	sc->nscreens--;
    534   1.1   reinoud }
    535   1.1   reinoud 
    536   1.1   reinoud 
    537   1.1   reinoud static int
    538  1.25     bjh21 vidcvideo_show_screen(void *v, void *cookie, int waitok,
    539  1.25     bjh21     void (*cb)(void *, int, int), void *cbarg)
    540   1.1   reinoud {
    541   1.1   reinoud 
    542  1.25     bjh21 	return 0;
    543   1.1   reinoud }
    544   1.1   reinoud 
    545   1.1   reinoud 
    546   1.1   reinoud /* EXPORT */ int
    547  1.25     bjh21 vidcvideo_cnattach(vaddr_t addr)
    548   1.1   reinoud {
    549   1.1   reinoud 	struct fb_devconfig *dcp = &vidcvideo_console_dc;
    550   1.1   reinoud 	long defattr;
    551   1.1   reinoud 
    552   1.1   reinoud 	vidcvideo_init();
    553   1.1   reinoud 	vidcvideo_getdevconfig(addr, dcp);
    554   1.1   reinoud 	vidcvideo_config_wscons(dcp);
    555  1.13  junyoung 	(*dcp->rinfo.ri_ops.allocattr)(&dcp->rinfo, 0, 0, 0, &defattr);
    556   1.1   reinoud 	wsdisplay_cnattach(&vidcvideo_stdscreen, &dcp->rinfo, 0, 0, defattr);
    557   1.1   reinoud 
    558   1.1   reinoud 	vidcvideo_is_console = 1;
    559  1.25     bjh21 	return 0;
    560   1.1   reinoud }
    561   1.1   reinoud 
    562   1.1   reinoud 
    563   1.1   reinoud static int
    564  1.25     bjh21 vidcvideointr(void *arg)
    565   1.1   reinoud {
    566   1.9   reinoud 	struct fb_devconfig *dc = arg;
    567   1.9   reinoud 	int v, cleared = 0;
    568   1.1   reinoud 
    569   1.9   reinoud 	v = dc->dc_changed;
    570   1.1   reinoud 	if (v == 0)
    571  1.25     bjh21 		return 1;
    572   1.1   reinoud 
    573   1.9   reinoud 	if (v & WSDISPLAY_WB_COUNTER) {
    574   1.9   reinoud 	    	dc->dc_writeback_delay--;
    575   1.9   reinoud 		if (dc->dc_writeback_delay == 0) {
    576   1.9   reinoud 		    	cpu_dcache_wb_range(dc->dc_vaddr, dc->dc_size);
    577   1.9   reinoud 			cleared |= WSDISPLAY_WB_COUNTER;
    578  1.25     bjh21 		}
    579   1.9   reinoud 	}
    580   1.9   reinoud 
    581   1.1   reinoud 	if (v & WSDISPLAY_CMAP_DOLUT) {
    582   1.9   reinoud 		struct hwcmap256 *cm = &dc->dc_cmap;
    583   1.1   reinoud 		int index;
    584   1.1   reinoud 
    585   1.9   reinoud 		if (dc->dc_depth == 4) {
    586   1.1   reinoud 			/* palette for 4 bpp is different from 8bpp */
    587   1.1   reinoud 			vidcvideo_write(VIDC_PALREG, 0x00000000);
    588   1.9   reinoud 			for (index=0; index < (1 << dc->dc_depth); index++)
    589   1.1   reinoud 				vidcvideo_write(VIDC_PALETTE,
    590   1.1   reinoud 					VIDC_COL(cm->r[index],
    591   1.1   reinoud 						 cm->g[index],
    592   1.1   reinoud 						 cm->b[index]));
    593  1.25     bjh21 		}
    594   1.1   reinoud 
    595   1.9   reinoud 		if (dc->dc_depth == 8) {
    596  1.25     bjh21 			/*
    597  1.25     bjh21 			 * dunno what to do in more than 8bpp
    598  1.25     bjh21 			 * palettes only make sense in 8bpp and less modes
    599  1.25     bjh21 			 * on VIDC
    600  1.25     bjh21 			 */
    601   1.1   reinoud 			vidcvideo_write(VIDC_PALREG, 0x00000000);
    602   1.1   reinoud 			for (index = 0; index < CMAP_SIZE; index++) {
    603   1.1   reinoud 				vidcvideo_write(VIDC_PALETTE,
    604  1.25     bjh21 					VIDC_COL(cm->r[index], cm->g[index],
    605  1.25     bjh21 					    cm->b[index]));
    606  1.25     bjh21 			}
    607  1.25     bjh21 		}
    608   1.9   reinoud 		cleared |= WSDISPLAY_CMAP_DOLUT;
    609   1.1   reinoud 	}
    610   1.1   reinoud 
    611   1.1   reinoud 	if (v & WSDISPLAY_VIDEO_ONOFF) {
    612   1.9   reinoud 		vidcvideo_blank(dc->dc_blanked);
    613   1.9   reinoud 		cleared |= WSDISPLAY_VIDEO_ONOFF;
    614  1.25     bjh21 	}
    615   1.1   reinoud 
    616   1.1   reinoud 	if (v & (WSDISPLAY_CURSOR_DOPOS | WSDISPLAY_CURSOR_DOHOT)) {
    617   1.1   reinoud 		int x, y;
    618   1.9   reinoud 		x = dc->dc_cursor.cc_pos.x - dc->dc_cursor.cc_hot.x;
    619   1.9   reinoud 		y = dc->dc_cursor.cc_pos.y - dc->dc_cursor.cc_hot.y;
    620   1.1   reinoud 
    621   1.1   reinoud 		vidcvideo_updatecursor(x, y);
    622   1.9   reinoud 		cleared |= WSDISPLAY_CURSOR_DOPOS | WSDISPLAY_CURSOR_DOHOT;
    623  1.25     bjh21 	}
    624   1.1   reinoud 
    625   1.1   reinoud 	if (v & WSDISPLAY_CURSOR_DOCUR) {
    626   1.9   reinoud 		vidcvideo_enablecursor(dc->dc_curenb);
    627   1.9   reinoud 		cleared |= WSDISPLAY_CURSOR_DOCUR;
    628  1.25     bjh21 	}
    629   1.1   reinoud 
    630   1.1   reinoud 
    631   1.1   reinoud #if 0	/* XXX snip XXX */
    632   1.1   reinoud 	/* XXX kept here as an archive for now XXX */
    633   1.1   reinoud 
    634   1.1   reinoud 	vdac = vidcvideobase + CX_BT459_OFFSET;
    635   1.1   reinoud 	v = sc->sc_changed;
    636   1.1   reinoud 	if (v & WSDISPLAY_CURSOR_DOCUR) {
    637   1.1   reinoud 		SELECT(vdac, BT459_IREG_CCR);
    638   1.1   reinoud 		REG(vdac, bt_reg) = (sc->sc_curenb) ? 0xc0 : 0x00;
    639   1.1   reinoud 	}
    640   1.1   reinoud 	if (v & (WSDISPLAY_CURSOR_DOPOS | WSDISPLAY_CURSOR_DOHOT)) {
    641   1.1   reinoud 		int x, y;
    642   1.1   reinoud 
    643   1.1   reinoud 		x = sc->sc_cursor.cc_pos.x - sc->sc_cursor.cc_hot.x;
    644   1.1   reinoud 		y = sc->sc_cursor.cc_pos.y - sc->sc_cursor.cc_hot.y;
    645   1.1   reinoud 
    646   1.1   reinoud 		x += sc->sc_cursor.cc_magic.x;
    647   1.1   reinoud 		y += sc->sc_cursor.cc_magic.y;
    648   1.1   reinoud 
    649   1.1   reinoud 		SELECT(vdac, BT459_IREG_CURSOR_X_LOW);
    650   1.1   reinoud 		REG(vdac, bt_reg) = x;		tc_wmb();
    651   1.1   reinoud 		REG(vdac, bt_reg) = x >> 8;	tc_wmb();
    652   1.1   reinoud 		REG(vdac, bt_reg) = y;		tc_wmb();
    653   1.1   reinoud 		REG(vdac, bt_reg) = y >> 8;	tc_wmb();
    654   1.1   reinoud 	}
    655   1.1   reinoud 	if (v & WSDISPLAY_CURSOR_DOCMAP) {
    656   1.1   reinoud 		u_int8_t *cp = sc->sc_cursor.cc_color;
    657   1.1   reinoud 
    658   1.1   reinoud 		SELECT(vdac, BT459_IREG_CCOLOR_2);
    659   1.1   reinoud 		REG(vdac, bt_reg) = cp[1];	tc_wmb();
    660   1.1   reinoud 		REG(vdac, bt_reg) = cp[3];	tc_wmb();
    661   1.1   reinoud 		REG(vdac, bt_reg) = cp[5];	tc_wmb();
    662   1.1   reinoud 
    663   1.1   reinoud 		REG(vdac, bt_reg) = cp[0];	tc_wmb();
    664   1.1   reinoud 		REG(vdac, bt_reg) = cp[2];	tc_wmb();
    665   1.1   reinoud 		REG(vdac, bt_reg) = cp[4];	tc_wmb();
    666   1.1   reinoud 	}
    667   1.1   reinoud 	if (v & WSDISPLAY_CURSOR_DOSHAPE) {
    668   1.1   reinoud 		u_int8_t *ip, *mp, img, msk;
    669   1.1   reinoud 		u_int8_t u;
    670   1.1   reinoud 		int bcnt;
    671   1.1   reinoud 
    672   1.1   reinoud 		ip = (u_int8_t *)sc->sc_cursor.cc_image;
    673   1.1   reinoud 		mp = (u_int8_t *)(sc->sc_cursor.cc_image + CURSOR_MAX_HEIGHT);
    674   1.1   reinoud 
    675   1.1   reinoud 		bcnt = 0;
    676   1.1   reinoud 		SELECT(vdac, BT459_IREG_CRAM_BASE+0);
    677   1.1   reinoud 		/* 64 pixel scan line is consisted with 16 byte cursor ram */
    678   1.1   reinoud 		while (bcnt < sc->sc_cursor.cc_size.y * 16) {
    679   1.1   reinoud 			/* pad right half 32 pixel when smaller than 33 */
    680   1.1   reinoud 			if ((bcnt & 0x8) && sc->sc_cursor.cc_size.x < 33) {
    681   1.1   reinoud 				REG(vdac, bt_reg) = 0; tc_wmb();
    682   1.1   reinoud 				REG(vdac, bt_reg) = 0; tc_wmb();
    683   1.1   reinoud 			}
    684   1.1   reinoud 			else {
    685   1.1   reinoud 				img = *ip++;
    686   1.1   reinoud 				msk = *mp++;
    687   1.1   reinoud 				img &= msk;	/* cookie off image */
    688   1.1   reinoud 				u = (msk & 0x0f) << 4 | (img & 0x0f);
    689   1.1   reinoud 				REG(vdac, bt_reg) = shuffle[u];	tc_wmb();
    690   1.1   reinoud 				u = (msk & 0xf0) | (img & 0xf0) >> 4;
    691   1.1   reinoud 				REG(vdac, bt_reg) = shuffle[u];	tc_wmb();
    692   1.1   reinoud 			}
    693   1.1   reinoud 			bcnt += 2;
    694   1.1   reinoud 		}
    695   1.1   reinoud 		/* pad unoccupied scan lines */
    696   1.1   reinoud 		while (bcnt < CURSOR_MAX_HEIGHT * 16) {
    697   1.1   reinoud 			REG(vdac, bt_reg) = 0; tc_wmb();
    698   1.1   reinoud 			REG(vdac, bt_reg) = 0; tc_wmb();
    699   1.1   reinoud 			bcnt += 2;
    700   1.1   reinoud 		}
    701   1.1   reinoud 	}
    702   1.1   reinoud #endif /* XXX snip XXX */
    703   1.1   reinoud 
    704   1.9   reinoud 	dc->dc_changed ^= cleared;
    705   1.9   reinoud 
    706  1.25     bjh21 	return 1;
    707   1.1   reinoud }
    708   1.1   reinoud 
    709   1.1   reinoud 
    710   1.1   reinoud static u_char ri_col_data[6][6] = {
    711   1.1   reinoud 	{ 0,  0,  0,   0,  0,  0},	/*  1 bpp */
    712   1.1   reinoud 	{ 0,  0,  0,   0,  0,  0},	/*  2 bpp */
    713   1.1   reinoud 	{ 0,  0,  0,   0,  0,  0},	/*  4 bpp */
    714   1.1   reinoud 	{ 0,  0,  0,   0,  0,  0},	/*  8 bpp */
    715  1.12     bjh21 	{ 6,  5,  5,   0,  6, 11},	/* 16 bpp */
    716   1.1   reinoud 	{ 8,  8,  8,   0,  8, 16},	/* 32 bpp */
    717   1.1   reinoud };
    718   1.1   reinoud 
    719   1.1   reinoud static void
    720  1.25     bjh21 vidcvideo_colourmap_and_cursor_init(struct fb_devconfig *dc)
    721   1.1   reinoud {
    722   1.1   reinoud 	struct rasops_info *ri = &dc->rinfo;
    723   1.1   reinoud 	u_char *rgbdat;
    724   1.1   reinoud 
    725   1.1   reinoud 	/* Whatever we do later... just make sure we have a
    726   1.1   reinoud 	 * sane palette to start with
    727   1.1   reinoud 	 */
    728   1.1   reinoud 	vidcvideo_stdpalette();
    729   1.1   reinoud 
    730   1.1   reinoud 	/* set up rgb bit pattern values for rasops_init */
    731   1.1   reinoud 	rgbdat = ri_col_data[dc->dc_log2_depth];
    732   1.1   reinoud 	ri->ri_rnum = rgbdat[0];
    733   1.1   reinoud 	ri->ri_gnum = rgbdat[1];
    734   1.1   reinoud 	ri->ri_bnum = rgbdat[2];
    735   1.1   reinoud 	ri->ri_rpos = rgbdat[3];
    736   1.1   reinoud 	ri->ri_gpos = rgbdat[4];
    737   1.1   reinoud 	ri->ri_bpos = rgbdat[5];
    738   1.1   reinoud }
    739   1.1   reinoud 
    740   1.1   reinoud 
    741   1.1   reinoud static int
    742  1.25     bjh21 get_cmap(struct vidcvideo_softc *sc, struct wsdisplay_cmap *p)
    743   1.1   reinoud {
    744   1.1   reinoud 	u_int index = p->index, count = p->count;
    745  1.20       chs 	int error;
    746   1.1   reinoud 
    747  1.14    itojun 	if (index >= CMAP_SIZE || count > CMAP_SIZE - index)
    748  1.25     bjh21 		return EINVAL;
    749   1.1   reinoud 
    750  1.20       chs 	error = copyout(&sc->sc_dc->dc_cmap.r[index], p->red, count);
    751  1.20       chs 	if (error)
    752  1.20       chs 		return error;
    753  1.20       chs 	error = copyout(&sc->sc_dc->dc_cmap.g[index], p->green, count);
    754  1.20       chs 	if (error)
    755  1.20       chs 		return error;
    756  1.20       chs 	error = copyout(&sc->sc_dc->dc_cmap.b[index], p->blue, count);
    757  1.20       chs 	return error;
    758   1.1   reinoud }
    759   1.1   reinoud 
    760   1.1   reinoud 
    761   1.1   reinoud static int
    762  1.25     bjh21 set_cmap(struct vidcvideo_softc *sc, struct wsdisplay_cmap *p)
    763   1.1   reinoud {
    764   1.9   reinoud     	struct fb_devconfig *dc = sc->sc_dc;
    765  1.20       chs 	struct hwcmap256 cmap;
    766   1.1   reinoud 	u_int index = p->index, count = p->count;
    767  1.20       chs 	int error;
    768   1.1   reinoud 
    769   1.1   reinoud 	if (index >= CMAP_SIZE || (index + count) > CMAP_SIZE)
    770  1.25     bjh21 		return EINVAL;
    771   1.1   reinoud 
    772  1.20       chs 	error = copyin(p->red, &cmap.r[index], count);
    773  1.20       chs 	if (error)
    774  1.20       chs 		return error;
    775  1.20       chs 	error = copyin(p->green, &cmap.g[index], count);
    776  1.20       chs 	if (error)
    777  1.20       chs 		return error;
    778  1.20       chs 	error = copyin(p->blue, &cmap.b[index], count);
    779  1.20       chs 	if (error)
    780  1.20       chs 		return error;
    781  1.20       chs 	memcpy(&dc->dc_cmap.r[index], &cmap.r[index], count);
    782  1.20       chs 	memcpy(&dc->dc_cmap.g[index], &cmap.g[index], count);
    783  1.20       chs 	memcpy(&dc->dc_cmap.b[index], &cmap.b[index], count);
    784   1.9   reinoud 	dc->dc_changed |= WSDISPLAY_CMAP_DOLUT;
    785  1.25     bjh21 	return 0;
    786   1.1   reinoud }
    787   1.1   reinoud 
    788   1.1   reinoud 
    789   1.1   reinoud static int
    790  1.25     bjh21 set_cursor(struct vidcvideo_softc *sc, struct wsdisplay_cursor *p)
    791   1.1   reinoud {
    792   1.9   reinoud #define	cc (&dc->dc_cursor)
    793   1.9   reinoud     	struct fb_devconfig *dc = sc->sc_dc;
    794  1.20       chs 	u_int v, index = 0, count = 0, icount = 0;
    795  1.20       chs 	uint8_t r[2], g[2], b[2], image[512], mask[512];
    796  1.20       chs 	int error;
    797  1.19        he 
    798  1.19        he 	/* XXX gcc does not detect identical conditions */
    799  1.19        he 	index = count = icount = 0;
    800   1.1   reinoud 
    801   1.1   reinoud 	v = p->which;
    802   1.1   reinoud 	if (v & WSDISPLAY_CURSOR_DOCMAP) {
    803   1.1   reinoud 		index = p->cmap.index;
    804   1.1   reinoud 		count = p->cmap.count;
    805  1.20       chs 		if (index >= CURSOR_MAX_COLOURS ||
    806  1.20       chs 		    (index + count) > CURSOR_MAX_COLOURS)
    807  1.25     bjh21 			return EINVAL;
    808  1.20       chs 		error = copyin(p->cmap.red, &r[index], count);
    809  1.20       chs 		if (error)
    810  1.20       chs 			return error;
    811  1.20       chs 		error = copyin(p->cmap.green, &g[index], count);
    812  1.20       chs 		if (error)
    813  1.20       chs 			return error;
    814  1.20       chs 		error = copyin(p->cmap.blue, &b[index], count);
    815  1.20       chs 		if (error)
    816  1.20       chs 			return error;
    817   1.1   reinoud 	}
    818   1.1   reinoud 	if (v & WSDISPLAY_CURSOR_DOSHAPE) {
    819  1.20       chs 		if (p->size.x > CURSOR_MAX_WIDTH ||
    820  1.20       chs 		    p->size.y > CURSOR_MAX_HEIGHT)
    821  1.25     bjh21 			return EINVAL;
    822   1.1   reinoud 		icount = sizeof(u_int32_t) * p->size.y;
    823  1.20       chs 		error = copyin(p->image, &image, icount);
    824  1.20       chs 		if (error)
    825  1.20       chs 			return error;
    826  1.20       chs 		error = copyin(p->mask, &mask, icount);
    827  1.20       chs 		if (error)
    828  1.20       chs 			return error;
    829   1.1   reinoud 	}
    830   1.1   reinoud 
    831   1.1   reinoud 	if (v & WSDISPLAY_CURSOR_DOCUR)
    832   1.9   reinoud 		dc->dc_curenb = p->enable;
    833   1.1   reinoud 	if (v & WSDISPLAY_CURSOR_DOPOS)
    834   1.1   reinoud 		set_curpos(sc, &p->pos);
    835   1.1   reinoud 	if (v & WSDISPLAY_CURSOR_DOHOT)
    836   1.1   reinoud 		cc->cc_hot = p->hot;
    837   1.1   reinoud 	if (v & WSDISPLAY_CURSOR_DOCMAP) {
    838  1.20       chs 		memcpy(&cc->cc_color[index], &r[index], count);
    839  1.20       chs 		memcpy(&cc->cc_color[index + 2], &g[index], count);
    840  1.20       chs 		memcpy(&cc->cc_color[index + 4], &b[index], count);
    841   1.1   reinoud 	}
    842   1.1   reinoud 	if (v & WSDISPLAY_CURSOR_DOSHAPE) {
    843   1.1   reinoud 		cc->cc_size = p->size;
    844   1.1   reinoud 		memset(cc->cc_image, 0, sizeof cc->cc_image);
    845  1.20       chs 		memcpy(cc->cc_image, image, icount);
    846   1.1   reinoud 		memset(cc->cc_mask, 0, sizeof cc->cc_mask);
    847  1.20       chs 		memcpy(cc->cc_mask, mask, icount);
    848   1.1   reinoud 	}
    849   1.9   reinoud 	dc->dc_changed |= v;
    850   1.1   reinoud 
    851  1.25     bjh21 	return 0;
    852   1.1   reinoud #undef cc
    853   1.1   reinoud }
    854   1.1   reinoud 
    855   1.1   reinoud 
    856   1.1   reinoud static int
    857  1.25     bjh21 get_cursor(struct vidcvideo_softc *sc, struct wsdisplay_cursor *p)
    858   1.1   reinoud {
    859  1.25     bjh21 
    860  1.25     bjh21 	return EPASSTHROUGH; /* XXX */
    861   1.1   reinoud }
    862   1.1   reinoud 
    863   1.1   reinoud 
    864   1.1   reinoud static void
    865  1.25     bjh21 set_curpos(struct vidcvideo_softc *sc, struct wsdisplay_curpos *curpos)
    866   1.1   reinoud {
    867   1.1   reinoud 	struct fb_devconfig *dc = sc->sc_dc;
    868   1.1   reinoud 	int x = curpos->x, y = curpos->y;
    869   1.1   reinoud 
    870   1.1   reinoud 	if (y < 0)
    871   1.1   reinoud 		y = 0;
    872   1.1   reinoud 	else if (y > dc->dc_ht)
    873   1.1   reinoud 		y = dc->dc_ht;
    874   1.1   reinoud 	if (x < 0)
    875   1.1   reinoud 		x = 0;
    876   1.1   reinoud 	else if (x > dc->dc_wid)
    877   1.1   reinoud 		x = dc->dc_wid;
    878   1.9   reinoud 	dc->dc_cursor.cc_pos.x = x;
    879   1.9   reinoud 	dc->dc_cursor.cc_pos.y = y;
    880   1.1   reinoud }
    881   1.1   reinoud 
    882   1.1   reinoud 
    883  1.25     bjh21 static void vv_copyrows(void *id, int srcrow, int dstrow, int nrows)
    884   1.1   reinoud {
    885   1.1   reinoud 	struct rasops_info *ri = id;
    886   1.1   reinoud 	int height, offset, size;
    887   1.1   reinoud 	int scrollup, scrolldown;
    888   1.1   reinoud 	unsigned char *src, *dst;
    889   1.1   reinoud 
    890   1.1   reinoud 	/* All movements are done in multiples of character heigths */
    891   1.1   reinoud 	height = ri->ri_font->fontheight * nrows;
    892   1.1   reinoud 	offset = (srcrow - dstrow) * ri->ri_yscale;
    893   1.1   reinoud 	size   = height * ri->ri_stride;
    894   1.1   reinoud 
    895   1.1   reinoud 	/* check if we are full screen scrolling */
    896   1.1   reinoud 	scrollup   = (srcrow + nrows >= ri->ri_rows);
    897   1.1   reinoud 	scrolldown = (dstrow + nrows >= ri->ri_rows);
    898   1.1   reinoud 
    899  1.25     bjh21 	if ((scrollup || scrolldown) &&
    900  1.25     bjh21 	    (videomemory.vidm_type == VIDEOMEM_TYPE_VRAM)) {
    901   1.1   reinoud 		ri->ri_bits = vidcvideo_hwscroll(offset);
    902   1.1   reinoud 		vidcvideo_progr_scroll();	/* sadistic ; shouldnt this be on vsync? */
    903   1.1   reinoud 
    904   1.1   reinoud 		/* wipe out remains of the screen if nessisary */
    905  1.25     bjh21 		if (ri->ri_emuheight != ri->ri_height)
    906  1.25     bjh21 			vv_eraserows(id, ri->ri_rows, 1, 0);
    907   1.1   reinoud 		return;
    908  1.25     bjh21 	}
    909   1.1   reinoud 
    910  1.25     bjh21 	/*
    911  1.25     bjh21 	 * Else we just copy the area : we're braindead for now
    912  1.25     bjh21 	 * Note: we can't use hardware scrolling when the softc isnt
    913  1.25     bjh21 	 * known yet...  if its not known we dont have interrupts and
    914  1.25     bjh21 	 * we can't change the display address reliable other than in
    915  1.25     bjh21 	 * a Vsync
    916   1.1   reinoud 	 */
    917   1.1   reinoud 
    918   1.1   reinoud 	src = ri->ri_bits + srcrow * ri->ri_font->fontheight * ri->ri_stride;
    919   1.1   reinoud 	dst = ri->ri_bits + dstrow * ri->ri_font->fontheight * ri->ri_stride;
    920   1.1   reinoud 
    921  1.26     bjh21 	memcpy(dst, src, size);
    922   1.1   reinoud }
    923   1.1   reinoud 
    924   1.1   reinoud 
    925  1.25     bjh21 static void vv_eraserows(void *id, int startrow, int nrows, long attr)
    926   1.1   reinoud {
    927   1.1   reinoud 	struct rasops_info *ri = id;
    928   1.1   reinoud 	int height;
    929   1.1   reinoud 	unsigned char *src;
    930   1.1   reinoud 
    931   1.1   reinoud 	/* we're braindead for now */
    932   1.1   reinoud 	height = ri->ri_font->fontheight * nrows * ri->ri_stride;
    933   1.1   reinoud 
    934   1.1   reinoud 	src = ri->ri_bits + startrow * ri->ri_font->fontheight * ri->ri_stride;
    935   1.1   reinoud 
    936  1.26     bjh21 	memset(src, 0, height);
    937   1.6   reinoud }
    938   1.6   reinoud 
    939   1.6   reinoud 
    940  1.25     bjh21 static void vv_putchar(void *id, int row, int col, u_int uc, long attr)
    941   1.6   reinoud {
    942   1.6   reinoud     	struct rasops_info *ri = id;
    943   1.6   reinoud 	struct fb_devconfig *dc = (struct fb_devconfig *) (ri->ri_hw);
    944   1.9   reinoud 
    945   1.9   reinoud 	/* delay the write back operation of the screen area */
    946   1.9   reinoud 	dc->dc_writeback_delay = SCREEN_WRITE_BACK_DELAY;
    947   1.9   reinoud 	dc->dc_changed |= WSDISPLAY_WB_COUNTER;
    948   1.6   reinoud 
    949   1.6   reinoud 	/* just delegate */
    950   1.6   reinoud 	dc->orig_ri_ops.putchar(id, row, col, uc, attr);
    951   1.1   reinoud }
    952