/src/common/lib/libprop/ |
prop_ingest.c | 37 prop_type_t pic_type; member in struct:_prop_ingest_context 54 ctx->pic_type = PROP_TYPE_UNKNOWN; 91 return (ctx->pic_type); 134 ctx->pic_type = prop_object_type(obj); 147 if (ctx->pic_type != pite->pite_type &&
|
/src/sys/arch/x86/include/ |
pic.h | 13 int pic_type; member in struct:pic 24 struct ioapic_softc *pic_ioapic; /* if pic_type == PIC_IOAPIC */ 25 struct msipic *pic_msipic; /* if (pic_type == PIC_MSI) || (pic_type == PIC_MSIX) */
|
/src/sys/arch/xen/x86/ |
xen_intr.c | 156 if (pic->pic_type == PIC_XEN) { 252 if (ih->ih_pic->pic_type == PIC_XEN) { 382 KASSERT(pic->pic_type == PIC_XEN); 397 KASSERT(pic->pic_type == PIC_I8259); 463 if ((pic->pic_type == PIC_MSI) || (pic->pic_type == PIC_MSIX)) { 472 if (pic->pic_type == PIC_MSI) 474 else if (pic->pic_type == PIC_MSIX) 482 if (pic->pic_type == PIC_XEN) { 493 if (pic->pic_type == PIC_I8259) [all...] |
pintr.c | 183 KASSERT(pic->pic_type == PIC_MSI); 228 KASSERT(pic->pic_type == PIC_MSIX); 310 switch (pic->pic_type) { 333 (pic->pic_type == PIC_IOAPIC) ? "ioapic" : "i8259", 347 (pic->pic_type == PIC_MSI) ? "MSI" : "MSIX", 353 panic("unknown pic_type %d", pic->pic_type);
|
/src/sys/arch/x86/x86/ |
mpacpi.c | 195 if (pic->pic_type == PIC_IOAPIC) 209 if (pic->pic_type == PIC_IOAPIC) { 249 if (pic->pic_type == PIC_IOAPIC) 261 if (pic->pic_type == PIC_IOAPIC) { 305 if (pic->pic_type == PIC_IOAPIC) 659 if (pic->pic_type == PIC_I8259 && pin > 15) 663 if (pic->pic_type == PIC_IOAPIC) { 760 if (pic->pic_type == PIC_IOAPIC) 783 if (pic->pic_type == PIC_IOAPIC) { 1116 if (pic->pic_type == PIC_IOAPIC) [all...] |
intr.c | 310 if ((pic->pic_type == PIC_MSI) || (pic->pic_type == PIC_MSIX)) { 319 if (pic->pic_type == PIC_MSI) 321 else if (pic->pic_type == PIC_MSIX) 329 if (pic->pic_type == PIC_XEN) { 340 if (pic->pic_type == PIC_I8259) { 348 if (pic->pic_type == PIC_IOAPIC) { 498 if (pic->pic_type == PIC_MSI || pic->pic_type == PIC_MSIX) 891 source->is_pic->pic_type != pic->pic_type) [all...] |
i8259.c | 111 .pic_type = PIC_I8259,
|
x86_softintr.c | 144 .pic_type = PIC_SOFT,
|
ioapic.c | 295 sc->sc_pic.pic_type = PIC_IOAPIC;
|
lapic.c | 113 .pic_type = PIC_LAPIC,
|
/src/sys/arch/x86/pci/ |
pci_msi_machdep.c | 80 if (msi_pic->pic_type == PIC_MSI) 82 else if (msi_pic->pic_type == PIC_MSIX) 85 panic("%s: Unexpected pic_type: %d\n", __func__, 86 msi_pic->pic_type);
|
msipic.c | 462 .pic_type = PIC_MSI, 650 .pic_type = PIC_MSIX, 792 KASSERT(msix_pic->pic_type == PIC_MSIX); 811 if (msi_pic->pic_type == PIC_MSI) {
|
/src/sys/arch/xen/xen/ |
evtchn.c | 135 .pic_type = PIC_XEN, 431 KASSERT(pic->pic_type == PIC_XEN); 442 KASSERT(pic->pic_type == PIC_XEN); 464 KASSERT(pic->pic_type == PIC_XEN); 489 KASSERT(pic->pic_type == PIC_XEN);
|
/src/sys/dev/virtio/arch/x86/ |
virtio_mmio_cmdline.c | 314 KASSERT(ioapic->sc_pic.pic_type == PIC_IOAPIC);
|
/src/sys/arch/x86/acpi/ |
acpi_machdep.c | 326 if (pic->pic_type == PIC_IOAPIC) {
|