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