devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Benjamin Mugnier <benjamin.mugnier@foss.st.com>
To: Volodymyr Kharuk <vkh@melexis.com>, <linux-media@vger.kernel.org>
Cc: Andrii Kyselov <ays@melexis.com>,
	Mauro Carvalho Chehab <mchehab@kernel.org>,
	Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
	<devicetree@vger.kernel.org>,
	Hans Verkuil <hverkuil-cisco@xs4all.nl>,
	Sakari Ailus <sakari.ailus@linux.intel.com>
Subject: Re: [PATCH v4 0/8] media: i2c: mlx7502x ToF camera support
Date: Mon, 2 Jan 2023 14:48:46 +0100	[thread overview]
Message-ID: <0964106e-8335-fef3-b844-7c00abd1e6d8@foss.st.com> (raw)
In-Reply-To: <Y7LbxRQ2mQnnRC6u@melexis.com>

Hi Volodomyr,

I'm not sure I'm relevant, but since we discussed a bit about controls
in the first version feel free to add my tag for patch 1, 2, and 3:

Acked-By: Benjamin Mugnier <benjamin.mugnier@foss.st.com>

Thank you for your work.

On 1/2/23 14:27, Volodymyr Kharuk wrote:
> Hi All,
> 
> This is a gentle reminder about the patch series for ToF camera.
> 
> Thanks.
> 
> On Fri, Dec 02, 2022 at 06:07:30PM +0200, Volodymyr Kharuk wrote:
>> Hello,
>>
>> This series adds support for the Melexis 75026 and 75027 Time of Flight
>> camera sensors, with DT bindings in patch 7/8 and a driver in patch 8/8.
>> In patches 1/8, 2/8 and 3/8, I've add ToF controls as separate
>> ToF control class.
>>
>> v4:
>> - fix output mode
>> - forbid array for menu and warn if validate_new return an error
>> - add enums to custom control OUTPUT_MODE
>> - update doc
>> - minor fixes
>>
>> v3:
>> - move FMOD, TINT, PHASE_SEQ to common V4L2 as ToF common controls
>> - FMOD and TINT became dynamic arrays
>> - remove PHASE_NUM, use dynamic_array for PHASE_SEQ,
>>   ctrl->new_elems pass number of phases
>> - remove leden-gpios, will be used gpio explicitly in library for now
>> - remade probe: use probe_new, no power on during probe
>> - remove autodetect and wildcard
>> - make all supplies to be required
>> - remove trigger ioctl, will add in separate patch series
>> - remove temperature ioctl, will add in separate patch series
>> - add documentation about custom ioctl
>> - style: 80 cols
>> - minor fixes device tree
>>
>> v2:
>> - added external clock to the sensor
>> - added all regulators required by the sensor
>> - added posibility to choose sensor type in device tree
>> - added prefixes to all custom types in device tree and driver as well
>> - style fixes
>>
>> Volodymyr Kharuk (8):
>>   media: uapi: ctrls: Add Time of Flight class controls
>>   media: v4l: ctrls: Fill V4L2_CID_TOF_CLASS controls
>>   media: Documentation: v4l: Add TOF class controls
>>   media: v4l: ctrls-api: Allow array update in __v4l2_ctrl_modify_range
>>   media: v4l: ctrls: Add user control base for mlx7502x
>>   media: uapi: Add mlx7502x header file
>>   media: dt-bindings: Add mlx7502x camera sensor
>>   media: i2c: Add driver for mlx7502x ToF sensor
>>
>>  .../bindings/media/i2c/melexis,mlx7502x.yaml  |  126 ++
>>  .../userspace-api/media/drivers/index.rst     |    1 +
>>  .../userspace-api/media/drivers/mlx7502x.rst  |   28 +
>>  .../userspace-api/media/v4l/common.rst        |    1 +
>>  .../userspace-api/media/v4l/ext-ctrls-tof.rst |   56 +
>>  MAINTAINERS                                   |   11 +
>>  drivers/media/i2c/Kconfig                     |   13 +
>>  drivers/media/i2c/Makefile                    |    1 +
>>  drivers/media/i2c/mlx7502x.c                  | 1747 +++++++++++++++++
>>  drivers/media/v4l2-core/v4l2-ctrls-api.c      |   25 +-
>>  drivers/media/v4l2-core/v4l2-ctrls-defs.c     |   20 +
>>  include/uapi/linux/mlx7502x.h                 |   28 +
>>  include/uapi/linux/v4l2-controls.h            |   14 +
>>  13 files changed, 2059 insertions(+), 12 deletions(-)
>>  create mode 100644 Documentation/devicetree/bindings/media/i2c/melexis,mlx7502x.yaml
>>  create mode 100644 Documentation/userspace-api/media/drivers/mlx7502x.rst
>>  create mode 100644 Documentation/userspace-api/media/v4l/ext-ctrls-tof.rst
>>  create mode 100644 drivers/media/i2c/mlx7502x.c
>>  create mode 100644 include/uapi/linux/mlx7502x.h
>>
>>
>> base-commit: a7bab6f8b73fe15a6181673149734a2756845dae
>> -- 
>> BR,
>> Volodymyr Kharuk
>>
> 

-- 
Regards,

Benjamin

  reply	other threads:[~2023-01-02 13:49 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-02 16:07 [PATCH v4 0/8] media: i2c: mlx7502x ToF camera support Volodymyr Kharuk
2022-12-02 16:07 ` [PATCH v4 1/8] media: uapi: ctrls: Add Time of Flight class controls Volodymyr Kharuk
2022-12-02 16:07 ` [PATCH v4 2/8] media: v4l: ctrls: Fill V4L2_CID_TOF_CLASS controls Volodymyr Kharuk
2022-12-02 16:07 ` [PATCH v4 3/8] media: Documentation: v4l: Add TOF class controls Volodymyr Kharuk
2022-12-02 16:07 ` [PATCH v4 4/8] media: v4l: ctrls-api: Allow array update in __v4l2_ctrl_modify_range Volodymyr Kharuk
2022-12-02 16:07 ` [PATCH v4 5/8] media: v4l: ctrls: Add user control base for mlx7502x Volodymyr Kharuk
2022-12-02 16:07 ` [PATCH v4 6/8] media: uapi: Add mlx7502x header file Volodymyr Kharuk
2022-12-02 16:07 ` [PATCH v4 7/8] media: dt-bindings: Add mlx7502x camera sensor Volodymyr Kharuk
2022-12-02 16:07 ` [PATCH v4 8/8] media: i2c: Add driver for mlx7502x ToF sensor Volodymyr Kharuk
2023-01-02 13:27 ` [PATCH v4 0/8] media: i2c: mlx7502x ToF camera support Volodymyr Kharuk
2023-01-02 13:48   ` Benjamin Mugnier [this message]
     [not found] ` <Y9DvUDQb84nz3qVc@melexis.com>
     [not found]   ` <Y9EW2jqRa47UZezR@kekkonen.localdomain>
     [not found]     ` <Y9E+hJ604i/ss/xR@melexis.com>
     [not found]       ` <f71e9386-8a6e-a546-fa26-5abe55e3eeff@foss.st.com>
2023-02-06  9:53         ` Volodymyr Kharuk

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=0964106e-8335-fef3-b844-7c00abd1e6d8@foss.st.com \
    --to=benjamin.mugnier@foss.st.com \
    --cc=ays@melexis.com \
    --cc=devicetree@vger.kernel.org \
    --cc=hverkuil-cisco@xs4all.nl \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=robh+dt@kernel.org \
    --cc=sakari.ailus@linux.intel.com \
    --cc=vkh@melexis.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;
as well as URLs for NNTP newsgroup(s).