]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/x86/include/asm/alternative.h
x86, alternatives: Use 16-bit numbers for cpufeature index
[net-next-2.6.git] / arch / x86 / include / asm / alternative.h
CommitLineData
1965aae3
PA
1#ifndef _ASM_X86_ALTERNATIVE_H
2#define _ASM_X86_ALTERNATIVE_H
6b592570
PA
3
4#include <linux/types.h>
5#include <linux/stddef.h>
edc953fa 6#include <linux/stringify.h>
6b592570
PA
7#include <asm/asm.h>
8
9/*
10 * Alternative inline assembly for SMP.
11 *
12 * The LOCK_PREFIX macro defined here replaces the LOCK and
13 * LOCK_PREFIX macros used everywhere in the source tree.
14 *
15 * SMP alternatives use the same data structures as the other
16 * alternatives and the X86_FEATURE_UP flag to indicate the case of a
17 * UP system running a SMP kernel. The existing apply_alternatives()
18 * works fine for patching a SMP kernel for UP.
19 *
20 * The SMP alternative tables can be kept after boot and contain both
21 * UP and SMP versions of the instructions to allow switching back to
22 * SMP at runtime, when hotplugging in a new CPU, which is especially
23 * useful in virtualized environments.
24 *
25 * The very common lock prefix is handled as special case in a
26 * separate table which is a pure address list without replacement ptr
27 * and size information. That keeps the table sizes small.
28 */
29
30#ifdef CONFIG_SMP
b3ac891b 31#define LOCK_PREFIX_HERE \
6b592570 32 ".section .smp_locks,\"a\"\n" \
5967ed87 33 ".balign 4\n" \
d9c5841e 34 ".long 671f - .\n" /* offset */ \
6b592570 35 ".previous\n" \
b3ac891b
LB
36 "671:"
37
38#define LOCK_PREFIX LOCK_PREFIX_HERE "\n\tlock; "
6b592570
PA
39
40#else /* ! CONFIG_SMP */
b701a47b 41#define LOCK_PREFIX_HERE ""
6b592570
PA
42#define LOCK_PREFIX ""
43#endif
44
6b592570
PA
45struct alt_instr {
46 u8 *instr; /* original instruction */
47 u8 *replacement;
83a7a2ad 48 u16 cpuid; /* cpuid bit set for replacement */
6b592570
PA
49 u8 instrlen; /* length of original instruction */
50 u8 replacementlen; /* length of new instruction, <= instrlen */
6b592570
PA
51#ifdef CONFIG_X86_64
52 u32 pad2;
53#endif
54};
55
56extern void alternative_instructions(void);
57extern void apply_alternatives(struct alt_instr *start, struct alt_instr *end);
58
59struct module;
60
61#ifdef CONFIG_SMP
62extern void alternatives_smp_module_add(struct module *mod, char *name,
63 void *locks, void *locks_end,
64 void *text, void *text_end);
65extern void alternatives_smp_module_del(struct module *mod);
66extern void alternatives_smp_switch(int smp);
2cfa1978 67extern int alternatives_text_reserved(void *start, void *end);
6b592570
PA
68#else
69static inline void alternatives_smp_module_add(struct module *mod, char *name,
2ac1ea7c
JP
70 void *locks, void *locks_end,
71 void *text, void *text_end) {}
6b592570
PA
72static inline void alternatives_smp_module_del(struct module *mod) {}
73static inline void alternatives_smp_switch(int smp) {}
2cfa1978
MH
74static inline int alternatives_text_reserved(void *start, void *end)
75{
76 return 0;
77}
6b592570
PA
78#endif /* CONFIG_SMP */
79
edc953fa
MD
80/* alternative assembly primitive: */
81#define ALTERNATIVE(oldinstr, newinstr, feature) \
82 \
83 "661:\n\t" oldinstr "\n662:\n" \
84 ".section .altinstructions,\"a\"\n" \
85 _ASM_ALIGN "\n" \
86 _ASM_PTR "661b\n" /* label */ \
87 _ASM_PTR "663f\n" /* new instruction */ \
83a7a2ad 88 " .word " __stringify(feature) "\n" /* feature bit */ \
edc953fa
MD
89 " .byte 662b-661b\n" /* sourcelen */ \
90 " .byte 664f-663f\n" /* replacementlen */ \
83a7a2ad
PA
91 ".previous\n" \
92 ".section .discard,\"aw\",@progbits\n" \
01be50a3 93 " .byte 0xff + (664f-663f) - (662b-661b)\n" /* rlen <= slen */ \
edc953fa
MD
94 ".previous\n" \
95 ".section .altinstr_replacement, \"ax\"\n" \
96 "663:\n\t" newinstr "\n664:\n" /* replacement */ \
97 ".previous"
98
d61931d8
BP
99/*
100 * This must be included *after* the definition of ALTERNATIVE due to
101 * <asm/arch_hweight.h>
102 */
103#include <asm/cpufeature.h>
104
6b592570
PA
105/*
106 * Alternative instructions for different CPU types or capabilities.
107 *
108 * This allows to use optimized instructions even on generic binary
109 * kernels.
110 *
111 * length of oldinstr must be longer or equal the length of newinstr
112 * It can be padded with nops as needed.
113 *
114 * For non barrier like inlines please define new variants
115 * without volatile and memory clobber.
116 */
117#define alternative(oldinstr, newinstr, feature) \
edc953fa 118 asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) : : : "memory")
6b592570
PA
119
120/*
121 * Alternative inline assembly with input.
122 *
123 * Pecularities:
124 * No memory clobber here.
125 * Argument numbers start with 1.
126 * Best is to use constraints that are fixed size (like (%1) ... "r")
127 * If you use variable sized constraints like "m" or "g" in the
128 * replacement make sure to pad to the worst case length.
edc953fa 129 * Leaving an unused argument 0 to keep API compatibility.
6b592570
PA
130 */
131#define alternative_input(oldinstr, newinstr, feature, input...) \
edc953fa
MD
132 asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) \
133 : : "i" (0), ## input)
6b592570
PA
134
135/* Like alternative_input, but with a single output argument */
136#define alternative_io(oldinstr, newinstr, feature, output, input...) \
edc953fa
MD
137 asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) \
138 : output : "i" (0), ## input)
6b592570 139
1b1d9258
JB
140/* Like alternative_io, but for replacing a direct call with another one. */
141#define alternative_call(oldfunc, newfunc, feature, output, input...) \
142 asm volatile (ALTERNATIVE("call %P[old]", "call %P[new]", feature) \
143 : output : [old] "i" (oldfunc), [new] "i" (newfunc), ## input)
144
6b592570
PA
145/*
146 * use this macro(s) if you need more than one output parameter
147 * in alternative_io
148 */
1b1d9258 149#define ASM_OUTPUT2(a...) a
6b592570
PA
150
151struct paravirt_patch_site;
152#ifdef CONFIG_PARAVIRT
153void apply_paravirt(struct paravirt_patch_site *start,
154 struct paravirt_patch_site *end);
96a388de 155#else
2ac1ea7c
JP
156static inline void apply_paravirt(struct paravirt_patch_site *start,
157 struct paravirt_patch_site *end)
6b592570
PA
158{}
159#define __parainstructions NULL
160#define __parainstructions_end NULL
96a388de 161#endif
6b592570 162
e587cadd
MD
163/*
164 * Clear and restore the kernel write-protection flag on the local CPU.
165 * Allows the kernel to edit read-only pages.
166 * Side-effect: any interrupt handler running between save and restore will have
167 * the ability to write to read-only pages.
168 *
169 * Warning:
170 * Code patching in the UP case is safe if NMIs and MCE handlers are stopped and
171 * no thread can be preempted in the instructions being modified (no iret to an
172 * invalid instruction possible) or if the instructions are changed from a
173 * consistent state to another consistent state atomically.
174 * More care must be taken when modifying code in the SMP case because of
3d55cc8a
MH
175 * Intel's errata. text_poke_smp() takes care that errata, but still
176 * doesn't support NMI/MCE handler code modifying.
e587cadd
MD
177 * On the local CPU you need to be protected again NMI or MCE handlers seeing an
178 * inconsistent instruction while you patch.
e587cadd 179 */
e587cadd 180extern void *text_poke(void *addr, const void *opcode, size_t len);
3d55cc8a 181extern void *text_poke_smp(void *addr, const void *opcode, size_t len);
6b592570 182
1965aae3 183#endif /* _ASM_X86_ALTERNATIVE_H */