]> Git Repo - qemu.git/blame - target/openrisc/interrupt.c
target/openrisc: Fix writes to interrupt mask register
[qemu.git] / target / openrisc / interrupt.c
CommitLineData
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 30void 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;
378cd36f 35 int exception = cs->exception_index;
ae52bd96
SM
36
37 env->epcr = env->pc;
378cd36f 38 if (exception == EXCP_SYSCALL) {
ae52bd96 39 env->epcr += 4;
b6a71ef7 40 }
c56e3b86
SH
41 /* When we have an illegal instruction the error effective address
42 shall be set to the illegal instruction address. */
378cd36f 43 if (exception == EXCP_ILLEGAL) {
c56e3b86
SH
44 env->eear = env->pc;
45 }
b6a71ef7 46
9f6e8afa 47 /* During exceptions esr is populared with the pre-exception sr. */
84775c43 48 env->esr = cpu_get_sr(env);
9f6e8afa
SH
49 /* In parallel sr is updated to disable mmu, interrupts, timers and
50 set the delay slot exception flag. */
b6a71ef7
JL
51 env->sr &= ~SR_DME;
52 env->sr &= ~SR_IME;
53 env->sr |= SR_SM;
54 env->sr &= ~SR_IEE;
55 env->sr &= ~SR_TEE;
f4d1414a
SH
56 env->pmr &= ~PMR_DME;
57 env->pmr &= ~PMR_SME;
930c3d00 58 env->lock_addr = -1;
b6a71ef7 59
9f6e8afa
SH
60 /* Set/clear dsx to indicate if we are in a delay slot exception. */
61 if (env->dflag) {
62 env->dflag = 0;
63 env->sr |= SR_DSX;
64 env->epcr -= 4;
65 } else {
66 env->sr &= ~SR_DSX;
67 }
68
378cd36f
RH
69 if (exception > 0 && exception < EXCP_NR) {
70 static const char * const int_name[EXCP_NR] = {
71 [EXCP_RESET] = "RESET",
72 [EXCP_BUSERR] = "BUSERR (bus error)",
73 [EXCP_DPF] = "DFP (data protection fault)",
74 [EXCP_IPF] = "IPF (code protection fault)",
75 [EXCP_TICK] = "TICK (timer interrupt)",
76 [EXCP_ALIGN] = "ALIGN",
77 [EXCP_ILLEGAL] = "ILLEGAL",
78 [EXCP_INT] = "INT (device interrupt)",
79 [EXCP_DTLBMISS] = "DTLBMISS (data tlb miss)",
80 [EXCP_ITLBMISS] = "ITLBMISS (code tlb miss)",
81 [EXCP_RANGE] = "RANGE",
82 [EXCP_SYSCALL] = "SYSCALL",
83 [EXCP_FPE] = "FPE",
84 [EXCP_TRAP] = "TRAP",
85 };
86
87 qemu_log_mask(CPU_LOG_INT, "INT: %s\n", int_name[exception]);
88
89 hwaddr vect_pc = exception << 8;
356a2db3
TA
90 if (env->cpucfgr & CPUCFGR_EVBARP) {
91 vect_pc |= env->evbar;
92 }
3fee028d
TA
93 if (env->sr & SR_EPH) {
94 vect_pc |= 0xf0000000;
95 }
356a2db3 96 env->pc = vect_pc;
b6a71ef7 97 } else {
378cd36f 98 cpu_abort(cs, "Unhandled exception 0x%x\n", exception);
b6a71ef7
JL
99 }
100#endif
101
27103424 102 cs->exception_index = -1;
e67db06e 103}
fbb96c4b
RH
104
105bool openrisc_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
106{
107 OpenRISCCPU *cpu = OPENRISC_CPU(cs);
108 CPUOpenRISCState *env = &cpu->env;
109 int idx = -1;
110
111 if ((interrupt_request & CPU_INTERRUPT_HARD) && (env->sr & SR_IEE)) {
112 idx = EXCP_INT;
113 }
114 if ((interrupt_request & CPU_INTERRUPT_TIMER) && (env->sr & SR_TEE)) {
115 idx = EXCP_TICK;
116 }
117 if (idx >= 0) {
118 cs->exception_index = idx;
119 openrisc_cpu_do_interrupt(cs);
120 return true;
121 }
122 return false;
123}
This page took 0.347666 seconds and 4 git commands to generate.