Home
last modified time | relevance | path

Searched refs:scratchpad (Results 1 – 2 of 2) sorted by relevance

/rk3399_rockchip-uboot/drivers/usb/host/
H A Dxhci-mem.c106 if (!ctrl->scratchpad) in xhci_scratchpad_free()
111 free((void *)(uintptr_t)ctrl->scratchpad->sp_array[0]); in xhci_scratchpad_free()
112 free(ctrl->scratchpad->sp_array); in xhci_scratchpad_free()
113 free(ctrl->scratchpad); in xhci_scratchpad_free()
114 ctrl->scratchpad = NULL; in xhci_scratchpad_free()
352 struct xhci_scratchpad *scratchpad; in xhci_scratchpad_alloc() local
362 scratchpad = malloc(sizeof(*scratchpad)); in xhci_scratchpad_alloc()
363 if (!scratchpad) in xhci_scratchpad_alloc()
365 ctrl->scratchpad = scratchpad; in xhci_scratchpad_alloc()
367 scratchpad->sp_array = xhci_malloc(num_sp * sizeof(u64)); in xhci_scratchpad_alloc()
[all …]
/rk3399_rockchip-uboot/include/usb/
H A Dxhci.h1231 struct xhci_scratchpad *scratchpad; member