All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] platform/chrome: lightbar: Assign drvdata during probe
@ 2019-06-25 20:51 Rajat Jain
  2019-06-26 20:34 ` Enric Balletbo i Serra
  0 siblings, 1 reply; 3+ messages in thread
From: Rajat Jain @ 2019-06-25 20:51 UTC (permalink / raw)
  To: Benson Leung, Enric Balletbo i Serra, Guenter Roeck, linux-kernel
  Cc: evgreen, rajatxjain, Rajat Jain

The lightbar driver never assigned the drvdata in probe method, and thus
causes a panic when it is accessed at the suspend time.

Signed-off-by: Rajat Jain <rajatja@google.com>
---
 drivers/platform/chrome/cros_ec_lightbar.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/drivers/platform/chrome/cros_ec_lightbar.c b/drivers/platform/chrome/cros_ec_lightbar.c
index d30a6650b0b5..98e514fc5830 100644
--- a/drivers/platform/chrome/cros_ec_lightbar.c
+++ b/drivers/platform/chrome/cros_ec_lightbar.c
@@ -578,11 +578,14 @@ static int cros_ec_lightbar_probe(struct platform_device *pd)
 
 	ret = sysfs_create_group(&ec_dev->class_dev.kobj,
 				 &cros_ec_lightbar_attr_group);
-	if (ret < 0)
+	if (ret < 0) {
 		dev_err(dev, "failed to create %s attributes. err=%d\n",
 			cros_ec_lightbar_attr_group.name, ret);
+		return ret;
+	}
 
-	return ret;
+	platform_set_drvdata(pd, ec_dev);
+	return 0;
 }
 
 static int cros_ec_lightbar_remove(struct platform_device *pd)
-- 
2.22.0.410.gd8fdbe21b5-goog


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

* Re: [PATCH] platform/chrome: lightbar: Assign drvdata during probe
  2019-06-25 20:51 [PATCH] platform/chrome: lightbar: Assign drvdata during probe Rajat Jain
@ 2019-06-26 20:34 ` Enric Balletbo i Serra
  2019-06-27 21:41   ` Rajat Jain
  0 siblings, 1 reply; 3+ messages in thread
From: Enric Balletbo i Serra @ 2019-06-26 20:34 UTC (permalink / raw)
  To: Rajat Jain, Benson Leung, Guenter Roeck, linux-kernel; +Cc: evgreen, rajatxjain

Hi Rajat,

On 25/6/19 22:51, Rajat Jain wrote:
> The lightbar driver never assigned the drvdata in probe method, and thus
> causes a panic when it is accessed at the suspend time.

Good catch, that's one of the problems I currently have with mainline on Samus.
The other one, that I didn't find time to look at is, that for some reason, when
I suspend the system reboots. Is suspend/resume working for you in current mainline?

There is no drvdata because we don't really need extra private data for this
driver, the ec_dev is directly the drvdata provided by device parent. I am
wondering if you can just do

   struct cros_ec_dev *ec_dev = to_cros_ec_dev(dev);

in the suspend/resume calls like we do in the show/store calls or get the
drvdata from its parent. I guess I prefer the first one.

> 

Would be nice have a fixes tag here.

> Signed-off-by: Rajat Jain <rajatja@google.com>
> ---
>  drivers/platform/chrome/cros_ec_lightbar.c | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/platform/chrome/cros_ec_lightbar.c b/drivers/platform/chrome/cros_ec_lightbar.c
> index d30a6650b0b5..98e514fc5830 100644
> --- a/drivers/platform/chrome/cros_ec_lightbar.c
> +++ b/drivers/platform/chrome/cros_ec_lightbar.c
> @@ -578,11 +578,14 @@ static int cros_ec_lightbar_probe(struct platform_device *pd)
>  
>  	ret = sysfs_create_group(&ec_dev->class_dev.kobj,
>  				 &cros_ec_lightbar_attr_group);
> -	if (ret < 0)
> +	if (ret < 0) {
>  		dev_err(dev, "failed to create %s attributes. err=%d\n",
>  			cros_ec_lightbar_attr_group.name, ret);
> +		return ret;
> +	}
>  
> -	return ret;
> +	platform_set_drvdata(pd, ec_dev);
> +	return 0;
>  }
>  
>  static int cros_ec_lightbar_remove(struct platform_device *pd)
> 

Thanks,
~ Enric

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

* Re: [PATCH] platform/chrome: lightbar: Assign drvdata during probe
  2019-06-26 20:34 ` Enric Balletbo i Serra
@ 2019-06-27 21:41   ` Rajat Jain
  0 siblings, 0 replies; 3+ messages in thread
From: Rajat Jain @ 2019-06-27 21:41 UTC (permalink / raw)
  To: Enric Balletbo i Serra
  Cc: Benson Leung, Guenter Roeck, Linux Kernel Mailing List,
	Evan Green, Rajat Jain

Hi Enric,

On Wed, Jun 26, 2019 at 1:34 PM Enric Balletbo i Serra
<enric.balletbo@collabora.com> wrote:
>
> Hi Rajat,
>
> On 25/6/19 22:51, Rajat Jain wrote:
> > The lightbar driver never assigned the drvdata in probe method, and thus
> > causes a panic when it is accessed at the suspend time.
>
> Good catch, that's one of the problems I currently have with mainline on Samus.
> The other one, that I didn't find time to look at is, that for some reason, when
> I suspend the system reboots. Is suspend/resume working for you in current mainline?

I haven't tried current mainline yet. (I tried, but wasn't able to
build it like I used to. If you have a recipe, can you share and I can
give it a try).
I was seeing the same symptoms on my Hatch (using 4.19) before this
patch. I found this was the cause of the reboot, and is fixed now with
this patch. May be you can try on Samus with its fix?

>
> There is no drvdata because we don't really need extra private data for this
> driver, the ec_dev is directly the drvdata provided by device parent. I am
> wondering if you can just do
>
>    struct cros_ec_dev *ec_dev = to_cros_ec_dev(dev);
>
> in the suspend/resume calls like we do in the show/store calls or get the
> drvdata from its parent. I guess I prefer the first one.

The dev in suspend() callback points to "cros-ec-lightbar" device
instead of "cros-ec-dev", so we'd need to reach the parent. I'll send
a new patch in a moment.

Thanks,

Rajat


>
> >
>
> Would be nice have a fixes tag here.
>
> > Signed-off-by: Rajat Jain <rajatja@google.com>
> > ---
> >  drivers/platform/chrome/cros_ec_lightbar.c | 7 +++++--
> >  1 file changed, 5 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/platform/chrome/cros_ec_lightbar.c b/drivers/platform/chrome/cros_ec_lightbar.c
> > index d30a6650b0b5..98e514fc5830 100644
> > --- a/drivers/platform/chrome/cros_ec_lightbar.c
> > +++ b/drivers/platform/chrome/cros_ec_lightbar.c
> > @@ -578,11 +578,14 @@ static int cros_ec_lightbar_probe(struct platform_device *pd)
> >
> >       ret = sysfs_create_group(&ec_dev->class_dev.kobj,
> >                                &cros_ec_lightbar_attr_group);
> > -     if (ret < 0)
> > +     if (ret < 0) {
> >               dev_err(dev, "failed to create %s attributes. err=%d\n",
> >                       cros_ec_lightbar_attr_group.name, ret);
> > +             return ret;
> > +     }
> >
> > -     return ret;
> > +     platform_set_drvdata(pd, ec_dev);
> > +     return 0;
> >  }
> >
> >  static int cros_ec_lightbar_remove(struct platform_device *pd)
> >
>
> Thanks,
> ~ Enric

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

end of thread, other threads:[~2019-06-27 21:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-25 20:51 [PATCH] platform/chrome: lightbar: Assign drvdata during probe Rajat Jain
2019-06-26 20:34 ` Enric Balletbo i Serra
2019-06-27 21:41   ` Rajat Jain

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.