1 1.10 dyoung /* $NetBSD: opti82c700.c,v 1.10 2011/07/01 17:37:26 dyoung Exp $ */ 2 1.1 thorpej 3 1.1 thorpej /*- 4 1.1 thorpej * Copyright (c) 1999 The NetBSD Foundation, Inc. 5 1.1 thorpej * All rights reserved. 6 1.1 thorpej * 7 1.1 thorpej * This code is derived from software contributed to The NetBSD Foundation 8 1.1 thorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility, 9 1.1 thorpej * NASA Ames Research Center. 10 1.1 thorpej * 11 1.1 thorpej * Redistribution and use in source and binary forms, with or without 12 1.1 thorpej * modification, are permitted provided that the following conditions 13 1.1 thorpej * are met: 14 1.1 thorpej * 1. Redistributions of source code must retain the above copyright 15 1.1 thorpej * notice, this list of conditions and the following disclaimer. 16 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright 17 1.1 thorpej * notice, this list of conditions and the following disclaimer in the 18 1.1 thorpej * documentation and/or other materials provided with the distribution. 19 1.1 thorpej * 20 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 21 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 22 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 23 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 24 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE. 31 1.1 thorpej */ 32 1.1 thorpej 33 1.1 thorpej /* 34 1.1 thorpej * Copyright (c) 1999, by UCHIYAMA Yasushi 35 1.1 thorpej * All rights reserved. 36 1.1 thorpej * 37 1.1 thorpej * Redistribution and use in source and binary forms, with or without 38 1.1 thorpej * modification, are permitted provided that the following conditions 39 1.1 thorpej * are met: 40 1.1 thorpej * 1. Redistributions of source code must retain the above copyright 41 1.1 thorpej * notice, this list of conditions and the following disclaimer. 42 1.1 thorpej * 2. The name of the developer may NOT be used to endorse or promote products 43 1.1 thorpej * derived from this software without specific prior written permission. 44 1.1 thorpej * 45 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 46 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 47 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 48 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 49 1.1 thorpej * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 50 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 51 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 52 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 53 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 54 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 55 1.1 thorpej * SUCH DAMAGE. 56 1.1 thorpej */ 57 1.1 thorpej 58 1.1 thorpej /* 59 1.2 soda * Support for the Opti 82c700 FireStar PCI-ISA bridge interrupt controller. 60 1.1 thorpej */ 61 1.3 lukem 62 1.3 lukem #include <sys/cdefs.h> 63 1.10 dyoung __KERNEL_RCSID(0, "$NetBSD: opti82c700.c,v 1.10 2011/07/01 17:37:26 dyoung Exp $"); 64 1.1 thorpej 65 1.1 thorpej #include <sys/param.h> 66 1.1 thorpej #include <sys/systm.h> 67 1.1 thorpej #include <sys/device.h> 68 1.1 thorpej #include <sys/malloc.h> 69 1.1 thorpej 70 1.1 thorpej #include <machine/intr.h> 71 1.10 dyoung #include <sys/bus.h> 72 1.1 thorpej 73 1.1 thorpej #include <dev/pci/pcivar.h> 74 1.1 thorpej #include <dev/pci/pcireg.h> 75 1.1 thorpej #include <dev/pci/pcidevs.h> 76 1.1 thorpej 77 1.1 thorpej #include <i386/pci/pci_intr_fixup.h> 78 1.1 thorpej #include <i386/pci/opti82c700reg.h> 79 1.1 thorpej 80 1.2 soda #ifdef FIRESTARDEBUG 81 1.2 soda #define DPRINTF(arg) printf arg 82 1.2 soda #else 83 1.2 soda #define DPRINTF(arg) 84 1.2 soda #endif 85 1.2 soda 86 1.5 kochi int opti82c700_getclink(pciintr_icu_handle_t, int, int *); 87 1.5 kochi int opti82c700_get_intr(pciintr_icu_handle_t, int, int *); 88 1.5 kochi int opti82c700_set_intr(pciintr_icu_handle_t, int, int); 89 1.5 kochi int opti82c700_get_trigger(pciintr_icu_handle_t, int, int *); 90 1.5 kochi int opti82c700_set_trigger(pciintr_icu_handle_t, int, int); 91 1.1 thorpej 92 1.1 thorpej const struct pciintr_icu opti82c700_pci_icu = { 93 1.1 thorpej opti82c700_getclink, 94 1.1 thorpej opti82c700_get_intr, 95 1.1 thorpej opti82c700_set_intr, 96 1.1 thorpej opti82c700_get_trigger, 97 1.1 thorpej opti82c700_set_trigger, 98 1.1 thorpej }; 99 1.1 thorpej 100 1.1 thorpej struct opti82c700_handle { 101 1.1 thorpej pci_chipset_tag_t ph_pc; 102 1.1 thorpej pcitag_t ph_tag; 103 1.1 thorpej }; 104 1.1 thorpej 105 1.5 kochi int opti82c700_addr(int, int *, int *); 106 1.2 soda #ifdef FIRESTARDEBUG 107 1.5 kochi void opti82c700_pir_dump(struct opti82c700_handle *); 108 1.2 soda #endif 109 1.1 thorpej 110 1.1 thorpej int 111 1.8 christos opti82c700_init(pci_chipset_tag_t pc, bus_space_tag_t iot, 112 1.7 christos pcitag_t tag, pciintr_icu_tag_t *ptagp, pciintr_icu_handle_t *phandp) 113 1.1 thorpej { 114 1.1 thorpej struct opti82c700_handle *ph; 115 1.1 thorpej 116 1.1 thorpej ph = malloc(sizeof(*ph), M_DEVBUF, M_NOWAIT); 117 1.1 thorpej if (ph == NULL) 118 1.1 thorpej return (1); 119 1.1 thorpej 120 1.1 thorpej ph->ph_pc = pc; 121 1.1 thorpej ph->ph_tag = tag; 122 1.2 soda #ifdef FIRESTARDEBUG 123 1.2 soda opti82c700_pir_dump(ph); 124 1.2 soda #endif 125 1.1 thorpej *ptagp = &opti82c700_pci_icu; 126 1.1 thorpej *phandp = ph; 127 1.1 thorpej return (0); 128 1.1 thorpej } 129 1.1 thorpej 130 1.1 thorpej int 131 1.5 kochi opti82c700_addr(int link, int *addrofs, int *ofs) 132 1.1 thorpej { 133 1.1 thorpej int regofs, src; 134 1.1 thorpej 135 1.1 thorpej regofs = FIRESTAR_PIR_REGOFS(link); 136 1.1 thorpej src = FIRESTAR_PIR_SELECTSRC(link); 137 1.1 thorpej 138 1.1 thorpej switch (src) { 139 1.1 thorpej case FIRESTAR_PIR_SELECT_NONE: 140 1.1 thorpej return (1); 141 1.1 thorpej 142 1.1 thorpej case FIRESTAR_PIR_SELECT_IRQ: 143 1.1 thorpej if (regofs < 0 || regofs > 7) 144 1.1 thorpej return (1); 145 1.1 thorpej *addrofs = FIRESTAR_CFG_INTR_IRQ + (regofs >> 2); 146 1.1 thorpej *ofs = (regofs & 3) << 3; 147 1.1 thorpej break; 148 1.1 thorpej 149 1.1 thorpej case FIRESTAR_PIR_SELECT_PIRQ: 150 1.2 soda /* FALLTHROUGH */ 151 1.1 thorpej case FIRESTAR_PIR_SELECT_BRIDGE: 152 1.1 thorpej if (regofs < 0 || regofs > 3) 153 1.1 thorpej return (1); 154 1.1 thorpej *addrofs = FIRESTAR_CFG_INTR_PIRQ; 155 1.1 thorpej *ofs = regofs << 2; 156 1.1 thorpej break; 157 1.1 thorpej 158 1.1 thorpej default: 159 1.1 thorpej return (1); 160 1.1 thorpej } 161 1.1 thorpej 162 1.1 thorpej return (0); 163 1.1 thorpej } 164 1.1 thorpej 165 1.1 thorpej int 166 1.8 christos opti82c700_getclink(pciintr_icu_handle_t v, int link, int *clinkp) 167 1.1 thorpej { 168 1.2 soda DPRINTF(("FireStar link value 0x%x: ", link)); 169 1.1 thorpej 170 1.2 soda switch (FIRESTAR_PIR_SELECTSRC(link)) { 171 1.2 soda default: 172 1.2 soda DPRINTF(("bogus IRQ selection source\n")); 173 1.2 soda return (1); 174 1.2 soda case FIRESTAR_PIR_SELECT_NONE: 175 1.2 soda DPRINTF(("No interrupt connection\n")); 176 1.2 soda return (1); 177 1.2 soda case FIRESTAR_PIR_SELECT_IRQ: 178 1.2 soda DPRINTF(("FireStar IRQ pin")); 179 1.2 soda break; 180 1.2 soda case FIRESTAR_PIR_SELECT_PIRQ: 181 1.2 soda DPRINTF(("FireStar PIO pin or Serial IRQ PIRQ#")); 182 1.2 soda break; 183 1.2 soda case FIRESTAR_PIR_SELECT_BRIDGE: 184 1.2 soda DPRINTF(("FireBridge 1 INTx# pin")); 185 1.2 soda break; 186 1.1 thorpej } 187 1.2 soda 188 1.2 soda DPRINTF((" REGOFST:%#x\n", FIRESTAR_PIR_REGOFS(link))); 189 1.2 soda *clinkp = link; 190 1.1 thorpej 191 1.2 soda return (0); 192 1.1 thorpej } 193 1.1 thorpej 194 1.1 thorpej int 195 1.5 kochi opti82c700_get_intr(pciintr_icu_handle_t v, int clink, int *irqp) 196 1.1 thorpej { 197 1.1 thorpej struct opti82c700_handle *ph = v; 198 1.1 thorpej pcireg_t reg; 199 1.1 thorpej int val, addrofs, ofs; 200 1.1 thorpej 201 1.1 thorpej if (opti82c700_addr(clink, &addrofs, &ofs)) 202 1.1 thorpej return (1); 203 1.1 thorpej 204 1.1 thorpej reg = pci_conf_read(ph->ph_pc, ph->ph_tag, addrofs); 205 1.1 thorpej val = (reg >> ofs) & FIRESTAR_CFG_PIRQ_MASK; 206 1.2 soda 207 1.2 soda *irqp = (val == FIRESTAR_PIRQ_NONE) ? 208 1.4 fvdl X86_PCI_INTERRUPT_LINE_NO_CONNECTION : val; 209 1.1 thorpej 210 1.1 thorpej return (0); 211 1.1 thorpej } 212 1.1 thorpej 213 1.1 thorpej int 214 1.5 kochi opti82c700_set_intr(pciintr_icu_handle_t v, int clink, int irq) 215 1.1 thorpej { 216 1.1 thorpej struct opti82c700_handle *ph = v; 217 1.1 thorpej int addrofs, ofs; 218 1.1 thorpej pcireg_t reg; 219 1.1 thorpej 220 1.2 soda if (FIRESTAR_LEGAL_IRQ(irq) == 0) 221 1.1 thorpej return (1); 222 1.1 thorpej 223 1.1 thorpej if (opti82c700_addr(clink, &addrofs, &ofs)) 224 1.1 thorpej return (1); 225 1.1 thorpej 226 1.1 thorpej reg = pci_conf_read(ph->ph_pc, ph->ph_tag, addrofs); 227 1.1 thorpej reg &= ~(FIRESTAR_CFG_PIRQ_MASK << ofs); 228 1.1 thorpej reg |= (irq << ofs); 229 1.1 thorpej pci_conf_write(ph->ph_pc, ph->ph_tag, addrofs, reg); 230 1.1 thorpej 231 1.1 thorpej return (0); 232 1.1 thorpej } 233 1.1 thorpej 234 1.1 thorpej int 235 1.5 kochi opti82c700_get_trigger(pciintr_icu_handle_t v, int irq, int *triggerp) 236 1.1 thorpej { 237 1.1 thorpej struct opti82c700_handle *ph = v; 238 1.1 thorpej int i, val, addrofs, ofs; 239 1.1 thorpej pcireg_t reg; 240 1.1 thorpej 241 1.1 thorpej if (FIRESTAR_LEGAL_IRQ(irq) == 0) { 242 1.1 thorpej /* ISA IRQ? */ 243 1.1 thorpej *triggerp = IST_EDGE; 244 1.1 thorpej return (0); 245 1.1 thorpej } 246 1.1 thorpej 247 1.1 thorpej /* 248 1.1 thorpej * Search PCIDV1 registers. 249 1.1 thorpej */ 250 1.1 thorpej for (i = 0; i < 8; i++) { 251 1.1 thorpej opti82c700_addr(FIRESTAR_PIR_MAKELINK(FIRESTAR_PIR_SELECT_IRQ, 252 1.1 thorpej i), &addrofs, &ofs); 253 1.1 thorpej reg = pci_conf_read(ph->ph_pc, ph->ph_tag, addrofs); 254 1.1 thorpej val = (reg >> ofs) & FIRESTAR_CFG_PIRQ_MASK; 255 1.1 thorpej if (val != irq) 256 1.1 thorpej continue; 257 1.1 thorpej val = ((reg >> ofs) >> FIRESTAR_TRIGGER_SHIFT) & 258 1.1 thorpej FIRESTAR_TRIGGER_MASK; 259 1.1 thorpej *triggerp = val ? IST_LEVEL : IST_EDGE; 260 1.1 thorpej return (0); 261 1.1 thorpej } 262 1.1 thorpej 263 1.2 soda /* 264 1.2 soda * Search PIO PCIIRQ. 265 1.2 soda */ 266 1.2 soda for (i = 0; i < 4; i++) { 267 1.2 soda opti82c700_addr(FIRESTAR_PIR_MAKELINK(FIRESTAR_PIR_SELECT_PIRQ, 268 1.2 soda i), &addrofs, &ofs); 269 1.2 soda reg = pci_conf_read(ph->ph_pc, ph->ph_tag, addrofs); 270 1.2 soda val = (reg >> ofs) & FIRESTAR_CFG_PIRQ_MASK; 271 1.2 soda if (val != irq) 272 1.2 soda continue; 273 1.2 soda *triggerp = IST_LEVEL; 274 1.2 soda return (0); 275 1.2 soda } 276 1.2 soda 277 1.1 thorpej return (1); 278 1.1 thorpej } 279 1.1 thorpej 280 1.1 thorpej int 281 1.5 kochi opti82c700_set_trigger(pciintr_icu_handle_t v, int irq, int trigger) 282 1.1 thorpej { 283 1.1 thorpej struct opti82c700_handle *ph = v; 284 1.1 thorpej int i, val, addrofs, ofs; 285 1.1 thorpej pcireg_t reg; 286 1.1 thorpej 287 1.1 thorpej if (FIRESTAR_LEGAL_IRQ(irq) == 0) { 288 1.1 thorpej /* ISA IRQ? */ 289 1.1 thorpej return ((trigger != IST_LEVEL) ? 0 : 1); 290 1.1 thorpej } 291 1.1 thorpej 292 1.1 thorpej /* 293 1.1 thorpej * Search PCIDV1 registers. 294 1.1 thorpej */ 295 1.1 thorpej for (i = 0; i < 8; i++) { 296 1.1 thorpej opti82c700_addr(FIRESTAR_PIR_MAKELINK(FIRESTAR_PIR_SELECT_IRQ, 297 1.1 thorpej i), &addrofs, &ofs); 298 1.1 thorpej reg = pci_conf_read(ph->ph_pc, ph->ph_tag, addrofs); 299 1.1 thorpej val = (reg >> ofs) & FIRESTAR_CFG_PIRQ_MASK; 300 1.1 thorpej if (val != irq) 301 1.1 thorpej continue; 302 1.1 thorpej if (trigger == IST_LEVEL) 303 1.1 thorpej reg |= (FIRESTAR_TRIGGER_MASK << 304 1.1 thorpej (FIRESTAR_TRIGGER_SHIFT + ofs)); 305 1.1 thorpej else 306 1.1 thorpej reg &= ~(FIRESTAR_TRIGGER_MASK << 307 1.1 thorpej (FIRESTAR_TRIGGER_SHIFT + ofs)); 308 1.1 thorpej pci_conf_write(ph->ph_pc, ph->ph_tag, addrofs, reg); 309 1.1 thorpej return (0); 310 1.1 thorpej } 311 1.1 thorpej 312 1.2 soda /* 313 1.2 soda * Search PIO PCIIRQ. 314 1.2 soda */ 315 1.2 soda for (i = 0; i < 4; i++) { 316 1.2 soda opti82c700_addr(FIRESTAR_PIR_MAKELINK(FIRESTAR_PIR_SELECT_PIRQ, 317 1.2 soda i), &addrofs, &ofs); 318 1.2 soda reg = pci_conf_read(ph->ph_pc, ph->ph_tag, addrofs); 319 1.2 soda val = (reg >> ofs) & FIRESTAR_CFG_PIRQ_MASK; 320 1.2 soda if (val != irq) 321 1.2 soda continue; 322 1.2 soda return (trigger == IST_LEVEL ? 0 : 1); 323 1.2 soda } 324 1.2 soda 325 1.1 thorpej return (1); 326 1.1 thorpej } 327 1.2 soda 328 1.2 soda #ifdef FIRESTARDEBUG 329 1.2 soda void 330 1.5 kochi opti82c700_pir_dump(struct opti82c700_handle *ph) 331 1.2 soda { 332 1.2 soda pcireg_t r; 333 1.2 soda pcitag_t tag = ph->ph_tag; 334 1.2 soda pci_chipset_tag_t pc = ph->ph_pc; 335 1.2 soda int i, j, k; 336 1.2 soda 337 1.2 soda /* FireStar IRQ pin */ 338 1.2 soda printf("-FireStar IRQ pin-\n"); 339 1.2 soda for (i = j = k = 0; i < 8; i += 4) { 340 1.2 soda r = pci_conf_read(pc, tag, 0xb0 + i); 341 1.2 soda printf ("\t"); 342 1.2 soda for (j = 0; j < 4; j++, k++, r >>= 8) { 343 1.2 soda printf("[%d:%s-IRQ%2d] ", k, 344 1.2 soda (r & (FIRESTAR_TRIGGER_MASK << 345 1.2 soda FIRESTAR_TRIGGER_SHIFT)) ? "PCI" : "ISA", 346 1.2 soda r & FIRESTAR_CFG_PIRQ_MASK); 347 1.2 soda } 348 1.2 soda printf("\n"); 349 1.2 soda } 350 1.2 soda 351 1.2 soda /* FireStar PIO pin or Serial IRQ PIRQ# */ 352 1.2 soda r = pci_conf_read(pc, tag, 0xb8); 353 1.2 soda printf("-FireStar PIO pin or Serial IRQ PIRQ#-\n\t"); 354 1.2 soda for (i = 0; i < 4; i++, r >>= 4) { 355 1.2 soda printf("[PCIIRQ%d# %d] ", i, r & FIRESTAR_CFG_PIRQ_MASK); 356 1.2 soda } 357 1.2 soda printf("\n"); 358 1.2 soda } 359 1.2 soda #endif /* FIRESTARDEBUG */ 360