1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (c) 2016 MediaTek Inc.
4 * Author: PC Chen <pc.chen@mediatek.com>
5 * Tiffany Lin <tiffany.lin@mediatek.com>
6 */
7
8 #include <linux/bitfield.h>
9 #include <linux/slab.h>
10 #include <linux/interrupt.h>
11 #include <linux/irq.h>
12 #include <linux/mfd/syscon.h>
13 #include <linux/module.h>
14 #include <linux/of.h>
15 #include <linux/of_platform.h>
16 #include <linux/platform_device.h>
17 #include <linux/pm_runtime.h>
18 #include <linux/regmap.h>
19 #include <media/v4l2-event.h>
20 #include <media/v4l2-mem2mem.h>
21 #include <media/videobuf2-dma-contig.h>
22 #include <media/v4l2-device.h>
23
24 #include "mtk_vcodec_dec.h"
25 #include "mtk_vcodec_dec_hw.h"
26 #include "mtk_vcodec_dec_pm.h"
27 #include "../common/mtk_vcodec_intr.h"
28
mtk_vcodec_get_hw_count(struct mtk_vcodec_dec_ctx * ctx,struct mtk_vcodec_dec_dev * dev)29 static int mtk_vcodec_get_hw_count(struct mtk_vcodec_dec_ctx *ctx, struct mtk_vcodec_dec_dev *dev)
30 {
31 switch (dev->vdec_pdata->hw_arch) {
32 case MTK_VDEC_PURE_SINGLE_CORE:
33 return MTK_VDEC_ONE_CORE;
34 case MTK_VDEC_LAT_SINGLE_CORE:
35 return MTK_VDEC_ONE_LAT_ONE_CORE;
36 default:
37 mtk_v4l2_vdec_err(ctx, "hw arch %d not supported", dev->vdec_pdata->hw_arch);
38 return MTK_VDEC_NO_HW;
39 }
40 }
41
mtk_vcodec_is_hw_active(struct mtk_vcodec_dec_dev * dev)42 static bool mtk_vcodec_is_hw_active(struct mtk_vcodec_dec_dev *dev)
43 {
44 u32 cg_status;
45
46 if (dev->vdecsys_regmap)
47 return !regmap_test_bits(dev->vdecsys_regmap, VDEC_HW_ACTIVE_ADDR,
48 VDEC_HW_ACTIVE_MASK);
49
50 cg_status = readl(dev->reg_base[VDEC_SYS] + VDEC_HW_ACTIVE_ADDR);
51 return !FIELD_GET(VDEC_HW_ACTIVE_MASK, cg_status);
52 }
53
mtk_vcodec_dec_irq_handler(int irq,void * priv)54 static irqreturn_t mtk_vcodec_dec_irq_handler(int irq, void *priv)
55 {
56 struct mtk_vcodec_dec_dev *dev = priv;
57 struct mtk_vcodec_dec_ctx *ctx;
58 unsigned int dec_done_status = 0;
59 void __iomem *vdec_misc_addr = dev->reg_base[VDEC_MISC] +
60 VDEC_IRQ_CFG_REG;
61
62 ctx = mtk_vcodec_get_curr_ctx(dev, MTK_VDEC_CORE);
63
64 if (!mtk_vcodec_is_hw_active(dev)) {
65 mtk_v4l2_vdec_err(ctx, "DEC ISR, VDEC active is not 0x0");
66 return IRQ_HANDLED;
67 }
68
69 dec_done_status = readl(vdec_misc_addr);
70 ctx->irq_status = dec_done_status;
71 if ((dec_done_status & MTK_VDEC_IRQ_STATUS_DEC_SUCCESS) !=
72 MTK_VDEC_IRQ_STATUS_DEC_SUCCESS)
73 return IRQ_HANDLED;
74
75 /* clear interrupt */
76 writel((readl(vdec_misc_addr) | VDEC_IRQ_CFG),
77 dev->reg_base[VDEC_MISC] + VDEC_IRQ_CFG_REG);
78 writel((readl(vdec_misc_addr) & ~VDEC_IRQ_CLR),
79 dev->reg_base[VDEC_MISC] + VDEC_IRQ_CFG_REG);
80
81 wake_up_dec_ctx(ctx, MTK_INST_IRQ_RECEIVED, 0);
82
83 mtk_v4l2_vdec_dbg(3, ctx, "wake up ctx %d, dec_done_status=%x", ctx->id, dec_done_status);
84
85 return IRQ_HANDLED;
86 }
87
mtk_vcodec_get_reg_bases(struct mtk_vcodec_dec_dev * dev)88 static int mtk_vcodec_get_reg_bases(struct mtk_vcodec_dec_dev *dev)
89 {
90 struct platform_device *pdev = dev->plat_dev;
91 int reg_num, i;
92 struct resource *res;
93 bool has_vdecsys_reg;
94 int num_max_vdec_regs;
95 static const char * const mtk_dec_reg_names[] = {
96 "misc",
97 "ld",
98 "top",
99 "cm",
100 "ad",
101 "av",
102 "pp",
103 "hwd",
104 "hwq",
105 "hwb",
106 "hwg"
107 };
108
109 /*
110 * If we have reg-names in devicetree, this means that we're on a new
111 * register organization, which implies that the VDEC_SYS iospace gets
112 * R/W through a syscon (regmap).
113 * Here we try to get the "misc" iostart only to check if we have reg-names
114 */
115 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "misc");
116 if (res)
117 has_vdecsys_reg = false;
118 else
119 has_vdecsys_reg = true;
120
121 num_max_vdec_regs = has_vdecsys_reg ? NUM_MAX_VDEC_REG_BASE :
122 ARRAY_SIZE(mtk_dec_reg_names);
123
124 /* Sizeof(u32) * 4 bytes for each register base. */
125 reg_num = of_property_count_elems_of_size(pdev->dev.of_node, "reg",
126 sizeof(u32) * 4);
127 if (reg_num <= 0 || reg_num > num_max_vdec_regs) {
128 dev_err(&pdev->dev, "Invalid register property size: %d\n", reg_num);
129 return -EINVAL;
130 }
131
132 if (has_vdecsys_reg) {
133 for (i = 0; i < reg_num; i++) {
134 dev->reg_base[i] = devm_platform_ioremap_resource(pdev, i);
135 if (IS_ERR(dev->reg_base[i]))
136 return PTR_ERR(dev->reg_base[i]);
137
138 dev_dbg(&pdev->dev, "reg[%d] base=%p", i, dev->reg_base[i]);
139 }
140 } else {
141 for (i = 0; i < reg_num; i++) {
142 dev->reg_base[i+1] = devm_platform_ioremap_resource_byname(pdev, mtk_dec_reg_names[i]);
143 if (IS_ERR(dev->reg_base[i+1]))
144 return PTR_ERR(dev->reg_base[i+1]);
145
146 dev_dbg(&pdev->dev, "reg[%d] base=%p", i + 1, dev->reg_base[i + 1]);
147 }
148
149 dev->vdecsys_regmap = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,
150 "mediatek,vdecsys");
151 if (IS_ERR(dev->vdecsys_regmap)) {
152 dev_err(&pdev->dev, "Missing mediatek,vdecsys property");
153 return PTR_ERR(dev->vdecsys_regmap);
154 }
155 }
156
157 return 0;
158 }
159
mtk_vcodec_init_dec_resources(struct mtk_vcodec_dec_dev * dev)160 static int mtk_vcodec_init_dec_resources(struct mtk_vcodec_dec_dev *dev)
161 {
162 struct platform_device *pdev = dev->plat_dev;
163 int ret;
164
165 ret = mtk_vcodec_get_reg_bases(dev);
166 if (ret)
167 return ret;
168
169 if (dev->vdec_pdata->is_subdev_supported)
170 return 0;
171
172 dev->dec_irq = platform_get_irq(pdev, 0);
173 if (dev->dec_irq < 0)
174 return dev->dec_irq;
175
176 irq_set_status_flags(dev->dec_irq, IRQ_NOAUTOEN);
177 ret = devm_request_irq(&pdev->dev, dev->dec_irq,
178 mtk_vcodec_dec_irq_handler, 0, pdev->name, dev);
179 if (ret) {
180 dev_err(&pdev->dev, "failed to install dev->dec_irq %d (%d)",
181 dev->dec_irq, ret);
182 return ret;
183 }
184
185 ret = mtk_vcodec_init_dec_clk(pdev, &dev->pm);
186 if (ret < 0) {
187 dev_err(&pdev->dev, "failed to get mt vcodec clock source");
188 return ret;
189 }
190
191 pm_runtime_enable(&pdev->dev);
192 return 0;
193 }
194
fops_vcodec_open(struct file * file)195 static int fops_vcodec_open(struct file *file)
196 {
197 struct mtk_vcodec_dec_dev *dev = video_drvdata(file);
198 struct mtk_vcodec_dec_ctx *ctx = NULL;
199 int ret = 0, i, hw_count;
200 struct vb2_queue *src_vq;
201
202 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
203 if (!ctx)
204 return -ENOMEM;
205
206 mutex_lock(&dev->dev_mutex);
207 ctx->id = dev->id_counter++;
208 v4l2_fh_init(&ctx->fh, video_devdata(file));
209 file->private_data = &ctx->fh;
210 v4l2_fh_add(&ctx->fh);
211 INIT_LIST_HEAD(&ctx->list);
212 ctx->dev = dev;
213 if (ctx->dev->vdec_pdata->is_subdev_supported) {
214 hw_count = mtk_vcodec_get_hw_count(ctx, dev);
215 if (!hw_count || !dev->subdev_prob_done) {
216 ret = -EINVAL;
217 goto err_ctrls_setup;
218 }
219
220 ret = dev->subdev_prob_done(dev);
221 if (ret)
222 goto err_ctrls_setup;
223
224 for (i = 0; i < hw_count; i++)
225 init_waitqueue_head(&ctx->queue[i]);
226 } else {
227 init_waitqueue_head(&ctx->queue[0]);
228 }
229 mutex_init(&ctx->lock);
230
231 ctx->type = MTK_INST_DECODER;
232 ret = dev->vdec_pdata->ctrls_setup(ctx);
233 if (ret) {
234 mtk_v4l2_vdec_err(ctx, "Failed to setup mt vcodec controls");
235 goto err_ctrls_setup;
236 }
237 ctx->m2m_ctx = v4l2_m2m_ctx_init(dev->m2m_dev_dec, ctx,
238 &mtk_vcodec_dec_queue_init);
239 if (IS_ERR((__force void *)ctx->m2m_ctx)) {
240 ret = PTR_ERR((__force void *)ctx->m2m_ctx);
241 mtk_v4l2_vdec_err(ctx, "Failed to v4l2_m2m_ctx_init() (%d)", ret);
242 goto err_m2m_ctx_init;
243 }
244 src_vq = v4l2_m2m_get_vq(ctx->m2m_ctx,
245 V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE);
246 ctx->empty_flush_buf.vb.vb2_buf.vb2_queue = src_vq;
247 mtk_vcodec_dec_set_default_params(ctx);
248
249 if (v4l2_fh_is_singular(&ctx->fh)) {
250 /*
251 * Does nothing if firmware was already loaded.
252 */
253 ret = mtk_vcodec_fw_load_firmware(dev->fw_handler);
254 if (ret < 0) {
255 /*
256 * Return 0 if downloading firmware successfully,
257 * otherwise it is failed
258 */
259 mtk_v4l2_vdec_err(ctx, "failed to load firmware!");
260 goto err_load_fw;
261 }
262
263 dev->dec_capability =
264 mtk_vcodec_fw_get_vdec_capa(dev->fw_handler);
265
266 mtk_v4l2_vdec_dbg(0, ctx, "decoder capability %x", dev->dec_capability);
267 }
268
269 ctx->dev->vdec_pdata->init_vdec_params(ctx);
270
271 list_add(&ctx->list, &dev->ctx_list);
272 mtk_vcodec_dbgfs_create(ctx);
273
274 mutex_unlock(&dev->dev_mutex);
275 mtk_v4l2_vdec_dbg(0, ctx, "%s decoder [%d]", dev_name(&dev->plat_dev->dev), ctx->id);
276 return ret;
277
278 /* Deinit when failure occurred */
279 err_load_fw:
280 v4l2_m2m_ctx_release(ctx->m2m_ctx);
281 err_m2m_ctx_init:
282 v4l2_ctrl_handler_free(&ctx->ctrl_hdl);
283 err_ctrls_setup:
284 v4l2_fh_del(&ctx->fh);
285 v4l2_fh_exit(&ctx->fh);
286 kfree(ctx);
287 mutex_unlock(&dev->dev_mutex);
288
289 return ret;
290 }
291
fops_vcodec_release(struct file * file)292 static int fops_vcodec_release(struct file *file)
293 {
294 struct mtk_vcodec_dec_dev *dev = video_drvdata(file);
295 struct mtk_vcodec_dec_ctx *ctx = fh_to_dec_ctx(file->private_data);
296
297 mtk_v4l2_vdec_dbg(0, ctx, "[%d] decoder", ctx->id);
298 mutex_lock(&dev->dev_mutex);
299
300 /*
301 * Call v4l2_m2m_ctx_release before mtk_vcodec_dec_release. First, it
302 * makes sure the worker thread is not running after vdec_if_deinit.
303 * Second, the decoder will be flushed and all the buffers will be
304 * returned in stop_streaming.
305 */
306 v4l2_m2m_ctx_release(ctx->m2m_ctx);
307 mtk_vcodec_dec_release(ctx);
308
309 v4l2_fh_del(&ctx->fh);
310 v4l2_fh_exit(&ctx->fh);
311 v4l2_ctrl_handler_free(&ctx->ctrl_hdl);
312
313 mtk_vcodec_dbgfs_remove(dev, ctx->id);
314 list_del_init(&ctx->list);
315 kfree(ctx);
316 mutex_unlock(&dev->dev_mutex);
317 return 0;
318 }
319
320 static const struct v4l2_file_operations mtk_vcodec_fops = {
321 .owner = THIS_MODULE,
322 .open = fops_vcodec_open,
323 .release = fops_vcodec_release,
324 .poll = v4l2_m2m_fop_poll,
325 .unlocked_ioctl = video_ioctl2,
326 .mmap = v4l2_m2m_fop_mmap,
327 };
328
mtk_vcodec_dec_get_chip_name(struct mtk_vcodec_dec_dev * vdec_dev)329 static void mtk_vcodec_dec_get_chip_name(struct mtk_vcodec_dec_dev *vdec_dev)
330 {
331 struct device *dev = &vdec_dev->plat_dev->dev;
332
333 if (of_device_is_compatible(dev->of_node, "mediatek,mt8173-vcodec-dec"))
334 vdec_dev->chip_name = MTK_VDEC_MT8173;
335 else if (of_device_is_compatible(dev->of_node, "mediatek,mt8183-vcodec-dec"))
336 vdec_dev->chip_name = MTK_VDEC_MT8183;
337 else if (of_device_is_compatible(dev->of_node, "mediatek,mt8192-vcodec-dec"))
338 vdec_dev->chip_name = MTK_VDEC_MT8192;
339 else if (of_device_is_compatible(dev->of_node, "mediatek,mt8195-vcodec-dec"))
340 vdec_dev->chip_name = MTK_VDEC_MT8195;
341 else if (of_device_is_compatible(dev->of_node, "mediatek,mt8186-vcodec-dec"))
342 vdec_dev->chip_name = MTK_VDEC_MT8186;
343 else if (of_device_is_compatible(dev->of_node, "mediatek,mt8188-vcodec-dec"))
344 vdec_dev->chip_name = MTK_VDEC_MT8188;
345 else
346 vdec_dev->chip_name = MTK_VDEC_INVAL;
347 }
348
mtk_vcodec_probe(struct platform_device * pdev)349 static int mtk_vcodec_probe(struct platform_device *pdev)
350 {
351 struct mtk_vcodec_dec_dev *dev;
352 struct video_device *vfd_dec;
353 phandle rproc_phandle;
354 enum mtk_vcodec_fw_type fw_type;
355 int i, ret;
356
357 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
358 if (!dev)
359 return -ENOMEM;
360
361 INIT_LIST_HEAD(&dev->ctx_list);
362 dev->plat_dev = pdev;
363
364 mtk_vcodec_dec_get_chip_name(dev);
365 if (dev->chip_name == MTK_VDEC_INVAL) {
366 dev_err(&pdev->dev, "Failed to get decoder chip name");
367 return -EINVAL;
368 }
369
370 dev->vdec_pdata = of_device_get_match_data(&pdev->dev);
371 if (!of_property_read_u32(pdev->dev.of_node, "mediatek,vpu",
372 &rproc_phandle)) {
373 fw_type = VPU;
374 } else if (!of_property_read_u32(pdev->dev.of_node, "mediatek,scp",
375 &rproc_phandle)) {
376 fw_type = SCP;
377 } else {
378 dev_dbg(&pdev->dev, "Could not get vdec IPI device");
379 return -ENODEV;
380 }
381 dma_set_max_seg_size(&pdev->dev, UINT_MAX);
382
383 dev->fw_handler = mtk_vcodec_fw_select(dev, fw_type, DECODER);
384 if (IS_ERR(dev->fw_handler))
385 return PTR_ERR(dev->fw_handler);
386
387 ret = mtk_vcodec_init_dec_resources(dev);
388 if (ret) {
389 dev_err(&pdev->dev, "Failed to init dec resources");
390 goto err_dec_pm;
391 }
392
393 if (IS_VDEC_LAT_ARCH(dev->vdec_pdata->hw_arch)) {
394 dev->core_workqueue =
395 alloc_ordered_workqueue("core-decoder",
396 WQ_MEM_RECLAIM | WQ_FREEZABLE);
397 if (!dev->core_workqueue) {
398 dev_dbg(&pdev->dev, "Failed to create core workqueue");
399 ret = -EINVAL;
400 goto err_res;
401 }
402 }
403
404 for (i = 0; i < MTK_VDEC_HW_MAX; i++)
405 mutex_init(&dev->dec_mutex[i]);
406 mutex_init(&dev->dev_mutex);
407 spin_lock_init(&dev->irqlock);
408
409 snprintf(dev->v4l2_dev.name, sizeof(dev->v4l2_dev.name), "%s",
410 "[/MTK_V4L2_VDEC]");
411
412 ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
413 if (ret) {
414 dev_err(&pdev->dev, "v4l2_device_register err=%d", ret);
415 goto err_core_workq;
416 }
417
418 vfd_dec = video_device_alloc();
419 if (!vfd_dec) {
420 dev_err(&pdev->dev, "Failed to allocate video device");
421 ret = -ENOMEM;
422 goto err_dec_alloc;
423 }
424 vfd_dec->fops = &mtk_vcodec_fops;
425 vfd_dec->ioctl_ops = &mtk_vdec_ioctl_ops;
426 vfd_dec->release = video_device_release;
427 vfd_dec->lock = &dev->dev_mutex;
428 vfd_dec->v4l2_dev = &dev->v4l2_dev;
429 vfd_dec->vfl_dir = VFL_DIR_M2M;
430 vfd_dec->device_caps = V4L2_CAP_VIDEO_M2M_MPLANE |
431 V4L2_CAP_STREAMING;
432
433 snprintf(vfd_dec->name, sizeof(vfd_dec->name), "%s",
434 MTK_VCODEC_DEC_NAME);
435 video_set_drvdata(vfd_dec, dev);
436 dev->vfd_dec = vfd_dec;
437 platform_set_drvdata(pdev, dev);
438
439 dev->m2m_dev_dec = v4l2_m2m_init(&mtk_vdec_m2m_ops);
440 if (IS_ERR((__force void *)dev->m2m_dev_dec)) {
441 dev_err(&pdev->dev, "Failed to init mem2mem dec device");
442 ret = PTR_ERR((__force void *)dev->m2m_dev_dec);
443 goto err_dec_alloc;
444 }
445
446 dev->decode_workqueue =
447 alloc_ordered_workqueue(MTK_VCODEC_DEC_NAME,
448 WQ_MEM_RECLAIM | WQ_FREEZABLE);
449 if (!dev->decode_workqueue) {
450 dev_err(&pdev->dev, "Failed to create decode workqueue");
451 ret = -EINVAL;
452 goto err_event_workq;
453 }
454
455 if (dev->vdec_pdata->is_subdev_supported) {
456 ret = of_platform_populate(pdev->dev.of_node, NULL, NULL,
457 &pdev->dev);
458 if (ret) {
459 dev_err(&pdev->dev, "Main device of_platform_populate failed.");
460 goto err_reg_cont;
461 }
462 } else {
463 set_bit(MTK_VDEC_CORE, dev->subdev_bitmap);
464 }
465
466 atomic_set(&dev->dec_active_cnt, 0);
467 memset(dev->vdec_racing_info, 0, sizeof(dev->vdec_racing_info));
468 mutex_init(&dev->dec_racing_info_mutex);
469
470 ret = video_register_device(vfd_dec, VFL_TYPE_VIDEO, -1);
471 if (ret) {
472 dev_err(&pdev->dev, "Failed to register video device");
473 goto err_reg_cont;
474 }
475
476 if (dev->vdec_pdata->uses_stateless_api) {
477 v4l2_disable_ioctl(vfd_dec, VIDIOC_DECODER_CMD);
478 v4l2_disable_ioctl(vfd_dec, VIDIOC_TRY_DECODER_CMD);
479
480 dev->mdev_dec.dev = &pdev->dev;
481 strscpy(dev->mdev_dec.model, MTK_VCODEC_DEC_NAME,
482 sizeof(dev->mdev_dec.model));
483
484 media_device_init(&dev->mdev_dec);
485 dev->mdev_dec.ops = &mtk_vcodec_media_ops;
486 dev->v4l2_dev.mdev = &dev->mdev_dec;
487
488 ret = v4l2_m2m_register_media_controller(dev->m2m_dev_dec, dev->vfd_dec,
489 MEDIA_ENT_F_PROC_VIDEO_DECODER);
490 if (ret) {
491 dev_err(&pdev->dev, "Failed to register media controller");
492 goto err_dec_mem_init;
493 }
494
495 ret = media_device_register(&dev->mdev_dec);
496 if (ret) {
497 dev_err(&pdev->dev, "Failed to register media device");
498 goto err_media_reg;
499 }
500
501 dev_dbg(&pdev->dev, "media registered as /dev/media%d", vfd_dec->minor);
502 }
503
504 mtk_vcodec_dbgfs_init(dev, false);
505 dev_dbg(&pdev->dev, "decoder registered as /dev/video%d", vfd_dec->minor);
506
507 return 0;
508
509 err_media_reg:
510 v4l2_m2m_unregister_media_controller(dev->m2m_dev_dec);
511 err_dec_mem_init:
512 video_unregister_device(vfd_dec);
513 err_reg_cont:
514 if (dev->vdec_pdata->uses_stateless_api)
515 media_device_cleanup(&dev->mdev_dec);
516 destroy_workqueue(dev->decode_workqueue);
517 err_event_workq:
518 v4l2_m2m_release(dev->m2m_dev_dec);
519 err_dec_alloc:
520 v4l2_device_unregister(&dev->v4l2_dev);
521 err_core_workq:
522 if (IS_VDEC_LAT_ARCH(dev->vdec_pdata->hw_arch))
523 destroy_workqueue(dev->core_workqueue);
524 err_res:
525 if (!dev->vdec_pdata->is_subdev_supported)
526 pm_runtime_disable(dev->pm.dev);
527 err_dec_pm:
528 mtk_vcodec_fw_release(dev->fw_handler);
529 return ret;
530 }
531
532 static const struct of_device_id mtk_vcodec_match[] = {
533 {
534 .compatible = "mediatek,mt8173-vcodec-dec",
535 .data = &mtk_vdec_8173_pdata,
536 },
537 {
538 .compatible = "mediatek,mt8183-vcodec-dec",
539 .data = &mtk_vdec_8183_pdata,
540 },
541 {
542 .compatible = "mediatek,mt8192-vcodec-dec",
543 .data = &mtk_lat_sig_core_pdata,
544 },
545 {
546 .compatible = "mediatek,mt8186-vcodec-dec",
547 .data = &mtk_vdec_single_core_pdata,
548 },
549 {
550 .compatible = "mediatek,mt8195-vcodec-dec",
551 .data = &mtk_lat_sig_core_pdata,
552 },
553 {
554 .compatible = "mediatek,mt8188-vcodec-dec",
555 .data = &mtk_lat_sig_core_pdata,
556 },
557 {},
558 };
559
560 MODULE_DEVICE_TABLE(of, mtk_vcodec_match);
561
mtk_vcodec_dec_remove(struct platform_device * pdev)562 static void mtk_vcodec_dec_remove(struct platform_device *pdev)
563 {
564 struct mtk_vcodec_dec_dev *dev = platform_get_drvdata(pdev);
565
566 destroy_workqueue(dev->decode_workqueue);
567
568 if (media_devnode_is_registered(dev->mdev_dec.devnode)) {
569 media_device_unregister(&dev->mdev_dec);
570 v4l2_m2m_unregister_media_controller(dev->m2m_dev_dec);
571 media_device_cleanup(&dev->mdev_dec);
572 }
573
574 if (dev->m2m_dev_dec)
575 v4l2_m2m_release(dev->m2m_dev_dec);
576
577 if (dev->vfd_dec)
578 video_unregister_device(dev->vfd_dec);
579
580 mtk_vcodec_dbgfs_deinit(&dev->dbgfs);
581 v4l2_device_unregister(&dev->v4l2_dev);
582 if (!dev->vdec_pdata->is_subdev_supported)
583 pm_runtime_disable(dev->pm.dev);
584 mtk_vcodec_fw_release(dev->fw_handler);
585 }
586
587 static struct platform_driver mtk_vcodec_dec_driver = {
588 .probe = mtk_vcodec_probe,
589 .remove_new = mtk_vcodec_dec_remove,
590 .driver = {
591 .name = MTK_VCODEC_DEC_NAME,
592 .of_match_table = mtk_vcodec_match,
593 },
594 };
595
596 module_platform_driver(mtk_vcodec_dec_driver);
597
598 MODULE_LICENSE("GPL v2");
599 MODULE_DESCRIPTION("Mediatek video codec V4L2 decoder driver");
600