diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/asm-x86_64/ipi.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'include/asm-x86_64/ipi.h')
-rw-r--r-- | include/asm-x86_64/ipi.h | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/include/asm-x86_64/ipi.h b/include/asm-x86_64/ipi.h new file mode 100644 index 000000000000..d1841847ed89 --- /dev/null +++ b/include/asm-x86_64/ipi.h | |||
@@ -0,0 +1,113 @@ | |||
1 | #ifndef __ASM_IPI_H | ||
2 | #define __ASM_IPI_H | ||
3 | |||
4 | /* | ||
5 | * Copyright 2004 James Cleverdon, IBM. | ||
6 | * Subject to the GNU Public License, v.2 | ||
7 | * | ||
8 | * Generic APIC InterProcessor Interrupt code. | ||
9 | * | ||
10 | * Moved to include file by James Cleverdon from | ||
11 | * arch/x86-64/kernel/smp.c | ||
12 | * | ||
13 | * Copyrights from kernel/smp.c: | ||
14 | * | ||
15 | * (c) 1995 Alan Cox, Building #3 <alan@redhat.com> | ||
16 | * (c) 1998-99, 2000 Ingo Molnar <mingo@redhat.com> | ||
17 | * (c) 2002,2003 Andi Kleen, SuSE Labs. | ||
18 | * Subject to the GNU Public License, v.2 | ||
19 | */ | ||
20 | |||
21 | #include <asm/fixmap.h> | ||
22 | #include <asm/hw_irq.h> | ||
23 | #include <asm/apicdef.h> | ||
24 | #include <asm/genapic.h> | ||
25 | |||
26 | /* | ||
27 | * the following functions deal with sending IPIs between CPUs. | ||
28 | * | ||
29 | * We use 'broadcast', CPU->CPU IPIs and self-IPIs too. | ||
30 | */ | ||
31 | |||
32 | static inline unsigned int __prepare_ICR (unsigned int shortcut, int vector, unsigned int dest) | ||
33 | { | ||
34 | unsigned int icr = APIC_DM_FIXED | shortcut | vector | dest; | ||
35 | if (vector == KDB_VECTOR) | ||
36 | icr = (icr & (~APIC_VECTOR_MASK)) | APIC_DM_NMI; | ||
37 | return icr; | ||
38 | } | ||
39 | |||
40 | static inline int __prepare_ICR2 (unsigned int mask) | ||
41 | { | ||
42 | return SET_APIC_DEST_FIELD(mask); | ||
43 | } | ||
44 | |||
45 | static inline void __send_IPI_shortcut(unsigned int shortcut, int vector, unsigned int dest) | ||
46 | { | ||
47 | /* | ||
48 | * Subtle. In the case of the 'never do double writes' workaround | ||
49 | * we have to lock out interrupts to be safe. As we don't care | ||
50 | * of the value read we use an atomic rmw access to avoid costly | ||
51 | * cli/sti. Otherwise we use an even cheaper single atomic write | ||
52 | * to the APIC. | ||
53 | */ | ||
54 | unsigned int cfg; | ||
55 | |||
56 | /* | ||
57 | * Wait for idle. | ||
58 | */ | ||
59 | apic_wait_icr_idle(); | ||
60 | |||
61 | /* | ||
62 | * No need to touch the target chip field | ||
63 | */ | ||
64 | cfg = __prepare_ICR(shortcut, vector, dest); | ||
65 | |||
66 | /* | ||
67 | * Send the IPI. The write to APIC_ICR fires this off. | ||
68 | */ | ||
69 | apic_write_around(APIC_ICR, cfg); | ||
70 | } | ||
71 | |||
72 | |||
73 | static inline void send_IPI_mask_sequence(cpumask_t mask, int vector) | ||
74 | { | ||
75 | unsigned long cfg, flags; | ||
76 | unsigned long query_cpu; | ||
77 | |||
78 | /* | ||
79 | * Hack. The clustered APIC addressing mode doesn't allow us to send | ||
80 | * to an arbitrary mask, so I do a unicast to each CPU instead. | ||
81 | * - mbligh | ||
82 | */ | ||
83 | local_irq_save(flags); | ||
84 | |||
85 | for (query_cpu = 0; query_cpu < NR_CPUS; ++query_cpu) { | ||
86 | if (cpu_isset(query_cpu, mask)) { | ||
87 | |||
88 | /* | ||
89 | * Wait for idle. | ||
90 | */ | ||
91 | apic_wait_icr_idle(); | ||
92 | |||
93 | /* | ||
94 | * prepare target chip field | ||
95 | */ | ||
96 | cfg = __prepare_ICR2(x86_cpu_to_apicid[query_cpu]); | ||
97 | apic_write_around(APIC_ICR2, cfg); | ||
98 | |||
99 | /* | ||
100 | * program the ICR | ||
101 | */ | ||
102 | cfg = __prepare_ICR(0, vector, APIC_DEST_PHYSICAL); | ||
103 | |||
104 | /* | ||
105 | * Send the IPI. The write to APIC_ICR fires this off. | ||
106 | */ | ||
107 | apic_write_around(APIC_ICR, cfg); | ||
108 | } | ||
109 | } | ||
110 | local_irq_restore(flags); | ||
111 | } | ||
112 | |||
113 | #endif /* __ASM_IPI_H */ | ||