Lines Matching defs:ctl
259 uint32_t ctl;
777 SSMFIELD_ENTRY( OHCI, ctl),
827 && !(ohci->ctl & OHCI_CTL_IR))
870 if ((pThis->ctl & OHCI_CTL_HCFS) != OHCI_USB_SUSPEND)
1141 pThis->ctl |= OHCI_CTL_RWC; /* We're the firmware, set RemoteWakeupConnected. */
1143 pThis->ctl &= OHCI_CTL_IR | OHCI_CTL_RWC; /* IR and RWC are preserved on software reset. */
1146 pThis->ctl &= ~OHCI_CTL_HCFS;
1147 pThis->ctl |= fNewMode;
3567 else if (pThis->ctl & OHCI_CTL_IE)
3796 if (pThis->ctl & OHCI_CTL_PLE)
3802 if ( (pThis->ctl & OHCI_CTL_CLE)
3809 if ( (pThis->ctl & OHCI_CTL_BLE)
3983 pThis->ctl &= ~OHCI_CTL_HCFS;
3984 pThis->ctl |= OHCI_USB_RESUME;
3987 fHardware, (pThis->ctl & OHCI_CTL_RWE) ? "on" : "off"));
3989 if (fHardware && (pThis->ctl & OHCI_CTL_RWE))
4050 uint32_t ctl = pThis->ctl;
4052 ctl, ctl & 3, (ctl >> 2) & 1, (ctl >> 3) & 1, (ctl >> 4) & 1, (ctl >> 5) & 1, (ctl >> 6) & 3, (ctl >> 8) & 1,
4053 (ctl >> 9) & 1, (ctl >> 10) & 1));
4054 *pu32Value = ctl;
4064 uint32_t chg = pThis->ctl ^ val; NOREF(chg);
4080 uint32_t old_state = pThis->ctl & OHCI_CTL_HCFS;
4084 pThis->ctl = val;
4119 pThis->ctl = val;
4399 AssertMsg(!(pThis->ctl & OHCI_CTL_CLE), ("Illegal write! HcControl.ControlListEnabled is set! val=%#010x\n", val));
4442 AssertMsg(!(pThis->ctl & OHCI_CTL_BLE), ("Illegal write! HcControl.BulkListEnabled is set! val=%#010x\n", val));
4513 if ((pThis->ctl & OHCI_CTL_HCFS) == OHCI_USB_OPERATIONAL)
5371 SSMFIELD_ENTRY( OHCI, ctl),
5455 SSMFIELD_ENTRY( OHCI, ctl),
5620 uint32_t val, ctl, status;
5623 ctl = pThis->ctl;
5625 ctl, ctl & 3, (ctl >> 2) & 1, (ctl >> 3) & 1, (ctl >> 4) & 1, (ctl >> 5) & 1, (ctl >> 6) & 3, (ctl >> 8) & 1,
5626 (ctl >> 9) & 1, (ctl >> 10) & 1);