Home | History | Annotate | Line # | Download | only in dev
grf_ulreg.h revision 1.4
      1 /*	$NetBSD: grf_ulreg.h,v 1.4 1996/07/08 13:28:42 is Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1995 Ignatios Souvatzis
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. All advertising materials mentioning features or use of this software
     16  *    must display the following acknowledgement:
     17  *      This product includes software developed by Ignatios Souvatzis
     18  *      for the NetBSD project.
     19  * 4. The name of the author may not be used to endorse or promote products
     20  *    derived from this software without specific prior written permission
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32  */
     33 /*
     34  * Registers etc. for the University of Lowell graphics board.
     35  */
     36 
     37 struct gspregs {
     38 	/*
     39 	 * alas, they didn't invert the A1 bit, so we have to write the
     40 	 * address pointer in two parts
     41 	 */
     42 	__volatile u_short hstadrl;
     43 	__volatile u_short hstadrh;
     44 	__volatile u_short data;
     45 	__volatile u_short ctrl;
     46 };
     47 
     48 /* Bits in ctrl */
     49 #define HLT	0x8000
     50 #define CF	0x4000
     51 #define LBL	0x2000
     52 #define INCR	0x1000
     53 #define INCW	0x0800
     54 #define NMIM	0x0200
     55 #define NMI	0x0100
     56 
     57 #define INTOUT	0x0080
     58 #define MSGOUT	0x0070
     59 #define INTIN	0x0008
     60 #define	MSGIN	0x0007
     61 
     62 /* address macros */
     63 
     64 #define GSPSETHADRS(gsp,adrs)	do {	\
     65     (gsp)->hstadrh = (adrs) >> 16;	\
     66     (gsp)->hstadrl = (adrs) & 0xFFFF;	\
     67     } while (0)
     68 #define GSPGETHADRS(gsp)	((gsp)->hstadrh << 16 | (gsp)->hstadrl)
     69 
     70 /* Standard addresses in GSP memory */
     71 
     72 #define PUT_PTR_ADRS    0xFFA20000	/* put pointer in ring buffer */
     73 #define PUT_HI_PTR_ADRS 0xFFA20010	/* put pointer high word */
     74 #define GET_PTR_ADRS    0xFFA20020	/* get pointer (low word) */
     75 #define GSP_MODE_ADRS   0xFFA20040	/* GSP mode word */
     76 
     77 /* Bits in GSP mode word */
     78 #define GMODE_HOLD      1               /* hold screen */
     79 #define GMODE_FLUSH     2               /* flush GSP input queue */
     80 #define GMODE_ALTSCRN   4               /* use alternate screen */
     81 #define GMODE_DISPCTRL  8               /* display control chars */
     82 
     83 /* command words */
     84 #define GCMD_CMD_MSK	0x000F
     85 #define GCMD_PAR_MSK	0xFFF0
     86 
     87 #define GCMD_NOP	0
     88 #define GCMD_CHAR	1	/* char, fg, bg, x, y */
     89 #define GCMD_FILL	2	/* fg, x, y, w, h, ppop */
     90 #define GCMD_PIXBLT	3	/* x, y, w, h, dx, dy */
     91 #define GCMD_FNTMIR	4	/* */
     92 #define GCMD_CMAP	5	/* overlay==1, index, red, green, blue */
     93 #define GCMD_MCHG	6	/* width, height, baseh, basel, pitch, depth */
     94 
     95 struct grf_ul_softc {
     96 	struct grf_softc	gus_sc;
     97 	u_int8_t		gus_imcmap[768];
     98 	u_int8_t		gus_ovcmap[12];
     99 	u_int8_t		gus_ovslct;
    100 	/* realconfig stuff assumes this is last, else it would get copied: */
    101 	struct isr		gus_isr;
    102 };
    103 
    104 #ifdef _KERNEL
    105 void gsp_write(struct gspregs *gsp, u_int16_t *data, size_t size);
    106 int grful_cnprobe(void);
    107 void grful_iteinit(struct grf_softc *gp);
    108 #endif
    109 
    110