Home | History | Annotate | Line # | Download | only in dev
cg2.c revision 1.22.6.5
      1  1.22.6.5     skrll /*	$NetBSD: cg2.c,v 1.22.6.5 2005/02/04 07:09:16 skrll Exp $	*/
      2       1.1       gwr 
      3       1.1       gwr /*
      4       1.1       gwr  * Copyright (c) 1992, 1993
      5       1.1       gwr  *	The Regents of the University of California.  All rights reserved.
      6       1.1       gwr  *
      7       1.1       gwr  * This software was developed by the Computer Systems Engineering group
      8       1.1       gwr  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
      9       1.1       gwr  * contributed to Berkeley.
     10       1.1       gwr  *
     11       1.1       gwr  * All advertising materials mentioning features or use of this software
     12       1.1       gwr  * must display the following acknowledgement:
     13       1.1       gwr  *	This product includes software developed by the University of
     14       1.1       gwr  *	California, Lawrence Berkeley Laboratory.
     15       1.1       gwr  *
     16       1.1       gwr  * Redistribution and use in source and binary forms, with or without
     17       1.1       gwr  * modification, are permitted provided that the following conditions
     18       1.1       gwr  * are met:
     19       1.1       gwr  * 1. Redistributions of source code must retain the above copyright
     20       1.1       gwr  *    notice, this list of conditions and the following disclaimer.
     21       1.1       gwr  * 2. Redistributions in binary form must reproduce the above copyright
     22       1.1       gwr  *    notice, this list of conditions and the following disclaimer in the
     23       1.1       gwr  *    documentation and/or other materials provided with the distribution.
     24  1.22.6.1     skrll  * 3. Neither the name of the University nor the names of its contributors
     25       1.1       gwr  *    may be used to endorse or promote products derived from this software
     26       1.1       gwr  *    without specific prior written permission.
     27       1.1       gwr  *
     28       1.1       gwr  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29       1.1       gwr  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30       1.1       gwr  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31       1.1       gwr  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32       1.1       gwr  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33       1.1       gwr  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34       1.1       gwr  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35       1.1       gwr  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36       1.1       gwr  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37       1.1       gwr  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38       1.1       gwr  * SUCH DAMAGE.
     39       1.1       gwr  *
     40       1.1       gwr  *	from: @(#)cgthree.c	8.2 (Berkeley) 10/30/93
     41       1.1       gwr  */
     42       1.1       gwr 
     43       1.1       gwr /*
     44       1.1       gwr  * color display (cg2) driver.
     45       1.1       gwr  *
     46       1.1       gwr  * Does not handle interrupts, even though they can occur.
     47       1.1       gwr  *
     48       1.1       gwr  * XXX should defer colormap updates to vertical retrace interrupts
     49       1.1       gwr  */
     50       1.1       gwr 
     51  1.22.6.1     skrll #include <sys/cdefs.h>
     52  1.22.6.5     skrll __KERNEL_RCSID(0, "$NetBSD: cg2.c,v 1.22.6.5 2005/02/04 07:09:16 skrll Exp $");
     53  1.22.6.1     skrll 
     54       1.1       gwr #include <sys/param.h>
     55       1.8       gwr #include <sys/systm.h>
     56       1.8       gwr #include <sys/conf.h>
     57       1.1       gwr #include <sys/device.h>
     58       1.1       gwr #include <sys/ioctl.h>
     59       1.1       gwr #include <sys/malloc.h>
     60       1.1       gwr #include <sys/mman.h>
     61       1.8       gwr #include <sys/proc.h>
     62       1.1       gwr #include <sys/tty.h>
     63       1.1       gwr 
     64      1.13       mrg #include <uvm/uvm_extern.h>
     65       1.1       gwr 
     66      1.16   thorpej #include <dev/sun/fbio.h>
     67       1.1       gwr #include <machine/autoconf.h>
     68       1.1       gwr #include <machine/pmap.h>
     69       1.1       gwr #include <machine/cg2reg.h>
     70       1.1       gwr 
     71       1.1       gwr #include "fbvar.h"
     72       1.1       gwr 
     73       1.1       gwr #define	CMSIZE 256
     74       1.1       gwr 
     75       1.1       gwr /* offset to and size of mapped part of frame buffer */
     76       1.1       gwr #define PLANEMAP_SIZE		0x100000
     77       1.1       gwr #define PIXELMAP_SIZE		0x100000
     78       1.1       gwr #define ROWOPMAP_SIZE		0x100000
     79       1.1       gwr 
     80       1.1       gwr #define	CTLREGS_OFF 		0x300000
     81       1.1       gwr #define	CTLREGS_SIZE		 0x10600
     82       1.1       gwr 
     83       1.1       gwr #define	CG2_MAPPED_OFFSET	(PLANEMAP_SIZE + PIXELMAP_SIZE)
     84       1.2       gwr #define	CG2_MAPPED_SIZE 	(CTLREGS_OFF + CTLREGS_SIZE)
     85       1.1       gwr 
     86       1.1       gwr /* per-display variables */
     87       1.1       gwr struct cg2_softc {
     88       1.1       gwr 	struct	device sc_dev;		/* base device */
     89       1.1       gwr 	struct	fbdevice sc_fb;		/* frame buffer device */
     90       1.1       gwr 	int 	sc_phys;		/* display RAM (phys addr) */
     91       1.1       gwr 	int 	sc_pmtype;		/* pmap type bits */
     92       1.1       gwr 	struct	cg2fb *sc_ctlreg;	/* control registers */
     93       1.1       gwr };
     94       1.1       gwr 
     95       1.1       gwr /* autoconfiguration driver */
     96  1.22.6.4     skrll static void	cg2attach(struct device *, struct device *, void *);
     97  1.22.6.4     skrll static int	cg2match(struct device *, struct cfdata *, void *);
     98       1.1       gwr 
     99      1.20   thorpej CFATTACH_DECL(cgtwo, sizeof(struct cg2_softc),
    100      1.21   thorpej     cg2match, cg2attach, NULL, NULL);
    101      1.11       gwr 
    102      1.11       gwr extern struct cfdriver cgtwo_cd;
    103       1.1       gwr 
    104      1.18   gehenna dev_type_open(cg2open);
    105      1.18   gehenna dev_type_ioctl(cg2ioctl);
    106      1.18   gehenna dev_type_mmap(cg2mmap);
    107      1.18   gehenna 
    108      1.18   gehenna const struct cdevsw cgtwo_cdevsw = {
    109      1.18   gehenna 	cg2open, nullclose, noread, nowrite, cg2ioctl,
    110      1.22  jdolecek 	nostop, notty, nopoll, cg2mmap, nokqfilter,
    111      1.18   gehenna };
    112      1.18   gehenna 
    113  1.22.6.4     skrll static int cg2gattr(struct fbdevice *,  void *);
    114  1.22.6.4     skrll static int cg2gvideo(struct fbdevice *, void *);
    115  1.22.6.4     skrll static int cg2svideo(struct fbdevice *, void *);
    116  1.22.6.4     skrll static int cg2getcmap(struct fbdevice *, void *);
    117  1.22.6.4     skrll static int cg2putcmap(struct fbdevice *, void *);
    118       1.1       gwr 
    119       1.1       gwr static struct fbdriver cg2fbdriver = {
    120      1.22  jdolecek 	cg2open, nullclose, cg2mmap, nokqfilter, cg2gattr,
    121       1.1       gwr 	cg2gvideo, cg2svideo,
    122       1.1       gwr 	cg2getcmap, cg2putcmap };
    123       1.1       gwr 
    124  1.22.6.4     skrll static int cg2intr(void *);
    125       1.1       gwr 
    126       1.1       gwr /*
    127       1.1       gwr  * Match a cg2.
    128       1.1       gwr  */
    129  1.22.6.4     skrll static int
    130  1.22.6.4     skrll cg2match(struct device *parent, struct cfdata *cf, void *aux)
    131       1.1       gwr {
    132       1.9       gwr 	struct confargs *ca = aux;
    133       1.9       gwr 	int probe_addr;
    134       1.1       gwr 
    135       1.9       gwr 	/* No default VME address. */
    136       1.1       gwr 	if (ca->ca_paddr == -1)
    137       1.1       gwr 		return (0);
    138       1.1       gwr 
    139       1.9       gwr 	/* Make sure something is there... */
    140       1.9       gwr 	probe_addr = ca->ca_paddr + CTLREGS_OFF;
    141       1.9       gwr 	if (bus_peek(ca->ca_bustype, probe_addr, 1) == -1)
    142       1.1       gwr 		return (0);
    143       1.1       gwr 
    144       1.9       gwr 	/* XXX: look at the ID reg? */
    145       1.9       gwr 	/* printf("cg2: id=0x%x\n", x); */
    146       1.1       gwr 
    147       1.9       gwr 	/* Default interrupt priority. */
    148       1.9       gwr 	if (ca->ca_intpri == -1)
    149       1.9       gwr 		ca->ca_intpri = 4;
    150       1.1       gwr 
    151       1.1       gwr 	return (1);
    152       1.1       gwr }
    153       1.1       gwr 
    154       1.1       gwr /*
    155       1.1       gwr  * Attach a display.  We need to notice if it is the console, too.
    156       1.1       gwr  */
    157  1.22.6.4     skrll static void
    158  1.22.6.4     skrll cg2attach(struct device *parent, struct device *self, void *args)
    159       1.1       gwr {
    160       1.1       gwr 	struct cg2_softc *sc = (struct cg2_softc *)self;
    161       1.1       gwr 	struct fbdevice *fb = &sc->sc_fb;
    162       1.1       gwr 	struct confargs *ca = args;
    163       1.1       gwr 	struct fbtype *fbt;
    164       1.1       gwr 
    165       1.1       gwr 	sc->sc_phys = ca->ca_paddr;
    166       1.1       gwr 	sc->sc_pmtype = PMAP_NC | PMAP_VME16;
    167       1.1       gwr 
    168       1.1       gwr 	sc->sc_ctlreg = (struct cg2fb *) bus_mapin(ca->ca_bustype,
    169       1.1       gwr 			ca->ca_paddr + CTLREGS_OFF, CTLREGS_SIZE);
    170       1.1       gwr 
    171       1.1       gwr 	isr_add_vectored(cg2intr, (void*)sc,
    172       1.1       gwr 					 ca->ca_intpri, ca->ca_intvec);
    173       1.1       gwr 
    174       1.1       gwr 	/*
    175       1.1       gwr 	 * XXX - Initialize?  Determine type?
    176       1.1       gwr 	 */
    177       1.1       gwr 	sc->sc_ctlreg->intrptvec.reg = ca->ca_intvec;
    178       1.1       gwr 	sc->sc_ctlreg->status.word = 1;
    179       1.1       gwr 
    180       1.1       gwr 	fb->fb_driver = &cg2fbdriver;
    181       1.1       gwr 	fb->fb_private = sc;
    182       1.1       gwr 	fb->fb_name = sc->sc_dev.dv_xname;
    183       1.1       gwr 
    184       1.1       gwr 	fbt = &fb->fb_fbtype;
    185       1.1       gwr 	fbt->fb_type = FBTYPE_SUN2COLOR;
    186       1.1       gwr 	fbt->fb_depth = 8;
    187       1.1       gwr 	fbt->fb_cmsize = CMSIZE;
    188       1.1       gwr 
    189       1.1       gwr 	fbt->fb_width = 1152;
    190       1.1       gwr 	fbt->fb_height = 900;
    191       1.1       gwr 	fbt->fb_size = CG2_MAPPED_SIZE;
    192       1.1       gwr 
    193       1.7  christos 	printf(" (%dx%d)\n", fbt->fb_width, fbt->fb_height);
    194       1.1       gwr 	fb_attach(fb, 2);
    195       1.1       gwr }
    196       1.1       gwr 
    197  1.22.6.4     skrll int
    198  1.22.6.5     skrll cg2open(dev_t dev, int flags, int mode, struct lwp *l)
    199       1.1       gwr {
    200       1.1       gwr 	int unit = minor(dev);
    201       1.1       gwr 
    202       1.5   thorpej 	if (unit >= cgtwo_cd.cd_ndevs || cgtwo_cd.cd_devs[unit] == NULL)
    203       1.1       gwr 		return (ENXIO);
    204       1.1       gwr 	return (0);
    205       1.1       gwr }
    206       1.1       gwr 
    207  1.22.6.4     skrll int
    208  1.22.6.5     skrll cg2ioctl(dev_t dev, u_long cmd, caddr_t data, int flags, struct lwp *l)
    209       1.1       gwr {
    210       1.5   thorpej 	struct cg2_softc *sc = cgtwo_cd.cd_devs[minor(dev)];
    211       1.1       gwr 
    212       1.1       gwr 	return (fbioctlfb(&sc->sc_fb, cmd, data));
    213       1.1       gwr }
    214       1.1       gwr 
    215       1.1       gwr /*
    216       1.1       gwr  * Return the address that would map the given device at the given
    217       1.1       gwr  * offset, allowing for the given protection, or return -1 for error.
    218       1.1       gwr  */
    219  1.22.6.4     skrll paddr_t
    220  1.22.6.4     skrll cg2mmap(dev_t dev, off_t off, int prot)
    221       1.1       gwr {
    222       1.5   thorpej 	struct cg2_softc *sc = cgtwo_cd.cd_devs[minor(dev)];
    223       1.1       gwr 
    224       1.1       gwr 	if (off & PGOFSET)
    225       1.4   mycroft 		panic("cg2mmap");
    226       1.1       gwr 
    227      1.12    simonb 	if (off >= CG2_MAPPED_SIZE)
    228       1.1       gwr 		return (-1);
    229       1.1       gwr 
    230       1.1       gwr 	/*
    231       1.1       gwr 	 * I turned on PMAP_NC here to disable the cache as I was
    232       1.1       gwr 	 * getting horribly broken behaviour with it on.
    233       1.1       gwr 	 */
    234       1.1       gwr 	return ((sc->sc_phys + off) | sc->sc_pmtype);
    235       1.1       gwr }
    236       1.1       gwr 
    237       1.1       gwr /*
    238       1.1       gwr  * Internal ioctl functions.
    239       1.1       gwr  */
    240       1.1       gwr 
    241       1.1       gwr /* FBIOGATTR: */
    242  1.22.6.4     skrll static int
    243  1.22.6.4     skrll cg2gattr(struct fbdevice *fb, void *data)
    244       1.1       gwr {
    245       1.8       gwr 	struct fbgattr *fba = data;
    246       1.1       gwr 
    247       1.1       gwr 	fba->real_type = fb->fb_fbtype.fb_type;
    248       1.1       gwr 	fba->owner = 0;		/* XXX - TIOCCONS stuff? */
    249       1.1       gwr 	fba->fbtype = fb->fb_fbtype;
    250       1.1       gwr 	fba->sattr.flags = 0;
    251       1.1       gwr 	fba->sattr.emu_type = fb->fb_fbtype.fb_type;
    252       1.1       gwr 	fba->sattr.dev_specific[0] = -1;
    253       1.1       gwr 	fba->emu_types[0] = fb->fb_fbtype.fb_type;
    254       1.1       gwr 	fba->emu_types[1] = -1;
    255       1.1       gwr 	return (0);
    256       1.1       gwr }
    257       1.1       gwr 
    258       1.1       gwr /* FBIOGVIDEO: */
    259  1.22.6.4     skrll static int
    260  1.22.6.4     skrll cg2gvideo(struct fbdevice *fb, void *data)
    261       1.1       gwr {
    262       1.8       gwr 	int *on = data;
    263       1.1       gwr 	struct cg2_softc *sc = fb->fb_private;
    264       1.1       gwr 
    265       1.1       gwr 	*on = sc->sc_ctlreg->status.reg.video_enab;
    266       1.1       gwr 	return (0);
    267       1.1       gwr }
    268       1.1       gwr 
    269       1.1       gwr /* FBIOSVIDEO: */
    270  1.22.6.4     skrll static int
    271  1.22.6.4     skrll cg2svideo(struct fbdevice *fb, void *data)
    272       1.1       gwr {
    273       1.8       gwr 	int *on = data;
    274       1.1       gwr 	struct cg2_softc *sc = fb->fb_private;
    275       1.1       gwr 
    276       1.1       gwr 	sc->sc_ctlreg->status.reg.video_enab = (*on) & 1;
    277       1.1       gwr 
    278       1.1       gwr 	return (0);
    279       1.1       gwr }
    280       1.1       gwr 
    281       1.1       gwr /* FBIOGETCMAP: */
    282  1.22.6.4     skrll static int
    283  1.22.6.4     skrll cg2getcmap(struct fbdevice *fb, void *data)
    284       1.1       gwr {
    285       1.8       gwr 	struct fbcmap *cmap = data;
    286       1.1       gwr 	struct cg2_softc *sc = fb->fb_private;
    287       1.1       gwr 	u_char red[CMSIZE], green[CMSIZE], blue[CMSIZE];
    288       1.1       gwr 	int error, start, count, ecount;
    289      1.15   tsutsui 	u_int i;
    290      1.15   tsutsui 	u_short *p;
    291       1.1       gwr 
    292       1.1       gwr 	start = cmap->index;
    293       1.1       gwr 	count = cmap->count;
    294       1.1       gwr 	ecount = start + count;
    295      1.17    itojun 	if (start >= CMSIZE || count > CMSIZE - start)
    296       1.1       gwr 		return (EINVAL);
    297       1.1       gwr 
    298       1.1       gwr 	/* XXX - Wait for retrace? */
    299       1.1       gwr 
    300       1.1       gwr 	/* Copy hardware to local arrays. */
    301       1.1       gwr 	p = &sc->sc_ctlreg->redmap[start];
    302       1.1       gwr 	for (i = start; i < ecount; i++)
    303       1.1       gwr 		red[i] = *p++;
    304       1.1       gwr 	p = &sc->sc_ctlreg->greenmap[start];
    305       1.1       gwr 	for (i = start; i < ecount; i++)
    306       1.1       gwr 		green[i] = *p++;
    307       1.1       gwr 	p = &sc->sc_ctlreg->bluemap[start];
    308       1.1       gwr 	for (i = start; i < ecount; i++)
    309       1.1       gwr 		blue[i] = *p++;
    310       1.1       gwr 
    311       1.1       gwr 	/* Copy local arrays to user space. */
    312       1.1       gwr 	if ((error = copyout(red + start, cmap->red, count)) != 0)
    313       1.1       gwr 		return (error);
    314       1.1       gwr 	if ((error = copyout(green + start, cmap->green, count)) != 0)
    315       1.1       gwr 		return (error);
    316       1.1       gwr 	if ((error = copyout(blue + start, cmap->blue, count)) != 0)
    317       1.1       gwr 		return (error);
    318       1.1       gwr 
    319       1.1       gwr 	return (0);
    320       1.1       gwr }
    321       1.1       gwr 
    322       1.1       gwr /* FBIOPUTCMAP: */
    323  1.22.6.4     skrll static int
    324  1.22.6.4     skrll cg2putcmap(struct fbdevice *fb, void *data)
    325       1.1       gwr {
    326       1.8       gwr 	struct fbcmap *cmap = data;
    327       1.1       gwr 	struct cg2_softc *sc = fb->fb_private;
    328       1.1       gwr 	u_char red[CMSIZE], green[CMSIZE], blue[CMSIZE];
    329      1.14  jdolecek 	int error;
    330      1.14  jdolecek 	u_int start, count, ecount;
    331      1.15   tsutsui 	u_int i;
    332      1.15   tsutsui 	u_short *p;
    333       1.1       gwr 
    334       1.1       gwr 	start = cmap->index;
    335       1.1       gwr 	count = cmap->count;
    336       1.1       gwr 	ecount = start + count;
    337      1.17    itojun 	if (start >= CMSIZE || count > CMSIZE - start)
    338       1.1       gwr 		return (EINVAL);
    339       1.1       gwr 
    340       1.1       gwr 	/* Copy from user space to local arrays. */
    341       1.1       gwr 	if ((error = copyin(cmap->red, red + start, count)) != 0)
    342       1.1       gwr 		return (error);
    343       1.1       gwr 	if ((error = copyin(cmap->green, green + start, count)) != 0)
    344       1.1       gwr 		return (error);
    345       1.1       gwr 	if ((error = copyin(cmap->blue, blue + start, count)) != 0)
    346       1.1       gwr 		return (error);
    347       1.1       gwr 
    348       1.1       gwr 	/* XXX - Wait for retrace? */
    349       1.1       gwr 
    350       1.1       gwr 	/* Copy from local arrays to hardware. */
    351       1.1       gwr 	p = &sc->sc_ctlreg->redmap[start];
    352       1.1       gwr 	for (i = start; i < ecount; i++)
    353       1.1       gwr 		*p++ = red[i];
    354       1.1       gwr 	p = &sc->sc_ctlreg->greenmap[start];
    355       1.1       gwr 	for (i = start; i < ecount; i++)
    356       1.1       gwr 		*p++ = green[i];
    357       1.1       gwr 	p = &sc->sc_ctlreg->bluemap[start];
    358       1.1       gwr 	for (i = start; i < ecount; i++)
    359       1.1       gwr 		*p++ = blue[i];
    360       1.1       gwr 
    361       1.1       gwr 	return (0);
    362       1.1       gwr 
    363       1.1       gwr }
    364       1.1       gwr 
    365  1.22.6.4     skrll static int
    366  1.22.6.4     skrll cg2intr(void *vsc)
    367       1.1       gwr {
    368       1.1       gwr 	struct cg2_softc *sc = vsc;
    369       1.1       gwr 
    370       1.1       gwr 	/* XXX - Just disable interrupts for now. */
    371       1.1       gwr 	sc->sc_ctlreg->status.reg.inten = 0;
    372       1.1       gwr 
    373       1.7  christos 	printf("cg2intr\n");
    374       1.1       gwr 	return (1);
    375       1.1       gwr }
    376