All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hans de Goede <hansg@kernel.org>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Sakari Ailus <sakari.ailus@linux.intel.com>,
	Hans de Goede <hdegoede@redhat.com>,
	Mathis Foerst <mathis.foerst@mt.com>,
	Mauro Carvalho Chehab <mchehab@kernel.org>,
	linux-media@vger.kernel.org
Subject: Re: [PATCH v2 11/12] media: mt9m114: Return -EPROBE_DEFER if no endpoint is found
Date: Tue, 3 Jun 2025 15:27:16 +0200	[thread overview]
Message-ID: <bd0f6da2-d358-47c9-b2d8-4f5352b7e28f@kernel.org> (raw)
In-Reply-To: <20250603110359.GC27361@pendragon.ideasonboard.com>

Hi Laurent,

Thank you for your reviews. I agree with most of your
comments and I'll address them when I can make some time.

On 3-Jun-25 1:03 PM, Laurent Pinchart wrote:
> Hi Hans,
> 
> Thank you for the patch.
> 
> On Sat, May 31, 2025 at 06:31:46PM +0200, Hans de Goede wrote:
>> With IPU# bridges, endpoints may only be created when the IPU bridge is
>> initialized. This may happen after the sensor driver's first probe().
>>
>> Signed-off-by: Hans de Goede <hansg@kernel.org>
>> ---
>>  drivers/media/i2c/mt9m114.c | 11 +++++++----
>>  1 file changed, 7 insertions(+), 4 deletions(-)
>>
>> diff --git a/drivers/media/i2c/mt9m114.c b/drivers/media/i2c/mt9m114.c
>> index c4d3122d698e..72914c47ec9a 100644
>> --- a/drivers/media/i2c/mt9m114.c
>> +++ b/drivers/media/i2c/mt9m114.c
>> @@ -2399,11 +2399,14 @@ static int mt9m114_parse_dt(struct mt9m114 *sensor)
>>  	struct fwnode_handle *ep;
>>  	int ret;
>>  
>> +	/*
>> +	 * Sometimes the fwnode graph is initialized by the bridge driver,
>> +	 * wait for this.
>> +	 */
>>  	ep = fwnode_graph_get_next_endpoint(fwnode, NULL);
>> -	if (!ep) {
>> -		dev_err(&sensor->client->dev, "No endpoint found\n");
>> -		return -EINVAL;
>> -	}
>> +	if (!ep)
>> +		return dev_err_probe(&sensor->client->dev, -EPROBE_DEFER,
>> +				     "waiting for fwnode graph endpoint\n");
> 
> That's a bit annoying, as in non-ACPI systems we'll then get probe
> deferral, making the issue more difficult to debug.

With "then" I assume you mean when the fwnode graph endpoint is missing
on DT systems ?

> Is there a way, on IPU-based systems, to delay probing the sensor until
> the bridge has been initialized ?

Waiting for the fwnode graph endpoint to show up is the way to wait for
bridge init we (Sakari and me) have agreed upon, this is done on all
drivers used on x86/ACPI platforms.

Note that by using dev_err_probe() here and not just
"return -EPROBE_DEFER" the kernel will log a message
during boot some time (1 minute?) after the last probe
has succeeded about devices with a deferred probe pending
logging the reason passed to dev_err_probe(), so debugging
this is should not be that much of an issue. There will still
be a log message, it is just that it will be logged a bit later
rather then directly at probe time.

Regards,

Hans







 I suppose this is a question for
> Sakari too.
> 
>>  
>>  	sensor->bus_cfg.bus_type = V4L2_MBUS_UNKNOWN;
>>  	ret = v4l2_fwnode_endpoint_alloc_parse(ep, &sensor->bus_cfg);
> 


  reply	other threads:[~2025-06-03 13:27 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-31 16:31 [PATCH v2 00/12] media: mt9m114: Changes to make it work with atomisp devices Hans de Goede
2025-05-31 16:31 ` [PATCH v2 01/12] media: aptina-pll: Debug log p1 min and max values Hans de Goede
2025-05-31 16:31 ` [PATCH v2 02/12] media: mt9m114: Add support for clock-frequency property Hans de Goede
2025-05-31 16:31 ` [PATCH v2 03/12] media: mt9m114: Use aptina-PLL helper to get PLL values Hans de Goede
2025-06-03 10:57   ` Laurent Pinchart
2025-06-03 13:29     ` Hans de Goede
2025-06-03 14:05       ` Laurent Pinchart
2025-06-27 14:33         ` Hans de Goede
2025-06-27 18:06           ` Laurent Pinchart
2025-06-28  9:27             ` Hans de Goede
2025-06-29 20:46               ` Laurent Pinchart
2025-12-23 13:27                 ` Hans de Goede
2025-12-23 14:34                   ` Laurent Pinchart
2025-05-31 16:31 ` [PATCH v2 04/12] media: mt9m114: Lower minimum vblank value Hans de Goede
2025-05-31 16:31 ` [PATCH v2 05/12] media: mt9m114: Fix default hblank and vblank values Hans de Goede
2025-05-31 16:31 ` [PATCH v2 06/12] media: mt9m114: Tweak default hblank and vblank for more accurate fps Hans de Goede
2025-05-31 16:31 ` [PATCH v2 07/12] media: mt9m114: Avoid a reset low spike during probe() Hans de Goede
2025-05-31 16:31 ` [PATCH v2 08/12] media: mt9m114: Put sensor in reset on power-down Hans de Goede
2025-06-03 10:59   ` Laurent Pinchart
2025-05-31 16:31 ` [PATCH v2 09/12] media: mt9m114: Fix scaler bypass mode Hans de Goede
2025-06-03 12:48   ` Laurent Pinchart
2025-06-29 15:28     ` Hans de Goede
2025-05-31 16:31 ` [PATCH v2 10/12] media: mt9m114: Drop start-, stop-streaming sequence from initialize Hans de Goede
2025-06-03 11:33   ` Laurent Pinchart
2025-06-29 15:38     ` Hans de Goede
2025-06-29 17:11     ` Hans de Goede
2025-06-29 21:05       ` Laurent Pinchart
2025-05-31 16:31 ` [PATCH v2 11/12] media: mt9m114: Return -EPROBE_DEFER if no endpoint is found Hans de Goede
2025-06-03 11:03   ` Laurent Pinchart
2025-06-03 13:27     ` Hans de Goede [this message]
2025-06-05  9:55       ` Sakari Ailus
2025-05-31 16:31 ` [PATCH v2 12/12] media: mt9m114: Add ACPI enumeration support Hans de Goede

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=bd0f6da2-d358-47c9-b2d8-4f5352b7e28f@kernel.org \
    --to=hansg@kernel.org \
    --cc=hdegoede@redhat.com \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-media@vger.kernel.org \
    --cc=mathis.foerst@mt.com \
    --cc=mchehab@kernel.org \
    --cc=sakari.ailus@linux.intel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.