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