Searched refs:req_list (Results 1 – 6 of 6) sorted by relevance
| /openbmc/u-boot/drivers/usb/musb-new/ |
| H A D | musb_gadget.h | 66 struct list_head req_list; member 83 struct list_head *queue = &ep->req_list; in next_request()
|
| H A D | musb_gadget_ep0.c | 933 if (!list_empty(&ep->req_list)) { in musb_g_ep0_queue() 952 list_add_tail(&req->list, &ep->req_list); in musb_g_ep0_queue() 1016 if (!list_empty(&ep->req_list)) { in musb_g_ep0_halt()
|
| H A D | musb_gadget.c | 248 while (!list_empty(&ep->req_list)) { in nuke() 249 req = list_first_entry(&ep->req_list, struct musb_request, list); in nuke() 1359 list_add_tail(&request->list, &musb_ep->req_list); in musb_gadget_queue() 1362 if (!musb_ep->busy && &request->list == musb_ep->req_list.next) in musb_gadget_queue() 1384 list_for_each_entry(r, &musb_ep->req_list, list) { in musb_gadget_dequeue() 1395 if (musb_ep->req_list.next != &req->list || musb_ep->busy) in musb_gadget_dequeue() 1834 INIT_LIST_HEAD(&ep->req_list); in init_peripheral_ep()
|
| /openbmc/qemu/hw/ufs/ |
| H A D | ufs.h | 108 QTAILQ_HEAD(, UfsRequest) req_list; /* Free request list */ 118 QTAILQ_HEAD(, UfsRequest) req_list; 130 UfsRequest *req_list; member
|
| H A D | ufs.c | 343 req = &u->req_list[slot]; in ufs_process_db() 417 while (!(ufs_mcq_sq_empty(u, sq->sqid) || QTAILQ_EMPTY(&sq->req_list))) { in ufs_mcq_process_sq() 428 req = QTAILQ_FIRST(&sq->req_list); in ufs_mcq_process_sq() 429 QTAILQ_REMOVE(&sq->req_list, req, entry); in ufs_mcq_process_sq() 447 QTAILQ_FOREACH_SAFE(req, &cq->req_list, entry, next) in ufs_mcq_process_cq() 466 QTAILQ_REMOVE(&cq->req_list, req, entry); in ufs_mcq_process_cq() 472 QTAILQ_INSERT_TAIL(&req->sq->req_list, req, entry); in ufs_mcq_process_cq() 515 QTAILQ_INIT(&sq->req_list); in ufs_mcq_create_sq() 518 QTAILQ_INSERT_TAIL(&sq->req_list, &sq->req[i], entry); in ufs_mcq_create_sq() 573 QTAILQ_INIT(&cq->req_list); in ufs_mcq_create_cq() [all …]
|
| /openbmc/u-boot/drivers/usb/gadget/ |
| H A D | atmel_usba_udc.c | 274 LIST_HEAD(req_list); in usba_ep_disable() 294 list_splice_init(&ep->queue, &req_list); in usba_ep_disable() 301 request_complete_list(ep, &req_list, -ESHUTDOWN); in usba_ep_disable()
|