From: michael <michael@panicking.kicks-ass.org>
To: "Aguirre Rodriguez, Sergio Alberto" <saaguirre@ti.com>
Cc: Nishanth Menon <menon.nishanth@gmail.com>,
"linux-omap@vger.kernel.org" <linux-omap@vger.kernel.org>,
"linux-media@vger.kernel.org" <linux-media@vger.kernel.org>
Subject: Re: ISP OMAP3 camera support ov7690
Date: Tue, 06 Oct 2009 00:33:11 +0200 [thread overview]
Message-ID: <4ACA7427.10502@panicking.kicks-ass.org> (raw)
In-Reply-To: <A24693684029E5489D1D202277BE89444CB3A2CB@dlee02.ent.ti.com>
Hi,
Aguirre Rodriguez, Sergio Alberto wrote:
> Hi Michael,
>
>> -----Original Message-----
>> From: linux-omap-owner@vger.kernel.org
>> [mailto:linux-omap-owner@vger.kernel.org] On Behalf Of michael
>> Sent: Sunday, October 04, 2009 7:29 PM
>> To: Nishanth Menon
>> Cc: linux-omap@vger.kernel.org; linux-media@vger.kernel.org
>> Subject: Re: ISP OMAP3 camera support ov7690
>>
>> Hi,
>>
>> cc: linux-media
>>
>> Nishanth Menon wrote:
>>> michael said the following on 10/03/2009 06:13 PM:
>>>> I'm writing a driver to support the ov7690 camera and I have some
>>>> question about the meaning of:
>>>>
>>>> - datalane configuration
>>> CSI2 Data lanes - each CSI2 lane is a differential pair.
>> And, at least 1
>>> clock and data lane is used in devices.
>> Sorry can you explain a little bit more. I have the camera
>> connected to the
>> cam_hs and cam_vs and the data is 8Bit. I use the the isp init
>> structure. The sccb bus works great and I can send
>> configuration to it,
>> but I don't receive any interrupt from the ics, seems that it
>> doen't see
>> the transaction:
>>
>> The ISPCCDC: ###CCDC SYN_MODE=0x31704 seems ok.
>>
>>
>> static struct isp_interface_config ov7690_if_config = {
>> .ccdc_par_ser = ISP_CSIA,
>> .dataline_shift = 0x0,
>> .hsvs_syncdetect = ISPCTRL_SYNC_DETECT_VSFALL,
>
> Can you try with ISPCTRL_SYNC_DETECT_VSRISE ?
I just try to invert the polary and I have no problem to share the code with the community.
The documentation miss info about the 4 clock and 8 clock before and after the frame.
I have the limitation that the camera is always on, so in the POWER_DOWN condidion
I reset it to have the output and signal in HZ state. I think that is correct,
Now I will try to take a look to the logic, because that receive interrupt must be
normal when I put out the signal connection. I can send the patch set to the mailing
linux-media to share the code and maybe there is somenthing else working on the same
device. Do you thing that is is a good idea. There are a lot of work to do for setting
varius control and I don't have a perfect knolowment of the OMAP part. I try to read
the code, but I suspect tha I can have basically two problem:
- missend register setting (so I don't enable correcly the signal output
- or somenthing regarding the timing.
The documentation lack and it's incomplete about timing and setting and I'm under nda
but the code is offcorse gpl and I have the intention to submit to review or help
people like me that are working around the same issue.
>
>> .strobe = 0x0,
>> .prestrobe = 0x0,
>> .shutter = 0x0,
>> .wenlog = ISPCCDC_CFG_WENLOG_AND,
>> .wait_hs_vs = 0x4,
>> .raw_fmt_in = ISPCCDC_INPUT_FMT_GR_BG,
>> .u.csi.crc = 0x0,
>> .u.csi.mode = 0x0,
>> .u.csi.edge = 0x0,
>> .u.csi.signalling = 0x0,
>> .u.csi.strobe_clock_inv = 0x0,
>> .u.csi.vs_edge = 0x0,
>> .u.csi.channel = 0x0,
>> .u.csi.vpclk = 0x1,
>> .u.csi.data_start = 0x0,
>> .u.csi.data_size = 0x0,
>> .u.csi.format = V4L2_PIX_FMT_YUYV,
>> };
>>
>> and I don't know the meaning of
>>
>> lanecfg.clk.pol = OV7690_CSI2_CLOCK_POLARITY;
>> lanecfg.clk.pos = OV7690_CSI2_CLOCK_LANE;
>> lanecfg.data[0].pol = OV7690_CSI2_DATA0_POLARITY;
>> lanecfg.data[0].pos = OV7690_CSI2_DATA0_LANE;
>> lanecfg.data[1].pol = OV7690_CSI2_DATA1_POLARITY;
>> lanecfg.data[1].pos = OV7690_CSI2_DATA1_LANE;
>> lanecfg.data[2].pol = 0;
>> lanecfg.data[2].pos = 0;
>> lanecfg.data[3].pol = 0;
>> lanecfg.data[3].pos = 0;
>>
>
> This is the physical connection details:
>
> - The .pol field stands for the differntial pair polarity.
> (i.e. the order in which the negative and positive connections
> are pugged in to the CSI2 ComplexIO module)
>
> - The .pos field is for telling in which position of the 4
> available physically you have your clock, or data lane located.
Ok, so if I don't receive the clock for a wrong routing I can't read the
data but I can receive interumpt for vsync falling or rising transaction.
Is it correct?
>
> Regards,
> Sergio
Thank's for your time
Regards Michael
>
>>>> - phyconfiguration
>>> PHY - Physical timing configurations. btw, if it is camera
>> specific you
>>> could get a lot of inputs from [1].
>> Ok I wil ask to them.
>>
>>> Regards,
>>> Nishanth Menon
>>>
>>> Ref:
>>> [1] http://vger.kernel.org/vger-lists.html#linux-media
>>> --
>>> To unsubscribe from this list: send the line "unsubscribe
>> linux-omap" in
>>> the body of a message to majordomo@vger.kernel.org
>>> More majordomo info at http://vger.kernel.org/majordomo-info.html
>>>
>> Michael
>> --
>> To unsubscribe from this list: send the line "unsubscribe
>> linux-omap" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
>>
>>
next prev parent reply other threads:[~2009-10-05 22:35 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-03 23:13 ISP OMAP3 camera support ov7690 michael
[not found] ` <4AC8B764.2030101@gmail.com>
2009-10-05 0:28 ` michael
2009-10-05 22:23 ` Aguirre Rodriguez, Sergio Alberto
2009-10-05 22:33 ` michael [this message]
2010-01-12 13:15 ` Michael Trimarchi
2010-01-12 16:36 ` Aguirre, Sergio
2010-01-12 17:32 ` Michael Trimarchi
2010-01-12 21:28 ` Michael Trimarchi
2010-01-12 22:12 ` Aguirre, Sergio
2010-01-13 10:18 ` Michael Trimarchi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4ACA7427.10502@panicking.kicks-ass.org \
--to=michael@panicking.kicks-ass.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=menon.nishanth@gmail.com \
--cc=saaguirre@ti.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox