blob: 8f7a3aa03c262b705fd0ccfab9d94bb811d5233c [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 }
Scott Wood49ea0692011-03-28 15:01:24 -0500297 kvmppc_set_exit_type(vcpu, EMULATED_MFSPR_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500298 break;
299
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600300 case OP_31_XOP_STHX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500301 rs = get_rs(inst);
302 ra = get_ra(inst);
303 rb = get_rb(inst);
304
305 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100306 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500307 2, 1);
308 break;
309
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600310 case OP_31_XOP_STHUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500311 rs = get_rs(inst);
312 ra = get_ra(inst);
313 rb = get_rb(inst);
314
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100315 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500316 if (ra)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100317 ea += kvmppc_get_gpr(vcpu, ra);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500318
319 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100320 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500321 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100322 kvmppc_set_gpr(vcpu, ra, ea);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500323 break;
324
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600325 case OP_31_XOP_MTSPR:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500326 sprn = get_sprn(inst);
327 rs = get_rs(inst);
328 switch (sprn) {
329 case SPRN_SRR0:
Alexander Grafde7906c2010-07-29 14:47:46 +0200330 vcpu->arch.shared->srr0 = kvmppc_get_gpr(vcpu, rs);
331 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500332 case SPRN_SRR1:
Alexander Grafde7906c2010-07-29 14:47:46 +0200333 vcpu->arch.shared->srr1 = kvmppc_get_gpr(vcpu, rs);
334 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500335
336 /* XXX We need to context-switch the timebase for
337 * watchdog and FIT. */
338 case SPRN_TBWL: break;
339 case SPRN_TBWU: break;
340
Alexander Graf513579e2009-10-30 05:47:16 +0000341 case SPRN_MSSSR0: break;
342
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500343 case SPRN_DEC:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100344 vcpu->arch.dec = kvmppc_get_gpr(vcpu, rs);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500345 kvmppc_emulate_dec(vcpu);
346 break;
347
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500348 case SPRN_SPRG0:
Alexander Grafa73a9592010-07-29 14:47:47 +0200349 vcpu->arch.shared->sprg0 = kvmppc_get_gpr(vcpu, rs);
350 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500351 case SPRN_SPRG1:
Alexander Grafa73a9592010-07-29 14:47:47 +0200352 vcpu->arch.shared->sprg1 = kvmppc_get_gpr(vcpu, rs);
353 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500354 case SPRN_SPRG2:
Alexander Grafa73a9592010-07-29 14:47:47 +0200355 vcpu->arch.shared->sprg2 = kvmppc_get_gpr(vcpu, rs);
356 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500357 case SPRN_SPRG3:
Alexander Grafa73a9592010-07-29 14:47:47 +0200358 vcpu->arch.shared->sprg3 = kvmppc_get_gpr(vcpu, rs);
359 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500360
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500361 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600362 emulated = kvmppc_core_emulate_mtspr(vcpu, sprn, rs);
363 if (emulated == EMULATE_FAIL)
364 printk("mtspr: unknown spr %x\n", sprn);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500365 break;
366 }
Scott Wood49ea0692011-03-28 15:01:24 -0500367 kvmppc_set_exit_type(vcpu, EMULATED_MTSPR_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500368 break;
369
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600370 case OP_31_XOP_DCBI:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500371 /* Do nothing. The guest is performing dcbi because
372 * hardware DMA is not snooped by the dcache, but
373 * emulated DMA either goes through the dcache as
374 * normal writes, or the host kernel has handled dcache
375 * coherence. */
376 break;
377
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600378 case OP_31_XOP_LWBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500379 rt = get_rt(inst);
380 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 0);
381 break;
382
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600383 case OP_31_XOP_TLBSYNC:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500384 break;
385
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600386 case OP_31_XOP_STWBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500387 rs = get_rs(inst);
388 ra = get_ra(inst);
389 rb = get_rb(inst);
390
391 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100392 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500393 4, 0);
394 break;
395
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600396 case OP_31_XOP_LHBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500397 rt = get_rt(inst);
398 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 0);
399 break;
400
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600401 case OP_31_XOP_STHBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500402 rs = get_rs(inst);
403 ra = get_ra(inst);
404 rb = get_rb(inst);
405
406 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100407 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500408 2, 0);
409 break;
410
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500411 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600412 /* Attempt core-specific emulation below. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500413 emulated = EMULATE_FAIL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500414 }
415 break;
416
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600417 case OP_LWZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500418 rt = get_rt(inst);
419 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
420 break;
421
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600422 case OP_LWZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500423 ra = get_ra(inst);
424 rt = get_rt(inst);
425 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100426 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500427 break;
428
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600429 case OP_LBZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500430 rt = get_rt(inst);
431 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
432 break;
433
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600434 case OP_LBZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500435 ra = get_ra(inst);
436 rt = get_rt(inst);
437 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100438 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500439 break;
440
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600441 case OP_STW:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500442 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100443 emulated = kvmppc_handle_store(run, vcpu,
444 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500445 4, 1);
446 break;
447
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600448 case OP_STWU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500449 ra = get_ra(inst);
450 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100451 emulated = kvmppc_handle_store(run, vcpu,
452 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500453 4, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100454 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500455 break;
456
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600457 case OP_STB:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500458 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100459 emulated = kvmppc_handle_store(run, vcpu,
460 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500461 1, 1);
462 break;
463
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600464 case OP_STBU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500465 ra = get_ra(inst);
466 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100467 emulated = kvmppc_handle_store(run, vcpu,
468 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500469 1, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100470 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500471 break;
472
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600473 case OP_LHZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500474 rt = get_rt(inst);
475 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
476 break;
477
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600478 case OP_LHZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500479 ra = get_ra(inst);
480 rt = get_rt(inst);
481 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100482 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500483 break;
484
Alexander Graf3587d532010-02-19 11:00:30 +0100485 case OP_LHA:
486 rt = get_rt(inst);
487 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
488 break;
489
490 case OP_LHAU:
491 ra = get_ra(inst);
492 rt = get_rt(inst);
493 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
494 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
495 break;
496
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600497 case OP_STH:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500498 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100499 emulated = kvmppc_handle_store(run, vcpu,
500 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500501 2, 1);
502 break;
503
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600504 case OP_STHU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500505 ra = get_ra(inst);
506 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100507 emulated = kvmppc_handle_store(run, vcpu,
508 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500509 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100510 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500511 break;
512
513 default:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500514 emulated = EMULATE_FAIL;
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600515 }
516
517 if (emulated == EMULATE_FAIL) {
518 emulated = kvmppc_core_emulate_op(run, vcpu, inst, &advance);
Alexander Graf37f5bca2010-02-19 11:00:31 +0100519 if (emulated == EMULATE_AGAIN) {
520 advance = 0;
521 } else if (emulated == EMULATE_FAIL) {
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600522 advance = 0;
523 printk(KERN_ERR "Couldn't emulate instruction 0x%08x "
524 "(op %d xop %d)\n", inst, get_op(inst), get_xop(inst));
Alexander Graf5f2b1052010-01-10 03:27:32 +0100525 kvmppc_core_queue_program(vcpu, 0);
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600526 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500527 }
528
Alexander Grafc7f38f42010-04-16 00:11:40 +0200529 trace_kvm_ppc_instr(inst, kvmppc_get_pc(vcpu), emulated);
Christian Ehrhardt3b4bd792008-07-14 14:00:04 +0200530
Alexander Grafc7f38f42010-04-16 00:11:40 +0200531 /* Advance past emulated instruction. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500532 if (advance)
Alexander Grafc7f38f42010-04-16 00:11:40 +0200533 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) + 4);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500534
535 return emulated;
536}