Searched refs:td_pool (Results 1 – 7 of 7) sorted by relevance
/openbmc/linux/drivers/usb/host/ |
H A D | uhci-hcd.c | 549 dma_pool_destroy(uhci->td_pool); in release_uhci() 611 uhci->td_pool = dma_pool_create("uhci_td", uhci_dev(uhci), in uhci_start() 613 if (!uhci->td_pool) { in uhci_start() 692 dma_pool_destroy(uhci->td_pool); in uhci_start()
|
H A D | uhci-hcd.h | 391 struct dma_pool *td_pool; member
|
H A 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()
|
/openbmc/linux/drivers/usb/chipidea/ |
H A D | udc.c | 368 node->ptr = dma_pool_zalloc(hwep->td_pool, GFP_ATOMIC, &node->dma); in add_td_to_list() 649 dma_pool_free(hwep->td_pool, pending->ptr, pending->dma); in free_pending_td() 767 dma_pool_free(hwep->td_pool, node->ptr, node->dma); in _ep_nuke() 1514 dma_pool_free(hwep->td_pool, node->ptr, node->dma); in ep_free_request() 1572 dma_pool_free(hwep->td_pool, node->ptr, node->dma); in ep_dequeue() 1870 hwep->td_pool = ci->td_pool; in init_eps() 2129 ci->td_pool = dma_pool_create("ci_hw_td", dev->parent, in udc_start() 2132 if (ci->td_pool == NULL) { in udc_start() 2152 dma_pool_destroy(ci->td_pool); in udc_start() 2172 dma_pool_destroy(ci->td_pool); in ci_hdrc_gadget_destroy()
|
H A D | ci.h | 105 struct dma_pool *td_pool; member 235 struct dma_pool *td_pool; member
|
/openbmc/linux/drivers/usb/gadget/udc/ |
H A D | fsl_udc_core.c | 180 dma_pool_free(udc->td_pool, curr_td, curr_td->td_dma); in done() 779 dtd = dma_pool_alloc(udc_controller->td_pool, gfp_flags, dma); in fsl_build_dtd() 2498 udc_controller->td_pool = dma_pool_create("udc_td", &pdev->dev, in fsl_udc_probe() 2501 if (udc_controller->td_pool == NULL) { in fsl_udc_probe() 2515 dma_pool_destroy(udc_controller->td_pool); in fsl_udc_probe() 2556 dma_pool_destroy(udc_controller->td_pool); in fsl_udc_remove()
|
H A D | fsl_usb2_udc.h | 493 struct dma_pool *td_pool; /* dma pool for DTD */ member
|