Lines Matching refs:vdoa
41 #include "imx-vdoa.h"
400 vdoa_node = of_find_compatible_node(NULL, NULL, "fsl,imx6q-vdoa");
481 /* Skip YUYV if the vdoa is not available */
482 if (!ctx->vdoa && f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE &&
530 /* Skip YUYV if the vdoa is not available */
531 if (!ctx->vdoa && f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE &&
559 if (!ctx->vdoa) {
838 vdoa_context_configure(ctx->vdoa,
1324 /* Disallow YUYV if the vdoa is not available */
1325 if (!ctx->vdoa && f->pixel_format == V4L2_PIX_FMT_YUYV)
2667 if (ctx->dev->vdoa && !disable_vdoa) {
2668 ctx->vdoa = vdoa_context_create(dev->vdoa);
2669 if (!ctx->vdoa)
2671 "Failed to create vdoa context: not using vdoa");
2748 if (ctx->vdoa)
2749 vdoa_context_destroy(ctx->vdoa);
3225 dev->vdoa = coda_get_vdoa_data();
3226 if (PTR_ERR(dev->vdoa) == -EPROBE_DEFER)