blob: 141dce3c6810839b65f519767c070d28c3c11fa0 [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
Scott Wood5ce941e2011-04-27 17:24:21 -0500117u32 kvmppc_get_dec(struct kvm_vcpu *vcpu, u64 tb)
118{
119 u64 jd = tb - vcpu->arch.dec_jiffies;
120 return vcpu->arch.dec - jd;
121}
122
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500123/* XXX to do:
124 * lhax
125 * lhaux
126 * lswx
127 * lswi
128 * stswx
129 * stswi
130 * lha
131 * lhau
132 * lmw
133 * stmw
134 *
135 * XXX is_bigendian should depend on MMU mapping or MSR[LE]
136 */
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600137/* XXX Should probably auto-generate instruction decoding for a particular core
138 * from opcode tables in the future. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500139int kvmppc_emulate_instruction(struct kvm_run *run, struct kvm_vcpu *vcpu)
140{
Alexander Grafc7f38f42010-04-16 00:11:40 +0200141 u32 inst = kvmppc_get_last_inst(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500142 u32 ea;
143 int ra;
144 int rb;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500145 int rs;
146 int rt;
147 int sprn;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500148 enum emulation_result emulated = EMULATE_DONE;
149 int advance = 1;
150
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600151 /* this default type might be overwritten by subcategories */
152 kvmppc_set_exit_type(vcpu, EMULATED_INST_EXITS);
153
Joe Perches689fd142010-09-11 19:10:53 +0000154 pr_debug("Emulating opcode %d / %d\n", get_op(inst), get_xop(inst));
Alexander Graf513579e2009-10-30 05:47:16 +0000155
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500156 switch (get_op(inst)) {
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600157 case OP_TRAP:
Alexander Graf00c3a372010-04-16 00:11:42 +0200158#ifdef CONFIG_PPC_BOOK3S
Alexander Graf513579e2009-10-30 05:47:16 +0000159 case OP_TRAP_64:
Alexander Graf25a8a022010-01-08 02:58:07 +0100160 kvmppc_core_queue_program(vcpu, SRR1_PROGTRAP);
Liu Yudaf5e272010-02-02 19:44:35 +0800161#else
162 kvmppc_core_queue_program(vcpu, vcpu->arch.esr | ESR_PTR);
163#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500164 advance = 0;
165 break;
166
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500167 case 31:
168 switch (get_xop(inst)) {
169
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600170 case OP_31_XOP_LWZX:
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500171 rt = get_rt(inst);
172 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
173 break;
174
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600175 case OP_31_XOP_LBZX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500176 rt = get_rt(inst);
177 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
178 break;
179
Alexander Graf1c85e732010-03-24 21:48:27 +0100180 case OP_31_XOP_LBZUX:
181 rt = get_rt(inst);
182 ra = get_ra(inst);
183 rb = get_rb(inst);
184
185 ea = kvmppc_get_gpr(vcpu, rb);
186 if (ra)
187 ea += kvmppc_get_gpr(vcpu, ra);
188
189 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
190 kvmppc_set_gpr(vcpu, ra, ea);
191 break;
192
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600193 case OP_31_XOP_STWX:
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500194 rs = get_rs(inst);
195 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100196 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500197 4, 1);
198 break;
199
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600200 case OP_31_XOP_STBX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500201 rs = get_rs(inst);
202 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100203 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500204 1, 1);
205 break;
206
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600207 case OP_31_XOP_STBUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500208 rs = get_rs(inst);
209 ra = get_ra(inst);
210 rb = get_rb(inst);
211
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100212 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500213 if (ra)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100214 ea += kvmppc_get_gpr(vcpu, ra);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500215
216 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100217 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500218 1, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100219 kvmppc_set_gpr(vcpu, rs, ea);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500220 break;
221
Alexander Graf1c85e732010-03-24 21:48:27 +0100222 case OP_31_XOP_LHAX:
223 rt = get_rt(inst);
224 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
225 break;
226
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600227 case OP_31_XOP_LHZX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500228 rt = get_rt(inst);
229 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
230 break;
231
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600232 case OP_31_XOP_LHZUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500233 rt = get_rt(inst);
234 ra = get_ra(inst);
235 rb = get_rb(inst);
236
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100237 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500238 if (ra)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100239 ea += kvmppc_get_gpr(vcpu, ra);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500240
241 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100242 kvmppc_set_gpr(vcpu, ra, ea);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500243 break;
244
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600245 case OP_31_XOP_MFSPR:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500246 sprn = get_sprn(inst);
247 rt = get_rt(inst);
248
249 switch (sprn) {
250 case SPRN_SRR0:
Alexander Grafde7906c2010-07-29 14:47:46 +0200251 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->srr0);
252 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500253 case SPRN_SRR1:
Alexander Grafde7906c2010-07-29 14:47:46 +0200254 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->srr1);
255 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500256 case SPRN_PVR:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100257 kvmppc_set_gpr(vcpu, rt, vcpu->arch.pvr); break;
Liu Yu06579dd2009-06-05 14:54:31 +0800258 case SPRN_PIR:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100259 kvmppc_set_gpr(vcpu, rt, vcpu->vcpu_id); break;
Alexander Graf513579e2009-10-30 05:47:16 +0000260 case SPRN_MSSSR0:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100261 kvmppc_set_gpr(vcpu, rt, 0); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500262
263 /* Note: mftb and TBRL/TBWL are user-accessible, so
264 * the guest can always access the real TB anyways.
265 * In fact, we probably will never see these traps. */
266 case SPRN_TBWL:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100267 kvmppc_set_gpr(vcpu, rt, get_tb() >> 32); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500268 case SPRN_TBWU:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100269 kvmppc_set_gpr(vcpu, rt, get_tb()); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500270
271 case SPRN_SPRG0:
Alexander Grafa73a9592010-07-29 14:47:47 +0200272 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->sprg0);
273 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500274 case SPRN_SPRG1:
Alexander Grafa73a9592010-07-29 14:47:47 +0200275 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->sprg1);
276 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500277 case SPRN_SPRG2:
Alexander Grafa73a9592010-07-29 14:47:47 +0200278 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->sprg2);
279 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500280 case SPRN_SPRG3:
Alexander Grafa73a9592010-07-29 14:47:47 +0200281 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->sprg3);
282 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500283 /* Note: SPRG4-7 are user-readable, so we don't get
284 * a trap. */
285
Alexander Graf9a7a9b02009-10-30 05:47:15 +0000286 case SPRN_DEC:
287 {
Scott Wood5ce941e2011-04-27 17:24:21 -0500288 kvmppc_set_gpr(vcpu, rt,
289 kvmppc_get_dec(vcpu, get_tb()));
Alexander Graf9a7a9b02009-10-30 05:47:15 +0000290 break;
291 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500292 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600293 emulated = kvmppc_core_emulate_mfspr(vcpu, sprn, rt);
294 if (emulated == EMULATE_FAIL) {
295 printk("mfspr: unknown spr %x\n", sprn);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100296 kvmppc_set_gpr(vcpu, rt, 0);
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600297 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500298 break;
299 }
Scott Wood49ea0692011-03-28 15:01:24 -0500300 kvmppc_set_exit_type(vcpu, EMULATED_MFSPR_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500301 break;
302
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600303 case OP_31_XOP_STHX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500304 rs = get_rs(inst);
305 ra = get_ra(inst);
306 rb = get_rb(inst);
307
308 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100309 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500310 2, 1);
311 break;
312
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600313 case OP_31_XOP_STHUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500314 rs = get_rs(inst);
315 ra = get_ra(inst);
316 rb = get_rb(inst);
317
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100318 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500319 if (ra)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100320 ea += kvmppc_get_gpr(vcpu, ra);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500321
322 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100323 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500324 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100325 kvmppc_set_gpr(vcpu, ra, ea);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500326 break;
327
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600328 case OP_31_XOP_MTSPR:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500329 sprn = get_sprn(inst);
330 rs = get_rs(inst);
331 switch (sprn) {
332 case SPRN_SRR0:
Alexander Grafde7906c2010-07-29 14:47:46 +0200333 vcpu->arch.shared->srr0 = kvmppc_get_gpr(vcpu, rs);
334 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500335 case SPRN_SRR1:
Alexander Grafde7906c2010-07-29 14:47:46 +0200336 vcpu->arch.shared->srr1 = kvmppc_get_gpr(vcpu, rs);
337 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500338
339 /* XXX We need to context-switch the timebase for
340 * watchdog and FIT. */
341 case SPRN_TBWL: break;
342 case SPRN_TBWU: break;
343
Alexander Graf513579e2009-10-30 05:47:16 +0000344 case SPRN_MSSSR0: break;
345
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500346 case SPRN_DEC:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100347 vcpu->arch.dec = kvmppc_get_gpr(vcpu, rs);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500348 kvmppc_emulate_dec(vcpu);
349 break;
350
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500351 case SPRN_SPRG0:
Alexander Grafa73a9592010-07-29 14:47:47 +0200352 vcpu->arch.shared->sprg0 = kvmppc_get_gpr(vcpu, rs);
353 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500354 case SPRN_SPRG1:
Alexander Grafa73a9592010-07-29 14:47:47 +0200355 vcpu->arch.shared->sprg1 = kvmppc_get_gpr(vcpu, rs);
356 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500357 case SPRN_SPRG2:
Alexander Grafa73a9592010-07-29 14:47:47 +0200358 vcpu->arch.shared->sprg2 = kvmppc_get_gpr(vcpu, rs);
359 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500360 case SPRN_SPRG3:
Alexander Grafa73a9592010-07-29 14:47:47 +0200361 vcpu->arch.shared->sprg3 = kvmppc_get_gpr(vcpu, rs);
362 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500363
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500364 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600365 emulated = kvmppc_core_emulate_mtspr(vcpu, sprn, rs);
366 if (emulated == EMULATE_FAIL)
367 printk("mtspr: unknown spr %x\n", sprn);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500368 break;
369 }
Scott Wood49ea0692011-03-28 15:01:24 -0500370 kvmppc_set_exit_type(vcpu, EMULATED_MTSPR_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500371 break;
372
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600373 case OP_31_XOP_DCBI:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500374 /* Do nothing. The guest is performing dcbi because
375 * hardware DMA is not snooped by the dcache, but
376 * emulated DMA either goes through the dcache as
377 * normal writes, or the host kernel has handled dcache
378 * coherence. */
379 break;
380
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600381 case OP_31_XOP_LWBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500382 rt = get_rt(inst);
383 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 0);
384 break;
385
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600386 case OP_31_XOP_TLBSYNC:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500387 break;
388
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600389 case OP_31_XOP_STWBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500390 rs = get_rs(inst);
391 ra = get_ra(inst);
392 rb = get_rb(inst);
393
394 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100395 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500396 4, 0);
397 break;
398
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600399 case OP_31_XOP_LHBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500400 rt = get_rt(inst);
401 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 0);
402 break;
403
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600404 case OP_31_XOP_STHBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500405 rs = get_rs(inst);
406 ra = get_ra(inst);
407 rb = get_rb(inst);
408
409 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100410 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500411 2, 0);
412 break;
413
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500414 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600415 /* Attempt core-specific emulation below. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500416 emulated = EMULATE_FAIL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500417 }
418 break;
419
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600420 case OP_LWZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500421 rt = get_rt(inst);
422 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
423 break;
424
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600425 case OP_LWZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500426 ra = get_ra(inst);
427 rt = get_rt(inst);
428 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100429 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500430 break;
431
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600432 case OP_LBZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500433 rt = get_rt(inst);
434 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
435 break;
436
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600437 case OP_LBZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500438 ra = get_ra(inst);
439 rt = get_rt(inst);
440 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100441 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500442 break;
443
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600444 case OP_STW:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500445 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100446 emulated = kvmppc_handle_store(run, vcpu,
447 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500448 4, 1);
449 break;
450
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600451 case OP_STWU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500452 ra = get_ra(inst);
453 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100454 emulated = kvmppc_handle_store(run, vcpu,
455 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500456 4, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100457 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500458 break;
459
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600460 case OP_STB:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500461 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100462 emulated = kvmppc_handle_store(run, vcpu,
463 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500464 1, 1);
465 break;
466
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600467 case OP_STBU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500468 ra = get_ra(inst);
469 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100470 emulated = kvmppc_handle_store(run, vcpu,
471 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500472 1, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100473 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500474 break;
475
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600476 case OP_LHZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500477 rt = get_rt(inst);
478 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
479 break;
480
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600481 case OP_LHZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500482 ra = get_ra(inst);
483 rt = get_rt(inst);
484 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100485 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500486 break;
487
Alexander Graf3587d532010-02-19 11:00:30 +0100488 case OP_LHA:
489 rt = get_rt(inst);
490 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
491 break;
492
493 case OP_LHAU:
494 ra = get_ra(inst);
495 rt = get_rt(inst);
496 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
497 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
498 break;
499
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600500 case OP_STH:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500501 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100502 emulated = kvmppc_handle_store(run, vcpu,
503 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500504 2, 1);
505 break;
506
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600507 case OP_STHU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500508 ra = get_ra(inst);
509 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100510 emulated = kvmppc_handle_store(run, vcpu,
511 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500512 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100513 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500514 break;
515
516 default:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500517 emulated = EMULATE_FAIL;
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600518 }
519
520 if (emulated == EMULATE_FAIL) {
521 emulated = kvmppc_core_emulate_op(run, vcpu, inst, &advance);
Alexander Graf37f5bca2010-02-19 11:00:31 +0100522 if (emulated == EMULATE_AGAIN) {
523 advance = 0;
524 } else if (emulated == EMULATE_FAIL) {
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600525 advance = 0;
526 printk(KERN_ERR "Couldn't emulate instruction 0x%08x "
527 "(op %d xop %d)\n", inst, get_op(inst), get_xop(inst));
Alexander Graf5f2b1052010-01-10 03:27:32 +0100528 kvmppc_core_queue_program(vcpu, 0);
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600529 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500530 }
531
Alexander Grafc7f38f42010-04-16 00:11:40 +0200532 trace_kvm_ppc_instr(inst, kvmppc_get_pc(vcpu), emulated);
Christian Ehrhardt3b4bd792008-07-14 14:00:04 +0200533
Alexander Grafc7f38f42010-04-16 00:11:40 +0200534 /* Advance past emulated instruction. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500535 if (advance)
Alexander Grafc7f38f42010-04-16 00:11:40 +0200536 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) + 4);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500537
538 return emulated;
539}