blob: b608c0b0beb58ca81943c468627240c620dbd995 [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
Alexander Grafb4433a72010-01-08 02:58:04 +0100150 /* Try again next time */
151 if (inst == KVM_INST_FETCH_FAILED)
152 return EMULATE_DONE;
153
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500154 switch (get_op(inst)) {
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600155 case OP_TRAP:
Alexander Graf00c3a372010-04-16 00:11:42 +0200156#ifdef CONFIG_PPC_BOOK3S
Alexander Graf513579e2009-10-30 05:47:16 +0000157 case OP_TRAP_64:
Alexander Graf25a8a022010-01-08 02:58:07 +0100158 kvmppc_core_queue_program(vcpu, SRR1_PROGTRAP);
Liu Yudaf5e272010-02-02 19:44:35 +0800159#else
160 kvmppc_core_queue_program(vcpu, vcpu->arch.esr | ESR_PTR);
161#endif
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500162 advance = 0;
163 break;
164
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500165 case 31:
166 switch (get_xop(inst)) {
167
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600168 case OP_31_XOP_LWZX:
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500169 rt = get_rt(inst);
170 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
171 break;
172
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600173 case OP_31_XOP_LBZX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500174 rt = get_rt(inst);
175 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
176 break;
177
Alexander Graf1c85e732010-03-24 21:48:27 +0100178 case OP_31_XOP_LBZUX:
179 rt = get_rt(inst);
180 ra = get_ra(inst);
181 rb = get_rb(inst);
182
183 ea = kvmppc_get_gpr(vcpu, rb);
184 if (ra)
185 ea += kvmppc_get_gpr(vcpu, ra);
186
187 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
188 kvmppc_set_gpr(vcpu, ra, ea);
189 break;
190
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600191 case OP_31_XOP_STWX:
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500192 rs = get_rs(inst);
193 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100194 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardac3cd342008-05-21 18:22:52 -0500195 4, 1);
196 break;
197
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600198 case OP_31_XOP_STBX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500199 rs = get_rs(inst);
200 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100201 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500202 1, 1);
203 break;
204
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600205 case OP_31_XOP_STBUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500206 rs = get_rs(inst);
207 ra = get_ra(inst);
208 rb = get_rb(inst);
209
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100210 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500211 if (ra)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100212 ea += kvmppc_get_gpr(vcpu, ra);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500213
214 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100215 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500216 1, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100217 kvmppc_set_gpr(vcpu, rs, ea);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500218 break;
219
Alexander Graf1c85e732010-03-24 21:48:27 +0100220 case OP_31_XOP_LHAX:
221 rt = get_rt(inst);
222 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
223 break;
224
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600225 case OP_31_XOP_LHZX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500226 rt = get_rt(inst);
227 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
228 break;
229
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600230 case OP_31_XOP_LHZUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500231 rt = get_rt(inst);
232 ra = get_ra(inst);
233 rb = get_rb(inst);
234
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100235 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500236 if (ra)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100237 ea += kvmppc_get_gpr(vcpu, ra);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500238
239 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100240 kvmppc_set_gpr(vcpu, ra, ea);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500241 break;
242
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600243 case OP_31_XOP_MFSPR:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500244 sprn = get_sprn(inst);
245 rt = get_rt(inst);
246
247 switch (sprn) {
248 case SPRN_SRR0:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100249 kvmppc_set_gpr(vcpu, rt, vcpu->arch.srr0); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500250 case SPRN_SRR1:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100251 kvmppc_set_gpr(vcpu, rt, vcpu->arch.srr1); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500252 case SPRN_PVR:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100253 kvmppc_set_gpr(vcpu, rt, vcpu->arch.pvr); break;
Liu Yu06579dd2009-06-05 14:54:31 +0800254 case SPRN_PIR:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100255 kvmppc_set_gpr(vcpu, rt, vcpu->vcpu_id); break;
Alexander Graf513579e2009-10-30 05:47:16 +0000256 case SPRN_MSSSR0:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100257 kvmppc_set_gpr(vcpu, rt, 0); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500258
259 /* Note: mftb and TBRL/TBWL are user-accessible, so
260 * the guest can always access the real TB anyways.
261 * In fact, we probably will never see these traps. */
262 case SPRN_TBWL:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100263 kvmppc_set_gpr(vcpu, rt, get_tb() >> 32); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500264 case SPRN_TBWU:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100265 kvmppc_set_gpr(vcpu, rt, get_tb()); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500266
267 case SPRN_SPRG0:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100268 kvmppc_set_gpr(vcpu, rt, vcpu->arch.sprg0); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500269 case SPRN_SPRG1:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100270 kvmppc_set_gpr(vcpu, rt, vcpu->arch.sprg1); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500271 case SPRN_SPRG2:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100272 kvmppc_set_gpr(vcpu, rt, vcpu->arch.sprg2); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500273 case SPRN_SPRG3:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100274 kvmppc_set_gpr(vcpu, rt, vcpu->arch.sprg3); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500275 /* Note: SPRG4-7 are user-readable, so we don't get
276 * a trap. */
277
Alexander Graf9a7a9b02009-10-30 05:47:15 +0000278 case SPRN_DEC:
279 {
Alexander Graf513579e2009-10-30 05:47:16 +0000280 u64 jd = get_tb() - vcpu->arch.dec_jiffies;
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100281 kvmppc_set_gpr(vcpu, rt, vcpu->arch.dec - jd);
282 pr_debug(KERN_INFO "mfDEC: %x - %llx = %lx\n",
283 vcpu->arch.dec, jd,
284 kvmppc_get_gpr(vcpu, rt));
Alexander Graf9a7a9b02009-10-30 05:47:15 +0000285 break;
286 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500287 default:
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600288 emulated = kvmppc_core_emulate_mfspr(vcpu, sprn, rt);
289 if (emulated == EMULATE_FAIL) {
290 printk("mfspr: unknown spr %x\n", sprn);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100291 kvmppc_set_gpr(vcpu, rt, 0);
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600292 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500293 break;
294 }
295 break;
296
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600297 case OP_31_XOP_STHX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500298 rs = get_rs(inst);
299 ra = get_ra(inst);
300 rb = get_rb(inst);
301
302 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100303 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500304 2, 1);
305 break;
306
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600307 case OP_31_XOP_STHUX:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500308 rs = get_rs(inst);
309 ra = get_ra(inst);
310 rb = get_rb(inst);
311
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100312 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500313 if (ra)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100314 ea += kvmppc_get_gpr(vcpu, ra);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500315
316 emulated = kvmppc_handle_store(run, vcpu,
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100317 kvmppc_get_gpr(vcpu, rs),
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500318 2, 1);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100319 kvmppc_set_gpr(vcpu, ra, ea);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500320 break;
321
Hollis Blanchardcea5d8c2009-01-03 16:23:05 -0600322 case OP_31_XOP_MTSPR:
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500323 sprn = get_sprn(inst);
324 rs = get_rs(inst);
325 switch (sprn) {
326 case SPRN_SRR0:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100327 vcpu->arch.srr0 = kvmppc_get_gpr(vcpu, rs); break;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500328 case SPRN_SRR1:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100329 vcpu->arch.srr1 = kvmppc_get_gpr(vcpu, rs); 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}