/* $NetBSD: asic.c,v 1.41 1999/11/15 09:50:33 nisimura Exp $ */ /* * Copyright (c) 1994, 1995 Carnegie-Mellon University. * All rights reserved. * * Author: Keith Bostic, Chris G. Demetriou, Jonathan Stone * * Permission to use, copy, modify and distribute this software and * its documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. */ #include #include #include #include #include #include #include #include #include #include #include #include /* interrupt enable declaration */ /* * Which system models were configured? */ #include "opt_dec_3max.h" #include "opt_dec_3min.h" #include "opt_dec_3maxplus.h" #include "opt_dec_maxine.h" /* We support only one ioctl asic chip, and this is its address. */ tc_addr_t ioasic_base = 0; /* tables of child devices on an ioasic bus. */ #define C(x) ((void*)(x)) #define ASIC_NDEVS(x) (sizeof(x)/sizeof(x[0])) #define ARRAY_SIZEOF(x) (sizeof((x)) / sizeof ((x)[0])) #if defined(DEC_3MAXPLUS) || defined(DEC_3MIN) struct ioasic_dev kn03_ioasic_devs[] = { { "lance", 0x0C0000, C(KN03_LANCE_SLOT), IOASIC_INTR_LANCE }, { "scc", 0x100000, C(KN03_SCC0_SLOT), IOASIC_INTR_SCC_0 }, { "scc", 0x180000, C(KN03_SCC1_SLOT), IOASIC_INTR_SCC_1 }, { "mc146818", 0x200000, C(0), 0 }, { "asc", 0x300000, C(KN03_SCSI_SLOT), IOASIC_INTR_SCSI }, }; const int kn03_ioasic_ndevs = ARRAY_SIZEOF(kn03_ioasic_devs); #endif /* DEC_3MAXPLUS || DEC_3MIN */ #if defined(DEC_MAXINE) struct ioasic_dev xine_ioasic_devs[] = { { "lance", 0x0C0000, C(XINE_LANCE_SLOT), IOASIC_INTR_LANCE }, { "scc", 0x100000, C(XINE_SCC0_SLOT), IOASIC_INTR_SCC_0 }, { "mc146818", 0x200000, C(0), 0 }, { "isdn", 0x240000, C(XINE_ISDN_SLOT), XINE_INTR_ISDN }, { "dtop", 0x280000, C(XINE_DTOP_SLOT), XINE_INTR_DTOP }, { "fdc", 0x2C0000, C(XINE_FLOPPY_SLOT), 0 }, { "asc", 0x300000, C(XINE_SCSI_SLOT), IOASIC_INTR_SCSI }, }; const int xine_ioasic_ndevs = ARRAY_SIZEOF(xine_ioasic_devs); #endif /* DEC_MAXINE */ /* Definition of the driver for autoconfig. */ int ioasicmatch __P((struct device *, struct cfdata *, void *)); void ioasicattach __P((struct device *, struct device *, void *)); /* Device locators. */ #include "locators.h" #define ioasiccf_offset cf_loc[IOASICCF_OFFSET] /* offset */ struct cfattach ioasic_ca = { sizeof(struct ioasic_softc), ioasicmatch, ioasicattach }; int ioasicmatch(parent, cfdata, aux) struct device *parent; struct cfdata *cfdata; void *aux; { struct tc_attach_args *ta = aux; /* Make sure that we're looking for this type of device. */ if (strncmp("IOCTL ", ta->ta_modname, TC_ROM_LLEN)) return (0); if (cfdata->cf_unit > 0) return (0); return (1); } void ioasicattach(parent, self, aux) struct device *parent, *self; void *aux; { struct ioasic_softc *sc = (struct ioasic_softc *)self; struct tc_attach_args *ta = aux; struct ioasic_dev *ioasic_devs; int ndevs; /* See if the unit number is valid. */ switch (systype) { #if defined(DEC_3MAXPLUS) || defined(DEC_3MIN) case DS_3MIN: case DS_3MAXPLUS: /* 3min ioasic addressees are the same as 3maxplus. */ ioasic_devs = kn03_ioasic_devs; ndevs = kn03_ioasic_ndevs; break; #endif #ifdef DEC_MAXINE case DS_MAXINE: ioasic_devs = xine_ioasic_devs; ndevs = xine_ioasic_ndevs; break; #endif #ifdef DEC_3MAX case DS_3MAX: panic("ioasicattach: no IOASIC disguise for 3max"); #endif default: panic("ioasicattach: shouldn't be here, really..."); } sc->sc_bst = ta->ta_memt; if (bus_space_map(ta->ta_memt, ta->ta_addr, 0x400000, 0, &sc->sc_bsh)) { printf("%s: unable to map device\n", sc->sc_dv.dv_xname); return; } sc->sc_dmat = ta->ta_dmat; sc->sc_cookie = ta->ta_cookie; sc->sc_base = ta->ta_addr; ioasic_base = sc->sc_base; printf("\n"); /* * Try to configure each ioctl asic baseboard device. */ ioasic_attach_devs(sc, ioasic_devs, ndevs); } void ioasic_intr_establish(dev, cookie, level, handler, val) struct device *dev; void *cookie; int level; int (*handler) __P((void *)); void *val; { (*tc_enable_interrupt)((unsigned)cookie, handler, val, 1); }