Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1467448 > unrolled thread

[PATCH 2/4] irqchip/gic: Allow self-SGIs for SMP on UP configurations

Started byMarc Zyngier <marc.zyngier@arm.com>
First post2016-08-22 10:30 +0200
Last post2016-08-22 10:30 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 2/4] irqchip/gic: Allow self-SGIs for SMP on UP configurations Marc Zyngier <marc.zyngier@arm.com> - 2016-08-22 10:30 +0200

#1467448 — [PATCH 2/4] irqchip/gic: Allow self-SGIs for SMP on UP configurations

FromMarc Zyngier <marc.zyngier@arm.com>
Date2016-08-22 10:30 +0200
Subject[PATCH 2/4] irqchip/gic: Allow self-SGIs for SMP on UP configurations
Message-ID<s8SMh-3Ra-7@gated-at.bofh.it>
On systems where a single CPU is present, the GIC may not support
having SGIs delivered to a target list. In that case, we use the
self-SGI mechanism to allow the interrupt to be delivered locally.

Tested-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
---
 drivers/irqchip/irq-gic.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/drivers/irqchip/irq-gic.c b/drivers/irqchip/irq-gic.c
index c2cab57..390fac5 100644
--- a/drivers/irqchip/irq-gic.c
+++ b/drivers/irqchip/irq-gic.c
@@ -769,6 +769,13 @@ static void gic_raise_softirq(const struct cpumask *mask, unsigned int irq)
 	int cpu;
 	unsigned long flags, map = 0;
 
+	if (unlikely(nr_cpu_ids == 1)) {
+		/* Only one CPU? let's do a self-IPI... */
+		writel_relaxed(2 << 24 | irq,
+			       gic_data_dist_base(&gic_data[0]) + GIC_DIST_SOFTINT);
+		return;
+	}
+
 	raw_spin_lock_irqsave(&irq_controller_lock, flags);
 
 	/* Convert our logical CPU mask into a physical one. */
-- 
2.1.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web