Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
omap3isp.h
Go to the documentation of this file.
1 /*
2  * omap3isp.h
3  *
4  * TI OMAP3 ISP - User-space API
5  *
6  * Copyright (C) 2010 Nokia Corporation
7  * Copyright (C) 2009 Texas Instruments, Inc.
8  *
9  * Contacts: Laurent Pinchart <[email protected]>
10  * Sakari Ailus <[email protected]>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License version 2 as
14  * published by the Free Software Foundation.
15  *
16  * This program is distributed in the hope that it will be useful, but
17  * WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  * General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
24  * 02110-1301 USA
25  */
26 
27 #ifndef OMAP3_ISP_USER_H
28 #define OMAP3_ISP_USER_H
29 
30 #include <linux/types.h>
31 #include <linux/videodev2.h>
32 
33 /*
34  * Private IOCTLs
35  *
36  * VIDIOC_OMAP3ISP_CCDC_CFG: Set CCDC configuration
37  * VIDIOC_OMAP3ISP_PRV_CFG: Set preview engine configuration
38  * VIDIOC_OMAP3ISP_AEWB_CFG: Set AEWB module configuration
39  * VIDIOC_OMAP3ISP_HIST_CFG: Set histogram module configuration
40  * VIDIOC_OMAP3ISP_AF_CFG: Set auto-focus module configuration
41  * VIDIOC_OMAP3ISP_STAT_REQ: Read statistics (AEWB/AF/histogram) data
42  * VIDIOC_OMAP3ISP_STAT_EN: Enable/disable a statistics module
43  */
44 
45 #define VIDIOC_OMAP3ISP_CCDC_CFG \
46  _IOWR('V', BASE_VIDIOC_PRIVATE + 1, struct omap3isp_ccdc_update_config)
47 #define VIDIOC_OMAP3ISP_PRV_CFG \
48  _IOWR('V', BASE_VIDIOC_PRIVATE + 2, struct omap3isp_prev_update_config)
49 #define VIDIOC_OMAP3ISP_AEWB_CFG \
50  _IOWR('V', BASE_VIDIOC_PRIVATE + 3, struct omap3isp_h3a_aewb_config)
51 #define VIDIOC_OMAP3ISP_HIST_CFG \
52  _IOWR('V', BASE_VIDIOC_PRIVATE + 4, struct omap3isp_hist_config)
53 #define VIDIOC_OMAP3ISP_AF_CFG \
54  _IOWR('V', BASE_VIDIOC_PRIVATE + 5, struct omap3isp_h3a_af_config)
55 #define VIDIOC_OMAP3ISP_STAT_REQ \
56  _IOWR('V', BASE_VIDIOC_PRIVATE + 6, struct omap3isp_stat_data)
57 #define VIDIOC_OMAP3ISP_STAT_EN \
58  _IOWR('V', BASE_VIDIOC_PRIVATE + 7, unsigned long)
59 
60 /*
61  * Events
62  *
63  * V4L2_EVENT_OMAP3ISP_AEWB: AEWB statistics data ready
64  * V4L2_EVENT_OMAP3ISP_AF: AF statistics data ready
65  * V4L2_EVENT_OMAP3ISP_HIST: Histogram statistics data ready
66  */
67 
68 #define V4L2_EVENT_OMAP3ISP_CLASS (V4L2_EVENT_PRIVATE_START | 0x100)
69 #define V4L2_EVENT_OMAP3ISP_AEWB (V4L2_EVENT_OMAP3ISP_CLASS | 0x1)
70 #define V4L2_EVENT_OMAP3ISP_AF (V4L2_EVENT_OMAP3ISP_CLASS | 0x2)
71 #define V4L2_EVENT_OMAP3ISP_HIST (V4L2_EVENT_OMAP3ISP_CLASS | 0x3)
72 
77 };
78 
79 /* AE/AWB related structures and flags*/
80 
81 /* H3A Range Constants */
82 #define OMAP3ISP_AEWB_MAX_SATURATION_LIM 1023
83 #define OMAP3ISP_AEWB_MIN_WIN_H 2
84 #define OMAP3ISP_AEWB_MAX_WIN_H 256
85 #define OMAP3ISP_AEWB_MIN_WIN_W 6
86 #define OMAP3ISP_AEWB_MAX_WIN_W 256
87 #define OMAP3ISP_AEWB_MIN_WINVC 1
88 #define OMAP3ISP_AEWB_MIN_WINHC 1
89 #define OMAP3ISP_AEWB_MAX_WINVC 128
90 #define OMAP3ISP_AEWB_MAX_WINHC 36
91 #define OMAP3ISP_AEWB_MAX_WINSTART 4095
92 #define OMAP3ISP_AEWB_MIN_SUB_INC 2
93 #define OMAP3ISP_AEWB_MAX_SUB_INC 32
94 #define OMAP3ISP_AEWB_MAX_BUF_SIZE 83600
95 
96 #define OMAP3ISP_AF_IIRSH_MIN 0
97 #define OMAP3ISP_AF_IIRSH_MAX 4095
98 #define OMAP3ISP_AF_PAXEL_HORIZONTAL_COUNT_MIN 1
99 #define OMAP3ISP_AF_PAXEL_HORIZONTAL_COUNT_MAX 36
100 #define OMAP3ISP_AF_PAXEL_VERTICAL_COUNT_MIN 1
101 #define OMAP3ISP_AF_PAXEL_VERTICAL_COUNT_MAX 128
102 #define OMAP3ISP_AF_PAXEL_INCREMENT_MIN 2
103 #define OMAP3ISP_AF_PAXEL_INCREMENT_MAX 32
104 #define OMAP3ISP_AF_PAXEL_HEIGHT_MIN 2
105 #define OMAP3ISP_AF_PAXEL_HEIGHT_MAX 256
106 #define OMAP3ISP_AF_PAXEL_WIDTH_MIN 16
107 #define OMAP3ISP_AF_PAXEL_WIDTH_MAX 256
108 #define OMAP3ISP_AF_PAXEL_HZSTART_MIN 1
109 #define OMAP3ISP_AF_PAXEL_HZSTART_MAX 4095
110 #define OMAP3ISP_AF_PAXEL_VTSTART_MIN 0
111 #define OMAP3ISP_AF_PAXEL_VTSTART_MAX 4095
112 #define OMAP3ISP_AF_THRESHOLD_MAX 255
113 #define OMAP3ISP_AF_COEF_MAX 4095
114 #define OMAP3ISP_AF_PAXEL_SIZE 48
115 #define OMAP3ISP_AF_MAX_BUF_SIZE 221184
116 
135  /*
136  * Common fields.
137  * They should be the first ones and must be in the same order as in
138  * ispstat_generic_config struct.
139  */
142 
143  /* Private fields */
156 };
157 
167  struct timeval ts;
168  void __user *buf;
173 };
174 
175 
176 /* Histogram related structs */
177 
178 /* Flags for number of bins */
179 #define OMAP3ISP_HIST_BINS_32 0
180 #define OMAP3ISP_HIST_BINS_64 1
181 #define OMAP3ISP_HIST_BINS_128 2
182 #define OMAP3ISP_HIST_BINS_256 3
183 
184 /* Number of bins * 4 colors * 4-bytes word */
185 #define OMAP3ISP_HIST_MEM_SIZE_BINS(n) ((1 << ((n)+5))*4*4)
186 
187 #define OMAP3ISP_HIST_MEM_SIZE 1024
188 #define OMAP3ISP_HIST_MIN_REGIONS 1
189 #define OMAP3ISP_HIST_MAX_REGIONS 4
190 #define OMAP3ISP_HIST_MAX_WB_GAIN 255
191 #define OMAP3ISP_HIST_MIN_WB_GAIN 0
192 #define OMAP3ISP_HIST_MAX_BIT_WIDTH 14
193 #define OMAP3ISP_HIST_MIN_BIT_WIDTH 8
194 #define OMAP3ISP_HIST_MAX_WG 4
195 #define OMAP3ISP_HIST_MAX_BUF_SIZE 4096
196 
197 /* Source */
198 #define OMAP3ISP_HIST_SOURCE_CCDC 0
199 #define OMAP3ISP_HIST_SOURCE_MEM 1
200 
201 /* CFA pattern */
202 #define OMAP3ISP_HIST_CFA_BAYER 0
203 #define OMAP3ISP_HIST_CFA_FOVEONX3 1
204 
210 };
211 
213  /*
214  * Common fields.
215  * They should be the first ones and must be in the same order as in
216  * ispstat_generic_config struct.
217  */
220 
221  __u8 num_acc_frames; /* Num of image frames to be processed and
222  accumulated for each histogram frame */
223  __u16 hist_bins; /* number of bins: 32, 64, 128, or 256 */
224  __u8 cfa; /* BAYER or FOVEON X3 */
225  __u8 wg[OMAP3ISP_HIST_MAX_WG]; /* White Balance Gain */
226  __u8 num_regions; /* number of regions to be configured */
228 };
229 
230 /* Auto Focus related structs */
231 
232 #define OMAP3ISP_AF_NUM_COEF 11
233 
237 };
238 
239 /* Red, Green, and blue pixel location in the AF windows */
241  OMAP3ISP_AF_GR_GB_BAYER = 0, /* GR and GB as Bayer pattern */
242  OMAP3ISP_AF_RG_GB_BAYER = 1, /* RG and GB as Bayer pattern */
243  OMAP3ISP_AF_GR_BG_BAYER = 2, /* GR and BG as Bayer pattern */
244  OMAP3ISP_AF_RG_BG_BAYER = 3, /* RG and BG as Bayer pattern */
245  OMAP3ISP_AF_GG_RB_CUSTOM = 4, /* GG and RB as custom pattern */
246  OMAP3ISP_AF_RB_GG_CUSTOM = 5 /* RB and GG as custom pattern */
247 };
248 
249 /* Contains the information regarding the Horizontal Median Filter */
251  __u8 enable; /* Status of Horizontal Median Filter */
252  __u8 threshold; /* Threshold Value for Horizontal Median Filter */
253 };
254 
255 /* Contains the information regarding the IIR Filters */
257  __u16 h_start; /* IIR horizontal start */
258  __u16 coeff_set0[OMAP3ISP_AF_NUM_COEF]; /* Filter coefficient, set 0 */
259  __u16 coeff_set1[OMAP3ISP_AF_NUM_COEF]; /* Filter coefficient, set 1 */
260 };
261 
262 /* Contains the information regarding the Paxels Structure in AF Engine */
264  __u16 h_start; /* Horizontal Start Position */
265  __u16 v_start; /* Vertical Start Position */
266  __u8 width; /* Width of the Paxel */
267  __u8 height; /* Height of the Paxel */
268  __u8 h_cnt; /* Horizontal Count */
269  __u8 v_cnt; /* vertical Count */
270  __u8 line_inc; /* Line Increment */
271 };
272 
273 /* Contains the parameters required for hardware set up of AF Engine */
275  /*
276  * Common fields.
277  * They should be the first ones and must be in the same order as in
278  * ispstat_generic_config struct.
279  */
282 
283  struct omap3isp_h3a_af_hmf hmf; /* HMF configurations */
284  struct omap3isp_h3a_af_iir iir; /* IIR filter configurations */
285  struct omap3isp_h3a_af_paxel paxel; /* Paxel parameters */
286  enum omap3isp_h3a_af_rgbpos rgb_pos; /* RGB Positions */
287  enum omap3isp_h3a_af_fvmode fvmode; /* Accumulator mode */
288  __u8 alaw_enable; /* AF ALAW status */
289 };
290 
291 /* ISP CCDC structs */
292 
293 /* Abstraction layer CCDC configurations */
294 #define OMAP3ISP_CCDC_ALAW (1 << 0)
295 #define OMAP3ISP_CCDC_LPF (1 << 1)
296 #define OMAP3ISP_CCDC_BLCLAMP (1 << 2)
297 #define OMAP3ISP_CCDC_BCOMP (1 << 3)
298 #define OMAP3ISP_CCDC_FPC (1 << 4)
299 #define OMAP3ISP_CCDC_CULL (1 << 5)
300 #define OMAP3ISP_CCDC_CONFIG_LSC (1 << 7)
301 #define OMAP3ISP_CCDC_TBL_LSC (1 << 8)
302 
303 #define OMAP3ISP_RGB_MAX 3
304 
305 /* Enumeration constants for Alaw input width */
311 };
312 
342 };
343 
358 };
359 
368 };
369 
382 };
383 
394 };
395 
417 };
418 
419 /* Preview configurations */
420 #define OMAP3ISP_PREV_LUMAENH (1 << 0)
421 #define OMAP3ISP_PREV_INVALAW (1 << 1)
422 #define OMAP3ISP_PREV_HRZ_MED (1 << 2)
423 #define OMAP3ISP_PREV_CFA (1 << 3)
424 #define OMAP3ISP_PREV_CHROMA_SUPP (1 << 4)
425 #define OMAP3ISP_PREV_WB (1 << 5)
426 #define OMAP3ISP_PREV_BLKADJ (1 << 6)
427 #define OMAP3ISP_PREV_RGB2RGB (1 << 7)
428 #define OMAP3ISP_PREV_COLOR_CONV (1 << 8)
429 #define OMAP3ISP_PREV_YC_LIMIT (1 << 9)
430 #define OMAP3ISP_PREV_DEFECT_COR (1 << 10)
431 /* Bit 11 was OMAP3ISP_PREV_GAMMABYPASS, now merged with OMAP3ISP_PREV_GAMMA */
432 #define OMAP3ISP_PREV_DRK_FRM_CAPTURE (1 << 12)
433 #define OMAP3ISP_PREV_DRK_FRM_SUBTRACT (1 << 13)
434 #define OMAP3ISP_PREV_LENS_SHADING (1 << 14)
435 #define OMAP3ISP_PREV_NF (1 << 15)
436 #define OMAP3ISP_PREV_GAMMA (1 << 16)
437 
438 #define OMAP3ISP_PREV_NF_TBL_SIZE 64
439 #define OMAP3ISP_PREV_CFA_TBL_SIZE 576
440 #define OMAP3ISP_PREV_CFA_BLK_SIZE (OMAP3ISP_PREV_CFA_TBL_SIZE / 4)
441 #define OMAP3ISP_PREV_GAMMA_TBL_SIZE 1024
442 #define OMAP3ISP_PREV_YENH_TBL_SIZE 128
443 
444 #define OMAP3ISP_PREV_DETECT_CORRECT_CHANNELS 4
445 
457 };
458 
459 /*
460  * Enumeration for CFA Formats supported by preview
461  */
469 };
470 
483 };
484 
495 };
496 
511 };
512 
520  /*Black level offset adjustment for Red in 2's complement format */
522  /*Black level offset adjustment for Green in 2's complement format */
524  /* Black level offset adjustment for Blue in 2's complement format */
526 };
527 
539 };
540 
552 };
553 
566 };
567 
576 };
577 
586 };
587 
598 };
599 
606 };
607 
644 };
645 
646 #endif /* OMAP3_ISP_USER_H */