lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Mon, 7 Nov 2022 12:38:45 +0100
From:   Martin Tůma <tumic@...see.org>
To:     Hans Verkuil <hverkuil@...all.nl>,
        Mauro Carvalho Chehab <mchehab@...nel.org>,
        Michal Simek <michal.simek@...inx.com>
Cc:     linux-media@...r.kernel.org, linux-kernel@...r.kernel.org,
        linux-i2c@...r.kernel.org, Lizhi Hou <lizhi.hou@....com>,
        Martin Tůma <martin.tuma@...iteqautomotive.com>
Subject: Re: [PATCH v3 2/2] Added Digiteq Automotive MGB4 driver

On 07. 11. 22 10:11, Hans Verkuil wrote:

>>>
>>> Erm, what is CMT and where do the values in the tables below come from?
>>>
>>
>> The CMT table is used to set up some FPGA PLL related registers. For different video signal frequencies (FPGA input signal frequencies), the FPGA PLL stuff needs to be adjusted to work properly. The
>> values are precomputed based on some formulas given by Xilinx in their FPGA documentation and those formulas are in turn full of some magic values/tables. So the answer to your question is that no one
>> (not even our HW engineer writing the VHDL code...) really knows where these values exactly come from, but they have to be set for the FPGA to work properly with the given video signal.
> 
> OK, that will be good to document. And what does the abbreviation 'CMT' stand for?
> 

Clock Management Tile, it is commonly used in Xilinx's FPGA documentation

>>>
>>> I'm pretty certain that you didn't run 'checkpatch.pl --strict' over this patch.
>>> Please do so for v4!
>>>
>>
>> I have run 'checkpatch.pl' without '--strict' over this patch and ignored all the "too long lines" warnings on the tables as I think they are more clear this way, and all the "change name suggestion"
>> warnings as they are IMHO wrong in this case. Other warnings did not come up. I will try it with '--strict' when I post v4 patch.
> 
> Yes please, the media subsystem uses the --strict option.
> 

Ok.

>>>
>>> This doesn't look right. Just opening a video device shouldn't cause
>>> any state changes, and that's what it looks is happening here.
>>>
>>> I.e., if I just want to query the device (v4l2-ctl --all), then that
>>> shouldn't not change anything.
>>>
>>
>> The MGB4 card is quiet special in this case. Unlike in "normal" cameras, the video signal may change over time as the user can connect different video sources to the card. This is why I set up some
>> video signal related stuff in the open() call. When you open the device, you "configure" it for the current video signal and the signal is then expected not to change until the device is closed (such
>> change will not break the driver, but will break the image). Additionally, the open() call must fail, when there is no signal connected to the card.
>>
>> If you have some suggestions how to handle this "dynamic" behaviour in a different way (properly?) then I'm open to them. But the fact, that even the video resolution can change at any arbitrary time
>> will IMHO always lead to some "workarounds" like this one in the open() call.
> 
> This is not special. We support HDMI receivers today as well which have exactly the same behavior.
> 
> Typically the way this works is that such drivers support the Digital Video Timings ioctls
> (VIDIOC_ENUM_DV_TIMINGS, VIDIOC_DV_TIMINGS_CAP, VIDIOC_G/S/QUERY_DV_TIMINGS). The driver
> stores the current timings as set by userspace (and initialized to something at probe() time
> by the driver), but typically userspace will query the actual detected timings, then set them.
> 
> Next it will allocate buffers, which will fix the timings. E.g. an attempt to set new timings
> will fail with -EBUSY. If the hardware detects a format change, then it will raise the
> V4L2_EVENT_SOURCE_CHANGE event and call vb2_queue_error() to stop streaming.
> 
> Userspace detects that, stops streaming, frees buffers, and calls QUERY_DV_TIMINGS again to
> get the new timings.
> 
> Key here is that the timings are locked when you allocate buffers (vb2_is_busy() will return
> true at that time). Buffers are allocated based on the framesize, which is based on the timings,
> so if timings change, then buffers typically need to be reallocated.
> 
> Search for these ioctls to see how other drivers do this.
> 

Ok, I will look at those ioctls and try to implement this part using those.

>>>> +
>>>> +static int vidioc_queryctrl(struct file *file, void *priv,
>>>> +                struct v4l2_queryctrl *qc)
>>>> +{
>>>> +    return -EINVAL;
>>>> +}
>>>
>>> Huh? Why is this needed?
>>>
>>
>> I think this was required to "silence" some v4l2-compliance tool warnings/errors. I will recheck this.
> 
> If there are warnings/errors with the latest v4l2-compliance, then let me know.
> It would be a bug in the compliance tool.
>

I'm not sure what version of the v4l2-compliance tool I have used that 
time, but as I have Arch linux on the devel machine, I suppose it was 
quiet new. When I get warnings/errors after removing this callback with 
the 1.22.1 version, I will let you know.

>>>
>>> Same as for input: opening a video device appears to have a side-effect.
>>>
>>
>> The same reason as in the input case. You can have different displays with completely different video signals (even resolutions) connected to the output at any arbitrary time.
> 
> It's similar to the input side: use the DV timings ioctls. Except there won't be a
> QUERY_DV_TIMINGS, since it is an output.
> 
> But how do you know what the display supports? Is it using an EDID? In that case you
> need to support VIDIOC_G_EDID as well, and probably some of the DV controls:
> 
> https://linuxtv.org/downloads/v4l-dvb-apis-new/userspace-api/v4l/ext-ctrls-dv.html
> 

There is no EDID or another type of autoconfiguration. In the cars, 
there is simply always the right display connected to the radio 
(infotainment system) and the values are hardcoded on both sides.

In the mgb4 card (that must support arbitrary size displays) we solve 
this by the sysfs configuration - see the "Common FPDL3/GMSL output 
parameters" in the documentation. You set the display properties in 
sysfs (usualy using some udev rules at boot time) and the v4l2 part of 
the driver then uses this values.

M.

Powered by blists - more mailing lists