Searched refs:host_intr (Results 1 – 1 of 1) sorted by relevance
99 static inline void dwc2_raise_host_irq(DWC2State *s, uint32_t host_intr) in dwc2_raise_host_irq() argument101 if (!(s->haint & host_intr)) { in dwc2_raise_host_irq()102 s->haint |= host_intr; in dwc2_raise_host_irq()104 trace_usb_dwc2_raise_host_irq(host_intr); in dwc2_raise_host_irq()111 static inline void dwc2_lower_host_irq(DWC2State *s, uint32_t host_intr) in dwc2_lower_host_irq() argument113 if (s->haint & host_intr) { in dwc2_lower_host_irq()114 s->haint &= ~host_intr; in dwc2_lower_host_irq()115 trace_usb_dwc2_lower_host_irq(host_intr); in dwc2_lower_host_irq()124 uint32_t host_intr = 1 << (index >> 3); in dwc2_update_hc_irq() local127 dwc2_raise_host_irq(s, host_intr); in dwc2_update_hc_irq()[all …]