Home
last modified time | relevance | path

Searched refs:USB_DWC2_DEPCTL_STALL (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/drivers/usb/device/
Dusb_dc_dw.c1000 base->out_ep[ep_idx].doepctl |= USB_DWC2_DEPCTL_STALL; in usb_dc_ep_set_stall()
1002 base->in_ep[ep_idx].diepctl |= USB_DWC2_DEPCTL_STALL; in usb_dc_ep_set_stall()
1024 base->out_ep[ep_idx].doepctl &= ~USB_DWC2_DEPCTL_STALL; in usb_dc_ep_clear_stall()
1026 base->in_ep[ep_idx].diepctl &= ~USB_DWC2_DEPCTL_STALL; in usb_dc_ep_clear_stall()
1055 *p_depctl |= USB_DWC2_DEPCTL_EPDIS | USB_DWC2_DEPCTL_STALL; in usb_dc_ep_halt()
1057 *p_depctl |= USB_DWC2_DEPCTL_STALL; in usb_dc_ep_halt()
1080 if (base->out_ep[ep_idx].doepctl & USB_DWC2_DEPCTL_STALL) { in usb_dc_ep_is_stalled()
1084 if (base->in_ep[ep_idx].diepctl & USB_DWC2_DEPCTL_STALL) { in usb_dc_ep_is_stalled()
/Zephyr-latest/drivers/usb/udc/
Dudc_dwc2.c1398 dxepctl |= USB_DWC2_DEPCTL_STALL; in udc_dwc2_ep_disable()
1445 dxepctl |= USB_DWC2_DEPCTL_STALL; in udc_dwc2_ep_disable()
1468 dxepctl |= USB_DWC2_DEPCTL_STALL; in udc_dwc2_ep_disable()
1562 dxepctl &= ~USB_DWC2_DEPCTL_STALL; in udc_dwc2_ep_clear_halt()
/Zephyr-latest/drivers/usb/common/
Dusb_dwc2_hw.h837 #define USB_DWC2_DEPCTL_STALL BIT(USB_DWC2_DEPCTL_STALL_POS) macro