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.
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.
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.
15 * Copyright IBM Corp. 2007
16 * Copyright 2011 Freescale Semiconductor, Inc.
18 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
21 #include <linux/jiffies.h>
22 #include <linux/hrtimer.h>
23 #include <linux/types.h>
24 #include <linux/string.h>
25 #include <linux/kvm_host.h>
26 #include <linux/clockchips.h>
30 #include <asm/byteorder.h>
31 #include <asm/kvm_ppc.h>
32 #include <asm/disassemble.h>
33 #include <asm/ppc-opcode.h>
37 void kvmppc_emulate_dec(struct kvm_vcpu
*vcpu
)
39 unsigned long dec_nsec
;
40 unsigned long long dec_time
;
42 pr_debug("mtDEC: %x\n", vcpu
->arch
.dec
);
43 hrtimer_try_to_cancel(&vcpu
->arch
.dec_timer
);
45 #ifdef CONFIG_PPC_BOOK3S
46 /* mtdec lowers the interrupt line when positive. */
47 kvmppc_core_dequeue_dec(vcpu
);
49 /* POWER4+ triggers a dec interrupt if the value is < 0 */
50 if (vcpu
->arch
.dec
& 0x80000000) {
51 kvmppc_core_queue_dec(vcpu
);
57 /* On BOOKE, DEC = 0 is as good as decrementer not enabled */
58 if (vcpu
->arch
.dec
== 0)
63 * The decrementer ticks at the same rate as the timebase, so
64 * that's how we convert the guest DEC value to the number of
68 dec_time
= vcpu
->arch
.dec
;
70 * Guest timebase ticks at the same frequency as host decrementer.
71 * So use the host decrementer calculations for decrementer emulation.
73 dec_time
= dec_time
<< decrementer_clockevent
.shift
;
74 do_div(dec_time
, decrementer_clockevent
.mult
);
75 dec_nsec
= do_div(dec_time
, NSEC_PER_SEC
);
76 hrtimer_start(&vcpu
->arch
.dec_timer
,
77 ktime_set(dec_time
, dec_nsec
), HRTIMER_MODE_REL
);
78 vcpu
->arch
.dec_jiffies
= get_tb();
81 u32
kvmppc_get_dec(struct kvm_vcpu
*vcpu
, u64 tb
)
83 u64 jd
= tb
- vcpu
->arch
.dec_jiffies
;
86 if (vcpu
->arch
.dec
< jd
)
90 return vcpu
->arch
.dec
- jd
;
93 static int kvmppc_emulate_mtspr(struct kvm_vcpu
*vcpu
, int sprn
, int rs
)
95 enum emulation_result emulated
= EMULATE_DONE
;
96 ulong spr_val
= kvmppc_get_gpr(vcpu
, rs
);
100 kvmppc_set_srr0(vcpu
, spr_val
);
103 kvmppc_set_srr1(vcpu
, spr_val
);
106 /* XXX We need to context-switch the timebase for
107 * watchdog and FIT. */
108 case SPRN_TBWL
: break;
109 case SPRN_TBWU
: break;
112 vcpu
->arch
.dec
= spr_val
;
113 kvmppc_emulate_dec(vcpu
);
117 kvmppc_set_sprg0(vcpu
, spr_val
);
120 kvmppc_set_sprg1(vcpu
, spr_val
);
123 kvmppc_set_sprg2(vcpu
, spr_val
);
126 kvmppc_set_sprg3(vcpu
, spr_val
);
129 /* PIR can legally be written, but we ignore it */
130 case SPRN_PIR
: break;
133 emulated
= vcpu
->kvm
->arch
.kvm_ops
->emulate_mtspr(vcpu
, sprn
,
135 if (emulated
== EMULATE_FAIL
)
136 printk(KERN_INFO
"mtspr: unknown spr "
141 kvmppc_set_exit_type(vcpu
, EMULATED_MTSPR_EXITS
);
146 static int kvmppc_emulate_mfspr(struct kvm_vcpu
*vcpu
, int sprn
, int rt
)
148 enum emulation_result emulated
= EMULATE_DONE
;
153 spr_val
= kvmppc_get_srr0(vcpu
);
156 spr_val
= kvmppc_get_srr1(vcpu
);
159 spr_val
= vcpu
->arch
.pvr
;
162 spr_val
= vcpu
->vcpu_id
;
165 /* Note: mftb and TBRL/TBWL are user-accessible, so
166 * the guest can always access the real TB anyways.
167 * In fact, we probably will never see these traps. */
169 spr_val
= get_tb() >> 32;
176 spr_val
= kvmppc_get_sprg0(vcpu
);
179 spr_val
= kvmppc_get_sprg1(vcpu
);
182 spr_val
= kvmppc_get_sprg2(vcpu
);
185 spr_val
= kvmppc_get_sprg3(vcpu
);
187 /* Note: SPRG4-7 are user-readable, so we don't get
191 spr_val
= kvmppc_get_dec(vcpu
, get_tb());
194 emulated
= vcpu
->kvm
->arch
.kvm_ops
->emulate_mfspr(vcpu
, sprn
,
196 if (unlikely(emulated
== EMULATE_FAIL
)) {
197 printk(KERN_INFO
"mfspr: unknown spr "
203 if (emulated
== EMULATE_DONE
)
204 kvmppc_set_gpr(vcpu
, rt
, spr_val
);
205 kvmppc_set_exit_type(vcpu
, EMULATED_MFSPR_EXITS
);
210 /* XXX Should probably auto-generate instruction decoding for a particular core
211 * from opcode tables in the future. */
212 int kvmppc_emulate_instruction(struct kvm_run
*run
, struct kvm_vcpu
*vcpu
)
216 enum emulation_result emulated
;
219 /* this default type might be overwritten by subcategories */
220 kvmppc_set_exit_type(vcpu
, EMULATED_INST_EXITS
);
222 emulated
= kvmppc_get_last_inst(vcpu
, false, &inst
);
223 if (emulated
!= EMULATE_DONE
)
226 pr_debug("Emulating opcode %d / %d\n", get_op(inst
), get_xop(inst
));
230 sprn
= get_sprn(inst
);
232 switch (get_op(inst
)) {
234 #ifdef CONFIG_PPC_BOOK3S
236 kvmppc_core_queue_program(vcpu
, SRR1_PROGTRAP
);
238 kvmppc_core_queue_program(vcpu
,
239 vcpu
->arch
.shared
->esr
| ESR_PTR
);
245 switch (get_xop(inst
)) {
249 case OP_31_XOP_TRAP_64
:
251 #ifdef CONFIG_PPC_BOOK3S
252 kvmppc_core_queue_program(vcpu
, SRR1_PROGTRAP
);
254 kvmppc_core_queue_program(vcpu
,
255 vcpu
->arch
.shared
->esr
| ESR_PTR
);
260 case OP_31_XOP_MFSPR
:
261 emulated
= kvmppc_emulate_mfspr(vcpu
, sprn
, rt
);
264 case OP_31_XOP_MTSPR
:
265 emulated
= kvmppc_emulate_mtspr(vcpu
, sprn
, rs
);
268 case OP_31_XOP_TLBSYNC
:
272 /* Attempt core-specific emulation below. */
273 emulated
= EMULATE_FAIL
;
278 emulated
= EMULATE_FAIL
;
281 if (emulated
== EMULATE_FAIL
) {
282 emulated
= vcpu
->kvm
->arch
.kvm_ops
->emulate_op(run
, vcpu
, inst
,
284 if (emulated
== EMULATE_AGAIN
) {
286 } else if (emulated
== EMULATE_FAIL
) {
288 printk(KERN_ERR
"Couldn't emulate instruction 0x%08x "
289 "(op %d xop %d)\n", inst
, get_op(inst
), get_xop(inst
));
290 kvmppc_core_queue_program(vcpu
, 0);
294 trace_kvm_ppc_instr(inst
, kvmppc_get_pc(vcpu
), emulated
);
296 /* Advance past emulated instruction. */
298 kvmppc_set_pc(vcpu
, kvmppc_get_pc(vcpu
) + 4);
302 EXPORT_SYMBOL_GPL(kvmppc_emulate_instruction
);