blob: b0855e5d8905ee50e6422ca9edfc37aa952f6b21 [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
Varun Sethi6c5cb732012-06-18 12:14:55 +000062#define OP_LD 58
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060063#define OP_LWZU 33
64#define OP_LBZ 34
65#define OP_LBZU 35
66#define OP_STW 36
67#define OP_STWU 37
Varun Sethi6c5cb732012-06-18 12:14:55 +000068#define OP_STD 62
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060069#define OP_STB 38
70#define OP_STBU 39
71#define OP_LHZ 40
72#define OP_LHZU 41
Alexander Graf3587d532010-02-19 11:00:30 +010073#define OP_LHA 42
74#define OP_LHAU 43
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060075#define OP_STH 44
76#define OP_STHU 45
77
Hollis Blanchard75f74f02008-11-05 09:36:16 -060078void kvmppc_emulate_dec(struct kvm_vcpu *vcpu)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050079{
Alexander Graf544c6762009-11-02 12:02:31 +000080 unsigned long dec_nsec;
Bharat Bhushandc2babfe2011-10-19 09:46:06 +053081 unsigned long long dec_time;
Alexander Graf9a7a9b02009-10-30 05:47:15 +000082
Alexander Graf544c6762009-11-02 12:02:31 +000083 pr_debug("mtDEC: %x\n", vcpu->arch.dec);
Scott Wooddfd4d472011-11-17 12:39:59 +000084 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
85
Alexander Graf00c3a372010-04-16 00:11:42 +020086#ifdef CONFIG_PPC_BOOK3S
Alexander Graf7706664d2009-12-21 20:21:24 +010087 /* mtdec lowers the interrupt line when positive. */
88 kvmppc_core_dequeue_dec(vcpu);
89
Alexander Graf513579e2009-10-30 05:47:16 +000090 /* POWER4+ triggers a dec interrupt if the value is < 0 */
91 if (vcpu->arch.dec & 0x80000000) {
Alexander Graf513579e2009-10-30 05:47:16 +000092 kvmppc_core_queue_dec(vcpu);
93 return;
94 }
95#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050096
Scott Wooddfd4d472011-11-17 12:39:59 +000097#ifdef CONFIG_BOOKE
98 /* On BOOKE, DEC = 0 is as good as decrementer not enabled */
99 if (vcpu->arch.dec == 0)
100 return;
101#endif
102
103 /*
104 * The decrementer ticks at the same rate as the timebase, so
105 * that's how we convert the guest DEC value to the number of
106 * host ticks.
107 */
108
109 dec_time = vcpu->arch.dec;
Bharat Bhushan6e359942012-04-18 06:01:19 +0000110 /*
111 * Guest timebase ticks at the same frequency as host decrementer.
112 * So use the host decrementer calculations for decrementer emulation.
113 */
114 dec_time = dec_time << decrementer_clockevent.shift;
115 do_div(dec_time, decrementer_clockevent.mult);
Scott Wooddfd4d472011-11-17 12:39:59 +0000116 dec_nsec = do_div(dec_time, NSEC_PER_SEC);
117 hrtimer_start(&vcpu->arch.dec_timer,
118 ktime_set(dec_time, dec_nsec), HRTIMER_MODE_REL);
119 vcpu->arch.dec_jiffies = get_tb();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500120}
121
Scott Wood5ce941e2011-04-27 17:24:21 -0500122u32 kvmppc_get_dec(struct kvm_vcpu *vcpu, u64 tb)
123{
124 u64 jd = tb - vcpu->arch.dec_jiffies;
Scott Wooddfd4d472011-11-17 12:39:59 +0000125
126#ifdef CONFIG_BOOKE
127 if (vcpu->arch.dec < jd)
128 return 0;
129#endif
130
Scott Wood5ce941e2011-04-27 17:24:21 -0500131 return vcpu->arch.dec - jd;
132}
133
Alexander Graf388cf9e2012-10-06 23:19:01 +0200134static int kvmppc_emulate_mtspr(struct kvm_vcpu *vcpu, int sprn, int rs)
135{
136 enum emulation_result emulated = EMULATE_DONE;
137 ulong spr_val = kvmppc_get_gpr(vcpu, rs);
138
139 switch (sprn) {
140 case SPRN_SRR0:
141 vcpu->arch.shared->srr0 = spr_val;
142 break;
143 case SPRN_SRR1:
144 vcpu->arch.shared->srr1 = spr_val;
145 break;
146
147 /* XXX We need to context-switch the timebase for
148 * watchdog and FIT. */
149 case SPRN_TBWL: break;
150 case SPRN_TBWU: break;
151
152 case SPRN_MSSSR0: break;
153
154 case SPRN_DEC:
155 vcpu->arch.dec = spr_val;
156 kvmppc_emulate_dec(vcpu);
157 break;
158
159 case SPRN_SPRG0:
160 vcpu->arch.shared->sprg0 = spr_val;
161 break;
162 case SPRN_SPRG1:
163 vcpu->arch.shared->sprg1 = spr_val;
164 break;
165 case SPRN_SPRG2:
166 vcpu->arch.shared->sprg2 = spr_val;
167 break;
168 case SPRN_SPRG3:
169 vcpu->arch.shared->sprg3 = spr_val;
170 break;
171
172 default:
173 emulated = kvmppc_core_emulate_mtspr(vcpu, sprn,
174 spr_val);
175 if (emulated == EMULATE_FAIL)
176 printk(KERN_INFO "mtspr: unknown spr "
177 "0x%x\n", sprn);
178 break;
179 }
180
181 kvmppc_set_exit_type(vcpu, EMULATED_MTSPR_EXITS);
182
183 return emulated;
184}
185
186static int kvmppc_emulate_mfspr(struct kvm_vcpu *vcpu, int sprn, int rt)
187{
188 enum emulation_result emulated = EMULATE_DONE;
189 ulong spr_val = 0;
190
191 switch (sprn) {
192 case SPRN_SRR0:
193 spr_val = vcpu->arch.shared->srr0;
194 break;
195 case SPRN_SRR1:
196 spr_val = vcpu->arch.shared->srr1;
197 break;
198 case SPRN_PVR:
199 spr_val = vcpu->arch.pvr;
200 break;
201 case SPRN_PIR:
202 spr_val = vcpu->vcpu_id;
203 break;
204 case SPRN_MSSSR0:
205 spr_val = 0;
206 break;
207
208 /* Note: mftb and TBRL/TBWL are user-accessible, so
209 * the guest can always access the real TB anyways.
210 * In fact, we probably will never see these traps. */
211 case SPRN_TBWL:
212 spr_val = get_tb() >> 32;
213 break;
214 case SPRN_TBWU:
215 spr_val = get_tb();
216 break;
217
218 case SPRN_SPRG0:
219 spr_val = vcpu->arch.shared->sprg0;
220 break;
221 case SPRN_SPRG1:
222 spr_val = vcpu->arch.shared->sprg1;
223 break;
224 case SPRN_SPRG2:
225 spr_val = vcpu->arch.shared->sprg2;
226 break;
227 case SPRN_SPRG3:
228 spr_val = vcpu->arch.shared->sprg3;
229 break;
230 /* Note: SPRG4-7 are user-readable, so we don't get
231 * a trap. */
232
233 case SPRN_DEC:
234 spr_val = kvmppc_get_dec(vcpu, get_tb());
235 break;
236 default:
237 emulated = kvmppc_core_emulate_mfspr(vcpu, sprn,
238 &spr_val);
239 if (unlikely(emulated == EMULATE_FAIL)) {
240 printk(KERN_INFO "mfspr: unknown spr "
241 "0x%x\n", sprn);
242 }
243 break;
244 }
245
246 if (emulated == EMULATE_DONE)
247 kvmppc_set_gpr(vcpu, rt, spr_val);
248 kvmppc_set_exit_type(vcpu, EMULATED_MFSPR_EXITS);
249
250 return emulated;
251}
252
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500253/* XXX to do:
254 * lhax
255 * lhaux
256 * lswx
257 * lswi
258 * stswx
259 * stswi
260 * lha
261 * lhau
262 * lmw
263 * stmw
264 *
265 * XXX is_bigendian should depend on MMU mapping or MSR[LE]
266 */
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600267/* XXX Should probably auto-generate instruction decoding for a particular core
268 * from opcode tables in the future. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500269int kvmppc_emulate_instruction(struct kvm_run *run, struct kvm_vcpu *vcpu)
270{
Alexander Grafc7f38f42010-04-16 00:11:40 +0200271 u32 inst = kvmppc_get_last_inst(vcpu);
Alexander Grafc46dc9a2012-05-04 14:01:33 +0200272 int ra = get_ra(inst);
273 int rs = get_rs(inst);
274 int rt = get_rt(inst);
275 int sprn = get_sprn(inst);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500276 enum emulation_result emulated = EMULATE_DONE;
277 int advance = 1;
278
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600279 /* this default type might be overwritten by subcategories */
280 kvmppc_set_exit_type(vcpu, EMULATED_INST_EXITS);
281
Joe Perches689fd142010-09-11 19:10:53 +0000282 pr_debug("Emulating opcode %d / %d\n", get_op(inst), get_xop(inst));
Alexander Graf513579e2009-10-30 05:47:16 +0000283
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500284 switch (get_op(inst)) {
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600285 case OP_TRAP:
Alexander Graf00c3a372010-04-16 00:11:42 +0200286#ifdef CONFIG_PPC_BOOK3S
Alexander Graf513579e2009-10-30 05:47:16 +0000287 case OP_TRAP_64:
Alexander Graf25a8a022010-01-08 02:58:07 +0100288 kvmppc_core_queue_program(vcpu, SRR1_PROGTRAP);
Liu Yudaf5e272010-02-02 19:44:35 +0800289#else
Scott Woodb5904972011-11-08 18:23:30 -0600290 kvmppc_core_queue_program(vcpu,
291 vcpu->arch.shared->esr | ESR_PTR);
Liu Yudaf5e272010-02-02 19:44:35 +0800292#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500293 advance = 0;
294 break;
295
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500296 case 31:
297 switch (get_xop(inst)) {
298
Alexander Graf6df79df2012-03-13 22:15:45 +0100299 case OP_31_XOP_TRAP:
300#ifdef CONFIG_64BIT
301 case OP_31_XOP_TRAP_64:
302#endif
303#ifdef CONFIG_PPC_BOOK3S
304 kvmppc_core_queue_program(vcpu, SRR1_PROGTRAP);
305#else
306 kvmppc_core_queue_program(vcpu,
307 vcpu->arch.shared->esr | ESR_PTR);
308#endif
309 advance = 0;
310 break;
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600311 case OP_31_XOP_LWZX:
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500312 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
313 break;
314
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600315 case OP_31_XOP_LBZX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500316 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
317 break;
318
Alexander Graf1c85e732010-03-24 21:48:27 +0100319 case OP_31_XOP_LBZUX:
Alexander Graf1c85e732010-03-24 21:48:27 +0100320 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100321 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Alexander Graf1c85e732010-03-24 21:48:27 +0100322 break;
323
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600324 case OP_31_XOP_STWX:
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500325 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100326 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500327 4, 1);
328 break;
329
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600330 case OP_31_XOP_STBX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500331 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100332 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500333 1, 1);
334 break;
335
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600336 case OP_31_XOP_STBUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500337 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100338 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500339 1, 1);
Alexander Graf978b4fa2012-04-27 01:00:17 +0200340 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500341 break;
342
Alexander Graf1c85e732010-03-24 21:48:27 +0100343 case OP_31_XOP_LHAX:
Alexander Graf1c85e732010-03-24 21:48:27 +0100344 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
345 break;
346
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600347 case OP_31_XOP_LHZX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500348 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
349 break;
350
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600351 case OP_31_XOP_LHZUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500352 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100353 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500354 break;
355
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600356 case OP_31_XOP_MFSPR:
Alexander Graf388cf9e2012-10-06 23:19:01 +0200357 emulated = kvmppc_emulate_mfspr(vcpu, sprn, rt);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500358 break;
359
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600360 case OP_31_XOP_STHX:
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, 1);
364 break;
365
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600366 case OP_31_XOP_STHUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500367 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100368 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500369 2, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100370 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500371 break;
372
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600373 case OP_31_XOP_MTSPR:
Alexander Graf388cf9e2012-10-06 23:19:01 +0200374 emulated = kvmppc_emulate_mtspr(vcpu, sprn, rs);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500375 break;
376
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600377 case OP_31_XOP_DCBI:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500378 /* Do nothing. The guest is performing dcbi because
379 * hardware DMA is not snooped by the dcache, but
380 * emulated DMA either goes through the dcache as
381 * normal writes, or the host kernel has handled dcache
382 * coherence. */
383 break;
384
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600385 case OP_31_XOP_LWBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500386 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 0);
387 break;
388
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600389 case OP_31_XOP_TLBSYNC:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500390 break;
391
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600392 case OP_31_XOP_STWBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500393 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100394 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500395 4, 0);
396 break;
397
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600398 case OP_31_XOP_LHBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500399 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 0);
400 break;
401
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600402 case OP_31_XOP_STHBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500403 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100404 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500405 2, 0);
406 break;
407
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500408 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600409 /* Attempt core-specific emulation below. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500410 emulated = EMULATE_FAIL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500411 }
412 break;
413
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600414 case OP_LWZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500415 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
416 break;
417
Varun Sethi6c5cb732012-06-18 12:14:55 +0000418 /* TBD: Add support for other 64 bit load variants like ldu, ldux, ldx etc. */
419 case OP_LD:
420 rt = get_rt(inst);
421 emulated = kvmppc_handle_load(run, vcpu, rt, 8, 1);
422 break;
423
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600424 case OP_LWZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500425 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100426 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_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 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
431 break;
432
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600433 case OP_LBZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500434 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100435 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500436 break;
437
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600438 case OP_STW:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100439 emulated = kvmppc_handle_store(run, vcpu,
440 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500441 4, 1);
442 break;
443
Varun Sethi6c5cb732012-06-18 12:14:55 +0000444 /* TBD: Add support for other 64 bit store variants like stdu, stdux, stdx etc. */
445 case OP_STD:
446 rs = get_rs(inst);
447 emulated = kvmppc_handle_store(run, vcpu,
448 kvmppc_get_gpr(vcpu, rs),
449 8, 1);
450 break;
451
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600452 case OP_STWU:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100453 emulated = kvmppc_handle_store(run, vcpu,
454 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500455 4, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100456 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500457 break;
458
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600459 case OP_STB:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100460 emulated = kvmppc_handle_store(run, vcpu,
461 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500462 1, 1);
463 break;
464
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600465 case OP_STBU:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100466 emulated = kvmppc_handle_store(run, vcpu,
467 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500468 1, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100469 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500470 break;
471
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600472 case OP_LHZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500473 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
474 break;
475
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600476 case OP_LHZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500477 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 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
Alexander Graf3587d532010-02-19 11:00:30 +0100481 case OP_LHA:
Alexander Graf3587d532010-02-19 11:00:30 +0100482 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
483 break;
484
485 case OP_LHAU:
Alexander Graf3587d532010-02-19 11:00:30 +0100486 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100487 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Alexander Graf3587d532010-02-19 11:00:30 +0100488 break;
489
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600490 case OP_STH:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100491 emulated = kvmppc_handle_store(run, vcpu,
492 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500493 2, 1);
494 break;
495
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600496 case OP_STHU:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100497 emulated = kvmppc_handle_store(run, vcpu,
498 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500499 2, 1);
Alexander Graf6020c0f2012-03-12 02:26:30 +0100500 kvmppc_set_gpr(vcpu, ra, vcpu->arch.vaddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500501 break;
502
503 default:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500504 emulated = EMULATE_FAIL;
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600505 }
506
507 if (emulated == EMULATE_FAIL) {
508 emulated = kvmppc_core_emulate_op(run, vcpu, inst, &advance);
Alexander Graf37f5bca2010-02-19 11:00:31 +0100509 if (emulated == EMULATE_AGAIN) {
510 advance = 0;
511 } else if (emulated == EMULATE_FAIL) {
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600512 advance = 0;
513 printk(KERN_ERR "Couldn't emulate instruction 0x%08x "
514 "(op %d xop %d)\n", inst, get_op(inst), get_xop(inst));
Alexander Graf5f2b1052010-01-10 03:27:32 +0100515 kvmppc_core_queue_program(vcpu, 0);
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600516 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500517 }
518
Alexander Grafc7f38f42010-04-16 00:11:40 +0200519 trace_kvm_ppc_instr(inst, kvmppc_get_pc(vcpu), emulated);
Christian Ehrhardt3b4bd792008-07-14 14:00:04 +0200520
Alexander Grafc7f38f42010-04-16 00:11:40 +0200521 /* Advance past emulated instruction. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500522 if (advance)
Alexander Grafc7f38f42010-04-16 00:11:40 +0200523 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) + 4);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500524
525 return emulated;
526}