ipi.h 3.74 KB
Newer Older
1 2
#ifndef _ASM_X86_IPI_H
#define _ASM_X86_IPI_H
Linus Torvalds's avatar
Linus Torvalds committed
3

Ingo Molnar's avatar
Ingo Molnar committed
4 5
#ifdef CONFIG_X86_LOCAL_APIC

Linus Torvalds's avatar
Linus Torvalds committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * Copyright 2004 James Cleverdon, IBM.
 * Subject to the GNU Public License, v.2
 *
 * Generic APIC InterProcessor Interrupt code.
 *
 * Moved to include file by James Cleverdon from
 * arch/x86-64/kernel/smp.c
 *
 * Copyrights from kernel/smp.c:
 *
 * (c) 1995 Alan Cox, Building #3 <alan@redhat.com>
 * (c) 1998-99, 2000 Ingo Molnar <mingo@redhat.com>
 * (c) 2002,2003 Andi Kleen, SuSE Labs.
 * Subject to the GNU Public License, v.2
 */

#include <asm/hw_irq.h>
24
#include <asm/apic.h>
25
#include <asm/smp.h>
Linus Torvalds's avatar
Linus Torvalds committed
26 27 28 29 30 31 32

/*
 * the following functions deal with sending IPIs between CPUs.
 *
 * We use 'broadcast', CPU->CPU IPIs and self-IPIs too.
 */

33 34
static inline unsigned int __prepare_ICR(unsigned int shortcut, int vector,
					 unsigned int dest)
Linus Torvalds's avatar
Linus Torvalds committed
35
{
36 37 38 39 40 41 42 43 44 45
	unsigned int icr = shortcut | dest;

	switch (vector) {
	default:
		icr |= APIC_DM_FIXED | vector;
		break;
	case NMI_VECTOR:
		icr |= APIC_DM_NMI;
		break;
	}
Linus Torvalds's avatar
Linus Torvalds committed
46 47 48
	return icr;
}

49
static inline int __prepare_ICR2(unsigned int mask)
Linus Torvalds's avatar
Linus Torvalds committed
50 51 52 53
{
	return SET_APIC_DEST_FIELD(mask);
}

54 55 56 57 58 59
static inline void __xapic_wait_icr_idle(void)
{
	while (native_apic_mem_read(APIC_ICR) & APIC_ICR_BUSY)
		cpu_relax();
}

60
static inline void
Ingo Molnar's avatar
Ingo Molnar committed
61
__default_send_IPI_shortcut(unsigned int shortcut, int vector, unsigned int dest)
Linus Torvalds's avatar
Linus Torvalds committed
62 63 64 65 66 67 68 69 70 71 72 73 74
{
	/*
	 * Subtle. In the case of the 'never do double writes' workaround
	 * we have to lock out interrupts to be safe.  As we don't care
	 * of the value read we use an atomic rmw access to avoid costly
	 * cli/sti.  Otherwise we use an even cheaper single atomic write
	 * to the APIC.
	 */
	unsigned int cfg;

	/*
	 * Wait for idle.
	 */
75
	__xapic_wait_icr_idle();
Linus Torvalds's avatar
Linus Torvalds committed
76 77 78 79 80 81 82 83 84

	/*
	 * No need to touch the target chip field
	 */
	cfg = __prepare_ICR(shortcut, vector, dest);

	/*
	 * Send the IPI. The write to APIC_ICR fires this off.
	 */
85
	native_apic_mem_write(APIC_ICR, cfg);
Linus Torvalds's avatar
Linus Torvalds committed
86 87
}

88 89 90 91
/*
 * This is used to send an IPI with no shorthand notation (the destination is
 * specified in bits 56 to 63 of the ICR).
 */
92 93
static inline void
 __default_send_IPI_dest_field(unsigned int mask, int vector, unsigned int dest)
94 95 96 97 98 99
{
	unsigned long cfg;

	/*
	 * Wait for idle.
	 */
100 101 102
	if (unlikely(vector == NMI_VECTOR))
		safe_apic_wait_icr_idle();
	else
103
		__xapic_wait_icr_idle();
104 105 106 107 108

	/*
	 * prepare target chip field
	 */
	cfg = __prepare_ICR2(mask);
109
	native_apic_mem_write(APIC_ICR2, cfg);
110 111 112 113 114 115 116 117 118

	/*
	 * program the ICR
	 */
	cfg = __prepare_ICR(0, vector, dest);

	/*
	 * Send the IPI. The write to APIC_ICR fires this off.
	 */
119
	native_apic_mem_write(APIC_ICR, cfg);
120
}
Linus Torvalds's avatar
Linus Torvalds committed
121

122 123 124 125
extern void default_send_IPI_mask_sequence_phys(const struct cpumask *mask,
						 int vector);
extern void default_send_IPI_mask_allbutself_phys(const struct cpumask *mask,
							 int vector);
Ingo Molnar's avatar
Ingo Molnar committed
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148

/* Avoid include hell */
#define NMI_VECTOR 0x02

extern int no_broadcast;

static inline void __default_local_send_IPI_allbutself(int vector)
{
	if (no_broadcast || vector == NMI_VECTOR)
		apic->send_IPI_mask_allbutself(cpu_online_mask, vector);
	else
		__default_send_IPI_shortcut(APIC_DEST_ALLBUT, vector, apic->dest_logical);
}

static inline void __default_local_send_IPI_all(int vector)
{
	if (no_broadcast || vector == NMI_VECTOR)
		apic->send_IPI_mask(cpu_online_mask, vector);
	else
		__default_send_IPI_shortcut(APIC_DEST_ALLINC, vector, apic->dest_logical);
}

#ifdef CONFIG_X86_32
149 150 151 152
extern void default_send_IPI_mask_sequence_logical(const struct cpumask *mask,
							 int vector);
extern void default_send_IPI_mask_allbutself_logical(const struct cpumask *mask,
							 int vector);
153 154 155 156 157
extern void default_send_IPI_mask_logical(const struct cpumask *mask,
						 int vector);
extern void default_send_IPI_allbutself(int vector);
extern void default_send_IPI_all(int vector);
extern void default_send_IPI_self(int vector);
Ingo Molnar's avatar
Ingo Molnar committed
158 159 160 161
#endif

#endif

162
#endif /* _ASM_X86_IPI_H */