summaryrefslogtreecommitdiff
path: root/drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ynr/ynr_2/ia_css_ynr2_types.h
blob: e0a0b10ac5fa540c0e569e3f4b57f3ca2047ec54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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
88
89
90
91
92
93
94
/*
 * Support for Intel Camera Imaging ISP subsystem.
 * Copyright (c) 2015, Intel Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 */

#ifndef __IA_CSS_YNR2_TYPES_H
#define __IA_CSS_YNR2_TYPES_H

/** @file
* CSS-API header file for Y(Luma) Noise Reduction.
*/

/** Y(Luma) Noise Reduction configuration.
 *
 *  ISP block: YNR2 & YEE2
 * (ISP1: YNR1 and YEE1 are used.)
 * (ISP2: YNR1 and YEE1 are used for Preview/Video.)
 *  ISP2: YNR2 and YEE2 are used for Still.
 */
struct ia_css_ynr_config {
	uint16_t edge_sense_gain_0;   /**< Sensitivity of edge in dark area.
					u13.0, [0,8191],
					default 1000, ineffective 0 */
	uint16_t edge_sense_gain_1;   /**< Sensitivity of edge in bright area.
					u13.0, [0,8191],
					default 1000, ineffective 0 */
	uint16_t corner_sense_gain_0; /**< Sensitivity of corner in dark area.
					u13.0, [0,8191],
					default 1000, ineffective 0 */
	uint16_t corner_sense_gain_1; /**< Sensitivity of corner in bright area.
					u13.0, [0,8191],
					default 1000, ineffective 0 */
};

/** Fringe Control configuration.
 *
 *  ISP block: FC2 (FC2 is used with YNR2/YEE2.)
 * (ISP1: FC2 is not used.)
 * (ISP2: FC2 is not for Preview/Video.)
 *  ISP2: FC2 is used for Still.
 */
struct ia_css_fc_config {
	uint8_t  gain_exp;   /**< Common exponent of gains.
				u8.0, [0,13],
				default 1, ineffective 0 */
	uint16_t coring_pos_0; /**< Coring threshold for positive edge in dark area.
				u0.13, [0,8191],
				default 0(0), ineffective 0 */
	uint16_t coring_pos_1; /**< Coring threshold for positive edge in bright area.
				u0.13, [0,8191],
				default 0(0), ineffective 0 */
	uint16_t coring_neg_0; /**< Coring threshold for negative edge in dark area.
				u0.13, [0,8191],
				default 0(0), ineffective 0 */
	uint16_t coring_neg_1; /**< Coring threshold for negative edge in bright area.
				u0.13, [0,8191],
				default 0(0), ineffective 0 */
	uint16_t gain_pos_0; /**< Gain for positive edge in dark area.
				u0.13, [0,8191],
				default 4096(0.5), ineffective 0 */
	uint16_t gain_pos_1; /**< Gain for positive edge in bright area.
				u0.13, [0,8191],
				default 4096(0.5), ineffective 0 */
	uint16_t gain_neg_0; /**< Gain for negative edge in dark area.
				u0.13, [0,8191],
				default 4096(0.5), ineffective 0 */
	uint16_t gain_neg_1; /**< Gain for negative edge in bright area.
				u0.13, [0,8191],
				default 4096(0.5), ineffective 0 */
	uint16_t crop_pos_0; /**< Limit for positive edge in dark area.
				u0.13, [0,8191],
				default/ineffective 8191(almost 1.0) */
	uint16_t crop_pos_1; /**< Limit for positive edge in bright area.
				u0.13, [0,8191],
				default/ineffective 8191(almost 1.0) */
	int16_t  crop_neg_0; /**< Limit for negative edge in dark area.
				s0.13, [-8192,0],
				default/ineffective -8192(-1.0) */
	int16_t  crop_neg_1; /**< Limit for negative edge in bright area.
				s0.13, [-8192,0],
				default/ineffective -8192(-1.0) */
};

#endif /* __IA_CSS_YNR2_TYPES_H */