1 // SPDX-License-Identifier: GPL-2.0-only
5 * TI OMAP3 ISP driver - Preview module
7 * Copyright (C) 2010 Nokia Corporation
8 * Copyright (C) 2009 Texas Instruments, Inc.
10 * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11 * Sakari Ailus <sakari.ailus@iki.fi>
14 #include <linux/device.h>
16 #include <linux/module.h>
17 #include <linux/mutex.h>
18 #include <linux/uaccess.h>
22 #include "isppreview.h"
24 /* Default values in Office Fluorescent Light for RGBtoRGB Blending */
25 static const struct omap3isp_prev_rgbtorgb flr_rgb2rgb
= {
26 { /* RGB-RGB Matrix */
27 {0x01E2, 0x0F30, 0x0FEE},
28 {0x0F9B, 0x01AC, 0x0FB9},
29 {0x0FE0, 0x0EC0, 0x0260}
31 {0x0000, 0x0000, 0x0000}
34 /* Default values in Office Fluorescent Light for RGB to YUV Conversion*/
35 static const struct omap3isp_prev_csc flr_prev_csc
= {
36 { /* CSC Coef Matrix */
44 /* Default values in Office Fluorescent Light for CFA Gradient*/
45 #define FLR_CFA_GRADTHRS_HORZ 0x28
46 #define FLR_CFA_GRADTHRS_VERT 0x28
48 /* Default values in Office Fluorescent Light for Chroma Suppression*/
49 #define FLR_CSUP_GAIN 0x0D
50 #define FLR_CSUP_THRES 0xEB
52 /* Default values in Office Fluorescent Light for Noise Filter*/
53 #define FLR_NF_STRGTH 0x03
55 /* Default values for White Balance */
56 #define FLR_WBAL_DGAIN 0x100
57 #define FLR_WBAL_COEF 0x20
59 /* Default values in Office Fluorescent Light for Black Adjustment*/
60 #define FLR_BLKADJ_BLUE 0x0
61 #define FLR_BLKADJ_GREEN 0x0
62 #define FLR_BLKADJ_RED 0x0
64 #define DEF_DETECT_CORRECT_VAL 0xe
67 * Margins and image size limits.
69 * The preview engine crops several rows and columns internally depending on
70 * which filters are enabled. To avoid format changes when the filters are
71 * enabled or disabled (which would prevent them from being turned on or off
72 * during streaming), the driver assumes all filters that can be configured
73 * during streaming are enabled when computing sink crop and source format
76 * If a filter is disabled, additional cropping is automatically added at the
77 * preview engine input by the driver to avoid overflow at line and frame end.
78 * This is completely transparent for applications.
80 * Median filter 4 pixels
82 * Faulty pixels correction 4 pixels, 4 lines
83 * Color suppression 2 pixels
85 * -------------------------------------------------------------
86 * Maximum total 10 pixels, 4 lines
88 * The color suppression and luma enhancement filters are applied after bayer to
89 * YUV conversion. They thus can crop one pixel on the left and one pixel on the
90 * right side of the image without changing the color pattern. When both those
91 * filters are disabled, the driver must crop the two pixels on the same side of
92 * the image to avoid changing the bayer pattern. The left margin is thus set to
93 * 6 pixels and the right margin to 4 pixels.
96 #define PREV_MARGIN_LEFT 6
97 #define PREV_MARGIN_RIGHT 4
98 #define PREV_MARGIN_TOP 2
99 #define PREV_MARGIN_BOTTOM 2
101 #define PREV_MIN_IN_WIDTH 64
102 #define PREV_MIN_IN_HEIGHT 8
103 #define PREV_MAX_IN_HEIGHT 16384
105 #define PREV_MIN_OUT_WIDTH 0
106 #define PREV_MIN_OUT_HEIGHT 0
107 #define PREV_MAX_OUT_WIDTH_REV_1 1280
108 #define PREV_MAX_OUT_WIDTH_REV_2 3300
109 #define PREV_MAX_OUT_WIDTH_REV_15 4096
112 * Coefficient Tables for the submodules in Preview.
113 * Array is initialised with the values from.the tables text file.
117 * CFA Filter Coefficient Table
120 static u32 cfa_coef_table
[4][OMAP3ISP_PREV_CFA_BLK_SIZE
] = {
121 #include "cfa_coef_table.h"
125 * Default Gamma Correction Table - All components
127 static u32 gamma_table
[] = {
128 #include "gamma_table.h"
132 * Noise Filter Threshold table
134 static u32 noise_filter_table
[] = {
135 #include "noise_filter_table.h"
139 * Luminance Enhancement Table
141 static u32 luma_enhance_table
[] = {
142 #include "luma_enhance_table.h"
146 * preview_config_luma_enhancement - Configure the Luminance Enhancement table
149 preview_config_luma_enhancement(struct isp_prev_device
*prev
,
150 const struct prev_params
*params
)
152 struct isp_device
*isp
= to_isp_device(prev
);
153 const struct omap3isp_prev_luma
*yt
= ¶ms
->luma
;
156 isp_reg_writel(isp
, ISPPRV_YENH_TABLE_ADDR
,
157 OMAP3_ISP_IOMEM_PREV
, ISPPRV_SET_TBL_ADDR
);
158 for (i
= 0; i
< OMAP3ISP_PREV_YENH_TBL_SIZE
; i
++) {
159 isp_reg_writel(isp
, yt
->table
[i
],
160 OMAP3_ISP_IOMEM_PREV
, ISPPRV_SET_TBL_DATA
);
165 * preview_enable_luma_enhancement - Enable/disable Luminance Enhancement
168 preview_enable_luma_enhancement(struct isp_prev_device
*prev
, bool enable
)
170 struct isp_device
*isp
= to_isp_device(prev
);
173 isp_reg_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
176 isp_reg_clr(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
181 * preview_enable_invalaw - Enable/disable Inverse A-Law decompression
183 static void preview_enable_invalaw(struct isp_prev_device
*prev
, bool enable
)
185 struct isp_device
*isp
= to_isp_device(prev
);
188 isp_reg_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
191 isp_reg_clr(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
196 * preview_config_hmed - Configure the Horizontal Median Filter
198 static void preview_config_hmed(struct isp_prev_device
*prev
,
199 const struct prev_params
*params
)
201 struct isp_device
*isp
= to_isp_device(prev
);
202 const struct omap3isp_prev_hmed
*hmed
= ¶ms
->hmed
;
204 isp_reg_writel(isp
, (hmed
->odddist
== 1 ? 0 : ISPPRV_HMED_ODDDIST
) |
205 (hmed
->evendist
== 1 ? 0 : ISPPRV_HMED_EVENDIST
) |
206 (hmed
->thres
<< ISPPRV_HMED_THRESHOLD_SHIFT
),
207 OMAP3_ISP_IOMEM_PREV
, ISPPRV_HMED
);
211 * preview_enable_hmed - Enable/disable the Horizontal Median Filter
213 static void preview_enable_hmed(struct isp_prev_device
*prev
, bool enable
)
215 struct isp_device
*isp
= to_isp_device(prev
);
218 isp_reg_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
221 isp_reg_clr(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
226 * preview_config_cfa - Configure CFA Interpolation for Bayer formats
228 * The CFA table is organised in four blocks, one per Bayer component. The
229 * hardware expects blocks to follow the Bayer order of the input data, while
230 * the driver stores the table in GRBG order in memory. The blocks need to be
231 * reordered to support non-GRBG Bayer patterns.
233 static void preview_config_cfa(struct isp_prev_device
*prev
,
234 const struct prev_params
*params
)
236 static const unsigned int cfa_coef_order
[4][4] = {
237 { 0, 1, 2, 3 }, /* GRBG */
238 { 1, 0, 3, 2 }, /* RGGB */
239 { 2, 3, 0, 1 }, /* BGGR */
240 { 3, 2, 1, 0 }, /* GBRG */
242 const unsigned int *order
= cfa_coef_order
[prev
->params
.cfa_order
];
243 const struct omap3isp_prev_cfa
*cfa
= ¶ms
->cfa
;
244 struct isp_device
*isp
= to_isp_device(prev
);
249 (cfa
->gradthrs_vert
<< ISPPRV_CFA_GRADTH_VER_SHIFT
) |
250 (cfa
->gradthrs_horz
<< ISPPRV_CFA_GRADTH_HOR_SHIFT
),
251 OMAP3_ISP_IOMEM_PREV
, ISPPRV_CFA
);
253 isp_reg_writel(isp
, ISPPRV_CFA_TABLE_ADDR
,
254 OMAP3_ISP_IOMEM_PREV
, ISPPRV_SET_TBL_ADDR
);
256 for (i
= 0; i
< 4; ++i
) {
257 const __u32
*block
= cfa
->table
[order
[i
]];
259 for (j
= 0; j
< OMAP3ISP_PREV_CFA_BLK_SIZE
; ++j
)
260 isp_reg_writel(isp
, block
[j
], OMAP3_ISP_IOMEM_PREV
,
261 ISPPRV_SET_TBL_DATA
);
266 * preview_config_chroma_suppression - Configure Chroma Suppression
269 preview_config_chroma_suppression(struct isp_prev_device
*prev
,
270 const struct prev_params
*params
)
272 struct isp_device
*isp
= to_isp_device(prev
);
273 const struct omap3isp_prev_csup
*cs
= ¶ms
->csup
;
276 cs
->gain
| (cs
->thres
<< ISPPRV_CSUP_THRES_SHIFT
) |
277 (cs
->hypf_en
<< ISPPRV_CSUP_HPYF_SHIFT
),
278 OMAP3_ISP_IOMEM_PREV
, ISPPRV_CSUP
);
282 * preview_enable_chroma_suppression - Enable/disable Chrominance Suppression
285 preview_enable_chroma_suppression(struct isp_prev_device
*prev
, bool enable
)
287 struct isp_device
*isp
= to_isp_device(prev
);
290 isp_reg_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
293 isp_reg_clr(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
298 * preview_config_whitebalance - Configure White Balance parameters
300 * Coefficient matrix always with default values.
303 preview_config_whitebalance(struct isp_prev_device
*prev
,
304 const struct prev_params
*params
)
306 struct isp_device
*isp
= to_isp_device(prev
);
307 const struct omap3isp_prev_wbal
*wbal
= ¶ms
->wbal
;
310 isp_reg_writel(isp
, wbal
->dgain
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_WB_DGAIN
);
312 val
= wbal
->coef0
<< ISPPRV_WBGAIN_COEF0_SHIFT
;
313 val
|= wbal
->coef1
<< ISPPRV_WBGAIN_COEF1_SHIFT
;
314 val
|= wbal
->coef2
<< ISPPRV_WBGAIN_COEF2_SHIFT
;
315 val
|= wbal
->coef3
<< ISPPRV_WBGAIN_COEF3_SHIFT
;
316 isp_reg_writel(isp
, val
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_WBGAIN
);
319 ISPPRV_WBSEL_COEF0
<< ISPPRV_WBSEL_N0_0_SHIFT
|
320 ISPPRV_WBSEL_COEF1
<< ISPPRV_WBSEL_N0_1_SHIFT
|
321 ISPPRV_WBSEL_COEF0
<< ISPPRV_WBSEL_N0_2_SHIFT
|
322 ISPPRV_WBSEL_COEF1
<< ISPPRV_WBSEL_N0_3_SHIFT
|
323 ISPPRV_WBSEL_COEF2
<< ISPPRV_WBSEL_N1_0_SHIFT
|
324 ISPPRV_WBSEL_COEF3
<< ISPPRV_WBSEL_N1_1_SHIFT
|
325 ISPPRV_WBSEL_COEF2
<< ISPPRV_WBSEL_N1_2_SHIFT
|
326 ISPPRV_WBSEL_COEF3
<< ISPPRV_WBSEL_N1_3_SHIFT
|
327 ISPPRV_WBSEL_COEF0
<< ISPPRV_WBSEL_N2_0_SHIFT
|
328 ISPPRV_WBSEL_COEF1
<< ISPPRV_WBSEL_N2_1_SHIFT
|
329 ISPPRV_WBSEL_COEF0
<< ISPPRV_WBSEL_N2_2_SHIFT
|
330 ISPPRV_WBSEL_COEF1
<< ISPPRV_WBSEL_N2_3_SHIFT
|
331 ISPPRV_WBSEL_COEF2
<< ISPPRV_WBSEL_N3_0_SHIFT
|
332 ISPPRV_WBSEL_COEF3
<< ISPPRV_WBSEL_N3_1_SHIFT
|
333 ISPPRV_WBSEL_COEF2
<< ISPPRV_WBSEL_N3_2_SHIFT
|
334 ISPPRV_WBSEL_COEF3
<< ISPPRV_WBSEL_N3_3_SHIFT
,
335 OMAP3_ISP_IOMEM_PREV
, ISPPRV_WBSEL
);
339 * preview_config_blkadj - Configure Black Adjustment
342 preview_config_blkadj(struct isp_prev_device
*prev
,
343 const struct prev_params
*params
)
345 struct isp_device
*isp
= to_isp_device(prev
);
346 const struct omap3isp_prev_blkadj
*blkadj
= ¶ms
->blkadj
;
348 isp_reg_writel(isp
, (blkadj
->blue
<< ISPPRV_BLKADJOFF_B_SHIFT
) |
349 (blkadj
->green
<< ISPPRV_BLKADJOFF_G_SHIFT
) |
350 (blkadj
->red
<< ISPPRV_BLKADJOFF_R_SHIFT
),
351 OMAP3_ISP_IOMEM_PREV
, ISPPRV_BLKADJOFF
);
355 * preview_config_rgb_blending - Configure RGB-RGB Blending
358 preview_config_rgb_blending(struct isp_prev_device
*prev
,
359 const struct prev_params
*params
)
361 struct isp_device
*isp
= to_isp_device(prev
);
362 const struct omap3isp_prev_rgbtorgb
*rgbrgb
= ¶ms
->rgb2rgb
;
365 val
= (rgbrgb
->matrix
[0][0] & 0xfff) << ISPPRV_RGB_MAT1_MTX_RR_SHIFT
;
366 val
|= (rgbrgb
->matrix
[0][1] & 0xfff) << ISPPRV_RGB_MAT1_MTX_GR_SHIFT
;
367 isp_reg_writel(isp
, val
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_RGB_MAT1
);
369 val
= (rgbrgb
->matrix
[0][2] & 0xfff) << ISPPRV_RGB_MAT2_MTX_BR_SHIFT
;
370 val
|= (rgbrgb
->matrix
[1][0] & 0xfff) << ISPPRV_RGB_MAT2_MTX_RG_SHIFT
;
371 isp_reg_writel(isp
, val
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_RGB_MAT2
);
373 val
= (rgbrgb
->matrix
[1][1] & 0xfff) << ISPPRV_RGB_MAT3_MTX_GG_SHIFT
;
374 val
|= (rgbrgb
->matrix
[1][2] & 0xfff) << ISPPRV_RGB_MAT3_MTX_BG_SHIFT
;
375 isp_reg_writel(isp
, val
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_RGB_MAT3
);
377 val
= (rgbrgb
->matrix
[2][0] & 0xfff) << ISPPRV_RGB_MAT4_MTX_RB_SHIFT
;
378 val
|= (rgbrgb
->matrix
[2][1] & 0xfff) << ISPPRV_RGB_MAT4_MTX_GB_SHIFT
;
379 isp_reg_writel(isp
, val
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_RGB_MAT4
);
381 val
= (rgbrgb
->matrix
[2][2] & 0xfff) << ISPPRV_RGB_MAT5_MTX_BB_SHIFT
;
382 isp_reg_writel(isp
, val
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_RGB_MAT5
);
384 val
= (rgbrgb
->offset
[0] & 0x3ff) << ISPPRV_RGB_OFF1_MTX_OFFR_SHIFT
;
385 val
|= (rgbrgb
->offset
[1] & 0x3ff) << ISPPRV_RGB_OFF1_MTX_OFFG_SHIFT
;
386 isp_reg_writel(isp
, val
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_RGB_OFF1
);
388 val
= (rgbrgb
->offset
[2] & 0x3ff) << ISPPRV_RGB_OFF2_MTX_OFFB_SHIFT
;
389 isp_reg_writel(isp
, val
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_RGB_OFF2
);
393 * preview_config_csc - Configure Color Space Conversion (RGB to YCbYCr)
396 preview_config_csc(struct isp_prev_device
*prev
,
397 const struct prev_params
*params
)
399 struct isp_device
*isp
= to_isp_device(prev
);
400 const struct omap3isp_prev_csc
*csc
= ¶ms
->csc
;
403 val
= (csc
->matrix
[0][0] & 0x3ff) << ISPPRV_CSC0_RY_SHIFT
;
404 val
|= (csc
->matrix
[0][1] & 0x3ff) << ISPPRV_CSC0_GY_SHIFT
;
405 val
|= (csc
->matrix
[0][2] & 0x3ff) << ISPPRV_CSC0_BY_SHIFT
;
406 isp_reg_writel(isp
, val
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_CSC0
);
408 val
= (csc
->matrix
[1][0] & 0x3ff) << ISPPRV_CSC1_RCB_SHIFT
;
409 val
|= (csc
->matrix
[1][1] & 0x3ff) << ISPPRV_CSC1_GCB_SHIFT
;
410 val
|= (csc
->matrix
[1][2] & 0x3ff) << ISPPRV_CSC1_BCB_SHIFT
;
411 isp_reg_writel(isp
, val
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_CSC1
);
413 val
= (csc
->matrix
[2][0] & 0x3ff) << ISPPRV_CSC2_RCR_SHIFT
;
414 val
|= (csc
->matrix
[2][1] & 0x3ff) << ISPPRV_CSC2_GCR_SHIFT
;
415 val
|= (csc
->matrix
[2][2] & 0x3ff) << ISPPRV_CSC2_BCR_SHIFT
;
416 isp_reg_writel(isp
, val
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_CSC2
);
418 val
= (csc
->offset
[0] & 0xff) << ISPPRV_CSC_OFFSET_Y_SHIFT
;
419 val
|= (csc
->offset
[1] & 0xff) << ISPPRV_CSC_OFFSET_CB_SHIFT
;
420 val
|= (csc
->offset
[2] & 0xff) << ISPPRV_CSC_OFFSET_CR_SHIFT
;
421 isp_reg_writel(isp
, val
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_CSC_OFFSET
);
425 * preview_config_yc_range - Configure the max and min Y and C values
428 preview_config_yc_range(struct isp_prev_device
*prev
,
429 const struct prev_params
*params
)
431 struct isp_device
*isp
= to_isp_device(prev
);
432 const struct omap3isp_prev_yclimit
*yc
= ¶ms
->yclimit
;
435 yc
->maxC
<< ISPPRV_SETUP_YC_MAXC_SHIFT
|
436 yc
->maxY
<< ISPPRV_SETUP_YC_MAXY_SHIFT
|
437 yc
->minC
<< ISPPRV_SETUP_YC_MINC_SHIFT
|
438 yc
->minY
<< ISPPRV_SETUP_YC_MINY_SHIFT
,
439 OMAP3_ISP_IOMEM_PREV
, ISPPRV_SETUP_YC
);
443 * preview_config_dcor - Configure Couplet Defect Correction
446 preview_config_dcor(struct isp_prev_device
*prev
,
447 const struct prev_params
*params
)
449 struct isp_device
*isp
= to_isp_device(prev
);
450 const struct omap3isp_prev_dcor
*dcor
= ¶ms
->dcor
;
452 isp_reg_writel(isp
, dcor
->detect_correct
[0],
453 OMAP3_ISP_IOMEM_PREV
, ISPPRV_CDC_THR0
);
454 isp_reg_writel(isp
, dcor
->detect_correct
[1],
455 OMAP3_ISP_IOMEM_PREV
, ISPPRV_CDC_THR1
);
456 isp_reg_writel(isp
, dcor
->detect_correct
[2],
457 OMAP3_ISP_IOMEM_PREV
, ISPPRV_CDC_THR2
);
458 isp_reg_writel(isp
, dcor
->detect_correct
[3],
459 OMAP3_ISP_IOMEM_PREV
, ISPPRV_CDC_THR3
);
460 isp_reg_clr_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
462 dcor
->couplet_mode_en
? ISPPRV_PCR_DCCOUP
: 0);
466 * preview_enable_dcor - Enable/disable Couplet Defect Correction
468 static void preview_enable_dcor(struct isp_prev_device
*prev
, bool enable
)
470 struct isp_device
*isp
= to_isp_device(prev
);
473 isp_reg_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
476 isp_reg_clr(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
481 * preview_enable_drkframe_capture - Enable/disable Dark Frame Capture
484 preview_enable_drkframe_capture(struct isp_prev_device
*prev
, bool enable
)
486 struct isp_device
*isp
= to_isp_device(prev
);
489 isp_reg_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
492 isp_reg_clr(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
497 * preview_enable_drkframe - Enable/disable Dark Frame Subtraction
499 static void preview_enable_drkframe(struct isp_prev_device
*prev
, bool enable
)
501 struct isp_device
*isp
= to_isp_device(prev
);
504 isp_reg_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
507 isp_reg_clr(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
512 * preview_config_noisefilter - Configure the Noise Filter
515 preview_config_noisefilter(struct isp_prev_device
*prev
,
516 const struct prev_params
*params
)
518 struct isp_device
*isp
= to_isp_device(prev
);
519 const struct omap3isp_prev_nf
*nf
= ¶ms
->nf
;
522 isp_reg_writel(isp
, nf
->spread
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_NF
);
523 isp_reg_writel(isp
, ISPPRV_NF_TABLE_ADDR
,
524 OMAP3_ISP_IOMEM_PREV
, ISPPRV_SET_TBL_ADDR
);
525 for (i
= 0; i
< OMAP3ISP_PREV_NF_TBL_SIZE
; i
++) {
526 isp_reg_writel(isp
, nf
->table
[i
],
527 OMAP3_ISP_IOMEM_PREV
, ISPPRV_SET_TBL_DATA
);
532 * preview_enable_noisefilter - Enable/disable the Noise Filter
535 preview_enable_noisefilter(struct isp_prev_device
*prev
, bool enable
)
537 struct isp_device
*isp
= to_isp_device(prev
);
540 isp_reg_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
543 isp_reg_clr(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
548 * preview_config_gammacorrn - Configure the Gamma Correction tables
551 preview_config_gammacorrn(struct isp_prev_device
*prev
,
552 const struct prev_params
*params
)
554 struct isp_device
*isp
= to_isp_device(prev
);
555 const struct omap3isp_prev_gtables
*gt
= ¶ms
->gamma
;
558 isp_reg_writel(isp
, ISPPRV_REDGAMMA_TABLE_ADDR
,
559 OMAP3_ISP_IOMEM_PREV
, ISPPRV_SET_TBL_ADDR
);
560 for (i
= 0; i
< OMAP3ISP_PREV_GAMMA_TBL_SIZE
; i
++)
561 isp_reg_writel(isp
, gt
->red
[i
], OMAP3_ISP_IOMEM_PREV
,
562 ISPPRV_SET_TBL_DATA
);
564 isp_reg_writel(isp
, ISPPRV_GREENGAMMA_TABLE_ADDR
,
565 OMAP3_ISP_IOMEM_PREV
, ISPPRV_SET_TBL_ADDR
);
566 for (i
= 0; i
< OMAP3ISP_PREV_GAMMA_TBL_SIZE
; i
++)
567 isp_reg_writel(isp
, gt
->green
[i
], OMAP3_ISP_IOMEM_PREV
,
568 ISPPRV_SET_TBL_DATA
);
570 isp_reg_writel(isp
, ISPPRV_BLUEGAMMA_TABLE_ADDR
,
571 OMAP3_ISP_IOMEM_PREV
, ISPPRV_SET_TBL_ADDR
);
572 for (i
= 0; i
< OMAP3ISP_PREV_GAMMA_TBL_SIZE
; i
++)
573 isp_reg_writel(isp
, gt
->blue
[i
], OMAP3_ISP_IOMEM_PREV
,
574 ISPPRV_SET_TBL_DATA
);
578 * preview_enable_gammacorrn - Enable/disable Gamma Correction
580 * When gamma correction is disabled, the module is bypassed and its output is
581 * the 8 MSB of the 10-bit input .
584 preview_enable_gammacorrn(struct isp_prev_device
*prev
, bool enable
)
586 struct isp_device
*isp
= to_isp_device(prev
);
589 isp_reg_clr(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
590 ISPPRV_PCR_GAMMA_BYPASS
);
592 isp_reg_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
593 ISPPRV_PCR_GAMMA_BYPASS
);
597 * preview_config_contrast - Configure the Contrast
599 * Value should be programmed before enabling the module.
602 preview_config_contrast(struct isp_prev_device
*prev
,
603 const struct prev_params
*params
)
605 struct isp_device
*isp
= to_isp_device(prev
);
607 isp_reg_clr_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_CNT_BRT
,
608 0xff << ISPPRV_CNT_BRT_CNT_SHIFT
,
609 params
->contrast
<< ISPPRV_CNT_BRT_CNT_SHIFT
);
613 * preview_config_brightness - Configure the Brightness
616 preview_config_brightness(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_BRT_SHIFT
,
623 params
->brightness
<< ISPPRV_CNT_BRT_BRT_SHIFT
);
627 * preview_update_contrast - Updates the contrast.
628 * @contrast: Pointer to hold the current programmed contrast value.
630 * Value should be programmed before enabling the module.
633 preview_update_contrast(struct isp_prev_device
*prev
, u8 contrast
)
635 struct prev_params
*params
;
638 spin_lock_irqsave(&prev
->params
.lock
, flags
);
639 params
= (prev
->params
.active
& OMAP3ISP_PREV_CONTRAST
)
640 ? &prev
->params
.params
[0] : &prev
->params
.params
[1];
642 if (params
->contrast
!= (contrast
* ISPPRV_CONTRAST_UNITS
)) {
643 params
->contrast
= contrast
* ISPPRV_CONTRAST_UNITS
;
644 params
->update
|= OMAP3ISP_PREV_CONTRAST
;
646 spin_unlock_irqrestore(&prev
->params
.lock
, flags
);
650 * preview_update_brightness - Updates the brightness in preview module.
651 * @brightness: Pointer to hold the current programmed brightness value.
655 preview_update_brightness(struct isp_prev_device
*prev
, u8 brightness
)
657 struct prev_params
*params
;
660 spin_lock_irqsave(&prev
->params
.lock
, flags
);
661 params
= (prev
->params
.active
& OMAP3ISP_PREV_BRIGHTNESS
)
662 ? &prev
->params
.params
[0] : &prev
->params
.params
[1];
664 if (params
->brightness
!= (brightness
* ISPPRV_BRIGHT_UNITS
)) {
665 params
->brightness
= brightness
* ISPPRV_BRIGHT_UNITS
;
666 params
->update
|= OMAP3ISP_PREV_BRIGHTNESS
;
668 spin_unlock_irqrestore(&prev
->params
.lock
, flags
);
672 preview_params_lock(struct isp_prev_device
*prev
, u32 update
, bool shadow
)
674 u32 active
= prev
->params
.active
;
677 /* Mark all shadow parameters we are going to touch as busy. */
678 prev
->params
.params
[0].busy
|= ~active
& update
;
679 prev
->params
.params
[1].busy
|= active
& update
;
681 /* Mark all active parameters we are going to touch as busy. */
682 update
= (prev
->params
.params
[0].update
& active
)
683 | (prev
->params
.params
[1].update
& ~active
);
685 prev
->params
.params
[0].busy
|= active
& update
;
686 prev
->params
.params
[1].busy
|= ~active
& update
;
693 preview_params_unlock(struct isp_prev_device
*prev
, u32 update
, bool shadow
)
695 u32 active
= prev
->params
.active
;
698 /* Set the update flag for shadow parameters that have been
699 * updated and clear the busy flag for all shadow parameters.
701 prev
->params
.params
[0].update
|= (~active
& update
);
702 prev
->params
.params
[1].update
|= (active
& update
);
703 prev
->params
.params
[0].busy
&= active
;
704 prev
->params
.params
[1].busy
&= ~active
;
706 /* Clear the update flag for active parameters that have been
707 * applied and the busy flag for all active parameters.
709 prev
->params
.params
[0].update
&= ~(active
& update
);
710 prev
->params
.params
[1].update
&= ~(~active
& update
);
711 prev
->params
.params
[0].busy
&= ~active
;
712 prev
->params
.params
[1].busy
&= active
;
716 static void preview_params_switch(struct isp_prev_device
*prev
)
720 /* Switch active parameters with updated shadow parameters when the
721 * shadow parameter has been updated and neither the active not the
722 * shadow parameter is busy.
724 to_switch
= (prev
->params
.params
[0].update
& ~prev
->params
.active
)
725 | (prev
->params
.params
[1].update
& prev
->params
.active
);
726 to_switch
&= ~(prev
->params
.params
[0].busy
|
727 prev
->params
.params
[1].busy
);
731 prev
->params
.active
^= to_switch
;
733 /* Remove the update flag for the shadow copy of parameters we have
736 prev
->params
.params
[0].update
&= ~(~prev
->params
.active
& to_switch
);
737 prev
->params
.params
[1].update
&= ~(prev
->params
.active
& to_switch
);
740 /* preview parameters update structure */
741 struct preview_update
{
742 void (*config
)(struct isp_prev_device
*, const struct prev_params
*);
743 void (*enable
)(struct isp_prev_device
*, bool);
744 unsigned int param_offset
;
745 unsigned int param_size
;
746 unsigned int config_offset
;
750 /* Keep the array indexed by the OMAP3ISP_PREV_* bit number. */
751 static const struct preview_update update_attrs
[] = {
752 /* OMAP3ISP_PREV_LUMAENH */ {
753 preview_config_luma_enhancement
,
754 preview_enable_luma_enhancement
,
755 offsetof(struct prev_params
, luma
),
756 sizeof_field(struct prev_params
, luma
),
757 offsetof(struct omap3isp_prev_update_config
, luma
),
758 }, /* OMAP3ISP_PREV_INVALAW */ {
760 preview_enable_invalaw
,
761 }, /* OMAP3ISP_PREV_HRZ_MED */ {
764 offsetof(struct prev_params
, hmed
),
765 sizeof_field(struct prev_params
, hmed
),
766 offsetof(struct omap3isp_prev_update_config
, hmed
),
767 }, /* OMAP3ISP_PREV_CFA */ {
770 offsetof(struct prev_params
, cfa
),
771 sizeof_field(struct prev_params
, cfa
),
772 offsetof(struct omap3isp_prev_update_config
, cfa
),
773 }, /* OMAP3ISP_PREV_CHROMA_SUPP */ {
774 preview_config_chroma_suppression
,
775 preview_enable_chroma_suppression
,
776 offsetof(struct prev_params
, csup
),
777 sizeof_field(struct prev_params
, csup
),
778 offsetof(struct omap3isp_prev_update_config
, csup
),
779 }, /* OMAP3ISP_PREV_WB */ {
780 preview_config_whitebalance
,
782 offsetof(struct prev_params
, wbal
),
783 sizeof_field(struct prev_params
, wbal
),
784 offsetof(struct omap3isp_prev_update_config
, wbal
),
785 }, /* OMAP3ISP_PREV_BLKADJ */ {
786 preview_config_blkadj
,
788 offsetof(struct prev_params
, blkadj
),
789 sizeof_field(struct prev_params
, blkadj
),
790 offsetof(struct omap3isp_prev_update_config
, blkadj
),
791 }, /* OMAP3ISP_PREV_RGB2RGB */ {
792 preview_config_rgb_blending
,
794 offsetof(struct prev_params
, rgb2rgb
),
795 sizeof_field(struct prev_params
, rgb2rgb
),
796 offsetof(struct omap3isp_prev_update_config
, rgb2rgb
),
797 }, /* OMAP3ISP_PREV_COLOR_CONV */ {
800 offsetof(struct prev_params
, csc
),
801 sizeof_field(struct prev_params
, csc
),
802 offsetof(struct omap3isp_prev_update_config
, csc
),
803 }, /* OMAP3ISP_PREV_YC_LIMIT */ {
804 preview_config_yc_range
,
806 offsetof(struct prev_params
, yclimit
),
807 sizeof_field(struct prev_params
, yclimit
),
808 offsetof(struct omap3isp_prev_update_config
, yclimit
),
809 }, /* OMAP3ISP_PREV_DEFECT_COR */ {
812 offsetof(struct prev_params
, dcor
),
813 sizeof_field(struct prev_params
, dcor
),
814 offsetof(struct omap3isp_prev_update_config
, dcor
),
815 }, /* Previously OMAP3ISP_PREV_GAMMABYPASS, not used anymore */ {
818 }, /* OMAP3ISP_PREV_DRK_FRM_CAPTURE */ {
820 preview_enable_drkframe_capture
,
821 }, /* OMAP3ISP_PREV_DRK_FRM_SUBTRACT */ {
823 preview_enable_drkframe
,
824 }, /* OMAP3ISP_PREV_LENS_SHADING */ {
826 preview_enable_drkframe
,
827 }, /* OMAP3ISP_PREV_NF */ {
828 preview_config_noisefilter
,
829 preview_enable_noisefilter
,
830 offsetof(struct prev_params
, nf
),
831 sizeof_field(struct prev_params
, nf
),
832 offsetof(struct omap3isp_prev_update_config
, nf
),
833 }, /* OMAP3ISP_PREV_GAMMA */ {
834 preview_config_gammacorrn
,
835 preview_enable_gammacorrn
,
836 offsetof(struct prev_params
, gamma
),
837 sizeof_field(struct prev_params
, gamma
),
838 offsetof(struct omap3isp_prev_update_config
, gamma
),
839 }, /* OMAP3ISP_PREV_CONTRAST */ {
840 preview_config_contrast
,
843 }, /* OMAP3ISP_PREV_BRIGHTNESS */ {
844 preview_config_brightness
,
851 * preview_config - Copy and update local structure with userspace preview
853 * @prev: ISP preview engine
854 * @cfg: Configuration
856 * Return zero if success or -EFAULT if the configuration can't be copied from
859 static int preview_config(struct isp_prev_device
*prev
,
860 struct omap3isp_prev_update_config
*cfg
)
868 if (cfg
->update
== 0)
871 /* Mark the shadow parameters we're going to update as busy. */
872 spin_lock_irqsave(&prev
->params
.lock
, flags
);
873 preview_params_lock(prev
, cfg
->update
, true);
874 active
= prev
->params
.active
;
875 spin_unlock_irqrestore(&prev
->params
.lock
, flags
);
879 for (i
= 0; i
< ARRAY_SIZE(update_attrs
); i
++) {
880 const struct preview_update
*attr
= &update_attrs
[i
];
881 struct prev_params
*params
;
882 unsigned int bit
= 1 << i
;
884 if (attr
->skip
|| !(cfg
->update
& bit
))
887 params
= &prev
->params
.params
[!!(active
& bit
)];
889 if (cfg
->flag
& bit
) {
890 void __user
*from
= *(void __user
**)
891 ((void *)cfg
+ attr
->config_offset
);
892 void *to
= (void *)params
+ attr
->param_offset
;
893 size_t size
= attr
->param_size
;
895 if (to
&& from
&& size
) {
896 if (copy_from_user(to
, from
, size
)) {
901 params
->features
|= bit
;
903 params
->features
&= ~bit
;
909 spin_lock_irqsave(&prev
->params
.lock
, flags
);
910 preview_params_unlock(prev
, update
, true);
911 preview_params_switch(prev
);
912 spin_unlock_irqrestore(&prev
->params
.lock
, flags
);
918 * preview_setup_hw - Setup preview registers and/or internal memory
919 * @prev: pointer to preview private structure
920 * @update: Bitmask of parameters to setup
921 * @active: Bitmask of parameters active in set 0
922 * Note: can be called from interrupt context
925 static void preview_setup_hw(struct isp_prev_device
*prev
, u32 update
,
933 for (i
= 0; i
< ARRAY_SIZE(update_attrs
); i
++) {
934 const struct preview_update
*attr
= &update_attrs
[i
];
935 struct prev_params
*params
;
936 unsigned int bit
= 1 << i
;
941 params
= &prev
->params
.params
[!(active
& bit
)];
943 if (params
->features
& bit
) {
945 attr
->config(prev
, params
);
947 attr
->enable(prev
, true);
950 attr
->enable(prev
, false);
956 * preview_config_ycpos - Configure byte layout of YUV image.
957 * @prev: pointer to previewer private structure
958 * @pixelcode: pixel code
960 static void preview_config_ycpos(struct isp_prev_device
*prev
, u32 pixelcode
)
962 struct isp_device
*isp
= to_isp_device(prev
);
963 enum preview_ycpos_mode mode
;
966 case MEDIA_BUS_FMT_YUYV8_1X16
:
969 case MEDIA_BUS_FMT_UYVY8_1X16
:
976 isp_reg_clr_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
977 ISPPRV_PCR_YCPOS_CrYCbY
,
978 mode
<< ISPPRV_PCR_YCPOS_SHIFT
);
982 * preview_config_averager - Enable / disable / configure averager
983 * @average: Average value to be configured.
985 static void preview_config_averager(struct isp_prev_device
*prev
, u8 average
)
987 struct isp_device
*isp
= to_isp_device(prev
);
989 isp_reg_writel(isp
, ISPPRV_AVE_EVENDIST_2
<< ISPPRV_AVE_EVENDIST_SHIFT
|
990 ISPPRV_AVE_ODDDIST_2
<< ISPPRV_AVE_ODDDIST_SHIFT
|
991 average
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_AVE
);
996 * preview_config_input_format - Configure the input format
997 * @prev: The preview engine
998 * @info: Sink pad format information
1000 * Enable and configure CFA interpolation for Bayer formats and disable it for
1001 * greyscale formats.
1003 * The CFA table is organised in four blocks, one per Bayer component. The
1004 * hardware expects blocks to follow the Bayer order of the input data, while
1005 * the driver stores the table in GRBG order in memory. The blocks need to be
1006 * reordered to support non-GRBG Bayer patterns.
1008 static void preview_config_input_format(struct isp_prev_device
*prev
,
1009 const struct isp_format_info
*info
)
1011 struct isp_device
*isp
= to_isp_device(prev
);
1012 struct prev_params
*params
;
1014 if (info
->width
== 8)
1015 isp_reg_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
1018 isp_reg_clr(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
1021 switch (info
->flavor
) {
1022 case MEDIA_BUS_FMT_SGRBG8_1X8
:
1023 prev
->params
.cfa_order
= 0;
1025 case MEDIA_BUS_FMT_SRGGB8_1X8
:
1026 prev
->params
.cfa_order
= 1;
1028 case MEDIA_BUS_FMT_SBGGR8_1X8
:
1029 prev
->params
.cfa_order
= 2;
1031 case MEDIA_BUS_FMT_SGBRG8_1X8
:
1032 prev
->params
.cfa_order
= 3;
1035 /* Disable CFA for non-Bayer formats. */
1036 isp_reg_clr(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
1041 isp_reg_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
, ISPPRV_PCR_CFAEN
);
1042 isp_reg_clr_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
1043 ISPPRV_PCR_CFAFMT_MASK
, ISPPRV_PCR_CFAFMT_BAYER
);
1045 params
= (prev
->params
.active
& OMAP3ISP_PREV_CFA
)
1046 ? &prev
->params
.params
[0] : &prev
->params
.params
[1];
1048 preview_config_cfa(prev
, params
);
1052 * preview_config_input_size - Configure the input frame size
1054 * The preview engine crops several rows and columns internally depending on
1055 * which processing blocks are enabled. The driver assumes all those blocks are
1056 * enabled when reporting source pad formats to userspace. If this assumption is
1057 * not true, rows and columns must be manually cropped at the preview engine
1058 * input to avoid overflows at the end of lines and frames.
1060 * See the explanation at the PREV_MARGIN_* definitions for more details.
1062 static void preview_config_input_size(struct isp_prev_device
*prev
, u32 active
)
1064 const struct v4l2_mbus_framefmt
*format
= &prev
->formats
[PREV_PAD_SINK
];
1065 struct isp_device
*isp
= to_isp_device(prev
);
1066 unsigned int sph
= prev
->crop
.left
;
1067 unsigned int eph
= prev
->crop
.left
+ prev
->crop
.width
- 1;
1068 unsigned int slv
= prev
->crop
.top
;
1069 unsigned int elv
= prev
->crop
.top
+ prev
->crop
.height
- 1;
1072 if (format
->code
!= MEDIA_BUS_FMT_Y8_1X8
&&
1073 format
->code
!= MEDIA_BUS_FMT_Y10_1X10
) {
1080 features
= (prev
->params
.params
[0].features
& active
)
1081 | (prev
->params
.params
[1].features
& ~active
);
1083 if (features
& (OMAP3ISP_PREV_DEFECT_COR
| OMAP3ISP_PREV_NF
)) {
1089 if (features
& OMAP3ISP_PREV_HRZ_MED
) {
1093 if (features
& (OMAP3ISP_PREV_CHROMA_SUPP
| OMAP3ISP_PREV_LUMAENH
))
1096 isp_reg_writel(isp
, (sph
<< ISPPRV_HORZ_INFO_SPH_SHIFT
) | eph
,
1097 OMAP3_ISP_IOMEM_PREV
, ISPPRV_HORZ_INFO
);
1098 isp_reg_writel(isp
, (slv
<< ISPPRV_VERT_INFO_SLV_SHIFT
) | elv
,
1099 OMAP3_ISP_IOMEM_PREV
, ISPPRV_VERT_INFO
);
1103 * preview_config_inlineoffset - Configures the Read address line offset.
1104 * @prev: Preview module
1105 * @offset: Line offset
1107 * According to the TRM, the line offset must be aligned on a 32 bytes boundary.
1108 * However, a hardware bug requires the memory start address to be aligned on a
1109 * 64 bytes boundary, so the offset probably should be aligned on 64 bytes as
1113 preview_config_inlineoffset(struct isp_prev_device
*prev
, u32 offset
)
1115 struct isp_device
*isp
= to_isp_device(prev
);
1117 isp_reg_writel(isp
, offset
& 0xffff, OMAP3_ISP_IOMEM_PREV
,
1118 ISPPRV_RADR_OFFSET
);
1122 * preview_set_inaddr - Sets memory address of input frame.
1123 * @addr: 32bit memory address aligned on 32byte boundary.
1125 * Configures the memory address from which the input frame is to be read.
1127 static void preview_set_inaddr(struct isp_prev_device
*prev
, u32 addr
)
1129 struct isp_device
*isp
= to_isp_device(prev
);
1131 isp_reg_writel(isp
, addr
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_RSDR_ADDR
);
1135 * preview_config_outlineoffset - Configures the Write address line offset.
1136 * @offset: Line Offset for the preview output.
1138 * The offset must be a multiple of 32 bytes.
1140 static void preview_config_outlineoffset(struct isp_prev_device
*prev
,
1143 struct isp_device
*isp
= to_isp_device(prev
);
1145 isp_reg_writel(isp
, offset
& 0xffff, OMAP3_ISP_IOMEM_PREV
,
1146 ISPPRV_WADD_OFFSET
);
1150 * preview_set_outaddr - Sets the memory address to store output frame
1151 * @addr: 32bit memory address aligned on 32byte boundary.
1153 * Configures the memory address to which the output frame is written.
1155 static void preview_set_outaddr(struct isp_prev_device
*prev
, u32 addr
)
1157 struct isp_device
*isp
= to_isp_device(prev
);
1159 isp_reg_writel(isp
, addr
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_WSDR_ADDR
);
1162 static void preview_adjust_bandwidth(struct isp_prev_device
*prev
)
1164 struct isp_pipeline
*pipe
= to_isp_pipeline(&prev
->subdev
.entity
);
1165 struct isp_device
*isp
= to_isp_device(prev
);
1166 const struct v4l2_mbus_framefmt
*ifmt
= &prev
->formats
[PREV_PAD_SINK
];
1167 unsigned long l3_ick
= pipe
->l3_ick
;
1168 struct v4l2_fract
*timeperframe
;
1169 unsigned int cycles_per_frame
;
1170 unsigned int requests_per_frame
;
1171 unsigned int cycles_per_request
;
1172 unsigned int minimum
;
1173 unsigned int maximum
;
1176 if (prev
->input
!= PREVIEW_INPUT_MEMORY
) {
1177 isp_reg_clr(isp
, OMAP3_ISP_IOMEM_SBL
, ISPSBL_SDR_REQ_EXP
,
1178 ISPSBL_SDR_REQ_PRV_EXP_MASK
);
1182 /* Compute the minimum number of cycles per request, based on the
1183 * pipeline maximum data rate. This is an absolute lower bound if we
1184 * don't want SBL overflows, so round the value up.
1186 cycles_per_request
= div_u64((u64
)l3_ick
/ 2 * 256 + pipe
->max_rate
- 1,
1188 minimum
= DIV_ROUND_UP(cycles_per_request
, 32);
1190 /* Compute the maximum number of cycles per request, based on the
1191 * requested frame rate. This is a soft upper bound to achieve a frame
1192 * rate equal or higher than the requested value, so round the value
1195 timeperframe
= &pipe
->max_timeperframe
;
1197 requests_per_frame
= DIV_ROUND_UP(ifmt
->width
* 2, 256) * ifmt
->height
;
1198 cycles_per_frame
= div_u64((u64
)l3_ick
* timeperframe
->numerator
,
1199 timeperframe
->denominator
);
1200 cycles_per_request
= cycles_per_frame
/ requests_per_frame
;
1202 maximum
= cycles_per_request
/ 32;
1204 value
= max(minimum
, maximum
);
1206 dev_dbg(isp
->dev
, "%s: cycles per request = %u\n", __func__
, value
);
1207 isp_reg_clr_set(isp
, OMAP3_ISP_IOMEM_SBL
, ISPSBL_SDR_REQ_EXP
,
1208 ISPSBL_SDR_REQ_PRV_EXP_MASK
,
1209 value
<< ISPSBL_SDR_REQ_PRV_EXP_SHIFT
);
1213 * omap3isp_preview_busy - Gets busy state of preview module.
1215 int omap3isp_preview_busy(struct isp_prev_device
*prev
)
1217 struct isp_device
*isp
= to_isp_device(prev
);
1219 return isp_reg_readl(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
)
1224 * omap3isp_preview_restore_context - Restores the values of preview registers
1226 void omap3isp_preview_restore_context(struct isp_device
*isp
)
1228 struct isp_prev_device
*prev
= &isp
->isp_prev
;
1229 const u32 update
= OMAP3ISP_PREV_FEATURES_END
- 1;
1231 prev
->params
.params
[0].update
= prev
->params
.active
& update
;
1232 prev
->params
.params
[1].update
= ~prev
->params
.active
& update
;
1234 preview_setup_hw(prev
, update
, prev
->params
.active
);
1236 prev
->params
.params
[0].update
= 0;
1237 prev
->params
.params
[1].update
= 0;
1241 * preview_print_status - Dump preview module registers to the kernel log
1243 #define PREV_PRINT_REGISTER(isp, name)\
1244 dev_dbg(isp->dev, "###PRV " #name "=0x%08x\n", \
1245 isp_reg_readl(isp, OMAP3_ISP_IOMEM_PREV, ISPPRV_##name))
1247 static void preview_print_status(struct isp_prev_device
*prev
)
1249 struct isp_device
*isp
= to_isp_device(prev
);
1251 dev_dbg(isp
->dev
, "-------------Preview Register dump----------\n");
1253 PREV_PRINT_REGISTER(isp
, PCR
);
1254 PREV_PRINT_REGISTER(isp
, HORZ_INFO
);
1255 PREV_PRINT_REGISTER(isp
, VERT_INFO
);
1256 PREV_PRINT_REGISTER(isp
, RSDR_ADDR
);
1257 PREV_PRINT_REGISTER(isp
, RADR_OFFSET
);
1258 PREV_PRINT_REGISTER(isp
, DSDR_ADDR
);
1259 PREV_PRINT_REGISTER(isp
, DRKF_OFFSET
);
1260 PREV_PRINT_REGISTER(isp
, WSDR_ADDR
);
1261 PREV_PRINT_REGISTER(isp
, WADD_OFFSET
);
1262 PREV_PRINT_REGISTER(isp
, AVE
);
1263 PREV_PRINT_REGISTER(isp
, HMED
);
1264 PREV_PRINT_REGISTER(isp
, NF
);
1265 PREV_PRINT_REGISTER(isp
, WB_DGAIN
);
1266 PREV_PRINT_REGISTER(isp
, WBGAIN
);
1267 PREV_PRINT_REGISTER(isp
, WBSEL
);
1268 PREV_PRINT_REGISTER(isp
, CFA
);
1269 PREV_PRINT_REGISTER(isp
, BLKADJOFF
);
1270 PREV_PRINT_REGISTER(isp
, RGB_MAT1
);
1271 PREV_PRINT_REGISTER(isp
, RGB_MAT2
);
1272 PREV_PRINT_REGISTER(isp
, RGB_MAT3
);
1273 PREV_PRINT_REGISTER(isp
, RGB_MAT4
);
1274 PREV_PRINT_REGISTER(isp
, RGB_MAT5
);
1275 PREV_PRINT_REGISTER(isp
, RGB_OFF1
);
1276 PREV_PRINT_REGISTER(isp
, RGB_OFF2
);
1277 PREV_PRINT_REGISTER(isp
, CSC0
);
1278 PREV_PRINT_REGISTER(isp
, CSC1
);
1279 PREV_PRINT_REGISTER(isp
, CSC2
);
1280 PREV_PRINT_REGISTER(isp
, CSC_OFFSET
);
1281 PREV_PRINT_REGISTER(isp
, CNT_BRT
);
1282 PREV_PRINT_REGISTER(isp
, CSUP
);
1283 PREV_PRINT_REGISTER(isp
, SETUP_YC
);
1284 PREV_PRINT_REGISTER(isp
, SET_TBL_ADDR
);
1285 PREV_PRINT_REGISTER(isp
, CDC_THR0
);
1286 PREV_PRINT_REGISTER(isp
, CDC_THR1
);
1287 PREV_PRINT_REGISTER(isp
, CDC_THR2
);
1288 PREV_PRINT_REGISTER(isp
, CDC_THR3
);
1290 dev_dbg(isp
->dev
, "--------------------------------------------\n");
1294 * preview_init_params - init image processing parameters.
1295 * @prev: pointer to previewer private structure
1297 static void preview_init_params(struct isp_prev_device
*prev
)
1299 struct prev_params
*params
;
1302 spin_lock_init(&prev
->params
.lock
);
1304 prev
->params
.active
= ~0;
1305 prev
->params
.params
[0].busy
= 0;
1306 prev
->params
.params
[0].update
= OMAP3ISP_PREV_FEATURES_END
- 1;
1307 prev
->params
.params
[1].busy
= 0;
1308 prev
->params
.params
[1].update
= 0;
1310 params
= &prev
->params
.params
[0];
1313 params
->contrast
= ISPPRV_CONTRAST_DEF
* ISPPRV_CONTRAST_UNITS
;
1314 params
->brightness
= ISPPRV_BRIGHT_DEF
* ISPPRV_BRIGHT_UNITS
;
1315 params
->cfa
.format
= OMAP3ISP_CFAFMT_BAYER
;
1316 memcpy(params
->cfa
.table
, cfa_coef_table
,
1317 sizeof(params
->cfa
.table
));
1318 params
->cfa
.gradthrs_horz
= FLR_CFA_GRADTHRS_HORZ
;
1319 params
->cfa
.gradthrs_vert
= FLR_CFA_GRADTHRS_VERT
;
1320 params
->csup
.gain
= FLR_CSUP_GAIN
;
1321 params
->csup
.thres
= FLR_CSUP_THRES
;
1322 params
->csup
.hypf_en
= 0;
1323 memcpy(params
->luma
.table
, luma_enhance_table
,
1324 sizeof(params
->luma
.table
));
1325 params
->nf
.spread
= FLR_NF_STRGTH
;
1326 memcpy(params
->nf
.table
, noise_filter_table
, sizeof(params
->nf
.table
));
1327 params
->dcor
.couplet_mode_en
= 1;
1328 for (i
= 0; i
< OMAP3ISP_PREV_DETECT_CORRECT_CHANNELS
; i
++)
1329 params
->dcor
.detect_correct
[i
] = DEF_DETECT_CORRECT_VAL
;
1330 memcpy(params
->gamma
.blue
, gamma_table
, sizeof(params
->gamma
.blue
));
1331 memcpy(params
->gamma
.green
, gamma_table
, sizeof(params
->gamma
.green
));
1332 memcpy(params
->gamma
.red
, gamma_table
, sizeof(params
->gamma
.red
));
1333 params
->wbal
.dgain
= FLR_WBAL_DGAIN
;
1334 params
->wbal
.coef0
= FLR_WBAL_COEF
;
1335 params
->wbal
.coef1
= FLR_WBAL_COEF
;
1336 params
->wbal
.coef2
= FLR_WBAL_COEF
;
1337 params
->wbal
.coef3
= FLR_WBAL_COEF
;
1338 params
->blkadj
.red
= FLR_BLKADJ_RED
;
1339 params
->blkadj
.green
= FLR_BLKADJ_GREEN
;
1340 params
->blkadj
.blue
= FLR_BLKADJ_BLUE
;
1341 params
->rgb2rgb
= flr_rgb2rgb
;
1342 params
->csc
= flr_prev_csc
;
1343 params
->yclimit
.minC
= ISPPRV_YC_MIN
;
1344 params
->yclimit
.maxC
= ISPPRV_YC_MAX
;
1345 params
->yclimit
.minY
= ISPPRV_YC_MIN
;
1346 params
->yclimit
.maxY
= ISPPRV_YC_MAX
;
1348 params
->features
= OMAP3ISP_PREV_CFA
| OMAP3ISP_PREV_DEFECT_COR
1349 | OMAP3ISP_PREV_NF
| OMAP3ISP_PREV_GAMMA
1350 | OMAP3ISP_PREV_BLKADJ
| OMAP3ISP_PREV_YC_LIMIT
1351 | OMAP3ISP_PREV_RGB2RGB
| OMAP3ISP_PREV_COLOR_CONV
1352 | OMAP3ISP_PREV_WB
| OMAP3ISP_PREV_BRIGHTNESS
1353 | OMAP3ISP_PREV_CONTRAST
;
1357 * preview_max_out_width - Handle previewer hardware output limitations
1358 * @prev: pointer to previewer private structure
1359 * returns maximum width output for current isp revision
1361 static unsigned int preview_max_out_width(struct isp_prev_device
*prev
)
1363 struct isp_device
*isp
= to_isp_device(prev
);
1365 switch (isp
->revision
) {
1366 case ISP_REVISION_1_0
:
1367 return PREV_MAX_OUT_WIDTH_REV_1
;
1369 case ISP_REVISION_2_0
:
1371 return PREV_MAX_OUT_WIDTH_REV_2
;
1373 case ISP_REVISION_15_0
:
1374 return PREV_MAX_OUT_WIDTH_REV_15
;
1378 static void preview_configure(struct isp_prev_device
*prev
)
1380 struct isp_device
*isp
= to_isp_device(prev
);
1381 const struct isp_format_info
*info
;
1382 struct v4l2_mbus_framefmt
*format
;
1383 unsigned long flags
;
1387 spin_lock_irqsave(&prev
->params
.lock
, flags
);
1388 /* Mark all active parameters we are going to touch as busy. */
1389 update
= preview_params_lock(prev
, 0, false);
1390 active
= prev
->params
.active
;
1391 spin_unlock_irqrestore(&prev
->params
.lock
, flags
);
1394 format
= &prev
->formats
[PREV_PAD_SINK
];
1395 info
= omap3isp_video_format_info(format
->code
);
1397 preview_adjust_bandwidth(prev
);
1399 preview_config_input_format(prev
, info
);
1400 preview_config_input_size(prev
, active
);
1402 if (prev
->input
== PREVIEW_INPUT_CCDC
)
1403 preview_config_inlineoffset(prev
, 0);
1405 preview_config_inlineoffset(prev
, ALIGN(format
->width
, 0x20) *
1408 preview_setup_hw(prev
, update
, active
);
1410 /* PREV_PAD_SOURCE */
1411 format
= &prev
->formats
[PREV_PAD_SOURCE
];
1413 if (prev
->output
& PREVIEW_OUTPUT_MEMORY
)
1414 isp_reg_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
1415 ISPPRV_PCR_SDRPORT
);
1417 isp_reg_clr(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
1418 ISPPRV_PCR_SDRPORT
);
1420 if (prev
->output
& PREVIEW_OUTPUT_RESIZER
)
1421 isp_reg_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
1422 ISPPRV_PCR_RSZPORT
);
1424 isp_reg_clr(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
1425 ISPPRV_PCR_RSZPORT
);
1427 if (prev
->output
& PREVIEW_OUTPUT_MEMORY
)
1428 preview_config_outlineoffset(prev
,
1429 ALIGN(format
->width
, 0x10) * 2);
1431 preview_config_averager(prev
, 0);
1432 preview_config_ycpos(prev
, format
->code
);
1434 spin_lock_irqsave(&prev
->params
.lock
, flags
);
1435 preview_params_unlock(prev
, update
, false);
1436 spin_unlock_irqrestore(&prev
->params
.lock
, flags
);
1439 /* -----------------------------------------------------------------------------
1440 * Interrupt handling
1443 static void preview_enable_oneshot(struct isp_prev_device
*prev
)
1445 struct isp_device
*isp
= to_isp_device(prev
);
1447 /* The PCR.SOURCE bit is automatically reset to 0 when the PCR.ENABLE
1448 * bit is set. As the preview engine is used in single-shot mode, we
1449 * need to set PCR.SOURCE before enabling the preview engine.
1451 if (prev
->input
== PREVIEW_INPUT_MEMORY
)
1452 isp_reg_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
1455 isp_reg_set(isp
, OMAP3_ISP_IOMEM_PREV
, ISPPRV_PCR
,
1456 ISPPRV_PCR_EN
| ISPPRV_PCR_ONESHOT
);
1459 void omap3isp_preview_isr_frame_sync(struct isp_prev_device
*prev
)
1462 * If ISP_VIDEO_DMAQUEUE_QUEUED is set, DMA queue had an underrun
1463 * condition, the module was paused and now we have a buffer queued
1464 * on the output again. Restart the pipeline if running in continuous
1467 if (prev
->state
== ISP_PIPELINE_STREAM_CONTINUOUS
&&
1468 prev
->video_out
.dmaqueue_flags
& ISP_VIDEO_DMAQUEUE_QUEUED
) {
1469 preview_enable_oneshot(prev
);
1470 isp_video_dmaqueue_flags_clr(&prev
->video_out
);
1474 static void preview_isr_buffer(struct isp_prev_device
*prev
)
1476 struct isp_pipeline
*pipe
= to_isp_pipeline(&prev
->subdev
.entity
);
1477 struct isp_buffer
*buffer
;
1480 if (prev
->output
& PREVIEW_OUTPUT_MEMORY
) {
1481 buffer
= omap3isp_video_buffer_next(&prev
->video_out
);
1482 if (buffer
!= NULL
) {
1483 preview_set_outaddr(prev
, buffer
->dma
);
1486 pipe
->state
|= ISP_PIPELINE_IDLE_OUTPUT
;
1489 if (prev
->input
== PREVIEW_INPUT_MEMORY
) {
1490 buffer
= omap3isp_video_buffer_next(&prev
->video_in
);
1492 preview_set_inaddr(prev
, buffer
->dma
);
1493 pipe
->state
|= ISP_PIPELINE_IDLE_INPUT
;
1496 switch (prev
->state
) {
1497 case ISP_PIPELINE_STREAM_SINGLESHOT
:
1498 if (isp_pipeline_ready(pipe
))
1499 omap3isp_pipeline_set_stream(pipe
,
1500 ISP_PIPELINE_STREAM_SINGLESHOT
);
1503 case ISP_PIPELINE_STREAM_CONTINUOUS
:
1504 /* If an underrun occurs, the video queue operation handler will
1505 * restart the preview engine. Otherwise restart it immediately.
1508 preview_enable_oneshot(prev
);
1511 case ISP_PIPELINE_STREAM_STOPPED
:
1518 * omap3isp_preview_isr - ISP preview engine interrupt handler
1520 * Manage the preview engine video buffers and configure shadowed registers.
1522 void omap3isp_preview_isr(struct isp_prev_device
*prev
)
1524 unsigned long flags
;
1528 if (omap3isp_module_sync_is_stopping(&prev
->wait
, &prev
->stopping
))
1531 spin_lock_irqsave(&prev
->params
.lock
, flags
);
1532 preview_params_switch(prev
);
1533 update
= preview_params_lock(prev
, 0, false);
1534 active
= prev
->params
.active
;
1535 spin_unlock_irqrestore(&prev
->params
.lock
, flags
);
1537 preview_setup_hw(prev
, update
, active
);
1538 preview_config_input_size(prev
, active
);
1540 if (prev
->input
== PREVIEW_INPUT_MEMORY
||
1541 prev
->output
& PREVIEW_OUTPUT_MEMORY
)
1542 preview_isr_buffer(prev
);
1543 else if (prev
->state
== ISP_PIPELINE_STREAM_CONTINUOUS
)
1544 preview_enable_oneshot(prev
);
1546 spin_lock_irqsave(&prev
->params
.lock
, flags
);
1547 preview_params_unlock(prev
, update
, false);
1548 spin_unlock_irqrestore(&prev
->params
.lock
, flags
);
1551 /* -----------------------------------------------------------------------------
1552 * ISP video operations
1555 static int preview_video_queue(struct isp_video
*video
,
1556 struct isp_buffer
*buffer
)
1558 struct isp_prev_device
*prev
= &video
->isp
->isp_prev
;
1560 if (video
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT
)
1561 preview_set_inaddr(prev
, buffer
->dma
);
1563 if (video
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1564 preview_set_outaddr(prev
, buffer
->dma
);
1569 static const struct isp_video_operations preview_video_ops
= {
1570 .queue
= preview_video_queue
,
1573 /* -----------------------------------------------------------------------------
1574 * V4L2 subdev operations
1578 * preview_s_ctrl - Handle set control subdev method
1579 * @ctrl: pointer to v4l2 control structure
1581 static int preview_s_ctrl(struct v4l2_ctrl
*ctrl
)
1583 struct isp_prev_device
*prev
=
1584 container_of(ctrl
->handler
, struct isp_prev_device
, ctrls
);
1587 case V4L2_CID_BRIGHTNESS
:
1588 preview_update_brightness(prev
, ctrl
->val
);
1590 case V4L2_CID_CONTRAST
:
1591 preview_update_contrast(prev
, ctrl
->val
);
1598 static const struct v4l2_ctrl_ops preview_ctrl_ops
= {
1599 .s_ctrl
= preview_s_ctrl
,
1603 * preview_ioctl - Handle preview module private ioctl's
1604 * @sd: pointer to v4l2 subdev structure
1605 * @cmd: configuration command
1606 * @arg: configuration argument
1607 * return -EINVAL or zero on success
1609 static long preview_ioctl(struct v4l2_subdev
*sd
, unsigned int cmd
, void *arg
)
1611 struct isp_prev_device
*prev
= v4l2_get_subdevdata(sd
);
1614 case VIDIOC_OMAP3ISP_PRV_CFG
:
1615 return preview_config(prev
, arg
);
1618 return -ENOIOCTLCMD
;
1623 * preview_set_stream - Enable/Disable streaming on preview subdev
1624 * @sd : pointer to v4l2 subdev structure
1625 * @enable: 1 == Enable, 0 == Disable
1626 * return -EINVAL or zero on success
1628 static int preview_set_stream(struct v4l2_subdev
*sd
, int enable
)
1630 struct isp_prev_device
*prev
= v4l2_get_subdevdata(sd
);
1631 struct isp_video
*video_out
= &prev
->video_out
;
1632 struct isp_device
*isp
= to_isp_device(prev
);
1633 struct device
*dev
= to_device(prev
);
1635 if (prev
->state
== ISP_PIPELINE_STREAM_STOPPED
) {
1636 if (enable
== ISP_PIPELINE_STREAM_STOPPED
)
1639 omap3isp_subclk_enable(isp
, OMAP3_ISP_SUBCLK_PREVIEW
);
1640 preview_configure(prev
);
1641 atomic_set(&prev
->stopping
, 0);
1642 preview_print_status(prev
);
1646 case ISP_PIPELINE_STREAM_CONTINUOUS
:
1647 if (prev
->output
& PREVIEW_OUTPUT_MEMORY
)
1648 omap3isp_sbl_enable(isp
, OMAP3_ISP_SBL_PREVIEW_WRITE
);
1650 if (video_out
->dmaqueue_flags
& ISP_VIDEO_DMAQUEUE_QUEUED
||
1651 !(prev
->output
& PREVIEW_OUTPUT_MEMORY
))
1652 preview_enable_oneshot(prev
);
1654 isp_video_dmaqueue_flags_clr(video_out
);
1657 case ISP_PIPELINE_STREAM_SINGLESHOT
:
1658 if (prev
->input
== PREVIEW_INPUT_MEMORY
)
1659 omap3isp_sbl_enable(isp
, OMAP3_ISP_SBL_PREVIEW_READ
);
1660 if (prev
->output
& PREVIEW_OUTPUT_MEMORY
)
1661 omap3isp_sbl_enable(isp
, OMAP3_ISP_SBL_PREVIEW_WRITE
);
1663 preview_enable_oneshot(prev
);
1666 case ISP_PIPELINE_STREAM_STOPPED
:
1667 if (omap3isp_module_sync_idle(&sd
->entity
, &prev
->wait
,
1669 dev_dbg(dev
, "%s: stop timeout.\n", sd
->name
);
1670 omap3isp_sbl_disable(isp
, OMAP3_ISP_SBL_PREVIEW_READ
);
1671 omap3isp_sbl_disable(isp
, OMAP3_ISP_SBL_PREVIEW_WRITE
);
1672 omap3isp_subclk_disable(isp
, OMAP3_ISP_SUBCLK_PREVIEW
);
1673 isp_video_dmaqueue_flags_clr(video_out
);
1677 prev
->state
= enable
;
1681 static struct v4l2_mbus_framefmt
*
1682 __preview_get_format(struct isp_prev_device
*prev
, struct v4l2_subdev_pad_config
*cfg
,
1683 unsigned int pad
, enum v4l2_subdev_format_whence which
)
1685 if (which
== V4L2_SUBDEV_FORMAT_TRY
)
1686 return v4l2_subdev_get_try_format(&prev
->subdev
, cfg
, pad
);
1688 return &prev
->formats
[pad
];
1691 static struct v4l2_rect
*
1692 __preview_get_crop(struct isp_prev_device
*prev
, struct v4l2_subdev_pad_config
*cfg
,
1693 enum v4l2_subdev_format_whence which
)
1695 if (which
== V4L2_SUBDEV_FORMAT_TRY
)
1696 return v4l2_subdev_get_try_crop(&prev
->subdev
, cfg
, PREV_PAD_SINK
);
1701 /* previewer format descriptions */
1702 static const unsigned int preview_input_fmts
[] = {
1703 MEDIA_BUS_FMT_Y8_1X8
,
1704 MEDIA_BUS_FMT_SGRBG8_1X8
,
1705 MEDIA_BUS_FMT_SRGGB8_1X8
,
1706 MEDIA_BUS_FMT_SBGGR8_1X8
,
1707 MEDIA_BUS_FMT_SGBRG8_1X8
,
1708 MEDIA_BUS_FMT_Y10_1X10
,
1709 MEDIA_BUS_FMT_SGRBG10_1X10
,
1710 MEDIA_BUS_FMT_SRGGB10_1X10
,
1711 MEDIA_BUS_FMT_SBGGR10_1X10
,
1712 MEDIA_BUS_FMT_SGBRG10_1X10
,
1715 static const unsigned int preview_output_fmts
[] = {
1716 MEDIA_BUS_FMT_UYVY8_1X16
,
1717 MEDIA_BUS_FMT_YUYV8_1X16
,
1721 * preview_try_format - Validate a format
1722 * @prev: ISP preview engine
1723 * @cfg: V4L2 subdev pad configuration
1725 * @fmt: format to be validated
1726 * @which: try/active format selector
1728 * Validate and adjust the given format for the given pad based on the preview
1729 * engine limits and the format and crop rectangles on other pads.
1731 static void preview_try_format(struct isp_prev_device
*prev
,
1732 struct v4l2_subdev_pad_config
*cfg
, unsigned int pad
,
1733 struct v4l2_mbus_framefmt
*fmt
,
1734 enum v4l2_subdev_format_whence which
)
1737 struct v4l2_rect
*crop
;
1742 /* When reading data from the CCDC, the input size has already
1743 * been mangled by the CCDC output pad so it can be accepted
1746 * When reading data from memory, clamp the requested width and
1747 * height. The TRM doesn't specify a minimum input height, make
1748 * sure we got enough lines to enable the noise filter and color
1749 * filter array interpolation.
1751 if (prev
->input
== PREVIEW_INPUT_MEMORY
) {
1752 fmt
->width
= clamp_t(u32
, fmt
->width
, PREV_MIN_IN_WIDTH
,
1753 preview_max_out_width(prev
));
1754 fmt
->height
= clamp_t(u32
, fmt
->height
,
1756 PREV_MAX_IN_HEIGHT
);
1759 fmt
->colorspace
= V4L2_COLORSPACE_SRGB
;
1761 for (i
= 0; i
< ARRAY_SIZE(preview_input_fmts
); i
++) {
1762 if (fmt
->code
== preview_input_fmts
[i
])
1766 /* If not found, use SGRBG10 as default */
1767 if (i
>= ARRAY_SIZE(preview_input_fmts
))
1768 fmt
->code
= MEDIA_BUS_FMT_SGRBG10_1X10
;
1771 case PREV_PAD_SOURCE
:
1772 pixelcode
= fmt
->code
;
1773 *fmt
= *__preview_get_format(prev
, cfg
, PREV_PAD_SINK
, which
);
1775 switch (pixelcode
) {
1776 case MEDIA_BUS_FMT_YUYV8_1X16
:
1777 case MEDIA_BUS_FMT_UYVY8_1X16
:
1778 fmt
->code
= pixelcode
;
1782 fmt
->code
= MEDIA_BUS_FMT_YUYV8_1X16
;
1786 /* The preview module output size is configurable through the
1787 * averager (horizontal scaling by 1/1, 1/2, 1/4 or 1/8). This
1788 * is not supported yet, hardcode the output size to the crop
1791 crop
= __preview_get_crop(prev
, cfg
, which
);
1792 fmt
->width
= crop
->width
;
1793 fmt
->height
= crop
->height
;
1795 fmt
->colorspace
= V4L2_COLORSPACE_JPEG
;
1799 fmt
->field
= V4L2_FIELD_NONE
;
1803 * preview_try_crop - Validate a crop rectangle
1804 * @prev: ISP preview engine
1805 * @sink: format on the sink pad
1806 * @crop: crop rectangle to be validated
1808 * The preview engine crops lines and columns for its internal operation,
1809 * depending on which filters are enabled. Enforce minimum crop margins to
1810 * handle that transparently for userspace.
1812 * See the explanation at the PREV_MARGIN_* definitions for more details.
1814 static void preview_try_crop(struct isp_prev_device
*prev
,
1815 const struct v4l2_mbus_framefmt
*sink
,
1816 struct v4l2_rect
*crop
)
1818 unsigned int left
= PREV_MARGIN_LEFT
;
1819 unsigned int right
= sink
->width
- PREV_MARGIN_RIGHT
;
1820 unsigned int top
= PREV_MARGIN_TOP
;
1821 unsigned int bottom
= sink
->height
- PREV_MARGIN_BOTTOM
;
1823 /* When processing data on-the-fly from the CCDC, at least 2 pixels must
1824 * be cropped from the left and right sides of the image. As we don't
1825 * know which filters will be enabled, increase the left and right
1828 if (prev
->input
== PREVIEW_INPUT_CCDC
) {
1833 /* The CFA filter crops 4 lines and 4 columns in Bayer mode, and 2 lines
1834 * and no columns in other modes. Increase the margins based on the sink
1837 if (sink
->code
!= MEDIA_BUS_FMT_Y8_1X8
&&
1838 sink
->code
!= MEDIA_BUS_FMT_Y10_1X10
) {
1845 /* Restrict left/top to even values to keep the Bayer pattern. */
1849 crop
->left
= clamp_t(u32
, crop
->left
, left
, right
- PREV_MIN_OUT_WIDTH
);
1850 crop
->top
= clamp_t(u32
, crop
->top
, top
, bottom
- PREV_MIN_OUT_HEIGHT
);
1851 crop
->width
= clamp_t(u32
, crop
->width
, PREV_MIN_OUT_WIDTH
,
1852 right
- crop
->left
);
1853 crop
->height
= clamp_t(u32
, crop
->height
, PREV_MIN_OUT_HEIGHT
,
1854 bottom
- crop
->top
);
1858 * preview_enum_mbus_code - Handle pixel format enumeration
1859 * @sd : pointer to v4l2 subdev structure
1860 * @cfg: V4L2 subdev pad configuration
1861 * @code : pointer to v4l2_subdev_mbus_code_enum structure
1862 * return -EINVAL or zero on success
1864 static int preview_enum_mbus_code(struct v4l2_subdev
*sd
,
1865 struct v4l2_subdev_pad_config
*cfg
,
1866 struct v4l2_subdev_mbus_code_enum
*code
)
1868 switch (code
->pad
) {
1870 if (code
->index
>= ARRAY_SIZE(preview_input_fmts
))
1873 code
->code
= preview_input_fmts
[code
->index
];
1875 case PREV_PAD_SOURCE
:
1876 if (code
->index
>= ARRAY_SIZE(preview_output_fmts
))
1879 code
->code
= preview_output_fmts
[code
->index
];
1888 static int preview_enum_frame_size(struct v4l2_subdev
*sd
,
1889 struct v4l2_subdev_pad_config
*cfg
,
1890 struct v4l2_subdev_frame_size_enum
*fse
)
1892 struct isp_prev_device
*prev
= v4l2_get_subdevdata(sd
);
1893 struct v4l2_mbus_framefmt format
;
1895 if (fse
->index
!= 0)
1898 format
.code
= fse
->code
;
1901 preview_try_format(prev
, cfg
, fse
->pad
, &format
, fse
->which
);
1902 fse
->min_width
= format
.width
;
1903 fse
->min_height
= format
.height
;
1905 if (format
.code
!= fse
->code
)
1908 format
.code
= fse
->code
;
1911 preview_try_format(prev
, cfg
, fse
->pad
, &format
, fse
->which
);
1912 fse
->max_width
= format
.width
;
1913 fse
->max_height
= format
.height
;
1919 * preview_get_selection - Retrieve a selection rectangle on a pad
1920 * @sd: ISP preview V4L2 subdevice
1921 * @cfg: V4L2 subdev pad configuration
1922 * @sel: Selection rectangle
1924 * The only supported rectangles are the crop rectangles on the sink pad.
1926 * Return 0 on success or a negative error code otherwise.
1928 static int preview_get_selection(struct v4l2_subdev
*sd
,
1929 struct v4l2_subdev_pad_config
*cfg
,
1930 struct v4l2_subdev_selection
*sel
)
1932 struct isp_prev_device
*prev
= v4l2_get_subdevdata(sd
);
1933 struct v4l2_mbus_framefmt
*format
;
1935 if (sel
->pad
!= PREV_PAD_SINK
)
1938 switch (sel
->target
) {
1939 case V4L2_SEL_TGT_CROP_BOUNDS
:
1942 sel
->r
.width
= INT_MAX
;
1943 sel
->r
.height
= INT_MAX
;
1945 format
= __preview_get_format(prev
, cfg
, PREV_PAD_SINK
,
1947 preview_try_crop(prev
, format
, &sel
->r
);
1950 case V4L2_SEL_TGT_CROP
:
1951 sel
->r
= *__preview_get_crop(prev
, cfg
, sel
->which
);
1962 * preview_set_selection - Set a selection rectangle on a pad
1963 * @sd: ISP preview V4L2 subdevice
1964 * @cfg: V4L2 subdev pad configuration
1965 * @sel: Selection rectangle
1967 * The only supported rectangle is the actual crop rectangle on the sink pad.
1969 * Return 0 on success or a negative error code otherwise.
1971 static int preview_set_selection(struct v4l2_subdev
*sd
,
1972 struct v4l2_subdev_pad_config
*cfg
,
1973 struct v4l2_subdev_selection
*sel
)
1975 struct isp_prev_device
*prev
= v4l2_get_subdevdata(sd
);
1976 struct v4l2_mbus_framefmt
*format
;
1978 if (sel
->target
!= V4L2_SEL_TGT_CROP
||
1979 sel
->pad
!= PREV_PAD_SINK
)
1982 /* The crop rectangle can't be changed while streaming. */
1983 if (prev
->state
!= ISP_PIPELINE_STREAM_STOPPED
)
1986 /* Modifying the crop rectangle always changes the format on the source
1987 * pad. If the KEEP_CONFIG flag is set, just return the current crop
1990 if (sel
->flags
& V4L2_SEL_FLAG_KEEP_CONFIG
) {
1991 sel
->r
= *__preview_get_crop(prev
, cfg
, sel
->which
);
1995 format
= __preview_get_format(prev
, cfg
, PREV_PAD_SINK
, sel
->which
);
1996 preview_try_crop(prev
, format
, &sel
->r
);
1997 *__preview_get_crop(prev
, cfg
, sel
->which
) = sel
->r
;
1999 /* Update the source format. */
2000 format
= __preview_get_format(prev
, cfg
, PREV_PAD_SOURCE
, sel
->which
);
2001 preview_try_format(prev
, cfg
, PREV_PAD_SOURCE
, format
, sel
->which
);
2007 * preview_get_format - Handle get format by pads subdev method
2008 * @sd : pointer to v4l2 subdev structure
2009 * @cfg: V4L2 subdev pad configuration
2010 * @fmt: pointer to v4l2 subdev format structure
2011 * return -EINVAL or zero on success
2013 static int preview_get_format(struct v4l2_subdev
*sd
, struct v4l2_subdev_pad_config
*cfg
,
2014 struct v4l2_subdev_format
*fmt
)
2016 struct isp_prev_device
*prev
= v4l2_get_subdevdata(sd
);
2017 struct v4l2_mbus_framefmt
*format
;
2019 format
= __preview_get_format(prev
, cfg
, fmt
->pad
, fmt
->which
);
2023 fmt
->format
= *format
;
2028 * preview_set_format - Handle set format by pads subdev method
2029 * @sd : pointer to v4l2 subdev structure
2030 * @cfg: V4L2 subdev pad configuration
2031 * @fmt: pointer to v4l2 subdev format structure
2032 * return -EINVAL or zero on success
2034 static int preview_set_format(struct v4l2_subdev
*sd
, struct v4l2_subdev_pad_config
*cfg
,
2035 struct v4l2_subdev_format
*fmt
)
2037 struct isp_prev_device
*prev
= v4l2_get_subdevdata(sd
);
2038 struct v4l2_mbus_framefmt
*format
;
2039 struct v4l2_rect
*crop
;
2041 format
= __preview_get_format(prev
, cfg
, fmt
->pad
, fmt
->which
);
2045 preview_try_format(prev
, cfg
, fmt
->pad
, &fmt
->format
, fmt
->which
);
2046 *format
= fmt
->format
;
2048 /* Propagate the format from sink to source */
2049 if (fmt
->pad
== PREV_PAD_SINK
) {
2050 /* Reset the crop rectangle. */
2051 crop
= __preview_get_crop(prev
, cfg
, fmt
->which
);
2054 crop
->width
= fmt
->format
.width
;
2055 crop
->height
= fmt
->format
.height
;
2057 preview_try_crop(prev
, &fmt
->format
, crop
);
2059 /* Update the source format. */
2060 format
= __preview_get_format(prev
, cfg
, PREV_PAD_SOURCE
,
2062 preview_try_format(prev
, cfg
, PREV_PAD_SOURCE
, format
,
2070 * preview_init_formats - Initialize formats on all pads
2071 * @sd: ISP preview V4L2 subdevice
2072 * @fh: V4L2 subdev file handle
2074 * Initialize all pad formats with default values. If fh is not NULL, try
2075 * formats are initialized on the file handle. Otherwise active formats are
2076 * initialized on the device.
2078 static int preview_init_formats(struct v4l2_subdev
*sd
,
2079 struct v4l2_subdev_fh
*fh
)
2081 struct v4l2_subdev_format format
;
2083 memset(&format
, 0, sizeof(format
));
2084 format
.pad
= PREV_PAD_SINK
;
2085 format
.which
= fh
? V4L2_SUBDEV_FORMAT_TRY
: V4L2_SUBDEV_FORMAT_ACTIVE
;
2086 format
.format
.code
= MEDIA_BUS_FMT_SGRBG10_1X10
;
2087 format
.format
.width
= 4096;
2088 format
.format
.height
= 4096;
2089 preview_set_format(sd
, fh
? fh
->pad
: NULL
, &format
);
2094 /* subdev core operations */
2095 static const struct v4l2_subdev_core_ops preview_v4l2_core_ops
= {
2096 .ioctl
= preview_ioctl
,
2099 /* subdev video operations */
2100 static const struct v4l2_subdev_video_ops preview_v4l2_video_ops
= {
2101 .s_stream
= preview_set_stream
,
2104 /* subdev pad operations */
2105 static const struct v4l2_subdev_pad_ops preview_v4l2_pad_ops
= {
2106 .enum_mbus_code
= preview_enum_mbus_code
,
2107 .enum_frame_size
= preview_enum_frame_size
,
2108 .get_fmt
= preview_get_format
,
2109 .set_fmt
= preview_set_format
,
2110 .get_selection
= preview_get_selection
,
2111 .set_selection
= preview_set_selection
,
2114 /* subdev operations */
2115 static const struct v4l2_subdev_ops preview_v4l2_ops
= {
2116 .core
= &preview_v4l2_core_ops
,
2117 .video
= &preview_v4l2_video_ops
,
2118 .pad
= &preview_v4l2_pad_ops
,
2121 /* subdev internal operations */
2122 static const struct v4l2_subdev_internal_ops preview_v4l2_internal_ops
= {
2123 .open
= preview_init_formats
,
2126 /* -----------------------------------------------------------------------------
2127 * Media entity operations
2131 * preview_link_setup - Setup previewer connections.
2132 * @entity : Pointer to media entity structure
2133 * @local : Pointer to local pad array
2134 * @remote : Pointer to remote pad array
2135 * @flags : Link flags
2136 * return -EINVAL or zero on success
2138 static int preview_link_setup(struct media_entity
*entity
,
2139 const struct media_pad
*local
,
2140 const struct media_pad
*remote
, u32 flags
)
2142 struct v4l2_subdev
*sd
= media_entity_to_v4l2_subdev(entity
);
2143 struct isp_prev_device
*prev
= v4l2_get_subdevdata(sd
);
2144 unsigned int index
= local
->index
;
2146 /* FIXME: this is actually a hack! */
2147 if (is_media_entity_v4l2_subdev(remote
->entity
))
2152 /* read from memory */
2153 if (flags
& MEDIA_LNK_FL_ENABLED
) {
2154 if (prev
->input
== PREVIEW_INPUT_CCDC
)
2156 prev
->input
= PREVIEW_INPUT_MEMORY
;
2158 if (prev
->input
== PREVIEW_INPUT_MEMORY
)
2159 prev
->input
= PREVIEW_INPUT_NONE
;
2163 case PREV_PAD_SINK
| 2 << 16:
2164 /* read from ccdc */
2165 if (flags
& MEDIA_LNK_FL_ENABLED
) {
2166 if (prev
->input
== PREVIEW_INPUT_MEMORY
)
2168 prev
->input
= PREVIEW_INPUT_CCDC
;
2170 if (prev
->input
== PREVIEW_INPUT_CCDC
)
2171 prev
->input
= PREVIEW_INPUT_NONE
;
2176 * The ISP core doesn't support pipelines with multiple video outputs.
2177 * Revisit this when it will be implemented, and return -EBUSY for now.
2180 case PREV_PAD_SOURCE
:
2181 /* write to memory */
2182 if (flags
& MEDIA_LNK_FL_ENABLED
) {
2183 if (prev
->output
& ~PREVIEW_OUTPUT_MEMORY
)
2185 prev
->output
|= PREVIEW_OUTPUT_MEMORY
;
2187 prev
->output
&= ~PREVIEW_OUTPUT_MEMORY
;
2191 case PREV_PAD_SOURCE
| 2 << 16:
2192 /* write to resizer */
2193 if (flags
& MEDIA_LNK_FL_ENABLED
) {
2194 if (prev
->output
& ~PREVIEW_OUTPUT_RESIZER
)
2196 prev
->output
|= PREVIEW_OUTPUT_RESIZER
;
2198 prev
->output
&= ~PREVIEW_OUTPUT_RESIZER
;
2209 /* media operations */
2210 static const struct media_entity_operations preview_media_ops
= {
2211 .link_setup
= preview_link_setup
,
2212 .link_validate
= v4l2_subdev_link_validate
,
2215 void omap3isp_preview_unregister_entities(struct isp_prev_device
*prev
)
2217 v4l2_device_unregister_subdev(&prev
->subdev
);
2218 omap3isp_video_unregister(&prev
->video_in
);
2219 omap3isp_video_unregister(&prev
->video_out
);
2222 int omap3isp_preview_register_entities(struct isp_prev_device
*prev
,
2223 struct v4l2_device
*vdev
)
2227 /* Register the subdev and video nodes. */
2228 prev
->subdev
.dev
= vdev
->mdev
->dev
;
2229 ret
= v4l2_device_register_subdev(vdev
, &prev
->subdev
);
2233 ret
= omap3isp_video_register(&prev
->video_in
, vdev
);
2237 ret
= omap3isp_video_register(&prev
->video_out
, vdev
);
2244 omap3isp_preview_unregister_entities(prev
);
2248 /* -----------------------------------------------------------------------------
2249 * ISP previewer initialisation and cleanup
2253 * preview_init_entities - Initialize subdev and media entity.
2254 * @prev : Pointer to preview structure
2255 * return -ENOMEM or zero on success
2257 static int preview_init_entities(struct isp_prev_device
*prev
)
2259 struct v4l2_subdev
*sd
= &prev
->subdev
;
2260 struct media_pad
*pads
= prev
->pads
;
2261 struct media_entity
*me
= &sd
->entity
;
2264 prev
->input
= PREVIEW_INPUT_NONE
;
2266 v4l2_subdev_init(sd
, &preview_v4l2_ops
);
2267 sd
->internal_ops
= &preview_v4l2_internal_ops
;
2268 strscpy(sd
->name
, "OMAP3 ISP preview", sizeof(sd
->name
));
2269 sd
->grp_id
= 1 << 16; /* group ID for isp subdevs */
2270 v4l2_set_subdevdata(sd
, prev
);
2271 sd
->flags
|= V4L2_SUBDEV_FL_HAS_DEVNODE
;
2273 v4l2_ctrl_handler_init(&prev
->ctrls
, 2);
2274 v4l2_ctrl_new_std(&prev
->ctrls
, &preview_ctrl_ops
, V4L2_CID_BRIGHTNESS
,
2275 ISPPRV_BRIGHT_LOW
, ISPPRV_BRIGHT_HIGH
,
2276 ISPPRV_BRIGHT_STEP
, ISPPRV_BRIGHT_DEF
);
2277 v4l2_ctrl_new_std(&prev
->ctrls
, &preview_ctrl_ops
, V4L2_CID_CONTRAST
,
2278 ISPPRV_CONTRAST_LOW
, ISPPRV_CONTRAST_HIGH
,
2279 ISPPRV_CONTRAST_STEP
, ISPPRV_CONTRAST_DEF
);
2280 v4l2_ctrl_handler_setup(&prev
->ctrls
);
2281 sd
->ctrl_handler
= &prev
->ctrls
;
2283 pads
[PREV_PAD_SINK
].flags
= MEDIA_PAD_FL_SINK
2284 | MEDIA_PAD_FL_MUST_CONNECT
;
2285 pads
[PREV_PAD_SOURCE
].flags
= MEDIA_PAD_FL_SOURCE
;
2287 me
->ops
= &preview_media_ops
;
2288 ret
= media_entity_pads_init(me
, PREV_PADS_NUM
, pads
);
2290 goto error_handler_free
;
2292 preview_init_formats(sd
, NULL
);
2294 /* According to the OMAP34xx TRM, video buffers need to be aligned on a
2295 * 32 bytes boundary. However, an undocumented hardware bug requires a
2296 * 64 bytes boundary at the preview engine input.
2298 prev
->video_in
.type
= V4L2_BUF_TYPE_VIDEO_OUTPUT
;
2299 prev
->video_in
.ops
= &preview_video_ops
;
2300 prev
->video_in
.isp
= to_isp_device(prev
);
2301 prev
->video_in
.capture_mem
= PAGE_ALIGN(4096 * 4096) * 2 * 3;
2302 prev
->video_in
.bpl_alignment
= 64;
2303 prev
->video_out
.type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
2304 prev
->video_out
.ops
= &preview_video_ops
;
2305 prev
->video_out
.isp
= to_isp_device(prev
);
2306 prev
->video_out
.capture_mem
= PAGE_ALIGN(4096 * 4096) * 2 * 3;
2307 prev
->video_out
.bpl_alignment
= 32;
2309 ret
= omap3isp_video_init(&prev
->video_in
, "preview");
2311 goto error_video_in
;
2313 ret
= omap3isp_video_init(&prev
->video_out
, "preview");
2315 goto error_video_out
;
2320 omap3isp_video_cleanup(&prev
->video_in
);
2322 media_entity_cleanup(&prev
->subdev
.entity
);
2324 v4l2_ctrl_handler_free(&prev
->ctrls
);
2329 * omap3isp_preview_init - Previewer initialization.
2330 * @isp : Pointer to ISP device
2331 * return -ENOMEM or zero on success
2333 int omap3isp_preview_init(struct isp_device
*isp
)
2335 struct isp_prev_device
*prev
= &isp
->isp_prev
;
2337 init_waitqueue_head(&prev
->wait
);
2339 preview_init_params(prev
);
2341 return preview_init_entities(prev
);
2344 void omap3isp_preview_cleanup(struct isp_device
*isp
)
2346 struct isp_prev_device
*prev
= &isp
->isp_prev
;
2348 v4l2_ctrl_handler_free(&prev
->ctrls
);
2349 omap3isp_video_cleanup(&prev
->video_in
);
2350 omap3isp_video_cleanup(&prev
->video_out
);
2351 media_entity_cleanup(&prev
->subdev
.entity
);