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,
90 * @complete: run completion callback
114 * error run status.
122 * ipu_image_convert_queue() - queue a conversion run
124 * @run: the run request pointer
129 * for this conversion run.
131 * When this conversion completes, the run pointer is returned via the
132 * completion callback. The caller is responsible for freeing the run
139 int ipu_image_convert_queue(struct ipu_image_convert_run *run);
148 * returned via the completion callback with an error run status.
160 * @complete: run completion callback
163 * Request a single image conversion. Returns the run that has been queued.
164 * A conversion context is automatically created and is available in run->ctx.
168 * On successful return the caller can queue more run requests if needed, using
169 * the prepared context in run->ctx. The caller is responsible for unpreparing
191 * and the run freed on return.