Home | History | Annotate | Line # | Download | only in dev
grf_gv.c revision 1.7
      1  1.7    lukem /*	$NetBSD: grf_gv.c,v 1.7 2003/07/15 01:44:51 lukem Exp $	*/
      2  1.1      oki 
      3  1.1      oki /*
      4  1.1      oki  * Copyright (c) 1988 University of Utah.
      5  1.1      oki  * Copyright (c) 1990, 1993
      6  1.1      oki  *	The Regents of the University of California.  All rights reserved.
      7  1.1      oki  *
      8  1.1      oki  * This code is derived from software contributed to Berkeley by
      9  1.1      oki  * the Systems Programming Group of the University of Utah Computer
     10  1.1      oki  * Science Department.
     11  1.1      oki  *
     12  1.1      oki  * Redistribution and use in source and binary forms, with or without
     13  1.1      oki  * modification, are permitted provided that the following conditions
     14  1.1      oki  * are met:
     15  1.1      oki  * 1. Redistributions of source code must retain the above copyright
     16  1.1      oki  *    notice, this list of conditions and the following disclaimer.
     17  1.1      oki  * 2. Redistributions in binary form must reproduce the above copyright
     18  1.1      oki  *    notice, this list of conditions and the following disclaimer in the
     19  1.1      oki  *    documentation and/or other materials provided with the distribution.
     20  1.1      oki  * 3. All advertising materials mentioning features or use of this software
     21  1.1      oki  *    must display the following acknowledgement:
     22  1.1      oki  *	This product includes software developed by the University of
     23  1.1      oki  *	California, Berkeley and its contributors.
     24  1.1      oki  * 4. Neither the name of the University nor the names of its contributors
     25  1.1      oki  *    may be used to endorse or promote products derived from this software
     26  1.1      oki  *    without specific prior written permission.
     27  1.1      oki  *
     28  1.1      oki  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29  1.1      oki  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30  1.1      oki  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31  1.1      oki  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32  1.1      oki  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33  1.1      oki  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34  1.1      oki  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35  1.1      oki  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36  1.1      oki  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37  1.1      oki  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38  1.1      oki  * SUCH DAMAGE.
     39  1.1      oki  *
     40  1.1      oki  * from: Utah $Hdr: grf_tc.c 1.20 93/08/13$
     41  1.1      oki  *
     42  1.1      oki  *	@(#)grf_tc.c	8.4 (Berkeley) 1/12/94
     43  1.1      oki  */
     44  1.1      oki 
     45  1.1      oki /*
     46  1.1      oki  * Graphics routines for the X68K native custom chip set.
     47  1.1      oki  */
     48  1.7    lukem 
     49  1.7    lukem #include <sys/cdefs.h>
     50  1.7    lukem __KERNEL_RCSID(0, "$NetBSD: grf_gv.c,v 1.7 2003/07/15 01:44:51 lukem Exp $");
     51  1.4  thorpej 
     52  1.4  thorpej #include "opt_compat_hpux.h"
     53  1.4  thorpej 
     54  1.1      oki #include <sys/param.h>
     55  1.1      oki #include <sys/device.h>
     56  1.1      oki #include <sys/errno.h>
     57  1.1      oki 
     58  1.5  minoura #include <machine/grfioctl.h>
     59  1.5  minoura 
     60  1.1      oki #include <x68k/dev/grfvar.h>
     61  1.1      oki #include <x68k/x68k/iodevice.h>
     62  1.1      oki 
     63  1.1      oki #include <machine/cpu.h>
     64  1.3      oki 
     65  1.3      oki int gv_init __P((struct grf_softc *, caddr_t));
     66  1.3      oki int gv_mode __P((struct grf_softc *, u_long, caddr_t));
     67  1.1      oki 
     68  1.1      oki /* Initialize hardware.
     69  1.1      oki  * Must fill in the grfinfo structure in g_softc.
     70  1.1      oki  * Returns 0 if hardware not present, non-zero ow.
     71  1.1      oki  */
     72  1.2      oki int
     73  1.1      oki gv_init(gp, addr)
     74  1.1      oki 	struct grf_softc *gp;
     75  1.1      oki 	caddr_t addr;
     76  1.1      oki {
     77  1.1      oki 	struct grfinfo *gi = &gp->g_display;
     78  1.1      oki 
     79  1.1      oki 	gi->gd_fbwidth  = 1024;
     80  1.1      oki 	gi->gd_fbheight = 1024;
     81  1.1      oki 	gi->gd_planes  = 4;
     82  1.1      oki 	gi->gd_regaddr = (void *)0x00e80000;
     83  1.1      oki 	gi->gd_regsize = 0x00010000;  /* contains system port */
     84  1.1      oki 	gi->gd_fbaddr  = (void *)0x00c00000;
     85  1.1      oki 	gi->gd_fbsize  = gi->gd_fbwidth * gi->gd_fbheight * 2;
     86  1.1      oki 	gp->g_regkva   = addr;
     87  1.1      oki 	gp->g_fbkva    = addr;
     88  1.1      oki 	switch(IODEVbase->io_sram[0x1d]) {
     89  1.1      oki 	case 18:
     90  1.1      oki 		/*
     91  1.1      oki 		 * mode 18, 24kHz
     92  1.1      oki 		 */
     93  1.1      oki 		gi->gd_dwidth  = 1024;
     94  1.1      oki 		gi->gd_dheight =  848;
     95  1.1      oki 		break;
     96  1.1      oki 	case 19:
     97  1.1      oki 		/*
     98  1.1      oki 		 * mode 19, 31kHz VGA mode
     99  1.1      oki 		 */
    100  1.1      oki 		gi->gd_dwidth  = 640;
    101  1.1      oki 		gi->gd_dheight = 480;
    102  1.1      oki 		break;
    103  1.1      oki 	default:
    104  1.1      oki 		/*
    105  1.1      oki 		 * mode 16, 31kHz (default)
    106  1.1      oki 		 */
    107  1.1      oki 		gi->gd_dwidth  = 768;
    108  1.1      oki 		gi->gd_dheight = 512;
    109  1.1      oki 		break;
    110  1.1      oki 	}
    111  1.1      oki 	gi->gd_colors  = 16;
    112  1.1      oki 
    113  1.1      oki 	return(1);
    114  1.1      oki }
    115  1.1      oki 
    116  1.1      oki /*
    117  1.1      oki  * Change the mode of the display.
    118  1.1      oki  * Right now all we can do is grfon/grfoff.
    119  1.1      oki  * Return a UNIX error number or 0 for success.
    120  1.1      oki  */
    121  1.1      oki /*ARGSUSED*/
    122  1.2      oki int
    123  1.1      oki gv_mode(gp, cmd, data)
    124  1.1      oki 	register struct grf_softc *gp;
    125  1.1      oki 	u_long cmd;
    126  1.1      oki 	caddr_t data;
    127  1.1      oki {
    128  1.1      oki 	int error = 0;
    129  1.1      oki 
    130  1.1      oki 	switch (cmd) {
    131  1.1      oki 	case GM_GRFON:
    132  1.1      oki 	case GM_GRFOFF:
    133  1.1      oki 		break;
    134  1.1      oki 
    135  1.1      oki 	/*
    136  1.1      oki 	 * Remember UVA of mapping for GCDESCRIBE.
    137  1.1      oki 	 * XXX this should be per-process.
    138  1.1      oki 	 */
    139  1.1      oki 	case GM_MAP:
    140  1.1      oki 		gp->g_data = data;
    141  1.1      oki 		break;
    142  1.1      oki 
    143  1.1      oki 	case GM_UNMAP:
    144  1.1      oki 		gp->g_data = 0;
    145  1.1      oki 		break;
    146  1.1      oki 
    147  1.1      oki #ifdef COMPAT_HPUX
    148  1.1      oki 	case GM_DESCRIBE:
    149  1.1      oki 	{
    150  1.1      oki 		struct grf_fbinfo *fi = (struct grf_fbinfo *)data;
    151  1.1      oki 		struct grfinfo *gi = &gp->g_display;
    152  1.1      oki 		int i;
    153  1.1      oki 
    154  1.1      oki 		/* feed it what HP-UX expects */
    155  1.1      oki 		fi->id = gi->gd_id;
    156  1.1      oki 		fi->mapsize = gi->gd_fbsize;
    157  1.1      oki 		fi->dwidth = gi->gd_dwidth;
    158  1.1      oki 		fi->dlength = gi->gd_dheight;
    159  1.1      oki 		fi->width = gi->gd_fbwidth;
    160  1.1      oki 		fi->length = gi->gd_fbheight;
    161  1.1      oki 		fi->bpp = NBBY;
    162  1.1      oki 		fi->xlen = (fi->width * fi->bpp) / NBBY;
    163  1.1      oki 		fi->npl = gi->gd_planes;
    164  1.1      oki 		fi->bppu = fi->npl;
    165  1.1      oki 		fi->nplbytes = fi->xlen * ((fi->length * fi->bpp) / NBBY);
    166  1.1      oki 		/* XXX */
    167  1.1      oki 		switch (gp->g_sw->gd_hwid) {
    168  1.1      oki 		case GID_HRCCATSEYE:
    169  1.6      wiz 			memcpy(fi->name, "HP98550", 8);
    170  1.1      oki 			break;
    171  1.1      oki 		case GID_LRCATSEYE:
    172  1.6      wiz 			memcpy(fi->name, "HP98549", 8);
    173  1.1      oki 			break;
    174  1.1      oki 		case GID_HRMCATSEYE:
    175  1.6      wiz 			memcpy(fi->name, "HP98548", 8);
    176  1.1      oki 			break;
    177  1.1      oki 		case GID_TOPCAT:
    178  1.1      oki 			switch (gi->gd_colors) {
    179  1.1      oki 			case 64:
    180  1.6      wiz 				memcpy(fi->name, "HP98547", 8);
    181  1.1      oki 				break;
    182  1.1      oki 			case 16:
    183  1.6      wiz 				memcpy(fi->name, "HP98545", 8);
    184  1.1      oki 				break;
    185  1.1      oki 			case 2:
    186  1.6      wiz 				memcpy(fi->name, "HP98544", 8);
    187  1.1      oki 				break;
    188  1.1      oki 			}
    189  1.1      oki 			break;
    190  1.1      oki 		}
    191  1.1      oki 		fi->attr = 2;	/* HW block mover */
    192  1.1      oki 		/*
    193  1.1      oki 		 * If mapped, return the UVA where mapped.
    194  1.1      oki 		 */
    195  1.1      oki 		if (gp->g_data) {
    196  1.1      oki 			fi->regbase = gp->g_data;
    197  1.1      oki 			fi->fbbase = fi->regbase + gp->g_display.gd_regsize;
    198  1.1      oki 		} else {
    199  1.1      oki 			fi->fbbase = 0;
    200  1.1      oki 			fi->regbase = 0;
    201  1.1      oki 		}
    202  1.1      oki 		for (i = 0; i < 6; i++)
    203  1.1      oki 			fi->regions[i] = 0;
    204  1.1      oki 		break;
    205  1.1      oki 	}
    206  1.1      oki #endif
    207  1.1      oki #if 1
    208  1.1      oki 	case GM_GRFSETVMODE:
    209  1.1      oki 		if (*(int *)data == 1) {
    210  1.1      oki 			struct grfinfo *gi = &gp->g_display;
    211  1.1      oki 			volatile struct crtc *crtc = &IODEVbase->io_crtc;
    212  1.1      oki 			/* CRTC $B$K@_Dj$r9T$J$$!"(Bdwidth $B$H(B dheight $B$r$$$8$k(B */
    213  1.1      oki 			crtc->r20 = (crtc->r20 & 0xFF00) | 0x1a;
    214  1.1      oki 			crtc->r08 = 0x1b;
    215  1.1      oki 			crtc->r07 = 0x19c;
    216  1.1      oki 			crtc->r06 = 0x1c;
    217  1.1      oki 			crtc->r05 = 0x02;
    218  1.1      oki 			crtc->r04 = 0x019f;
    219  1.1      oki 			crtc->r03 = 0x9a;
    220  1.1      oki 			crtc->r02 = 0x1a;
    221  1.1      oki 			crtc->r01 = 0x09;
    222  1.1      oki 			crtc->r00 = 0xa4;
    223  1.1      oki 			gi->gd_dwidth = 1024;
    224  1.1      oki 			gi->gd_dheight = 768;
    225  1.1      oki 		}
    226  1.1      oki 		break;
    227  1.1      oki #endif
    228  1.1      oki 
    229  1.1      oki 	default:
    230  1.1      oki 		error = EINVAL;
    231  1.1      oki 		break;
    232  1.1      oki 	}
    233  1.1      oki 	return(error);
    234  1.1      oki }
    235