1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2005-2009 Texas Instruments Inc
5 * CCDC hardware module for DM355
6 * ------------------------------
8 * This module is for configuring DM355 CCD controller of VPFE to capture
9 * Raw yuv or Bayer RGB data from a decoder. CCDC has several modules
10 * such as Defect Pixel Correction, Color Space Conversion etc to
11 * pre-process the Bayer RGB data, before writing it to SDRAM.
13 * TODO: 1) Raw bayer parameter settings and bayer capture
14 * 2) Split module parameter structure to module specific ioctl structs
15 * 3) add support for lense shading correction
16 * 4) investigate if enum used for user space type definition
17 * to be replaced by #defines or integer
19 #include <linux/platform_device.h>
20 #include <linux/uaccess.h>
21 #include <linux/videodev2.h>
22 #include <linux/err.h>
23 #include <linux/module.h>
25 #include <media/davinci/dm355_ccdc.h>
26 #include <media/davinci/vpss.h>
28 #include "dm355_ccdc_regs.h"
29 #include "ccdc_hw_device.h"
31 MODULE_LICENSE("GPL");
32 MODULE_DESCRIPTION("CCDC Driver for DM355");
33 MODULE_AUTHOR("Texas Instruments");
35 static struct ccdc_oper_config
{
37 /* CCDC interface type */
38 enum vpfe_hw_if_type if_type
;
39 /* Raw Bayer configuration */
40 struct ccdc_params_raw bayer
;
41 /* YCbCr configuration */
42 struct ccdc_params_ycbcr ycbcr
;
43 /* ccdc base address */
44 void __iomem
*base_addr
;
46 /* Raw configurations */
48 .pix_fmt
= CCDC_PIXFMT_RAW
,
49 .frm_fmt
= CCDC_FRMFMT_PROGRESSIVE
,
51 .fid_pol
= VPFE_PINPOL_POSITIVE
,
52 .vd_pol
= VPFE_PINPOL_POSITIVE
,
53 .hd_pol
= VPFE_PINPOL_POSITIVE
,
62 .mfilt1
= CCDC_NO_MEDIAN_FILTER1
,
63 .mfilt2
= CCDC_NO_MEDIAN_FILTER2
,
72 .olop
= CCDC_GREEN_BLUE
,
75 .elep
= CCDC_GREEN_RED
78 .olop
= CCDC_GREEN_BLUE
,
81 .elep
= CCDC_GREEN_RED
85 /* YCbCr configuration */
88 .pix_fmt
= CCDC_PIXFMT_YCBCR_8BIT
,
89 .frm_fmt
= CCDC_FRMFMT_INTERLACED
,
90 .fid_pol
= VPFE_PINPOL_POSITIVE
,
91 .vd_pol
= VPFE_PINPOL_POSITIVE
,
92 .hd_pol
= VPFE_PINPOL_POSITIVE
,
94 .pix_order
= CCDC_PIXORDER_CBYCRY
,
95 .buf_type
= CCDC_BUFTYPE_FLD_INTERLEAVED
100 /* Raw Bayer formats */
101 static u32 ccdc_raw_bayer_pix_formats
[] =
102 {V4L2_PIX_FMT_SBGGR8
, V4L2_PIX_FMT_SBGGR16
};
104 /* Raw YUV formats */
105 static u32 ccdc_raw_yuv_pix_formats
[] =
106 {V4L2_PIX_FMT_UYVY
, V4L2_PIX_FMT_YUYV
};
108 /* register access routines */
109 static inline u32
regr(u32 offset
)
111 return __raw_readl(ccdc_cfg
.base_addr
+ offset
);
114 static inline void regw(u32 val
, u32 offset
)
116 __raw_writel(val
, ccdc_cfg
.base_addr
+ offset
);
119 static void ccdc_enable(int en
)
123 temp
&= (~CCDC_SYNCEN_VDHDEN_MASK
);
124 temp
|= (en
& CCDC_SYNCEN_VDHDEN_MASK
);
128 static void ccdc_enable_output_to_sdram(int en
)
132 temp
&= (~(CCDC_SYNCEN_WEN_MASK
));
133 temp
|= ((en
<< CCDC_SYNCEN_WEN_SHIFT
) & CCDC_SYNCEN_WEN_MASK
);
137 static void ccdc_config_gain_offset(void)
140 regw(ccdc_cfg
.bayer
.gain
.r_ye
, RYEGAIN
);
141 regw(ccdc_cfg
.bayer
.gain
.gr_cy
, GRCYGAIN
);
142 regw(ccdc_cfg
.bayer
.gain
.gb_g
, GBGGAIN
);
143 regw(ccdc_cfg
.bayer
.gain
.b_mg
, BMGGAIN
);
144 /* configure offset */
145 regw(ccdc_cfg
.bayer
.ccdc_offset
, OFFSET
);
149 * ccdc_restore_defaults()
150 * This function restore power on defaults in the ccdc registers
152 static int ccdc_restore_defaults(void)
156 dev_dbg(ccdc_cfg
.dev
, "\nstarting ccdc_restore_defaults...");
157 /* set all registers to zero */
158 for (i
= 0; i
<= CCDC_REG_LAST
; i
+= 4)
161 /* now override the values with power on defaults in registers */
162 regw(MODESET_DEFAULT
, MODESET
);
163 /* no culling support */
164 regw(CULH_DEFAULT
, CULH
);
165 regw(CULV_DEFAULT
, CULV
);
166 /* Set default Gain and Offset */
167 ccdc_cfg
.bayer
.gain
.r_ye
= GAIN_DEFAULT
;
168 ccdc_cfg
.bayer
.gain
.gb_g
= GAIN_DEFAULT
;
169 ccdc_cfg
.bayer
.gain
.gr_cy
= GAIN_DEFAULT
;
170 ccdc_cfg
.bayer
.gain
.b_mg
= GAIN_DEFAULT
;
171 ccdc_config_gain_offset();
172 regw(OUTCLIP_DEFAULT
, OUTCLIP
);
173 regw(LSCCFG2_DEFAULT
, LSCCFG2
);
174 /* select ccdc input */
175 if (vpss_select_ccdc_source(VPSS_CCDCIN
)) {
176 dev_dbg(ccdc_cfg
.dev
, "\ncouldn't select ccdc input source");
179 /* select ccdc clock */
180 if (vpss_enable_clock(VPSS_CCDC_CLOCK
, 1) < 0) {
181 dev_dbg(ccdc_cfg
.dev
, "\ncouldn't enable ccdc clock");
184 dev_dbg(ccdc_cfg
.dev
, "\nEnd of ccdc_restore_defaults...");
188 static int ccdc_open(struct device
*device
)
190 return ccdc_restore_defaults();
193 static int ccdc_close(struct device
*device
)
196 vpss_enable_clock(VPSS_CCDC_CLOCK
, 0);
197 /* do nothing for now */
202 * This function will configure the window size to
203 * be capture in CCDC reg.
205 static void ccdc_setwin(struct v4l2_rect
*image_win
,
206 enum ccdc_frmfmt frm_fmt
, int ppc
)
208 int horz_start
, horz_nr_pixels
;
209 int vert_start
, vert_nr_lines
;
212 dev_dbg(ccdc_cfg
.dev
, "\nStarting ccdc_setwin...");
215 * ppc - per pixel count. indicates how many pixels per cell
216 * output to SDRAM. example, for ycbcr, it is one y and one c, so 2.
217 * raw capture this is 1
219 horz_start
= image_win
->left
<< (ppc
- 1);
220 horz_nr_pixels
= ((image_win
->width
) << (ppc
- 1)) - 1;
222 /* Writing the horizontal info into the registers */
223 regw(horz_start
, SPH
);
224 regw(horz_nr_pixels
, NPH
);
225 vert_start
= image_win
->top
;
227 if (frm_fmt
== CCDC_FRMFMT_INTERLACED
) {
228 vert_nr_lines
= (image_win
->height
>> 1) - 1;
230 /* Since first line doesn't have any data */
232 /* configure VDINT0 and VDINT1 */
233 regw(vert_start
, VDINT0
);
235 /* Since first line doesn't have any data */
237 vert_nr_lines
= image_win
->height
- 1;
238 /* configure VDINT0 and VDINT1 */
239 mid_img
= vert_start
+ (image_win
->height
/ 2);
240 regw(vert_start
, VDINT0
);
241 regw(mid_img
, VDINT1
);
243 regw(vert_start
& CCDC_START_VER_ONE_MASK
, SLV0
);
244 regw(vert_start
& CCDC_START_VER_TWO_MASK
, SLV1
);
245 regw(vert_nr_lines
& CCDC_NUM_LINES_VER
, NLV
);
246 dev_dbg(ccdc_cfg
.dev
, "\nEnd of ccdc_setwin...");
249 /* This function will configure CCDC for YCbCr video capture */
250 static void ccdc_config_ycbcr(void)
252 struct ccdc_params_ycbcr
*params
= &ccdc_cfg
.ycbcr
;
255 /* first set the CCDC power on defaults values in all registers */
256 dev_dbg(ccdc_cfg
.dev
, "\nStarting ccdc_config_ycbcr...");
257 ccdc_restore_defaults();
259 /* configure pixel format & video frame format */
260 temp
= (((params
->pix_fmt
& CCDC_INPUT_MODE_MASK
) <<
261 CCDC_INPUT_MODE_SHIFT
) |
262 ((params
->frm_fmt
& CCDC_FRM_FMT_MASK
) <<
263 CCDC_FRM_FMT_SHIFT
));
265 /* setup BT.656 sync mode */
266 if (params
->bt656_enable
) {
267 regw(CCDC_REC656IF_BT656_EN
, REC656IF
);
269 * configure the FID, VD, HD pin polarity fld,hd pol positive,
270 * vd negative, 8-bit pack mode
272 temp
|= CCDC_VD_POL_NEGATIVE
;
273 } else { /* y/c external sync mode */
274 temp
|= (((params
->fid_pol
& CCDC_FID_POL_MASK
) <<
275 CCDC_FID_POL_SHIFT
) |
276 ((params
->hd_pol
& CCDC_HD_POL_MASK
) <<
278 ((params
->vd_pol
& CCDC_VD_POL_MASK
) <<
282 /* pack the data to 8-bit */
283 temp
|= CCDC_DATA_PACK_ENABLE
;
287 /* configure video window */
288 ccdc_setwin(¶ms
->win
, params
->frm_fmt
, 2);
290 /* configure the order of y cb cr in SD-RAM */
291 temp
= (params
->pix_order
<< CCDC_Y8POS_SHIFT
);
292 temp
|= CCDC_LATCH_ON_VSYNC_DISABLE
| CCDC_CCDCFG_FIDMD_NO_LATCH_VSYNC
;
296 * configure the horizontal line offset. This is done by rounding up
297 * width to a multiple of 16 pixels and multiply by two to account for
300 regw(((params
->win
.width
* 2 + 31) >> 5), HSIZE
);
302 /* configure the memory line offset */
303 if (params
->buf_type
== CCDC_BUFTYPE_FLD_INTERLEAVED
) {
304 /* two fields are interleaved in memory */
305 regw(CCDC_SDOFST_FIELD_INTERLEAVED
, SDOFST
);
308 dev_dbg(ccdc_cfg
.dev
, "\nEnd of ccdc_config_ycbcr...\n");
312 * ccdc_config_black_clamp()
313 * configure parameters for Optical Black Clamp
315 static void ccdc_config_black_clamp(struct ccdc_black_clamp
*bclamp
)
319 if (!bclamp
->b_clamp_enable
) {
320 /* configure DCSub */
321 regw(bclamp
->dc_sub
& CCDC_BLK_DC_SUB_MASK
, DCSUB
);
325 /* Enable the Black clamping, set sample lines and pixels */
326 val
= (bclamp
->start_pixel
& CCDC_BLK_ST_PXL_MASK
) |
327 ((bclamp
->sample_pixel
& CCDC_BLK_SAMPLE_LN_MASK
) <<
328 CCDC_BLK_SAMPLE_LN_SHIFT
) | CCDC_BLK_CLAMP_ENABLE
;
331 /* If Black clamping is enable then make dcsub 0 */
332 val
= (bclamp
->sample_ln
& CCDC_NUM_LINE_CALC_MASK
)
333 << CCDC_NUM_LINE_CALC_SHIFT
;
338 * ccdc_config_black_compense()
339 * configure parameters for Black Compensation
341 static void ccdc_config_black_compense(struct ccdc_black_compensation
*bcomp
)
345 val
= (bcomp
->b
& CCDC_BLK_COMP_MASK
) |
346 ((bcomp
->gb
& CCDC_BLK_COMP_MASK
) <<
347 CCDC_BLK_COMP_GB_COMP_SHIFT
);
350 val
= ((bcomp
->gr
& CCDC_BLK_COMP_MASK
) <<
351 CCDC_BLK_COMP_GR_COMP_SHIFT
) |
352 ((bcomp
->r
& CCDC_BLK_COMP_MASK
) <<
353 CCDC_BLK_COMP_R_COMP_SHIFT
);
358 * ccdc_write_dfc_entry()
359 * write an entry in the dfc table.
361 static int ccdc_write_dfc_entry(int index
, struct ccdc_vertical_dft
*dfc
)
363 /* TODO This is to be re-visited and adjusted */
364 #define DFC_WRITE_WAIT_COUNT 1000
365 u32 val
, count
= DFC_WRITE_WAIT_COUNT
;
367 regw(dfc
->dft_corr_vert
[index
], DFCMEM0
);
368 regw(dfc
->dft_corr_horz
[index
], DFCMEM1
);
369 regw(dfc
->dft_corr_sub1
[index
], DFCMEM2
);
370 regw(dfc
->dft_corr_sub2
[index
], DFCMEM3
);
371 regw(dfc
->dft_corr_sub3
[index
], DFCMEM4
);
372 /* set WR bit to write */
373 val
= regr(DFCMEMCTL
) | CCDC_DFCMEMCTL_DFCMWR_MASK
;
374 regw(val
, DFCMEMCTL
);
377 * Assume, it is very short. If we get an error, we need to
380 while (regr(DFCMEMCTL
) & CCDC_DFCMEMCTL_DFCMWR_MASK
)
383 * TODO We expect the count to be non-zero to be successful. Adjust
384 * the count if write requires more time
388 dev_err(ccdc_cfg
.dev
, "defect table write timeout !!!\n");
396 * configure parameters for Vertical Defect Correction
398 static int ccdc_config_vdfc(struct ccdc_vertical_dft
*dfc
)
403 /* Configure General Defect Correction. The table used is from IPIPE */
404 val
= dfc
->gen_dft_en
& CCDC_DFCCTL_GDFCEN_MASK
;
406 /* Configure Vertical Defect Correction if needed */
407 if (!dfc
->ver_dft_en
) {
408 /* Enable only General Defect Correction */
413 if (dfc
->table_size
> CCDC_DFT_TABLE_SIZE
)
416 val
|= CCDC_DFCCTL_VDFC_DISABLE
;
417 val
|= (dfc
->dft_corr_ctl
.vdfcsl
& CCDC_DFCCTL_VDFCSL_MASK
) <<
418 CCDC_DFCCTL_VDFCSL_SHIFT
;
419 val
|= (dfc
->dft_corr_ctl
.vdfcuda
& CCDC_DFCCTL_VDFCUDA_MASK
) <<
420 CCDC_DFCCTL_VDFCUDA_SHIFT
;
421 val
|= (dfc
->dft_corr_ctl
.vdflsft
& CCDC_DFCCTL_VDFLSFT_MASK
) <<
422 CCDC_DFCCTL_VDFLSFT_SHIFT
;
425 /* clear address ptr to offset 0 */
426 val
= CCDC_DFCMEMCTL_DFCMARST_MASK
<< CCDC_DFCMEMCTL_DFCMARST_SHIFT
;
428 /* write defect table entries */
429 for (i
= 0; i
< dfc
->table_size
; i
++) {
430 /* increment address for non zero index */
432 val
= CCDC_DFCMEMCTL_INC_ADDR
;
433 regw(val
, DFCMEMCTL
);
434 if (ccdc_write_dfc_entry(i
, dfc
) < 0)
438 /* update saturation level and enable dfc */
439 regw(dfc
->saturation_ctl
& CCDC_VDC_DFCVSAT_MASK
, DFCVSAT
);
440 val
= regr(DFCCTL
) | (CCDC_DFCCTL_VDFCEN_MASK
<<
441 CCDC_DFCCTL_VDFCEN_SHIFT
);
448 * configure parameters for color space conversion
449 * Each register CSCM0-7 has two values in S8Q5 format.
451 static void ccdc_config_csc(struct ccdc_csc
*csc
)
459 /* Enable the CSC sub-module */
460 regw(CCDC_CSC_ENABLE
, CSCCTL
);
462 /* Converting the co-eff as per the format of the register */
463 for (i
= 0; i
< CCDC_CSC_COEFF_TABLE_SIZE
; i
++) {
466 val1
= (csc
->coeff
[i
].integer
&
467 CCDC_CSC_COEF_INTEG_MASK
)
468 << CCDC_CSC_COEF_INTEG_SHIFT
;
470 * convert decimal part to binary. Use 2 decimal
471 * precision, user values range from .00 - 0.99
473 val1
|= (((csc
->coeff
[i
].decimal
&
474 CCDC_CSC_COEF_DECIMAL_MASK
) *
475 CCDC_CSC_DEC_MAX
) / 100);
479 val2
= (csc
->coeff
[i
].integer
&
480 CCDC_CSC_COEF_INTEG_MASK
)
481 << CCDC_CSC_COEF_INTEG_SHIFT
;
482 val2
|= (((csc
->coeff
[i
].decimal
&
483 CCDC_CSC_COEF_DECIMAL_MASK
) *
484 CCDC_CSC_DEC_MAX
) / 100);
485 val2
<<= CCDC_CSCM_MSB_SHIFT
;
487 regw(val2
, (CSCM0
+ ((i
- 1) << 1)));
493 * ccdc_config_color_patterns()
494 * configure parameters for color patterns
496 static void ccdc_config_color_patterns(struct ccdc_col_pat
*pat0
,
497 struct ccdc_col_pat
*pat1
)
501 val
= (pat0
->olop
| (pat0
->olep
<< 2) | (pat0
->elop
<< 4) |
502 (pat0
->elep
<< 6) | (pat1
->olop
<< 8) | (pat1
->olep
<< 10) |
503 (pat1
->elop
<< 12) | (pat1
->elep
<< 14));
507 /* This function will configure CCDC for Raw mode image capture */
508 static int ccdc_config_raw(void)
510 struct ccdc_params_raw
*params
= &ccdc_cfg
.bayer
;
511 struct ccdc_config_params_raw
*config_params
=
512 &ccdc_cfg
.bayer
.config_params
;
515 dev_dbg(ccdc_cfg
.dev
, "\nStarting ccdc_config_raw...");
517 /* restore power on defaults to register */
518 ccdc_restore_defaults();
521 * set CCD Not to swap input since input is RAW data
522 * set FID detection function to Latch at V-Sync
523 * set WENLOG - ccdc valid area to AND
524 * set TRGSEL to WENBIT
525 * set EXTRG to DISABLE
526 * disable latching function on VSYNC - shadowed registers
528 regw(CCDC_YCINSWP_RAW
| CCDC_CCDCFG_FIDMD_LATCH_VSYNC
|
529 CCDC_CCDCFG_WENLOG_AND
| CCDC_CCDCFG_TRGSEL_WEN
|
530 CCDC_CCDCFG_EXTRG_DISABLE
| CCDC_LATCH_ON_VSYNC_DISABLE
, CCDCFG
);
533 * Set VDHD direction to input, input type to raw input
534 * normal data polarity, do not use external WEN
536 val
= (CCDC_VDHDOUT_INPUT
| CCDC_RAW_IP_MODE
| CCDC_DATAPOL_NORMAL
|
540 * Configure the vertical sync polarity (MODESET.VDPOL), horizontal
541 * sync polarity (MODESET.HDPOL), field id polarity (MODESET.FLDPOL),
542 * frame format(progressive or interlace), & pixel format (Input mode)
544 val
|= (((params
->vd_pol
& CCDC_VD_POL_MASK
) << CCDC_VD_POL_SHIFT
) |
545 ((params
->hd_pol
& CCDC_HD_POL_MASK
) << CCDC_HD_POL_SHIFT
) |
546 ((params
->fid_pol
& CCDC_FID_POL_MASK
) << CCDC_FID_POL_SHIFT
) |
547 ((params
->frm_fmt
& CCDC_FRM_FMT_MASK
) << CCDC_FRM_FMT_SHIFT
) |
548 ((params
->pix_fmt
& CCDC_PIX_FMT_MASK
) << CCDC_PIX_FMT_SHIFT
));
550 /* set pack for alaw compression */
551 if ((config_params
->data_sz
== CCDC_DATA_8BITS
) ||
552 config_params
->alaw
.enable
)
553 val
|= CCDC_DATA_PACK_ENABLE
;
555 /* Configure for LPF */
556 if (config_params
->lpf_enable
)
557 val
|= (config_params
->lpf_enable
& CCDC_LPF_MASK
) <<
560 /* Configure the data shift */
561 val
|= (config_params
->datasft
& CCDC_DATASFT_MASK
) <<
564 dev_dbg(ccdc_cfg
.dev
, "\nWriting 0x%x to MODESET...\n", val
);
566 /* Configure the Median Filter threshold */
567 regw((config_params
->med_filt_thres
) & CCDC_MED_FILT_THRESH
, MEDFILT
);
569 /* Configure GAMMAWD register. defaur 11-2, and Mosaic cfa pattern */
570 val
= CCDC_GAMMA_BITS_11_2
<< CCDC_GAMMAWD_INPUT_SHIFT
|
573 /* Enable and configure aLaw register if needed */
574 if (config_params
->alaw
.enable
) {
575 val
|= (CCDC_ALAW_ENABLE
|
576 ((config_params
->alaw
.gamma_wd
&
577 CCDC_ALAW_GAMMA_WD_MASK
) <<
578 CCDC_GAMMAWD_INPUT_SHIFT
));
581 /* Configure Median filter1 & filter2 */
582 val
|= ((config_params
->mfilt1
<< CCDC_MFILT1_SHIFT
) |
583 (config_params
->mfilt2
<< CCDC_MFILT2_SHIFT
));
586 dev_dbg(ccdc_cfg
.dev
, "\nWriting 0x%x to GAMMAWD...\n", val
);
588 /* configure video window */
589 ccdc_setwin(¶ms
->win
, params
->frm_fmt
, 1);
591 /* Optical Clamp Averaging */
592 ccdc_config_black_clamp(&config_params
->blk_clamp
);
594 /* Black level compensation */
595 ccdc_config_black_compense(&config_params
->blk_comp
);
597 /* Vertical Defect Correction if needed */
598 if (ccdc_config_vdfc(&config_params
->vertical_dft
) < 0)
601 /* color space conversion */
602 ccdc_config_csc(&config_params
->csc
);
605 ccdc_config_color_patterns(&config_params
->col_pat_field0
,
606 &config_params
->col_pat_field1
);
608 /* Configure the Gain & offset control */
609 ccdc_config_gain_offset();
611 dev_dbg(ccdc_cfg
.dev
, "\nWriting %x to COLPTN...\n", val
);
613 /* Configure DATAOFST register */
614 val
= (config_params
->data_offset
.horz_offset
& CCDC_DATAOFST_MASK
) <<
615 CCDC_DATAOFST_H_SHIFT
;
616 val
|= (config_params
->data_offset
.vert_offset
& CCDC_DATAOFST_MASK
) <<
617 CCDC_DATAOFST_V_SHIFT
;
620 /* configuring HSIZE register */
621 val
= (params
->horz_flip_enable
& CCDC_HSIZE_FLIP_MASK
) <<
622 CCDC_HSIZE_FLIP_SHIFT
;
624 /* If pack 8 is enable then 1 pixel will take 1 byte */
625 if ((config_params
->data_sz
== CCDC_DATA_8BITS
) ||
626 config_params
->alaw
.enable
) {
627 val
|= (((params
->win
.width
) + 31) >> 5) &
630 /* adjust to multiple of 32 */
631 dev_dbg(ccdc_cfg
.dev
, "\nWriting 0x%x to HSIZE...\n",
632 (((params
->win
.width
) + 31) >> 5) &
633 CCDC_HSIZE_VAL_MASK
);
635 /* else one pixel will take 2 byte */
636 val
|= (((params
->win
.width
* 2) + 31) >> 5) &
639 dev_dbg(ccdc_cfg
.dev
, "\nWriting 0x%x to HSIZE...\n",
640 (((params
->win
.width
* 2) + 31) >> 5) &
641 CCDC_HSIZE_VAL_MASK
);
645 /* Configure SDOFST register */
646 if (params
->frm_fmt
== CCDC_FRMFMT_INTERLACED
) {
647 if (params
->image_invert_enable
) {
648 /* For interlace inverse mode */
649 regw(CCDC_SDOFST_INTERLACE_INVERSE
, SDOFST
);
650 dev_dbg(ccdc_cfg
.dev
, "\nWriting %x to SDOFST...\n",
651 CCDC_SDOFST_INTERLACE_INVERSE
);
653 /* For interlace non inverse mode */
654 regw(CCDC_SDOFST_INTERLACE_NORMAL
, SDOFST
);
655 dev_dbg(ccdc_cfg
.dev
, "\nWriting %x to SDOFST...\n",
656 CCDC_SDOFST_INTERLACE_NORMAL
);
658 } else if (params
->frm_fmt
== CCDC_FRMFMT_PROGRESSIVE
) {
659 if (params
->image_invert_enable
) {
660 /* For progessive inverse mode */
661 regw(CCDC_SDOFST_PROGRESSIVE_INVERSE
, SDOFST
);
662 dev_dbg(ccdc_cfg
.dev
, "\nWriting %x to SDOFST...\n",
663 CCDC_SDOFST_PROGRESSIVE_INVERSE
);
665 /* For progessive non inverse mode */
666 regw(CCDC_SDOFST_PROGRESSIVE_NORMAL
, SDOFST
);
667 dev_dbg(ccdc_cfg
.dev
, "\nWriting %x to SDOFST...\n",
668 CCDC_SDOFST_PROGRESSIVE_NORMAL
);
671 dev_dbg(ccdc_cfg
.dev
, "\nend of ccdc_config_raw...");
675 static int ccdc_configure(void)
677 if (ccdc_cfg
.if_type
== VPFE_RAW_BAYER
)
678 return ccdc_config_raw();
684 static int ccdc_set_buftype(enum ccdc_buftype buf_type
)
686 if (ccdc_cfg
.if_type
== VPFE_RAW_BAYER
)
687 ccdc_cfg
.bayer
.buf_type
= buf_type
;
689 ccdc_cfg
.ycbcr
.buf_type
= buf_type
;
692 static enum ccdc_buftype
ccdc_get_buftype(void)
694 if (ccdc_cfg
.if_type
== VPFE_RAW_BAYER
)
695 return ccdc_cfg
.bayer
.buf_type
;
696 return ccdc_cfg
.ycbcr
.buf_type
;
699 static int ccdc_enum_pix(u32
*pix
, int i
)
702 if (ccdc_cfg
.if_type
== VPFE_RAW_BAYER
) {
703 if (i
< ARRAY_SIZE(ccdc_raw_bayer_pix_formats
)) {
704 *pix
= ccdc_raw_bayer_pix_formats
[i
];
708 if (i
< ARRAY_SIZE(ccdc_raw_yuv_pix_formats
)) {
709 *pix
= ccdc_raw_yuv_pix_formats
[i
];
716 static int ccdc_set_pixel_format(u32 pixfmt
)
718 struct ccdc_a_law
*alaw
= &ccdc_cfg
.bayer
.config_params
.alaw
;
720 if (ccdc_cfg
.if_type
== VPFE_RAW_BAYER
) {
721 ccdc_cfg
.bayer
.pix_fmt
= CCDC_PIXFMT_RAW
;
722 if (pixfmt
== V4L2_PIX_FMT_SBGGR8
)
724 else if (pixfmt
!= V4L2_PIX_FMT_SBGGR16
)
727 if (pixfmt
== V4L2_PIX_FMT_YUYV
)
728 ccdc_cfg
.ycbcr
.pix_order
= CCDC_PIXORDER_YCBYCR
;
729 else if (pixfmt
== V4L2_PIX_FMT_UYVY
)
730 ccdc_cfg
.ycbcr
.pix_order
= CCDC_PIXORDER_CBYCRY
;
736 static u32
ccdc_get_pixel_format(void)
738 struct ccdc_a_law
*alaw
= &ccdc_cfg
.bayer
.config_params
.alaw
;
741 if (ccdc_cfg
.if_type
== VPFE_RAW_BAYER
)
743 pixfmt
= V4L2_PIX_FMT_SBGGR8
;
745 pixfmt
= V4L2_PIX_FMT_SBGGR16
;
747 if (ccdc_cfg
.ycbcr
.pix_order
== CCDC_PIXORDER_YCBYCR
)
748 pixfmt
= V4L2_PIX_FMT_YUYV
;
750 pixfmt
= V4L2_PIX_FMT_UYVY
;
754 static int ccdc_set_image_window(struct v4l2_rect
*win
)
756 if (ccdc_cfg
.if_type
== VPFE_RAW_BAYER
)
757 ccdc_cfg
.bayer
.win
= *win
;
759 ccdc_cfg
.ycbcr
.win
= *win
;
763 static void ccdc_get_image_window(struct v4l2_rect
*win
)
765 if (ccdc_cfg
.if_type
== VPFE_RAW_BAYER
)
766 *win
= ccdc_cfg
.bayer
.win
;
768 *win
= ccdc_cfg
.ycbcr
.win
;
771 static unsigned int ccdc_get_line_length(void)
773 struct ccdc_config_params_raw
*config_params
=
774 &ccdc_cfg
.bayer
.config_params
;
777 if (ccdc_cfg
.if_type
== VPFE_RAW_BAYER
) {
778 if ((config_params
->alaw
.enable
) ||
779 (config_params
->data_sz
== CCDC_DATA_8BITS
))
780 len
= ccdc_cfg
.bayer
.win
.width
;
782 len
= ccdc_cfg
.bayer
.win
.width
* 2;
784 len
= ccdc_cfg
.ycbcr
.win
.width
* 2;
785 return ALIGN(len
, 32);
788 static int ccdc_set_frame_format(enum ccdc_frmfmt frm_fmt
)
790 if (ccdc_cfg
.if_type
== VPFE_RAW_BAYER
)
791 ccdc_cfg
.bayer
.frm_fmt
= frm_fmt
;
793 ccdc_cfg
.ycbcr
.frm_fmt
= frm_fmt
;
797 static enum ccdc_frmfmt
ccdc_get_frame_format(void)
799 if (ccdc_cfg
.if_type
== VPFE_RAW_BAYER
)
800 return ccdc_cfg
.bayer
.frm_fmt
;
802 return ccdc_cfg
.ycbcr
.frm_fmt
;
805 static int ccdc_getfid(void)
807 return (regr(MODESET
) >> 15) & 1;
810 /* misc operations */
811 static inline void ccdc_setfbaddr(unsigned long addr
)
813 regw((addr
>> 21) & 0x007f, STADRH
);
814 regw((addr
>> 5) & 0x0ffff, STADRL
);
817 static int ccdc_set_hw_if_params(struct vpfe_hw_if_param
*params
)
819 ccdc_cfg
.if_type
= params
->if_type
;
821 switch (params
->if_type
) {
823 case VPFE_YCBCR_SYNC_16
:
824 case VPFE_YCBCR_SYNC_8
:
825 ccdc_cfg
.ycbcr
.vd_pol
= params
->vdpol
;
826 ccdc_cfg
.ycbcr
.hd_pol
= params
->hdpol
;
829 /* TODO add support for raw bayer here */
835 static const struct ccdc_hw_device ccdc_hw_dev
= {
836 .name
= "DM355 CCDC",
837 .owner
= THIS_MODULE
,
841 .enable
= ccdc_enable
,
842 .enable_out_to_sdram
= ccdc_enable_output_to_sdram
,
843 .set_hw_if_params
= ccdc_set_hw_if_params
,
844 .configure
= ccdc_configure
,
845 .set_buftype
= ccdc_set_buftype
,
846 .get_buftype
= ccdc_get_buftype
,
847 .enum_pix
= ccdc_enum_pix
,
848 .set_pixel_format
= ccdc_set_pixel_format
,
849 .get_pixel_format
= ccdc_get_pixel_format
,
850 .set_frame_format
= ccdc_set_frame_format
,
851 .get_frame_format
= ccdc_get_frame_format
,
852 .set_image_window
= ccdc_set_image_window
,
853 .get_image_window
= ccdc_get_image_window
,
854 .get_line_length
= ccdc_get_line_length
,
855 .setfbaddr
= ccdc_setfbaddr
,
856 .getfid
= ccdc_getfid
,
860 static int dm355_ccdc_probe(struct platform_device
*pdev
)
862 void (*setup_pinmux
)(void);
863 struct resource
*res
;
867 * first try to register with vpfe. If not correct platform, then we
868 * don't have to iomap
870 status
= vpfe_register_ccdc_device(&ccdc_hw_dev
);
874 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
880 res
= request_mem_region(res
->start
, resource_size(res
), res
->name
);
886 ccdc_cfg
.base_addr
= ioremap(res
->start
, resource_size(res
));
887 if (!ccdc_cfg
.base_addr
) {
892 /* Platform data holds setup_pinmux function ptr */
893 if (NULL
== pdev
->dev
.platform_data
) {
897 setup_pinmux
= pdev
->dev
.platform_data
;
899 * setup Mux configuration for ccdc which may be different for
900 * different SoCs using this CCDC
903 ccdc_cfg
.dev
= &pdev
->dev
;
904 printk(KERN_NOTICE
"%s is registered with vpfe.\n", ccdc_hw_dev
.name
);
907 iounmap(ccdc_cfg
.base_addr
);
909 release_mem_region(res
->start
, resource_size(res
));
911 vpfe_unregister_ccdc_device(&ccdc_hw_dev
);
915 static int dm355_ccdc_remove(struct platform_device
*pdev
)
917 struct resource
*res
;
919 iounmap(ccdc_cfg
.base_addr
);
920 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
922 release_mem_region(res
->start
, resource_size(res
));
923 vpfe_unregister_ccdc_device(&ccdc_hw_dev
);
927 static struct platform_driver dm355_ccdc_driver
= {
929 .name
= "dm355_ccdc",
931 .remove
= dm355_ccdc_remove
,
932 .probe
= dm355_ccdc_probe
,
935 module_platform_driver(dm355_ccdc_driver
);