Lines Matching refs:dep
683 struct dwc3_ep *dep = s->private;
684 struct dwc3 *dwc = dep->dwc;
695 val = dwc3_core_fifo_space(dep, DWC3_TXFIFO);
714 struct dwc3_ep *dep = s->private;
715 struct dwc3 *dwc = dep->dwc;
726 val = dwc3_core_fifo_space(dep, DWC3_RXFIFO);
745 struct dwc3_ep *dep = s->private;
746 struct dwc3 *dwc = dep->dwc;
756 val = dwc3_core_fifo_space(dep, DWC3_TXREQQ);
767 struct dwc3_ep *dep = s->private;
768 struct dwc3 *dwc = dep->dwc;
778 val = dwc3_core_fifo_space(dep, DWC3_RXREQQ);
789 struct dwc3_ep *dep = s->private;
790 struct dwc3 *dwc = dep->dwc;
800 val = dwc3_core_fifo_space(dep, DWC3_RXINFOQ);
811 struct dwc3_ep *dep = s->private;
812 struct dwc3 *dwc = dep->dwc;
822 val = dwc3_core_fifo_space(dep, DWC3_DESCFETCHQ);
833 struct dwc3_ep *dep = s->private;
834 struct dwc3 *dwc = dep->dwc;
844 val = dwc3_core_fifo_space(dep, DWC3_EVENTQ);
855 struct dwc3_ep *dep = s->private;
856 struct dwc3 *dwc = dep->dwc;
860 if (!(dep->flags & DWC3_EP_ENABLED) || !dep->endpoint.desc) {
865 switch (usb_endpoint_type(dep->endpoint.desc)) {
890 struct dwc3_ep *dep = s->private;
891 struct dwc3 *dwc = dep->dwc;
901 if (dep->number <= 1) {
909 struct dwc3_trb *trb = &dep->trb_pool[i];
921 dep->trb_enqueue == i ? 'E' : ' ',
922 dep->trb_dequeue == i ? 'D' : ' ');
935 struct dwc3_ep *dep = s->private;
936 struct dwc3 *dwc = dep->dwc;
949 reg = DWC3_GDBGLSPMUX_EPSELECT(dep->number);
988 static void dwc3_debugfs_create_endpoint_files(struct dwc3_ep *dep,
997 debugfs_create_file(name, 0444, parent, dep, fops);
1001 void dwc3_debugfs_create_endpoint_dir(struct dwc3_ep *dep)
1005 dir = debugfs_create_dir(dep->name, dep->dwc->root);
1006 dwc3_debugfs_create_endpoint_files(dep, dir);