Commit d40e9527 authored by kyrie wu's avatar kyrie wu Committed by Mauro Carvalho Chehab

media: mtk-jpeg: reconstructs the initialization mode of worker

exclude is_jpgenc_multihw or is_jpgdec_multihw for judgment,
and re-initialize jpeg worker.
Signed-off-by: default avatarkyrie wu <kyrie.wu@mediatek.com>
Signed-off-by: default avatarirui wang <irui.wang@mediatek.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent 86379bd9
...@@ -1575,12 +1575,7 @@ static int mtk_jpeg_open(struct file *file) ...@@ -1575,12 +1575,7 @@ static int mtk_jpeg_open(struct file *file)
goto free; goto free;
} }
if (jpeg->is_jpgenc_multihw) INIT_WORK(&ctx->jpeg_work, jpeg->variant->jpeg_worker);
INIT_WORK(&ctx->jpeg_work, mtk_jpegenc_worker);
if (jpeg->is_jpgdec_multihw)
INIT_WORK(&ctx->jpeg_work, mtk_jpegdec_worker);
INIT_LIST_HEAD(&ctx->dst_done_queue); INIT_LIST_HEAD(&ctx->dst_done_queue);
spin_lock_init(&ctx->done_queue_lock); spin_lock_init(&ctx->done_queue_lock);
v4l2_fh_init(&ctx->fh, vfd); v4l2_fh_init(&ctx->fh, vfd);
...@@ -1902,6 +1897,7 @@ static struct mtk_jpeg_variant mtk8195_jpegenc_drvdata = { ...@@ -1902,6 +1897,7 @@ static struct mtk_jpeg_variant mtk8195_jpegenc_drvdata = {
.out_q_default_fourcc = V4L2_PIX_FMT_YUYV, .out_q_default_fourcc = V4L2_PIX_FMT_YUYV,
.cap_q_default_fourcc = V4L2_PIX_FMT_JPEG, .cap_q_default_fourcc = V4L2_PIX_FMT_JPEG,
.multi_core = true, .multi_core = true,
.jpeg_worker = mtk_jpegenc_worker,
}; };
static const struct mtk_jpeg_variant mtk8195_jpegdec_drvdata = { static const struct mtk_jpeg_variant mtk8195_jpegdec_drvdata = {
...@@ -1914,6 +1910,7 @@ static const struct mtk_jpeg_variant mtk8195_jpegdec_drvdata = { ...@@ -1914,6 +1910,7 @@ static const struct mtk_jpeg_variant mtk8195_jpegdec_drvdata = {
.out_q_default_fourcc = V4L2_PIX_FMT_JPEG, .out_q_default_fourcc = V4L2_PIX_FMT_JPEG,
.cap_q_default_fourcc = V4L2_PIX_FMT_YUV420M, .cap_q_default_fourcc = V4L2_PIX_FMT_YUV420M,
.multi_core = true, .multi_core = true,
.jpeg_worker = mtk_jpegdec_worker,
}; };
static const struct of_device_id mtk_jpeg_match[] = { static const struct of_device_id mtk_jpeg_match[] = {
......
...@@ -61,6 +61,7 @@ enum mtk_jpeg_ctx_state { ...@@ -61,6 +61,7 @@ enum mtk_jpeg_ctx_state {
* @out_q_default_fourcc: output queue default fourcc * @out_q_default_fourcc: output queue default fourcc
* @cap_q_default_fourcc: capture queue default fourcc * @cap_q_default_fourcc: capture queue default fourcc
* @multi_core: mark jpeg hw is multi_core or not * @multi_core: mark jpeg hw is multi_core or not
* @jpeg_worker: jpeg dec or enc worker
*/ */
struct mtk_jpeg_variant { struct mtk_jpeg_variant {
struct clk_bulk_data *clks; struct clk_bulk_data *clks;
...@@ -76,6 +77,7 @@ struct mtk_jpeg_variant { ...@@ -76,6 +77,7 @@ struct mtk_jpeg_variant {
u32 out_q_default_fourcc; u32 out_q_default_fourcc;
u32 cap_q_default_fourcc; u32 cap_q_default_fourcc;
bool multi_core; bool multi_core;
void (*jpeg_worker)(struct work_struct *work);
}; };
struct mtk_jpeg_src_buf { struct mtk_jpeg_src_buf {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment