linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] usb: typec: retimer: Add missing id check in match callback
@ 2022-07-25 20:31 Nícolas F. R. A. Prado
  2022-07-26 16:50 ` Prashant Malani
  2022-08-02  7:18 ` Heikki Krogerus
  0 siblings, 2 replies; 3+ messages in thread
From: Nícolas F. R. A. Prado @ 2022-07-25 20:31 UTC (permalink / raw)
  To: Heikki Krogerus
  Cc: kernel, AngeloGioacchino Del Regno, Nícolas F. R. A. Prado,
	Greg Kroah-Hartman, Prashant Malani, linux-kernel, linux-usb

The fwnode_connection_find_match() function handles two cases: named
references and graph endpoints. In the second case, the match function
passed in is called with the id to check for the match. However, the
match function for the recently added type-c retimer class assumes the
connection has already been matched (which is only true for the first
case).

The result is that with that change, all type-c nodes with graph
endpoints defer probe indefinitely, independently of having a retimer
connection or not.

Add the missing check, like is done by the type-c mux and usb role
switch code, to fix the issue.

Fixes: ddaf8d96f93b ("usb: typec: Add support for retimers")
Signed-off-by: Nícolas F. R. A. Prado <nfraprado@collabora.com>

---

 drivers/usb/typec/retimer.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/usb/typec/retimer.c b/drivers/usb/typec/retimer.c
index 051eaa7d2899..2003731f1bee 100644
--- a/drivers/usb/typec/retimer.c
+++ b/drivers/usb/typec/retimer.c
@@ -36,8 +36,13 @@ static int retimer_fwnode_match(struct device *dev, const void *fwnode)
 
 static void *typec_retimer_match(struct fwnode_handle *fwnode, const char *id, void *data)
 {
-	struct device *dev  = class_find_device(&retimer_class, NULL, fwnode,
-						retimer_fwnode_match);
+	struct device *dev;
+
+	if (id && !fwnode_property_present(fwnode, id))
+		return NULL;
+
+	dev = class_find_device(&retimer_class, NULL, fwnode,
+				retimer_fwnode_match);
 
 	return dev ? to_typec_retimer(dev) : ERR_PTR(-EPROBE_DEFER);
 }
-- 
2.37.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] usb: typec: retimer: Add missing id check in match callback
  2022-07-25 20:31 [PATCH] usb: typec: retimer: Add missing id check in match callback Nícolas F. R. A. Prado
@ 2022-07-26 16:50 ` Prashant Malani
  2022-08-02  7:18 ` Heikki Krogerus
  1 sibling, 0 replies; 3+ messages in thread
From: Prashant Malani @ 2022-07-26 16:50 UTC (permalink / raw)
  To: Nícolas F. R. A. Prado
  Cc: Heikki Krogerus, kernel, AngeloGioacchino Del Regno,
	Greg Kroah-Hartman, linux-kernel, linux-usb

HI Nícolas,

On Mon, Jul 25, 2022 at 1:31 PM Nícolas F. R. A. Prado
<nfraprado@collabora.com> wrote:
>
> The fwnode_connection_find_match() function handles two cases: named
> references and graph endpoints. In the second case, the match function
> passed in is called with the id to check for the match. However, the
> match function for the recently added type-c retimer class assumes the
> connection has already been matched (which is only true for the first
> case).
>
> The result is that with that change, all type-c nodes with graph
> endpoints defer probe indefinitely, independently of having a retimer
> connection or not.
>
> Add the missing check, like is done by the type-c mux and usb role
> switch code, to fix the issue.
>
> Fixes: ddaf8d96f93b ("usb: typec: Add support for retimers")
> Signed-off-by: Nícolas F. R. A. Prado <nfraprado@collabora.com>
FWIW,
Reviewed-by: Prashant Malani <pmalani@chromium.org>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] usb: typec: retimer: Add missing id check in match callback
  2022-07-25 20:31 [PATCH] usb: typec: retimer: Add missing id check in match callback Nícolas F. R. A. Prado
  2022-07-26 16:50 ` Prashant Malani
@ 2022-08-02  7:18 ` Heikki Krogerus
  1 sibling, 0 replies; 3+ messages in thread
From: Heikki Krogerus @ 2022-08-02  7:18 UTC (permalink / raw)
  To: Nícolas F. R. A. Prado
  Cc: kernel, AngeloGioacchino Del Regno, Greg Kroah-Hartman,
	Prashant Malani, linux-kernel, linux-usb

On Mon, Jul 25, 2022 at 04:31:29PM -0400, Nícolas F. R. A. Prado wrote:
> The fwnode_connection_find_match() function handles two cases: named
> references and graph endpoints. In the second case, the match function
> passed in is called with the id to check for the match. However, the
> match function for the recently added type-c retimer class assumes the
> connection has already been matched (which is only true for the first
> case).
> 
> The result is that with that change, all type-c nodes with graph
> endpoints defer probe indefinitely, independently of having a retimer
> connection or not.
> 
> Add the missing check, like is done by the type-c mux and usb role
> switch code, to fix the issue.
> 
> Fixes: ddaf8d96f93b ("usb: typec: Add support for retimers")
> Signed-off-by: Nícolas F. R. A. Prado <nfraprado@collabora.com>

Acked-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>

> ---
> 
>  drivers/usb/typec/retimer.c | 9 +++++++--
>  1 file changed, 7 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/usb/typec/retimer.c b/drivers/usb/typec/retimer.c
> index 051eaa7d2899..2003731f1bee 100644
> --- a/drivers/usb/typec/retimer.c
> +++ b/drivers/usb/typec/retimer.c
> @@ -36,8 +36,13 @@ static int retimer_fwnode_match(struct device *dev, const void *fwnode)
>  
>  static void *typec_retimer_match(struct fwnode_handle *fwnode, const char *id, void *data)
>  {
> -	struct device *dev  = class_find_device(&retimer_class, NULL, fwnode,
> -						retimer_fwnode_match);
> +	struct device *dev;
> +
> +	if (id && !fwnode_property_present(fwnode, id))
> +		return NULL;
> +
> +	dev = class_find_device(&retimer_class, NULL, fwnode,
> +				retimer_fwnode_match);
>  
>  	return dev ? to_typec_retimer(dev) : ERR_PTR(-EPROBE_DEFER);
>  }

thanks,

-- 
heikki

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-08-02  7:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-25 20:31 [PATCH] usb: typec: retimer: Add missing id check in match callback Nícolas F. R. A. Prado
2022-07-26 16:50 ` Prashant Malani
2022-08-02  7:18 ` Heikki Krogerus

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).