Skip to content

Commit 4717f13

Browse files
grygoriySKAGA-KOKO
authored andcommitted
genirq/PM: Restore system wake up from chained interrupts
Commit e509bd7 ("genirq: Allow migration of chained interrupts by installing default action") breaks PCS wake up IRQ behaviour on TI OMAP based platforms (dra7-evm). TI OMAP IRQ wake up configuration: GIC-irqchip->PCM_IRQ |- omap_prcm_register_chain_handler |- PRCM-irqchip -> PRCM_IO_IRQ |- pcs_irq_chain_handler |- pinctrl-irqchip -> PCS_uart1_wakeup_irq This happens because IRQ PM code (irq/pm.c) is expected to ignore chained interrupts by default: static bool suspend_device_irq(struct irq_desc *desc) { if (!desc->action || desc->no_suspend_depth) return false; - it's expected !desc->action = true for chained interrupts; but, after above change, all chained interrupt descriptors will have default action handler installed - chained_action. As result, chained interrupts will be silently disabled during system suspend. Hence, fix it by introducing helper function irq_desc_is_chained() and use it in suspend_device_irq() for chained interrupts identification and skip them, once detected. Fixes: e509bd7 ("genirq: Allow migration of chained interrupts..") Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com> Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com> Cc: Tony Lindgren <tony@atomide.com> Cc: <nsekhar@ti.com> Cc: <linux-arm-kernel@lists.infradead.org> Cc: Tony Lindgren <tony@atomide.com> Link: http://lkml.kernel.org/r/1447149492-20699-1-git-send-email-grygorii.strashko@ti.com Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
1 parent 66ef349 commit 4717f13

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

kernel/irq/internals.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,11 @@ static inline int irq_desc_get_node(struct irq_desc *desc)
199199
return irq_common_data_get_node(&desc->irq_common_data);
200200
}
201201

202+
static inline int irq_desc_is_chained(struct irq_desc *desc)
203+
{
204+
return (desc->action && desc->action == &chained_action);
205+
}
206+
202207
#ifdef CONFIG_PM_SLEEP
203208
bool irq_pm_check_wakeup(struct irq_desc *desc);
204209
void irq_pm_install_action(struct irq_desc *desc, struct irqaction *action);

kernel/irq/pm.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ void irq_pm_remove_action(struct irq_desc *desc, struct irqaction *action)
7070

7171
static bool suspend_device_irq(struct irq_desc *desc)
7272
{
73-
if (!desc->action || desc->no_suspend_depth)
73+
if (!desc->action || irq_desc_is_chained(desc) ||
74+
desc->no_suspend_depth)
7475
return false;
7576

7677
if (irqd_is_wakeup_set(&desc->irq_data)) {

kernel/irq/proc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ int show_interrupts(struct seq_file *p, void *v)
475475
for_each_online_cpu(j)
476476
any_count |= kstat_irqs_cpu(i, j);
477477
action = desc->action;
478-
if ((!action || action == &chained_action) && !any_count)
478+
if ((!action || irq_desc_is_chained(desc)) && !any_count)
479479
goto out;
480480

481481
seq_printf(p, "%*d: ", prec, i);

0 commit comments

Comments
 (0)