/* $OpenBSD: sti_sgc.c,v 1.8 2002/01/25 21:37:15 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: * - HPA1991AGrayscale rev 0.02 (705/35) (byte-wide) * - HPA1991AC19 rev 0.02 (715/33) (byte-wide) * - HPA208LC1280 rev 8.04 (712/80) just works */ #include #include #include #include #include #include #include #include #include #include #include #include #include #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] < HPPA_IOBEGIN) { rom = ca->ca_hpa; romh = ioh; romunmapped++; } else rom = PAGE0->pd_resv2[1]; #ifdef STIDEBUG printf ("sti: hpa=%x, rom=%x\n", ca->ca_hpa, rom); #endif /* 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; } } #ifdef STIDEBUG printf("sti: ioh=%x, romh=%x\n", ioh, romh); #endif devtype = bus_space_read_1(ca->ca_iot, romh, 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] < HPPA_IOBEGIN) 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; } /* 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; } } sc->sc_devtype = bus_space_read_1(sc->iot, sc->romh, 3); #ifdef STIDEBUG printf("sti: hpa=%x, rom=%x\n", ca->ca_hpa, addr); printf("sti: ioh=%x, romh=%x\n", sc->ioh, sc->romh); #endif if (ca->ca_hpa == (hppa_hpa_t)PAGE0->mem_cons.pz_hpa) sc->sc_flags |= STI_CONSOLE; sti_attach_common(sc); }