* [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain @ 2015-07-31 9:20 Jon Hunter 2015-08-01 0:12 ` Rafael J. Wysocki 2015-08-04 13:03 ` Geert Uytterhoeven 0 siblings, 2 replies; 15+ messages in thread From: Jon Hunter @ 2015-07-31 9:20 UTC (permalink / raw) To: Rafael Wysocki, Ulf Hansson, Kevin Hilman; +Cc: linux-pm, Jon Hunter When a device is probed, the function dev_pm_domain_attach() is called to see if there is a power-domain that is associated with the device and needs to be turned on. If dev_pm_domain_attach() does not return -EPROBE_DEFER then the device will be probed. For devices using genpd, dev_pm_domain_attach() will call genpd_dev_pm_attach(). If genpd_dev_pm_attach() does not find a power domain associated with the device then it returns an error code not equal to -EPROBE_DEFER to allow the device to be probed. However, if genpd_dev_pm_attach() does find a power-domain that is associated with the device, then it does not return -EPROBE_DEFER on failure and hence the device will still be probed. Furthermore, genpd_dev_pm_attach() does not check the error code returned by pm_genpd_poweron() to see if the power-domain was turned on successfully. Fix this by checking the return code from pm_genpd_poweron() and returning -EPROBE_DEFER from genpd_dev_pm_attach on failure, if there is a power-domain associated with the device. Signed-off-by: Jon Hunter <jonathanh@nvidia.com> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> Acked-by: Kevin Hilman <khilman@linaro.org> --- V2 changes: - Updated description per Kevin's feedback and added Kevin's ACK. drivers/base/power/domain.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c index a1abe16dfe16..7666a1cbaf95 100644 --- a/drivers/base/power/domain.c +++ b/drivers/base/power/domain.c @@ -1947,7 +1947,10 @@ static void genpd_dev_pm_sync(struct device *dev) * Both generic and legacy Samsung-specific DT bindings are supported to keep * backwards compatibility with existing DTBs. * - * Returns 0 on successfully attached PM domain or negative error code. + * Returns 0 on successfully attached PM domain or negative error code. Note + * that if a power-domain exists for the device, but it cannot be found or + * turned on, then return -EPROBE_DEFER to ensure that the device is not + * probed and to re-try again later. */ int genpd_dev_pm_attach(struct device *dev) { @@ -1984,7 +1987,7 @@ int genpd_dev_pm_attach(struct device *dev) dev_dbg(dev, "%s() failed to find PM domain: %ld\n", __func__, PTR_ERR(pd)); of_node_put(dev->of_node); - return PTR_ERR(pd); + return -EPROBE_DEFER; } dev_dbg(dev, "adding to PM domain %s\n", pd->name); @@ -2002,14 +2005,15 @@ int genpd_dev_pm_attach(struct device *dev) dev_err(dev, "failed to add to PM domain %s: %d", pd->name, ret); of_node_put(dev->of_node); - return ret; + goto out; } dev->pm_domain->detach = genpd_dev_pm_detach; dev->pm_domain->sync = genpd_dev_pm_sync; - pm_genpd_poweron(pd); + ret = pm_genpd_poweron(pd); - return 0; +out: + return ret ? -EPROBE_DEFER : 0; } EXPORT_SYMBOL_GPL(genpd_dev_pm_attach); #endif /* CONFIG_PM_GENERIC_DOMAINS_OF */ -- 2.1.4 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain 2015-07-31 9:20 [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain Jon Hunter @ 2015-08-01 0:12 ` Rafael J. Wysocki 2015-08-04 13:03 ` Geert Uytterhoeven 1 sibling, 0 replies; 15+ messages in thread From: Rafael J. Wysocki @ 2015-08-01 0:12 UTC (permalink / raw) To: Jon Hunter; +Cc: Ulf Hansson, Kevin Hilman, linux-pm On Friday, July 31, 2015 10:20:00 AM Jon Hunter wrote: > When a device is probed, the function dev_pm_domain_attach() is called > to see if there is a power-domain that is associated with the device and > needs to be turned on. If dev_pm_domain_attach() does not return > -EPROBE_DEFER then the device will be probed. > > For devices using genpd, dev_pm_domain_attach() will call > genpd_dev_pm_attach(). If genpd_dev_pm_attach() does not find a power > domain associated with the device then it returns an error code not > equal to -EPROBE_DEFER to allow the device to be probed. However, if > genpd_dev_pm_attach() does find a power-domain that is associated with > the device, then it does not return -EPROBE_DEFER on failure and hence > the device will still be probed. Furthermore, genpd_dev_pm_attach() does > not check the error code returned by pm_genpd_poweron() to see if the > power-domain was turned on successfully. > > Fix this by checking the return code from pm_genpd_poweron() and > returning -EPROBE_DEFER from genpd_dev_pm_attach on failure, if there > is a power-domain associated with the device. > > Signed-off-by: Jon Hunter <jonathanh@nvidia.com> > Acked-by: Ulf Hansson <ulf.hansson@linaro.org> > Acked-by: Kevin Hilman <khilman@linaro.org> Queued up for 4.3, thanks! -- I speak only for myself. Rafael J. Wysocki, Intel Open Source Technology Center. ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain 2015-07-31 9:20 [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain Jon Hunter 2015-08-01 0:12 ` Rafael J. Wysocki @ 2015-08-04 13:03 ` Geert Uytterhoeven 2015-08-04 13:57 ` Jon Hunter 1 sibling, 1 reply; 15+ messages in thread From: Geert Uytterhoeven @ 2015-08-04 13:03 UTC (permalink / raw) To: Jon Hunter; +Cc: Rafael Wysocki, Ulf Hansson, Kevin Hilman, Linux PM list Hi Jon, Now this ended up in pm/linux-next, I gave it a try, also with a special test case. On Fri, Jul 31, 2015 at 11:20 AM, Jon Hunter <jonathanh@nvidia.com> wrote: > When a device is probed, the function dev_pm_domain_attach() is called > to see if there is a power-domain that is associated with the device and > needs to be turned on. If dev_pm_domain_attach() does not return > -EPROBE_DEFER then the device will be probed. > > For devices using genpd, dev_pm_domain_attach() will call > genpd_dev_pm_attach(). If genpd_dev_pm_attach() does not find a power > domain associated with the device then it returns an error code not > equal to -EPROBE_DEFER to allow the device to be probed. However, if Your patch description doesn't say this behavior was changed... > genpd_dev_pm_attach() does find a power-domain that is associated with > the device, then it does not return -EPROBE_DEFER on failure and hence > the device will still be probed. Furthermore, genpd_dev_pm_attach() does > not check the error code returned by pm_genpd_poweron() to see if the > power-domain was turned on successfully. > > Fix this by checking the return code from pm_genpd_poweron() and > returning -EPROBE_DEFER from genpd_dev_pm_attach on failure, if there > is a power-domain associated with the device. > > Signed-off-by: Jon Hunter <jonathanh@nvidia.com> > Acked-by: Ulf Hansson <ulf.hansson@linaro.org> > Acked-by: Kevin Hilman <khilman@linaro.org> > --- > V2 changes: > - Updated description per Kevin's feedback and added Kevin's ACK. > > drivers/base/power/domain.c | 14 +++++++++----- > 1 file changed, 9 insertions(+), 5 deletions(-) > > diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c > index a1abe16dfe16..7666a1cbaf95 100644 > --- a/drivers/base/power/domain.c > +++ b/drivers/base/power/domain.c > @@ -1947,7 +1947,10 @@ static void genpd_dev_pm_sync(struct device *dev) > * Both generic and legacy Samsung-specific DT bindings are supported to keep > * backwards compatibility with existing DTBs. > * > - * Returns 0 on successfully attached PM domain or negative error code. > + * Returns 0 on successfully attached PM domain or negative error code. Note > + * that if a power-domain exists for the device, but it cannot be found or ... but here it does. > + * turned on, then return -EPROBE_DEFER to ensure that the device is not > + * probed and to re-try again later. > */ > int genpd_dev_pm_attach(struct device *dev) > { > @@ -1984,7 +1987,7 @@ int genpd_dev_pm_attach(struct device *dev) > dev_dbg(dev, "%s() failed to find PM domain: %ld\n", > __func__, PTR_ERR(pd)); > of_node_put(dev->of_node); > - return PTR_ERR(pd); > + return -EPROBE_DEFER; And it really does. This causes a regression for platforms where: 1. DT describes the hardware power domains, and 2. The boot loader or reset state has enabled all power domains, and 3. Linux doesn't have a driver for the power controller yet. Before, devices for which the PM domain couldn't be found just probed and worked, Now, these devices don't probe anymore, and the kernel fails to boot. Note that I only managed to trigger this by explicitly disabling my power controller driver (the platforms I'm interested in already have power controller drivers). But I think it will hamper bring-up of new boards, as you can no longer write a "perfect and stable" .dts first, and implement kernel support incrementally. Hence I think it's worthwhile to revert just this hunk. If you agree, I can send a patch. Thanks! Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain 2015-08-04 13:03 ` Geert Uytterhoeven @ 2015-08-04 13:57 ` Jon Hunter 2015-08-05 14:06 ` Geert Uytterhoeven 0 siblings, 1 reply; 15+ messages in thread From: Jon Hunter @ 2015-08-04 13:57 UTC (permalink / raw) To: Geert Uytterhoeven Cc: Rafael Wysocki, Ulf Hansson, Kevin Hilman, Linux PM list Hi Geert, On 04/08/15 14:03, Geert Uytterhoeven wrote: > Hi Jon, > > Now this ended up in pm/linux-next, I gave it a try, also with a special > test case. > > On Fri, Jul 31, 2015 at 11:20 AM, Jon Hunter <jonathanh@nvidia.com> wrote: >> When a device is probed, the function dev_pm_domain_attach() is called >> to see if there is a power-domain that is associated with the device and >> needs to be turned on. If dev_pm_domain_attach() does not return >> -EPROBE_DEFER then the device will be probed. >> >> For devices using genpd, dev_pm_domain_attach() will call >> genpd_dev_pm_attach(). If genpd_dev_pm_attach() does not find a power >> domain associated with the device then it returns an error code not >> equal to -EPROBE_DEFER to allow the device to be probed. However, if > > Your patch description doesn't say this behavior was changed... Sorry if this was not clear, but ... >> genpd_dev_pm_attach() does find a power-domain that is associated with >> the device, then it does not return -EPROBE_DEFER on failure and hence >> the device will still be probed. Furthermore, genpd_dev_pm_attach() does >> not check the error code returned by pm_genpd_poweron() to see if the >> power-domain was turned on successfully. >> >> Fix this by checking the return code from pm_genpd_poweron() and >> returning -EPROBE_DEFER from genpd_dev_pm_attach on failure, if there >> is a power-domain associated with the device. ... does the above not state the behaviour was changed? >> Signed-off-by: Jon Hunter <jonathanh@nvidia.com> >> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> >> Acked-by: Kevin Hilman <khilman@linaro.org> >> --- >> V2 changes: >> - Updated description per Kevin's feedback and added Kevin's ACK. >> >> drivers/base/power/domain.c | 14 +++++++++----- >> 1 file changed, 9 insertions(+), 5 deletions(-) >> >> diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c >> index a1abe16dfe16..7666a1cbaf95 100644 >> --- a/drivers/base/power/domain.c >> +++ b/drivers/base/power/domain.c >> @@ -1947,7 +1947,10 @@ static void genpd_dev_pm_sync(struct device *dev) >> * Both generic and legacy Samsung-specific DT bindings are supported to keep >> * backwards compatibility with existing DTBs. >> * >> - * Returns 0 on successfully attached PM domain or negative error code. >> + * Returns 0 on successfully attached PM domain or negative error code. Note >> + * that if a power-domain exists for the device, but it cannot be found or > > ... but here it does. > >> + * turned on, then return -EPROBE_DEFER to ensure that the device is not >> + * probed and to re-try again later. >> */ >> int genpd_dev_pm_attach(struct device *dev) >> { >> @@ -1984,7 +1987,7 @@ int genpd_dev_pm_attach(struct device *dev) >> dev_dbg(dev, "%s() failed to find PM domain: %ld\n", >> __func__, PTR_ERR(pd)); >> of_node_put(dev->of_node); >> - return PTR_ERR(pd); >> + return -EPROBE_DEFER; > > And it really does. > > This causes a regression for platforms where: > 1. DT describes the hardware power domains, and > 2. The boot loader or reset state has enabled all power domains, and > 3. Linux doesn't have a driver for the power controller yet. > > Before, devices for which the PM domain couldn't be found just probed and > worked, Now, these devices don't probe anymore, and the kernel fails to boot. I see. Sounds like a chicken or the egg scenario. Why not just disable PM_GENERIC_DOMAINS in the config in that case? > Note that I only managed to trigger this by explicitly disabling my power > controller driver (the platforms I'm interested in already have power > controller drivers). But I think it will hamper bring-up of new boards, as you > can no longer write a "perfect and stable" .dts first, and implement kernel > support incrementally. > > Hence I think it's worthwhile to revert just this hunk. > If you agree, I can send a patch. But what about the case where we do have device that does have a power controller driver? Don't we want to defer in case it has not been probed yet? I am concerned we could try to probe a device before the power controller has been probed. Cheers Jon ----------------------------------------------------------------------------------- This email message is for the sole use of the intended recipient(s) and may contain confidential information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message. ----------------------------------------------------------------------------------- ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain 2015-08-04 13:57 ` Jon Hunter @ 2015-08-05 14:06 ` Geert Uytterhoeven 2015-08-05 23:59 ` Rafael J. Wysocki 2015-08-06 8:08 ` Jon Hunter 0 siblings, 2 replies; 15+ messages in thread From: Geert Uytterhoeven @ 2015-08-05 14:06 UTC (permalink / raw) To: Jon Hunter; +Cc: Rafael Wysocki, Ulf Hansson, Kevin Hilman, Linux PM list Hi Jon, On Tue, Aug 4, 2015 at 3:57 PM, Jon Hunter <jonathanh@nvidia.com> wrote: > On 04/08/15 14:03, Geert Uytterhoeven wrote: >> Now this ended up in pm/linux-next, I gave it a try, also with a special >> test case. >> >> On Fri, Jul 31, 2015 at 11:20 AM, Jon Hunter <jonathanh@nvidia.com> wrote: >>> When a device is probed, the function dev_pm_domain_attach() is called >>> to see if there is a power-domain that is associated with the device and >>> needs to be turned on. If dev_pm_domain_attach() does not return >>> -EPROBE_DEFER then the device will be probed. >>> >>> For devices using genpd, dev_pm_domain_attach() will call >>> genpd_dev_pm_attach(). If genpd_dev_pm_attach() does not find a power >>> domain associated with the device then it returns an error code not >>> equal to -EPROBE_DEFER to allow the device to be probed. However, if >> >> Your patch description doesn't say this behavior was changed... > > Sorry if this was not clear, but ... > >>> genpd_dev_pm_attach() does find a power-domain that is associated with >>> the device, then it does not return -EPROBE_DEFER on failure and hence >>> the device will still be probed. Furthermore, genpd_dev_pm_attach() does >>> not check the error code returned by pm_genpd_poweron() to see if the >>> power-domain was turned on successfully. >>> >>> Fix this by checking the return code from pm_genpd_poweron() and >>> returning -EPROBE_DEFER from genpd_dev_pm_attach on failure, if there >>> is a power-domain associated with the device. > > ... does the above not state the behaviour was changed? > >>> Signed-off-by: Jon Hunter <jonathanh@nvidia.com> >>> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> >>> Acked-by: Kevin Hilman <khilman@linaro.org> >>> --- >>> V2 changes: >>> - Updated description per Kevin's feedback and added Kevin's ACK. >>> >>> drivers/base/power/domain.c | 14 +++++++++----- >>> 1 file changed, 9 insertions(+), 5 deletions(-) >>> >>> diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c >>> index a1abe16dfe16..7666a1cbaf95 100644 >>> --- a/drivers/base/power/domain.c >>> +++ b/drivers/base/power/domain.c >>> @@ -1947,7 +1947,10 @@ static void genpd_dev_pm_sync(struct device *dev) >>> * Both generic and legacy Samsung-specific DT bindings are supported to keep >>> * backwards compatibility with existing DTBs. >>> * >>> - * Returns 0 on successfully attached PM domain or negative error code. >>> + * Returns 0 on successfully attached PM domain or negative error code. Note >>> + * that if a power-domain exists for the device, but it cannot be found or >> >> ... but here it does. >> >>> + * turned on, then return -EPROBE_DEFER to ensure that the device is not >>> + * probed and to re-try again later. >>> */ >>> int genpd_dev_pm_attach(struct device *dev) >>> { >>> @@ -1984,7 +1987,7 @@ int genpd_dev_pm_attach(struct device *dev) >>> dev_dbg(dev, "%s() failed to find PM domain: %ld\n", >>> __func__, PTR_ERR(pd)); >>> of_node_put(dev->of_node); >>> - return PTR_ERR(pd); >>> + return -EPROBE_DEFER; >> >> And it really does. >> >> This causes a regression for platforms where: >> 1. DT describes the hardware power domains, and >> 2. The boot loader or reset state has enabled all power domains, and >> 3. Linux doesn't have a driver for the power controller yet. >> >> Before, devices for which the PM domain couldn't be found just probed and >> worked, Now, these devices don't probe anymore, and the kernel fails to boot. > > I see. Sounds like a chicken or the egg scenario. Why not just disable > PM_GENERIC_DOMAINS in the config in that case? Because it may be enabled for another platform in multi-platform kernels. >> Note that I only managed to trigger this by explicitly disabling my power >> controller driver (the platforms I'm interested in already have power >> controller drivers). But I think it will hamper bring-up of new boards, as you >> can no longer write a "perfect and stable" .dts first, and implement kernel >> support incrementally. >> >> Hence I think it's worthwhile to revert just this hunk. >> If you agree, I can send a patch. > > But what about the case where we do have device that does have a power > controller driver? Don't we want to defer in case it has not been probed > yet? I am concerned we could try to probe a device before the power > controller has been probed. That's indeed an issue. There's a similar problem with "dmas" properties and the (non)presence of the DMA controller. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain 2015-08-05 14:06 ` Geert Uytterhoeven @ 2015-08-05 23:59 ` Rafael J. Wysocki 2015-08-06 7:42 ` Jon Hunter 2015-08-06 8:08 ` Jon Hunter 1 sibling, 1 reply; 15+ messages in thread From: Rafael J. Wysocki @ 2015-08-05 23:59 UTC (permalink / raw) To: Geert Uytterhoeven; +Cc: Jon Hunter, Ulf Hansson, Kevin Hilman, Linux PM list On Wednesday, August 05, 2015 04:06:12 PM Geert Uytterhoeven wrote: > Hi Jon, > > On Tue, Aug 4, 2015 at 3:57 PM, Jon Hunter <jonathanh@nvidia.com> wrote: > > On 04/08/15 14:03, Geert Uytterhoeven wrote: > >> Now this ended up in pm/linux-next, I gave it a try, also with a special > >> test case. > >> > >> On Fri, Jul 31, 2015 at 11:20 AM, Jon Hunter <jonathanh@nvidia.com> wrote: > >>> When a device is probed, the function dev_pm_domain_attach() is called > >>> to see if there is a power-domain that is associated with the device and > >>> needs to be turned on. If dev_pm_domain_attach() does not return > >>> -EPROBE_DEFER then the device will be probed. > >>> > >>> For devices using genpd, dev_pm_domain_attach() will call > >>> genpd_dev_pm_attach(). If genpd_dev_pm_attach() does not find a power > >>> domain associated with the device then it returns an error code not > >>> equal to -EPROBE_DEFER to allow the device to be probed. However, if > >> > >> Your patch description doesn't say this behavior was changed... > > > > Sorry if this was not clear, but ... > > > >>> genpd_dev_pm_attach() does find a power-domain that is associated with > >>> the device, then it does not return -EPROBE_DEFER on failure and hence > >>> the device will still be probed. Furthermore, genpd_dev_pm_attach() does > >>> not check the error code returned by pm_genpd_poweron() to see if the > >>> power-domain was turned on successfully. > >>> > >>> Fix this by checking the return code from pm_genpd_poweron() and > >>> returning -EPROBE_DEFER from genpd_dev_pm_attach on failure, if there > >>> is a power-domain associated with the device. > > > > ... does the above not state the behaviour was changed? > > > >>> Signed-off-by: Jon Hunter <jonathanh@nvidia.com> > >>> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> > >>> Acked-by: Kevin Hilman <khilman@linaro.org> > >>> --- > >>> V2 changes: > >>> - Updated description per Kevin's feedback and added Kevin's ACK. > >>> > >>> drivers/base/power/domain.c | 14 +++++++++----- > >>> 1 file changed, 9 insertions(+), 5 deletions(-) > >>> > >>> diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c > >>> index a1abe16dfe16..7666a1cbaf95 100644 > >>> --- a/drivers/base/power/domain.c > >>> +++ b/drivers/base/power/domain.c > >>> @@ -1947,7 +1947,10 @@ static void genpd_dev_pm_sync(struct device *dev) > >>> * Both generic and legacy Samsung-specific DT bindings are supported to keep > >>> * backwards compatibility with existing DTBs. > >>> * > >>> - * Returns 0 on successfully attached PM domain or negative error code. > >>> + * Returns 0 on successfully attached PM domain or negative error code. Note > >>> + * that if a power-domain exists for the device, but it cannot be found or > >> > >> ... but here it does. > >> > >>> + * turned on, then return -EPROBE_DEFER to ensure that the device is not > >>> + * probed and to re-try again later. > >>> */ > >>> int genpd_dev_pm_attach(struct device *dev) > >>> { > >>> @@ -1984,7 +1987,7 @@ int genpd_dev_pm_attach(struct device *dev) > >>> dev_dbg(dev, "%s() failed to find PM domain: %ld\n", > >>> __func__, PTR_ERR(pd)); > >>> of_node_put(dev->of_node); > >>> - return PTR_ERR(pd); > >>> + return -EPROBE_DEFER; > >> > >> And it really does. > >> > >> This causes a regression for platforms where: > >> 1. DT describes the hardware power domains, and > >> 2. The boot loader or reset state has enabled all power domains, and > >> 3. Linux doesn't have a driver for the power controller yet. > >> > >> Before, devices for which the PM domain couldn't be found just probed and > >> worked, Now, these devices don't probe anymore, and the kernel fails to boot. > > > > I see. Sounds like a chicken or the egg scenario. Why not just disable > > PM_GENERIC_DOMAINS in the config in that case? > > Because it may be enabled for another platform in multi-platform kernels. > > >> Note that I only managed to trigger this by explicitly disabling my power > >> controller driver (the platforms I'm interested in already have power > >> controller drivers). But I think it will hamper bring-up of new boards, as you > >> can no longer write a "perfect and stable" .dts first, and implement kernel > >> support incrementally. > >> > >> Hence I think it's worthwhile to revert just this hunk. > >> If you agree, I can send a patch. > > > > But what about the case where we do have device that does have a power > > controller driver? Don't we want to defer in case it has not been probed > > yet? I am concerned we could try to probe a device before the power > > controller has been probed. > > That's indeed an issue. > > There's a similar problem with "dmas" properties and the (non)presence > of the DMA controller. Well, should I drop the patch, then? Rafael ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain 2015-08-05 23:59 ` Rafael J. Wysocki @ 2015-08-06 7:42 ` Jon Hunter 2015-08-06 8:28 ` Jon Hunter 0 siblings, 1 reply; 15+ messages in thread From: Jon Hunter @ 2015-08-06 7:42 UTC (permalink / raw) To: Rafael J. Wysocki, Geert Uytterhoeven Cc: Ulf Hansson, Kevin Hilman, Linux PM list On 06/08/15 00:59, Rafael J. Wysocki wrote: > On Wednesday, August 05, 2015 04:06:12 PM Geert Uytterhoeven wrote: >> Hi Jon, >> >> On Tue, Aug 4, 2015 at 3:57 PM, Jon Hunter <jonathanh@nvidia.com> wrote: >>> On 04/08/15 14:03, Geert Uytterhoeven wrote: >>>> Now this ended up in pm/linux-next, I gave it a try, also with a special >>>> test case. >>>> >>>> On Fri, Jul 31, 2015 at 11:20 AM, Jon Hunter <jonathanh@nvidia.com> wrote: >>>>> When a device is probed, the function dev_pm_domain_attach() is called >>>>> to see if there is a power-domain that is associated with the device and >>>>> needs to be turned on. If dev_pm_domain_attach() does not return >>>>> -EPROBE_DEFER then the device will be probed. >>>>> >>>>> For devices using genpd, dev_pm_domain_attach() will call >>>>> genpd_dev_pm_attach(). If genpd_dev_pm_attach() does not find a power >>>>> domain associated with the device then it returns an error code not >>>>> equal to -EPROBE_DEFER to allow the device to be probed. However, if >>>> >>>> Your patch description doesn't say this behavior was changed... >>> >>> Sorry if this was not clear, but ... >>> >>>>> genpd_dev_pm_attach() does find a power-domain that is associated with >>>>> the device, then it does not return -EPROBE_DEFER on failure and hence >>>>> the device will still be probed. Furthermore, genpd_dev_pm_attach() does >>>>> not check the error code returned by pm_genpd_poweron() to see if the >>>>> power-domain was turned on successfully. >>>>> >>>>> Fix this by checking the return code from pm_genpd_poweron() and >>>>> returning -EPROBE_DEFER from genpd_dev_pm_attach on failure, if there >>>>> is a power-domain associated with the device. >>> >>> ... does the above not state the behaviour was changed? >>> >>>>> Signed-off-by: Jon Hunter <jonathanh@nvidia.com> >>>>> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> >>>>> Acked-by: Kevin Hilman <khilman@linaro.org> >>>>> --- >>>>> V2 changes: >>>>> - Updated description per Kevin's feedback and added Kevin's ACK. >>>>> >>>>> drivers/base/power/domain.c | 14 +++++++++----- >>>>> 1 file changed, 9 insertions(+), 5 deletions(-) >>>>> >>>>> diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c >>>>> index a1abe16dfe16..7666a1cbaf95 100644 >>>>> --- a/drivers/base/power/domain.c >>>>> +++ b/drivers/base/power/domain.c >>>>> @@ -1947,7 +1947,10 @@ static void genpd_dev_pm_sync(struct device *dev) >>>>> * Both generic and legacy Samsung-specific DT bindings are supported to keep >>>>> * backwards compatibility with existing DTBs. >>>>> * >>>>> - * Returns 0 on successfully attached PM domain or negative error code. >>>>> + * Returns 0 on successfully attached PM domain or negative error code. Note >>>>> + * that if a power-domain exists for the device, but it cannot be found or >>>> >>>> ... but here it does. >>>> >>>>> + * turned on, then return -EPROBE_DEFER to ensure that the device is not >>>>> + * probed and to re-try again later. >>>>> */ >>>>> int genpd_dev_pm_attach(struct device *dev) >>>>> { >>>>> @@ -1984,7 +1987,7 @@ int genpd_dev_pm_attach(struct device *dev) >>>>> dev_dbg(dev, "%s() failed to find PM domain: %ld\n", >>>>> __func__, PTR_ERR(pd)); >>>>> of_node_put(dev->of_node); >>>>> - return PTR_ERR(pd); >>>>> + return -EPROBE_DEFER; >>>> >>>> And it really does. >>>> >>>> This causes a regression for platforms where: >>>> 1. DT describes the hardware power domains, and >>>> 2. The boot loader or reset state has enabled all power domains, and >>>> 3. Linux doesn't have a driver for the power controller yet. >>>> >>>> Before, devices for which the PM domain couldn't be found just probed and >>>> worked, Now, these devices don't probe anymore, and the kernel fails to boot. >>> >>> I see. Sounds like a chicken or the egg scenario. Why not just disable >>> PM_GENERIC_DOMAINS in the config in that case? >> >> Because it may be enabled for another platform in multi-platform kernels. >> >>>> Note that I only managed to trigger this by explicitly disabling my power >>>> controller driver (the platforms I'm interested in already have power >>>> controller drivers). But I think it will hamper bring-up of new boards, as you >>>> can no longer write a "perfect and stable" .dts first, and implement kernel >>>> support incrementally. >>>> >>>> Hence I think it's worthwhile to revert just this hunk. >>>> If you agree, I can send a patch. >>> >>> But what about the case where we do have device that does have a power >>> controller driver? Don't we want to defer in case it has not been probed >>> yet? I am concerned we could try to probe a device before the power >>> controller has been probed. >> >> That's indeed an issue. >> >> There's a similar problem with "dmas" properties and the (non)presence >> of the DMA controller. > > Well, should I drop the patch, then? Although I respect Geert's opinion, I am still not convinced that we should drop this because of the scenario that Geert is describing. IMO, the scenario would only impact early development and usually you may need to hack the kernel a bit to get things up a running initially anyway. Furthermore, I don't think that the kernel should make any assumptions about what a bootloader may or may not do. I think that it is best for the kernel to behave as we would want in a production environment and that is if the device has associated power-domains then we should defer the probe until the gpd provider is available. Cheers Jon ----------------------------------------------------------------------------------- This email message is for the sole use of the intended recipient(s) and may contain confidential information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message. ----------------------------------------------------------------------------------- ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain 2015-08-06 7:42 ` Jon Hunter @ 2015-08-06 8:28 ` Jon Hunter 2015-08-06 8:46 ` Geert Uytterhoeven 0 siblings, 1 reply; 15+ messages in thread From: Jon Hunter @ 2015-08-06 8:28 UTC (permalink / raw) To: Rafael J. Wysocki, Geert Uytterhoeven Cc: Ulf Hansson, Kevin Hilman, Linux PM list On 06/08/15 08:42, Jon Hunter wrote: > > On 06/08/15 00:59, Rafael J. Wysocki wrote: >> On Wednesday, August 05, 2015 04:06:12 PM Geert Uytterhoeven wrote: >>> Hi Jon, >>> >>> On Tue, Aug 4, 2015 at 3:57 PM, Jon Hunter <jonathanh@nvidia.com> wrote: >>>> On 04/08/15 14:03, Geert Uytterhoeven wrote: >>>>> Now this ended up in pm/linux-next, I gave it a try, also with a special >>>>> test case. >>>>> >>>>> On Fri, Jul 31, 2015 at 11:20 AM, Jon Hunter <jonathanh@nvidia.com> wrote: >>>>>> When a device is probed, the function dev_pm_domain_attach() is called >>>>>> to see if there is a power-domain that is associated with the device and >>>>>> needs to be turned on. If dev_pm_domain_attach() does not return >>>>>> -EPROBE_DEFER then the device will be probed. >>>>>> >>>>>> For devices using genpd, dev_pm_domain_attach() will call >>>>>> genpd_dev_pm_attach(). If genpd_dev_pm_attach() does not find a power >>>>>> domain associated with the device then it returns an error code not >>>>>> equal to -EPROBE_DEFER to allow the device to be probed. However, if >>>>> >>>>> Your patch description doesn't say this behavior was changed... >>>> >>>> Sorry if this was not clear, but ... >>>> >>>>>> genpd_dev_pm_attach() does find a power-domain that is associated with >>>>>> the device, then it does not return -EPROBE_DEFER on failure and hence >>>>>> the device will still be probed. Furthermore, genpd_dev_pm_attach() does >>>>>> not check the error code returned by pm_genpd_poweron() to see if the >>>>>> power-domain was turned on successfully. >>>>>> >>>>>> Fix this by checking the return code from pm_genpd_poweron() and >>>>>> returning -EPROBE_DEFER from genpd_dev_pm_attach on failure, if there >>>>>> is a power-domain associated with the device. >>>> >>>> ... does the above not state the behaviour was changed? >>>> >>>>>> Signed-off-by: Jon Hunter <jonathanh@nvidia.com> >>>>>> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> >>>>>> Acked-by: Kevin Hilman <khilman@linaro.org> >>>>>> --- >>>>>> V2 changes: >>>>>> - Updated description per Kevin's feedback and added Kevin's ACK. >>>>>> >>>>>> drivers/base/power/domain.c | 14 +++++++++----- >>>>>> 1 file changed, 9 insertions(+), 5 deletions(-) >>>>>> >>>>>> diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c >>>>>> index a1abe16dfe16..7666a1cbaf95 100644 >>>>>> --- a/drivers/base/power/domain.c >>>>>> +++ b/drivers/base/power/domain.c >>>>>> @@ -1947,7 +1947,10 @@ static void genpd_dev_pm_sync(struct device *dev) >>>>>> * Both generic and legacy Samsung-specific DT bindings are supported to keep >>>>>> * backwards compatibility with existing DTBs. >>>>>> * >>>>>> - * Returns 0 on successfully attached PM domain or negative error code. >>>>>> + * Returns 0 on successfully attached PM domain or negative error code. Note >>>>>> + * that if a power-domain exists for the device, but it cannot be found or >>>>> >>>>> ... but here it does. >>>>> >>>>>> + * turned on, then return -EPROBE_DEFER to ensure that the device is not >>>>>> + * probed and to re-try again later. >>>>>> */ >>>>>> int genpd_dev_pm_attach(struct device *dev) >>>>>> { >>>>>> @@ -1984,7 +1987,7 @@ int genpd_dev_pm_attach(struct device *dev) >>>>>> dev_dbg(dev, "%s() failed to find PM domain: %ld\n", >>>>>> __func__, PTR_ERR(pd)); >>>>>> of_node_put(dev->of_node); >>>>>> - return PTR_ERR(pd); >>>>>> + return -EPROBE_DEFER; >>>>> >>>>> And it really does. >>>>> >>>>> This causes a regression for platforms where: >>>>> 1. DT describes the hardware power domains, and >>>>> 2. The boot loader or reset state has enabled all power domains, and >>>>> 3. Linux doesn't have a driver for the power controller yet. >>>>> >>>>> Before, devices for which the PM domain couldn't be found just probed and >>>>> worked, Now, these devices don't probe anymore, and the kernel fails to boot. >>>> >>>> I see. Sounds like a chicken or the egg scenario. Why not just disable >>>> PM_GENERIC_DOMAINS in the config in that case? >>> >>> Because it may be enabled for another platform in multi-platform kernels. >>> >>>>> Note that I only managed to trigger this by explicitly disabling my power >>>>> controller driver (the platforms I'm interested in already have power >>>>> controller drivers). But I think it will hamper bring-up of new boards, as you >>>>> can no longer write a "perfect and stable" .dts first, and implement kernel >>>>> support incrementally. >>>>> >>>>> Hence I think it's worthwhile to revert just this hunk. >>>>> If you agree, I can send a patch. >>>> >>>> But what about the case where we do have device that does have a power >>>> controller driver? Don't we want to defer in case it has not been probed >>>> yet? I am concerned we could try to probe a device before the power >>>> controller has been probed. >>> >>> That's indeed an issue. >>> >>> There's a similar problem with "dmas" properties and the (non)presence >>> of the DMA controller. >> >> Well, should I drop the patch, then? > > Although I respect Geert's opinion, I am still not convinced that we > should drop this because of the scenario that Geert is describing. > > IMO, the scenario would only impact early development and usually you > may need to hack the kernel a bit to get things up a running initially > anyway. Furthermore, I don't think that the kernel should make any > assumptions about what a bootloader may or may not do. > > I think that it is best for the kernel to behave as we would want in a > production environment and that is if the device has associated > power-domains then we should defer the probe until the gpd provider is > available. Furthermore, without this change, it means I need to ensure that the gpd provider(s) is always probed before any device that is dependent upon that provider (ie. faff with initcalls). Otherwise a device can be probed before the provider and potentially crash/hang the system when accessing the hardware. That's the real problem I am trying to solve here. Sorry if that was not clear. Cheers Jon ----------------------------------------------------------------------------------- This email message is for the sole use of the intended recipient(s) and may contain confidential information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message. ----------------------------------------------------------------------------------- ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain 2015-08-06 8:28 ` Jon Hunter @ 2015-08-06 8:46 ` Geert Uytterhoeven 2015-08-06 9:26 ` Jon Hunter 0 siblings, 1 reply; 15+ messages in thread From: Geert Uytterhoeven @ 2015-08-06 8:46 UTC (permalink / raw) To: Jon Hunter; +Cc: Rafael J. Wysocki, Ulf Hansson, Kevin Hilman, Linux PM list Hi Jon, On Thu, Aug 6, 2015 at 10:28 AM, Jon Hunter <jonathanh@nvidia.com> wrote: > On 06/08/15 08:42, Jon Hunter wrote: >> On 06/08/15 00:59, Rafael J. Wysocki wrote: >>> On Wednesday, August 05, 2015 04:06:12 PM Geert Uytterhoeven wrote: >>>> On Tue, Aug 4, 2015 at 3:57 PM, Jon Hunter <jonathanh@nvidia.com> wrote: >>>>> On 04/08/15 14:03, Geert Uytterhoeven wrote: >>>>>> Now this ended up in pm/linux-next, I gave it a try, also with a special >>>>>> test case. >>>>>> >>>>>> On Fri, Jul 31, 2015 at 11:20 AM, Jon Hunter <jonathanh@nvidia.com> wrote: >>>>>>> When a device is probed, the function dev_pm_domain_attach() is called >>>>>>> to see if there is a power-domain that is associated with the device and >>>>>>> needs to be turned on. If dev_pm_domain_attach() does not return >>>>>>> -EPROBE_DEFER then the device will be probed. >>>>>>> >>>>>>> For devices using genpd, dev_pm_domain_attach() will call >>>>>>> genpd_dev_pm_attach(). If genpd_dev_pm_attach() does not find a power >>>>>>> domain associated with the device then it returns an error code not >>>>>>> equal to -EPROBE_DEFER to allow the device to be probed. However, if >>>>>> >>>>>> Your patch description doesn't say this behavior was changed... >>>>> >>>>> Sorry if this was not clear, but ... >>>>> >>>>>>> genpd_dev_pm_attach() does find a power-domain that is associated with >>>>>>> the device, then it does not return -EPROBE_DEFER on failure and hence >>>>>>> the device will still be probed. Furthermore, genpd_dev_pm_attach() does >>>>>>> not check the error code returned by pm_genpd_poweron() to see if the >>>>>>> power-domain was turned on successfully. >>>>>>> >>>>>>> Fix this by checking the return code from pm_genpd_poweron() and >>>>>>> returning -EPROBE_DEFER from genpd_dev_pm_attach on failure, if there >>>>>>> is a power-domain associated with the device. >>>>> >>>>> ... does the above not state the behaviour was changed? >>>>> >>>>>>> Signed-off-by: Jon Hunter <jonathanh@nvidia.com> >>>>>>> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> >>>>>>> Acked-by: Kevin Hilman <khilman@linaro.org> >>>>>>> --- >>>>>>> V2 changes: >>>>>>> - Updated description per Kevin's feedback and added Kevin's ACK. >>>>>>> >>>>>>> drivers/base/power/domain.c | 14 +++++++++----- >>>>>>> 1 file changed, 9 insertions(+), 5 deletions(-) >>>>>>> >>>>>>> diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c >>>>>>> index a1abe16dfe16..7666a1cbaf95 100644 >>>>>>> --- a/drivers/base/power/domain.c >>>>>>> +++ b/drivers/base/power/domain.c >>>>>>> @@ -1947,7 +1947,10 @@ static void genpd_dev_pm_sync(struct device *dev) >>>>>>> * Both generic and legacy Samsung-specific DT bindings are supported to keep >>>>>>> * backwards compatibility with existing DTBs. >>>>>>> * >>>>>>> - * Returns 0 on successfully attached PM domain or negative error code. >>>>>>> + * Returns 0 on successfully attached PM domain or negative error code. Note >>>>>>> + * that if a power-domain exists for the device, but it cannot be found or >>>>>> >>>>>> ... but here it does. >>>>>> >>>>>>> + * turned on, then return -EPROBE_DEFER to ensure that the device is not >>>>>>> + * probed and to re-try again later. >>>>>>> */ >>>>>>> int genpd_dev_pm_attach(struct device *dev) >>>>>>> { >>>>>>> @@ -1984,7 +1987,7 @@ int genpd_dev_pm_attach(struct device *dev) >>>>>>> dev_dbg(dev, "%s() failed to find PM domain: %ld\n", >>>>>>> __func__, PTR_ERR(pd)); >>>>>>> of_node_put(dev->of_node); >>>>>>> - return PTR_ERR(pd); >>>>>>> + return -EPROBE_DEFER; >>>>>> >>>>>> And it really does. >>>>>> >>>>>> This causes a regression for platforms where: >>>>>> 1. DT describes the hardware power domains, and >>>>>> 2. The boot loader or reset state has enabled all power domains, and >>>>>> 3. Linux doesn't have a driver for the power controller yet. >>>>>> >>>>>> Before, devices for which the PM domain couldn't be found just probed and >>>>>> worked, Now, these devices don't probe anymore, and the kernel fails to boot. >>>>> >>>>> I see. Sounds like a chicken or the egg scenario. Why not just disable >>>>> PM_GENERIC_DOMAINS in the config in that case? >>>> >>>> Because it may be enabled for another platform in multi-platform kernels. >>>> >>>>>> Note that I only managed to trigger this by explicitly disabling my power >>>>>> controller driver (the platforms I'm interested in already have power >>>>>> controller drivers). But I think it will hamper bring-up of new boards, as you >>>>>> can no longer write a "perfect and stable" .dts first, and implement kernel >>>>>> support incrementally. >>>>>> >>>>>> Hence I think it's worthwhile to revert just this hunk. >>>>>> If you agree, I can send a patch. >>>>> >>>>> But what about the case where we do have device that does have a power >>>>> controller driver? Don't we want to defer in case it has not been probed >>>>> yet? I am concerned we could try to probe a device before the power >>>>> controller has been probed. >>>> >>>> That's indeed an issue. >>>> >>>> There's a similar problem with "dmas" properties and the (non)presence >>>> of the DMA controller. >>> >>> Well, should I drop the patch, then? No, I wouldn't drop the whole patch. >> Although I respect Geert's opinion, I am still not convinced that we >> should drop this because of the scenario that Geert is describing. >> >> IMO, the scenario would only impact early development and usually you >> may need to hack the kernel a bit to get things up a running initially >> anyway. Furthermore, I don't think that the kernel should make any >> assumptions about what a bootloader may or may not do. >> >> I think that it is best for the kernel to behave as we would want in a >> production environment and that is if the device has associated >> power-domains then we should defer the probe until the gpd provider is >> available. > > Furthermore, without this change, it means I need to ensure that the gpd > provider(s) is always probed before any device that is dependent upon > that provider (ie. faff with initcalls). Otherwise a device can be > probed before the provider and potentially crash/hang the system when > accessing the hardware. That's the real problem I am trying to solve > here. Sorry if that was not clear. I had already realized your probe order issue before. On Renesas SoCs, we have to initialize the PM Domain very early, as even critical infrastructure can be part of a power or clock domain. And as these days most critical infrastructure is initialized from some OF_DECLARE() variant (which doesn't support retry on EPROBE_DEFER!), we don't have much of a choice... Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain 2015-08-06 8:46 ` Geert Uytterhoeven @ 2015-08-06 9:26 ` Jon Hunter 2015-08-06 11:26 ` Geert Uytterhoeven 0 siblings, 1 reply; 15+ messages in thread From: Jon Hunter @ 2015-08-06 9:26 UTC (permalink / raw) To: Geert Uytterhoeven Cc: Rafael J. Wysocki, Ulf Hansson, Kevin Hilman, Linux PM list Hi Geert, On 06/08/15 09:46, Geert Uytterhoeven wrote: > Hi Jon, > > On Thu, Aug 6, 2015 at 10:28 AM, Jon Hunter <jonathanh@nvidia.com> wrote: >> On 06/08/15 08:42, Jon Hunter wrote: >>> On 06/08/15 00:59, Rafael J. Wysocki wrote: >>>> On Wednesday, August 05, 2015 04:06:12 PM Geert Uytterhoeven wrote: >>>>> On Tue, Aug 4, 2015 at 3:57 PM, Jon Hunter <jonathanh@nvidia.com> wrote: >>>>>> On 04/08/15 14:03, Geert Uytterhoeven wrote: >>>>>>> Now this ended up in pm/linux-next, I gave it a try, also with a special >>>>>>> test case. >>>>>>> >>>>>>> On Fri, Jul 31, 2015 at 11:20 AM, Jon Hunter <jonathanh@nvidia.com> wrote: >>>>>>>> When a device is probed, the function dev_pm_domain_attach() is called >>>>>>>> to see if there is a power-domain that is associated with the device and >>>>>>>> needs to be turned on. If dev_pm_domain_attach() does not return >>>>>>>> -EPROBE_DEFER then the device will be probed. >>>>>>>> >>>>>>>> For devices using genpd, dev_pm_domain_attach() will call >>>>>>>> genpd_dev_pm_attach(). If genpd_dev_pm_attach() does not find a power >>>>>>>> domain associated with the device then it returns an error code not >>>>>>>> equal to -EPROBE_DEFER to allow the device to be probed. However, if >>>>>>> >>>>>>> Your patch description doesn't say this behavior was changed... >>>>>> >>>>>> Sorry if this was not clear, but ... >>>>>> >>>>>>>> genpd_dev_pm_attach() does find a power-domain that is associated with >>>>>>>> the device, then it does not return -EPROBE_DEFER on failure and hence >>>>>>>> the device will still be probed. Furthermore, genpd_dev_pm_attach() does >>>>>>>> not check the error code returned by pm_genpd_poweron() to see if the >>>>>>>> power-domain was turned on successfully. >>>>>>>> >>>>>>>> Fix this by checking the return code from pm_genpd_poweron() and >>>>>>>> returning -EPROBE_DEFER from genpd_dev_pm_attach on failure, if there >>>>>>>> is a power-domain associated with the device. >>>>>> >>>>>> ... does the above not state the behaviour was changed? >>>>>> >>>>>>>> Signed-off-by: Jon Hunter <jonathanh@nvidia.com> >>>>>>>> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> >>>>>>>> Acked-by: Kevin Hilman <khilman@linaro.org> >>>>>>>> --- >>>>>>>> V2 changes: >>>>>>>> - Updated description per Kevin's feedback and added Kevin's ACK. >>>>>>>> >>>>>>>> drivers/base/power/domain.c | 14 +++++++++----- >>>>>>>> 1 file changed, 9 insertions(+), 5 deletions(-) >>>>>>>> >>>>>>>> diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c >>>>>>>> index a1abe16dfe16..7666a1cbaf95 100644 >>>>>>>> --- a/drivers/base/power/domain.c >>>>>>>> +++ b/drivers/base/power/domain.c >>>>>>>> @@ -1947,7 +1947,10 @@ static void genpd_dev_pm_sync(struct device *dev) >>>>>>>> * Both generic and legacy Samsung-specific DT bindings are supported to keep >>>>>>>> * backwards compatibility with existing DTBs. >>>>>>>> * >>>>>>>> - * Returns 0 on successfully attached PM domain or negative error code. >>>>>>>> + * Returns 0 on successfully attached PM domain or negative error code. Note >>>>>>>> + * that if a power-domain exists for the device, but it cannot be found or >>>>>>> >>>>>>> ... but here it does. >>>>>>> >>>>>>>> + * turned on, then return -EPROBE_DEFER to ensure that the device is not >>>>>>>> + * probed and to re-try again later. >>>>>>>> */ >>>>>>>> int genpd_dev_pm_attach(struct device *dev) >>>>>>>> { >>>>>>>> @@ -1984,7 +1987,7 @@ int genpd_dev_pm_attach(struct device *dev) >>>>>>>> dev_dbg(dev, "%s() failed to find PM domain: %ld\n", >>>>>>>> __func__, PTR_ERR(pd)); >>>>>>>> of_node_put(dev->of_node); >>>>>>>> - return PTR_ERR(pd); >>>>>>>> + return -EPROBE_DEFER; >>>>>>> >>>>>>> And it really does. >>>>>>> >>>>>>> This causes a regression for platforms where: >>>>>>> 1. DT describes the hardware power domains, and >>>>>>> 2. The boot loader or reset state has enabled all power domains, and >>>>>>> 3. Linux doesn't have a driver for the power controller yet. >>>>>>> >>>>>>> Before, devices for which the PM domain couldn't be found just probed and >>>>>>> worked, Now, these devices don't probe anymore, and the kernel fails to boot. >>>>>> >>>>>> I see. Sounds like a chicken or the egg scenario. Why not just disable >>>>>> PM_GENERIC_DOMAINS in the config in that case? >>>>> >>>>> Because it may be enabled for another platform in multi-platform kernels. >>>>> >>>>>>> Note that I only managed to trigger this by explicitly disabling my power >>>>>>> controller driver (the platforms I'm interested in already have power >>>>>>> controller drivers). But I think it will hamper bring-up of new boards, as you >>>>>>> can no longer write a "perfect and stable" .dts first, and implement kernel >>>>>>> support incrementally. >>>>>>> >>>>>>> Hence I think it's worthwhile to revert just this hunk. >>>>>>> If you agree, I can send a patch. >>>>>> >>>>>> But what about the case where we do have device that does have a power >>>>>> controller driver? Don't we want to defer in case it has not been probed >>>>>> yet? I am concerned we could try to probe a device before the power >>>>>> controller has been probed. >>>>> >>>>> That's indeed an issue. >>>>> >>>>> There's a similar problem with "dmas" properties and the (non)presence >>>>> of the DMA controller. >>>> >>>> Well, should I drop the patch, then? > > No, I wouldn't drop the whole patch. > >>> Although I respect Geert's opinion, I am still not convinced that we >>> should drop this because of the scenario that Geert is describing. >>> >>> IMO, the scenario would only impact early development and usually you >>> may need to hack the kernel a bit to get things up a running initially >>> anyway. Furthermore, I don't think that the kernel should make any >>> assumptions about what a bootloader may or may not do. >>> >>> I think that it is best for the kernel to behave as we would want in a >>> production environment and that is if the device has associated >>> power-domains then we should defer the probe until the gpd provider is >>> available. >> >> Furthermore, without this change, it means I need to ensure that the gpd >> provider(s) is always probed before any device that is dependent upon >> that provider (ie. faff with initcalls). Otherwise a device can be >> probed before the provider and potentially crash/hang the system when >> accessing the hardware. That's the real problem I am trying to solve >> here. Sorry if that was not clear. > > I had already realized your probe order issue before. > > On Renesas SoCs, we have to initialize the PM Domain very early, as even > critical infrastructure can be part of a power or clock domain. > And as these days most critical infrastructure is initialized from some > OF_DECLARE() variant (which doesn't support retry on EPROBE_DEFER!), we don't > have much of a choice... So from an SoC power-domain perspective I can think of at least 4 types/classes ... 1. Always-on (never turns off) 2. CPU domain 3. Core domain(s) (must be on for memory accesses and CPUs to operate) 4. Peripheral domains (various power-domains for various devices) For tegra, certain power-domains, particularly those in the peripheral space, are dependent on the regulator framework and we cannot make any assumptions about them. Don't get me wrong the "core" and "cpu" domains are also dependent on regulators as well for things like frequency scaling and low-power modes. However, we know that the "core" and "cpu" has to be on otherwise we would not be running. These peripheral domains cannot be registered early because they need the regulator framework. So I don't think OF_DECLARE() will work for all devices. It still sounds to me that the nodes should be disabled/removed from the dtb. Having a dynamic way to do this would be useful, I can see. Cheers Jon ----------------------------------------------------------------------------------- This email message is for the sole use of the intended recipient(s) and may contain confidential information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message. ----------------------------------------------------------------------------------- ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain 2015-08-06 9:26 ` Jon Hunter @ 2015-08-06 11:26 ` Geert Uytterhoeven 2015-08-06 11:46 ` Jon Hunter 0 siblings, 1 reply; 15+ messages in thread From: Geert Uytterhoeven @ 2015-08-06 11:26 UTC (permalink / raw) To: Jon Hunter; +Cc: Rafael J. Wysocki, Ulf Hansson, Kevin Hilman, Linux PM list Hi Jon, On Thu, Aug 6, 2015 at 11:26 AM, Jon Hunter <jonathanh@nvidia.com> wrote: [...] >>>>>>>> This causes a regression for platforms where: >>>>>>>> 1. DT describes the hardware power domains, and >>>>>>>> 2. The boot loader or reset state has enabled all power domains, and >>>>>>>> 3. Linux doesn't have a driver for the power controller yet. >>>>>>>> >>>>>>>> Before, devices for which the PM domain couldn't be found just probed and >>>>>>>> worked, Now, these devices don't probe anymore, and the kernel fails to boot. [...] > It still sounds to me that the nodes should be disabled/removed from the > dtb. Having a dynamic way to do this would be useful, I can see. I had a quick look, and it already seem to exist.. Hence on platforms not implementing power controllers yet, the early platform code could do: struct device_node *np; for_each_node_with_property(dn, "power-domains") of_remove_property(np, "power-domains"); Haven't tested that yet, though... Heck, even the core power domain code could do that, if CONFIG_PM_GENERIC_DOMAINS=n ;-) Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain 2015-08-06 11:26 ` Geert Uytterhoeven @ 2015-08-06 11:46 ` Jon Hunter 2015-08-06 12:10 ` Geert Uytterhoeven 0 siblings, 1 reply; 15+ messages in thread From: Jon Hunter @ 2015-08-06 11:46 UTC (permalink / raw) To: Geert Uytterhoeven Cc: Rafael J. Wysocki, Ulf Hansson, Kevin Hilman, Linux PM list Hi Geert, On 06/08/15 12:26, Geert Uytterhoeven wrote: > Hi Jon, > > On Thu, Aug 6, 2015 at 11:26 AM, Jon Hunter <jonathanh@nvidia.com> wrote: > > [...] > >>>>>>>>> This causes a regression for platforms where: >>>>>>>>> 1. DT describes the hardware power domains, and >>>>>>>>> 2. The boot loader or reset state has enabled all power domains, and >>>>>>>>> 3. Linux doesn't have a driver for the power controller yet. >>>>>>>>> >>>>>>>>> Before, devices for which the PM domain couldn't be found just probed and >>>>>>>>> worked, Now, these devices don't probe anymore, and the kernel fails to boot. > > [...] > >> It still sounds to me that the nodes should be disabled/removed from the >> dtb. Having a dynamic way to do this would be useful, I can see. > > I had a quick look, and it already seem to exist.. > Hence on platforms not implementing power controllers yet, the early platform > code could do: > > struct device_node *np; > for_each_node_with_property(dn, "power-domains") > of_remove_property(np, "power-domains"); > > Haven't tested that yet, though... Yes that could be an option, however, it would mean doing this type of thing for various types of nodes. You mentioned dma was another case. > Heck, even the core power domain code could do that, if > CONFIG_PM_GENERIC_DOMAINS=n ;-) Yes that's true. Hopefully it would WARN too ;-) Jon ----------------------------------------------------------------------------------- This email message is for the sole use of the intended recipient(s) and may contain confidential information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message. ----------------------------------------------------------------------------------- ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain 2015-08-06 11:46 ` Jon Hunter @ 2015-08-06 12:10 ` Geert Uytterhoeven 0 siblings, 0 replies; 15+ messages in thread From: Geert Uytterhoeven @ 2015-08-06 12:10 UTC (permalink / raw) To: Jon Hunter; +Cc: Rafael J. Wysocki, Ulf Hansson, Kevin Hilman, Linux PM list On Thu, Aug 6, 2015 at 1:46 PM, Jon Hunter <jonathanh@nvidia.com> wrote: >>> It still sounds to me that the nodes should be disabled/removed from the >>> dtb. Having a dynamic way to do this would be useful, I can see. >> >> I had a quick look, and it already seem to exist.. >> Hence on platforms not implementing power controllers yet, the early platform >> code could do: >> >> struct device_node *np; >> for_each_node_with_property(dn, "power-domains") >> of_remove_property(np, "power-domains"); >> >> Haven't tested that yet, though... > > Yes that could be an option, however, it would mean doing this type of > thing for various types of nodes. You mentioned dma was another case. DMA is different, as many drivers can fall back to PIO if the DMA engine driver is mssing (not implemented/not enabled/module not loaded). Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain 2015-08-05 14:06 ` Geert Uytterhoeven 2015-08-05 23:59 ` Rafael J. Wysocki @ 2015-08-06 8:08 ` Jon Hunter 2015-08-06 8:48 ` Geert Uytterhoeven 1 sibling, 1 reply; 15+ messages in thread From: Jon Hunter @ 2015-08-06 8:08 UTC (permalink / raw) To: Geert Uytterhoeven Cc: Rafael Wysocki, Ulf Hansson, Kevin Hilman, Linux PM list Hi Geert, On 05/08/15 15:06, Geert Uytterhoeven wrote: > Hi Jon, > > On Tue, Aug 4, 2015 at 3:57 PM, Jon Hunter <jonathanh@nvidia.com> wrote: >> On 04/08/15 14:03, Geert Uytterhoeven wrote: >>> Now this ended up in pm/linux-next, I gave it a try, also with a special >>> test case. >>> >>> On Fri, Jul 31, 2015 at 11:20 AM, Jon Hunter <jonathanh@nvidia.com> wrote: >>>> When a device is probed, the function dev_pm_domain_attach() is called >>>> to see if there is a power-domain that is associated with the device and >>>> needs to be turned on. If dev_pm_domain_attach() does not return >>>> -EPROBE_DEFER then the device will be probed. >>>> >>>> For devices using genpd, dev_pm_domain_attach() will call >>>> genpd_dev_pm_attach(). If genpd_dev_pm_attach() does not find a power >>>> domain associated with the device then it returns an error code not >>>> equal to -EPROBE_DEFER to allow the device to be probed. However, if >>> >>> Your patch description doesn't say this behavior was changed... >> >> Sorry if this was not clear, but ... >> >>>> genpd_dev_pm_attach() does find a power-domain that is associated with >>>> the device, then it does not return -EPROBE_DEFER on failure and hence >>>> the device will still be probed. Furthermore, genpd_dev_pm_attach() does >>>> not check the error code returned by pm_genpd_poweron() to see if the >>>> power-domain was turned on successfully. >>>> >>>> Fix this by checking the return code from pm_genpd_poweron() and >>>> returning -EPROBE_DEFER from genpd_dev_pm_attach on failure, if there >>>> is a power-domain associated with the device. >> >> ... does the above not state the behaviour was changed? >> >>>> Signed-off-by: Jon Hunter <jonathanh@nvidia.com> >>>> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> >>>> Acked-by: Kevin Hilman <khilman@linaro.org> >>>> --- >>>> V2 changes: >>>> - Updated description per Kevin's feedback and added Kevin's ACK. >>>> >>>> drivers/base/power/domain.c | 14 +++++++++----- >>>> 1 file changed, 9 insertions(+), 5 deletions(-) >>>> >>>> diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c >>>> index a1abe16dfe16..7666a1cbaf95 100644 >>>> --- a/drivers/base/power/domain.c >>>> +++ b/drivers/base/power/domain.c >>>> @@ -1947,7 +1947,10 @@ static void genpd_dev_pm_sync(struct device *dev) >>>> * Both generic and legacy Samsung-specific DT bindings are supported to keep >>>> * backwards compatibility with existing DTBs. >>>> * >>>> - * Returns 0 on successfully attached PM domain or negative error code. >>>> + * Returns 0 on successfully attached PM domain or negative error code. Note >>>> + * that if a power-domain exists for the device, but it cannot be found or >>> >>> ... but here it does. >>> >>>> + * turned on, then return -EPROBE_DEFER to ensure that the device is not >>>> + * probed and to re-try again later. >>>> */ >>>> int genpd_dev_pm_attach(struct device *dev) >>>> { >>>> @@ -1984,7 +1987,7 @@ int genpd_dev_pm_attach(struct device *dev) >>>> dev_dbg(dev, "%s() failed to find PM domain: %ld\n", >>>> __func__, PTR_ERR(pd)); >>>> of_node_put(dev->of_node); >>>> - return PTR_ERR(pd); >>>> + return -EPROBE_DEFER; >>> >>> And it really does. >>> >>> This causes a regression for platforms where: >>> 1. DT describes the hardware power domains, and >>> 2. The boot loader or reset state has enabled all power domains, and >>> 3. Linux doesn't have a driver for the power controller yet. >>> >>> Before, devices for which the PM domain couldn't be found just probed and >>> worked, Now, these devices don't probe anymore, and the kernel fails to boot. >> >> I see. Sounds like a chicken or the egg scenario. Why not just disable >> PM_GENERIC_DOMAINS in the config in that case? > > Because it may be enabled for another platform in multi-platform kernels. > >>> Note that I only managed to trigger this by explicitly disabling my power >>> controller driver (the platforms I'm interested in already have power >>> controller drivers). But I think it will hamper bring-up of new boards, as you >>> can no longer write a "perfect and stable" .dts first, and implement kernel >>> support incrementally. >>> >>> Hence I think it's worthwhile to revert just this hunk. >>> If you agree, I can send a patch. >> >> But what about the case where we do have device that does have a power >> controller driver? Don't we want to defer in case it has not been probed >> yet? I am concerned we could try to probe a device before the power >> controller has been probed. > > That's indeed an issue. > > There's a similar problem with "dmas" properties and the (non)presence > of the DMA controller. I understand the desire to have the device-tree completely populated even before the drivers are in place. However, may be that is not practical. Seems to me that we need to be able to remove particular nodes. I know that the u-boot fdt command can remove nodes. It would be nice if we could do this at compile time via the dts file (assuming that the dtsi file specifies the device nodes with the dma/power-domain nodes). In other words, have a keyword like "remove-property = dmas" that could be appended to a device node in the dts file. Just a thought. Cheers Jon ----------------------------------------------------------------------------------- This email message is for the sole use of the intended recipient(s) and may contain confidential information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message. ----------------------------------------------------------------------------------- ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain 2015-08-06 8:08 ` Jon Hunter @ 2015-08-06 8:48 ` Geert Uytterhoeven 0 siblings, 0 replies; 15+ messages in thread From: Geert Uytterhoeven @ 2015-08-06 8:48 UTC (permalink / raw) To: Jon Hunter; +Cc: Rafael Wysocki, Ulf Hansson, Kevin Hilman, Linux PM list Hi Jon, On Thu, Aug 6, 2015 at 10:08 AM, Jon Hunter <jonathanh@nvidia.com> wrote: > On 05/08/15 15:06, Geert Uytterhoeven wrote: >> On Tue, Aug 4, 2015 at 3:57 PM, Jon Hunter <jonathanh@nvidia.com> wrote: >>> On 04/08/15 14:03, Geert Uytterhoeven wrote: >>>> Now this ended up in pm/linux-next, I gave it a try, also with a special >>>> test case. >>>> >>>> On Fri, Jul 31, 2015 at 11:20 AM, Jon Hunter <jonathanh@nvidia.com> wrote: >>>>> When a device is probed, the function dev_pm_domain_attach() is called >>>>> to see if there is a power-domain that is associated with the device and >>>>> needs to be turned on. If dev_pm_domain_attach() does not return >>>>> -EPROBE_DEFER then the device will be probed. >>>>> >>>>> For devices using genpd, dev_pm_domain_attach() will call >>>>> genpd_dev_pm_attach(). If genpd_dev_pm_attach() does not find a power >>>>> domain associated with the device then it returns an error code not >>>>> equal to -EPROBE_DEFER to allow the device to be probed. However, if >>>> >>>> Your patch description doesn't say this behavior was changed... >>> >>> Sorry if this was not clear, but ... >>> >>>>> genpd_dev_pm_attach() does find a power-domain that is associated with >>>>> the device, then it does not return -EPROBE_DEFER on failure and hence >>>>> the device will still be probed. Furthermore, genpd_dev_pm_attach() does >>>>> not check the error code returned by pm_genpd_poweron() to see if the >>>>> power-domain was turned on successfully. >>>>> >>>>> Fix this by checking the return code from pm_genpd_poweron() and >>>>> returning -EPROBE_DEFER from genpd_dev_pm_attach on failure, if there >>>>> is a power-domain associated with the device. >>> >>> ... does the above not state the behaviour was changed? >>> >>>>> Signed-off-by: Jon Hunter <jonathanh@nvidia.com> >>>>> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> >>>>> Acked-by: Kevin Hilman <khilman@linaro.org> >>>>> --- >>>>> V2 changes: >>>>> - Updated description per Kevin's feedback and added Kevin's ACK. >>>>> >>>>> drivers/base/power/domain.c | 14 +++++++++----- >>>>> 1 file changed, 9 insertions(+), 5 deletions(-) >>>>> >>>>> diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c >>>>> index a1abe16dfe16..7666a1cbaf95 100644 >>>>> --- a/drivers/base/power/domain.c >>>>> +++ b/drivers/base/power/domain.c >>>>> @@ -1947,7 +1947,10 @@ static void genpd_dev_pm_sync(struct device *dev) >>>>> * Both generic and legacy Samsung-specific DT bindings are supported to keep >>>>> * backwards compatibility with existing DTBs. >>>>> * >>>>> - * Returns 0 on successfully attached PM domain or negative error code. >>>>> + * Returns 0 on successfully attached PM domain or negative error code. Note >>>>> + * that if a power-domain exists for the device, but it cannot be found or >>>> >>>> ... but here it does. >>>> >>>>> + * turned on, then return -EPROBE_DEFER to ensure that the device is not >>>>> + * probed and to re-try again later. >>>>> */ >>>>> int genpd_dev_pm_attach(struct device *dev) >>>>> { >>>>> @@ -1984,7 +1987,7 @@ int genpd_dev_pm_attach(struct device *dev) >>>>> dev_dbg(dev, "%s() failed to find PM domain: %ld\n", >>>>> __func__, PTR_ERR(pd)); >>>>> of_node_put(dev->of_node); >>>>> - return PTR_ERR(pd); >>>>> + return -EPROBE_DEFER; >>>> >>>> And it really does. >>>> >>>> This causes a regression for platforms where: >>>> 1. DT describes the hardware power domains, and >>>> 2. The boot loader or reset state has enabled all power domains, and >>>> 3. Linux doesn't have a driver for the power controller yet. >>>> >>>> Before, devices for which the PM domain couldn't be found just probed and >>>> worked, Now, these devices don't probe anymore, and the kernel fails to boot. >>> >>> I see. Sounds like a chicken or the egg scenario. Why not just disable >>> PM_GENERIC_DOMAINS in the config in that case? >> >> Because it may be enabled for another platform in multi-platform kernels. >> >>>> Note that I only managed to trigger this by explicitly disabling my power >>>> controller driver (the platforms I'm interested in already have power >>>> controller drivers). But I think it will hamper bring-up of new boards, as you >>>> can no longer write a "perfect and stable" .dts first, and implement kernel >>>> support incrementally. >>>> >>>> Hence I think it's worthwhile to revert just this hunk. >>>> If you agree, I can send a patch. >>> >>> But what about the case where we do have device that does have a power >>> controller driver? Don't we want to defer in case it has not been probed >>> yet? I am concerned we could try to probe a device before the power >>> controller has been probed. >> >> That's indeed an issue. >> >> There's a similar problem with "dmas" properties and the (non)presence >> of the DMA controller. > > I understand the desire to have the device-tree completely populated > even before the drivers are in place. However, may be that is not practical. > > Seems to me that we need to be able to remove particular nodes. I know > that the u-boot fdt command can remove nodes. It would be nice if we > could do this at compile time via the dts file (assuming that the dtsi > file specifies the device nodes with the dma/power-domain nodes). In > other words, have a keyword like "remove-property = dmas" that could be > appended to a device node in the dts file. Just a thought. Whether the DMA controller is available or not depends on kernel config. A distro kernel may lack support for the DMA controller, or has it as a loadable module. Hence U-boot cannot know, and should not remove "dmas" properties. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2015-08-06 12:10 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-07-31 9:20 [PATCH V2] PM / Domains: Return -EPROBE_DEFER if we fail to init or turn-on domain Jon Hunter 2015-08-01 0:12 ` Rafael J. Wysocki 2015-08-04 13:03 ` Geert Uytterhoeven 2015-08-04 13:57 ` Jon Hunter 2015-08-05 14:06 ` Geert Uytterhoeven 2015-08-05 23:59 ` Rafael J. Wysocki 2015-08-06 7:42 ` Jon Hunter 2015-08-06 8:28 ` Jon Hunter 2015-08-06 8:46 ` Geert Uytterhoeven 2015-08-06 9:26 ` Jon Hunter 2015-08-06 11:26 ` Geert Uytterhoeven 2015-08-06 11:46 ` Jon Hunter 2015-08-06 12:10 ` Geert Uytterhoeven 2015-08-06 8:08 ` Jon Hunter 2015-08-06 8:48 ` Geert Uytterhoeven
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).