blob: 861087c721bf2b01a869e41004988bf85080af5d [file] [log] [blame]
Kamil Debskiaf935742011-06-21 10:51:26 -03001/*
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>
Kamil Debskiaf935742011-06-21 10:51:26 -030021#include <linux/videodev2.h>
Andrzej Hajdaf9f715a2012-08-21 08:05:32 -030022#include <media/v4l2-event.h>
Kamil Debskiaf935742011-06-21 10:51:26 -030023#include <linux/workqueue.h>
Arun Kumar Kb27a23b2012-10-25 05:24:14 -030024#include <linux/of.h>
Kamil Debskiaf935742011-06-21 10:51:26 -030025#include <media/videobuf2-core.h>
Arun Kumar K43a1ea12012-10-03 22:19:08 -030026#include "s5p_mfc_common.h"
Kamil Debskiaf935742011-06-21 10:51:26 -030027#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"
Arun Kumar K43a1ea12012-10-03 22:19:08 -030032#include "s5p_mfc_opr.h"
33#include "s5p_mfc_cmd.h"
Kamil Debskiaf935742011-06-21 10:51:26 -030034#include "s5p_mfc_pm.h"
Kamil Debskiaf935742011-06-21 10:51:26 -030035
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"
39
40int debug;
41module_param(debug, int, S_IRUGO | S_IWUSR);
42MODULE_PARM_DESC(debug, "Debug level - higher value produces more verbose messages");
43
44/* Helper functions for interrupt processing */
Andrzej Hajda7fb89ec2012-08-14 06:13:40 -030045
Kamil Debskiaf935742011-06-21 10:51:26 -030046/* Remove from hw execution round robin */
Andrzej Hajda7fb89ec2012-08-14 06:13:40 -030047void clear_work_bit(struct s5p_mfc_ctx *ctx)
Kamil Debskiaf935742011-06-21 10:51:26 -030048{
49 struct s5p_mfc_dev *dev = ctx->dev;
50
51 spin_lock(&dev->condlock);
Andrzej Hajda7fb89ec2012-08-14 06:13:40 -030052 __clear_bit(ctx->num, &dev->ctx_work_bits);
Kamil Debskiaf935742011-06-21 10:51:26 -030053 spin_unlock(&dev->condlock);
54}
55
Andrzej Hajda7fb89ec2012-08-14 06:13:40 -030056/* Add to hw execution round robin */
57void set_work_bit(struct s5p_mfc_ctx *ctx)
58{
59 struct s5p_mfc_dev *dev = ctx->dev;
60
61 spin_lock(&dev->condlock);
62 __set_bit(ctx->num, &dev->ctx_work_bits);
63 spin_unlock(&dev->condlock);
64}
65
66/* Remove from hw execution round robin */
67void clear_work_bit_irqsave(struct s5p_mfc_ctx *ctx)
68{
69 struct s5p_mfc_dev *dev = ctx->dev;
70 unsigned long flags;
71
72 spin_lock_irqsave(&dev->condlock, flags);
73 __clear_bit(ctx->num, &dev->ctx_work_bits);
74 spin_unlock_irqrestore(&dev->condlock, flags);
75}
76
77/* Add to hw execution round robin */
78void set_work_bit_irqsave(struct s5p_mfc_ctx *ctx)
79{
80 struct s5p_mfc_dev *dev = ctx->dev;
81 unsigned long flags;
82
83 spin_lock_irqsave(&dev->condlock, flags);
84 __set_bit(ctx->num, &dev->ctx_work_bits);
85 spin_unlock_irqrestore(&dev->condlock, flags);
86}
87
Kamil Debskiaf935742011-06-21 10:51:26 -030088/* Wake up context wait_queue */
89static void wake_up_ctx(struct s5p_mfc_ctx *ctx, unsigned int reason,
90 unsigned int err)
91{
92 ctx->int_cond = 1;
93 ctx->int_type = reason;
94 ctx->int_err = err;
95 wake_up(&ctx->queue);
96}
97
98/* Wake up device wait_queue */
99static void wake_up_dev(struct s5p_mfc_dev *dev, unsigned int reason,
100 unsigned int err)
101{
102 dev->int_cond = 1;
103 dev->int_type = reason;
104 dev->int_err = err;
105 wake_up(&dev->queue);
106}
107
Sachin Kamata13bba42012-05-10 03:32:01 -0300108static void s5p_mfc_watchdog(unsigned long arg)
Kamil Debskiaf935742011-06-21 10:51:26 -0300109{
110 struct s5p_mfc_dev *dev = (struct s5p_mfc_dev *)arg;
111
112 if (test_bit(0, &dev->hw_lock))
113 atomic_inc(&dev->watchdog_cnt);
114 if (atomic_read(&dev->watchdog_cnt) >= MFC_WATCHDOG_CNT) {
115 /* This means that hw is busy and no interrupts were
116 * generated by hw for the Nth time of running this
117 * watchdog timer. This usually means a serious hw
118 * error. Now it is time to kill all instances and
119 * reset the MFC. */
120 mfc_err("Time out during waiting for HW\n");
121 queue_work(dev->watchdog_workqueue, &dev->watchdog_work);
122 }
123 dev->watchdog_timer.expires = jiffies +
124 msecs_to_jiffies(MFC_WATCHDOG_INTERVAL);
125 add_timer(&dev->watchdog_timer);
126}
127
128static void s5p_mfc_watchdog_worker(struct work_struct *work)
129{
130 struct s5p_mfc_dev *dev;
131 struct s5p_mfc_ctx *ctx;
132 unsigned long flags;
133 int mutex_locked;
134 int i, ret;
135
136 dev = container_of(work, struct s5p_mfc_dev, watchdog_work);
137
138 mfc_err("Driver timeout error handling\n");
139 /* Lock the mutex that protects open and release.
140 * This is necessary as they may load and unload firmware. */
141 mutex_locked = mutex_trylock(&dev->mfc_mutex);
142 if (!mutex_locked)
143 mfc_err("Error: some instance may be closing/opening\n");
144 spin_lock_irqsave(&dev->irqlock, flags);
145
146 s5p_mfc_clock_off();
147
148 for (i = 0; i < MFC_NUM_CONTEXTS; i++) {
149 ctx = dev->ctx[i];
150 if (!ctx)
151 continue;
152 ctx->state = MFCINST_ERROR;
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300153 s5p_mfc_hw_call(dev->mfc_ops, cleanup_queue, &ctx->dst_queue,
154 &ctx->vq_dst);
155 s5p_mfc_hw_call(dev->mfc_ops, cleanup_queue, &ctx->src_queue,
156 &ctx->vq_src);
Kamil Debskiaf935742011-06-21 10:51:26 -0300157 clear_work_bit(ctx);
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300158 wake_up_ctx(ctx, S5P_MFC_R2H_CMD_ERR_RET, 0);
Kamil Debskiaf935742011-06-21 10:51:26 -0300159 }
160 clear_bit(0, &dev->hw_lock);
161 spin_unlock_irqrestore(&dev->irqlock, flags);
162 /* Double check if there is at least one instance running.
163 * If no instance is in memory than no firmware should be present */
164 if (dev->num_inst > 0) {
165 ret = s5p_mfc_reload_firmware(dev);
166 if (ret) {
167 mfc_err("Failed to reload FW\n");
168 goto unlock;
169 }
170 s5p_mfc_clock_on();
171 ret = s5p_mfc_init_hw(dev);
172 if (ret)
173 mfc_err("Failed to reinit FW\n");
174 }
175unlock:
176 if (mutex_locked)
177 mutex_unlock(&dev->mfc_mutex);
178}
179
Kamil Debskiaf935742011-06-21 10:51:26 -0300180static void s5p_mfc_clear_int_flags(struct s5p_mfc_dev *dev)
181{
182 mfc_write(dev, 0, S5P_FIMV_RISC_HOST_INT);
183 mfc_write(dev, 0, S5P_FIMV_RISC2HOST_CMD);
184 mfc_write(dev, 0xffff, S5P_FIMV_SI_RTN_CHID);
185}
186
187static void s5p_mfc_handle_frame_all_extracted(struct s5p_mfc_ctx *ctx)
188{
189 struct s5p_mfc_buf *dst_buf;
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300190 struct s5p_mfc_dev *dev = ctx->dev;
Kamil Debskiaf935742011-06-21 10:51:26 -0300191
192 ctx->state = MFCINST_FINISHED;
193 ctx->sequence++;
194 while (!list_empty(&ctx->dst_queue)) {
195 dst_buf = list_entry(ctx->dst_queue.next,
196 struct s5p_mfc_buf, list);
197 mfc_debug(2, "Cleaning up buffer: %d\n",
198 dst_buf->b->v4l2_buf.index);
199 vb2_set_plane_payload(dst_buf->b, 0, 0);
200 vb2_set_plane_payload(dst_buf->b, 1, 0);
201 list_del(&dst_buf->list);
202 ctx->dst_queue_cnt--;
203 dst_buf->b->v4l2_buf.sequence = (ctx->sequence++);
204
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300205 if (s5p_mfc_hw_call(dev->mfc_ops, get_pic_type_top, ctx) ==
206 s5p_mfc_hw_call(dev->mfc_ops, get_pic_type_bot, ctx))
Kamil Debskiaf935742011-06-21 10:51:26 -0300207 dst_buf->b->v4l2_buf.field = V4L2_FIELD_NONE;
208 else
209 dst_buf->b->v4l2_buf.field = V4L2_FIELD_INTERLACED;
210
211 ctx->dec_dst_flag &= ~(1 << dst_buf->b->v4l2_buf.index);
212 vb2_buffer_done(dst_buf->b, VB2_BUF_STATE_DONE);
213 }
214}
215
216static void s5p_mfc_handle_frame_copy_time(struct s5p_mfc_ctx *ctx)
217{
218 struct s5p_mfc_dev *dev = ctx->dev;
219 struct s5p_mfc_buf *dst_buf, *src_buf;
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300220 size_t dec_y_addr;
221 unsigned int frame_type;
222
223 dec_y_addr = s5p_mfc_hw_call(dev->mfc_ops, get_dec_y_adr, dev);
224 frame_type = s5p_mfc_hw_call(dev->mfc_ops, get_dec_frame_type, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300225
226 /* Copy timestamp / timecode from decoded src to dst and set
Jonathan McCrohan39c1cb22013-10-20 21:34:01 -0300227 appropriate flags */
Kamil Debskiaf935742011-06-21 10:51:26 -0300228 src_buf = list_entry(ctx->src_queue.next, struct s5p_mfc_buf, list);
229 list_for_each_entry(dst_buf, &ctx->dst_queue, list) {
Marek Szyprowskiba7fcb02011-08-29 03:20:56 -0300230 if (vb2_dma_contig_plane_dma_addr(dst_buf->b, 0) == dec_y_addr) {
Kamil Debski56006012013-04-24 10:31:05 -0300231 dst_buf->b->v4l2_buf.timecode =
232 src_buf->b->v4l2_buf.timecode;
233 dst_buf->b->v4l2_buf.timestamp =
234 src_buf->b->v4l2_buf.timestamp;
Sakari Ailus309f4d62014-02-08 14:21:35 -0300235 dst_buf->b->v4l2_buf.flags &=
236 ~V4L2_BUF_FLAG_TSTAMP_SRC_MASK;
237 dst_buf->b->v4l2_buf.flags |=
238 src_buf->b->v4l2_buf.flags
239 & V4L2_BUF_FLAG_TSTAMP_SRC_MASK;
Kamil Debskiaf935742011-06-21 10:51:26 -0300240 switch (frame_type) {
241 case S5P_FIMV_DECODE_FRAME_I_FRAME:
242 dst_buf->b->v4l2_buf.flags |=
243 V4L2_BUF_FLAG_KEYFRAME;
244 break;
245 case S5P_FIMV_DECODE_FRAME_P_FRAME:
246 dst_buf->b->v4l2_buf.flags |=
247 V4L2_BUF_FLAG_PFRAME;
248 break;
249 case S5P_FIMV_DECODE_FRAME_B_FRAME:
250 dst_buf->b->v4l2_buf.flags |=
251 V4L2_BUF_FLAG_BFRAME;
252 break;
253 }
254 break;
255 }
256 }
257}
258
259static void s5p_mfc_handle_frame_new(struct s5p_mfc_ctx *ctx, unsigned int err)
260{
261 struct s5p_mfc_dev *dev = ctx->dev;
262 struct s5p_mfc_buf *dst_buf;
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300263 size_t dspl_y_addr;
264 unsigned int frame_type;
Kamil Debskiaf935742011-06-21 10:51:26 -0300265
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300266 dspl_y_addr = s5p_mfc_hw_call(dev->mfc_ops, get_dspl_y_adr, dev);
Arun Kumar K90c0ae52013-02-26 18:02:11 -0300267 frame_type = s5p_mfc_hw_call(dev->mfc_ops, get_disp_frame_type, ctx);
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300268
Kamil Debskiaf935742011-06-21 10:51:26 -0300269 /* If frame is same as previous then skip and do not dequeue */
270 if (frame_type == S5P_FIMV_DECODE_FRAME_SKIPPED) {
271 if (!ctx->after_packed_pb)
272 ctx->sequence++;
273 ctx->after_packed_pb = 0;
274 return;
275 }
276 ctx->sequence++;
277 /* The MFC returns address of the buffer, now we have to
278 * check which videobuf does it correspond to */
279 list_for_each_entry(dst_buf, &ctx->dst_queue, list) {
280 /* Check if this is the buffer we're looking for */
Marek Szyprowskiba7fcb02011-08-29 03:20:56 -0300281 if (vb2_dma_contig_plane_dma_addr(dst_buf->b, 0) == dspl_y_addr) {
Kamil Debskiaf935742011-06-21 10:51:26 -0300282 list_del(&dst_buf->list);
283 ctx->dst_queue_cnt--;
284 dst_buf->b->v4l2_buf.sequence = ctx->sequence;
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300285 if (s5p_mfc_hw_call(dev->mfc_ops,
286 get_pic_type_top, ctx) ==
287 s5p_mfc_hw_call(dev->mfc_ops,
288 get_pic_type_bot, ctx))
Kamil Debskiaf935742011-06-21 10:51:26 -0300289 dst_buf->b->v4l2_buf.field = V4L2_FIELD_NONE;
290 else
291 dst_buf->b->v4l2_buf.field =
292 V4L2_FIELD_INTERLACED;
293 vb2_set_plane_payload(dst_buf->b, 0, ctx->luma_size);
294 vb2_set_plane_payload(dst_buf->b, 1, ctx->chroma_size);
295 clear_bit(dst_buf->b->v4l2_buf.index,
296 &ctx->dec_dst_flag);
297
298 vb2_buffer_done(dst_buf->b,
299 err ? VB2_BUF_STATE_ERROR : VB2_BUF_STATE_DONE);
300
Kamil Debskiaf935742011-06-21 10:51:26 -0300301 break;
302 }
303 }
304}
305
306/* Handle frame decoding interrupt */
307static void s5p_mfc_handle_frame(struct s5p_mfc_ctx *ctx,
308 unsigned int reason, unsigned int err)
309{
310 struct s5p_mfc_dev *dev = ctx->dev;
311 unsigned int dst_frame_status;
Pawel Osciaka0517f52014-05-19 09:32:57 -0300312 unsigned int dec_frame_status;
Kamil Debskiaf935742011-06-21 10:51:26 -0300313 struct s5p_mfc_buf *src_buf;
314 unsigned long flags;
315 unsigned int res_change;
316
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300317 dst_frame_status = s5p_mfc_hw_call(dev->mfc_ops, get_dspl_status, dev)
Kamil Debskiaf935742011-06-21 10:51:26 -0300318 & S5P_FIMV_DEC_STATUS_DECODING_STATUS_MASK;
Pawel Osciaka0517f52014-05-19 09:32:57 -0300319 dec_frame_status = s5p_mfc_hw_call(dev->mfc_ops, get_dec_status, dev)
320 & S5P_FIMV_DEC_STATUS_DECODING_STATUS_MASK;
Jeongtae Parkf96f3cf2012-10-03 22:19:11 -0300321 res_change = (s5p_mfc_hw_call(dev->mfc_ops, get_dspl_status, dev)
322 & S5P_FIMV_DEC_STATUS_RESOLUTION_MASK)
323 >> S5P_FIMV_DEC_STATUS_RESOLUTION_SHIFT;
Kamil Debskiaf935742011-06-21 10:51:26 -0300324 mfc_debug(2, "Frame Status: %x\n", dst_frame_status);
325 if (ctx->state == MFCINST_RES_CHANGE_INIT)
326 ctx->state = MFCINST_RES_CHANGE_FLUSH;
Jeongtae Parkf96f3cf2012-10-03 22:19:11 -0300327 if (res_change == S5P_FIMV_RES_INCREASE ||
328 res_change == S5P_FIMV_RES_DECREASE) {
Kamil Debskiaf935742011-06-21 10:51:26 -0300329 ctx->state = MFCINST_RES_CHANGE_INIT;
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300330 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300331 wake_up_ctx(ctx, reason, err);
332 if (test_and_clear_bit(0, &dev->hw_lock) == 0)
333 BUG();
334 s5p_mfc_clock_off();
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300335 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300336 return;
337 }
338 if (ctx->dpb_flush_flag)
339 ctx->dpb_flush_flag = 0;
340
341 spin_lock_irqsave(&dev->irqlock, flags);
342 /* All frames remaining in the buffer have been extracted */
343 if (dst_frame_status == S5P_FIMV_DEC_STATUS_DECODING_EMPTY) {
344 if (ctx->state == MFCINST_RES_CHANGE_FLUSH) {
345 s5p_mfc_handle_frame_all_extracted(ctx);
346 ctx->state = MFCINST_RES_CHANGE_END;
347 goto leave_handle_frame;
348 } else {
349 s5p_mfc_handle_frame_all_extracted(ctx);
350 }
351 }
352
Pawel Osciaka0517f52014-05-19 09:32:57 -0300353 if (dec_frame_status == S5P_FIMV_DEC_STATUS_DECODING_DISPLAY)
Kamil Debskiaf935742011-06-21 10:51:26 -0300354 s5p_mfc_handle_frame_copy_time(ctx);
355
356 /* A frame has been decoded and is in the buffer */
357 if (dst_frame_status == S5P_FIMV_DEC_STATUS_DISPLAY_ONLY ||
358 dst_frame_status == S5P_FIMV_DEC_STATUS_DECODING_DISPLAY) {
359 s5p_mfc_handle_frame_new(ctx, err);
360 } else {
361 mfc_debug(2, "No frame decode\n");
362 }
363 /* Mark source buffer as complete */
364 if (dst_frame_status != S5P_FIMV_DEC_STATUS_DISPLAY_ONLY
365 && !list_empty(&ctx->src_queue)) {
366 src_buf = list_entry(ctx->src_queue.next, struct s5p_mfc_buf,
367 list);
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300368 ctx->consumed_stream += s5p_mfc_hw_call(dev->mfc_ops,
369 get_consumed_stream, dev);
370 if (ctx->codec_mode != S5P_MFC_CODEC_H264_DEC &&
Arun Kumar Kd2a0db12012-11-14 09:26:45 -0300371 ctx->consumed_stream + STUFF_BYTE <
372 src_buf->b->v4l2_planes[0].bytesused) {
Kamil Debskiaf935742011-06-21 10:51:26 -0300373 /* Run MFC again on the same buffer */
374 mfc_debug(2, "Running again the same buffer\n");
375 ctx->after_packed_pb = 1;
376 } else {
Kamil Debskiaf935742011-06-21 10:51:26 -0300377 mfc_debug(2, "MFC needs next buffer\n");
378 ctx->consumed_stream = 0;
Kamil Debskia34026e2013-01-11 12:29:33 -0300379 if (src_buf->flags & MFC_BUF_FLAG_EOS)
380 ctx->state = MFCINST_FINISHING;
Kamil Debskiaf935742011-06-21 10:51:26 -0300381 list_del(&src_buf->list);
382 ctx->src_queue_cnt--;
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300383 if (s5p_mfc_hw_call(dev->mfc_ops, err_dec, err) > 0)
Kamil Debskiaf935742011-06-21 10:51:26 -0300384 vb2_buffer_done(src_buf->b, VB2_BUF_STATE_ERROR);
385 else
386 vb2_buffer_done(src_buf->b, VB2_BUF_STATE_DONE);
387 }
388 }
389leave_handle_frame:
390 spin_unlock_irqrestore(&dev->irqlock, flags);
391 if ((ctx->src_queue_cnt == 0 && ctx->state != MFCINST_FINISHING)
Arun Kumar Ke9d98dd2013-04-24 09:41:53 -0300392 || ctx->dst_queue_cnt < ctx->pb_count)
Kamil Debskiaf935742011-06-21 10:51:26 -0300393 clear_work_bit(ctx);
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300394 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300395 wake_up_ctx(ctx, reason, err);
396 if (test_and_clear_bit(0, &dev->hw_lock) == 0)
397 BUG();
398 s5p_mfc_clock_off();
Prathyush K76a4ddb2013-10-04 01:47:19 -0300399 /* if suspending, wake up device and do not try_run again*/
400 if (test_bit(0, &dev->enter_suspend))
401 wake_up_dev(dev, reason, err);
402 else
403 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300404}
405
406/* Error handling for interrupt */
Kamil Debski7296e252012-12-21 05:32:59 -0300407static void s5p_mfc_handle_error(struct s5p_mfc_dev *dev,
408 struct s5p_mfc_ctx *ctx, unsigned int reason, unsigned int err)
Kamil Debskiaf935742011-06-21 10:51:26 -0300409{
Kamil Debskiaf935742011-06-21 10:51:26 -0300410 unsigned long flags;
411
Kamil Debskiaf935742011-06-21 10:51:26 -0300412 mfc_err("Interrupt Error: %08x\n", err);
Kamil Debskiaf935742011-06-21 10:51:26 -0300413
Kamil Debski7296e252012-12-21 05:32:59 -0300414 if (ctx != NULL) {
415 /* Error recovery is dependent on the state of context */
416 switch (ctx->state) {
417 case MFCINST_RES_CHANGE_INIT:
418 case MFCINST_RES_CHANGE_FLUSH:
419 case MFCINST_RES_CHANGE_END:
420 case MFCINST_FINISHING:
421 case MFCINST_FINISHED:
422 case MFCINST_RUNNING:
Jonathan McCrohan39c1cb22013-10-20 21:34:01 -0300423 /* It is highly probable that an error occurred
Kamil Debski7296e252012-12-21 05:32:59 -0300424 * while decoding a frame */
425 clear_work_bit(ctx);
426 ctx->state = MFCINST_ERROR;
427 /* Mark all dst buffers as having an error */
428 spin_lock_irqsave(&dev->irqlock, flags);
429 s5p_mfc_hw_call(dev->mfc_ops, cleanup_queue,
430 &ctx->dst_queue, &ctx->vq_dst);
431 /* Mark all src buffers as having an error */
432 s5p_mfc_hw_call(dev->mfc_ops, cleanup_queue,
433 &ctx->src_queue, &ctx->vq_src);
434 spin_unlock_irqrestore(&dev->irqlock, flags);
435 wake_up_ctx(ctx, reason, err);
436 break;
437 default:
438 clear_work_bit(ctx);
439 ctx->state = MFCINST_ERROR;
440 wake_up_ctx(ctx, reason, err);
441 break;
442 }
Kamil Debskiaf935742011-06-21 10:51:26 -0300443 }
Kamil Debski7296e252012-12-21 05:32:59 -0300444 if (test_and_clear_bit(0, &dev->hw_lock) == 0)
445 BUG();
446 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
447 s5p_mfc_clock_off();
448 wake_up_dev(dev, reason, err);
Kamil Debskiaf935742011-06-21 10:51:26 -0300449 return;
450}
451
452/* Header parsing interrupt handling */
453static void s5p_mfc_handle_seq_done(struct s5p_mfc_ctx *ctx,
454 unsigned int reason, unsigned int err)
455{
456 struct s5p_mfc_dev *dev;
Kamil Debskiaf935742011-06-21 10:51:26 -0300457
Sachin Kamat12597622012-05-10 03:32:00 -0300458 if (ctx == NULL)
Kamil Debskiaf935742011-06-21 10:51:26 -0300459 return;
460 dev = ctx->dev;
461 if (ctx->c_ops->post_seq_start) {
462 if (ctx->c_ops->post_seq_start(ctx))
463 mfc_err("post_seq_start() failed\n");
464 } else {
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300465 ctx->img_width = s5p_mfc_hw_call(dev->mfc_ops, get_img_width,
466 dev);
467 ctx->img_height = s5p_mfc_hw_call(dev->mfc_ops, get_img_height,
468 dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300469
Arun Kumar K8f532a72012-10-03 22:19:09 -0300470 s5p_mfc_hw_call(dev->mfc_ops, dec_calc_dpb_size, ctx);
471
Arun Kumar Ke9d98dd2013-04-24 09:41:53 -0300472 ctx->pb_count = s5p_mfc_hw_call(dev->mfc_ops, get_dpb_count,
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300473 dev);
Jeongtae Parkf96f3cf2012-10-03 22:19:11 -0300474 ctx->mv_count = s5p_mfc_hw_call(dev->mfc_ops, get_mv_count,
475 dev);
Julia Lawallbb869362012-01-12 17:49:30 -0300476 if (ctx->img_width == 0 || ctx->img_height == 0)
Kamil Debskiaf935742011-06-21 10:51:26 -0300477 ctx->state = MFCINST_ERROR;
478 else
479 ctx->state = MFCINST_HEAD_PARSED;
Jeongtae Parkf96f3cf2012-10-03 22:19:11 -0300480
481 if ((ctx->codec_mode == S5P_MFC_CODEC_H264_DEC ||
482 ctx->codec_mode == S5P_MFC_CODEC_H264_MVC_DEC) &&
483 !list_empty(&ctx->src_queue)) {
484 struct s5p_mfc_buf *src_buf;
485 src_buf = list_entry(ctx->src_queue.next,
486 struct s5p_mfc_buf, list);
487 if (s5p_mfc_hw_call(dev->mfc_ops, get_consumed_stream,
488 dev) <
489 src_buf->b->v4l2_planes[0].bytesused)
490 ctx->head_processed = 0;
491 else
492 ctx->head_processed = 1;
493 } else {
494 ctx->head_processed = 1;
495 }
Kamil Debskiaf935742011-06-21 10:51:26 -0300496 }
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300497 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300498 clear_work_bit(ctx);
499 if (test_and_clear_bit(0, &dev->hw_lock) == 0)
500 BUG();
501 s5p_mfc_clock_off();
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300502 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300503 wake_up_ctx(ctx, reason, err);
504}
505
506/* Header parsing interrupt handling */
507static void s5p_mfc_handle_init_buffers(struct s5p_mfc_ctx *ctx,
508 unsigned int reason, unsigned int err)
509{
510 struct s5p_mfc_buf *src_buf;
511 struct s5p_mfc_dev *dev;
512 unsigned long flags;
513
Sachin Kamat12597622012-05-10 03:32:00 -0300514 if (ctx == NULL)
Kamil Debskiaf935742011-06-21 10:51:26 -0300515 return;
516 dev = ctx->dev;
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300517 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300518 ctx->int_type = reason;
519 ctx->int_err = err;
520 ctx->int_cond = 1;
Andrzej Hajda7fb89ec2012-08-14 06:13:40 -0300521 clear_work_bit(ctx);
Kamil Debskiaf935742011-06-21 10:51:26 -0300522 if (err == 0) {
523 ctx->state = MFCINST_RUNNING;
Jeongtae Parkf96f3cf2012-10-03 22:19:11 -0300524 if (!ctx->dpb_flush_flag && ctx->head_processed) {
Kamil Debskiaf935742011-06-21 10:51:26 -0300525 spin_lock_irqsave(&dev->irqlock, flags);
526 if (!list_empty(&ctx->src_queue)) {
527 src_buf = list_entry(ctx->src_queue.next,
528 struct s5p_mfc_buf, list);
529 list_del(&src_buf->list);
530 ctx->src_queue_cnt--;
531 vb2_buffer_done(src_buf->b,
532 VB2_BUF_STATE_DONE);
533 }
534 spin_unlock_irqrestore(&dev->irqlock, flags);
535 } else {
536 ctx->dpb_flush_flag = 0;
537 }
538 if (test_and_clear_bit(0, &dev->hw_lock) == 0)
539 BUG();
540
541 s5p_mfc_clock_off();
542
543 wake_up(&ctx->queue);
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300544 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300545 } else {
546 if (test_and_clear_bit(0, &dev->hw_lock) == 0)
547 BUG();
548
549 s5p_mfc_clock_off();
550
551 wake_up(&ctx->queue);
552 }
553}
554
Andrzej Hajdaf9f715a2012-08-21 08:05:32 -0300555static void s5p_mfc_handle_stream_complete(struct s5p_mfc_ctx *ctx,
556 unsigned int reason, unsigned int err)
557{
558 struct s5p_mfc_dev *dev = ctx->dev;
559 struct s5p_mfc_buf *mb_entry;
560
Andrzej Hajda4130eab2013-05-28 03:26:16 -0300561 mfc_debug(2, "Stream completed\n");
Andrzej Hajdaf9f715a2012-08-21 08:05:32 -0300562
563 s5p_mfc_clear_int_flags(dev);
564 ctx->int_type = reason;
565 ctx->int_err = err;
566 ctx->state = MFCINST_FINISHED;
567
568 spin_lock(&dev->irqlock);
569 if (!list_empty(&ctx->dst_queue)) {
570 mb_entry = list_entry(ctx->dst_queue.next, struct s5p_mfc_buf,
571 list);
572 list_del(&mb_entry->list);
573 ctx->dst_queue_cnt--;
574 vb2_set_plane_payload(mb_entry->b, 0, 0);
575 vb2_buffer_done(mb_entry->b, VB2_BUF_STATE_DONE);
576 }
577 spin_unlock(&dev->irqlock);
578
579 clear_work_bit(ctx);
580
Sachin Kamate8256442013-01-22 01:00:06 -0300581 WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
Andrzej Hajdaf9f715a2012-08-21 08:05:32 -0300582
583 s5p_mfc_clock_off();
584 wake_up(&ctx->queue);
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300585 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
Andrzej Hajdaf9f715a2012-08-21 08:05:32 -0300586}
587
Kamil Debskiaf935742011-06-21 10:51:26 -0300588/* Interrupt processing */
589static irqreturn_t s5p_mfc_irq(int irq, void *priv)
590{
591 struct s5p_mfc_dev *dev = priv;
592 struct s5p_mfc_ctx *ctx;
593 unsigned int reason;
594 unsigned int err;
595
596 mfc_debug_enter();
597 /* Reset the timeout watchdog */
598 atomic_set(&dev->watchdog_cnt, 0);
599 ctx = dev->ctx[dev->curr_ctx];
600 /* Get the reason of interrupt and the error code */
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300601 reason = s5p_mfc_hw_call(dev->mfc_ops, get_int_reason, dev);
602 err = s5p_mfc_hw_call(dev->mfc_ops, get_int_err, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300603 mfc_debug(1, "Int reason: %d (err: %08x)\n", reason, err);
604 switch (reason) {
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300605 case S5P_MFC_R2H_CMD_ERR_RET:
Jonathan McCrohan39c1cb22013-10-20 21:34:01 -0300606 /* An error has occurred */
Kamil Debskiaf935742011-06-21 10:51:26 -0300607 if (ctx->state == MFCINST_RUNNING &&
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300608 s5p_mfc_hw_call(dev->mfc_ops, err_dec, err) >=
609 dev->warn_start)
Kamil Debskiaf935742011-06-21 10:51:26 -0300610 s5p_mfc_handle_frame(ctx, reason, err);
611 else
Kamil Debski7296e252012-12-21 05:32:59 -0300612 s5p_mfc_handle_error(dev, ctx, reason, err);
Kamil Debskiaf935742011-06-21 10:51:26 -0300613 clear_bit(0, &dev->enter_suspend);
614 break;
615
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300616 case S5P_MFC_R2H_CMD_SLICE_DONE_RET:
617 case S5P_MFC_R2H_CMD_FIELD_DONE_RET:
618 case S5P_MFC_R2H_CMD_FRAME_DONE_RET:
Kamil Debskiaf935742011-06-21 10:51:26 -0300619 if (ctx->c_ops->post_frame_start) {
620 if (ctx->c_ops->post_frame_start(ctx))
621 mfc_err("post_frame_start() failed\n");
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300622 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300623 wake_up_ctx(ctx, reason, err);
624 if (test_and_clear_bit(0, &dev->hw_lock) == 0)
625 BUG();
626 s5p_mfc_clock_off();
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300627 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300628 } else {
629 s5p_mfc_handle_frame(ctx, reason, err);
630 }
631 break;
632
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300633 case S5P_MFC_R2H_CMD_SEQ_DONE_RET:
Kamil Debskiaf935742011-06-21 10:51:26 -0300634 s5p_mfc_handle_seq_done(ctx, reason, err);
635 break;
636
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300637 case S5P_MFC_R2H_CMD_OPEN_INSTANCE_RET:
638 ctx->inst_no = s5p_mfc_hw_call(dev->mfc_ops, get_inst_no, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300639 ctx->state = MFCINST_GOT_INST;
640 clear_work_bit(ctx);
641 wake_up(&ctx->queue);
642 goto irq_cleanup_hw;
643
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300644 case S5P_MFC_R2H_CMD_CLOSE_INSTANCE_RET:
Kamil Debskiaf935742011-06-21 10:51:26 -0300645 clear_work_bit(ctx);
646 ctx->state = MFCINST_FREE;
647 wake_up(&ctx->queue);
648 goto irq_cleanup_hw;
649
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300650 case S5P_MFC_R2H_CMD_SYS_INIT_RET:
651 case S5P_MFC_R2H_CMD_FW_STATUS_RET:
652 case S5P_MFC_R2H_CMD_SLEEP_RET:
653 case S5P_MFC_R2H_CMD_WAKEUP_RET:
Kamil Debskiaf935742011-06-21 10:51:26 -0300654 if (ctx)
655 clear_work_bit(ctx);
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300656 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300657 wake_up_dev(dev, reason, err);
658 clear_bit(0, &dev->hw_lock);
659 clear_bit(0, &dev->enter_suspend);
660 break;
661
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300662 case S5P_MFC_R2H_CMD_INIT_BUFFERS_RET:
Kamil Debskiaf935742011-06-21 10:51:26 -0300663 s5p_mfc_handle_init_buffers(ctx, reason, err);
664 break;
Andrzej Hajdaf9f715a2012-08-21 08:05:32 -0300665
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300666 case S5P_MFC_R2H_CMD_COMPLETE_SEQ_RET:
Andrzej Hajdaf9f715a2012-08-21 08:05:32 -0300667 s5p_mfc_handle_stream_complete(ctx, reason, err);
668 break;
669
Arun Kumar K8f23cc02012-11-22 06:15:55 -0300670 case S5P_MFC_R2H_CMD_DPB_FLUSH_RET:
671 clear_work_bit(ctx);
672 ctx->state = MFCINST_RUNNING;
673 wake_up(&ctx->queue);
674 goto irq_cleanup_hw;
675
Kamil Debskiaf935742011-06-21 10:51:26 -0300676 default:
677 mfc_debug(2, "Unknown int reason\n");
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300678 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300679 }
680 mfc_debug_leave();
681 return IRQ_HANDLED;
682irq_cleanup_hw:
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300683 s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300684 ctx->int_type = reason;
685 ctx->int_err = err;
686 ctx->int_cond = 1;
687 if (test_and_clear_bit(0, &dev->hw_lock) == 0)
688 mfc_err("Failed to unlock hw\n");
689
690 s5p_mfc_clock_off();
691
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300692 s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300693 mfc_debug(2, "Exit via irq_cleanup_hw\n");
694 return IRQ_HANDLED;
695}
696
697/* Open an MFC node */
698static int s5p_mfc_open(struct file *file)
699{
Marek Szyprowskib80cb8d2013-12-03 10:12:51 -0300700 struct video_device *vdev = video_devdata(file);
Kamil Debskiaf935742011-06-21 10:51:26 -0300701 struct s5p_mfc_dev *dev = video_drvdata(file);
702 struct s5p_mfc_ctx *ctx = NULL;
703 struct vb2_queue *q;
Kamil Debskiaf935742011-06-21 10:51:26 -0300704 int ret = 0;
705
706 mfc_debug_enter();
Hans Verkuilbc738302012-06-24 07:13:33 -0300707 if (mutex_lock_interruptible(&dev->mfc_mutex))
708 return -ERESTARTSYS;
Kamil Debskiaf935742011-06-21 10:51:26 -0300709 dev->num_inst++; /* It is guarded by mfc_mutex in vfd */
710 /* Allocate memory for context */
Sachin Kamatbae061b2012-08-17 03:22:55 -0300711 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
Kamil Debskiaf935742011-06-21 10:51:26 -0300712 if (!ctx) {
713 mfc_err("Not enough memory\n");
714 ret = -ENOMEM;
715 goto err_alloc;
716 }
717 v4l2_fh_init(&ctx->fh, video_devdata(file));
718 file->private_data = &ctx->fh;
719 v4l2_fh_add(&ctx->fh);
720 ctx->dev = dev;
721 INIT_LIST_HEAD(&ctx->src_queue);
722 INIT_LIST_HEAD(&ctx->dst_queue);
723 ctx->src_queue_cnt = 0;
724 ctx->dst_queue_cnt = 0;
725 /* Get context number */
726 ctx->num = 0;
727 while (dev->ctx[ctx->num]) {
728 ctx->num++;
729 if (ctx->num >= MFC_NUM_CONTEXTS) {
730 mfc_err("Too many open contexts\n");
731 ret = -EBUSY;
732 goto err_no_ctx;
733 }
734 }
735 /* Mark context as idle */
Andrzej Hajda7fb89ec2012-08-14 06:13:40 -0300736 clear_work_bit_irqsave(ctx);
Kamil Debskiaf935742011-06-21 10:51:26 -0300737 dev->ctx[ctx->num] = ctx;
Marek Szyprowskib80cb8d2013-12-03 10:12:51 -0300738 if (vdev == dev->vfd_dec) {
Kamil Debskiaf935742011-06-21 10:51:26 -0300739 ctx->type = MFCINST_DECODER;
740 ctx->c_ops = get_dec_codec_ops();
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300741 s5p_mfc_dec_init(ctx);
Kamil Debskiaf935742011-06-21 10:51:26 -0300742 /* Setup ctrl handler */
743 ret = s5p_mfc_dec_ctrls_setup(ctx);
744 if (ret) {
745 mfc_err("Failed to setup mfc controls\n");
746 goto err_ctrls_setup;
747 }
Marek Szyprowskib80cb8d2013-12-03 10:12:51 -0300748 } else if (vdev == dev->vfd_enc) {
Kamil Debskiaf935742011-06-21 10:51:26 -0300749 ctx->type = MFCINST_ENCODER;
750 ctx->c_ops = get_enc_codec_ops();
751 /* only for encoder */
752 INIT_LIST_HEAD(&ctx->ref_queue);
753 ctx->ref_queue_cnt = 0;
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300754 s5p_mfc_enc_init(ctx);
Kamil Debskiaf935742011-06-21 10:51:26 -0300755 /* Setup ctrl handler */
756 ret = s5p_mfc_enc_ctrls_setup(ctx);
757 if (ret) {
758 mfc_err("Failed to setup mfc controls\n");
759 goto err_ctrls_setup;
760 }
761 } else {
762 ret = -ENOENT;
763 goto err_bad_node;
764 }
765 ctx->fh.ctrl_handler = &ctx->ctrl_handler;
766 ctx->inst_no = -1;
767 /* Load firmware if this is the first instance */
768 if (dev->num_inst == 1) {
769 dev->watchdog_timer.expires = jiffies +
770 msecs_to_jiffies(MFC_WATCHDOG_INTERVAL);
771 add_timer(&dev->watchdog_timer);
772 ret = s5p_mfc_power_on();
773 if (ret < 0) {
774 mfc_err("power on failed\n");
775 goto err_pwr_enable;
776 }
777 s5p_mfc_clock_on();
Kamil Debski2e731e42013-01-03 11:02:07 -0300778 ret = s5p_mfc_load_firmware(dev);
779 if (ret) {
780 s5p_mfc_clock_off();
781 goto err_load_fw;
782 }
Kamil Debskiaf935742011-06-21 10:51:26 -0300783 /* Init the FW */
784 ret = s5p_mfc_init_hw(dev);
Kamil Debski2e731e42013-01-03 11:02:07 -0300785 s5p_mfc_clock_off();
Kamil Debskiaf935742011-06-21 10:51:26 -0300786 if (ret)
787 goto err_init_hw;
Kamil Debskiaf935742011-06-21 10:51:26 -0300788 }
789 /* Init videobuf2 queue for CAPTURE */
790 q = &ctx->vq_dst;
791 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
792 q->drv_priv = &ctx->fh;
Marek Szyprowskib80cb8d2013-12-03 10:12:51 -0300793 if (vdev == dev->vfd_dec) {
Kamil Debskiaf935742011-06-21 10:51:26 -0300794 q->io_modes = VB2_MMAP;
795 q->ops = get_dec_queue_ops();
Marek Szyprowskib80cb8d2013-12-03 10:12:51 -0300796 } else if (vdev == dev->vfd_enc) {
Kamil Debskiaf935742011-06-21 10:51:26 -0300797 q->io_modes = VB2_MMAP | VB2_USERPTR;
798 q->ops = get_enc_queue_ops();
799 } else {
800 ret = -ENOENT;
801 goto err_queue_init;
802 }
803 q->mem_ops = (struct vb2_mem_ops *)&vb2_dma_contig_memops;
Sakari Ailusade48682014-02-25 19:12:19 -0300804 q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
Kamil Debskiaf935742011-06-21 10:51:26 -0300805 ret = vb2_queue_init(q);
806 if (ret) {
807 mfc_err("Failed to initialize videobuf2 queue(capture)\n");
808 goto err_queue_init;
809 }
810 /* Init videobuf2 queue for OUTPUT */
811 q = &ctx->vq_src;
812 q->type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
813 q->io_modes = VB2_MMAP;
814 q->drv_priv = &ctx->fh;
Marek Szyprowskib80cb8d2013-12-03 10:12:51 -0300815 if (vdev == dev->vfd_dec) {
Kamil Debskiaf935742011-06-21 10:51:26 -0300816 q->io_modes = VB2_MMAP;
817 q->ops = get_dec_queue_ops();
Marek Szyprowskib80cb8d2013-12-03 10:12:51 -0300818 } else if (vdev == dev->vfd_enc) {
Kamil Debskiaf935742011-06-21 10:51:26 -0300819 q->io_modes = VB2_MMAP | VB2_USERPTR;
820 q->ops = get_enc_queue_ops();
821 } else {
822 ret = -ENOENT;
823 goto err_queue_init;
824 }
825 q->mem_ops = (struct vb2_mem_ops *)&vb2_dma_contig_memops;
Sakari Ailusade48682014-02-25 19:12:19 -0300826 q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
Kamil Debskiaf935742011-06-21 10:51:26 -0300827 ret = vb2_queue_init(q);
828 if (ret) {
829 mfc_err("Failed to initialize videobuf2 queue(output)\n");
830 goto err_queue_init;
831 }
832 init_waitqueue_head(&ctx->queue);
Hans Verkuilbc738302012-06-24 07:13:33 -0300833 mutex_unlock(&dev->mfc_mutex);
Kamil Debskiaf935742011-06-21 10:51:26 -0300834 mfc_debug_leave();
835 return ret;
Jonathan McCrohan39c1cb22013-10-20 21:34:01 -0300836 /* Deinit when failure occurred */
Kamil Debskiaf935742011-06-21 10:51:26 -0300837err_queue_init:
Kamil Debski2e731e42013-01-03 11:02:07 -0300838 if (dev->num_inst == 1)
839 s5p_mfc_deinit_hw(dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300840err_init_hw:
Kamil Debski2e731e42013-01-03 11:02:07 -0300841err_load_fw:
Kamil Debskiaf935742011-06-21 10:51:26 -0300842err_pwr_enable:
843 if (dev->num_inst == 1) {
844 if (s5p_mfc_power_off() < 0)
845 mfc_err("power off failed\n");
Kamil Debski1b73ba02012-11-22 10:00:28 -0300846 del_timer_sync(&dev->watchdog_timer);
Kamil Debskiaf935742011-06-21 10:51:26 -0300847 }
848err_ctrls_setup:
849 s5p_mfc_dec_ctrls_delete(ctx);
850err_bad_node:
Kamil Debski1b73ba02012-11-22 10:00:28 -0300851 dev->ctx[ctx->num] = NULL;
Kamil Debskiaf935742011-06-21 10:51:26 -0300852err_no_ctx:
853 v4l2_fh_del(&ctx->fh);
854 v4l2_fh_exit(&ctx->fh);
855 kfree(ctx);
856err_alloc:
857 dev->num_inst--;
Hans Verkuilbc738302012-06-24 07:13:33 -0300858 mutex_unlock(&dev->mfc_mutex);
Kamil Debskiaf935742011-06-21 10:51:26 -0300859 mfc_debug_leave();
860 return ret;
861}
862
863/* Release MFC context */
864static int s5p_mfc_release(struct file *file)
865{
866 struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data);
867 struct s5p_mfc_dev *dev = ctx->dev;
Kamil Debskiaf935742011-06-21 10:51:26 -0300868
869 mfc_debug_enter();
Hans Verkuilbc738302012-06-24 07:13:33 -0300870 mutex_lock(&dev->mfc_mutex);
Kamil Debskiaf935742011-06-21 10:51:26 -0300871 s5p_mfc_clock_on();
872 vb2_queue_release(&ctx->vq_src);
873 vb2_queue_release(&ctx->vq_dst);
874 /* Mark context as idle */
Andrzej Hajda7fb89ec2012-08-14 06:13:40 -0300875 clear_work_bit_irqsave(ctx);
Kamil Debskiaf935742011-06-21 10:51:26 -0300876 /* If instance was initialised then
Jonathan McCrohan39c1cb22013-10-20 21:34:01 -0300877 * return instance and free resources */
Kamil Debskiaf935742011-06-21 10:51:26 -0300878 if (ctx->inst_no != MFC_NO_INSTANCE_SET) {
879 mfc_debug(2, "Has to free instance\n");
Pawel Osciak818cd912014-05-19 09:32:59 -0300880 s5p_mfc_close_mfc_inst(dev, ctx);
Kamil Debskiaf935742011-06-21 10:51:26 -0300881 ctx->inst_no = MFC_NO_INSTANCE_SET;
882 }
883 /* hardware locking scheme */
884 if (dev->curr_ctx == ctx->num)
885 clear_bit(0, &dev->hw_lock);
886 dev->num_inst--;
887 if (dev->num_inst == 0) {
Kamil Debski2e731e42013-01-03 11:02:07 -0300888 mfc_debug(2, "Last instance\n");
Arun Kumar K43a1ea12012-10-03 22:19:08 -0300889 s5p_mfc_deinit_hw(dev);
Kamil Debskiaf935742011-06-21 10:51:26 -0300890 del_timer_sync(&dev->watchdog_timer);
891 if (s5p_mfc_power_off() < 0)
892 mfc_err("Power off failed\n");
893 }
894 mfc_debug(2, "Shutting down clock\n");
895 s5p_mfc_clock_off();
Sachin Kamat12597622012-05-10 03:32:00 -0300896 dev->ctx[ctx->num] = NULL;
Kamil Debskiaf935742011-06-21 10:51:26 -0300897 s5p_mfc_dec_ctrls_delete(ctx);
898 v4l2_fh_del(&ctx->fh);
899 v4l2_fh_exit(&ctx->fh);
900 kfree(ctx);
901 mfc_debug_leave();
Hans Verkuilbc738302012-06-24 07:13:33 -0300902 mutex_unlock(&dev->mfc_mutex);
Kamil Debskiaf935742011-06-21 10:51:26 -0300903 return 0;
904}
905
906/* Poll */
907static unsigned int s5p_mfc_poll(struct file *file,
908 struct poll_table_struct *wait)
909{
910 struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data);
911 struct s5p_mfc_dev *dev = ctx->dev;
912 struct vb2_queue *src_q, *dst_q;
913 struct vb2_buffer *src_vb = NULL, *dst_vb = NULL;
914 unsigned int rc = 0;
915 unsigned long flags;
916
Hans Verkuilbc738302012-06-24 07:13:33 -0300917 mutex_lock(&dev->mfc_mutex);
Kamil Debskiaf935742011-06-21 10:51:26 -0300918 src_q = &ctx->vq_src;
919 dst_q = &ctx->vq_dst;
920 /*
921 * There has to be at least one buffer queued on each queued_list, which
922 * means either in driver already or waiting for driver to claim it
923 * and start processing.
924 */
925 if ((!src_q->streaming || list_empty(&src_q->queued_list))
926 && (!dst_q->streaming || list_empty(&dst_q->queued_list))) {
927 rc = POLLERR;
928 goto end;
929 }
930 mutex_unlock(&dev->mfc_mutex);
Andrzej Hajdaf9f715a2012-08-21 08:05:32 -0300931 poll_wait(file, &ctx->fh.wait, wait);
Kamil Debskiaf935742011-06-21 10:51:26 -0300932 poll_wait(file, &src_q->done_wq, wait);
933 poll_wait(file, &dst_q->done_wq, wait);
934 mutex_lock(&dev->mfc_mutex);
Andrzej Hajdaf9f715a2012-08-21 08:05:32 -0300935 if (v4l2_event_pending(&ctx->fh))
936 rc |= POLLPRI;
Kamil Debskiaf935742011-06-21 10:51:26 -0300937 spin_lock_irqsave(&src_q->done_lock, flags);
938 if (!list_empty(&src_q->done_list))
939 src_vb = list_first_entry(&src_q->done_list, struct vb2_buffer,
940 done_entry);
941 if (src_vb && (src_vb->state == VB2_BUF_STATE_DONE
942 || src_vb->state == VB2_BUF_STATE_ERROR))
943 rc |= POLLOUT | POLLWRNORM;
944 spin_unlock_irqrestore(&src_q->done_lock, flags);
945 spin_lock_irqsave(&dst_q->done_lock, flags);
946 if (!list_empty(&dst_q->done_list))
947 dst_vb = list_first_entry(&dst_q->done_list, struct vb2_buffer,
948 done_entry);
949 if (dst_vb && (dst_vb->state == VB2_BUF_STATE_DONE
950 || dst_vb->state == VB2_BUF_STATE_ERROR))
951 rc |= POLLIN | POLLRDNORM;
952 spin_unlock_irqrestore(&dst_q->done_lock, flags);
953end:
Hans Verkuilbc738302012-06-24 07:13:33 -0300954 mutex_unlock(&dev->mfc_mutex);
Kamil Debskiaf935742011-06-21 10:51:26 -0300955 return rc;
956}
957
958/* Mmap */
959static int s5p_mfc_mmap(struct file *file, struct vm_area_struct *vma)
960{
961 struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data);
Hans Verkuilbc738302012-06-24 07:13:33 -0300962 struct s5p_mfc_dev *dev = ctx->dev;
Kamil Debskiaf935742011-06-21 10:51:26 -0300963 unsigned long offset = vma->vm_pgoff << PAGE_SHIFT;
964 int ret;
Hans Verkuilbc738302012-06-24 07:13:33 -0300965
966 if (mutex_lock_interruptible(&dev->mfc_mutex))
967 return -ERESTARTSYS;
Kamil Debskiaf935742011-06-21 10:51:26 -0300968 if (offset < DST_QUEUE_OFF_BASE) {
969 mfc_debug(2, "mmaping source\n");
970 ret = vb2_mmap(&ctx->vq_src, vma);
971 } else { /* capture */
972 mfc_debug(2, "mmaping destination\n");
973 vma->vm_pgoff -= (DST_QUEUE_OFF_BASE >> PAGE_SHIFT);
974 ret = vb2_mmap(&ctx->vq_dst, vma);
975 }
Hans Verkuilbc738302012-06-24 07:13:33 -0300976 mutex_unlock(&dev->mfc_mutex);
Kamil Debskiaf935742011-06-21 10:51:26 -0300977 return ret;
978}
979
980/* v4l2 ops */
981static const struct v4l2_file_operations s5p_mfc_fops = {
982 .owner = THIS_MODULE,
983 .open = s5p_mfc_open,
984 .release = s5p_mfc_release,
985 .poll = s5p_mfc_poll,
986 .unlocked_ioctl = video_ioctl2,
987 .mmap = s5p_mfc_mmap,
988};
989
990static int match_child(struct device *dev, void *data)
991{
992 if (!dev_name(dev))
993 return 0;
994 return !strcmp(dev_name(dev), (char *)data);
995}
996
Arun Kumar Kb27a23b2012-10-25 05:24:14 -0300997static void *mfc_get_drv_data(struct platform_device *pdev);
998
Arun Kumar K6e83e6e2013-01-18 15:42:34 -0300999static int s5p_mfc_alloc_memdevs(struct s5p_mfc_dev *dev)
1000{
Sylwester Nawrocki65fccab2013-04-10 07:17:52 -03001001 unsigned int mem_info[2] = { };
Arun Kumar K6e83e6e2013-01-18 15:42:34 -03001002
1003 dev->mem_dev_l = devm_kzalloc(&dev->plat_dev->dev,
1004 sizeof(struct device), GFP_KERNEL);
1005 if (!dev->mem_dev_l) {
1006 mfc_err("Not enough memory\n");
1007 return -ENOMEM;
1008 }
1009 device_initialize(dev->mem_dev_l);
1010 of_property_read_u32_array(dev->plat_dev->dev.of_node,
1011 "samsung,mfc-l", mem_info, 2);
1012 if (dma_declare_coherent_memory(dev->mem_dev_l, mem_info[0],
1013 mem_info[0], mem_info[1],
1014 DMA_MEMORY_MAP | DMA_MEMORY_EXCLUSIVE) == 0) {
1015 mfc_err("Failed to declare coherent memory for\n"
1016 "MFC device\n");
1017 return -ENOMEM;
1018 }
1019
1020 dev->mem_dev_r = devm_kzalloc(&dev->plat_dev->dev,
1021 sizeof(struct device), GFP_KERNEL);
1022 if (!dev->mem_dev_r) {
1023 mfc_err("Not enough memory\n");
1024 return -ENOMEM;
1025 }
1026 device_initialize(dev->mem_dev_r);
1027 of_property_read_u32_array(dev->plat_dev->dev.of_node,
1028 "samsung,mfc-r", mem_info, 2);
1029 if (dma_declare_coherent_memory(dev->mem_dev_r, mem_info[0],
1030 mem_info[0], mem_info[1],
1031 DMA_MEMORY_MAP | DMA_MEMORY_EXCLUSIVE) == 0) {
1032 pr_err("Failed to declare coherent memory for\n"
1033 "MFC device\n");
1034 return -ENOMEM;
1035 }
1036 return 0;
1037}
1038
Kamil Debskiaf935742011-06-21 10:51:26 -03001039/* MFC probe function */
Kamil Debski1e393e92011-08-08 13:12:51 -03001040static int s5p_mfc_probe(struct platform_device *pdev)
Kamil Debskiaf935742011-06-21 10:51:26 -03001041{
1042 struct s5p_mfc_dev *dev;
1043 struct video_device *vfd;
1044 struct resource *res;
1045 int ret;
1046
1047 pr_debug("%s++\n", __func__);
Sachin Kamatbae061b2012-08-17 03:22:55 -03001048 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
Kamil Debskiaf935742011-06-21 10:51:26 -03001049 if (!dev) {
1050 dev_err(&pdev->dev, "Not enough memory for MFC device\n");
1051 return -ENOMEM;
1052 }
1053
1054 spin_lock_init(&dev->irqlock);
1055 spin_lock_init(&dev->condlock);
1056 dev->plat_dev = pdev;
1057 if (!dev->plat_dev) {
1058 dev_err(&pdev->dev, "No platform data specified\n");
Sachin Kamatd310f472012-05-14 08:22:27 -03001059 return -ENODEV;
Kamil Debskiaf935742011-06-21 10:51:26 -03001060 }
1061
Arun Kumar Kb27a23b2012-10-25 05:24:14 -03001062 dev->variant = mfc_get_drv_data(pdev);
Arun Kumar K8f532a72012-10-03 22:19:09 -03001063
Kamil Debskiaf935742011-06-21 10:51:26 -03001064 ret = s5p_mfc_init_pm(dev);
1065 if (ret < 0) {
1066 dev_err(&pdev->dev, "failed to get mfc clock source\n");
Sachin Kamatd310f472012-05-14 08:22:27 -03001067 return ret;
Kamil Debskiaf935742011-06-21 10:51:26 -03001068 }
1069
1070 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Kamil Debskiaf935742011-06-21 10:51:26 -03001071
Thierry Redingf23999e2013-01-21 06:09:07 -03001072 dev->regs_base = devm_ioremap_resource(&pdev->dev, res);
1073 if (IS_ERR(dev->regs_base))
1074 return PTR_ERR(dev->regs_base);
Kamil Debskiaf935742011-06-21 10:51:26 -03001075
1076 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1077 if (res == NULL) {
1078 dev_err(&pdev->dev, "failed to get irq resource\n");
1079 ret = -ENOENT;
Sachin Kamatd310f472012-05-14 08:22:27 -03001080 goto err_res;
Kamil Debskiaf935742011-06-21 10:51:26 -03001081 }
1082 dev->irq = res->start;
Sachin Kamatd310f472012-05-14 08:22:27 -03001083 ret = devm_request_irq(&pdev->dev, dev->irq, s5p_mfc_irq,
Michael Opdenacker1957f0d2013-10-13 02:58:39 -03001084 0, pdev->name, dev);
Kamil Debskiaf935742011-06-21 10:51:26 -03001085 if (ret) {
1086 dev_err(&pdev->dev, "Failed to install irq (%d)\n", ret);
Sachin Kamatd310f472012-05-14 08:22:27 -03001087 goto err_res;
Kamil Debskiaf935742011-06-21 10:51:26 -03001088 }
1089
Arun Kumar Kb27a23b2012-10-25 05:24:14 -03001090 if (pdev->dev.of_node) {
Wei Yongjund68b44e2013-04-17 23:18:19 -03001091 ret = s5p_mfc_alloc_memdevs(dev);
1092 if (ret < 0)
Arun Kumar Kb27a23b2012-10-25 05:24:14 -03001093 goto err_res;
Arun Kumar Kb27a23b2012-10-25 05:24:14 -03001094 } else {
1095 dev->mem_dev_l = device_find_child(&dev->plat_dev->dev,
1096 "s5p-mfc-l", match_child);
1097 if (!dev->mem_dev_l) {
1098 mfc_err("Mem child (L) device get failed\n");
1099 ret = -ENODEV;
1100 goto err_res;
1101 }
1102 dev->mem_dev_r = device_find_child(&dev->plat_dev->dev,
1103 "s5p-mfc-r", match_child);
1104 if (!dev->mem_dev_r) {
1105 mfc_err("Mem child (R) device get failed\n");
1106 ret = -ENODEV;
1107 goto err_res;
1108 }
Kamil Debskiaf935742011-06-21 10:51:26 -03001109 }
1110
1111 dev->alloc_ctx[0] = vb2_dma_contig_init_ctx(dev->mem_dev_l);
Kamil Debskief89fff2013-01-03 07:06:03 -03001112 if (IS_ERR(dev->alloc_ctx[0])) {
Kamil Debskiaf935742011-06-21 10:51:26 -03001113 ret = PTR_ERR(dev->alloc_ctx[0]);
Sachin Kamatd310f472012-05-14 08:22:27 -03001114 goto err_res;
Kamil Debskiaf935742011-06-21 10:51:26 -03001115 }
1116 dev->alloc_ctx[1] = vb2_dma_contig_init_ctx(dev->mem_dev_r);
Kamil Debskief89fff2013-01-03 07:06:03 -03001117 if (IS_ERR(dev->alloc_ctx[1])) {
Kamil Debskiaf935742011-06-21 10:51:26 -03001118 ret = PTR_ERR(dev->alloc_ctx[1]);
1119 goto err_mem_init_ctx_1;
1120 }
1121
1122 mutex_init(&dev->mfc_mutex);
1123
Kamil Debski2e731e42013-01-03 11:02:07 -03001124 ret = s5p_mfc_alloc_firmware(dev);
1125 if (ret)
1126 goto err_alloc_fw;
1127
Kamil Debskiaf935742011-06-21 10:51:26 -03001128 ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
1129 if (ret)
1130 goto err_v4l2_dev_reg;
1131 init_waitqueue_head(&dev->queue);
1132
1133 /* decoder */
1134 vfd = video_device_alloc();
1135 if (!vfd) {
1136 v4l2_err(&dev->v4l2_dev, "Failed to allocate video device\n");
1137 ret = -ENOMEM;
1138 goto err_dec_alloc;
1139 }
Joonyoung Shimd0ce8982014-02-20 23:22:12 -03001140 vfd->fops = &s5p_mfc_fops;
Kamil Debskiaf935742011-06-21 10:51:26 -03001141 vfd->ioctl_ops = get_dec_v4l2_ioctl_ops();
Joonyoung Shimd0ce8982014-02-20 23:22:12 -03001142 vfd->release = video_device_release;
Kamil Debskiaf935742011-06-21 10:51:26 -03001143 vfd->lock = &dev->mfc_mutex;
1144 vfd->v4l2_dev = &dev->v4l2_dev;
Hans Verkuil954f3402012-09-05 06:05:50 -03001145 vfd->vfl_dir = VFL_DIR_M2M;
Kamil Debskiaf935742011-06-21 10:51:26 -03001146 snprintf(vfd->name, sizeof(vfd->name), "%s", S5P_MFC_DEC_NAME);
1147 dev->vfd_dec = vfd;
1148 ret = video_register_device(vfd, VFL_TYPE_GRABBER, 0);
1149 if (ret) {
1150 v4l2_err(&dev->v4l2_dev, "Failed to register video device\n");
1151 video_device_release(vfd);
1152 goto err_dec_reg;
1153 }
1154 v4l2_info(&dev->v4l2_dev,
1155 "decoder registered as /dev/video%d\n", vfd->num);
1156 video_set_drvdata(vfd, dev);
1157
1158 /* encoder */
1159 vfd = video_device_alloc();
1160 if (!vfd) {
1161 v4l2_err(&dev->v4l2_dev, "Failed to allocate video device\n");
1162 ret = -ENOMEM;
1163 goto err_enc_alloc;
1164 }
Joonyoung Shimd0ce8982014-02-20 23:22:12 -03001165 vfd->fops = &s5p_mfc_fops;
Kamil Debskiaf935742011-06-21 10:51:26 -03001166 vfd->ioctl_ops = get_enc_v4l2_ioctl_ops();
Joonyoung Shimd0ce8982014-02-20 23:22:12 -03001167 vfd->release = video_device_release;
Kamil Debskiaf935742011-06-21 10:51:26 -03001168 vfd->lock = &dev->mfc_mutex;
1169 vfd->v4l2_dev = &dev->v4l2_dev;
Arun Kumar Kcdcf45e2012-10-04 16:14:56 -03001170 vfd->vfl_dir = VFL_DIR_M2M;
Kamil Debskiaf935742011-06-21 10:51:26 -03001171 snprintf(vfd->name, sizeof(vfd->name), "%s", S5P_MFC_ENC_NAME);
1172 dev->vfd_enc = vfd;
1173 ret = video_register_device(vfd, VFL_TYPE_GRABBER, 0);
1174 if (ret) {
1175 v4l2_err(&dev->v4l2_dev, "Failed to register video device\n");
1176 video_device_release(vfd);
1177 goto err_enc_reg;
1178 }
1179 v4l2_info(&dev->v4l2_dev,
1180 "encoder registered as /dev/video%d\n", vfd->num);
1181 video_set_drvdata(vfd, dev);
1182 platform_set_drvdata(pdev, dev);
1183
1184 dev->hw_lock = 0;
1185 dev->watchdog_workqueue = create_singlethread_workqueue(S5P_MFC_NAME);
1186 INIT_WORK(&dev->watchdog_work, s5p_mfc_watchdog_worker);
1187 atomic_set(&dev->watchdog_cnt, 0);
1188 init_timer(&dev->watchdog_timer);
1189 dev->watchdog_timer.data = (unsigned long)dev;
1190 dev->watchdog_timer.function = s5p_mfc_watchdog;
1191
Arun Kumar K43a1ea12012-10-03 22:19:08 -03001192 /* Initialize HW ops and commands based on MFC version */
1193 s5p_mfc_init_hw_ops(dev);
1194 s5p_mfc_init_hw_cmds(dev);
1195
Kamil Debskiaf935742011-06-21 10:51:26 -03001196 pr_debug("%s--\n", __func__);
1197 return 0;
1198
1199/* Deinit MFC if probe had failed */
1200err_enc_reg:
1201 video_device_release(dev->vfd_enc);
1202err_enc_alloc:
1203 video_unregister_device(dev->vfd_dec);
1204err_dec_reg:
1205 video_device_release(dev->vfd_dec);
1206err_dec_alloc:
1207 v4l2_device_unregister(&dev->v4l2_dev);
1208err_v4l2_dev_reg:
Kamil Debski2e731e42013-01-03 11:02:07 -03001209 s5p_mfc_release_firmware(dev);
1210err_alloc_fw:
Kamil Debskiaf935742011-06-21 10:51:26 -03001211 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx[1]);
1212err_mem_init_ctx_1:
1213 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx[0]);
Kamil Debskiaf935742011-06-21 10:51:26 -03001214err_res:
1215 s5p_mfc_final_pm(dev);
Sachin Kamatd310f472012-05-14 08:22:27 -03001216
Kamil Debskiaf935742011-06-21 10:51:26 -03001217 pr_debug("%s-- with error\n", __func__);
1218 return ret;
1219
1220}
1221
1222/* Remove the driver */
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001223static int s5p_mfc_remove(struct platform_device *pdev)
Kamil Debskiaf935742011-06-21 10:51:26 -03001224{
1225 struct s5p_mfc_dev *dev = platform_get_drvdata(pdev);
1226
1227 v4l2_info(&dev->v4l2_dev, "Removing %s\n", pdev->name);
1228
1229 del_timer_sync(&dev->watchdog_timer);
1230 flush_workqueue(dev->watchdog_workqueue);
1231 destroy_workqueue(dev->watchdog_workqueue);
1232
1233 video_unregister_device(dev->vfd_enc);
1234 video_unregister_device(dev->vfd_dec);
1235 v4l2_device_unregister(&dev->v4l2_dev);
Kamil Debski2e731e42013-01-03 11:02:07 -03001236 s5p_mfc_release_firmware(dev);
Kamil Debskiaf935742011-06-21 10:51:26 -03001237 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx[0]);
1238 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx[1]);
Arun Kumar K6e83e6e2013-01-18 15:42:34 -03001239 if (pdev->dev.of_node) {
1240 put_device(dev->mem_dev_l);
1241 put_device(dev->mem_dev_r);
1242 }
Kamil Debskiaf935742011-06-21 10:51:26 -03001243
Kamil Debskiaf935742011-06-21 10:51:26 -03001244 s5p_mfc_final_pm(dev);
Kamil Debskiaf935742011-06-21 10:51:26 -03001245 return 0;
1246}
1247
1248#ifdef CONFIG_PM_SLEEP
1249
1250static int s5p_mfc_suspend(struct device *dev)
1251{
1252 struct platform_device *pdev = to_platform_device(dev);
1253 struct s5p_mfc_dev *m_dev = platform_get_drvdata(pdev);
1254 int ret;
1255
1256 if (m_dev->num_inst == 0)
1257 return 0;
Sachin Kamat81c9bcf2012-09-28 04:01:35 -03001258
Kamil Debskiaf935742011-06-21 10:51:26 -03001259 if (test_and_set_bit(0, &m_dev->enter_suspend) != 0) {
1260 mfc_err("Error: going to suspend for a second time\n");
1261 return -EIO;
1262 }
1263
1264 /* Check if we're processing then wait if it necessary. */
1265 while (test_and_set_bit(0, &m_dev->hw_lock) != 0) {
1266 /* Try and lock the HW */
1267 /* Wait on the interrupt waitqueue */
1268 ret = wait_event_interruptible_timeout(m_dev->queue,
Prathyush K76a4ddb2013-10-04 01:47:19 -03001269 m_dev->int_cond, msecs_to_jiffies(MFC_INT_TIMEOUT));
Kamil Debskiaf935742011-06-21 10:51:26 -03001270 if (ret == 0) {
1271 mfc_err("Waiting for hardware to finish timed out\n");
1272 return -EIO;
1273 }
1274 }
Sachin Kamat81c9bcf2012-09-28 04:01:35 -03001275
1276 return s5p_mfc_sleep(m_dev);
Kamil Debskiaf935742011-06-21 10:51:26 -03001277}
1278
1279static int s5p_mfc_resume(struct device *dev)
1280{
1281 struct platform_device *pdev = to_platform_device(dev);
1282 struct s5p_mfc_dev *m_dev = platform_get_drvdata(pdev);
1283
1284 if (m_dev->num_inst == 0)
1285 return 0;
1286 return s5p_mfc_wakeup(m_dev);
1287}
1288#endif
1289
1290#ifdef CONFIG_PM_RUNTIME
1291static int s5p_mfc_runtime_suspend(struct device *dev)
1292{
1293 struct platform_device *pdev = to_platform_device(dev);
1294 struct s5p_mfc_dev *m_dev = platform_get_drvdata(pdev);
1295
1296 atomic_set(&m_dev->pm.power, 0);
1297 return 0;
1298}
1299
1300static int s5p_mfc_runtime_resume(struct device *dev)
1301{
1302 struct platform_device *pdev = to_platform_device(dev);
1303 struct s5p_mfc_dev *m_dev = platform_get_drvdata(pdev);
1304 int pre_power;
1305
1306 if (!m_dev->alloc_ctx)
1307 return 0;
1308 pre_power = atomic_read(&m_dev->pm.power);
1309 atomic_set(&m_dev->pm.power, 1);
1310 return 0;
1311}
1312#endif
1313
1314/* Power management */
1315static const struct dev_pm_ops s5p_mfc_pm_ops = {
1316 SET_SYSTEM_SLEEP_PM_OPS(s5p_mfc_suspend, s5p_mfc_resume)
1317 SET_RUNTIME_PM_OPS(s5p_mfc_runtime_suspend, s5p_mfc_runtime_resume,
1318 NULL)
1319};
1320
Arun Kumar K8f532a72012-10-03 22:19:09 -03001321struct s5p_mfc_buf_size_v5 mfc_buf_size_v5 = {
1322 .h264_ctx = MFC_H264_CTX_BUF_SIZE,
1323 .non_h264_ctx = MFC_CTX_BUF_SIZE,
1324 .dsc = DESC_BUF_SIZE,
1325 .shm = SHARED_BUF_SIZE,
1326};
1327
1328struct s5p_mfc_buf_size buf_size_v5 = {
1329 .fw = MAX_FW_SIZE,
1330 .cpb = MAX_CPB_SIZE,
1331 .priv = &mfc_buf_size_v5,
1332};
1333
1334struct s5p_mfc_buf_align mfc_buf_align_v5 = {
1335 .base = MFC_BASE_ALIGN_ORDER,
1336};
1337
1338static struct s5p_mfc_variant mfc_drvdata_v5 = {
1339 .version = MFC_VERSION,
1340 .port_num = MFC_NUM_PORTS,
1341 .buf_size = &buf_size_v5,
1342 .buf_align = &mfc_buf_align_v5,
Jeongtae Parkf96f3cf2012-10-03 22:19:11 -03001343 .fw_name = "s5p-mfc.fw",
1344};
1345
1346struct s5p_mfc_buf_size_v6 mfc_buf_size_v6 = {
1347 .dev_ctx = MFC_CTX_BUF_SIZE_V6,
1348 .h264_dec_ctx = MFC_H264_DEC_CTX_BUF_SIZE_V6,
1349 .other_dec_ctx = MFC_OTHER_DEC_CTX_BUF_SIZE_V6,
1350 .h264_enc_ctx = MFC_H264_ENC_CTX_BUF_SIZE_V6,
1351 .other_enc_ctx = MFC_OTHER_ENC_CTX_BUF_SIZE_V6,
1352};
1353
1354struct s5p_mfc_buf_size buf_size_v6 = {
1355 .fw = MAX_FW_SIZE_V6,
1356 .cpb = MAX_CPB_SIZE_V6,
1357 .priv = &mfc_buf_size_v6,
1358};
1359
1360struct s5p_mfc_buf_align mfc_buf_align_v6 = {
1361 .base = 0,
1362};
1363
1364static struct s5p_mfc_variant mfc_drvdata_v6 = {
1365 .version = MFC_VERSION_V6,
1366 .port_num = MFC_NUM_PORTS_V6,
1367 .buf_size = &buf_size_v6,
1368 .buf_align = &mfc_buf_align_v6,
Jeongtae Parkf96f3cf2012-10-03 22:19:11 -03001369 .fw_name = "s5p-mfc-v6.fw",
Arun Kumar K8f532a72012-10-03 22:19:09 -03001370};
1371
Arun Kumar K5441e9d2013-07-09 01:24:38 -03001372struct s5p_mfc_buf_size_v6 mfc_buf_size_v7 = {
1373 .dev_ctx = MFC_CTX_BUF_SIZE_V7,
1374 .h264_dec_ctx = MFC_H264_DEC_CTX_BUF_SIZE_V7,
1375 .other_dec_ctx = MFC_OTHER_DEC_CTX_BUF_SIZE_V7,
1376 .h264_enc_ctx = MFC_H264_ENC_CTX_BUF_SIZE_V7,
1377 .other_enc_ctx = MFC_OTHER_ENC_CTX_BUF_SIZE_V7,
1378};
1379
1380struct s5p_mfc_buf_size buf_size_v7 = {
1381 .fw = MAX_FW_SIZE_V7,
1382 .cpb = MAX_CPB_SIZE_V7,
1383 .priv = &mfc_buf_size_v7,
1384};
1385
1386struct s5p_mfc_buf_align mfc_buf_align_v7 = {
1387 .base = 0,
1388};
1389
1390static struct s5p_mfc_variant mfc_drvdata_v7 = {
1391 .version = MFC_VERSION_V7,
1392 .port_num = MFC_NUM_PORTS_V7,
1393 .buf_size = &buf_size_v7,
1394 .buf_align = &mfc_buf_align_v7,
1395 .fw_name = "s5p-mfc-v7.fw",
1396};
1397
Arun Kumar K8f532a72012-10-03 22:19:09 -03001398static struct platform_device_id mfc_driver_ids[] = {
1399 {
1400 .name = "s5p-mfc",
1401 .driver_data = (unsigned long)&mfc_drvdata_v5,
Jeongtae Parkf96f3cf2012-10-03 22:19:11 -03001402 }, {
1403 .name = "s5p-mfc-v5",
1404 .driver_data = (unsigned long)&mfc_drvdata_v5,
1405 }, {
1406 .name = "s5p-mfc-v6",
1407 .driver_data = (unsigned long)&mfc_drvdata_v6,
Arun Kumar K5441e9d2013-07-09 01:24:38 -03001408 }, {
1409 .name = "s5p-mfc-v7",
1410 .driver_data = (unsigned long)&mfc_drvdata_v7,
Arun Kumar K8f532a72012-10-03 22:19:09 -03001411 },
1412 {},
1413};
1414MODULE_DEVICE_TABLE(platform, mfc_driver_ids);
1415
Arun Kumar Kb27a23b2012-10-25 05:24:14 -03001416static const struct of_device_id exynos_mfc_match[] = {
1417 {
1418 .compatible = "samsung,mfc-v5",
1419 .data = &mfc_drvdata_v5,
1420 }, {
1421 .compatible = "samsung,mfc-v6",
1422 .data = &mfc_drvdata_v6,
Arun Kumar K5441e9d2013-07-09 01:24:38 -03001423 }, {
1424 .compatible = "samsung,mfc-v7",
1425 .data = &mfc_drvdata_v7,
Arun Kumar Kb27a23b2012-10-25 05:24:14 -03001426 },
1427 {},
1428};
1429MODULE_DEVICE_TABLE(of, exynos_mfc_match);
1430
1431static void *mfc_get_drv_data(struct platform_device *pdev)
1432{
1433 struct s5p_mfc_variant *driver_data = NULL;
1434
1435 if (pdev->dev.of_node) {
1436 const struct of_device_id *match;
Sachin Kamata40a1382013-05-23 00:51:19 -03001437 match = of_match_node(exynos_mfc_match,
Arun Kumar Kb27a23b2012-10-25 05:24:14 -03001438 pdev->dev.of_node);
1439 if (match)
1440 driver_data = (struct s5p_mfc_variant *)match->data;
1441 } else {
1442 driver_data = (struct s5p_mfc_variant *)
1443 platform_get_device_id(pdev)->driver_data;
1444 }
1445 return driver_data;
1446}
1447
Kamil Debski1e393e92011-08-08 13:12:51 -03001448static struct platform_driver s5p_mfc_driver = {
Arun Kumar K8f532a72012-10-03 22:19:09 -03001449 .probe = s5p_mfc_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001450 .remove = s5p_mfc_remove,
Arun Kumar K8f532a72012-10-03 22:19:09 -03001451 .id_table = mfc_driver_ids,
Kamil Debskiaf935742011-06-21 10:51:26 -03001452 .driver = {
1453 .name = S5P_MFC_NAME,
1454 .owner = THIS_MODULE,
Arun Kumar Kb27a23b2012-10-25 05:24:14 -03001455 .pm = &s5p_mfc_pm_ops,
1456 .of_match_table = exynos_mfc_match,
Kamil Debskiaf935742011-06-21 10:51:26 -03001457 },
1458};
1459
Axel Lin1d6629b2012-01-10 03:21:49 -03001460module_platform_driver(s5p_mfc_driver);
Kamil Debskiaf935742011-06-21 10:51:26 -03001461
1462MODULE_LICENSE("GPL");
1463MODULE_AUTHOR("Kamil Debski <k.debski@samsung.com>");
1464MODULE_DESCRIPTION("Samsung S5P Multi Format Codec V4L2 driver");
1465