1 /* $NetBSD: ioasic.c,v 1.11 2000/02/29 07:20:22 nisimura Exp $ */ 2 3 /* 4 * Copyright (c) 1994, 1995 Carnegie-Mellon University. 5 * All rights reserved. 6 * 7 * Author: Keith Bostic, Chris G. Demetriou, Jonathan Stone 8 * 9 * Permission to use, copy, modify and distribute this software and 10 * its documentation is hereby granted, provided that both the copyright 11 * notice and this permission notice appear in all copies of the 12 * software, derivative works or modified versions, and any portions 13 * thereof, and that both notices appear in supporting documentation. 14 * 15 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" 16 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND 17 * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. 18 * 19 * Carnegie Mellon requests users of this software to return to 20 * 21 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU 22 * School of Computer Science 23 * Carnegie Mellon University 24 * Pittsburgh PA 15213-3890 25 * 26 * any improvements or extensions that they make and grant Carnegie the 27 * rights to redistribute these changes. 28 */ 29 30 #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */ 31 __KERNEL_RCSID(0, "$NetBSD: ioasic.c,v 1.11 2000/02/29 07:20:22 nisimura Exp $"); 32 33 #include <sys/param.h> 34 #include <sys/systm.h> 35 #include <sys/device.h> 36 37 #include <dev/tc/tcvar.h> 38 #include <dev/tc/ioasicreg.h> 39 #include <dev/tc/ioasicvar.h> 40 41 #include <machine/sysconf.h> 42 43 #include <pmax/pmax/pmaxtype.h> 44 #include <pmax/pmax/kmin.h> 45 #include <pmax/pmax/maxine.h> 46 #include <pmax/pmax/kn03.h> 47 48 #include "opt_dec_3min.h" 49 #include "opt_dec_maxine.h" 50 #include "opt_dec_3maxplus.h" 51 52 #define ARRAY_SIZEOF(x) (sizeof((x)) / sizeof((x)[0])) 53 54 #if defined(DEC_3MIN) 55 static struct ioasic_dev kmin_ioasic_devs[] = { 56 { "lance", 0x0C0000, C(SYS_DEV_LANCE), IOASIC_INTR_LANCE, }, 57 { "scc", 0x100000, C(SYS_DEV_SCC0), IOASIC_INTR_SCC_0, }, 58 { "scc", 0x180000, C(SYS_DEV_SCC1), IOASIC_INTR_SCC_1, }, 59 { "mc146818", 0x200000, C(SYS_DEV_BOGUS), 0 }, 60 { "asc", 0x300000, C(SYS_DEV_SCSI), IOASIC_INTR_SCSI, }, 61 }; 62 static int kmin_builtin_ndevs = ARRAY_SIZEOF(kmin_ioasic_devs); 63 static int kmin_ioasic_ndevs = ARRAY_SIZEOF(kmin_ioasic_devs); 64 #endif 65 66 #if defined(DEC_MAXINE) 67 static struct ioasic_dev xine_ioasic_devs[] = { 68 { "lance", 0x0C0000, C(SYS_DEV_LANCE), IOASIC_INTR_LANCE }, 69 { "scc", 0x100000, C(SYS_DEV_SCC0), IOASIC_INTR_SCC_0 }, 70 { "mc146818", 0x200000, C(SYS_DEV_BOGUS), 0 }, 71 { "isdn", 0x240000, C(SYS_DEV_ISDN), XINE_INTR_ISDN, }, 72 { "dtop", 0x280000, C(SYS_DEV_DTOP), XINE_INTR_DTOP, }, 73 { "fdc", 0x2C0000, C(SYS_DEV_FDC), 0 }, 74 { "asc", 0x300000, C(SYS_DEV_SCSI), IOASIC_INTR_SCSI, }, 75 { "(TC0)", 0x0, C(SYS_DEV_OPT0), XINE_INTR_TC_0, }, 76 { "(TC1)", 0x0, C(SYS_DEV_OPT1), XINE_INTR_TC_1, }, 77 { "(TC2)", 0x0, C(SYS_DEV_OPT2), XINE_INTR_VINT, }, 78 }; 79 static int xine_builtin_ndevs = ARRAY_SIZEOF(xine_ioasic_devs) - 3; 80 static int xine_ioasic_ndevs = ARRAY_SIZEOF(xine_ioasic_devs); 81 #endif 82 83 #if defined(DEC_3MAXPLUS) 84 static struct ioasic_dev kn03_ioasic_devs[] = { 85 { "lance", 0x0C0000, C(SYS_DEV_LANCE), IOASIC_INTR_LANCE, }, 86 { "z8530 ", 0x100000, C(SYS_DEV_SCC0), IOASIC_INTR_SCC_0, }, 87 { "z8530 ", 0x180000, C(SYS_DEV_SCC1), IOASIC_INTR_SCC_1, }, 88 { "mc146818", 0x200000, C(SYS_DEV_BOGUS), 0, }, 89 { "asc", 0x300000, C(SYS_DEV_SCSI), IOASIC_INTR_SCSI, }, 90 { "(TC0)", 0x0, C(SYS_DEV_OPT0), KN03_INTR_TC_0, }, 91 { "(TC1)", 0x0, C(SYS_DEV_OPT1), KN03_INTR_TC_1, }, 92 { "(TC2)", 0x0, C(SYS_DEV_OPT2), KN03_INTR_TC_2, }, 93 }; 94 static int kn03_builtin_ndevs = ARRAY_SIZEOF(kn03_ioasic_devs) - 3; 95 static int kn03_ioasic_ndevs = ARRAY_SIZEOF(kn03_ioasic_devs); 96 #endif 97 98 static int ioasicmatch __P((struct device *, struct cfdata *, void *)); 99 static void ioasicattach __P((struct device *, struct device *, void *)); 100 101 const struct cfattach ioasic_ca = { 102 sizeof(struct ioasic_softc), ioasicmatch, ioasicattach 103 }; 104 105 tc_addr_t ioasic_base; /* XXX XXX XXX */ 106 107 /* There can be only one. */ 108 int ioasicfound; 109 110 static int 111 ioasicmatch(parent, cfdata, aux) 112 struct device *parent; 113 struct cfdata *cfdata; 114 void *aux; 115 { 116 struct tc_attach_args *ta = aux; 117 118 /* Make sure that we're looking for this type of device. */ 119 if (strncmp("IOCTL ", ta->ta_modname, TC_ROM_LLEN)) 120 return (0); 121 122 if (ioasicfound) 123 return (0); 124 125 return (1); 126 } 127 128 static void 129 ioasicattach(parent, self, aux) 130 struct device *parent, *self; 131 void *aux; 132 { 133 struct ioasic_softc *sc = (struct ioasic_softc *)self; 134 struct tc_attach_args *ta = aux; 135 struct ioasic_dev *ioasic_devs; 136 int ioasic_ndevs, builtin_ndevs; 137 int i, imsk; 138 139 ioasicfound = 1; 140 141 sc->sc_bst = ta->ta_memt; 142 if (bus_space_map(ta->ta_memt, ta->ta_addr, 143 0x400000, 0, &sc->sc_bsh)) { 144 printf("%s: unable to map device\n", sc->sc_dv.dv_xname); 145 return; 146 } 147 sc->sc_dmat = ta->ta_dmat; 148 sc->sc_cookie = ta->ta_cookie; 149 150 sc->sc_base = ta->ta_addr; /* XXX XXX XXX */ 151 152 printf("\n"); 153 154 switch (systype) { 155 #if defined(DEC_3MIN) 156 case DS_3MIN: 157 ioasic_devs = kmin_ioasic_devs; 158 ioasic_ndevs = kmin_ioasic_ndevs; 159 builtin_ndevs = kmin_builtin_ndevs; 160 break; 161 #endif 162 #if defined(DEC_MAXINE) 163 case DS_MAXINE: 164 ioasic_devs = xine_ioasic_devs; 165 ioasic_ndevs = xine_ioasic_ndevs; 166 builtin_ndevs = xine_builtin_ndevs; 167 break; 168 #endif 169 #if defined(DEC_3MAXPLUS) 170 case DS_3MAXPLUS: 171 ioasic_devs = kn03_ioasic_devs; 172 ioasic_ndevs = kn03_ioasic_ndevs; 173 builtin_ndevs = kn03_builtin_ndevs; 174 break; 175 #endif 176 default: 177 panic("ioasicmatch: how did we get here?"); 178 } 179 180 /* 181 * Turn off all device interrupt bits. 182 * (This _does_ include TC option slot bits. 183 */ 184 imsk = bus_space_read_4(sc->sc_bst, sc->sc_bsh, IOASIC_IMSK); 185 for (i = 0; i < ioasic_ndevs; i++) 186 imsk &= ~ioasic_devs[i].iad_intrbits; 187 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_IMSK, imsk); 188 189 /* 190 * Try to configure each device. 191 */ 192 ioasic_attach_devs(sc, ioasic_devs, builtin_ndevs); 193 } 194 195 #if 1 /* XXX for now XXX */ 196 void 197 ioasic_intr_establish(dev, cookie, level, handler, val) 198 struct device *dev; 199 void *cookie; 200 int level; 201 int (*handler) __P((void *)); 202 void *val; 203 { 204 (*platform.intr_establish)(dev, cookie, level, handler, val); 205 } 206 207 #else /* XXX eventually XXX */ 208 209 void 210 ioasic_intr_establish(ioa, cookie, level, func, arg) 211 struct device *ioa; 212 void *cookie, *arg; 213 int level; 214 int (*func) __P((void *)); 215 { 216 struct ioasic_softc *sc = (void *)ioasic_cd.cd_devs[0]; 217 int i, intrbits; 218 219 for (i = 0; i < ioasic_ndevs; i++) { 220 if (ioasic_devs[i].iad_cookie == cookie) 221 goto found; 222 } 223 panic("ioasic_intr_establish: invalid cookie %d", (int)cookie); 224 found: 225 226 intrtab[(int)cookie].ih_func = func; 227 intrtab[(int)cookie].ih_arg = arg; 228 229 intrbits = ioasic_devs[i].iad_intrbits; 230 i = bus_space_read_4(sc->sc_bst, sc->sc_bsh, IOASIC_IMSK); 231 i |= intrbits; 232 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_IMSK, i); 233 } 234 #endif 235