blob: ad0fa4ff4ea06a5b5f9fade3c1ccc328178368c3 [file] [log] [blame]
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License, version 2, as
4 * published by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
14 *
15 * Copyright IBM Corp. 2007
16 *
17 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
18 */
19
20#include <linux/jiffies.h>
Alexander Graf544c6762009-11-02 12:02:31 +000021#include <linux/hrtimer.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050022#include <linux/types.h>
23#include <linux/string.h>
24#include <linux/kvm_host.h>
25
Hollis Blanchard75f74f02008-11-05 09:36:16 -060026#include <asm/reg.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050027#include <asm/time.h>
28#include <asm/byteorder.h>
29#include <asm/kvm_ppc.h>
Hollis Blanchardc381a042008-11-05 09:36:15 -060030#include <asm/disassemble.h>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060031#include "timing.h"
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030032#include "trace.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050033
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060034#define OP_TRAP 3
Alexander Graf513579e2009-10-30 05:47:16 +000035#define OP_TRAP_64 2
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060036
37#define OP_31_XOP_LWZX 23
38#define OP_31_XOP_LBZX 87
39#define OP_31_XOP_STWX 151
40#define OP_31_XOP_STBX 215
Alexander Graf1c85e732010-03-24 21:48:27 +010041#define OP_31_XOP_LBZUX 119
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060042#define OP_31_XOP_STBUX 247
43#define OP_31_XOP_LHZX 279
44#define OP_31_XOP_LHZUX 311
45#define OP_31_XOP_MFSPR 339
Alexander Graf1c85e732010-03-24 21:48:27 +010046#define OP_31_XOP_LHAX 343
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060047#define OP_31_XOP_STHX 407
48#define OP_31_XOP_STHUX 439
49#define OP_31_XOP_MTSPR 467
50#define OP_31_XOP_DCBI 470
51#define OP_31_XOP_LWBRX 534
52#define OP_31_XOP_TLBSYNC 566
53#define OP_31_XOP_STWBRX 662
54#define OP_31_XOP_LHBRX 790
55#define OP_31_XOP_STHBRX 918
56
57#define OP_LWZ 32
58#define OP_LWZU 33
59#define OP_LBZ 34
60#define OP_LBZU 35
61#define OP_STW 36
62#define OP_STWU 37
63#define OP_STB 38
64#define OP_STBU 39
65#define OP_LHZ 40
66#define OP_LHZU 41
Alexander Graf3587d532010-02-19 11:00:30 +010067#define OP_LHA 42
68#define OP_LHAU 43
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -060069#define OP_STH 44
70#define OP_STHU 45
71
Alexander Graf00c3a372010-04-16 00:11:42 +020072#ifdef CONFIG_PPC_BOOK3S
Alexander Graf513579e2009-10-30 05:47:16 +000073static int kvmppc_dec_enabled(struct kvm_vcpu *vcpu)
74{
75 return 1;
76}
77#else
78static int kvmppc_dec_enabled(struct kvm_vcpu *vcpu)
79{
80 return vcpu->arch.tcr & TCR_DIE;
81}
82#endif
83
Hollis Blanchard75f74f02008-11-05 09:36:16 -060084void kvmppc_emulate_dec(struct kvm_vcpu *vcpu)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050085{
Alexander Graf544c6762009-11-02 12:02:31 +000086 unsigned long dec_nsec;
Alexander Graf9a7a9b02009-10-30 05:47:15 +000087
Alexander Graf544c6762009-11-02 12:02:31 +000088 pr_debug("mtDEC: %x\n", vcpu->arch.dec);
Alexander Graf00c3a372010-04-16 00:11:42 +020089#ifdef CONFIG_PPC_BOOK3S
Alexander Graf7706664d2009-12-21 20:21:24 +010090 /* mtdec lowers the interrupt line when positive. */
91 kvmppc_core_dequeue_dec(vcpu);
92
Alexander Graf513579e2009-10-30 05:47:16 +000093 /* POWER4+ triggers a dec interrupt if the value is < 0 */
94 if (vcpu->arch.dec & 0x80000000) {
Alexander Graf544c6762009-11-02 12:02:31 +000095 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
Alexander Graf513579e2009-10-30 05:47:16 +000096 kvmppc_core_queue_dec(vcpu);
97 return;
98 }
99#endif
100 if (kvmppc_dec_enabled(vcpu)) {
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500101 /* The decrementer ticks at the same rate as the timebase, so
102 * that's how we convert the guest DEC value to the number of
103 * host ticks. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500104
Alexander Graf544c6762009-11-02 12:02:31 +0000105 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
106 dec_nsec = vcpu->arch.dec;
107 dec_nsec *= 1000;
108 dec_nsec /= tb_ticks_per_usec;
109 hrtimer_start(&vcpu->arch.dec_timer, ktime_set(0, dec_nsec),
110 HRTIMER_MODE_REL);
Alexander Graf513579e2009-10-30 05:47:16 +0000111 vcpu->arch.dec_jiffies = get_tb();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500112 } else {
Alexander Graf544c6762009-11-02 12:02:31 +0000113 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500114 }
115}
116
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500117/* XXX to do:
118 * lhax
119 * lhaux
120 * lswx
121 * lswi
122 * stswx
123 * stswi
124 * lha
125 * lhau
126 * lmw
127 * stmw
128 *
129 * XXX is_bigendian should depend on MMU mapping or MSR[LE]
130 */
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600131/* XXX Should probably auto-generate instruction decoding for a particular core
132 * from opcode tables in the future. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500133int kvmppc_emulate_instruction(struct kvm_run *run, struct kvm_vcpu *vcpu)
134{
Alexander Grafc7f38f42010-04-16 00:11:40 +0200135 u32 inst = kvmppc_get_last_inst(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500136 u32 ea;
137 int ra;
138 int rb;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500139 int rs;
140 int rt;
141 int sprn;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500142 enum emulation_result emulated = EMULATE_DONE;
143 int advance = 1;
144
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600145 /* this default type might be overwritten by subcategories */
146 kvmppc_set_exit_type(vcpu, EMULATED_INST_EXITS);
147
Alexander Graf513579e2009-10-30 05:47:16 +0000148 pr_debug(KERN_INFO "Emulating opcode %d / %d\n", get_op(inst), get_xop(inst));
149
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500150 switch (get_op(inst)) {
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600151 case OP_TRAP:
Alexander Graf00c3a372010-04-16 00:11:42 +0200152#ifdef CONFIG_PPC_BOOK3S
Alexander Graf513579e2009-10-30 05:47:16 +0000153 case OP_TRAP_64:
Alexander Graf25a8a022010-01-08 02:58:07 +0100154 kvmppc_core_queue_program(vcpu, SRR1_PROGTRAP);
Liu Yudaf5e272010-02-02 19:44:35 +0800155#else
156 kvmppc_core_queue_program(vcpu, vcpu->arch.esr | ESR_PTR);
157#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500158 advance = 0;
159 break;
160
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500161 case 31:
162 switch (get_xop(inst)) {
163
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600164 case OP_31_XOP_LWZX:
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500165 rt = get_rt(inst);
166 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
167 break;
168
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600169 case OP_31_XOP_LBZX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500170 rt = get_rt(inst);
171 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
172 break;
173
Alexander Graf1c85e732010-03-24 21:48:27 +0100174 case OP_31_XOP_LBZUX:
175 rt = get_rt(inst);
176 ra = get_ra(inst);
177 rb = get_rb(inst);
178
179 ea = kvmppc_get_gpr(vcpu, rb);
180 if (ra)
181 ea += kvmppc_get_gpr(vcpu, ra);
182
183 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
184 kvmppc_set_gpr(vcpu, ra, ea);
185 break;
186
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600187 case OP_31_XOP_STWX:
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500188 rs = get_rs(inst);
189 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100190 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500191 4, 1);
192 break;
193
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600194 case OP_31_XOP_STBX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500195 rs = get_rs(inst);
196 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100197 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500198 1, 1);
199 break;
200
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600201 case OP_31_XOP_STBUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500202 rs = get_rs(inst);
203 ra = get_ra(inst);
204 rb = get_rb(inst);
205
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100206 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500207 if (ra)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100208 ea += kvmppc_get_gpr(vcpu, ra);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500209
210 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100211 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500212 1, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100213 kvmppc_set_gpr(vcpu, rs, ea);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500214 break;
215
Alexander Graf1c85e732010-03-24 21:48:27 +0100216 case OP_31_XOP_LHAX:
217 rt = get_rt(inst);
218 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
219 break;
220
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600221 case OP_31_XOP_LHZX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500222 rt = get_rt(inst);
223 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
224 break;
225
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600226 case OP_31_XOP_LHZUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500227 rt = get_rt(inst);
228 ra = get_ra(inst);
229 rb = get_rb(inst);
230
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100231 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500232 if (ra)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100233 ea += kvmppc_get_gpr(vcpu, ra);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500234
235 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100236 kvmppc_set_gpr(vcpu, ra, ea);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500237 break;
238
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600239 case OP_31_XOP_MFSPR:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500240 sprn = get_sprn(inst);
241 rt = get_rt(inst);
242
243 switch (sprn) {
244 case SPRN_SRR0:
Alexander Grafde7906c2010-07-29 14:47:46 +0200245 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->srr0);
246 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500247 case SPRN_SRR1:
Alexander Grafde7906c2010-07-29 14:47:46 +0200248 kvmppc_set_gpr(vcpu, rt, vcpu->arch.shared->srr1);
249 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500250 case SPRN_PVR:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100251 kvmppc_set_gpr(vcpu, rt, vcpu->arch.pvr); break;
Liu Yu06579dd2009-06-05 14:54:31 +0800252 case SPRN_PIR:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100253 kvmppc_set_gpr(vcpu, rt, vcpu->vcpu_id); break;
Alexander Graf513579e2009-10-30 05:47:16 +0000254 case SPRN_MSSSR0:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100255 kvmppc_set_gpr(vcpu, rt, 0); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500256
257 /* Note: mftb and TBRL/TBWL are user-accessible, so
258 * the guest can always access the real TB anyways.
259 * In fact, we probably will never see these traps. */
260 case SPRN_TBWL:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100261 kvmppc_set_gpr(vcpu, rt, get_tb() >> 32); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500262 case SPRN_TBWU:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100263 kvmppc_set_gpr(vcpu, rt, get_tb()); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500264
265 case SPRN_SPRG0:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100266 kvmppc_set_gpr(vcpu, rt, vcpu->arch.sprg0); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500267 case SPRN_SPRG1:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100268 kvmppc_set_gpr(vcpu, rt, vcpu->arch.sprg1); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500269 case SPRN_SPRG2:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100270 kvmppc_set_gpr(vcpu, rt, vcpu->arch.sprg2); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500271 case SPRN_SPRG3:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100272 kvmppc_set_gpr(vcpu, rt, vcpu->arch.sprg3); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500273 /* Note: SPRG4-7 are user-readable, so we don't get
274 * a trap. */
275
Alexander Graf9a7a9b02009-10-30 05:47:15 +0000276 case SPRN_DEC:
277 {
Alexander Graf513579e2009-10-30 05:47:16 +0000278 u64 jd = get_tb() - vcpu->arch.dec_jiffies;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100279 kvmppc_set_gpr(vcpu, rt, vcpu->arch.dec - jd);
280 pr_debug(KERN_INFO "mfDEC: %x - %llx = %lx\n",
281 vcpu->arch.dec, jd,
282 kvmppc_get_gpr(vcpu, rt));
Alexander Graf9a7a9b02009-10-30 05:47:15 +0000283 break;
284 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500285 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600286 emulated = kvmppc_core_emulate_mfspr(vcpu, sprn, rt);
287 if (emulated == EMULATE_FAIL) {
288 printk("mfspr: unknown spr %x\n", sprn);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100289 kvmppc_set_gpr(vcpu, rt, 0);
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600290 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500291 break;
292 }
293 break;
294
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600295 case OP_31_XOP_STHX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500296 rs = get_rs(inst);
297 ra = get_ra(inst);
298 rb = get_rb(inst);
299
300 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100301 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500302 2, 1);
303 break;
304
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600305 case OP_31_XOP_STHUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500306 rs = get_rs(inst);
307 ra = get_ra(inst);
308 rb = get_rb(inst);
309
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100310 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500311 if (ra)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100312 ea += kvmppc_get_gpr(vcpu, ra);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500313
314 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100315 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500316 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100317 kvmppc_set_gpr(vcpu, ra, ea);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500318 break;
319
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600320 case OP_31_XOP_MTSPR:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500321 sprn = get_sprn(inst);
322 rs = get_rs(inst);
323 switch (sprn) {
324 case SPRN_SRR0:
Alexander Grafde7906c2010-07-29 14:47:46 +0200325 vcpu->arch.shared->srr0 = kvmppc_get_gpr(vcpu, rs);
326 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500327 case SPRN_SRR1:
Alexander Grafde7906c2010-07-29 14:47:46 +0200328 vcpu->arch.shared->srr1 = kvmppc_get_gpr(vcpu, rs);
329 break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500330
331 /* XXX We need to context-switch the timebase for
332 * watchdog and FIT. */
333 case SPRN_TBWL: break;
334 case SPRN_TBWU: break;
335
Alexander Graf513579e2009-10-30 05:47:16 +0000336 case SPRN_MSSSR0: break;
337
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500338 case SPRN_DEC:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100339 vcpu->arch.dec = kvmppc_get_gpr(vcpu, rs);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500340 kvmppc_emulate_dec(vcpu);
341 break;
342
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500343 case SPRN_SPRG0:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100344 vcpu->arch.sprg0 = kvmppc_get_gpr(vcpu, rs); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500345 case SPRN_SPRG1:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100346 vcpu->arch.sprg1 = kvmppc_get_gpr(vcpu, rs); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500347 case SPRN_SPRG2:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100348 vcpu->arch.sprg2 = kvmppc_get_gpr(vcpu, rs); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500349 case SPRN_SPRG3:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100350 vcpu->arch.sprg3 = kvmppc_get_gpr(vcpu, rs); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500351
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500352 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600353 emulated = kvmppc_core_emulate_mtspr(vcpu, sprn, rs);
354 if (emulated == EMULATE_FAIL)
355 printk("mtspr: unknown spr %x\n", sprn);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500356 break;
357 }
358 break;
359
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600360 case OP_31_XOP_DCBI:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500361 /* Do nothing. The guest is performing dcbi because
362 * hardware DMA is not snooped by the dcache, but
363 * emulated DMA either goes through the dcache as
364 * normal writes, or the host kernel has handled dcache
365 * coherence. */
366 break;
367
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600368 case OP_31_XOP_LWBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500369 rt = get_rt(inst);
370 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 0);
371 break;
372
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600373 case OP_31_XOP_TLBSYNC:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500374 break;
375
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600376 case OP_31_XOP_STWBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500377 rs = get_rs(inst);
378 ra = get_ra(inst);
379 rb = get_rb(inst);
380
381 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100382 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500383 4, 0);
384 break;
385
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600386 case OP_31_XOP_LHBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500387 rt = get_rt(inst);
388 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 0);
389 break;
390
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600391 case OP_31_XOP_STHBRX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500392 rs = get_rs(inst);
393 ra = get_ra(inst);
394 rb = get_rb(inst);
395
396 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100397 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500398 2, 0);
399 break;
400
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500401 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600402 /* Attempt core-specific emulation below. */
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500403 emulated = EMULATE_FAIL;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500404 }
405 break;
406
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600407 case OP_LWZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500408 rt = get_rt(inst);
409 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
410 break;
411
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600412 case OP_LWZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500413 ra = get_ra(inst);
414 rt = get_rt(inst);
415 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100416 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500417 break;
418
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600419 case OP_LBZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500420 rt = get_rt(inst);
421 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
422 break;
423
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600424 case OP_LBZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500425 ra = get_ra(inst);
426 rt = get_rt(inst);
427 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100428 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500429 break;
430
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600431 case OP_STW:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500432 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100433 emulated = kvmppc_handle_store(run, vcpu,
434 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500435 4, 1);
436 break;
437
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600438 case OP_STWU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500439 ra = get_ra(inst);
440 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100441 emulated = kvmppc_handle_store(run, vcpu,
442 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500443 4, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100444 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500445 break;
446
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600447 case OP_STB:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500448 rs = get_rs(inst);
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 1, 1);
452 break;
453
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600454 case OP_STBU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500455 ra = get_ra(inst);
456 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100457 emulated = kvmppc_handle_store(run, vcpu,
458 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500459 1, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100460 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500461 break;
462
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600463 case OP_LHZ:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500464 rt = get_rt(inst);
465 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
466 break;
467
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600468 case OP_LHZU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500469 ra = get_ra(inst);
470 rt = get_rt(inst);
471 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100472 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500473 break;
474
Alexander Graf3587d532010-02-19 11:00:30 +0100475 case OP_LHA:
476 rt = get_rt(inst);
477 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
478 break;
479
480 case OP_LHAU:
481 ra = get_ra(inst);
482 rt = get_rt(inst);
483 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
484 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_accessed);
485 break;
486
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600487 case OP_STH:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500488 rs = get_rs(inst);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100489 emulated = kvmppc_handle_store(run, vcpu,
490 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500491 2, 1);
492 break;
493
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600494 case OP_STHU:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500495 ra = get_ra(inst);
496 rs = get_rs(inst);
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 Graf8e5b26b2010-01-08 02:58:01 +0100500 kvmppc_set_gpr(vcpu, ra, vcpu->arch.paddr_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}