s5p_mfc.c 42.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Samsung S5P Multi Format Codec v 5.1
 *
 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
 * Kamil Debski, <k.debski@samsung.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

#include <linux/clk.h>
#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/videodev2.h>
22
#include <media/v4l2-event.h>
23
#include <linux/workqueue.h>
24
#include <linux/of.h>
25
#include <media/videobuf2-v4l2.h>
26
#include "s5p_mfc_common.h"
27 28 29 30 31
#include "s5p_mfc_ctrl.h"
#include "s5p_mfc_debug.h"
#include "s5p_mfc_dec.h"
#include "s5p_mfc_enc.h"
#include "s5p_mfc_intr.h"
32 33
#include "s5p_mfc_opr.h"
#include "s5p_mfc_cmd.h"
34 35 36 37 38 39
#include "s5p_mfc_pm.h"

#define S5P_MFC_NAME		"s5p-mfc"
#define S5P_MFC_DEC_NAME	"s5p-mfc-dec"
#define S5P_MFC_ENC_NAME	"s5p-mfc-enc"

40 41
int mfc_debug_level;
module_param_named(debug, mfc_debug_level, int, S_IRUGO | S_IWUSR);
42 43 44
MODULE_PARM_DESC(debug, "Debug level - higher value produces more verbose messages");

/* Helper functions for interrupt processing */
45

46
/* Remove from hw execution round robin */
47
void clear_work_bit(struct s5p_mfc_ctx *ctx)
48 49 50 51
{
	struct s5p_mfc_dev *dev = ctx->dev;

	spin_lock(&dev->condlock);
52
	__clear_bit(ctx->num, &dev->ctx_work_bits);
53 54 55
	spin_unlock(&dev->condlock);
}

56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
/* Add to hw execution round robin */
void set_work_bit(struct s5p_mfc_ctx *ctx)
{
	struct s5p_mfc_dev *dev = ctx->dev;

	spin_lock(&dev->condlock);
	__set_bit(ctx->num, &dev->ctx_work_bits);
	spin_unlock(&dev->condlock);
}

/* Remove from hw execution round robin */
void clear_work_bit_irqsave(struct s5p_mfc_ctx *ctx)
{
	struct s5p_mfc_dev *dev = ctx->dev;
	unsigned long flags;

	spin_lock_irqsave(&dev->condlock, flags);
	__clear_bit(ctx->num, &dev->ctx_work_bits);
	spin_unlock_irqrestore(&dev->condlock, flags);
}

/* Add to hw execution round robin */
void set_work_bit_irqsave(struct s5p_mfc_ctx *ctx)
{
	struct s5p_mfc_dev *dev = ctx->dev;
	unsigned long flags;

	spin_lock_irqsave(&dev->condlock, flags);
	__set_bit(ctx->num, &dev->ctx_work_bits);
	spin_unlock_irqrestore(&dev->condlock, flags);
}

88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
int s5p_mfc_get_new_ctx(struct s5p_mfc_dev *dev)
{
	unsigned long flags;
	int ctx;

	spin_lock_irqsave(&dev->condlock, flags);
	ctx = dev->curr_ctx;
	do {
		ctx = (ctx + 1) % MFC_NUM_CONTEXTS;
		if (ctx == dev->curr_ctx) {
			if (!test_bit(ctx, &dev->ctx_work_bits))
				ctx = -EAGAIN;
			break;
		}
	} while (!test_bit(ctx, &dev->ctx_work_bits));
	spin_unlock_irqrestore(&dev->condlock, flags);

	return ctx;
}

108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
/* Wake up context wait_queue */
static void wake_up_ctx(struct s5p_mfc_ctx *ctx, unsigned int reason,
			unsigned int err)
{
	ctx->int_cond = 1;
	ctx->int_type = reason;
	ctx->int_err = err;
	wake_up(&ctx->queue);
}

/* Wake up device wait_queue */
static void wake_up_dev(struct s5p_mfc_dev *dev, unsigned int reason,
			unsigned int err)
{
	dev->int_cond = 1;
	dev->int_type = reason;
	dev->int_err = err;
	wake_up(&dev->queue);
}

128 129 130 131 132 133 134 135 136 137 138 139 140 141
void s5p_mfc_cleanup_queue(struct list_head *lh, struct vb2_queue *vq)
{
	struct s5p_mfc_buf *b;
	int i;

	while (!list_empty(lh)) {
		b = list_entry(lh->next, struct s5p_mfc_buf, list);
		for (i = 0; i < b->b->vb2_buf.num_planes; i++)
			vb2_set_plane_payload(&b->b->vb2_buf, i, 0);
		vb2_buffer_done(&b->b->vb2_buf, VB2_BUF_STATE_ERROR);
		list_del(&b->list);
	}
}

142
static void s5p_mfc_watchdog(unsigned long arg)
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
{
	struct s5p_mfc_dev *dev = (struct s5p_mfc_dev *)arg;

	if (test_bit(0, &dev->hw_lock))
		atomic_inc(&dev->watchdog_cnt);
	if (atomic_read(&dev->watchdog_cnt) >= MFC_WATCHDOG_CNT) {
		/* This means that hw is busy and no interrupts were
		 * generated by hw for the Nth time of running this
		 * watchdog timer. This usually means a serious hw
		 * error. Now it is time to kill all instances and
		 * reset the MFC. */
		mfc_err("Time out during waiting for HW\n");
		queue_work(dev->watchdog_workqueue, &dev->watchdog_work);
	}
	dev->watchdog_timer.expires = jiffies +
					msecs_to_jiffies(MFC_WATCHDOG_INTERVAL);
	add_timer(&dev->watchdog_timer);
}

static void s5p_mfc_watchdog_worker(struct work_struct *work)
{
	struct s5p_mfc_dev *dev;
	struct s5p_mfc_ctx *ctx;
	unsigned long flags;
	int mutex_locked;
	int i, ret;

	dev = container_of(work, struct s5p_mfc_dev, watchdog_work);

	mfc_err("Driver timeout error handling\n");
	/* Lock the mutex that protects open and release.
	 * This is necessary as they may load and unload firmware. */
	mutex_locked = mutex_trylock(&dev->mfc_mutex);
	if (!mutex_locked)
		mfc_err("Error: some instance may be closing/opening\n");
	spin_lock_irqsave(&dev->irqlock, flags);

	s5p_mfc_clock_off();

	for (i = 0; i < MFC_NUM_CONTEXTS; i++) {
		ctx = dev->ctx[i];
		if (!ctx)
			continue;
		ctx->state = MFCINST_ERROR;
187 188
		s5p_mfc_cleanup_queue(&ctx->dst_queue, &ctx->vq_dst);
		s5p_mfc_cleanup_queue(&ctx->src_queue, &ctx->vq_src);
189
		clear_work_bit(ctx);
190
		wake_up_ctx(ctx, S5P_MFC_R2H_CMD_ERR_RET, 0);
191 192 193
	}
	clear_bit(0, &dev->hw_lock);
	spin_unlock_irqrestore(&dev->irqlock, flags);
194 195 196 197

	/* De-init MFC */
	s5p_mfc_deinit_hw(dev);

198 199 200
	/* Double check if there is at least one instance running.
	 * If no instance is in memory than no firmware should be present */
	if (dev->num_inst > 0) {
201
		ret = s5p_mfc_load_firmware(dev);
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
		if (ret) {
			mfc_err("Failed to reload FW\n");
			goto unlock;
		}
		s5p_mfc_clock_on();
		ret = s5p_mfc_init_hw(dev);
		if (ret)
			mfc_err("Failed to reinit FW\n");
	}
unlock:
	if (mutex_locked)
		mutex_unlock(&dev->mfc_mutex);
}

static void s5p_mfc_handle_frame_all_extracted(struct s5p_mfc_ctx *ctx)
{
	struct s5p_mfc_buf *dst_buf;
219
	struct s5p_mfc_dev *dev = ctx->dev;
220 221 222 223 224 225 226

	ctx->state = MFCINST_FINISHED;
	ctx->sequence++;
	while (!list_empty(&ctx->dst_queue)) {
		dst_buf = list_entry(ctx->dst_queue.next,
				     struct s5p_mfc_buf, list);
		mfc_debug(2, "Cleaning up buffer: %d\n",
227 228 229
					  dst_buf->b->vb2_buf.index);
		vb2_set_plane_payload(&dst_buf->b->vb2_buf, 0, 0);
		vb2_set_plane_payload(&dst_buf->b->vb2_buf, 1, 0);
230
		list_del(&dst_buf->list);
231
		dst_buf->flags |= MFC_BUF_FLAG_EOS;
232
		ctx->dst_queue_cnt--;
233
		dst_buf->b->sequence = (ctx->sequence++);
234

235 236
		if (s5p_mfc_hw_call(dev->mfc_ops, get_pic_type_top, ctx) ==
			s5p_mfc_hw_call(dev->mfc_ops, get_pic_type_bot, ctx))
237
			dst_buf->b->field = V4L2_FIELD_NONE;
238
		else
239 240
			dst_buf->b->field = V4L2_FIELD_INTERLACED;
		dst_buf->b->flags |= V4L2_BUF_FLAG_LAST;
241

242 243
		ctx->dec_dst_flag &= ~(1 << dst_buf->b->vb2_buf.index);
		vb2_buffer_done(&dst_buf->b->vb2_buf, VB2_BUF_STATE_DONE);
244 245 246 247 248 249 250
	}
}

static void s5p_mfc_handle_frame_copy_time(struct s5p_mfc_ctx *ctx)
{
	struct s5p_mfc_dev *dev = ctx->dev;
	struct s5p_mfc_buf  *dst_buf, *src_buf;
251 252 253
	size_t dec_y_addr;
	unsigned int frame_type;

254
	/* Make sure we actually have a new frame before continuing. */
255
	frame_type = s5p_mfc_hw_call(dev->mfc_ops, get_dec_frame_type, dev);
256 257 258
	if (frame_type == S5P_FIMV_DECODE_FRAME_SKIPPED)
		return;
	dec_y_addr = s5p_mfc_hw_call(dev->mfc_ops, get_dec_y_adr, dev);
259 260

	/* Copy timestamp / timecode from decoded src to dst and set
261
	   appropriate flags. */
262 263
	src_buf = list_entry(ctx->src_queue.next, struct s5p_mfc_buf, list);
	list_for_each_entry(dst_buf, &ctx->dst_queue, list) {
264 265 266 267
		if (vb2_dma_contig_plane_dma_addr(&dst_buf->b->vb2_buf, 0)
				== dec_y_addr) {
			dst_buf->b->timecode =
						src_buf->b->timecode;
268 269
			dst_buf->b->vb2_buf.timestamp =
						src_buf->b->vb2_buf.timestamp;
270
			dst_buf->b->flags &=
271
				~V4L2_BUF_FLAG_TSTAMP_SRC_MASK;
272 273
			dst_buf->b->flags |=
				src_buf->b->flags
274
				& V4L2_BUF_FLAG_TSTAMP_SRC_MASK;
275 276
			switch (frame_type) {
			case S5P_FIMV_DECODE_FRAME_I_FRAME:
277
				dst_buf->b->flags |=
278 279 280
						V4L2_BUF_FLAG_KEYFRAME;
				break;
			case S5P_FIMV_DECODE_FRAME_P_FRAME:
281
				dst_buf->b->flags |=
282 283 284
						V4L2_BUF_FLAG_PFRAME;
				break;
			case S5P_FIMV_DECODE_FRAME_B_FRAME:
285
				dst_buf->b->flags |=
286 287
						V4L2_BUF_FLAG_BFRAME;
				break;
288 289 290 291 292
			default:
				/* Don't know how to handle
				   S5P_FIMV_DECODE_FRAME_OTHER_FRAME. */
				mfc_debug(2, "Unexpected frame type: %d\n",
						frame_type);
293 294 295 296 297 298 299 300 301 302
			}
			break;
		}
	}
}

static void s5p_mfc_handle_frame_new(struct s5p_mfc_ctx *ctx, unsigned int err)
{
	struct s5p_mfc_dev *dev = ctx->dev;
	struct s5p_mfc_buf  *dst_buf;
303 304
	size_t dspl_y_addr;
	unsigned int frame_type;
305

306
	dspl_y_addr = s5p_mfc_hw_call(dev->mfc_ops, get_dspl_y_adr, dev);
307 308 309 310 311 312
	if (IS_MFCV6_PLUS(dev))
		frame_type = s5p_mfc_hw_call(dev->mfc_ops,
			get_disp_frame_type, ctx);
	else
		frame_type = s5p_mfc_hw_call(dev->mfc_ops,
			get_dec_frame_type, dev);
313

314 315 316 317 318 319 320 321 322 323 324 325
	/* If frame is same as previous then skip and do not dequeue */
	if (frame_type == S5P_FIMV_DECODE_FRAME_SKIPPED) {
		if (!ctx->after_packed_pb)
			ctx->sequence++;
		ctx->after_packed_pb = 0;
		return;
	}
	ctx->sequence++;
	/* The MFC returns address of the buffer, now we have to
	 * check which videobuf does it correspond to */
	list_for_each_entry(dst_buf, &ctx->dst_queue, list) {
		/* Check if this is the buffer we're looking for */
326 327
		if (vb2_dma_contig_plane_dma_addr(&dst_buf->b->vb2_buf, 0)
				== dspl_y_addr) {
328 329
			list_del(&dst_buf->list);
			ctx->dst_queue_cnt--;
330
			dst_buf->b->sequence = ctx->sequence;
331 332 333 334
			if (s5p_mfc_hw_call(dev->mfc_ops,
					get_pic_type_top, ctx) ==
				s5p_mfc_hw_call(dev->mfc_ops,
					get_pic_type_bot, ctx))
335
				dst_buf->b->field = V4L2_FIELD_NONE;
336
			else
337
				dst_buf->b->field =
338
							V4L2_FIELD_INTERLACED;
339 340 341 342 343
			vb2_set_plane_payload(&dst_buf->b->vb2_buf, 0,
						ctx->luma_size);
			vb2_set_plane_payload(&dst_buf->b->vb2_buf, 1,
						ctx->chroma_size);
			clear_bit(dst_buf->b->vb2_buf.index,
344 345
							&ctx->dec_dst_flag);

346 347
			vb2_buffer_done(&dst_buf->b->vb2_buf, err ?
				VB2_BUF_STATE_ERROR : VB2_BUF_STATE_DONE);
348 349 350 351 352 353 354 355 356 357 358 359

			break;
		}
	}
}

/* Handle frame decoding interrupt */
static void s5p_mfc_handle_frame(struct s5p_mfc_ctx *ctx,
					unsigned int reason, unsigned int err)
{
	struct s5p_mfc_dev *dev = ctx->dev;
	unsigned int dst_frame_status;
360
	unsigned int dec_frame_status;
361 362 363
	struct s5p_mfc_buf *src_buf;
	unsigned int res_change;

364
	dst_frame_status = s5p_mfc_hw_call(dev->mfc_ops, get_dspl_status, dev)
365
				& S5P_FIMV_DEC_STATUS_DECODING_STATUS_MASK;
366 367
	dec_frame_status = s5p_mfc_hw_call(dev->mfc_ops, get_dec_status, dev)
				& S5P_FIMV_DEC_STATUS_DECODING_STATUS_MASK;
368 369 370
	res_change = (s5p_mfc_hw_call(dev->mfc_ops, get_dspl_status, dev)
				& S5P_FIMV_DEC_STATUS_RESOLUTION_MASK)
				>> S5P_FIMV_DEC_STATUS_RESOLUTION_SHIFT;
371 372 373
	mfc_debug(2, "Frame Status: %x\n", dst_frame_status);
	if (ctx->state == MFCINST_RES_CHANGE_INIT)
		ctx->state = MFCINST_RES_CHANGE_FLUSH;
374 375
	if (res_change == S5P_FIMV_RES_INCREASE ||
		res_change == S5P_FIMV_RES_DECREASE) {
376
		ctx->state = MFCINST_RES_CHANGE_INIT;
377
		s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
378
		wake_up_ctx(ctx, reason, err);
379
		WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
380
		s5p_mfc_clock_off();
381
		s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
382 383 384 385 386 387 388 389
		return;
	}
	if (ctx->dpb_flush_flag)
		ctx->dpb_flush_flag = 0;

	/* All frames remaining in the buffer have been extracted  */
	if (dst_frame_status == S5P_FIMV_DEC_STATUS_DECODING_EMPTY) {
		if (ctx->state == MFCINST_RES_CHANGE_FLUSH) {
390 391 392 393 394 395
			static const struct v4l2_event ev_src_ch = {
				.type = V4L2_EVENT_SOURCE_CHANGE,
				.u.src_change.changes =
					V4L2_EVENT_SRC_CH_RESOLUTION,
			};

396 397
			s5p_mfc_handle_frame_all_extracted(ctx);
			ctx->state = MFCINST_RES_CHANGE_END;
398 399
			v4l2_event_queue_fh(&ctx->fh, &ev_src_ch);

400 401 402 403 404 405
			goto leave_handle_frame;
		} else {
			s5p_mfc_handle_frame_all_extracted(ctx);
		}
	}

406
	if (dec_frame_status == S5P_FIMV_DEC_STATUS_DECODING_DISPLAY)
407 408 409 410 411 412 413 414 415 416 417 418 419 420
		s5p_mfc_handle_frame_copy_time(ctx);

	/* A frame has been decoded and is in the buffer  */
	if (dst_frame_status == S5P_FIMV_DEC_STATUS_DISPLAY_ONLY ||
	    dst_frame_status == S5P_FIMV_DEC_STATUS_DECODING_DISPLAY) {
		s5p_mfc_handle_frame_new(ctx, err);
	} else {
		mfc_debug(2, "No frame decode\n");
	}
	/* Mark source buffer as complete */
	if (dst_frame_status != S5P_FIMV_DEC_STATUS_DISPLAY_ONLY
		&& !list_empty(&ctx->src_queue)) {
		src_buf = list_entry(ctx->src_queue.next, struct s5p_mfc_buf,
								list);
421 422 423
		ctx->consumed_stream += s5p_mfc_hw_call(dev->mfc_ops,
						get_consumed_stream, dev);
		if (ctx->codec_mode != S5P_MFC_CODEC_H264_DEC &&
424
			ctx->codec_mode != S5P_MFC_CODEC_VP8_DEC &&
425
			ctx->consumed_stream + STUFF_BYTE <
426
			src_buf->b->vb2_buf.planes[0].bytesused) {
427 428 429 430 431 432
			/* Run MFC again on the same buffer */
			mfc_debug(2, "Running again the same buffer\n");
			ctx->after_packed_pb = 1;
		} else {
			mfc_debug(2, "MFC needs next buffer\n");
			ctx->consumed_stream = 0;
433 434
			if (src_buf->flags & MFC_BUF_FLAG_EOS)
				ctx->state = MFCINST_FINISHING;
435 436
			list_del(&src_buf->list);
			ctx->src_queue_cnt--;
437
			if (s5p_mfc_hw_call(dev->mfc_ops, err_dec, err) > 0)
438 439
				vb2_buffer_done(&src_buf->b->vb2_buf,
						VB2_BUF_STATE_ERROR);
440
			else
441 442
				vb2_buffer_done(&src_buf->b->vb2_buf,
						VB2_BUF_STATE_DONE);
443 444 445 446
		}
	}
leave_handle_frame:
	if ((ctx->src_queue_cnt == 0 && ctx->state != MFCINST_FINISHING)
447
				    || ctx->dst_queue_cnt < ctx->pb_count)
448
		clear_work_bit(ctx);
449
	s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
450
	wake_up_ctx(ctx, reason, err);
451
	WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
452
	s5p_mfc_clock_off();
453 454 455 456
	/* if suspending, wake up device and do not try_run again*/
	if (test_bit(0, &dev->enter_suspend))
		wake_up_dev(dev, reason, err);
	else
457
		s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
458 459 460
}

/* Error handling for interrupt */
461 462
static void s5p_mfc_handle_error(struct s5p_mfc_dev *dev,
		struct s5p_mfc_ctx *ctx, unsigned int reason, unsigned int err)
463 464 465
{
	mfc_err("Interrupt Error: %08x\n", err);

466 467 468 469 470 471 472 473 474
	if (ctx != NULL) {
		/* Error recovery is dependent on the state of context */
		switch (ctx->state) {
		case MFCINST_RES_CHANGE_INIT:
		case MFCINST_RES_CHANGE_FLUSH:
		case MFCINST_RES_CHANGE_END:
		case MFCINST_FINISHING:
		case MFCINST_FINISHED:
		case MFCINST_RUNNING:
475
			/* It is highly probable that an error occurred
476 477 478 479
			 * while decoding a frame */
			clear_work_bit(ctx);
			ctx->state = MFCINST_ERROR;
			/* Mark all dst buffers as having an error */
480
			s5p_mfc_cleanup_queue(&ctx->dst_queue, &ctx->vq_dst);
481
			/* Mark all src buffers as having an error */
482
			s5p_mfc_cleanup_queue(&ctx->src_queue, &ctx->vq_src);
483 484 485 486 487 488 489 490
			wake_up_ctx(ctx, reason, err);
			break;
		default:
			clear_work_bit(ctx);
			ctx->state = MFCINST_ERROR;
			wake_up_ctx(ctx, reason, err);
			break;
		}
491
	}
492
	WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
493
	s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
494 495
	s5p_mfc_clock_off();
	wake_up_dev(dev, reason, err);
496 497 498 499 500 501 502 503 504
	return;
}

/* Header parsing interrupt handling */
static void s5p_mfc_handle_seq_done(struct s5p_mfc_ctx *ctx,
				 unsigned int reason, unsigned int err)
{
	struct s5p_mfc_dev *dev;

505
	if (ctx == NULL)
506 507 508 509 510 511
		return;
	dev = ctx->dev;
	if (ctx->c_ops->post_seq_start) {
		if (ctx->c_ops->post_seq_start(ctx))
			mfc_err("post_seq_start() failed\n");
	} else {
512 513 514 515
		ctx->img_width = s5p_mfc_hw_call(dev->mfc_ops, get_img_width,
				dev);
		ctx->img_height = s5p_mfc_hw_call(dev->mfc_ops, get_img_height,
				dev);
516

517
		s5p_mfc_hw_call(dev->mfc_ops, dec_calc_dpb_size, ctx);
518

519
		ctx->pb_count = s5p_mfc_hw_call(dev->mfc_ops, get_dpb_count,
520
				dev);
521 522
		ctx->mv_count = s5p_mfc_hw_call(dev->mfc_ops, get_mv_count,
				dev);
523
		if (ctx->img_width == 0 || ctx->img_height == 0)
524 525 526
			ctx->state = MFCINST_ERROR;
		else
			ctx->state = MFCINST_HEAD_PARSED;
527 528 529 530 531 532 533 534 535

		if ((ctx->codec_mode == S5P_MFC_CODEC_H264_DEC ||
			ctx->codec_mode == S5P_MFC_CODEC_H264_MVC_DEC) &&
				!list_empty(&ctx->src_queue)) {
			struct s5p_mfc_buf *src_buf;
			src_buf = list_entry(ctx->src_queue.next,
					struct s5p_mfc_buf, list);
			if (s5p_mfc_hw_call(dev->mfc_ops, get_consumed_stream,
						dev) <
536
					src_buf->b->vb2_buf.planes[0].bytesused)
537 538 539 540 541 542
				ctx->head_processed = 0;
			else
				ctx->head_processed = 1;
		} else {
			ctx->head_processed = 1;
		}
543
	}
544
	s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
545
	clear_work_bit(ctx);
546
	WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
547
	s5p_mfc_clock_off();
548
	s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
549 550 551 552 553 554 555 556 557 558
	wake_up_ctx(ctx, reason, err);
}

/* Header parsing interrupt handling */
static void s5p_mfc_handle_init_buffers(struct s5p_mfc_ctx *ctx,
				 unsigned int reason, unsigned int err)
{
	struct s5p_mfc_buf *src_buf;
	struct s5p_mfc_dev *dev;

559
	if (ctx == NULL)
560 561
		return;
	dev = ctx->dev;
562
	s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
563 564 565
	ctx->int_type = reason;
	ctx->int_err = err;
	ctx->int_cond = 1;
566
	clear_work_bit(ctx);
567 568
	if (err == 0) {
		ctx->state = MFCINST_RUNNING;
569
		if (!ctx->dpb_flush_flag && ctx->head_processed) {
570 571 572 573 574
			if (!list_empty(&ctx->src_queue)) {
				src_buf = list_entry(ctx->src_queue.next,
					     struct s5p_mfc_buf, list);
				list_del(&src_buf->list);
				ctx->src_queue_cnt--;
575
				vb2_buffer_done(&src_buf->b->vb2_buf,
576 577 578 579 580
						VB2_BUF_STATE_DONE);
			}
		} else {
			ctx->dpb_flush_flag = 0;
		}
581
		WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
582 583 584 585

		s5p_mfc_clock_off();

		wake_up(&ctx->queue);
586
		s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
587
	} else {
588
		WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
589 590 591 592 593 594 595

		s5p_mfc_clock_off();

		wake_up(&ctx->queue);
	}
}

596
static void s5p_mfc_handle_stream_complete(struct s5p_mfc_ctx *ctx)
597 598 599 600
{
	struct s5p_mfc_dev *dev = ctx->dev;
	struct s5p_mfc_buf *mb_entry;

601
	mfc_debug(2, "Stream completed\n");
602 603 604 605 606 607 608 609

	ctx->state = MFCINST_FINISHED;

	if (!list_empty(&ctx->dst_queue)) {
		mb_entry = list_entry(ctx->dst_queue.next, struct s5p_mfc_buf,
									list);
		list_del(&mb_entry->list);
		ctx->dst_queue_cnt--;
610 611
		vb2_set_plane_payload(&mb_entry->b->vb2_buf, 0, 0);
		vb2_buffer_done(&mb_entry->b->vb2_buf, VB2_BUF_STATE_DONE);
612 613 614 615
	}

	clear_work_bit(ctx);

616
	WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
617 618 619

	s5p_mfc_clock_off();
	wake_up(&ctx->queue);
620
	s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
621 622
}

623 624 625 626 627 628 629 630 631 632 633
/* Interrupt processing */
static irqreturn_t s5p_mfc_irq(int irq, void *priv)
{
	struct s5p_mfc_dev *dev = priv;
	struct s5p_mfc_ctx *ctx;
	unsigned int reason;
	unsigned int err;

	mfc_debug_enter();
	/* Reset the timeout watchdog */
	atomic_set(&dev->watchdog_cnt, 0);
634
	spin_lock(&dev->irqlock);
635 636
	ctx = dev->ctx[dev->curr_ctx];
	/* Get the reason of interrupt and the error code */
637 638
	reason = s5p_mfc_hw_call(dev->mfc_ops, get_int_reason, dev);
	err = s5p_mfc_hw_call(dev->mfc_ops, get_int_err, dev);
639 640
	mfc_debug(1, "Int reason: %d (err: %08x)\n", reason, err);
	switch (reason) {
641
	case S5P_MFC_R2H_CMD_ERR_RET:
642
		/* An error has occurred */
643
		if (ctx->state == MFCINST_RUNNING &&
644 645
			s5p_mfc_hw_call(dev->mfc_ops, err_dec, err) >=
				dev->warn_start)
646 647
			s5p_mfc_handle_frame(ctx, reason, err);
		else
648
			s5p_mfc_handle_error(dev, ctx, reason, err);
649 650 651
		clear_bit(0, &dev->enter_suspend);
		break;

652 653 654
	case S5P_MFC_R2H_CMD_SLICE_DONE_RET:
	case S5P_MFC_R2H_CMD_FIELD_DONE_RET:
	case S5P_MFC_R2H_CMD_FRAME_DONE_RET:
655 656 657
		if (ctx->c_ops->post_frame_start) {
			if (ctx->c_ops->post_frame_start(ctx))
				mfc_err("post_frame_start() failed\n");
658 659 660

			if (ctx->state == MFCINST_FINISHING &&
						list_empty(&ctx->ref_queue)) {
661
				s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
662 663 664
				s5p_mfc_handle_stream_complete(ctx);
				break;
			}
665
			s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
666
			wake_up_ctx(ctx, reason, err);
667
			WARN_ON(test_and_clear_bit(0, &dev->hw_lock) == 0);
668
			s5p_mfc_clock_off();
669
			s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
670 671 672 673 674
		} else {
			s5p_mfc_handle_frame(ctx, reason, err);
		}
		break;

675
	case S5P_MFC_R2H_CMD_SEQ_DONE_RET:
676 677 678
		s5p_mfc_handle_seq_done(ctx, reason, err);
		break;

679 680
	case S5P_MFC_R2H_CMD_OPEN_INSTANCE_RET:
		ctx->inst_no = s5p_mfc_hw_call(dev->mfc_ops, get_inst_no, dev);
681 682 683 684 685
		ctx->state = MFCINST_GOT_INST;
		clear_work_bit(ctx);
		wake_up(&ctx->queue);
		goto irq_cleanup_hw;

686
	case S5P_MFC_R2H_CMD_CLOSE_INSTANCE_RET:
687
		clear_work_bit(ctx);
688
		ctx->inst_no = MFC_NO_INSTANCE_SET;
689 690 691 692
		ctx->state = MFCINST_FREE;
		wake_up(&ctx->queue);
		goto irq_cleanup_hw;

693 694 695 696
	case S5P_MFC_R2H_CMD_SYS_INIT_RET:
	case S5P_MFC_R2H_CMD_FW_STATUS_RET:
	case S5P_MFC_R2H_CMD_SLEEP_RET:
	case S5P_MFC_R2H_CMD_WAKEUP_RET:
697 698
		if (ctx)
			clear_work_bit(ctx);
699
		s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
700 701 702 703 704
		wake_up_dev(dev, reason, err);
		clear_bit(0, &dev->hw_lock);
		clear_bit(0, &dev->enter_suspend);
		break;

705
	case S5P_MFC_R2H_CMD_INIT_BUFFERS_RET:
706 707
		s5p_mfc_handle_init_buffers(ctx, reason, err);
		break;
708

709
	case S5P_MFC_R2H_CMD_COMPLETE_SEQ_RET:
710
		s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
711 712 713
		ctx->int_type = reason;
		ctx->int_err = err;
		s5p_mfc_handle_stream_complete(ctx);
714 715
		break;

716 717 718 719 720 721
	case S5P_MFC_R2H_CMD_DPB_FLUSH_RET:
		clear_work_bit(ctx);
		ctx->state = MFCINST_RUNNING;
		wake_up(&ctx->queue);
		goto irq_cleanup_hw;

722 723
	default:
		mfc_debug(2, "Unknown int reason\n");
724
		s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
725
	}
726
	spin_unlock(&dev->irqlock);
727 728 729
	mfc_debug_leave();
	return IRQ_HANDLED;
irq_cleanup_hw:
730
	s5p_mfc_hw_call(dev->mfc_ops, clear_int_flags, dev);
731 732 733 734 735 736 737 738
	ctx->int_type = reason;
	ctx->int_err = err;
	ctx->int_cond = 1;
	if (test_and_clear_bit(0, &dev->hw_lock) == 0)
		mfc_err("Failed to unlock hw\n");

	s5p_mfc_clock_off();

739
	s5p_mfc_hw_call(dev->mfc_ops, try_run, dev);
740
	spin_unlock(&dev->irqlock);
741 742 743 744 745 746 747
	mfc_debug(2, "Exit via irq_cleanup_hw\n");
	return IRQ_HANDLED;
}

/* Open an MFC node */
static int s5p_mfc_open(struct file *file)
{
748
	struct video_device *vdev = video_devdata(file);
749 750 751 752 753 754
	struct s5p_mfc_dev *dev = video_drvdata(file);
	struct s5p_mfc_ctx *ctx = NULL;
	struct vb2_queue *q;
	int ret = 0;

	mfc_debug_enter();
755 756
	if (mutex_lock_interruptible(&dev->mfc_mutex))
		return -ERESTARTSYS;
757 758
	dev->num_inst++;	/* It is guarded by mfc_mutex in vfd */
	/* Allocate memory for context */
759
	ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
760 761 762 763 764
	if (!ctx) {
		mfc_err("Not enough memory\n");
		ret = -ENOMEM;
		goto err_alloc;
	}
765
	v4l2_fh_init(&ctx->fh, vdev);
766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783
	file->private_data = &ctx->fh;
	v4l2_fh_add(&ctx->fh);
	ctx->dev = dev;
	INIT_LIST_HEAD(&ctx->src_queue);
	INIT_LIST_HEAD(&ctx->dst_queue);
	ctx->src_queue_cnt = 0;
	ctx->dst_queue_cnt = 0;
	/* Get context number */
	ctx->num = 0;
	while (dev->ctx[ctx->num]) {
		ctx->num++;
		if (ctx->num >= MFC_NUM_CONTEXTS) {
			mfc_err("Too many open contexts\n");
			ret = -EBUSY;
			goto err_no_ctx;
		}
	}
	/* Mark context as idle */
784
	clear_work_bit_irqsave(ctx);
785
	dev->ctx[ctx->num] = ctx;
786
	if (vdev == dev->vfd_dec) {
787 788
		ctx->type = MFCINST_DECODER;
		ctx->c_ops = get_dec_codec_ops();
789
		s5p_mfc_dec_init(ctx);
790 791 792 793 794 795
		/* Setup ctrl handler */
		ret = s5p_mfc_dec_ctrls_setup(ctx);
		if (ret) {
			mfc_err("Failed to setup mfc controls\n");
			goto err_ctrls_setup;
		}
796
	} else if (vdev == dev->vfd_enc) {
797 798 799 800 801
		ctx->type = MFCINST_ENCODER;
		ctx->c_ops = get_enc_codec_ops();
		/* only for encoder */
		INIT_LIST_HEAD(&ctx->ref_queue);
		ctx->ref_queue_cnt = 0;
802
		s5p_mfc_enc_init(ctx);
803 804 805 806 807 808 809 810 811 812 813
		/* Setup ctrl handler */
		ret = s5p_mfc_enc_ctrls_setup(ctx);
		if (ret) {
			mfc_err("Failed to setup mfc controls\n");
			goto err_ctrls_setup;
		}
	} else {
		ret = -ENOENT;
		goto err_bad_node;
	}
	ctx->fh.ctrl_handler = &ctx->ctrl_handler;
814
	ctx->inst_no = MFC_NO_INSTANCE_SET;
815 816 817 818 819 820 821 822 823 824 825
	/* Load firmware if this is the first instance */
	if (dev->num_inst == 1) {
		dev->watchdog_timer.expires = jiffies +
					msecs_to_jiffies(MFC_WATCHDOG_INTERVAL);
		add_timer(&dev->watchdog_timer);
		ret = s5p_mfc_power_on();
		if (ret < 0) {
			mfc_err("power on failed\n");
			goto err_pwr_enable;
		}
		s5p_mfc_clock_on();
826 827 828 829 830
		ret = s5p_mfc_load_firmware(dev);
		if (ret) {
			s5p_mfc_clock_off();
			goto err_load_fw;
		}
831 832
		/* Init the FW */
		ret = s5p_mfc_init_hw(dev);
833
		s5p_mfc_clock_off();
834 835 836 837 838 839 840
		if (ret)
			goto err_init_hw;
	}
	/* Init videobuf2 queue for CAPTURE */
	q = &ctx->vq_dst;
	q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
	q->drv_priv = &ctx->fh;
841
	q->lock = &dev->mfc_mutex;
842
	if (vdev == dev->vfd_dec) {
843 844
		q->io_modes = VB2_MMAP;
		q->ops = get_dec_queue_ops();
845
	} else if (vdev == dev->vfd_enc) {
846 847 848 849 850 851
		q->io_modes = VB2_MMAP | VB2_USERPTR;
		q->ops = get_enc_queue_ops();
	} else {
		ret = -ENOENT;
		goto err_queue_init;
	}
852
	q->mem_ops = &vb2_dma_contig_memops;
853
	q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
854 855 856 857 858 859 860 861 862 863
	ret = vb2_queue_init(q);
	if (ret) {
		mfc_err("Failed to initialize videobuf2 queue(capture)\n");
		goto err_queue_init;
	}
	/* Init videobuf2 queue for OUTPUT */
	q = &ctx->vq_src;
	q->type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
	q->io_modes = VB2_MMAP;
	q->drv_priv = &ctx->fh;
864
	q->lock = &dev->mfc_mutex;
865
	if (vdev == dev->vfd_dec) {
866 867
		q->io_modes = VB2_MMAP;
		q->ops = get_dec_queue_ops();
868
	} else if (vdev == dev->vfd_enc) {
869 870 871 872 873 874
		q->io_modes = VB2_MMAP | VB2_USERPTR;
		q->ops = get_enc_queue_ops();
	} else {
		ret = -ENOENT;
		goto err_queue_init;
	}
875 876 877 878 879 880 881
	/* One way to indicate end-of-stream for MFC is to set the
	 * bytesused == 0. However by default videobuf2 handles bytesused
	 * equal to 0 as a special case and changes its value to the size
	 * of the buffer. Set the allow_zero_bytesused flag so that videobuf2
	 * will keep the value of bytesused intact.
	 */
	q->allow_zero_bytesused = 1;
882
	q->mem_ops = &vb2_dma_contig_memops;
883
	q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
884 885 886 887 888 889
	ret = vb2_queue_init(q);
	if (ret) {
		mfc_err("Failed to initialize videobuf2 queue(output)\n");
		goto err_queue_init;
	}
	init_waitqueue_head(&ctx->queue);
890
	mutex_unlock(&dev->mfc_mutex);
891 892
	mfc_debug_leave();
	return ret;
893
	/* Deinit when failure occurred */
894
err_queue_init:
895 896
	if (dev->num_inst == 1)
		s5p_mfc_deinit_hw(dev);
897
err_init_hw:
898
err_load_fw:
899 900 901 902
err_pwr_enable:
	if (dev->num_inst == 1) {
		if (s5p_mfc_power_off() < 0)
			mfc_err("power off failed\n");
903
		del_timer_sync(&dev->watchdog_timer);
904 905 906 907
	}
err_ctrls_setup:
	s5p_mfc_dec_ctrls_delete(ctx);
err_bad_node:
908
	dev->ctx[ctx->num] = NULL;
909 910 911 912 913 914
err_no_ctx:
	v4l2_fh_del(&ctx->fh);
	v4l2_fh_exit(&ctx->fh);
	kfree(ctx);
err_alloc:
	dev->num_inst--;
915
	mutex_unlock(&dev->mfc_mutex);
916 917 918 919 920 921 922 923 924 925 926
	mfc_debug_leave();
	return ret;
}

/* Release MFC context */
static int s5p_mfc_release(struct file *file)
{
	struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data);
	struct s5p_mfc_dev *dev = ctx->dev;

	mfc_debug_enter();
927
	mutex_lock(&dev->mfc_mutex);
928 929 930 931
	s5p_mfc_clock_on();
	vb2_queue_release(&ctx->vq_src);
	vb2_queue_release(&ctx->vq_dst);
	/* Mark context as idle */
932
	clear_work_bit_irqsave(ctx);
933
	/* If instance was initialised and not yet freed,
934
	 * return instance and free resources */
935
	if (ctx->state != MFCINST_FREE && ctx->state != MFCINST_INIT) {
936
		mfc_debug(2, "Has to free instance\n");
937
		s5p_mfc_close_mfc_inst(dev, ctx);
938 939 940 941 942 943
	}
	/* hardware locking scheme */
	if (dev->curr_ctx == ctx->num)
		clear_bit(0, &dev->hw_lock);
	dev->num_inst--;
	if (dev->num_inst == 0) {
944
		mfc_debug(2, "Last instance\n");
945
		s5p_mfc_deinit_hw(dev);
946 947 948 949 950 951
		del_timer_sync(&dev->watchdog_timer);
		if (s5p_mfc_power_off() < 0)
			mfc_err("Power off failed\n");
	}
	mfc_debug(2, "Shutting down clock\n");
	s5p_mfc_clock_off();
952
	dev->ctx[ctx->num] = NULL;
953 954 955 956 957
	s5p_mfc_dec_ctrls_delete(ctx);
	v4l2_fh_del(&ctx->fh);
	v4l2_fh_exit(&ctx->fh);
	kfree(ctx);
	mfc_debug_leave();
958
	mutex_unlock(&dev->mfc_mutex);
959 960 961 962 963 964 965 966 967 968 969 970 971 972
	return 0;
}

/* Poll */
static unsigned int s5p_mfc_poll(struct file *file,
				 struct poll_table_struct *wait)
{
	struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data);
	struct s5p_mfc_dev *dev = ctx->dev;
	struct vb2_queue *src_q, *dst_q;
	struct vb2_buffer *src_vb = NULL, *dst_vb = NULL;
	unsigned int rc = 0;
	unsigned long flags;

973
	mutex_lock(&dev->mfc_mutex);
974 975 976 977 978 979 980 981 982 983 984 985 986
	src_q = &ctx->vq_src;
	dst_q = &ctx->vq_dst;
	/*
	 * There has to be at least one buffer queued on each queued_list, which
	 * means either in driver already or waiting for driver to claim it
	 * and start processing.
	 */
	if ((!src_q->streaming || list_empty(&src_q->queued_list))
		&& (!dst_q->streaming || list_empty(&dst_q->queued_list))) {
		rc = POLLERR;
		goto end;
	}
	mutex_unlock(&dev->mfc_mutex);
987
	poll_wait(file, &ctx->fh.wait, wait);
988 989 990
	poll_wait(file, &src_q->done_wq, wait);
	poll_wait(file, &dst_q->done_wq, wait);
	mutex_lock(&dev->mfc_mutex);
991 992
	if (v4l2_event_pending(&ctx->fh))
		rc |= POLLPRI;
993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
	spin_lock_irqsave(&src_q->done_lock, flags);
	if (!list_empty(&src_q->done_list))
		src_vb = list_first_entry(&src_q->done_list, struct vb2_buffer,
								done_entry);
	if (src_vb && (src_vb->state == VB2_BUF_STATE_DONE
				|| src_vb->state == VB2_BUF_STATE_ERROR))
		rc |= POLLOUT | POLLWRNORM;
	spin_unlock_irqrestore(&src_q->done_lock, flags);
	spin_lock_irqsave(&dst_q->done_lock, flags);
	if (!list_empty(&dst_q->done_list))
		dst_vb = list_first_entry(&dst_q->done_list, struct vb2_buffer,
								done_entry);
	if (dst_vb && (dst_vb->state == VB2_BUF_STATE_DONE
				|| dst_vb->state == VB2_BUF_STATE_ERROR))
		rc |= POLLIN | POLLRDNORM;
	spin_unlock_irqrestore(&dst_q->done_lock, flags);
end:
1010
	mutex_unlock(&dev->mfc_mutex);
1011 1012 1013 1014 1015 1016 1017
	return rc;
}

/* Mmap */
static int s5p_mfc_mmap(struct file *file, struct vm_area_struct *vma)
{
	struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data);
1018
	struct s5p_mfc_dev *dev = ctx->dev;
1019 1020
	unsigned long offset = vma->vm_pgoff << PAGE_SHIFT;
	int ret;
1021 1022 1023

	if (mutex_lock_interruptible(&dev->mfc_mutex))
		return -ERESTARTSYS;
1024 1025 1026 1027 1028 1029 1030 1031
	if (offset < DST_QUEUE_OFF_BASE) {
		mfc_debug(2, "mmaping source\n");
		ret = vb2_mmap(&ctx->vq_src, vma);
	} else {		/* capture */
		mfc_debug(2, "mmaping destination\n");
		vma->vm_pgoff -= (DST_QUEUE_OFF_BASE >> PAGE_SHIFT);
		ret = vb2_mmap(&ctx->vq_dst, vma);
	}
1032
	mutex_unlock(&dev->mfc_mutex);
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052
	return ret;
}

/* v4l2 ops */
static const struct v4l2_file_operations s5p_mfc_fops = {
	.owner = THIS_MODULE,
	.open = s5p_mfc_open,
	.release = s5p_mfc_release,
	.poll = s5p_mfc_poll,
	.unlocked_ioctl = video_ioctl2,
	.mmap = s5p_mfc_mmap,
};

static int match_child(struct device *dev, void *data)
{
	if (!dev_name(dev))
		return 0;
	return !strcmp(dev_name(dev), (char *)data);
}

1053 1054 1055 1056 1057
static void s5p_mfc_memdev_release(struct device *dev)
{
	dma_release_declared_memory(dev);
}

1058 1059
static void *mfc_get_drv_data(struct platform_device *pdev);

1060 1061
static int s5p_mfc_alloc_memdevs(struct s5p_mfc_dev *dev)
{
1062
	unsigned int mem_info[2] = { };
1063 1064 1065 1066 1067 1068 1069

	dev->mem_dev_l = devm_kzalloc(&dev->plat_dev->dev,
			sizeof(struct device), GFP_KERNEL);
	if (!dev->mem_dev_l) {
		mfc_err("Not enough memory\n");
		return -ENOMEM;
	}
1070 1071

	dev_set_name(dev->mem_dev_l, "%s", "s5p-mfc-l");
1072
	dev->mem_dev_l->release = s5p_mfc_memdev_release;
1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089
	device_initialize(dev->mem_dev_l);
	of_property_read_u32_array(dev->plat_dev->dev.of_node,
			"samsung,mfc-l", mem_info, 2);
	if (dma_declare_coherent_memory(dev->mem_dev_l, mem_info[0],
				mem_info[0], mem_info[1],
				DMA_MEMORY_MAP | DMA_MEMORY_EXCLUSIVE) == 0) {
		mfc_err("Failed to declare coherent memory for\n"
		"MFC device\n");
		return -ENOMEM;
	}

	dev->mem_dev_r = devm_kzalloc(&dev->plat_dev->dev,
			sizeof(struct device), GFP_KERNEL);
	if (!dev->mem_dev_r) {
		mfc_err("Not enough memory\n");
		return -ENOMEM;
	}
1090 1091

	dev_set_name(dev->mem_dev_r, "%s", "s5p-mfc-r");
1092
	dev->mem_dev_r->release = s5p_mfc_memdev_release;
1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105
	device_initialize(dev->mem_dev_r);
	of_property_read_u32_array(dev->plat_dev->dev.of_node,
			"samsung,mfc-r", mem_info, 2);
	if (dma_declare_coherent_memory(dev->mem_dev_r, mem_info[0],
				mem_info[0], mem_info[1],
				DMA_MEMORY_MAP | DMA_MEMORY_EXCLUSIVE) == 0) {
		pr_err("Failed to declare coherent memory for\n"
		"MFC device\n");
		return -ENOMEM;
	}
	return 0;
}

1106
/* MFC probe function */
1107
static int s5p_mfc_probe(struct platform_device *pdev)
1108 1109 1110 1111 1112 1113 1114
{
	struct s5p_mfc_dev *dev;
	struct video_device *vfd;
	struct resource *res;
	int ret;

	pr_debug("%s++\n", __func__);
1115
	dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
	if (!dev) {
		dev_err(&pdev->dev, "Not enough memory for MFC device\n");
		return -ENOMEM;
	}

	spin_lock_init(&dev->irqlock);
	spin_lock_init(&dev->condlock);
	dev->plat_dev = pdev;
	if (!dev->plat_dev) {
		dev_err(&pdev->dev, "No platform data specified\n");
1126
		return -ENODEV;
1127 1128
	}

1129
	dev->variant = mfc_get_drv_data(pdev);
1130

1131 1132 1133
	ret = s5p_mfc_init_pm(dev);
	if (ret < 0) {
		dev_err(&pdev->dev, "failed to get mfc clock source\n");
1134
		return ret;
1135 1136 1137 1138
	}

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);

1139 1140 1141
	dev->regs_base = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(dev->regs_base))
		return PTR_ERR(dev->regs_base);
1142 1143 1144 1145 1146

	res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
	if (res == NULL) {
		dev_err(&pdev->dev, "failed to get irq resource\n");
		ret = -ENOENT;
1147
		goto err_res;
1148 1149
	}
	dev->irq = res->start;
1150
	ret = devm_request_irq(&pdev->dev, dev->irq, s5p_mfc_irq,
1151
					0, pdev->name, dev);
1152 1153
	if (ret) {
		dev_err(&pdev->dev, "Failed to install irq (%d)\n", ret);
1154
		goto err_res;
1155 1156
	}

1157
	if (pdev->dev.of_node) {
1158 1159
		ret = s5p_mfc_alloc_memdevs(dev);
		if (ret < 0)
1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175
			goto err_res;
	} else {
		dev->mem_dev_l = device_find_child(&dev->plat_dev->dev,
				"s5p-mfc-l", match_child);
		if (!dev->mem_dev_l) {
			mfc_err("Mem child (L) device get failed\n");
			ret = -ENODEV;
			goto err_res;
		}
		dev->mem_dev_r = device_find_child(&dev->plat_dev->dev,
				"s5p-mfc-r", match_child);
		if (!dev->mem_dev_r) {
			mfc_err("Mem child (R) device get failed\n");
			ret = -ENODEV;
			goto err_res;
		}
1176 1177 1178
	}

	dev->alloc_ctx[0] = vb2_dma_contig_init_ctx(dev->mem_dev_l);
1179
	if (IS_ERR(dev->alloc_ctx[0])) {
1180
		ret = PTR_ERR(dev->alloc_ctx[0]);
1181
		goto err_res;
1182 1183
	}
	dev->alloc_ctx[1] = vb2_dma_contig_init_ctx(dev->mem_dev_r);
1184
	if (IS_ERR(dev->alloc_ctx[1])) {
1185 1186 1187 1188 1189 1190
		ret = PTR_ERR(dev->alloc_ctx[1]);
		goto err_mem_init_ctx_1;
	}

	mutex_init(&dev->mfc_mutex);

1191 1192 1193 1194
	ret = s5p_mfc_alloc_firmware(dev);
	if (ret)
		goto err_alloc_fw;

1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206
	ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
	if (ret)
		goto err_v4l2_dev_reg;
	init_waitqueue_head(&dev->queue);

	/* decoder */
	vfd = video_device_alloc();
	if (!vfd) {
		v4l2_err(&dev->v4l2_dev, "Failed to allocate video device\n");
		ret = -ENOMEM;
		goto err_dec_alloc;
	}
1207
	vfd->fops	= &s5p_mfc_fops;
1208
	vfd->ioctl_ops	= get_dec_v4l2_ioctl_ops();
1209
	vfd->release	= video_device_release;
1210 1211
	vfd->lock	= &dev->mfc_mutex;
	vfd->v4l2_dev	= &dev->v4l2_dev;
1212
	vfd->vfl_dir	= VFL_DIR_M2M;
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223
	snprintf(vfd->name, sizeof(vfd->name), "%s", S5P_MFC_DEC_NAME);
	dev->vfd_dec	= vfd;
	video_set_drvdata(vfd, dev);

	/* encoder */
	vfd = video_device_alloc();
	if (!vfd) {
		v4l2_err(&dev->v4l2_dev, "Failed to allocate video device\n");
		ret = -ENOMEM;
		goto err_enc_alloc;
	}
1224
	vfd->fops	= &s5p_mfc_fops;
1225
	vfd->ioctl_ops	= get_enc_v4l2_ioctl_ops();
1226
	vfd->release	= video_device_release;
1227 1228
	vfd->lock	= &dev->mfc_mutex;
	vfd->v4l2_dev	= &dev->v4l2_dev;
1229
	vfd->vfl_dir	= VFL_DIR_M2M;
1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242
	snprintf(vfd->name, sizeof(vfd->name), "%s", S5P_MFC_ENC_NAME);
	dev->vfd_enc	= vfd;
	video_set_drvdata(vfd, dev);
	platform_set_drvdata(pdev, dev);

	dev->hw_lock = 0;
	dev->watchdog_workqueue = create_singlethread_workqueue(S5P_MFC_NAME);
	INIT_WORK(&dev->watchdog_work, s5p_mfc_watchdog_worker);
	atomic_set(&dev->watchdog_cnt, 0);
	init_timer(&dev->watchdog_timer);
	dev->watchdog_timer.data = (unsigned long)dev;
	dev->watchdog_timer.function = s5p_mfc_watchdog;

1243 1244 1245
	/* Initialize HW ops and commands based on MFC version */
	s5p_mfc_init_hw_ops(dev);
	s5p_mfc_init_hw_cmds(dev);
1246
	s5p_mfc_init_regs(dev);
1247

1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
	/* Register decoder and encoder */
	ret = video_register_device(dev->vfd_dec, VFL_TYPE_GRABBER, 0);
	if (ret) {
		v4l2_err(&dev->v4l2_dev, "Failed to register video device\n");
		video_device_release(dev->vfd_dec);
		goto err_dec_reg;
	}
	v4l2_info(&dev->v4l2_dev,
		  "decoder registered as /dev/video%d\n", dev->vfd_dec->num);

	ret = video_register_device(dev->vfd_enc, VFL_TYPE_GRABBER, 0);
	if (ret) {
		v4l2_err(&dev->v4l2_dev, "Failed to register video device\n");
		video_device_release(dev->vfd_enc);
		goto err_enc_reg;
	}
	v4l2_info(&dev->v4l2_dev,
		  "encoder registered as /dev/video%d\n", dev->vfd_enc->num);

1267 1268 1269 1270 1271 1272 1273
	pr_debug("%s--\n", __func__);
	return 0;

/* Deinit MFC if probe had failed */
err_enc_reg:
	video_unregister_device(dev->vfd_dec);
err_dec_reg:
1274 1275
	video_device_release(dev->vfd_enc);
err_enc_alloc:
1276 1277 1278 1279
	video_device_release(dev->vfd_dec);
err_dec_alloc:
	v4l2_device_unregister(&dev->v4l2_dev);
err_v4l2_dev_reg:
1280 1281
	s5p_mfc_release_firmware(dev);
err_alloc_fw:
1282 1283 1284 1285 1286
	vb2_dma_contig_cleanup_ctx(dev->alloc_ctx[1]);
err_mem_init_ctx_1:
	vb2_dma_contig_cleanup_ctx(dev->alloc_ctx[0]);
err_res:
	s5p_mfc_final_pm(dev);
1287

1288 1289 1290 1291 1292 1293
	pr_debug("%s-- with error\n", __func__);
	return ret;

}

/* Remove the driver */
1294
static int s5p_mfc_remove(struct platform_device *pdev)
1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306
{
	struct s5p_mfc_dev *dev = platform_get_drvdata(pdev);

	v4l2_info(&dev->v4l2_dev, "Removing %s\n", pdev->name);

	del_timer_sync(&dev->watchdog_timer);
	flush_workqueue(dev->watchdog_workqueue);
	destroy_workqueue(dev->watchdog_workqueue);

	video_unregister_device(dev->vfd_enc);
	video_unregister_device(dev->vfd_dec);
	v4l2_device_unregister(&dev->v4l2_dev);
1307
	s5p_mfc_release_firmware(dev);
1308 1309
	vb2_dma_contig_cleanup_ctx(dev->alloc_ctx[0]);
	vb2_dma_contig_cleanup_ctx(dev->alloc_ctx[1]);
1310 1311 1312 1313
	if (pdev->dev.of_node) {
		put_device(dev->mem_dev_l);
		put_device(dev->mem_dev_r);
	}
1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328

	s5p_mfc_final_pm(dev);
	return 0;
}

#ifdef CONFIG_PM_SLEEP

static int s5p_mfc_suspend(struct device *dev)
{
	struct platform_device *pdev = to_platform_device(dev);
	struct s5p_mfc_dev *m_dev = platform_get_drvdata(pdev);
	int ret;

	if (m_dev->num_inst == 0)
		return 0;
1329

1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
	if (test_and_set_bit(0, &m_dev->enter_suspend) != 0) {
		mfc_err("Error: going to suspend for a second time\n");
		return -EIO;
	}

	/* Check if we're processing then wait if it necessary. */
	while (test_and_set_bit(0, &m_dev->hw_lock) != 0) {
		/* Try and lock the HW */
		/* Wait on the interrupt waitqueue */
		ret = wait_event_interruptible_timeout(m_dev->queue,
1340
			m_dev->int_cond, msecs_to_jiffies(MFC_INT_TIMEOUT));
1341 1342
		if (ret == 0) {
			mfc_err("Waiting for hardware to finish timed out\n");
1343
			clear_bit(0, &m_dev->enter_suspend);
1344 1345 1346
			return -EIO;
		}
	}
1347

1348 1349 1350 1351 1352 1353
	ret = s5p_mfc_sleep(m_dev);
	if (ret) {
		clear_bit(0, &m_dev->enter_suspend);
		clear_bit(0, &m_dev->hw_lock);
	}
	return ret;
1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366
}

static int s5p_mfc_resume(struct device *dev)
{
	struct platform_device *pdev = to_platform_device(dev);
	struct s5p_mfc_dev *m_dev = platform_get_drvdata(pdev);

	if (m_dev->num_inst == 0)
		return 0;
	return s5p_mfc_wakeup(m_dev);
}
#endif

1367
#ifdef CONFIG_PM
1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393
static int s5p_mfc_runtime_suspend(struct device *dev)
{
	struct platform_device *pdev = to_platform_device(dev);
	struct s5p_mfc_dev *m_dev = platform_get_drvdata(pdev);

	atomic_set(&m_dev->pm.power, 0);
	return 0;
}

static int s5p_mfc_runtime_resume(struct device *dev)
{
	struct platform_device *pdev = to_platform_device(dev);
	struct s5p_mfc_dev *m_dev = platform_get_drvdata(pdev);

	atomic_set(&m_dev->pm.power, 1);
	return 0;
}
#endif

/* Power management */
static const struct dev_pm_ops s5p_mfc_pm_ops = {
	SET_SYSTEM_SLEEP_PM_OPS(s5p_mfc_suspend, s5p_mfc_resume)
	SET_RUNTIME_PM_OPS(s5p_mfc_runtime_suspend, s5p_mfc_runtime_resume,
			   NULL)
};

1394
static struct s5p_mfc_buf_size_v5 mfc_buf_size_v5 = {
1395 1396 1397 1398 1399 1400
	.h264_ctx	= MFC_H264_CTX_BUF_SIZE,
	.non_h264_ctx	= MFC_CTX_BUF_SIZE,
	.dsc		= DESC_BUF_SIZE,
	.shm		= SHARED_BUF_SIZE,
};

1401
static struct s5p_mfc_buf_size buf_size_v5 = {
1402 1403 1404 1405 1406
	.fw	= MAX_FW_SIZE,
	.cpb	= MAX_CPB_SIZE,
	.priv	= &mfc_buf_size_v5,
};

1407
static struct s5p_mfc_buf_align mfc_buf_align_v5 = {
1408 1409 1410 1411 1412
	.base = MFC_BASE_ALIGN_ORDER,
};

static struct s5p_mfc_variant mfc_drvdata_v5 = {
	.version	= MFC_VERSION,
1413
	.version_bit	= MFC_V5_BIT,
1414 1415 1416
	.port_num	= MFC_NUM_PORTS,
	.buf_size	= &buf_size_v5,
	.buf_align	= &mfc_buf_align_v5,
1417
	.fw_name[0]	= "s5p-mfc.fw",
1418 1419
};

1420
static struct s5p_mfc_buf_size_v6 mfc_buf_size_v6 = {
1421 1422 1423 1424 1425 1426 1427
	.dev_ctx	= MFC_CTX_BUF_SIZE_V6,
	.h264_dec_ctx	= MFC_H264_DEC_CTX_BUF_SIZE_V6,
	.other_dec_ctx	= MFC_OTHER_DEC_CTX_BUF_SIZE_V6,
	.h264_enc_ctx	= MFC_H264_ENC_CTX_BUF_SIZE_V6,
	.other_enc_ctx	= MFC_OTHER_ENC_CTX_BUF_SIZE_V6,
};

1428
static struct s5p_mfc_buf_size buf_size_v6 = {
1429 1430 1431 1432 1433
	.fw	= MAX_FW_SIZE_V6,
	.cpb	= MAX_CPB_SIZE_V6,
	.priv	= &mfc_buf_size_v6,
};

1434
static struct s5p_mfc_buf_align mfc_buf_align_v6 = {
1435 1436 1437 1438 1439
	.base = 0,
};

static struct s5p_mfc_variant mfc_drvdata_v6 = {
	.version	= MFC_VERSION_V6,
1440
	.version_bit	= MFC_V6_BIT,
1441 1442 1443
	.port_num	= MFC_NUM_PORTS_V6,
	.buf_size	= &buf_size_v6,
	.buf_align	= &mfc_buf_align_v6,
1444 1445 1446 1447 1448 1449
	.fw_name[0]     = "s5p-mfc-v6.fw",
	/*
	 * v6-v2 firmware contains bug fixes and interface change
	 * for init buffer command
	 */
	.fw_name[1]     = "s5p-mfc-v6-v2.fw",
1450 1451
};

1452
static struct s5p_mfc_buf_size_v6 mfc_buf_size_v7 = {
1453 1454 1455 1456 1457 1458 1459
	.dev_ctx	= MFC_CTX_BUF_SIZE_V7,
	.h264_dec_ctx	= MFC_H264_DEC_CTX_BUF_SIZE_V7,
	.other_dec_ctx	= MFC_OTHER_DEC_CTX_BUF_SIZE_V7,
	.h264_enc_ctx	= MFC_H264_ENC_CTX_BUF_SIZE_V7,
	.other_enc_ctx	= MFC_OTHER_ENC_CTX_BUF_SIZE_V7,
};

1460
static struct s5p_mfc_buf_size buf_size_v7 = {
1461 1462 1463 1464 1465
	.fw	= MAX_FW_SIZE_V7,
	.cpb	= MAX_CPB_SIZE_V7,
	.priv	= &mfc_buf_size_v7,
};

1466
static struct s5p_mfc_buf_align mfc_buf_align_v7 = {
1467 1468 1469 1470 1471
	.base = 0,
};

static struct s5p_mfc_variant mfc_drvdata_v7 = {
	.version	= MFC_VERSION_V7,
1472
	.version_bit	= MFC_V7_BIT,
1473 1474 1475
	.port_num	= MFC_NUM_PORTS_V7,
	.buf_size	= &buf_size_v7,
	.buf_align	= &mfc_buf_align_v7,
1476
	.fw_name[0]     = "s5p-mfc-v7.fw",
1477 1478
};

1479
static struct s5p_mfc_buf_size_v6 mfc_buf_size_v8 = {
1480 1481 1482
	.dev_ctx	= MFC_CTX_BUF_SIZE_V8,
	.h264_dec_ctx	= MFC_H264_DEC_CTX_BUF_SIZE_V8,
	.other_dec_ctx	= MFC_OTHER_DEC_CTX_BUF_SIZE_V8,
1483 1484
	.h264_enc_ctx	= MFC_H264_ENC_CTX_BUF_SIZE_V8,
	.other_enc_ctx	= MFC_OTHER_ENC_CTX_BUF_SIZE_V8,
1485 1486
};

1487
static struct s5p_mfc_buf_size buf_size_v8 = {
1488 1489 1490 1491 1492
	.fw	= MAX_FW_SIZE_V8,
	.cpb	= MAX_CPB_SIZE_V8,
	.priv	= &mfc_buf_size_v8,
};

1493
static struct s5p_mfc_buf_align mfc_buf_align_v8 = {
1494 1495 1496 1497 1498 1499 1500 1501 1502
	.base = 0,
};

static struct s5p_mfc_variant mfc_drvdata_v8 = {
	.version	= MFC_VERSION_V8,
	.version_bit	= MFC_V8_BIT,
	.port_num	= MFC_NUM_PORTS_V8,
	.buf_size	= &buf_size_v8,
	.buf_align	= &mfc_buf_align_v8,
1503
	.fw_name[0]     = "s5p-mfc-v8.fw",
1504 1505
};

1506 1507 1508 1509 1510 1511 1512
static const struct of_device_id exynos_mfc_match[] = {
	{
		.compatible = "samsung,mfc-v5",
		.data = &mfc_drvdata_v5,
	}, {
		.compatible = "samsung,mfc-v6",
		.data = &mfc_drvdata_v6,
1513 1514 1515
	}, {
		.compatible = "samsung,mfc-v7",
		.data = &mfc_drvdata_v7,
1516 1517 1518
	}, {
		.compatible = "samsung,mfc-v8",
		.data = &mfc_drvdata_v8,
1519 1520 1521 1522 1523 1524 1525 1526
	},
	{},
};
MODULE_DEVICE_TABLE(of, exynos_mfc_match);

static void *mfc_get_drv_data(struct platform_device *pdev)
{
	struct s5p_mfc_variant *driver_data = NULL;
1527 1528 1529 1530 1531
	const struct of_device_id *match;

	match = of_match_node(exynos_mfc_match, pdev->dev.of_node);
	if (match)
		driver_data = (struct s5p_mfc_variant *)match->data;
1532 1533 1534 1535

	return driver_data;
}

1536
static struct platform_driver s5p_mfc_driver = {
1537
	.probe		= s5p_mfc_probe,
1538
	.remove		= s5p_mfc_remove,
1539 1540
	.driver	= {
		.name	= S5P_MFC_NAME,
1541 1542
		.pm	= &s5p_mfc_pm_ops,
		.of_match_table = exynos_mfc_match,
1543 1544 1545
	},
};

1546
module_platform_driver(s5p_mfc_driver);
1547 1548 1549 1550 1551

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Kamil Debski <k.debski@samsung.com>");
MODULE_DESCRIPTION("Samsung S5P Multi Format Codec V4L2 driver");