2 * Copyright (C) 2008-2009 Texas Instruments Inc
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * Image Sensor Interface (ISIF) driver
16 * This driver is for configuring the ISIF IP available on DM365 or any other
17 * TI SoCs. This is used for capturing yuv or bayer video or image data
18 * from a decoder or sensor. This IP is similar to the CCDC IP on DM355
19 * and DM6446, but with enhanced or additional ip blocks. The driver
20 * configures the ISIF upon commands from the vpfe bridge driver through
21 * ccdc_hw_device interface.
23 * TODO: 1) Raw bayer parameter settings and bayer capture
24 * 2) Add support for control ioctl
26 #include <linux/delay.h>
27 #include <linux/platform_device.h>
28 #include <linux/uaccess.h>
30 #include <linux/videodev2.h>
31 #include <linux/err.h>
32 #include <linux/module.h>
36 #include <media/davinci/isif.h>
37 #include <media/davinci/vpss.h>
39 #include "isif_regs.h"
40 #include "ccdc_hw_device.h"
42 /* Defaults for module configuration parameters */
43 static struct isif_config_params_raw isif_config_defaults = {
46 .corr_shft = ISIF_NO_SHIFT,
79 /* ISIF operation configuration */
80 static struct isif_oper_config {
82 enum vpfe_hw_if_type if_type;
83 struct isif_ycbcr_config ycbcr;
84 struct isif_params_raw bayer;
85 enum isif_data_pack data_pack;
86 /* ISIF base address */
87 void __iomem *base_addr;
88 /* ISIF Linear Table 0 */
89 void __iomem *linear_tbl0_addr;
90 /* ISIF Linear Table 1 */
91 void __iomem *linear_tbl1_addr;
94 .pix_fmt = CCDC_PIXFMT_YCBCR_8BIT,
95 .frm_fmt = CCDC_FRMFMT_INTERLACED,
97 .fid_pol = VPFE_PINPOL_POSITIVE,
98 .vd_pol = VPFE_PINPOL_POSITIVE,
99 .hd_pol = VPFE_PINPOL_POSITIVE,
100 .pix_order = CCDC_PIXORDER_CBYCRY,
101 .buf_type = CCDC_BUFTYPE_FLD_INTERLEAVED,
104 .pix_fmt = CCDC_PIXFMT_RAW,
105 .frm_fmt = CCDC_FRMFMT_PROGRESSIVE,
107 .fid_pol = VPFE_PINPOL_POSITIVE,
108 .vd_pol = VPFE_PINPOL_POSITIVE,
109 .hd_pol = VPFE_PINPOL_POSITIVE,
116 .cfa_pat = ISIF_CFA_PAT_MOSAIC,
117 .data_msb = ISIF_BIT_MSB_11,
119 .data_shift = ISIF_NO_SHIFT,
121 .olop = ISIF_GREEN_BLUE,
124 .elep = ISIF_GREEN_RED,
127 .olop = ISIF_GREEN_BLUE,
130 .elep = ISIF_GREEN_RED,
135 .data_pack = ISIF_DATA_PACK8,
138 /* Raw Bayer formats */
139 static const u32 isif_raw_bayer_pix_formats[] = {
140 V4L2_PIX_FMT_SBGGR8, V4L2_PIX_FMT_SBGGR16};
142 /* Raw YUV formats */
143 static const u32 isif_raw_yuv_pix_formats[] = {
144 V4L2_PIX_FMT_UYVY, V4L2_PIX_FMT_YUYV};
146 /* register access routines */
147 static inline u32 regr(u32 offset)
149 return __raw_readl(isif_cfg.base_addr + offset);
152 static inline void regw(u32 val, u32 offset)
154 __raw_writel(val, isif_cfg.base_addr + offset);
157 /* reg_modify() - read, modify and write register */
158 static inline u32 reg_modify(u32 mask, u32 val, u32 offset)
160 u32 new_val = (regr(offset) & ~mask) | (val & mask);
162 regw(new_val, offset);
166 static inline void regw_lin_tbl(u32 val, u32 offset, int i)
169 __raw_writel(val, isif_cfg.linear_tbl0_addr + offset);
171 __raw_writel(val, isif_cfg.linear_tbl1_addr + offset);
174 static void isif_disable_all_modules(void)
182 /* disable linearization */
184 /* disable other modules here as they are supported */
187 static void isif_enable(int en)
190 /* Before disable isif, disable all ISIF modules */
191 isif_disable_all_modules();
193 * wait for next VD. Assume lowest scan rate is 12 Hz. So
194 * 100 msec delay is good enough
198 reg_modify(ISIF_SYNCEN_VDHDEN_MASK, en, SYNCEN);
201 static void isif_enable_output_to_sdram(int en)
203 reg_modify(ISIF_SYNCEN_WEN_MASK, en << ISIF_SYNCEN_WEN_SHIFT, SYNCEN);
206 static void isif_config_culling(struct isif_cul *cul)
210 /* Horizontal pattern */
211 val = (cul->hcpat_even << CULL_PAT_EVEN_LINE_SHIFT) | cul->hcpat_odd;
214 /* vertical pattern */
215 regw(cul->vcpat, CULV);
218 reg_modify(ISIF_LPF_MASK << ISIF_LPF_SHIFT,
219 cul->en_lpf << ISIF_LPF_SHIFT, MODESET);
222 static void isif_config_gain_offset(void)
224 struct isif_gain_offsets_adj *gain_off_p =
225 &isif_cfg.bayer.config_params.gain_offset;
228 val = (!!gain_off_p->gain_sdram_en << GAIN_SDRAM_EN_SHIFT) |
229 (!!gain_off_p->gain_ipipe_en << GAIN_IPIPE_EN_SHIFT) |
230 (!!gain_off_p->gain_h3a_en << GAIN_H3A_EN_SHIFT) |
231 (!!gain_off_p->offset_sdram_en << OFST_SDRAM_EN_SHIFT) |
232 (!!gain_off_p->offset_ipipe_en << OFST_IPIPE_EN_SHIFT) |
233 (!!gain_off_p->offset_h3a_en << OFST_H3A_EN_SHIFT);
235 reg_modify(GAIN_OFFSET_EN_MASK, val, CGAMMAWD);
237 val = (gain_off_p->gain.r_ye.integer << GAIN_INTEGER_SHIFT) |
238 gain_off_p->gain.r_ye.decimal;
241 val = (gain_off_p->gain.gr_cy.integer << GAIN_INTEGER_SHIFT) |
242 gain_off_p->gain.gr_cy.decimal;
245 val = (gain_off_p->gain.gb_g.integer << GAIN_INTEGER_SHIFT) |
246 gain_off_p->gain.gb_g.decimal;
249 val = (gain_off_p->gain.b_mg.integer << GAIN_INTEGER_SHIFT) |
250 gain_off_p->gain.b_mg.decimal;
253 regw(gain_off_p->offset, COFSTA);
256 static void isif_restore_defaults(void)
258 enum vpss_ccdc_source_sel source = VPSS_CCDCIN;
260 dev_dbg(isif_cfg.dev, "\nstarting isif_restore_defaults...");
261 isif_cfg.bayer.config_params = isif_config_defaults;
262 /* Enable clock to ISIF, IPIPEIF and BL */
263 vpss_enable_clock(VPSS_CCDC_CLOCK, 1);
264 vpss_enable_clock(VPSS_IPIPEIF_CLOCK, 1);
265 vpss_enable_clock(VPSS_BL_CLOCK, 1);
266 /* Set default offset and gain */
267 isif_config_gain_offset();
268 vpss_select_ccdc_source(source);
269 dev_dbg(isif_cfg.dev, "\nEnd of isif_restore_defaults...");
272 static int isif_open(struct device *device)
274 isif_restore_defaults();
278 /* This function will configure the window size to be capture in ISIF reg */
279 static void isif_setwin(struct v4l2_rect *image_win,
280 enum ccdc_frmfmt frm_fmt, int ppc)
282 int horz_start, horz_nr_pixels;
283 int vert_start, vert_nr_lines;
286 dev_dbg(isif_cfg.dev, "\nStarting isif_setwin...");
288 * ppc - per pixel count. indicates how many pixels per cell
289 * output to SDRAM. example, for ycbcr, it is one y and one c, so 2.
290 * raw capture this is 1
292 horz_start = image_win->left << (ppc - 1);
293 horz_nr_pixels = ((image_win->width) << (ppc - 1)) - 1;
295 /* Writing the horizontal info into the registers */
296 regw(horz_start & START_PX_HOR_MASK, SPH);
297 regw(horz_nr_pixels & NUM_PX_HOR_MASK, LNH);
298 vert_start = image_win->top;
300 if (frm_fmt == CCDC_FRMFMT_INTERLACED) {
301 vert_nr_lines = (image_win->height >> 1) - 1;
303 /* To account for VD since line 0 doesn't have any data */
306 /* To account for VD since line 0 doesn't have any data */
308 vert_nr_lines = image_win->height - 1;
309 /* configure VDINT0 and VDINT1 */
310 mid_img = vert_start + (image_win->height / 2);
311 regw(mid_img, VDINT1);
315 regw(vert_start & START_VER_ONE_MASK, SLV0);
316 regw(vert_start & START_VER_TWO_MASK, SLV1);
317 regw(vert_nr_lines & NUM_LINES_VER, LNV);
320 static void isif_config_bclamp(struct isif_black_clamp *bc)
325 * DC Offset is always added to image data irrespective of bc enable
328 regw(bc->dc_offset, CLDCOFST);
331 val = bc->bc_mode_color << ISIF_BC_MODE_COLOR_SHIFT;
333 /* Enable BC and horizontal clamp caculation paramaters */
334 val = val | 1 | (bc->horz.mode << ISIF_HORZ_BC_MODE_SHIFT);
338 if (bc->horz.mode != ISIF_HORZ_BC_DISABLE) {
340 * Window count for calculation
341 * Base window selection
343 * Horizontal size of window
344 * vertical size of the window
345 * Horizontal start position of the window
346 * Vertical start position of the window
348 val = bc->horz.win_count_calc |
349 ((!!bc->horz.base_win_sel_calc) <<
350 ISIF_HORZ_BC_WIN_SEL_SHIFT) |
351 ((!!bc->horz.clamp_pix_limit) <<
352 ISIF_HORZ_BC_PIX_LIMIT_SHIFT) |
353 (bc->horz.win_h_sz_calc <<
354 ISIF_HORZ_BC_WIN_H_SIZE_SHIFT) |
355 (bc->horz.win_v_sz_calc <<
356 ISIF_HORZ_BC_WIN_V_SIZE_SHIFT);
359 regw(bc->horz.win_start_h_calc, CLHWIN1);
360 regw(bc->horz.win_start_v_calc, CLHWIN2);
363 /* vertical clamp caculation paramaters */
365 /* Reset clamp value sel for previous line */
367 (bc->vert.reset_val_sel << ISIF_VERT_BC_RST_VAL_SEL_SHIFT) |
368 (bc->vert.line_ave_coef << ISIF_VERT_BC_LINE_AVE_COEF_SHIFT);
371 /* Optical Black horizontal start position */
372 regw(bc->vert.ob_start_h, CLVWIN1);
373 /* Optical Black vertical start position */
374 regw(bc->vert.ob_start_v, CLVWIN2);
375 /* Optical Black vertical size for calculation */
376 regw(bc->vert.ob_v_sz_calc, CLVWIN3);
377 /* Vertical start position for BC subtraction */
378 regw(bc->vert_start_sub, CLSV);
382 static void isif_config_linearization(struct isif_linearize *linearize)
386 if (!linearize->en) {
391 /* shift value for correction & enable linearization (set lsb) */
392 val = (linearize->corr_shft << ISIF_LIN_CORRSFT_SHIFT) | 1;
396 val = ((!!linearize->scale_fact.integer) <<
397 ISIF_LIN_SCALE_FACT_INTEG_SHIFT) |
398 linearize->scale_fact.decimal;
401 for (i = 0; i < ISIF_LINEAR_TAB_SIZE; i++) {
403 regw_lin_tbl(linearize->table[i], ((i >> 1) << 2), 1);
405 regw_lin_tbl(linearize->table[i], ((i >> 1) << 2), 0);
409 static int isif_config_dfc(struct isif_dfc *vdfc)
411 /* initialize retries to loop for max ~ 250 usec */
412 u32 val, count, retries = loops_per_jiffy / (4000/HZ);
418 /* Correction mode */
419 val = (vdfc->corr_mode << ISIF_VDFC_CORR_MOD_SHIFT);
421 /* Correct whole line or partial */
422 if (vdfc->corr_whole_line)
423 val |= 1 << ISIF_VDFC_CORR_WHOLE_LN_SHIFT;
425 /* level shift value */
426 val |= vdfc->def_level_shift << ISIF_VDFC_LEVEL_SHFT_SHIFT;
430 /* Defect saturation level */
431 regw(vdfc->def_sat_level, VDFSATLV);
433 regw(vdfc->table[0].pos_vert, DFCMEM0);
434 regw(vdfc->table[0].pos_horz, DFCMEM1);
435 if (vdfc->corr_mode == ISIF_VDFC_NORMAL ||
436 vdfc->corr_mode == ISIF_VDFC_HORZ_INTERPOL_IF_SAT) {
437 regw(vdfc->table[0].level_at_pos, DFCMEM2);
438 regw(vdfc->table[0].level_up_pixels, DFCMEM3);
439 regw(vdfc->table[0].level_low_pixels, DFCMEM4);
442 /* set DFCMARST and set DFCMWR */
443 val = regr(DFCMEMCTL) | (1 << ISIF_DFCMEMCTL_DFCMARST_SHIFT) | 1;
444 regw(val, DFCMEMCTL);
447 while (count && (regr(DFCMEMCTL) & 0x1))
451 dev_dbg(isif_cfg.dev, "defect table write timeout !!!\n");
455 for (i = 1; i < vdfc->num_vdefects; i++) {
456 regw(vdfc->table[i].pos_vert, DFCMEM0);
457 regw(vdfc->table[i].pos_horz, DFCMEM1);
458 if (vdfc->corr_mode == ISIF_VDFC_NORMAL ||
459 vdfc->corr_mode == ISIF_VDFC_HORZ_INTERPOL_IF_SAT) {
460 regw(vdfc->table[i].level_at_pos, DFCMEM2);
461 regw(vdfc->table[i].level_up_pixels, DFCMEM3);
462 regw(vdfc->table[i].level_low_pixels, DFCMEM4);
464 val = regr(DFCMEMCTL);
465 /* clear DFCMARST and set DFCMWR */
466 val &= ~BIT(ISIF_DFCMEMCTL_DFCMARST_SHIFT);
468 regw(val, DFCMEMCTL);
471 while (count && (regr(DFCMEMCTL) & 0x1))
475 dev_err(isif_cfg.dev,
476 "defect table write timeout !!!\n");
480 if (vdfc->num_vdefects < ISIF_VDFC_TABLE_SIZE) {
481 /* Extra cycle needed */
483 regw(0x1FFF, DFCMEM1);
488 reg_modify((1 << ISIF_VDFC_EN_SHIFT), (1 << ISIF_VDFC_EN_SHIFT),
493 static void isif_config_csc(struct isif_df_csc *df_csc)
495 u32 val1 = 0, val2 = 0, i;
497 if (!df_csc->csc.en) {
501 for (i = 0; i < ISIF_CSC_NUM_COEFF; i++) {
504 val1 = (df_csc->csc.coeff[i].integer <<
505 ISIF_CSC_COEF_INTEG_SHIFT) |
506 df_csc->csc.coeff[i].decimal;
510 val2 = (df_csc->csc.coeff[i].integer <<
511 ISIF_CSC_COEF_INTEG_SHIFT) |
512 df_csc->csc.coeff[i].decimal;
513 val2 <<= ISIF_CSCM_MSB_SHIFT;
515 regw(val2, (CSCM0 + ((i - 1) << 1)));
519 /* program the active area */
520 regw(df_csc->start_pix, FMTSPH);
522 * one extra pixel as required for CSC. Actually number of
523 * pixel - 1 should be configured in this register. So we
524 * need to subtract 1 before writing to FMTSPH, but we will
525 * not do this since csc requires one extra pixel
527 regw(df_csc->num_pixels, FMTLNH);
528 regw(df_csc->start_line, FMTSLV);
530 * one extra line as required for CSC. See reason documented for
533 regw(df_csc->num_lines, FMTLNV);
539 static int isif_config_raw(void)
541 struct isif_params_raw *params = &isif_cfg.bayer;
542 struct isif_config_params_raw *module_params =
543 &isif_cfg.bayer.config_params;
544 struct vpss_pg_frame_size frame_size;
545 struct vpss_sync_pol sync;
548 dev_dbg(isif_cfg.dev, "\nStarting isif_config_raw..\n");
551 * Configure CCDCFG register:-
552 * Set CCD Not to swap input since input is RAW data
553 * Set FID detection function to Latch at V-Sync
554 * Set WENLOG - isif valid area
557 * Packed to 8 or 16 bits
560 val = ISIF_YCINSWP_RAW | ISIF_CCDCFG_FIDMD_LATCH_VSYNC |
561 ISIF_CCDCFG_WENLOG_AND | ISIF_CCDCFG_TRGSEL_WEN |
562 ISIF_CCDCFG_EXTRG_DISABLE | isif_cfg.data_pack;
564 dev_dbg(isif_cfg.dev, "Writing 0x%x to ...CCDCFG \n", val);
568 * Configure the vertical sync polarity(MODESET.VDPOL)
569 * Configure the horizontal sync polarity (MODESET.HDPOL)
570 * Configure frame id polarity (MODESET.FLDPOL)
571 * Configure data polarity
572 * Configure External WEN Selection
573 * Configure frame format(progressive or interlace)
574 * Configure pixel format (Input mode)
575 * Configure the data shift
578 val = ISIF_VDHDOUT_INPUT | (params->vd_pol << ISIF_VD_POL_SHIFT) |
579 (params->hd_pol << ISIF_HD_POL_SHIFT) |
580 (params->fid_pol << ISIF_FID_POL_SHIFT) |
581 (ISIF_DATAPOL_NORMAL << ISIF_DATAPOL_SHIFT) |
582 (ISIF_EXWEN_DISABLE << ISIF_EXWEN_SHIFT) |
583 (params->frm_fmt << ISIF_FRM_FMT_SHIFT) |
584 (params->pix_fmt << ISIF_INPUT_SHIFT) |
585 (params->config_params.data_shift << ISIF_DATASFT_SHIFT);
588 dev_dbg(isif_cfg.dev, "Writing 0x%x to MODESET...\n", val);
591 * Configure GAMMAWD register
592 * CFA pattern setting
594 val = params->cfa_pat << ISIF_GAMMAWD_CFA_SHIFT;
597 if (module_params->compress.alg == ISIF_ALAW)
598 val |= ISIF_ALAW_ENABLE;
600 val |= (params->data_msb << ISIF_ALAW_GAMMA_WD_SHIFT);
603 /* Configure DPCM compression settings */
604 if (module_params->compress.alg == ISIF_DPCM) {
605 val = BIT(ISIF_DPCM_EN_SHIFT) |
606 (module_params->compress.pred <<
607 ISIF_DPCM_PREDICTOR_SHIFT);
612 /* Configure Gain & Offset */
613 isif_config_gain_offset();
615 /* Configure Color pattern */
616 val = (params->config_params.col_pat_field0.olop) |
617 (params->config_params.col_pat_field0.olep << 2) |
618 (params->config_params.col_pat_field0.elop << 4) |
619 (params->config_params.col_pat_field0.elep << 6) |
620 (params->config_params.col_pat_field1.olop << 8) |
621 (params->config_params.col_pat_field1.olep << 10) |
622 (params->config_params.col_pat_field1.elop << 12) |
623 (params->config_params.col_pat_field1.elep << 14);
625 dev_dbg(isif_cfg.dev, "Writing %x to CCOLP ...\n", val);
627 /* Configure HSIZE register */
628 val = (!!params->horz_flip_en) << ISIF_HSIZE_FLIP_SHIFT;
630 /* calculate line offset in 32 bytes based on pack value */
631 if (isif_cfg.data_pack == ISIF_PACK_8BIT)
632 val |= ((params->win.width + 31) >> 5);
633 else if (isif_cfg.data_pack == ISIF_PACK_12BIT)
634 val |= (((params->win.width +
635 (params->win.width >> 2)) + 31) >> 5);
637 val |= (((params->win.width * 2) + 31) >> 5);
640 /* Configure SDOFST register */
641 if (params->frm_fmt == CCDC_FRMFMT_INTERLACED) {
642 if (params->image_invert_en) {
643 /* For interlace inverse mode */
644 regw(0x4B6D, SDOFST);
645 dev_dbg(isif_cfg.dev, "Writing 0x4B6D to SDOFST...\n");
647 /* For interlace non inverse mode */
648 regw(0x0B6D, SDOFST);
649 dev_dbg(isif_cfg.dev, "Writing 0x0B6D to SDOFST...\n");
651 } else if (params->frm_fmt == CCDC_FRMFMT_PROGRESSIVE) {
652 if (params->image_invert_en) {
653 /* For progressive inverse mode */
654 regw(0x4000, SDOFST);
655 dev_dbg(isif_cfg.dev, "Writing 0x4000 to SDOFST...\n");
657 /* For progressive non inverse mode */
658 regw(0x0000, SDOFST);
659 dev_dbg(isif_cfg.dev, "Writing 0x0000 to SDOFST...\n");
663 /* Configure video window */
664 isif_setwin(¶ms->win, params->frm_fmt, 1);
666 /* Configure Black Clamp */
667 isif_config_bclamp(&module_params->bclamp);
669 /* Configure Vertical Defection Pixel Correction */
670 if (isif_config_dfc(&module_params->dfc) < 0)
673 if (!module_params->df_csc.df_or_csc)
674 /* Configure Color Space Conversion */
675 isif_config_csc(&module_params->df_csc);
677 isif_config_linearization(&module_params->linearize);
679 /* Configure Culling */
680 isif_config_culling(&module_params->culling);
682 /* Configure horizontal and vertical offsets(DFC,LSC,Gain) */
683 regw(module_params->horz_offset, DATAHOFST);
684 regw(module_params->vert_offset, DATAVOFST);
686 /* Setup test pattern if enabled */
687 if (params->config_params.test_pat_gen) {
688 /* Use the HD/VD pol settings from user */
689 sync.ccdpg_hdpol = params->hd_pol;
690 sync.ccdpg_vdpol = params->vd_pol;
691 dm365_vpss_set_sync_pol(sync);
692 frame_size.hlpfr = isif_cfg.bayer.win.width;
693 frame_size.pplen = isif_cfg.bayer.win.height;
694 dm365_vpss_set_pg_frame_size(frame_size);
695 vpss_select_ccdc_source(VPSS_PGLPBK);
698 dev_dbg(isif_cfg.dev, "\nEnd of isif_config_ycbcr...\n");
702 static int isif_set_buftype(enum ccdc_buftype buf_type)
704 if (isif_cfg.if_type == VPFE_RAW_BAYER)
705 isif_cfg.bayer.buf_type = buf_type;
707 isif_cfg.ycbcr.buf_type = buf_type;
712 static enum ccdc_buftype isif_get_buftype(void)
714 if (isif_cfg.if_type == VPFE_RAW_BAYER)
715 return isif_cfg.bayer.buf_type;
717 return isif_cfg.ycbcr.buf_type;
720 static int isif_enum_pix(u32 *pix, int i)
724 if (isif_cfg.if_type == VPFE_RAW_BAYER) {
725 if (i < ARRAY_SIZE(isif_raw_bayer_pix_formats)) {
726 *pix = isif_raw_bayer_pix_formats[i];
730 if (i < ARRAY_SIZE(isif_raw_yuv_pix_formats)) {
731 *pix = isif_raw_yuv_pix_formats[i];
739 static int isif_set_pixel_format(unsigned int pixfmt)
741 if (isif_cfg.if_type == VPFE_RAW_BAYER) {
742 if (pixfmt == V4L2_PIX_FMT_SBGGR8) {
743 if ((isif_cfg.bayer.config_params.compress.alg !=
745 (isif_cfg.bayer.config_params.compress.alg !=
747 dev_dbg(isif_cfg.dev,
748 "Either configure A-Law or DPCM\n");
751 isif_cfg.data_pack = ISIF_PACK_8BIT;
752 } else if (pixfmt == V4L2_PIX_FMT_SBGGR16) {
753 isif_cfg.bayer.config_params.compress.alg =
755 isif_cfg.data_pack = ISIF_PACK_16BIT;
758 isif_cfg.bayer.pix_fmt = CCDC_PIXFMT_RAW;
760 if (pixfmt == V4L2_PIX_FMT_YUYV)
761 isif_cfg.ycbcr.pix_order = CCDC_PIXORDER_YCBYCR;
762 else if (pixfmt == V4L2_PIX_FMT_UYVY)
763 isif_cfg.ycbcr.pix_order = CCDC_PIXORDER_CBYCRY;
766 isif_cfg.data_pack = ISIF_PACK_8BIT;
771 static u32 isif_get_pixel_format(void)
775 if (isif_cfg.if_type == VPFE_RAW_BAYER)
776 if (isif_cfg.bayer.config_params.compress.alg == ISIF_ALAW ||
777 isif_cfg.bayer.config_params.compress.alg == ISIF_DPCM)
778 pixfmt = V4L2_PIX_FMT_SBGGR8;
780 pixfmt = V4L2_PIX_FMT_SBGGR16;
782 if (isif_cfg.ycbcr.pix_order == CCDC_PIXORDER_YCBYCR)
783 pixfmt = V4L2_PIX_FMT_YUYV;
785 pixfmt = V4L2_PIX_FMT_UYVY;
790 static int isif_set_image_window(struct v4l2_rect *win)
792 if (isif_cfg.if_type == VPFE_RAW_BAYER) {
793 isif_cfg.bayer.win.top = win->top;
794 isif_cfg.bayer.win.left = win->left;
795 isif_cfg.bayer.win.width = win->width;
796 isif_cfg.bayer.win.height = win->height;
798 isif_cfg.ycbcr.win.top = win->top;
799 isif_cfg.ycbcr.win.left = win->left;
800 isif_cfg.ycbcr.win.width = win->width;
801 isif_cfg.ycbcr.win.height = win->height;
806 static void isif_get_image_window(struct v4l2_rect *win)
808 if (isif_cfg.if_type == VPFE_RAW_BAYER)
809 *win = isif_cfg.bayer.win;
811 *win = isif_cfg.ycbcr.win;
814 static unsigned int isif_get_line_length(void)
818 if (isif_cfg.if_type == VPFE_RAW_BAYER) {
819 if (isif_cfg.data_pack == ISIF_PACK_8BIT)
820 len = ((isif_cfg.bayer.win.width));
821 else if (isif_cfg.data_pack == ISIF_PACK_12BIT)
822 len = (((isif_cfg.bayer.win.width * 2) +
823 (isif_cfg.bayer.win.width >> 2)));
825 len = (((isif_cfg.bayer.win.width * 2)));
827 len = (((isif_cfg.ycbcr.win.width * 2)));
828 return ALIGN(len, 32);
831 static int isif_set_frame_format(enum ccdc_frmfmt frm_fmt)
833 if (isif_cfg.if_type == VPFE_RAW_BAYER)
834 isif_cfg.bayer.frm_fmt = frm_fmt;
836 isif_cfg.ycbcr.frm_fmt = frm_fmt;
839 static enum ccdc_frmfmt isif_get_frame_format(void)
841 if (isif_cfg.if_type == VPFE_RAW_BAYER)
842 return isif_cfg.bayer.frm_fmt;
843 return isif_cfg.ycbcr.frm_fmt;
846 static int isif_getfid(void)
848 return (regr(MODESET) >> 15) & 0x1;
851 /* misc operations */
852 static void isif_setfbaddr(unsigned long addr)
854 regw((addr >> 21) & 0x07ff, CADU);
855 regw((addr >> 5) & 0x0ffff, CADL);
858 static int isif_set_hw_if_params(struct vpfe_hw_if_param *params)
860 isif_cfg.if_type = params->if_type;
862 switch (params->if_type) {
864 case VPFE_BT656_10BIT:
865 case VPFE_YCBCR_SYNC_8:
866 isif_cfg.ycbcr.pix_fmt = CCDC_PIXFMT_YCBCR_8BIT;
867 isif_cfg.ycbcr.pix_order = CCDC_PIXORDER_CBYCRY;
870 case VPFE_YCBCR_SYNC_16:
871 isif_cfg.ycbcr.pix_fmt = CCDC_PIXFMT_YCBCR_16BIT;
872 isif_cfg.ycbcr.pix_order = CCDC_PIXORDER_CBYCRY;
875 isif_cfg.bayer.pix_fmt = CCDC_PIXFMT_RAW;
878 dev_dbg(isif_cfg.dev, "Invalid interface type\n");
885 /* This function will configure ISIF for YCbCr parameters. */
886 static int isif_config_ycbcr(void)
888 struct isif_ycbcr_config *params = &isif_cfg.ycbcr;
889 struct vpss_pg_frame_size frame_size;
890 u32 modeset = 0, ccdcfg = 0;
891 struct vpss_sync_pol sync;
893 dev_dbg(isif_cfg.dev, "\nStarting isif_config_ycbcr...");
895 /* configure pixel format or input mode */
896 modeset = modeset | (params->pix_fmt << ISIF_INPUT_SHIFT) |
897 (params->frm_fmt << ISIF_FRM_FMT_SHIFT) |
898 (params->fid_pol << ISIF_FID_POL_SHIFT) |
899 (params->hd_pol << ISIF_HD_POL_SHIFT) |
900 (params->vd_pol << ISIF_VD_POL_SHIFT);
902 /* pack the data to 8-bit ISIFCFG */
903 switch (isif_cfg.if_type) {
905 if (params->pix_fmt != CCDC_PIXFMT_YCBCR_8BIT) {
906 dev_dbg(isif_cfg.dev, "Invalid pix_fmt(input mode)\n");
909 modeset |= (VPFE_PINPOL_NEGATIVE << ISIF_VD_POL_SHIFT);
911 ccdcfg = ccdcfg | ISIF_DATA_PACK8 | ISIF_YCINSWP_YCBCR;
913 case VPFE_BT656_10BIT:
914 if (params->pix_fmt != CCDC_PIXFMT_YCBCR_8BIT) {
915 dev_dbg(isif_cfg.dev, "Invalid pix_fmt(input mode)\n");
918 /* setup BT.656, embedded sync */
920 /* enable 10 bit mode in ccdcfg */
921 ccdcfg = ccdcfg | ISIF_DATA_PACK8 | ISIF_YCINSWP_YCBCR |
925 if (params->pix_fmt != CCDC_PIXFMT_YCBCR_16BIT) {
926 dev_dbg(isif_cfg.dev, "Invalid pix_fmt(input mode)\n");
932 case VPFE_YCBCR_SYNC_8:
933 ccdcfg |= ISIF_DATA_PACK8;
934 ccdcfg |= ISIF_YCINSWP_YCBCR;
935 if (params->pix_fmt != CCDC_PIXFMT_YCBCR_8BIT) {
936 dev_dbg(isif_cfg.dev, "Invalid pix_fmt(input mode)\n");
940 case VPFE_YCBCR_SYNC_16:
941 if (params->pix_fmt != CCDC_PIXFMT_YCBCR_16BIT) {
942 dev_dbg(isif_cfg.dev, "Invalid pix_fmt(input mode)\n");
947 /* should never come here */
948 dev_dbg(isif_cfg.dev, "Invalid interface type\n");
952 regw(modeset, MODESET);
954 /* Set up pix order */
955 ccdcfg |= params->pix_order << ISIF_PIX_ORDER_SHIFT;
957 regw(ccdcfg, CCDCFG);
959 /* configure video window */
960 if ((isif_cfg.if_type == VPFE_BT1120) ||
961 (isif_cfg.if_type == VPFE_YCBCR_SYNC_16))
962 isif_setwin(¶ms->win, params->frm_fmt, 1);
964 isif_setwin(¶ms->win, params->frm_fmt, 2);
967 * configure the horizontal line offset
968 * this is done by rounding up width to a multiple of 16 pixels
969 * and multiply by two to account for y:cb:cr 4:2:2 data
971 regw(((((params->win.width * 2) + 31) & 0xffffffe0) >> 5), HSIZE);
973 /* configure the memory line offset */
974 if ((params->frm_fmt == CCDC_FRMFMT_INTERLACED) &&
975 (params->buf_type == CCDC_BUFTYPE_FLD_INTERLEAVED))
976 /* two fields are interleaved in memory */
977 regw(0x00000249, SDOFST);
979 /* Setup test pattern if enabled */
980 if (isif_cfg.bayer.config_params.test_pat_gen) {
981 sync.ccdpg_hdpol = params->hd_pol;
982 sync.ccdpg_vdpol = params->vd_pol;
983 dm365_vpss_set_sync_pol(sync);
984 dm365_vpss_set_pg_frame_size(frame_size);
989 static int isif_configure(void)
991 if (isif_cfg.if_type == VPFE_RAW_BAYER)
992 return isif_config_raw();
993 return isif_config_ycbcr();
996 static int isif_close(struct device *device)
998 /* copy defaults to module params */
999 isif_cfg.bayer.config_params = isif_config_defaults;
1003 static struct ccdc_hw_device isif_hw_dev = {
1005 .owner = THIS_MODULE,
1008 .close = isif_close,
1009 .enable = isif_enable,
1010 .enable_out_to_sdram = isif_enable_output_to_sdram,
1011 .set_hw_if_params = isif_set_hw_if_params,
1012 .configure = isif_configure,
1013 .set_buftype = isif_set_buftype,
1014 .get_buftype = isif_get_buftype,
1015 .enum_pix = isif_enum_pix,
1016 .set_pixel_format = isif_set_pixel_format,
1017 .get_pixel_format = isif_get_pixel_format,
1018 .set_frame_format = isif_set_frame_format,
1019 .get_frame_format = isif_get_frame_format,
1020 .set_image_window = isif_set_image_window,
1021 .get_image_window = isif_get_image_window,
1022 .get_line_length = isif_get_line_length,
1023 .setfbaddr = isif_setfbaddr,
1024 .getfid = isif_getfid,
1028 static int isif_probe(struct platform_device *pdev)
1030 void (*setup_pinmux)(void);
1031 struct resource *res;
1035 /* Platform data holds setup_pinmux function ptr */
1036 if (!pdev->dev.platform_data)
1040 * first try to register with vpfe. If not correct platform, then we
1041 * don't have to iomap
1043 status = vpfe_register_ccdc_device(&isif_hw_dev);
1047 setup_pinmux = pdev->dev.platform_data;
1049 * setup Mux configuration for ccdc which may be different for
1050 * different SoCs using this CCDC
1055 /* Get the ISIF base address, linearization table0 and table1 addr. */
1057 res = platform_get_resource(pdev, IORESOURCE_MEM, i);
1060 goto fail_nobase_res;
1062 res = request_mem_region(res->start, resource_size(res),
1066 goto fail_nobase_res;
1068 addr = ioremap_nocache(res->start, resource_size(res));
1071 goto fail_base_iomap;
1075 /* ISIF base address */
1076 isif_cfg.base_addr = addr;
1079 /* ISIF linear tbl0 address */
1080 isif_cfg.linear_tbl0_addr = addr;
1083 /* ISIF linear tbl0 address */
1084 isif_cfg.linear_tbl1_addr = addr;
1089 isif_cfg.dev = &pdev->dev;
1091 printk(KERN_NOTICE "%s is registered with vpfe.\n",
1095 release_mem_region(res->start, resource_size(res));
1098 if (isif_cfg.base_addr)
1099 iounmap(isif_cfg.base_addr);
1100 if (isif_cfg.linear_tbl0_addr)
1101 iounmap(isif_cfg.linear_tbl0_addr);
1104 res = platform_get_resource(pdev, IORESOURCE_MEM, i);
1105 release_mem_region(res->start, resource_size(res));
1108 vpfe_unregister_ccdc_device(&isif_hw_dev);
1112 static int isif_remove(struct platform_device *pdev)
1114 struct resource *res;
1117 iounmap(isif_cfg.base_addr);
1118 iounmap(isif_cfg.linear_tbl0_addr);
1119 iounmap(isif_cfg.linear_tbl1_addr);
1121 res = platform_get_resource(pdev, IORESOURCE_MEM, i);
1123 release_mem_region(res->start, resource_size(res));
1126 vpfe_unregister_ccdc_device(&isif_hw_dev);
1130 static struct platform_driver isif_driver = {
1134 .remove = isif_remove,
1135 .probe = isif_probe,
1138 module_platform_driver(isif_driver);
1140 MODULE_LICENSE("GPL");