rt2800: initialize BBP_R104 on proper subroutines
[linux/fpc-iii.git] / drivers / media / platform / s5p-mfc / s5p_mfc_opr.c
blob10f8ac37cecd595ffd2cc8e67608653d74a5c863
1 /*
2 * drivers/media/platform/s5p-mfc/s5p_mfc_opr.c
4 * Samsung MFC (Multi Function Codec - FIMV) driver
5 * This file contains hw related functions.
7 * Kamil Debski, Copyright (c) 2012 Samsung Electronics Co., Ltd.
8 * http://www.samsung.com/
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include "s5p_mfc_debug.h"
16 #include "s5p_mfc_opr.h"
17 #include "s5p_mfc_opr_v5.h"
18 #include "s5p_mfc_opr_v6.h"
20 static struct s5p_mfc_hw_ops *s5p_mfc_ops;
22 void s5p_mfc_init_hw_ops(struct s5p_mfc_dev *dev)
24 if (IS_MFCV6(dev)) {
25 s5p_mfc_ops = s5p_mfc_init_hw_ops_v6();
26 dev->warn_start = S5P_FIMV_ERR_WARNINGS_START_V6;
27 } else {
28 s5p_mfc_ops = s5p_mfc_init_hw_ops_v5();
29 dev->warn_start = S5P_FIMV_ERR_WARNINGS_START;
31 dev->mfc_ops = s5p_mfc_ops;
34 int s5p_mfc_alloc_priv_buf(struct device *dev,
35 struct s5p_mfc_priv_buf *b)
38 mfc_debug(3, "Allocating priv: %d\n", b->size);
40 b->virt = dma_alloc_coherent(dev, b->size, &b->dma, GFP_KERNEL);
42 if (!b->virt) {
43 mfc_err("Allocating private buffer failed\n");
44 return -ENOMEM;
47 mfc_debug(3, "Allocated addr %p %08x\n", b->virt, b->dma);
48 return 0;
51 void s5p_mfc_release_priv_buf(struct device *dev,
52 struct s5p_mfc_priv_buf *b)
54 if (b->virt) {
55 dma_free_coherent(dev, b->size, b->virt, b->dma);
56 b->virt = NULL;
57 b->dma = 0;
58 b->size = 0;