Linux Media Controller development
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Alexander Stein <alexander.stein@ew.tq-group.com>
Cc: Sakari Ailus <sakari.ailus@linux.intel.com>,
	Hans de Goede <hdegoede@redhat.com>,
	Rui Miguel Silva <rmfrfs@gmail.com>,
	Daniel Scally <dan.scally@ideasonboard.com>,
	Mauro Carvalho Chehab <mchehab@kernel.org>,
	Andy Shevchenko <andy@kernel.org>, Kate Hsuan <hpa@redhat.com>,
	Tommaso Merciai <tomm.merciai@gmail.com>,
	linux-media@vger.kernel.org
Subject: Re: [PATCH v4 3/5] media: imx290: Convert to new CCI register access helpers
Date: Tue, 15 Aug 2023 16:54:13 +0300	[thread overview]
Message-ID: <20230815135413.GD3128@pendragon.ideasonboard.com> (raw)
In-Reply-To: <2156749.irdbgypaU6@steina-w>

On Tue, Aug 15, 2023 at 03:48:53PM +0200, Alexander Stein wrote:
> Am Dienstag, 15. August 2023, 15:31:55 CEST schrieb Sakari Ailus:
> > On Tue, Aug 15, 2023 at 04:15:39PM +0300, Laurent Pinchart wrote:
> > > On Tue, Jun 27, 2023 at 02:51:06PM +0200, Hans de Goede wrote:
> > > > Use the new comon CCI register access helpers to replace the private
> > > > register access helpers in the imx290 driver.
> > > > 
> > > > Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> > > > Signed-off-by: Hans de Goede <hdegoede@redhat.com>
> > > > ---
> > > > Note:
> > > > 1. This is untested
> > > > 2. For reviewers: all the IMX290_REG_?BIT defines in both the register
> > > > address defines as well as in various reg-sequences were automatically
> > > > changed using search replace.
> > > > ---
> > > > Changes in v3:
> > > > - Fixed a couple of lines > 80 chars
> > > > 
> > > > Changes in v2:
> > > > - New patch in v2 of this series
> > > > ---
> > > > 
> > > >  drivers/media/i2c/Kconfig  |   1 +
> > > >  drivers/media/i2c/imx290.c | 360 +++++++++++++++----------------------
> > > >  2 files changed, 150 insertions(+), 211 deletions(-)
> > > 
> > > [snip]
> > > 
> > > > diff --git a/drivers/media/i2c/imx290.c b/drivers/media/i2c/imx290.c
> > > > index b3f832e9d7e1..e78c7b91ae72 100644
> > > > --- a/drivers/media/i2c/imx290.c
> > > > +++ b/drivers/media/i2c/imx290.c
> > > > @@ -21,91 +21,86 @@
> > > 
> > > [snip]
> > > 
> > > > @@ -615,63 +605,15 @@ imx290_format_info(const struct imx290 *imx290, u32 code)
> > > > 
> > > >  	return NULL;
> > > >  
> > > >  }
> > > > 
> > > > -/* -----------------------------------------------------------------------------
> > > > - * Register access
> > > > - */
> > > > -
> > > > -static int __always_unused imx290_read(struct imx290 *imx290, u32 addr, u32 *value)
> > > > -{
> > > > -	u8 data[3] = { 0, 0, 0 };
> > > > -	int ret;
> > > > -
> > > > -	ret = regmap_raw_read(imx290->regmap, addr & IMX290_REG_ADDR_MASK,
> > > > -			      data, (addr >> IMX290_REG_SIZE_SHIFT) & 3);
> > > > -	if (ret < 0) {
> > > > -		dev_err(imx290->dev, "%u-bit read from 0x%04x failed: %d\n",
> > > > -			((addr >> IMX290_REG_SIZE_SHIFT) & 3) * 8,
> > > > -			 addr & IMX290_REG_ADDR_MASK, ret);
> > > > -		return ret;
> > > > -	}
> > > > -
> > > > -	*value = get_unaligned_le24(data);
> > > > -	return 0;
> > > > -}
> > > > -
> > > > -static int imx290_write(struct imx290 *imx290, u32 addr, u32 value, int *err)
> > > > -{
> > > > -	u8 data[3];
> > > > -	int ret;
> > > > -
> > > > -	if (err && *err)
> > > > -		return *err;
> > > > -
> > > > -	put_unaligned_le24(value, data);
> > > 
> > > We seem to be having a problem here, as the CCI helpers unconditionally
> > > use big endian for the data :-(
> > 
> > Well spotted. This driver needs to address this.
> > 
> > It's a hardware issue though. It's the only sensor ever I've seen to have
> > little endian registers.

The IMX296 and IMX297 seem to also have little-endian register values.

> It's getting even worse: There are cameras using this sensor when bulk read is 
> broken (VC MIPI IMX327 C, Laurent knows about this peculiar hardware), so 
> regmap_config.use_single_read has to be set to true. This is currently not 
> possible anymore insode this driver.

I think this could be fixed by passing a flag to the init function. Or,
possibly better, the init function could read a DT property and set the
flag automatically.

> > > > -
> > > > -	ret = regmap_raw_write(imx290->regmap, addr & IMX290_REG_ADDR_MASK,
> > > > -			       data, (addr >> IMX290_REG_SIZE_SHIFT) & 3);
> > > > -	if (ret < 0) {
> > > > -		dev_err(imx290->dev, "%u-bit write to 0x%04x failed: %d\n",
> > > > -			((addr >> IMX290_REG_SIZE_SHIFT) & 3) * 8,
> > > > -			 addr & IMX290_REG_ADDR_MASK, ret);
> > > > -		if (err)
> > > > -			*err = ret;
> > > > -	}
> > > > -
> > > > -	return ret;
> > > > -}
> > > > -
> > > 
> > > [snip]

-- 
Regards,

Laurent Pinchart

  reply	other threads:[~2023-08-15 13:55 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-27 12:51 [PATCH v4 0/5] media: Add MIPI CCI register access helper functions Hans de Goede
2023-06-27 12:51 ` [PATCH v4 1/5] " Hans de Goede
2023-06-27 12:51 ` [PATCH v4 2/5] media: ov5693: Convert to new CCI register access helpers Hans de Goede
2023-06-27 12:51 ` [PATCH v4 3/5] media: imx290: " Hans de Goede
2023-08-15 13:15   ` Laurent Pinchart
2023-08-15 13:31     ` Sakari Ailus
2023-08-15 13:43       ` Laurent Pinchart
2023-08-15 13:48       ` Alexander Stein
2023-08-15 13:54         ` Laurent Pinchart [this message]
2023-08-15 14:15     ` Hans de Goede
2023-08-15 14:21       ` Laurent Pinchart
2023-06-27 12:51 ` [PATCH v4 4/5] media: atomisp: ov2680: " Hans de Goede
2023-06-27 12:51 ` [PATCH v4 5/5] media: Remove ov_16bit_addr_reg_helpers.h Hans de Goede
2023-07-02 10:51 ` [PATCH v4 0/5] media: Add MIPI CCI register access helper functions Sakari Ailus

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=20230815135413.GD3128@pendragon.ideasonboard.com \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=alexander.stein@ew.tq-group.com \
    --cc=andy@kernel.org \
    --cc=dan.scally@ideasonboard.com \
    --cc=hdegoede@redhat.com \
    --cc=hpa@redhat.com \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=rmfrfs@gmail.com \
    --cc=sakari.ailus@linux.intel.com \
    --cc=tomm.merciai@gmail.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