Lines Matching full:run
15 * struct ipu_image_convert_run - image conversion run request struct
18 * @in_phys: dma addr of input image buffer for this run
19 * @out_phys: dma addr of output image buffer for this run
20 * @status: completion status of this run
37 * @run: the completed conversion run pointer
40 typedef void (*ipu_image_convert_cb_t)(struct ipu_image_convert_run *run,
77 * @complete: run completion callback
101 * error run status.
109 * ipu_image_convert_queue() - queue a conversion run
111 * @run: the run request pointer
116 * for this conversion run.
118 * When this conversion completes, the run pointer is returned via the
119 * completion callback. The caller is responsible for freeing the run
126 int ipu_image_convert_queue(struct ipu_image_convert_run *run);
135 * returned via the completion callback with an error run status.
147 * @complete: run completion callback
150 * Request a single image conversion. Returns the run that has been queued.
151 * A conversion context is automatically created and is available in run->ctx.
155 * On successful return the caller can queue more run requests if needed, using
156 * the prepared context in run->ctx. The caller is responsible for unpreparing