Home
last modified time | relevance | path

Searched refs:td_pool (Results 1 – 7 of 7) sorted by relevance

/drivers/usb/chipidea/
Dudc.c353 node->ptr = dma_pool_zalloc(hwep->td_pool, GFP_ATOMIC, &node->dma); in add_td_to_list()
525 dma_pool_free(hwep->td_pool, pending->ptr, pending->dma); in free_pending_td()
642 dma_pool_free(hwep->td_pool, node->ptr, node->dma); in _ep_nuke()
1374 dma_pool_free(hwep->td_pool, node->ptr, node->dma); in ep_free_request()
1432 dma_pool_free(hwep->td_pool, node->ptr, node->dma); in ep_dequeue()
1688 hwep->td_pool = ci->td_pool; in init_eps()
1951 ci->td_pool = dma_pool_create("ci_hw_td", dev->parent, in udc_start()
1954 if (ci->td_pool == NULL) { in udc_start()
1977 dma_pool_destroy(ci->td_pool); in udc_start()
1997 dma_pool_destroy(ci->td_pool); in ci_hdrc_gadget_destroy()
Dci.h104 struct dma_pool *td_pool; member
227 struct dma_pool *td_pool; member
/drivers/usb/host/
Duhci-hcd.c547 dma_pool_destroy(uhci->td_pool); in release_uhci()
618 uhci->td_pool = dma_pool_create("uhci_td", uhci_dev(uhci), in uhci_start()
620 if (!uhci->td_pool) { in uhci_start()
699 dma_pool_destroy(uhci->td_pool); in uhci_start()
Duhci-hcd.h394 struct dma_pool *td_pool; member
Duhci-q.c112 td = dma_pool_alloc(uhci->td_pool, GFP_ATOMIC, &dma_handle); in uhci_alloc_td()
132 dma_pool_free(uhci->td_pool, td, td->dma_handle); in uhci_free_td()
/drivers/usb/gadget/udc/
Dfsl_udc_core.c187 dma_pool_free(udc->td_pool, curr_td, curr_td->td_dma); in done()
787 dtd = dma_pool_alloc(udc_controller->td_pool, gfp_flags, dma); in fsl_build_dtd()
2508 udc_controller->td_pool = dma_pool_create("udc_td", &pdev->dev, in fsl_udc_probe()
2511 if (udc_controller->td_pool == NULL) { in fsl_udc_probe()
2525 dma_pool_destroy(udc_controller->td_pool); in fsl_udc_probe()
2569 dma_pool_destroy(udc_controller->td_pool); in fsl_udc_remove()
Dfsl_usb2_udc.h497 struct dma_pool *td_pool; /* dma pool for DTD */ member