* [PATCH] platform/chrome: cros_ec_typec: Make try power role optional
@ 2022-01-27 19:16 Prashant Malani
2022-01-28 6:20 ` Benson Leung
0 siblings, 1 reply; 3+ messages in thread
From: Prashant Malani @ 2022-01-27 19:16 UTC (permalink / raw)
To: linux-kernel
Cc: Prashant Malani, Heikki Krogerus, Benson Leung,
open list:CHROMEOS EC USB TYPE-C DRIVER, Guenter Roeck
Some boards prefer not to specify a try-power-role. Update the port
property parsing logic to not error out in case a try-power-role is not
specified.
Cc: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Signed-off-by: Prashant Malani <pmalani@chromium.org>
---
drivers/platform/chrome/cros_ec_typec.c | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/drivers/platform/chrome/cros_ec_typec.c b/drivers/platform/chrome/cros_ec_typec.c
index 5de0bfb0bc4d..ee12658009e5 100644
--- a/drivers/platform/chrome/cros_ec_typec.c
+++ b/drivers/platform/chrome/cros_ec_typec.c
@@ -115,17 +115,18 @@ static int cros_typec_parse_port_props(struct typec_capability *cap,
return ret;
cap->data = ret;
+ /* Try-power-role is optional. */
ret = fwnode_property_read_string(fwnode, "try-power-role", &buf);
if (ret) {
- dev_err(dev, "try-power-role not found: %d\n", ret);
- return ret;
+ dev_warn(dev, "try-power-role not found: %d\n", ret);
+ cap->prefer_role = TYPEC_NO_PREFERRED_ROLE;
+ } else {
+ ret = typec_find_power_role(buf);
+ if (ret < 0)
+ return ret;
+ cap->prefer_role = ret;
}
- ret = typec_find_power_role(buf);
- if (ret < 0)
- return ret;
- cap->prefer_role = ret;
-
cap->fwnode = fwnode;
return 0;
--
2.35.0.rc0.227.g00780c9af4-goog
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] platform/chrome: cros_ec_typec: Make try power role optional
2022-01-27 19:16 [PATCH] platform/chrome: cros_ec_typec: Make try power role optional Prashant Malani
@ 2022-01-28 6:20 ` Benson Leung
2022-01-31 8:48 ` Heikki Krogerus
0 siblings, 1 reply; 3+ messages in thread
From: Benson Leung @ 2022-01-28 6:20 UTC (permalink / raw)
To: Prashant Malani
Cc: linux-kernel, Heikki Krogerus, Benson Leung,
open list:CHROMEOS EC USB TYPE-C DRIVER, Guenter Roeck
[-- Attachment #1: Type: text/plain, Size: 1780 bytes --]
Hi Prashant,
On Thu, Jan 27, 2022 at 07:16:59PM +0000, Prashant Malani wrote:
> Some boards prefer not to specify a try-power-role. Update the port
> property parsing logic to not error out in case a try-power-role is not
> specified.
>
> Cc: Heikki Krogerus <heikki.krogerus@linux.intel.com>
> Signed-off-by: Prashant Malani <pmalani@chromium.org>
This looks good to me.
Heikki, if this usage of TYPEC_NO_PREFERRED_ROLE looks good to you, I can
merge it.
Benson
> ---
> drivers/platform/chrome/cros_ec_typec.c | 15 ++++++++-------
> 1 file changed, 8 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/platform/chrome/cros_ec_typec.c b/drivers/platform/chrome/cros_ec_typec.c
> index 5de0bfb0bc4d..ee12658009e5 100644
> --- a/drivers/platform/chrome/cros_ec_typec.c
> +++ b/drivers/platform/chrome/cros_ec_typec.c
> @@ -115,17 +115,18 @@ static int cros_typec_parse_port_props(struct typec_capability *cap,
> return ret;
> cap->data = ret;
>
> + /* Try-power-role is optional. */
> ret = fwnode_property_read_string(fwnode, "try-power-role", &buf);
> if (ret) {
> - dev_err(dev, "try-power-role not found: %d\n", ret);
> - return ret;
> + dev_warn(dev, "try-power-role not found: %d\n", ret);
> + cap->prefer_role = TYPEC_NO_PREFERRED_ROLE;
> + } else {
> + ret = typec_find_power_role(buf);
> + if (ret < 0)
> + return ret;
> + cap->prefer_role = ret;
> }
>
> - ret = typec_find_power_role(buf);
> - if (ret < 0)
> - return ret;
> - cap->prefer_role = ret;
> -
> cap->fwnode = fwnode;
>
> return 0;
> --
> 2.35.0.rc0.227.g00780c9af4-goog
>
--
Benson Leung
Staff Software Engineer
Chrome OS Kernel
Google Inc.
bleung@google.com
Chromium OS Project
bleung@chromium.org
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] platform/chrome: cros_ec_typec: Make try power role optional
2022-01-28 6:20 ` Benson Leung
@ 2022-01-31 8:48 ` Heikki Krogerus
0 siblings, 0 replies; 3+ messages in thread
From: Heikki Krogerus @ 2022-01-31 8:48 UTC (permalink / raw)
To: Benson Leung
Cc: Prashant Malani, linux-kernel, Benson Leung,
open list:CHROMEOS EC USB TYPE-C DRIVER, Guenter Roeck
Hi,
On Thu, Jan 27, 2022 at 10:20:52PM -0800, Benson Leung wrote:
> Hi Prashant,
>
> On Thu, Jan 27, 2022 at 07:16:59PM +0000, Prashant Malani wrote:
> > Some boards prefer not to specify a try-power-role. Update the port
> > property parsing logic to not error out in case a try-power-role is not
> > specified.
> >
> > Cc: Heikki Krogerus <heikki.krogerus@linux.intel.com>
> > Signed-off-by: Prashant Malani <pmalani@chromium.org>
>
> This looks good to me.
>
> Heikki, if this usage of TYPEC_NO_PREFERRED_ROLE looks good to you, I can
> merge it.
This is OK by me. FWIW:
Acked-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
thanks,
> > ---
> > drivers/platform/chrome/cros_ec_typec.c | 15 ++++++++-------
> > 1 file changed, 8 insertions(+), 7 deletions(-)
> >
> > diff --git a/drivers/platform/chrome/cros_ec_typec.c b/drivers/platform/chrome/cros_ec_typec.c
> > index 5de0bfb0bc4d..ee12658009e5 100644
> > --- a/drivers/platform/chrome/cros_ec_typec.c
> > +++ b/drivers/platform/chrome/cros_ec_typec.c
> > @@ -115,17 +115,18 @@ static int cros_typec_parse_port_props(struct typec_capability *cap,
> > return ret;
> > cap->data = ret;
> >
> > + /* Try-power-role is optional. */
> > ret = fwnode_property_read_string(fwnode, "try-power-role", &buf);
> > if (ret) {
> > - dev_err(dev, "try-power-role not found: %d\n", ret);
> > - return ret;
> > + dev_warn(dev, "try-power-role not found: %d\n", ret);
> > + cap->prefer_role = TYPEC_NO_PREFERRED_ROLE;
> > + } else {
> > + ret = typec_find_power_role(buf);
> > + if (ret < 0)
> > + return ret;
> > + cap->prefer_role = ret;
> > }
> >
> > - ret = typec_find_power_role(buf);
> > - if (ret < 0)
> > - return ret;
> > - cap->prefer_role = ret;
> > -
> > cap->fwnode = fwnode;
> >
> > return 0;
--
heikki
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-01-31 8:48 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-27 19:16 [PATCH] platform/chrome: cros_ec_typec: Make try power role optional Prashant Malani
2022-01-28 6:20 ` Benson Leung
2022-01-31 8:48 ` Heikki Krogerus
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox