Home
last modified time | relevance | path

Searched refs:UE_ADDR (Results 1 – 12 of 12) sorted by relevance

/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_usb.c571 cfg[0].endpoint = addr & UE_ADDR; in usb_clear_halt()
674 addr = (uhe->desc.bEndpointAddress & UE_ADDR); in usb_control_msg()
800 cfg[0].endpoint = addr & UE_ADDR; in usb_setup_endpoint()
834 cfg[0].endpoint = addr & UE_ADDR; in usb_setup_endpoint()
1032 mask = UE_ADDR; in usb_find_host_endpoint()
1034 mask = (UE_DIR_IN | UE_DIR_OUT | UE_ADDR); in usb_find_host_endpoint()
1063 if ((type == UE_CONTROL) && ((ep & UE_ADDR) == 0)) { in usb_find_host_endpoint()
/freebsd/sys/dev/usb/controller/
H A Davr32dci.c773 ep_no = (xfer->endpointno & UE_ADDR); in avr32dci_setup_standard_chain()
907 uint8_t ep_no = xfer->endpointno & UE_ADDR; in avr32dci_start_standard_chain()
1059 ep_no = (xfer->endpointno & UE_ADDR); in avr32dci_device_done()
1089 ep_no = (pipe->edesc->bEndpointAddress & UE_ADDR); in avr32dci_set_stall()
1182 (ed->bEndpointAddress & UE_ADDR), in avr32dci_clear_stall()
1363 ep_no = xfer->endpointno & UE_ADDR; in avr32dci_device_isoc_fs_enter()
1952 ep_no = xfer->endpointno & UE_ADDR; in avr32dci_xfer_setup()
H A Datmegadci.c1082 ep_no = (xfer->endpointno & UE_ADDR); in atmegadci_device_done()
1115 ep_no = (ep->edesc->bEndpointAddress & UE_ADDR); in atmegadci_set_stall()
1207 (ed->bEndpointAddress & UE_ADDR), in atmegadci_clear_stall()
1996 ep_no = xfer->endpointno & UE_ADDR; in atmegadci_xfer_setup()
H A Duss820dci.c1028 uint8_t ep_no = (xfer->endpointno & UE_ADDR); in uss820dci_intr_set()
1262 ep_no = (ep->edesc->bEndpointAddress & UE_ADDR); in uss820dci_set_stall()
1357 (ed->bEndpointAddress & UE_ADDR), in uss820dci_clear_stall()
2267 ep_no = xfer->endpointno & UE_ADDR; in uss820dci_xfer_setup()
H A Ddwc_otg.c3321 ((xfer->endpointno & UE_ADDR) << HCCHAR_EPNUM_SHIFT) | in dwc_otg_setup_standard_chain()
3675 reg = DOTG_DIEPCTL(ep_no & UE_ADDR); in dwc_otg_set_stall()
3676 temp = sc->sc_in_ctl[ep_no & UE_ADDR]; in dwc_otg_set_stall()
3678 reg = DOTG_DOEPCTL(ep_no & UE_ADDR); in dwc_otg_set_stall()
3679 temp = sc->sc_out_ctl[ep_no & UE_ADDR]; in dwc_otg_set_stall()
3688 sc->sc_active_rx_ep &= ~(1U << (ep_no & UE_ADDR)); in dwc_otg_set_stall()
3691 (ep_no & UE_ADDR) == GRXSTSRD_CHNUM_GET( in dwc_otg_set_stall()
3792 (ed->bEndpointAddress & UE_ADDR), in dwc_otg_clear_stall()
4817 ep_no = xfer->endpointno & UE_ADDR; in dwc_otg_xfer_setup()
H A Dxhci.h72 ((((x) & UE_DIR_IN) ? 1 : 0) | (2 * ((x) & UE_ADDR)))
H A Dmusb_otg.c2404 ep_no = (xfer->endpointno & UE_ADDR); in musbotg_setup_standard_chain()
2846 ep_no = (ep->edesc->bEndpointAddress & UE_ADDR); in musbotg_set_stall()
3033 (ed->bEndpointAddress & UE_ADDR), in musbotg_clear_stall()
4065 ep_no = xfer->endpointno & UE_ADDR; in musbotg_xfer_setup()
H A Dxhci.c4020 if ((edesc->bEndpointAddress & UE_ADDR) != 0) { in xhci_ep_init()
4046 if ((edesc->bEndpointAddress & UE_ADDR) == 0) { in xhci_ep_uninit()
/freebsd/sys/dev/usb/
H A Dusb.h537 #define UE_ADDR 0x0f macro
539 #define UE_GET_ADDR(a) ((a) & UE_ADDR)
H A Dusb_generic.c266 usb_config[0].endpoint = ed->bEndpointAddress & UE_ADDR; in ugen_open_pipe_write()
335 usb_config[0].endpoint = ed->bEndpointAddress & UE_ADDR; in ugen_open_pipe_read()
1065 usb_config[0].endpoint = ed->bEndpointAddress & UE_ADDR; in usb_fs_open()
H A Dusb_device.c313 EA_MASK = (UE_DIR_IN | UE_DIR_OUT | UE_ADDR), in usbd_get_ep_by_addr()
411 ea_mask |= UE_ADDR; in usbd_get_endpoint()
412 ea_val |= (setup->endpoint & UE_ADDR); in usbd_get_endpoint()
/freebsd/sys/dev/usb/template/
H A Dusb_template.c279 ea = (ted->bEndpointAddress & (UE_ADDR | UE_DIR_IN | UE_DIR_OUT)); in usb_make_endpoint_desc()
826 ep_no = (ed->bEndpointAddress & UE_ADDR); in usb_hw_ep_get_needs()