| Commit | Line | Data |
|---|---|---|
| 06f5be02 MD |
1 | /* |
| 2 | * Copyright (c) 2005 The DragonFly Project. All rights reserved. | |
| 10ff1029 MD |
3 | * Copyright (c) 1996, by Steve Passe. All rights reserved. |
| 4 | * Copyright (c) 1991 The Regents of the University of California. | |
| 5 | * All rights reserved. | |
| 06f5be02 MD |
6 | * |
| 7 | * This code is derived from software contributed to The DragonFly Project | |
| 8 | * by Matthew Dillon <dillon@backplane.com> | |
| 10ff1029 MD |
9 | * |
| 10 | * This code is derived from software contributed to Berkeley by | |
| 11 | * William Jolitz. | |
| 06f5be02 MD |
12 | * |
| 13 | * Redistribution and use in source and binary forms, with or without | |
| 14 | * modification, are permitted provided that the following conditions | |
| 15 | * are met: | |
| 16 | * | |
| 17 | * 1. Redistributions of source code must retain the above copyright | |
| 18 | * notice, this list of conditions and the following disclaimer. | |
| 19 | * 2. Redistributions in binary form must reproduce the above copyright | |
| 20 | * notice, this list of conditions and the following disclaimer in | |
| 21 | * the documentation and/or other materials provided with the | |
| 22 | * distribution. | |
| 23 | * 3. Neither the name of The DragonFly Project nor the names of its | |
| 24 | * contributors may be used to endorse or promote products derived | |
| 25 | * from this software without specific, prior written permission. | |
| 26 | * | |
| 27 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
| 28 | * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
| 29 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | |
| 30 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | |
| 31 | * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | |
| 32 | * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, | |
| 33 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | |
| 34 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | |
| 35 | * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | |
| 36 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | |
| 37 | * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
| 38 | * SUCH DAMAGE. | |
| 37e7efec | 39 | * |
| 0b692e79 | 40 | * $DragonFly: src/sys/platform/pc32/apic/apic_abi.c,v 1.12 2007/04/30 16:45:55 dillon Exp $ |
| 37e7efec MD |
41 | */ |
| 42 | ||
| 43 | #include <sys/param.h> | |
| 44 | #include <sys/systm.h> | |
| 45 | #include <sys/kernel.h> | |
| 46 | #include <sys/machintr.h> | |
| 10ff1029 MD |
47 | #include <sys/interrupt.h> |
| 48 | #include <sys/bus.h> | |
| 0f3e19b1 | 49 | #include <sys/rman.h> |
| 9dba15ae | 50 | #include <sys/thread2.h> |
| 0b692e79 | 51 | |
| 37e7efec | 52 | #include <machine/smp.h> |
| 10ff1029 MD |
53 | #include <machine/segments.h> |
| 54 | #include <machine/md_var.h> | |
| 87cf6827 | 55 | #include <machine/intr_machdep.h> |
| 0b692e79 | 56 | #include <machine/globaldata.h> |
| be98308a | 57 | #include <machine/msi_var.h> |
| 0b692e79 | 58 | |
| 58587c23 | 59 | #include <machine_base/isa/isa_intr.h> |
| 4298586a | 60 | #include <machine_base/icu/icu.h> |
| 6b809ec7 | 61 | #include <machine_base/icu/icu_var.h> |
| 4298586a | 62 | #include <machine_base/apic/ioapic.h> |
| 929c940f | 63 | #include <machine_base/apic/ioapic_abi.h> |
| 77f86d14 | 64 | #include <machine_base/apic/ioapic_ipl.h> |
| 1e7aaefa | 65 | #include <machine_base/apic/apicreg.h> |
| 37e7efec | 66 | |
| 9dba15ae SZ |
67 | #include <dev/acpica5/acpi_sci_var.h> |
| 68 | ||
| b2150df1 SZ |
69 | #define IOAPIC_HWI_VECTORS IDT_HWI_VECTORS |
| 70 | ||
| 10ff1029 | 71 | extern inthand_t |
| 9e0e3f85 SZ |
72 | IDTVEC(ioapic_intr0), |
| 73 | IDTVEC(ioapic_intr1), | |
| 74 | IDTVEC(ioapic_intr2), | |
| 75 | IDTVEC(ioapic_intr3), | |
| 76 | IDTVEC(ioapic_intr4), | |
| 77 | IDTVEC(ioapic_intr5), | |
| 78 | IDTVEC(ioapic_intr6), | |
| 79 | IDTVEC(ioapic_intr7), | |
| 80 | IDTVEC(ioapic_intr8), | |
| 81 | IDTVEC(ioapic_intr9), | |
| 82 | IDTVEC(ioapic_intr10), | |
| 83 | IDTVEC(ioapic_intr11), | |
| 84 | IDTVEC(ioapic_intr12), | |
| 85 | IDTVEC(ioapic_intr13), | |
| 86 | IDTVEC(ioapic_intr14), | |
| 87 | IDTVEC(ioapic_intr15), | |
| 88 | IDTVEC(ioapic_intr16), | |
| 89 | IDTVEC(ioapic_intr17), | |
| 90 | IDTVEC(ioapic_intr18), | |
| 91 | IDTVEC(ioapic_intr19), | |
| 92 | IDTVEC(ioapic_intr20), | |
| 93 | IDTVEC(ioapic_intr21), | |
| 94 | IDTVEC(ioapic_intr22), | |
| 95 | IDTVEC(ioapic_intr23), | |
| 96 | IDTVEC(ioapic_intr24), | |
| 97 | IDTVEC(ioapic_intr25), | |
| 98 | IDTVEC(ioapic_intr26), | |
| 99 | IDTVEC(ioapic_intr27), | |
| 100 | IDTVEC(ioapic_intr28), | |
| 101 | IDTVEC(ioapic_intr29), | |
| 102 | IDTVEC(ioapic_intr30), | |
| 103 | IDTVEC(ioapic_intr31), | |
| 104 | IDTVEC(ioapic_intr32), | |
| 105 | IDTVEC(ioapic_intr33), | |
| 106 | IDTVEC(ioapic_intr34), | |
| 107 | IDTVEC(ioapic_intr35), | |
| 108 | IDTVEC(ioapic_intr36), | |
| 109 | IDTVEC(ioapic_intr37), | |
| 110 | IDTVEC(ioapic_intr38), | |
| 111 | IDTVEC(ioapic_intr39), | |
| 112 | IDTVEC(ioapic_intr40), | |
| 113 | IDTVEC(ioapic_intr41), | |
| 114 | IDTVEC(ioapic_intr42), | |
| 115 | IDTVEC(ioapic_intr43), | |
| 116 | IDTVEC(ioapic_intr44), | |
| 117 | IDTVEC(ioapic_intr45), | |
| 118 | IDTVEC(ioapic_intr46), | |
| 119 | IDTVEC(ioapic_intr47), | |
| 120 | IDTVEC(ioapic_intr48), | |
| 121 | IDTVEC(ioapic_intr49), | |
| 122 | IDTVEC(ioapic_intr50), | |
| 123 | IDTVEC(ioapic_intr51), | |
| 124 | IDTVEC(ioapic_intr52), | |
| 125 | IDTVEC(ioapic_intr53), | |
| 126 | IDTVEC(ioapic_intr54), | |
| 127 | IDTVEC(ioapic_intr55), | |
| 128 | IDTVEC(ioapic_intr56), | |
| 129 | IDTVEC(ioapic_intr57), | |
| 130 | IDTVEC(ioapic_intr58), | |
| 131 | IDTVEC(ioapic_intr59), | |
| 132 | IDTVEC(ioapic_intr60), | |
| 133 | IDTVEC(ioapic_intr61), | |
| 134 | IDTVEC(ioapic_intr62), | |
| 135 | IDTVEC(ioapic_intr63), | |
| 136 | IDTVEC(ioapic_intr64), | |
| 137 | IDTVEC(ioapic_intr65), | |
| 138 | IDTVEC(ioapic_intr66), | |
| 139 | IDTVEC(ioapic_intr67), | |
| 140 | IDTVEC(ioapic_intr68), | |
| 141 | IDTVEC(ioapic_intr69), | |
| 142 | IDTVEC(ioapic_intr70), | |
| 143 | IDTVEC(ioapic_intr71), | |
| 144 | IDTVEC(ioapic_intr72), | |
| 145 | IDTVEC(ioapic_intr73), | |
| 146 | IDTVEC(ioapic_intr74), | |
| 147 | IDTVEC(ioapic_intr75), | |
| 148 | IDTVEC(ioapic_intr76), | |
| 149 | IDTVEC(ioapic_intr77), | |
| 150 | IDTVEC(ioapic_intr78), | |
| 151 | IDTVEC(ioapic_intr79), | |
| 152 | IDTVEC(ioapic_intr80), | |
| 153 | IDTVEC(ioapic_intr81), | |
| 154 | IDTVEC(ioapic_intr82), | |
| 155 | IDTVEC(ioapic_intr83), | |
| 156 | IDTVEC(ioapic_intr84), | |
| 157 | IDTVEC(ioapic_intr85), | |
| 158 | IDTVEC(ioapic_intr86), | |
| 159 | IDTVEC(ioapic_intr87), | |
| 160 | IDTVEC(ioapic_intr88), | |
| 161 | IDTVEC(ioapic_intr89), | |
| 162 | IDTVEC(ioapic_intr90), | |
| 163 | IDTVEC(ioapic_intr91), | |
| 164 | IDTVEC(ioapic_intr92), | |
| 165 | IDTVEC(ioapic_intr93), | |
| 166 | IDTVEC(ioapic_intr94), | |
| 167 | IDTVEC(ioapic_intr95), | |
| 168 | IDTVEC(ioapic_intr96), | |
| 169 | IDTVEC(ioapic_intr97), | |
| 170 | IDTVEC(ioapic_intr98), | |
| 171 | IDTVEC(ioapic_intr99), | |
| 172 | IDTVEC(ioapic_intr100), | |
| 173 | IDTVEC(ioapic_intr101), | |
| 174 | IDTVEC(ioapic_intr102), | |
| 175 | IDTVEC(ioapic_intr103), | |
| 176 | IDTVEC(ioapic_intr104), | |
| 177 | IDTVEC(ioapic_intr105), | |
| 178 | IDTVEC(ioapic_intr106), | |
| 179 | IDTVEC(ioapic_intr107), | |
| 180 | IDTVEC(ioapic_intr108), | |
| 181 | IDTVEC(ioapic_intr109), | |
| 182 | IDTVEC(ioapic_intr110), | |
| 183 | IDTVEC(ioapic_intr111), | |
| 184 | IDTVEC(ioapic_intr112), | |
| 185 | IDTVEC(ioapic_intr113), | |
| 186 | IDTVEC(ioapic_intr114), | |
| 187 | IDTVEC(ioapic_intr115), | |
| 188 | IDTVEC(ioapic_intr116), | |
| 189 | IDTVEC(ioapic_intr117), | |
| 190 | IDTVEC(ioapic_intr118), | |
| 191 | IDTVEC(ioapic_intr119), | |
| 192 | IDTVEC(ioapic_intr120), | |
| 193 | IDTVEC(ioapic_intr121), | |
| 194 | IDTVEC(ioapic_intr122), | |
| 195 | IDTVEC(ioapic_intr123), | |
| 196 | IDTVEC(ioapic_intr124), | |
| 197 | IDTVEC(ioapic_intr125), | |
| 198 | IDTVEC(ioapic_intr126), | |
| 199 | IDTVEC(ioapic_intr127), | |
| 200 | IDTVEC(ioapic_intr128), | |
| 201 | IDTVEC(ioapic_intr129), | |
| 202 | IDTVEC(ioapic_intr130), | |
| 203 | IDTVEC(ioapic_intr131), | |
| 204 | IDTVEC(ioapic_intr132), | |
| 205 | IDTVEC(ioapic_intr133), | |
| 206 | IDTVEC(ioapic_intr134), | |
| 207 | IDTVEC(ioapic_intr135), | |
| 208 | IDTVEC(ioapic_intr136), | |
| 209 | IDTVEC(ioapic_intr137), | |
| 210 | IDTVEC(ioapic_intr138), | |
| 211 | IDTVEC(ioapic_intr139), | |
| 212 | IDTVEC(ioapic_intr140), | |
| 213 | IDTVEC(ioapic_intr141), | |
| 214 | IDTVEC(ioapic_intr142), | |
| 215 | IDTVEC(ioapic_intr143), | |
| 216 | IDTVEC(ioapic_intr144), | |
| 217 | IDTVEC(ioapic_intr145), | |
| 218 | IDTVEC(ioapic_intr146), | |
| 219 | IDTVEC(ioapic_intr147), | |
| 220 | IDTVEC(ioapic_intr148), | |
| 221 | IDTVEC(ioapic_intr149), | |
| 222 | IDTVEC(ioapic_intr150), | |
| 223 | IDTVEC(ioapic_intr151), | |
| 224 | IDTVEC(ioapic_intr152), | |
| 225 | IDTVEC(ioapic_intr153), | |
| 226 | IDTVEC(ioapic_intr154), | |
| 227 | IDTVEC(ioapic_intr155), | |
| 228 | IDTVEC(ioapic_intr156), | |
| 229 | IDTVEC(ioapic_intr157), | |
| 230 | IDTVEC(ioapic_intr158), | |
| 231 | IDTVEC(ioapic_intr159), | |
| 232 | IDTVEC(ioapic_intr160), | |
| 233 | IDTVEC(ioapic_intr161), | |
| 234 | IDTVEC(ioapic_intr162), | |
| 235 | IDTVEC(ioapic_intr163), | |
| 236 | IDTVEC(ioapic_intr164), | |
| 237 | IDTVEC(ioapic_intr165), | |
| 238 | IDTVEC(ioapic_intr166), | |
| 239 | IDTVEC(ioapic_intr167), | |
| 240 | IDTVEC(ioapic_intr168), | |
| 241 | IDTVEC(ioapic_intr169), | |
| 242 | IDTVEC(ioapic_intr170), | |
| 243 | IDTVEC(ioapic_intr171), | |
| 244 | IDTVEC(ioapic_intr172), | |
| 245 | IDTVEC(ioapic_intr173), | |
| 246 | IDTVEC(ioapic_intr174), | |
| 247 | IDTVEC(ioapic_intr175), | |
| 248 | IDTVEC(ioapic_intr176), | |
| 249 | IDTVEC(ioapic_intr177), | |
| 250 | IDTVEC(ioapic_intr178), | |
| 251 | IDTVEC(ioapic_intr179), | |
| 252 | IDTVEC(ioapic_intr180), | |
| 253 | IDTVEC(ioapic_intr181), | |
| 254 | IDTVEC(ioapic_intr182), | |
| 255 | IDTVEC(ioapic_intr183), | |
| 256 | IDTVEC(ioapic_intr184), | |
| 257 | IDTVEC(ioapic_intr185), | |
| 258 | IDTVEC(ioapic_intr186), | |
| 259 | IDTVEC(ioapic_intr187), | |
| 260 | IDTVEC(ioapic_intr188), | |
| 261 | IDTVEC(ioapic_intr189), | |
| 262 | IDTVEC(ioapic_intr190), | |
| 263 | IDTVEC(ioapic_intr191); | |
| 264 | ||
| 265 | static inthand_t *ioapic_intr[IOAPIC_HWI_VECTORS] = { | |
| 266 | &IDTVEC(ioapic_intr0), | |
| 267 | &IDTVEC(ioapic_intr1), | |
| 268 | &IDTVEC(ioapic_intr2), | |
| 269 | &IDTVEC(ioapic_intr3), | |
| 270 | &IDTVEC(ioapic_intr4), | |
| 271 | &IDTVEC(ioapic_intr5), | |
| 272 | &IDTVEC(ioapic_intr6), | |
| 273 | &IDTVEC(ioapic_intr7), | |
| 274 | &IDTVEC(ioapic_intr8), | |
| 275 | &IDTVEC(ioapic_intr9), | |
| 276 | &IDTVEC(ioapic_intr10), | |
| 277 | &IDTVEC(ioapic_intr11), | |
| 278 | &IDTVEC(ioapic_intr12), | |
| 279 | &IDTVEC(ioapic_intr13), | |
| 280 | &IDTVEC(ioapic_intr14), | |
| 281 | &IDTVEC(ioapic_intr15), | |
| 282 | &IDTVEC(ioapic_intr16), | |
| 283 | &IDTVEC(ioapic_intr17), | |
| 284 | &IDTVEC(ioapic_intr18), | |
| 285 | &IDTVEC(ioapic_intr19), | |
| 286 | &IDTVEC(ioapic_intr20), | |
| 287 | &IDTVEC(ioapic_intr21), | |
| 288 | &IDTVEC(ioapic_intr22), | |
| 289 | &IDTVEC(ioapic_intr23), | |
| 290 | &IDTVEC(ioapic_intr24), | |
| 291 | &IDTVEC(ioapic_intr25), | |
| 292 | &IDTVEC(ioapic_intr26), | |
| 293 | &IDTVEC(ioapic_intr27), | |
| 294 | &IDTVEC(ioapic_intr28), | |
| 295 | &IDTVEC(ioapic_intr29), | |
| 296 | &IDTVEC(ioapic_intr30), | |
| 297 | &IDTVEC(ioapic_intr31), | |
| 298 | &IDTVEC(ioapic_intr32), | |
| 299 | &IDTVEC(ioapic_intr33), | |
| 300 | &IDTVEC(ioapic_intr34), | |
| 301 | &IDTVEC(ioapic_intr35), | |
| 302 | &IDTVEC(ioapic_intr36), | |
| 303 | &IDTVEC(ioapic_intr37), | |
| 304 | &IDTVEC(ioapic_intr38), | |
| 305 | &IDTVEC(ioapic_intr39), | |
| 306 | &IDTVEC(ioapic_intr40), | |
| 307 | &IDTVEC(ioapic_intr41), | |
| 308 | &IDTVEC(ioapic_intr42), | |
| 309 | &IDTVEC(ioapic_intr43), | |
| 310 | &IDTVEC(ioapic_intr44), | |
| 311 | &IDTVEC(ioapic_intr45), | |
| 312 | &IDTVEC(ioapic_intr46), | |
| 313 | &IDTVEC(ioapic_intr47), | |
| 314 | &IDTVEC(ioapic_intr48), | |
| 315 | &IDTVEC(ioapic_intr49), | |
| 316 | &IDTVEC(ioapic_intr50), | |
| 317 | &IDTVEC(ioapic_intr51), | |
| 318 | &IDTVEC(ioapic_intr52), | |
| 319 | &IDTVEC(ioapic_intr53), | |
| 320 | &IDTVEC(ioapic_intr54), | |
| 321 | &IDTVEC(ioapic_intr55), | |
| 322 | &IDTVEC(ioapic_intr56), | |
| 323 | &IDTVEC(ioapic_intr57), | |
| 324 | &IDTVEC(ioapic_intr58), | |
| 325 | &IDTVEC(ioapic_intr59), | |
| 326 | &IDTVEC(ioapic_intr60), | |
| 327 | &IDTVEC(ioapic_intr61), | |
| 328 | &IDTVEC(ioapic_intr62), | |
| 329 | &IDTVEC(ioapic_intr63), | |
| 330 | &IDTVEC(ioapic_intr64), | |
| 331 | &IDTVEC(ioapic_intr65), | |
| 332 | &IDTVEC(ioapic_intr66), | |
| 333 | &IDTVEC(ioapic_intr67), | |
| 334 | &IDTVEC(ioapic_intr68), | |
| 335 | &IDTVEC(ioapic_intr69), | |
| 336 | &IDTVEC(ioapic_intr70), | |
| 337 | &IDTVEC(ioapic_intr71), | |
| 338 | &IDTVEC(ioapic_intr72), | |
| 339 | &IDTVEC(ioapic_intr73), | |
| 340 | &IDTVEC(ioapic_intr74), | |
| 341 | &IDTVEC(ioapic_intr75), | |
| 342 | &IDTVEC(ioapic_intr76), | |
| 343 | &IDTVEC(ioapic_intr77), | |
| 344 | &IDTVEC(ioapic_intr78), | |
| 345 | &IDTVEC(ioapic_intr79), | |
| 346 | &IDTVEC(ioapic_intr80), | |
| 347 | &IDTVEC(ioapic_intr81), | |
| 348 | &IDTVEC(ioapic_intr82), | |
| 349 | &IDTVEC(ioapic_intr83), | |
| 350 | &IDTVEC(ioapic_intr84), | |
| 351 | &IDTVEC(ioapic_intr85), | |
| 352 | &IDTVEC(ioapic_intr86), | |
| 353 | &IDTVEC(ioapic_intr87), | |
| 354 | &IDTVEC(ioapic_intr88), | |
| 355 | &IDTVEC(ioapic_intr89), | |
| 356 | &IDTVEC(ioapic_intr90), | |
| 357 | &IDTVEC(ioapic_intr91), | |
| 358 | &IDTVEC(ioapic_intr92), | |
| 359 | &IDTVEC(ioapic_intr93), | |
| 360 | &IDTVEC(ioapic_intr94), | |
| 361 | &IDTVEC(ioapic_intr95), | |
| 362 | &IDTVEC(ioapic_intr96), | |
| 363 | &IDTVEC(ioapic_intr97), | |
| 364 | &IDTVEC(ioapic_intr98), | |
| 365 | &IDTVEC(ioapic_intr99), | |
| 366 | &IDTVEC(ioapic_intr100), | |
| 367 | &IDTVEC(ioapic_intr101), | |
| 368 | &IDTVEC(ioapic_intr102), | |
| 369 | &IDTVEC(ioapic_intr103), | |
| 370 | &IDTVEC(ioapic_intr104), | |
| 371 | &IDTVEC(ioapic_intr105), | |
| 372 | &IDTVEC(ioapic_intr106), | |
| 373 | &IDTVEC(ioapic_intr107), | |
| 374 | &IDTVEC(ioapic_intr108), | |
| 375 | &IDTVEC(ioapic_intr109), | |
| 376 | &IDTVEC(ioapic_intr110), | |
| 377 | &IDTVEC(ioapic_intr111), | |
| 378 | &IDTVEC(ioapic_intr112), | |
| 379 | &IDTVEC(ioapic_intr113), | |
| 380 | &IDTVEC(ioapic_intr114), | |
| 381 | &IDTVEC(ioapic_intr115), | |
| 382 | &IDTVEC(ioapic_intr116), | |
| 383 | &IDTVEC(ioapic_intr117), | |
| 384 | &IDTVEC(ioapic_intr118), | |
| 385 | &IDTVEC(ioapic_intr119), | |
| 386 | &IDTVEC(ioapic_intr120), | |
| 387 | &IDTVEC(ioapic_intr121), | |
| 388 | &IDTVEC(ioapic_intr122), | |
| 389 | &IDTVEC(ioapic_intr123), | |
| 390 | &IDTVEC(ioapic_intr124), | |
| 391 | &IDTVEC(ioapic_intr125), | |
| 392 | &IDTVEC(ioapic_intr126), | |
| 393 | &IDTVEC(ioapic_intr127), | |
| 394 | &IDTVEC(ioapic_intr128), | |
| 395 | &IDTVEC(ioapic_intr129), | |
| 396 | &IDTVEC(ioapic_intr130), | |
| 397 | &IDTVEC(ioapic_intr131), | |
| 398 | &IDTVEC(ioapic_intr132), | |
| 399 | &IDTVEC(ioapic_intr133), | |
| 400 | &IDTVEC(ioapic_intr134), | |
| 401 | &IDTVEC(ioapic_intr135), | |
| 402 | &IDTVEC(ioapic_intr136), | |
| 403 | &IDTVEC(ioapic_intr137), | |
| 404 | &IDTVEC(ioapic_intr138), | |
| 405 | &IDTVEC(ioapic_intr139), | |
| 406 | &IDTVEC(ioapic_intr140), | |
| 407 | &IDTVEC(ioapic_intr141), | |
| 408 | &IDTVEC(ioapic_intr142), | |
| 409 | &IDTVEC(ioapic_intr143), | |
| 410 | &IDTVEC(ioapic_intr144), | |
| 411 | &IDTVEC(ioapic_intr145), | |
| 412 | &IDTVEC(ioapic_intr146), | |
| 413 | &IDTVEC(ioapic_intr147), | |
| 414 | &IDTVEC(ioapic_intr148), | |
| 415 | &IDTVEC(ioapic_intr149), | |
| 416 | &IDTVEC(ioapic_intr150), | |
| 417 | &IDTVEC(ioapic_intr151), | |
| 418 | &IDTVEC(ioapic_intr152), | |
| 419 | &IDTVEC(ioapic_intr153), | |
| 420 | &IDTVEC(ioapic_intr154), | |
| 421 | &IDTVEC(ioapic_intr155), | |
| 422 | &IDTVEC(ioapic_intr156), | |
| 423 | &IDTVEC(ioapic_intr157), | |
| 424 | &IDTVEC(ioapic_intr158), | |
| 425 | &IDTVEC(ioapic_intr159), | |
| 426 | &IDTVEC(ioapic_intr160), | |
| 427 | &IDTVEC(ioapic_intr161), | |
| 428 | &IDTVEC(ioapic_intr162), | |
| 429 | &IDTVEC(ioapic_intr163), | |
| 430 | &IDTVEC(ioapic_intr164), | |
| 431 | &IDTVEC(ioapic_intr165), | |
| 432 | &IDTVEC(ioapic_intr166), | |
| 433 | &IDTVEC(ioapic_intr167), | |
| 434 | &IDTVEC(ioapic_intr168), | |
| 435 | &IDTVEC(ioapic_intr169), | |
| 436 | &IDTVEC(ioapic_intr170), | |
| 437 | &IDTVEC(ioapic_intr171), | |
| 438 | &IDTVEC(ioapic_intr172), | |
| 439 | &IDTVEC(ioapic_intr173), | |
| 440 | &IDTVEC(ioapic_intr174), | |
| 441 | &IDTVEC(ioapic_intr175), | |
| 442 | &IDTVEC(ioapic_intr176), | |
| 443 | &IDTVEC(ioapic_intr177), | |
| 444 | &IDTVEC(ioapic_intr178), | |
| 445 | &IDTVEC(ioapic_intr179), | |
| 446 | &IDTVEC(ioapic_intr180), | |
| 447 | &IDTVEC(ioapic_intr181), | |
| 448 | &IDTVEC(ioapic_intr182), | |
| 449 | &IDTVEC(ioapic_intr183), | |
| 450 | &IDTVEC(ioapic_intr184), | |
| 451 | &IDTVEC(ioapic_intr185), | |
| 452 | &IDTVEC(ioapic_intr186), | |
| 453 | &IDTVEC(ioapic_intr187), | |
| 454 | &IDTVEC(ioapic_intr188), | |
| 455 | &IDTVEC(ioapic_intr189), | |
| 456 | &IDTVEC(ioapic_intr190), | |
| 457 | &IDTVEC(ioapic_intr191) | |
| c571da4a | 458 | }; |
| 10ff1029 | 459 | |
| 474ba684 SZ |
460 | #define IOAPIC_HWI_SYSCALL (IDT_OFFSET_SYSCALL - IDT_OFFSET) |
| 461 | ||
| a3dd9120 SZ |
462 | static struct ioapic_irqmap { |
| 463 | int im_type; /* IOAPIC_IMT_ */ | |
| 464 | enum intr_trigger im_trig; | |
| f6915355 | 465 | enum intr_polarity im_pola; |
| a3dd9120 | 466 | int im_gsi; |
| be98308a | 467 | int im_msi_base; |
| d1ae7328 | 468 | uint32_t im_flags; /* IOAPIC_IMF_ */ |
| 2e62e7a5 | 469 | } ioapic_irqmaps[MAXCPU][IOAPIC_HWI_VECTORS]; |
| a3dd9120 | 470 | |
| be98308a SZ |
471 | static struct lwkt_token ioapic_irqmap_tok = |
| 472 | LWKT_TOKEN_INITIALIZER(ioapic_irqmap_token); | |
| 473 | ||
| a3dd9120 SZ |
474 | #define IOAPIC_IMT_UNUSED 0 |
| 475 | #define IOAPIC_IMT_RESERVED 1 | |
| 2a32da90 | 476 | #define IOAPIC_IMT_LEGACY 2 |
| 474ba684 | 477 | #define IOAPIC_IMT_SYSCALL 3 |
| be98308a SZ |
478 | #define IOAPIC_IMT_SHADOW 4 |
| 479 | #define IOAPIC_IMT_MSI 5 | |
| a3dd9120 | 480 | |
| 0f3e19b1 | 481 | #define IOAPIC_IMT_ISHWI(map) ((map)->im_type != IOAPIC_IMT_RESERVED && \ |
| be98308a SZ |
482 | (map)->im_type != IOAPIC_IMT_SYSCALL && \ |
| 483 | (map)->im_type != IOAPIC_IMT_SHADOW) | |
| 0f3e19b1 | 484 | |
| d1ae7328 SZ |
485 | #define IOAPIC_IMF_CONF 0x1 |
| 486 | ||
| 9e0e3f85 SZ |
487 | extern void IOAPIC_INTREN(int); |
| 488 | extern void IOAPIC_INTRDIS(int); | |
| 489 | ||
| 1d903de5 SZ |
490 | extern int imcr_present; |
| 491 | ||
| 35b2edcb SZ |
492 | static void ioapic_abi_intr_enable(int); |
| 493 | static void ioapic_abi_intr_disable(int); | |
| f416026e SZ |
494 | static void ioapic_abi_intr_setup(int, int); |
| 495 | static void ioapic_abi_intr_teardown(int); | |
| 780a6eec SZ |
496 | static void ioapic_abi_intr_config(int, |
| 497 | enum intr_trigger, enum intr_polarity); | |
| a05c798c | 498 | static int ioapic_abi_intr_cpuid(int); |
| 35b2edcb | 499 | |
| be98308a SZ |
500 | static int ioapic_abi_msi_alloc(int [], int, int); |
| 501 | static void ioapic_abi_msi_release(const int [], int, int); | |
| 502 | static void ioapic_abi_msi_map(int, uint64_t *, uint32_t *, int); | |
| 503 | ||
| 780a6eec SZ |
504 | static void ioapic_abi_finalize(void); |
| 505 | static void ioapic_abi_cleanup(void); | |
| 506 | static void ioapic_abi_setdefault(void); | |
| 507 | static void ioapic_abi_stabilize(void); | |
| 508 | static void ioapic_abi_initmap(void); | |
| 0f3e19b1 | 509 | static void ioapic_abi_rman_setup(struct rman *); |
| 9e0e3f85 | 510 | |
| 9dba15ae SZ |
511 | static int ioapic_abi_gsi_cpuid(int, int); |
| 512 | ||
| 9e0e3f85 SZ |
513 | struct machintr_abi MachIntrABI_IOAPIC = { |
| 514 | MACHINTR_IOAPIC, | |
| 35b2edcb SZ |
515 | |
| 516 | .intr_disable = ioapic_abi_intr_disable, | |
| 517 | .intr_enable = ioapic_abi_intr_enable, | |
| f416026e SZ |
518 | .intr_setup = ioapic_abi_intr_setup, |
| 519 | .intr_teardown = ioapic_abi_intr_teardown, | |
| 780a6eec | 520 | .intr_config = ioapic_abi_intr_config, |
| a05c798c | 521 | .intr_cpuid = ioapic_abi_intr_cpuid, |
| 35b2edcb | 522 | |
| be98308a SZ |
523 | .msi_alloc = ioapic_abi_msi_alloc, |
| 524 | .msi_release = ioapic_abi_msi_release, | |
| 525 | .msi_map = ioapic_abi_msi_map, | |
| 526 | ||
| 780a6eec SZ |
527 | .finalize = ioapic_abi_finalize, |
| 528 | .cleanup = ioapic_abi_cleanup, | |
| 529 | .setdefault = ioapic_abi_setdefault, | |
| 530 | .stabilize = ioapic_abi_stabilize, | |
| 0f3e19b1 SZ |
531 | .initmap = ioapic_abi_initmap, |
| 532 | .rman_setup = ioapic_abi_rman_setup | |
| 37e7efec MD |
533 | }; |
| 534 | ||
| 6b809ec7 | 535 | static int ioapic_abi_extint_irq = -1; |
| 2a32da90 | 536 | static int ioapic_abi_legacy_irq_max; |
| cae71b2c | 537 | static int ioapic_abi_gsi_balance; |
| be98308a | 538 | static int ioapic_abi_msi_start; /* NOTE: for testing only */ |
| 6b809ec7 | 539 | |
| 7a54dec9 | 540 | struct ioapic_irqinfo ioapic_irqs[IOAPIC_HWI_VECTORS]; |
| fa6eddaf SZ |
541 | |
| 542 | static void | |
| 35b2edcb | 543 | ioapic_abi_intr_enable(int irq) |
| fa6eddaf | 544 | { |
| 5157c933 SZ |
545 | const struct ioapic_irqmap *map; |
| 546 | ||
| 547 | KASSERT(irq >= 0 && irq < IOAPIC_HWI_VECTORS, | |
| 548 | ("ioapic enable, invalid irq %d\n", irq)); | |
| 549 | ||
| 550 | map = &ioapic_irqmaps[mycpuid][irq]; | |
| 551 | KASSERT(IOAPIC_IMT_ISHWI(map), | |
| 552 | ("ioapic enable, not hwi irq %d, type %d, cpu%d\n", | |
| 553 | irq, map->im_type, mycpuid)); | |
| 2a32da90 | 554 | if (map->im_type != IOAPIC_IMT_LEGACY) |
| fa6eddaf | 555 | return; |
| 5157c933 | 556 | |
| fa6eddaf SZ |
557 | IOAPIC_INTREN(irq); |
| 558 | } | |
| 559 | ||
| 560 | static void | |
| 35b2edcb | 561 | ioapic_abi_intr_disable(int irq) |
| fa6eddaf | 562 | { |
| 5157c933 SZ |
563 | const struct ioapic_irqmap *map; |
| 564 | ||
| 565 | KASSERT(irq >= 0 && irq < IOAPIC_HWI_VECTORS, | |
| 566 | ("ioapic disable, invalid irq %d\n", irq)); | |
| 567 | ||
| 568 | map = &ioapic_irqmaps[mycpuid][irq]; | |
| 569 | KASSERT(IOAPIC_IMT_ISHWI(map), | |
| 570 | ("ioapic disable, not hwi irq %d, type %d, cpu%d\n", | |
| 571 | irq, map->im_type, mycpuid)); | |
| 2a32da90 | 572 | if (map->im_type != IOAPIC_IMT_LEGACY) |
| fa6eddaf | 573 | return; |
| 5157c933 | 574 | |
| fa6eddaf SZ |
575 | IOAPIC_INTRDIS(irq); |
| 576 | } | |
| 577 | ||
| 37e7efec | 578 | static void |
| 780a6eec | 579 | ioapic_abi_finalize(void) |
| 37e7efec | 580 | { |
| e0918665 | 581 | KKASSERT(MachIntrABI.type == MACHINTR_IOAPIC); |
| f45bfca0 | 582 | KKASSERT(ioapic_enable); |
| 10db3cc6 | 583 | |
| 54e1df6b SZ |
584 | /* |
| 585 | * If an IMCR is present, program bit 0 to disconnect the 8259 | |
| e0918665 | 586 | * from the BSP. |
| 54e1df6b | 587 | */ |
| 9d758cc4 | 588 | if (imcr_present) { |
| 54e1df6b SZ |
589 | outb(0x22, 0x70); /* select IMCR */ |
| 590 | outb(0x23, 0x01); /* disconnect 8259 */ | |
| 591 | } | |
| 37e7efec MD |
592 | } |
| 593 | ||
| 0b692e79 MD |
594 | /* |
| 595 | * This routine is called after physical interrupts are enabled but before | |
| 596 | * the critical section is released. We need to clean out any interrupts | |
| 597 | * that had already been posted to the cpu. | |
| 598 | */ | |
| 599 | static void | |
| 780a6eec | 600 | ioapic_abi_cleanup(void) |
| 0b692e79 | 601 | { |
| c263294b | 602 | bzero(mdcpu->gd_ipending, sizeof(mdcpu->gd_ipending)); |
| 0b692e79 MD |
603 | } |
| 604 | ||
| 7bf5fa56 SZ |
605 | /* Must never be called */ |
| 606 | static void | |
| 780a6eec | 607 | ioapic_abi_stabilize(void) |
| 7bf5fa56 SZ |
608 | { |
| 609 | panic("ioapic_stabilize() is called\n"); | |
| 610 | } | |
| 611 | ||
| f416026e SZ |
612 | static void |
| 613 | ioapic_abi_intr_setup(int intr, int flags) | |
| 10ff1029 | 614 | { |
| ba66d506 | 615 | const struct ioapic_irqmap *map; |
| f416026e | 616 | int vector, select; |
| 54e1df6b SZ |
617 | uint32_t value; |
| 618 | u_long ef; | |
| 10ff1029 | 619 | |
| ba66d506 SZ |
620 | KASSERT(intr >= 0 && intr < IOAPIC_HWI_VECTORS, |
| 621 | ("ioapic setup, invalid irq %d\n", intr)); | |
| 622 | ||
| 623 | map = &ioapic_irqmaps[mycpuid][intr]; | |
| 624 | KASSERT(IOAPIC_IMT_ISHWI(map), | |
| 625 | ("ioapic setup, not hwi irq %d, type %d, cpu%d", | |
| 626 | intr, map->im_type, mycpuid)); | |
| 2a32da90 | 627 | if (map->im_type != IOAPIC_IMT_LEGACY) |
| ba66d506 | 628 | return; |
| ba66d506 SZ |
629 | |
| 630 | KASSERT(ioapic_irqs[intr].io_addr != NULL, | |
| 631 | ("ioapic setup, no GSI information, irq %d\n", intr)); | |
| f416026e SZ |
632 | |
| 633 | ef = read_eflags(); | |
| 634 | cpu_disable_intr(); | |
| 635 | ||
| 636 | vector = IDT_OFFSET + intr; | |
| f416026e SZ |
637 | |
| 638 | /* | |
| 639 | * Now reprogram the vector in the IO APIC. In order to avoid | |
| 640 | * losing an EOI for a level interrupt, which is vector based, | |
| 641 | * make sure that the IO APIC is programmed for edge-triggering | |
| 642 | * first, then reprogrammed with the new vector. This should | |
| 643 | * clear the IRR bit. | |
| 644 | */ | |
| 645 | imen_lock(); | |
| 646 | ||
| 647 | select = ioapic_irqs[intr].io_idx; | |
| 648 | value = ioapic_read(ioapic_irqs[intr].io_addr, select); | |
| 649 | value |= IOART_INTMSET; | |
| 650 | ||
| 651 | ioapic_write(ioapic_irqs[intr].io_addr, select, | |
| 652 | (value & ~APIC_TRIGMOD_MASK)); | |
| 653 | ioapic_write(ioapic_irqs[intr].io_addr, select, | |
| 654 | (value & ~IOART_INTVEC) | vector); | |
| 655 | ||
| 656 | imen_unlock(); | |
| 657 | ||
| eaeca813 | 658 | IOAPIC_INTREN(intr); |
| f416026e SZ |
659 | |
| 660 | write_eflags(ef); | |
| 661 | } | |
| 662 | ||
| 663 | static void | |
| 664 | ioapic_abi_intr_teardown(int intr) | |
| 665 | { | |
| ba66d506 | 666 | const struct ioapic_irqmap *map; |
| f416026e SZ |
667 | int vector, select; |
| 668 | uint32_t value; | |
| 669 | u_long ef; | |
| 10ff1029 | 670 | |
| ba66d506 SZ |
671 | KASSERT(intr >= 0 && intr < IOAPIC_HWI_VECTORS, |
| 672 | ("ioapic teardown, invalid irq %d\n", intr)); | |
| 673 | ||
| 674 | map = &ioapic_irqmaps[mycpuid][intr]; | |
| 675 | KASSERT(IOAPIC_IMT_ISHWI(map), | |
| 676 | ("ioapic teardown, not hwi irq %d, type %d, cpu%d", | |
| 677 | intr, map->im_type, mycpuid)); | |
| 2a32da90 | 678 | if (map->im_type != IOAPIC_IMT_LEGACY) |
| ba66d506 | 679 | return; |
| ba66d506 SZ |
680 | |
| 681 | KASSERT(ioapic_irqs[intr].io_addr != NULL, | |
| 682 | ("ioapic teardown, no GSI information, irq %d\n", intr)); | |
| 7a54dec9 | 683 | |
| 54e1df6b SZ |
684 | ef = read_eflags(); |
| 685 | cpu_disable_intr(); | |
| 10ff1029 | 686 | |
| f416026e SZ |
687 | /* |
| 688 | * Teardown an interrupt vector. The vector should already be | |
| 689 | * installed in the cpu's IDT, but make sure. | |
| 690 | */ | |
| eaeca813 | 691 | IOAPIC_INTRDIS(intr); |
| 35408d22 | 692 | |
| f416026e | 693 | vector = IDT_OFFSET + intr; |
| f416026e SZ |
694 | |
| 695 | /* | |
| 696 | * In order to avoid losing an EOI for a level interrupt, which | |
| 697 | * is vector based, make sure that the IO APIC is programmed for | |
| 698 | * edge-triggering first, then reprogrammed with the new vector. | |
| 699 | * This should clear the IRR bit. | |
| 700 | */ | |
| 701 | imen_lock(); | |
| 702 | ||
| 703 | select = ioapic_irqs[intr].io_idx; | |
| 704 | value = ioapic_read(ioapic_irqs[intr].io_addr, select); | |
| 705 | ||
| 706 | ioapic_write(ioapic_irqs[intr].io_addr, select, | |
| 707 | (value & ~APIC_TRIGMOD_MASK)); | |
| 708 | ioapic_write(ioapic_irqs[intr].io_addr, select, | |
| 709 | (value & ~IOART_INTVEC) | vector); | |
| 710 | ||
| 711 | imen_unlock(); | |
| 10ff1029 | 712 | |
| 54e1df6b | 713 | write_eflags(ef); |
| 54e1df6b | 714 | } |
| 06f5be02 | 715 | |
| 10db3cc6 | 716 | static void |
| 780a6eec | 717 | ioapic_abi_setdefault(void) |
| 10db3cc6 SZ |
718 | { |
| 719 | int intr; | |
| 720 | ||
| 9e0e3f85 | 721 | for (intr = 0; intr < IOAPIC_HWI_VECTORS; ++intr) { |
| 474ba684 | 722 | if (intr == IOAPIC_HWI_SYSCALL) |
| 10db3cc6 | 723 | continue; |
| 9e0e3f85 | 724 | setidt(IDT_OFFSET + intr, ioapic_intr[intr], SDT_SYS386IGT, |
| 10db3cc6 SZ |
725 | SEL_KPL, GSEL(GCODE_SEL, SEL_KPL)); |
| 726 | } | |
| 727 | } | |
| 728 | ||
| a3dd9120 | 729 | static void |
| 780a6eec | 730 | ioapic_abi_initmap(void) |
| a3dd9120 | 731 | { |
| 2e62e7a5 | 732 | int cpu; |
| a3dd9120 | 733 | |
| cae71b2c SZ |
734 | kgetenv_int("hw.ioapic.gsi.balance", &ioapic_abi_gsi_balance); |
| 735 | ||
| be98308a SZ |
736 | kgetenv_int("hw.ioapic.msi_start", &ioapic_abi_msi_start); |
| 737 | ioapic_abi_msi_start &= ~0x1f; /* MUST be 32 aligned */ | |
| 738 | ||
| 2e62e7a5 SZ |
739 | /* |
| 740 | * NOTE: ncpus is not ready yet | |
| 741 | */ | |
| 742 | for (cpu = 0; cpu < MAXCPU; ++cpu) { | |
| 743 | int i; | |
| 744 | ||
| be98308a | 745 | for (i = 0; i < IOAPIC_HWI_VECTORS; ++i) { |
| 2e62e7a5 | 746 | ioapic_irqmaps[cpu][i].im_gsi = -1; |
| be98308a SZ |
747 | ioapic_irqmaps[cpu][i].im_msi_base = -1; |
| 748 | } | |
| 2e62e7a5 SZ |
749 | ioapic_irqmaps[cpu][IOAPIC_HWI_SYSCALL].im_type = |
| 750 | IOAPIC_IMT_SYSCALL; | |
| 751 | } | |
| a3dd9120 SZ |
752 | } |
| 753 | ||
| 929c940f | 754 | void |
| 027bbbfe | 755 | ioapic_set_legacy_irqmap(int irq, int gsi, enum intr_trigger trig, |
| 929c940f SZ |
756 | enum intr_polarity pola) |
| 757 | { | |
| 7a54dec9 | 758 | struct ioapic_irqinfo *info; |
| 929c940f SZ |
759 | struct ioapic_irqmap *map; |
| 760 | void *ioaddr; | |
| 9dba15ae | 761 | int pin, cpuid; |
| 929c940f SZ |
762 | |
| 763 | KKASSERT(trig == INTR_TRIGGER_EDGE || trig == INTR_TRIGGER_LEVEL); | |
| 764 | KKASSERT(pola == INTR_POLARITY_HIGH || pola == INTR_POLARITY_LOW); | |
| 929c940f SZ |
765 | |
| 766 | KKASSERT(irq >= 0 && irq < IOAPIC_HWI_VECTORS); | |
| 2a32da90 SZ |
767 | if (irq > ioapic_abi_legacy_irq_max) |
| 768 | ioapic_abi_legacy_irq_max = irq; | |
| 512ddf89 | 769 | |
| 2e62e7a5 SZ |
770 | cpuid = ioapic_abi_gsi_cpuid(irq, gsi); |
| 771 | ||
| 772 | map = &ioapic_irqmaps[cpuid][irq]; | |
| 929c940f SZ |
773 | |
| 774 | KKASSERT(map->im_type == IOAPIC_IMT_UNUSED); | |
| 2a32da90 | 775 | map->im_type = IOAPIC_IMT_LEGACY; |
| 929c940f SZ |
776 | |
| 777 | map->im_gsi = gsi; | |
| 778 | map->im_trig = trig; | |
| 779 | map->im_pola = pola; | |
| 780 | ||
| 781 | if (bootverbose) { | |
| 4ecd5d4d SZ |
782 | kprintf("IOAPIC: irq %d -> gsi %d %s/%s\n", |
| 783 | irq, map->im_gsi, | |
| 784 | intr_str_trigger(map->im_trig), | |
| 785 | intr_str_polarity(map->im_pola)); | |
| 929c940f SZ |
786 | } |
| 787 | ||
| d1ae7328 SZ |
788 | pin = ioapic_gsi_pin(map->im_gsi); |
| 789 | ioaddr = ioapic_gsi_ioaddr(map->im_gsi); | |
| 929c940f | 790 | |
| 7a54dec9 | 791 | info = &ioapic_irqs[irq]; |
| 929c940f | 792 | |
| 7bceaa10 SZ |
793 | imen_lock(); |
| 794 | ||
| 7a54dec9 SZ |
795 | info->io_addr = ioaddr; |
| 796 | info->io_idx = IOAPIC_REDTBL + (2 * pin); | |
| 797 | info->io_flags = IOAPIC_IRQI_FLAG_MASKED; | |
| d1ae7328 | 798 | if (map->im_trig == INTR_TRIGGER_LEVEL) |
| 7a54dec9 | 799 | info->io_flags |= IOAPIC_IRQI_FLAG_LEVEL; |
| d1ae7328 SZ |
800 | |
| 801 | ioapic_pin_setup(ioaddr, pin, IDT_OFFSET + irq, | |
| 9dba15ae | 802 | map->im_trig, map->im_pola, cpuid); |
| 7bceaa10 SZ |
803 | |
| 804 | imen_unlock(); | |
| d1ae7328 SZ |
805 | } |
| 806 | ||
| 4a913811 | 807 | void |
| 027bbbfe | 808 | ioapic_fixup_legacy_irqmaps(void) |
| 4a913811 | 809 | { |
| 2e62e7a5 SZ |
810 | int cpu; |
| 811 | ||
| 2a32da90 SZ |
812 | ioapic_abi_legacy_irq_max += 1; |
| 813 | if (bootverbose) { | |
| 814 | kprintf("IOAPIC: legacy irq max %d\n", | |
| 815 | ioapic_abi_legacy_irq_max); | |
| 816 | } | |
| 1973dfbc | 817 | |
| 2e62e7a5 SZ |
818 | for (cpu = 0; cpu < ncpus; ++cpu) { |
| 819 | int i; | |
| 4a913811 | 820 | |
| 2a32da90 | 821 | for (i = 0; i < ioapic_abi_legacy_irq_max; ++i) { |
| 2e62e7a5 | 822 | struct ioapic_irqmap *map = &ioapic_irqmaps[cpu][i]; |
| 4a913811 | 823 | |
| 2e62e7a5 SZ |
824 | if (map->im_type == IOAPIC_IMT_UNUSED) { |
| 825 | map->im_type = IOAPIC_IMT_RESERVED; | |
| 826 | if (bootverbose) { | |
| 827 | kprintf("IOAPIC: " | |
| 828 | "cpu%d irq %d reserved\n", cpu, i); | |
| 829 | } | |
| 830 | } | |
| 4a913811 SZ |
831 | } |
| 832 | } | |
| 833 | } | |
| 834 | ||
| e90e7ac4 | 835 | int |
| 027bbbfe SZ |
836 | ioapic_find_legacy_by_gsi(int gsi, enum intr_trigger trig, |
| 837 | enum intr_polarity pola) | |
| e90e7ac4 | 838 | { |
| 2e62e7a5 | 839 | int cpu; |
| e90e7ac4 SZ |
840 | |
| 841 | KKASSERT(trig == INTR_TRIGGER_EDGE || trig == INTR_TRIGGER_LEVEL); | |
| 842 | KKASSERT(pola == INTR_POLARITY_HIGH || pola == INTR_POLARITY_LOW); | |
| e90e7ac4 | 843 | |
| 2e62e7a5 SZ |
844 | for (cpu = 0; cpu < ncpus; ++cpu) { |
| 845 | int irq; | |
| e90e7ac4 | 846 | |
| 2a32da90 | 847 | for (irq = 0; irq < ioapic_abi_legacy_irq_max; ++irq) { |
| 2e62e7a5 SZ |
848 | const struct ioapic_irqmap *map = |
| 849 | &ioapic_irqmaps[cpu][irq]; | |
| e90e7ac4 | 850 | |
| 2e62e7a5 | 851 | if (map->im_gsi == gsi) { |
| 2a32da90 | 852 | KKASSERT(map->im_type == IOAPIC_IMT_LEGACY); |
| 2e62e7a5 SZ |
853 | |
| 854 | if (map->im_flags & IOAPIC_IMF_CONF) { | |
| 855 | if (map->im_trig != trig || | |
| 856 | map->im_pola != pola) | |
| 857 | return -1; | |
| 858 | } | |
| 859 | return irq; | |
| e90e7ac4 | 860 | } |
| e90e7ac4 SZ |
861 | } |
| 862 | } | |
| 863 | return -1; | |
| 864 | } | |
| 865 | ||
| 866 | int | |
| 027bbbfe SZ |
867 | ioapic_find_legacy_by_irq(int irq, enum intr_trigger trig, |
| 868 | enum intr_polarity pola) | |
| e90e7ac4 | 869 | { |
| 2e62e7a5 | 870 | int cpu; |
| e90e7ac4 SZ |
871 | |
| 872 | KKASSERT(trig == INTR_TRIGGER_EDGE || trig == INTR_TRIGGER_LEVEL); | |
| 873 | KKASSERT(pola == INTR_POLARITY_HIGH || pola == INTR_POLARITY_LOW); | |
| e90e7ac4 | 874 | |
| 2a32da90 | 875 | if (irq < 0 || irq >= ioapic_abi_legacy_irq_max) |
| e90e7ac4 | 876 | return -1; |
| e90e7ac4 | 877 | |
| 2e62e7a5 SZ |
878 | for (cpu = 0; cpu < ncpus; ++cpu) { |
| 879 | const struct ioapic_irqmap *map = &ioapic_irqmaps[cpu][irq]; | |
| e90e7ac4 | 880 | |
| 2a32da90 | 881 | if (map->im_type == IOAPIC_IMT_LEGACY) { |
| 2e62e7a5 SZ |
882 | if (map->im_flags & IOAPIC_IMF_CONF) { |
| 883 | if (map->im_trig != trig || | |
| 884 | map->im_pola != pola) | |
| 885 | return -1; | |
| 886 | } | |
| 887 | return irq; | |
| 888 | } | |
| e90e7ac4 | 889 | } |
| 2e62e7a5 | 890 | return -1; |
| e90e7ac4 SZ |
891 | } |
| 892 | ||
| d1ae7328 | 893 | static void |
| 780a6eec | 894 | ioapic_abi_intr_config(int irq, enum intr_trigger trig, enum intr_polarity pola) |
| d1ae7328 | 895 | { |
| 7a54dec9 | 896 | struct ioapic_irqinfo *info; |
| 2e62e7a5 | 897 | struct ioapic_irqmap *map = NULL; |
| d1ae7328 | 898 | void *ioaddr; |
| 9dba15ae | 899 | int pin, cpuid; |
| d1ae7328 | 900 | |
| d1ae7328 SZ |
901 | KKASSERT(trig == INTR_TRIGGER_EDGE || trig == INTR_TRIGGER_LEVEL); |
| 902 | KKASSERT(pola == INTR_POLARITY_HIGH || pola == INTR_POLARITY_LOW); | |
| d1ae7328 | 903 | |
| 2a32da90 | 904 | KKASSERT(irq >= 0 && irq < ioapic_abi_legacy_irq_max); |
| 2e62e7a5 SZ |
905 | for (cpuid = 0; cpuid < ncpus; ++cpuid) { |
| 906 | map = &ioapic_irqmaps[cpuid][irq]; | |
| 2a32da90 | 907 | if (map->im_type == IOAPIC_IMT_LEGACY) |
| 2e62e7a5 SZ |
908 | break; |
| 909 | } | |
| 910 | KKASSERT(cpuid < ncpus); | |
| d1ae7328 | 911 | |
| 7962296e | 912 | #ifdef notyet |
| d1ae7328 SZ |
913 | if (map->im_flags & IOAPIC_IMF_CONF) { |
| 914 | if (trig != map->im_trig) { | |
| 4ecd5d4d SZ |
915 | panic("ioapic_intr_config: trig %s -> %s\n", |
| 916 | intr_str_trigger(map->im_trig), | |
| 917 | intr_str_trigger(trig)); | |
| d1ae7328 SZ |
918 | } |
| 919 | if (pola != map->im_pola) { | |
| 920 | panic("ioapic_intr_config: pola %s -> %s\n", | |
| 4ecd5d4d SZ |
921 | intr_str_polarity(map->im_pola), |
| 922 | intr_str_polarity(pola)); | |
| d1ae7328 SZ |
923 | } |
| 924 | return; | |
| 925 | } | |
| 7962296e | 926 | #endif |
| d1ae7328 SZ |
927 | map->im_flags |= IOAPIC_IMF_CONF; |
| 928 | ||
| 929 | if (trig == map->im_trig && pola == map->im_pola) | |
| 930 | return; | |
| 931 | ||
| 932 | if (bootverbose) { | |
| 4ecd5d4d SZ |
933 | kprintf("IOAPIC: irq %d, gsi %d %s/%s -> %s/%s\n", |
| 934 | irq, map->im_gsi, | |
| 935 | intr_str_trigger(map->im_trig), | |
| 936 | intr_str_polarity(map->im_pola), | |
| 937 | intr_str_trigger(trig), | |
| 938 | intr_str_polarity(pola)); | |
| d1ae7328 | 939 | } |
| d1ae7328 SZ |
940 | map->im_trig = trig; |
| 941 | map->im_pola = pola; | |
| 942 | ||
| 943 | pin = ioapic_gsi_pin(map->im_gsi); | |
| 944 | ioaddr = ioapic_gsi_ioaddr(map->im_gsi); | |
| 945 | ||
| 7a54dec9 | 946 | info = &ioapic_irqs[irq]; |
| d1ae7328 | 947 | |
| 7bceaa10 SZ |
948 | imen_lock(); |
| 949 | ||
| 7a54dec9 | 950 | info->io_flags &= ~IOAPIC_IRQI_FLAG_LEVEL; |
| d1ae7328 | 951 | if (map->im_trig == INTR_TRIGGER_LEVEL) |
| 7a54dec9 | 952 | info->io_flags |= IOAPIC_IRQI_FLAG_LEVEL; |
| 929c940f | 953 | |
| ecec8ddc | 954 | ioapic_pin_setup(ioaddr, pin, IDT_OFFSET + irq, |
| 9dba15ae | 955 | map->im_trig, map->im_pola, cpuid); |
| 7bceaa10 SZ |
956 | |
| 957 | imen_unlock(); | |
| 929c940f SZ |
958 | } |
| 959 | ||
| 6b809ec7 | 960 | int |
| 027bbbfe | 961 | ioapic_conf_legacy_extint(int irq) |
| 6b809ec7 | 962 | { |
| 7a54dec9 | 963 | struct ioapic_irqinfo *info; |
| 6b809ec7 SZ |
964 | struct ioapic_irqmap *map; |
| 965 | void *ioaddr; | |
| 966 | int pin, error, vec; | |
| 967 | ||
| 9dba15ae SZ |
968 | /* XXX only irq0 is allowed */ |
| 969 | KKASSERT(irq == 0); | |
| 970 | ||
| 6b809ec7 SZ |
971 | vec = IDT_OFFSET + irq; |
| 972 | ||
| 973 | if (ioapic_abi_extint_irq == irq) | |
| 974 | return 0; | |
| 975 | else if (ioapic_abi_extint_irq >= 0) | |
| 976 | return EEXIST; | |
| 977 | ||
| 978 | error = icu_ioapic_extint(irq, vec); | |
| 979 | if (error) | |
| 980 | return error; | |
| 981 | ||
| 2e62e7a5 SZ |
982 | /* ExtINT is always targeted to cpu0 */ |
| 983 | map = &ioapic_irqmaps[0][irq]; | |
| 6b809ec7 SZ |
984 | |
| 985 | KKASSERT(map->im_type == IOAPIC_IMT_RESERVED || | |
| 2a32da90 SZ |
986 | map->im_type == IOAPIC_IMT_LEGACY); |
| 987 | if (map->im_type == IOAPIC_IMT_LEGACY) { | |
| 6b809ec7 SZ |
988 | if (map->im_flags & IOAPIC_IMF_CONF) |
| 989 | return EEXIST; | |
| 990 | } | |
| 991 | ioapic_abi_extint_irq = irq; | |
| 992 | ||
| 2a32da90 | 993 | map->im_type = IOAPIC_IMT_LEGACY; |
| 6b809ec7 SZ |
994 | map->im_trig = INTR_TRIGGER_EDGE; |
| 995 | map->im_pola = INTR_POLARITY_HIGH; | |
| 996 | map->im_flags = IOAPIC_IMF_CONF; | |
| 997 | ||
| 998 | map->im_gsi = ioapic_extpin_gsi(); | |
| 999 | KKASSERT(map->im_gsi >= 0); | |
| 1000 | ||
| 1001 | if (bootverbose) { | |
| 4ecd5d4d SZ |
1002 | kprintf("IOAPIC: irq %d -> extint gsi %d %s/%s\n", |
| 1003 | irq, map->im_gsi, | |
| 1004 | intr_str_trigger(map->im_trig), | |
| 1005 | intr_str_polarity(map->im_pola)); | |
| 6b809ec7 SZ |
1006 | } |
| 1007 | ||
| 1008 | pin = ioapic_gsi_pin(map->im_gsi); | |
| 1009 | ioaddr = ioapic_gsi_ioaddr(map->im_gsi); | |
| 1010 | ||
| 7a54dec9 | 1011 | info = &ioapic_irqs[irq]; |
| 6b809ec7 SZ |
1012 | |
| 1013 | imen_lock(); | |
| 1014 | ||
| 7a54dec9 SZ |
1015 | info->io_addr = ioaddr; |
| 1016 | info->io_idx = IOAPIC_REDTBL + (2 * pin); | |
| 1017 | info->io_flags = IOAPIC_IRQI_FLAG_MASKED; | |
| 6b809ec7 SZ |
1018 | |
| 1019 | ioapic_extpin_setup(ioaddr, pin, vec); | |
| 1020 | ||
| 1021 | imen_unlock(); | |
| 1022 | ||
| 1023 | return 0; | |
| 1024 | } | |
| a05c798c SZ |
1025 | |
| 1026 | static int | |
| 9dba15ae | 1027 | ioapic_abi_intr_cpuid(int irq) |
| a05c798c | 1028 | { |
| 2e62e7a5 SZ |
1029 | const struct ioapic_irqmap *map = NULL; |
| 1030 | int cpuid; | |
| 9dba15ae | 1031 | |
| 2a32da90 | 1032 | KKASSERT(irq >= 0 && irq < ioapic_abi_legacy_irq_max); |
| 9dba15ae | 1033 | |
| 2e62e7a5 SZ |
1034 | for (cpuid = 0; cpuid < ncpus; ++cpuid) { |
| 1035 | map = &ioapic_irqmaps[cpuid][irq]; | |
| 2a32da90 | 1036 | if (map->im_type == IOAPIC_IMT_LEGACY) |
| 2e62e7a5 | 1037 | return cpuid; |
| 9dba15ae SZ |
1038 | } |
| 1039 | ||
| 2e62e7a5 SZ |
1040 | /* XXX some drivers tries to peek at reserved IRQs */ |
| 1041 | for (cpuid = 0; cpuid < ncpus; ++cpuid) { | |
| 1042 | map = &ioapic_irqmaps[cpuid][irq]; | |
| 1043 | KKASSERT(map->im_type == IOAPIC_IMT_RESERVED); | |
| 1044 | } | |
| 1045 | return 0; | |
| 9dba15ae SZ |
1046 | } |
| 1047 | ||
| 1048 | static int | |
| 1049 | ioapic_abi_gsi_cpuid(int irq, int gsi) | |
| 1050 | { | |
| 1051 | char envpath[32]; | |
| 1052 | int cpuid = -1; | |
| 1053 | ||
| 1054 | KKASSERT(gsi >= 0); | |
| 1055 | ||
| 1056 | if (irq == 0 || gsi == 0) { | |
| c80b6136 SZ |
1057 | if (bootverbose) { |
| 1058 | kprintf("IOAPIC: irq %d, gsi %d -> cpu0 (0)\n", | |
| 1059 | irq, gsi); | |
| 1060 | } | |
| 9dba15ae SZ |
1061 | return 0; |
| 1062 | } | |
| 1063 | ||
| 1064 | if (irq == acpi_sci_irqno()) { | |
| c80b6136 SZ |
1065 | if (bootverbose) { |
| 1066 | kprintf("IOAPIC: irq %d, gsi %d -> cpu0 (sci)\n", | |
| 1067 | irq, gsi); | |
| 1068 | } | |
| 9dba15ae SZ |
1069 | return 0; |
| 1070 | } | |
| 1071 | ||
| 1072 | ksnprintf(envpath, sizeof(envpath), "hw.ioapic.gsi.%d.cpu", gsi); | |
| 1073 | kgetenv_int(envpath, &cpuid); | |
| 1074 | ||
| 1075 | if (cpuid < 0) { | |
| b18d6a13 SZ |
1076 | if (!ioapic_abi_gsi_balance) { |
| 1077 | if (bootverbose) { | |
| 1078 | kprintf("IOAPIC: irq %d, gsi %d -> cpu0 " | |
| 1079 | "(fixed)\n", irq, gsi); | |
| 1080 | } | |
| 1081 | return 0; | |
| 1082 | } | |
| 1083 | ||
| 9dba15ae | 1084 | cpuid = gsi % ncpus; |
| c80b6136 SZ |
1085 | if (bootverbose) { |
| 1086 | kprintf("IOAPIC: irq %d, gsi %d -> cpu%d (auto)\n", | |
| 1087 | irq, gsi, cpuid); | |
| 1088 | } | |
| 9dba15ae SZ |
1089 | } else if (cpuid >= ncpus) { |
| 1090 | cpuid = ncpus - 1; | |
| c80b6136 SZ |
1091 | if (bootverbose) { |
| 1092 | kprintf("IOAPIC: irq %d, gsi %d -> cpu%d (fixup)\n", | |
| 1093 | irq, gsi, cpuid); | |
| 1094 | } | |
| 9dba15ae | 1095 | } else { |
| c80b6136 SZ |
1096 | if (bootverbose) { |
| 1097 | kprintf("IOAPIC: irq %d, gsi %d -> cpu%d (user)\n", | |
| 1098 | irq, gsi, cpuid); | |
| 1099 | } | |
| 9dba15ae SZ |
1100 | } |
| 1101 | return cpuid; | |
| a05c798c | 1102 | } |
| 0f3e19b1 SZ |
1103 | |
| 1104 | static void | |
| 1105 | ioapic_abi_rman_setup(struct rman *rm) | |
| 1106 | { | |
| 1107 | int start, end, i; | |
| 1108 | ||
| 1109 | KASSERT(rm->rm_cpuid >= 0 && rm->rm_cpuid < MAXCPU, | |
| 1110 | ("invalid rman cpuid %d", rm->rm_cpuid)); | |
| 1111 | ||
| 1112 | start = end = -1; | |
| 1113 | for (i = 0; i < IOAPIC_HWI_VECTORS; ++i) { | |
| 1114 | const struct ioapic_irqmap *map = | |
| 1115 | &ioapic_irqmaps[rm->rm_cpuid][i]; | |
| 1116 | ||
| 1117 | if (start < 0) { | |
| 1118 | if (IOAPIC_IMT_ISHWI(map)) | |
| 1119 | start = end = i; | |
| 1120 | } else { | |
| 1121 | if (IOAPIC_IMT_ISHWI(map)) { | |
| 1122 | end = i; | |
| 1123 | } else { | |
| 1124 | KKASSERT(end >= 0); | |
| 1125 | if (bootverbose) { | |
| 1126 | kprintf("IOAPIC: rman cpu%d %d - %d\n", | |
| 1127 | rm->rm_cpuid, start, end); | |
| 1128 | } | |
| 1129 | if (rman_manage_region(rm, start, end)) { | |
| 1130 | panic("rman_manage_region" | |
| 1131 | "(cpu%d %d - %d)", rm->rm_cpuid, | |
| 1132 | start, end); | |
| 1133 | } | |
| 1134 | start = end = -1; | |
| 1135 | } | |
| 1136 | } | |
| 1137 | } | |
| 1138 | if (start >= 0) { | |
| 1139 | KKASSERT(end >= 0); | |
| 1140 | if (bootverbose) { | |
| 1141 | kprintf("IOAPIC: rman cpu%d %d - %d\n", | |
| 1142 | rm->rm_cpuid, start, end); | |
| 1143 | } | |
| 1144 | if (rman_manage_region(rm, start, end)) { | |
| 1145 | panic("rman_manage_region(cpu%d %d - %d)", | |
| 1146 | rm->rm_cpuid, start, end); | |
| 1147 | } | |
| 1148 | } | |
| 1149 | } | |
| be98308a SZ |
1150 | |
| 1151 | static int | |
| 1152 | ioapic_abi_msi_alloc(int intrs[], int count, int cpuid) | |
| 1153 | { | |
| 1154 | int i, error; | |
| 1155 | ||
| 1156 | KASSERT(cpuid >= 0 && cpuid < ncpus, | |
| 1157 | ("invalid cpuid %d", cpuid)); | |
| 1158 | ||
| 1159 | KASSERT(count > 0 && count <= 32, ("invalid count %d\n", count)); | |
| 1160 | KASSERT((count & (count - 1)) == 0, | |
| 1161 | ("count %d is not power of 2\n", count)); | |
| 1162 | ||
| 1163 | lwkt_gettoken(&ioapic_irqmap_tok); | |
| 1164 | ||
| 1165 | /* | |
| 1166 | * NOTE: | |
| 1167 | * Since IDT_OFFSET is 32, which is the maximum valid 'count', | |
| 1168 | * we do not need to find out the first properly aligned | |
| 1169 | * interrupt vector. | |
| 1170 | */ | |
| 1171 | ||
| 1172 | error = EMSGSIZE; | |
| 1173 | for (i = ioapic_abi_msi_start; i < IOAPIC_HWI_VECTORS; i += count) { | |
| 1174 | int j; | |
| 1175 | ||
| 1176 | if (ioapic_irqmaps[cpuid][i].im_type != IOAPIC_IMT_UNUSED) | |
| 1177 | continue; | |
| 1178 | ||
| 1179 | for (j = 1; j < count; ++j) { | |
| 1180 | if (ioapic_irqmaps[cpuid][i + j].im_type != | |
| 1181 | IOAPIC_IMT_UNUSED) | |
| 1182 | break; | |
| 1183 | } | |
| 1184 | if (j != count) | |
| 1185 | continue; | |
| 1186 | ||
| 1187 | for (j = 0; j < count; ++j) { | |
| 1188 | int intr = i + j, cpu; | |
| 1189 | ||
| 1190 | for (cpu = 0; cpu < ncpus; ++cpu) { | |
| 1191 | struct ioapic_irqmap *map; | |
| 1192 | ||
| 1193 | map = &ioapic_irqmaps[cpu][intr]; | |
| 1194 | KASSERT(map->im_msi_base < 0, | |
| 1195 | ("intr %d cpu%d, stale MSI-base %d\n", | |
| 1196 | intr, cpu, map->im_msi_base)); | |
| 1197 | KASSERT(map->im_type == IOAPIC_IMT_UNUSED, | |
| 1198 | ("intr %d cpu%d, already allocated\n", | |
| 1199 | intr, cpu)); | |
| 1200 | ||
| 1201 | if (cpu == cpuid) { | |
| 1202 | map->im_type = IOAPIC_IMT_MSI; | |
| 1203 | map->im_msi_base = i; | |
| 1204 | } else { | |
| 1205 | map->im_type = IOAPIC_IMT_SHADOW; | |
| 1206 | } | |
| 1207 | } | |
| 1208 | ||
| 1209 | intrs[j] = intr; | |
| 1210 | msi_setup(intr); | |
| 1211 | ||
| 1212 | if (bootverbose) { | |
| 1213 | kprintf("alloc MSI intr %d on cpu%d\n", | |
| 1214 | intr, cpuid); | |
| 1215 | } | |
| 1216 | } | |
| 1217 | error = 0; | |
| 1218 | break; | |
| 1219 | } | |
| 1220 | ||
| 1221 | lwkt_reltoken(&ioapic_irqmap_tok); | |
| 1222 | ||
| 1223 | return error; | |
| 1224 | } | |
| 1225 | ||
| 1226 | static void | |
| 1227 | ioapic_abi_msi_release(const int intrs[], int count, int cpuid) | |
| 1228 | { | |
| 1229 | int i, msi_base = -1, intr_next = -1, mask; | |
| 1230 | ||
| 1231 | KASSERT(cpuid >= 0 && cpuid < ncpus, | |
| 1232 | ("invalid cpuid %d", cpuid)); | |
| 1233 | ||
| 1234 | KASSERT(count > 0 && count <= 32, ("invalid count %d\n", count)); | |
| 1235 | ||
| 1236 | mask = count - 1; | |
| 1237 | KASSERT((count & mask) == 0, ("count %d is not power of 2\n", count)); | |
| 1238 | ||
| 1239 | lwkt_gettoken(&ioapic_irqmap_tok); | |
| 1240 | ||
| 1241 | for (i = 0; i < count; ++i) { | |
| 1242 | int intr = intrs[i], cpu; | |
| 1243 | ||
| 1244 | KASSERT(intr >= 0 && intr < IOAPIC_HWI_VECTORS, | |
| 1245 | ("invalid intr %d\n", intr)); | |
| 1246 | ||
| 1247 | for (cpu = 0; cpu < ncpus; ++cpu) { | |
| 1248 | struct ioapic_irqmap *map; | |
| 1249 | ||
| 1250 | map = &ioapic_irqmaps[cpu][intr]; | |
| 1251 | ||
| 1252 | if (cpu == cpuid) { | |
| 1253 | KASSERT(map->im_type == IOAPIC_IMT_MSI, | |
| 1254 | ("try release non-MSI intr %d cpu%d, " | |
| 1255 | "type %d\n", intr, cpu, map->im_type)); | |
| 1256 | KASSERT(map->im_msi_base >= 0 && | |
| 1257 | map->im_msi_base <= intr, | |
| 1258 | ("intr %d cpu%d, invalid MSI-base %d\n", | |
| 1259 | intr, cpu, map->im_msi_base)); | |
| 1260 | KASSERT((map->im_msi_base & mask) == 0, | |
| 1261 | ("intr %d cpu%d, MSI-base %d is " | |
| 1262 | "not proper aligned %d\n", | |
| 1263 | intr, cpu, map->im_msi_base, count)); | |
| 1264 | ||
| 1265 | if (msi_base < 0) { | |
| 1266 | msi_base = map->im_msi_base; | |
| 1267 | } else { | |
| 1268 | KASSERT(map->im_msi_base == msi_base, | |
| 1269 | ("intr %d cpu%d, " | |
| 1270 | "inconsistent MSI-base, " | |
| 1271 | "was %d, now %d\n", | |
| 1272 | intr, cpu, | |
| 1273 | msi_base, map->im_msi_base)); | |
| 1274 | } | |
| 1275 | map->im_msi_base = -1; | |
| 1276 | } else { | |
| 1277 | KASSERT(map->im_type == IOAPIC_IMT_SHADOW, | |
| 1278 | ("try release non-MSIsh intr %d cpu%d, " | |
| 1279 | "type %d\n", intr, cpu, map->im_type)); | |
| 1280 | KASSERT(map->im_msi_base < 0, | |
| 1281 | ("intr %d cpu%d, invalid MSIsh-base %d\n", | |
| 1282 | intr, cpu, map->im_msi_base)); | |
| 1283 | } | |
| 1284 | map->im_type = IOAPIC_IMT_UNUSED; | |
| 1285 | } | |
| 1286 | ||
| 1287 | if (intr_next < intr) | |
| 1288 | intr_next = intr; | |
| 1289 | ||
| 1290 | if (bootverbose) | |
| 1291 | kprintf("release MSI intr %d on cpu%d\n", intr, cpuid); | |
| 1292 | } | |
| 1293 | ||
| 1294 | KKASSERT(intr_next > 0); | |
| 1295 | KKASSERT(msi_base >= 0); | |
| 1296 | ||
| 1297 | ++intr_next; | |
| 1298 | if (intr_next < IOAPIC_HWI_VECTORS) { | |
| 1299 | int cpu; | |
| 1300 | ||
| 1301 | for (cpu = 0; cpu < ncpus; ++cpu) { | |
| 1302 | const struct ioapic_irqmap *map = | |
| 1303 | &ioapic_irqmaps[cpu][intr_next]; | |
| 1304 | ||
| 1305 | if (map->im_type == IOAPIC_IMT_MSI) { | |
| 1306 | KASSERT(map->im_msi_base != msi_base, | |
| 1307 | ("more than %d MSI was allocated\n", count)); | |
| 1308 | } | |
| 1309 | } | |
| 1310 | } | |
| 1311 | ||
| 1312 | lwkt_reltoken(&ioapic_irqmap_tok); | |
| 1313 | } | |
| 1314 | ||
| 1315 | static void | |
| 1316 | ioapic_abi_msi_map(int intr, uint64_t *addr, uint32_t *data, int cpuid) | |
| 1317 | { | |
| 1318 | const struct ioapic_irqmap *map; | |
| 1319 | ||
| 1320 | KASSERT(cpuid >= 0 && cpuid < ncpus, | |
| 1321 | ("invalid cpuid %d", cpuid)); | |
| 1322 | ||
| 1323 | KASSERT(intr >= 0 && intr < IOAPIC_HWI_VECTORS, | |
| 1324 | ("invalid intr %d\n", intr)); | |
| 1325 | ||
| 1326 | lwkt_gettoken(&ioapic_irqmap_tok); | |
| 1327 | ||
| 1328 | map = &ioapic_irqmaps[cpuid][intr]; | |
| 1329 | KASSERT(map->im_type == IOAPIC_IMT_MSI, | |
| 1330 | ("try map non-MSI intr %d, type %d\n", intr, map->im_type)); | |
| 1331 | KASSERT(map->im_msi_base >= 0 && map->im_msi_base <= intr, | |
| 1332 | ("intr %d, invalid MSI-base %d\n", intr, map->im_msi_base)); | |
| 1333 | ||
| 1334 | msi_map(map->im_msi_base, addr, data, cpuid); | |
| 1335 | ||
| 1336 | if (bootverbose) | |
| 1337 | kprintf("map MSI intr %d on cpu%d\n", intr, cpuid); | |
| 1338 | ||
| 1339 | lwkt_reltoken(&ioapic_irqmap_tok); | |
| 1340 | } |