summaryrefslogtreecommitdiffstats
path: root/drivers/media/platform/mediatek/vcodec/mtk_vcodec_intr.c
blob: 30815ba9bb501640815470cc488fe2e361c35762 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (c) 2016 MediaTek Inc.
* Author: Tiffany Lin <tiffany.lin@mediatek.com>
*/

#include <linux/errno.h>
#include <linux/wait.h>

#include "mtk_vcodec_drv.h"
#include "mtk_vcodec_intr.h"
#include "mtk_vcodec_util.h"

int mtk_vcodec_wait_for_done_ctx(void *priv, int command, unsigned int timeout_ms,
				 unsigned int hw_id)
{
	struct mtk_vcodec_ctx *ctx = priv;
	long timeout_jiff, ret;
	int ctx_id, ctx_type, status = 0;
	int *ctx_int_cond, *ctx_int_type;
	wait_queue_head_t *ctx_queue;

	ctx_id = ctx->id;
	ctx_type = ctx->type;
	ctx_int_cond = ctx->int_cond;
	ctx_int_type = ctx->int_type;
	ctx_queue = ctx->queue;

	timeout_jiff = msecs_to_jiffies(timeout_ms);
	ret = wait_event_interruptible_timeout(ctx_queue[hw_id],
					       ctx_int_cond[hw_id],
					       timeout_jiff);

	if (!ret) {
		status = -1;	/* timeout */
		mtk_v4l2_err("[%d] cmd=%d, type=%d, dec timeout=%ums (%d %d)",
			     ctx_id, command, ctx_type, timeout_ms,
			     ctx_int_cond[hw_id], ctx_int_type[hw_id]);
	} else if (-ERESTARTSYS == ret) {
		status = -1;
		mtk_v4l2_err("[%d] cmd=%d, type=%d, dec inter fail (%d %d)",
			     ctx_id, command, ctx_type,
			     ctx_int_cond[hw_id], ctx_int_type[hw_id]);
	}

	ctx_int_cond[hw_id] = 0;
	ctx_int_type[hw_id] = 0;

	return status;
}
EXPORT_SYMBOL(mtk_vcodec_wait_for_done_ctx);