blob: a27d4dc3b4a3bd0b06b1a36f4fe5c160f7eb414f [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
Scott Wooddfd4d472011-11-17 12:39:59 +000016 * Copyright 2011 Freescale Semiconductor, Inc.
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050017 *
18 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
19 */
20
21#include <linux/jiffies.h>
Alexander Graf544c6762009-11-02 12:02:31 +000022#include <linux/hrtimer.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050023#include <linux/types.h>
24#include <linux/string.h>
25#include <linux/kvm_host.h>
Bharat Bhushan6e359942012-04-18 06:01:19 +000026#include <linux/clockchips.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050027
Hollis Blanchard75f74f02008-11-05 09:36:16 -060028#include <asm/reg.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050029#include <asm/time.h>
30#include <asm/byteorder.h>
31#include <asm/kvm_ppc.h>
Hollis Blanchardc381a042008-11-05 09:36:15 -060032#include <asm/disassemble.h>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060033#include "timing.h"
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030034#include "trace.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050035
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060036#define OP_TRAP 3
Alexander Graf513579e2009-10-30 05:47:16 +000037#define OP_TRAP_64 2
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060038
Alexander Graf6df79df2012-03-13 22:15:45 +010039#define OP_31_XOP_TRAP 4
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060040#define OP_31_XOP_LWZX 23
Alexander Graf6df79df2012-03-13 22:15:45 +010041#define OP_31_XOP_TRAP_64 68
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060042#define OP_31_XOP_LBZX 87
43#define OP_31_XOP_STWX 151
44#define OP_31_XOP_STBX 215
Alexander Graf1c85e732010-03-24 21:48:27 +010045#define OP_31_XOP_LBZUX 119
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060046#define OP_31_XOP_STBUX 247
47#define OP_31_XOP_LHZX 279
48#define OP_31_XOP_LHZUX 311
49#define OP_31_XOP_MFSPR 339
Alexander Graf1c85e732010-03-24 21:48:27 +010050#define OP_31_XOP_LHAX 343
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060051#define OP_31_XOP_STHX 407
52#define OP_31_XOP_STHUX 439
53#define OP_31_XOP_MTSPR 467
54#define OP_31_XOP_DCBI 470
55#define OP_31_XOP_LWBRX 534
56#define OP_31_XOP_TLBSYNC 566
57#define OP_31_XOP_STWBRX 662
58#define OP_31_XOP_LHBRX 790
59#define OP_31_XOP_STHBRX 918
60
61#define OP_LWZ 32
62#define OP_LWZU 33
63#define OP_LBZ 34
64#define OP_LBZU 35
65#define OP_STW 36
66#define OP_STWU 37
67#define OP_STB 38
68#define OP_STBU 39
69#define OP_LHZ 40
70#define OP_LHZU 41
Alexander Graf3587d532010-02-19 11:00:30 +010071#define OP_LHA 42
72#define OP_LHAU 43
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060073#define OP_STH 44
74#define OP_STHU 45
75
Hollis Blanchard75f74f02008-11-05 09:36:16 -060076void kvmppc_emulate_dec(struct kvm_vcpu *vcpu)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050077{
Alexander Graf544c6762009-11-02 12:02:31 +000078 unsigned long dec_nsec;
Bharat Bhushandc2babfe2011-10-19 09:46:06 +053079 unsigned long long dec_time;
Alexander Graf9a7a9b02009-10-30 05:47:15 +000080
Alexander Graf544c6762009-11-02 12:02:31 +000081 pr_debug("mtDEC: %x\n", vcpu->arch.dec);
Scott Wooddfd4d472011-11-17 12:39:59 +000082 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
83
Alexander Graf00c3a372010-04-16 00:11:42 +020084#ifdef CONFIG_PPC_BOOK3S
Alexander Graf7706664d2009-12-21 20:21:24 +010085 /* mtdec lowers the interrupt line when positive. */
86 kvmppc_core_dequeue_dec(vcpu);
87
Alexander Graf513579e2009-10-30 05:47:16 +000088 /* POWER4+ triggers a dec interrupt if the value is < 0 */
89 if (vcpu->arch.dec & 0x80000000) {
Alexander Graf513579e2009-10-30 05:47:16 +000090 kvmppc_core_queue_dec(vcpu);
91 return;
92 }
93#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050094
Scott Wooddfd4d472011-11-17 12:39:59 +000095#ifdef CONFIG_BOOKE
96 /* On BOOKE, DEC = 0 is as good as decrementer not enabled */
97 if (vcpu->arch.dec == 0)
98 return;
99#endif
100
101 /*
102 * The decrementer ticks at the same rate as the timebase, so
103 * that's how we convert the guest DEC value to the number of
104 * host ticks.
105 */
106
107 dec_time = vcpu->arch.dec;
Bharat Bhushan6e359942012-04-18 06:01:19 +0000108 /*
109 * Guest timebase ticks at the same frequency as host decrementer.
110 * So use the host decrementer calculations for decrementer emulation.
111 */
112 dec_time = dec_time << decrementer_clockevent.shift;
113 do_div(dec_time, decrementer_clockevent.mult);
Scott Wooddfd4d472011-11-17 12:39:59 +0000114 dec_nsec = do_div(dec_time, NSEC_PER_SEC);
115 hrtimer_start(&vcpu->arch.dec_timer,
116 ktime_set(dec_time, dec_nsec), HRTIMER_MODE_REL);
117 vcpu->arch.dec_jiffies = get_tb();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500118}
119
Scott Wood5ce941e2011-04-27 17:24:21 -0500120u32 kvmppc_get_dec(struct kvm_vcpu *vcpu, u64 tb)
121{
122 u64 jd = tb - vcpu->arch.dec_jiffies;
Scott Wooddfd4d472011-11-17 12:39:59 +0000123
124#ifdef CONFIG_BOOKE
125 if (vcpu->arch.dec < jd)
126 return 0;
127#endif
128
Scott Wood5ce941e2011-04-27 17:24:21 -0500129 return vcpu->arch.dec - jd;
130}
131
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500132/* XXX to do:
133 * lhax
134 * lhaux
135 * lswx
136 * lswi
137 * stswx
138 * stswi
139 * lha
140 * lhau
141 * lmw
142 * stmw
143 *
144 * XXX is_bigendian should depend on MMU mapping or MSR[LE]
145 */
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600146/* XXX Should probably auto-generate instruction decoding for a particular core
147 * from opcode tables in the future. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500148int kvmppc_emulate_instruction(struct kvm_run *run, struct kvm_vcpu *vcpu)
149{
Alexander Grafc7f38f42010-04-16 00:11:40 +0200150 u32 inst = kvmppc_get_last_inst(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500151 int ra;
152 int rb;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500153 int rs;
154 int rt;
155 int sprn;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500156 enum emulation_result emulated = EMULATE_DONE;
157 int advance = 1;
158
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600159 /* this default type might be overwritten by subcategories */
160 kvmppc_set_exit_type(vcpu, EMULATED_INST_EXITS);
161
Joe Perches689fd142010-09-11 19:10:53 +0000162 pr_debug("Emulating opcode %d / %d\n", get_op(inst), get_xop(inst));
Alexander Graf513579e2009-10-30 05:47:16 +0000163
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500164 switch (get_op(inst)) {
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600165 case OP_TRAP:
Alexander Graf00c3a372010-04-16 00:11:42 +0200166#ifdef CONFIG_PPC_BOOK3S
Alexander Graf513579e2009-10-30 05:47:16 +0000167 case OP_TRAP_64:
Alexander Graf25a8a022010-01-08 02:58:07 +0100168 kvmppc_core_queue_program(vcpu, SRR1_PROGTRAP);
Liu Yudaf5e272010-02-02 19:44:35 +0800169#else
Scott Woodb5904972011-11-08 18:23:30 -0600170 kvmppc_core_queue_program(vcpu,
171 vcpu->arch.shared->esr | ESR_PTR);
Liu Yudaf5e272010-02-02 19:44:35 +0800172#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500173 advance = 0;
174 break;
175
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500176 case 31:
177 switch (get_xop(inst)) {
178
Alexander Graf6df79df2012-03-13 22:15:45 +0100179 case OP_31_XOP_TRAP:
180#ifdef CONFIG_64BIT
181 case OP_31_XOP_TRAP_64:
182#endif
183#ifdef CONFIG_PPC_BOOK3S
184 kvmppc_core_queue_program(vcpu, SRR1_PROGTRAP);
185#else
186 kvmppc_core_queue_program(vcpu,
187 vcpu->arch.shared->esr | ESR_PTR);
188#endif
189 advance = 0;
190 break;
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600191 case OP_31_XOP_LWZX:
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500192 rt = get_rt(inst);
193 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
194 break;
195
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600196 case OP_31_XOP_LBZX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500197 rt = get_rt(inst);
198 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
199 break;
200
Alexander Graf1c85e732010-03-24 21:48:27 +0100201 case OP_31_XOP_LBZUX:
202 rt = get_rt(inst);
203 ra = get_ra(inst);
204 rb = get_rb(inst);
205
Alexander Graf1c85e732010-03-24 21:48:27 +0100206 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100207 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Alexander Graf1c85e732010-03-24 21:48:27 +0100208 break;
209
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600210 case OP_31_XOP_STWX:
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500211 rs = get_rs(inst);
212 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100213 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500214 4, 1);
215 break;
216
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600217 case OP_31_XOP_STBX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500218 rs = get_rs(inst);
219 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100220 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500221 1, 1);
222 break;
223
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600224 case OP_31_XOP_STBUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500225 rs = get_rs(inst);
226 ra = get_ra(inst);
227 rb = get_rb(inst);
228
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500229 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100230 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500231 1, 1);
Alexander Graf978b4fa2012-04-27 01:00:17 +0200232 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500233 break;
234
Alexander Graf1c85e732010-03-24 21:48:27 +0100235 case OP_31_XOP_LHAX:
236 rt = get_rt(inst);
237 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
238 break;
239
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600240 case OP_31_XOP_LHZX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500241 rt = get_rt(inst);
242 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
243 break;
244
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600245 case OP_31_XOP_LHZUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500246 rt = get_rt(inst);
247 ra = get_ra(inst);
248 rb = get_rb(inst);
249
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500250 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100251 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500252 break;
253
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600254 case OP_31_XOP_MFSPR:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500255 sprn = get_sprn(inst);
256 rt = get_rt(inst);
257
258 switch (sprn) {
259 case SPRN_SRR0:
Alexander Grafde7906c2010-07-29 14:47:46 +0200260 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->srr0);
261 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500262 case SPRN_SRR1:
Alexander Grafde7906c2010-07-29 14:47:46 +0200263 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->srr1);
264 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500265 case SPRN_PVR:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100266 kvmppc_set_gpr(vcpu, rt, vcpu->arch.pvr); break;
Liu Yu06579dd2009-06-05 14:54:31 +0800267 case SPRN_PIR:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100268 kvmppc_set_gpr(vcpu, rt, vcpu->vcpu_id); break;
Alexander Graf513579e2009-10-30 05:47:16 +0000269 case SPRN_MSSSR0:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100270 kvmppc_set_gpr(vcpu, rt, 0); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500271
272 /* Note: mftb and TBRL/TBWL are user-accessible, so
273 * the guest can always access the real TB anyways.
274 * In fact, we probably will never see these traps. */
275 case SPRN_TBWL:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100276 kvmppc_set_gpr(vcpu, rt, get_tb() >> 32); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500277 case SPRN_TBWU:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100278 kvmppc_set_gpr(vcpu, rt, get_tb()); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500279
280 case SPRN_SPRG0:
Alexander Grafa73a9592010-07-29 14:47:47 +0200281 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->sprg0);
282 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500283 case SPRN_SPRG1:
Alexander Grafa73a9592010-07-29 14:47:47 +0200284 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->sprg1);
285 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500286 case SPRN_SPRG2:
Alexander Grafa73a9592010-07-29 14:47:47 +0200287 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->sprg2);
288 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500289 case SPRN_SPRG3:
Alexander Grafa73a9592010-07-29 14:47:47 +0200290 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->sprg3);
291 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500292 /* Note: SPRG4-7 are user-readable, so we don't get
293 * a trap. */
294
Alexander Graf9a7a9b02009-10-30 05:47:15 +0000295 case SPRN_DEC:
296 {
Scott Wood5ce941e2011-04-27 17:24:21 -0500297 kvmppc_set_gpr(vcpu, rt,
298 kvmppc_get_dec(vcpu, get_tb()));
Alexander Graf9a7a9b02009-10-30 05:47:15 +0000299 break;
300 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500301 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600302 emulated = kvmppc_core_emulate_mfspr(vcpu, sprn, rt);
303 if (emulated == EMULATE_FAIL) {
304 printk("mfspr: unknown spr %x\n", sprn);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100305 kvmppc_set_gpr(vcpu, rt, 0);
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600306 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500307 break;
308 }
Scott Wood49ea0692011-03-28 15:01:24 -0500309 kvmppc_set_exit_type(vcpu, EMULATED_MFSPR_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500310 break;
311
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600312 case OP_31_XOP_STHX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500313 rs = get_rs(inst);
314 ra = get_ra(inst);
315 rb = get_rb(inst);
316
317 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100318 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500319 2, 1);
320 break;
321
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600322 case OP_31_XOP_STHUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500323 rs = get_rs(inst);
324 ra = get_ra(inst);
325 rb = get_rb(inst);
326
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500327 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100328 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500329 2, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100330 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500331 break;
332
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600333 case OP_31_XOP_MTSPR:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500334 sprn = get_sprn(inst);
335 rs = get_rs(inst);
336 switch (sprn) {
337 case SPRN_SRR0:
Alexander Grafde7906c2010-07-29 14:47:46 +0200338 vcpu->arch.shared->srr0 = kvmppc_get_gpr(vcpu, rs);
339 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500340 case SPRN_SRR1:
Alexander Grafde7906c2010-07-29 14:47:46 +0200341 vcpu->arch.shared->srr1 = kvmppc_get_gpr(vcpu, rs);
342 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500343
344 /* XXX We need to context-switch the timebase for
345 * watchdog and FIT. */
346 case SPRN_TBWL: break;
347 case SPRN_TBWU: break;
348
Alexander Graf513579e2009-10-30 05:47:16 +0000349 case SPRN_MSSSR0: break;
350
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500351 case SPRN_DEC:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100352 vcpu->arch.dec = kvmppc_get_gpr(vcpu, rs);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500353 kvmppc_emulate_dec(vcpu);
354 break;
355
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500356 case SPRN_SPRG0:
Alexander Grafa73a9592010-07-29 14:47:47 +0200357 vcpu->arch.shared->sprg0 = kvmppc_get_gpr(vcpu, rs);
358 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500359 case SPRN_SPRG1:
Alexander Grafa73a9592010-07-29 14:47:47 +0200360 vcpu->arch.shared->sprg1 = kvmppc_get_gpr(vcpu, rs);
361 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500362 case SPRN_SPRG2:
Alexander Grafa73a9592010-07-29 14:47:47 +0200363 vcpu->arch.shared->sprg2 = kvmppc_get_gpr(vcpu, rs);
364 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500365 case SPRN_SPRG3:
Alexander Grafa73a9592010-07-29 14:47:47 +0200366 vcpu->arch.shared->sprg3 = kvmppc_get_gpr(vcpu, rs);
367 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500368
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500369 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600370 emulated = kvmppc_core_emulate_mtspr(vcpu, sprn, rs);
371 if (emulated == EMULATE_FAIL)
372 printk("mtspr: unknown spr %x\n", sprn);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500373 break;
374 }
Scott Wood49ea0692011-03-28 15:01:24 -0500375 kvmppc_set_exit_type(vcpu, EMULATED_MTSPR_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500376 break;
377
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600378 case OP_31_XOP_DCBI:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500379 /* Do nothing. The guest is performing dcbi because
380 * hardware DMA is not snooped by the dcache, but
381 * emulated DMA either goes through the dcache as
382 * normal writes, or the host kernel has handled dcache
383 * coherence. */
384 break;
385
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600386 case OP_31_XOP_LWBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500387 rt = get_rt(inst);
388 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 0);
389 break;
390
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600391 case OP_31_XOP_TLBSYNC:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500392 break;
393
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600394 case OP_31_XOP_STWBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500395 rs = get_rs(inst);
396 ra = get_ra(inst);
397 rb = get_rb(inst);
398
399 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100400 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500401 4, 0);
402 break;
403
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600404 case OP_31_XOP_LHBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500405 rt = get_rt(inst);
406 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 0);
407 break;
408
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600409 case OP_31_XOP_STHBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500410 rs = get_rs(inst);
411 ra = get_ra(inst);
412 rb = get_rb(inst);
413
414 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100415 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500416 2, 0);
417 break;
418
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500419 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600420 /* Attempt core-specific emulation below. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500421 emulated = EMULATE_FAIL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500422 }
423 break;
424
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600425 case OP_LWZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500426 rt = get_rt(inst);
427 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
428 break;
429
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600430 case OP_LWZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500431 ra = get_ra(inst);
432 rt = get_rt(inst);
433 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100434 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500435 break;
436
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600437 case OP_LBZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500438 rt = get_rt(inst);
439 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
440 break;
441
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600442 case OP_LBZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500443 ra = get_ra(inst);
444 rt = get_rt(inst);
445 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100446 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500447 break;
448
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600449 case OP_STW:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500450 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);
454 break;
455
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600456 case OP_STWU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500457 ra = get_ra(inst);
458 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 4, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100462 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500463 break;
464
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600465 case OP_STB:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500466 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);
470 break;
471
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600472 case OP_STBU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500473 ra = get_ra(inst);
474 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100475 emulated = kvmppc_handle_store(run, vcpu,
476 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500477 1, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100478 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500479 break;
480
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600481 case OP_LHZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500482 rt = get_rt(inst);
483 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
484 break;
485
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600486 case OP_LHZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500487 ra = get_ra(inst);
488 rt = get_rt(inst);
489 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100490 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500491 break;
492
Alexander Graf3587d532010-02-19 11:00:30 +0100493 case OP_LHA:
494 rt = get_rt(inst);
495 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
496 break;
497
498 case OP_LHAU:
499 ra = get_ra(inst);
500 rt = get_rt(inst);
501 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100502 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Alexander Graf3587d532010-02-19 11:00:30 +0100503 break;
504
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600505 case OP_STH:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500506 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);
510 break;
511
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600512 case OP_STHU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500513 ra = get_ra(inst);
514 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100515 emulated = kvmppc_handle_store(run, vcpu,
516 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500517 2, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100518 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500519 break;
520
521 default:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500522 emulated = EMULATE_FAIL;
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600523 }
524
525 if (emulated == EMULATE_FAIL) {
526 emulated = kvmppc_core_emulate_op(run, vcpu, inst, &advance);
Alexander Graf37f5bca2010-02-19 11:00:31 +0100527 if (emulated == EMULATE_AGAIN) {
528 advance = 0;
529 } else if (emulated == EMULATE_FAIL) {
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600530 advance = 0;
531 printk(KERN_ERR "Couldn't emulate instruction 0x%08x "
532 "(op %d xop %d)\n", inst, get_op(inst), get_xop(inst));
Alexander Graf5f2b1052010-01-10 03:27:32 +0100533 kvmppc_core_queue_program(vcpu, 0);
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600534 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500535 }
536
Alexander Grafc7f38f42010-04-16 00:11:40 +0200537 trace_kvm_ppc_instr(inst, kvmppc_get_pc(vcpu), emulated);
Christian Ehrhardt3b4bd792008-07-14 14:00:04 +0200538
Alexander Grafc7f38f42010-04-16 00:11:40 +0200539 /* Advance past emulated instruction. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500540 if (advance)
Alexander Grafc7f38f42010-04-16 00:11:40 +0200541 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) + 4);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500542
543 return emulated;
544}