mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Himanshu Bhavani <himanshu.bhavani@siliconsignals.io>
Cc: "sakari.ailus@linux.intel.com" <sakari.ailus@linux.intel.com>,
	Hardevsinh Palaniya <hardevsinh.palaniya@siliconsignals.io>,
	Mauro Carvalho Chehab <mchehab@kernel.org>,
	Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Bjorn Andersson <andersson@kernel.org>,
	Konrad Dybcio <konradybcio@kernel.org>,
	Hans Verkuil <hverkuil+cisco@kernel.org>,
	Hans de Goede <johannes.goede@oss.qualcomm.com>,
	Vladimir Zapolskiy <vladimir.zapolskiy@linaro.org>,
	Mehdi Djait <mehdi.djait@linux.intel.com>,
	Elgin Perumbilly <elgin.perumbilly@siliconsignals.io>,
	Xiaolei Wang <xiaolei.wang@windriver.com>,
	Walter Werner Schneider <contact@schnwalter.eu>,
	Kate Hsuan <hpa@redhat.com>,
	Svyatoslav Ryhel <clamor95@gmail.com>,
	"linux-media@vger.kernel.org" <linux-media@vger.kernel.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-arm-msm@vger.kernel.org" <linux-arm-msm@vger.kernel.org>
Subject: Re: [PATCH 2/3] media: i2c: add imx576 image sensor driver
Date: Thu, 21 May 2026 11:13:10 +0200	[thread overview]
Message-ID: <20260521091310.GB4511@killaraus.ideasonboard.com> (raw)
In-Reply-To: <PN0P287MB20196A26D90DF65CF551FD359A0E2@PN0P287MB2019.INDP287.PROD.OUTLOOK.COM>

On Thu, May 21, 2026 at 05:44:09AM +0000, Himanshu Bhavani wrote:
> > On Wed, May 20, 2026 at 05:26:34PM +0530, Himanshu Bhavani wrote:
> >> Add a v4l2 subdevice driver for the Sony imx576 sensor.
> >>
> >> The Sony IMX576 image sensor with an active
> >> array size of 5760 x 4312
> >>
> >> The following features are supported:
> >> - Manual exposure an gain control support
> >> - vblank/hblank control support
> >> - Supported resolution: 2880 x 2156 30fps (SRGGB10)
> >>
> >> Signed-off-by: Himanshu Bhavani <himanshu.bhavani@siliconsignals.io>
> >> ---
> >>  MAINTAINERS                |    1 +
> >>  drivers/media/i2c/Kconfig  |   10 +
> >>  drivers/media/i2c/Makefile |    1 +
> >>  drivers/media/i2c/imx576.c | 1029 ++++++++++++++++++++++++++++++++++++
> >>  4 files changed, 1041 insertions(+)
> >>  create mode 100644 drivers/media/i2c/imx576.c

[snip]

> >> diff --git a/drivers/media/i2c/Makefile b/drivers/media/i2c/Makefile
> >> index 90b276a7417a..e96c083e03d9 100644
> >> --- a/drivers/media/i2c/Makefile
> >> +++ b/drivers/media/i2c/Makefile
> >> @@ -61,6 +61,7 @@ obj-$(CONFIG_VIDEO_IMX335) += imx335.o
> >>  obj-$(CONFIG_VIDEO_IMX355) += imx355.o
> >>  obj-$(CONFIG_VIDEO_IMX412) += imx412.o
> >>  obj-$(CONFIG_VIDEO_IMX415) += imx415.o
> >> +obj-$(CONFIG_VIDEO_IMX576) += imx576.o
> >>  obj-$(CONFIG_VIDEO_IR_I2C) += ir-kbd-i2c.o
> >>  obj-$(CONFIG_VIDEO_ISL7998X) += isl7998x.o
> >>  obj-$(CONFIG_VIDEO_KS0127) += ks0127.o
> >> diff --git a/drivers/media/i2c/imx576.c b/drivers/media/i2c/imx576.c
> >> new file mode 100644
> >> index 000000000000..910cbcfb6031
> >> --- /dev/null
> >> +++ b/drivers/media/i2c/imx576.c

[snip]

> >> +static const struct imx576_mode supported_modes_10bit[] = {
> >> +	{
> >> +		.width = 2880,
> >> +		.height = 2156,
> >> +		.hts = 3165,
> >> +		.vts = 2172,
> >> +		.reg_list = {
> >> +			.num_of_regs = ARRAY_SIZE(mode_2880x2156_regs),
> >> +			.regs = mode_2880x2156_regs,
> >> +		},
> >> +	},
> >> +};
> >
> > No mode tables please. Control the analog crop and binning through the
> > selection and format APIs.
> >
> >> +
> >> +static const s64 link_freq[] = {
> >> +	IMX576_LINK_FREQ_600MHZ,
> >
> > The link frequency should be selectable from DT, with PLL parameters (if
> > any) computed by the driver.
> 
> I don't have the full datasheet, so this cannot be implemented properly.

Have you tried to work with your support channel to obtain the
documentation?

-- 
Regards,

Laurent Pinchart

  reply	other threads:[~2026-05-21  9:13 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-20 11:56 [PATCH 0/3] media: i2c: Add imx576 camera " Himanshu Bhavani
2026-05-20 11:56 ` [PATCH 1/3] dt-bindings: media: i2c: Add imx576 sensor Himanshu Bhavani
2026-05-20 12:09   ` Luca Weiss
2026-05-21  8:48     ` Himanshu Bhavani
2026-05-21 10:22   ` Krzysztof Kozlowski
     [not found]     ` <PN0P287MB2019122FF174F05F43EB07229A092@PN0P287MB2019.INDP287.PROD.OUTLOOK.COM>
2026-05-28 14:16       ` Krzysztof Kozlowski
2026-06-03  9:36         ` Himanshu Bhavani
2026-05-20 11:56 ` [PATCH 2/3] media: i2c: add imx576 image sensor driver Himanshu Bhavani
2026-05-20 12:33   ` Laurent Pinchart
2026-05-21  5:44     ` Himanshu Bhavani
2026-05-21  9:13       ` Laurent Pinchart [this message]
2026-05-22  6:10         ` Himanshu Bhavani
2026-05-22  8:51   ` Tarang Raval
2026-05-20 11:56 ` [PATCH 3/3] arm64: dts: qcom: sm7225-fairphone-fp4: Add Sony IMX576 front camera support Himanshu Bhavani
2026-05-20 12:14   ` Luca Weiss
2026-05-21  8:49     ` Himanshu Bhavani

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=20260521091310.GB4511@killaraus.ideasonboard.com \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=andersson@kernel.org \
    --cc=clamor95@gmail.com \
    --cc=conor+dt@kernel.org \
    --cc=contact@schnwalter.eu \
    --cc=devicetree@vger.kernel.org \
    --cc=elgin.perumbilly@siliconsignals.io \
    --cc=hardevsinh.palaniya@siliconsignals.io \
    --cc=himanshu.bhavani@siliconsignals.io \
    --cc=hpa@redhat.com \
    --cc=hverkuil+cisco@kernel.org \
    --cc=johannes.goede@oss.qualcomm.com \
    --cc=konradybcio@kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=mehdi.djait@linux.intel.com \
    --cc=robh@kernel.org \
    --cc=sakari.ailus@linux.intel.com \
    --cc=vladimir.zapolskiy@linaro.org \
    --cc=xiaolei.wang@windriver.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

all inboxes | Powered by JetHome®