Merge branches 'x86-alternatives-for-linus', 'x86-fpu-for-linus', 'x86-hwmon-for...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / x86 / include / asm / kvm_emulate.h
CommitLineData
6aa8b732
AK
1/******************************************************************************
2 * x86_emulate.h
3 *
4 * Generic x86 (32-bit and 64-bit) instruction decoder and emulator.
5 *
6 * Copyright (c) 2005 Keir Fraser
7 *
8 * From: xen-unstable 10676:af9809f51f81a3c43f276f00c81a52ef558afda4
9 */
10
1965aae3
PA
11#ifndef _ASM_X86_KVM_X86_EMULATE_H
12#define _ASM_X86_KVM_X86_EMULATE_H
6aa8b732 13
38ba30ba
GN
14#include <asm/desc_defs.h>
15
6aa8b732
AK
16struct x86_emulate_ctxt;
17
18/*
19 * x86_emulate_ops:
20 *
21 * These operations represent the instruction emulator's interface to memory.
22 * There are two categories of operation: those that act on ordinary memory
23 * regions (*_std), and those that act on memory regions known to require
24 * special treatment or emulation (*_emulated).
25 *
26 * The emulator assumes that an instruction accesses only one 'emulated memory'
27 * location, that this location is the given linear faulting address (cr2), and
28 * that this is one of the instruction's data operands. Instruction fetches and
29 * stack operations are assumed never to access emulated memory. The emulator
30 * automatically deduces which operand of a string-move operation is accessing
31 * emulated memory, and assumes that the other operand accesses normal memory.
32 *
33 * NOTES:
34 * 1. The emulator isn't very smart about emulated vs. standard memory.
35 * 'Emulated memory' access addresses should be checked for sanity.
36 * 'Normal memory' accesses may fault, and the caller must arrange to
37 * detect and handle reentrancy into the emulator via recursive faults.
38 * Accesses may be unaligned and may cross page boundaries.
39 * 2. If the access fails (cannot emulate, or a standard access faults) then
40 * it is up to the memop to propagate the fault to the guest VM via
41 * some out-of-band mechanism, unknown to the emulator. The memop signals
42 * failure by returning X86EMUL_PROPAGATE_FAULT to the emulator, which will
43 * then immediately bail.
44 * 3. Valid access sizes are 1, 2, 4 and 8 bytes. On x86/32 systems only
45 * cmpxchg8b_emulated need support 8-byte accesses.
46 * 4. The emulator cannot handle 64-bit mode emulation on an x86/32 system.
47 */
48/* Access completed successfully: continue emulation as normal. */
49#define X86EMUL_CONTINUE 0
50/* Access is unhandleable: bail from emulation and return error to caller. */
51#define X86EMUL_UNHANDLEABLE 1
52/* Terminate emulation but return success to the caller. */
53#define X86EMUL_PROPAGATE_FAULT 2 /* propagate a generated fault to guest */
e680080e
GN
54#define X86EMUL_RETRY_INSTR 3 /* retry the instruction for some reason */
55#define X86EMUL_CMPXCHG_FAILED 4 /* cmpxchg did not see expected value */
c3cd7ffa 56#define X86EMUL_IO_NEEDED 5 /* IO is needed to complete emulation */
e680080e 57
6aa8b732
AK
58struct x86_emulate_ops {
59 /*
60 * read_std: Read bytes of standard (non-emulated/special) memory.
1871c602 61 * Used for descriptor reading.
6aa8b732
AK
62 * @addr: [IN ] Linear address from which to read.
63 * @val: [OUT] Value read from memory, zero-extended to 'u_long'.
64 * @bytes: [IN ] Number of bytes to read from memory.
65 */
4c690a1e 66 int (*read_std)(unsigned long addr, void *val,
1871c602
GN
67 unsigned int bytes, struct kvm_vcpu *vcpu, u32 *error);
68
2dafc6c2
GN
69 /*
70 * write_std: Write bytes of standard (non-emulated/special) memory.
71 * Used for descriptor writing.
72 * @addr: [IN ] Linear address to which to write.
73 * @val: [OUT] Value write to memory, zero-extended to 'u_long'.
74 * @bytes: [IN ] Number of bytes to write to memory.
75 */
76 int (*write_std)(unsigned long addr, void *val,
77 unsigned int bytes, struct kvm_vcpu *vcpu, u32 *error);
1871c602
GN
78 /*
79 * fetch: Read bytes of standard (non-emulated/special) memory.
80 * Used for instruction fetch.
81 * @addr: [IN ] Linear address from which to read.
82 * @val: [OUT] Value read from memory, zero-extended to 'u_long'.
83 * @bytes: [IN ] Number of bytes to read from memory.
84 */
85 int (*fetch)(unsigned long addr, void *val,
86 unsigned int bytes, struct kvm_vcpu *vcpu, u32 *error);
6aa8b732
AK
87
88 /*
89 * read_emulated: Read bytes from emulated/special memory area.
90 * @addr: [IN ] Linear address from which to read.
91 * @val: [OUT] Value read from memory, zero-extended to 'u_long'.
92 * @bytes: [IN ] Number of bytes to read from memory.
93 */
0c7825e6
JP
94 int (*read_emulated)(unsigned long addr,
95 void *val,
96 unsigned int bytes,
8fe681e9 97 unsigned int *error,
0c7825e6 98 struct kvm_vcpu *vcpu);
6aa8b732
AK
99
100 /*
0d178975 101 * write_emulated: Write bytes to emulated/special memory area.
6aa8b732
AK
102 * @addr: [IN ] Linear address to which to write.
103 * @val: [IN ] Value to write to memory (low-order bytes used as
104 * required).
105 * @bytes: [IN ] Number of bytes to write to memory.
106 */
0c7825e6
JP
107 int (*write_emulated)(unsigned long addr,
108 const void *val,
109 unsigned int bytes,
8fe681e9 110 unsigned int *error,
0c7825e6 111 struct kvm_vcpu *vcpu);
6aa8b732
AK
112
113 /*
114 * cmpxchg_emulated: Emulate an atomic (LOCKed) CMPXCHG operation on an
115 * emulated/special memory area.
116 * @addr: [IN ] Linear address to access.
117 * @old: [IN ] Value expected to be current at @addr.
118 * @new: [IN ] Value to write to @addr.
119 * @bytes: [IN ] Number of bytes to access using CMPXCHG.
120 */
0c7825e6
JP
121 int (*cmpxchg_emulated)(unsigned long addr,
122 const void *old,
123 const void *new,
124 unsigned int bytes,
8fe681e9 125 unsigned int *error,
0c7825e6 126 struct kvm_vcpu *vcpu);
cf8f70bf
GN
127
128 int (*pio_in_emulated)(int size, unsigned short port, void *val,
129 unsigned int count, struct kvm_vcpu *vcpu);
130
131 int (*pio_out_emulated)(int size, unsigned short port, const void *val,
132 unsigned int count, struct kvm_vcpu *vcpu);
133
2dafc6c2
GN
134 bool (*get_cached_descriptor)(struct desc_struct *desc,
135 int seg, struct kvm_vcpu *vcpu);
136 void (*set_cached_descriptor)(struct desc_struct *desc,
137 int seg, struct kvm_vcpu *vcpu);
138 u16 (*get_segment_selector)(int seg, struct kvm_vcpu *vcpu);
139 void (*set_segment_selector)(u16 sel, int seg, struct kvm_vcpu *vcpu);
5951c442 140 unsigned long (*get_cached_segment_base)(int seg, struct kvm_vcpu *vcpu);
2dafc6c2 141 void (*get_gdt)(struct desc_ptr *dt, struct kvm_vcpu *vcpu);
160ce1f1 142 void (*get_idt)(struct desc_ptr *dt, struct kvm_vcpu *vcpu);
52a46617 143 ulong (*get_cr)(int cr, struct kvm_vcpu *vcpu);
0f12244f 144 int (*set_cr)(int cr, ulong val, struct kvm_vcpu *vcpu);
9c537244 145 int (*cpl)(struct kvm_vcpu *vcpu);
35aa5375
GN
146 int (*get_dr)(int dr, unsigned long *dest, struct kvm_vcpu *vcpu);
147 int (*set_dr)(int dr, unsigned long value, struct kvm_vcpu *vcpu);
3fb1b5db
GN
148 int (*set_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
149 int (*get_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata);
6aa8b732
AK
150};
151
e4e03ded
LV
152/* Type, address-of, and value of an instruction's operand. */
153struct operand {
a01af5ec 154 enum { OP_REG, OP_MEM, OP_IMM, OP_NONE } type;
e4e03ded 155 unsigned int bytes;
16518d5a
AK
156 union {
157 unsigned long orig_val;
158 u64 orig_val64;
159 };
1a6440ae
AK
160 union {
161 unsigned long *reg;
162 unsigned long mem;
163 } addr;
414e6277
GN
164 union {
165 unsigned long val;
16518d5a 166 u64 val64;
414e6277
GN
167 char valptr[sizeof(unsigned long) + 2];
168 };
e4e03ded
LV
169};
170
62266869
AK
171struct fetch_cache {
172 u8 data[15];
173 unsigned long start;
174 unsigned long end;
175};
176
7b262e90
GN
177struct read_cache {
178 u8 data[1024];
179 unsigned long pos;
180 unsigned long end;
181};
182
e4e03ded
LV
183struct decode_cache {
184 u8 twobyte;
185 u8 b;
186 u8 lock_prefix;
187 u8 rep_prefix;
188 u8 op_bytes;
189 u8 ad_bytes;
33615aa9 190 u8 rex_prefix;
e4e03ded 191 struct operand src;
0dc8d10f 192 struct operand src2;
e4e03ded 193 struct operand dst;
7a5b56df
AK
194 bool has_seg_override;
195 u8 seg_override;
e4e03ded 196 unsigned int d;
ef65c889 197 int (*execute)(struct x86_emulate_ctxt *ctxt);
e4e03ded 198 unsigned long regs[NR_VCPU_REGS];
063db061 199 unsigned long eip;
e4e03ded
LV
200 /* modrm */
201 u8 modrm;
202 u8 modrm_mod;
203 u8 modrm_reg;
204 u8 modrm_rm;
09ee57cd 205 u8 modrm_seg;
f5b4edcd 206 bool rip_relative;
62266869 207 struct fetch_cache fetch;
7b262e90 208 struct read_cache io_read;
9de41573 209 struct read_cache mem_read;
e4e03ded
LV
210};
211
6aa8b732 212struct x86_emulate_ctxt {
9aabc88f
AK
213 struct x86_emulate_ops *ops;
214
6aa8b732
AK
215 /* Register state before/after emulation. */
216 struct kvm_vcpu *vcpu;
217
6aa8b732 218 unsigned long eflags;
063db061 219 unsigned long eip; /* eip before instruction emulation */
6aa8b732
AK
220 /* Emulated execution mode, represented by an X86EMUL_MODE value. */
221 int mode;
7a5b56df 222 u32 cs_base;
e4e03ded 223
310b5d30
GC
224 /* interruptibility state, as a result of execution of STI or MOV SS */
225 int interruptibility;
226
4fc40f07 227 bool perm_ok; /* do not check permissions if true */
54b8486f
GN
228
229 int exception; /* exception that happens during emulation or -1 */
230 u32 error_code; /* error code for exception */
231 bool error_code_valid;
54b8486f 232
e4e03ded 233 /* decode cache */
e4e03ded 234 struct decode_cache decode;
6aa8b732
AK
235};
236
90e0a28f 237/* Repeat String Operation Prefix */
d73fa29a
SY
238#define REPE_PREFIX 1
239#define REPNE_PREFIX 2
90e0a28f 240
6aa8b732
AK
241/* Execution mode, passed to the emulator. */
242#define X86EMUL_MODE_REAL 0 /* Real mode. */
a0044755 243#define X86EMUL_MODE_VM86 1 /* Virtual 8086 mode. */
6aa8b732
AK
244#define X86EMUL_MODE_PROT16 2 /* 16-bit protected mode. */
245#define X86EMUL_MODE_PROT32 4 /* 32-bit protected mode. */
246#define X86EMUL_MODE_PROT64 8 /* 64-bit (long) mode. */
247
248/* Host execution mode. */
d73fa29a 249#if defined(CONFIG_X86_32)
6aa8b732 250#define X86EMUL_MODE_HOST X86EMUL_MODE_PROT32
05b3e0c2 251#elif defined(CONFIG_X86_64)
6aa8b732
AK
252#define X86EMUL_MODE_HOST X86EMUL_MODE_PROT64
253#endif
254
9aabc88f 255int x86_decode_insn(struct x86_emulate_ctxt *ctxt);
d2ddd1c4
GN
256#define EMULATION_FAILED -1
257#define EMULATION_OK 0
258#define EMULATION_RESTART 1
9aabc88f 259int x86_emulate_insn(struct x86_emulate_ctxt *ctxt);
38ba30ba 260int emulator_task_switch(struct x86_emulate_ctxt *ctxt,
e269fb21
JK
261 u16 tss_selector, int reason,
262 bool has_error_code, u32 error_code);
4ab8e024
MG
263int emulate_int_real(struct x86_emulate_ctxt *ctxt,
264 struct x86_emulate_ops *ops, int irq);
1965aae3 265#endif /* _ASM_X86_KVM_X86_EMULATE_H */