blob: 59a1edd56d46e0433114f110d93d5fbd7ace4c57 [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>
26
Hollis Blanchard75f74f02008-11-05 09:36:16 -060027#include <asm/reg.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050028#include <asm/time.h>
29#include <asm/byteorder.h>
30#include <asm/kvm_ppc.h>
Hollis Blanchardc381a042008-11-05 09:36:15 -060031#include <asm/disassemble.h>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060032#include "timing.h"
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030033#include "trace.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050034
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060035#define OP_TRAP 3
Alexander Graf513579e2009-10-30 05:47:16 +000036#define OP_TRAP_64 2
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060037
38#define OP_31_XOP_LWZX 23
Alexander Graf67bc20f2013-01-17 13:50:25 +010039#define OP_31_XOP_DCBF 86
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060040#define OP_31_XOP_LBZX 87
41#define OP_31_XOP_STWX 151
42#define OP_31_XOP_STBX 215
Alexander Graf1c85e732010-03-24 21:48:27 +010043#define OP_31_XOP_LBZUX 119
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060044#define OP_31_XOP_STBUX 247
45#define OP_31_XOP_LHZX 279
46#define OP_31_XOP_LHZUX 311
47#define OP_31_XOP_MFSPR 339
Alexander Graf1c85e732010-03-24 21:48:27 +010048#define OP_31_XOP_LHAX 343
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060049#define OP_31_XOP_STHX 407
50#define OP_31_XOP_STHUX 439
51#define OP_31_XOP_MTSPR 467
52#define OP_31_XOP_DCBI 470
53#define OP_31_XOP_LWBRX 534
54#define OP_31_XOP_TLBSYNC 566
55#define OP_31_XOP_STWBRX 662
56#define OP_31_XOP_LHBRX 790
57#define OP_31_XOP_STHBRX 918
58
59#define OP_LWZ 32
60#define OP_LWZU 33
61#define OP_LBZ 34
62#define OP_LBZU 35
63#define OP_STW 36
64#define OP_STWU 37
65#define OP_STB 38
66#define OP_STBU 39
67#define OP_LHZ 40
68#define OP_LHZU 41
Alexander Graf3587d532010-02-19 11:00:30 +010069#define OP_LHA 42
70#define OP_LHAU 43
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060071#define OP_STH 44
72#define OP_STHU 45
73
Hollis Blanchard75f74f02008-11-05 09:36:16 -060074void kvmppc_emulate_dec(struct kvm_vcpu *vcpu)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050075{
Alexander Graf544c6762009-11-02 12:02:31 +000076 unsigned long dec_nsec;
Bharat Bhushandc2babf2011-10-19 09:46:06 +053077 unsigned long long dec_time;
Alexander Graf9a7a9b02009-10-30 05:47:15 +000078
Alexander Graf544c6762009-11-02 12:02:31 +000079 pr_debug("mtDEC: %x\n", vcpu->arch.dec);
Scott Wooddfd4d472011-11-17 12:39:59 +000080 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
81
Alexander Graf00c3a372010-04-16 00:11:42 +020082#ifdef CONFIG_PPC_BOOK3S
Alexander Graf7706664d2009-12-21 20:21:24 +010083 /* mtdec lowers the interrupt line when positive. */
84 kvmppc_core_dequeue_dec(vcpu);
85
Alexander Graf513579e2009-10-30 05:47:16 +000086 /* POWER4+ triggers a dec interrupt if the value is < 0 */
87 if (vcpu->arch.dec & 0x80000000) {
Alexander Graf513579e2009-10-30 05:47:16 +000088 kvmppc_core_queue_dec(vcpu);
89 return;
90 }
91#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050092
Scott Wooddfd4d472011-11-17 12:39:59 +000093#ifdef CONFIG_BOOKE
94 /* On BOOKE, DEC = 0 is as good as decrementer not enabled */
95 if (vcpu->arch.dec == 0)
96 return;
97#endif
98
99 /*
100 * The decrementer ticks at the same rate as the timebase, so
101 * that's how we convert the guest DEC value to the number of
102 * host ticks.
103 */
104
105 dec_time = vcpu->arch.dec;
106 dec_time *= 1000;
107 do_div(dec_time, tb_ticks_per_usec);
108 dec_nsec = do_div(dec_time, NSEC_PER_SEC);
109 hrtimer_start(&vcpu->arch.dec_timer,
110 ktime_set(dec_time, dec_nsec), HRTIMER_MODE_REL);
111 vcpu->arch.dec_jiffies = get_tb();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500112}
113
Scott Wood5ce941e2011-04-27 17:24:21 -0500114u32 kvmppc_get_dec(struct kvm_vcpu *vcpu, u64 tb)
115{
116 u64 jd = tb - vcpu->arch.dec_jiffies;
Scott Wooddfd4d472011-11-17 12:39:59 +0000117
118#ifdef CONFIG_BOOKE
119 if (vcpu->arch.dec < jd)
120 return 0;
121#endif
122
Scott Wood5ce941e2011-04-27 17:24:21 -0500123 return vcpu->arch.dec - jd;
124}
125
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500126/* XXX to do:
127 * lhax
128 * lhaux
129 * lswx
130 * lswi
131 * stswx
132 * stswi
133 * lha
134 * lhau
135 * lmw
136 * stmw
137 *
138 * XXX is_bigendian should depend on MMU mapping or MSR[LE]
139 */
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600140/* XXX Should probably auto-generate instruction decoding for a particular core
141 * from opcode tables in the future. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500142int kvmppc_emulate_instruction(struct kvm_run *run, struct kvm_vcpu *vcpu)
143{
Alexander Grafc7f38f42010-04-16 00:11:40 +0200144 u32 inst = kvmppc_get_last_inst(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500145 u32 ea;
146 int ra;
147 int rb;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500148 int rs;
149 int rt;
150 int sprn;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500151 enum emulation_result emulated = EMULATE_DONE;
152 int advance = 1;
153
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600154 /* this default type might be overwritten by subcategories */
155 kvmppc_set_exit_type(vcpu, EMULATED_INST_EXITS);
156
Joe Perches689fd142010-09-11 19:10:53 +0000157 pr_debug("Emulating opcode %d / %d\n", get_op(inst), get_xop(inst));
Alexander Graf513579e2009-10-30 05:47:16 +0000158
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500159 switch (get_op(inst)) {
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600160 case OP_TRAP:
Alexander Graf00c3a372010-04-16 00:11:42 +0200161#ifdef CONFIG_PPC_BOOK3S
Alexander Graf513579e2009-10-30 05:47:16 +0000162 case OP_TRAP_64:
Alexander Graf25a8a022010-01-08 02:58:07 +0100163 kvmppc_core_queue_program(vcpu, SRR1_PROGTRAP);
Liu Yudaf5e272010-02-02 19:44:35 +0800164#else
Scott Woodb5904972011-11-08 18:23:30 -0600165 kvmppc_core_queue_program(vcpu,
166 vcpu->arch.shared->esr | ESR_PTR);
Liu Yudaf5e272010-02-02 19:44:35 +0800167#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500168 advance = 0;
169 break;
170
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500171 case 31:
172 switch (get_xop(inst)) {
173
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600174 case OP_31_XOP_LWZX:
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500175 rt = get_rt(inst);
176 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
177 break;
178
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600179 case OP_31_XOP_LBZX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500180 rt = get_rt(inst);
181 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
182 break;
183
Alexander Graf1c85e732010-03-24 21:48:27 +0100184 case OP_31_XOP_LBZUX:
185 rt = get_rt(inst);
186 ra = get_ra(inst);
187 rb = get_rb(inst);
188
189 ea = kvmppc_get_gpr(vcpu, rb);
190 if (ra)
191 ea += kvmppc_get_gpr(vcpu, ra);
192
193 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
194 kvmppc_set_gpr(vcpu, ra, ea);
195 break;
196
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600197 case OP_31_XOP_STWX:
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500198 rs = get_rs(inst);
199 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100200 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500201 4, 1);
202 break;
203
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600204 case OP_31_XOP_STBX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500205 rs = get_rs(inst);
206 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100207 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500208 1, 1);
209 break;
210
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600211 case OP_31_XOP_STBUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500212 rs = get_rs(inst);
213 ra = get_ra(inst);
214 rb = get_rb(inst);
215
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100216 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500217 if (ra)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100218 ea += kvmppc_get_gpr(vcpu, ra);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500219
220 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100221 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500222 1, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100223 kvmppc_set_gpr(vcpu, rs, ea);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500224 break;
225
Alexander Graf1c85e732010-03-24 21:48:27 +0100226 case OP_31_XOP_LHAX:
227 rt = get_rt(inst);
228 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
229 break;
230
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600231 case OP_31_XOP_LHZX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500232 rt = get_rt(inst);
233 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
234 break;
235
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600236 case OP_31_XOP_LHZUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500237 rt = get_rt(inst);
238 ra = get_ra(inst);
239 rb = get_rb(inst);
240
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100241 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500242 if (ra)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100243 ea += kvmppc_get_gpr(vcpu, ra);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500244
245 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100246 kvmppc_set_gpr(vcpu, ra, ea);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500247 break;
248
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600249 case OP_31_XOP_MFSPR:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500250 sprn = get_sprn(inst);
251 rt = get_rt(inst);
252
253 switch (sprn) {
254 case SPRN_SRR0:
Alexander Grafde7906c2010-07-29 14:47:46 +0200255 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->srr0);
256 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500257 case SPRN_SRR1:
Alexander Grafde7906c2010-07-29 14:47:46 +0200258 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->srr1);
259 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500260 case SPRN_PVR:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100261 kvmppc_set_gpr(vcpu, rt, vcpu->arch.pvr); break;
Liu Yu06579dd2009-06-05 14:54:31 +0800262 case SPRN_PIR:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100263 kvmppc_set_gpr(vcpu, rt, vcpu->vcpu_id); break;
Alexander Graf513579e2009-10-30 05:47:16 +0000264 case SPRN_MSSSR0:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100265 kvmppc_set_gpr(vcpu, rt, 0); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500266
267 /* Note: mftb and TBRL/TBWL are user-accessible, so
268 * the guest can always access the real TB anyways.
269 * In fact, we probably will never see these traps. */
270 case SPRN_TBWL:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100271 kvmppc_set_gpr(vcpu, rt, get_tb() >> 32); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500272 case SPRN_TBWU:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100273 kvmppc_set_gpr(vcpu, rt, get_tb()); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500274
275 case SPRN_SPRG0:
Alexander Grafa73a9592010-07-29 14:47:47 +0200276 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->sprg0);
277 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500278 case SPRN_SPRG1:
Alexander Grafa73a9592010-07-29 14:47:47 +0200279 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->sprg1);
280 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500281 case SPRN_SPRG2:
Alexander Grafa73a9592010-07-29 14:47:47 +0200282 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->sprg2);
283 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500284 case SPRN_SPRG3:
Alexander Grafa73a9592010-07-29 14:47:47 +0200285 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->sprg3);
286 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500287 /* Note: SPRG4-7 are user-readable, so we don't get
288 * a trap. */
289
Alexander Graf9a7a9b02009-10-30 05:47:15 +0000290 case SPRN_DEC:
291 {
Scott Wood5ce941e2011-04-27 17:24:21 -0500292 kvmppc_set_gpr(vcpu, rt,
293 kvmppc_get_dec(vcpu, get_tb()));
Alexander Graf9a7a9b02009-10-30 05:47:15 +0000294 break;
295 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500296 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600297 emulated = kvmppc_core_emulate_mfspr(vcpu, sprn, rt);
298 if (emulated == EMULATE_FAIL) {
299 printk("mfspr: unknown spr %x\n", sprn);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100300 kvmppc_set_gpr(vcpu, rt, 0);
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600301 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500302 break;
303 }
Scott Wood49ea0692011-03-28 15:01:24 -0500304 kvmppc_set_exit_type(vcpu, EMULATED_MFSPR_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500305 break;
306
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600307 case OP_31_XOP_STHX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500308 rs = get_rs(inst);
309 ra = get_ra(inst);
310 rb = get_rb(inst);
311
312 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100313 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500314 2, 1);
315 break;
316
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600317 case OP_31_XOP_STHUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500318 rs = get_rs(inst);
319 ra = get_ra(inst);
320 rb = get_rb(inst);
321
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100322 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500323 if (ra)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100324 ea += kvmppc_get_gpr(vcpu, ra);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500325
326 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100327 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500328 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100329 kvmppc_set_gpr(vcpu, ra, ea);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500330 break;
331
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600332 case OP_31_XOP_MTSPR:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500333 sprn = get_sprn(inst);
334 rs = get_rs(inst);
335 switch (sprn) {
336 case SPRN_SRR0:
Alexander Grafde7906c2010-07-29 14:47:46 +0200337 vcpu->arch.shared->srr0 = kvmppc_get_gpr(vcpu, rs);
338 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500339 case SPRN_SRR1:
Alexander Grafde7906c2010-07-29 14:47:46 +0200340 vcpu->arch.shared->srr1 = kvmppc_get_gpr(vcpu, rs);
341 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500342
343 /* XXX We need to context-switch the timebase for
344 * watchdog and FIT. */
345 case SPRN_TBWL: break;
346 case SPRN_TBWU: break;
347
Alexander Graf513579e2009-10-30 05:47:16 +0000348 case SPRN_MSSSR0: break;
349
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500350 case SPRN_DEC:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100351 vcpu->arch.dec = kvmppc_get_gpr(vcpu, rs);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500352 kvmppc_emulate_dec(vcpu);
353 break;
354
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500355 case SPRN_SPRG0:
Alexander Grafa73a9592010-07-29 14:47:47 +0200356 vcpu->arch.shared->sprg0 = kvmppc_get_gpr(vcpu, rs);
357 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500358 case SPRN_SPRG1:
Alexander Grafa73a9592010-07-29 14:47:47 +0200359 vcpu->arch.shared->sprg1 = kvmppc_get_gpr(vcpu, rs);
360 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500361 case SPRN_SPRG2:
Alexander Grafa73a9592010-07-29 14:47:47 +0200362 vcpu->arch.shared->sprg2 = kvmppc_get_gpr(vcpu, rs);
363 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500364 case SPRN_SPRG3:
Alexander Grafa73a9592010-07-29 14:47:47 +0200365 vcpu->arch.shared->sprg3 = kvmppc_get_gpr(vcpu, rs);
366 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500367
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500368 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600369 emulated = kvmppc_core_emulate_mtspr(vcpu, sprn, rs);
370 if (emulated == EMULATE_FAIL)
371 printk("mtspr: unknown spr %x\n", sprn);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500372 break;
373 }
Scott Wood49ea0692011-03-28 15:01:24 -0500374 kvmppc_set_exit_type(vcpu, EMULATED_MTSPR_EXITS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500375 break;
376
Alexander Graf67bc20f2013-01-17 13:50:25 +0100377 case OP_31_XOP_DCBF:
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 Graf8e5b26b2010-01-08 02:58:01 +0100434 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_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 Graf8e5b26b2010-01-08 02:58:01 +0100446 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_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 Graf8e5b26b2010-01-08 02:58:01 +0100462 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_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 Graf8e5b26b2010-01-08 02:58:01 +0100478 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_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 Graf8e5b26b2010-01-08 02:58:01 +0100490 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_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);
502 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
503 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 Graf8e5b26b2010-01-08 02:58:01 +0100518 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_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}