4 * TI OMAP3 ISP - CSI2 module
6 * Copyright (C) 2010 Nokia Corporation
7 * Copyright (C) 2009 Texas Instruments, Inc.
9 * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10 * Sakari Ailus <sakari.ailus@iki.fi>
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
26 #include <linux/delay.h>
27 #include <media/v4l2-common.h>
28 #include <linux/v4l2-mediabus.h>
36 * csi2_if_enable - Enable CSI2 Receiver interface.
37 * @enable: enable flag
40 static void csi2_if_enable(struct isp_device
*isp
,
41 struct isp_csi2_device
*csi2
, u8 enable
)
43 struct isp_csi2_ctrl_cfg
*currctrl
= &csi2
->ctrl
;
45 isp_reg_clr_set(isp
, csi2
->regs1
, ISPCSI2_CTRL
, ISPCSI2_CTRL_IF_EN
,
46 enable
? ISPCSI2_CTRL_IF_EN
: 0);
48 currctrl
->if_enable
= enable
;
52 * csi2_recv_config - CSI2 receiver module configuration.
53 * @currctrl: isp_csi2_ctrl_cfg structure
56 static void csi2_recv_config(struct isp_device
*isp
,
57 struct isp_csi2_device
*csi2
,
58 struct isp_csi2_ctrl_cfg
*currctrl
)
62 reg
= isp_reg_readl(isp
, csi2
->regs1
, ISPCSI2_CTRL
);
64 if (currctrl
->frame_mode
)
65 reg
|= ISPCSI2_CTRL_FRAME
;
67 reg
&= ~ISPCSI2_CTRL_FRAME
;
69 if (currctrl
->vp_clk_enable
)
70 reg
|= ISPCSI2_CTRL_VP_CLK_EN
;
72 reg
&= ~ISPCSI2_CTRL_VP_CLK_EN
;
74 if (currctrl
->vp_only_enable
)
75 reg
|= ISPCSI2_CTRL_VP_ONLY_EN
;
77 reg
&= ~ISPCSI2_CTRL_VP_ONLY_EN
;
79 reg
&= ~ISPCSI2_CTRL_VP_OUT_CTRL_MASK
;
80 reg
|= currctrl
->vp_out_ctrl
<< ISPCSI2_CTRL_VP_OUT_CTRL_SHIFT
;
82 if (currctrl
->ecc_enable
)
83 reg
|= ISPCSI2_CTRL_ECC_EN
;
85 reg
&= ~ISPCSI2_CTRL_ECC_EN
;
87 isp_reg_writel(isp
, reg
, csi2
->regs1
, ISPCSI2_CTRL
);
90 static const unsigned int csi2_input_fmts
[] = {
91 V4L2_MBUS_FMT_SGRBG10_1X10
,
92 V4L2_MBUS_FMT_SGRBG10_DPCM8_1X8
,
93 V4L2_MBUS_FMT_SRGGB10_1X10
,
94 V4L2_MBUS_FMT_SRGGB10_DPCM8_1X8
,
95 V4L2_MBUS_FMT_SBGGR10_1X10
,
96 V4L2_MBUS_FMT_SBGGR10_DPCM8_1X8
,
97 V4L2_MBUS_FMT_SGBRG10_1X10
,
98 V4L2_MBUS_FMT_SGBRG10_DPCM8_1X8
,
101 /* To set the format on the CSI2 requires a mapping function that takes
102 * the following inputs:
103 * - 2 different formats (at this time)
104 * - 2 destinations (mem, vp+mem) (vp only handled separately)
105 * - 2 decompression options (on, off)
106 * - 2 isp revisions (certain format must be handled differently on OMAP3630)
107 * Output should be CSI2 frame format code
108 * Array indices as follows: [format][dest][decompr][is_3630]
109 * Not all combinations are valid. 0 means invalid.
111 static const u16 __csi2_fmt_map
[2][2][2][2] = {
114 /* Output to memory */
116 /* No DPCM decompression */
117 { CSI2_PIX_FMT_RAW10_EXP16
, CSI2_PIX_FMT_RAW10_EXP16
},
118 /* DPCM decompression */
123 /* No DPCM decompression */
124 { CSI2_PIX_FMT_RAW10_EXP16_VP
,
125 CSI2_PIX_FMT_RAW10_EXP16_VP
},
126 /* DPCM decompression */
130 /* RAW10 DPCM8 formats */
132 /* Output to memory */
134 /* No DPCM decompression */
135 { CSI2_PIX_FMT_RAW8
, CSI2_USERDEF_8BIT_DATA1
},
136 /* DPCM decompression */
137 { CSI2_PIX_FMT_RAW8_DPCM10_EXP16
,
138 CSI2_USERDEF_8BIT_DATA1_DPCM10
},
142 /* No DPCM decompression */
143 { CSI2_PIX_FMT_RAW8_VP
,
144 CSI2_PIX_FMT_RAW8_VP
},
145 /* DPCM decompression */
146 { CSI2_PIX_FMT_RAW8_DPCM10_VP
,
147 CSI2_USERDEF_8BIT_DATA1_DPCM10_VP
},
153 * csi2_ctx_map_format - Map CSI2 sink media bus format to CSI2 format ID
154 * @csi2: ISP CSI2 device
156 * Returns CSI2 physical format id
158 static u16
csi2_ctx_map_format(struct isp_csi2_device
*csi2
)
160 const struct v4l2_mbus_framefmt
*fmt
= &csi2
->formats
[CSI2_PAD_SINK
];
161 int fmtidx
, destidx
, is_3630
;
164 case V4L2_MBUS_FMT_SGRBG10_1X10
:
165 case V4L2_MBUS_FMT_SRGGB10_1X10
:
166 case V4L2_MBUS_FMT_SBGGR10_1X10
:
167 case V4L2_MBUS_FMT_SGBRG10_1X10
:
170 case V4L2_MBUS_FMT_SGRBG10_DPCM8_1X8
:
171 case V4L2_MBUS_FMT_SRGGB10_DPCM8_1X8
:
172 case V4L2_MBUS_FMT_SBGGR10_DPCM8_1X8
:
173 case V4L2_MBUS_FMT_SGBRG10_DPCM8_1X8
:
177 WARN(1, KERN_ERR
"CSI2: pixel format %08x unsupported!\n",
182 if (!(csi2
->output
& CSI2_OUTPUT_CCDC
) &&
183 !(csi2
->output
& CSI2_OUTPUT_MEMORY
)) {
184 /* Neither output enabled is a valid combination */
185 return CSI2_PIX_FMT_OTHERS
;
188 /* If we need to skip frames at the beginning of the stream disable the
189 * video port to avoid sending the skipped frames to the CCDC.
191 destidx
= csi2
->frame_skip
? 0 : !!(csi2
->output
& CSI2_OUTPUT_CCDC
);
192 is_3630
= csi2
->isp
->revision
== ISP_REVISION_15_0
;
194 return __csi2_fmt_map
[fmtidx
][destidx
][csi2
->dpcm_decompress
][is_3630
];
198 * csi2_set_outaddr - Set memory address to save output image
199 * @csi2: Pointer to ISP CSI2a device.
200 * @addr: ISP MMU Mapped 32-bit memory address aligned on 32 byte boundary.
202 * Sets the memory address where the output will be saved.
204 * Returns 0 if successful, or -EINVAL if the address is not in the 32 byte
207 static void csi2_set_outaddr(struct isp_csi2_device
*csi2
, u32 addr
)
209 struct isp_device
*isp
= csi2
->isp
;
210 struct isp_csi2_ctx_cfg
*ctx
= &csi2
->contexts
[0];
212 ctx
->ping_addr
= addr
;
213 ctx
->pong_addr
= addr
;
214 isp_reg_writel(isp
, ctx
->ping_addr
,
215 csi2
->regs1
, ISPCSI2_CTX_DAT_PING_ADDR(ctx
->ctxnum
));
216 isp_reg_writel(isp
, ctx
->pong_addr
,
217 csi2
->regs1
, ISPCSI2_CTX_DAT_PONG_ADDR(ctx
->ctxnum
));
221 * is_usr_def_mapping - Checks whether USER_DEF_MAPPING should
222 * be enabled by CSI2.
223 * @format_id: mapped format id
226 static inline int is_usr_def_mapping(u32 format_id
)
228 return (format_id
& 0x40) ? 1 : 0;
232 * csi2_ctx_enable - Enable specified CSI2 context
233 * @ctxnum: Context number, valid between 0 and 7 values.
237 static void csi2_ctx_enable(struct isp_device
*isp
,
238 struct isp_csi2_device
*csi2
, u8 ctxnum
, u8 enable
)
240 struct isp_csi2_ctx_cfg
*ctx
= &csi2
->contexts
[ctxnum
];
241 unsigned int skip
= 0;
244 reg
= isp_reg_readl(isp
, csi2
->regs1
, ISPCSI2_CTX_CTRL1(ctxnum
));
247 if (csi2
->frame_skip
)
248 skip
= csi2
->frame_skip
;
249 else if (csi2
->output
& CSI2_OUTPUT_MEMORY
)
252 reg
&= ~ISPCSI2_CTX_CTRL1_COUNT_MASK
;
253 reg
|= ISPCSI2_CTX_CTRL1_COUNT_UNLOCK
254 | (skip
<< ISPCSI2_CTX_CTRL1_COUNT_SHIFT
)
255 | ISPCSI2_CTX_CTRL1_CTX_EN
;
257 reg
&= ~ISPCSI2_CTX_CTRL1_CTX_EN
;
260 isp_reg_writel(isp
, reg
, csi2
->regs1
, ISPCSI2_CTX_CTRL1(ctxnum
));
261 ctx
->enabled
= enable
;
265 * csi2_ctx_config - CSI2 context configuration.
266 * @ctx: context configuration
269 static void csi2_ctx_config(struct isp_device
*isp
,
270 struct isp_csi2_device
*csi2
,
271 struct isp_csi2_ctx_cfg
*ctx
)
275 /* Set up CSI2_CTx_CTRL1 */
276 reg
= isp_reg_readl(isp
, csi2
->regs1
, ISPCSI2_CTX_CTRL1(ctx
->ctxnum
));
278 if (ctx
->eof_enabled
)
279 reg
|= ISPCSI2_CTX_CTRL1_EOF_EN
;
281 reg
&= ~ISPCSI2_CTX_CTRL1_EOF_EN
;
283 if (ctx
->eol_enabled
)
284 reg
|= ISPCSI2_CTX_CTRL1_EOL_EN
;
286 reg
&= ~ISPCSI2_CTX_CTRL1_EOL_EN
;
288 if (ctx
->checksum_enabled
)
289 reg
|= ISPCSI2_CTX_CTRL1_CS_EN
;
291 reg
&= ~ISPCSI2_CTX_CTRL1_CS_EN
;
293 isp_reg_writel(isp
, reg
, csi2
->regs1
, ISPCSI2_CTX_CTRL1(ctx
->ctxnum
));
295 /* Set up CSI2_CTx_CTRL2 */
296 reg
= isp_reg_readl(isp
, csi2
->regs1
, ISPCSI2_CTX_CTRL2(ctx
->ctxnum
));
298 reg
&= ~(ISPCSI2_CTX_CTRL2_VIRTUAL_ID_MASK
);
299 reg
|= ctx
->virtual_id
<< ISPCSI2_CTX_CTRL2_VIRTUAL_ID_SHIFT
;
301 reg
&= ~(ISPCSI2_CTX_CTRL2_FORMAT_MASK
);
302 reg
|= ctx
->format_id
<< ISPCSI2_CTX_CTRL2_FORMAT_SHIFT
;
304 if (ctx
->dpcm_decompress
) {
305 if (ctx
->dpcm_predictor
)
306 reg
|= ISPCSI2_CTX_CTRL2_DPCM_PRED
;
308 reg
&= ~ISPCSI2_CTX_CTRL2_DPCM_PRED
;
311 if (is_usr_def_mapping(ctx
->format_id
)) {
312 reg
&= ~ISPCSI2_CTX_CTRL2_USER_DEF_MAP_MASK
;
313 reg
|= 2 << ISPCSI2_CTX_CTRL2_USER_DEF_MAP_SHIFT
;
316 isp_reg_writel(isp
, reg
, csi2
->regs1
, ISPCSI2_CTX_CTRL2(ctx
->ctxnum
));
318 /* Set up CSI2_CTx_CTRL3 */
319 reg
= isp_reg_readl(isp
, csi2
->regs1
, ISPCSI2_CTX_CTRL3(ctx
->ctxnum
));
320 reg
&= ~(ISPCSI2_CTX_CTRL3_ALPHA_MASK
);
321 reg
|= (ctx
->alpha
<< ISPCSI2_CTX_CTRL3_ALPHA_SHIFT
);
323 isp_reg_writel(isp
, reg
, csi2
->regs1
, ISPCSI2_CTX_CTRL3(ctx
->ctxnum
));
325 /* Set up CSI2_CTx_DAT_OFST */
326 reg
= isp_reg_readl(isp
, csi2
->regs1
,
327 ISPCSI2_CTX_DAT_OFST(ctx
->ctxnum
));
328 reg
&= ~ISPCSI2_CTX_DAT_OFST_OFST_MASK
;
329 reg
|= ctx
->data_offset
<< ISPCSI2_CTX_DAT_OFST_OFST_SHIFT
;
330 isp_reg_writel(isp
, reg
, csi2
->regs1
,
331 ISPCSI2_CTX_DAT_OFST(ctx
->ctxnum
));
333 isp_reg_writel(isp
, ctx
->ping_addr
,
334 csi2
->regs1
, ISPCSI2_CTX_DAT_PING_ADDR(ctx
->ctxnum
));
336 isp_reg_writel(isp
, ctx
->pong_addr
,
337 csi2
->regs1
, ISPCSI2_CTX_DAT_PONG_ADDR(ctx
->ctxnum
));
341 * csi2_timing_config - CSI2 timing configuration.
342 * @timing: csi2_timing_cfg structure
344 static void csi2_timing_config(struct isp_device
*isp
,
345 struct isp_csi2_device
*csi2
,
346 struct isp_csi2_timing_cfg
*timing
)
350 reg
= isp_reg_readl(isp
, csi2
->regs1
, ISPCSI2_TIMING
);
352 if (timing
->force_rx_mode
)
353 reg
|= ISPCSI2_TIMING_FORCE_RX_MODE_IO(timing
->ionum
);
355 reg
&= ~ISPCSI2_TIMING_FORCE_RX_MODE_IO(timing
->ionum
);
357 if (timing
->stop_state_16x
)
358 reg
|= ISPCSI2_TIMING_STOP_STATE_X16_IO(timing
->ionum
);
360 reg
&= ~ISPCSI2_TIMING_STOP_STATE_X16_IO(timing
->ionum
);
362 if (timing
->stop_state_4x
)
363 reg
|= ISPCSI2_TIMING_STOP_STATE_X4_IO(timing
->ionum
);
365 reg
&= ~ISPCSI2_TIMING_STOP_STATE_X4_IO(timing
->ionum
);
367 reg
&= ~ISPCSI2_TIMING_STOP_STATE_COUNTER_IO_MASK(timing
->ionum
);
368 reg
|= timing
->stop_state_counter
<<
369 ISPCSI2_TIMING_STOP_STATE_COUNTER_IO_SHIFT(timing
->ionum
);
371 isp_reg_writel(isp
, reg
, csi2
->regs1
, ISPCSI2_TIMING
);
375 * csi2_irq_ctx_set - Enables CSI2 Context IRQs.
376 * @enable: Enable/disable CSI2 Context interrupts
378 static void csi2_irq_ctx_set(struct isp_device
*isp
,
379 struct isp_csi2_device
*csi2
, int enable
)
381 u32 reg
= ISPCSI2_CTX_IRQSTATUS_FE_IRQ
;
384 if (csi2
->use_fs_irq
)
385 reg
|= ISPCSI2_CTX_IRQSTATUS_FS_IRQ
;
387 for (i
= 0; i
< 8; i
++) {
388 isp_reg_writel(isp
, reg
, csi2
->regs1
,
389 ISPCSI2_CTX_IRQSTATUS(i
));
391 isp_reg_set(isp
, csi2
->regs1
, ISPCSI2_CTX_IRQENABLE(i
),
394 isp_reg_clr(isp
, csi2
->regs1
, ISPCSI2_CTX_IRQENABLE(i
),
400 * csi2_irq_complexio1_set - Enables CSI2 ComplexIO IRQs.
401 * @enable: Enable/disable CSI2 ComplexIO #1 interrupts
403 static void csi2_irq_complexio1_set(struct isp_device
*isp
,
404 struct isp_csi2_device
*csi2
, int enable
)
407 reg
= ISPCSI2_PHY_IRQENABLE_STATEALLULPMEXIT
|
408 ISPCSI2_PHY_IRQENABLE_STATEALLULPMENTER
|
409 ISPCSI2_PHY_IRQENABLE_STATEULPM5
|
410 ISPCSI2_PHY_IRQENABLE_ERRCONTROL5
|
411 ISPCSI2_PHY_IRQENABLE_ERRESC5
|
412 ISPCSI2_PHY_IRQENABLE_ERRSOTSYNCHS5
|
413 ISPCSI2_PHY_IRQENABLE_ERRSOTHS5
|
414 ISPCSI2_PHY_IRQENABLE_STATEULPM4
|
415 ISPCSI2_PHY_IRQENABLE_ERRCONTROL4
|
416 ISPCSI2_PHY_IRQENABLE_ERRESC4
|
417 ISPCSI2_PHY_IRQENABLE_ERRSOTSYNCHS4
|
418 ISPCSI2_PHY_IRQENABLE_ERRSOTHS4
|
419 ISPCSI2_PHY_IRQENABLE_STATEULPM3
|
420 ISPCSI2_PHY_IRQENABLE_ERRCONTROL3
|
421 ISPCSI2_PHY_IRQENABLE_ERRESC3
|
422 ISPCSI2_PHY_IRQENABLE_ERRSOTSYNCHS3
|
423 ISPCSI2_PHY_IRQENABLE_ERRSOTHS3
|
424 ISPCSI2_PHY_IRQENABLE_STATEULPM2
|
425 ISPCSI2_PHY_IRQENABLE_ERRCONTROL2
|
426 ISPCSI2_PHY_IRQENABLE_ERRESC2
|
427 ISPCSI2_PHY_IRQENABLE_ERRSOTSYNCHS2
|
428 ISPCSI2_PHY_IRQENABLE_ERRSOTHS2
|
429 ISPCSI2_PHY_IRQENABLE_STATEULPM1
|
430 ISPCSI2_PHY_IRQENABLE_ERRCONTROL1
|
431 ISPCSI2_PHY_IRQENABLE_ERRESC1
|
432 ISPCSI2_PHY_IRQENABLE_ERRSOTSYNCHS1
|
433 ISPCSI2_PHY_IRQENABLE_ERRSOTHS1
;
434 isp_reg_writel(isp
, reg
, csi2
->regs1
, ISPCSI2_PHY_IRQSTATUS
);
436 reg
|= isp_reg_readl(isp
, csi2
->regs1
, ISPCSI2_PHY_IRQENABLE
);
439 isp_reg_writel(isp
, reg
, csi2
->regs1
, ISPCSI2_PHY_IRQENABLE
);
443 * csi2_irq_status_set - Enables CSI2 Status IRQs.
444 * @enable: Enable/disable CSI2 Status interrupts
446 static void csi2_irq_status_set(struct isp_device
*isp
,
447 struct isp_csi2_device
*csi2
, int enable
)
450 reg
= ISPCSI2_IRQSTATUS_OCP_ERR_IRQ
|
451 ISPCSI2_IRQSTATUS_SHORT_PACKET_IRQ
|
452 ISPCSI2_IRQSTATUS_ECC_CORRECTION_IRQ
|
453 ISPCSI2_IRQSTATUS_ECC_NO_CORRECTION_IRQ
|
454 ISPCSI2_IRQSTATUS_COMPLEXIO2_ERR_IRQ
|
455 ISPCSI2_IRQSTATUS_COMPLEXIO1_ERR_IRQ
|
456 ISPCSI2_IRQSTATUS_FIFO_OVF_IRQ
|
457 ISPCSI2_IRQSTATUS_CONTEXT(0);
458 isp_reg_writel(isp
, reg
, csi2
->regs1
, ISPCSI2_IRQSTATUS
);
460 reg
|= isp_reg_readl(isp
, csi2
->regs1
, ISPCSI2_IRQENABLE
);
464 isp_reg_writel(isp
, reg
, csi2
->regs1
, ISPCSI2_IRQENABLE
);
468 * omap3isp_csi2_reset - Resets the CSI2 module.
470 * Must be called with the phy lock held.
472 * Returns 0 if successful, or -EBUSY if power command didn't respond.
474 int omap3isp_csi2_reset(struct isp_csi2_device
*csi2
)
476 struct isp_device
*isp
= csi2
->isp
;
477 u8 soft_reset_retries
= 0;
481 if (!csi2
->available
)
484 if (csi2
->phy
->phy_in_use
)
487 isp_reg_set(isp
, csi2
->regs1
, ISPCSI2_SYSCONFIG
,
488 ISPCSI2_SYSCONFIG_SOFT_RESET
);
491 reg
= isp_reg_readl(isp
, csi2
->regs1
, ISPCSI2_SYSSTATUS
) &
492 ISPCSI2_SYSSTATUS_RESET_DONE
;
493 if (reg
== ISPCSI2_SYSSTATUS_RESET_DONE
)
495 soft_reset_retries
++;
496 if (soft_reset_retries
< 5)
498 } while (soft_reset_retries
< 5);
500 if (soft_reset_retries
== 5) {
501 printk(KERN_ERR
"CSI2: Soft reset try count exceeded!\n");
505 if (isp
->revision
== ISP_REVISION_15_0
)
506 isp_reg_set(isp
, csi2
->regs1
, ISPCSI2_PHY_CFG
,
507 ISPCSI2_PHY_CFG_RESET_CTRL
);
511 reg
= isp_reg_readl(isp
, csi2
->phy
->phy_regs
, ISPCSIPHY_REG1
)
512 & ISPCSIPHY_REG1_RESET_DONE_CTRLCLK
;
513 if (reg
== ISPCSIPHY_REG1_RESET_DONE_CTRLCLK
)
520 "CSI2: Reset for CSI2_96M_FCLK domain Failed!\n");
525 isp_reg_clr_set(isp
, csi2
->regs1
, ISPCSI2_SYSCONFIG
,
526 ISPCSI2_SYSCONFIG_MSTANDBY_MODE_MASK
|
527 ISPCSI2_SYSCONFIG_AUTO_IDLE
,
528 ISPCSI2_SYSCONFIG_MSTANDBY_MODE_SMART
|
529 ((isp
->revision
== ISP_REVISION_15_0
) ?
530 ISPCSI2_SYSCONFIG_AUTO_IDLE
: 0));
532 isp_reg_clr_set(isp
, csi2
->regs1
, ISPCSI2_SYSCONFIG
,
533 ISPCSI2_SYSCONFIG_MSTANDBY_MODE_MASK
|
534 ISPCSI2_SYSCONFIG_AUTO_IDLE
,
535 ISPCSI2_SYSCONFIG_MSTANDBY_MODE_NO
);
540 static int csi2_configure(struct isp_csi2_device
*csi2
)
542 const struct isp_v4l2_subdevs_group
*pdata
;
543 struct isp_device
*isp
= csi2
->isp
;
544 struct isp_csi2_timing_cfg
*timing
= &csi2
->timing
[0];
545 struct v4l2_subdev
*sensor
;
546 struct media_pad
*pad
;
549 * CSI2 fields that can be updated while the context has
550 * been enabled or the interface has been enabled are not
551 * updated dynamically currently. So we do not allow to
552 * reconfigure if either has been enabled
554 if (csi2
->contexts
[0].enabled
|| csi2
->ctrl
.if_enable
)
557 pad
= media_entity_remote_source(&csi2
->pads
[CSI2_PAD_SINK
]);
558 sensor
= media_entity_to_v4l2_subdev(pad
->entity
);
559 pdata
= sensor
->host_priv
;
561 csi2
->frame_skip
= 0;
562 v4l2_subdev_call(sensor
, sensor
, g_skip_frames
, &csi2
->frame_skip
);
564 csi2
->ctrl
.vp_out_ctrl
= pdata
->bus
.csi2
.vpclk_div
;
565 csi2
->ctrl
.frame_mode
= ISP_CSI2_FRAME_IMMEDIATE
;
566 csi2
->ctrl
.ecc_enable
= pdata
->bus
.csi2
.crc
;
569 timing
->force_rx_mode
= 1;
570 timing
->stop_state_16x
= 1;
571 timing
->stop_state_4x
= 1;
572 timing
->stop_state_counter
= 0x1FF;
575 * The CSI2 receiver can't do any format conversion except DPCM
576 * decompression, so every set_format call configures both pads
577 * and enables DPCM decompression as a special case:
579 if (csi2
->formats
[CSI2_PAD_SINK
].code
!=
580 csi2
->formats
[CSI2_PAD_SOURCE
].code
)
581 csi2
->dpcm_decompress
= true;
583 csi2
->dpcm_decompress
= false;
585 csi2
->contexts
[0].format_id
= csi2_ctx_map_format(csi2
);
587 if (csi2
->video_out
.bpl_padding
== 0)
588 csi2
->contexts
[0].data_offset
= 0;
590 csi2
->contexts
[0].data_offset
= csi2
->video_out
.bpl_value
;
593 * Enable end of frame and end of line signals generation for
594 * context 0. These signals are generated from CSI2 receiver to
595 * qualify the last pixel of a frame and the last pixel of a line.
596 * Without enabling the signals CSI2 receiver writes data to memory
597 * beyond buffer size and/or data line offset is not handled correctly.
599 csi2
->contexts
[0].eof_enabled
= 1;
600 csi2
->contexts
[0].eol_enabled
= 1;
602 csi2_irq_complexio1_set(isp
, csi2
, 1);
603 csi2_irq_ctx_set(isp
, csi2
, 1);
604 csi2_irq_status_set(isp
, csi2
, 1);
606 /* Set configuration (timings, format and links) */
607 csi2_timing_config(isp
, csi2
, timing
);
608 csi2_recv_config(isp
, csi2
, &csi2
->ctrl
);
609 csi2_ctx_config(isp
, csi2
, &csi2
->contexts
[0]);
615 * csi2_print_status - Prints CSI2 debug information.
617 #define CSI2_PRINT_REGISTER(isp, regs, name)\
618 dev_dbg(isp->dev, "###CSI2 " #name "=0x%08x\n", \
619 isp_reg_readl(isp, regs, ISPCSI2_##name))
621 static void csi2_print_status(struct isp_csi2_device
*csi2
)
623 struct isp_device
*isp
= csi2
->isp
;
625 if (!csi2
->available
)
628 dev_dbg(isp
->dev
, "-------------CSI2 Register dump-------------\n");
630 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, SYSCONFIG
);
631 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, SYSSTATUS
);
632 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, IRQENABLE
);
633 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, IRQSTATUS
);
634 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, CTRL
);
635 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, DBG_H
);
636 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, GNQ
);
637 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, PHY_CFG
);
638 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, PHY_IRQSTATUS
);
639 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, SHORT_PACKET
);
640 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, PHY_IRQENABLE
);
641 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, DBG_P
);
642 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, TIMING
);
643 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, CTX_CTRL1(0));
644 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, CTX_CTRL2(0));
645 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, CTX_DAT_OFST(0));
646 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, CTX_DAT_PING_ADDR(0));
647 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, CTX_DAT_PONG_ADDR(0));
648 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, CTX_IRQENABLE(0));
649 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, CTX_IRQSTATUS(0));
650 CSI2_PRINT_REGISTER(isp
, csi2
->regs1
, CTX_CTRL3(0));
652 dev_dbg(isp
->dev
, "--------------------------------------------\n");
655 /* -----------------------------------------------------------------------------
660 * csi2_isr_buffer - Does buffer handling at end-of-frame
661 * when writing to memory.
663 static void csi2_isr_buffer(struct isp_csi2_device
*csi2
)
665 struct isp_device
*isp
= csi2
->isp
;
666 struct isp_buffer
*buffer
;
668 csi2_ctx_enable(isp
, csi2
, 0, 0);
670 buffer
= omap3isp_video_buffer_next(&csi2
->video_out
);
673 * Let video queue operation restart engine if there is an underrun
679 csi2_set_outaddr(csi2
, buffer
->isp_addr
);
680 csi2_ctx_enable(isp
, csi2
, 0, 1);
683 static void csi2_isr_ctx(struct isp_csi2_device
*csi2
,
684 struct isp_csi2_ctx_cfg
*ctx
)
686 struct isp_device
*isp
= csi2
->isp
;
687 unsigned int n
= ctx
->ctxnum
;
690 status
= isp_reg_readl(isp
, csi2
->regs1
, ISPCSI2_CTX_IRQSTATUS(n
));
691 isp_reg_writel(isp
, status
, csi2
->regs1
, ISPCSI2_CTX_IRQSTATUS(n
));
693 /* Propagate frame number */
694 if (status
& ISPCSI2_CTX_IRQSTATUS_FS_IRQ
) {
695 struct isp_pipeline
*pipe
=
696 to_isp_pipeline(&csi2
->subdev
.entity
);
697 if (pipe
->do_propagation
)
698 atomic_inc(&pipe
->frame_number
);
701 if (!(status
& ISPCSI2_CTX_IRQSTATUS_FE_IRQ
))
704 /* Skip interrupts until we reach the frame skip count. The CSI2 will be
705 * automatically disabled, as the frame skip count has been programmed
706 * in the CSI2_CTx_CTRL1::COUNT field, so reenable it.
708 * It would have been nice to rely on the FRAME_NUMBER interrupt instead
709 * but it turned out that the interrupt is only generated when the CSI2
710 * writes to memory (the CSI2_CTx_CTRL1::COUNT field is decreased
711 * correctly and reaches 0 when data is forwarded to the video port only
712 * but no interrupt arrives). Maybe a CSI2 hardware bug.
714 if (csi2
->frame_skip
) {
716 if (csi2
->frame_skip
== 0) {
717 ctx
->format_id
= csi2_ctx_map_format(csi2
);
718 csi2_ctx_config(isp
, csi2
, ctx
);
719 csi2_ctx_enable(isp
, csi2
, n
, 1);
724 if (csi2
->output
& CSI2_OUTPUT_MEMORY
)
725 csi2_isr_buffer(csi2
);
729 * omap3isp_csi2_isr - CSI2 interrupt handling.
731 void omap3isp_csi2_isr(struct isp_csi2_device
*csi2
)
733 struct isp_pipeline
*pipe
= to_isp_pipeline(&csi2
->subdev
.entity
);
734 u32 csi2_irqstatus
, cpxio1_irqstatus
;
735 struct isp_device
*isp
= csi2
->isp
;
737 if (!csi2
->available
)
740 csi2_irqstatus
= isp_reg_readl(isp
, csi2
->regs1
, ISPCSI2_IRQSTATUS
);
741 isp_reg_writel(isp
, csi2_irqstatus
, csi2
->regs1
, ISPCSI2_IRQSTATUS
);
744 if (csi2_irqstatus
& ISPCSI2_IRQSTATUS_COMPLEXIO1_ERR_IRQ
) {
745 cpxio1_irqstatus
= isp_reg_readl(isp
, csi2
->regs1
,
746 ISPCSI2_PHY_IRQSTATUS
);
747 isp_reg_writel(isp
, cpxio1_irqstatus
,
748 csi2
->regs1
, ISPCSI2_PHY_IRQSTATUS
);
749 dev_dbg(isp
->dev
, "CSI2: ComplexIO Error IRQ "
750 "%x\n", cpxio1_irqstatus
);
754 if (csi2_irqstatus
& (ISPCSI2_IRQSTATUS_OCP_ERR_IRQ
|
755 ISPCSI2_IRQSTATUS_SHORT_PACKET_IRQ
|
756 ISPCSI2_IRQSTATUS_ECC_NO_CORRECTION_IRQ
|
757 ISPCSI2_IRQSTATUS_COMPLEXIO2_ERR_IRQ
|
758 ISPCSI2_IRQSTATUS_FIFO_OVF_IRQ
)) {
759 dev_dbg(isp
->dev
, "CSI2 Err:"
767 ISPCSI2_IRQSTATUS_OCP_ERR_IRQ
) ? 1 : 0,
769 ISPCSI2_IRQSTATUS_SHORT_PACKET_IRQ
) ? 1 : 0,
771 ISPCSI2_IRQSTATUS_ECC_NO_CORRECTION_IRQ
) ? 1 : 0,
773 ISPCSI2_IRQSTATUS_COMPLEXIO2_ERR_IRQ
) ? 1 : 0,
775 ISPCSI2_IRQSTATUS_FIFO_OVF_IRQ
) ? 1 : 0);
779 if (omap3isp_module_sync_is_stopping(&csi2
->wait
, &csi2
->stopping
))
782 /* Successful cases */
783 if (csi2_irqstatus
& ISPCSI2_IRQSTATUS_CONTEXT(0))
784 csi2_isr_ctx(csi2
, &csi2
->contexts
[0]);
786 if (csi2_irqstatus
& ISPCSI2_IRQSTATUS_ECC_CORRECTION_IRQ
)
787 dev_dbg(isp
->dev
, "CSI2: ECC correction done\n");
790 /* -----------------------------------------------------------------------------
791 * ISP video operations
795 * csi2_queue - Queues the first buffer when using memory output
796 * @video: The video node
797 * @buffer: buffer to queue
799 static int csi2_queue(struct isp_video
*video
, struct isp_buffer
*buffer
)
801 struct isp_device
*isp
= video
->isp
;
802 struct isp_csi2_device
*csi2
= &isp
->isp_csi2a
;
804 csi2_set_outaddr(csi2
, buffer
->isp_addr
);
807 * If streaming was enabled before there was a buffer queued
808 * or underrun happened in the ISR, the hardware was not enabled
809 * and DMA queue flag ISP_VIDEO_DMAQUEUE_UNDERRUN is still set.
812 if (csi2
->video_out
.dmaqueue_flags
& ISP_VIDEO_DMAQUEUE_UNDERRUN
) {
813 /* Enable / disable context 0 and IRQs */
814 csi2_if_enable(isp
, csi2
, 1);
815 csi2_ctx_enable(isp
, csi2
, 0, 1);
816 isp_video_dmaqueue_flags_clr(&csi2
->video_out
);
822 static const struct isp_video_operations csi2_ispvideo_ops
= {
826 /* -----------------------------------------------------------------------------
827 * V4L2 subdev operations
830 static struct v4l2_mbus_framefmt
*
831 __csi2_get_format(struct isp_csi2_device
*csi2
, struct v4l2_subdev_fh
*fh
,
832 unsigned int pad
, enum v4l2_subdev_format_whence which
)
834 if (which
== V4L2_SUBDEV_FORMAT_TRY
)
835 return v4l2_subdev_get_try_format(fh
, pad
);
837 return &csi2
->formats
[pad
];
841 csi2_try_format(struct isp_csi2_device
*csi2
, struct v4l2_subdev_fh
*fh
,
842 unsigned int pad
, struct v4l2_mbus_framefmt
*fmt
,
843 enum v4l2_subdev_format_whence which
)
845 enum v4l2_mbus_pixelcode pixelcode
;
846 struct v4l2_mbus_framefmt
*format
;
847 const struct isp_format_info
*info
;
852 /* Clamp the width and height to valid range (1-8191). */
853 for (i
= 0; i
< ARRAY_SIZE(csi2_input_fmts
); i
++) {
854 if (fmt
->code
== csi2_input_fmts
[i
])
858 /* If not found, use SGRBG10 as default */
859 if (i
>= ARRAY_SIZE(csi2_input_fmts
))
860 fmt
->code
= V4L2_MBUS_FMT_SGRBG10_1X10
;
862 fmt
->width
= clamp_t(u32
, fmt
->width
, 1, 8191);
863 fmt
->height
= clamp_t(u32
, fmt
->height
, 1, 8191);
866 case CSI2_PAD_SOURCE
:
867 /* Source format same as sink format, except for DPCM
870 pixelcode
= fmt
->code
;
871 format
= __csi2_get_format(csi2
, fh
, CSI2_PAD_SINK
, which
);
872 memcpy(fmt
, format
, sizeof(*fmt
));
875 * Only Allow DPCM decompression, and check that the
876 * pattern is preserved
878 info
= omap3isp_video_format_info(fmt
->code
);
879 if (info
->uncompressed
== pixelcode
)
880 fmt
->code
= pixelcode
;
884 /* RGB, non-interlaced */
885 fmt
->colorspace
= V4L2_COLORSPACE_SRGB
;
886 fmt
->field
= V4L2_FIELD_NONE
;
890 * csi2_enum_mbus_code - Handle pixel format enumeration
891 * @sd : pointer to v4l2 subdev structure
892 * @fh : V4L2 subdev file handle
893 * @code : pointer to v4l2_subdev_mbus_code_enum structure
894 * return -EINVAL or zero on success
896 static int csi2_enum_mbus_code(struct v4l2_subdev
*sd
,
897 struct v4l2_subdev_fh
*fh
,
898 struct v4l2_subdev_mbus_code_enum
*code
)
900 struct isp_csi2_device
*csi2
= v4l2_get_subdevdata(sd
);
901 struct v4l2_mbus_framefmt
*format
;
902 const struct isp_format_info
*info
;
904 if (code
->pad
== CSI2_PAD_SINK
) {
905 if (code
->index
>= ARRAY_SIZE(csi2_input_fmts
))
908 code
->code
= csi2_input_fmts
[code
->index
];
910 format
= __csi2_get_format(csi2
, fh
, CSI2_PAD_SINK
,
911 V4L2_SUBDEV_FORMAT_TRY
);
912 switch (code
->index
) {
914 /* Passthrough sink pad code */
915 code
->code
= format
->code
;
918 /* Uncompressed code */
919 info
= omap3isp_video_format_info(format
->code
);
920 if (info
->uncompressed
== format
->code
)
923 code
->code
= info
->uncompressed
;
933 static int csi2_enum_frame_size(struct v4l2_subdev
*sd
,
934 struct v4l2_subdev_fh
*fh
,
935 struct v4l2_subdev_frame_size_enum
*fse
)
937 struct isp_csi2_device
*csi2
= v4l2_get_subdevdata(sd
);
938 struct v4l2_mbus_framefmt format
;
943 format
.code
= fse
->code
;
946 csi2_try_format(csi2
, fh
, fse
->pad
, &format
, V4L2_SUBDEV_FORMAT_TRY
);
947 fse
->min_width
= format
.width
;
948 fse
->min_height
= format
.height
;
950 if (format
.code
!= fse
->code
)
953 format
.code
= fse
->code
;
956 csi2_try_format(csi2
, fh
, fse
->pad
, &format
, V4L2_SUBDEV_FORMAT_TRY
);
957 fse
->max_width
= format
.width
;
958 fse
->max_height
= format
.height
;
964 * csi2_get_format - Handle get format by pads subdev method
965 * @sd : pointer to v4l2 subdev structure
966 * @fh : V4L2 subdev file handle
967 * @fmt: pointer to v4l2 subdev format structure
968 * return -EINVAL or zero on success
970 static int csi2_get_format(struct v4l2_subdev
*sd
, struct v4l2_subdev_fh
*fh
,
971 struct v4l2_subdev_format
*fmt
)
973 struct isp_csi2_device
*csi2
= v4l2_get_subdevdata(sd
);
974 struct v4l2_mbus_framefmt
*format
;
976 format
= __csi2_get_format(csi2
, fh
, fmt
->pad
, fmt
->which
);
980 fmt
->format
= *format
;
985 * csi2_set_format - Handle set format by pads subdev method
986 * @sd : pointer to v4l2 subdev structure
987 * @fh : V4L2 subdev file handle
988 * @fmt: pointer to v4l2 subdev format structure
989 * return -EINVAL or zero on success
991 static int csi2_set_format(struct v4l2_subdev
*sd
, struct v4l2_subdev_fh
*fh
,
992 struct v4l2_subdev_format
*fmt
)
994 struct isp_csi2_device
*csi2
= v4l2_get_subdevdata(sd
);
995 struct v4l2_mbus_framefmt
*format
;
997 format
= __csi2_get_format(csi2
, fh
, fmt
->pad
, fmt
->which
);
1001 csi2_try_format(csi2
, fh
, fmt
->pad
, &fmt
->format
, fmt
->which
);
1002 *format
= fmt
->format
;
1004 /* Propagate the format from sink to source */
1005 if (fmt
->pad
== CSI2_PAD_SINK
) {
1006 format
= __csi2_get_format(csi2
, fh
, CSI2_PAD_SOURCE
,
1008 *format
= fmt
->format
;
1009 csi2_try_format(csi2
, fh
, CSI2_PAD_SOURCE
, format
, fmt
->which
);
1016 * csi2_init_formats - Initialize formats on all pads
1017 * @sd: ISP CSI2 V4L2 subdevice
1018 * @fh: V4L2 subdev file handle
1020 * Initialize all pad formats with default values. If fh is not NULL, try
1021 * formats are initialized on the file handle. Otherwise active formats are
1022 * initialized on the device.
1024 static int csi2_init_formats(struct v4l2_subdev
*sd
, struct v4l2_subdev_fh
*fh
)
1026 struct v4l2_subdev_format format
;
1028 memset(&format
, 0, sizeof(format
));
1029 format
.pad
= CSI2_PAD_SINK
;
1030 format
.which
= fh
? V4L2_SUBDEV_FORMAT_TRY
: V4L2_SUBDEV_FORMAT_ACTIVE
;
1031 format
.format
.code
= V4L2_MBUS_FMT_SGRBG10_1X10
;
1032 format
.format
.width
= 4096;
1033 format
.format
.height
= 4096;
1034 csi2_set_format(sd
, fh
, &format
);
1040 * csi2_set_stream - Enable/Disable streaming on the CSI2 module
1041 * @sd: ISP CSI2 V4L2 subdevice
1042 * @enable: ISP pipeline stream state
1044 * Return 0 on success or a negative error code otherwise.
1046 static int csi2_set_stream(struct v4l2_subdev
*sd
, int enable
)
1048 struct isp_csi2_device
*csi2
= v4l2_get_subdevdata(sd
);
1049 struct isp_device
*isp
= csi2
->isp
;
1050 struct isp_pipeline
*pipe
= to_isp_pipeline(&csi2
->subdev
.entity
);
1051 struct isp_video
*video_out
= &csi2
->video_out
;
1054 case ISP_PIPELINE_STREAM_CONTINUOUS
:
1055 if (omap3isp_csiphy_acquire(csi2
->phy
) < 0)
1057 csi2
->use_fs_irq
= pipe
->do_propagation
;
1058 if (csi2
->output
& CSI2_OUTPUT_MEMORY
)
1059 omap3isp_sbl_enable(isp
, OMAP3_ISP_SBL_CSI2A_WRITE
);
1060 csi2_configure(csi2
);
1061 csi2_print_status(csi2
);
1064 * When outputting to memory with no buffer available, let the
1065 * buffer queue handler start the hardware. A DMA queue flag
1066 * ISP_VIDEO_DMAQUEUE_QUEUED will be set as soon as there is
1067 * a buffer available.
1069 if (csi2
->output
& CSI2_OUTPUT_MEMORY
&&
1070 !(video_out
->dmaqueue_flags
& ISP_VIDEO_DMAQUEUE_QUEUED
))
1072 /* Enable context 0 and IRQs */
1073 atomic_set(&csi2
->stopping
, 0);
1074 csi2_ctx_enable(isp
, csi2
, 0, 1);
1075 csi2_if_enable(isp
, csi2
, 1);
1076 isp_video_dmaqueue_flags_clr(video_out
);
1079 case ISP_PIPELINE_STREAM_STOPPED
:
1080 if (csi2
->state
== ISP_PIPELINE_STREAM_STOPPED
)
1082 if (omap3isp_module_sync_idle(&sd
->entity
, &csi2
->wait
,
1084 dev_dbg(isp
->dev
, "%s: module stop timeout.\n",
1086 csi2_ctx_enable(isp
, csi2
, 0, 0);
1087 csi2_if_enable(isp
, csi2
, 0);
1088 csi2_irq_ctx_set(isp
, csi2
, 0);
1089 omap3isp_csiphy_release(csi2
->phy
);
1090 isp_video_dmaqueue_flags_clr(video_out
);
1091 omap3isp_sbl_disable(isp
, OMAP3_ISP_SBL_CSI2A_WRITE
);
1095 csi2
->state
= enable
;
1099 /* subdev video operations */
1100 static const struct v4l2_subdev_video_ops csi2_video_ops
= {
1101 .s_stream
= csi2_set_stream
,
1104 /* subdev pad operations */
1105 static const struct v4l2_subdev_pad_ops csi2_pad_ops
= {
1106 .enum_mbus_code
= csi2_enum_mbus_code
,
1107 .enum_frame_size
= csi2_enum_frame_size
,
1108 .get_fmt
= csi2_get_format
,
1109 .set_fmt
= csi2_set_format
,
1112 /* subdev operations */
1113 static const struct v4l2_subdev_ops csi2_ops
= {
1114 .video
= &csi2_video_ops
,
1115 .pad
= &csi2_pad_ops
,
1118 /* subdev internal operations */
1119 static const struct v4l2_subdev_internal_ops csi2_internal_ops
= {
1120 .open
= csi2_init_formats
,
1123 /* -----------------------------------------------------------------------------
1124 * Media entity operations
1128 * csi2_link_setup - Setup CSI2 connections.
1129 * @entity : Pointer to media entity structure
1130 * @local : Pointer to local pad array
1131 * @remote : Pointer to remote pad array
1132 * @flags : Link flags
1133 * return -EINVAL or zero on success
1135 static int csi2_link_setup(struct media_entity
*entity
,
1136 const struct media_pad
*local
,
1137 const struct media_pad
*remote
, u32 flags
)
1139 struct v4l2_subdev
*sd
= media_entity_to_v4l2_subdev(entity
);
1140 struct isp_csi2_device
*csi2
= v4l2_get_subdevdata(sd
);
1141 struct isp_csi2_ctrl_cfg
*ctrl
= &csi2
->ctrl
;
1144 * The ISP core doesn't support pipelines with multiple video outputs.
1145 * Revisit this when it will be implemented, and return -EBUSY for now.
1148 switch (local
->index
| media_entity_type(remote
->entity
)) {
1149 case CSI2_PAD_SOURCE
| MEDIA_ENT_T_DEVNODE
:
1150 if (flags
& MEDIA_LNK_FL_ENABLED
) {
1151 if (csi2
->output
& ~CSI2_OUTPUT_MEMORY
)
1153 csi2
->output
|= CSI2_OUTPUT_MEMORY
;
1155 csi2
->output
&= ~CSI2_OUTPUT_MEMORY
;
1159 case CSI2_PAD_SOURCE
| MEDIA_ENT_T_V4L2_SUBDEV
:
1160 if (flags
& MEDIA_LNK_FL_ENABLED
) {
1161 if (csi2
->output
& ~CSI2_OUTPUT_CCDC
)
1163 csi2
->output
|= CSI2_OUTPUT_CCDC
;
1165 csi2
->output
&= ~CSI2_OUTPUT_CCDC
;
1170 /* Link from camera to CSI2 is fixed... */
1174 ctrl
->vp_only_enable
=
1175 (csi2
->output
& CSI2_OUTPUT_MEMORY
) ? false : true;
1176 ctrl
->vp_clk_enable
= !!(csi2
->output
& CSI2_OUTPUT_CCDC
);
1181 /* media operations */
1182 static const struct media_entity_operations csi2_media_ops
= {
1183 .link_setup
= csi2_link_setup
,
1186 void omap3isp_csi2_unregister_entities(struct isp_csi2_device
*csi2
)
1188 v4l2_device_unregister_subdev(&csi2
->subdev
);
1189 omap3isp_video_unregister(&csi2
->video_out
);
1192 int omap3isp_csi2_register_entities(struct isp_csi2_device
*csi2
,
1193 struct v4l2_device
*vdev
)
1197 /* Register the subdev and video nodes. */
1198 ret
= v4l2_device_register_subdev(vdev
, &csi2
->subdev
);
1202 ret
= omap3isp_video_register(&csi2
->video_out
, vdev
);
1209 omap3isp_csi2_unregister_entities(csi2
);
1213 /* -----------------------------------------------------------------------------
1214 * ISP CSI2 initialisation and cleanup
1218 * csi2_init_entities - Initialize subdev and media entity.
1219 * @csi2: Pointer to csi2 structure.
1220 * return -ENOMEM or zero on success
1222 static int csi2_init_entities(struct isp_csi2_device
*csi2
)
1224 struct v4l2_subdev
*sd
= &csi2
->subdev
;
1225 struct media_pad
*pads
= csi2
->pads
;
1226 struct media_entity
*me
= &sd
->entity
;
1229 v4l2_subdev_init(sd
, &csi2_ops
);
1230 sd
->internal_ops
= &csi2_internal_ops
;
1231 strlcpy(sd
->name
, "OMAP3 ISP CSI2a", sizeof(sd
->name
));
1233 sd
->grp_id
= 1 << 16; /* group ID for isp subdevs */
1234 v4l2_set_subdevdata(sd
, csi2
);
1235 sd
->flags
|= V4L2_SUBDEV_FL_HAS_DEVNODE
;
1237 pads
[CSI2_PAD_SOURCE
].flags
= MEDIA_PAD_FL_SOURCE
;
1238 pads
[CSI2_PAD_SINK
].flags
= MEDIA_PAD_FL_SINK
;
1240 me
->ops
= &csi2_media_ops
;
1241 ret
= media_entity_init(me
, CSI2_PADS_NUM
, pads
, 0);
1245 csi2_init_formats(sd
, NULL
);
1247 /* Video device node */
1248 csi2
->video_out
.type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
1249 csi2
->video_out
.ops
= &csi2_ispvideo_ops
;
1250 csi2
->video_out
.bpl_alignment
= 32;
1251 csi2
->video_out
.bpl_zero_padding
= 1;
1252 csi2
->video_out
.bpl_max
= 0x1ffe0;
1253 csi2
->video_out
.isp
= csi2
->isp
;
1254 csi2
->video_out
.capture_mem
= PAGE_ALIGN(4096 * 4096) * 3;
1256 ret
= omap3isp_video_init(&csi2
->video_out
, "CSI2a");
1260 /* Connect the CSI2 subdev to the video node. */
1261 ret
= media_entity_create_link(&csi2
->subdev
.entity
, CSI2_PAD_SOURCE
,
1262 &csi2
->video_out
.video
.entity
, 0, 0);
1269 omap3isp_video_cleanup(&csi2
->video_out
);
1271 media_entity_cleanup(&csi2
->subdev
.entity
);
1276 * omap3isp_csi2_init - Routine for module driver init
1278 int omap3isp_csi2_init(struct isp_device
*isp
)
1280 struct isp_csi2_device
*csi2a
= &isp
->isp_csi2a
;
1281 struct isp_csi2_device
*csi2c
= &isp
->isp_csi2c
;
1285 csi2a
->available
= 1;
1286 csi2a
->regs1
= OMAP3_ISP_IOMEM_CSI2A_REGS1
;
1287 csi2a
->regs2
= OMAP3_ISP_IOMEM_CSI2A_REGS2
;
1288 csi2a
->phy
= &isp
->isp_csiphy2
;
1289 csi2a
->state
= ISP_PIPELINE_STREAM_STOPPED
;
1290 init_waitqueue_head(&csi2a
->wait
);
1292 ret
= csi2_init_entities(csi2a
);
1296 if (isp
->revision
== ISP_REVISION_15_0
) {
1298 csi2c
->available
= 1;
1299 csi2c
->regs1
= OMAP3_ISP_IOMEM_CSI2C_REGS1
;
1300 csi2c
->regs2
= OMAP3_ISP_IOMEM_CSI2C_REGS2
;
1301 csi2c
->phy
= &isp
->isp_csiphy1
;
1302 csi2c
->state
= ISP_PIPELINE_STREAM_STOPPED
;
1303 init_waitqueue_head(&csi2c
->wait
);
1310 * omap3isp_csi2_cleanup - Routine for module driver cleanup
1312 void omap3isp_csi2_cleanup(struct isp_device
*isp
)
1314 struct isp_csi2_device
*csi2a
= &isp
->isp_csi2a
;
1316 omap3isp_video_cleanup(&csi2a
->video_out
);
1317 media_entity_cleanup(&csi2a
->subdev
.entity
);