mbox series

[v2,0/2] media: Add support for ST VD55G1 camera sensor

Message ID 20250401-b4-vd55g1-v2-0-0c8ab8a48c55@foss.st.com
Headers show
Series media: Add support for ST VD55G1 camera sensor | expand

Message

Benjamin Mugnier April 1, 2025, 11:05 a.m. UTC
Hi,

This serie adds support for the STMicroelectronics VD55G1 camera sensor.
The VD55G1 is a monochrome global shutter camera with a 804x704 maximum
resolution with RAW8 and RAW10 bytes per pixel.
Datasheets and other documentation can be found at st.com [1].
A lot of inspiration was taken from the imx219 and the vd56g3 serie.
It is compatible with libcamera. Tested on Raspberry Pi 4 and 5, with and
without libcamera.

[1] https://www.st.com/en/imaging-and-photonics-solutions/vd55g1.html#documentation

Regards,
Benjamin

---
Changes in v2:
- Fix device tree binding mistakes
- Drop linux media git from MAINTAINERS file
- Fix coding style mistakes
- Drop vd55g1_err_probe wrapper
- Fix 32bits build
- Fix config symbol help paragraph being too short for checkpatch
- Link to v1: https://lore.kernel.org/r/20250328-b4-vd55g1-v1-0-8d16b4a79f29@foss.st.com

---
Benjamin Mugnier (2):
      media: dt-bindings: Add ST VD55G1 camera sensor binding
      media: i2c: Add driver for ST VD55G1 camera sensor

 .../devicetree/bindings/media/i2c/st,vd55g1.yaml   |  132 ++
 MAINTAINERS                                        |    9 +
 drivers/media/i2c/Kconfig                          |   11 +
 drivers/media/i2c/Makefile                         |    1 +
 drivers/media/i2c/vd55g1.c                         | 1993 ++++++++++++++++++++
 5 files changed, 2146 insertions(+)
---
base-commit: b2c4bf0c102084e77ed1b12090d77a76469a6814
change-id: 20250225-b4-vd55g1-bdb90dbe39b3

Best regards,

Comments

Krzysztof Kozlowski April 2, 2025, 7:08 a.m. UTC | #1
On Tue, Apr 01, 2025 at 01:05:58PM +0200, Benjamin Mugnier wrote:
> +    properties:
> +      endpoint:
> +        $ref: /schemas/media/video-interfaces.yaml#
> +        unevaluatedProperties: false
> +
> +        properties:
> +          data-lanes:
> +            items:
> +              const: 1

Not what I asked. Now you miss number of items. Just use the syntax I
proposed. Or was there any issue with it?

> +
> +          link-frequencies:
> +            maxItems: 1
> +            items:
> +              minimum: 125000000
> +              maximum: 600000000

Best regards,
Krzysztof
Benjamin Mugnier April 2, 2025, 8:35 a.m. UTC | #2
Hi Krzysztof,

On 4/2/25 09:08, Krzysztof Kozlowski wrote:
> On Tue, Apr 01, 2025 at 01:05:58PM +0200, Benjamin Mugnier wrote:
>> Also update MAINTAINERS file accordingly.
> 
> Since there will be one more version:
> 
> A nit, subject: drop second/last, redundant "binding". The
> "dt-bindings" prefix is already stating that these are bindings.

Thanks for pointing this out, I'll remove the spurious "binding" then.

> See also:
> https://elixir.bootlin.com/linux/v6.7-rc8/source/Documentation/devicetree/bindings/submitting-patches.rst#L18
> 
> Best regards,
> Krzysztof
>
Benjamin Mugnier April 2, 2025, 9:41 a.m. UTC | #3
On 4/2/25 11:38, Benjamin Mugnier wrote:
> On 4/2/25 11:11, Krzysztof Kozlowski wrote:
>> On 02/04/2025 10:34, Benjamin Mugnier wrote:
>>> Hi Krzysztof,
>>>
>>> On 4/2/25 09:08, Krzysztof Kozlowski wrote:
>>>> On Tue, Apr 01, 2025 at 01:05:58PM +0200, Benjamin Mugnier wrote:
>>>>> +    properties:
>>>>> +      endpoint:
>>>>> +        $ref: /schemas/media/video-interfaces.yaml#
>>>>> +        unevaluatedProperties: false
>>>>> +
>>>>> +        properties:
>>>>> +          data-lanes:
>>>>> +            items:
>>>>> +              const: 1
>>>>
>>>> Not what I asked. Now you miss number of items. Just use the syntax I
>>>> proposed. Or was there any issue with it?
>>>
>>> No issue I just misunderstood and thought const: 1 was impliying
>>> maxItems: 1. I'll add maxItems back.
>>
>> That's just longer way to express what I asked for. So I repeat the
>> question: why not using the syntax I asked for?
> 
> I guess I didn't understand what you asked for.
> May I ask you to write it ? That will help me a lot.

By 'it' I mean the binding.

> 
>>
>> Best regards,
>> Krzysztof
>
Krzysztof Kozlowski April 2, 2025, 10:27 a.m. UTC | #4
On 02/04/2025 11:41, Benjamin Mugnier wrote:
> 
> 
> On 4/2/25 11:38, Benjamin Mugnier wrote:
>> On 4/2/25 11:11, Krzysztof Kozlowski wrote:
>>> On 02/04/2025 10:34, Benjamin Mugnier wrote:
>>>> Hi Krzysztof,
>>>>
>>>> On 4/2/25 09:08, Krzysztof Kozlowski wrote:
>>>>> On Tue, Apr 01, 2025 at 01:05:58PM +0200, Benjamin Mugnier wrote:
>>>>>> +    properties:
>>>>>> +      endpoint:
>>>>>> +        $ref: /schemas/media/video-interfaces.yaml#
>>>>>> +        unevaluatedProperties: false
>>>>>> +
>>>>>> +        properties:
>>>>>> +          data-lanes:
>>>>>> +            items:
>>>>>> +              const: 1
>>>>>
>>>>> Not what I asked. Now you miss number of items. Just use the syntax I
>>>>> proposed. Or was there any issue with it?
>>>>
>>>> No issue I just misunderstood and thought const: 1 was impliying
>>>> maxItems: 1. I'll add maxItems back.
>>>
>>> That's just longer way to express what I asked for. So I repeat the
>>> question: why not using the syntax I asked for?
>>
>> I guess I didn't understand what you asked for.
>> May I ask you to write it ? That will help me a lot.
> 
> By 'it' I mean the binding.
I wrote it last time. I don't think that copying the same here would
change anything. If I can look at v1, you can do as well.

Best regards,
Krzysztof
Rob Herring (Arm) April 2, 2025, 1:41 p.m. UTC | #5
On Wed, Apr 02, 2025 at 03:46:05PM +0300, Laurent Pinchart wrote:
> On Wed, Apr 02, 2025 at 12:27:08PM +0200, Krzysztof Kozlowski wrote:
> > On 02/04/2025 11:41, Benjamin Mugnier wrote:
> > > On 4/2/25 11:38, Benjamin Mugnier wrote:
> > >> On 4/2/25 11:11, Krzysztof Kozlowski wrote:
> > >>> On 02/04/2025 10:34, Benjamin Mugnier wrote:
> > >>>> Hi Krzysztof,
> > >>>>
> > >>>> On 4/2/25 09:08, Krzysztof Kozlowski wrote:
> > >>>>> On Tue, Apr 01, 2025 at 01:05:58PM +0200, Benjamin Mugnier wrote:
> > >>>>>> +    properties:
> > >>>>>> +      endpoint:
> > >>>>>> +        $ref: /schemas/media/video-interfaces.yaml#
> > >>>>>> +        unevaluatedProperties: false
> > >>>>>> +
> > >>>>>> +        properties:
> > >>>>>> +          data-lanes:
> > >>>>>> +            items:
> > >>>>>> +              const: 1
> > >>>>>
> > >>>>> Not what I asked. Now you miss number of items. Just use the syntax I
> > >>>>> proposed. Or was there any issue with it?
> > >>>>
> > >>>> No issue I just misunderstood and thought const: 1 was impliying
> > >>>> maxItems: 1. I'll add maxItems back.
> > >>>
> > >>> That's just longer way to express what I asked for. So I repeat the
> > >>> question: why not using the syntax I asked for?
> > >>
> > >> I guess I didn't understand what you asked for.
> > >> May I ask you to write it ? That will help me a lot.
> > > 
> > > By 'it' I mean the binding.
> >
> > I wrote it last time. I don't think that copying the same here would
> > change anything. If I can look at v1, you can do as well.
> 
> Reading your comment on v1, I would have come up with the exact same
> result as Benjamin's v2. I can't figure out what alternative description
> you meant.

The '-' or lack of is the key part here. That's easy to miss visually 
and the significance is missed for newcomers. It is worth mentioning the 
significance when that's the issue even if providing the exact code to 
use.

Rob