浏览代码

sgi-gru: add macros for using the UV hub to send interrupts

Add macros for using the UV hub to send interrupts.  Change the IPI code
to use these macros.  These macros will also be used in additional patches
that will follow.

Signed-off-by: Jack Steiner <steiner@sgi.com>
Cc: "Luck, Tony" <tony.luck@intel.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Jack Steiner 16 年之前
父节点
当前提交
66666e50fc
共有 3 个文件被更改,包括 20 次插入7 次删除
  1. 6 0
      arch/ia64/include/asm/uv/uv_hub.h
  2. 12 0
      arch/x86/include/asm/uv/uv_hub.h
  3. 2 7
      arch/x86/kernel/apic/x2apic_uv_x.c

+ 6 - 0
arch/ia64/include/asm/uv/uv_hub.h

@@ -305,5 +305,11 @@ static inline int uv_num_possible_blades(void)
 	return 1;
 	return 1;
 }
 }
 
 
+static inline void uv_hub_send_ipi(int pnode, int apicid, int vector)
+{
+	/* not currently needed on ia64 */
+}
+
+
 #endif /* __ASM_IA64_UV_HUB__ */
 #endif /* __ASM_IA64_UV_HUB__ */
 
 

+ 12 - 0
arch/x86/include/asm/uv/uv_hub.h

@@ -17,6 +17,7 @@
 #include <linux/timer.h>
 #include <linux/timer.h>
 #include <asm/types.h>
 #include <asm/types.h>
 #include <asm/percpu.h>
 #include <asm/percpu.h>
+#include <asm/uv/uv_mmrs.h>
 
 
 
 
 /*
 /*
@@ -398,6 +399,7 @@ static inline void uv_set_scir_bits(unsigned char value)
 		uv_write_local_mmr8(uv_hub_info->scir.offset, value);
 		uv_write_local_mmr8(uv_hub_info->scir.offset, value);
 	}
 	}
 }
 }
+
 static inline void uv_set_cpu_scir_bits(int cpu, unsigned char value)
 static inline void uv_set_cpu_scir_bits(int cpu, unsigned char value)
 {
 {
 	if (uv_cpu_hub_info(cpu)->scir.state != value) {
 	if (uv_cpu_hub_info(cpu)->scir.state != value) {
@@ -406,5 +408,15 @@ static inline void uv_set_cpu_scir_bits(int cpu, unsigned char value)
 	}
 	}
 }
 }
 
 
+static inline void uv_hub_send_ipi(int pnode, int apicid, int vector)
+{
+	unsigned long val;
+
+	val = (1UL << UVH_IPI_INT_SEND_SHFT) |
+			((apicid & 0x3f) << UVH_IPI_INT_APIC_ID_SHFT) |
+			(vector << UVH_IPI_INT_VECTOR_SHFT);
+	uv_write_global_mmr64(pnode, UVH_IPI_INT, val);
+}
+
 #endif /* CONFIG_X86_64 */
 #endif /* CONFIG_X86_64 */
 #endif /* _ASM_X86_UV_UV_HUB_H */
 #endif /* _ASM_X86_UV_UV_HUB_H */

+ 2 - 7
arch/x86/kernel/apic/x2apic_uv_x.c

@@ -118,17 +118,12 @@ static int uv_wakeup_secondary(int phys_apicid, unsigned long start_rip)
 
 
 static void uv_send_IPI_one(int cpu, int vector)
 static void uv_send_IPI_one(int cpu, int vector)
 {
 {
-	unsigned long val, apicid;
+	unsigned long apicid;
 	int pnode;
 	int pnode;
 
 
 	apicid = per_cpu(x86_cpu_to_apicid, cpu);
 	apicid = per_cpu(x86_cpu_to_apicid, cpu);
 	pnode = uv_apicid_to_pnode(apicid);
 	pnode = uv_apicid_to_pnode(apicid);
-
-	val = (1UL << UVH_IPI_INT_SEND_SHFT) |
-	      (apicid << UVH_IPI_INT_APIC_ID_SHFT) |
-	      (vector << UVH_IPI_INT_VECTOR_SHFT);
-
-	uv_write_global_mmr64(pnode, UVH_IPI_INT, val);
+	uv_hub_send_ipi(pnode, apicid, vector);
 }
 }
 
 
 static void uv_send_IPI_mask(const struct cpumask *mask, int vector)
 static void uv_send_IPI_mask(const struct cpumask *mask, int vector)