tizen 2.4 release
[profile/mobile/platform/kernel/linux-3.10-sc7730.git] / drivers / media / sprd_isp / isp2.0 / tshark2 / src / isp_k_hua.c
1 /*
2  * Copyright (C) 2012 Spreadtrum Communications Inc.
3  *
4  * This software is licensed under the terms of the GNU General Public
5  * License version 2, as published by the Free Software Foundation, and
6  * may be copied, distributed, and modified under those terms.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  */
13
14 #include <linux/uaccess.h>
15 #include <linux/sprd_mm.h>
16 #include <video/sprd_isp.h>
17 #include "isp_reg.h"
18
19 static int32_t isp_k_hue_block(struct isp_io_param *param)
20 {
21         int32_t ret = 0;
22         struct isp_dev_hue_info_v1 hua_info;
23
24         memset(&hua_info, 0x00, sizeof(hua_info));
25
26         ret = copy_from_user((void *)&hua_info, param->property_param, sizeof(hua_info));
27         if (0 != ret) {
28                 printk("isp_k_hue_block: copy_from_user error, ret = 0x%x\n", (uint32_t)ret);
29                 return -1;
30         }
31
32         REG_MWR(ISP_HUA_PARAM, 0x1FF0, hua_info.theta << 4);
33
34         if (hua_info.bypass) {
35                 REG_OWR(ISP_HUA_PARAM, BIT_0);
36         } else {
37                 REG_MWR(ISP_HUA_PARAM, BIT_0, 0);
38         }
39
40         return ret;
41 }
42
43
44 int32_t isp_k_cfg_hue(struct isp_io_param *param)
45 {
46         int32_t ret = 0;
47
48         if (!param) {
49                 printk("isp_k_cfg_hue: param is null error.\n");
50                 return -1;
51         }
52
53         if (NULL == param->property_param) {
54                 printk("isp_k_cfg_hue: property_param is null error.\n");
55                 return -1;
56         }
57
58         switch(param->property) {
59         case ISP_PRO_HUE_BLOCK:
60                 ret = isp_k_hue_block(param);
61                 break;
62         default:
63                 printk("isp_k_cfg_hue: fail cmd id:%d, not supported.\n", param->property);
64                 break;
65         }
66
67         return ret;
68 }