2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * KVM/MIPS: Interrupt delivery
8 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
9 * Authors: Sanjay Lal <sanjayl@kymasys.com>
12 #include <linux/errno.h>
13 #include <linux/err.h>
14 #include <linux/module.h>
15 #include <linux/vmalloc.h>
17 #include <linux/bootmem.h>
19 #include <asm/cacheflush.h>
21 #include <linux/kvm_host.h>
23 #include "kvm_mips_int.h"
25 void kvm_mips_queue_irq(struct kvm_vcpu
*vcpu
, uint32_t priority
)
27 set_bit(priority
, &vcpu
->arch
.pending_exceptions
);
30 void kvm_mips_dequeue_irq(struct kvm_vcpu
*vcpu
, uint32_t priority
)
32 clear_bit(priority
, &vcpu
->arch
.pending_exceptions
);
35 void kvm_mips_queue_timer_int_cb(struct kvm_vcpu
*vcpu
)
37 /* Cause bits to reflect the pending timer interrupt,
38 * the EXC code will be set when we are actually
39 * delivering the interrupt:
41 kvm_set_c0_guest_cause(vcpu
->arch
.cop0
, (C_IRQ5
| C_TI
));
43 /* Queue up an INT exception for the core */
44 kvm_mips_queue_irq(vcpu
, MIPS_EXC_INT_TIMER
);
48 void kvm_mips_dequeue_timer_int_cb(struct kvm_vcpu
*vcpu
)
50 kvm_clear_c0_guest_cause(vcpu
->arch
.cop0
, (C_IRQ5
| C_TI
));
51 kvm_mips_dequeue_irq(vcpu
, MIPS_EXC_INT_TIMER
);
55 kvm_mips_queue_io_int_cb(struct kvm_vcpu
*vcpu
, struct kvm_mips_interrupt
*irq
)
57 int intr
= (int)irq
->irq
;
59 /* Cause bits to reflect the pending IO interrupt,
60 * the EXC code will be set when we are actually
61 * delivering the interrupt:
65 kvm_set_c0_guest_cause(vcpu
->arch
.cop0
, (C_IRQ0
));
66 /* Queue up an INT exception for the core */
67 kvm_mips_queue_irq(vcpu
, MIPS_EXC_INT_IO
);
71 kvm_set_c0_guest_cause(vcpu
->arch
.cop0
, (C_IRQ1
));
72 kvm_mips_queue_irq(vcpu
, MIPS_EXC_INT_IPI_1
);
76 kvm_set_c0_guest_cause(vcpu
->arch
.cop0
, (C_IRQ2
));
77 kvm_mips_queue_irq(vcpu
, MIPS_EXC_INT_IPI_2
);
87 kvm_mips_dequeue_io_int_cb(struct kvm_vcpu
*vcpu
,
88 struct kvm_mips_interrupt
*irq
)
90 int intr
= (int)irq
->irq
;
93 kvm_clear_c0_guest_cause(vcpu
->arch
.cop0
, (C_IRQ0
));
94 kvm_mips_dequeue_irq(vcpu
, MIPS_EXC_INT_IO
);
98 kvm_clear_c0_guest_cause(vcpu
->arch
.cop0
, (C_IRQ1
));
99 kvm_mips_dequeue_irq(vcpu
, MIPS_EXC_INT_IPI_1
);
103 kvm_clear_c0_guest_cause(vcpu
->arch
.cop0
, (C_IRQ2
));
104 kvm_mips_dequeue_irq(vcpu
, MIPS_EXC_INT_IPI_2
);
113 /* Deliver the interrupt of the corresponding priority, if possible. */
115 kvm_mips_irq_deliver_cb(struct kvm_vcpu
*vcpu
, unsigned int priority
,
121 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
122 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
125 case MIPS_EXC_INT_TIMER
:
126 if ((kvm_read_c0_guest_status(cop0
) & ST0_IE
)
127 && (!(kvm_read_c0_guest_status(cop0
) & (ST0_EXL
| ST0_ERL
)))
128 && (kvm_read_c0_guest_status(cop0
) & IE_IRQ5
)) {
134 case MIPS_EXC_INT_IO
:
135 if ((kvm_read_c0_guest_status(cop0
) & ST0_IE
)
136 && (!(kvm_read_c0_guest_status(cop0
) & (ST0_EXL
| ST0_ERL
)))
137 && (kvm_read_c0_guest_status(cop0
) & IE_IRQ0
)) {
143 case MIPS_EXC_INT_IPI_1
:
144 if ((kvm_read_c0_guest_status(cop0
) & ST0_IE
)
145 && (!(kvm_read_c0_guest_status(cop0
) & (ST0_EXL
| ST0_ERL
)))
146 && (kvm_read_c0_guest_status(cop0
) & IE_IRQ1
)) {
152 case MIPS_EXC_INT_IPI_2
:
153 if ((kvm_read_c0_guest_status(cop0
) & ST0_IE
)
154 && (!(kvm_read_c0_guest_status(cop0
) & (ST0_EXL
| ST0_ERL
)))
155 && (kvm_read_c0_guest_status(cop0
) & IE_IRQ2
)) {
165 /* Are we allowed to deliver the interrupt ??? */
168 if ((kvm_read_c0_guest_status(cop0
) & ST0_EXL
) == 0) {
170 kvm_write_c0_guest_epc(cop0
, arch
->pc
);
171 kvm_set_c0_guest_status(cop0
, ST0_EXL
);
173 if (cause
& CAUSEF_BD
)
174 kvm_set_c0_guest_cause(cop0
, CAUSEF_BD
);
176 kvm_clear_c0_guest_cause(cop0
, CAUSEF_BD
);
178 kvm_debug("Delivering INT @ pc %#lx\n", arch
->pc
);
181 kvm_err("Trying to deliver interrupt when EXL is already set\n");
183 kvm_change_c0_guest_cause(cop0
, CAUSEF_EXCCODE
,
184 (exccode
<< CAUSEB_EXCCODE
));
186 /* XXXSL Set PC to the interrupt exception entry point */
187 if (kvm_read_c0_guest_cause(cop0
) & CAUSEF_IV
)
188 arch
->pc
= KVM_GUEST_KSEG0
+ 0x200;
190 arch
->pc
= KVM_GUEST_KSEG0
+ 0x180;
192 clear_bit(priority
, &vcpu
->arch
.pending_exceptions
);
199 kvm_mips_irq_clear_cb(struct kvm_vcpu
*vcpu
, unsigned int priority
,
205 void kvm_mips_deliver_interrupts(struct kvm_vcpu
*vcpu
, uint32_t cause
)
207 unsigned long *pending
= &vcpu
->arch
.pending_exceptions
;
208 unsigned long *pending_clr
= &vcpu
->arch
.pending_exceptions_clr
;
209 unsigned int priority
;
211 if (!(*pending
) && !(*pending_clr
))
214 priority
= __ffs(*pending_clr
);
215 while (priority
<= MIPS_EXC_MAX
) {
216 if (kvm_mips_callbacks
->irq_clear(vcpu
, priority
, cause
)) {
217 if (!KVM_MIPS_IRQ_CLEAR_ALL_AT_ONCE
)
221 priority
= find_next_bit(pending_clr
,
222 BITS_PER_BYTE
* sizeof(*pending_clr
),
226 priority
= __ffs(*pending
);
227 while (priority
<= MIPS_EXC_MAX
) {
228 if (kvm_mips_callbacks
->irq_deliver(vcpu
, priority
, cause
)) {
229 if (!KVM_MIPS_IRQ_DELIVER_ALL_AT_ONCE
)
233 priority
= find_next_bit(pending
,
234 BITS_PER_BYTE
* sizeof(*pending
),
240 int kvm_mips_pending_timer(struct kvm_vcpu
*vcpu
)
242 return test_bit(MIPS_EXC_INT_TIMER
, &vcpu
->arch
.pending_exceptions
);