Home
last modified time | relevance | path

Searched refs:numintrs (Results 1 – 6 of 6) sorted by relevance

/qemu/hw/usb/
H A Dhcd-xhci-sysbus.c43 s->irq = g_new0(qemu_irq, s->xhci.numintrs); in xhci_sysbus_realize()
45 s->xhci.numintrs); in xhci_sysbus_realize()
86 DEFINE_PROP_UINT32("intrs", XHCISysbusState, xhci.numintrs, XHCI_MAXINTRS),
H A Dhcd-xhci-pci.c113 for (intr = 0; intr < s->xhci.numintrs; intr++) { in xhci_pci_vmstate_post_load()
148 ret = msi_init(dev, 0x70, s->xhci.numintrs, true, false, &err); in usb_xhci_pci_realize()
177 msix_init(dev, s->xhci.numintrs, in usb_xhci_pci_realize()
274 xhci->numintrs = XHCI_MAXINTRS; in qemu_xhci_instance_init()
H A Dhcd-xhci-nec.c49 pci->xhci.numintrs = nec->intrs; in nec_xhci_instance_init()
H A Dhcd-xhci.c647 if (xhci->numintrs == 1 || in xhci_event()
652 if (v >= xhci->numintrs) { in xhci_event()
653 DPRINTF("intr nr out of range (%d >= %d)\n", v, xhci->numintrs); in xhci_event()
2720 for (i = 0; i < xhci->numintrs; i++) { in xhci_reset()
2750 | (xhci->numintrs<<8) | xhci->numslots; in xhci_cap_read()
3392 if (xhci->numintrs > XHCI_MAXINTRS) { in usb_xhci_realize()
3393 xhci->numintrs = XHCI_MAXINTRS; in usb_xhci_realize()
3395 while (xhci->numintrs & (xhci->numintrs - 1)) { /* ! power of 2 */ in usb_xhci_realize()
3396 xhci->numintrs++; in usb_xhci_realize()
3398 if (xhci->numintrs < 1) { in usb_xhci_realize()
[all …]
H A Dhcd-xhci.h190 uint32_t numintrs; member
/qemu/hw/intc/
H A Dmips_gic.c358 int numintrs = (gic->num_irq / 8) - 1; in gic_reset() local
363 (numintrs << GIC_SH_CONFIG_NUMINTRS_SHF) | in gic_reset()