linux-acpi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] rtc: rtc-cmos: Fix wake alarm breakage
@ 2022-10-18 16:09 Rafael J. Wysocki
  2022-10-18 16:38 ` Alexandre Belloni
  2022-10-20  8:10 ` Mel Gorman
  0 siblings, 2 replies; 9+ messages in thread
From: Rafael J. Wysocki @ 2022-10-18 16:09 UTC (permalink / raw)
  To: Alexandre Belloni
  Cc: Alessandro Zummo, Mario Limonciello, linux-rtc, Bjorn Helgaas,
	LKML, Linux ACPI, Linux PM, Mel Gorman, Zhang Rui, Todd Brandt

From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

Commit 4919d3eb2ec0 ("rtc: cmos: Fix event handler registration
ordering issue") overlooked the fact that cmos_do_probe() depended
on the preparations carried out by cmos_wake_setup() and the wake
alarm stopped working after the ordering of them had been changed.

Address this by partially reverting commit 4919d3eb2ec0 so that
cmos_wake_setup() is called before cmos_do_probe() again and moving
the rtc_wake_setup() invocation from cmos_wake_setup() directly to the
callers of cmos_do_probe() where it will happen after a successful
completion of the latter.

Fixes: 4919d3eb2ec0 ("rtc: cmos: Fix event handler registration ordering issue")
Reported-by: Zhang Rui <rui.zhang@intel.com>
Reported-by: Todd Brandt <todd.e.brandt@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
---

@Bjorn: This is the minimum fix.  Folding cmos_wake_setup() into cmos_do_probe()
requires changes that are a bit intrusive for post-rc1, but I will do that later.

---
 drivers/rtc/rtc-cmos.c |   11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

Index: linux-pm/drivers/rtc/rtc-cmos.c
===================================================================
--- linux-pm.orig/drivers/rtc/rtc-cmos.c
+++ linux-pm/drivers/rtc/rtc-cmos.c
@@ -1233,6 +1233,9 @@ static u32 rtc_handler(void *context)
 
 static inline void rtc_wake_setup(struct device *dev)
 {
+	if (acpi_disabled)
+		return;
+
 	acpi_install_fixed_event_handler(ACPI_EVENT_RTC, rtc_handler, dev);
 	/*
 	 * After the RTC handler is installed, the Fixed_RTC event should
@@ -1286,7 +1289,6 @@ static void cmos_wake_setup(struct devic
 
 	use_acpi_alarm_quirks();
 
-	rtc_wake_setup(dev);
 	acpi_rtc_info.wake_on = rtc_wake_on;
 	acpi_rtc_info.wake_off = rtc_wake_off;
 
@@ -1354,6 +1356,8 @@ static int cmos_pnp_probe(struct pnp_dev
 {
 	int irq, ret;
 
+	cmos_wake_setup(&pnp->dev);
+
 	if (pnp_port_start(pnp, 0) == 0x70 && !pnp_irq_valid(pnp, 0)) {
 		irq = 0;
 #ifdef CONFIG_X86
@@ -1372,7 +1376,7 @@ static int cmos_pnp_probe(struct pnp_dev
 	if (ret)
 		return ret;
 
-	cmos_wake_setup(&pnp->dev);
+	rtc_wake_setup(&pnp->dev);
 
 	return 0;
 }
@@ -1461,6 +1465,7 @@ static int __init cmos_platform_probe(st
 	int irq, ret;
 
 	cmos_of_init(pdev);
+	cmos_wake_setup(&pdev->dev);
 
 	if (RTC_IOMAPPED)
 		resource = platform_get_resource(pdev, IORESOURCE_IO, 0);
@@ -1474,7 +1479,7 @@ static int __init cmos_platform_probe(st
 	if (ret)
 		return ret;
 
-	cmos_wake_setup(&pdev->dev);
+	rtc_wake_setup(&pdev->dev);
 
 	return 0;
 }




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

* Re: [PATCH] rtc: rtc-cmos: Fix wake alarm breakage
  2022-10-18 16:09 [PATCH] rtc: rtc-cmos: Fix wake alarm breakage Rafael J. Wysocki
@ 2022-10-18 16:38 ` Alexandre Belloni
  2022-10-18 16:58   ` Len Brown
                     ` (2 more replies)
  2022-10-20  8:10 ` Mel Gorman
  1 sibling, 3 replies; 9+ messages in thread
From: Alexandre Belloni @ 2022-10-18 16:38 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Mario Limonciello, Mel Gorman, Zhang Rui, LKML, Todd Brandt,
	Bjorn Helgaas, Linux ACPI, Linux PM, Alessandro Zummo, linux-rtc

On Tue, 18 Oct 2022 18:09:31 +0200, Rafael J. Wysocki wrote:
> From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> 
> Commit 4919d3eb2ec0 ("rtc: cmos: Fix event handler registration
> ordering issue") overlooked the fact that cmos_do_probe() depended
> on the preparations carried out by cmos_wake_setup() and the wake
> alarm stopped working after the ordering of them had been changed.
> 
> [...]

Applied, thanks!

[1/1] rtc: rtc-cmos: Fix wake alarm breakage
      commit: 0782b66ed2fbb035dda76111df0954515e417b24

Best regards,

-- 
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* Re: [PATCH] rtc: rtc-cmos: Fix wake alarm breakage
  2022-10-18 16:38 ` Alexandre Belloni
@ 2022-10-18 16:58   ` Len Brown
  2022-10-18 19:11     ` Todd Brandt
  2022-10-19 16:13   ` Rafael J. Wysocki
  2022-10-25 15:28   ` Todd Brandt
  2 siblings, 1 reply; 9+ messages in thread
From: Len Brown @ 2022-10-18 16:58 UTC (permalink / raw)
  To: Alexandre Belloni
  Cc: Rafael J. Wysocki, Mario Limonciello, Mel Gorman, Zhang Rui,
	LKML, Todd Brandt, Bjorn Helgaas, Linux ACPI, Linux PM,
	Alessandro Zummo, linux-rtc

Works for me!

Tested-by: Len Brown <len.brown@intel.com>

On Tue, Oct 18, 2022 at 6:39 PM Alexandre Belloni
<alexandre.belloni@bootlin.com> wrote:
>
> On Tue, 18 Oct 2022 18:09:31 +0200, Rafael J. Wysocki wrote:
> > From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> >
> > Commit 4919d3eb2ec0 ("rtc: cmos: Fix event handler registration
> > ordering issue") overlooked the fact that cmos_do_probe() depended
> > on the preparations carried out by cmos_wake_setup() and the wake
> > alarm stopped working after the ordering of them had been changed.
> >
> > [...]
>
> Applied, thanks!
>
> [1/1] rtc: rtc-cmos: Fix wake alarm breakage
>       commit: 0782b66ed2fbb035dda76111df0954515e417b24
>
> Best regards,
>
> --
> Alexandre Belloni, co-owner and COO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com



-- 
Len Brown, Intel

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

* Re: [PATCH] rtc: rtc-cmos: Fix wake alarm breakage
  2022-10-18 16:58   ` Len Brown
@ 2022-10-18 19:11     ` Todd Brandt
  0 siblings, 0 replies; 9+ messages in thread
From: Todd Brandt @ 2022-10-18 19:11 UTC (permalink / raw)
  To: Len Brown, Alexandre Belloni
  Cc: Rafael J. Wysocki, Mario Limonciello, Mel Gorman, Zhang Rui,
	LKML, Bjorn Helgaas, Linux ACPI, Linux PM, Alessandro Zummo,
	linux-rtc

On Tue, 2022-10-18 at 18:58 +0200, Len Brown wrote:
> Works for me!
> 
> Tested-by: Len Brown <len.brown@intel.com>
> 
> On Tue, Oct 18, 2022 at 6:39 PM Alexandre Belloni

Works for me too

Tested-by: Todd Brandt <todd.e.brandt@intel.com>

> <alexandre.belloni@bootlin.com> wrote:
> > 
> > On Tue, 18 Oct 2022 18:09:31 +0200, Rafael J. Wysocki wrote:
> > > From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> > > 
> > > Commit 4919d3eb2ec0 ("rtc: cmos: Fix event handler registration
> > > ordering issue") overlooked the fact that cmos_do_probe()
> > > depended
> > > on the preparations carried out by cmos_wake_setup() and the wake
> > > alarm stopped working after the ordering of them had been
> > > changed.
> > > 
> > > [...]
> > 
> > Applied, thanks!
> > 
> > [1/1] rtc: rtc-cmos: Fix wake alarm breakage
> >       commit: 0782b66ed2fbb035dda76111df0954515e417b24
> > 
> > Best regards,
> > 
> > --
> > Alexandre Belloni, co-owner and COO, Bootlin
> > Embedded Linux and Kernel engineering
> > https://bootlin.com
> 
> 
> 


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

* Re: [PATCH] rtc: rtc-cmos: Fix wake alarm breakage
  2022-10-18 16:38 ` Alexandre Belloni
  2022-10-18 16:58   ` Len Brown
@ 2022-10-19 16:13   ` Rafael J. Wysocki
  2022-10-19 18:16     ` Alexandre Belloni
  2022-10-25 15:28   ` Todd Brandt
  2 siblings, 1 reply; 9+ messages in thread
From: Rafael J. Wysocki @ 2022-10-19 16:13 UTC (permalink / raw)
  To: Alexandre Belloni
  Cc: Rafael J. Wysocki, Mario Limonciello, Mel Gorman, Zhang Rui,
	LKML, Todd Brandt, Bjorn Helgaas, Linux ACPI, Linux PM,
	Alessandro Zummo, linux-rtc

On Tue, Oct 18, 2022 at 6:39 PM Alexandre Belloni
<alexandre.belloni@bootlin.com> wrote:
>
> On Tue, 18 Oct 2022 18:09:31 +0200, Rafael J. Wysocki wrote:
> > From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> >
> > Commit 4919d3eb2ec0 ("rtc: cmos: Fix event handler registration
> > ordering issue") overlooked the fact that cmos_do_probe() depended
> > on the preparations carried out by cmos_wake_setup() and the wake
> > alarm stopped working after the ordering of them had been changed.
> >
> > [...]
>
> Applied, thanks!
>
> [1/1] rtc: rtc-cmos: Fix wake alarm breakage
>       commit: 0782b66ed2fbb035dda76111df0954515e417b24

Thank you!

However, there is a build fix on top of this which has just been posted:

https://lore.kernel.org/linux-acpi/2677035.mvXUDI8C0e@kreacher/

Sorry about breaking it again.

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

* Re: [PATCH] rtc: rtc-cmos: Fix wake alarm breakage
  2022-10-19 16:13   ` Rafael J. Wysocki
@ 2022-10-19 18:16     ` Alexandre Belloni
  2022-10-19 18:20       ` Rafael J. Wysocki
  0 siblings, 1 reply; 9+ messages in thread
From: Alexandre Belloni @ 2022-10-19 18:16 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Rafael J. Wysocki, Mario Limonciello, Mel Gorman, Zhang Rui,
	LKML, Todd Brandt, Bjorn Helgaas, Linux ACPI, Linux PM,
	Alessandro Zummo, linux-rtc

On 19/10/2022 18:13:43+0200, Rafael J. Wysocki wrote:
> On Tue, Oct 18, 2022 at 6:39 PM Alexandre Belloni
> <alexandre.belloni@bootlin.com> wrote:
> >
> > On Tue, 18 Oct 2022 18:09:31 +0200, Rafael J. Wysocki wrote:
> > > From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> > >
> > > Commit 4919d3eb2ec0 ("rtc: cmos: Fix event handler registration
> > > ordering issue") overlooked the fact that cmos_do_probe() depended
> > > on the preparations carried out by cmos_wake_setup() and the wake
> > > alarm stopped working after the ordering of them had been changed.
> > >
> > > [...]
> >
> > Applied, thanks!
> >
> > [1/1] rtc: rtc-cmos: Fix wake alarm breakage
> >       commit: 0782b66ed2fbb035dda76111df0954515e417b24
> 
> Thank you!
> 
> However, there is a build fix on top of this which has just been posted:
> 
> https://lore.kernel.org/linux-acpi/2677035.mvXUDI8C0e@kreacher/
> 
> Sorry about breaking it again.

I had that in rtc-fixes:

https://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git/commit/?h=rtc-fixes


-- 
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* Re: [PATCH] rtc: rtc-cmos: Fix wake alarm breakage
  2022-10-19 18:16     ` Alexandre Belloni
@ 2022-10-19 18:20       ` Rafael J. Wysocki
  0 siblings, 0 replies; 9+ messages in thread
From: Rafael J. Wysocki @ 2022-10-19 18:20 UTC (permalink / raw)
  To: Alexandre Belloni
  Cc: Rafael J. Wysocki, Rafael J. Wysocki, Mario Limonciello,
	Mel Gorman, Zhang Rui, LKML, Todd Brandt, Bjorn Helgaas,
	Linux ACPI, Linux PM, Alessandro Zummo, linux-rtc

On Wed, Oct 19, 2022 at 8:16 PM Alexandre Belloni
<alexandre.belloni@bootlin.com> wrote:
>
> On 19/10/2022 18:13:43+0200, Rafael J. Wysocki wrote:
> > On Tue, Oct 18, 2022 at 6:39 PM Alexandre Belloni
> > <alexandre.belloni@bootlin.com> wrote:
> > >
> > > On Tue, 18 Oct 2022 18:09:31 +0200, Rafael J. Wysocki wrote:
> > > > From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> > > >
> > > > Commit 4919d3eb2ec0 ("rtc: cmos: Fix event handler registration
> > > > ordering issue") overlooked the fact that cmos_do_probe() depended
> > > > on the preparations carried out by cmos_wake_setup() and the wake
> > > > alarm stopped working after the ordering of them had been changed.
> > > >
> > > > [...]
> > >
> > > Applied, thanks!
> > >
> > > [1/1] rtc: rtc-cmos: Fix wake alarm breakage
> > >       commit: 0782b66ed2fbb035dda76111df0954515e417b24
> >
> > Thank you!
> >
> > However, there is a build fix on top of this which has just been posted:
> >
> > https://lore.kernel.org/linux-acpi/2677035.mvXUDI8C0e@kreacher/
> >
> > Sorry about breaking it again.
>
> I had that in rtc-fixes:
>
> https://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git/commit/?h=rtc-fixes

Looks good, thanks!

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

* Re: [PATCH] rtc: rtc-cmos: Fix wake alarm breakage
  2022-10-18 16:09 [PATCH] rtc: rtc-cmos: Fix wake alarm breakage Rafael J. Wysocki
  2022-10-18 16:38 ` Alexandre Belloni
@ 2022-10-20  8:10 ` Mel Gorman
  1 sibling, 0 replies; 9+ messages in thread
From: Mel Gorman @ 2022-10-20  8:10 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Alexandre Belloni, Alessandro Zummo, Mario Limonciello,
	linux-rtc, Bjorn Helgaas, LKML, Linux ACPI, Linux PM, Zhang Rui,
	Todd Brandt

On Tue, Oct 18, 2022 at 06:09:31PM +0200, Rafael J. Wysocki wrote:
> From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> 
> Commit 4919d3eb2ec0 ("rtc: cmos: Fix event handler registration
> ordering issue") overlooked the fact that cmos_do_probe() depended
> on the preparations carried out by cmos_wake_setup() and the wake
> alarm stopped working after the ordering of them had been changed.
> 
> Address this by partially reverting commit 4919d3eb2ec0 so that
> cmos_wake_setup() is called before cmos_do_probe() again and moving
> the rtc_wake_setup() invocation from cmos_wake_setup() directly to the
> callers of cmos_do_probe() where it will happen after a successful
> completion of the latter.
> 
> Fixes: 4919d3eb2ec0 ("rtc: cmos: Fix event handler registration ordering issue")
> Reported-by: Zhang Rui <rui.zhang@intel.com>
> Reported-by: Todd Brandt <todd.e.brandt@linux.intel.com>
> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

Boot test that previously hit NULL pointer exceptions also completed successfully.

-- 
Mel Gorman
SUSE Labs

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

* Re: [PATCH] rtc: rtc-cmos: Fix wake alarm breakage
  2022-10-18 16:38 ` Alexandre Belloni
  2022-10-18 16:58   ` Len Brown
  2022-10-19 16:13   ` Rafael J. Wysocki
@ 2022-10-25 15:28   ` Todd Brandt
  2 siblings, 0 replies; 9+ messages in thread
From: Todd Brandt @ 2022-10-25 15:28 UTC (permalink / raw)
  To: Alexandre Belloni, Rafael J. Wysocki
  Cc: Mario Limonciello, Mel Gorman, Zhang Rui, LKML, Bjorn Helgaas,
	Linux ACPI, Linux PM, Alessandro Zummo, linux-rtc

On Tue, 2022-10-18 at 18:38 +0200, Alexandre Belloni wrote:
> On Tue, 18 Oct 2022 18:09:31 +0200, Rafael J. Wysocki wrote:
> > From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> > 
> > Commit 4919d3eb2ec0 ("rtc: cmos: Fix event handler registration
> > ordering issue") overlooked the fact that cmos_do_probe() depended
> > on the preparations carried out by cmos_wake_setup() and the wake
> > alarm stopped working after the ordering of them had been changed.
> > 
> > [...]
> 
> Applied, thanks!

I did testing yesterday on the 6.1.0-rc2 build and this patch hasn't
made it into rc2. This is an extreme inconvenience to anyone testing
low power modes as the rtc wakealarm doesn't function. I'm a little
surprised more people haven't complained.

Please get this in 6.1.0-rc3.

> [1/1] rtc: rtc-cmos: Fix wake alarm breakage
>       commit: 0782b66ed2fbb035dda76111df0954515e417b24
> 
> Best regards,
> 


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

end of thread, other threads:[~2022-10-25 15:30 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-18 16:09 [PATCH] rtc: rtc-cmos: Fix wake alarm breakage Rafael J. Wysocki
2022-10-18 16:38 ` Alexandre Belloni
2022-10-18 16:58   ` Len Brown
2022-10-18 19:11     ` Todd Brandt
2022-10-19 16:13   ` Rafael J. Wysocki
2022-10-19 18:16     ` Alexandre Belloni
2022-10-19 18:20       ` Rafael J. Wysocki
2022-10-25 15:28   ` Todd Brandt
2022-10-20  8:10 ` Mel Gorman

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