Home | History | Annotate | Line # | Download | only in dev
grf_compat.c revision 1.7.8.3
      1  1.7.8.3  nathanw /*	$NetBSD: grf_compat.c,v 1.7.8.3 2002/10/18 02:38:18 nathanw Exp $	*/
      2  1.7.8.2  nathanw 
      3  1.7.8.2  nathanw /*
      4  1.7.8.2  nathanw  * Copyright (C) 1999 Scott Reynolds
      5  1.7.8.2  nathanw  * All rights reserved.
      6  1.7.8.2  nathanw  *
      7  1.7.8.2  nathanw  * Redistribution and use in source and binary forms, with or without
      8  1.7.8.2  nathanw  * modification, are permitted provided that the following conditions
      9  1.7.8.2  nathanw  * are met:
     10  1.7.8.2  nathanw  * 1. Redistributions of source code must retain the above copyright
     11  1.7.8.2  nathanw  *    notice, this list of conditions and the following disclaimer.
     12  1.7.8.2  nathanw  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.7.8.2  nathanw  *    notice, this list of conditions and the following disclaimer in the
     14  1.7.8.2  nathanw  *    documentation and/or other materials provided with the distribution.
     15  1.7.8.2  nathanw  * 3. The name of the author may not be used to endorse or promote products
     16  1.7.8.2  nathanw  *    derived from this software without specific prior written permission.
     17  1.7.8.2  nathanw  *
     18  1.7.8.2  nathanw  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     19  1.7.8.2  nathanw  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     20  1.7.8.2  nathanw  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     21  1.7.8.2  nathanw  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     22  1.7.8.2  nathanw  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     23  1.7.8.2  nathanw  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     24  1.7.8.2  nathanw  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     25  1.7.8.2  nathanw  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     26  1.7.8.2  nathanw  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     27  1.7.8.2  nathanw  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     28  1.7.8.2  nathanw  */
     29  1.7.8.2  nathanw 
     30  1.7.8.2  nathanw /*
     31  1.7.8.2  nathanw  * macfb compatibility with legacy grf devices
     32  1.7.8.2  nathanw  */
     33  1.7.8.2  nathanw 
     34  1.7.8.2  nathanw #include <sys/param.h>
     35  1.7.8.2  nathanw #include <sys/systm.h>
     36  1.7.8.2  nathanw #include <sys/cdefs.h>
     37  1.7.8.2  nathanw #include <sys/conf.h>
     38  1.7.8.2  nathanw #include <sys/device.h>
     39  1.7.8.2  nathanw #include <sys/errno.h>
     40  1.7.8.2  nathanw #include <sys/ioctl.h>
     41  1.7.8.2  nathanw #include <sys/malloc.h>
     42  1.7.8.2  nathanw #include <sys/mman.h>
     43  1.7.8.2  nathanw #include <sys/proc.h>
     44  1.7.8.2  nathanw #include <sys/resourcevar.h>
     45  1.7.8.2  nathanw #include <sys/vnode.h>
     46  1.7.8.2  nathanw 
     47  1.7.8.2  nathanw #include <machine/autoconf.h>
     48  1.7.8.2  nathanw #include <machine/bus.h>
     49  1.7.8.2  nathanw #include <machine/grfioctl.h>
     50  1.7.8.2  nathanw 
     51  1.7.8.2  nathanw #include <mac68k/nubus/nubus.h>
     52  1.7.8.2  nathanw #include <mac68k/dev/grfvar.h>
     53  1.7.8.2  nathanw #include <mac68k/dev/macfbvar.h>
     54  1.7.8.2  nathanw 
     55  1.7.8.2  nathanw #include <miscfs/specfs/specdev.h>
     56  1.7.8.2  nathanw 
     57  1.7.8.2  nathanw #include <uvm/uvm_extern.h>
     58  1.7.8.2  nathanw #include <uvm/uvm_map.h>
     59  1.7.8.2  nathanw 
     60  1.7.8.2  nathanw dev_type_open(grfopen);
     61  1.7.8.2  nathanw dev_type_close(grfclose);
     62  1.7.8.2  nathanw dev_type_ioctl(grfioctl);
     63  1.7.8.2  nathanw dev_type_mmap(grfmmap);
     64  1.7.8.2  nathanw 
     65  1.7.8.2  nathanw const struct cdevsw grf_cdevsw = {
     66  1.7.8.2  nathanw 	grfopen, grfclose, noread, nowrite, grfioctl,
     67  1.7.8.3  nathanw 	nostop, notty, nopoll, grfmmap,
     68  1.7.8.2  nathanw };
     69  1.7.8.2  nathanw 
     70  1.7.8.2  nathanw void	grf_scinit __P((struct grf_softc *, const char *, int));
     71  1.7.8.2  nathanw void	grf_init __P((int));
     72  1.7.8.2  nathanw void	grfattach __P((int));
     73  1.7.8.2  nathanw int	grfmap __P((dev_t, struct macfb_softc *, caddr_t *, struct proc *));
     74  1.7.8.2  nathanw int	grfunmap __P((dev_t, struct macfb_softc *, caddr_t, struct proc *));
     75  1.7.8.2  nathanw 
     76  1.7.8.2  nathanw /* Non-private for the benefit of libkvm. */
     77  1.7.8.2  nathanw struct	grf_softc *grf_softc;
     78  1.7.8.2  nathanw int	numgrf = 0;
     79  1.7.8.2  nathanw 
     80  1.7.8.2  nathanw /*
     81  1.7.8.2  nathanw  * Initialize a softc to sane defaults.
     82  1.7.8.2  nathanw  */
     83  1.7.8.2  nathanw void
     84  1.7.8.2  nathanw grf_scinit(sc, name, unit)
     85  1.7.8.2  nathanw 	struct grf_softc *sc;
     86  1.7.8.2  nathanw 	const char *name;
     87  1.7.8.2  nathanw 	int unit;
     88  1.7.8.2  nathanw {
     89  1.7.8.2  nathanw 	memset(sc, 0, sizeof(struct grf_softc));
     90  1.7.8.2  nathanw 	snprintf(sc->sc_xname, sizeof(sc->sc_xname), "%s%d", name, unit);
     91  1.7.8.2  nathanw 	sc->mfb_sc = NULL;
     92  1.7.8.2  nathanw }
     93  1.7.8.2  nathanw 
     94  1.7.8.2  nathanw /*
     95  1.7.8.2  nathanw  * (Re-)initialize the grf_softc block so that at least the requested
     96  1.7.8.2  nathanw  * number of elements has been allocated.  If this results in more
     97  1.7.8.2  nathanw  * elements than we had prior to getting here, we initialize each of
     98  1.7.8.2  nathanw  * them to avoid problems down the road.
     99  1.7.8.2  nathanw  */
    100  1.7.8.2  nathanw void
    101  1.7.8.2  nathanw grf_init(n)
    102  1.7.8.2  nathanw 	int n;
    103  1.7.8.2  nathanw {
    104  1.7.8.2  nathanw 	struct grf_softc *sc;
    105  1.7.8.2  nathanw 	int i;
    106  1.7.8.2  nathanw 
    107  1.7.8.2  nathanw 	if (n >= numgrf) {
    108  1.7.8.2  nathanw 		i = numgrf;
    109  1.7.8.2  nathanw 		numgrf = n + 1;
    110  1.7.8.2  nathanw 
    111  1.7.8.2  nathanw 		if (grf_softc == NULL)
    112  1.7.8.2  nathanw 			sc = (struct grf_softc *)
    113  1.7.8.2  nathanw 			    malloc(numgrf * sizeof(*sc),
    114  1.7.8.2  nathanw 			    M_DEVBUF, M_NOWAIT);
    115  1.7.8.2  nathanw 		else
    116  1.7.8.2  nathanw 			sc = (struct grf_softc *)
    117  1.7.8.2  nathanw 			    realloc(grf_softc, numgrf * sizeof(*sc),
    118  1.7.8.2  nathanw 			    M_DEVBUF, M_NOWAIT);
    119  1.7.8.2  nathanw 		if (sc == NULL) {
    120  1.7.8.2  nathanw 			printf("WARNING: no memory for grf emulation\n");
    121  1.7.8.2  nathanw 			if (grf_softc != NULL)
    122  1.7.8.2  nathanw 				free(grf_softc, M_DEVBUF);
    123  1.7.8.2  nathanw 			return;
    124  1.7.8.2  nathanw 		}
    125  1.7.8.2  nathanw 		grf_softc = sc;
    126  1.7.8.2  nathanw 
    127  1.7.8.2  nathanw 		/* Initialize per-softc structures. */
    128  1.7.8.2  nathanw 		while (i < numgrf) {
    129  1.7.8.2  nathanw 			grf_scinit(&grf_softc[i], "grf", i);
    130  1.7.8.2  nathanw 			i++;
    131  1.7.8.2  nathanw 		}
    132  1.7.8.2  nathanw 	}
    133  1.7.8.2  nathanw }
    134  1.7.8.2  nathanw 
    135  1.7.8.2  nathanw /*
    136  1.7.8.2  nathanw  * Called by main() during pseudo-device attachment.  If we had a
    137  1.7.8.2  nathanw  * way to configure additional grf devices later, this would actually
    138  1.7.8.2  nathanw  * allocate enough space for them.  As it stands, it's nonsensical,
    139  1.7.8.2  nathanw  * so other than a basic sanity check we do nothing.
    140  1.7.8.2  nathanw  */
    141  1.7.8.2  nathanw void
    142  1.7.8.2  nathanw grfattach(n)
    143  1.7.8.2  nathanw 	int n;
    144  1.7.8.2  nathanw {
    145  1.7.8.2  nathanw 	if (n <= 0) {
    146  1.7.8.2  nathanw #ifdef DIAGNOSTIC
    147  1.7.8.2  nathanw 		panic("grfattach: count <= 0");
    148  1.7.8.2  nathanw #endif
    149  1.7.8.2  nathanw 		return;
    150  1.7.8.2  nathanw 	}
    151  1.7.8.2  nathanw 
    152  1.7.8.2  nathanw #if 0 /* XXX someday, if we implement a way to attach after autoconfig */
    153  1.7.8.2  nathanw 	grf_init(n);
    154  1.7.8.2  nathanw #endif
    155  1.7.8.2  nathanw }
    156  1.7.8.2  nathanw 
    157  1.7.8.2  nathanw /*
    158  1.7.8.2  nathanw  * Called from macfb_attach() after setting up the frame buffer.  Since
    159  1.7.8.2  nathanw  * there is a 1:1 correspondence between the macfb device and the grf
    160  1.7.8.2  nathanw  * device, the only bit of information we really need is the macfb_softc.
    161  1.7.8.2  nathanw  */
    162  1.7.8.2  nathanw void
    163  1.7.8.2  nathanw grf_attach(sc, unit)
    164  1.7.8.2  nathanw 	struct macfb_softc *sc;
    165  1.7.8.2  nathanw 	int unit;
    166  1.7.8.2  nathanw {
    167  1.7.8.2  nathanw 	grf_init(unit);
    168  1.7.8.2  nathanw 
    169  1.7.8.2  nathanw 	if (unit < numgrf)
    170  1.7.8.2  nathanw 		grf_softc[unit].mfb_sc = sc;
    171  1.7.8.2  nathanw }
    172  1.7.8.2  nathanw 
    173  1.7.8.2  nathanw /*
    174  1.7.8.2  nathanw  * Standard device ops
    175  1.7.8.2  nathanw  */
    176  1.7.8.2  nathanw int
    177  1.7.8.2  nathanw grfopen(dev, flag, mode, p)
    178  1.7.8.2  nathanw 	dev_t dev;
    179  1.7.8.2  nathanw 	int flag;
    180  1.7.8.2  nathanw 	int mode;
    181  1.7.8.2  nathanw 	struct proc *p;
    182  1.7.8.2  nathanw {
    183  1.7.8.2  nathanw 	struct grf_softc *sc;
    184  1.7.8.2  nathanw 	int unit = GRFUNIT(dev);
    185  1.7.8.2  nathanw 	int rv = 0;
    186  1.7.8.2  nathanw 
    187  1.7.8.2  nathanw 	if (grf_softc == NULL || unit >= numgrf)
    188  1.7.8.2  nathanw 		return ENXIO;
    189  1.7.8.2  nathanw 
    190  1.7.8.2  nathanw 	sc = &grf_softc[unit];
    191  1.7.8.2  nathanw 	if (sc->mfb_sc == NULL)
    192  1.7.8.2  nathanw 		rv = ENXIO;
    193  1.7.8.2  nathanw 
    194  1.7.8.2  nathanw 	return rv;
    195  1.7.8.2  nathanw }
    196  1.7.8.2  nathanw 
    197  1.7.8.2  nathanw int
    198  1.7.8.2  nathanw grfclose(dev, flag, mode, p)
    199  1.7.8.2  nathanw 	dev_t dev;
    200  1.7.8.2  nathanw 	int flag;
    201  1.7.8.2  nathanw 	int mode;
    202  1.7.8.2  nathanw 	struct proc *p;
    203  1.7.8.2  nathanw {
    204  1.7.8.2  nathanw 	struct grf_softc *sc;
    205  1.7.8.2  nathanw 	int unit = GRFUNIT(dev);
    206  1.7.8.2  nathanw 	int rv = 0;
    207  1.7.8.2  nathanw 
    208  1.7.8.2  nathanw 	if (grf_softc == NULL || unit >= numgrf)
    209  1.7.8.2  nathanw 		return ENXIO;
    210  1.7.8.2  nathanw 
    211  1.7.8.2  nathanw 	sc = &grf_softc[unit];
    212  1.7.8.2  nathanw 	if (sc->mfb_sc != NULL)
    213  1.7.8.2  nathanw 		macfb_clear(sc->mfb_sc->sc_dc);	/* clear the display */
    214  1.7.8.2  nathanw 	else
    215  1.7.8.2  nathanw 		rv = ENXIO;
    216  1.7.8.2  nathanw 
    217  1.7.8.2  nathanw 	return rv;
    218  1.7.8.2  nathanw }
    219  1.7.8.2  nathanw 
    220  1.7.8.2  nathanw int
    221  1.7.8.2  nathanw grfioctl(dev, cmd, data, flag, p)
    222  1.7.8.2  nathanw 	dev_t dev;
    223  1.7.8.2  nathanw 	u_long cmd;
    224  1.7.8.2  nathanw 	caddr_t data;
    225  1.7.8.2  nathanw 	int flag;
    226  1.7.8.2  nathanw 	struct proc *p;
    227  1.7.8.2  nathanw {
    228  1.7.8.2  nathanw 	struct grf_softc *sc;
    229  1.7.8.2  nathanw 	struct macfb_devconfig *dc;
    230  1.7.8.2  nathanw #if defined(GRF_COMPAT) || (NGRF > 0)
    231  1.7.8.2  nathanw 	struct grfinfo *gd;
    232  1.7.8.2  nathanw #endif /* GRF_COMPAT || (NGRF > 0) */
    233  1.7.8.2  nathanw 	struct grfmode *gm;
    234  1.7.8.2  nathanw 	int unit = GRFUNIT(dev);
    235  1.7.8.2  nathanw 	int rv;
    236  1.7.8.2  nathanw 
    237  1.7.8.2  nathanw 	if (grf_softc == NULL || unit >= numgrf)
    238  1.7.8.2  nathanw 		return ENXIO;
    239  1.7.8.2  nathanw 
    240  1.7.8.2  nathanw 	sc = &grf_softc[unit];
    241  1.7.8.2  nathanw 	if (sc->mfb_sc == NULL)
    242  1.7.8.2  nathanw 		return ENXIO;
    243  1.7.8.2  nathanw 
    244  1.7.8.2  nathanw 	dc = sc->mfb_sc->sc_dc;
    245  1.7.8.2  nathanw 
    246  1.7.8.2  nathanw 	switch (cmd) {
    247  1.7.8.2  nathanw #if defined(GRF_COMPAT) || (NGRF > 0)
    248  1.7.8.2  nathanw 	case GRFIOCGINFO:
    249  1.7.8.2  nathanw 		gd = (struct grfinfo *)data;
    250  1.7.8.2  nathanw 		memset(gd, 0, sizeof(struct grfinfo));
    251  1.7.8.2  nathanw 		gd->gd_fbaddr     = (caddr_t)dc->dc_paddr;
    252  1.7.8.2  nathanw 		gd->gd_fbsize     = dc->dc_size;
    253  1.7.8.2  nathanw 		gd->gd_colors     = (short)(1 << dc->dc_depth);
    254  1.7.8.2  nathanw 		gd->gd_planes     = (short)dc->dc_depth;
    255  1.7.8.2  nathanw 		gd->gd_fbwidth    = dc->dc_wid;
    256  1.7.8.2  nathanw 		gd->gd_fbheight   = dc->dc_ht;
    257  1.7.8.2  nathanw 		gd->gd_fbrowbytes = dc->dc_rowbytes;
    258  1.7.8.2  nathanw 		gd->gd_dwidth     = dc->dc_raster.width;
    259  1.7.8.2  nathanw 		gd->gd_dheight    = dc->dc_raster.height;
    260  1.7.8.2  nathanw 		rv = 0;
    261  1.7.8.2  nathanw 		break;
    262  1.7.8.2  nathanw #endif /* GRF_COMPAT || (NGRF > 0) */
    263  1.7.8.2  nathanw 
    264  1.7.8.2  nathanw 	case GRFIOCON:
    265  1.7.8.2  nathanw 	case GRFIOCOFF:
    266  1.7.8.2  nathanw 		/* Nothing to do */
    267  1.7.8.2  nathanw 		rv = 0;
    268  1.7.8.2  nathanw 		break;
    269  1.7.8.2  nathanw 
    270  1.7.8.2  nathanw #if defined(GRF_COMPAT) || (NGRF > 0)
    271  1.7.8.2  nathanw 	case GRFIOCMAP:
    272  1.7.8.2  nathanw 		rv = grfmap(dev, sc->mfb_sc, (caddr_t *)data, p);
    273  1.7.8.2  nathanw 		break;
    274  1.7.8.2  nathanw 
    275  1.7.8.2  nathanw 	case GRFIOCUNMAP:
    276  1.7.8.2  nathanw 		rv = grfunmap(dev, sc->mfb_sc, *(caddr_t *)data, p);
    277  1.7.8.2  nathanw 		break;
    278  1.7.8.2  nathanw #endif /* GRF_COMPAT || (NGRF > 0) */
    279  1.7.8.2  nathanw 
    280  1.7.8.2  nathanw 	case GRFIOCGMODE:
    281  1.7.8.2  nathanw 		gm = (struct grfmode *)data;
    282  1.7.8.2  nathanw 		memset(gm, 0, sizeof(struct grfmode));
    283  1.7.8.2  nathanw 		gm->fbbase   = (char *)dc->dc_vaddr;
    284  1.7.8.2  nathanw 		gm->fbsize   = dc->dc_size;
    285  1.7.8.2  nathanw 		gm->fboff    = dc->dc_offset;
    286  1.7.8.2  nathanw 		gm->rowbytes = dc->dc_rowbytes;
    287  1.7.8.2  nathanw 		gm->width    = dc->dc_wid;
    288  1.7.8.2  nathanw 		gm->height   = dc->dc_ht;
    289  1.7.8.2  nathanw 		gm->psize    = dc->dc_depth;
    290  1.7.8.2  nathanw 		rv = 0;
    291  1.7.8.2  nathanw 		break;
    292  1.7.8.2  nathanw 
    293  1.7.8.2  nathanw 	case GRFIOCLISTMODES:
    294  1.7.8.2  nathanw 	case GRFIOCGETMODE:
    295  1.7.8.2  nathanw 	case GRFIOCSETMODE:
    296  1.7.8.2  nathanw 		/* NONE of these operations are (officially) supported. */
    297  1.7.8.2  nathanw 	default:
    298  1.7.8.2  nathanw 		rv = EINVAL;
    299  1.7.8.2  nathanw 		break;
    300  1.7.8.2  nathanw 	}
    301  1.7.8.2  nathanw 	return rv;
    302  1.7.8.2  nathanw }
    303  1.7.8.2  nathanw 
    304  1.7.8.2  nathanw paddr_t
    305  1.7.8.2  nathanw grfmmap(dev, off, prot)
    306  1.7.8.2  nathanw 	dev_t dev;
    307  1.7.8.2  nathanw 	off_t off;
    308  1.7.8.2  nathanw 	int prot;
    309  1.7.8.2  nathanw {
    310  1.7.8.2  nathanw 	struct grf_softc *sc;
    311  1.7.8.2  nathanw 	struct macfb_devconfig *dc;
    312  1.7.8.2  nathanw 	paddr_t addr;
    313  1.7.8.2  nathanw 	int unit = GRFUNIT(dev);
    314  1.7.8.2  nathanw 
    315  1.7.8.2  nathanw 	if (grf_softc == NULL || unit >= numgrf)
    316  1.7.8.2  nathanw 		return ENXIO;
    317  1.7.8.2  nathanw 
    318  1.7.8.2  nathanw 	sc = &grf_softc[unit];
    319  1.7.8.2  nathanw 	if (sc->mfb_sc == NULL)
    320  1.7.8.2  nathanw 		return ENXIO;
    321  1.7.8.2  nathanw 
    322  1.7.8.2  nathanw 	dc = sc->mfb_sc->sc_dc;
    323  1.7.8.2  nathanw 
    324  1.7.8.2  nathanw 	if (off >= 0 &&
    325  1.7.8.2  nathanw 	    off < m68k_round_page(dc->dc_offset + dc->dc_size))
    326  1.7.8.2  nathanw 		addr = m68k_btop(dc->dc_paddr + off);
    327  1.7.8.2  nathanw 	else
    328  1.7.8.2  nathanw 		addr = (-1);	/* XXX bogus */
    329  1.7.8.2  nathanw 
    330  1.7.8.2  nathanw 	return addr;
    331  1.7.8.2  nathanw }
    332  1.7.8.2  nathanw 
    333  1.7.8.2  nathanw int
    334  1.7.8.2  nathanw grfmap(dev, sc, addrp, p)
    335  1.7.8.2  nathanw 	dev_t dev;
    336  1.7.8.2  nathanw 	struct macfb_softc *sc;
    337  1.7.8.2  nathanw 	caddr_t *addrp;
    338  1.7.8.2  nathanw 	struct proc *p;
    339  1.7.8.2  nathanw {
    340  1.7.8.2  nathanw 	struct specinfo si;
    341  1.7.8.2  nathanw 	struct vnode vn;
    342  1.7.8.2  nathanw 	u_long len;
    343  1.7.8.2  nathanw 	int error, flags;
    344  1.7.8.2  nathanw 
    345  1.7.8.2  nathanw 	*addrp = (caddr_t)sc->sc_dc->dc_paddr;
    346  1.7.8.2  nathanw 	len = m68k_round_page(sc->sc_dc->dc_offset + sc->sc_dc->dc_size);
    347  1.7.8.2  nathanw 	flags = MAP_SHARED | MAP_FIXED;
    348  1.7.8.2  nathanw 
    349  1.7.8.2  nathanw 	vn.v_type = VCHR;		/* XXX */
    350  1.7.8.2  nathanw 	vn.v_specinfo = &si;		/* XXX */
    351  1.7.8.2  nathanw 	vn.v_rdev = dev;		/* XXX */
    352  1.7.8.2  nathanw 
    353  1.7.8.2  nathanw 	error = uvm_mmap(&p->p_vmspace->vm_map, (vaddr_t *)addrp,
    354  1.7.8.2  nathanw 	    (vsize_t)len, VM_PROT_ALL, VM_PROT_ALL,
    355  1.7.8.2  nathanw 	    flags, (caddr_t)&vn, 0, p->p_rlimit[RLIMIT_MEMLOCK].rlim_cur);
    356  1.7.8.2  nathanw 
    357  1.7.8.2  nathanw 	/* Offset into page: */
    358  1.7.8.2  nathanw 	*addrp += sc->sc_dc->dc_offset;
    359  1.7.8.2  nathanw 
    360  1.7.8.2  nathanw 	return (error);
    361  1.7.8.2  nathanw }
    362  1.7.8.2  nathanw 
    363  1.7.8.2  nathanw int
    364  1.7.8.2  nathanw grfunmap(dev, sc, addr, p)
    365  1.7.8.2  nathanw 	dev_t dev;
    366  1.7.8.2  nathanw 	struct macfb_softc *sc;
    367  1.7.8.2  nathanw 	caddr_t addr;
    368  1.7.8.2  nathanw 	struct proc *p;
    369  1.7.8.2  nathanw {
    370  1.7.8.2  nathanw 	vm_size_t size;
    371  1.7.8.2  nathanw 
    372  1.7.8.2  nathanw 	addr -= sc->sc_dc->dc_offset;
    373  1.7.8.2  nathanw 
    374  1.7.8.2  nathanw 	if (addr <= 0)
    375  1.7.8.2  nathanw 		return (-1);
    376  1.7.8.2  nathanw 
    377  1.7.8.2  nathanw 	size = m68k_round_page(sc->sc_dc->dc_offset + sc->sc_dc->dc_size);
    378  1.7.8.2  nathanw 	uvm_unmap(&p->p_vmspace->vm_map, (vaddr_t)addr, (vaddr_t)addr + size);
    379  1.7.8.2  nathanw 	return 0;
    380  1.7.8.2  nathanw }
    381