1 /* $NetBSD: sio.c,v 1.49 2010/01/12 20:24:45 mhitch Exp $ */ 2 3 /*- 4 * Copyright (c) 2000 The NetBSD Foundation, Inc. 5 * All rights reserved. 6 * 7 * This code is derived from software contributed to The NetBSD Foundation 8 * by Jason R. Thorpe. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 * POSSIBILITY OF SUCH DAMAGE. 30 */ 31 32 /* 33 * Copyright (c) 1995, 1996 Carnegie-Mellon University. 34 * All rights reserved. 35 * 36 * Author: Chris G. Demetriou 37 * 38 * Permission to use, copy, modify and distribute this software and 39 * its documentation is hereby granted, provided that both the copyright 40 * notice and this permission notice appear in all copies of the 41 * software, derivative works or modified versions, and any portions 42 * thereof, and that both notices appear in supporting documentation. 43 * 44 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" 45 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND 46 * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. 47 * 48 * Carnegie Mellon requests users of this software to return to 49 * 50 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU 51 * School of Computer Science 52 * Carnegie Mellon University 53 * Pittsburgh PA 15213-3890 54 * 55 * any improvements or extensions that they make and grant Carnegie the 56 * rights to redistribute these changes. 57 */ 58 59 #include "opt_dec_2100_a500.h" 60 #include "opt_dec_2100a_a500.h" 61 #include "eisa.h" 62 #include "sio.h" 63 64 #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */ 65 66 __KERNEL_RCSID(0, "$NetBSD: sio.c,v 1.49 2010/01/12 20:24:45 mhitch Exp $"); 67 68 #include <sys/param.h> 69 #include <sys/systm.h> 70 #include <sys/kernel.h> 71 #include <sys/device.h> 72 #include <sys/malloc.h> 73 74 #include <machine/intr.h> 75 #include <machine/bus.h> 76 #include <machine/rpb.h> 77 78 #include <dev/isa/isavar.h> 79 #include <dev/eisa/eisavar.h> 80 81 #include <dev/pci/pcireg.h> 82 #include <dev/pci/pcivar.h> 83 #include <dev/pci/pcidevs.h> 84 85 #include <alpha/pci/siovar.h> 86 87 #if defined(DEC_2100_A500) || defined(DEC_2100A_A500) 88 #include <alpha/pci/pci_2100_a500.h> 89 #include <alpha/sableio/sableiovar.h> 90 #endif 91 92 struct sio_softc { 93 struct device sc_dv; 94 95 pci_chipset_tag_t sc_pc; 96 97 bus_space_tag_t sc_iot, sc_memt; 98 bus_dma_tag_t sc_parent_dmat; 99 #if NPCEB > 0 100 int sc_haseisa; 101 #endif 102 int sc_is82c693; 103 104 /* ISA chipset must persist; it's used after autoconfig. */ 105 isa_chipset_tag_t sc_ic; 106 }; 107 108 int siomatch(struct device *, struct cfdata *, void *); 109 void sioattach(struct device *, struct device *, void *); 110 111 CFATTACH_DECL(sio, sizeof(struct sio_softc), 112 siomatch, sioattach, NULL, NULL); 113 114 #if NPCEB > 0 115 int pcebmatch(struct device *, struct cfdata *, void *); 116 117 CFATTACH_DECL(pceb, sizeof(struct sio_softc), 118 pcebmatch, sioattach, NULL, NULL); 119 #endif 120 121 union sio_attach_args { 122 struct isabus_attach_args sa_iba; 123 struct eisabus_attach_args sa_eba; 124 }; 125 126 void sio_isa_attach_hook(struct device *, struct device *, 127 struct isabus_attach_args *); 128 void sio_isa_detach_hook(isa_chipset_tag_t, device_t); 129 #if NPCEB > 0 130 void sio_eisa_attach_hook(struct device *, struct device *, 131 struct eisabus_attach_args *); 132 int sio_eisa_maxslots(void *); 133 int sio_eisa_intr_map(void *, u_int, eisa_intr_handle_t *); 134 #endif 135 136 void sio_bridge_callback(struct device *); 137 138 int 139 siomatch(struct device *parent, struct cfdata *match, void *aux) 140 { 141 struct pci_attach_args *pa = aux; 142 143 /* 144 * The Cypress 82C693 is more-or-less an SIO, but with 145 * indirect register access. (XXX for everything, or 146 * just the ELCR?) 147 */ 148 if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_CONTAQ && 149 PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_CONTAQ_82C693 && 150 pa->pa_function == 0) 151 return (1); 152 153 if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_INTEL && 154 PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_SIO) 155 return (1); 156 157 if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_ALI && 158 PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_ALI_M1533) 159 return (1); 160 161 return (0); 162 } 163 164 #if NPCEB > 0 165 int 166 pcebmatch(struct device *parent, struct cfdata *match, void *aux) 167 { 168 struct pci_attach_args *pa = aux; 169 170 if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_INTEL && 171 PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_PCEB) 172 return (1); 173 174 return (0); 175 } 176 #endif 177 178 void 179 sioattach(struct device *parent, struct device *self, void *aux) 180 { 181 struct sio_softc *sc = (struct sio_softc *)self; 182 struct pci_attach_args *pa = aux; 183 char devinfo[256]; 184 185 pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo)); 186 printf(": %s (rev. 0x%02x)\n", devinfo, 187 PCI_REVISION(pa->pa_class)); 188 189 sc->sc_pc = pa->pa_pc; 190 sc->sc_iot = pa->pa_iot; 191 sc->sc_memt = pa->pa_memt; 192 sc->sc_parent_dmat = pa->pa_dmat; 193 #if NPCEB > 0 194 sc->sc_haseisa = (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_INTEL && 195 PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_PCEB); 196 #endif 197 sc->sc_is82c693 = (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_CONTAQ && 198 PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_CONTAQ_82C693); 199 200 config_defer(self, sio_bridge_callback); 201 } 202 203 void 204 sio_bridge_callback(struct device *self) 205 { 206 struct sio_softc *sc = (struct sio_softc *)self; 207 union sio_attach_args sa; 208 #if NPCEB > 0 209 struct alpha_eisa_chipset ec; 210 211 if (sc->sc_haseisa) { 212 ec.ec_v = NULL; 213 ec.ec_attach_hook = sio_eisa_attach_hook; 214 ec.ec_maxslots = sio_eisa_maxslots; 215 216 /* 217 * Deal with platforms that hook EISA interrupts 218 * up differently. 219 */ 220 switch (cputype) { 221 #if defined(DEC_2100_A500) || defined(DEC_2100A_A500) 222 case ST_DEC_2100_A500: 223 case ST_DEC_2100A_A500: 224 pci_2100_a500_eisa_pickintr(sc->sc_pc, &ec); 225 break; 226 #endif 227 default: 228 ec.ec_intr_map = sio_eisa_intr_map; 229 ec.ec_intr_string = sio_intr_string; 230 ec.ec_intr_evcnt = sio_intr_evcnt; 231 ec.ec_intr_establish = sio_intr_establish; 232 ec.ec_intr_disestablish = sio_intr_disestablish; 233 } 234 235 sa.sa_eba.eba_iot = sc->sc_iot; 236 sa.sa_eba.eba_memt = sc->sc_memt; 237 sa.sa_eba.eba_dmat = 238 alphabus_dma_get_tag(sc->sc_parent_dmat, ALPHA_BUS_EISA); 239 sa.sa_eba.eba_ec = &ec; 240 config_found_ia(&sc->sc_dv, "eisabus", &sa.sa_eba, 241 eisabusprint); 242 } 243 #endif /* NPCEB */ 244 245 /* 246 * Deal with platforms which have Odd ISA DMA needs. 247 */ 248 switch (cputype) { 249 #if defined(DEC_2100_A500) || defined(DEC_2100A_A500) 250 case ST_DEC_2100_A500: 251 case ST_DEC_2100A_A500: 252 sc->sc_ic = sableio_pickisa(); 253 break; 254 #endif 255 default: 256 sc->sc_ic = malloc(sizeof(*sc->sc_ic), M_DEVBUF, M_WAITOK); 257 memset(sc->sc_ic, 0, sizeof(*sc->sc_ic)); 258 } 259 260 sc->sc_ic->ic_v = NULL; 261 sc->sc_ic->ic_attach_hook = sio_isa_attach_hook; 262 sc->sc_ic->ic_detach_hook = sio_isa_detach_hook; 263 264 /* 265 * Deal with platforms that hook up ISA interrupts differently. 266 */ 267 switch (cputype) { 268 #if defined(DEC_2100_A500) || defined(DEC_2100A_A500) 269 case ST_DEC_2100_A500: 270 case ST_DEC_2100A_A500: 271 pci_2100_a500_isa_pickintr(sc->sc_pc, sc->sc_ic); 272 break; 273 #endif 274 default: 275 sc->sc_ic->ic_intr_evcnt = sio_intr_evcnt; 276 sc->sc_ic->ic_intr_establish = sio_intr_establish; 277 sc->sc_ic->ic_intr_disestablish = sio_intr_disestablish; 278 sc->sc_ic->ic_intr_alloc = sio_intr_alloc; 279 } 280 281 sa.sa_iba.iba_iot = sc->sc_iot; 282 sa.sa_iba.iba_memt = sc->sc_memt; 283 sa.sa_iba.iba_dmat = 284 alphabus_dma_get_tag(sc->sc_parent_dmat, ALPHA_BUS_ISA); 285 sa.sa_iba.iba_ic = sc->sc_ic; 286 config_found_ia(&sc->sc_dv, "isabus", &sa.sa_iba, isabusprint); 287 } 288 289 void 290 sio_isa_attach_hook(struct device *parent, struct device *self, struct isabus_attach_args *iba) 291 { 292 293 /* Nothing to do. */ 294 } 295 296 void 297 sio_isa_detach_hook(isa_chipset_tag_t ic, device_t self) 298 { 299 300 /* Nothing to do. */ 301 } 302 303 #if NPCEB > 0 304 305 void 306 sio_eisa_attach_hook(struct device *parent, struct device *self, struct eisabus_attach_args *eba) 307 { 308 309 #if NEISA > 0 310 eisa_init(eba->eba_ec); 311 #endif 312 } 313 314 int 315 sio_eisa_maxslots(void *v) 316 { 317 318 return 16; /* as good a number as any. only 8, maybe? */ 319 } 320 321 int 322 sio_eisa_intr_map(void *v, u_int irq, eisa_intr_handle_t *ihp) 323 { 324 325 #define ICU_LEN 16 /* number of ISA IRQs (XXX) */ 326 327 if (irq >= ICU_LEN) { 328 printf("sio_eisa_intr_map: bad IRQ %d\n", irq); 329 *ihp = -1; 330 return 1; 331 } 332 if (irq == 2) { 333 printf("sio_eisa_intr_map: changed IRQ 2 to IRQ 9\n"); 334 irq = 9; 335 } 336 337 *ihp = irq; 338 return 0; 339 } 340 341 #endif /* NPCEB */ 342