Aurelien Jarno | 7b9cbad | 2010-03-14 23:30:19 +0100 | [diff] [blame] | 1 | /* |
| 2 | * QEMU MIPS interrupt support |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 5 | * of this software and associated documentation files (the "Software"), to deal |
| 6 | * in the Software without restriction, including without limitation the rights |
| 7 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 8 | * copies of the Software, and to permit persons to whom the Software is |
| 9 | * furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice shall be included in |
| 12 | * all copies or substantial portions of the Software. |
| 13 | * |
| 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 17 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 18 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 19 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 20 | * THE SOFTWARE. |
| 21 | */ |
| 22 | |
Peter Maydell | c684822 | 2016-01-18 17:35:00 +0000 | [diff] [blame] | 23 | #include "qemu/osdep.h" |
Paolo Bonzini | 83c9f4c | 2013-02-04 15:40:22 +0100 | [diff] [blame] | 24 | #include "hw/hw.h" |
Paolo Bonzini | 0d09e41 | 2013-02-05 17:06:20 +0100 | [diff] [blame] | 25 | #include "hw/mips/cpudevs.h" |
ths | 4de9b24 | 2007-01-24 01:47:51 +0000 | [diff] [blame] | 26 | #include "cpu.h" |
Sanjay Lal | b1bd8b2 | 2014-06-17 23:10:34 +0100 | [diff] [blame] | 27 | #include "sysemu/kvm.h" |
| 28 | #include "kvm_mips.h" |
ths | 4de9b24 | 2007-01-24 01:47:51 +0000 | [diff] [blame] | 29 | |
pbrook | d537cf6 | 2007-04-07 18:14:41 +0000 | [diff] [blame] | 30 | static void cpu_mips_irq_request(void *opaque, int irq, int level) |
ths | 4de9b24 | 2007-01-24 01:47:51 +0000 | [diff] [blame] | 31 | { |
Andreas Färber | d8ed887 | 2013-01-17 22:30:20 +0100 | [diff] [blame] | 32 | MIPSCPU *cpu = opaque; |
| 33 | CPUMIPSState *env = &cpu->env; |
| 34 | CPUState *cs = CPU(cpu); |
ths | 4de9b24 | 2007-01-24 01:47:51 +0000 | [diff] [blame] | 35 | |
ths | 39d51eb | 2007-03-18 12:43:40 +0000 | [diff] [blame] | 36 | if (irq < 0 || irq > 7) |
ths | 4de9b24 | 2007-01-24 01:47:51 +0000 | [diff] [blame] | 37 | return; |
| 38 | |
ths | 4de9b24 | 2007-01-24 01:47:51 +0000 | [diff] [blame] | 39 | if (level) { |
ths | 39d51eb | 2007-03-18 12:43:40 +0000 | [diff] [blame] | 40 | env->CP0_Cause |= 1 << (irq + CP0Ca_IP); |
Sanjay Lal | b1bd8b2 | 2014-06-17 23:10:34 +0100 | [diff] [blame] | 41 | |
| 42 | if (kvm_enabled() && irq == 2) { |
| 43 | kvm_mips_set_interrupt(cpu, irq, level); |
| 44 | } |
| 45 | |
ths | 4de9b24 | 2007-01-24 01:47:51 +0000 | [diff] [blame] | 46 | } else { |
ths | a4bc3af | 2007-03-31 16:54:14 +0000 | [diff] [blame] | 47 | env->CP0_Cause &= ~(1 << (irq + CP0Ca_IP)); |
Sanjay Lal | b1bd8b2 | 2014-06-17 23:10:34 +0100 | [diff] [blame] | 48 | |
| 49 | if (kvm_enabled() && irq == 2) { |
| 50 | kvm_mips_set_interrupt(cpu, irq, level); |
| 51 | } |
ths | 4de9b24 | 2007-01-24 01:47:51 +0000 | [diff] [blame] | 52 | } |
Edgar E. Iglesias | 3638831 | 2010-07-24 13:40:05 +0200 | [diff] [blame] | 53 | |
| 54 | if (env->CP0_Cause & CP0Ca_IP_mask) { |
Andreas Färber | c3affe5 | 2013-01-18 15:03:43 +0100 | [diff] [blame] | 55 | cpu_interrupt(cs, CPU_INTERRUPT_HARD); |
Edgar E. Iglesias | 3638831 | 2010-07-24 13:40:05 +0200 | [diff] [blame] | 56 | } else { |
Andreas Färber | d8ed887 | 2013-01-17 22:30:20 +0100 | [diff] [blame] | 57 | cpu_reset_interrupt(cs, CPU_INTERRUPT_HARD); |
Edgar E. Iglesias | 3638831 | 2010-07-24 13:40:05 +0200 | [diff] [blame] | 58 | } |
ths | 4de9b24 | 2007-01-24 01:47:51 +0000 | [diff] [blame] | 59 | } |
pbrook | d537cf6 | 2007-04-07 18:14:41 +0000 | [diff] [blame] | 60 | |
Paolo Bonzini | 5a975d4 | 2016-03-15 14:32:19 +0100 | [diff] [blame] | 61 | void cpu_mips_irq_init_cpu(MIPSCPU *cpu) |
pbrook | d537cf6 | 2007-04-07 18:14:41 +0000 | [diff] [blame] | 62 | { |
Paolo Bonzini | 5a975d4 | 2016-03-15 14:32:19 +0100 | [diff] [blame] | 63 | CPUMIPSState *env = &cpu->env; |
pbrook | d537cf6 | 2007-04-07 18:14:41 +0000 | [diff] [blame] | 64 | qemu_irq *qi; |
| 65 | int i; |
| 66 | |
Andreas Färber | d8ed887 | 2013-01-17 22:30:20 +0100 | [diff] [blame] | 67 | qi = qemu_allocate_irqs(cpu_mips_irq_request, mips_env_get_cpu(env), 8); |
pbrook | d537cf6 | 2007-04-07 18:14:41 +0000 | [diff] [blame] | 68 | for (i = 0; i < 8; i++) { |
| 69 | env->irq[i] = qi[i]; |
| 70 | } |
| 71 | } |
Aurelien Jarno | 5dc5d9f | 2010-07-25 16:51:29 +0200 | [diff] [blame] | 72 | |
Andreas Färber | 61c56c8 | 2012-03-14 01:38:23 +0100 | [diff] [blame] | 73 | void cpu_mips_soft_irq(CPUMIPSState *env, int irq, int level) |
Aurelien Jarno | 5dc5d9f | 2010-07-25 16:51:29 +0200 | [diff] [blame] | 74 | { |
| 75 | if (irq < 0 || irq > 2) { |
| 76 | return; |
| 77 | } |
| 78 | |
| 79 | qemu_set_irq(env->irq[irq], level); |
| 80 | } |