Merge remote-tracking branch 'mfd/for-mfd-next'
[deliverable/linux.git] / drivers / media / platform / s5p-mfc / s5p_mfc.c
CommitLineData
af935746
KD
1/*
2 * Samsung S5P Multi Format Codec v 5.1
3 *
4 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
5 * Kamil Debski, <k.debski@samsung.com>
6 *
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.
11 */
12
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>
af935746 21#include <linux/videodev2.h>
f9f715a9 22#include <media/v4l2-event.h>
af935746 23#include <linux/workqueue.h>
b27a23be 24#include <linux/of.h>
c79667dd 25#include <linux/of_reserved_mem.h>
c139990e 26#include <media/videobuf2-v4l2.h>
43a1ea1f 27#include "s5p_mfc_common.h"
af935746
KD
28#include "s5p_mfc_ctrl.h"
29#include "s5p_mfc_debug.h"
30#include "s5p_mfc_dec.h"
31#include "s5p_mfc_enc.h"
32#include "s5p_mfc_intr.h"
04f77673 33#include "s5p_mfc_iommu.h"
43a1ea1f
AK
34#include "s5p_mfc_opr.h"
35#include "s5p_mfc_cmd.h"
af935746 36#include "s5p_mfc_pm.h"
af935746 37
af935746
KD
38#define S5P_MFC_DEC_NAME "s5p-mfc-dec"
39#define S5P_MFC_ENC_NAME "s5p-mfc-enc"
40
139adba6
MCC
41int mfc_debug_level;
42module_param_named(debug, mfc_debug_level, int, S_IRUGO | S_IWUSR);
af935746
KD
43MODULE_PARM_DESC(debug, "Debug level - higher value produces more verbose messages");
44
45/* Helper functions for interrupt processing */
7fb89eca 46
af935746 47/* Remove from hw execution round robin */
7fb89eca 48void clear_work_bit(struct s5p_mfc_ctx *ctx)
af935746
KD
49{
50 struct s5p_mfc_dev *dev = ctx->dev;
51
52 spin_lock(&dev->condlock);
7fb89eca 53 __clear_bit(ctx->num, &dev->ctx_work_bits);
af935746
KD
54 spin_unlock(&dev->condlock);
55}
56
7fb89eca
AH
57/* Add to hw execution round robin */
58void set_work_bit(struct s5p_mfc_ctx *ctx)
59{
60 struct s5p_mfc_dev *dev = ctx->dev;
61
62 spin_lock(&dev->condlock);
63 __set_bit(ctx->num, &dev->ctx_work_bits);
64 spin_unlock(&dev->condlock);
65}
66
67/* Remove from hw execution round robin */
68void clear_work_bit_irqsave(struct s5p_mfc_ctx *ctx)
69{
70 struct s5p_mfc_dev *dev = ctx->dev;
71 unsigned long flags;
72
73 spin_lock_irqsave(&dev->condlock, flags);
74 __clear_bit(ctx->num, &dev->ctx_work_bits);
75 spin_unlock_irqrestore(&dev->condlock, flags);
76}
77
78/* Add to hw execution round robin */
79void set_work_bit_irqsave(struct s5p_mfc_ctx *ctx)
80{
81 struct s5p_mfc_dev *dev = ctx->dev;
82 unsigned long flags;
83
84 spin_lock_irqsave(&dev->condlock, flags);
85 __set_bit(ctx->num, &dev->ctx_work_bits);
86 spin_unlock_irqrestore(&dev->condlock, flags);
87}
88
05d1d0f0
AH
89int s5p_mfc_get_new_ctx(struct s5p_mfc_dev *dev)
90{
91 unsigned long flags;
92 int ctx;
93
94 spin_lock_irqsave(&dev->condlock, flags);
95 ctx = dev->curr_ctx;
96 do {
97 ctx = (ctx + 1) % MFC_NUM_CONTEXTS;
98 if (ctx == dev->curr_ctx) {
99 if (!test_bit(ctx, &dev->ctx_work_bits))
100 ctx = -EAGAIN;
101 break;
102 }
103 } while (!test_bit(ctx, &dev->ctx_work_bits));
104 spin_unlock_irqrestore(&dev->condlock, flags);
105
106 return ctx;
107}
108
af935746
KD
109/* Wake up context wait_queue */
110static void wake_up_ctx(struct s5p_mfc_ctx *ctx, unsigned int reason,
111 unsigned int err)
112{
113 ctx->int_cond = 1;
114 ctx->int_type = reason;
115 ctx->int_err = err;
116 wake_up(&ctx->queue);
117}
118
119/* Wake up device wait_queue */
120static void wake_up_dev(struct s5p_mfc_dev *dev, unsigned int reason,
121 unsigned int err)
122{
123 dev->int_cond = 1;
124 dev->int_type = reason;
125 dev->int_err = err;
126 wake_up(&dev->queue);
127}
128
62bbd72b
AH
129void s5p_mfc_cleanup_queue(struct list_head *lh, struct vb2_queue *vq)
130{
131 struct s5p_mfc_buf *b;
132 int i;
133
134 while (!list_empty(lh)) {
135 b = list_entry(lh->next, struct s5p_mfc_buf, list);
136 for (i = 0; i < b->b->vb2_buf.num_planes; i++)
137 vb2_set_plane_payload(&b->b->vb2_buf, i, 0);
138 vb2_buffer_done(&b->b->vb2_buf, VB2_BUF_STATE_ERROR);
139 list_del(&b->list);
140 }
141}
142
a13bba4f 143static void s5p_mfc_watchdog(unsigned long arg)
af935746
KD
144{
145 struct s5p_mfc_dev *dev = (struct s5p_mfc_dev *)arg;
146
147 if (test_bit(0, &dev->hw_lock))
148 atomic_inc(&dev->watchdog_cnt);
149 if (atomic_read(&dev->watchdog_cnt) >= MFC_WATCHDOG_CNT) {
150 /* This means that hw is busy and no interrupts were
151 * generated by hw for the Nth time of running this
152 * watchdog timer. This usually means a serious hw
153 * error. Now it is time to kill all instances and
154 * reset the MFC. */
155 mfc_err("Time out during waiting for HW\n");
ed90013e 156 schedule_work(&dev->watchdog_work);
af935746
KD
157 }
158 dev->watchdog_timer.expires = jiffies +
159 msecs_to_jiffies(MFC_WATCHDOG_INTERVAL);
160 add_timer(&dev->watchdog_timer);
161}
162
163static void s5p_mfc_watchdog_worker(struct work_struct *work)
164{
165 struct s5p_mfc_dev *dev;
166 struct s5p_mfc_ctx *ctx;
167 unsigned long flags;
168 int mutex_locked;
169 int i, ret;
170
171 dev = container_of(work, struct s5p_mfc_dev, watchdog_work);
172
173 mfc_err("Driver timeout error handling\n");
174 /* Lock the mutex that protects open and release.
175 * This is necessary as they may load and unload firmware. */
176 mutex_locked = mutex_trylock(&dev->mfc_mutex);
177 if (!mutex_locked)
178 mfc_err("Error: some instance may be closing/opening\n");
179 spin_lock_irqsave(&dev->irqlock, flags);
180
181 s5p_mfc_clock_off();
182
183 for (i = 0; i < MFC_NUM_CONTEXTS; i++) {
184 ctx = dev->ctx[i];
185 if (!ctx)
186 continue;
187 ctx->state = MFCINST_ERROR;
62bbd72b
AH
188 s5p_mfc_cleanup_queue(&ctx->dst_queue, &ctx->vq_dst);
189 s5p_mfc_cleanup_queue(&ctx->src_queue, &ctx->vq_src);
af935746 190 clear_work_bit(ctx);
43a1ea1f 191 wake_up_ctx(ctx, S5P_MFC_R2H_CMD_ERR_RET, 0);
af935746
KD
192 }
193 clear_bit(0, &dev->hw_lock);
194 spin_unlock_irqrestore(&dev->irqlock, flags);
b16e6448
AM
195
196 /* De-init MFC */
197 s5p_mfc_deinit_hw(dev);
198
af935746
KD
199 /* Double check if there is at least one instance running.
200 * If no instance is in memory than no firmware should be present */
201 if (dev->num_inst > 0) {
46075006 202 ret = s5p_mfc_load_firmware(dev);
af935746
KD
203 if (ret) {
204 mfc_err("Failed to reload FW\n");
205 goto unlock;
206 }
207 s5p_mfc_clock_on();
208 ret = s5p_mfc_init_hw(dev);
209 if (ret)
210 mfc_err("Failed to reinit FW\n");
211 }
212unlock:
213 if (mutex_locked)
214 mutex_unlock(&dev->mfc_mutex);
215}
216
af935746
KD
217static void s5p_mfc_handle_frame_all_extracted(struct s5p_mfc_ctx *ctx)
218{
219 struct s5p_mfc_buf *dst_buf;
43a1ea1f 220 struct s5p_mfc_dev *dev = ctx->dev;
af935746
KD
221
222 ctx->state = MFCINST_FINISHED;
223 ctx->sequence++;
224 while (!list_empty(&ctx->dst_queue)) {
225 dst_buf = list_entry(ctx->dst_queue.next,
226 struct s5p_mfc_buf, list);
227 mfc_debug(2, "Cleaning up buffer: %d\n",
2d700715
JS
228 dst_buf->b->vb2_buf.index);
229 vb2_set_plane_payload(&dst_buf->b->vb2_buf, 0, 0);
230 vb2_set_plane_payload(&dst_buf->b->vb2_buf, 1, 0);
af935746 231 list_del(&dst_buf->list);
4d0b0ed6 232 dst_buf->flags |= MFC_BUF_FLAG_EOS;
af935746 233 ctx->dst_queue_cnt--;
2d700715 234 dst_buf->b->sequence = (ctx->sequence++);
af935746 235
43a1ea1f
AK
236 if (s5p_mfc_hw_call(dev->mfc_ops, get_pic_type_top, ctx) ==
237 s5p_mfc_hw_call(dev->mfc_ops, get_pic_type_bot, ctx))
2d700715 238 dst_buf->b->field = V4L2_FIELD_NONE;
af935746 239 else
2d700715
JS
240 dst_buf->b->field = V4L2_FIELD_INTERLACED;
241 dst_buf->b->flags |= V4L2_BUF_FLAG_LAST;
af935746 242
2d700715
JS
243 ctx->dec_dst_flag &= ~(1 << dst_buf->b->vb2_buf.index);
244 vb2_buffer_done(&dst_buf->b->vb2_buf, VB2_BUF_STATE_DONE);
af935746
KD
245 }
246}
247
248static void s5p_mfc_handle_frame_copy_time(struct s5p_mfc_ctx *ctx)
249{
250 struct s5p_mfc_dev *dev = ctx->dev;
251 struct s5p_mfc_buf *dst_buf, *src_buf;
43a1ea1f
AK
252 size_t dec_y_addr;
253 unsigned int frame_type;
254
bb21c54a 255 /* Make sure we actually have a new frame before continuing. */
43a1ea1f 256 frame_type = s5p_mfc_hw_call(dev->mfc_ops, get_dec_frame_type, dev);
bb21c54a
IF
257 if (frame_type == S5P_FIMV_DECODE_FRAME_SKIPPED)
258 return;
259 dec_y_addr = s5p_mfc_hw_call(dev->mfc_ops, get_dec_y_adr, dev);
af935746
KD
260
261 /* Copy timestamp / timecode from decoded src to dst and set
bb21c54a 262 appropriate flags. */
af935746
KD
263 src_buf = list_entry(ctx->src_queue.next, struct s5p_mfc_buf, list);
264 list_for_each_entry(dst_buf, &ctx->dst_queue, list) {
2d700715
JS
265 if (vb2_dma_contig_plane_dma_addr(&dst_buf->b->vb2_buf, 0)
266 == dec_y_addr) {
267 dst_buf->b->timecode =
268 src_buf->b->timecode;
d6dd645e
JS
269 dst_buf->b->vb2_buf.timestamp =
270 src_buf->b->vb2_buf.timestamp;
2d700715 271 dst_buf->b->flags &=
309f4d62 272 ~V4L2_BUF_FLAG_TSTAMP_SRC_MASK;
2d700715
JS
273 dst_buf->b->flags |=
274 src_buf->b->flags
309f4d62 275 & V4L2_BUF_FLAG_TSTAMP_SRC_MASK;
af935746
KD
276 switch (frame_type) {
277 case S5P_FIMV_DECODE_FRAME_I_FRAME:
2d700715 278 dst_buf->b->flags |=
af935746
KD
279 V4L2_BUF_FLAG_KEYFRAME;
280 break;
281 case S5P_FIMV_DECODE_FRAME_P_FRAME:
2d700715 282 dst_buf->b->flags |=
af935746
KD
283 V4L2_BUF_FLAG_PFRAME;
284 break;
285 case S5P_FIMV_DECODE_FRAME_B_FRAME:
2d700715 286 dst_buf->b->flags |=
af935746
KD
287 V4L2_BUF_FLAG_BFRAME;
288 break;
bb21c54a
IF
289 default:
290 /* Don't know how to handle
291 S5P_FIMV_DECODE_FRAME_OTHER_FRAME. */
292 mfc_debug(2, "Unexpected frame type: %d\n",
293 frame_type);
af935746
KD
294 }
295 break;
296 }
297 }
298}
299
300static void s5p_mfc_handle_frame_new(struct s5p_mfc_ctx *ctx, unsigned int err)
301{
302 struct s5p_mfc_dev *dev = ctx->dev;
303 struct s5p_mfc_buf *dst_buf;
43a1ea1f
AK
304 size_t dspl_y_addr;
305 unsigned int frame_type;
af935746 306
43a1ea1f 307 dspl_y_addr = s5p_mfc_hw_call(dev->mfc_ops, get_dspl_y_adr, dev);
7c672812
SS
308 if (IS_MFCV6_PLUS(dev))
309 frame_type = s5p_mfc_hw_call(dev->mfc_ops,
310 get_disp_frame_type, ctx);
311 else
312 frame_type = s5p_mfc_hw_call(dev->mfc_ops,
313 get_dec_frame_type, dev);
43a1ea1f 314
af935746
KD
315 /* If frame is same as previous then skip and do not dequeue */
316 if (frame_type == S5P_FIMV_DECODE_FRAME_SKIPPED) {
317 if (!ctx->after_packed_pb)
318 ctx->sequence++;
319 ctx->after_packed_pb = 0;
320 return;
321 }
322 ctx->sequence++;
323 /* The MFC returns address of the buffer, now we have to
324 * check which videobuf does it correspond to */
325 list_for_each_entry(dst_buf, &ctx->dst_queue, list) {
326 /* Check if this is the buffer we're looking for */
2d700715
JS
327 if (vb2_dma_contig_plane_dma_addr(&dst_buf->b->vb2_buf, 0)
328 == dspl_y_addr) {
af935746
KD
329 list_del(&dst_buf->list);
330 ctx->dst_queue_cnt--;
2d700715 331 dst_buf->b->sequence = ctx->sequence;
43a1ea1f
AK
332 if (s5p_mfc_hw_call(dev->mfc_ops,
333 get_pic_type_top, ctx) ==
334 s5p_mfc_hw_call(dev->mfc_ops,
335 get_pic_type_bot, ctx))
2d700715 336 dst_buf->b->field = V4L2_FIELD_NONE;
af935746 337 else
2d700715 338 dst_buf->b->field =
af935746 339 V4L2_FIELD_INTERLACED;
2d700715
JS
340 vb2_set_plane_payload(&dst_buf->b->vb2_buf, 0,
341 ctx->luma_size);
342 vb2_set_plane_payload(&dst_buf->b->vb2_buf, 1,
343 ctx->chroma_size);
344 clear_bit(dst_buf->b->vb2_buf.index,
af935746
KD
345 &ctx->dec_dst_flag);
346
2d700715
JS
347 vb2_buffer_done(&dst_buf->b->vb2_buf, err ?
348 VB2_BUF_STATE_ERROR : VB2_BUF_STATE_DONE);
af935746 349
af935746
KD
350 break;
351 }
352 }
353}
354
355/* Handle frame decoding interrupt */
356static void s5p_mfc_handle_frame(struct s5p_mfc_ctx *ctx,
357 unsigned int reason, unsigned int err)
358{
359 struct s5p_mfc_dev *dev = ctx->dev;
360 unsigned int dst_frame_status;
a0517f5d 361 unsigned int dec_frame_status;
af935746 362 struct s5p_mfc_buf *src_buf;
af935746
KD
363 unsigned int res_change;
364
43a1ea1f 365 dst_frame_status = s5p_mfc_hw_call(dev->mfc_ops, get_dspl_status, dev)
af935746 366 & S5P_FIMV_DEC_STATUS_DECODING_STATUS_MASK;
a0517f5d
PO
367 dec_frame_status = s5p_mfc_hw_call(dev->mfc_ops, get_dec_status, dev)
368 & S5P_FIMV_DEC_STATUS_DECODING_STATUS_MASK;
f96f3cfa
JP
369 res_change = (s5p_mfc_hw_call(dev->mfc_ops, get_dspl_status, dev)
370 & S5P_FIMV_DEC_STATUS_RESOLUTION_MASK)
371 >> S5P_FIMV_DEC_STATUS_RESOLUTION_SHIFT;
af935746
KD
372 mfc_debug(2, "Frame Status: %x\n", dst_frame_status);
373 if (ctx->state == MFCINST_RES_CHANGE_INIT)
374 ctx->state = MFCINST_RES_CHANGE_FLUSH;
f96f3cfa
JP
375 if (res_change == S5P_FIMV_RES_INCREASE ||
376 res_change == S5P_FIMV_RES_DECREASE) {
af935746 377 ctx->state = MFCINST_RES_CHANGE_INIT;
fdd1d4b0 378 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
af935746 379 wake_up_ctx(ctx, reason, err);
9a7bc6b0 380 WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
af935746 381 s5p_mfc_clock_off();
fdd1d4b0 382 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
af935746
KD
383 return;
384 }
385 if (ctx->dpb_flush_flag)
386 ctx->dpb_flush_flag = 0;
387
af935746
KD
388 /* All frames remaining in the buffer have been extracted */
389 if (dst_frame_status == S5P_FIMV_DEC_STATUS_DECODING_EMPTY) {
390 if (ctx->state == MFCINST_RES_CHANGE_FLUSH) {
0520e4cc
PO
391 static const struct v4l2_event ev_src_ch = {
392 .type = V4L2_EVENT_SOURCE_CHANGE,
393 .u.src_change.changes =
394 V4L2_EVENT_SRC_CH_RESOLUTION,
395 };
396
af935746
KD
397 s5p_mfc_handle_frame_all_extracted(ctx);
398 ctx->state = MFCINST_RES_CHANGE_END;
0520e4cc
PO
399 v4l2_event_queue_fh(&ctx->fh, &ev_src_ch);
400
af935746
KD
401 goto leave_handle_frame;
402 } else {
403 s5p_mfc_handle_frame_all_extracted(ctx);
404 }
405 }
406
a0517f5d 407 if (dec_frame_status == S5P_FIMV_DEC_STATUS_DECODING_DISPLAY)
af935746
KD
408 s5p_mfc_handle_frame_copy_time(ctx);
409
410 /* A frame has been decoded and is in the buffer */
411 if (dst_frame_status == S5P_FIMV_DEC_STATUS_DISPLAY_ONLY ||
412 dst_frame_status == S5P_FIMV_DEC_STATUS_DECODING_DISPLAY) {
413 s5p_mfc_handle_frame_new(ctx, err);
414 } else {
415 mfc_debug(2, "No frame decode\n");
416 }
417 /* Mark source buffer as complete */
418 if (dst_frame_status != S5P_FIMV_DEC_STATUS_DISPLAY_ONLY
419 && !list_empty(&ctx->src_queue)) {
420 src_buf = list_entry(ctx->src_queue.next, struct s5p_mfc_buf,
421 list);
43a1ea1f
AK
422 ctx->consumed_stream += s5p_mfc_hw_call(dev->mfc_ops,
423 get_consumed_stream, dev);
424 if (ctx->codec_mode != S5P_MFC_CODEC_H264_DEC &&
f49f3ed5 425 ctx->codec_mode != S5P_MFC_CODEC_VP8_DEC &&
d2a0db1e 426 ctx->consumed_stream + STUFF_BYTE <
2d700715 427 src_buf->b->vb2_buf.planes[0].bytesused) {
af935746
KD
428 /* Run MFC again on the same buffer */
429 mfc_debug(2, "Running again the same buffer\n");
430 ctx->after_packed_pb = 1;
431 } else {
af935746
KD
432 mfc_debug(2, "MFC needs next buffer\n");
433 ctx->consumed_stream = 0;
a34026e7
KD
434 if (src_buf->flags & MFC_BUF_FLAG_EOS)
435 ctx->state = MFCINST_FINISHING;
af935746
KD
436 list_del(&src_buf->list);
437 ctx->src_queue_cnt--;
43a1ea1f 438 if (s5p_mfc_hw_call(dev->mfc_ops, err_dec, err) > 0)
2d700715
JS
439 vb2_buffer_done(&src_buf->b->vb2_buf,
440 VB2_BUF_STATE_ERROR);
af935746 441 else
2d700715
JS
442 vb2_buffer_done(&src_buf->b->vb2_buf,
443 VB2_BUF_STATE_DONE);
af935746
KD
444 }
445 }
446leave_handle_frame:
af935746 447 if ((ctx->src_queue_cnt == 0 && ctx->state != MFCINST_FINISHING)
e9d98ddc 448 || ctx->dst_queue_cnt < ctx->pb_count)
af935746 449 clear_work_bit(ctx);
fdd1d4b0 450 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
af935746 451 wake_up_ctx(ctx, reason, err);
9a7bc6b0 452 WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
af935746 453 s5p_mfc_clock_off();
76a4ddbd
P
454 /* if suspending, wake up device and do not try_run again*/
455 if (test_bit(0, &dev->enter_suspend))
456 wake_up_dev(dev, reason, err);
457 else
fdd1d4b0 458 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
af935746
KD
459}
460
461/* Error handling for interrupt */
7296e25f
KD
462static void s5p_mfc_handle_error(struct s5p_mfc_dev *dev,
463 struct s5p_mfc_ctx *ctx, unsigned int reason, unsigned int err)
af935746 464{
af935746 465 mfc_err("Interrupt Error: %08x\n", err);
af935746 466
7296e25f
KD
467 if (ctx != NULL) {
468 /* Error recovery is dependent on the state of context */
469 switch (ctx->state) {
470 case MFCINST_RES_CHANGE_INIT:
471 case MFCINST_RES_CHANGE_FLUSH:
472 case MFCINST_RES_CHANGE_END:
473 case MFCINST_FINISHING:
474 case MFCINST_FINISHED:
475 case MFCINST_RUNNING:
39c1cb2b 476 /* It is highly probable that an error occurred
7296e25f
KD
477 * while decoding a frame */
478 clear_work_bit(ctx);
479 ctx->state = MFCINST_ERROR;
480 /* Mark all dst buffers as having an error */
62bbd72b 481 s5p_mfc_cleanup_queue(&ctx->dst_queue, &ctx->vq_dst);
7296e25f 482 /* Mark all src buffers as having an error */
62bbd72b 483 s5p_mfc_cleanup_queue(&ctx->src_queue, &ctx->vq_src);
7296e25f
KD
484 wake_up_ctx(ctx, reason, err);
485 break;
486 default:
487 clear_work_bit(ctx);
488 ctx->state = MFCINST_ERROR;
489 wake_up_ctx(ctx, reason, err);
490 break;
491 }
af935746 492 }
9a7bc6b0 493 WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
fdd1d4b0 494 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
7296e25f
KD
495 s5p_mfc_clock_off();
496 wake_up_dev(dev, reason, err);
af935746
KD
497}
498
499/* Header parsing interrupt handling */
500static void s5p_mfc_handle_seq_done(struct s5p_mfc_ctx *ctx,
501 unsigned int reason, unsigned int err)
502{
503 struct s5p_mfc_dev *dev;
af935746 504
1259762f 505 if (ctx == NULL)
af935746
KD
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 {
43a1ea1f
AK
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);
af935746 516
fdd1d4b0 517 s5p_mfc_hw_call(dev->mfc_ops, dec_calc_dpb_size, ctx);
8f532a7f 518
e9d98ddc 519 ctx->pb_count = s5p_mfc_hw_call(dev->mfc_ops, get_dpb_count,
43a1ea1f 520 dev);
f96f3cfa
JP
521 ctx->mv_count = s5p_mfc_hw_call(dev->mfc_ops, get_mv_count,
522 dev);
bb869368 523 if (ctx->img_width == 0 || ctx->img_height == 0)
af935746
KD
524 ctx->state = MFCINST_ERROR;
525 else
526 ctx->state = MFCINST_HEAD_PARSED;
f96f3cfa
JP
527
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) <
2d700715 536 src_buf->b->vb2_buf.planes[0].bytesused)
f96f3cfa
JP
537 ctx->head_processed = 0;
538 else
539 ctx->head_processed = 1;
540 } else {
541 ctx->head_processed = 1;
542 }
af935746 543 }
fdd1d4b0 544 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
af935746 545 clear_work_bit(ctx);
9a7bc6b0 546 WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
af935746 547 s5p_mfc_clock_off();
fdd1d4b0 548 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
af935746
KD
549 wake_up_ctx(ctx, reason, err);
550}
551
552/* Header parsing interrupt handling */
553static void s5p_mfc_handle_init_buffers(struct s5p_mfc_ctx *ctx,
554 unsigned int reason, unsigned int err)
555{
556 struct s5p_mfc_buf *src_buf;
557 struct s5p_mfc_dev *dev;
af935746 558
1259762f 559 if (ctx == NULL)
af935746
KD
560 return;
561 dev = ctx->dev;
fdd1d4b0 562 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
af935746
KD
563 ctx->int_type = reason;
564 ctx->int_err = err;
565 ctx->int_cond = 1;
7fb89eca 566 clear_work_bit(ctx);
af935746
KD
567 if (err == 0) {
568 ctx->state = MFCINST_RUNNING;
f96f3cfa 569 if (!ctx->dpb_flush_flag && ctx->head_processed) {
af935746
KD
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--;
2d700715 575 vb2_buffer_done(&src_buf->b->vb2_buf,
af935746
KD
576 VB2_BUF_STATE_DONE);
577 }
af935746
KD
578 } else {
579 ctx->dpb_flush_flag = 0;
580 }
9a7bc6b0 581 WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
af935746
KD
582
583 s5p_mfc_clock_off();
584
585 wake_up(&ctx->queue);
fdd1d4b0 586 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
af935746 587 } else {
9a7bc6b0 588 WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
af935746
KD
589
590 s5p_mfc_clock_off();
591
592 wake_up(&ctx->queue);
593 }
594}
595
96c57776 596static void s5p_mfc_handle_stream_complete(struct s5p_mfc_ctx *ctx)
f9f715a9
AH
597{
598 struct s5p_mfc_dev *dev = ctx->dev;
599 struct s5p_mfc_buf *mb_entry;
600
4130eabc 601 mfc_debug(2, "Stream completed\n");
f9f715a9 602
f9f715a9
AH
603 ctx->state = MFCINST_FINISHED;
604
f9f715a9
AH
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--;
2d700715
JS
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);
f9f715a9 612 }
f9f715a9
AH
613
614 clear_work_bit(ctx);
615
e8256447 616 WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
f9f715a9
AH
617
618 s5p_mfc_clock_off();
619 wake_up(&ctx->queue);
fdd1d4b0 620 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
f9f715a9
AH
621}
622
af935746
KD
623/* Interrupt processing */
624static irqreturn_t s5p_mfc_irq(int irq, void *priv)
625{
626 struct s5p_mfc_dev *dev = priv;
627 struct s5p_mfc_ctx *ctx;
628 unsigned int reason;
629 unsigned int err;
630
631 mfc_debug_enter();
632 /* Reset the timeout watchdog */
633 atomic_set(&dev->watchdog_cnt, 0);
7969b125 634 spin_lock(&dev->irqlock);
af935746
KD
635 ctx = dev->ctx[dev->curr_ctx];
636 /* Get the reason of interrupt and the error code */
43a1ea1f
AK
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);
af935746
KD
639 mfc_debug(1, "Int reason: %d (err: %08x)\n", reason, err);
640 switch (reason) {
43a1ea1f 641 case S5P_MFC_R2H_CMD_ERR_RET:
39c1cb2b 642 /* An error has occurred */
af935746 643 if (ctx->state == MFCINST_RUNNING &&
43a1ea1f
AK
644 s5p_mfc_hw_call(dev->mfc_ops, err_dec, err) >=
645 dev->warn_start)
af935746
KD
646 s5p_mfc_handle_frame(ctx, reason, err);
647 else
7296e25f 648 s5p_mfc_handle_error(dev, ctx, reason, err);
af935746
KD
649 clear_bit(0, &dev->enter_suspend);
650 break;
651
43a1ea1f
AK
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:
af935746
KD
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");
96c57776
AH
658
659 if (ctx->state == MFCINST_FINISHING &&
660 list_empty(&ctx->ref_queue)) {
fdd1d4b0 661 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
96c57776
AH
662 s5p_mfc_handle_stream_complete(ctx);
663 break;
664 }
fdd1d4b0 665 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
af935746 666 wake_up_ctx(ctx, reason, err);
9a7bc6b0 667 WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
af935746 668 s5p_mfc_clock_off();
fdd1d4b0 669 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
af935746
KD
670 } else {
671 s5p_mfc_handle_frame(ctx, reason, err);
672 }
673 break;
674
43a1ea1f 675 case S5P_MFC_R2H_CMD_SEQ_DONE_RET:
af935746
KD
676 s5p_mfc_handle_seq_done(ctx, reason, err);
677 break;
678
43a1ea1f
AK
679 case S5P_MFC_R2H_CMD_OPEN_INSTANCE_RET:
680 ctx->inst_no = s5p_mfc_hw_call(dev->mfc_ops, get_inst_no, dev);
af935746
KD
681 ctx->state = MFCINST_GOT_INST;
682 clear_work_bit(ctx);
683 wake_up(&ctx->queue);
684 goto irq_cleanup_hw;
685
43a1ea1f 686 case S5P_MFC_R2H_CMD_CLOSE_INSTANCE_RET:
af935746 687 clear_work_bit(ctx);
9d87e837 688 ctx->inst_no = MFC_NO_INSTANCE_SET;
af935746
KD
689 ctx->state = MFCINST_FREE;
690 wake_up(&ctx->queue);
691 goto irq_cleanup_hw;
692
43a1ea1f
AK
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:
af935746
KD
697 if (ctx)
698 clear_work_bit(ctx);
fdd1d4b0 699 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
af935746
KD
700 wake_up_dev(dev, reason, err);
701 clear_bit(0, &dev->hw_lock);
702 clear_bit(0, &dev->enter_suspend);
703 break;
704
43a1ea1f 705 case S5P_MFC_R2H_CMD_INIT_BUFFERS_RET:
af935746
KD
706 s5p_mfc_handle_init_buffers(ctx, reason, err);
707 break;
f9f715a9 708
43a1ea1f 709 case S5P_MFC_R2H_CMD_COMPLETE_SEQ_RET:
fdd1d4b0 710 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
96c57776
AH
711 ctx->int_type = reason;
712 ctx->int_err = err;
713 s5p_mfc_handle_stream_complete(ctx);
f9f715a9
AH
714 break;
715
8f23cc02
AK
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;
721
af935746
KD
722 default:
723 mfc_debug(2, "Unknown int reason\n");
fdd1d4b0 724 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
af935746 725 }
7969b125 726 spin_unlock(&dev->irqlock);
af935746
KD
727 mfc_debug_leave();
728 return IRQ_HANDLED;
729irq_cleanup_hw:
fdd1d4b0 730 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
af935746
KD
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");
736
737 s5p_mfc_clock_off();
738
fdd1d4b0 739 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
7969b125 740 spin_unlock(&dev->irqlock);
af935746
KD
741 mfc_debug(2, "Exit via irq_cleanup_hw\n");
742 return IRQ_HANDLED;
743}
744
745/* Open an MFC node */
746static int s5p_mfc_open(struct file *file)
747{
b80cb8dc 748 struct video_device *vdev = video_devdata(file);
af935746
KD
749 struct s5p_mfc_dev *dev = video_drvdata(file);
750 struct s5p_mfc_ctx *ctx = NULL;
751 struct vb2_queue *q;
af935746
KD
752 int ret = 0;
753
754 mfc_debug_enter();
bc738301
HV
755 if (mutex_lock_interruptible(&dev->mfc_mutex))
756 return -ERESTARTSYS;
af935746
KD
757 dev->num_inst++; /* It is guarded by mfc_mutex in vfd */
758 /* Allocate memory for context */
bae061b4 759 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
af935746 760 if (!ctx) {
af935746
KD
761 ret = -ENOMEM;
762 goto err_alloc;
763 }
55647a99 764 v4l2_fh_init(&ctx->fh, vdev);
af935746
KD
765 file->private_data = &ctx->fh;
766 v4l2_fh_add(&ctx->fh);
767 ctx->dev = dev;
768 INIT_LIST_HEAD(&ctx->src_queue);
769 INIT_LIST_HEAD(&ctx->dst_queue);
770 ctx->src_queue_cnt = 0;
771 ctx->dst_queue_cnt = 0;
772 /* Get context number */
773 ctx->num = 0;
774 while (dev->ctx[ctx->num]) {
775 ctx->num++;
776 if (ctx->num >= MFC_NUM_CONTEXTS) {
06f0a57f 777 mfc_debug(2, "Too many open contexts\n");
af935746
KD
778 ret = -EBUSY;
779 goto err_no_ctx;
780 }
781 }
782 /* Mark context as idle */
7fb89eca 783 clear_work_bit_irqsave(ctx);
af935746 784 dev->ctx[ctx->num] = ctx;
b80cb8dc 785 if (vdev == dev->vfd_dec) {
af935746
KD
786 ctx->type = MFCINST_DECODER;
787 ctx->c_ops = get_dec_codec_ops();
43a1ea1f 788 s5p_mfc_dec_init(ctx);
af935746
KD
789 /* Setup ctrl handler */
790 ret = s5p_mfc_dec_ctrls_setup(ctx);
791 if (ret) {
792 mfc_err("Failed to setup mfc controls\n");
793 goto err_ctrls_setup;
794 }
b80cb8dc 795 } else if (vdev == dev->vfd_enc) {
af935746
KD
796 ctx->type = MFCINST_ENCODER;
797 ctx->c_ops = get_enc_codec_ops();
798 /* only for encoder */
799 INIT_LIST_HEAD(&ctx->ref_queue);
800 ctx->ref_queue_cnt = 0;
43a1ea1f 801 s5p_mfc_enc_init(ctx);
af935746
KD
802 /* Setup ctrl handler */
803 ret = s5p_mfc_enc_ctrls_setup(ctx);
804 if (ret) {
805 mfc_err("Failed to setup mfc controls\n");
806 goto err_ctrls_setup;
807 }
808 } else {
809 ret = -ENOENT;
810 goto err_bad_node;
811 }
812 ctx->fh.ctrl_handler = &ctx->ctrl_handler;
9d87e837 813 ctx->inst_no = MFC_NO_INSTANCE_SET;
af935746
KD
814 /* Load firmware if this is the first instance */
815 if (dev->num_inst == 1) {
816 dev->watchdog_timer.expires = jiffies +
817 msecs_to_jiffies(MFC_WATCHDOG_INTERVAL);
818 add_timer(&dev->watchdog_timer);
819 ret = s5p_mfc_power_on();
820 if (ret < 0) {
821 mfc_err("power on failed\n");
822 goto err_pwr_enable;
823 }
824 s5p_mfc_clock_on();
2e731e44
KD
825 ret = s5p_mfc_load_firmware(dev);
826 if (ret) {
827 s5p_mfc_clock_off();
828 goto err_load_fw;
829 }
af935746
KD
830 /* Init the FW */
831 ret = s5p_mfc_init_hw(dev);
2e731e44 832 s5p_mfc_clock_off();
af935746
KD
833 if (ret)
834 goto err_init_hw;
af935746
KD
835 }
836 /* Init videobuf2 queue for CAPTURE */
837 q = &ctx->vq_dst;
838 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
839 q->drv_priv = &ctx->fh;
654a731b 840 q->lock = &dev->mfc_mutex;
b80cb8dc 841 if (vdev == dev->vfd_dec) {
af935746
KD
842 q->io_modes = VB2_MMAP;
843 q->ops = get_dec_queue_ops();
b80cb8dc 844 } else if (vdev == dev->vfd_enc) {
af935746
KD
845 q->io_modes = VB2_MMAP | VB2_USERPTR;
846 q->ops = get_enc_queue_ops();
847 } else {
848 ret = -ENOENT;
849 goto err_queue_init;
850 }
749ae716 851 q->mem_ops = &vb2_dma_contig_memops;
ade48681 852 q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
af935746
KD
853 ret = vb2_queue_init(q);
854 if (ret) {
855 mfc_err("Failed to initialize videobuf2 queue(capture)\n");
856 goto err_queue_init;
857 }
858 /* Init videobuf2 queue for OUTPUT */
859 q = &ctx->vq_src;
860 q->type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
861 q->io_modes = VB2_MMAP;
862 q->drv_priv = &ctx->fh;
41f03a00 863 q->lock = &dev->mfc_mutex;
b80cb8dc 864 if (vdev == dev->vfd_dec) {
af935746
KD
865 q->io_modes = VB2_MMAP;
866 q->ops = get_dec_queue_ops();
b80cb8dc 867 } else if (vdev == dev->vfd_enc) {
af935746
KD
868 q->io_modes = VB2_MMAP | VB2_USERPTR;
869 q->ops = get_enc_queue_ops();
870 } else {
871 ret = -ENOENT;
872 goto err_queue_init;
873 }
e6c9dec3
KD
874 /* One way to indicate end-of-stream for MFC is to set the
875 * bytesused == 0. However by default videobuf2 handles bytesused
876 * equal to 0 as a special case and changes its value to the size
877 * of the buffer. Set the allow_zero_bytesused flag so that videobuf2
878 * will keep the value of bytesused intact.
879 */
880 q->allow_zero_bytesused = 1;
749ae716 881 q->mem_ops = &vb2_dma_contig_memops;
ade48681 882 q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
af935746
KD
883 ret = vb2_queue_init(q);
884 if (ret) {
885 mfc_err("Failed to initialize videobuf2 queue(output)\n");
886 goto err_queue_init;
887 }
888 init_waitqueue_head(&ctx->queue);
bc738301 889 mutex_unlock(&dev->mfc_mutex);
af935746
KD
890 mfc_debug_leave();
891 return ret;
39c1cb2b 892 /* Deinit when failure occurred */
af935746 893err_queue_init:
2e731e44
KD
894 if (dev->num_inst == 1)
895 s5p_mfc_deinit_hw(dev);
af935746 896err_init_hw:
2e731e44 897err_load_fw:
af935746
KD
898err_pwr_enable:
899 if (dev->num_inst == 1) {
900 if (s5p_mfc_power_off() < 0)
901 mfc_err("power off failed\n");
1b73ba0b 902 del_timer_sync(&dev->watchdog_timer);
af935746
KD
903 }
904err_ctrls_setup:
905 s5p_mfc_dec_ctrls_delete(ctx);
906err_bad_node:
1b73ba0b 907 dev->ctx[ctx->num] = NULL;
af935746
KD
908err_no_ctx:
909 v4l2_fh_del(&ctx->fh);
910 v4l2_fh_exit(&ctx->fh);
911 kfree(ctx);
912err_alloc:
913 dev->num_inst--;
bc738301 914 mutex_unlock(&dev->mfc_mutex);
af935746
KD
915 mfc_debug_leave();
916 return ret;
917}
918
919/* Release MFC context */
920static int s5p_mfc_release(struct file *file)
921{
922 struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data);
923 struct s5p_mfc_dev *dev = ctx->dev;
af935746 924
d695c12c 925 /* if dev is null, do cleanup that doesn't need dev */
af935746 926 mfc_debug_enter();
d695c12c
SK
927 if (dev)
928 mutex_lock(&dev->mfc_mutex);
af935746
KD
929 s5p_mfc_clock_on();
930 vb2_queue_release(&ctx->vq_src);
931 vb2_queue_release(&ctx->vq_dst);
d695c12c
SK
932 if (dev) {
933 /* Mark context as idle */
934 clear_work_bit_irqsave(ctx);
935 /*
936 * If instance was initialised and not yet freed,
937 * return instance and free resources
938 */
939 if (ctx->state != MFCINST_FREE && ctx->state != MFCINST_INIT) {
940 mfc_debug(2, "Has to free instance\n");
941 s5p_mfc_close_mfc_inst(dev, ctx);
942 }
943 /* hardware locking scheme */
944 if (dev->curr_ctx == ctx->num)
945 clear_bit(0, &dev->hw_lock);
946 dev->num_inst--;
947 if (dev->num_inst == 0) {
948 mfc_debug(2, "Last instance\n");
949 s5p_mfc_deinit_hw(dev);
950 del_timer_sync(&dev->watchdog_timer);
951 if (s5p_mfc_power_off() < 0)
952 mfc_err("Power off failed\n");
953 }
af935746
KD
954 }
955 mfc_debug(2, "Shutting down clock\n");
956 s5p_mfc_clock_off();
d695c12c
SK
957 if (dev)
958 dev->ctx[ctx->num] = NULL;
af935746
KD
959 s5p_mfc_dec_ctrls_delete(ctx);
960 v4l2_fh_del(&ctx->fh);
d695c12c
SK
961 /* vdev is gone if dev is null */
962 if (dev)
963 v4l2_fh_exit(&ctx->fh);
af935746
KD
964 kfree(ctx);
965 mfc_debug_leave();
d695c12c
SK
966 if (dev)
967 mutex_unlock(&dev->mfc_mutex);
968
af935746
KD
969 return 0;
970}
971
972/* Poll */
973static unsigned int s5p_mfc_poll(struct file *file,
974 struct poll_table_struct *wait)
975{
976 struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data);
977 struct s5p_mfc_dev *dev = ctx->dev;
978 struct vb2_queue *src_q, *dst_q;
979 struct vb2_buffer *src_vb = NULL, *dst_vb = NULL;
980 unsigned int rc = 0;
981 unsigned long flags;
982
bc738301 983 mutex_lock(&dev->mfc_mutex);
af935746
KD
984 src_q = &ctx->vq_src;
985 dst_q = &ctx->vq_dst;
986 /*
987 * There has to be at least one buffer queued on each queued_list, which
988 * means either in driver already or waiting for driver to claim it
989 * and start processing.
990 */
991 if ((!src_q->streaming || list_empty(&src_q->queued_list))
992 && (!dst_q->streaming || list_empty(&dst_q->queued_list))) {
993 rc = POLLERR;
994 goto end;
995 }
996 mutex_unlock(&dev->mfc_mutex);
f9f715a9 997 poll_wait(file, &ctx->fh.wait, wait);
af935746
KD
998 poll_wait(file, &src_q->done_wq, wait);
999 poll_wait(file, &dst_q->done_wq, wait);
1000 mutex_lock(&dev->mfc_mutex);
f9f715a9
AH
1001 if (v4l2_event_pending(&ctx->fh))
1002 rc |= POLLPRI;
af935746
KD
1003 spin_lock_irqsave(&src_q->done_lock, flags);
1004 if (!list_empty(&src_q->done_list))
1005 src_vb = list_first_entry(&src_q->done_list, struct vb2_buffer,
1006 done_entry);
1007 if (src_vb && (src_vb->state == VB2_BUF_STATE_DONE
1008 || src_vb->state == VB2_BUF_STATE_ERROR))
1009 rc |= POLLOUT | POLLWRNORM;
1010 spin_unlock_irqrestore(&src_q->done_lock, flags);
1011 spin_lock_irqsave(&dst_q->done_lock, flags);
1012 if (!list_empty(&dst_q->done_list))
1013 dst_vb = list_first_entry(&dst_q->done_list, struct vb2_buffer,
1014 done_entry);
1015 if (dst_vb && (dst_vb->state == VB2_BUF_STATE_DONE
1016 || dst_vb->state == VB2_BUF_STATE_ERROR))
1017 rc |= POLLIN | POLLRDNORM;
1018 spin_unlock_irqrestore(&dst_q->done_lock, flags);
1019end:
bc738301 1020 mutex_unlock(&dev->mfc_mutex);
af935746
KD
1021 return rc;
1022}
1023
1024/* Mmap */
1025static int s5p_mfc_mmap(struct file *file, struct vm_area_struct *vma)
1026{
1027 struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data);
bc738301 1028 struct s5p_mfc_dev *dev = ctx->dev;
af935746
KD
1029 unsigned long offset = vma->vm_pgoff << PAGE_SHIFT;
1030 int ret;
bc738301
HV
1031
1032 if (mutex_lock_interruptible(&dev->mfc_mutex))
1033 return -ERESTARTSYS;
af935746
KD
1034 if (offset < DST_QUEUE_OFF_BASE) {
1035 mfc_debug(2, "mmaping source\n");
1036 ret = vb2_mmap(&ctx->vq_src, vma);
1037 } else { /* capture */
1038 mfc_debug(2, "mmaping destination\n");
1039 vma->vm_pgoff -= (DST_QUEUE_OFF_BASE >> PAGE_SHIFT);
1040 ret = vb2_mmap(&ctx->vq_dst, vma);
1041 }
bc738301 1042 mutex_unlock(&dev->mfc_mutex);
af935746
KD
1043 return ret;
1044}
1045
1046/* v4l2 ops */
1047static const struct v4l2_file_operations s5p_mfc_fops = {
1048 .owner = THIS_MODULE,
1049 .open = s5p_mfc_open,
1050 .release = s5p_mfc_release,
1051 .poll = s5p_mfc_poll,
1052 .unlocked_ioctl = video_ioctl2,
1053 .mmap = s5p_mfc_mmap,
1054};
1055
c79667dd 1056/* DMA memory related helper functions */
6311f126
JMC
1057static void s5p_mfc_memdev_release(struct device *dev)
1058{
c79667dd 1059 of_reserved_mem_device_release(dev);
6311f126
JMC
1060}
1061
c79667dd
MS
1062static struct device *s5p_mfc_alloc_memdev(struct device *dev,
1063 const char *name, unsigned int idx)
6e83e6e2 1064{
c79667dd
MS
1065 struct device *child;
1066 int ret;
6e83e6e2 1067
c79667dd
MS
1068 child = devm_kzalloc(dev, sizeof(struct device), GFP_KERNEL);
1069 if (!child)
1070 return NULL;
1071
1072 device_initialize(child);
1073 dev_set_name(child, "%s:%s", dev_name(dev), name);
1074 child->parent = dev;
1075 child->bus = dev->bus;
1076 child->coherent_dma_mask = dev->coherent_dma_mask;
1077 child->dma_mask = dev->dma_mask;
1078 child->release = s5p_mfc_memdev_release;
1079
1080 if (device_add(child) == 0) {
1081 ret = of_reserved_mem_device_init_by_idx(child, dev->of_node,
1082 idx);
1083 if (ret == 0)
1084 return child;
6e83e6e2 1085 }
29debab0 1086
c79667dd
MS
1087 put_device(child);
1088 return NULL;
1089}
6e83e6e2 1090
c79667dd
MS
1091static int s5p_mfc_configure_dma_memory(struct s5p_mfc_dev *mfc_dev)
1092{
1093 struct device *dev = &mfc_dev->plat_dev->dev;
29debab0 1094
04f77673
MS
1095 /*
1096 * When IOMMU is available, we cannot use the default configuration,
1097 * because of MFC firmware requirements: address space limited to
1098 * 256M and non-zero default start address.
1099 * This is still simplified, not optimal configuration, but for now
1100 * IOMMU core doesn't allow to configure device's IOMMUs channel
1101 * separately.
1102 */
1103 if (exynos_is_iommu_available(dev)) {
1104 int ret = exynos_configure_iommu(dev, S5P_MFC_IOMMU_DMA_BASE,
1105 S5P_MFC_IOMMU_DMA_SIZE);
1106 if (ret == 0)
1107 mfc_dev->mem_dev_l = mfc_dev->mem_dev_r = dev;
1108 return ret;
1109 }
1110
c79667dd
MS
1111 /*
1112 * Create and initialize virtual devices for accessing
1113 * reserved memory regions.
1114 */
1115 mfc_dev->mem_dev_l = s5p_mfc_alloc_memdev(dev, "left",
1116 MFC_BANK1_ALLOC_CTX);
1117 if (!mfc_dev->mem_dev_l)
1118 return -ENODEV;
1119 mfc_dev->mem_dev_r = s5p_mfc_alloc_memdev(dev, "right",
1120 MFC_BANK2_ALLOC_CTX);
1121 if (!mfc_dev->mem_dev_r) {
1122 device_unregister(mfc_dev->mem_dev_l);
1123 return -ENODEV;
6e83e6e2 1124 }
c79667dd 1125
6e83e6e2
AK
1126 return 0;
1127}
1128
c79667dd
MS
1129static void s5p_mfc_unconfigure_dma_memory(struct s5p_mfc_dev *mfc_dev)
1130{
04f77673
MS
1131 struct device *dev = &mfc_dev->plat_dev->dev;
1132
1133 if (exynos_is_iommu_available(dev)) {
1134 exynos_unconfigure_iommu(dev);
1135 return;
1136 }
1137
c79667dd
MS
1138 device_unregister(mfc_dev->mem_dev_l);
1139 device_unregister(mfc_dev->mem_dev_r);
1140}
1141
1142static void *mfc_get_drv_data(struct platform_device *pdev);
1143
af935746 1144/* MFC probe function */
1e393e90 1145static int s5p_mfc_probe(struct platform_device *pdev)
af935746
KD
1146{
1147 struct s5p_mfc_dev *dev;
1148 struct video_device *vfd;
1149 struct resource *res;
1150 int ret;
1151
1152 pr_debug("%s++\n", __func__);
bae061b4 1153 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
af935746
KD
1154 if (!dev) {
1155 dev_err(&pdev->dev, "Not enough memory for MFC device\n");
1156 return -ENOMEM;
1157 }
1158
1159 spin_lock_init(&dev->irqlock);
1160 spin_lock_init(&dev->condlock);
1161 dev->plat_dev = pdev;
1162 if (!dev->plat_dev) {
1163 dev_err(&pdev->dev, "No platform data specified\n");
d310f478 1164 return -ENODEV;
af935746
KD
1165 }
1166
b27a23be 1167 dev->variant = mfc_get_drv_data(pdev);
8f532a7f 1168
af935746 1169 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
f23999ec
TR
1170 dev->regs_base = devm_ioremap_resource(&pdev->dev, res);
1171 if (IS_ERR(dev->regs_base))
1172 return PTR_ERR(dev->regs_base);
af935746
KD
1173
1174 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1175 if (res == NULL) {
1176 dev_err(&pdev->dev, "failed to get irq resource\n");
e4fac74d 1177 return -ENOENT;
af935746
KD
1178 }
1179 dev->irq = res->start;
d310f478 1180 ret = devm_request_irq(&pdev->dev, dev->irq, s5p_mfc_irq,
1957f0d7 1181 0, pdev->name, dev);
af935746
KD
1182 if (ret) {
1183 dev_err(&pdev->dev, "Failed to install irq (%d)\n", ret);
e4fac74d 1184 return ret;
af935746
KD
1185 }
1186
c79667dd
MS
1187 ret = s5p_mfc_configure_dma_memory(dev);
1188 if (ret < 0) {
1189 dev_err(&pdev->dev, "failed to configure DMA memory\n");
1190 return ret;
1191 }
1192
1193 ret = s5p_mfc_init_pm(dev);
1194 if (ret < 0) {
1195 dev_err(&pdev->dev, "failed to get mfc clock source\n");
e4fac74d 1196 goto err_dma;
af935746
KD
1197 }
1198
712b617e 1199 vb2_dma_contig_set_max_seg_size(dev->mem_dev_l, DMA_BIT_MASK(32));
712b617e 1200 vb2_dma_contig_set_max_seg_size(dev->mem_dev_r, DMA_BIT_MASK(32));
af935746
KD
1201
1202 mutex_init(&dev->mfc_mutex);
1203
2e731e44
KD
1204 ret = s5p_mfc_alloc_firmware(dev);
1205 if (ret)
2548fee6 1206 goto err_res;
2e731e44 1207
af935746
KD
1208 ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
1209 if (ret)
1210 goto err_v4l2_dev_reg;
1211 init_waitqueue_head(&dev->queue);
1212
1213 /* decoder */
1214 vfd = video_device_alloc();
1215 if (!vfd) {
1216 v4l2_err(&dev->v4l2_dev, "Failed to allocate video device\n");
1217 ret = -ENOMEM;
1218 goto err_dec_alloc;
1219 }
d0ce898c 1220 vfd->fops = &s5p_mfc_fops;
af935746 1221 vfd->ioctl_ops = get_dec_v4l2_ioctl_ops();
d0ce898c 1222 vfd->release = video_device_release;
af935746
KD
1223 vfd->lock = &dev->mfc_mutex;
1224 vfd->v4l2_dev = &dev->v4l2_dev;
954f340f 1225 vfd->vfl_dir = VFL_DIR_M2M;
af935746
KD
1226 snprintf(vfd->name, sizeof(vfd->name), "%s", S5P_MFC_DEC_NAME);
1227 dev->vfd_dec = vfd;
af935746
KD
1228 video_set_drvdata(vfd, dev);
1229
1230 /* encoder */
1231 vfd = video_device_alloc();
1232 if (!vfd) {
1233 v4l2_err(&dev->v4l2_dev, "Failed to allocate video device\n");
1234 ret = -ENOMEM;
1235 goto err_enc_alloc;
1236 }
d0ce898c 1237 vfd->fops = &s5p_mfc_fops;
af935746 1238 vfd->ioctl_ops = get_enc_v4l2_ioctl_ops();
d0ce898c 1239 vfd->release = video_device_release;
af935746
KD
1240 vfd->lock = &dev->mfc_mutex;
1241 vfd->v4l2_dev = &dev->v4l2_dev;
cdcf45e7 1242 vfd->vfl_dir = VFL_DIR_M2M;
af935746
KD
1243 snprintf(vfd->name, sizeof(vfd->name), "%s", S5P_MFC_ENC_NAME);
1244 dev->vfd_enc = vfd;
af935746
KD
1245 video_set_drvdata(vfd, dev);
1246 platform_set_drvdata(pdev, dev);
1247
1248 dev->hw_lock = 0;
af935746
KD
1249 INIT_WORK(&dev->watchdog_work, s5p_mfc_watchdog_worker);
1250 atomic_set(&dev->watchdog_cnt, 0);
1251 init_timer(&dev->watchdog_timer);
1252 dev->watchdog_timer.data = (unsigned long)dev;
1253 dev->watchdog_timer.function = s5p_mfc_watchdog;
1254
43a1ea1f
AK
1255 /* Initialize HW ops and commands based on MFC version */
1256 s5p_mfc_init_hw_ops(dev);
1257 s5p_mfc_init_hw_cmds(dev);
6a9c6f68 1258 s5p_mfc_init_regs(dev);
43a1ea1f 1259
c974c436
JMC
1260 /* Register decoder and encoder */
1261 ret = video_register_device(dev->vfd_dec, VFL_TYPE_GRABBER, 0);
1262 if (ret) {
1263 v4l2_err(&dev->v4l2_dev, "Failed to register video device\n");
c974c436
JMC
1264 goto err_dec_reg;
1265 }
1266 v4l2_info(&dev->v4l2_dev,
1267 "decoder registered as /dev/video%d\n", dev->vfd_dec->num);
1268
1269 ret = video_register_device(dev->vfd_enc, VFL_TYPE_GRABBER, 0);
1270 if (ret) {
1271 v4l2_err(&dev->v4l2_dev, "Failed to register video device\n");
c974c436
JMC
1272 goto err_enc_reg;
1273 }
1274 v4l2_info(&dev->v4l2_dev,
1275 "encoder registered as /dev/video%d\n", dev->vfd_enc->num);
1276
af935746
KD
1277 pr_debug("%s--\n", __func__);
1278 return 0;
1279
1280/* Deinit MFC if probe had failed */
1281err_enc_reg:
af935746
KD
1282 video_unregister_device(dev->vfd_dec);
1283err_dec_reg:
c974c436
JMC
1284 video_device_release(dev->vfd_enc);
1285err_enc_alloc:
af935746
KD
1286 video_device_release(dev->vfd_dec);
1287err_dec_alloc:
1288 v4l2_device_unregister(&dev->v4l2_dev);
1289err_v4l2_dev_reg:
2e731e44 1290 s5p_mfc_release_firmware(dev);
af935746
KD
1291err_res:
1292 s5p_mfc_final_pm(dev);
e4fac74d
MS
1293err_dma:
1294 s5p_mfc_unconfigure_dma_memory(dev);
d310f478 1295
af935746
KD
1296 pr_debug("%s-- with error\n", __func__);
1297 return ret;
1298
1299}
1300
1301/* Remove the driver */
4c62e976 1302static int s5p_mfc_remove(struct platform_device *pdev)
af935746
KD
1303{
1304 struct s5p_mfc_dev *dev = platform_get_drvdata(pdev);
d695c12c
SK
1305 struct s5p_mfc_ctx *ctx;
1306 int i;
af935746
KD
1307
1308 v4l2_info(&dev->v4l2_dev, "Removing %s\n", pdev->name);
1309
d695c12c
SK
1310 /*
1311 * Clear ctx dev pointer to avoid races between s5p_mfc_remove()
1312 * and s5p_mfc_release() and s5p_mfc_release() accessing ctx->dev
1313 * after s5p_mfc_remove() is run during unbind.
1314 */
1315 mutex_lock(&dev->mfc_mutex);
1316 for (i = 0; i < MFC_NUM_CONTEXTS; i++) {
1317 ctx = dev->ctx[i];
1318 if (!ctx)
1319 continue;
1320 /* clear ctx->dev */
1321 ctx->dev = NULL;
1322 }
1323 mutex_unlock(&dev->mfc_mutex);
1324
af935746 1325 del_timer_sync(&dev->watchdog_timer);
ed90013e 1326 flush_work(&dev->watchdog_work);
af935746
KD
1327
1328 video_unregister_device(dev->vfd_enc);
1329 video_unregister_device(dev->vfd_dec);
6610ef08
SK
1330 video_device_release(dev->vfd_enc);
1331 video_device_release(dev->vfd_dec);
af935746 1332 v4l2_device_unregister(&dev->v4l2_dev);
2e731e44 1333 s5p_mfc_release_firmware(dev);
c79667dd 1334 s5p_mfc_unconfigure_dma_memory(dev);
712b617e
MS
1335 vb2_dma_contig_clear_max_seg_size(dev->mem_dev_l);
1336 vb2_dma_contig_clear_max_seg_size(dev->mem_dev_r);
af935746 1337
af935746 1338 s5p_mfc_final_pm(dev);
af935746
KD
1339 return 0;
1340}
1341
1342#ifdef CONFIG_PM_SLEEP
1343
1344static int s5p_mfc_suspend(struct device *dev)
1345{
1346 struct platform_device *pdev = to_platform_device(dev);
1347 struct s5p_mfc_dev *m_dev = platform_get_drvdata(pdev);
1348 int ret;
1349
1350 if (m_dev->num_inst == 0)
1351 return 0;
81c9bcfb 1352
af935746
KD
1353 if (test_and_set_bit(0, &m_dev->enter_suspend) != 0) {
1354 mfc_err("Error: going to suspend for a second time\n");
1355 return -EIO;
1356 }
1357
1358 /* Check if we're processing then wait if it necessary. */
1359 while (test_and_set_bit(0, &m_dev->hw_lock) != 0) {
1360 /* Try and lock the HW */
1361 /* Wait on the interrupt waitqueue */
1362 ret = wait_event_interruptible_timeout(m_dev->queue,
76a4ddbd 1363 m_dev->int_cond, msecs_to_jiffies(MFC_INT_TIMEOUT));
af935746
KD
1364 if (ret == 0) {
1365 mfc_err("Waiting for hardware to finish timed out\n");
64370994 1366 clear_bit(0, &m_dev->enter_suspend);
af935746
KD
1367 return -EIO;
1368 }
1369 }
81c9bcfb 1370
64370994
P
1371 ret = s5p_mfc_sleep(m_dev);
1372 if (ret) {
1373 clear_bit(0, &m_dev->enter_suspend);
1374 clear_bit(0, &m_dev->hw_lock);
1375 }
1376 return ret;
af935746
KD
1377}
1378
1379static int s5p_mfc_resume(struct device *dev)
1380{
1381 struct platform_device *pdev = to_platform_device(dev);
1382 struct s5p_mfc_dev *m_dev = platform_get_drvdata(pdev);
1383
1384 if (m_dev->num_inst == 0)
1385 return 0;
1386 return s5p_mfc_wakeup(m_dev);
1387}
1388#endif
1389
e243c7c1 1390#ifdef CONFIG_PM
af935746
KD
1391static int s5p_mfc_runtime_suspend(struct device *dev)
1392{
1393 struct platform_device *pdev = to_platform_device(dev);
1394 struct s5p_mfc_dev *m_dev = platform_get_drvdata(pdev);
1395
1396 atomic_set(&m_dev->pm.power, 0);
1397 return 0;
1398}
1399
1400static int s5p_mfc_runtime_resume(struct device *dev)
1401{
1402 struct platform_device *pdev = to_platform_device(dev);
1403 struct s5p_mfc_dev *m_dev = platform_get_drvdata(pdev);
af935746 1404
af935746
KD
1405 atomic_set(&m_dev->pm.power, 1);
1406 return 0;
1407}
1408#endif
1409
1410/* Power management */
1411static const struct dev_pm_ops s5p_mfc_pm_ops = {
1412 SET_SYSTEM_SLEEP_PM_OPS(s5p_mfc_suspend, s5p_mfc_resume)
1413 SET_RUNTIME_PM_OPS(s5p_mfc_runtime_suspend, s5p_mfc_runtime_resume,
1414 NULL)
1415};
1416
ca5ea0c5 1417static struct s5p_mfc_buf_size_v5 mfc_buf_size_v5 = {
8f532a7f
AK
1418 .h264_ctx = MFC_H264_CTX_BUF_SIZE,
1419 .non_h264_ctx = MFC_CTX_BUF_SIZE,
1420 .dsc = DESC_BUF_SIZE,
1421 .shm = SHARED_BUF_SIZE,
1422};
1423
ca5ea0c5 1424static struct s5p_mfc_buf_size buf_size_v5 = {
8f532a7f
AK
1425 .fw = MAX_FW_SIZE,
1426 .cpb = MAX_CPB_SIZE,
1427 .priv = &mfc_buf_size_v5,
1428};
1429
ca5ea0c5 1430static struct s5p_mfc_buf_align mfc_buf_align_v5 = {
8f532a7f
AK
1431 .base = MFC_BASE_ALIGN_ORDER,
1432};
1433
1434static struct s5p_mfc_variant mfc_drvdata_v5 = {
1435 .version = MFC_VERSION,
9aa5f008 1436 .version_bit = MFC_V5_BIT,
8f532a7f
AK
1437 .port_num = MFC_NUM_PORTS,
1438 .buf_size = &buf_size_v5,
1439 .buf_align = &mfc_buf_align_v5,
77ba6b73 1440 .fw_name[0] = "s5p-mfc.fw",
f96f3cfa
JP
1441};
1442
ca5ea0c5 1443static struct s5p_mfc_buf_size_v6 mfc_buf_size_v6 = {
f96f3cfa
JP
1444 .dev_ctx = MFC_CTX_BUF_SIZE_V6,
1445 .h264_dec_ctx = MFC_H264_DEC_CTX_BUF_SIZE_V6,
1446 .other_dec_ctx = MFC_OTHER_DEC_CTX_BUF_SIZE_V6,
1447 .h264_enc_ctx = MFC_H264_ENC_CTX_BUF_SIZE_V6,
1448 .other_enc_ctx = MFC_OTHER_ENC_CTX_BUF_SIZE_V6,
1449};
1450
ca5ea0c5 1451static struct s5p_mfc_buf_size buf_size_v6 = {
f96f3cfa
JP
1452 .fw = MAX_FW_SIZE_V6,
1453 .cpb = MAX_CPB_SIZE_V6,
1454 .priv = &mfc_buf_size_v6,
1455};
1456
ca5ea0c5 1457static struct s5p_mfc_buf_align mfc_buf_align_v6 = {
f96f3cfa
JP
1458 .base = 0,
1459};
1460
1461static struct s5p_mfc_variant mfc_drvdata_v6 = {
1462 .version = MFC_VERSION_V6,
9aa5f008 1463 .version_bit = MFC_V6_BIT,
f96f3cfa
JP
1464 .port_num = MFC_NUM_PORTS_V6,
1465 .buf_size = &buf_size_v6,
1466 .buf_align = &mfc_buf_align_v6,
77ba6b73
AK
1467 .fw_name[0] = "s5p-mfc-v6.fw",
1468 /*
1469 * v6-v2 firmware contains bug fixes and interface change
1470 * for init buffer command
1471 */
1472 .fw_name[1] = "s5p-mfc-v6-v2.fw",
8f532a7f
AK
1473};
1474
ca5ea0c5 1475static struct s5p_mfc_buf_size_v6 mfc_buf_size_v7 = {
5441e9da
AK
1476 .dev_ctx = MFC_CTX_BUF_SIZE_V7,
1477 .h264_dec_ctx = MFC_H264_DEC_CTX_BUF_SIZE_V7,
1478 .other_dec_ctx = MFC_OTHER_DEC_CTX_BUF_SIZE_V7,
1479 .h264_enc_ctx = MFC_H264_ENC_CTX_BUF_SIZE_V7,
1480 .other_enc_ctx = MFC_OTHER_ENC_CTX_BUF_SIZE_V7,
1481};
1482
ca5ea0c5 1483static struct s5p_mfc_buf_size buf_size_v7 = {
5441e9da
AK
1484 .fw = MAX_FW_SIZE_V7,
1485 .cpb = MAX_CPB_SIZE_V7,
1486 .priv = &mfc_buf_size_v7,
1487};
1488
ca5ea0c5 1489static struct s5p_mfc_buf_align mfc_buf_align_v7 = {
5441e9da
AK
1490 .base = 0,
1491};
1492
1493static struct s5p_mfc_variant mfc_drvdata_v7 = {
1494 .version = MFC_VERSION_V7,
9aa5f008 1495 .version_bit = MFC_V7_BIT,
5441e9da
AK
1496 .port_num = MFC_NUM_PORTS_V7,
1497 .buf_size = &buf_size_v7,
1498 .buf_align = &mfc_buf_align_v7,
77ba6b73 1499 .fw_name[0] = "s5p-mfc-v7.fw",
5441e9da
AK
1500};
1501
ca5ea0c5 1502static struct s5p_mfc_buf_size_v6 mfc_buf_size_v8 = {
e2b9deb2
KA
1503 .dev_ctx = MFC_CTX_BUF_SIZE_V8,
1504 .h264_dec_ctx = MFC_H264_DEC_CTX_BUF_SIZE_V8,
1505 .other_dec_ctx = MFC_OTHER_DEC_CTX_BUF_SIZE_V8,
3e594ce7
KA
1506 .h264_enc_ctx = MFC_H264_ENC_CTX_BUF_SIZE_V8,
1507 .other_enc_ctx = MFC_OTHER_ENC_CTX_BUF_SIZE_V8,
e2b9deb2
KA
1508};
1509
ca5ea0c5 1510static struct s5p_mfc_buf_size buf_size_v8 = {
e2b9deb2
KA
1511 .fw = MAX_FW_SIZE_V8,
1512 .cpb = MAX_CPB_SIZE_V8,
1513 .priv = &mfc_buf_size_v8,
1514};
1515
ca5ea0c5 1516static struct s5p_mfc_buf_align mfc_buf_align_v8 = {
e2b9deb2
KA
1517 .base = 0,
1518};
1519
1520static struct s5p_mfc_variant mfc_drvdata_v8 = {
1521 .version = MFC_VERSION_V8,
1522 .version_bit = MFC_V8_BIT,
1523 .port_num = MFC_NUM_PORTS_V8,
1524 .buf_size = &buf_size_v8,
1525 .buf_align = &mfc_buf_align_v8,
77ba6b73 1526 .fw_name[0] = "s5p-mfc-v8.fw",
e2b9deb2
KA
1527};
1528
b27a23be
AK
1529static const struct of_device_id exynos_mfc_match[] = {
1530 {
1531 .compatible = "samsung,mfc-v5",
1532 .data = &mfc_drvdata_v5,
1533 }, {
1534 .compatible = "samsung,mfc-v6",
1535 .data = &mfc_drvdata_v6,
5441e9da
AK
1536 }, {
1537 .compatible = "samsung,mfc-v7",
1538 .data = &mfc_drvdata_v7,
e2b9deb2
KA
1539 }, {
1540 .compatible = "samsung,mfc-v8",
1541 .data = &mfc_drvdata_v8,
b27a23be
AK
1542 },
1543 {},
1544};
1545MODULE_DEVICE_TABLE(of, exynos_mfc_match);
1546
1547static void *mfc_get_drv_data(struct platform_device *pdev)
1548{
1549 struct s5p_mfc_variant *driver_data = NULL;
ed3e34ed
MS
1550 const struct of_device_id *match;
1551
1552 match = of_match_node(exynos_mfc_match, pdev->dev.of_node);
1553 if (match)
1554 driver_data = (struct s5p_mfc_variant *)match->data;
b27a23be 1555
b27a23be
AK
1556 return driver_data;
1557}
1558
1e393e90 1559static struct platform_driver s5p_mfc_driver = {
8f532a7f 1560 .probe = s5p_mfc_probe,
4c62e976 1561 .remove = s5p_mfc_remove,
af935746
KD
1562 .driver = {
1563 .name = S5P_MFC_NAME,
b27a23be
AK
1564 .pm = &s5p_mfc_pm_ops,
1565 .of_match_table = exynos_mfc_match,
af935746
KD
1566 },
1567};
1568
1d6629b1 1569module_platform_driver(s5p_mfc_driver);
af935746
KD
1570
1571MODULE_LICENSE("GPL");
1572MODULE_AUTHOR("Kamil Debski <k.debski@samsung.com>");
1573MODULE_DESCRIPTION("Samsung S5P Multi Format Codec V4L2 driver");
1574
This page took 0.380618 seconds and 5 git commands to generate.