Lines Matching refs:vdoa
41 #include "imx-vdoa.h"
399 vdoa_node = of_find_compatible_node(NULL, NULL, "fsl,imx6q-vdoa");
480 /* Skip YUYV if the vdoa is not available */
481 if (!ctx->vdoa && f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE &&
529 /* Skip YUYV if the vdoa is not available */
530 if (!ctx->vdoa && f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE &&
558 if (!ctx->vdoa) {
825 vdoa_context_configure(ctx->vdoa,
1327 /* Disallow YUYV if the vdoa is not available */
1328 if (!ctx->vdoa && f->pixel_format == V4L2_PIX_FMT_YUYV)
2650 if (ctx->dev->vdoa && !disable_vdoa) {
2651 ctx->vdoa = vdoa_context_create(dev->vdoa);
2652 if (!ctx->vdoa)
2654 "Failed to create vdoa context: not using vdoa");
2730 if (ctx->vdoa)
2731 vdoa_context_destroy(ctx->vdoa);
3212 dev->vdoa = coda_get_vdoa_data();
3213 if (PTR_ERR(dev->vdoa) == -EPROBE_DEFER)