1 /*
2 * drivers/media/platform/s5p-mfc/s5p_mfc_opr.c
3 *
4 * Samsung MFC (Multi Function Codec - FIMV) driver
5 * This file contains hw related functions.
6 *
7 * Kamil Debski, Copyright (c) 2012 Samsung Electronics Co., Ltd.
8 * http://www.samsung.com/
9 *
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.
13 */
14
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"
19
20 static struct s5p_mfc_hw_ops *s5p_mfc_ops;
21
s5p_mfc_init_hw_ops(struct s5p_mfc_dev * dev)22 void s5p_mfc_init_hw_ops(struct s5p_mfc_dev *dev)
23 {
24 if (IS_MFCV6_PLUS(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;
30 }
31 dev->mfc_ops = s5p_mfc_ops;
32 }
33
s5p_mfc_init_regs(struct s5p_mfc_dev * dev)34 void s5p_mfc_init_regs(struct s5p_mfc_dev *dev)
35 {
36 if (IS_MFCV6_PLUS(dev))
37 dev->mfc_regs = s5p_mfc_init_regs_v6_plus(dev);
38 }
39
s5p_mfc_alloc_priv_buf(struct device * dev,struct s5p_mfc_priv_buf * b)40 int s5p_mfc_alloc_priv_buf(struct device *dev,
41 struct s5p_mfc_priv_buf *b)
42 {
43
44 mfc_debug(3, "Allocating priv: %zu\n", b->size);
45
46 b->virt = dma_alloc_coherent(dev, b->size, &b->dma, GFP_KERNEL);
47
48 if (!b->virt) {
49 mfc_err("Allocating private buffer failed\n");
50 return -ENOMEM;
51 }
52
53 mfc_debug(3, "Allocated addr %p %pad\n", b->virt, &b->dma);
54 return 0;
55 }
56
s5p_mfc_release_priv_buf(struct device * dev,struct s5p_mfc_priv_buf * b)57 void s5p_mfc_release_priv_buf(struct device *dev,
58 struct s5p_mfc_priv_buf *b)
59 {
60 if (b->virt) {
61 dma_free_coherent(dev, b->size, b->virt, b->dma);
62 b->virt = NULL;
63 b->dma = 0;
64 b->size = 0;
65 }
66 }
67
68