Home | History | Annotate | Line # | Download | only in dev
bw2.c revision 1.4.2.1
      1  1.4.2.1      gwr /*	$NetBSD: bw2.c,v 1.4.2.1 1995/11/10 22:12:54 gwr 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.1      gwr  * 3. All advertising materials mentioning features or use of this software
     25      1.1      gwr  *    must display the following acknowledgement:
     26      1.1      gwr  *	This product includes software developed by the University of
     27      1.1      gwr  *	California, Berkeley and its contributors.
     28      1.1      gwr  * 4. Neither the name of the University nor the names of its contributors
     29      1.1      gwr  *    may be used to endorse or promote products derived from this software
     30      1.1      gwr  *    without specific prior written permission.
     31      1.1      gwr  *
     32      1.1      gwr  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     33      1.1      gwr  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     34      1.1      gwr  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     35      1.1      gwr  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     36      1.1      gwr  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     37      1.1      gwr  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     38      1.1      gwr  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     39      1.1      gwr  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     40      1.1      gwr  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     41      1.1      gwr  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     42      1.1      gwr  * SUCH DAMAGE.
     43      1.1      gwr  *
     44      1.1      gwr  *	@(#)bwtwo.c	8.1 (Berkeley) 6/11/93
     45      1.1      gwr  */
     46      1.1      gwr 
     47      1.1      gwr /*
     48      1.1      gwr  * black&white display (bw2) driver.
     49      1.1      gwr  *
     50      1.1      gwr  * Does not handle interrupts, even though they can occur.
     51      1.1      gwr  */
     52      1.1      gwr 
     53      1.1      gwr #include <sys/param.h>
     54      1.1      gwr #include <sys/device.h>
     55      1.1      gwr #include <sys/ioctl.h>
     56      1.1      gwr #include <sys/malloc.h>
     57      1.1      gwr #include <sys/mman.h>
     58      1.1      gwr #include <sys/tty.h>
     59      1.1      gwr 
     60      1.1      gwr #include <vm/vm.h>
     61      1.1      gwr 
     62      1.2      gwr #include <machine/cpu.h>
     63      1.1      gwr #include <machine/fbio.h>
     64      1.1      gwr #include <machine/autoconf.h>
     65      1.1      gwr #include <machine/pmap.h>
     66      1.1      gwr #include <machine/control.h>
     67      1.1      gwr 
     68      1.1      gwr #include "fbvar.h"
     69      1.1      gwr #include "bw2reg.h"
     70      1.1      gwr 
     71      1.1      gwr extern unsigned char cpu_machine_id;
     72      1.1      gwr 
     73      1.1      gwr /* per-display variables */
     74      1.1      gwr struct bw2_softc {
     75      1.1      gwr 	struct	device sc_dev;		/* base device */
     76      1.1      gwr 	struct	fbdevice sc_fb;		/* frame buffer device */
     77      1.1      gwr 	int 	sc_phys;		/* display RAM (phys addr) */
     78      1.1      gwr };
     79      1.1      gwr 
     80      1.1      gwr /* autoconfiguration driver */
     81      1.1      gwr static void	bw2attach __P((struct device *, struct device *, void *));
     82      1.1      gwr static int	bw2match __P((struct device *, void *, void *));
     83      1.1      gwr 
     84      1.1      gwr struct cfdriver bwtwocd = {
     85      1.1      gwr 	NULL, "bwtwo", bw2match, bw2attach,
     86      1.1      gwr 	DV_DULL, sizeof(struct bw2_softc) };
     87      1.1      gwr 
     88      1.1      gwr /* XXX we do not handle frame buffer interrupts */
     89      1.1      gwr 
     90      1.1      gwr /* frame buffer generic driver */
     91      1.3  mycroft int bw2open(), bw2close(), bw2ioctl(), bw2mmap();
     92      1.1      gwr 
     93      1.1      gwr static int  bw2gvideo __P((struct fbdevice *, int *));
     94      1.1      gwr static int	bw2svideo __P((struct fbdevice *, int *));
     95      1.1      gwr 
     96      1.1      gwr static struct fbdriver bw2fbdriver = {
     97      1.4  mycroft 	bw2open, bw2close, bw2mmap,
     98      1.1      gwr 	enoioctl, /* gattr */
     99      1.1      gwr 	bw2gvideo, bw2svideo,
    100      1.1      gwr 	enoioctl, enoioctl };
    101      1.1      gwr 
    102      1.1      gwr static int
    103      1.1      gwr bw2match(parent, vcf, args)
    104      1.1      gwr 	struct device *parent;
    105      1.1      gwr 	void *vcf, *args;
    106      1.1      gwr {
    107      1.1      gwr 	struct cfdata *cf = vcf;
    108      1.1      gwr 	struct confargs *ca = args;
    109      1.1      gwr 	int x;
    110      1.1      gwr 
    111  1.4.2.1      gwr #if 0	/* XXX - Assume only one is in use anyway... */
    112      1.1      gwr 	/*
    113      1.1      gwr 	 * This driver only supports one unit because the
    114      1.1      gwr 	 * system enable register is used for blanking.
    115      1.1      gwr 	 */
    116      1.1      gwr 	if (cf->cf_unit != 0)
    117      1.1      gwr 		return (0);
    118  1.4.2.1      gwr #endif
    119      1.1      gwr 
    120      1.1      gwr 	if (ca->ca_paddr == -1) {
    121      1.1      gwr 		if (cpu_machine_id == SUN3_MACH_50)
    122      1.1      gwr 			ca->ca_paddr = BW2_50_PADDR;
    123      1.1      gwr 		else
    124      1.1      gwr 			ca->ca_paddr = BW2_FB_PADDR;
    125      1.1      gwr 	}
    126      1.1      gwr 
    127      1.1      gwr 	/* The peek returns -1 on bus error. */
    128      1.1      gwr 	x = bus_peek(ca->ca_bustype, ca->ca_paddr, 1);
    129      1.1      gwr 	return (x != -1);
    130      1.1      gwr }
    131      1.1      gwr 
    132      1.1      gwr /*
    133      1.1      gwr  * Attach a display.  We need to notice if it is the console, too.
    134      1.1      gwr  */
    135      1.1      gwr static void
    136      1.1      gwr bw2attach(parent, self, args)
    137      1.1      gwr 	struct device *parent, *self;
    138      1.1      gwr 	void *args;
    139      1.1      gwr {
    140      1.1      gwr 	struct bw2_softc *sc = (struct bw2_softc *)self;
    141      1.1      gwr 	struct fbdevice *fb = &sc->sc_fb;
    142      1.1      gwr 	struct confargs *ca = args;
    143      1.1      gwr 	struct fbtype *fbt;
    144      1.1      gwr 	int ramsize;
    145      1.1      gwr 
    146      1.1      gwr 	sc->sc_phys = ca->ca_paddr;
    147      1.1      gwr 
    148      1.1      gwr 	fb->fb_driver = &bw2fbdriver;
    149      1.1      gwr 	fb->fb_private = sc;
    150      1.1      gwr 	fb->fb_name = sc->sc_dev.dv_xname;
    151      1.1      gwr 
    152      1.1      gwr 	fbt = &fb->fb_fbtype;
    153      1.1      gwr 	fbt->fb_type = FBTYPE_SUN2BW;
    154      1.1      gwr 	fbt->fb_depth = 1;
    155      1.1      gwr 	fbt->fb_cmsize = 0;
    156      1.1      gwr 
    157      1.1      gwr 	fbt->fb_width = 1152;
    158      1.1      gwr 	fbt->fb_height = 900;
    159      1.1      gwr 	fbt->fb_size = BW2_FBSIZE;
    160      1.1      gwr 
    161      1.1      gwr 	/*
    162      1.1      gwr 	 * Only the model 60 can have hi-res.
    163      1.1      gwr 	 * XXX - Use PROM screen size values?
    164      1.1      gwr 	 */
    165      1.1      gwr 	if (cpu_machine_id == SUN3_MACH_60) {
    166      1.1      gwr 		int tmp;
    167      1.1      gwr 	    tmp = bus_peek(BUS_OBMEM, BW2_CR_PADDR, 1);
    168      1.1      gwr 		if ((tmp != -1) && (tmp & 0x80) == 0) {
    169      1.1      gwr 			fbt->fb_width = 1600;
    170      1.1      gwr 			fbt->fb_height = 1280;
    171      1.1      gwr 			fbt->fb_size = BW2_FBSIZE_HIRES;
    172      1.1      gwr 		}
    173      1.1      gwr 	}
    174      1.1      gwr 
    175      1.1      gwr 	printf(" (%dx%d)\n", fbt->fb_width, fbt->fb_height);
    176      1.2      gwr 	fb_attach(fb, 1);
    177      1.1      gwr }
    178      1.1      gwr 
    179      1.1      gwr int
    180      1.1      gwr bw2open(dev, flags, mode, p)
    181      1.1      gwr 	dev_t dev;
    182      1.1      gwr 	int flags, mode;
    183      1.1      gwr 	struct proc *p;
    184      1.1      gwr {
    185      1.1      gwr 	int unit = minor(dev);
    186      1.1      gwr 
    187      1.1      gwr 	if (unit >= bwtwocd.cd_ndevs || bwtwocd.cd_devs[unit] == NULL)
    188      1.1      gwr 		return (ENXIO);
    189      1.1      gwr 	return (0);
    190      1.1      gwr }
    191      1.1      gwr 
    192      1.1      gwr int
    193      1.1      gwr bw2close(dev, flags, mode, p)
    194      1.1      gwr 	dev_t dev;
    195      1.1      gwr 	int flags, mode;
    196      1.1      gwr 	struct proc *p;
    197      1.1      gwr {
    198      1.1      gwr 
    199      1.1      gwr 	return (0);
    200      1.1      gwr }
    201      1.1      gwr 
    202      1.1      gwr int
    203      1.1      gwr bw2ioctl(dev, cmd, data, flags, p)
    204      1.1      gwr 	dev_t dev;
    205      1.1      gwr 	u_long cmd;
    206      1.1      gwr 	caddr_t data;
    207      1.1      gwr 	int flags;
    208      1.1      gwr 	struct proc *p;
    209      1.1      gwr {
    210      1.1      gwr 	struct bw2_softc *sc = bwtwocd.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.1      gwr int
    220      1.3  mycroft bw2mmap(dev, off, prot)
    221      1.1      gwr 	dev_t dev;
    222      1.1      gwr 	int off, prot;
    223      1.1      gwr {
    224      1.1      gwr 	struct bw2_softc *sc = bwtwocd.cd_devs[minor(dev)];
    225      1.1      gwr 
    226      1.1      gwr 	if (off & PGOFSET)
    227      1.1      gwr 		return (-1);
    228      1.1      gwr 	if ((unsigned)off >= sc->sc_fb.fb_fbtype.fb_size)
    229      1.1      gwr 		return (-1);
    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) | PMAP_NC);
    235      1.1      gwr }
    236      1.1      gwr 
    237      1.1      gwr /* FBIOGVIDEO: */
    238      1.1      gwr static int bw2gvideo(fb, on)
    239      1.1      gwr 	struct fbdevice *fb;
    240      1.1      gwr 	int *on;
    241      1.1      gwr {
    242      1.1      gwr 	int s, ena;
    243      1.1      gwr 
    244      1.1      gwr 	s = splhigh();
    245      1.1      gwr 	ena = get_control_byte((char *)SYSTEM_ENAB);
    246      1.1      gwr 	splx(s);
    247      1.1      gwr 
    248      1.1      gwr 	*on = (ena & SYSTEM_ENAB_VIDEO) ? 1 : 0;
    249      1.1      gwr 	return (0);
    250      1.1      gwr }
    251      1.1      gwr 
    252      1.1      gwr /* FBIOSVIDEO */
    253      1.1      gwr static int bw2svideo(fb, on)
    254      1.1      gwr 	struct fbdevice *fb;
    255      1.1      gwr 	int *on;
    256      1.1      gwr {
    257      1.1      gwr 	int s, ena;
    258      1.1      gwr 
    259      1.1      gwr 	s = splhigh();
    260      1.1      gwr 	ena = get_control_byte((char *)SYSTEM_ENAB);
    261      1.1      gwr 
    262      1.1      gwr 	if (*on) ena |= SYSTEM_ENAB_VIDEO;
    263      1.1      gwr 	else ena &= ~SYSTEM_ENAB_VIDEO;
    264      1.1      gwr 
    265      1.1      gwr 	set_control_byte((char *)SYSTEM_ENAB, ena);
    266      1.1      gwr 	splx(s);
    267      1.1      gwr 
    268      1.1      gwr 	return(0);
    269      1.1      gwr }
    270