blob: c64fd2909bb2e892536bd7776fc4b683d06d2c3b [file] [log] [blame]
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License, version 2, as
4 * published by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
14 *
15 * Copyright IBM Corp. 2007
16 *
17 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
18 */
19
20#include <linux/jiffies.h>
Alexander Graf544c6762009-11-02 12:02:31 +000021#include <linux/hrtimer.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050022#include <linux/types.h>
23#include <linux/string.h>
24#include <linux/kvm_host.h>
25
Hollis Blanchard75f74f02008-11-05 09:36:16 -060026#include <asm/reg.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050027#include <asm/time.h>
28#include <asm/byteorder.h>
29#include <asm/kvm_ppc.h>
Hollis Blanchardc381a042008-11-05 09:36:15 -060030#include <asm/disassemble.h>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060031#include "timing.h"
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030032#include "trace.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050033
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060034#define OP_TRAP 3
Alexander Graf513579e2009-10-30 05:47:16 +000035#define OP_TRAP_64 2
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060036
37#define OP_31_XOP_LWZX 23
38#define OP_31_XOP_LBZX 87
39#define OP_31_XOP_STWX 151
40#define OP_31_XOP_STBX 215
Alexander Graf1c85e732010-03-24 21:48:27 +010041#define OP_31_XOP_LBZUX 119
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060042#define OP_31_XOP_STBUX 247
43#define OP_31_XOP_LHZX 279
44#define OP_31_XOP_LHZUX 311
45#define OP_31_XOP_MFSPR 339
Alexander Graf1c85e732010-03-24 21:48:27 +010046#define OP_31_XOP_LHAX 343
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060047#define OP_31_XOP_STHX 407
48#define OP_31_XOP_STHUX 439
49#define OP_31_XOP_MTSPR 467
50#define OP_31_XOP_DCBI 470
51#define OP_31_XOP_LWBRX 534
52#define OP_31_XOP_TLBSYNC 566
53#define OP_31_XOP_STWBRX 662
54#define OP_31_XOP_LHBRX 790
55#define OP_31_XOP_STHBRX 918
56
57#define OP_LWZ 32
58#define OP_LWZU 33
59#define OP_LBZ 34
60#define OP_LBZU 35
61#define OP_STW 36
62#define OP_STWU 37
63#define OP_STB 38
64#define OP_STBU 39
65#define OP_LHZ 40
66#define OP_LHZU 41
Alexander Graf3587d532010-02-19 11:00:30 +010067#define OP_LHA 42
68#define OP_LHAU 43
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060069#define OP_STH 44
70#define OP_STHU 45
71
Alexander Graf00c3a372010-04-16 00:11:42 +020072#ifdef CONFIG_PPC_BOOK3S
Alexander Graf513579e2009-10-30 05:47:16 +000073static int kvmppc_dec_enabled(struct kvm_vcpu *vcpu)
74{
75 return 1;
76}
77#else
78static int kvmppc_dec_enabled(struct kvm_vcpu *vcpu)
79{
80 return vcpu->arch.tcr & TCR_DIE;
81}
82#endif
83
Hollis Blanchard75f74f02008-11-05 09:36:16 -060084void kvmppc_emulate_dec(struct kvm_vcpu *vcpu)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050085{
Alexander Graf544c6762009-11-02 12:02:31 +000086 unsigned long dec_nsec;
Alexander Graf9a7a9b02009-10-30 05:47:15 +000087
Alexander Graf544c6762009-11-02 12:02:31 +000088 pr_debug("mtDEC: %x\n", vcpu->arch.dec);
Alexander Graf00c3a372010-04-16 00:11:42 +020089#ifdef CONFIG_PPC_BOOK3S
Alexander Graf7706664d2009-12-21 20:21:24 +010090 /* mtdec lowers the interrupt line when positive. */
91 kvmppc_core_dequeue_dec(vcpu);
92
Alexander Graf513579e2009-10-30 05:47:16 +000093 /* POWER4+ triggers a dec interrupt if the value is < 0 */
94 if (vcpu->arch.dec & 0x80000000) {
Alexander Graf544c6762009-11-02 12:02:31 +000095 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
Alexander Graf513579e2009-10-30 05:47:16 +000096 kvmppc_core_queue_dec(vcpu);
97 return;
98 }
99#endif
100 if (kvmppc_dec_enabled(vcpu)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500101 /* The decrementer ticks at the same rate as the timebase, so
102 * that's how we convert the guest DEC value to the number of
103 * host ticks. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500104
Alexander Graf544c6762009-11-02 12:02:31 +0000105 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
106 dec_nsec = vcpu->arch.dec;
107 dec_nsec *= 1000;
108 dec_nsec /= tb_ticks_per_usec;
109 hrtimer_start(&vcpu->arch.dec_timer, ktime_set(0, dec_nsec),
110 HRTIMER_MODE_REL);
Alexander Graf513579e2009-10-30 05:47:16 +0000111 vcpu->arch.dec_jiffies = get_tb();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500112 } else {
Alexander Graf544c6762009-11-02 12:02:31 +0000113 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500114 }
115}
116
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500117/* XXX to do:
118 * lhax
119 * lhaux
120 * lswx
121 * lswi
122 * stswx
123 * stswi
124 * lha
125 * lhau
126 * lmw
127 * stmw
128 *
129 * XXX is_bigendian should depend on MMU mapping or MSR[LE]
130 */
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600131/* XXX Should probably auto-generate instruction decoding for a particular core
132 * from opcode tables in the future. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500133int kvmppc_emulate_instruction(struct kvm_run *run, struct kvm_vcpu *vcpu)
134{
Alexander Grafc7f38f42010-04-16 00:11:40 +0200135 u32 inst = kvmppc_get_last_inst(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500136 u32 ea;
137 int ra;
138 int rb;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500139 int rs;
140 int rt;
141 int sprn;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500142 enum emulation_result emulated = EMULATE_DONE;
143 int advance = 1;
144
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600145 /* this default type might be overwritten by subcategories */
146 kvmppc_set_exit_type(vcpu, EMULATED_INST_EXITS);
147
Joe Perches689fd142010-09-11 19:10:53 +0000148 pr_debug("Emulating opcode %d / %d\n", get_op(inst), get_xop(inst));
Alexander Graf513579e2009-10-30 05:47:16 +0000149
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500150 switch (get_op(inst)) {
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600151 case OP_TRAP:
Alexander Graf00c3a372010-04-16 00:11:42 +0200152#ifdef CONFIG_PPC_BOOK3S
Alexander Graf513579e2009-10-30 05:47:16 +0000153 case OP_TRAP_64:
Alexander Graf25a8a022010-01-08 02:58:07 +0100154 kvmppc_core_queue_program(vcpu, SRR1_PROGTRAP);
Liu Yudaf5e272010-02-02 19:44:35 +0800155#else
156 kvmppc_core_queue_program(vcpu, vcpu->arch.esr | ESR_PTR);
157#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500158 advance = 0;
159 break;
160
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500161 case 31:
162 switch (get_xop(inst)) {
163
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600164 case OP_31_XOP_LWZX:
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500165 rt = get_rt(inst);
166 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
167 break;
168
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600169 case OP_31_XOP_LBZX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500170 rt = get_rt(inst);
171 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
172 break;
173
Alexander Graf1c85e732010-03-24 21:48:27 +0100174 case OP_31_XOP_LBZUX:
175 rt = get_rt(inst);
176 ra = get_ra(inst);
177 rb = get_rb(inst);
178
179 ea = kvmppc_get_gpr(vcpu, rb);
180 if (ra)
181 ea += kvmppc_get_gpr(vcpu, ra);
182
183 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
184 kvmppc_set_gpr(vcpu, ra, ea);
185 break;
186
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600187 case OP_31_XOP_STWX:
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500188 rs = get_rs(inst);
189 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100190 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500191 4, 1);
192 break;
193
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600194 case OP_31_XOP_STBX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500195 rs = get_rs(inst);
196 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100197 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500198 1, 1);
199 break;
200
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600201 case OP_31_XOP_STBUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500202 rs = get_rs(inst);
203 ra = get_ra(inst);
204 rb = get_rb(inst);
205
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100206 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500207 if (ra)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100208 ea += kvmppc_get_gpr(vcpu, ra);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500209
210 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100211 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500212 1, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100213 kvmppc_set_gpr(vcpu, rs, ea);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500214 break;
215
Alexander Graf1c85e732010-03-24 21:48:27 +0100216 case OP_31_XOP_LHAX:
217 rt = get_rt(inst);
218 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
219 break;
220
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600221 case OP_31_XOP_LHZX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500222 rt = get_rt(inst);
223 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
224 break;
225
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600226 case OP_31_XOP_LHZUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500227 rt = get_rt(inst);
228 ra = get_ra(inst);
229 rb = get_rb(inst);
230
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100231 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500232 if (ra)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100233 ea += kvmppc_get_gpr(vcpu, ra);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500234
235 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100236 kvmppc_set_gpr(vcpu, ra, ea);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500237 break;
238
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600239 case OP_31_XOP_MFSPR:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500240 sprn = get_sprn(inst);
241 rt = get_rt(inst);
242
243 switch (sprn) {
244 case SPRN_SRR0:
Alexander Grafde7906c2010-07-29 14:47:46 +0200245 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->srr0);
246 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500247 case SPRN_SRR1:
Alexander Grafde7906c2010-07-29 14:47:46 +0200248 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->srr1);
249 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500250 case SPRN_PVR:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100251 kvmppc_set_gpr(vcpu, rt, vcpu->arch.pvr); break;
Liu Yu06579dd2009-06-05 14:54:31 +0800252 case SPRN_PIR:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100253 kvmppc_set_gpr(vcpu, rt, vcpu->vcpu_id); break;
Alexander Graf513579e2009-10-30 05:47:16 +0000254 case SPRN_MSSSR0:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100255 kvmppc_set_gpr(vcpu, rt, 0); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500256
257 /* Note: mftb and TBRL/TBWL are user-accessible, so
258 * the guest can always access the real TB anyways.
259 * In fact, we probably will never see these traps. */
260 case SPRN_TBWL:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100261 kvmppc_set_gpr(vcpu, rt, get_tb() >> 32); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500262 case SPRN_TBWU:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100263 kvmppc_set_gpr(vcpu, rt, get_tb()); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500264
265 case SPRN_SPRG0:
Alexander Grafa73a9592010-07-29 14:47:47 +0200266 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->sprg0);
267 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500268 case SPRN_SPRG1:
Alexander Grafa73a9592010-07-29 14:47:47 +0200269 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->sprg1);
270 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500271 case SPRN_SPRG2:
Alexander Grafa73a9592010-07-29 14:47:47 +0200272 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->sprg2);
273 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500274 case SPRN_SPRG3:
Alexander Grafa73a9592010-07-29 14:47:47 +0200275 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->sprg3);
276 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500277 /* Note: SPRG4-7 are user-readable, so we don't get
278 * a trap. */
279
Alexander Graf9a7a9b02009-10-30 05:47:15 +0000280 case SPRN_DEC:
281 {
Alexander Graf513579e2009-10-30 05:47:16 +0000282 u64 jd = get_tb() - vcpu->arch.dec_jiffies;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100283 kvmppc_set_gpr(vcpu, rt, vcpu->arch.dec - jd);
Joe Perches689fd142010-09-11 19:10:53 +0000284 pr_debug("mfDEC: %x - %llx = %lx\n",
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100285 vcpu->arch.dec, jd,
286 kvmppc_get_gpr(vcpu, rt));
Alexander Graf9a7a9b02009-10-30 05:47:15 +0000287 break;
288 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500289 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600290 emulated = kvmppc_core_emulate_mfspr(vcpu, sprn, rt);
291 if (emulated == EMULATE_FAIL) {
292 printk("mfspr: unknown spr %x\n", sprn);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100293 kvmppc_set_gpr(vcpu, rt, 0);
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600294 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500295 break;
296 }
297 break;
298
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600299 case OP_31_XOP_STHX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500300 rs = get_rs(inst);
301 ra = get_ra(inst);
302 rb = get_rb(inst);
303
304 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100305 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500306 2, 1);
307 break;
308
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600309 case OP_31_XOP_STHUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500310 rs = get_rs(inst);
311 ra = get_ra(inst);
312 rb = get_rb(inst);
313
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100314 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500315 if (ra)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100316 ea += kvmppc_get_gpr(vcpu, ra);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500317
318 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100319 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500320 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100321 kvmppc_set_gpr(vcpu, ra, ea);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500322 break;
323
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600324 case OP_31_XOP_MTSPR:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500325 sprn = get_sprn(inst);
326 rs = get_rs(inst);
327 switch (sprn) {
328 case SPRN_SRR0:
Alexander Grafde7906c2010-07-29 14:47:46 +0200329 vcpu->arch.shared->srr0 = kvmppc_get_gpr(vcpu, rs);
330 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500331 case SPRN_SRR1:
Alexander Grafde7906c2010-07-29 14:47:46 +0200332 vcpu->arch.shared->srr1 = kvmppc_get_gpr(vcpu, rs);
333 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500334
335 /* XXX We need to context-switch the timebase for
336 * watchdog and FIT. */
337 case SPRN_TBWL: break;
338 case SPRN_TBWU: break;
339
Alexander Graf513579e2009-10-30 05:47:16 +0000340 case SPRN_MSSSR0: break;
341
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500342 case SPRN_DEC:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100343 vcpu->arch.dec = kvmppc_get_gpr(vcpu, rs);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500344 kvmppc_emulate_dec(vcpu);
345 break;
346
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500347 case SPRN_SPRG0:
Alexander Grafa73a9592010-07-29 14:47:47 +0200348 vcpu->arch.shared->sprg0 = kvmppc_get_gpr(vcpu, rs);
349 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500350 case SPRN_SPRG1:
Alexander Grafa73a9592010-07-29 14:47:47 +0200351 vcpu->arch.shared->sprg1 = kvmppc_get_gpr(vcpu, rs);
352 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500353 case SPRN_SPRG2:
Alexander Grafa73a9592010-07-29 14:47:47 +0200354 vcpu->arch.shared->sprg2 = kvmppc_get_gpr(vcpu, rs);
355 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500356 case SPRN_SPRG3:
Alexander Grafa73a9592010-07-29 14:47:47 +0200357 vcpu->arch.shared->sprg3 = kvmppc_get_gpr(vcpu, rs);
358 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500359
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500360 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600361 emulated = kvmppc_core_emulate_mtspr(vcpu, sprn, rs);
362 if (emulated == EMULATE_FAIL)
363 printk("mtspr: unknown spr %x\n", sprn);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500364 break;
365 }
366 break;
367
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600368 case OP_31_XOP_DCBI:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500369 /* Do nothing. The guest is performing dcbi because
370 * hardware DMA is not snooped by the dcache, but
371 * emulated DMA either goes through the dcache as
372 * normal writes, or the host kernel has handled dcache
373 * coherence. */
374 break;
375
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600376 case OP_31_XOP_LWBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500377 rt = get_rt(inst);
378 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 0);
379 break;
380
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600381 case OP_31_XOP_TLBSYNC:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500382 break;
383
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600384 case OP_31_XOP_STWBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500385 rs = get_rs(inst);
386 ra = get_ra(inst);
387 rb = get_rb(inst);
388
389 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100390 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500391 4, 0);
392 break;
393
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600394 case OP_31_XOP_LHBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500395 rt = get_rt(inst);
396 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 0);
397 break;
398
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600399 case OP_31_XOP_STHBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500400 rs = get_rs(inst);
401 ra = get_ra(inst);
402 rb = get_rb(inst);
403
404 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100405 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500406 2, 0);
407 break;
408
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500409 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600410 /* Attempt core-specific emulation below. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500411 emulated = EMULATE_FAIL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500412 }
413 break;
414
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600415 case OP_LWZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500416 rt = get_rt(inst);
417 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
418 break;
419
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600420 case OP_LWZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500421 ra = get_ra(inst);
422 rt = get_rt(inst);
423 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100424 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500425 break;
426
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600427 case OP_LBZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500428 rt = get_rt(inst);
429 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
430 break;
431
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600432 case OP_LBZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500433 ra = get_ra(inst);
434 rt = get_rt(inst);
435 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100436 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500437 break;
438
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600439 case OP_STW:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500440 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100441 emulated = kvmppc_handle_store(run, vcpu,
442 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500443 4, 1);
444 break;
445
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600446 case OP_STWU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500447 ra = get_ra(inst);
448 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100449 emulated = kvmppc_handle_store(run, vcpu,
450 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500451 4, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100452 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500453 break;
454
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600455 case OP_STB:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500456 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100457 emulated = kvmppc_handle_store(run, vcpu,
458 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500459 1, 1);
460 break;
461
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600462 case OP_STBU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500463 ra = get_ra(inst);
464 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100465 emulated = kvmppc_handle_store(run, vcpu,
466 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500467 1, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100468 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500469 break;
470
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600471 case OP_LHZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500472 rt = get_rt(inst);
473 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
474 break;
475
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600476 case OP_LHZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500477 ra = get_ra(inst);
478 rt = get_rt(inst);
479 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100480 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500481 break;
482
Alexander Graf3587d532010-02-19 11:00:30 +0100483 case OP_LHA:
484 rt = get_rt(inst);
485 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
486 break;
487
488 case OP_LHAU:
489 ra = get_ra(inst);
490 rt = get_rt(inst);
491 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
492 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
493 break;
494
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600495 case OP_STH:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500496 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100497 emulated = kvmppc_handle_store(run, vcpu,
498 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500499 2, 1);
500 break;
501
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600502 case OP_STHU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500503 ra = get_ra(inst);
504 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100505 emulated = kvmppc_handle_store(run, vcpu,
506 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500507 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100508 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500509 break;
510
511 default:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500512 emulated = EMULATE_FAIL;
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600513 }
514
515 if (emulated == EMULATE_FAIL) {
516 emulated = kvmppc_core_emulate_op(run, vcpu, inst, &advance);
Alexander Graf37f5bca2010-02-19 11:00:31 +0100517 if (emulated == EMULATE_AGAIN) {
518 advance = 0;
519 } else if (emulated == EMULATE_FAIL) {
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600520 advance = 0;
521 printk(KERN_ERR "Couldn't emulate instruction 0x%08x "
522 "(op %d xop %d)\n", inst, get_op(inst), get_xop(inst));
Alexander Graf5f2b1052010-01-10 03:27:32 +0100523 kvmppc_core_queue_program(vcpu, 0);
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600524 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500525 }
526
Alexander Grafc7f38f42010-04-16 00:11:40 +0200527 trace_kvm_ppc_instr(inst, kvmppc_get_pc(vcpu), emulated);
Christian Ehrhardt3b4bd792008-07-14 14:00:04 +0200528
Alexander Grafc7f38f42010-04-16 00:11:40 +0200529 /* Advance past emulated instruction. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500530 if (advance)
Alexander Grafc7f38f42010-04-16 00:11:40 +0200531 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) + 4);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500532
533 return emulated;
534}