Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux...
[linux/fpc-iii.git] / drivers / media / platform / s5p-mfc / s5p_mfc.c
blob927ab492877931d87ce9f58af34f236df31ad360
1 /*
2 * Samsung S5P Multi Format Codec v 5.1
4 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
5 * Kamil Debski, <k.debski@samsung.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
13 #include <linux/clk.h>
14 #include <linux/delay.h>
15 #include <linux/interrupt.h>
16 #include <linux/io.h>
17 #include <linux/module.h>
18 #include <linux/platform_device.h>
19 #include <linux/sched.h>
20 #include <linux/slab.h>
21 #include <linux/videodev2.h>
22 #include <media/v4l2-event.h>
23 #include <linux/workqueue.h>
24 #include <linux/of.h>
25 #include <media/videobuf2-v4l2.h>
26 #include "s5p_mfc_common.h"
27 #include "s5p_mfc_ctrl.h"
28 #include "s5p_mfc_debug.h"
29 #include "s5p_mfc_dec.h"
30 #include "s5p_mfc_enc.h"
31 #include "s5p_mfc_intr.h"
32 #include "s5p_mfc_opr.h"
33 #include "s5p_mfc_cmd.h"
34 #include "s5p_mfc_pm.h"
36 #define S5P_MFC_NAME "s5p-mfc"
37 #define S5P_MFC_DEC_NAME "s5p-mfc-dec"
38 #define S5P_MFC_ENC_NAME "s5p-mfc-enc"
40 int mfc_debug_level;
41 module_param_named(debug, mfc_debug_level, int, S_IRUGO | S_IWUSR);
42 MODULE_PARM_DESC(debug, "Debug level - higher value produces more verbose messages");
44 /* Helper functions for interrupt processing */
46 /* Remove from hw execution round robin */
47 void clear_work_bit(struct s5p_mfc_ctx *ctx)
49 struct s5p_mfc_dev *dev = ctx->dev;
51 spin_lock(&dev->condlock);
52 __clear_bit(ctx->num, &dev->ctx_work_bits);
53 spin_unlock(&dev->condlock);
56 /* Add to hw execution round robin */
57 void set_work_bit(struct s5p_mfc_ctx *ctx)
59 struct s5p_mfc_dev *dev = ctx->dev;
61 spin_lock(&dev->condlock);
62 __set_bit(ctx->num, &dev->ctx_work_bits);
63 spin_unlock(&dev->condlock);
66 /* Remove from hw execution round robin */
67 void clear_work_bit_irqsave(struct s5p_mfc_ctx *ctx)
69 struct s5p_mfc_dev *dev = ctx->dev;
70 unsigned long flags;
72 spin_lock_irqsave(&dev->condlock, flags);
73 __clear_bit(ctx->num, &dev->ctx_work_bits);
74 spin_unlock_irqrestore(&dev->condlock, flags);
77 /* Add to hw execution round robin */
78 void set_work_bit_irqsave(struct s5p_mfc_ctx *ctx)
80 struct s5p_mfc_dev *dev = ctx->dev;
81 unsigned long flags;
83 spin_lock_irqsave(&dev->condlock, flags);
84 __set_bit(ctx->num, &dev->ctx_work_bits);
85 spin_unlock_irqrestore(&dev->condlock, flags);
88 int s5p_mfc_get_new_ctx(struct s5p_mfc_dev *dev)
90 unsigned long flags;
91 int ctx;
93 spin_lock_irqsave(&dev->condlock, flags);
94 ctx = dev->curr_ctx;
95 do {
96 ctx = (ctx + 1) % MFC_NUM_CONTEXTS;
97 if (ctx == dev->curr_ctx) {
98 if (!test_bit(ctx, &dev->ctx_work_bits))
99 ctx = -EAGAIN;
100 break;
102 } while (!test_bit(ctx, &dev->ctx_work_bits));
103 spin_unlock_irqrestore(&dev->condlock, flags);
105 return ctx;
108 /* Wake up context wait_queue */
109 static void wake_up_ctx(struct s5p_mfc_ctx *ctx, unsigned int reason,
110 unsigned int err)
112 ctx->int_cond = 1;
113 ctx->int_type = reason;
114 ctx->int_err = err;
115 wake_up(&ctx->queue);
118 /* Wake up device wait_queue */
119 static void wake_up_dev(struct s5p_mfc_dev *dev, unsigned int reason,
120 unsigned int err)
122 dev->int_cond = 1;
123 dev->int_type = reason;
124 dev->int_err = err;
125 wake_up(&dev->queue);
128 void s5p_mfc_cleanup_queue(struct list_head *lh, struct vb2_queue *vq)
130 struct s5p_mfc_buf *b;
131 int i;
133 while (!list_empty(lh)) {
134 b = list_entry(lh->next, struct s5p_mfc_buf, list);
135 for (i = 0; i < b->b->vb2_buf.num_planes; i++)
136 vb2_set_plane_payload(&b->b->vb2_buf, i, 0);
137 vb2_buffer_done(&b->b->vb2_buf, VB2_BUF_STATE_ERROR);
138 list_del(&b->list);
142 static void s5p_mfc_watchdog(unsigned long arg)
144 struct s5p_mfc_dev *dev = (struct s5p_mfc_dev *)arg;
146 if (test_bit(0, &dev->hw_lock))
147 atomic_inc(&dev->watchdog_cnt);
148 if (atomic_read(&dev->watchdog_cnt) >= MFC_WATCHDOG_CNT) {
149 /* This means that hw is busy and no interrupts were
150 * generated by hw for the Nth time of running this
151 * watchdog timer. This usually means a serious hw
152 * error. Now it is time to kill all instances and
153 * reset the MFC. */
154 mfc_err("Time out during waiting for HW\n");
155 queue_work(dev->watchdog_workqueue, &dev->watchdog_work);
157 dev->watchdog_timer.expires = jiffies +
158 msecs_to_jiffies(MFC_WATCHDOG_INTERVAL);
159 add_timer(&dev->watchdog_timer);
162 static void s5p_mfc_watchdog_worker(struct work_struct *work)
164 struct s5p_mfc_dev *dev;
165 struct s5p_mfc_ctx *ctx;
166 unsigned long flags;
167 int mutex_locked;
168 int i, ret;
170 dev = container_of(work, struct s5p_mfc_dev, watchdog_work);
172 mfc_err("Driver timeout error handling\n");
173 /* Lock the mutex that protects open and release.
174 * This is necessary as they may load and unload firmware. */
175 mutex_locked = mutex_trylock(&dev->mfc_mutex);
176 if (!mutex_locked)
177 mfc_err("Error: some instance may be closing/opening\n");
178 spin_lock_irqsave(&dev->irqlock, flags);
180 s5p_mfc_clock_off();
182 for (i = 0; i < MFC_NUM_CONTEXTS; i++) {
183 ctx = dev->ctx[i];
184 if (!ctx)
185 continue;
186 ctx->state = MFCINST_ERROR;
187 s5p_mfc_cleanup_queue(&ctx->dst_queue, &ctx->vq_dst);
188 s5p_mfc_cleanup_queue(&ctx->src_queue, &ctx->vq_src);
189 clear_work_bit(ctx);
190 wake_up_ctx(ctx, S5P_MFC_R2H_CMD_ERR_RET, 0);
192 clear_bit(0, &dev->hw_lock);
193 spin_unlock_irqrestore(&dev->irqlock, flags);
195 /* De-init MFC */
196 s5p_mfc_deinit_hw(dev);
198 /* Double check if there is at least one instance running.
199 * If no instance is in memory than no firmware should be present */
200 if (dev->num_inst > 0) {
201 ret = s5p_mfc_load_firmware(dev);
202 if (ret) {
203 mfc_err("Failed to reload FW\n");
204 goto unlock;
206 s5p_mfc_clock_on();
207 ret = s5p_mfc_init_hw(dev);
208 if (ret)
209 mfc_err("Failed to reinit FW\n");
211 unlock:
212 if (mutex_locked)
213 mutex_unlock(&dev->mfc_mutex);
216 static void s5p_mfc_handle_frame_all_extracted(struct s5p_mfc_ctx *ctx)
218 struct s5p_mfc_buf *dst_buf;
219 struct s5p_mfc_dev *dev = ctx->dev;
221 ctx->state = MFCINST_FINISHED;
222 ctx->sequence++;
223 while (!list_empty(&ctx->dst_queue)) {
224 dst_buf = list_entry(ctx->dst_queue.next,
225 struct s5p_mfc_buf, list);
226 mfc_debug(2, "Cleaning up buffer: %d\n",
227 dst_buf->b->vb2_buf.index);
228 vb2_set_plane_payload(&dst_buf->b->vb2_buf, 0, 0);
229 vb2_set_plane_payload(&dst_buf->b->vb2_buf, 1, 0);
230 list_del(&dst_buf->list);
231 dst_buf->flags |= MFC_BUF_FLAG_EOS;
232 ctx->dst_queue_cnt--;
233 dst_buf->b->sequence = (ctx->sequence++);
235 if (s5p_mfc_hw_call(dev->mfc_ops, get_pic_type_top, ctx) ==
236 s5p_mfc_hw_call(dev->mfc_ops, get_pic_type_bot, ctx))
237 dst_buf->b->field = V4L2_FIELD_NONE;
238 else
239 dst_buf->b->field = V4L2_FIELD_INTERLACED;
240 dst_buf->b->flags |= V4L2_BUF_FLAG_LAST;
242 ctx->dec_dst_flag &= ~(1 << dst_buf->b->vb2_buf.index);
243 vb2_buffer_done(&dst_buf->b->vb2_buf, VB2_BUF_STATE_DONE);
247 static void s5p_mfc_handle_frame_copy_time(struct s5p_mfc_ctx *ctx)
249 struct s5p_mfc_dev *dev = ctx->dev;
250 struct s5p_mfc_buf *dst_buf, *src_buf;
251 size_t dec_y_addr;
252 unsigned int frame_type;
254 /* Make sure we actually have a new frame before continuing. */
255 frame_type = s5p_mfc_hw_call(dev->mfc_ops, get_dec_frame_type, dev);
256 if (frame_type == S5P_FIMV_DECODE_FRAME_SKIPPED)
257 return;
258 dec_y_addr = s5p_mfc_hw_call(dev->mfc_ops, get_dec_y_adr, dev);
260 /* Copy timestamp / timecode from decoded src to dst and set
261 appropriate flags. */
262 src_buf = list_entry(ctx->src_queue.next, struct s5p_mfc_buf, list);
263 list_for_each_entry(dst_buf, &ctx->dst_queue, list) {
264 if (vb2_dma_contig_plane_dma_addr(&dst_buf->b->vb2_buf, 0)
265 == dec_y_addr) {
266 dst_buf->b->timecode =
267 src_buf->b->timecode;
268 dst_buf->b->vb2_buf.timestamp =
269 src_buf->b->vb2_buf.timestamp;
270 dst_buf->b->flags &=
271 ~V4L2_BUF_FLAG_TSTAMP_SRC_MASK;
272 dst_buf->b->flags |=
273 src_buf->b->flags
274 & V4L2_BUF_FLAG_TSTAMP_SRC_MASK;
275 switch (frame_type) {
276 case S5P_FIMV_DECODE_FRAME_I_FRAME:
277 dst_buf->b->flags |=
278 V4L2_BUF_FLAG_KEYFRAME;
279 break;
280 case S5P_FIMV_DECODE_FRAME_P_FRAME:
281 dst_buf->b->flags |=
282 V4L2_BUF_FLAG_PFRAME;
283 break;
284 case S5P_FIMV_DECODE_FRAME_B_FRAME:
285 dst_buf->b->flags |=
286 V4L2_BUF_FLAG_BFRAME;
287 break;
288 default:
289 /* Don't know how to handle
290 S5P_FIMV_DECODE_FRAME_OTHER_FRAME. */
291 mfc_debug(2, "Unexpected frame type: %d\n",
292 frame_type);
294 break;
299 static void s5p_mfc_handle_frame_new(struct s5p_mfc_ctx *ctx, unsigned int err)
301 struct s5p_mfc_dev *dev = ctx->dev;
302 struct s5p_mfc_buf *dst_buf;
303 size_t dspl_y_addr;
304 unsigned int frame_type;
306 dspl_y_addr = s5p_mfc_hw_call(dev->mfc_ops, get_dspl_y_adr, dev);
307 if (IS_MFCV6_PLUS(dev))
308 frame_type = s5p_mfc_hw_call(dev->mfc_ops,
309 get_disp_frame_type, ctx);
310 else
311 frame_type = s5p_mfc_hw_call(dev->mfc_ops,
312 get_dec_frame_type, dev);
314 /* If frame is same as previous then skip and do not dequeue */
315 if (frame_type == S5P_FIMV_DECODE_FRAME_SKIPPED) {
316 if (!ctx->after_packed_pb)
317 ctx->sequence++;
318 ctx->after_packed_pb = 0;
319 return;
321 ctx->sequence++;
322 /* The MFC returns address of the buffer, now we have to
323 * check which videobuf does it correspond to */
324 list_for_each_entry(dst_buf, &ctx->dst_queue, list) {
325 /* Check if this is the buffer we're looking for */
326 if (vb2_dma_contig_plane_dma_addr(&dst_buf->b->vb2_buf, 0)
327 == dspl_y_addr) {
328 list_del(&dst_buf->list);
329 ctx->dst_queue_cnt--;
330 dst_buf->b->sequence = ctx->sequence;
331 if (s5p_mfc_hw_call(dev->mfc_ops,
332 get_pic_type_top, ctx) ==
333 s5p_mfc_hw_call(dev->mfc_ops,
334 get_pic_type_bot, ctx))
335 dst_buf->b->field = V4L2_FIELD_NONE;
336 else
337 dst_buf->b->field =
338 V4L2_FIELD_INTERLACED;
339 vb2_set_plane_payload(&dst_buf->b->vb2_buf, 0,
340 ctx->luma_size);
341 vb2_set_plane_payload(&dst_buf->b->vb2_buf, 1,
342 ctx->chroma_size);
343 clear_bit(dst_buf->b->vb2_buf.index,
344 &ctx->dec_dst_flag);
346 vb2_buffer_done(&dst_buf->b->vb2_buf, err ?
347 VB2_BUF_STATE_ERROR : VB2_BUF_STATE_DONE);
349 break;
354 /* Handle frame decoding interrupt */
355 static void s5p_mfc_handle_frame(struct s5p_mfc_ctx *ctx,
356 unsigned int reason, unsigned int err)
358 struct s5p_mfc_dev *dev = ctx->dev;
359 unsigned int dst_frame_status;
360 unsigned int dec_frame_status;
361 struct s5p_mfc_buf *src_buf;
362 unsigned int res_change;
364 dst_frame_status = s5p_mfc_hw_call(dev->mfc_ops, get_dspl_status, dev)
365 & S5P_FIMV_DEC_STATUS_DECODING_STATUS_MASK;
366 dec_frame_status = s5p_mfc_hw_call(dev->mfc_ops, get_dec_status, dev)
367 & S5P_FIMV_DEC_STATUS_DECODING_STATUS_MASK;
368 res_change = (s5p_mfc_hw_call(dev->mfc_ops, get_dspl_status, dev)
369 & S5P_FIMV_DEC_STATUS_RESOLUTION_MASK)
370 >> S5P_FIMV_DEC_STATUS_RESOLUTION_SHIFT;
371 mfc_debug(2, "Frame Status: %x\n", dst_frame_status);
372 if (ctx->state == MFCINST_RES_CHANGE_INIT)
373 ctx->state = MFCINST_RES_CHANGE_FLUSH;
374 if (res_change == S5P_FIMV_RES_INCREASE ||
375 res_change == S5P_FIMV_RES_DECREASE) {
376 ctx->state = MFCINST_RES_CHANGE_INIT;
377 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
378 wake_up_ctx(ctx, reason, err);
379 WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
380 s5p_mfc_clock_off();
381 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
382 return;
384 if (ctx->dpb_flush_flag)
385 ctx->dpb_flush_flag = 0;
387 /* All frames remaining in the buffer have been extracted */
388 if (dst_frame_status == S5P_FIMV_DEC_STATUS_DECODING_EMPTY) {
389 if (ctx->state == MFCINST_RES_CHANGE_FLUSH) {
390 static const struct v4l2_event ev_src_ch = {
391 .type = V4L2_EVENT_SOURCE_CHANGE,
392 .u.src_change.changes =
393 V4L2_EVENT_SRC_CH_RESOLUTION,
396 s5p_mfc_handle_frame_all_extracted(ctx);
397 ctx->state = MFCINST_RES_CHANGE_END;
398 v4l2_event_queue_fh(&ctx->fh, &ev_src_ch);
400 goto leave_handle_frame;
401 } else {
402 s5p_mfc_handle_frame_all_extracted(ctx);
406 if (dec_frame_status == S5P_FIMV_DEC_STATUS_DECODING_DISPLAY)
407 s5p_mfc_handle_frame_copy_time(ctx);
409 /* A frame has been decoded and is in the buffer */
410 if (dst_frame_status == S5P_FIMV_DEC_STATUS_DISPLAY_ONLY ||
411 dst_frame_status == S5P_FIMV_DEC_STATUS_DECODING_DISPLAY) {
412 s5p_mfc_handle_frame_new(ctx, err);
413 } else {
414 mfc_debug(2, "No frame decode\n");
416 /* Mark source buffer as complete */
417 if (dst_frame_status != S5P_FIMV_DEC_STATUS_DISPLAY_ONLY
418 && !list_empty(&ctx->src_queue)) {
419 src_buf = list_entry(ctx->src_queue.next, struct s5p_mfc_buf,
420 list);
421 ctx->consumed_stream += s5p_mfc_hw_call(dev->mfc_ops,
422 get_consumed_stream, dev);
423 if (ctx->codec_mode != S5P_MFC_CODEC_H264_DEC &&
424 ctx->codec_mode != S5P_MFC_CODEC_VP8_DEC &&
425 ctx->consumed_stream + STUFF_BYTE <
426 src_buf->b->vb2_buf.planes[0].bytesused) {
427 /* Run MFC again on the same buffer */
428 mfc_debug(2, "Running again the same buffer\n");
429 ctx->after_packed_pb = 1;
430 } else {
431 mfc_debug(2, "MFC needs next buffer\n");
432 ctx->consumed_stream = 0;
433 if (src_buf->flags & MFC_BUF_FLAG_EOS)
434 ctx->state = MFCINST_FINISHING;
435 list_del(&src_buf->list);
436 ctx->src_queue_cnt--;
437 if (s5p_mfc_hw_call(dev->mfc_ops, err_dec, err) > 0)
438 vb2_buffer_done(&src_buf->b->vb2_buf,
439 VB2_BUF_STATE_ERROR);
440 else
441 vb2_buffer_done(&src_buf->b->vb2_buf,
442 VB2_BUF_STATE_DONE);
445 leave_handle_frame:
446 if ((ctx->src_queue_cnt == 0 && ctx->state != MFCINST_FINISHING)
447 || ctx->dst_queue_cnt < ctx->pb_count)
448 clear_work_bit(ctx);
449 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
450 wake_up_ctx(ctx, reason, err);
451 WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
452 s5p_mfc_clock_off();
453 /* if suspending, wake up device and do not try_run again*/
454 if (test_bit(0, &dev->enter_suspend))
455 wake_up_dev(dev, reason, err);
456 else
457 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
460 /* Error handling for interrupt */
461 static void s5p_mfc_handle_error(struct s5p_mfc_dev *dev,
462 struct s5p_mfc_ctx *ctx, unsigned int reason, unsigned int err)
464 mfc_err("Interrupt Error: %08x\n", err);
466 if (ctx != NULL) {
467 /* Error recovery is dependent on the state of context */
468 switch (ctx->state) {
469 case MFCINST_RES_CHANGE_INIT:
470 case MFCINST_RES_CHANGE_FLUSH:
471 case MFCINST_RES_CHANGE_END:
472 case MFCINST_FINISHING:
473 case MFCINST_FINISHED:
474 case MFCINST_RUNNING:
475 /* It is highly probable that an error occurred
476 * while decoding a frame */
477 clear_work_bit(ctx);
478 ctx->state = MFCINST_ERROR;
479 /* Mark all dst buffers as having an error */
480 s5p_mfc_cleanup_queue(&ctx->dst_queue, &ctx->vq_dst);
481 /* Mark all src buffers as having an error */
482 s5p_mfc_cleanup_queue(&ctx->src_queue, &ctx->vq_src);
483 wake_up_ctx(ctx, reason, err);
484 break;
485 default:
486 clear_work_bit(ctx);
487 ctx->state = MFCINST_ERROR;
488 wake_up_ctx(ctx, reason, err);
489 break;
492 WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
493 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
494 s5p_mfc_clock_off();
495 wake_up_dev(dev, reason, err);
496 return;
499 /* Header parsing interrupt handling */
500 static void s5p_mfc_handle_seq_done(struct s5p_mfc_ctx *ctx,
501 unsigned int reason, unsigned int err)
503 struct s5p_mfc_dev *dev;
505 if (ctx == NULL)
506 return;
507 dev = ctx->dev;
508 if (ctx->c_ops->post_seq_start) {
509 if (ctx->c_ops->post_seq_start(ctx))
510 mfc_err("post_seq_start() failed\n");
511 } else {
512 ctx->img_width = s5p_mfc_hw_call(dev->mfc_ops, get_img_width,
513 dev);
514 ctx->img_height = s5p_mfc_hw_call(dev->mfc_ops, get_img_height,
515 dev);
517 s5p_mfc_hw_call(dev->mfc_ops, dec_calc_dpb_size, ctx);
519 ctx->pb_count = s5p_mfc_hw_call(dev->mfc_ops, get_dpb_count,
520 dev);
521 ctx->mv_count = s5p_mfc_hw_call(dev->mfc_ops, get_mv_count,
522 dev);
523 if (ctx->img_width == 0 || ctx->img_height == 0)
524 ctx->state = MFCINST_ERROR;
525 else
526 ctx->state = MFCINST_HEAD_PARSED;
528 if ((ctx->codec_mode == S5P_MFC_CODEC_H264_DEC ||
529 ctx->codec_mode == S5P_MFC_CODEC_H264_MVC_DEC) &&
530 !list_empty(&ctx->src_queue)) {
531 struct s5p_mfc_buf *src_buf;
532 src_buf = list_entry(ctx->src_queue.next,
533 struct s5p_mfc_buf, list);
534 if (s5p_mfc_hw_call(dev->mfc_ops, get_consumed_stream,
535 dev) <
536 src_buf->b->vb2_buf.planes[0].bytesused)
537 ctx->head_processed = 0;
538 else
539 ctx->head_processed = 1;
540 } else {
541 ctx->head_processed = 1;
544 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
545 clear_work_bit(ctx);
546 WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
547 s5p_mfc_clock_off();
548 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
549 wake_up_ctx(ctx, reason, err);
552 /* Header parsing interrupt handling */
553 static void s5p_mfc_handle_init_buffers(struct s5p_mfc_ctx *ctx,
554 unsigned int reason, unsigned int err)
556 struct s5p_mfc_buf *src_buf;
557 struct s5p_mfc_dev *dev;
559 if (ctx == NULL)
560 return;
561 dev = ctx->dev;
562 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
563 ctx->int_type = reason;
564 ctx->int_err = err;
565 ctx->int_cond = 1;
566 clear_work_bit(ctx);
567 if (err == 0) {
568 ctx->state = MFCINST_RUNNING;
569 if (!ctx->dpb_flush_flag && ctx->head_processed) {
570 if (!list_empty(&ctx->src_queue)) {
571 src_buf = list_entry(ctx->src_queue.next,
572 struct s5p_mfc_buf, list);
573 list_del(&src_buf->list);
574 ctx->src_queue_cnt--;
575 vb2_buffer_done(&src_buf->b->vb2_buf,
576 VB2_BUF_STATE_DONE);
578 } else {
579 ctx->dpb_flush_flag = 0;
581 WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
583 s5p_mfc_clock_off();
585 wake_up(&ctx->queue);
586 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
587 } else {
588 WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
590 s5p_mfc_clock_off();
592 wake_up(&ctx->queue);
596 static void s5p_mfc_handle_stream_complete(struct s5p_mfc_ctx *ctx)
598 struct s5p_mfc_dev *dev = ctx->dev;
599 struct s5p_mfc_buf *mb_entry;
601 mfc_debug(2, "Stream completed\n");
603 ctx->state = MFCINST_FINISHED;
605 if (!list_empty(&ctx->dst_queue)) {
606 mb_entry = list_entry(ctx->dst_queue.next, struct s5p_mfc_buf,
607 list);
608 list_del(&mb_entry->list);
609 ctx->dst_queue_cnt--;
610 vb2_set_plane_payload(&mb_entry->b->vb2_buf, 0, 0);
611 vb2_buffer_done(&mb_entry->b->vb2_buf, VB2_BUF_STATE_DONE);
614 clear_work_bit(ctx);
616 WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
618 s5p_mfc_clock_off();
619 wake_up(&ctx->queue);
620 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
623 /* Interrupt processing */
624 static irqreturn_t s5p_mfc_irq(int irq, void *priv)
626 struct s5p_mfc_dev *dev = priv;
627 struct s5p_mfc_ctx *ctx;
628 unsigned int reason;
629 unsigned int err;
631 mfc_debug_enter();
632 /* Reset the timeout watchdog */
633 atomic_set(&dev->watchdog_cnt, 0);
634 spin_lock(&dev->irqlock);
635 ctx = dev->ctx[dev->curr_ctx];
636 /* Get the reason of interrupt and the error code */
637 reason = s5p_mfc_hw_call(dev->mfc_ops, get_int_reason, dev);
638 err = s5p_mfc_hw_call(dev->mfc_ops, get_int_err, dev);
639 mfc_debug(1, "Int reason: %d (err: %08x)\n", reason, err);
640 switch (reason) {
641 case S5P_MFC_R2H_CMD_ERR_RET:
642 /* An error has occurred */
643 if (ctx->state == MFCINST_RUNNING &&
644 s5p_mfc_hw_call(dev->mfc_ops, err_dec, err) >=
645 dev->warn_start)
646 s5p_mfc_handle_frame(ctx, reason, err);
647 else
648 s5p_mfc_handle_error(dev, ctx, reason, err);
649 clear_bit(0, &dev->enter_suspend);
650 break;
652 case S5P_MFC_R2H_CMD_SLICE_DONE_RET:
653 case S5P_MFC_R2H_CMD_FIELD_DONE_RET:
654 case S5P_MFC_R2H_CMD_FRAME_DONE_RET:
655 if (ctx->c_ops->post_frame_start) {
656 if (ctx->c_ops->post_frame_start(ctx))
657 mfc_err("post_frame_start() failed\n");
659 if (ctx->state == MFCINST_FINISHING &&
660 list_empty(&ctx->ref_queue)) {
661 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
662 s5p_mfc_handle_stream_complete(ctx);
663 break;
665 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
666 wake_up_ctx(ctx, reason, err);
667 WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
668 s5p_mfc_clock_off();
669 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
670 } else {
671 s5p_mfc_handle_frame(ctx, reason, err);
673 break;
675 case S5P_MFC_R2H_CMD_SEQ_DONE_RET:
676 s5p_mfc_handle_seq_done(ctx, reason, err);
677 break;
679 case S5P_MFC_R2H_CMD_OPEN_INSTANCE_RET:
680 ctx->inst_no = s5p_mfc_hw_call(dev->mfc_ops, get_inst_no, dev);
681 ctx->state = MFCINST_GOT_INST;
682 clear_work_bit(ctx);
683 wake_up(&ctx->queue);
684 goto irq_cleanup_hw;
686 case S5P_MFC_R2H_CMD_CLOSE_INSTANCE_RET:
687 clear_work_bit(ctx);
688 ctx->inst_no = MFC_NO_INSTANCE_SET;
689 ctx->state = MFCINST_FREE;
690 wake_up(&ctx->queue);
691 goto irq_cleanup_hw;
693 case S5P_MFC_R2H_CMD_SYS_INIT_RET:
694 case S5P_MFC_R2H_CMD_FW_STATUS_RET:
695 case S5P_MFC_R2H_CMD_SLEEP_RET:
696 case S5P_MFC_R2H_CMD_WAKEUP_RET:
697 if (ctx)
698 clear_work_bit(ctx);
699 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
700 wake_up_dev(dev, reason, err);
701 clear_bit(0, &dev->hw_lock);
702 clear_bit(0, &dev->enter_suspend);
703 break;
705 case S5P_MFC_R2H_CMD_INIT_BUFFERS_RET:
706 s5p_mfc_handle_init_buffers(ctx, reason, err);
707 break;
709 case S5P_MFC_R2H_CMD_COMPLETE_SEQ_RET:
710 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
711 ctx->int_type = reason;
712 ctx->int_err = err;
713 s5p_mfc_handle_stream_complete(ctx);
714 break;
716 case S5P_MFC_R2H_CMD_DPB_FLUSH_RET:
717 clear_work_bit(ctx);
718 ctx->state = MFCINST_RUNNING;
719 wake_up(&ctx->queue);
720 goto irq_cleanup_hw;
722 default:
723 mfc_debug(2, "Unknown int reason\n");
724 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
726 spin_unlock(&dev->irqlock);
727 mfc_debug_leave();
728 return IRQ_HANDLED;
729 irq_cleanup_hw:
730 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
731 ctx->int_type = reason;
732 ctx->int_err = err;
733 ctx->int_cond = 1;
734 if (test_and_clear_bit(0, &dev->hw_lock) == 0)
735 mfc_err("Failed to unlock hw\n");
737 s5p_mfc_clock_off();
739 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
740 spin_unlock(&dev->irqlock);
741 mfc_debug(2, "Exit via irq_cleanup_hw\n");
742 return IRQ_HANDLED;
745 /* Open an MFC node */
746 static int s5p_mfc_open(struct file *file)
748 struct video_device *vdev = video_devdata(file);
749 struct s5p_mfc_dev *dev = video_drvdata(file);
750 struct s5p_mfc_ctx *ctx = NULL;
751 struct vb2_queue *q;
752 int ret = 0;
754 mfc_debug_enter();
755 if (mutex_lock_interruptible(&dev->mfc_mutex))
756 return -ERESTARTSYS;
757 dev->num_inst++; /* It is guarded by mfc_mutex in vfd */
758 /* Allocate memory for context */
759 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
760 if (!ctx) {
761 mfc_err("Not enough memory\n");
762 ret = -ENOMEM;
763 goto err_alloc;
765 v4l2_fh_init(&ctx->fh, vdev);
766 file->private_data = &ctx->fh;
767 v4l2_fh_add(&ctx->fh);
768 ctx->dev = dev;
769 INIT_LIST_HEAD(&ctx->src_queue);
770 INIT_LIST_HEAD(&ctx->dst_queue);
771 ctx->src_queue_cnt = 0;
772 ctx->dst_queue_cnt = 0;
773 /* Get context number */
774 ctx->num = 0;
775 while (dev->ctx[ctx->num]) {
776 ctx->num++;
777 if (ctx->num >= MFC_NUM_CONTEXTS) {
778 mfc_err("Too many open contexts\n");
779 ret = -EBUSY;
780 goto err_no_ctx;
783 /* Mark context as idle */
784 clear_work_bit_irqsave(ctx);
785 dev->ctx[ctx->num] = ctx;
786 if (vdev == dev->vfd_dec) {
787 ctx->type = MFCINST_DECODER;
788 ctx->c_ops = get_dec_codec_ops();
789 s5p_mfc_dec_init(ctx);
790 /* Setup ctrl handler */
791 ret = s5p_mfc_dec_ctrls_setup(ctx);
792 if (ret) {
793 mfc_err("Failed to setup mfc controls\n");
794 goto err_ctrls_setup;
796 } else if (vdev == dev->vfd_enc) {
797 ctx->type = MFCINST_ENCODER;
798 ctx->c_ops = get_enc_codec_ops();
799 /* only for encoder */
800 INIT_LIST_HEAD(&ctx->ref_queue);
801 ctx->ref_queue_cnt = 0;
802 s5p_mfc_enc_init(ctx);
803 /* Setup ctrl handler */
804 ret = s5p_mfc_enc_ctrls_setup(ctx);
805 if (ret) {
806 mfc_err("Failed to setup mfc controls\n");
807 goto err_ctrls_setup;
809 } else {
810 ret = -ENOENT;
811 goto err_bad_node;
813 ctx->fh.ctrl_handler = &ctx->ctrl_handler;
814 ctx->inst_no = MFC_NO_INSTANCE_SET;
815 /* Load firmware if this is the first instance */
816 if (dev->num_inst == 1) {
817 dev->watchdog_timer.expires = jiffies +
818 msecs_to_jiffies(MFC_WATCHDOG_INTERVAL);
819 add_timer(&dev->watchdog_timer);
820 ret = s5p_mfc_power_on();
821 if (ret < 0) {
822 mfc_err("power on failed\n");
823 goto err_pwr_enable;
825 s5p_mfc_clock_on();
826 ret = s5p_mfc_load_firmware(dev);
827 if (ret) {
828 s5p_mfc_clock_off();
829 goto err_load_fw;
831 /* Init the FW */
832 ret = s5p_mfc_init_hw(dev);
833 s5p_mfc_clock_off();
834 if (ret)
835 goto err_init_hw;
837 /* Init videobuf2 queue for CAPTURE */
838 q = &ctx->vq_dst;
839 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
840 q->drv_priv = &ctx->fh;
841 q->lock = &dev->mfc_mutex;
842 if (vdev == dev->vfd_dec) {
843 q->io_modes = VB2_MMAP;
844 q->ops = get_dec_queue_ops();
845 } else if (vdev == dev->vfd_enc) {
846 q->io_modes = VB2_MMAP | VB2_USERPTR;
847 q->ops = get_enc_queue_ops();
848 } else {
849 ret = -ENOENT;
850 goto err_queue_init;
852 q->mem_ops = &vb2_dma_contig_memops;
853 q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
854 ret = vb2_queue_init(q);
855 if (ret) {
856 mfc_err("Failed to initialize videobuf2 queue(capture)\n");
857 goto err_queue_init;
859 /* Init videobuf2 queue for OUTPUT */
860 q = &ctx->vq_src;
861 q->type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
862 q->io_modes = VB2_MMAP;
863 q->drv_priv = &ctx->fh;
864 q->lock = &dev->mfc_mutex;
865 if (vdev == dev->vfd_dec) {
866 q->io_modes = VB2_MMAP;
867 q->ops = get_dec_queue_ops();
868 } else if (vdev == dev->vfd_enc) {
869 q->io_modes = VB2_MMAP | VB2_USERPTR;
870 q->ops = get_enc_queue_ops();
871 } else {
872 ret = -ENOENT;
873 goto err_queue_init;
875 /* One way to indicate end-of-stream for MFC is to set the
876 * bytesused == 0. However by default videobuf2 handles bytesused
877 * equal to 0 as a special case and changes its value to the size
878 * of the buffer. Set the allow_zero_bytesused flag so that videobuf2
879 * will keep the value of bytesused intact.
881 q->allow_zero_bytesused = 1;
882 q->mem_ops = &vb2_dma_contig_memops;
883 q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
884 ret = vb2_queue_init(q);
885 if (ret) {
886 mfc_err("Failed to initialize videobuf2 queue(output)\n");
887 goto err_queue_init;
889 init_waitqueue_head(&ctx->queue);
890 mutex_unlock(&dev->mfc_mutex);
891 mfc_debug_leave();
892 return ret;
893 /* Deinit when failure occurred */
894 err_queue_init:
895 if (dev->num_inst == 1)
896 s5p_mfc_deinit_hw(dev);
897 err_init_hw:
898 err_load_fw:
899 err_pwr_enable:
900 if (dev->num_inst == 1) {
901 if (s5p_mfc_power_off() < 0)
902 mfc_err("power off failed\n");
903 del_timer_sync(&dev->watchdog_timer);
905 err_ctrls_setup:
906 s5p_mfc_dec_ctrls_delete(ctx);
907 err_bad_node:
908 dev->ctx[ctx->num] = NULL;
909 err_no_ctx:
910 v4l2_fh_del(&ctx->fh);
911 v4l2_fh_exit(&ctx->fh);
912 kfree(ctx);
913 err_alloc:
914 dev->num_inst--;
915 mutex_unlock(&dev->mfc_mutex);
916 mfc_debug_leave();
917 return ret;
920 /* Release MFC context */
921 static int s5p_mfc_release(struct file *file)
923 struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data);
924 struct s5p_mfc_dev *dev = ctx->dev;
926 mfc_debug_enter();
927 mutex_lock(&dev->mfc_mutex);
928 s5p_mfc_clock_on();
929 vb2_queue_release(&ctx->vq_src);
930 vb2_queue_release(&ctx->vq_dst);
931 /* Mark context as idle */
932 clear_work_bit_irqsave(ctx);
933 /* If instance was initialised and not yet freed,
934 * return instance and free resources */
935 if (ctx->state != MFCINST_FREE && ctx->state != MFCINST_INIT) {
936 mfc_debug(2, "Has to free instance\n");
937 s5p_mfc_close_mfc_inst(dev, ctx);
939 /* hardware locking scheme */
940 if (dev->curr_ctx == ctx->num)
941 clear_bit(0, &dev->hw_lock);
942 dev->num_inst--;
943 if (dev->num_inst == 0) {
944 mfc_debug(2, "Last instance\n");
945 s5p_mfc_deinit_hw(dev);
946 del_timer_sync(&dev->watchdog_timer);
947 if (s5p_mfc_power_off() < 0)
948 mfc_err("Power off failed\n");
950 mfc_debug(2, "Shutting down clock\n");
951 s5p_mfc_clock_off();
952 dev->ctx[ctx->num] = NULL;
953 s5p_mfc_dec_ctrls_delete(ctx);
954 v4l2_fh_del(&ctx->fh);
955 v4l2_fh_exit(&ctx->fh);
956 kfree(ctx);
957 mfc_debug_leave();
958 mutex_unlock(&dev->mfc_mutex);
959 return 0;
962 /* Poll */
963 static unsigned int s5p_mfc_poll(struct file *file,
964 struct poll_table_struct *wait)
966 struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data);
967 struct s5p_mfc_dev *dev = ctx->dev;
968 struct vb2_queue *src_q, *dst_q;
969 struct vb2_buffer *src_vb = NULL, *dst_vb = NULL;
970 unsigned int rc = 0;
971 unsigned long flags;
973 mutex_lock(&dev->mfc_mutex);
974 src_q = &ctx->vq_src;
975 dst_q = &ctx->vq_dst;
977 * There has to be at least one buffer queued on each queued_list, which
978 * means either in driver already or waiting for driver to claim it
979 * and start processing.
981 if ((!src_q->streaming || list_empty(&src_q->queued_list))
982 && (!dst_q->streaming || list_empty(&dst_q->queued_list))) {
983 rc = POLLERR;
984 goto end;
986 mutex_unlock(&dev->mfc_mutex);
987 poll_wait(file, &ctx->fh.wait, wait);
988 poll_wait(file, &src_q->done_wq, wait);
989 poll_wait(file, &dst_q->done_wq, wait);
990 mutex_lock(&dev->mfc_mutex);
991 if (v4l2_event_pending(&ctx->fh))
992 rc |= POLLPRI;
993 spin_lock_irqsave(&src_q->done_lock, flags);
994 if (!list_empty(&src_q->done_list))
995 src_vb = list_first_entry(&src_q->done_list, struct vb2_buffer,
996 done_entry);
997 if (src_vb && (src_vb->state == VB2_BUF_STATE_DONE
998 || src_vb->state == VB2_BUF_STATE_ERROR))
999 rc |= POLLOUT | POLLWRNORM;
1000 spin_unlock_irqrestore(&src_q->done_lock, flags);
1001 spin_lock_irqsave(&dst_q->done_lock, flags);
1002 if (!list_empty(&dst_q->done_list))
1003 dst_vb = list_first_entry(&dst_q->done_list, struct vb2_buffer,
1004 done_entry);
1005 if (dst_vb && (dst_vb->state == VB2_BUF_STATE_DONE
1006 || dst_vb->state == VB2_BUF_STATE_ERROR))
1007 rc |= POLLIN | POLLRDNORM;
1008 spin_unlock_irqrestore(&dst_q->done_lock, flags);
1009 end:
1010 mutex_unlock(&dev->mfc_mutex);
1011 return rc;
1014 /* Mmap */
1015 static int s5p_mfc_mmap(struct file *file, struct vm_area_struct *vma)
1017 struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data);
1018 struct s5p_mfc_dev *dev = ctx->dev;
1019 unsigned long offset = vma->vm_pgoff << PAGE_SHIFT;
1020 int ret;
1022 if (mutex_lock_interruptible(&dev->mfc_mutex))
1023 return -ERESTARTSYS;
1024 if (offset < DST_QUEUE_OFF_BASE) {
1025 mfc_debug(2, "mmaping source\n");
1026 ret = vb2_mmap(&ctx->vq_src, vma);
1027 } else { /* capture */
1028 mfc_debug(2, "mmaping destination\n");
1029 vma->vm_pgoff -= (DST_QUEUE_OFF_BASE >> PAGE_SHIFT);
1030 ret = vb2_mmap(&ctx->vq_dst, vma);
1032 mutex_unlock(&dev->mfc_mutex);
1033 return ret;
1036 /* v4l2 ops */
1037 static const struct v4l2_file_operations s5p_mfc_fops = {
1038 .owner = THIS_MODULE,
1039 .open = s5p_mfc_open,
1040 .release = s5p_mfc_release,
1041 .poll = s5p_mfc_poll,
1042 .unlocked_ioctl = video_ioctl2,
1043 .mmap = s5p_mfc_mmap,
1046 static int match_child(struct device *dev, void *data)
1048 if (!dev_name(dev))
1049 return 0;
1050 return !strcmp(dev_name(dev), (char *)data);
1053 static void *mfc_get_drv_data(struct platform_device *pdev);
1055 static int s5p_mfc_alloc_memdevs(struct s5p_mfc_dev *dev)
1057 unsigned int mem_info[2] = { };
1059 dev->mem_dev_l = devm_kzalloc(&dev->plat_dev->dev,
1060 sizeof(struct device), GFP_KERNEL);
1061 if (!dev->mem_dev_l) {
1062 mfc_err("Not enough memory\n");
1063 return -ENOMEM;
1065 device_initialize(dev->mem_dev_l);
1066 of_property_read_u32_array(dev->plat_dev->dev.of_node,
1067 "samsung,mfc-l", mem_info, 2);
1068 if (dma_declare_coherent_memory(dev->mem_dev_l, mem_info[0],
1069 mem_info[0], mem_info[1],
1070 DMA_MEMORY_MAP | DMA_MEMORY_EXCLUSIVE) == 0) {
1071 mfc_err("Failed to declare coherent memory for\n"
1072 "MFC device\n");
1073 return -ENOMEM;
1076 dev->mem_dev_r = devm_kzalloc(&dev->plat_dev->dev,
1077 sizeof(struct device), GFP_KERNEL);
1078 if (!dev->mem_dev_r) {
1079 mfc_err("Not enough memory\n");
1080 return -ENOMEM;
1082 device_initialize(dev->mem_dev_r);
1083 of_property_read_u32_array(dev->plat_dev->dev.of_node,
1084 "samsung,mfc-r", mem_info, 2);
1085 if (dma_declare_coherent_memory(dev->mem_dev_r, mem_info[0],
1086 mem_info[0], mem_info[1],
1087 DMA_MEMORY_MAP | DMA_MEMORY_EXCLUSIVE) == 0) {
1088 pr_err("Failed to declare coherent memory for\n"
1089 "MFC device\n");
1090 return -ENOMEM;
1092 return 0;
1095 /* MFC probe function */
1096 static int s5p_mfc_probe(struct platform_device *pdev)
1098 struct s5p_mfc_dev *dev;
1099 struct video_device *vfd;
1100 struct resource *res;
1101 int ret;
1103 pr_debug("%s++\n", __func__);
1104 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
1105 if (!dev) {
1106 dev_err(&pdev->dev, "Not enough memory for MFC device\n");
1107 return -ENOMEM;
1110 spin_lock_init(&dev->irqlock);
1111 spin_lock_init(&dev->condlock);
1112 dev->plat_dev = pdev;
1113 if (!dev->plat_dev) {
1114 dev_err(&pdev->dev, "No platform data specified\n");
1115 return -ENODEV;
1118 dev->variant = mfc_get_drv_data(pdev);
1120 ret = s5p_mfc_init_pm(dev);
1121 if (ret < 0) {
1122 dev_err(&pdev->dev, "failed to get mfc clock source\n");
1123 return ret;
1126 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1128 dev->regs_base = devm_ioremap_resource(&pdev->dev, res);
1129 if (IS_ERR(dev->regs_base))
1130 return PTR_ERR(dev->regs_base);
1132 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1133 if (res == NULL) {
1134 dev_err(&pdev->dev, "failed to get irq resource\n");
1135 ret = -ENOENT;
1136 goto err_res;
1138 dev->irq = res->start;
1139 ret = devm_request_irq(&pdev->dev, dev->irq, s5p_mfc_irq,
1140 0, pdev->name, dev);
1141 if (ret) {
1142 dev_err(&pdev->dev, "Failed to install irq (%d)\n", ret);
1143 goto err_res;
1146 if (pdev->dev.of_node) {
1147 ret = s5p_mfc_alloc_memdevs(dev);
1148 if (ret < 0)
1149 goto err_res;
1150 } else {
1151 dev->mem_dev_l = device_find_child(&dev->plat_dev->dev,
1152 "s5p-mfc-l", match_child);
1153 if (!dev->mem_dev_l) {
1154 mfc_err("Mem child (L) device get failed\n");
1155 ret = -ENODEV;
1156 goto err_res;
1158 dev->mem_dev_r = device_find_child(&dev->plat_dev->dev,
1159 "s5p-mfc-r", match_child);
1160 if (!dev->mem_dev_r) {
1161 mfc_err("Mem child (R) device get failed\n");
1162 ret = -ENODEV;
1163 goto err_res;
1167 dev->alloc_ctx[0] = vb2_dma_contig_init_ctx(dev->mem_dev_l);
1168 if (IS_ERR(dev->alloc_ctx[0])) {
1169 ret = PTR_ERR(dev->alloc_ctx[0]);
1170 goto err_res;
1172 dev->alloc_ctx[1] = vb2_dma_contig_init_ctx(dev->mem_dev_r);
1173 if (IS_ERR(dev->alloc_ctx[1])) {
1174 ret = PTR_ERR(dev->alloc_ctx[1]);
1175 goto err_mem_init_ctx_1;
1178 mutex_init(&dev->mfc_mutex);
1180 ret = s5p_mfc_alloc_firmware(dev);
1181 if (ret)
1182 goto err_alloc_fw;
1184 ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
1185 if (ret)
1186 goto err_v4l2_dev_reg;
1187 init_waitqueue_head(&dev->queue);
1189 /* decoder */
1190 vfd = video_device_alloc();
1191 if (!vfd) {
1192 v4l2_err(&dev->v4l2_dev, "Failed to allocate video device\n");
1193 ret = -ENOMEM;
1194 goto err_dec_alloc;
1196 vfd->fops = &s5p_mfc_fops;
1197 vfd->ioctl_ops = get_dec_v4l2_ioctl_ops();
1198 vfd->release = video_device_release;
1199 vfd->lock = &dev->mfc_mutex;
1200 vfd->v4l2_dev = &dev->v4l2_dev;
1201 vfd->vfl_dir = VFL_DIR_M2M;
1202 snprintf(vfd->name, sizeof(vfd->name), "%s", S5P_MFC_DEC_NAME);
1203 dev->vfd_dec = vfd;
1204 ret = video_register_device(vfd, VFL_TYPE_GRABBER, 0);
1205 if (ret) {
1206 v4l2_err(&dev->v4l2_dev, "Failed to register video device\n");
1207 video_device_release(vfd);
1208 goto err_dec_reg;
1210 v4l2_info(&dev->v4l2_dev,
1211 "decoder registered as /dev/video%d\n", vfd->num);
1212 video_set_drvdata(vfd, dev);
1214 /* encoder */
1215 vfd = video_device_alloc();
1216 if (!vfd) {
1217 v4l2_err(&dev->v4l2_dev, "Failed to allocate video device\n");
1218 ret = -ENOMEM;
1219 goto err_enc_alloc;
1221 vfd->fops = &s5p_mfc_fops;
1222 vfd->ioctl_ops = get_enc_v4l2_ioctl_ops();
1223 vfd->release = video_device_release;
1224 vfd->lock = &dev->mfc_mutex;
1225 vfd->v4l2_dev = &dev->v4l2_dev;
1226 vfd->vfl_dir = VFL_DIR_M2M;
1227 snprintf(vfd->name, sizeof(vfd->name), "%s", S5P_MFC_ENC_NAME);
1228 dev->vfd_enc = vfd;
1229 ret = video_register_device(vfd, VFL_TYPE_GRABBER, 0);
1230 if (ret) {
1231 v4l2_err(&dev->v4l2_dev, "Failed to register video device\n");
1232 video_device_release(vfd);
1233 goto err_enc_reg;
1235 v4l2_info(&dev->v4l2_dev,
1236 "encoder registered as /dev/video%d\n", vfd->num);
1237 video_set_drvdata(vfd, dev);
1238 platform_set_drvdata(pdev, dev);
1240 dev->hw_lock = 0;
1241 dev->watchdog_workqueue = create_singlethread_workqueue(S5P_MFC_NAME);
1242 INIT_WORK(&dev->watchdog_work, s5p_mfc_watchdog_worker);
1243 atomic_set(&dev->watchdog_cnt, 0);
1244 init_timer(&dev->watchdog_timer);
1245 dev->watchdog_timer.data = (unsigned long)dev;
1246 dev->watchdog_timer.function = s5p_mfc_watchdog;
1248 /* Initialize HW ops and commands based on MFC version */
1249 s5p_mfc_init_hw_ops(dev);
1250 s5p_mfc_init_hw_cmds(dev);
1251 s5p_mfc_init_regs(dev);
1253 pr_debug("%s--\n", __func__);
1254 return 0;
1256 /* Deinit MFC if probe had failed */
1257 err_enc_reg:
1258 video_device_release(dev->vfd_enc);
1259 err_enc_alloc:
1260 video_unregister_device(dev->vfd_dec);
1261 err_dec_reg:
1262 video_device_release(dev->vfd_dec);
1263 err_dec_alloc:
1264 v4l2_device_unregister(&dev->v4l2_dev);
1265 err_v4l2_dev_reg:
1266 s5p_mfc_release_firmware(dev);
1267 err_alloc_fw:
1268 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx[1]);
1269 err_mem_init_ctx_1:
1270 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx[0]);
1271 err_res:
1272 s5p_mfc_final_pm(dev);
1274 pr_debug("%s-- with error\n", __func__);
1275 return ret;
1279 /* Remove the driver */
1280 static int s5p_mfc_remove(struct platform_device *pdev)
1282 struct s5p_mfc_dev *dev = platform_get_drvdata(pdev);
1284 v4l2_info(&dev->v4l2_dev, "Removing %s\n", pdev->name);
1286 del_timer_sync(&dev->watchdog_timer);
1287 flush_workqueue(dev->watchdog_workqueue);
1288 destroy_workqueue(dev->watchdog_workqueue);
1290 video_unregister_device(dev->vfd_enc);
1291 video_unregister_device(dev->vfd_dec);
1292 v4l2_device_unregister(&dev->v4l2_dev);
1293 s5p_mfc_release_firmware(dev);
1294 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx[0]);
1295 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx[1]);
1296 if (pdev->dev.of_node) {
1297 put_device(dev->mem_dev_l);
1298 put_device(dev->mem_dev_r);
1301 s5p_mfc_final_pm(dev);
1302 return 0;
1305 #ifdef CONFIG_PM_SLEEP
1307 static int s5p_mfc_suspend(struct device *dev)
1309 struct platform_device *pdev = to_platform_device(dev);
1310 struct s5p_mfc_dev *m_dev = platform_get_drvdata(pdev);
1311 int ret;
1313 if (m_dev->num_inst == 0)
1314 return 0;
1316 if (test_and_set_bit(0, &m_dev->enter_suspend) != 0) {
1317 mfc_err("Error: going to suspend for a second time\n");
1318 return -EIO;
1321 /* Check if we're processing then wait if it necessary. */
1322 while (test_and_set_bit(0, &m_dev->hw_lock) != 0) {
1323 /* Try and lock the HW */
1324 /* Wait on the interrupt waitqueue */
1325 ret = wait_event_interruptible_timeout(m_dev->queue,
1326 m_dev->int_cond, msecs_to_jiffies(MFC_INT_TIMEOUT));
1327 if (ret == 0) {
1328 mfc_err("Waiting for hardware to finish timed out\n");
1329 clear_bit(0, &m_dev->enter_suspend);
1330 return -EIO;
1334 ret = s5p_mfc_sleep(m_dev);
1335 if (ret) {
1336 clear_bit(0, &m_dev->enter_suspend);
1337 clear_bit(0, &m_dev->hw_lock);
1339 return ret;
1342 static int s5p_mfc_resume(struct device *dev)
1344 struct platform_device *pdev = to_platform_device(dev);
1345 struct s5p_mfc_dev *m_dev = platform_get_drvdata(pdev);
1347 if (m_dev->num_inst == 0)
1348 return 0;
1349 return s5p_mfc_wakeup(m_dev);
1351 #endif
1353 #ifdef CONFIG_PM
1354 static int s5p_mfc_runtime_suspend(struct device *dev)
1356 struct platform_device *pdev = to_platform_device(dev);
1357 struct s5p_mfc_dev *m_dev = platform_get_drvdata(pdev);
1359 atomic_set(&m_dev->pm.power, 0);
1360 return 0;
1363 static int s5p_mfc_runtime_resume(struct device *dev)
1365 struct platform_device *pdev = to_platform_device(dev);
1366 struct s5p_mfc_dev *m_dev = platform_get_drvdata(pdev);
1368 atomic_set(&m_dev->pm.power, 1);
1369 return 0;
1371 #endif
1373 /* Power management */
1374 static const struct dev_pm_ops s5p_mfc_pm_ops = {
1375 SET_SYSTEM_SLEEP_PM_OPS(s5p_mfc_suspend, s5p_mfc_resume)
1376 SET_RUNTIME_PM_OPS(s5p_mfc_runtime_suspend, s5p_mfc_runtime_resume,
1377 NULL)
1380 static struct s5p_mfc_buf_size_v5 mfc_buf_size_v5 = {
1381 .h264_ctx = MFC_H264_CTX_BUF_SIZE,
1382 .non_h264_ctx = MFC_CTX_BUF_SIZE,
1383 .dsc = DESC_BUF_SIZE,
1384 .shm = SHARED_BUF_SIZE,
1387 static struct s5p_mfc_buf_size buf_size_v5 = {
1388 .fw = MAX_FW_SIZE,
1389 .cpb = MAX_CPB_SIZE,
1390 .priv = &mfc_buf_size_v5,
1393 static struct s5p_mfc_buf_align mfc_buf_align_v5 = {
1394 .base = MFC_BASE_ALIGN_ORDER,
1397 static struct s5p_mfc_variant mfc_drvdata_v5 = {
1398 .version = MFC_VERSION,
1399 .version_bit = MFC_V5_BIT,
1400 .port_num = MFC_NUM_PORTS,
1401 .buf_size = &buf_size_v5,
1402 .buf_align = &mfc_buf_align_v5,
1403 .fw_name[0] = "s5p-mfc.fw",
1406 static struct s5p_mfc_buf_size_v6 mfc_buf_size_v6 = {
1407 .dev_ctx = MFC_CTX_BUF_SIZE_V6,
1408 .h264_dec_ctx = MFC_H264_DEC_CTX_BUF_SIZE_V6,
1409 .other_dec_ctx = MFC_OTHER_DEC_CTX_BUF_SIZE_V6,
1410 .h264_enc_ctx = MFC_H264_ENC_CTX_BUF_SIZE_V6,
1411 .other_enc_ctx = MFC_OTHER_ENC_CTX_BUF_SIZE_V6,
1414 static struct s5p_mfc_buf_size buf_size_v6 = {
1415 .fw = MAX_FW_SIZE_V6,
1416 .cpb = MAX_CPB_SIZE_V6,
1417 .priv = &mfc_buf_size_v6,
1420 static struct s5p_mfc_buf_align mfc_buf_align_v6 = {
1421 .base = 0,
1424 static struct s5p_mfc_variant mfc_drvdata_v6 = {
1425 .version = MFC_VERSION_V6,
1426 .version_bit = MFC_V6_BIT,
1427 .port_num = MFC_NUM_PORTS_V6,
1428 .buf_size = &buf_size_v6,
1429 .buf_align = &mfc_buf_align_v6,
1430 .fw_name[0] = "s5p-mfc-v6.fw",
1432 * v6-v2 firmware contains bug fixes and interface change
1433 * for init buffer command
1435 .fw_name[1] = "s5p-mfc-v6-v2.fw",
1438 static struct s5p_mfc_buf_size_v6 mfc_buf_size_v7 = {
1439 .dev_ctx = MFC_CTX_BUF_SIZE_V7,
1440 .h264_dec_ctx = MFC_H264_DEC_CTX_BUF_SIZE_V7,
1441 .other_dec_ctx = MFC_OTHER_DEC_CTX_BUF_SIZE_V7,
1442 .h264_enc_ctx = MFC_H264_ENC_CTX_BUF_SIZE_V7,
1443 .other_enc_ctx = MFC_OTHER_ENC_CTX_BUF_SIZE_V7,
1446 static struct s5p_mfc_buf_size buf_size_v7 = {
1447 .fw = MAX_FW_SIZE_V7,
1448 .cpb = MAX_CPB_SIZE_V7,
1449 .priv = &mfc_buf_size_v7,
1452 static struct s5p_mfc_buf_align mfc_buf_align_v7 = {
1453 .base = 0,
1456 static struct s5p_mfc_variant mfc_drvdata_v7 = {
1457 .version = MFC_VERSION_V7,
1458 .version_bit = MFC_V7_BIT,
1459 .port_num = MFC_NUM_PORTS_V7,
1460 .buf_size = &buf_size_v7,
1461 .buf_align = &mfc_buf_align_v7,
1462 .fw_name[0] = "s5p-mfc-v7.fw",
1465 static struct s5p_mfc_buf_size_v6 mfc_buf_size_v8 = {
1466 .dev_ctx = MFC_CTX_BUF_SIZE_V8,
1467 .h264_dec_ctx = MFC_H264_DEC_CTX_BUF_SIZE_V8,
1468 .other_dec_ctx = MFC_OTHER_DEC_CTX_BUF_SIZE_V8,
1469 .h264_enc_ctx = MFC_H264_ENC_CTX_BUF_SIZE_V8,
1470 .other_enc_ctx = MFC_OTHER_ENC_CTX_BUF_SIZE_V8,
1473 static struct s5p_mfc_buf_size buf_size_v8 = {
1474 .fw = MAX_FW_SIZE_V8,
1475 .cpb = MAX_CPB_SIZE_V8,
1476 .priv = &mfc_buf_size_v8,
1479 static struct s5p_mfc_buf_align mfc_buf_align_v8 = {
1480 .base = 0,
1483 static struct s5p_mfc_variant mfc_drvdata_v8 = {
1484 .version = MFC_VERSION_V8,
1485 .version_bit = MFC_V8_BIT,
1486 .port_num = MFC_NUM_PORTS_V8,
1487 .buf_size = &buf_size_v8,
1488 .buf_align = &mfc_buf_align_v8,
1489 .fw_name[0] = "s5p-mfc-v8.fw",
1492 static const struct platform_device_id mfc_driver_ids[] = {
1494 .name = "s5p-mfc",
1495 .driver_data = (unsigned long)&mfc_drvdata_v5,
1496 }, {
1497 .name = "s5p-mfc-v5",
1498 .driver_data = (unsigned long)&mfc_drvdata_v5,
1499 }, {
1500 .name = "s5p-mfc-v6",
1501 .driver_data = (unsigned long)&mfc_drvdata_v6,
1502 }, {
1503 .name = "s5p-mfc-v7",
1504 .driver_data = (unsigned long)&mfc_drvdata_v7,
1505 }, {
1506 .name = "s5p-mfc-v8",
1507 .driver_data = (unsigned long)&mfc_drvdata_v8,
1511 MODULE_DEVICE_TABLE(platform, mfc_driver_ids);
1513 static const struct of_device_id exynos_mfc_match[] = {
1515 .compatible = "samsung,mfc-v5",
1516 .data = &mfc_drvdata_v5,
1517 }, {
1518 .compatible = "samsung,mfc-v6",
1519 .data = &mfc_drvdata_v6,
1520 }, {
1521 .compatible = "samsung,mfc-v7",
1522 .data = &mfc_drvdata_v7,
1523 }, {
1524 .compatible = "samsung,mfc-v8",
1525 .data = &mfc_drvdata_v8,
1529 MODULE_DEVICE_TABLE(of, exynos_mfc_match);
1531 static void *mfc_get_drv_data(struct platform_device *pdev)
1533 struct s5p_mfc_variant *driver_data = NULL;
1535 if (pdev->dev.of_node) {
1536 const struct of_device_id *match;
1537 match = of_match_node(exynos_mfc_match,
1538 pdev->dev.of_node);
1539 if (match)
1540 driver_data = (struct s5p_mfc_variant *)match->data;
1541 } else {
1542 driver_data = (struct s5p_mfc_variant *)
1543 platform_get_device_id(pdev)->driver_data;
1545 return driver_data;
1548 static struct platform_driver s5p_mfc_driver = {
1549 .probe = s5p_mfc_probe,
1550 .remove = s5p_mfc_remove,
1551 .id_table = mfc_driver_ids,
1552 .driver = {
1553 .name = S5P_MFC_NAME,
1554 .pm = &s5p_mfc_pm_ops,
1555 .of_match_table = exynos_mfc_match,
1559 module_platform_driver(s5p_mfc_driver);
1561 MODULE_LICENSE("GPL");
1562 MODULE_AUTHOR("Kamil Debski <k.debski@samsung.com>");
1563 MODULE_DESCRIPTION("Samsung S5P Multi Format Codec V4L2 driver");