diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2000-05-30 19:42:03 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2000-05-30 19:42:03 +0000 |
commit | 1fcec1cf400f3e831e3ce605b03be3df36779bfc (patch) | |
tree | ae01ce6153d967b516a9b5c89a74d7d5048d18e7 /sys/arch/hppa/dev/sti_sgc.c | |
parent | a11a13471456202f6ed8a212b599285e23234313 (diff) |
new driver for sti graphics.
Diffstat (limited to 'sys/arch/hppa/dev/sti_sgc.c')
-rw-r--r-- | sys/arch/hppa/dev/sti_sgc.c | 192 |
1 files changed, 192 insertions, 0 deletions
diff --git a/sys/arch/hppa/dev/sti_sgc.c b/sys/arch/hppa/dev/sti_sgc.c new file mode 100644 index 00000000000..72c4d1cf5ee --- /dev/null +++ b/sys/arch/hppa/dev/sti_sgc.c @@ -0,0 +1,192 @@ +/* $OpenBSD: sti_sgc.c,v 1.1 2000/05/30 19:42:02 mickey Exp $ */ + +/* + * Copyright (c) 2000 Michael Shalayeff + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by Michael Shalayeff. + * 4. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF MIND, + * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +/* + * These cards has to be known to work so far: + * - HPA1991AC19 rev 0.0 (715/33) w/ weird hack to align sti rom ptrs + * - HPA208LC1280 rev 8.04 (712/80) just works + */ + +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/device.h> + +#include <vm/vm.h> +#include <vm/vm_kern.h> +#include <uvm/uvm.h> + +#include <machine/bus.h> +#include <machine/cpu.h> +#include <machine/iomod.h> +#include <machine/autoconf.h> + +#include <dev/wscons/wsdisplayvar.h> +#include <dev/wscons/wsconsio.h> + +#include <dev/ic/stireg.h> +#include <dev/ic/stivar.h> + +#include <hppa/dev/cpudevs.h> + +#define STI_MEMSIZE 0x1000000 + +int sti_sgc_probe __P((struct device *, void *, void *)); +void sti_sgc_attach __P((struct device *, struct device *, void *)); + +struct cfattach sti_sgc_ca = { + sizeof(struct sti_softc), sti_sgc_probe, sti_sgc_attach +}; + +int +sti_sgc_probe(parent, match, aux) + struct device *parent; + void *match, *aux; +{ + register struct confargs *ca = aux; + bus_space_handle_t ioh, romh; + u_int rom; + u_char devtype; + int rv = 0, romunmapped = 0; + + if (ca->ca_type.iodc_type != HPPA_TYPE_FIO || + (ca->ca_type.iodc_sv_model != HPPA_FIO_GSGC && + ca->ca_type.iodc_sv_model != HPPA_FIO_SGC)) + return 0; + + if ((rv = bus_space_map(ca->ca_iot, ca->ca_hpa, STI_MEMSIZE, 0, &ioh))) { +#ifdef STIDEBUG + printf("st: cannot map io space (%d)\n", rv); +#endif + return 0; + } + + /* + * Locate STI ROM. + * On some machines it may not be part of the HPA space. + */ + if (!PAGE0->pd_resv2[1]) { + rom = ca->ca_hpa; + romh = ioh; + romunmapped++; + } else + rom = PAGE0->pd_resv2[1]; + + printf ("sti: hpa=%x, rom=%x\n", ca->ca_hpa, rom); + + /* if it does not map, probably part of the lasi space */ + if (rom != ca->ca_hpa && + (rv = bus_space_map(ca->ca_iot, rom, IOMOD_HPASIZE, 0, &romh))) { +#ifdef STIDEBUG + printf ("sti: cannot map rom space (%d)\n", rv); +#endif + if ((rom & HPPA_IOBEGIN) == HPPA_IOBEGIN) { + romh = rom; + romunmapped++; + } else { + /* in this case i have no freaking idea */ + bus_space_unmap(ca->ca_iot, ioh, STI_MEMSIZE); + return 0; + } + } + + printf("sti: ioh=%x, romh=%x\n", ioh, romh); + + devtype = bus_space_read_1(ca->ca_iot, ioh, 3); + +#ifdef STIDEBUG + printf("sti: devtype=%d\n", devtype); +#endif +#if 0 /* ignore this for now */ + if ((ca->ca_type.iodc_sv_model == HPPA_FIO_SGC && + STI_ID_HI(STI_TYPE_BWGRF, rioh) == STI_ID_FDDI) || + (devtype != STI_TYPE_BWGRF && devtype != STI_TYPE_WWGRF)) { +#ifdef STIDEBUG + printf("sti: not a graphics device (%x)\n", devtype); +#endif + } else +#endif + rv = 1; + + bus_space_unmap(ca->ca_iot, ioh, STI_MEMSIZE); + if (!romunmapped) + bus_space_unmap(ca->ca_iot, romh, IOMOD_HPASIZE); + return rv; +} + +void +sti_sgc_attach(parent, self, aux) + struct device *parent, *self; + void *aux; +{ + struct sti_softc *sc = (void *)self; + struct confargs *ca = aux; + bus_addr_t addr; + int rv; + + if (!PAGE0->pd_resv2[1]) + addr = ca->ca_hpa; + else + addr = PAGE0->pd_resv2[1]; + + sc->memt = sc->iot = ca->ca_iot; + + if ((rv = bus_space_map(ca->ca_iot, ca->ca_hpa, STI_MEMSIZE, 0, + &sc->ioh))) { +#ifdef STIDEBUG + printf("st: cannot map io space (%d)\n", rv); +#endif + return; + } + + sc->sc_devtype = bus_space_read_1(sc->iot, sc->ioh, 3); + printf ("sti: hpa=%x, rom=%x\n", ca->ca_hpa, addr); + + /* if it does not map, probably part of the lasi space */ + if (addr == ca->ca_hpa) + sc->romh = sc->ioh; + else if ((rv = bus_space_map(ca->ca_iot, addr, IOMOD_HPASIZE, 0, &sc->romh))) { +#ifdef STIDEBUG + printf ("sti: cannot map rom space (%d)\n", rv); +#endif + if ((addr & HPPA_IOBEGIN) == HPPA_IOBEGIN) + sc->romh = addr; + else { + /* in this case i have no freaking idea */ + bus_space_unmap(ca->ca_iot, sc->ioh, STI_MEMSIZE); + return; + } + } + + printf("sti: ioh=%x, romh=%x\n", sc->ioh, sc->romh); + + sti_attach_common(sc); +} + |