mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Andy Shevchenko <andriy.shevchenko@intel.com>
To: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Cc: linux-media@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-i2c@vger.kernel.org,
	"Rob Herring" <robh+dt@kernel.org>,
	"Krzysztof Kozlowski" <krzysztof.kozlowski+dt@linaro.org>,
	"Wolfram Sang" <wsa@kernel.org>,
	"Luca Ceresoli" <luca.ceresoli@bootlin.com>,
	"Matti Vaittinen" <Matti.Vaittinen@fi.rohmeurope.com>,
	"Laurent Pinchart" <laurent.pinchart+renesas@ideasonboard.com>,
	"Mauro Carvalho Chehab" <mchehab@kernel.org>,
	"Peter Rosin" <peda@axentia.se>,
	"Liam Girdwood" <lgirdwood@gmail.com>,
	"Mark Brown" <broonie@kernel.org>,
	"Sakari Ailus" <sakari.ailus@linux.intel.com>,
	"Michael Tretter" <m.tretter@pengutronix.de>,
	"Shawn Tu" <shawnx.tu@intel.com>,
	"Hans Verkuil" <hverkuil@xs4all.nl>,
	"Mike Pagano" <mpagano@gentoo.org>,
	"Krzysztof Hałasa" <khalasa@piap.pl>,
	"Marek Vasut" <marex@denx.de>,
	"Satish Nagireddy" <satish.nagireddy@getcruise.com>
Subject: Re: [PATCH v9 0/8] i2c-atr and FPDLink
Date: Fri, 17 Feb 2023 13:24:13 +0200	[thread overview]
Message-ID: <Y+9j3cYOG+Z0zmyC@smile.fi.intel.com> (raw)
In-Reply-To: <e4141652-53c0-fce1-dac7-5da5368e2240@ideasonboard.com>

On Fri, Feb 17, 2023 at 08:57:32AM +0200, Tomi Valkeinen wrote:
> On 16/02/2023 17:53, Andy Shevchenko wrote:
> > On Thu, Feb 16, 2023 at 04:07:39PM +0200, Tomi Valkeinen wrote:

...

> > >   	struct i2c_board_info ser_info = {
> > > -		.of_node = to_of_node(rxport->remote_fwnode),
> > > -		.fwnode = rxport->remote_fwnode,
> > 
> > > +		.of_node = to_of_node(rxport->ser.fwnode),
> > > +		.fwnode = rxport->ser.fwnode,
> > 
> > Why do you need to have both?!
> 
> I didn't debug it, but having only fwnode there will break the probing (no
> match).

This needs to be investigated. The whole fwnode approach, when we have both
fwnode and legacy of_node fields in the same data structure, is that fwnode
_OR_ of_node initialization is enough, when both are defined the fwnode
should take precedence.

If your testing is correct (and I have no doubts) it means we have a serious
bug lurking somewhere.

> > >   		.platform_data = ser_pdata,
> > >   	};

...

> > 		cur_vc = desc.entry[0].bus.csi2.vc;
> > 
> > > +		for (i = 0; i < desc.num_entries; ++i) {
> > > +			u8 vc = desc.entry[i].bus.csi2.vc;
> > 
> > > +			if (i == 0) {
> > > +				cur_vc = vc;
> > > +				continue;
> > > +			}
> > 
> > This is an invariant to the loop, see above.
> 
> Well, the current code handles the case of num_entries == 0. I can change it
> as you suggest, and first check if num_entries == 0 and also start the loop
> from 1.

You may try to compile both variants and see which one gets lets code.
I believe it will be mine or they are equivalent in case compiler is clever
enough to recognize the invariant.

> > > +			if (vc == cur_vc)
> > > +				continue;
> > > +
> > > +			dev_err(&priv->client->dev,
> > > +				"rx%u: source with multiple virtual-channels is not supported\n",
> > > +				nport);
> > > +			return -ENODEV;
> > > +		}

...

> > > +	for (i = 0; i < 6; ++i)
> > >   		ub960_read(priv, UB960_SR_FPD3_RX_ID(i), &id[i]);
> > >   	id[6] = 0;
> > 
> > Wondering if this magic can be defined.
> 
> The number of ID registers? Yes, I can add a define.

Yes.

...

...

> > >   	if (ret) {
> > >   		if (ret != -EINVAL) {
> > > -			dev_err(dev,
> > > -				"rx%u: failed to read 'ti,strobe-pos': %d\n",
> > > -				nport, ret);
> > > +			dev_err(dev, "rx%u: failed to read '%s': %d\n", nport,
> > > +				"ti,strobe-pos", ret);
> > >   			return ret;
> > >   		}
> > >   	} else if (strobe_pos < UB960_MIN_MANUAL_STROBE_POS ||
> > > @@ -3512,8 +3403,8 @@ ub960_parse_dt_rxport_link_properties(struct ub960_data *priv,
> > >   	ret = fwnode_property_read_u32(link_fwnode, "ti,eq-level", &eq_level);
> > >   	if (ret) {
> > >   		if (ret != -EINVAL) {
> > > -			dev_err(dev, "rx%u: failed to read 'ti,eq-level': %d\n",
> > > -				nport, ret);
> > > +			dev_err(dev, "rx%u: failed to read '%s': %d\n", nport,
> > > +				"ti,eq-level", ret);
> > >   			return ret;
> > >   		}
> > >   	} else if (eq_level > UB960_MAX_EQ_LEVEL) {
> > 
> 
> Hmm, I noticed this one (and the one above) was missing return -EINVAL.
> 
> > Seems like you may do (in both cases) similar to the above:
> > 
> > 	var = 0;
> > 	ret = read_u32();
> > 	if (ret && ret != -EINVAL) {
> > 		// error handling
> > 	}
> > 	if (var > limit) {
> > 		// another error handling
> > 	}
> 
> That's not the same. You'd also need to do:
> 
> if (!ret) {
> 	// handle the retrieved value
> }
> 
> which, I think, is not any clearer (perhaps more unclear).
> 
> What I could do is:
> 
> if (ret) {
> 	if (ret != -EINVAL) {
> 		dev_err(dev, "rx%u: failed to read '%s': %d\n", nport,
> 			"ti,eq-level", ret);
> 		return ret;
> 	}
> } else {
> 	if (eq_level > UB960_MAX_EQ_LEVEL) {
> 		dev_err(dev, "rx%u: illegal 'ti,eq-level' value: %d\n",
> 			nport, eq_level);
> 		return -EINVAL;
> 	}
> 
> 	rxport->eq.manual_eq = true;
> 	rxport->eq.manual.eq_level = eq_level;
> }
> 
> Maybe the above style makes it clearer, as it clearly splits the "don't have
> value" and "have value" branches.

Up to you, but this just a good example why I do not like how optional
properties are handled in a "smart" way.

To me

	foo = DEFAULT;
	_property_read_(&foo); // no error checking

is clean, neat, small and good enough solution.

...

> > > +	static const char *vpoc_names[UB960_MAX_RX_NPORTS] = { "vpoc0", "vpoc1",
> > > +							       "vpoc2", "vpoc3" };
> > 
> > Wouldn't be better to format it as
> > 
> > 	static const char *vpoc_names[UB960_MAX_RX_NPORTS] = {
> > 		"vpoc0", "vpoc1", "vpoc2", "vpoc3",
> > 	};
> > 
> > ?
> 
> Clang-format disagrees, but I agree with you ;).

So it needs to be fixed then :-)
Glad that you agreed on this.

-- 
With Best Regards,
Andy Shevchenko



  reply	other threads:[~2023-02-17 11:24 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-16 14:07 Tomi Valkeinen
2023-02-16 14:07 ` [PATCH v9 1/8] i2c: add I2C Address Translator (ATR) support Tomi Valkeinen
2023-02-16 14:07 ` [PATCH v9 2/8] media: subdev: Split V4L2_SUBDEV_ROUTING_NO_STREAM_MIX Tomi Valkeinen
2023-02-16 14:07 ` [PATCH v9 3/8] dt-bindings: media: add TI DS90UB913 FPD-Link III Serializer Tomi Valkeinen
2023-02-16 14:07 ` [PATCH v9 4/8] dt-bindings: media: add TI DS90UB953 " Tomi Valkeinen
2023-02-16 14:07 ` [PATCH v9 5/8] dt-bindings: media: add TI DS90UB960 FPD-Link III Deserializer Tomi Valkeinen
2023-02-16 14:07 ` [PATCH v9 6/8] media: i2c: add DS90UB960 driver Tomi Valkeinen
2023-02-16 14:07 ` [PATCH v9 7/8] media: i2c: add DS90UB913 driver Tomi Valkeinen
2023-02-16 14:07 ` [PATCH v9 8/8] media: i2c: add DS90UB953 driver Tomi Valkeinen
2023-02-16 15:53 ` [PATCH v9 0/8] i2c-atr and FPDLink Andy Shevchenko
2023-02-17  6:57   ` Tomi Valkeinen
2023-02-17 11:24     ` Andy Shevchenko [this message]
2023-02-17 12:57       ` Tomi Valkeinen
2023-02-17 13:45         ` Andy Shevchenko
2023-03-02 15:52           ` Tomi Valkeinen
2023-03-02 16:16             ` Andy Shevchenko

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=Y+9j3cYOG+Z0zmyC@smile.fi.intel.com \
    --to=andriy.shevchenko@intel.com \
    --cc=Matti.Vaittinen@fi.rohmeurope.com \
    --cc=broonie@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=hverkuil@xs4all.nl \
    --cc=khalasa@piap.pl \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=laurent.pinchart+renesas@ideasonboard.com \
    --cc=lgirdwood@gmail.com \
    --cc=linux-i2c@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=luca.ceresoli@bootlin.com \
    --cc=m.tretter@pengutronix.de \
    --cc=marex@denx.de \
    --cc=mchehab@kernel.org \
    --cc=mpagano@gentoo.org \
    --cc=peda@axentia.se \
    --cc=robh+dt@kernel.org \
    --cc=sakari.ailus@linux.intel.com \
    --cc=satish.nagireddy@getcruise.com \
    --cc=shawnx.tu@intel.com \
    --cc=tomi.valkeinen@ideasonboard.com \
    --cc=wsa@kernel.org \
    /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®