xref: /qemu/target/sparc/int64_helper.c (revision 937470bb)
1 /*
2  * Sparc64 interrupt helpers
3  *
4  *  Copyright (c) 2003-2005 Fabrice Bellard
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 
20 #include "qemu/osdep.h"
21 #include "cpu.h"
22 #include "exec/helper-proto.h"
23 #include "exec/log.h"
24 #include "trace.h"
25 
26 #define DEBUG_PCALL
27 
28 #ifdef DEBUG_PCALL
29 static const char * const excp_names[0x80] = {
30     [TT_TFAULT] = "Instruction Access Fault",
31     [TT_TMISS] = "Instruction Access MMU Miss",
32     [TT_CODE_ACCESS] = "Instruction Access Error",
33     [TT_ILL_INSN] = "Illegal Instruction",
34     [TT_PRIV_INSN] = "Privileged Instruction",
35     [TT_NFPU_INSN] = "FPU Disabled",
36     [TT_FP_EXCP] = "FPU Exception",
37     [TT_TOVF] = "Tag Overflow",
38     [TT_CLRWIN] = "Clean Windows",
39     [TT_DIV_ZERO] = "Division By Zero",
40     [TT_DFAULT] = "Data Access Fault",
41     [TT_DMISS] = "Data Access MMU Miss",
42     [TT_DATA_ACCESS] = "Data Access Error",
43     [TT_DPROT] = "Data Protection Error",
44     [TT_UNALIGNED] = "Unaligned Memory Access",
45     [TT_PRIV_ACT] = "Privileged Action",
46     [TT_EXTINT | 0x1] = "External Interrupt 1",
47     [TT_EXTINT | 0x2] = "External Interrupt 2",
48     [TT_EXTINT | 0x3] = "External Interrupt 3",
49     [TT_EXTINT | 0x4] = "External Interrupt 4",
50     [TT_EXTINT | 0x5] = "External Interrupt 5",
51     [TT_EXTINT | 0x6] = "External Interrupt 6",
52     [TT_EXTINT | 0x7] = "External Interrupt 7",
53     [TT_EXTINT | 0x8] = "External Interrupt 8",
54     [TT_EXTINT | 0x9] = "External Interrupt 9",
55     [TT_EXTINT | 0xa] = "External Interrupt 10",
56     [TT_EXTINT | 0xb] = "External Interrupt 11",
57     [TT_EXTINT | 0xc] = "External Interrupt 12",
58     [TT_EXTINT | 0xd] = "External Interrupt 13",
59     [TT_EXTINT | 0xe] = "External Interrupt 14",
60     [TT_EXTINT | 0xf] = "External Interrupt 15",
61 };
62 #endif
63 
64 void sparc_cpu_do_interrupt(CPUState *cs)
65 {
66     SPARCCPU *cpu = SPARC_CPU(cs);
67     CPUSPARCState *env = &cpu->env;
68     int intno = cs->exception_index;
69     trap_state *tsptr;
70 
71     /* Compute PSR before exposing state.  */
72     if (env->cc_op != CC_OP_FLAGS) {
73         cpu_get_psr(env);
74     }
75 
76 #ifdef DEBUG_PCALL
77     if (qemu_loglevel_mask(CPU_LOG_INT)) {
78         static int count;
79         const char *name;
80 
81         if (intno < 0 || intno >= 0x1ff) {
82             name = "Unknown";
83         } else if (intno >= 0x180) {
84             name = "Hyperprivileged Trap Instruction";
85         } else if (intno >= 0x100) {
86             name = "Trap Instruction";
87         } else if (intno >= 0xc0) {
88             name = "Window Fill";
89         } else if (intno >= 0x80) {
90             name = "Window Spill";
91         } else {
92             name = excp_names[intno];
93             if (!name) {
94                 name = "Unknown";
95             }
96         }
97 
98         qemu_log("%6d: %s (v=%04x)\n", count, name, intno);
99         log_cpu_state(cs, 0);
100 #if 0
101         {
102             int i;
103             uint8_t *ptr;
104 
105             qemu_log("       code=");
106             ptr = (uint8_t *)env->pc;
107             for (i = 0; i < 16; i++) {
108                 qemu_log(" %02x", ldub(ptr + i));
109             }
110             qemu_log("\n");
111         }
112 #endif
113         count++;
114     }
115 #endif
116 #if !defined(CONFIG_USER_ONLY)
117     if (env->tl >= env->maxtl) {
118         cpu_abort(cs, "Trap 0x%04x while trap level (%d) >= MAXTL (%d),"
119                   " Error state", cs->exception_index, env->tl, env->maxtl);
120         return;
121     }
122 #endif
123     if (env->tl < env->maxtl - 1) {
124         env->tl++;
125     } else {
126         env->pstate |= PS_RED;
127         if (env->tl < env->maxtl) {
128             env->tl++;
129         }
130     }
131     tsptr = cpu_tsptr(env);
132 
133     tsptr->tstate = (cpu_get_ccr(env) << 32) |
134         ((env->asi & 0xff) << 24) | ((env->pstate & 0xf3f) << 8) |
135         cpu_get_cwp64(env);
136     tsptr->tpc = env->pc;
137     tsptr->tnpc = env->npc;
138     tsptr->tt = intno;
139 
140     if (cpu_has_hypervisor(env)) {
141         env->htstate[env->tl] = env->hpstate;
142         /* XXX OpenSPARC T1 - UltraSPARC T3 have MAXPTL=2
143            but this may change in the future */
144         if (env->tl > 2) {
145             env->hpstate |= HS_PRIV;
146         }
147     }
148 
149     if (env->def->features & CPU_FEATURE_GL) {
150         tsptr->tstate |= (env->gl & 7ULL) << 40;
151         cpu_gl_switch_gregs(env, env->gl + 1);
152         env->gl++;
153     }
154 
155     switch (intno) {
156     case TT_IVEC:
157         if (!cpu_has_hypervisor(env)) {
158             cpu_change_pstate(env, PS_PEF | PS_PRIV | PS_IG);
159         }
160         break;
161     case TT_TFAULT:
162     case TT_DFAULT:
163     case TT_TMISS ... TT_TMISS + 3:
164     case TT_DMISS ... TT_DMISS + 3:
165     case TT_DPROT ... TT_DPROT + 3:
166         if (cpu_has_hypervisor(env)) {
167             env->hpstate |= HS_PRIV;
168             env->pstate = PS_PEF | PS_PRIV;
169         } else {
170             cpu_change_pstate(env, PS_PEF | PS_PRIV | PS_MG);
171         }
172         break;
173     case TT_INSN_REAL_TRANSLATION_MISS ... TT_DATA_REAL_TRANSLATION_MISS:
174     case TT_HTRAP ... TT_HTRAP + 127:
175         env->hpstate |= HS_PRIV;
176         break;
177     default:
178         cpu_change_pstate(env, PS_PEF | PS_PRIV | PS_AG);
179         break;
180     }
181 
182     if (intno == TT_CLRWIN) {
183         cpu_set_cwp(env, cpu_cwp_dec(env, env->cwp - 1));
184     } else if ((intno & 0x1c0) == TT_SPILL) {
185         cpu_set_cwp(env, cpu_cwp_dec(env, env->cwp - env->cansave - 2));
186     } else if ((intno & 0x1c0) == TT_FILL) {
187         cpu_set_cwp(env, cpu_cwp_inc(env, env->cwp + 1));
188     }
189 
190     if (cpu_hypervisor_mode(env)) {
191         env->pc = (env->htba & ~0x3fffULL) | (intno << 5);
192     } else {
193         env->pc = env->tbr  & ~0x7fffULL;
194         env->pc |= ((env->tl > 1) ? 1 << 14 : 0) | (intno << 5);
195     }
196     env->npc = env->pc + 4;
197     cs->exception_index = -1;
198 }
199 
200 trap_state *cpu_tsptr(CPUSPARCState* env)
201 {
202     return &env->ts[env->tl & MAXTL_MASK];
203 }
204 
205 static bool do_modify_softint(CPUSPARCState *env, uint32_t value)
206 {
207     if (env->softint != value) {
208         env->softint = value;
209 #if !defined(CONFIG_USER_ONLY)
210         if (cpu_interrupts_enabled(env)) {
211             cpu_check_irqs(env);
212         }
213 #endif
214         return true;
215     }
216     return false;
217 }
218 
219 void helper_set_softint(CPUSPARCState *env, uint64_t value)
220 {
221     if (do_modify_softint(env, env->softint | (uint32_t)value)) {
222         trace_int_helper_set_softint(env->softint);
223     }
224 }
225 
226 void helper_clear_softint(CPUSPARCState *env, uint64_t value)
227 {
228     if (do_modify_softint(env, env->softint & (uint32_t)~value)) {
229         trace_int_helper_clear_softint(env->softint);
230     }
231 }
232 
233 void helper_write_softint(CPUSPARCState *env, uint64_t value)
234 {
235     if (do_modify_softint(env, (uint32_t)value)) {
236         trace_int_helper_write_softint(env->softint);
237     }
238 }
239