Searched refs:td_pool (Results 1 – 7 of 7) sorted by relevance
/Linux-v4.19/drivers/usb/chipidea/ |
D | udc.c | 350 node->ptr = dma_pool_zalloc(hwep->td_pool, GFP_ATOMIC, &node->dma); in add_td_to_list() 522 dma_pool_free(hwep->td_pool, pending->ptr, pending->dma); in free_pending_td() 639 dma_pool_free(hwep->td_pool, node->ptr, node->dma); in _ep_nuke() 1367 dma_pool_free(hwep->td_pool, node->ptr, node->dma); in ep_free_request() 1421 dma_pool_free(hwep->td_pool, node->ptr, node->dma); in ep_dequeue() 1653 hwep->td_pool = ci->td_pool; in init_eps() 1916 ci->td_pool = dma_pool_create("ci_hw_td", dev->parent, in udc_start() 1919 if (ci->td_pool == NULL) { in udc_start() 1942 dma_pool_destroy(ci->td_pool); in udc_start() 1962 dma_pool_destroy(ci->td_pool); in ci_hdrc_gadget_destroy()
|
D | ci.h | 101 struct dma_pool *td_pool; member 224 struct dma_pool *td_pool; member
|
/Linux-v4.19/drivers/usb/host/ |
D | uhci-hcd.c | 548 dma_pool_destroy(uhci->td_pool); in release_uhci() 613 uhci->td_pool = dma_pool_create("uhci_td", uhci_dev(uhci), in uhci_start() 615 if (!uhci->td_pool) { in uhci_start() 694 dma_pool_destroy(uhci->td_pool); in uhci_start()
|
D | uhci-hcd.h | 395 struct dma_pool *td_pool; member
|
D | uhci-q.c | 111 td = dma_pool_alloc(uhci->td_pool, GFP_ATOMIC, &dma_handle); in uhci_alloc_td() 131 dma_pool_free(uhci->td_pool, td, td->dma_handle); in uhci_free_td()
|
/Linux-v4.19/drivers/usb/gadget/udc/ |
D | fsl_udc_core.c | 183 dma_pool_free(udc->td_pool, curr_td, curr_td->td_dma); in done() 784 dtd = dma_pool_alloc(udc_controller->td_pool, gfp_flags, dma); in fsl_build_dtd() 2491 udc_controller->td_pool = dma_pool_create("udc_td", &pdev->dev, in fsl_udc_probe() 2494 if (udc_controller->td_pool == NULL) { in fsl_udc_probe() 2508 dma_pool_destroy(udc_controller->td_pool); in fsl_udc_probe() 2552 dma_pool_destroy(udc_controller->td_pool); in fsl_udc_remove()
|
D | fsl_usb2_udc.h | 493 struct dma_pool *td_pool; /* dma pool for DTD */ member
|