Home | History | Annotate | Line # | Download | only in dev
bwtwo_obio.c revision 1.12
      1  1.12    keihan /*	$NetBSD: bwtwo_obio.c,v 1.12 2003/12/04 12:42:54 keihan Exp $ */
      2   1.1  christos 
      3   1.1  christos /*-
      4   1.1  christos  * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
      5   1.1  christos  * All rights reserved.
      6   1.1  christos  *
      7   1.1  christos  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1  christos  * by Jason R. Thorpe.
      9   1.1  christos  *
     10   1.1  christos  * Redistribution and use in source and binary forms, with or without
     11   1.1  christos  * modification, are permitted provided that the following conditions
     12   1.1  christos  * are met:
     13   1.1  christos  * 1. Redistributions of source code must retain the above copyright
     14   1.1  christos  *    notice, this list of conditions and the following disclaimer.
     15   1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     17   1.1  christos  *    documentation and/or other materials provided with the distribution.
     18   1.1  christos  * 3. All advertising materials mentioning features or use of this software
     19   1.1  christos  *    must display the following acknowledgement:
     20   1.1  christos  *	This product includes software developed by the NetBSD
     21   1.1  christos  *	Foundation, Inc. and its contributors.
     22   1.1  christos  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23   1.1  christos  *    contributors may be used to endorse or promote products derived
     24   1.1  christos  *    from this software without specific prior written permission.
     25   1.1  christos  *
     26   1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27   1.1  christos  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28   1.1  christos  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29   1.1  christos  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30   1.1  christos  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31   1.1  christos  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.1  christos  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.1  christos  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34   1.1  christos  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.1  christos  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36   1.1  christos  * POSSIBILITY OF SUCH DAMAGE.
     37   1.1  christos  */
     38   1.1  christos 
     39   1.1  christos /*
     40   1.1  christos  * Copyright (c) 1992, 1993
     41   1.1  christos  *	The Regents of the University of California.  All rights reserved.
     42   1.1  christos  *
     43   1.1  christos  * This software was developed by the Computer Systems Engineering group
     44   1.1  christos  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
     45   1.1  christos  * contributed to Berkeley.
     46   1.1  christos  *
     47   1.1  christos  * All advertising materials mentioning features or use of this software
     48   1.1  christos  * must display the following acknowledgement:
     49   1.1  christos  *	This product includes software developed by the University of
     50   1.1  christos  *	California, Lawrence Berkeley Laboratory.
     51   1.1  christos  *
     52   1.1  christos  * Redistribution and use in source and binary forms, with or without
     53   1.1  christos  * modification, are permitted provided that the following conditions
     54   1.1  christos  * are met:
     55   1.1  christos  * 1. Redistributions of source code must retain the above copyright
     56   1.1  christos  *    notice, this list of conditions and the following disclaimer.
     57   1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     58   1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     59   1.1  christos  *    documentation and/or other materials provided with the distribution.
     60  1.11       agc  * 3. Neither the name of the University nor the names of its contributors
     61   1.1  christos  *    may be used to endorse or promote products derived from this software
     62   1.1  christos  *    without specific prior written permission.
     63   1.1  christos  *
     64   1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     65   1.1  christos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     66   1.1  christos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     67   1.1  christos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     68   1.1  christos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     69   1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     70   1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     71   1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     72   1.1  christos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     73   1.1  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     74   1.1  christos  * SUCH DAMAGE.
     75   1.1  christos  *
     76   1.1  christos  *	@(#)bwtwo.c	8.1 (Berkeley) 6/11/93
     77   1.1  christos  */
     78   1.1  christos 
     79   1.1  christos /*
     80   1.1  christos  * black&white display (bwtwo) driver.
     81   1.1  christos  *
     82   1.1  christos  * Does not handle interrupts, even though they can occur.
     83   1.1  christos  *
     84  1.12    keihan  * P4 and overlay plane support by Jason R. Thorpe <thorpej (at) NetBSD.org>.
     85   1.1  christos  * Overlay plane handling hints and ideas provided by Brad Spencer.
     86   1.1  christos  */
     87  1.10     lukem 
     88  1.10     lukem #include <sys/cdefs.h>
     89  1.12    keihan __KERNEL_RCSID(0, "$NetBSD: bwtwo_obio.c,v 1.12 2003/12/04 12:42:54 keihan Exp $");
     90   1.1  christos 
     91   1.1  christos #include <sys/param.h>
     92   1.1  christos #include <sys/systm.h>
     93   1.1  christos #include <sys/device.h>
     94   1.1  christos #include <sys/ioctl.h>
     95   1.1  christos #include <sys/malloc.h>
     96   1.1  christos #include <sys/mman.h>
     97   1.1  christos #include <sys/tty.h>
     98   1.1  christos #include <sys/conf.h>
     99   1.1  christos 
    100   1.1  christos #include <machine/autoconf.h>
    101   1.1  christos #include <machine/eeprom.h>
    102   1.1  christos #include <machine/ctlreg.h>
    103   1.1  christos #include <sparc/sparc/asm.h>
    104   1.1  christos 
    105   1.4        pk #include <dev/sun/fbio.h>
    106   1.4        pk #include <dev/sun/fbvar.h>
    107   1.4        pk #include <dev/sun/btreg.h>
    108   1.4        pk #include <dev/sun/bwtworeg.h>
    109   1.4        pk #include <dev/sun/bwtwovar.h>
    110   1.4        pk #include <dev/sun/pfourreg.h>
    111   1.1  christos 
    112   1.1  christos /* autoconfiguration driver */
    113   1.4        pk static void	bwtwoattach_obio (struct device *, struct device *, void *);
    114   1.4        pk static int	bwtwomatch_obio (struct device *, struct cfdata *, void *);
    115   1.1  christos 
    116   1.1  christos 
    117   1.8   thorpej CFATTACH_DECL(bwtwo_obio, sizeof(struct bwtwo_softc),
    118   1.9   thorpej     bwtwomatch_obio, bwtwoattach_obio, NULL, NULL);
    119   1.1  christos 
    120   1.4        pk static int	bwtwo_get_video_sun4(struct bwtwo_softc *);
    121   1.4        pk static void	bwtwo_set_video_sun4(struct bwtwo_softc *, int);
    122   1.1  christos 
    123   1.1  christos extern int fbnode;
    124   1.1  christos 
    125   1.1  christos static int
    126   1.1  christos bwtwomatch_obio(parent, cf, aux)
    127   1.1  christos 	struct device *parent;
    128   1.1  christos 	struct cfdata *cf;
    129   1.1  christos 	void *aux;
    130   1.1  christos {
    131   1.1  christos 	union obio_attach_args *uoba = aux;
    132   1.1  christos 	struct obio4_attach_args *oba;
    133   1.1  christos 
    134   1.1  christos 	if (uoba->uoba_isobio4 == 0)
    135   1.1  christos 		return (0);
    136   1.1  christos 
    137   1.1  christos 	oba = &uoba->uoba_oba4;
    138   1.5        pk 	return (bus_space_probe(oba->oba_bustag, oba->oba_paddr,
    139   1.1  christos 				4,	/* probe size */
    140   1.1  christos 				0,	/* offset */
    141   1.1  christos 				0,	/* flags */
    142   1.1  christos 				bwtwo_pfour_probe, cf));
    143   1.1  christos }
    144   1.1  christos 
    145   1.1  christos static void
    146   1.1  christos bwtwoattach_obio(parent, self, uax)
    147   1.1  christos 	struct device *parent, *self;
    148   1.1  christos 	void *uax;
    149   1.1  christos {
    150   1.1  christos 	struct bwtwo_softc *sc = (struct bwtwo_softc *)self;
    151   1.1  christos 	union obio_attach_args *uoba = uax;
    152   1.1  christos 	struct obio4_attach_args *oba;
    153   1.1  christos 	struct fbdevice *fb = &sc->sc_fb;
    154   1.1  christos 	struct eeprom *eep = (struct eeprom *)eeprom_va;
    155   1.1  christos 	bus_space_handle_t bh;
    156   1.1  christos 	int constype, isconsole;
    157   1.1  christos 	char *name;
    158   1.1  christos 
    159   1.1  christos 	oba = &uoba->uoba_oba4;
    160   1.1  christos 
    161   1.1  christos 	/* Remember cookies for bwtwo_mmap() */
    162   1.1  christos 	sc->sc_bustag = oba->oba_bustag;
    163   1.1  christos 	sc->sc_paddr = (bus_addr_t)oba->oba_paddr;
    164   1.1  christos 
    165   1.1  christos 	fb->fb_flags = sc->sc_dev.dv_cfdata->cf_flags;
    166   1.1  christos 	fb->fb_type.fb_depth = 1;
    167   1.1  christos 	fb_setsize_eeprom(fb, fb->fb_type.fb_depth, 1152, 900);
    168   1.1  christos 
    169   1.1  christos 	constype = (fb->fb_flags & FB_PFOUR) ? EE_CONS_P4OPT : EE_CONS_BW;
    170   1.1  christos 	if (eep == NULL || eep->eeConsole == constype)
    171   1.2        pk 		isconsole = fb_is_console(0);
    172   1.1  christos 	else
    173   1.1  christos 		isconsole = 0;
    174   1.1  christos 
    175   1.1  christos 	if (fb->fb_flags & FB_PFOUR) {
    176   1.1  christos 		/*
    177   1.1  christos 		 * Map the pfour control register.
    178   1.1  christos 		 * Set pixel offset to appropriate overlay plane.
    179   1.1  christos 		 */
    180   1.1  christos 		name = "bwtwo/p4";
    181   1.1  christos 
    182   1.5        pk 		if (bus_space_map(oba->oba_bustag,
    183   1.5        pk 				  oba->oba_paddr,
    184   1.5        pk 				  sizeof(u_int32_t),
    185   1.5        pk 				  BUS_SPACE_MAP_LINEAR,
    186   1.5        pk 				  &bh) != 0) {
    187   1.1  christos 			printf("%s: cannot map pfour register\n",
    188   1.1  christos 				self->dv_xname);
    189   1.1  christos 			return;
    190   1.1  christos 		}
    191   1.1  christos 		fb->fb_pfour = (u_int32_t *)bh;
    192   1.1  christos 		sc->sc_reg = NULL;
    193   1.1  christos 
    194   1.1  christos 		/*
    195   1.1  christos 		 * Notice if this is an overlay plane on a color
    196   1.1  christos 		 * framebuffer.  Note that PFOUR_COLOR_OFF_OVERLAY
    197   1.1  christos 		 * is the same as PFOUR_BW_OFF, but we use the
    198   1.1  christos 		 * different names anyway.
    199   1.1  christos 		 */
    200   1.1  christos 		switch (PFOUR_ID(*fb->fb_pfour)) {
    201   1.1  christos 		case PFOUR_ID_COLOR8P1:
    202   1.1  christos 			sc->sc_ovtype = BWO_CGFOUR;
    203   1.1  christos 			sc->sc_pixeloffset = PFOUR_COLOR_OFF_OVERLAY;
    204   1.1  christos 			break;
    205   1.1  christos 
    206   1.1  christos 		case PFOUR_ID_COLOR24:
    207   1.1  christos 			sc->sc_ovtype = BWO_CGEIGHT;
    208   1.1  christos 			sc->sc_pixeloffset = PFOUR_COLOR_OFF_OVERLAY;
    209   1.1  christos 			break;
    210   1.1  christos 
    211   1.1  christos 		default:
    212   1.1  christos 			sc->sc_ovtype = BWO_NONE;
    213   1.1  christos 			sc->sc_pixeloffset = PFOUR_BW_OFF;
    214   1.1  christos 			break;
    215   1.1  christos 		}
    216   1.1  christos 
    217   1.1  christos 	} else {
    218   1.1  christos 		/* A plain bwtwo */
    219   1.5        pk 		if (bus_space_map(oba->oba_bustag,
    220   1.5        pk 				  oba->oba_paddr + BWREG_REG,
    221   1.5        pk 				  sizeof(struct fbcontrol),
    222   1.5        pk 				  BUS_SPACE_MAP_LINEAR,
    223   1.5        pk 				  &bh) != 0) {
    224   1.1  christos 			printf("%s: cannot map control registers\n",
    225   1.1  christos 				self->dv_xname);
    226   1.1  christos 			return;
    227   1.1  christos 		}
    228   1.1  christos 		sc->sc_reg = (struct fbcontrol *)bh;
    229   1.1  christos 		fb->fb_pfour = NULL;
    230   1.1  christos 
    231   1.1  christos 		name = "bwtwo";
    232   1.1  christos 		sc->sc_pixeloffset = BWREG_MEM;
    233   1.1  christos 	}
    234   1.1  christos 	sc->sc_get_video = bwtwo_get_video_sun4;
    235   1.1  christos 	sc->sc_set_video = bwtwo_set_video_sun4;
    236   1.1  christos 
    237   1.1  christos 	if (isconsole) {
    238   1.1  christos 		int ramsize = fb->fb_type.fb_height * fb->fb_linebytes;
    239   1.5        pk 		if (bus_space_map(oba->oba_bustag,
    240   1.5        pk 				  oba->oba_paddr + sc->sc_pixeloffset,
    241   1.5        pk 				  ramsize,
    242   1.5        pk 				  BUS_SPACE_MAP_LINEAR,
    243   1.5        pk 				  &bh) != 0) {
    244   1.1  christos 			printf("%s: cannot map pixels\n", self->dv_xname);
    245   1.1  christos 			return;
    246   1.1  christos 		}
    247   1.1  christos 		sc->sc_fb.fb_pixels = (char *)bh;
    248   1.1  christos 	}
    249   1.1  christos 
    250   1.2        pk 	bwtwoattach(sc, name, isconsole);
    251   1.1  christos }
    252   1.1  christos 
    253   1.1  christos static void
    254   1.1  christos bwtwo_set_video_sun4(sc, enable)
    255   1.1  christos 	struct bwtwo_softc *sc;
    256   1.1  christos 	int enable;
    257   1.1  christos {
    258   1.1  christos 
    259   1.1  christos 	if (sc->sc_fb.fb_flags & FB_PFOUR) {
    260   1.1  christos 		/*
    261   1.1  christos 		 * This handles the overlay plane case, too.
    262   1.1  christos 		 */
    263   1.1  christos 		fb_pfour_set_video(&sc->sc_fb, enable);
    264   1.1  christos 		return;
    265   1.1  christos 	}
    266   1.1  christos 	if (enable)
    267   1.1  christos 		stba(AC_SYSENABLE, ASI_CONTROL,
    268   1.1  christos 		     lduba(AC_SYSENABLE, ASI_CONTROL) | SYSEN_VIDEO);
    269   1.1  christos 	else
    270   1.1  christos 		stba(AC_SYSENABLE, ASI_CONTROL,
    271   1.1  christos 		     lduba(AC_SYSENABLE, ASI_CONTROL) & ~SYSEN_VIDEO);
    272   1.1  christos 
    273   1.1  christos 	return;
    274   1.1  christos }
    275   1.1  christos 
    276   1.1  christos static int
    277   1.1  christos bwtwo_get_video_sun4(sc)
    278   1.1  christos 	struct bwtwo_softc *sc;
    279   1.1  christos {
    280   1.1  christos 
    281   1.1  christos 	if (sc->sc_fb.fb_flags & FB_PFOUR) {
    282   1.1  christos 		/*
    283   1.1  christos 		 * This handles the overlay plane case, too.
    284   1.1  christos 		 */
    285   1.1  christos 		return (fb_pfour_get_video(&sc->sc_fb));
    286   1.1  christos 	} else
    287   1.1  christos 		return ((lduba(AC_SYSENABLE, ASI_CONTROL) & SYSEN_VIDEO) != 0);
    288   1.1  christos }
    289