1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2018 BayLibre, SAS
4  * Author: Maxime Jourdan <[email protected]>
5  */
6 
7 #include <linux/of.h>
8 #include <linux/clk.h>
9 #include <linux/io.h>
10 #include <linux/module.h>
11 #include <linux/platform_device.h>
12 #include <linux/mfd/syscon.h>
13 #include <linux/slab.h>
14 #include <linux/interrupt.h>
15 #include <linux/kthread.h>
16 #include <media/v4l2-ioctl.h>
17 #include <media/v4l2-event.h>
18 #include <media/v4l2-ctrls.h>
19 #include <media/v4l2-mem2mem.h>
20 #include <media/v4l2-dev.h>
21 #include <media/videobuf2-dma-contig.h>
22 
23 #include "vdec.h"
24 #include "esparser.h"
25 #include "vdec_helpers.h"
26 
27 struct dummy_buf {
28 	struct vb2_v4l2_buffer vb;
29 	struct list_head list;
30 };
31 
32 /* 16 MiB for parsed bitstream swap exchange */
33 #define SIZE_VIFIFO SZ_16M
34 
get_output_size(u32 width,u32 height)35 static u32 get_output_size(u32 width, u32 height)
36 {
37 	return ALIGN(width * height, SZ_64K);
38 }
39 
amvdec_get_output_size(struct amvdec_session * sess)40 u32 amvdec_get_output_size(struct amvdec_session *sess)
41 {
42 	return get_output_size(sess->width, sess->height);
43 }
44 EXPORT_SYMBOL_GPL(amvdec_get_output_size);
45 
vdec_codec_needs_recycle(struct amvdec_session * sess)46 static int vdec_codec_needs_recycle(struct amvdec_session *sess)
47 {
48 	struct amvdec_codec_ops *codec_ops = sess->fmt_out->codec_ops;
49 
50 	return codec_ops->can_recycle && codec_ops->recycle;
51 }
52 
vdec_recycle_thread(void * data)53 static int vdec_recycle_thread(void *data)
54 {
55 	struct amvdec_session *sess = data;
56 	struct amvdec_core *core = sess->core;
57 	struct amvdec_codec_ops *codec_ops = sess->fmt_out->codec_ops;
58 	struct amvdec_buffer *tmp, *n;
59 
60 	while (!kthread_should_stop()) {
61 		mutex_lock(&sess->bufs_recycle_lock);
62 		list_for_each_entry_safe(tmp, n, &sess->bufs_recycle, list) {
63 			if (!codec_ops->can_recycle(core))
64 				break;
65 
66 			codec_ops->recycle(core, tmp->vb->index);
67 			list_del(&tmp->list);
68 			kfree(tmp);
69 		}
70 		mutex_unlock(&sess->bufs_recycle_lock);
71 
72 		usleep_range(5000, 10000);
73 	}
74 
75 	return 0;
76 }
77 
vdec_poweron(struct amvdec_session * sess)78 static int vdec_poweron(struct amvdec_session *sess)
79 {
80 	int ret;
81 	struct amvdec_ops *vdec_ops = sess->fmt_out->vdec_ops;
82 
83 	ret = clk_prepare_enable(sess->core->dos_parser_clk);
84 	if (ret)
85 		return ret;
86 
87 	ret = clk_prepare_enable(sess->core->dos_clk);
88 	if (ret)
89 		goto disable_dos_parser;
90 
91 	ret = vdec_ops->start(sess);
92 	if (ret)
93 		goto disable_dos;
94 
95 	esparser_power_up(sess);
96 
97 	return 0;
98 
99 disable_dos:
100 	clk_disable_unprepare(sess->core->dos_clk);
101 disable_dos_parser:
102 	clk_disable_unprepare(sess->core->dos_parser_clk);
103 
104 	return ret;
105 }
106 
vdec_wait_inactive(struct amvdec_session * sess)107 static void vdec_wait_inactive(struct amvdec_session *sess)
108 {
109 	/* We consider 50ms with no IRQ to be inactive. */
110 	while (time_is_after_jiffies64(sess->last_irq_jiffies +
111 				       msecs_to_jiffies(50)))
112 		msleep(25);
113 }
114 
vdec_poweroff(struct amvdec_session * sess)115 static void vdec_poweroff(struct amvdec_session *sess)
116 {
117 	struct amvdec_ops *vdec_ops = sess->fmt_out->vdec_ops;
118 	struct amvdec_codec_ops *codec_ops = sess->fmt_out->codec_ops;
119 
120 	sess->should_stop = 1;
121 	vdec_wait_inactive(sess);
122 	if (codec_ops->drain)
123 		codec_ops->drain(sess);
124 
125 	vdec_ops->stop(sess);
126 	clk_disable_unprepare(sess->core->dos_clk);
127 	clk_disable_unprepare(sess->core->dos_parser_clk);
128 }
129 
130 static void
vdec_queue_recycle(struct amvdec_session * sess,struct vb2_buffer * vb)131 vdec_queue_recycle(struct amvdec_session *sess, struct vb2_buffer *vb)
132 {
133 	struct amvdec_buffer *new_buf;
134 
135 	new_buf = kmalloc(sizeof(*new_buf), GFP_KERNEL);
136 	if (!new_buf)
137 		return;
138 	new_buf->vb = vb;
139 
140 	mutex_lock(&sess->bufs_recycle_lock);
141 	list_add_tail(&new_buf->list, &sess->bufs_recycle);
142 	mutex_unlock(&sess->bufs_recycle_lock);
143 }
144 
vdec_m2m_device_run(void * priv)145 static void vdec_m2m_device_run(void *priv)
146 {
147 	struct amvdec_session *sess = priv;
148 
149 	schedule_work(&sess->esparser_queue_work);
150 }
151 
vdec_m2m_job_abort(void * priv)152 static void vdec_m2m_job_abort(void *priv)
153 {
154 	struct amvdec_session *sess = priv;
155 
156 	v4l2_m2m_job_finish(sess->m2m_dev, sess->m2m_ctx);
157 }
158 
159 static const struct v4l2_m2m_ops vdec_m2m_ops = {
160 	.device_run = vdec_m2m_device_run,
161 	.job_abort = vdec_m2m_job_abort,
162 };
163 
process_num_buffers(struct vb2_queue * q,struct amvdec_session * sess,unsigned int * num_buffers,bool is_reqbufs)164 static void process_num_buffers(struct vb2_queue *q,
165 				struct amvdec_session *sess,
166 				unsigned int *num_buffers,
167 				bool is_reqbufs)
168 {
169 	const struct amvdec_format *fmt_out = sess->fmt_out;
170 	unsigned int q_num_bufs = vb2_get_num_buffers(q);
171 	unsigned int buffers_total = q_num_bufs + *num_buffers;
172 	u32 min_buf_capture = v4l2_ctrl_g_ctrl(sess->ctrl_min_buf_capture);
173 
174 	if (q_num_bufs + *num_buffers < min_buf_capture)
175 		*num_buffers = min_buf_capture - q_num_bufs;
176 	if (is_reqbufs && buffers_total < fmt_out->min_buffers)
177 		*num_buffers = fmt_out->min_buffers - q_num_bufs;
178 	if (buffers_total > fmt_out->max_buffers)
179 		*num_buffers = fmt_out->max_buffers - q_num_bufs;
180 
181 	/* We need to program the complete CAPTURE buffer list
182 	 * in registers during start_streaming, and the firmwares
183 	 * are free to choose any of them to write frames to. As such,
184 	 * we need all of them to be queued into the driver
185 	 */
186 	sess->num_dst_bufs = q_num_bufs + *num_buffers;
187 	q->min_queued_buffers = max(fmt_out->min_buffers, sess->num_dst_bufs);
188 }
189 
vdec_queue_setup(struct vb2_queue * q,unsigned int * num_buffers,unsigned int * num_planes,unsigned int sizes[],struct device * alloc_devs[])190 static int vdec_queue_setup(struct vb2_queue *q, unsigned int *num_buffers,
191 			    unsigned int *num_planes, unsigned int sizes[],
192 			    struct device *alloc_devs[])
193 {
194 	struct amvdec_session *sess = vb2_get_drv_priv(q);
195 	u32 output_size = amvdec_get_output_size(sess);
196 
197 	if (*num_planes) {
198 		switch (q->type) {
199 		case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
200 			if (*num_planes != 1 ||
201 			    sizes[0] < sess->src_buffer_size)
202 				return -EINVAL;
203 			break;
204 		case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
205 			switch (sess->pixfmt_cap) {
206 			case V4L2_PIX_FMT_NV12M:
207 				if (*num_planes != 2 ||
208 				    sizes[0] < output_size ||
209 				    sizes[1] < output_size / 2)
210 					return -EINVAL;
211 				break;
212 			case V4L2_PIX_FMT_YUV420M:
213 				if (*num_planes != 3 ||
214 				    sizes[0] < output_size ||
215 				    sizes[1] < output_size / 4 ||
216 				    sizes[2] < output_size / 4)
217 					return -EINVAL;
218 				break;
219 			default:
220 				return -EINVAL;
221 			}
222 
223 			process_num_buffers(q, sess, num_buffers, false);
224 			break;
225 		}
226 
227 		return 0;
228 	}
229 
230 	switch (q->type) {
231 	case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
232 		sizes[0] = sess->src_buffer_size;
233 		*num_planes = 1;
234 		break;
235 	case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
236 		switch (sess->pixfmt_cap) {
237 		case V4L2_PIX_FMT_NV12M:
238 			sizes[0] = output_size;
239 			sizes[1] = output_size / 2;
240 			*num_planes = 2;
241 			break;
242 		case V4L2_PIX_FMT_YUV420M:
243 			sizes[0] = output_size;
244 			sizes[1] = output_size / 4;
245 			sizes[2] = output_size / 4;
246 			*num_planes = 3;
247 			break;
248 		default:
249 			return -EINVAL;
250 		}
251 
252 		process_num_buffers(q, sess, num_buffers, true);
253 		break;
254 	default:
255 		return -EINVAL;
256 	}
257 
258 	sess->changed_format = 1;
259 	return 0;
260 }
261 
vdec_vb2_buf_queue(struct vb2_buffer * vb)262 static void vdec_vb2_buf_queue(struct vb2_buffer *vb)
263 {
264 	struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
265 	struct amvdec_session *sess = vb2_get_drv_priv(vb->vb2_queue);
266 	struct v4l2_m2m_ctx *m2m_ctx = sess->m2m_ctx;
267 
268 	v4l2_m2m_buf_queue(m2m_ctx, vbuf);
269 
270 	if (!sess->streamon_out)
271 		return;
272 
273 	if (sess->streamon_cap &&
274 	    vb->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE &&
275 	    vdec_codec_needs_recycle(sess))
276 		vdec_queue_recycle(sess, vb);
277 
278 	schedule_work(&sess->esparser_queue_work);
279 }
280 
vdec_start_streaming(struct vb2_queue * q,unsigned int count)281 static int vdec_start_streaming(struct vb2_queue *q, unsigned int count)
282 {
283 	struct amvdec_session *sess = vb2_get_drv_priv(q);
284 	struct amvdec_codec_ops *codec_ops = sess->fmt_out->codec_ops;
285 	struct amvdec_core *core = sess->core;
286 	struct vb2_v4l2_buffer *buf;
287 	int ret;
288 
289 	if (core->cur_sess && core->cur_sess != sess) {
290 		ret = -EBUSY;
291 		goto bufs_done;
292 	}
293 
294 	if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE)
295 		sess->streamon_out = 1;
296 	else
297 		sess->streamon_cap = 1;
298 
299 	if (!sess->streamon_out)
300 		return 0;
301 
302 	if (sess->status == STATUS_NEEDS_RESUME &&
303 	    q->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE &&
304 	    sess->changed_format) {
305 		codec_ops->resume(sess);
306 		sess->status = STATUS_RUNNING;
307 		return 0;
308 	}
309 
310 	if (sess->status == STATUS_RUNNING ||
311 	    sess->status == STATUS_NEEDS_RESUME ||
312 	    sess->status == STATUS_INIT)
313 		return 0;
314 
315 	sess->vififo_size = SIZE_VIFIFO;
316 	sess->vififo_vaddr =
317 		dma_alloc_coherent(sess->core->dev, sess->vififo_size,
318 				   &sess->vififo_paddr, GFP_KERNEL);
319 	if (!sess->vififo_vaddr) {
320 		dev_err(sess->core->dev, "Failed to request VIFIFO buffer\n");
321 		ret = -ENOMEM;
322 		goto bufs_done;
323 	}
324 
325 	sess->should_stop = 0;
326 	sess->keyframe_found = 0;
327 	sess->last_offset = 0;
328 	sess->wrap_count = 0;
329 	sess->pixelaspect.numerator = 1;
330 	sess->pixelaspect.denominator = 1;
331 	atomic_set(&sess->esparser_queued_bufs, 0);
332 	v4l2_ctrl_s_ctrl(sess->ctrl_min_buf_capture, 1);
333 
334 	ret = vdec_poweron(sess);
335 	if (ret)
336 		goto vififo_free;
337 
338 	sess->sequence_cap = 0;
339 	sess->sequence_out = 0;
340 	if (vdec_codec_needs_recycle(sess))
341 		sess->recycle_thread = kthread_run(vdec_recycle_thread, sess,
342 						   "vdec_recycle");
343 
344 	sess->status = STATUS_INIT;
345 	core->cur_sess = sess;
346 	schedule_work(&sess->esparser_queue_work);
347 	return 0;
348 
349 vififo_free:
350 	dma_free_coherent(sess->core->dev, sess->vififo_size,
351 			  sess->vififo_vaddr, sess->vififo_paddr);
352 bufs_done:
353 	while ((buf = v4l2_m2m_src_buf_remove(sess->m2m_ctx)))
354 		v4l2_m2m_buf_done(buf, VB2_BUF_STATE_QUEUED);
355 	while ((buf = v4l2_m2m_dst_buf_remove(sess->m2m_ctx)))
356 		v4l2_m2m_buf_done(buf, VB2_BUF_STATE_QUEUED);
357 
358 	if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE)
359 		sess->streamon_out = 0;
360 	else
361 		sess->streamon_cap = 0;
362 
363 	return ret;
364 }
365 
vdec_free_canvas(struct amvdec_session * sess)366 static void vdec_free_canvas(struct amvdec_session *sess)
367 {
368 	int i;
369 
370 	for (i = 0; i < sess->canvas_num; ++i)
371 		meson_canvas_free(sess->core->canvas, sess->canvas_alloc[i]);
372 
373 	sess->canvas_num = 0;
374 }
375 
vdec_reset_timestamps(struct amvdec_session * sess)376 static void vdec_reset_timestamps(struct amvdec_session *sess)
377 {
378 	struct amvdec_timestamp *tmp, *n;
379 
380 	list_for_each_entry_safe(tmp, n, &sess->timestamps, list) {
381 		list_del(&tmp->list);
382 		kfree(tmp);
383 	}
384 }
385 
vdec_reset_bufs_recycle(struct amvdec_session * sess)386 static void vdec_reset_bufs_recycle(struct amvdec_session *sess)
387 {
388 	struct amvdec_buffer *tmp, *n;
389 
390 	list_for_each_entry_safe(tmp, n, &sess->bufs_recycle, list) {
391 		list_del(&tmp->list);
392 		kfree(tmp);
393 	}
394 }
395 
vdec_stop_streaming(struct vb2_queue * q)396 static void vdec_stop_streaming(struct vb2_queue *q)
397 {
398 	struct amvdec_session *sess = vb2_get_drv_priv(q);
399 	struct amvdec_codec_ops *codec_ops = sess->fmt_out->codec_ops;
400 	struct amvdec_core *core = sess->core;
401 	struct vb2_v4l2_buffer *buf;
402 
403 	if (sess->status == STATUS_RUNNING ||
404 	    sess->status == STATUS_INIT ||
405 	    (sess->status == STATUS_NEEDS_RESUME &&
406 	     (!sess->streamon_out || !sess->streamon_cap))) {
407 		if (vdec_codec_needs_recycle(sess))
408 			kthread_stop(sess->recycle_thread);
409 
410 		vdec_poweroff(sess);
411 		vdec_free_canvas(sess);
412 		dma_free_coherent(sess->core->dev, sess->vififo_size,
413 				  sess->vififo_vaddr, sess->vififo_paddr);
414 		vdec_reset_timestamps(sess);
415 		vdec_reset_bufs_recycle(sess);
416 		kfree(sess->priv);
417 		sess->priv = NULL;
418 		core->cur_sess = NULL;
419 		sess->status = STATUS_STOPPED;
420 	}
421 
422 	if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE) {
423 		while ((buf = v4l2_m2m_src_buf_remove(sess->m2m_ctx)))
424 			v4l2_m2m_buf_done(buf, VB2_BUF_STATE_ERROR);
425 
426 		sess->streamon_out = 0;
427 	} else {
428 		/* Drain remaining refs if was still running */
429 		if (sess->status >= STATUS_RUNNING && codec_ops->drain)
430 			codec_ops->drain(sess);
431 
432 		while ((buf = v4l2_m2m_dst_buf_remove(sess->m2m_ctx)))
433 			v4l2_m2m_buf_done(buf, VB2_BUF_STATE_ERROR);
434 
435 		sess->streamon_cap = 0;
436 	}
437 }
438 
vdec_vb2_buf_prepare(struct vb2_buffer * vb)439 static int vdec_vb2_buf_prepare(struct vb2_buffer *vb)
440 {
441 	struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
442 
443 	vbuf->field = V4L2_FIELD_NONE;
444 	return 0;
445 }
446 
447 static const struct vb2_ops vdec_vb2_ops = {
448 	.queue_setup = vdec_queue_setup,
449 	.start_streaming = vdec_start_streaming,
450 	.stop_streaming = vdec_stop_streaming,
451 	.buf_queue = vdec_vb2_buf_queue,
452 	.buf_prepare = vdec_vb2_buf_prepare,
453 };
454 
455 static int
vdec_querycap(struct file * file,void * fh,struct v4l2_capability * cap)456 vdec_querycap(struct file *file, void *fh, struct v4l2_capability *cap)
457 {
458 	strscpy(cap->driver, "meson-vdec", sizeof(cap->driver));
459 	strscpy(cap->card, "Amlogic Video Decoder", sizeof(cap->card));
460 	strscpy(cap->bus_info, "platform:meson-vdec", sizeof(cap->bus_info));
461 
462 	return 0;
463 }
464 
465 static const struct amvdec_format *
find_format(const struct amvdec_format * fmts,u32 size,u32 pixfmt)466 find_format(const struct amvdec_format *fmts, u32 size, u32 pixfmt)
467 {
468 	unsigned int i;
469 
470 	for (i = 0; i < size; i++) {
471 		if (fmts[i].pixfmt == pixfmt)
472 			return &fmts[i];
473 	}
474 
475 	return NULL;
476 }
477 
478 static unsigned int
vdec_supports_pixfmt_cap(const struct amvdec_format * fmt_out,u32 pixfmt_cap)479 vdec_supports_pixfmt_cap(const struct amvdec_format *fmt_out, u32 pixfmt_cap)
480 {
481 	int i;
482 
483 	for (i = 0; fmt_out->pixfmts_cap[i]; i++)
484 		if (fmt_out->pixfmts_cap[i] == pixfmt_cap)
485 			return 1;
486 
487 	return 0;
488 }
489 
490 static const struct amvdec_format *
vdec_try_fmt_common(struct amvdec_session * sess,u32 size,struct v4l2_format * f)491 vdec_try_fmt_common(struct amvdec_session *sess, u32 size,
492 		    struct v4l2_format *f)
493 {
494 	struct v4l2_pix_format_mplane *pixmp = &f->fmt.pix_mp;
495 	struct v4l2_plane_pix_format *pfmt = pixmp->plane_fmt;
496 	const struct amvdec_format *fmts = sess->core->platform->formats;
497 	const struct amvdec_format *fmt_out = NULL;
498 	u32 output_size = 0;
499 
500 	memset(pfmt[0].reserved, 0, sizeof(pfmt[0].reserved));
501 	memset(pixmp->reserved, 0, sizeof(pixmp->reserved));
502 
503 	switch (f->type) {
504 	case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
505 		fmt_out = find_format(fmts, size, pixmp->pixelformat);
506 		if (!fmt_out) {
507 			pixmp->pixelformat = V4L2_PIX_FMT_MPEG2;
508 			fmt_out = find_format(fmts, size, pixmp->pixelformat);
509 		}
510 		break;
511 	case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
512 		fmt_out = sess->fmt_out;
513 		break;
514 	default:
515 		return NULL;
516 	}
517 
518 	pixmp->width  = clamp(pixmp->width,  (u32)256, fmt_out->max_width);
519 	pixmp->height = clamp(pixmp->height, (u32)144, fmt_out->max_height);
520 	output_size = get_output_size(pixmp->width, pixmp->height);
521 
522 	if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE) {
523 		if (!pfmt[0].sizeimage)
524 			pfmt[0].sizeimage = sess->src_buffer_size;
525 		pfmt[0].bytesperline = 0;
526 		pixmp->num_planes = 1;
527 	} else if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE) {
528 		fmt_out = sess->fmt_out;
529 		if (!vdec_supports_pixfmt_cap(fmt_out, pixmp->pixelformat))
530 			pixmp->pixelformat = fmt_out->pixfmts_cap[0];
531 
532 		memset(pfmt[1].reserved, 0, sizeof(pfmt[1].reserved));
533 		if (pixmp->pixelformat == V4L2_PIX_FMT_NV12M) {
534 			pfmt[0].sizeimage = output_size;
535 			pfmt[0].bytesperline = ALIGN(pixmp->width, 32);
536 
537 			pfmt[1].sizeimage = output_size / 2;
538 			pfmt[1].bytesperline = ALIGN(pixmp->width, 32);
539 			pixmp->num_planes = 2;
540 		} else if (pixmp->pixelformat == V4L2_PIX_FMT_YUV420M) {
541 			pfmt[0].sizeimage = output_size;
542 			pfmt[0].bytesperline = ALIGN(pixmp->width, 32);
543 
544 			pfmt[1].sizeimage = output_size / 4;
545 			pfmt[1].bytesperline = ALIGN(pixmp->width, 32) / 2;
546 
547 			pfmt[2].sizeimage = output_size / 2;
548 			pfmt[2].bytesperline = ALIGN(pixmp->width, 32) / 2;
549 			pixmp->num_planes = 3;
550 		}
551 	}
552 
553 	if (pixmp->field == V4L2_FIELD_ANY)
554 		pixmp->field = V4L2_FIELD_NONE;
555 
556 	return fmt_out;
557 }
558 
vdec_try_fmt(struct file * file,void * fh,struct v4l2_format * f)559 static int vdec_try_fmt(struct file *file, void *fh, struct v4l2_format *f)
560 {
561 	struct amvdec_session *sess =
562 		container_of(file->private_data, struct amvdec_session, fh);
563 
564 	vdec_try_fmt_common(sess, sess->core->platform->num_formats, f);
565 
566 	return 0;
567 }
568 
vdec_g_fmt(struct file * file,void * fh,struct v4l2_format * f)569 static int vdec_g_fmt(struct file *file, void *fh, struct v4l2_format *f)
570 {
571 	struct amvdec_session *sess =
572 		container_of(file->private_data, struct amvdec_session, fh);
573 	struct v4l2_pix_format_mplane *pixmp = &f->fmt.pix_mp;
574 
575 	if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
576 		pixmp->pixelformat = sess->pixfmt_cap;
577 	else if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE)
578 		pixmp->pixelformat = sess->fmt_out->pixfmt;
579 
580 	if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE) {
581 		pixmp->width = sess->width;
582 		pixmp->height = sess->height;
583 		pixmp->colorspace = sess->colorspace;
584 		pixmp->ycbcr_enc = sess->ycbcr_enc;
585 		pixmp->quantization = sess->quantization;
586 		pixmp->xfer_func = sess->xfer_func;
587 	} else if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE) {
588 		pixmp->width = sess->width;
589 		pixmp->height = sess->height;
590 	}
591 
592 	vdec_try_fmt_common(sess, sess->core->platform->num_formats, f);
593 
594 	return 0;
595 }
596 
vdec_s_fmt(struct file * file,void * fh,struct v4l2_format * f)597 static int vdec_s_fmt(struct file *file, void *fh, struct v4l2_format *f)
598 {
599 	struct amvdec_session *sess =
600 		container_of(file->private_data, struct amvdec_session, fh);
601 	struct v4l2_pix_format_mplane *pixmp = &f->fmt.pix_mp;
602 	u32 num_formats = sess->core->platform->num_formats;
603 	const struct amvdec_format *fmt_out;
604 	struct v4l2_pix_format_mplane orig_pixmp;
605 	struct v4l2_format format;
606 	u32 pixfmt_out = 0, pixfmt_cap = 0;
607 
608 	orig_pixmp = *pixmp;
609 
610 	fmt_out = vdec_try_fmt_common(sess, num_formats, f);
611 	if (!fmt_out)
612 		return -EINVAL;
613 
614 	if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE) {
615 		pixfmt_out = pixmp->pixelformat;
616 		pixfmt_cap = sess->pixfmt_cap;
617 	} else if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE) {
618 		pixfmt_cap = pixmp->pixelformat;
619 		pixfmt_out = sess->fmt_out->pixfmt;
620 	}
621 
622 	memset(&format, 0, sizeof(format));
623 
624 	format.type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
625 	format.fmt.pix_mp.pixelformat = pixfmt_out;
626 	format.fmt.pix_mp.width = orig_pixmp.width;
627 	format.fmt.pix_mp.height = orig_pixmp.height;
628 	vdec_try_fmt_common(sess, num_formats, &format);
629 
630 	if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE) {
631 		sess->width = format.fmt.pix_mp.width;
632 		sess->height = format.fmt.pix_mp.height;
633 		sess->colorspace = pixmp->colorspace;
634 		sess->ycbcr_enc = pixmp->ycbcr_enc;
635 		sess->quantization = pixmp->quantization;
636 		sess->xfer_func = pixmp->xfer_func;
637 		sess->src_buffer_size = pixmp->plane_fmt[0].sizeimage;
638 	}
639 
640 	memset(&format, 0, sizeof(format));
641 
642 	format.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
643 	format.fmt.pix_mp.pixelformat = pixfmt_cap;
644 	format.fmt.pix_mp.width = orig_pixmp.width;
645 	format.fmt.pix_mp.height = orig_pixmp.height;
646 	vdec_try_fmt_common(sess, num_formats, &format);
647 
648 	sess->width = format.fmt.pix_mp.width;
649 	sess->height = format.fmt.pix_mp.height;
650 
651 	if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE)
652 		sess->fmt_out = fmt_out;
653 	else if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
654 		sess->pixfmt_cap = format.fmt.pix_mp.pixelformat;
655 
656 	return 0;
657 }
658 
vdec_enum_fmt(struct file * file,void * fh,struct v4l2_fmtdesc * f)659 static int vdec_enum_fmt(struct file *file, void *fh, struct v4l2_fmtdesc *f)
660 {
661 	struct amvdec_session *sess =
662 		container_of(file->private_data, struct amvdec_session, fh);
663 	const struct vdec_platform *platform = sess->core->platform;
664 	const struct amvdec_format *fmt_out;
665 
666 	memset(f->reserved, 0, sizeof(f->reserved));
667 
668 	if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE) {
669 		if (f->index >= platform->num_formats)
670 			return -EINVAL;
671 
672 		fmt_out = &platform->formats[f->index];
673 		f->pixelformat = fmt_out->pixfmt;
674 		f->flags = fmt_out->flags;
675 	} else if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE) {
676 		fmt_out = sess->fmt_out;
677 		if (f->index >= 4 || !fmt_out->pixfmts_cap[f->index])
678 			return -EINVAL;
679 
680 		f->pixelformat = fmt_out->pixfmts_cap[f->index];
681 	} else {
682 		return -EINVAL;
683 	}
684 
685 	return 0;
686 }
687 
vdec_enum_framesizes(struct file * file,void * fh,struct v4l2_frmsizeenum * fsize)688 static int vdec_enum_framesizes(struct file *file, void *fh,
689 				struct v4l2_frmsizeenum *fsize)
690 {
691 	struct amvdec_session *sess =
692 		container_of(file->private_data, struct amvdec_session, fh);
693 	const struct amvdec_format *formats = sess->core->platform->formats;
694 	const struct amvdec_format *fmt;
695 	u32 num_formats = sess->core->platform->num_formats;
696 
697 	fmt = find_format(formats, num_formats, fsize->pixel_format);
698 	if (!fmt || fsize->index)
699 		return -EINVAL;
700 
701 	fsize->type = V4L2_FRMSIZE_TYPE_CONTINUOUS;
702 
703 	fsize->stepwise.min_width = 256;
704 	fsize->stepwise.max_width = fmt->max_width;
705 	fsize->stepwise.step_width = 1;
706 	fsize->stepwise.min_height = 144;
707 	fsize->stepwise.max_height = fmt->max_height;
708 	fsize->stepwise.step_height = 1;
709 
710 	return 0;
711 }
712 
713 static int
vdec_decoder_cmd(struct file * file,void * fh,struct v4l2_decoder_cmd * cmd)714 vdec_decoder_cmd(struct file *file, void *fh, struct v4l2_decoder_cmd *cmd)
715 {
716 	struct amvdec_session *sess =
717 		container_of(file->private_data, struct amvdec_session, fh);
718 	struct amvdec_codec_ops *codec_ops = sess->fmt_out->codec_ops;
719 	struct device *dev = sess->core->dev;
720 	int ret;
721 
722 	ret = v4l2_m2m_ioctl_try_decoder_cmd(file, fh, cmd);
723 	if (ret)
724 		return ret;
725 
726 	if (!(sess->streamon_out & sess->streamon_cap))
727 		return 0;
728 
729 	if (cmd->cmd == V4L2_DEC_CMD_START) {
730 		v4l2_m2m_clear_state(sess->m2m_ctx);
731 		sess->should_stop = 0;
732 		return 0;
733 	}
734 
735 	/* Should not happen */
736 	if (cmd->cmd != V4L2_DEC_CMD_STOP)
737 		return -EINVAL;
738 
739 	dev_dbg(dev, "Received V4L2_DEC_CMD_STOP\n");
740 
741 	sess->should_stop = 1;
742 
743 	v4l2_m2m_mark_stopped(sess->m2m_ctx);
744 
745 	if (codec_ops->drain) {
746 		vdec_wait_inactive(sess);
747 		codec_ops->drain(sess);
748 	} else if (codec_ops->eos_sequence) {
749 		u32 len;
750 		const u8 *data = codec_ops->eos_sequence(&len);
751 
752 		esparser_queue_eos(sess->core, data, len);
753 		vdec_wait_inactive(sess);
754 	}
755 
756 	return ret;
757 }
758 
vdec_subscribe_event(struct v4l2_fh * fh,const struct v4l2_event_subscription * sub)759 static int vdec_subscribe_event(struct v4l2_fh *fh,
760 				const struct v4l2_event_subscription *sub)
761 {
762 	switch (sub->type) {
763 	case V4L2_EVENT_EOS:
764 	case V4L2_EVENT_SOURCE_CHANGE:
765 		return v4l2_event_subscribe(fh, sub, 0, NULL);
766 	case V4L2_EVENT_CTRL:
767 		return v4l2_ctrl_subscribe_event(fh, sub);
768 	default:
769 		return -EINVAL;
770 	}
771 }
772 
vdec_g_pixelaspect(struct file * file,void * fh,int type,struct v4l2_fract * f)773 static int vdec_g_pixelaspect(struct file *file, void *fh, int type,
774 			      struct v4l2_fract *f)
775 {
776 	struct amvdec_session *sess =
777 		container_of(file->private_data, struct amvdec_session, fh);
778 
779 	if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
780 		return -EINVAL;
781 
782 	*f = sess->pixelaspect;
783 	return 0;
784 }
785 
786 static const struct v4l2_ioctl_ops vdec_ioctl_ops = {
787 	.vidioc_querycap = vdec_querycap,
788 	.vidioc_enum_fmt_vid_cap = vdec_enum_fmt,
789 	.vidioc_enum_fmt_vid_out = vdec_enum_fmt,
790 	.vidioc_s_fmt_vid_cap_mplane = vdec_s_fmt,
791 	.vidioc_s_fmt_vid_out_mplane = vdec_s_fmt,
792 	.vidioc_g_fmt_vid_cap_mplane = vdec_g_fmt,
793 	.vidioc_g_fmt_vid_out_mplane = vdec_g_fmt,
794 	.vidioc_try_fmt_vid_cap_mplane = vdec_try_fmt,
795 	.vidioc_try_fmt_vid_out_mplane = vdec_try_fmt,
796 	.vidioc_reqbufs = v4l2_m2m_ioctl_reqbufs,
797 	.vidioc_querybuf = v4l2_m2m_ioctl_querybuf,
798 	.vidioc_prepare_buf = v4l2_m2m_ioctl_prepare_buf,
799 	.vidioc_qbuf = v4l2_m2m_ioctl_qbuf,
800 	.vidioc_expbuf = v4l2_m2m_ioctl_expbuf,
801 	.vidioc_dqbuf = v4l2_m2m_ioctl_dqbuf,
802 	.vidioc_create_bufs = v4l2_m2m_ioctl_create_bufs,
803 	.vidioc_streamon = v4l2_m2m_ioctl_streamon,
804 	.vidioc_streamoff = v4l2_m2m_ioctl_streamoff,
805 	.vidioc_enum_framesizes = vdec_enum_framesizes,
806 	.vidioc_subscribe_event = vdec_subscribe_event,
807 	.vidioc_unsubscribe_event = v4l2_event_unsubscribe,
808 	.vidioc_try_decoder_cmd = v4l2_m2m_ioctl_try_decoder_cmd,
809 	.vidioc_decoder_cmd = vdec_decoder_cmd,
810 	.vidioc_g_pixelaspect = vdec_g_pixelaspect,
811 };
812 
m2m_queue_init(void * priv,struct vb2_queue * src_vq,struct vb2_queue * dst_vq)813 static int m2m_queue_init(void *priv, struct vb2_queue *src_vq,
814 			  struct vb2_queue *dst_vq)
815 {
816 	struct amvdec_session *sess = priv;
817 	int ret;
818 
819 	src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
820 	src_vq->io_modes = VB2_MMAP | VB2_DMABUF;
821 	src_vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
822 	src_vq->ops = &vdec_vb2_ops;
823 	src_vq->mem_ops = &vb2_dma_contig_memops;
824 	src_vq->drv_priv = sess;
825 	src_vq->buf_struct_size = sizeof(struct dummy_buf);
826 	src_vq->min_queued_buffers = 1;
827 	src_vq->dev = sess->core->dev;
828 	src_vq->lock = &sess->lock;
829 	ret = vb2_queue_init(src_vq);
830 	if (ret)
831 		return ret;
832 
833 	dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
834 	dst_vq->io_modes = VB2_MMAP | VB2_DMABUF;
835 	dst_vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
836 	dst_vq->ops = &vdec_vb2_ops;
837 	dst_vq->mem_ops = &vb2_dma_contig_memops;
838 	dst_vq->drv_priv = sess;
839 	dst_vq->buf_struct_size = sizeof(struct dummy_buf);
840 	dst_vq->min_queued_buffers = 1;
841 	dst_vq->dev = sess->core->dev;
842 	dst_vq->lock = &sess->lock;
843 	return vb2_queue_init(dst_vq);
844 }
845 
vdec_init_ctrls(struct amvdec_session * sess)846 static int vdec_init_ctrls(struct amvdec_session *sess)
847 {
848 	struct v4l2_ctrl_handler *ctrl_handler = &sess->ctrl_handler;
849 	int ret;
850 
851 	ret = v4l2_ctrl_handler_init(ctrl_handler, 1);
852 	if (ret)
853 		return ret;
854 
855 	sess->ctrl_min_buf_capture =
856 		v4l2_ctrl_new_std(ctrl_handler, NULL,
857 				  V4L2_CID_MIN_BUFFERS_FOR_CAPTURE, 1, 32, 1,
858 				  1);
859 
860 	ret = ctrl_handler->error;
861 	if (ret) {
862 		v4l2_ctrl_handler_free(ctrl_handler);
863 		return ret;
864 	}
865 
866 	return 0;
867 }
868 
vdec_open(struct file * file)869 static int vdec_open(struct file *file)
870 {
871 	struct amvdec_core *core = video_drvdata(file);
872 	struct device *dev = core->dev;
873 	const struct amvdec_format *formats = core->platform->formats;
874 	struct amvdec_session *sess;
875 	int ret;
876 
877 	sess = kzalloc(sizeof(*sess), GFP_KERNEL);
878 	if (!sess)
879 		return -ENOMEM;
880 
881 	sess->core = core;
882 
883 	sess->m2m_dev = v4l2_m2m_init(&vdec_m2m_ops);
884 	if (IS_ERR(sess->m2m_dev)) {
885 		dev_err(dev, "Fail to v4l2_m2m_init\n");
886 		ret = PTR_ERR(sess->m2m_dev);
887 		goto err_free_sess;
888 	}
889 
890 	sess->m2m_ctx = v4l2_m2m_ctx_init(sess->m2m_dev, sess, m2m_queue_init);
891 	if (IS_ERR(sess->m2m_ctx)) {
892 		dev_err(dev, "Fail to v4l2_m2m_ctx_init\n");
893 		ret = PTR_ERR(sess->m2m_ctx);
894 		goto err_m2m_release;
895 	}
896 
897 	ret = vdec_init_ctrls(sess);
898 	if (ret)
899 		goto err_m2m_release;
900 
901 	sess->pixfmt_cap = formats[0].pixfmts_cap[0];
902 	sess->fmt_out = &formats[0];
903 	sess->width = 1280;
904 	sess->height = 720;
905 	sess->pixelaspect.numerator = 1;
906 	sess->pixelaspect.denominator = 1;
907 	sess->src_buffer_size = SZ_1M;
908 
909 	INIT_LIST_HEAD(&sess->timestamps);
910 	INIT_LIST_HEAD(&sess->bufs_recycle);
911 	INIT_WORK(&sess->esparser_queue_work, esparser_queue_all_src);
912 	mutex_init(&sess->lock);
913 	mutex_init(&sess->bufs_recycle_lock);
914 	spin_lock_init(&sess->ts_spinlock);
915 
916 	v4l2_fh_init(&sess->fh, core->vdev_dec);
917 	sess->fh.ctrl_handler = &sess->ctrl_handler;
918 	v4l2_fh_add(&sess->fh);
919 	sess->fh.m2m_ctx = sess->m2m_ctx;
920 	file->private_data = &sess->fh;
921 
922 	return 0;
923 
924 err_m2m_release:
925 	v4l2_m2m_release(sess->m2m_dev);
926 err_free_sess:
927 	kfree(sess);
928 	return ret;
929 }
930 
vdec_close(struct file * file)931 static int vdec_close(struct file *file)
932 {
933 	struct amvdec_session *sess =
934 		container_of(file->private_data, struct amvdec_session, fh);
935 
936 	v4l2_m2m_ctx_release(sess->m2m_ctx);
937 	v4l2_m2m_release(sess->m2m_dev);
938 	v4l2_fh_del(&sess->fh);
939 	v4l2_fh_exit(&sess->fh);
940 
941 	mutex_destroy(&sess->lock);
942 	mutex_destroy(&sess->bufs_recycle_lock);
943 
944 	kfree(sess);
945 
946 	return 0;
947 }
948 
949 static const struct v4l2_file_operations vdec_fops = {
950 	.owner = THIS_MODULE,
951 	.open = vdec_open,
952 	.release = vdec_close,
953 	.unlocked_ioctl = video_ioctl2,
954 	.poll = v4l2_m2m_fop_poll,
955 	.mmap = v4l2_m2m_fop_mmap,
956 };
957 
vdec_isr(int irq,void * data)958 static irqreturn_t vdec_isr(int irq, void *data)
959 {
960 	struct amvdec_core *core = data;
961 	struct amvdec_session *sess = core->cur_sess;
962 
963 	sess->last_irq_jiffies = get_jiffies_64();
964 
965 	return sess->fmt_out->codec_ops->isr(sess);
966 }
967 
vdec_threaded_isr(int irq,void * data)968 static irqreturn_t vdec_threaded_isr(int irq, void *data)
969 {
970 	struct amvdec_core *core = data;
971 	struct amvdec_session *sess = core->cur_sess;
972 
973 	return sess->fmt_out->codec_ops->threaded_isr(sess);
974 }
975 
976 static const struct of_device_id vdec_dt_match[] = {
977 	{ .compatible = "amlogic,gxbb-vdec",
978 	  .data = &vdec_platform_gxbb },
979 	{ .compatible = "amlogic,gxm-vdec",
980 	  .data = &vdec_platform_gxm },
981 	{ .compatible = "amlogic,gxl-vdec",
982 	  .data = &vdec_platform_gxl },
983 	{ .compatible = "amlogic,gxlx-vdec",
984 	  .data = &vdec_platform_gxlx },
985 	{ .compatible = "amlogic,g12a-vdec",
986 	  .data = &vdec_platform_g12a },
987 	{ .compatible = "amlogic,sm1-vdec",
988 	  .data = &vdec_platform_sm1 },
989 	{}
990 };
991 MODULE_DEVICE_TABLE(of, vdec_dt_match);
992 
vdec_probe(struct platform_device * pdev)993 static int vdec_probe(struct platform_device *pdev)
994 {
995 	struct device *dev = &pdev->dev;
996 	struct video_device *vdev;
997 	struct amvdec_core *core;
998 	const struct of_device_id *of_id;
999 	int irq;
1000 	int ret;
1001 
1002 	core = devm_kzalloc(dev, sizeof(*core), GFP_KERNEL);
1003 	if (!core)
1004 		return -ENOMEM;
1005 
1006 	core->dev = dev;
1007 	platform_set_drvdata(pdev, core);
1008 
1009 	core->dos_base = devm_platform_ioremap_resource_byname(pdev, "dos");
1010 	if (IS_ERR(core->dos_base))
1011 		return PTR_ERR(core->dos_base);
1012 
1013 	core->esparser_base = devm_platform_ioremap_resource_byname(pdev, "esparser");
1014 	if (IS_ERR(core->esparser_base))
1015 		return PTR_ERR(core->esparser_base);
1016 
1017 	core->regmap_ao =
1018 		syscon_regmap_lookup_by_phandle(dev->of_node,
1019 						"amlogic,ao-sysctrl");
1020 	if (IS_ERR(core->regmap_ao)) {
1021 		dev_err(dev, "Couldn't regmap AO sysctrl\n");
1022 		return PTR_ERR(core->regmap_ao);
1023 	}
1024 
1025 	core->canvas = meson_canvas_get(dev);
1026 	if (IS_ERR(core->canvas))
1027 		return PTR_ERR(core->canvas);
1028 
1029 	of_id = of_match_node(vdec_dt_match, dev->of_node);
1030 	core->platform = of_id->data;
1031 
1032 	if (core->platform->revision == VDEC_REVISION_G12A ||
1033 	    core->platform->revision == VDEC_REVISION_SM1) {
1034 		core->vdec_hevcf_clk = devm_clk_get(dev, "vdec_hevcf");
1035 		if (IS_ERR(core->vdec_hevcf_clk))
1036 			return -EPROBE_DEFER;
1037 	}
1038 
1039 	core->dos_parser_clk = devm_clk_get(dev, "dos_parser");
1040 	if (IS_ERR(core->dos_parser_clk))
1041 		return -EPROBE_DEFER;
1042 
1043 	core->dos_clk = devm_clk_get(dev, "dos");
1044 	if (IS_ERR(core->dos_clk))
1045 		return -EPROBE_DEFER;
1046 
1047 	core->vdec_1_clk = devm_clk_get(dev, "vdec_1");
1048 	if (IS_ERR(core->vdec_1_clk))
1049 		return -EPROBE_DEFER;
1050 
1051 	core->vdec_hevc_clk = devm_clk_get(dev, "vdec_hevc");
1052 	if (IS_ERR(core->vdec_hevc_clk))
1053 		return -EPROBE_DEFER;
1054 
1055 	irq = platform_get_irq_byname(pdev, "vdec");
1056 	if (irq < 0)
1057 		return irq;
1058 
1059 	ret = devm_request_threaded_irq(core->dev, irq, vdec_isr,
1060 					vdec_threaded_isr, IRQF_ONESHOT,
1061 					"vdec", core);
1062 	if (ret)
1063 		return ret;
1064 
1065 	ret = esparser_init(pdev, core);
1066 	if (ret)
1067 		return ret;
1068 
1069 	ret = v4l2_device_register(dev, &core->v4l2_dev);
1070 	if (ret) {
1071 		dev_err(dev, "Couldn't register v4l2 device\n");
1072 		return -ENOMEM;
1073 	}
1074 
1075 	vdev = video_device_alloc();
1076 	if (!vdev) {
1077 		ret = -ENOMEM;
1078 		goto err_vdev_release;
1079 	}
1080 
1081 	core->vdev_dec = vdev;
1082 	core->dev_dec = dev;
1083 	mutex_init(&core->lock);
1084 
1085 	strscpy(vdev->name, "meson-video-decoder", sizeof(vdev->name));
1086 	vdev->release = video_device_release;
1087 	vdev->fops = &vdec_fops;
1088 	vdev->ioctl_ops = &vdec_ioctl_ops;
1089 	vdev->vfl_dir = VFL_DIR_M2M;
1090 	vdev->v4l2_dev = &core->v4l2_dev;
1091 	vdev->lock = &core->lock;
1092 	vdev->device_caps = V4L2_CAP_VIDEO_M2M_MPLANE | V4L2_CAP_STREAMING;
1093 
1094 	video_set_drvdata(vdev, core);
1095 
1096 	ret = video_register_device(vdev, VFL_TYPE_VIDEO, -1);
1097 	if (ret) {
1098 		dev_err(dev, "Failed registering video device\n");
1099 		goto err_vdev_release;
1100 	}
1101 
1102 	return 0;
1103 
1104 err_vdev_release:
1105 	video_device_release(vdev);
1106 	v4l2_device_unregister(&core->v4l2_dev);
1107 	return ret;
1108 }
1109 
vdec_remove(struct platform_device * pdev)1110 static void vdec_remove(struct platform_device *pdev)
1111 {
1112 	struct amvdec_core *core = platform_get_drvdata(pdev);
1113 
1114 	video_unregister_device(core->vdev_dec);
1115 	v4l2_device_unregister(&core->v4l2_dev);
1116 }
1117 
1118 static struct platform_driver meson_vdec_driver = {
1119 	.probe = vdec_probe,
1120 	.remove = vdec_remove,
1121 	.driver = {
1122 		.name = "meson-vdec",
1123 		.of_match_table = vdec_dt_match,
1124 	},
1125 };
1126 module_platform_driver(meson_vdec_driver);
1127 
1128 MODULE_DESCRIPTION("Meson video decoder driver for GXBB/GXL/GXM/G12/SM1");
1129 MODULE_AUTHOR("Maxime Jourdan <[email protected]>");
1130 MODULE_LICENSE("GPL");
1131