1 // SPDX-License-Identifier: GPL-2.0
3 * Hantro VPU codec driver
5 * Copyright (C) 2018 Collabora, Ltd.
6 * Copyright 2018 Google LLC.
7 * Tomasz Figa <tfiga@chromium.org>
9 * Based on s5p-mfc driver by Samsung Electronics Co., Ltd.
10 * Copyright (C) 2011 Samsung Electronics Co., Ltd.
13 #include <linux/clk.h>
14 #include <linux/module.h>
16 #include <linux/platform_device.h>
18 #include <linux/pm_runtime.h>
19 #include <linux/slab.h>
20 #include <linux/videodev2.h>
21 #include <linux/workqueue.h>
22 #include <media/v4l2-event.h>
23 #include <media/v4l2-mem2mem.h>
24 #include <media/videobuf2-core.h>
25 #include <media/videobuf2-vmalloc.h>
27 #include "hantro_v4l2.h"
29 #include "hantro_hw.h"
31 #define DRIVER_NAME "hantro-vpu"
34 module_param_named(debug, hantro_debug, int, 0644);
35 MODULE_PARM_DESC(debug,
36 "Debug level - higher value produces more verbose messages");
38 void *hantro_get_ctrl(struct hantro_ctx *ctx, u32 id)
40 struct v4l2_ctrl *ctrl;
42 ctrl = v4l2_ctrl_find(&ctx->ctrl_handler, id);
43 return ctrl ? ctrl->p_cur.p : NULL;
46 dma_addr_t hantro_get_ref(struct hantro_ctx *ctx, u64 ts)
48 struct vb2_queue *q = v4l2_m2m_get_dst_vq(ctx->fh.m2m_ctx);
49 struct vb2_buffer *buf;
51 buf = vb2_find_buffer(q, ts);
54 return hantro_get_dec_buf_addr(ctx, buf);
57 static const struct v4l2_event hantro_eos_event = {
58 .type = V4L2_EVENT_EOS
61 static void hantro_job_finish_no_pm(struct hantro_dev *vpu,
62 struct hantro_ctx *ctx,
63 enum vb2_buffer_state result)
65 struct vb2_v4l2_buffer *src, *dst;
67 src = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
68 dst = v4l2_m2m_next_dst_buf(ctx->fh.m2m_ctx);
75 src->sequence = ctx->sequence_out++;
76 dst->sequence = ctx->sequence_cap++;
78 if (v4l2_m2m_is_last_draining_src_buf(ctx->fh.m2m_ctx, src)) {
79 dst->flags |= V4L2_BUF_FLAG_LAST;
80 v4l2_event_queue_fh(&ctx->fh, &hantro_eos_event);
81 v4l2_m2m_mark_stopped(ctx->fh.m2m_ctx);
84 v4l2_m2m_buf_done_and_job_finish(ctx->dev->m2m_dev, ctx->fh.m2m_ctx,
88 static void hantro_job_finish(struct hantro_dev *vpu,
89 struct hantro_ctx *ctx,
90 enum vb2_buffer_state result)
92 pm_runtime_mark_last_busy(vpu->dev);
93 pm_runtime_put_autosuspend(vpu->dev);
95 clk_bulk_disable(vpu->variant->num_clocks, vpu->clocks);
97 hantro_job_finish_no_pm(vpu, ctx, result);
100 void hantro_irq_done(struct hantro_dev *vpu,
101 enum vb2_buffer_state result)
103 struct hantro_ctx *ctx =
104 v4l2_m2m_get_curr_priv(vpu->m2m_dev);
107 * If cancel_delayed_work returns false
108 * the timeout expired. The watchdog is running,
109 * and will take care of finishing the job.
111 if (cancel_delayed_work(&vpu->watchdog_work)) {
112 if (result == VB2_BUF_STATE_DONE && ctx->codec_ops->done)
113 ctx->codec_ops->done(ctx);
114 hantro_job_finish(vpu, ctx, result);
118 void hantro_watchdog(struct work_struct *work)
120 struct hantro_dev *vpu;
121 struct hantro_ctx *ctx;
123 vpu = container_of(to_delayed_work(work),
124 struct hantro_dev, watchdog_work);
125 ctx = v4l2_m2m_get_curr_priv(vpu->m2m_dev);
127 vpu_err("frame processing timed out!\n");
128 ctx->codec_ops->reset(ctx);
129 hantro_job_finish(vpu, ctx, VB2_BUF_STATE_ERROR);
133 void hantro_start_prepare_run(struct hantro_ctx *ctx)
135 struct vb2_v4l2_buffer *src_buf;
137 src_buf = hantro_get_src_buf(ctx);
138 v4l2_ctrl_request_setup(src_buf->vb2_buf.req_obj.req,
141 if (!ctx->is_encoder && !ctx->dev->variant->late_postproc) {
142 if (hantro_needs_postproc(ctx, ctx->vpu_dst_fmt))
143 hantro_postproc_enable(ctx);
145 hantro_postproc_disable(ctx);
149 void hantro_end_prepare_run(struct hantro_ctx *ctx)
151 struct vb2_v4l2_buffer *src_buf;
153 if (!ctx->is_encoder && ctx->dev->variant->late_postproc) {
154 if (hantro_needs_postproc(ctx, ctx->vpu_dst_fmt))
155 hantro_postproc_enable(ctx);
157 hantro_postproc_disable(ctx);
160 src_buf = hantro_get_src_buf(ctx);
161 v4l2_ctrl_request_complete(src_buf->vb2_buf.req_obj.req,
164 /* Kick the watchdog. */
165 schedule_delayed_work(&ctx->dev->watchdog_work,
166 msecs_to_jiffies(2000));
169 static void device_run(void *priv)
171 struct hantro_ctx *ctx = priv;
172 struct vb2_v4l2_buffer *src, *dst;
175 src = hantro_get_src_buf(ctx);
176 dst = hantro_get_dst_buf(ctx);
178 ret = pm_runtime_resume_and_get(ctx->dev->dev);
182 ret = clk_bulk_enable(ctx->dev->variant->num_clocks, ctx->dev->clocks);
186 v4l2_m2m_buf_copy_metadata(src, dst, true);
188 if (ctx->codec_ops->run(ctx))
194 hantro_job_finish_no_pm(ctx->dev, ctx, VB2_BUF_STATE_ERROR);
197 static const struct v4l2_m2m_ops vpu_m2m_ops = {
198 .device_run = device_run,
202 queue_init(void *priv, struct vb2_queue *src_vq, struct vb2_queue *dst_vq)
204 struct hantro_ctx *ctx = priv;
207 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
208 src_vq->io_modes = VB2_MMAP | VB2_DMABUF;
209 src_vq->drv_priv = ctx;
210 src_vq->ops = &hantro_queue_ops;
211 src_vq->mem_ops = &vb2_dma_contig_memops;
214 * Driver does mostly sequential access, so sacrifice TLB efficiency
215 * for faster allocation. Also, no CPU access on the source queue,
216 * so no kernel mapping needed.
218 src_vq->dma_attrs = DMA_ATTR_ALLOC_SINGLE_PAGES |
219 DMA_ATTR_NO_KERNEL_MAPPING;
220 src_vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
221 src_vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
222 src_vq->lock = &ctx->dev->vpu_mutex;
223 src_vq->dev = ctx->dev->v4l2_dev.dev;
224 src_vq->supports_requests = true;
226 ret = vb2_queue_init(src_vq);
230 dst_vq->bidirectional = true;
231 dst_vq->mem_ops = &vb2_dma_contig_memops;
232 dst_vq->dma_attrs = DMA_ATTR_ALLOC_SINGLE_PAGES;
234 * The Kernel needs access to the JPEG destination buffer for the
235 * JPEG encoder to fill in the JPEG headers.
237 if (!ctx->is_encoder)
238 dst_vq->dma_attrs |= DMA_ATTR_NO_KERNEL_MAPPING;
240 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
241 dst_vq->io_modes = VB2_MMAP | VB2_DMABUF;
242 dst_vq->drv_priv = ctx;
243 dst_vq->ops = &hantro_queue_ops;
244 dst_vq->buf_struct_size = sizeof(struct hantro_decoded_buffer);
245 dst_vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
246 dst_vq->lock = &ctx->dev->vpu_mutex;
247 dst_vq->dev = ctx->dev->v4l2_dev.dev;
249 return vb2_queue_init(dst_vq);
252 static int hantro_try_ctrl(struct v4l2_ctrl *ctrl)
254 struct hantro_ctx *ctx;
256 ctx = container_of(ctrl->handler,
257 struct hantro_ctx, ctrl_handler);
259 if (ctrl->id == V4L2_CID_STATELESS_H264_SPS) {
260 const struct v4l2_ctrl_h264_sps *sps = ctrl->p_new.p_h264_sps;
262 if (sps->chroma_format_idc > 1)
263 /* Only 4:0:0 and 4:2:0 are supported */
265 if (sps->bit_depth_luma_minus8 != sps->bit_depth_chroma_minus8)
266 /* Luma and chroma bit depth mismatch */
268 if (sps->bit_depth_luma_minus8 != 0)
269 /* Only 8-bit is supported */
271 } else if (ctrl->id == V4L2_CID_STATELESS_HEVC_SPS) {
272 const struct v4l2_ctrl_hevc_sps *sps = ctrl->p_new.p_hevc_sps;
274 if (sps->bit_depth_luma_minus8 != 0 && sps->bit_depth_luma_minus8 != 2)
275 /* Only 8-bit and 10-bit are supported */
278 ctx->bit_depth = sps->bit_depth_luma_minus8 + 8;
279 } else if (ctrl->id == V4L2_CID_STATELESS_VP9_FRAME) {
280 const struct v4l2_ctrl_vp9_frame *dec_params = ctrl->p_new.p_vp9_frame;
282 /* We only support profile 0 */
283 if (dec_params->profile != 0)
289 static int hantro_jpeg_s_ctrl(struct v4l2_ctrl *ctrl)
291 struct hantro_ctx *ctx;
293 ctx = container_of(ctrl->handler,
294 struct hantro_ctx, ctrl_handler);
296 vpu_debug(1, "s_ctrl: id = %d, val = %d\n", ctrl->id, ctrl->val);
299 case V4L2_CID_JPEG_COMPRESSION_QUALITY:
300 ctx->jpeg_quality = ctrl->val;
309 static int hantro_vp9_s_ctrl(struct v4l2_ctrl *ctrl)
311 struct hantro_ctx *ctx;
313 ctx = container_of(ctrl->handler,
314 struct hantro_ctx, ctrl_handler);
317 case V4L2_CID_STATELESS_VP9_FRAME:
318 ctx->bit_depth = ctrl->p_new.p_vp9_frame->bit_depth;
327 static const struct v4l2_ctrl_ops hantro_ctrl_ops = {
328 .try_ctrl = hantro_try_ctrl,
331 static const struct v4l2_ctrl_ops hantro_jpeg_ctrl_ops = {
332 .s_ctrl = hantro_jpeg_s_ctrl,
335 static const struct v4l2_ctrl_ops hantro_vp9_ctrl_ops = {
336 .s_ctrl = hantro_vp9_s_ctrl,
339 #define HANTRO_JPEG_ACTIVE_MARKERS (V4L2_JPEG_ACTIVE_MARKER_APP0 | \
340 V4L2_JPEG_ACTIVE_MARKER_COM | \
341 V4L2_JPEG_ACTIVE_MARKER_DQT | \
342 V4L2_JPEG_ACTIVE_MARKER_DHT)
344 static const struct hantro_ctrl controls[] = {
346 .codec = HANTRO_JPEG_ENCODER,
348 .id = V4L2_CID_JPEG_COMPRESSION_QUALITY,
353 .ops = &hantro_jpeg_ctrl_ops,
356 .codec = HANTRO_JPEG_ENCODER,
358 .id = V4L2_CID_JPEG_ACTIVE_MARKER,
359 .max = HANTRO_JPEG_ACTIVE_MARKERS,
360 .def = HANTRO_JPEG_ACTIVE_MARKERS,
362 * Changing the set of active markers/segments also
363 * messes up the alignment of the JPEG header, which
364 * is needed to allow the hardware to write directly
365 * to the output buffer. Implementing this introduces
366 * a lot of complexity for little gain, as the markers
367 * enabled is already the minimum required set.
369 .flags = V4L2_CTRL_FLAG_READ_ONLY,
372 .codec = HANTRO_MPEG2_DECODER,
374 .id = V4L2_CID_STATELESS_MPEG2_SEQUENCE,
377 .codec = HANTRO_MPEG2_DECODER,
379 .id = V4L2_CID_STATELESS_MPEG2_PICTURE,
382 .codec = HANTRO_MPEG2_DECODER,
384 .id = V4L2_CID_STATELESS_MPEG2_QUANTISATION,
387 .codec = HANTRO_VP8_DECODER,
389 .id = V4L2_CID_STATELESS_VP8_FRAME,
392 .codec = HANTRO_H264_DECODER,
394 .id = V4L2_CID_STATELESS_H264_DECODE_PARAMS,
397 .codec = HANTRO_H264_DECODER,
399 .id = V4L2_CID_STATELESS_H264_SPS,
400 .ops = &hantro_ctrl_ops,
403 .codec = HANTRO_H264_DECODER,
405 .id = V4L2_CID_STATELESS_H264_PPS,
408 .codec = HANTRO_H264_DECODER,
410 .id = V4L2_CID_STATELESS_H264_SCALING_MATRIX,
413 .codec = HANTRO_H264_DECODER,
415 .id = V4L2_CID_STATELESS_H264_DECODE_MODE,
416 .min = V4L2_STATELESS_H264_DECODE_MODE_FRAME_BASED,
417 .def = V4L2_STATELESS_H264_DECODE_MODE_FRAME_BASED,
418 .max = V4L2_STATELESS_H264_DECODE_MODE_FRAME_BASED,
421 .codec = HANTRO_H264_DECODER,
423 .id = V4L2_CID_STATELESS_H264_START_CODE,
424 .min = V4L2_STATELESS_H264_START_CODE_ANNEX_B,
425 .def = V4L2_STATELESS_H264_START_CODE_ANNEX_B,
426 .max = V4L2_STATELESS_H264_START_CODE_ANNEX_B,
429 .codec = HANTRO_H264_DECODER,
431 .id = V4L2_CID_MPEG_VIDEO_H264_PROFILE,
432 .min = V4L2_MPEG_VIDEO_H264_PROFILE_BASELINE,
433 .max = V4L2_MPEG_VIDEO_H264_PROFILE_HIGH,
435 BIT(V4L2_MPEG_VIDEO_H264_PROFILE_EXTENDED),
436 .def = V4L2_MPEG_VIDEO_H264_PROFILE_MAIN,
439 .codec = HANTRO_HEVC_DECODER,
441 .id = V4L2_CID_STATELESS_HEVC_DECODE_MODE,
442 .min = V4L2_STATELESS_HEVC_DECODE_MODE_FRAME_BASED,
443 .max = V4L2_STATELESS_HEVC_DECODE_MODE_FRAME_BASED,
444 .def = V4L2_STATELESS_HEVC_DECODE_MODE_FRAME_BASED,
447 .codec = HANTRO_HEVC_DECODER,
449 .id = V4L2_CID_STATELESS_HEVC_START_CODE,
450 .min = V4L2_STATELESS_HEVC_START_CODE_ANNEX_B,
451 .max = V4L2_STATELESS_HEVC_START_CODE_ANNEX_B,
452 .def = V4L2_STATELESS_HEVC_START_CODE_ANNEX_B,
455 .codec = HANTRO_HEVC_DECODER,
457 .id = V4L2_CID_MPEG_VIDEO_HEVC_PROFILE,
458 .min = V4L2_MPEG_VIDEO_HEVC_PROFILE_MAIN,
459 .max = V4L2_MPEG_VIDEO_HEVC_PROFILE_MAIN_10,
460 .def = V4L2_MPEG_VIDEO_HEVC_PROFILE_MAIN,
463 .codec = HANTRO_HEVC_DECODER,
465 .id = V4L2_CID_MPEG_VIDEO_HEVC_LEVEL,
466 .min = V4L2_MPEG_VIDEO_HEVC_LEVEL_1,
467 .max = V4L2_MPEG_VIDEO_HEVC_LEVEL_5_1,
470 .codec = HANTRO_HEVC_DECODER,
472 .id = V4L2_CID_STATELESS_HEVC_SPS,
473 .ops = &hantro_ctrl_ops,
476 .codec = HANTRO_HEVC_DECODER,
478 .id = V4L2_CID_STATELESS_HEVC_PPS,
481 .codec = HANTRO_HEVC_DECODER,
483 .id = V4L2_CID_STATELESS_HEVC_DECODE_PARAMS,
486 .codec = HANTRO_HEVC_DECODER,
488 .id = V4L2_CID_STATELESS_HEVC_SCALING_MATRIX,
491 .codec = HANTRO_VP9_DECODER,
493 .id = V4L2_CID_STATELESS_VP9_FRAME,
494 .ops = &hantro_vp9_ctrl_ops,
497 .codec = HANTRO_VP9_DECODER,
499 .id = V4L2_CID_STATELESS_VP9_COMPRESSED_HDR,
504 static int hantro_ctrls_setup(struct hantro_dev *vpu,
505 struct hantro_ctx *ctx,
508 int i, num_ctrls = ARRAY_SIZE(controls);
510 v4l2_ctrl_handler_init(&ctx->ctrl_handler, num_ctrls);
512 for (i = 0; i < num_ctrls; i++) {
513 if (!(allowed_codecs & controls[i].codec))
516 v4l2_ctrl_new_custom(&ctx->ctrl_handler,
517 &controls[i].cfg, NULL);
518 if (ctx->ctrl_handler.error) {
519 vpu_err("Adding control (%d) failed %d\n",
521 ctx->ctrl_handler.error);
522 v4l2_ctrl_handler_free(&ctx->ctrl_handler);
523 return ctx->ctrl_handler.error;
526 return v4l2_ctrl_handler_setup(&ctx->ctrl_handler);
530 * V4L2 file operations.
533 static int hantro_open(struct file *filp)
535 struct hantro_dev *vpu = video_drvdata(filp);
536 struct video_device *vdev = video_devdata(filp);
537 struct hantro_func *func = hantro_vdev_to_func(vdev);
538 struct hantro_ctx *ctx;
539 int allowed_codecs, ret;
542 * We do not need any extra locking here, because we operate only
543 * on local data here, except reading few fields from dev, which
544 * do not change through device's lifetime (which is guaranteed by
545 * reference on module from open()) and V4L2 internal objects (such
546 * as vdev and ctx->fh), which have proper locking done in respective
547 * helper functions used here.
550 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
555 if (func->id == MEDIA_ENT_F_PROC_VIDEO_ENCODER) {
556 allowed_codecs = vpu->variant->codec & HANTRO_ENCODERS;
557 ctx->is_encoder = true;
558 } else if (func->id == MEDIA_ENT_F_PROC_VIDEO_DECODER) {
559 allowed_codecs = vpu->variant->codec & HANTRO_DECODERS;
560 ctx->is_encoder = false;
566 ctx->fh.m2m_ctx = v4l2_m2m_ctx_init(vpu->m2m_dev, ctx, queue_init);
567 if (IS_ERR(ctx->fh.m2m_ctx)) {
568 ret = PTR_ERR(ctx->fh.m2m_ctx);
572 v4l2_fh_init(&ctx->fh, vdev);
573 filp->private_data = &ctx->fh;
574 v4l2_fh_add(&ctx->fh);
576 hantro_reset_fmts(ctx);
578 ret = hantro_ctrls_setup(vpu, ctx, allowed_codecs);
580 vpu_err("Failed to set up controls\n");
583 ctx->fh.ctrl_handler = &ctx->ctrl_handler;
588 v4l2_fh_del(&ctx->fh);
589 v4l2_fh_exit(&ctx->fh);
595 static int hantro_release(struct file *filp)
597 struct hantro_ctx *ctx =
598 container_of(filp->private_data, struct hantro_ctx, fh);
601 * No need for extra locking because this was the last reference
604 v4l2_m2m_ctx_release(ctx->fh.m2m_ctx);
605 v4l2_fh_del(&ctx->fh);
606 v4l2_fh_exit(&ctx->fh);
607 v4l2_ctrl_handler_free(&ctx->ctrl_handler);
613 static const struct v4l2_file_operations hantro_fops = {
614 .owner = THIS_MODULE,
616 .release = hantro_release,
617 .poll = v4l2_m2m_fop_poll,
618 .unlocked_ioctl = video_ioctl2,
619 .mmap = v4l2_m2m_fop_mmap,
622 static const struct of_device_id of_hantro_match[] = {
623 #ifdef CONFIG_VIDEO_HANTRO_ROCKCHIP
624 { .compatible = "rockchip,px30-vpu", .data = &px30_vpu_variant, },
625 { .compatible = "rockchip,rk3036-vpu", .data = &rk3036_vpu_variant, },
626 { .compatible = "rockchip,rk3066-vpu", .data = &rk3066_vpu_variant, },
627 { .compatible = "rockchip,rk3288-vpu", .data = &rk3288_vpu_variant, },
628 { .compatible = "rockchip,rk3328-vpu", .data = &rk3328_vpu_variant, },
629 { .compatible = "rockchip,rk3399-vpu", .data = &rk3399_vpu_variant, },
630 { .compatible = "rockchip,rk3568-vepu", .data = &rk3568_vepu_variant, },
631 { .compatible = "rockchip,rk3568-vpu", .data = &rk3568_vpu_variant, },
633 #ifdef CONFIG_VIDEO_HANTRO_IMX8M
634 { .compatible = "nxp,imx8mm-vpu-g1", .data = &imx8mm_vpu_g1_variant, },
635 { .compatible = "nxp,imx8mq-vpu", .data = &imx8mq_vpu_variant, },
636 { .compatible = "nxp,imx8mq-vpu-g1", .data = &imx8mq_vpu_g1_variant },
637 { .compatible = "nxp,imx8mq-vpu-g2", .data = &imx8mq_vpu_g2_variant },
639 #ifdef CONFIG_VIDEO_HANTRO_SAMA5D4
640 { .compatible = "microchip,sama5d4-vdec", .data = &sama5d4_vdec_variant, },
642 #ifdef CONFIG_VIDEO_HANTRO_SUNXI
643 { .compatible = "allwinner,sun50i-h6-vpu-g2", .data = &sunxi_vpu_variant, },
647 MODULE_DEVICE_TABLE(of, of_hantro_match);
649 static int hantro_register_entity(struct media_device *mdev,
650 struct media_entity *entity,
651 const char *entity_name,
652 struct media_pad *pads, int num_pads,
653 int function, struct video_device *vdev)
658 entity->obj_type = MEDIA_ENTITY_TYPE_BASE;
659 if (function == MEDIA_ENT_F_IO_V4L) {
660 entity->info.dev.major = VIDEO_MAJOR;
661 entity->info.dev.minor = vdev->minor;
664 name = devm_kasprintf(mdev->dev, GFP_KERNEL, "%s-%s", vdev->name,
670 entity->function = function;
672 ret = media_entity_pads_init(entity, num_pads, pads);
676 ret = media_device_register_entity(mdev, entity);
683 static int hantro_attach_func(struct hantro_dev *vpu,
684 struct hantro_func *func)
686 struct media_device *mdev = &vpu->mdev;
687 struct media_link *link;
690 /* Create the three encoder entities with their pads */
691 func->source_pad.flags = MEDIA_PAD_FL_SOURCE;
692 ret = hantro_register_entity(mdev, &func->vdev.entity, "source",
693 &func->source_pad, 1, MEDIA_ENT_F_IO_V4L,
698 func->proc_pads[0].flags = MEDIA_PAD_FL_SINK;
699 func->proc_pads[1].flags = MEDIA_PAD_FL_SOURCE;
700 ret = hantro_register_entity(mdev, &func->proc, "proc",
701 func->proc_pads, 2, func->id,
704 goto err_rel_entity0;
706 func->sink_pad.flags = MEDIA_PAD_FL_SINK;
707 ret = hantro_register_entity(mdev, &func->sink, "sink",
708 &func->sink_pad, 1, MEDIA_ENT_F_IO_V4L,
711 goto err_rel_entity1;
713 /* Connect the three entities */
714 ret = media_create_pad_link(&func->vdev.entity, 0, &func->proc, 0,
715 MEDIA_LNK_FL_IMMUTABLE |
716 MEDIA_LNK_FL_ENABLED);
718 goto err_rel_entity2;
720 ret = media_create_pad_link(&func->proc, 1, &func->sink, 0,
721 MEDIA_LNK_FL_IMMUTABLE |
722 MEDIA_LNK_FL_ENABLED);
726 /* Create video interface */
727 func->intf_devnode = media_devnode_create(mdev, MEDIA_INTF_T_V4L_VIDEO,
730 if (!func->intf_devnode) {
735 /* Connect the two DMA engines to the interface */
736 link = media_create_intf_link(&func->vdev.entity,
737 &func->intf_devnode->intf,
738 MEDIA_LNK_FL_IMMUTABLE |
739 MEDIA_LNK_FL_ENABLED);
745 link = media_create_intf_link(&func->sink, &func->intf_devnode->intf,
746 MEDIA_LNK_FL_IMMUTABLE |
747 MEDIA_LNK_FL_ENABLED);
755 media_devnode_remove(func->intf_devnode);
758 media_entity_remove_links(&func->sink);
761 media_entity_remove_links(&func->proc);
762 media_entity_remove_links(&func->vdev.entity);
765 media_device_unregister_entity(&func->sink);
768 media_device_unregister_entity(&func->proc);
771 media_device_unregister_entity(&func->vdev.entity);
775 static void hantro_detach_func(struct hantro_func *func)
777 media_devnode_remove(func->intf_devnode);
778 media_entity_remove_links(&func->sink);
779 media_entity_remove_links(&func->proc);
780 media_entity_remove_links(&func->vdev.entity);
781 media_device_unregister_entity(&func->sink);
782 media_device_unregister_entity(&func->proc);
783 media_device_unregister_entity(&func->vdev.entity);
786 static int hantro_add_func(struct hantro_dev *vpu, unsigned int funcid)
788 const struct of_device_id *match;
789 struct hantro_func *func;
790 struct video_device *vfd;
793 match = of_match_node(of_hantro_match, vpu->dev->of_node);
794 func = devm_kzalloc(vpu->dev, sizeof(*func), GFP_KERNEL);
796 v4l2_err(&vpu->v4l2_dev, "Failed to allocate video device\n");
803 vfd->fops = &hantro_fops;
804 vfd->release = video_device_release_empty;
805 vfd->lock = &vpu->vpu_mutex;
806 vfd->v4l2_dev = &vpu->v4l2_dev;
807 vfd->vfl_dir = VFL_DIR_M2M;
808 vfd->device_caps = V4L2_CAP_STREAMING | V4L2_CAP_VIDEO_M2M_MPLANE;
809 vfd->ioctl_ops = &hantro_ioctl_ops;
810 snprintf(vfd->name, sizeof(vfd->name), "%s-%s", match->compatible,
811 funcid == MEDIA_ENT_F_PROC_VIDEO_ENCODER ? "enc" : "dec");
813 if (funcid == MEDIA_ENT_F_PROC_VIDEO_ENCODER) {
817 v4l2_disable_ioctl(vfd, VIDIOC_TRY_ENCODER_CMD);
818 v4l2_disable_ioctl(vfd, VIDIOC_ENCODER_CMD);
821 video_set_drvdata(vfd, vpu);
823 ret = video_register_device(vfd, VFL_TYPE_VIDEO, -1);
825 v4l2_err(&vpu->v4l2_dev, "Failed to register video device\n");
829 ret = hantro_attach_func(vpu, func);
831 v4l2_err(&vpu->v4l2_dev,
832 "Failed to attach functionality to the media device\n");
836 v4l2_info(&vpu->v4l2_dev, "registered %s as /dev/video%d\n", vfd->name,
842 video_unregister_device(vfd);
846 static int hantro_add_enc_func(struct hantro_dev *vpu)
848 if (!vpu->variant->enc_fmts)
851 return hantro_add_func(vpu, MEDIA_ENT_F_PROC_VIDEO_ENCODER);
854 static int hantro_add_dec_func(struct hantro_dev *vpu)
856 if (!vpu->variant->dec_fmts)
859 return hantro_add_func(vpu, MEDIA_ENT_F_PROC_VIDEO_DECODER);
862 static void hantro_remove_func(struct hantro_dev *vpu,
865 struct hantro_func *func;
867 if (funcid == MEDIA_ENT_F_PROC_VIDEO_ENCODER)
875 hantro_detach_func(func);
876 video_unregister_device(&func->vdev);
879 static void hantro_remove_enc_func(struct hantro_dev *vpu)
881 hantro_remove_func(vpu, MEDIA_ENT_F_PROC_VIDEO_ENCODER);
884 static void hantro_remove_dec_func(struct hantro_dev *vpu)
886 hantro_remove_func(vpu, MEDIA_ENT_F_PROC_VIDEO_DECODER);
889 static const struct media_device_ops hantro_m2m_media_ops = {
890 .req_validate = vb2_request_validate,
891 .req_queue = v4l2_m2m_request_queue,
894 static int hantro_probe(struct platform_device *pdev)
896 const struct of_device_id *match;
897 struct hantro_dev *vpu;
898 struct resource *res;
902 vpu = devm_kzalloc(&pdev->dev, sizeof(*vpu), GFP_KERNEL);
906 vpu->dev = &pdev->dev;
908 mutex_init(&vpu->vpu_mutex);
909 spin_lock_init(&vpu->irqlock);
911 match = of_match_node(of_hantro_match, pdev->dev.of_node);
912 vpu->variant = match->data;
915 * Support for nxp,imx8mq-vpu is kept for backwards compatibility
916 * but it's deprecated. Please update your DTS file to use
917 * nxp,imx8mq-vpu-g1 or nxp,imx8mq-vpu-g2 instead.
919 if (of_device_is_compatible(pdev->dev.of_node, "nxp,imx8mq-vpu"))
920 dev_warn(&pdev->dev, "%s compatible is deprecated\n",
923 INIT_DELAYED_WORK(&vpu->watchdog_work, hantro_watchdog);
925 vpu->clocks = devm_kcalloc(&pdev->dev, vpu->variant->num_clocks,
926 sizeof(*vpu->clocks), GFP_KERNEL);
930 if (vpu->variant->num_clocks > 1) {
931 for (i = 0; i < vpu->variant->num_clocks; i++)
932 vpu->clocks[i].id = vpu->variant->clk_names[i];
934 ret = devm_clk_bulk_get(&pdev->dev, vpu->variant->num_clocks,
940 * If the driver has a single clk, chances are there will be no
941 * actual name in the DT bindings.
943 vpu->clocks[0].clk = devm_clk_get(&pdev->dev, NULL);
944 if (IS_ERR(vpu->clocks[0].clk))
945 return PTR_ERR(vpu->clocks[0].clk);
948 vpu->resets = devm_reset_control_array_get(&pdev->dev, false, true);
949 if (IS_ERR(vpu->resets))
950 return PTR_ERR(vpu->resets);
952 num_bases = vpu->variant->num_regs ?: 1;
953 vpu->reg_bases = devm_kcalloc(&pdev->dev, num_bases,
954 sizeof(*vpu->reg_bases), GFP_KERNEL);
958 for (i = 0; i < num_bases; i++) {
959 res = vpu->variant->reg_names ?
960 platform_get_resource_byname(vpu->pdev, IORESOURCE_MEM,
961 vpu->variant->reg_names[i]) :
962 platform_get_resource(vpu->pdev, IORESOURCE_MEM, 0);
963 vpu->reg_bases[i] = devm_ioremap_resource(vpu->dev, res);
964 if (IS_ERR(vpu->reg_bases[i]))
965 return PTR_ERR(vpu->reg_bases[i]);
967 vpu->enc_base = vpu->reg_bases[0] + vpu->variant->enc_offset;
968 vpu->dec_base = vpu->reg_bases[0] + vpu->variant->dec_offset;
971 * TODO: Eventually allow taking advantage of full 64-bit address space.
972 * Until then we assume the MSB portion of buffers' base addresses is
973 * always 0 due to this masking operation.
975 ret = dma_set_coherent_mask(vpu->dev, DMA_BIT_MASK(32));
977 dev_err(vpu->dev, "Could not set DMA coherent mask.\n");
980 vb2_dma_contig_set_max_seg_size(&pdev->dev, DMA_BIT_MASK(32));
982 for (i = 0; i < vpu->variant->num_irqs; i++) {
983 const char *irq_name;
986 if (!vpu->variant->irqs[i].handler)
989 if (vpu->variant->num_irqs > 1) {
990 irq_name = vpu->variant->irqs[i].name;
991 irq = platform_get_irq_byname(vpu->pdev, irq_name);
994 * If the driver has a single IRQ, chances are there
995 * will be no actual name in the DT bindings.
997 irq_name = "default";
998 irq = platform_get_irq(vpu->pdev, 0);
1003 ret = devm_request_irq(vpu->dev, irq,
1004 vpu->variant->irqs[i].handler, 0,
1005 dev_name(vpu->dev), vpu);
1007 dev_err(vpu->dev, "Could not request %s IRQ.\n",
1013 if (vpu->variant->init) {
1014 ret = vpu->variant->init(vpu);
1016 dev_err(&pdev->dev, "Failed to init VPU hardware\n");
1021 pm_runtime_set_autosuspend_delay(vpu->dev, 100);
1022 pm_runtime_use_autosuspend(vpu->dev);
1023 pm_runtime_enable(vpu->dev);
1025 ret = reset_control_deassert(vpu->resets);
1027 dev_err(&pdev->dev, "Failed to deassert resets\n");
1028 goto err_pm_disable;
1031 ret = clk_bulk_prepare(vpu->variant->num_clocks, vpu->clocks);
1033 dev_err(&pdev->dev, "Failed to prepare clocks\n");
1034 goto err_rst_assert;
1037 ret = v4l2_device_register(&pdev->dev, &vpu->v4l2_dev);
1039 dev_err(&pdev->dev, "Failed to register v4l2 device\n");
1040 goto err_clk_unprepare;
1042 platform_set_drvdata(pdev, vpu);
1044 vpu->m2m_dev = v4l2_m2m_init(&vpu_m2m_ops);
1045 if (IS_ERR(vpu->m2m_dev)) {
1046 v4l2_err(&vpu->v4l2_dev, "Failed to init mem2mem device\n");
1047 ret = PTR_ERR(vpu->m2m_dev);
1048 goto err_v4l2_unreg;
1051 vpu->mdev.dev = vpu->dev;
1052 strscpy(vpu->mdev.model, DRIVER_NAME, sizeof(vpu->mdev.model));
1053 strscpy(vpu->mdev.bus_info, "platform: " DRIVER_NAME,
1054 sizeof(vpu->mdev.bus_info));
1055 media_device_init(&vpu->mdev);
1056 vpu->mdev.ops = &hantro_m2m_media_ops;
1057 vpu->v4l2_dev.mdev = &vpu->mdev;
1059 ret = hantro_add_enc_func(vpu);
1061 dev_err(&pdev->dev, "Failed to register encoder\n");
1065 ret = hantro_add_dec_func(vpu);
1067 dev_err(&pdev->dev, "Failed to register decoder\n");
1068 goto err_rm_enc_func;
1071 ret = media_device_register(&vpu->mdev);
1073 v4l2_err(&vpu->v4l2_dev, "Failed to register mem2mem media device\n");
1074 goto err_rm_dec_func;
1080 hantro_remove_dec_func(vpu);
1082 hantro_remove_enc_func(vpu);
1084 media_device_cleanup(&vpu->mdev);
1085 v4l2_m2m_release(vpu->m2m_dev);
1087 v4l2_device_unregister(&vpu->v4l2_dev);
1089 clk_bulk_unprepare(vpu->variant->num_clocks, vpu->clocks);
1091 reset_control_assert(vpu->resets);
1093 pm_runtime_dont_use_autosuspend(vpu->dev);
1094 pm_runtime_disable(vpu->dev);
1098 static int hantro_remove(struct platform_device *pdev)
1100 struct hantro_dev *vpu = platform_get_drvdata(pdev);
1102 v4l2_info(&vpu->v4l2_dev, "Removing %s\n", pdev->name);
1104 media_device_unregister(&vpu->mdev);
1105 hantro_remove_dec_func(vpu);
1106 hantro_remove_enc_func(vpu);
1107 media_device_cleanup(&vpu->mdev);
1108 v4l2_m2m_release(vpu->m2m_dev);
1109 v4l2_device_unregister(&vpu->v4l2_dev);
1110 clk_bulk_unprepare(vpu->variant->num_clocks, vpu->clocks);
1111 reset_control_assert(vpu->resets);
1112 pm_runtime_dont_use_autosuspend(vpu->dev);
1113 pm_runtime_disable(vpu->dev);
1118 static int hantro_runtime_resume(struct device *dev)
1120 struct hantro_dev *vpu = dev_get_drvdata(dev);
1122 if (vpu->variant->runtime_resume)
1123 return vpu->variant->runtime_resume(vpu);
1129 static const struct dev_pm_ops hantro_pm_ops = {
1130 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
1131 pm_runtime_force_resume)
1132 SET_RUNTIME_PM_OPS(NULL, hantro_runtime_resume, NULL)
1135 static struct platform_driver hantro_driver = {
1136 .probe = hantro_probe,
1137 .remove = hantro_remove,
1139 .name = DRIVER_NAME,
1140 .of_match_table = of_match_ptr(of_hantro_match),
1141 .pm = &hantro_pm_ops,
1144 module_platform_driver(hantro_driver);
1146 MODULE_LICENSE("GPL v2");
1147 MODULE_AUTHOR("Alpha Lin <Alpha.Lin@Rock-Chips.com>");
1148 MODULE_AUTHOR("Tomasz Figa <tfiga@chromium.org>");
1149 MODULE_AUTHOR("Ezequiel Garcia <ezequiel@collabora.com>");
1150 MODULE_DESCRIPTION("Hantro VPU codec driver");