Lines Matching defs:ohci

28  * approach was taken. Whenever the bus is enabled ohci->eof_timer will be set.
803 static void ohciBusResume(POHCI ohci, bool fHardware);
821 static void ohciUpdateInterruptLocked(POHCI ohci, const char *msg)
825 if ( (ohci->intr & OHCI_INTR_MASTER_INTERRUPT_ENABLED)
826 && (ohci->intr_status & ohci->intr)
827 && !(ohci->ctl & OHCI_CTL_IR))
830 PDMDevHlpPCISetIrq(ohci->CTX_SUFF(pDevIns), 0, level);
833 uint32_t val = ohci->intr_status & ohci->intr;
834 Log2(("ohci: Fired off interrupt %#010x - SO=%d WDH=%d SF=%d RD=%d UE=%d FNO=%d RHSC=%d OC=%d - %s\n",
843 DECLINLINE(int) ohciSetInterruptInt(POHCI ohci, int rcBusy, uint32_t intr, const char *msg)
845 int rc = PDMCritSectEnter(&ohci->CsIrq, rcBusy);
849 if ( (ohci->intr_status & intr) != intr )
851 ohci->intr_status |= intr;
852 ohciUpdateInterruptLocked(ohci, msg);
855 PDMCritSectLeave(&ohci->CsIrq);
862 #define ohciSetInterrupt(ohci, a_rcBusy, intr) ohciSetInterruptInt(ohci, a_rcBusy, intr, #intr)
863 #define ohciR3SetInterrupt(ohci, intr) ohciSetInterruptInt(ohci, VERR_IGNORED, intr, #intr)
1107 * @param pThis The ohci instance data.
1122 Log(("ohci: %s reset%s\n", fNewMode == OHCI_USB_RESET ? "hardware" : "software",
1833 Log2(("ohci: cbp=%#010x be=%#010x cbTotal=0 EMPTY\n", cbp, be));
1841 Log2(("ohci: cbp=%#010x be=%#010x cbTotal=%u\n", cbp, be, pBuf->cbTotal));
1851 Log2(("ohci: cbp=%#010x be=%#010x cbTotal=%u PAGE FLIP\n", cbp, be, pBuf->cbTotal));
2415 * Setup a ohci transfer buffer and calc the new cbp value.
3633 Log(("ohci: Writeback Done (%#010x) on frame %#x (age %#x)\n", hcca.done,
3949 Log(("ohci: %s: Bus started\n", pThis->PciDev.name));
4496 Log(("ohci: FrameInterval: %#010x -> %#010x\n", pThis->fi, val & OHCI_FMI_FI));
4657 Log(("ohci: %s: invalid write to NDP or DT in roothub descriptor A!!! val=0x%.8x\n",
4691 Log(("ohci: %s: unsupported write to root descriptor B!!! 0x%.8x -> 0x%.8x\n",
4736 Log2(("ohci: %s: global power up\n", pThis->PciDev.name));
4745 Log2(("ohci: %s: global power down\n", pThis->PciDev.name));
5080 Log(("ohci: Trying to read register %u/%u!!!\n", iReg, NUM_OP_REGS(pThis)));
5110 Log(("ohci: Trying to write to register %u/%u!!!\n", iReg, NUM_OP_REGS(pThis)));
5860 Log(("ohci: cTicksPerFrame=%RU64 cTicksPerUsbTick=%RU64\n",
5905 PDMDevHlpDBGFInfoRegister(pDevIns, "ohci", "OHCI control registers.", ohciR3InfoRegs);
5922 "usb-ohci",