Home | History | Annotate | Line # | Download | only in dev
grf.c revision 1.37.4.6
      1  1.37.4.6  jdolecek /*	$NetBSD: grf.c,v 1.37.4.6 2002/10/10 22:00:09 jdolecek Exp $ */
      2      1.15       cgd 
      3       1.1        mw /*
      4       1.1        mw  * Copyright (c) 1988 University of Utah.
      5       1.1        mw  * Copyright (c) 1990 The Regents of the University of California.
      6       1.1        mw  * All rights reserved.
      7       1.1        mw  *
      8       1.1        mw  * This code is derived from software contributed to Berkeley by
      9       1.1        mw  * the Systems Programming Group of the University of Utah Computer
     10       1.1        mw  * Science Department.
     11       1.1        mw  *
     12       1.1        mw  * Redistribution and use in source and binary forms, with or without
     13       1.1        mw  * modification, are permitted provided that the following conditions
     14       1.1        mw  * are met:
     15       1.1        mw  * 1. Redistributions of source code must retain the above copyright
     16       1.1        mw  *    notice, this list of conditions and the following disclaimer.
     17       1.1        mw  * 2. Redistributions in binary form must reproduce the above copyright
     18       1.1        mw  *    notice, this list of conditions and the following disclaimer in the
     19       1.1        mw  *    documentation and/or other materials provided with the distribution.
     20       1.1        mw  * 3. All advertising materials mentioning features or use of this software
     21       1.1        mw  *    must display the following acknowledgement:
     22       1.1        mw  *	This product includes software developed by the University of
     23       1.1        mw  *	California, Berkeley and its contributors.
     24       1.1        mw  * 4. Neither the name of the University nor the names of its contributors
     25       1.1        mw  *    may be used to endorse or promote products derived from this software
     26       1.1        mw  *    without specific prior written permission.
     27       1.1        mw  *
     28       1.1        mw  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29       1.1        mw  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30       1.1        mw  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31       1.1        mw  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32       1.1        mw  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33       1.1        mw  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34       1.1        mw  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35       1.1        mw  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36       1.1        mw  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37       1.1        mw  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38       1.1        mw  * SUCH DAMAGE.
     39       1.1        mw  *
     40       1.4        mw  * from: Utah $Hdr: grf.c 1.31 91/01/21$
     41       1.4        mw  *
     42       1.4        mw  *	@(#)grf.c	7.8 (Berkeley) 5/7/91
     43       1.1        mw  */
     44       1.1        mw 
     45  1.37.4.3  jdolecek #include <sys/cdefs.h>
     46  1.37.4.6  jdolecek __KERNEL_RCSID(0, "$NetBSD: grf.c,v 1.37.4.6 2002/10/10 22:00:09 jdolecek Exp $");
     47  1.37.4.3  jdolecek 
     48       1.1        mw /*
     49      1.11    chopps  * Graphics display driver for the Amiga
     50       1.1        mw  * This is the hardware-independent portion of the driver.
     51      1.11    chopps  * Hardware access is through the grf_softc->g_mode routine.
     52       1.1        mw  */
     53       1.1        mw 
     54       1.8    chopps #include <sys/param.h>
     55       1.8    chopps #include <sys/proc.h>
     56       1.8    chopps #include <sys/ioctl.h>
     57      1.11    chopps #include <sys/device.h>
     58       1.8    chopps #include <sys/file.h>
     59       1.8    chopps #include <sys/malloc.h>
     60       1.9    chopps #include <sys/systm.h>
     61      1.11    chopps #include <sys/vnode.h>
     62      1.11    chopps #include <sys/mman.h>
     63      1.30    mhitch #include <sys/poll.h>
     64      1.36       mrg #include <uvm/uvm_extern.h>
     65      1.11    chopps #include <machine/cpu.h>
     66  1.37.4.2   thorpej #include <dev/sun/fbio.h>
     67      1.11    chopps #include <amiga/amiga/color.h>	/* DEBUG */
     68      1.11    chopps #include <amiga/amiga/device.h>
     69      1.11    chopps #include <amiga/dev/grfioctl.h>
     70      1.11    chopps #include <amiga/dev/grfvar.h>
     71      1.11    chopps #include <amiga/dev/itevar.h>
     72      1.26     veego #include <amiga/dev/viewioctl.h>
     73      1.26     veego 
     74      1.26     veego #include <sys/conf.h>
     75       1.8    chopps 
     76      1.21    chopps #include "view.h"
     77      1.26     veego #include "grf.h"
     78      1.21    chopps 
     79      1.11    chopps #if NGRF > 0
     80       1.1        mw #include "ite.h"
     81       1.1        mw #if NITE == 0
     82       1.9    chopps #define	ite_on(u,f)
     83       1.9    chopps #define	ite_off(u,f)
     84       1.9    chopps #define ite_reinit(d)
     85       1.1        mw #endif
     86       1.1        mw 
     87  1.37.4.3  jdolecek int grfon(dev_t);
     88  1.37.4.3  jdolecek int grfoff(dev_t);
     89  1.37.4.3  jdolecek int grfsinfo(dev_t, struct grfdyninfo *);
     90       1.1        mw 
     91  1.37.4.3  jdolecek void grfattach(struct device *, struct device *, void *);
     92  1.37.4.3  jdolecek int grfmatch(struct device *, struct cfdata *, void *);
     93  1.37.4.3  jdolecek int grfprint(void *, const char *);
     94       1.1        mw /*
     95  1.37.4.3  jdolecek  * pointers to grf drivers device structs
     96       1.1        mw  */
     97      1.11    chopps struct grf_softc *grfsp[NGRF];
     98      1.11    chopps 
     99  1.37.4.5  jdolecek CFATTACH_DECL(grf, sizeof(struct device),
    100  1.37.4.5  jdolecek     grfmatch, grfattach, NULL, NULL);
    101  1.37.4.5  jdolecek 
    102  1.37.4.5  jdolecek dev_type_open(grfopen);
    103  1.37.4.5  jdolecek dev_type_close(grfclose);
    104  1.37.4.5  jdolecek dev_type_ioctl(grfioctl);
    105  1.37.4.5  jdolecek dev_type_poll(grfpoll);
    106  1.37.4.5  jdolecek dev_type_mmap(grfmmap);
    107  1.37.4.5  jdolecek 
    108  1.37.4.5  jdolecek const struct cdevsw grf_cdevsw = {
    109  1.37.4.5  jdolecek 	grfopen, grfclose, nullread, nullwrite, grfioctl,
    110  1.37.4.6  jdolecek 	nostop, notty, grfpoll, grfmmap, nokqfilter,
    111      1.25   thorpej };
    112      1.11    chopps 
    113      1.11    chopps /*
    114      1.11    chopps  * only used in console init.
    115      1.11    chopps  */
    116      1.11    chopps static struct cfdata *cfdata;
    117      1.11    chopps 
    118      1.11    chopps /*
    119  1.37.4.3  jdolecek  * match if the unit of grf matches its perspective
    120      1.11    chopps  * low level board driver.
    121      1.11    chopps  */
    122      1.11    chopps int
    123  1.37.4.3  jdolecek grfmatch(struct device *pdp, struct cfdata *cfp, void *auxp)
    124       1.1        mw {
    125      1.25   thorpej 
    126      1.11    chopps 	if (cfp->cf_unit != ((struct grf_softc *)pdp)->g_unit)
    127      1.11    chopps 		return(0);
    128      1.11    chopps 	cfdata = cfp;
    129      1.11    chopps 	return(1);
    130       1.1        mw }
    131       1.1        mw 
    132       1.1        mw /*
    133      1.11    chopps  * attach.. plug pointer in and print some info.
    134      1.11    chopps  * then try and attach an ite to us. note: dp is NULL
    135      1.11    chopps  * durring console init.
    136       1.1        mw  */
    137      1.11    chopps void
    138  1.37.4.3  jdolecek grfattach(struct device *pdp, struct device *dp, void *auxp)
    139       1.1        mw {
    140      1.11    chopps 	struct grf_softc *gp;
    141      1.11    chopps 	int maj;
    142      1.11    chopps 
    143      1.11    chopps 	gp = (struct grf_softc *)pdp;
    144      1.11    chopps 	grfsp[gp->g_unit] = (struct grf_softc *)pdp;
    145       1.1        mw 
    146      1.11    chopps 	/*
    147  1.37.4.3  jdolecek 	 * find our major device number
    148      1.11    chopps 	 */
    149  1.37.4.5  jdolecek 	maj = cdevsw_lookup_major(&grf_cdevsw);
    150      1.11    chopps 
    151      1.11    chopps 	gp->g_grfdev = makedev(maj, gp->g_unit);
    152      1.11    chopps 	if (dp != NULL) {
    153      1.31  christos 		printf(": width %d height %d", gp->g_display.gd_dwidth,
    154      1.11    chopps 		    gp->g_display.gd_dheight);
    155      1.11    chopps 		if (gp->g_display.gd_colors == 2)
    156      1.31  christos 			printf(" monochrome\n");
    157      1.11    chopps 		else
    158      1.31  christos 			printf(" colors %d\n", gp->g_display.gd_colors);
    159      1.11    chopps 	}
    160  1.37.4.3  jdolecek 
    161      1.11    chopps 	/*
    162      1.11    chopps 	 * try and attach an ite
    163      1.11    chopps 	 */
    164      1.11    chopps 	amiga_config_found(cfdata, dp, gp, grfprint);
    165       1.1        mw }
    166       1.1        mw 
    167      1.11    chopps int
    168  1.37.4.3  jdolecek grfprint(void *auxp, const char *pnp)
    169      1.11    chopps {
    170      1.11    chopps 	if (pnp)
    171      1.31  christos 		printf("ite at %s", pnp);
    172      1.11    chopps 	return(UNCONF);
    173       1.1        mw }
    174       1.1        mw 
    175       1.1        mw /*ARGSUSED*/
    176      1.11    chopps int
    177  1.37.4.3  jdolecek grfopen(dev_t dev, int flags, int devtype, struct proc *p)
    178       1.1        mw {
    179      1.11    chopps 	struct grf_softc *gp;
    180      1.11    chopps 
    181      1.24       jtc 	if (GRFUNIT(dev) >= NGRF || (gp = grfsp[GRFUNIT(dev)]) == NULL)
    182      1.11    chopps 		return(ENXIO);
    183      1.11    chopps 
    184      1.11    chopps 	if ((gp->g_flags & GF_ALIVE) == 0)
    185       1.1        mw 		return(ENXIO);
    186      1.11    chopps 
    187       1.1        mw 	if ((gp->g_flags & (GF_OPEN|GF_EXCLUDE)) == (GF_OPEN|GF_EXCLUDE))
    188       1.1        mw 		return(EBUSY);
    189      1.11    chopps 
    190      1.11    chopps 	return(0);
    191       1.1        mw }
    192       1.1        mw 
    193       1.1        mw /*ARGSUSED*/
    194      1.11    chopps int
    195  1.37.4.3  jdolecek grfclose(dev_t dev, int flags, int mode, struct proc *p)
    196       1.1        mw {
    197      1.11    chopps 	struct grf_softc *gp;
    198       1.1        mw 
    199      1.11    chopps 	gp = grfsp[GRFUNIT(dev)];
    200      1.11    chopps 	(void)grfoff(dev);
    201       1.1        mw 	gp->g_flags &= GF_ALIVE;
    202       1.1        mw 	return(0);
    203       1.1        mw }
    204       1.1        mw 
    205       1.1        mw /*ARGSUSED*/
    206      1.11    chopps int
    207  1.37.4.3  jdolecek grfioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p)
    208       1.1        mw {
    209      1.11    chopps 	struct grf_softc *gp;
    210       1.1        mw 	int error;
    211       1.1        mw 
    212      1.11    chopps 	gp = grfsp[GRFUNIT(dev)];
    213       1.1        mw 	error = 0;
    214      1.11    chopps 
    215       1.1        mw 	switch (cmd) {
    216       1.5        mw 	case OGRFIOCGINFO:
    217       1.5        mw 	        /* argl.. no bank-member.. */
    218       1.5        mw 	  	bcopy((caddr_t)&gp->g_display, data, sizeof(struct grfinfo)-4);
    219       1.5        mw 		break;
    220       1.1        mw 	case GRFIOCGINFO:
    221       1.1        mw 		bcopy((caddr_t)&gp->g_display, data, sizeof(struct grfinfo));
    222       1.1        mw 		break;
    223       1.1        mw 	case GRFIOCON:
    224       1.1        mw 		error = grfon(dev);
    225       1.1        mw 		break;
    226       1.1        mw 	case GRFIOCOFF:
    227       1.1        mw 		error = grfoff(dev);
    228       1.1        mw 		break;
    229       1.1        mw 	case GRFIOCSINFO:
    230      1.11    chopps 		error = grfsinfo(dev, (struct grfdyninfo *) data);
    231       1.1        mw 		break;
    232       1.3        mw 	case GRFGETVMODE:
    233      1.26     veego 		return(gp->g_mode(gp, GM_GRFGETVMODE, data, 0, 0));
    234       1.3        mw 	case GRFSETVMODE:
    235      1.26     veego 		error = gp->g_mode(gp, GM_GRFSETVMODE, data, 0, 0);
    236      1.18    chopps 		if (error == 0 && gp->g_itedev && !(gp->g_flags & GF_GRFON))
    237      1.11    chopps 			ite_reinit(gp->g_itedev);
    238       1.3        mw 		break;
    239       1.3        mw 	case GRFGETNUMVM:
    240      1.26     veego 		return(gp->g_mode(gp, GM_GRFGETNUMVM, data, 0, 0));
    241      1.11    chopps 	/*
    242      1.11    chopps 	 * these are all hardware dependant, and have to be resolved
    243      1.11    chopps 	 * in the respective driver.
    244      1.11    chopps 	 */
    245       1.5        mw 	case GRFIOCPUTCMAP:
    246       1.5        mw 	case GRFIOCGETCMAP:
    247       1.5        mw 	case GRFIOCSSPRITEPOS:
    248       1.5        mw 	case GRFIOCGSPRITEPOS:
    249       1.5        mw 	case GRFIOCSSPRITEINF:
    250       1.5        mw 	case GRFIOCGSPRITEINF:
    251       1.5        mw 	case GRFIOCGSPRITEMAX:
    252      1.18    chopps 	case GRFIOCBITBLT:
    253      1.20    chopps     	case GRFIOCSETMON:
    254      1.17    chopps 	case GRFTOGGLE: /* Toggles between Cirrus boards and native ECS on
    255      1.17    chopps                      Amiga. 15/11/94 ill */
    256      1.22    chopps 		/*
    257      1.22    chopps 		 * We need the minor dev number to get the overlay/image
    258      1.22    chopps 		 * information for grf_ul.
    259      1.22    chopps 		 */
    260      1.26     veego 		return(gp->g_mode(gp, GM_GRFIOCTL, data, cmd, dev));
    261      1.27        is 
    262      1.34        is 	case GRFIOCBLANK:	/* blank ioctl, IOCON/OFF will turn ite on */
    263      1.27        is 	case FBIOSVIDEO:
    264      1.34        is 		error = gp->g_mode(gp, GM_GRFIOCTL, data, GRFIOCBLANK, dev);
    265      1.34        is 		if (!error)
    266      1.34        is 			gp->g_blank = *(int *)data;
    267      1.34        is 		return (error);
    268      1.34        is 
    269      1.34        is 	case FBIOGVIDEO:
    270      1.34        is 		*(int *)data = gp->g_blank;
    271      1.34        is 		return (0);
    272      1.27        is 
    273       1.1        mw 	default:
    274      1.21    chopps #if NVIEW > 0
    275      1.11    chopps 		/*
    276      1.11    chopps 		 * check to see whether it's a command recognized by the
    277      1.11    chopps 		 * view code if the unit is 0
    278  1.37.4.3  jdolecek 		 * XXX
    279      1.11    chopps 		 */
    280  1.37.4.5  jdolecek 		if (GRFUNIT(dev) == 0) {
    281  1.37.4.5  jdolecek 			extern const struct cdevsw view_cdevsw;
    282  1.37.4.5  jdolecek 
    283  1.37.4.5  jdolecek 			return((*view_cdevsw.d_ioctl)(dev, cmd, data, flag, p));
    284  1.37.4.5  jdolecek 		}
    285      1.21    chopps #endif
    286  1.37.4.4  jdolecek 		error = EPASSTHROUGH;
    287       1.1        mw 		break;
    288       1.1        mw 
    289       1.1        mw 	}
    290       1.1        mw 	return(error);
    291       1.1        mw }
    292       1.1        mw 
    293       1.1        mw /*ARGSUSED*/
    294      1.11    chopps int
    295  1.37.4.3  jdolecek grfpoll(dev_t dev, int events, struct proc *p)
    296       1.1        mw {
    297      1.30    mhitch 	return(events & (POLLOUT | POLLWRNORM));
    298       1.1        mw }
    299       1.1        mw 
    300      1.11    chopps /*
    301  1.37.4.3  jdolecek  * map the contents of a graphics display card into process'
    302      1.11    chopps  * memory space.
    303      1.11    chopps  */
    304      1.35    simonb paddr_t
    305  1.37.4.3  jdolecek grfmmap(dev_t dev, off_t off, int prot)
    306       1.1        mw {
    307      1.11    chopps 	struct grf_softc *gp;
    308      1.11    chopps 	struct grfinfo *gi;
    309  1.37.4.3  jdolecek 
    310      1.11    chopps 	gp = grfsp[GRFUNIT(dev)];
    311      1.11    chopps 	gi = &gp->g_display;
    312       1.1        mw 
    313  1.37.4.3  jdolecek 	/*
    314      1.11    chopps 	 * control registers
    315      1.11    chopps 	 */
    316      1.11    chopps 	if (off >= 0 && off < gi->gd_regsize)
    317      1.35    simonb 		return(((paddr_t)gi->gd_regaddr + off) >> PGSHIFT);
    318       1.1        mw 
    319      1.11    chopps 	/*
    320      1.11    chopps 	 * frame buffer
    321      1.11    chopps 	 */
    322      1.11    chopps 	if (off >= gi->gd_regsize && off < gi->gd_regsize+gi->gd_fbsize) {
    323      1.11    chopps 		off -= gi->gd_regsize;
    324      1.35    simonb 		return(((paddr_t)gi->gd_fbaddr + off) >> PGSHIFT);
    325       1.1        mw 	}
    326      1.11    chopps 	/* bogus */
    327      1.11    chopps 	return(-1);
    328       1.1        mw }
    329       1.1        mw 
    330      1.11    chopps int
    331  1.37.4.3  jdolecek grfon(dev_t dev)
    332       1.1        mw {
    333      1.11    chopps 	struct grf_softc *gp;
    334       1.1        mw 
    335      1.11    chopps 	gp = grfsp[GRFUNIT(dev)];
    336       1.1        mw 
    337       1.3        mw 	if (gp->g_flags & GF_GRFON)
    338      1.11    chopps 		return(0);
    339      1.11    chopps 
    340       1.3        mw 	gp->g_flags |= GF_GRFON;
    341      1.11    chopps 	if (gp->g_itedev != NODEV)
    342      1.11    chopps 		ite_off(gp->g_itedev, 3);
    343       1.3        mw 
    344      1.26     veego 	return(gp->g_mode(gp, (dev & GRFOVDEV) ? GM_GRFOVON : GM_GRFON,
    345      1.26     veego 							NULL, 0, 0));
    346       1.1        mw }
    347       1.1        mw 
    348      1.11    chopps int
    349  1.37.4.3  jdolecek grfoff(dev_t dev)
    350       1.1        mw {
    351      1.11    chopps 	struct grf_softc *gp;
    352       1.1        mw 	int error;
    353       1.3        mw 
    354      1.11    chopps 	gp = grfsp[GRFUNIT(dev)];
    355      1.11    chopps 
    356      1.11    chopps 	if ((gp->g_flags & GF_GRFON) == 0)
    357      1.11    chopps 		return(0);
    358      1.11    chopps 
    359       1.3        mw 	gp->g_flags &= ~GF_GRFON;
    360      1.26     veego 	error = gp->g_mode(gp, (dev & GRFOVDEV) ? GM_GRFOVOFF : GM_GRFOFF,
    361      1.26     veego 							NULL, 0, 0);
    362      1.11    chopps 
    363      1.11    chopps 	/*
    364      1.11    chopps 	 * Closely tied together no X's
    365      1.11    chopps 	 */
    366      1.11    chopps 	if (gp->g_itedev != NODEV)
    367      1.11    chopps 		ite_on(gp->g_itedev, 2);
    368       1.1        mw 
    369       1.1        mw 	return(error);
    370       1.1        mw }
    371       1.1        mw 
    372      1.11    chopps int
    373  1.37.4.3  jdolecek grfsinfo(dev_t dev, struct grfdyninfo *dyninfo)
    374       1.1        mw {
    375      1.11    chopps 	struct grf_softc *gp;
    376       1.1        mw 	int error;
    377       1.1        mw 
    378      1.11    chopps 	gp = grfsp[GRFUNIT(dev)];
    379      1.26     veego 	error = gp->g_mode(gp, GM_GRFCONFIG, dyninfo, 0, 0);
    380       1.1        mw 
    381      1.11    chopps 	/*
    382      1.11    chopps 	 * Closely tied together no X's
    383      1.11    chopps 	 */
    384      1.11    chopps 	if (gp->g_itedev != NODEV)
    385      1.11    chopps 		ite_reinit(gp->g_itedev);
    386       1.1        mw 	return(error);
    387       1.1        mw }
    388       1.1        mw 
    389       1.1        mw #endif	/* NGRF > 0 */
    390