]>
Commit | Line | Data |
---|---|---|
e67db06e JL |
1 | /* |
2 | * OpenRISC interrupt. | |
3 | * | |
4 | * Copyright (c) 2011-2012 Jia Liu <[email protected]> | |
5 | * | |
6 | * This library is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU Lesser General Public | |
8 | * License as published by the Free Software Foundation; either | |
9 | * version 2 of the License, or (at your option) any later version. | |
10 | * | |
11 | * This library is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 | * Lesser General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU Lesser General Public | |
17 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. | |
18 | */ | |
19 | ||
ed2decc6 | 20 | #include "qemu/osdep.h" |
e67db06e | 21 | #include "cpu.h" |
63c91552 | 22 | #include "exec/exec-all.h" |
e67db06e | 23 | #include "qemu-common.h" |
022c62cb | 24 | #include "exec/gdbstub.h" |
1de7afc9 | 25 | #include "qemu/host-utils.h" |
e67db06e JL |
26 | #ifndef CONFIG_USER_ONLY |
27 | #include "hw/loader.h" | |
28 | #endif | |
29 | ||
97a8ea5a | 30 | void openrisc_cpu_do_interrupt(CPUState *cs) |
e67db06e | 31 | { |
27103424 | 32 | #ifndef CONFIG_USER_ONLY |
97a8ea5a AF |
33 | OpenRISCCPU *cpu = OPENRISC_CPU(cs); |
34 | CPUOpenRISCState *env = &cpu->env; | |
ae52bd96 SM |
35 | |
36 | env->epcr = env->pc; | |
a01deb36 RH |
37 | if (env->dflag) { |
38 | env->dflag = 0; | |
b6a71ef7 | 39 | env->sr |= SR_DSX; |
ae52bd96 | 40 | env->epcr -= 4; |
c56e3b86 SH |
41 | } else { |
42 | env->sr &= ~SR_DSX; | |
ae52bd96 | 43 | } |
27103424 | 44 | if (cs->exception_index == EXCP_SYSCALL) { |
ae52bd96 | 45 | env->epcr += 4; |
b6a71ef7 | 46 | } |
c56e3b86 SH |
47 | /* When we have an illegal instruction the error effective address |
48 | shall be set to the illegal instruction address. */ | |
49 | if (cs->exception_index == EXCP_ILLEGAL) { | |
50 | env->eear = env->pc; | |
51 | } | |
b6a71ef7 JL |
52 | |
53 | /* For machine-state changed between user-mode and supervisor mode, | |
54 | we need flush TLB when we enter&exit EXCP. */ | |
d10eb08f | 55 | tlb_flush(cs); |
b6a71ef7 | 56 | |
84775c43 | 57 | env->esr = cpu_get_sr(env); |
b6a71ef7 JL |
58 | env->sr &= ~SR_DME; |
59 | env->sr &= ~SR_IME; | |
60 | env->sr |= SR_SM; | |
61 | env->sr &= ~SR_IEE; | |
62 | env->sr &= ~SR_TEE; | |
63 | env->tlb->cpu_openrisc_map_address_data = &cpu_openrisc_get_phys_nommu; | |
64 | env->tlb->cpu_openrisc_map_address_code = &cpu_openrisc_get_phys_nommu; | |
930c3d00 | 65 | env->lock_addr = -1; |
b6a71ef7 | 66 | |
27103424 | 67 | if (cs->exception_index > 0 && cs->exception_index < EXCP_NR) { |
356a2db3 TA |
68 | hwaddr vect_pc = cs->exception_index << 8; |
69 | if (env->cpucfgr & CPUCFGR_EVBARP) { | |
70 | vect_pc |= env->evbar; | |
71 | } | |
3fee028d TA |
72 | if (env->sr & SR_EPH) { |
73 | vect_pc |= 0xf0000000; | |
74 | } | |
356a2db3 | 75 | env->pc = vect_pc; |
b6a71ef7 | 76 | } else { |
a47dddd7 | 77 | cpu_abort(cs, "Unhandled exception 0x%x\n", cs->exception_index); |
b6a71ef7 JL |
78 | } |
79 | #endif | |
80 | ||
27103424 | 81 | cs->exception_index = -1; |
e67db06e | 82 | } |
fbb96c4b RH |
83 | |
84 | bool openrisc_cpu_exec_interrupt(CPUState *cs, int interrupt_request) | |
85 | { | |
86 | OpenRISCCPU *cpu = OPENRISC_CPU(cs); | |
87 | CPUOpenRISCState *env = &cpu->env; | |
88 | int idx = -1; | |
89 | ||
90 | if ((interrupt_request & CPU_INTERRUPT_HARD) && (env->sr & SR_IEE)) { | |
91 | idx = EXCP_INT; | |
92 | } | |
93 | if ((interrupt_request & CPU_INTERRUPT_TIMER) && (env->sr & SR_TEE)) { | |
94 | idx = EXCP_TICK; | |
95 | } | |
96 | if (idx >= 0) { | |
97 | cs->exception_index = idx; | |
98 | openrisc_cpu_do_interrupt(cs); | |
99 | return true; | |
100 | } | |
101 | return false; | |
102 | } |