Home | History | Annotate | Line # | Download | only in dev
grf.c revision 1.31
      1  1.31  jdolecek /*	$NetBSD: grf.c,v 1.31 2002/10/23 09:10:51 jdolecek Exp $	*/
      2   1.1       leo 
      3   1.1       leo /*
      4   1.1       leo  * Copyright (c) 1995 Leo Weppelman
      5   1.1       leo  * Copyright (c) 1988 University of Utah.
      6   1.1       leo  * Copyright (c) 1990 The Regents of the University of California.
      7   1.1       leo  * All rights reserved.
      8   1.1       leo  *
      9   1.1       leo  * This code is derived from software contributed to Berkeley by
     10   1.1       leo  * the Systems Programming Group of the University of Utah Computer
     11   1.1       leo  * Science Department.
     12   1.1       leo  *
     13   1.1       leo  * Redistribution and use in source and binary forms, with or without
     14   1.1       leo  * modification, are permitted provided that the following conditions
     15   1.1       leo  * are met:
     16   1.1       leo  * 1. Redistributions of source code must retain the above copyright
     17   1.1       leo  *    notice, this list of conditions and the following disclaimer.
     18   1.1       leo  * 2. Redistributions in binary form must reproduce the above copyright
     19   1.1       leo  *    notice, this list of conditions and the following disclaimer in the
     20   1.1       leo  *    documentation and/or other materials provided with the distribution.
     21   1.1       leo  * 3. All advertising materials mentioning features or use of this software
     22   1.1       leo  *    must display the following acknowledgement:
     23   1.1       leo  *	This product includes software developed by the University of
     24   1.1       leo  *	California, Berkeley and its contributors.
     25   1.1       leo  * 4. Neither the name of the University nor the names of its contributors
     26   1.1       leo  *    may be used to endorse or promote products derived from this software
     27   1.1       leo  *    without specific prior written permission.
     28   1.1       leo  *
     29   1.1       leo  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     30   1.1       leo  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     31   1.1       leo  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     32   1.1       leo  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     33   1.1       leo  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     34   1.1       leo  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     35   1.1       leo  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     36   1.1       leo  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     37   1.1       leo  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     38   1.1       leo  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     39   1.1       leo  * SUCH DAMAGE.
     40   1.1       leo  *
     41   1.1       leo  * from: Utah $Hdr: grf.c 1.31 91/01/21$
     42   1.1       leo  *
     43   1.1       leo  *	@(#)grf.c	7.8 (Berkeley) 5/7/91
     44   1.1       leo  */
     45   1.1       leo 
     46   1.1       leo /*
     47   1.1       leo  * Graphics display driver for the Atari
     48   1.1       leo  * This is the hardware-independent portion of the driver.
     49   1.1       leo  * Hardware access is through the grf_softc->g_mode routine.
     50   1.1       leo  */
     51   1.1       leo 
     52   1.1       leo #include <sys/param.h>
     53   1.1       leo #include <sys/proc.h>
     54   1.1       leo #include <sys/ioctl.h>
     55   1.1       leo #include <sys/device.h>
     56   1.1       leo #include <sys/file.h>
     57   1.1       leo #include <sys/malloc.h>
     58   1.1       leo #include <sys/conf.h>
     59   1.1       leo #include <sys/systm.h>
     60   1.1       leo #include <sys/vnode.h>
     61   1.1       leo #include <sys/mman.h>
     62  1.25       mrg 
     63   1.1       leo #include <machine/cpu.h>
     64  1.25       mrg 
     65  1.25       mrg #include <uvm/uvm_extern.h>
     66  1.25       mrg 
     67   1.1       leo #include <atari/atari/device.h>
     68   1.1       leo #include <atari/dev/grfioctl.h>
     69   1.1       leo #include <atari/dev/grfabs_reg.h>
     70   1.1       leo #include <atari/dev/grfvar.h>
     71   1.1       leo #include <atari/dev/itevar.h>
     72   1.1       leo #include <atari/dev/viewioctl.h>
     73   1.1       leo #include <atari/dev/viewvar.h>
     74   1.1       leo 
     75  1.12       leo #include "grfcc.h"
     76  1.12       leo #include "grfet.h"
     77  1.12       leo #define	NGRF	(NGRFCC + NGRFET)
     78  1.12       leo 
     79   1.1       leo #if NGRF > 0
     80   1.1       leo 
     81   1.1       leo #include "ite.h"
     82   1.1       leo #if NITE == 0
     83   1.1       leo #define	ite_on(u,f)
     84   1.1       leo #define	ite_off(u,f)
     85   1.1       leo #define ite_reinit(d)
     86   1.1       leo #endif
     87   1.1       leo 
     88   1.1       leo int grfon __P((dev_t));
     89   1.1       leo int grfoff __P((dev_t));
     90   1.1       leo int grfsinfo __P((dev_t, struct grfdyninfo *));
     91   1.1       leo 
     92  1.11       cgd int grfbusprint __P((void *auxp, const char *));
     93  1.17       leo int grfbusmatch __P((struct device *, struct cfdata *, void *));
     94   1.1       leo void grfbusattach __P((struct device *, struct device *, void *));
     95   1.1       leo 
     96   1.1       leo /*
     97   1.1       leo  * pointers to grf drivers device structs
     98   1.1       leo  */
     99  1.12       leo struct grf_softc *grfsp[NGRF]; /* XXX */
    100   1.1       leo 
    101  1.29   thorpej CFATTACH_DECL(grfbus, sizeof(struct device),
    102  1.29   thorpej     grfbusmatch, grfbusattach, NULL, NULL);
    103   1.8   thorpej 
    104  1.21   thorpej extern struct cfdriver grfbus_cd;
    105   1.1       leo 
    106  1.27   gehenna dev_type_open(grfopen);
    107  1.27   gehenna dev_type_close(grfclose);
    108  1.27   gehenna dev_type_ioctl(grfioctl);
    109  1.27   gehenna dev_type_mmap(grfmmap);
    110  1.27   gehenna 
    111  1.27   gehenna const struct cdevsw grf_cdevsw = {
    112  1.27   gehenna 	grfopen, grfclose, noread, nowrite, grfioctl,
    113  1.31  jdolecek 	nostop, notty, nopoll, grfmmap, nokqfilter,
    114  1.27   gehenna };
    115  1.27   gehenna 
    116   1.1       leo /*
    117   1.1       leo  * only used in console init.
    118   1.1       leo  */
    119   1.1       leo static struct cfdata *cfdata_gbus  = NULL;
    120   1.1       leo 
    121   1.1       leo int
    122  1.17       leo grfbusmatch(pdp, cfp, auxp)
    123   1.1       leo struct device	*pdp;
    124  1.17       leo struct cfdata	*cfp;
    125  1.17       leo void		*auxp;
    126   1.1       leo {
    127   1.8   thorpej 	if(strcmp(auxp, grfbus_cd.cd_name))
    128   1.1       leo 		return(0);
    129   1.1       leo 
    130  1.12       leo 	if(atari_realconfig == 0)
    131  1.12       leo 		cfdata_gbus = cfp;
    132   1.1       leo 	return(1);	/* Always there	*/
    133   1.1       leo }
    134   1.1       leo 
    135   1.1       leo void
    136   1.1       leo grfbusattach(pdp, dp, auxp)
    137   1.1       leo struct device	*pdp, *dp;
    138   1.1       leo void		*auxp;
    139   1.1       leo {
    140  1.12       leo     grf_auxp_t	grf_auxp;
    141  1.12       leo 
    142  1.12       leo     grf_auxp.busprint       = grfbusprint;
    143  1.12       leo     grf_auxp.from_bus_match = 1;
    144   1.1       leo 
    145  1.12       leo     if(dp == NULL) /* Console init	*/
    146  1.12       leo 	atari_config_found(cfdata_gbus, NULL, (void*)&grf_auxp, grfbusprint);
    147  1.12       leo     else {
    148  1.16  christos 	printf("\n");
    149  1.12       leo 	config_found(dp, (void*)&grf_auxp, grfbusprint);
    150  1.12       leo     }
    151   1.1       leo }
    152   1.1       leo 
    153   1.1       leo int
    154   1.1       leo grfbusprint(auxp, name)
    155  1.12       leo void		*auxp;
    156  1.12       leo const char	*name;
    157   1.1       leo {
    158   1.1       leo 	if(name == NULL)
    159   1.1       leo 		return(UNCONF);
    160   1.1       leo 	return(QUIET);
    161   1.1       leo }
    162   1.1       leo 
    163   1.1       leo /*ARGSUSED*/
    164   1.1       leo int
    165   1.1       leo grfopen(dev, flags, devtype, p)
    166   1.1       leo 	dev_t dev;
    167   1.1       leo 	int flags, devtype;
    168   1.1       leo 	struct proc *p;
    169   1.1       leo {
    170   1.1       leo 	struct grf_softc *gp;
    171   1.1       leo 
    172   1.1       leo 	if (GRFUNIT(dev) >= NGRF)
    173   1.1       leo 		return(ENXIO);
    174   1.1       leo 
    175   1.1       leo 	gp = grfsp[GRFUNIT(dev)];
    176  1.19       leo 	if (gp == NULL)
    177  1.19       leo 		return(ENXIO);
    178   1.1       leo 
    179   1.1       leo 	if ((gp->g_flags & GF_ALIVE) == 0)
    180   1.1       leo 		return(ENXIO);
    181   1.1       leo 
    182   1.1       leo 	if ((gp->g_flags & (GF_OPEN|GF_EXCLUDE)) == (GF_OPEN|GF_EXCLUDE))
    183   1.1       leo 		return(EBUSY);
    184   1.6       leo 	grf_viewsync(gp);
    185   1.1       leo 
    186   1.1       leo 	return(0);
    187   1.1       leo }
    188   1.1       leo 
    189   1.1       leo /*ARGSUSED*/
    190   1.1       leo int
    191  1.10       leo grfclose(dev, flags, mode, p)
    192  1.10       leo 	dev_t		dev;
    193  1.10       leo 	int		flags;
    194  1.10       leo 	int		mode;
    195  1.10       leo 	struct proc	*p;
    196   1.1       leo {
    197   1.1       leo 	struct grf_softc *gp;
    198   1.1       leo 
    199   1.1       leo 	gp = grfsp[GRFUNIT(dev)];
    200   1.1       leo 	(void)grfoff(dev);
    201   1.1       leo 	gp->g_flags &= GF_ALIVE;
    202   1.1       leo 	return(0);
    203   1.1       leo }
    204   1.1       leo 
    205   1.1       leo /*ARGSUSED*/
    206   1.1       leo int
    207   1.1       leo grfioctl(dev, cmd, data, flag, p)
    208   1.1       leo dev_t		dev;
    209   1.1       leo u_long		cmd;
    210   1.1       leo int		flag;
    211   1.1       leo caddr_t		data;
    212   1.1       leo struct proc	*p;
    213   1.1       leo {
    214   1.1       leo 	struct grf_softc	*gp;
    215   1.1       leo 	int			error;
    216  1.27   gehenna 	extern const struct cdevsw view_cdevsw;
    217   1.1       leo 
    218   1.1       leo 	gp = grfsp[GRFUNIT(dev)];
    219   1.1       leo 	error = 0;
    220   1.1       leo 
    221   1.1       leo 	switch (cmd) {
    222   1.1       leo 	case OGRFIOCGINFO:
    223   1.1       leo 	        /* argl.. no bank-member.. */
    224   1.1       leo 	  	bcopy((caddr_t)&gp->g_display, data, sizeof(struct grfinfo)-4);
    225   1.1       leo 		break;
    226   1.1       leo 	case GRFIOCGINFO:
    227   1.1       leo 		bcopy((caddr_t)&gp->g_display, data, sizeof(struct grfinfo));
    228   1.1       leo 		break;
    229   1.1       leo 	case GRFIOCON:
    230   1.1       leo 		error = grfon(dev);
    231   1.1       leo 		break;
    232   1.1       leo 	case GRFIOCOFF:
    233   1.1       leo 		error = grfoff(dev);
    234   1.1       leo 		break;
    235   1.1       leo 	case GRFIOCSINFO:
    236   1.1       leo 		error = grfsinfo(dev, (struct grfdyninfo *) data);
    237   1.1       leo 		break;
    238   1.1       leo 	case GRFGETVMODE:
    239   1.7       leo 		return(gp->g_mode(gp, GM_GRFGETVMODE, data, 0, 0));
    240   1.1       leo 	case GRFSETVMODE:
    241   1.7       leo 		error = gp->g_mode(gp, GM_GRFSETVMODE, data, 0, 0);
    242   1.1       leo 		if (error == 0 && gp->g_itedev)
    243   1.1       leo 			ite_reinit(gp->g_itedev);
    244   1.1       leo 		break;
    245   1.1       leo 	case GRFGETNUMVM:
    246   1.7       leo 		return(gp->g_mode(gp, GM_GRFGETNUMVM, data, 0, 0));
    247   1.1       leo 	/*
    248   1.1       leo 	 * these are all hardware dependant, and have to be resolved
    249   1.1       leo 	 * in the respective driver.
    250   1.1       leo 	 */
    251   1.1       leo 	case GRFIOCPUTCMAP:
    252   1.1       leo 	case GRFIOCGETCMAP:
    253   1.1       leo 	case GRFIOCSSPRITEPOS:
    254   1.1       leo 	case GRFIOCGSPRITEPOS:
    255   1.1       leo 	case GRFIOCSSPRITEINF:
    256   1.1       leo 	case GRFIOCGSPRITEINF:
    257   1.1       leo 	case GRFIOCGSPRITEMAX:
    258   1.1       leo 	default:
    259   1.1       leo 		/*
    260   1.1       leo 		 * check to see whether it's a command recognized by the
    261   1.1       leo 		 * view code.
    262   1.1       leo 		 */
    263  1.27   gehenna 		return((*view_cdevsw.d_ioctl)(gp->g_viewdev, cmd, data, flag,
    264  1.27   gehenna 					      p));
    265   1.1       leo 		error = EINVAL;
    266   1.1       leo 		break;
    267   1.1       leo 
    268   1.1       leo 	}
    269   1.1       leo 	return(error);
    270   1.1       leo }
    271   1.1       leo 
    272   1.1       leo /*
    273   1.1       leo  * map the contents of a graphics display card into process'
    274   1.1       leo  * memory space.
    275   1.1       leo  */
    276  1.23    simonb paddr_t
    277   1.2   mycroft grfmmap(dev, off, prot)
    278  1.23    simonb 	dev_t	dev;
    279  1.23    simonb 	off_t	off;
    280  1.23    simonb 	int	prot;
    281   1.1       leo {
    282   1.5       leo 	struct grf_softc	*gp;
    283   1.5       leo 	struct grfinfo		*gi;
    284  1.22    thomas 	u_int			vgabase, linbase;
    285   1.5       leo 
    286   1.5       leo 	gp = grfsp[GRFUNIT(dev)];
    287   1.5       leo 	gi = &gp->g_display;
    288  1.18       leo 
    289  1.22    thomas 	vgabase = gi->gd_vgabase;
    290  1.22    thomas 	linbase = gi->gd_linbase;
    291  1.22    thomas 
    292  1.18       leo 	/*
    293  1.18       leo 	 * control registers
    294  1.18       leo 	 */
    295  1.18       leo 	if (off >= 0 && off < gi->gd_regsize)
    296  1.23    simonb 		return(((paddr_t)gi->gd_regaddr + off) >> PGSHIFT);
    297   1.5       leo 
    298   1.5       leo 	/*
    299  1.22    thomas 	 * VGA memory
    300  1.22    thomas 	 */
    301  1.22    thomas 	if (off >= vgabase && off < (vgabase + gi->gd_vgasize))
    302  1.23    simonb 		return(((paddr_t)gi->gd_vgaaddr - vgabase + off) >> PGSHIFT);
    303  1.22    thomas 
    304  1.22    thomas 	/*
    305   1.5       leo 	 * frame buffer
    306   1.5       leo 	 */
    307  1.22    thomas 	if (off >= linbase && off < (linbase + gi->gd_fbsize))
    308  1.23    simonb 		return(((paddr_t)gi->gd_fbaddr - linbase + off) >> PGSHIFT);
    309   1.5       leo 	return(-1);
    310   1.1       leo }
    311   1.1       leo 
    312   1.1       leo int
    313   1.1       leo grfon(dev)
    314   1.1       leo 	dev_t dev;
    315   1.1       leo {
    316   1.1       leo 	struct grf_softc *gp;
    317   1.1       leo 
    318   1.1       leo 	gp = grfsp[GRFUNIT(dev)];
    319   1.1       leo 
    320   1.1       leo 	if (gp->g_flags & GF_GRFON)
    321   1.1       leo 		return(0);
    322   1.1       leo 
    323   1.1       leo 	gp->g_flags |= GF_GRFON;
    324   1.1       leo 	if (gp->g_itedev != NODEV)
    325   1.1       leo 		ite_off(gp->g_itedev, 3);
    326   1.1       leo 
    327   1.7       leo 	return(gp->g_mode(gp, (dev & GRFOVDEV) ? GM_GRFOVON : GM_GRFON,
    328   1.7       leo 							NULL, 0, 0));
    329   1.1       leo }
    330   1.1       leo 
    331   1.1       leo int
    332   1.1       leo grfoff(dev)
    333   1.1       leo 	dev_t dev;
    334   1.1       leo {
    335   1.1       leo 	struct grf_softc *gp;
    336   1.1       leo 	int error;
    337   1.1       leo 
    338   1.1       leo 	gp = grfsp[GRFUNIT(dev)];
    339   1.1       leo 
    340   1.1       leo 	if ((gp->g_flags & GF_GRFON) == 0)
    341   1.1       leo 		return(0);
    342   1.1       leo 
    343   1.1       leo 	gp->g_flags &= ~GF_GRFON;
    344   1.7       leo 	error = gp->g_mode(gp, (dev & GRFOVDEV) ? GM_GRFOVOFF : GM_GRFOFF,
    345   1.7       leo 						NULL, 0, 0);
    346   1.1       leo 
    347   1.1       leo 	/*
    348   1.1       leo 	 * Closely tied together no X's
    349   1.1       leo 	 */
    350   1.1       leo 	if (gp->g_itedev != NODEV)
    351   1.1       leo 		ite_on(gp->g_itedev, 2);
    352   1.1       leo 
    353   1.1       leo 	return(error);
    354   1.1       leo }
    355   1.1       leo 
    356   1.1       leo int
    357   1.1       leo grfsinfo(dev, dyninfo)
    358   1.1       leo 	dev_t dev;
    359   1.1       leo 	struct grfdyninfo *dyninfo;
    360   1.1       leo {
    361   1.1       leo 	struct grf_softc *gp;
    362   1.1       leo 	int error;
    363   1.1       leo 
    364   1.1       leo 	gp = grfsp[GRFUNIT(dev)];
    365   1.7       leo 	error = gp->g_mode(gp, GM_GRFCONFIG, dyninfo, 0, 0);
    366   1.1       leo 
    367   1.1       leo 	/*
    368   1.1       leo 	 * Closely tied together no X's
    369   1.1       leo 	 */
    370   1.1       leo 	if (gp->g_itedev != NODEV)
    371   1.1       leo 		ite_reinit(gp->g_itedev);
    372   1.1       leo 	return(error);
    373   1.1       leo }
    374   1.1       leo 
    375   1.1       leo /*
    376   1.1       leo  * Get the grf-info in sync with underlying view.
    377   1.1       leo  */
    378  1.12       leo void
    379   1.1       leo grf_viewsync(gp)
    380   1.1       leo struct grf_softc *gp;
    381   1.1       leo {
    382   1.1       leo 	struct view_size	vs;
    383   1.1       leo 	bmap_t			bm;
    384   1.1       leo 	struct grfinfo		*gi;
    385  1.27   gehenna 	extern const struct cdevsw view_cdevsw;
    386   1.1       leo 
    387   1.1       leo 	gi = &gp->g_display;
    388   1.1       leo 
    389  1.27   gehenna 	(*view_cdevsw.d_ioctl)(gp->g_viewdev, VIOCGBMAP, (caddr_t)&bm,
    390  1.27   gehenna 			       0, NOPROC);
    391   1.1       leo 
    392   1.1       leo 	gp->g_data = (caddr_t) 0xDeadBeaf; /* not particularly clean.. */
    393   1.1       leo 
    394   1.1       leo 	gi->gd_fbaddr  = bm.hw_address;
    395  1.20       leo 	gi->gd_fbsize  = bm.phys_mappable;
    396  1.22    thomas 	gi->gd_linbase = bm.lin_base;
    397  1.12       leo 	gi->gd_regaddr = bm.hw_regs;
    398  1.12       leo 	gi->gd_regsize = bm.reg_size;
    399  1.22    thomas 	gi->gd_vgaaddr = bm.vga_address;
    400  1.22    thomas 	gi->gd_vgasize = bm.vga_mappable;
    401  1.22    thomas 	gi->gd_vgabase = bm.vga_base;
    402   1.1       leo 
    403  1.27   gehenna 	if((*view_cdevsw.d_ioctl)(gp->g_viewdev, VIOCGSIZE, (caddr_t)&vs, 0,
    404  1.27   gehenna 				  NOPROC)) {
    405   1.1       leo 		/*
    406   1.1       leo 		 * fill in some default values...
    407   1.1       leo 		 * XXX: Should _never_ happen
    408   1.1       leo 		 */
    409   1.1       leo 		vs.width  = 640;
    410   1.1       leo 		vs.height = 400;
    411   1.3       leo 		vs.depth  = 1;
    412   1.1       leo 	}
    413   1.1       leo 	gi->gd_colors = 1 << vs.depth;
    414   1.1       leo 	gi->gd_planes = vs.depth;
    415   1.1       leo 
    416   1.1       leo 	gi->gd_fbwidth         = vs.width;
    417   1.1       leo 	gi->gd_fbheight        = vs.height;
    418   1.1       leo 	gi->gd_dyn.gdi_fbx     = 0;
    419   1.1       leo 	gi->gd_dyn.gdi_fby     = 0;
    420   1.1       leo 	gi->gd_dyn.gdi_dwidth  = vs.width;
    421   1.1       leo 	gi->gd_dyn.gdi_dheight = vs.height;
    422   1.1       leo 	gi->gd_dyn.gdi_dx      = 0;
    423   1.1       leo 	gi->gd_dyn.gdi_dy      = 0;
    424   1.1       leo }
    425   1.1       leo 
    426   1.1       leo /*
    427   1.1       leo  * Change the mode of the display.
    428   1.1       leo  * Right now all we can do is grfon/grfoff.
    429   1.1       leo  * Return a UNIX error number or 0 for success.
    430   1.1       leo  */
    431   1.1       leo /*ARGSUSED*/
    432  1.12       leo int
    433   1.1       leo grf_mode(gp, cmd, arg, a2, a3)
    434   1.1       leo struct grf_softc	*gp;
    435   1.1       leo int			cmd, a2, a3;
    436   1.1       leo void			*arg;
    437   1.1       leo {
    438  1.27   gehenna 	extern const struct cdevsw view_cdevsw;
    439  1.27   gehenna 
    440   1.1       leo 	switch (cmd) {
    441   1.1       leo 		case GM_GRFON:
    442   1.1       leo 			/*
    443   1.1       leo 			 * Get in sync with view, ite might have changed it.
    444   1.1       leo 			 */
    445   1.1       leo 			grf_viewsync(gp);
    446  1.27   gehenna 			(*view_cdevsw.d_ioctl)(gp->g_viewdev, VIOCDISPLAY,
    447  1.27   gehenna 					       NULL, 0, NOPROC);
    448   1.1       leo 			return(0);
    449   1.1       leo 	case GM_GRFOFF:
    450  1.27   gehenna 			(*view_cdevsw.d_ioctl)(gp->g_viewdev, VIOCREMOVE,
    451  1.27   gehenna 					       NULL, 0, NOPROC);
    452   1.1       leo 			return(0);
    453   1.1       leo 	case GM_GRFCONFIG:
    454   1.1       leo 	default:
    455   1.1       leo 			break;
    456   1.1       leo 	}
    457  1.26    atatat 	return(EPASSTHROUGH);
    458   1.1       leo }
    459   1.1       leo #endif	/* NGRF > 0 */
    460