Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/pr/826'
Browse files Browse the repository at this point in the history
* origin/pr/826:
  Fix wakeup from suspend to idle
  • Loading branch information
marmarek committed Oct 6, 2023
2 parents 3d6c317 + e272042 commit fb97ef4
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
4 changes: 4 additions & 0 deletions kernel.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,10 @@ Patch25: 0001-Re-enable-interrupts-before-loading-PNVM.patch
Patch26: 0001-sound-Disable-SG-buffer.patch
Patch27: 0001-amdgpu-timeout.patch
Patch28: 0001-iwlwifi-avoid-writing-to-MSI-X-page-when-MSI-X-is-no.patch

# S0ix support:
Patch61: xen-events-Add-wakeup-support-to-xen-pirq.patch

%description
Qubes Dom0 kernel.

Expand Down
47 changes: 47 additions & 0 deletions xen-events-Add-wakeup-support-to-xen-pirq.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
From 3a3cbf4f4e6289ecc421ebea610e68e95aaf37ec Mon Sep 17 00:00:00 2001
:
: Waiting for upstream review:
: https://lore.kernel.org/xen-devel/20230313134102.3157-1-simon@invisiblethingslab.com/
:
From: Simon Gaiser <simon@invisiblethingslab.com>
Date: Mon, 13 Mar 2023 14:01:47 +0100
Subject: [PATCH] xen/events: Add wakeup support to xen-pirq

This allows entering and exiting s2idle. Actual S0ix residency is
another topic [1].

Without this the ACPI code currently ignores the error enable_irq_wake()
returns when being used on a xen-pirq and the system goes to idle for
ever since the wakeup IRQ doesn't gets enabled. With [2] the error is
handled and the system refuses to go to s2idle.

Link: https://lore.kernel.org/xen-devel/9051e484-b128-715a-9253-48af8e47bb9d@invisiblethingslab.com/ # [1]
Link: https://lore.kernel.org/linux-acpi/20230313125344.2893-1-simon@invisiblethingslab.com/ # [2]
Signed-off-by: Simon Gaiser <simon@invisiblethingslab.com>
---

While I think that the set of flags I set is correct, I'm not familiar
with that code, so please pay special attention during review if they
are actually correct for xen-pirq.

drivers/xen/events/events_base.c | 4 ++++
1 file changed, 4 insertions(+)

diff --git a/drivers/xen/events/events_base.c b/drivers/xen/events/events_base.c
index c7715f8bd452..991082f04f05 100644
--- a/drivers/xen/events/events_base.c
+++ b/drivers/xen/events/events_base.c
@@ -2176,6 +2176,10 @@ static struct irq_chip xen_pirq_chip __read_mostly = {
.irq_set_affinity = set_affinity_irq,

.irq_retrigger = retrigger_dynirq,
+
+ .flags = IRQCHIP_SKIP_SET_WAKE |
+ IRQCHIP_ENABLE_WAKEUP_ON_SUSPEND |
+ IRQCHIP_MASK_ON_SUSPEND,
};

static struct irq_chip xen_percpu_chip __read_mostly = {
--
2.39.2

0 comments on commit fb97ef4

Please sign in to comment.