blob: da86d9ba34761d27af1714ecacbb5badc312696a [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>
Hongtao Jia9123c5e2013-04-28 13:20:07 +080033#include <asm/ppc-opcode.h>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060034#include "timing.h"
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030035#include "trace.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050036
Hollis Blanchard75f74f02008-11-05 09:36:16 -060037void kvmppc_emulate_dec(struct kvm_vcpu *vcpu)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050038{
Alexander Graf544c6762009-11-02 12:02:31 +000039 unsigned long dec_nsec;
Bharat Bhushandc2babfe2011-10-19 09:46:06 +053040 unsigned long long dec_time;
Alexander Graf9a7a9b02009-10-30 05:47:15 +000041
Alexander Graf544c6762009-11-02 12:02:31 +000042 pr_debug("mtDEC: %x\n", vcpu->arch.dec);
Scott Wooddfd4d472011-11-17 12:39:59 +000043 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
44
Alexander Graf00c3a372010-04-16 00:11:42 +020045#ifdef CONFIG_PPC_BOOK3S
Alexander Graf7706664d2009-12-21 20:21:24 +010046 /* mtdec lowers the interrupt line when positive. */
47 kvmppc_core_dequeue_dec(vcpu);
48
Alexander Graf513579e2009-10-30 05:47:16 +000049 /* POWER4+ triggers a dec interrupt if the value is < 0 */
50 if (vcpu->arch.dec & 0x80000000) {
Alexander Graf513579e2009-10-30 05:47:16 +000051 kvmppc_core_queue_dec(vcpu);
52 return;
53 }
54#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050055
Scott Wooddfd4d472011-11-17 12:39:59 +000056#ifdef CONFIG_BOOKE
57 /* On BOOKE, DEC = 0 is as good as decrementer not enabled */
58 if (vcpu->arch.dec == 0)
59 return;
60#endif
61
62 /*
63 * The decrementer ticks at the same rate as the timebase, so
64 * that's how we convert the guest DEC value to the number of
65 * host ticks.
66 */
67
68 dec_time = vcpu->arch.dec;
Bharat Bhushan6e359942012-04-18 06:01:19 +000069 /*
70 * Guest timebase ticks at the same frequency as host decrementer.
71 * So use the host decrementer calculations for decrementer emulation.
72 */
73 dec_time = dec_time << decrementer_clockevent.shift;
74 do_div(dec_time, decrementer_clockevent.mult);
Scott Wooddfd4d472011-11-17 12:39:59 +000075 dec_nsec = do_div(dec_time, NSEC_PER_SEC);
76 hrtimer_start(&vcpu->arch.dec_timer,
77 ktime_set(dec_time, dec_nsec), HRTIMER_MODE_REL);
78 vcpu->arch.dec_jiffies = get_tb();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050079}
80
Scott Wood5ce941e2011-04-27 17:24:21 -050081u32 kvmppc_get_dec(struct kvm_vcpu *vcpu, u64 tb)
82{
83 u64 jd = tb - vcpu->arch.dec_jiffies;
Scott Wooddfd4d472011-11-17 12:39:59 +000084
85#ifdef CONFIG_BOOKE
86 if (vcpu->arch.dec < jd)
87 return 0;
88#endif
89
Scott Wood5ce941e2011-04-27 17:24:21 -050090 return vcpu->arch.dec - jd;
91}
92
Alexander Graf388cf9e2012-10-06 23:19:01 +020093static int kvmppc_emulate_mtspr(struct kvm_vcpu *vcpu, int sprn, int rs)
94{
95 enum emulation_result emulated = EMULATE_DONE;
96 ulong spr_val = kvmppc_get_gpr(vcpu, rs);
97
98 switch (sprn) {
99 case SPRN_SRR0:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200100 kvmppc_set_srr0(vcpu, spr_val);
Alexander Graf388cf9e2012-10-06 23:19:01 +0200101 break;
102 case SPRN_SRR1:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200103 kvmppc_set_srr1(vcpu, spr_val);
Alexander Graf388cf9e2012-10-06 23:19:01 +0200104 break;
105
106 /* XXX We need to context-switch the timebase for
107 * watchdog and FIT. */
108 case SPRN_TBWL: break;
109 case SPRN_TBWU: break;
110
Alexander Graf388cf9e2012-10-06 23:19:01 +0200111 case SPRN_DEC:
112 vcpu->arch.dec = spr_val;
113 kvmppc_emulate_dec(vcpu);
114 break;
115
116 case SPRN_SPRG0:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200117 kvmppc_set_sprg0(vcpu, spr_val);
Alexander Graf388cf9e2012-10-06 23:19:01 +0200118 break;
119 case SPRN_SPRG1:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200120 kvmppc_set_sprg1(vcpu, spr_val);
Alexander Graf388cf9e2012-10-06 23:19:01 +0200121 break;
122 case SPRN_SPRG2:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200123 kvmppc_set_sprg2(vcpu, spr_val);
Alexander Graf388cf9e2012-10-06 23:19:01 +0200124 break;
125 case SPRN_SPRG3:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200126 kvmppc_set_sprg3(vcpu, spr_val);
Alexander Graf388cf9e2012-10-06 23:19:01 +0200127 break;
128
Alexander Grafa3ff5fb2013-06-27 01:07:15 +0200129 /* PIR can legally be written, but we ignore it */
130 case SPRN_PIR: break;
131
Alexander Graf388cf9e2012-10-06 23:19:01 +0200132 default:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530133 emulated = vcpu->kvm->arch.kvm_ops->emulate_mtspr(vcpu, sprn,
134 spr_val);
Alexander Graf388cf9e2012-10-06 23:19:01 +0200135 if (emulated == EMULATE_FAIL)
136 printk(KERN_INFO "mtspr: unknown spr "
137 "0x%x\n", sprn);
138 break;
139 }
140
141 kvmppc_set_exit_type(vcpu, EMULATED_MTSPR_EXITS);
142
143 return emulated;
144}
145
146static int kvmppc_emulate_mfspr(struct kvm_vcpu *vcpu, int sprn, int rt)
147{
148 enum emulation_result emulated = EMULATE_DONE;
149 ulong spr_val = 0;
150
151 switch (sprn) {
152 case SPRN_SRR0:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200153 spr_val = kvmppc_get_srr0(vcpu);
Alexander Graf388cf9e2012-10-06 23:19:01 +0200154 break;
155 case SPRN_SRR1:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200156 spr_val = kvmppc_get_srr1(vcpu);
Alexander Graf388cf9e2012-10-06 23:19:01 +0200157 break;
158 case SPRN_PVR:
159 spr_val = vcpu->arch.pvr;
160 break;
161 case SPRN_PIR:
162 spr_val = vcpu->vcpu_id;
163 break;
Alexander Graf388cf9e2012-10-06 23:19:01 +0200164
165 /* Note: mftb and TBRL/TBWL are user-accessible, so
166 * the guest can always access the real TB anyways.
167 * In fact, we probably will never see these traps. */
168 case SPRN_TBWL:
169 spr_val = get_tb() >> 32;
170 break;
171 case SPRN_TBWU:
172 spr_val = get_tb();
173 break;
174
175 case SPRN_SPRG0:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200176 spr_val = kvmppc_get_sprg0(vcpu);
Alexander Graf388cf9e2012-10-06 23:19:01 +0200177 break;
178 case SPRN_SPRG1:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200179 spr_val = kvmppc_get_sprg1(vcpu);
Alexander Graf388cf9e2012-10-06 23:19:01 +0200180 break;
181 case SPRN_SPRG2:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200182 spr_val = kvmppc_get_sprg2(vcpu);
Alexander Graf388cf9e2012-10-06 23:19:01 +0200183 break;
184 case SPRN_SPRG3:
Alexander Graf5deb8e72014-04-24 13:46:24 +0200185 spr_val = kvmppc_get_sprg3(vcpu);
Alexander Graf388cf9e2012-10-06 23:19:01 +0200186 break;
187 /* Note: SPRG4-7 are user-readable, so we don't get
188 * a trap. */
189
190 case SPRN_DEC:
191 spr_val = kvmppc_get_dec(vcpu, get_tb());
192 break;
193 default:
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530194 emulated = vcpu->kvm->arch.kvm_ops->emulate_mfspr(vcpu, sprn,
195 &spr_val);
Alexander Graf388cf9e2012-10-06 23:19:01 +0200196 if (unlikely(emulated == EMULATE_FAIL)) {
197 printk(KERN_INFO "mfspr: unknown spr "
198 "0x%x\n", sprn);
199 }
200 break;
201 }
202
203 if (emulated == EMULATE_DONE)
204 kvmppc_set_gpr(vcpu, rt, spr_val);
205 kvmppc_set_exit_type(vcpu, EMULATED_MFSPR_EXITS);
206
207 return emulated;
208}
209
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500210/* XXX to do:
211 * lhax
212 * lhaux
213 * lswx
214 * lswi
215 * stswx
216 * stswi
217 * lha
218 * lhau
219 * lmw
220 * stmw
221 *
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500222 */
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600223/* XXX Should probably auto-generate instruction decoding for a particular core
224 * from opcode tables in the future. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500225int kvmppc_emulate_instruction(struct kvm_run *run, struct kvm_vcpu *vcpu)
226{
Alexander Grafc7f38f42010-04-16 00:11:40 +0200227 u32 inst = kvmppc_get_last_inst(vcpu);
Alexander Grafc46dc9a2012-05-04 14:01:33 +0200228 int ra = get_ra(inst);
229 int rs = get_rs(inst);
230 int rt = get_rt(inst);
231 int sprn = get_sprn(inst);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500232 enum emulation_result emulated = EMULATE_DONE;
233 int advance = 1;
234
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600235 /* this default type might be overwritten by subcategories */
236 kvmppc_set_exit_type(vcpu, EMULATED_INST_EXITS);
237
Joe Perches689fd142010-09-11 19:10:53 +0000238 pr_debug("Emulating opcode %d / %d\n", get_op(inst), get_xop(inst));
Alexander Graf513579e2009-10-30 05:47:16 +0000239
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500240 switch (get_op(inst)) {
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600241 case OP_TRAP:
Alexander Graf00c3a372010-04-16 00:11:42 +0200242#ifdef CONFIG_PPC_BOOK3S
Alexander Graf513579e2009-10-30 05:47:16 +0000243 case OP_TRAP_64:
Alexander Graf25a8a022010-01-08 02:58:07 +0100244 kvmppc_core_queue_program(vcpu, SRR1_PROGTRAP);
Liu Yudaf5e272010-02-02 19:44:35 +0800245#else
Scott Woodb5904972011-11-08 18:23:30 -0600246 kvmppc_core_queue_program(vcpu,
247 vcpu->arch.shared->esr | ESR_PTR);
Liu Yudaf5e272010-02-02 19:44:35 +0800248#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500249 advance = 0;
250 break;
251
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500252 case 31:
253 switch (get_xop(inst)) {
254
Alexander Graf6df79df2012-03-13 22:15:45 +0100255 case OP_31_XOP_TRAP:
256#ifdef CONFIG_64BIT
257 case OP_31_XOP_TRAP_64:
258#endif
259#ifdef CONFIG_PPC_BOOK3S
260 kvmppc_core_queue_program(vcpu, SRR1_PROGTRAP);
261#else
262 kvmppc_core_queue_program(vcpu,
263 vcpu->arch.shared->esr | ESR_PTR);
264#endif
265 advance = 0;
266 break;
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600267 case OP_31_XOP_LWZX:
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500268 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
269 break;
270
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600271 case OP_31_XOP_LBZX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500272 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
273 break;
274
Alexander Graf1c85e732010-03-24 21:48:27 +0100275 case OP_31_XOP_LBZUX:
Alexander Graf1c85e732010-03-24 21:48:27 +0100276 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100277 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Alexander Graf1c85e732010-03-24 21:48:27 +0100278 break;
279
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600280 case OP_31_XOP_STWX:
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500281 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100282 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500283 4, 1);
284 break;
285
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600286 case OP_31_XOP_STBX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500287 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100288 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500289 1, 1);
290 break;
291
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600292 case OP_31_XOP_STBUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500293 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100294 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500295 1, 1);
Alexander Graf978b4fa2012-04-27 01:00:17 +0200296 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500297 break;
298
Alexander Graf1c85e732010-03-24 21:48:27 +0100299 case OP_31_XOP_LHAX:
Alexander Graf1c85e732010-03-24 21:48:27 +0100300 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
301 break;
302
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600303 case OP_31_XOP_LHZX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500304 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
305 break;
306
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600307 case OP_31_XOP_LHZUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500308 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100309 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500310 break;
311
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600312 case OP_31_XOP_MFSPR:
Alexander Graf388cf9e2012-10-06 23:19:01 +0200313 emulated = kvmppc_emulate_mfspr(vcpu, sprn, rt);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500314 break;
315
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600316 case OP_31_XOP_STHX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500317 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 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100324 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500325 2, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100326 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500327 break;
328
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600329 case OP_31_XOP_MTSPR:
Alexander Graf388cf9e2012-10-06 23:19:01 +0200330 emulated = kvmppc_emulate_mtspr(vcpu, sprn, rs);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500331 break;
332
Stuart Yoderc32498e2013-04-09 10:36:23 +0000333 case OP_31_XOP_DCBST:
Alexander Grafd3286142013-01-17 13:50:25 +0100334 case OP_31_XOP_DCBF:
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600335 case OP_31_XOP_DCBI:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500336 /* Do nothing. The guest is performing dcbi because
337 * hardware DMA is not snooped by the dcache, but
338 * emulated DMA either goes through the dcache as
339 * normal writes, or the host kernel has handled dcache
340 * coherence. */
341 break;
342
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600343 case OP_31_XOP_LWBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500344 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 0);
345 break;
346
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600347 case OP_31_XOP_TLBSYNC:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500348 break;
349
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600350 case OP_31_XOP_STWBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500351 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100352 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500353 4, 0);
354 break;
355
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600356 case OP_31_XOP_LHBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500357 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 0);
358 break;
359
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600360 case OP_31_XOP_STHBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500361 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100362 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500363 2, 0);
364 break;
365
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500366 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600367 /* Attempt core-specific emulation below. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500368 emulated = EMULATE_FAIL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500369 }
370 break;
371
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600372 case OP_LWZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500373 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
374 break;
375
Varun Sethi6c5cb732012-06-18 12:14:55 +0000376 /* TBD: Add support for other 64 bit load variants like ldu, ldux, ldx etc. */
377 case OP_LD:
378 rt = get_rt(inst);
379 emulated = kvmppc_handle_load(run, vcpu, rt, 8, 1);
380 break;
381
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600382 case OP_LWZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500383 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100384 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500385 break;
386
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600387 case OP_LBZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500388 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
389 break;
390
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600391 case OP_LBZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500392 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100393 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500394 break;
395
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600396 case OP_STW:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100397 emulated = kvmppc_handle_store(run, vcpu,
398 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500399 4, 1);
400 break;
401
Varun Sethi6c5cb732012-06-18 12:14:55 +0000402 /* TBD: Add support for other 64 bit store variants like stdu, stdux, stdx etc. */
403 case OP_STD:
404 rs = get_rs(inst);
405 emulated = kvmppc_handle_store(run, vcpu,
406 kvmppc_get_gpr(vcpu, rs),
407 8, 1);
408 break;
409
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600410 case OP_STWU:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100411 emulated = kvmppc_handle_store(run, vcpu,
412 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500413 4, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100414 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500415 break;
416
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600417 case OP_STB:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100418 emulated = kvmppc_handle_store(run, vcpu,
419 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500420 1, 1);
421 break;
422
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600423 case OP_STBU:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100424 emulated = kvmppc_handle_store(run, vcpu,
425 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500426 1, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100427 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500428 break;
429
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600430 case OP_LHZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500431 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
432 break;
433
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600434 case OP_LHZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500435 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100436 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500437 break;
438
Alexander Graf3587d532010-02-19 11:00:30 +0100439 case OP_LHA:
Alexander Graf3587d532010-02-19 11:00:30 +0100440 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
441 break;
442
443 case OP_LHAU:
Alexander Graf3587d532010-02-19 11:00:30 +0100444 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100445 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Alexander Graf3587d532010-02-19 11:00:30 +0100446 break;
447
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600448 case OP_STH:
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 2, 1);
452 break;
453
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600454 case OP_STHU:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100455 emulated = kvmppc_handle_store(run, vcpu,
456 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500457 2, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100458 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500459 break;
460
461 default:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500462 emulated = EMULATE_FAIL;
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600463 }
464
465 if (emulated == EMULATE_FAIL) {
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530466 emulated = vcpu->kvm->arch.kvm_ops->emulate_op(run, vcpu, inst,
467 &advance);
Alexander Graf37f5bca2010-02-19 11:00:31 +0100468 if (emulated == EMULATE_AGAIN) {
469 advance = 0;
470 } else if (emulated == EMULATE_FAIL) {
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600471 advance = 0;
472 printk(KERN_ERR "Couldn't emulate instruction 0x%08x "
473 "(op %d xop %d)\n", inst, get_op(inst), get_xop(inst));
Alexander Graf5f2b1052010-01-10 03:27:32 +0100474 kvmppc_core_queue_program(vcpu, 0);
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600475 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500476 }
477
Alexander Grafc7f38f42010-04-16 00:11:40 +0200478 trace_kvm_ppc_instr(inst, kvmppc_get_pc(vcpu), emulated);
Christian Ehrhardt3b4bd792008-07-14 14:00:04 +0200479
Alexander Grafc7f38f42010-04-16 00:11:40 +0200480 /* Advance past emulated instruction. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500481 if (advance)
Alexander Grafc7f38f42010-04-16 00:11:40 +0200482 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) + 4);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500483
484 return emulated;
485}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530486EXPORT_SYMBOL_GPL(kvmppc_emulate_instruction);