4 * TI OMAP3 ISP driver - Preview module
6 * Copyright (C) 2010 Nokia Corporation
7 * Copyright (C) 2009 Texas Instruments, Inc.
9 * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10 * Sakari Ailus <sakari.ailus@iki.fi>
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.
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.
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
27 #include <linux/device.h>
29 #include <linux/module.h>
30 #include <linux/mutex.h>
31 #include <linux/uaccess.h>
35 #include "isppreview.h"
37 /* Default values in Office Fluorescent Light for RGBtoRGB Blending */
38 static struct omap3isp_prev_rgbtorgb flr_rgb2rgb = {
39 { /* RGB-RGB Matrix */
40 {0x01E2, 0x0F30, 0x0FEE},
41 {0x0F9B, 0x01AC, 0x0FB9},
42 {0x0FE0, 0x0EC0, 0x0260}
44 {0x0000, 0x0000, 0x0000}
47 /* Default values in Office Fluorescent Light for RGB to YUV Conversion*/
48 static struct omap3isp_prev_csc flr_prev_csc = {
49 { /* CSC Coef Matrix */
57 /* Default values in Office Fluorescent Light for CFA Gradient*/
58 #define FLR_CFA_GRADTHRS_HORZ 0x28
59 #define FLR_CFA_GRADTHRS_VERT 0x28
61 /* Default values in Office Fluorescent Light for Chroma Suppression*/
62 #define FLR_CSUP_GAIN 0x0D
63 #define FLR_CSUP_THRES 0xEB
65 /* Default values in Office Fluorescent Light for Noise Filter*/
66 #define FLR_NF_STRGTH 0x03
68 /* Default values for White Balance */
69 #define FLR_WBAL_DGAIN 0x100
70 #define FLR_WBAL_COEF 0x20
72 /* Default values in Office Fluorescent Light for Black Adjustment*/
73 #define FLR_BLKADJ_BLUE 0x0
74 #define FLR_BLKADJ_GREEN 0x0
75 #define FLR_BLKADJ_RED 0x0
77 #define DEF_DETECT_CORRECT_VAL 0xe
80 * Margins and image size limits.
82 * The preview engine crops several rows and columns internally depending on
83 * which filters are enabled. To avoid format changes when the filters are
84 * enabled or disabled (which would prevent them from being turned on or off
85 * during streaming), the driver assumes all the filters are enabled when
86 * computing sink crop and source format limits.
88 * If a filter is disabled, additional cropping is automatically added at the
89 * preview engine input by the driver to avoid overflow at line and frame end.
90 * This is completely transparent for applications.
92 * Median filter 4 pixels
94 * Faulty pixels correction 4 pixels, 4 lines
95 * CFA filter 4 pixels, 4 lines in Bayer mode
96 * 2 lines in other modes
97 * Color suppression 2 pixels
99 * -------------------------------------------------------------
100 * Maximum total 14 pixels, 8 lines
102 * The color suppression and luma enhancement filters are applied after bayer to
103 * YUV conversion. They thus can crop one pixel on the left and one pixel on the
104 * right side of the image without changing the color pattern. When both those
105 * filters are disabled, the driver must crop the two pixels on the same side of
106 * the image to avoid changing the bayer pattern. The left margin is thus set to
107 * 8 pixels and the right margin to 6 pixels.
110 #define PREV_MARGIN_LEFT 8
111 #define PREV_MARGIN_RIGHT 6
112 #define PREV_MARGIN_TOP 4
113 #define PREV_MARGIN_BOTTOM 4
115 #define PREV_MIN_IN_WIDTH 64
116 #define PREV_MIN_IN_HEIGHT 8
117 #define PREV_MAX_IN_HEIGHT 16384
119 #define PREV_MIN_OUT_WIDTH 0
120 #define PREV_MIN_OUT_HEIGHT 0
121 #define PREV_MAX_OUT_WIDTH_REV_1 1280
122 #define PREV_MAX_OUT_WIDTH_REV_2 3300
123 #define PREV_MAX_OUT_WIDTH_REV_15 4096
126 * Coeficient Tables for the submodules in Preview.
127 * Array is initialised with the values from.the tables text file.
131 * CFA Filter Coefficient Table
134 static u32 cfa_coef_table[4][OMAP3ISP_PREV_CFA_BLK_SIZE] = {
135 #include "cfa_coef_table.h"
139 * Default Gamma Correction Table - All components
141 static u32 gamma_table[] = {
142 #include "gamma_table.h"
146 * Noise Filter Threshold table
148 static u32 noise_filter_table[] = {
149 #include "noise_filter_table.h"
153 * Luminance Enhancement Table
155 static u32 luma_enhance_table[] = {
156 #include "luma_enhance_table.h"
160 * preview_config_luma_enhancement - Configure the Luminance Enhancement table
163 preview_config_luma_enhancement(struct isp_prev_device *prev,
164 const struct prev_params *params)
166 struct isp_device *isp = to_isp_device(prev);
167 const struct omap3isp_prev_luma *yt = ¶ms->luma;
170 isp_reg_writel(isp, ISPPRV_YENH_TABLE_ADDR,
171 OMAP3_ISP_IOMEM_PREV, ISPPRV_SET_TBL_ADDR);
172 for (i = 0; i < OMAP3ISP_PREV_YENH_TBL_SIZE; i++) {
173 isp_reg_writel(isp, yt->table[i],
174 OMAP3_ISP_IOMEM_PREV, ISPPRV_SET_TBL_DATA);
179 * preview_enable_luma_enhancement - Enable/disable Luminance Enhancement
182 preview_enable_luma_enhancement(struct isp_prev_device *prev, bool enable)
184 struct isp_device *isp = to_isp_device(prev);
187 isp_reg_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
190 isp_reg_clr(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
195 * preview_enable_invalaw - Enable/disable Inverse A-Law decompression
197 static void preview_enable_invalaw(struct isp_prev_device *prev, bool enable)
199 struct isp_device *isp = to_isp_device(prev);
202 isp_reg_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
203 ISPPRV_PCR_WIDTH | ISPPRV_PCR_INVALAW);
205 isp_reg_clr(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
206 ISPPRV_PCR_WIDTH | ISPPRV_PCR_INVALAW);
210 * preview_config_hmed - Configure the Horizontal Median Filter
212 static void preview_config_hmed(struct isp_prev_device *prev,
213 const struct prev_params *params)
215 struct isp_device *isp = to_isp_device(prev);
216 const struct omap3isp_prev_hmed *hmed = ¶ms->hmed;
218 isp_reg_writel(isp, (hmed->odddist == 1 ? 0 : ISPPRV_HMED_ODDDIST) |
219 (hmed->evendist == 1 ? 0 : ISPPRV_HMED_EVENDIST) |
220 (hmed->thres << ISPPRV_HMED_THRESHOLD_SHIFT),
221 OMAP3_ISP_IOMEM_PREV, ISPPRV_HMED);
225 * preview_enable_hmed - Enable/disable the Horizontal Median Filter
227 static void preview_enable_hmed(struct isp_prev_device *prev, bool enable)
229 struct isp_device *isp = to_isp_device(prev);
232 isp_reg_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
235 isp_reg_clr(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
240 * preview_config_cfa - Configure CFA Interpolation for Bayer formats
242 * The CFA table is organised in four blocks, one per Bayer component. The
243 * hardware expects blocks to follow the Bayer order of the input data, while
244 * the driver stores the table in GRBG order in memory. The blocks need to be
245 * reordered to support non-GRBG Bayer patterns.
247 static void preview_config_cfa(struct isp_prev_device *prev,
248 const struct prev_params *params)
250 static const unsigned int cfa_coef_order[4][4] = {
251 { 0, 1, 2, 3 }, /* GRBG */
252 { 1, 0, 3, 2 }, /* RGGB */
253 { 2, 3, 0, 1 }, /* BGGR */
254 { 3, 2, 1, 0 }, /* GBRG */
256 const unsigned int *order = cfa_coef_order[prev->params.cfa_order];
257 const struct omap3isp_prev_cfa *cfa = ¶ms->cfa;
258 struct isp_device *isp = to_isp_device(prev);
263 (cfa->gradthrs_vert << ISPPRV_CFA_GRADTH_VER_SHIFT) |
264 (cfa->gradthrs_horz << ISPPRV_CFA_GRADTH_HOR_SHIFT),
265 OMAP3_ISP_IOMEM_PREV, ISPPRV_CFA);
267 isp_reg_writel(isp, ISPPRV_CFA_TABLE_ADDR,
268 OMAP3_ISP_IOMEM_PREV, ISPPRV_SET_TBL_ADDR);
270 for (i = 0; i < 4; ++i) {
271 const __u32 *block = cfa->table[order[i]];
273 for (j = 0; j < OMAP3ISP_PREV_CFA_BLK_SIZE; ++j)
274 isp_reg_writel(isp, block[j], OMAP3_ISP_IOMEM_PREV,
275 ISPPRV_SET_TBL_DATA);
280 * preview_config_chroma_suppression - Configure Chroma Suppression
283 preview_config_chroma_suppression(struct isp_prev_device *prev,
284 const struct prev_params *params)
286 struct isp_device *isp = to_isp_device(prev);
287 const struct omap3isp_prev_csup *cs = ¶ms->csup;
290 cs->gain | (cs->thres << ISPPRV_CSUP_THRES_SHIFT) |
291 (cs->hypf_en << ISPPRV_CSUP_HPYF_SHIFT),
292 OMAP3_ISP_IOMEM_PREV, ISPPRV_CSUP);
296 * preview_enable_chroma_suppression - Enable/disable Chrominance Suppression
299 preview_enable_chroma_suppression(struct isp_prev_device *prev, bool enable)
301 struct isp_device *isp = to_isp_device(prev);
304 isp_reg_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
307 isp_reg_clr(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
312 * preview_config_whitebalance - Configure White Balance parameters
314 * Coefficient matrix always with default values.
317 preview_config_whitebalance(struct isp_prev_device *prev,
318 const struct prev_params *params)
320 struct isp_device *isp = to_isp_device(prev);
321 const struct omap3isp_prev_wbal *wbal = ¶ms->wbal;
324 isp_reg_writel(isp, wbal->dgain, OMAP3_ISP_IOMEM_PREV, ISPPRV_WB_DGAIN);
326 val = wbal->coef0 << ISPPRV_WBGAIN_COEF0_SHIFT;
327 val |= wbal->coef1 << ISPPRV_WBGAIN_COEF1_SHIFT;
328 val |= wbal->coef2 << ISPPRV_WBGAIN_COEF2_SHIFT;
329 val |= wbal->coef3 << ISPPRV_WBGAIN_COEF3_SHIFT;
330 isp_reg_writel(isp, val, OMAP3_ISP_IOMEM_PREV, ISPPRV_WBGAIN);
333 ISPPRV_WBSEL_COEF0 << ISPPRV_WBSEL_N0_0_SHIFT |
334 ISPPRV_WBSEL_COEF1 << ISPPRV_WBSEL_N0_1_SHIFT |
335 ISPPRV_WBSEL_COEF0 << ISPPRV_WBSEL_N0_2_SHIFT |
336 ISPPRV_WBSEL_COEF1 << ISPPRV_WBSEL_N0_3_SHIFT |
337 ISPPRV_WBSEL_COEF2 << ISPPRV_WBSEL_N1_0_SHIFT |
338 ISPPRV_WBSEL_COEF3 << ISPPRV_WBSEL_N1_1_SHIFT |
339 ISPPRV_WBSEL_COEF2 << ISPPRV_WBSEL_N1_2_SHIFT |
340 ISPPRV_WBSEL_COEF3 << ISPPRV_WBSEL_N1_3_SHIFT |
341 ISPPRV_WBSEL_COEF0 << ISPPRV_WBSEL_N2_0_SHIFT |
342 ISPPRV_WBSEL_COEF1 << ISPPRV_WBSEL_N2_1_SHIFT |
343 ISPPRV_WBSEL_COEF0 << ISPPRV_WBSEL_N2_2_SHIFT |
344 ISPPRV_WBSEL_COEF1 << ISPPRV_WBSEL_N2_3_SHIFT |
345 ISPPRV_WBSEL_COEF2 << ISPPRV_WBSEL_N3_0_SHIFT |
346 ISPPRV_WBSEL_COEF3 << ISPPRV_WBSEL_N3_1_SHIFT |
347 ISPPRV_WBSEL_COEF2 << ISPPRV_WBSEL_N3_2_SHIFT |
348 ISPPRV_WBSEL_COEF3 << ISPPRV_WBSEL_N3_3_SHIFT,
349 OMAP3_ISP_IOMEM_PREV, ISPPRV_WBSEL);
353 * preview_config_blkadj - Configure Black Adjustment
356 preview_config_blkadj(struct isp_prev_device *prev,
357 const struct prev_params *params)
359 struct isp_device *isp = to_isp_device(prev);
360 const struct omap3isp_prev_blkadj *blkadj = ¶ms->blkadj;
362 isp_reg_writel(isp, (blkadj->blue << ISPPRV_BLKADJOFF_B_SHIFT) |
363 (blkadj->green << ISPPRV_BLKADJOFF_G_SHIFT) |
364 (blkadj->red << ISPPRV_BLKADJOFF_R_SHIFT),
365 OMAP3_ISP_IOMEM_PREV, ISPPRV_BLKADJOFF);
369 * preview_config_rgb_blending - Configure RGB-RGB Blending
372 preview_config_rgb_blending(struct isp_prev_device *prev,
373 const struct prev_params *params)
375 struct isp_device *isp = to_isp_device(prev);
376 const struct omap3isp_prev_rgbtorgb *rgbrgb = ¶ms->rgb2rgb;
379 val = (rgbrgb->matrix[0][0] & 0xfff) << ISPPRV_RGB_MAT1_MTX_RR_SHIFT;
380 val |= (rgbrgb->matrix[0][1] & 0xfff) << ISPPRV_RGB_MAT1_MTX_GR_SHIFT;
381 isp_reg_writel(isp, val, OMAP3_ISP_IOMEM_PREV, ISPPRV_RGB_MAT1);
383 val = (rgbrgb->matrix[0][2] & 0xfff) << ISPPRV_RGB_MAT2_MTX_BR_SHIFT;
384 val |= (rgbrgb->matrix[1][0] & 0xfff) << ISPPRV_RGB_MAT2_MTX_RG_SHIFT;
385 isp_reg_writel(isp, val, OMAP3_ISP_IOMEM_PREV, ISPPRV_RGB_MAT2);
387 val = (rgbrgb->matrix[1][1] & 0xfff) << ISPPRV_RGB_MAT3_MTX_GG_SHIFT;
388 val |= (rgbrgb->matrix[1][2] & 0xfff) << ISPPRV_RGB_MAT3_MTX_BG_SHIFT;
389 isp_reg_writel(isp, val, OMAP3_ISP_IOMEM_PREV, ISPPRV_RGB_MAT3);
391 val = (rgbrgb->matrix[2][0] & 0xfff) << ISPPRV_RGB_MAT4_MTX_RB_SHIFT;
392 val |= (rgbrgb->matrix[2][1] & 0xfff) << ISPPRV_RGB_MAT4_MTX_GB_SHIFT;
393 isp_reg_writel(isp, val, OMAP3_ISP_IOMEM_PREV, ISPPRV_RGB_MAT4);
395 val = (rgbrgb->matrix[2][2] & 0xfff) << ISPPRV_RGB_MAT5_MTX_BB_SHIFT;
396 isp_reg_writel(isp, val, OMAP3_ISP_IOMEM_PREV, ISPPRV_RGB_MAT5);
398 val = (rgbrgb->offset[0] & 0x3ff) << ISPPRV_RGB_OFF1_MTX_OFFR_SHIFT;
399 val |= (rgbrgb->offset[1] & 0x3ff) << ISPPRV_RGB_OFF1_MTX_OFFG_SHIFT;
400 isp_reg_writel(isp, val, OMAP3_ISP_IOMEM_PREV, ISPPRV_RGB_OFF1);
402 val = (rgbrgb->offset[2] & 0x3ff) << ISPPRV_RGB_OFF2_MTX_OFFB_SHIFT;
403 isp_reg_writel(isp, val, OMAP3_ISP_IOMEM_PREV, ISPPRV_RGB_OFF2);
407 * preview_config_csc - Configure Color Space Conversion (RGB to YCbYCr)
410 preview_config_csc(struct isp_prev_device *prev,
411 const struct prev_params *params)
413 struct isp_device *isp = to_isp_device(prev);
414 const struct omap3isp_prev_csc *csc = ¶ms->csc;
417 val = (csc->matrix[0][0] & 0x3ff) << ISPPRV_CSC0_RY_SHIFT;
418 val |= (csc->matrix[0][1] & 0x3ff) << ISPPRV_CSC0_GY_SHIFT;
419 val |= (csc->matrix[0][2] & 0x3ff) << ISPPRV_CSC0_BY_SHIFT;
420 isp_reg_writel(isp, val, OMAP3_ISP_IOMEM_PREV, ISPPRV_CSC0);
422 val = (csc->matrix[1][0] & 0x3ff) << ISPPRV_CSC1_RCB_SHIFT;
423 val |= (csc->matrix[1][1] & 0x3ff) << ISPPRV_CSC1_GCB_SHIFT;
424 val |= (csc->matrix[1][2] & 0x3ff) << ISPPRV_CSC1_BCB_SHIFT;
425 isp_reg_writel(isp, val, OMAP3_ISP_IOMEM_PREV, ISPPRV_CSC1);
427 val = (csc->matrix[2][0] & 0x3ff) << ISPPRV_CSC2_RCR_SHIFT;
428 val |= (csc->matrix[2][1] & 0x3ff) << ISPPRV_CSC2_GCR_SHIFT;
429 val |= (csc->matrix[2][2] & 0x3ff) << ISPPRV_CSC2_BCR_SHIFT;
430 isp_reg_writel(isp, val, OMAP3_ISP_IOMEM_PREV, ISPPRV_CSC2);
432 val = (csc->offset[0] & 0xff) << ISPPRV_CSC_OFFSET_Y_SHIFT;
433 val |= (csc->offset[1] & 0xff) << ISPPRV_CSC_OFFSET_CB_SHIFT;
434 val |= (csc->offset[2] & 0xff) << ISPPRV_CSC_OFFSET_CR_SHIFT;
435 isp_reg_writel(isp, val, OMAP3_ISP_IOMEM_PREV, ISPPRV_CSC_OFFSET);
439 * preview_config_yc_range - Configure the max and min Y and C values
442 preview_config_yc_range(struct isp_prev_device *prev,
443 const struct prev_params *params)
445 struct isp_device *isp = to_isp_device(prev);
446 const struct omap3isp_prev_yclimit *yc = ¶ms->yclimit;
449 yc->maxC << ISPPRV_SETUP_YC_MAXC_SHIFT |
450 yc->maxY << ISPPRV_SETUP_YC_MAXY_SHIFT |
451 yc->minC << ISPPRV_SETUP_YC_MINC_SHIFT |
452 yc->minY << ISPPRV_SETUP_YC_MINY_SHIFT,
453 OMAP3_ISP_IOMEM_PREV, ISPPRV_SETUP_YC);
457 * preview_config_dcor - Configure Couplet Defect Correction
460 preview_config_dcor(struct isp_prev_device *prev,
461 const struct prev_params *params)
463 struct isp_device *isp = to_isp_device(prev);
464 const struct omap3isp_prev_dcor *dcor = ¶ms->dcor;
466 isp_reg_writel(isp, dcor->detect_correct[0],
467 OMAP3_ISP_IOMEM_PREV, ISPPRV_CDC_THR0);
468 isp_reg_writel(isp, dcor->detect_correct[1],
469 OMAP3_ISP_IOMEM_PREV, ISPPRV_CDC_THR1);
470 isp_reg_writel(isp, dcor->detect_correct[2],
471 OMAP3_ISP_IOMEM_PREV, ISPPRV_CDC_THR2);
472 isp_reg_writel(isp, dcor->detect_correct[3],
473 OMAP3_ISP_IOMEM_PREV, ISPPRV_CDC_THR3);
474 isp_reg_clr_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
476 dcor->couplet_mode_en ? ISPPRV_PCR_DCCOUP : 0);
480 * preview_enable_dcor - Enable/disable Couplet Defect Correction
482 static void preview_enable_dcor(struct isp_prev_device *prev, bool enable)
484 struct isp_device *isp = to_isp_device(prev);
487 isp_reg_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
490 isp_reg_clr(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
495 * preview_enable_drkframe_capture - Enable/disable Dark Frame Capture
498 preview_enable_drkframe_capture(struct isp_prev_device *prev, bool enable)
500 struct isp_device *isp = to_isp_device(prev);
503 isp_reg_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
506 isp_reg_clr(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
511 * preview_enable_drkframe - Enable/disable Dark Frame Subtraction
513 static void preview_enable_drkframe(struct isp_prev_device *prev, bool enable)
515 struct isp_device *isp = to_isp_device(prev);
518 isp_reg_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
521 isp_reg_clr(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
526 * preview_config_noisefilter - Configure the Noise Filter
529 preview_config_noisefilter(struct isp_prev_device *prev,
530 const struct prev_params *params)
532 struct isp_device *isp = to_isp_device(prev);
533 const struct omap3isp_prev_nf *nf = ¶ms->nf;
536 isp_reg_writel(isp, nf->spread, OMAP3_ISP_IOMEM_PREV, ISPPRV_NF);
537 isp_reg_writel(isp, ISPPRV_NF_TABLE_ADDR,
538 OMAP3_ISP_IOMEM_PREV, ISPPRV_SET_TBL_ADDR);
539 for (i = 0; i < OMAP3ISP_PREV_NF_TBL_SIZE; i++) {
540 isp_reg_writel(isp, nf->table[i],
541 OMAP3_ISP_IOMEM_PREV, ISPPRV_SET_TBL_DATA);
546 * preview_enable_noisefilter - Enable/disable the Noise Filter
549 preview_enable_noisefilter(struct isp_prev_device *prev, bool enable)
551 struct isp_device *isp = to_isp_device(prev);
554 isp_reg_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
557 isp_reg_clr(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
562 * preview_config_gammacorrn - Configure the Gamma Correction tables
565 preview_config_gammacorrn(struct isp_prev_device *prev,
566 const struct prev_params *params)
568 struct isp_device *isp = to_isp_device(prev);
569 const struct omap3isp_prev_gtables *gt = ¶ms->gamma;
572 isp_reg_writel(isp, ISPPRV_REDGAMMA_TABLE_ADDR,
573 OMAP3_ISP_IOMEM_PREV, ISPPRV_SET_TBL_ADDR);
574 for (i = 0; i < OMAP3ISP_PREV_GAMMA_TBL_SIZE; i++)
575 isp_reg_writel(isp, gt->red[i], OMAP3_ISP_IOMEM_PREV,
576 ISPPRV_SET_TBL_DATA);
578 isp_reg_writel(isp, ISPPRV_GREENGAMMA_TABLE_ADDR,
579 OMAP3_ISP_IOMEM_PREV, ISPPRV_SET_TBL_ADDR);
580 for (i = 0; i < OMAP3ISP_PREV_GAMMA_TBL_SIZE; i++)
581 isp_reg_writel(isp, gt->green[i], OMAP3_ISP_IOMEM_PREV,
582 ISPPRV_SET_TBL_DATA);
584 isp_reg_writel(isp, ISPPRV_BLUEGAMMA_TABLE_ADDR,
585 OMAP3_ISP_IOMEM_PREV, ISPPRV_SET_TBL_ADDR);
586 for (i = 0; i < OMAP3ISP_PREV_GAMMA_TBL_SIZE; i++)
587 isp_reg_writel(isp, gt->blue[i], OMAP3_ISP_IOMEM_PREV,
588 ISPPRV_SET_TBL_DATA);
592 * preview_enable_gammacorrn - Enable/disable Gamma Correction
594 * When gamma correction is disabled, the module is bypassed and its output is
595 * the 8 MSB of the 10-bit input .
598 preview_enable_gammacorrn(struct isp_prev_device *prev, bool enable)
600 struct isp_device *isp = to_isp_device(prev);
603 isp_reg_clr(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
604 ISPPRV_PCR_GAMMA_BYPASS);
606 isp_reg_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
607 ISPPRV_PCR_GAMMA_BYPASS);
611 * preview_config_contrast - Configure the Contrast
613 * Value should be programmed before enabling the module.
616 preview_config_contrast(struct isp_prev_device *prev,
617 const struct prev_params *params)
619 struct isp_device *isp = to_isp_device(prev);
621 isp_reg_clr_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_CNT_BRT,
622 0xff << ISPPRV_CNT_BRT_CNT_SHIFT,
623 params->contrast << ISPPRV_CNT_BRT_CNT_SHIFT);
627 * preview_config_brightness - Configure the Brightness
630 preview_config_brightness(struct isp_prev_device *prev,
631 const struct prev_params *params)
633 struct isp_device *isp = to_isp_device(prev);
635 isp_reg_clr_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_CNT_BRT,
636 0xff << ISPPRV_CNT_BRT_BRT_SHIFT,
637 params->brightness << ISPPRV_CNT_BRT_BRT_SHIFT);
641 * preview_update_contrast - Updates the contrast.
642 * @contrast: Pointer to hold the current programmed contrast value.
644 * Value should be programmed before enabling the module.
647 preview_update_contrast(struct isp_prev_device *prev, u8 contrast)
649 struct prev_params *params;
652 spin_lock_irqsave(&prev->params.lock, flags);
653 params = (prev->params.active & OMAP3ISP_PREV_CONTRAST)
654 ? &prev->params.params[0] : &prev->params.params[1];
656 if (params->contrast != (contrast * ISPPRV_CONTRAST_UNITS)) {
657 params->contrast = contrast * ISPPRV_CONTRAST_UNITS;
658 params->update |= OMAP3ISP_PREV_CONTRAST;
660 spin_unlock_irqrestore(&prev->params.lock, flags);
664 * preview_update_brightness - Updates the brightness in preview module.
665 * @brightness: Pointer to hold the current programmed brightness value.
669 preview_update_brightness(struct isp_prev_device *prev, u8 brightness)
671 struct prev_params *params;
674 spin_lock_irqsave(&prev->params.lock, flags);
675 params = (prev->params.active & OMAP3ISP_PREV_BRIGHTNESS)
676 ? &prev->params.params[0] : &prev->params.params[1];
678 if (params->brightness != (brightness * ISPPRV_BRIGHT_UNITS)) {
679 params->brightness = brightness * ISPPRV_BRIGHT_UNITS;
680 params->update |= OMAP3ISP_PREV_BRIGHTNESS;
682 spin_unlock_irqrestore(&prev->params.lock, flags);
686 preview_params_lock(struct isp_prev_device *prev, u32 update, bool shadow)
688 u32 active = prev->params.active;
691 /* Mark all shadow parameters we are going to touch as busy. */
692 prev->params.params[0].busy |= ~active & update;
693 prev->params.params[1].busy |= active & update;
695 /* Mark all active parameters we are going to touch as busy. */
696 update = (prev->params.params[0].update & active)
697 | (prev->params.params[1].update & ~active);
699 prev->params.params[0].busy |= active & update;
700 prev->params.params[1].busy |= ~active & update;
707 preview_params_unlock(struct isp_prev_device *prev, u32 update, bool shadow)
709 u32 active = prev->params.active;
712 /* Set the update flag for shadow parameters that have been
713 * updated and clear the busy flag for all shadow parameters.
715 prev->params.params[0].update |= (~active & update);
716 prev->params.params[1].update |= (active & update);
717 prev->params.params[0].busy &= active;
718 prev->params.params[1].busy &= ~active;
720 /* Clear the update flag for active parameters that have been
721 * applied and the busy flag for all active parameters.
723 prev->params.params[0].update &= ~(active & update);
724 prev->params.params[1].update &= ~(~active & update);
725 prev->params.params[0].busy &= ~active;
726 prev->params.params[1].busy &= active;
730 static void preview_params_switch(struct isp_prev_device *prev)
734 /* Switch active parameters with updated shadow parameters when the
735 * shadow parameter has been updated and neither the active not the
736 * shadow parameter is busy.
738 to_switch = (prev->params.params[0].update & ~prev->params.active)
739 | (prev->params.params[1].update & prev->params.active);
740 to_switch &= ~(prev->params.params[0].busy |
741 prev->params.params[1].busy);
745 prev->params.active ^= to_switch;
747 /* Remove the update flag for the shadow copy of parameters we have
750 prev->params.params[0].update &= ~(~prev->params.active & to_switch);
751 prev->params.params[1].update &= ~(prev->params.active & to_switch);
754 /* preview parameters update structure */
755 struct preview_update {
756 void (*config)(struct isp_prev_device *, const struct prev_params *);
757 void (*enable)(struct isp_prev_device *, bool);
758 unsigned int param_offset;
759 unsigned int param_size;
760 unsigned int config_offset;
764 /* Keep the array indexed by the OMAP3ISP_PREV_* bit number. */
765 static const struct preview_update update_attrs[] = {
766 /* OMAP3ISP_PREV_LUMAENH */ {
767 preview_config_luma_enhancement,
768 preview_enable_luma_enhancement,
769 offsetof(struct prev_params, luma),
770 FIELD_SIZEOF(struct prev_params, luma),
771 offsetof(struct omap3isp_prev_update_config, luma),
772 }, /* OMAP3ISP_PREV_INVALAW */ {
774 preview_enable_invalaw,
775 }, /* OMAP3ISP_PREV_HRZ_MED */ {
778 offsetof(struct prev_params, hmed),
779 FIELD_SIZEOF(struct prev_params, hmed),
780 offsetof(struct omap3isp_prev_update_config, hmed),
781 }, /* OMAP3ISP_PREV_CFA */ {
784 offsetof(struct prev_params, cfa),
785 FIELD_SIZEOF(struct prev_params, cfa),
786 offsetof(struct omap3isp_prev_update_config, cfa),
787 }, /* OMAP3ISP_PREV_CHROMA_SUPP */ {
788 preview_config_chroma_suppression,
789 preview_enable_chroma_suppression,
790 offsetof(struct prev_params, csup),
791 FIELD_SIZEOF(struct prev_params, csup),
792 offsetof(struct omap3isp_prev_update_config, csup),
793 }, /* OMAP3ISP_PREV_WB */ {
794 preview_config_whitebalance,
796 offsetof(struct prev_params, wbal),
797 FIELD_SIZEOF(struct prev_params, wbal),
798 offsetof(struct omap3isp_prev_update_config, wbal),
799 }, /* OMAP3ISP_PREV_BLKADJ */ {
800 preview_config_blkadj,
802 offsetof(struct prev_params, blkadj),
803 FIELD_SIZEOF(struct prev_params, blkadj),
804 offsetof(struct omap3isp_prev_update_config, blkadj),
805 }, /* OMAP3ISP_PREV_RGB2RGB */ {
806 preview_config_rgb_blending,
808 offsetof(struct prev_params, rgb2rgb),
809 FIELD_SIZEOF(struct prev_params, rgb2rgb),
810 offsetof(struct omap3isp_prev_update_config, rgb2rgb),
811 }, /* OMAP3ISP_PREV_COLOR_CONV */ {
814 offsetof(struct prev_params, csc),
815 FIELD_SIZEOF(struct prev_params, csc),
816 offsetof(struct omap3isp_prev_update_config, csc),
817 }, /* OMAP3ISP_PREV_YC_LIMIT */ {
818 preview_config_yc_range,
820 offsetof(struct prev_params, yclimit),
821 FIELD_SIZEOF(struct prev_params, yclimit),
822 offsetof(struct omap3isp_prev_update_config, yclimit),
823 }, /* OMAP3ISP_PREV_DEFECT_COR */ {
826 offsetof(struct prev_params, dcor),
827 FIELD_SIZEOF(struct prev_params, dcor),
828 offsetof(struct omap3isp_prev_update_config, dcor),
829 }, /* Previously OMAP3ISP_PREV_GAMMABYPASS, not used anymore */ {
832 }, /* OMAP3ISP_PREV_DRK_FRM_CAPTURE */ {
834 preview_enable_drkframe_capture,
835 }, /* OMAP3ISP_PREV_DRK_FRM_SUBTRACT */ {
837 preview_enable_drkframe,
838 }, /* OMAP3ISP_PREV_LENS_SHADING */ {
840 preview_enable_drkframe,
841 }, /* OMAP3ISP_PREV_NF */ {
842 preview_config_noisefilter,
843 preview_enable_noisefilter,
844 offsetof(struct prev_params, nf),
845 FIELD_SIZEOF(struct prev_params, nf),
846 offsetof(struct omap3isp_prev_update_config, nf),
847 }, /* OMAP3ISP_PREV_GAMMA */ {
848 preview_config_gammacorrn,
849 preview_enable_gammacorrn,
850 offsetof(struct prev_params, gamma),
851 FIELD_SIZEOF(struct prev_params, gamma),
852 offsetof(struct omap3isp_prev_update_config, gamma),
853 }, /* OMAP3ISP_PREV_CONTRAST */ {
854 preview_config_contrast,
857 }, /* OMAP3ISP_PREV_BRIGHTNESS */ {
858 preview_config_brightness,
865 * preview_config - Copy and update local structure with userspace preview
867 * @prev: ISP preview engine
868 * @cfg: Configuration
870 * Return zero if success or -EFAULT if the configuration can't be copied from
873 static int preview_config(struct isp_prev_device *prev,
874 struct omap3isp_prev_update_config *cfg)
882 if (cfg->update == 0)
885 /* Mark the shadow parameters we're going to update as busy. */
886 spin_lock_irqsave(&prev->params.lock, flags);
887 preview_params_lock(prev, cfg->update, true);
888 active = prev->params.active;
889 spin_unlock_irqrestore(&prev->params.lock, flags);
893 for (i = 0; i < ARRAY_SIZE(update_attrs); i++) {
894 const struct preview_update *attr = &update_attrs[i];
895 struct prev_params *params;
896 unsigned int bit = 1 << i;
898 if (attr->skip || !(cfg->update & bit))
901 params = &prev->params.params[!!(active & bit)];
903 if (cfg->flag & bit) {
904 void __user *from = *(void * __user *)
905 ((void *)cfg + attr->config_offset);
906 void *to = (void *)params + attr->param_offset;
907 size_t size = attr->param_size;
909 if (to && from && size) {
910 if (copy_from_user(to, from, size)) {
915 params->features |= bit;
917 params->features &= ~bit;
923 spin_lock_irqsave(&prev->params.lock, flags);
924 preview_params_unlock(prev, update, true);
925 preview_params_switch(prev);
926 spin_unlock_irqrestore(&prev->params.lock, flags);
932 * preview_setup_hw - Setup preview registers and/or internal memory
933 * @prev: pointer to preview private structure
934 * @update: Bitmask of parameters to setup
935 * @active: Bitmask of parameters active in set 0
936 * Note: can be called from interrupt context
939 static void preview_setup_hw(struct isp_prev_device *prev, u32 update,
948 features = (prev->params.params[0].features & active)
949 | (prev->params.params[1].features & ~active);
951 for (i = 0; i < ARRAY_SIZE(update_attrs); i++) {
952 const struct preview_update *attr = &update_attrs[i];
953 struct prev_params *params;
954 unsigned int bit = 1 << i;
959 params = &prev->params.params[!(active & bit)];
961 if (params->features & bit) {
963 attr->config(prev, params);
965 attr->enable(prev, true);
968 attr->enable(prev, false);
974 * preview_config_ycpos - Configure byte layout of YUV image.
975 * @mode: Indicates the required byte layout.
978 preview_config_ycpos(struct isp_prev_device *prev,
979 enum v4l2_mbus_pixelcode pixelcode)
981 struct isp_device *isp = to_isp_device(prev);
982 enum preview_ycpos_mode mode;
985 case V4L2_MBUS_FMT_YUYV8_1X16:
988 case V4L2_MBUS_FMT_UYVY8_1X16:
995 isp_reg_clr_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
996 ISPPRV_PCR_YCPOS_CrYCbY,
997 mode << ISPPRV_PCR_YCPOS_SHIFT);
1001 * preview_config_averager - Enable / disable / configure averager
1002 * @average: Average value to be configured.
1004 static void preview_config_averager(struct isp_prev_device *prev, u8 average)
1006 struct isp_device *isp = to_isp_device(prev);
1008 isp_reg_writel(isp, ISPPRV_AVE_EVENDIST_2 << ISPPRV_AVE_EVENDIST_SHIFT |
1009 ISPPRV_AVE_ODDDIST_2 << ISPPRV_AVE_ODDDIST_SHIFT |
1010 average, OMAP3_ISP_IOMEM_PREV, ISPPRV_AVE);
1015 * preview_config_input_format - Configure the input format
1016 * @prev: The preview engine
1017 * @format: Format on the preview engine sink pad
1019 * Enable and configure CFA interpolation for Bayer formats and disable it for
1020 * greyscale formats.
1022 * The CFA table is organised in four blocks, one per Bayer component. The
1023 * hardware expects blocks to follow the Bayer order of the input data, while
1024 * the driver stores the table in GRBG order in memory. The blocks need to be
1025 * reordered to support non-GRBG Bayer patterns.
1027 static void preview_config_input_format(struct isp_prev_device *prev,
1028 const struct v4l2_mbus_framefmt *format)
1030 struct isp_device *isp = to_isp_device(prev);
1031 struct prev_params *params;
1033 switch (format->code) {
1034 case V4L2_MBUS_FMT_SGRBG10_1X10:
1035 prev->params.cfa_order = 0;
1037 case V4L2_MBUS_FMT_SRGGB10_1X10:
1038 prev->params.cfa_order = 1;
1040 case V4L2_MBUS_FMT_SBGGR10_1X10:
1041 prev->params.cfa_order = 2;
1043 case V4L2_MBUS_FMT_SGBRG10_1X10:
1044 prev->params.cfa_order = 3;
1047 /* Disable CFA for non-Bayer formats. */
1048 isp_reg_clr(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
1053 isp_reg_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR, ISPPRV_PCR_CFAEN);
1054 isp_reg_clr_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
1055 ISPPRV_PCR_CFAFMT_MASK, ISPPRV_PCR_CFAFMT_BAYER);
1057 params = (prev->params.active & OMAP3ISP_PREV_CFA)
1058 ? &prev->params.params[0] : &prev->params.params[1];
1060 preview_config_cfa(prev, params);
1064 * preview_config_input_size - Configure the input frame size
1066 * The preview engine crops several rows and columns internally depending on
1067 * which processing blocks are enabled. The driver assumes all those blocks are
1068 * enabled when reporting source pad formats to userspace. If this assumption is
1069 * not true, rows and columns must be manually cropped at the preview engine
1070 * input to avoid overflows at the end of lines and frames.
1072 * See the explanation at the PREV_MARGIN_* definitions for more details.
1074 static void preview_config_input_size(struct isp_prev_device *prev, u32 active)
1076 const struct v4l2_mbus_framefmt *format = &prev->formats[PREV_PAD_SINK];
1077 struct isp_device *isp = to_isp_device(prev);
1078 unsigned int sph = prev->crop.left;
1079 unsigned int eph = prev->crop.left + prev->crop.width - 1;
1080 unsigned int slv = prev->crop.top;
1081 unsigned int elv = prev->crop.top + prev->crop.height - 1;
1084 if (format->code != V4L2_MBUS_FMT_Y10_1X10) {
1091 features = (prev->params.params[0].features & active)
1092 | (prev->params.params[1].features & ~active);
1094 if (features & (OMAP3ISP_PREV_DEFECT_COR | OMAP3ISP_PREV_NF)) {
1100 if (features & OMAP3ISP_PREV_HRZ_MED) {
1104 if (features & (OMAP3ISP_PREV_CHROMA_SUPP | OMAP3ISP_PREV_LUMAENH))
1107 isp_reg_writel(isp, (sph << ISPPRV_HORZ_INFO_SPH_SHIFT) | eph,
1108 OMAP3_ISP_IOMEM_PREV, ISPPRV_HORZ_INFO);
1109 isp_reg_writel(isp, (slv << ISPPRV_VERT_INFO_SLV_SHIFT) | elv,
1110 OMAP3_ISP_IOMEM_PREV, ISPPRV_VERT_INFO);
1114 * preview_config_inlineoffset - Configures the Read address line offset.
1115 * @prev: Preview module
1116 * @offset: Line offset
1118 * According to the TRM, the line offset must be aligned on a 32 bytes boundary.
1119 * However, a hardware bug requires the memory start address to be aligned on a
1120 * 64 bytes boundary, so the offset probably should be aligned on 64 bytes as
1124 preview_config_inlineoffset(struct isp_prev_device *prev, u32 offset)
1126 struct isp_device *isp = to_isp_device(prev);
1128 isp_reg_writel(isp, offset & 0xffff, OMAP3_ISP_IOMEM_PREV,
1129 ISPPRV_RADR_OFFSET);
1133 * preview_set_inaddr - Sets memory address of input frame.
1134 * @addr: 32bit memory address aligned on 32byte boundary.
1136 * Configures the memory address from which the input frame is to be read.
1138 static void preview_set_inaddr(struct isp_prev_device *prev, u32 addr)
1140 struct isp_device *isp = to_isp_device(prev);
1142 isp_reg_writel(isp, addr, OMAP3_ISP_IOMEM_PREV, ISPPRV_RSDR_ADDR);
1146 * preview_config_outlineoffset - Configures the Write address line offset.
1147 * @offset: Line Offset for the preview output.
1149 * The offset must be a multiple of 32 bytes.
1151 static void preview_config_outlineoffset(struct isp_prev_device *prev,
1154 struct isp_device *isp = to_isp_device(prev);
1156 isp_reg_writel(isp, offset & 0xffff, OMAP3_ISP_IOMEM_PREV,
1157 ISPPRV_WADD_OFFSET);
1161 * preview_set_outaddr - Sets the memory address to store output frame
1162 * @addr: 32bit memory address aligned on 32byte boundary.
1164 * Configures the memory address to which the output frame is written.
1166 static void preview_set_outaddr(struct isp_prev_device *prev, u32 addr)
1168 struct isp_device *isp = to_isp_device(prev);
1170 isp_reg_writel(isp, addr, OMAP3_ISP_IOMEM_PREV, ISPPRV_WSDR_ADDR);
1173 static void preview_adjust_bandwidth(struct isp_prev_device *prev)
1175 struct isp_pipeline *pipe = to_isp_pipeline(&prev->subdev.entity);
1176 struct isp_device *isp = to_isp_device(prev);
1177 const struct v4l2_mbus_framefmt *ifmt = &prev->formats[PREV_PAD_SINK];
1178 unsigned long l3_ick = pipe->l3_ick;
1179 struct v4l2_fract *timeperframe;
1180 unsigned int cycles_per_frame;
1181 unsigned int requests_per_frame;
1182 unsigned int cycles_per_request;
1183 unsigned int minimum;
1184 unsigned int maximum;
1187 if (prev->input != PREVIEW_INPUT_MEMORY) {
1188 isp_reg_clr(isp, OMAP3_ISP_IOMEM_SBL, ISPSBL_SDR_REQ_EXP,
1189 ISPSBL_SDR_REQ_PRV_EXP_MASK);
1193 /* Compute the minimum number of cycles per request, based on the
1194 * pipeline maximum data rate. This is an absolute lower bound if we
1195 * don't want SBL overflows, so round the value up.
1197 cycles_per_request = div_u64((u64)l3_ick / 2 * 256 + pipe->max_rate - 1,
1199 minimum = DIV_ROUND_UP(cycles_per_request, 32);
1201 /* Compute the maximum number of cycles per request, based on the
1202 * requested frame rate. This is a soft upper bound to achieve a frame
1203 * rate equal or higher than the requested value, so round the value
1206 timeperframe = &pipe->max_timeperframe;
1208 requests_per_frame = DIV_ROUND_UP(ifmt->width * 2, 256) * ifmt->height;
1209 cycles_per_frame = div_u64((u64)l3_ick * timeperframe->numerator,
1210 timeperframe->denominator);
1211 cycles_per_request = cycles_per_frame / requests_per_frame;
1213 maximum = cycles_per_request / 32;
1215 value = max(minimum, maximum);
1217 dev_dbg(isp->dev, "%s: cycles per request = %u\n", __func__, value);
1218 isp_reg_clr_set(isp, OMAP3_ISP_IOMEM_SBL, ISPSBL_SDR_REQ_EXP,
1219 ISPSBL_SDR_REQ_PRV_EXP_MASK,
1220 value << ISPSBL_SDR_REQ_PRV_EXP_SHIFT);
1224 * omap3isp_preview_busy - Gets busy state of preview module.
1226 int omap3isp_preview_busy(struct isp_prev_device *prev)
1228 struct isp_device *isp = to_isp_device(prev);
1230 return isp_reg_readl(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR)
1235 * omap3isp_preview_restore_context - Restores the values of preview registers
1237 void omap3isp_preview_restore_context(struct isp_device *isp)
1239 struct isp_prev_device *prev = &isp->isp_prev;
1240 const u32 update = OMAP3ISP_PREV_FEATURES_END - 1;
1242 prev->params.params[0].update = prev->params.active & update;
1243 prev->params.params[1].update = ~prev->params.active & update;
1245 preview_setup_hw(prev, update, prev->params.active);
1247 prev->params.params[0].update = 0;
1248 prev->params.params[1].update = 0;
1252 * preview_print_status - Dump preview module registers to the kernel log
1254 #define PREV_PRINT_REGISTER(isp, name)\
1255 dev_dbg(isp->dev, "###PRV " #name "=0x%08x\n", \
1256 isp_reg_readl(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_##name))
1258 static void preview_print_status(struct isp_prev_device *prev)
1260 struct isp_device *isp = to_isp_device(prev);
1262 dev_dbg(isp->dev, "-------------Preview Register dump----------\n");
1264 PREV_PRINT_REGISTER(isp, PCR);
1265 PREV_PRINT_REGISTER(isp, HORZ_INFO);
1266 PREV_PRINT_REGISTER(isp, VERT_INFO);
1267 PREV_PRINT_REGISTER(isp, RSDR_ADDR);
1268 PREV_PRINT_REGISTER(isp, RADR_OFFSET);
1269 PREV_PRINT_REGISTER(isp, DSDR_ADDR);
1270 PREV_PRINT_REGISTER(isp, DRKF_OFFSET);
1271 PREV_PRINT_REGISTER(isp, WSDR_ADDR);
1272 PREV_PRINT_REGISTER(isp, WADD_OFFSET);
1273 PREV_PRINT_REGISTER(isp, AVE);
1274 PREV_PRINT_REGISTER(isp, HMED);
1275 PREV_PRINT_REGISTER(isp, NF);
1276 PREV_PRINT_REGISTER(isp, WB_DGAIN);
1277 PREV_PRINT_REGISTER(isp, WBGAIN);
1278 PREV_PRINT_REGISTER(isp, WBSEL);
1279 PREV_PRINT_REGISTER(isp, CFA);
1280 PREV_PRINT_REGISTER(isp, BLKADJOFF);
1281 PREV_PRINT_REGISTER(isp, RGB_MAT1);
1282 PREV_PRINT_REGISTER(isp, RGB_MAT2);
1283 PREV_PRINT_REGISTER(isp, RGB_MAT3);
1284 PREV_PRINT_REGISTER(isp, RGB_MAT4);
1285 PREV_PRINT_REGISTER(isp, RGB_MAT5);
1286 PREV_PRINT_REGISTER(isp, RGB_OFF1);
1287 PREV_PRINT_REGISTER(isp, RGB_OFF2);
1288 PREV_PRINT_REGISTER(isp, CSC0);
1289 PREV_PRINT_REGISTER(isp, CSC1);
1290 PREV_PRINT_REGISTER(isp, CSC2);
1291 PREV_PRINT_REGISTER(isp, CSC_OFFSET);
1292 PREV_PRINT_REGISTER(isp, CNT_BRT);
1293 PREV_PRINT_REGISTER(isp, CSUP);
1294 PREV_PRINT_REGISTER(isp, SETUP_YC);
1295 PREV_PRINT_REGISTER(isp, SET_TBL_ADDR);
1296 PREV_PRINT_REGISTER(isp, CDC_THR0);
1297 PREV_PRINT_REGISTER(isp, CDC_THR1);
1298 PREV_PRINT_REGISTER(isp, CDC_THR2);
1299 PREV_PRINT_REGISTER(isp, CDC_THR3);
1301 dev_dbg(isp->dev, "--------------------------------------------\n");
1305 * preview_init_params - init image processing parameters.
1306 * @prev: pointer to previewer private structure
1308 static void preview_init_params(struct isp_prev_device *prev)
1310 struct prev_params *params;
1313 spin_lock_init(&prev->params.lock);
1315 prev->params.active = ~0;
1316 prev->params.params[0].busy = 0;
1317 prev->params.params[0].update = OMAP3ISP_PREV_FEATURES_END - 1;
1318 prev->params.params[1].busy = 0;
1319 prev->params.params[1].update = 0;
1321 params = &prev->params.params[0];
1324 params->contrast = ISPPRV_CONTRAST_DEF * ISPPRV_CONTRAST_UNITS;
1325 params->brightness = ISPPRV_BRIGHT_DEF * ISPPRV_BRIGHT_UNITS;
1326 params->cfa.format = OMAP3ISP_CFAFMT_BAYER;
1327 memcpy(params->cfa.table, cfa_coef_table,
1328 sizeof(params->cfa.table));
1329 params->cfa.gradthrs_horz = FLR_CFA_GRADTHRS_HORZ;
1330 params->cfa.gradthrs_vert = FLR_CFA_GRADTHRS_VERT;
1331 params->csup.gain = FLR_CSUP_GAIN;
1332 params->csup.thres = FLR_CSUP_THRES;
1333 params->csup.hypf_en = 0;
1334 memcpy(params->luma.table, luma_enhance_table,
1335 sizeof(params->luma.table));
1336 params->nf.spread = FLR_NF_STRGTH;
1337 memcpy(params->nf.table, noise_filter_table, sizeof(params->nf.table));
1338 params->dcor.couplet_mode_en = 1;
1339 for (i = 0; i < OMAP3ISP_PREV_DETECT_CORRECT_CHANNELS; i++)
1340 params->dcor.detect_correct[i] = DEF_DETECT_CORRECT_VAL;
1341 memcpy(params->gamma.blue, gamma_table, sizeof(params->gamma.blue));
1342 memcpy(params->gamma.green, gamma_table, sizeof(params->gamma.green));
1343 memcpy(params->gamma.red, gamma_table, sizeof(params->gamma.red));
1344 params->wbal.dgain = FLR_WBAL_DGAIN;
1345 params->wbal.coef0 = FLR_WBAL_COEF;
1346 params->wbal.coef1 = FLR_WBAL_COEF;
1347 params->wbal.coef2 = FLR_WBAL_COEF;
1348 params->wbal.coef3 = FLR_WBAL_COEF;
1349 params->blkadj.red = FLR_BLKADJ_RED;
1350 params->blkadj.green = FLR_BLKADJ_GREEN;
1351 params->blkadj.blue = FLR_BLKADJ_BLUE;
1352 params->rgb2rgb = flr_rgb2rgb;
1353 params->csc = flr_prev_csc;
1354 params->yclimit.minC = ISPPRV_YC_MIN;
1355 params->yclimit.maxC = ISPPRV_YC_MAX;
1356 params->yclimit.minY = ISPPRV_YC_MIN;
1357 params->yclimit.maxY = ISPPRV_YC_MAX;
1359 params->features = OMAP3ISP_PREV_CFA | OMAP3ISP_PREV_DEFECT_COR
1360 | OMAP3ISP_PREV_NF | OMAP3ISP_PREV_GAMMA
1361 | OMAP3ISP_PREV_BLKADJ | OMAP3ISP_PREV_YC_LIMIT
1362 | OMAP3ISP_PREV_RGB2RGB | OMAP3ISP_PREV_COLOR_CONV
1363 | OMAP3ISP_PREV_WB | OMAP3ISP_PREV_BRIGHTNESS
1364 | OMAP3ISP_PREV_CONTRAST;
1368 * preview_max_out_width - Handle previewer hardware ouput limitations
1369 * @isp_revision : ISP revision
1370 * returns maximum width output for current isp revision
1372 static unsigned int preview_max_out_width(struct isp_prev_device *prev)
1374 struct isp_device *isp = to_isp_device(prev);
1376 switch (isp->revision) {
1377 case ISP_REVISION_1_0:
1378 return PREV_MAX_OUT_WIDTH_REV_1;
1380 case ISP_REVISION_2_0:
1382 return PREV_MAX_OUT_WIDTH_REV_2;
1384 case ISP_REVISION_15_0:
1385 return PREV_MAX_OUT_WIDTH_REV_15;
1389 static void preview_configure(struct isp_prev_device *prev)
1391 struct isp_device *isp = to_isp_device(prev);
1392 struct v4l2_mbus_framefmt *format;
1393 unsigned long flags;
1397 spin_lock_irqsave(&prev->params.lock, flags);
1398 /* Mark all active parameters we are going to touch as busy. */
1399 update = preview_params_lock(prev, 0, false);
1400 active = prev->params.active;
1401 spin_unlock_irqrestore(&prev->params.lock, flags);
1404 format = &prev->formats[PREV_PAD_SINK];
1406 preview_adjust_bandwidth(prev);
1408 preview_config_input_format(prev, format);
1409 preview_config_input_size(prev, active);
1411 if (prev->input == PREVIEW_INPUT_CCDC)
1412 preview_config_inlineoffset(prev, 0);
1414 preview_config_inlineoffset(prev,
1415 ALIGN(format->width, 0x20) * 2);
1417 preview_setup_hw(prev, update, active);
1419 /* PREV_PAD_SOURCE */
1420 format = &prev->formats[PREV_PAD_SOURCE];
1422 if (prev->output & PREVIEW_OUTPUT_MEMORY)
1423 isp_reg_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
1424 ISPPRV_PCR_SDRPORT);
1426 isp_reg_clr(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
1427 ISPPRV_PCR_SDRPORT);
1429 if (prev->output & PREVIEW_OUTPUT_RESIZER)
1430 isp_reg_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
1431 ISPPRV_PCR_RSZPORT);
1433 isp_reg_clr(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
1434 ISPPRV_PCR_RSZPORT);
1436 if (prev->output & PREVIEW_OUTPUT_MEMORY)
1437 preview_config_outlineoffset(prev,
1438 ALIGN(format->width, 0x10) * 2);
1440 preview_config_averager(prev, 0);
1441 preview_config_ycpos(prev, format->code);
1443 spin_lock_irqsave(&prev->params.lock, flags);
1444 preview_params_unlock(prev, update, false);
1445 spin_unlock_irqrestore(&prev->params.lock, flags);
1448 /* -----------------------------------------------------------------------------
1449 * Interrupt handling
1452 static void preview_enable_oneshot(struct isp_prev_device *prev)
1454 struct isp_device *isp = to_isp_device(prev);
1456 /* The PCR.SOURCE bit is automatically reset to 0 when the PCR.ENABLE
1457 * bit is set. As the preview engine is used in single-shot mode, we
1458 * need to set PCR.SOURCE before enabling the preview engine.
1460 if (prev->input == PREVIEW_INPUT_MEMORY)
1461 isp_reg_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
1464 isp_reg_set(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_PCR,
1465 ISPPRV_PCR_EN | ISPPRV_PCR_ONESHOT);
1468 void omap3isp_preview_isr_frame_sync(struct isp_prev_device *prev)
1471 * If ISP_VIDEO_DMAQUEUE_QUEUED is set, DMA queue had an underrun
1472 * condition, the module was paused and now we have a buffer queued
1473 * on the output again. Restart the pipeline if running in continuous
1476 if (prev->state == ISP_PIPELINE_STREAM_CONTINUOUS &&
1477 prev->video_out.dmaqueue_flags & ISP_VIDEO_DMAQUEUE_QUEUED) {
1478 preview_enable_oneshot(prev);
1479 isp_video_dmaqueue_flags_clr(&prev->video_out);
1483 static void preview_isr_buffer(struct isp_prev_device *prev)
1485 struct isp_pipeline *pipe = to_isp_pipeline(&prev->subdev.entity);
1486 struct isp_buffer *buffer;
1489 if (prev->input == PREVIEW_INPUT_MEMORY) {
1490 buffer = omap3isp_video_buffer_next(&prev->video_in);
1492 preview_set_inaddr(prev, buffer->isp_addr);
1493 pipe->state |= ISP_PIPELINE_IDLE_INPUT;
1496 if (prev->output & PREVIEW_OUTPUT_MEMORY) {
1497 buffer = omap3isp_video_buffer_next(&prev->video_out);
1498 if (buffer != NULL) {
1499 preview_set_outaddr(prev, buffer->isp_addr);
1502 pipe->state |= ISP_PIPELINE_IDLE_OUTPUT;
1505 switch (prev->state) {
1506 case ISP_PIPELINE_STREAM_SINGLESHOT:
1507 if (isp_pipeline_ready(pipe))
1508 omap3isp_pipeline_set_stream(pipe,
1509 ISP_PIPELINE_STREAM_SINGLESHOT);
1512 case ISP_PIPELINE_STREAM_CONTINUOUS:
1513 /* If an underrun occurs, the video queue operation handler will
1514 * restart the preview engine. Otherwise restart it immediately.
1517 preview_enable_oneshot(prev);
1520 case ISP_PIPELINE_STREAM_STOPPED:
1527 * omap3isp_preview_isr - ISP preview engine interrupt handler
1529 * Manage the preview engine video buffers and configure shadowed registers.
1531 void omap3isp_preview_isr(struct isp_prev_device *prev)
1533 unsigned long flags;
1537 if (omap3isp_module_sync_is_stopping(&prev->wait, &prev->stopping))
1540 spin_lock_irqsave(&prev->params.lock, flags);
1541 preview_params_switch(prev);
1542 update = preview_params_lock(prev, 0, false);
1543 active = prev->params.active;
1544 spin_unlock_irqrestore(&prev->params.lock, flags);
1546 preview_setup_hw(prev, update, active);
1547 preview_config_input_size(prev, active);
1549 if (prev->input == PREVIEW_INPUT_MEMORY ||
1550 prev->output & PREVIEW_OUTPUT_MEMORY)
1551 preview_isr_buffer(prev);
1552 else if (prev->state == ISP_PIPELINE_STREAM_CONTINUOUS)
1553 preview_enable_oneshot(prev);
1555 spin_lock_irqsave(&prev->params.lock, flags);
1556 preview_params_unlock(prev, update, false);
1557 spin_unlock_irqrestore(&prev->params.lock, flags);
1560 /* -----------------------------------------------------------------------------
1561 * ISP video operations
1564 static int preview_video_queue(struct isp_video *video,
1565 struct isp_buffer *buffer)
1567 struct isp_prev_device *prev = &video->isp->isp_prev;
1569 if (video->type == V4L2_BUF_TYPE_VIDEO_OUTPUT)
1570 preview_set_inaddr(prev, buffer->isp_addr);
1572 if (video->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1573 preview_set_outaddr(prev, buffer->isp_addr);
1578 static const struct isp_video_operations preview_video_ops = {
1579 .queue = preview_video_queue,
1582 /* -----------------------------------------------------------------------------
1583 * V4L2 subdev operations
1587 * preview_s_ctrl - Handle set control subdev method
1588 * @ctrl: pointer to v4l2 control structure
1590 static int preview_s_ctrl(struct v4l2_ctrl *ctrl)
1592 struct isp_prev_device *prev =
1593 container_of(ctrl->handler, struct isp_prev_device, ctrls);
1596 case V4L2_CID_BRIGHTNESS:
1597 preview_update_brightness(prev, ctrl->val);
1599 case V4L2_CID_CONTRAST:
1600 preview_update_contrast(prev, ctrl->val);
1607 static const struct v4l2_ctrl_ops preview_ctrl_ops = {
1608 .s_ctrl = preview_s_ctrl,
1612 * preview_ioctl - Handle preview module private ioctl's
1613 * @prev: pointer to preview context structure
1614 * @cmd: configuration command
1615 * @arg: configuration argument
1616 * return -EINVAL or zero on success
1618 static long preview_ioctl(struct v4l2_subdev *sd, unsigned int cmd, void *arg)
1620 struct isp_prev_device *prev = v4l2_get_subdevdata(sd);
1623 case VIDIOC_OMAP3ISP_PRV_CFG:
1624 return preview_config(prev, arg);
1627 return -ENOIOCTLCMD;
1632 * preview_set_stream - Enable/Disable streaming on preview subdev
1633 * @sd : pointer to v4l2 subdev structure
1634 * @enable: 1 == Enable, 0 == Disable
1635 * return -EINVAL or zero on success
1637 static int preview_set_stream(struct v4l2_subdev *sd, int enable)
1639 struct isp_prev_device *prev = v4l2_get_subdevdata(sd);
1640 struct isp_video *video_out = &prev->video_out;
1641 struct isp_device *isp = to_isp_device(prev);
1642 struct device *dev = to_device(prev);
1644 if (prev->state == ISP_PIPELINE_STREAM_STOPPED) {
1645 if (enable == ISP_PIPELINE_STREAM_STOPPED)
1648 omap3isp_subclk_enable(isp, OMAP3_ISP_SUBCLK_PREVIEW);
1649 preview_configure(prev);
1650 atomic_set(&prev->stopping, 0);
1651 preview_print_status(prev);
1655 case ISP_PIPELINE_STREAM_CONTINUOUS:
1656 if (prev->output & PREVIEW_OUTPUT_MEMORY)
1657 omap3isp_sbl_enable(isp, OMAP3_ISP_SBL_PREVIEW_WRITE);
1659 if (video_out->dmaqueue_flags & ISP_VIDEO_DMAQUEUE_QUEUED ||
1660 !(prev->output & PREVIEW_OUTPUT_MEMORY))
1661 preview_enable_oneshot(prev);
1663 isp_video_dmaqueue_flags_clr(video_out);
1666 case ISP_PIPELINE_STREAM_SINGLESHOT:
1667 if (prev->input == PREVIEW_INPUT_MEMORY)
1668 omap3isp_sbl_enable(isp, OMAP3_ISP_SBL_PREVIEW_READ);
1669 if (prev->output & PREVIEW_OUTPUT_MEMORY)
1670 omap3isp_sbl_enable(isp, OMAP3_ISP_SBL_PREVIEW_WRITE);
1672 preview_enable_oneshot(prev);
1675 case ISP_PIPELINE_STREAM_STOPPED:
1676 if (omap3isp_module_sync_idle(&sd->entity, &prev->wait,
1678 dev_dbg(dev, "%s: stop timeout.\n", sd->name);
1679 omap3isp_sbl_disable(isp, OMAP3_ISP_SBL_PREVIEW_READ);
1680 omap3isp_sbl_disable(isp, OMAP3_ISP_SBL_PREVIEW_WRITE);
1681 omap3isp_subclk_disable(isp, OMAP3_ISP_SUBCLK_PREVIEW);
1682 isp_video_dmaqueue_flags_clr(video_out);
1686 prev->state = enable;
1690 static struct v4l2_mbus_framefmt *
1691 __preview_get_format(struct isp_prev_device *prev, struct v4l2_subdev_fh *fh,
1692 unsigned int pad, enum v4l2_subdev_format_whence which)
1694 if (which == V4L2_SUBDEV_FORMAT_TRY)
1695 return v4l2_subdev_get_try_format(fh, pad);
1697 return &prev->formats[pad];
1700 static struct v4l2_rect *
1701 __preview_get_crop(struct isp_prev_device *prev, struct v4l2_subdev_fh *fh,
1702 enum v4l2_subdev_format_whence which)
1704 if (which == V4L2_SUBDEV_FORMAT_TRY)
1705 return v4l2_subdev_get_try_crop(fh, PREV_PAD_SINK);
1710 /* previewer format descriptions */
1711 static const unsigned int preview_input_fmts[] = {
1712 V4L2_MBUS_FMT_Y10_1X10,
1713 V4L2_MBUS_FMT_SGRBG10_1X10,
1714 V4L2_MBUS_FMT_SRGGB10_1X10,
1715 V4L2_MBUS_FMT_SBGGR10_1X10,
1716 V4L2_MBUS_FMT_SGBRG10_1X10,
1719 static const unsigned int preview_output_fmts[] = {
1720 V4L2_MBUS_FMT_UYVY8_1X16,
1721 V4L2_MBUS_FMT_YUYV8_1X16,
1725 * preview_try_format - Validate a format
1726 * @prev: ISP preview engine
1727 * @fh: V4L2 subdev file handle
1729 * @fmt: format to be validated
1730 * @which: try/active format selector
1732 * Validate and adjust the given format for the given pad based on the preview
1733 * engine limits and the format and crop rectangles on other pads.
1735 static void preview_try_format(struct isp_prev_device *prev,
1736 struct v4l2_subdev_fh *fh, unsigned int pad,
1737 struct v4l2_mbus_framefmt *fmt,
1738 enum v4l2_subdev_format_whence which)
1740 enum v4l2_mbus_pixelcode pixelcode;
1741 struct v4l2_rect *crop;
1746 /* When reading data from the CCDC, the input size has already
1747 * been mangled by the CCDC output pad so it can be accepted
1750 * When reading data from memory, clamp the requested width and
1751 * height. The TRM doesn't specify a minimum input height, make
1752 * sure we got enough lines to enable the noise filter and color
1753 * filter array interpolation.
1755 if (prev->input == PREVIEW_INPUT_MEMORY) {
1756 fmt->width = clamp_t(u32, fmt->width, PREV_MIN_IN_WIDTH,
1757 preview_max_out_width(prev));
1758 fmt->height = clamp_t(u32, fmt->height,
1760 PREV_MAX_IN_HEIGHT);
1763 fmt->colorspace = V4L2_COLORSPACE_SRGB;
1765 for (i = 0; i < ARRAY_SIZE(preview_input_fmts); i++) {
1766 if (fmt->code == preview_input_fmts[i])
1770 /* If not found, use SGRBG10 as default */
1771 if (i >= ARRAY_SIZE(preview_input_fmts))
1772 fmt->code = V4L2_MBUS_FMT_SGRBG10_1X10;
1775 case PREV_PAD_SOURCE:
1776 pixelcode = fmt->code;
1777 *fmt = *__preview_get_format(prev, fh, PREV_PAD_SINK, which);
1779 switch (pixelcode) {
1780 case V4L2_MBUS_FMT_YUYV8_1X16:
1781 case V4L2_MBUS_FMT_UYVY8_1X16:
1782 fmt->code = pixelcode;
1786 fmt->code = V4L2_MBUS_FMT_YUYV8_1X16;
1790 /* The preview module output size is configurable through the
1791 * averager (horizontal scaling by 1/1, 1/2, 1/4 or 1/8). This
1792 * is not supported yet, hardcode the output size to the crop
1795 crop = __preview_get_crop(prev, fh, which);
1796 fmt->width = crop->width;
1797 fmt->height = crop->height;
1799 fmt->colorspace = V4L2_COLORSPACE_JPEG;
1803 fmt->field = V4L2_FIELD_NONE;
1807 * preview_try_crop - Validate a crop rectangle
1808 * @prev: ISP preview engine
1809 * @sink: format on the sink pad
1810 * @crop: crop rectangle to be validated
1812 * The preview engine crops lines and columns for its internal operation,
1813 * depending on which filters are enabled. Enforce minimum crop margins to
1814 * handle that transparently for userspace.
1816 * See the explanation at the PREV_MARGIN_* definitions for more details.
1818 static void preview_try_crop(struct isp_prev_device *prev,
1819 const struct v4l2_mbus_framefmt *sink,
1820 struct v4l2_rect *crop)
1822 unsigned int left = PREV_MARGIN_LEFT;
1823 unsigned int right = sink->width - PREV_MARGIN_RIGHT;
1824 unsigned int top = PREV_MARGIN_TOP;
1825 unsigned int bottom = sink->height - PREV_MARGIN_BOTTOM;
1827 /* When processing data on-the-fly from the CCDC, at least 2 pixels must
1828 * be cropped from the left and right sides of the image. As we don't
1829 * know which filters will be enabled, increase the left and right
1832 if (prev->input == PREVIEW_INPUT_CCDC) {
1837 /* Restrict left/top to even values to keep the Bayer pattern. */
1841 crop->left = clamp_t(u32, crop->left, left, right - PREV_MIN_OUT_WIDTH);
1842 crop->top = clamp_t(u32, crop->top, top, bottom - PREV_MIN_OUT_HEIGHT);
1843 crop->width = clamp_t(u32, crop->width, PREV_MIN_OUT_WIDTH,
1844 right - crop->left);
1845 crop->height = clamp_t(u32, crop->height, PREV_MIN_OUT_HEIGHT,
1846 bottom - crop->top);
1850 * preview_enum_mbus_code - Handle pixel format enumeration
1851 * @sd : pointer to v4l2 subdev structure
1852 * @fh : V4L2 subdev file handle
1853 * @code : pointer to v4l2_subdev_mbus_code_enum structure
1854 * return -EINVAL or zero on success
1856 static int preview_enum_mbus_code(struct v4l2_subdev *sd,
1857 struct v4l2_subdev_fh *fh,
1858 struct v4l2_subdev_mbus_code_enum *code)
1860 switch (code->pad) {
1862 if (code->index >= ARRAY_SIZE(preview_input_fmts))
1865 code->code = preview_input_fmts[code->index];
1867 case PREV_PAD_SOURCE:
1868 if (code->index >= ARRAY_SIZE(preview_output_fmts))
1871 code->code = preview_output_fmts[code->index];
1880 static int preview_enum_frame_size(struct v4l2_subdev *sd,
1881 struct v4l2_subdev_fh *fh,
1882 struct v4l2_subdev_frame_size_enum *fse)
1884 struct isp_prev_device *prev = v4l2_get_subdevdata(sd);
1885 struct v4l2_mbus_framefmt format;
1887 if (fse->index != 0)
1890 format.code = fse->code;
1893 preview_try_format(prev, fh, fse->pad, &format, V4L2_SUBDEV_FORMAT_TRY);
1894 fse->min_width = format.width;
1895 fse->min_height = format.height;
1897 if (format.code != fse->code)
1900 format.code = fse->code;
1903 preview_try_format(prev, fh, fse->pad, &format, V4L2_SUBDEV_FORMAT_TRY);
1904 fse->max_width = format.width;
1905 fse->max_height = format.height;
1911 * preview_get_selection - Retrieve a selection rectangle on a pad
1912 * @sd: ISP preview V4L2 subdevice
1913 * @fh: V4L2 subdev file handle
1914 * @sel: Selection rectangle
1916 * The only supported rectangles are the crop rectangles on the sink pad.
1918 * Return 0 on success or a negative error code otherwise.
1920 static int preview_get_selection(struct v4l2_subdev *sd,
1921 struct v4l2_subdev_fh *fh,
1922 struct v4l2_subdev_selection *sel)
1924 struct isp_prev_device *prev = v4l2_get_subdevdata(sd);
1925 struct v4l2_mbus_framefmt *format;
1927 if (sel->pad != PREV_PAD_SINK)
1930 switch (sel->target) {
1931 case V4L2_SEL_TGT_CROP_BOUNDS:
1934 sel->r.width = INT_MAX;
1935 sel->r.height = INT_MAX;
1937 format = __preview_get_format(prev, fh, PREV_PAD_SINK,
1939 preview_try_crop(prev, format, &sel->r);
1942 case V4L2_SEL_TGT_CROP:
1943 sel->r = *__preview_get_crop(prev, fh, sel->which);
1954 * preview_set_selection - Set a selection rectangle on a pad
1955 * @sd: ISP preview V4L2 subdevice
1956 * @fh: V4L2 subdev file handle
1957 * @sel: Selection rectangle
1959 * The only supported rectangle is the actual crop rectangle on the sink pad.
1961 * Return 0 on success or a negative error code otherwise.
1963 static int preview_set_selection(struct v4l2_subdev *sd,
1964 struct v4l2_subdev_fh *fh,
1965 struct v4l2_subdev_selection *sel)
1967 struct isp_prev_device *prev = v4l2_get_subdevdata(sd);
1968 struct v4l2_mbus_framefmt *format;
1970 if (sel->target != V4L2_SEL_TGT_CROP ||
1971 sel->pad != PREV_PAD_SINK)
1974 /* The crop rectangle can't be changed while streaming. */
1975 if (prev->state != ISP_PIPELINE_STREAM_STOPPED)
1978 /* Modifying the crop rectangle always changes the format on the source
1979 * pad. If the KEEP_CONFIG flag is set, just return the current crop
1982 if (sel->flags & V4L2_SEL_FLAG_KEEP_CONFIG) {
1983 sel->r = *__preview_get_crop(prev, fh, sel->which);
1987 format = __preview_get_format(prev, fh, PREV_PAD_SINK, sel->which);
1988 preview_try_crop(prev, format, &sel->r);
1989 *__preview_get_crop(prev, fh, sel->which) = sel->r;
1991 /* Update the source format. */
1992 format = __preview_get_format(prev, fh, PREV_PAD_SOURCE, sel->which);
1993 preview_try_format(prev, fh, PREV_PAD_SOURCE, format, sel->which);
1999 * preview_get_format - Handle get format by pads subdev method
2000 * @sd : pointer to v4l2 subdev structure
2001 * @fh : V4L2 subdev file handle
2002 * @fmt: pointer to v4l2 subdev format structure
2003 * return -EINVAL or zero on success
2005 static int preview_get_format(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh,
2006 struct v4l2_subdev_format *fmt)
2008 struct isp_prev_device *prev = v4l2_get_subdevdata(sd);
2009 struct v4l2_mbus_framefmt *format;
2011 format = __preview_get_format(prev, fh, fmt->pad, fmt->which);
2015 fmt->format = *format;
2020 * preview_set_format - Handle set format by pads subdev method
2021 * @sd : pointer to v4l2 subdev structure
2022 * @fh : V4L2 subdev file handle
2023 * @fmt: pointer to v4l2 subdev format structure
2024 * return -EINVAL or zero on success
2026 static int preview_set_format(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh,
2027 struct v4l2_subdev_format *fmt)
2029 struct isp_prev_device *prev = v4l2_get_subdevdata(sd);
2030 struct v4l2_mbus_framefmt *format;
2031 struct v4l2_rect *crop;
2033 format = __preview_get_format(prev, fh, fmt->pad, fmt->which);
2037 preview_try_format(prev, fh, fmt->pad, &fmt->format, fmt->which);
2038 *format = fmt->format;
2040 /* Propagate the format from sink to source */
2041 if (fmt->pad == PREV_PAD_SINK) {
2042 /* Reset the crop rectangle. */
2043 crop = __preview_get_crop(prev, fh, fmt->which);
2046 crop->width = fmt->format.width;
2047 crop->height = fmt->format.height;
2049 preview_try_crop(prev, &fmt->format, crop);
2051 /* Update the source format. */
2052 format = __preview_get_format(prev, fh, PREV_PAD_SOURCE,
2054 preview_try_format(prev, fh, PREV_PAD_SOURCE, format,
2062 * preview_init_formats - Initialize formats on all pads
2063 * @sd: ISP preview V4L2 subdevice
2064 * @fh: V4L2 subdev file handle
2066 * Initialize all pad formats with default values. If fh is not NULL, try
2067 * formats are initialized on the file handle. Otherwise active formats are
2068 * initialized on the device.
2070 static int preview_init_formats(struct v4l2_subdev *sd,
2071 struct v4l2_subdev_fh *fh)
2073 struct v4l2_subdev_format format;
2075 memset(&format, 0, sizeof(format));
2076 format.pad = PREV_PAD_SINK;
2077 format.which = fh ? V4L2_SUBDEV_FORMAT_TRY : V4L2_SUBDEV_FORMAT_ACTIVE;
2078 format.format.code = V4L2_MBUS_FMT_SGRBG10_1X10;
2079 format.format.width = 4096;
2080 format.format.height = 4096;
2081 preview_set_format(sd, fh, &format);
2086 /* subdev core operations */
2087 static const struct v4l2_subdev_core_ops preview_v4l2_core_ops = {
2088 .ioctl = preview_ioctl,
2091 /* subdev video operations */
2092 static const struct v4l2_subdev_video_ops preview_v4l2_video_ops = {
2093 .s_stream = preview_set_stream,
2096 /* subdev pad operations */
2097 static const struct v4l2_subdev_pad_ops preview_v4l2_pad_ops = {
2098 .enum_mbus_code = preview_enum_mbus_code,
2099 .enum_frame_size = preview_enum_frame_size,
2100 .get_fmt = preview_get_format,
2101 .set_fmt = preview_set_format,
2102 .get_selection = preview_get_selection,
2103 .set_selection = preview_set_selection,
2106 /* subdev operations */
2107 static const struct v4l2_subdev_ops preview_v4l2_ops = {
2108 .core = &preview_v4l2_core_ops,
2109 .video = &preview_v4l2_video_ops,
2110 .pad = &preview_v4l2_pad_ops,
2113 /* subdev internal operations */
2114 static const struct v4l2_subdev_internal_ops preview_v4l2_internal_ops = {
2115 .open = preview_init_formats,
2118 /* -----------------------------------------------------------------------------
2119 * Media entity operations
2123 * preview_link_setup - Setup previewer connections.
2124 * @entity : Pointer to media entity structure
2125 * @local : Pointer to local pad array
2126 * @remote : Pointer to remote pad array
2127 * @flags : Link flags
2128 * return -EINVAL or zero on success
2130 static int preview_link_setup(struct media_entity *entity,
2131 const struct media_pad *local,
2132 const struct media_pad *remote, u32 flags)
2134 struct v4l2_subdev *sd = media_entity_to_v4l2_subdev(entity);
2135 struct isp_prev_device *prev = v4l2_get_subdevdata(sd);
2137 switch (local->index | media_entity_type(remote->entity)) {
2138 case PREV_PAD_SINK | MEDIA_ENT_T_DEVNODE:
2139 /* read from memory */
2140 if (flags & MEDIA_LNK_FL_ENABLED) {
2141 if (prev->input == PREVIEW_INPUT_CCDC)
2143 prev->input = PREVIEW_INPUT_MEMORY;
2145 if (prev->input == PREVIEW_INPUT_MEMORY)
2146 prev->input = PREVIEW_INPUT_NONE;
2150 case PREV_PAD_SINK | MEDIA_ENT_T_V4L2_SUBDEV:
2151 /* read from ccdc */
2152 if (flags & MEDIA_LNK_FL_ENABLED) {
2153 if (prev->input == PREVIEW_INPUT_MEMORY)
2155 prev->input = PREVIEW_INPUT_CCDC;
2157 if (prev->input == PREVIEW_INPUT_CCDC)
2158 prev->input = PREVIEW_INPUT_NONE;
2163 * The ISP core doesn't support pipelines with multiple video outputs.
2164 * Revisit this when it will be implemented, and return -EBUSY for now.
2167 case PREV_PAD_SOURCE | MEDIA_ENT_T_DEVNODE:
2168 /* write to memory */
2169 if (flags & MEDIA_LNK_FL_ENABLED) {
2170 if (prev->output & ~PREVIEW_OUTPUT_MEMORY)
2172 prev->output |= PREVIEW_OUTPUT_MEMORY;
2174 prev->output &= ~PREVIEW_OUTPUT_MEMORY;
2178 case PREV_PAD_SOURCE | MEDIA_ENT_T_V4L2_SUBDEV:
2179 /* write to resizer */
2180 if (flags & MEDIA_LNK_FL_ENABLED) {
2181 if (prev->output & ~PREVIEW_OUTPUT_RESIZER)
2183 prev->output |= PREVIEW_OUTPUT_RESIZER;
2185 prev->output &= ~PREVIEW_OUTPUT_RESIZER;
2196 /* media operations */
2197 static const struct media_entity_operations preview_media_ops = {
2198 .link_setup = preview_link_setup,
2199 .link_validate = v4l2_subdev_link_validate,
2202 void omap3isp_preview_unregister_entities(struct isp_prev_device *prev)
2204 v4l2_device_unregister_subdev(&prev->subdev);
2205 omap3isp_video_unregister(&prev->video_in);
2206 omap3isp_video_unregister(&prev->video_out);
2209 int omap3isp_preview_register_entities(struct isp_prev_device *prev,
2210 struct v4l2_device *vdev)
2214 /* Register the subdev and video nodes. */
2215 ret = v4l2_device_register_subdev(vdev, &prev->subdev);
2219 ret = omap3isp_video_register(&prev->video_in, vdev);
2223 ret = omap3isp_video_register(&prev->video_out, vdev);
2230 omap3isp_preview_unregister_entities(prev);
2234 /* -----------------------------------------------------------------------------
2235 * ISP previewer initialisation and cleanup
2239 * preview_init_entities - Initialize subdev and media entity.
2240 * @prev : Pointer to preview structure
2241 * return -ENOMEM or zero on success
2243 static int preview_init_entities(struct isp_prev_device *prev)
2245 struct v4l2_subdev *sd = &prev->subdev;
2246 struct media_pad *pads = prev->pads;
2247 struct media_entity *me = &sd->entity;
2250 prev->input = PREVIEW_INPUT_NONE;
2252 v4l2_subdev_init(sd, &preview_v4l2_ops);
2253 sd->internal_ops = &preview_v4l2_internal_ops;
2254 strlcpy(sd->name, "OMAP3 ISP preview", sizeof(sd->name));
2255 sd->grp_id = 1 << 16; /* group ID for isp subdevs */
2256 v4l2_set_subdevdata(sd, prev);
2257 sd->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
2259 v4l2_ctrl_handler_init(&prev->ctrls, 2);
2260 v4l2_ctrl_new_std(&prev->ctrls, &preview_ctrl_ops, V4L2_CID_BRIGHTNESS,
2261 ISPPRV_BRIGHT_LOW, ISPPRV_BRIGHT_HIGH,
2262 ISPPRV_BRIGHT_STEP, ISPPRV_BRIGHT_DEF);
2263 v4l2_ctrl_new_std(&prev->ctrls, &preview_ctrl_ops, V4L2_CID_CONTRAST,
2264 ISPPRV_CONTRAST_LOW, ISPPRV_CONTRAST_HIGH,
2265 ISPPRV_CONTRAST_STEP, ISPPRV_CONTRAST_DEF);
2266 v4l2_ctrl_handler_setup(&prev->ctrls);
2267 sd->ctrl_handler = &prev->ctrls;
2269 pads[PREV_PAD_SINK].flags = MEDIA_PAD_FL_SINK;
2270 pads[PREV_PAD_SOURCE].flags = MEDIA_PAD_FL_SOURCE;
2272 me->ops = &preview_media_ops;
2273 ret = media_entity_init(me, PREV_PADS_NUM, pads, 0);
2277 preview_init_formats(sd, NULL);
2279 /* According to the OMAP34xx TRM, video buffers need to be aligned on a
2280 * 32 bytes boundary. However, an undocumented hardware bug requires a
2281 * 64 bytes boundary at the preview engine input.
2283 prev->video_in.type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
2284 prev->video_in.ops = &preview_video_ops;
2285 prev->video_in.isp = to_isp_device(prev);
2286 prev->video_in.capture_mem = PAGE_ALIGN(4096 * 4096) * 2 * 3;
2287 prev->video_in.bpl_alignment = 64;
2288 prev->video_out.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2289 prev->video_out.ops = &preview_video_ops;
2290 prev->video_out.isp = to_isp_device(prev);
2291 prev->video_out.capture_mem = PAGE_ALIGN(4096 * 4096) * 2 * 3;
2292 prev->video_out.bpl_alignment = 32;
2294 ret = omap3isp_video_init(&prev->video_in, "preview");
2296 goto error_video_in;
2298 ret = omap3isp_video_init(&prev->video_out, "preview");
2300 goto error_video_out;
2302 /* Connect the video nodes to the previewer subdev. */
2303 ret = media_entity_create_link(&prev->video_in.video.entity, 0,
2304 &prev->subdev.entity, PREV_PAD_SINK, 0);
2308 ret = media_entity_create_link(&prev->subdev.entity, PREV_PAD_SOURCE,
2309 &prev->video_out.video.entity, 0, 0);
2316 omap3isp_video_cleanup(&prev->video_out);
2318 omap3isp_video_cleanup(&prev->video_in);
2320 media_entity_cleanup(&prev->subdev.entity);
2325 * omap3isp_preview_init - Previewer initialization.
2326 * @dev : Pointer to ISP device
2327 * return -ENOMEM or zero on success
2329 int omap3isp_preview_init(struct isp_device *isp)
2331 struct isp_prev_device *prev = &isp->isp_prev;
2333 init_waitqueue_head(&prev->wait);
2335 preview_init_params(prev);
2337 return preview_init_entities(prev);
2340 void omap3isp_preview_cleanup(struct isp_device *isp)
2342 struct isp_prev_device *prev = &isp->isp_prev;
2344 v4l2_ctrl_handler_free(&prev->ctrls);
2345 omap3isp_video_cleanup(&prev->video_in);
2346 omap3isp_video_cleanup(&prev->video_out);
2347 media_entity_cleanup(&prev->subdev.entity);