summaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx/patches-3.8/321-MIPS-BCM63XX-add-cpumask-argument-to-unmask.patch
blob: 1047de39ebf20b35165d1341fc092f4ac4141c21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
From 8679976d2ec08db4e4a14ecdd1ee022b70e51fc6 Mon Sep 17 00:00:00 2001
From: Jonas Gorski <jogo@openwrt.org>
Date: Tue, 30 Apr 2013 11:26:53 +0200
Subject: [PATCH 12/13] MIPS: BCM63XX: add cpumask argument to unmask

Allow selective unmasking of IPIC irqs.

Signed-off-by: Jonas Gorski <jogo@openwrt.org>
---
 arch/mips/bcm63xx/irq.c |   19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

--- a/arch/mips/bcm63xx/irq.c
+++ b/arch/mips/bcm63xx/irq.c
@@ -24,8 +24,10 @@ static void __dispatch_internal_32(int c
 static void __dispatch_internal_64(int cpu) __maybe_unused;
 static void __internal_irq_mask_32(unsigned int irq) __maybe_unused;
 static void __internal_irq_mask_64(unsigned int irq) __maybe_unused;
-static void __internal_irq_unmask_32(unsigned int irq) __maybe_unused;
-static void __internal_irq_unmask_64(unsigned int irq) __maybe_unused;
+static void __internal_irq_unmask_32(unsigned int irq,
+				     const struct cpumask *dest) __maybe_unused;
+static void __internal_irq_unmask_64(unsigned int irq,
+				     const struct cpumask *dest) __maybe_unused;
 
 static DEFINE_SPINLOCK(ipic_lock);
 static DEFINE_SPINLOCK(epic_lock);
@@ -150,7 +152,8 @@ static unsigned int ext_irq_count;
 static unsigned int ext_irq_start, ext_irq_end;
 static unsigned int ext_irq_cfg_reg1, ext_irq_cfg_reg2;
 static void (*internal_irq_mask)(unsigned int irq);
-static void (*internal_irq_unmask)(unsigned int irq);
+static void (*internal_irq_unmask)(unsigned int irq,
+				   const struct cpumask *dest);
 
 static void bcm63xx_init_irq(void)
 {
@@ -340,7 +343,8 @@ static void __internal_irq_mask_##width(
 	}								\
 }									\
 									\
-static void __internal_irq_unmask_##width(unsigned int irq)		\
+static void __internal_irq_unmask_##width(unsigned int irq,		\
+					const struct cpumask *dest)	\
 { 									\
 	u32 val;							\
 	unsigned reg = (irq / 32) ^ (width/32 - 1);			\
@@ -351,7 +355,10 @@ static void __internal_irq_unmask_##widt
 		u32 irq_mask_addr = get_irq_mask_addr(cpu);		\
 									\
 		val = bcm_readl(irq_mask_addr + reg * sizeof(u32));	\
-		val |= (1 << bit); 					\
+		if (cpu_isset(cpu, *dest))				\
+			val |= (1 << bit); 				\
+		else							\
+			val &= ~(1 << bit);				\
 		bcm_writel(val, irq_mask_addr + reg * sizeof(u32));	\
 	}								\
 }
@@ -413,7 +420,7 @@ static void bcm63xx_internal_irq_unmask(
 	unsigned long flags;
 
 	spin_lock_irqsave(&ipic_lock, flags);
-	internal_irq_unmask(d->irq - IRQ_INTERNAL_BASE);
+	internal_irq_unmask(d->irq - IRQ_INTERNAL_BASE, cpu_online_mask);
 	spin_unlock_irqrestore(&ipic_lock, flags);
 }