xref: /qemu/target/sparc/int64_helper.c (revision 508127e243122cf3ed67d2aaa472a1b4f1be055e)
1ab3b491fSBlue Swirl /*
2ab3b491fSBlue Swirl  * Sparc64 interrupt helpers
3ab3b491fSBlue Swirl  *
4ab3b491fSBlue Swirl  *  Copyright (c) 2003-2005 Fabrice Bellard
5ab3b491fSBlue Swirl  *
6ab3b491fSBlue Swirl  * This library is free software; you can redistribute it and/or
7ab3b491fSBlue Swirl  * modify it under the terms of the GNU Lesser General Public
8ab3b491fSBlue Swirl  * License as published by the Free Software Foundation; either
9ab3b491fSBlue Swirl  * version 2 of the License, or (at your option) any later version.
10ab3b491fSBlue Swirl  *
11ab3b491fSBlue Swirl  * This library is distributed in the hope that it will be useful,
12ab3b491fSBlue Swirl  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13ab3b491fSBlue Swirl  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14ab3b491fSBlue Swirl  * Lesser General Public License for more details.
15ab3b491fSBlue Swirl  *
16ab3b491fSBlue Swirl  * You should have received a copy of the GNU Lesser General Public
17ab3b491fSBlue Swirl  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18ab3b491fSBlue Swirl  */
19ab3b491fSBlue Swirl 
20db5ebe5fSPeter Maydell #include "qemu/osdep.h"
21ab3b491fSBlue Swirl #include "cpu.h"
222ef6175aSRichard Henderson #include "exec/helper-proto.h"
23508127e2SPaolo Bonzini #include "exec/log.h"
2411e66bcaSBlue Swirl #include "trace.h"
25ab3b491fSBlue Swirl 
26b884fc5eSRichard Henderson #define DEBUG_PCALL
27ab3b491fSBlue Swirl 
28ab3b491fSBlue Swirl #ifdef DEBUG_PCALL
29ab3b491fSBlue Swirl static const char * const excp_names[0x80] = {
30ab3b491fSBlue Swirl     [TT_TFAULT] = "Instruction Access Fault",
31ab3b491fSBlue Swirl     [TT_TMISS] = "Instruction Access MMU Miss",
32ab3b491fSBlue Swirl     [TT_CODE_ACCESS] = "Instruction Access Error",
33ab3b491fSBlue Swirl     [TT_ILL_INSN] = "Illegal Instruction",
34ab3b491fSBlue Swirl     [TT_PRIV_INSN] = "Privileged Instruction",
35ab3b491fSBlue Swirl     [TT_NFPU_INSN] = "FPU Disabled",
36ab3b491fSBlue Swirl     [TT_FP_EXCP] = "FPU Exception",
37ab3b491fSBlue Swirl     [TT_TOVF] = "Tag Overflow",
38ab3b491fSBlue Swirl     [TT_CLRWIN] = "Clean Windows",
39ab3b491fSBlue Swirl     [TT_DIV_ZERO] = "Division By Zero",
40ab3b491fSBlue Swirl     [TT_DFAULT] = "Data Access Fault",
41ab3b491fSBlue Swirl     [TT_DMISS] = "Data Access MMU Miss",
42ab3b491fSBlue Swirl     [TT_DATA_ACCESS] = "Data Access Error",
43ab3b491fSBlue Swirl     [TT_DPROT] = "Data Protection Error",
44ab3b491fSBlue Swirl     [TT_UNALIGNED] = "Unaligned Memory Access",
45ab3b491fSBlue Swirl     [TT_PRIV_ACT] = "Privileged Action",
46ab3b491fSBlue Swirl     [TT_EXTINT | 0x1] = "External Interrupt 1",
47ab3b491fSBlue Swirl     [TT_EXTINT | 0x2] = "External Interrupt 2",
48ab3b491fSBlue Swirl     [TT_EXTINT | 0x3] = "External Interrupt 3",
49ab3b491fSBlue Swirl     [TT_EXTINT | 0x4] = "External Interrupt 4",
50ab3b491fSBlue Swirl     [TT_EXTINT | 0x5] = "External Interrupt 5",
51ab3b491fSBlue Swirl     [TT_EXTINT | 0x6] = "External Interrupt 6",
52ab3b491fSBlue Swirl     [TT_EXTINT | 0x7] = "External Interrupt 7",
53ab3b491fSBlue Swirl     [TT_EXTINT | 0x8] = "External Interrupt 8",
54ab3b491fSBlue Swirl     [TT_EXTINT | 0x9] = "External Interrupt 9",
55ab3b491fSBlue Swirl     [TT_EXTINT | 0xa] = "External Interrupt 10",
56ab3b491fSBlue Swirl     [TT_EXTINT | 0xb] = "External Interrupt 11",
57ab3b491fSBlue Swirl     [TT_EXTINT | 0xc] = "External Interrupt 12",
58ab3b491fSBlue Swirl     [TT_EXTINT | 0xd] = "External Interrupt 13",
59ab3b491fSBlue Swirl     [TT_EXTINT | 0xe] = "External Interrupt 14",
60ab3b491fSBlue Swirl     [TT_EXTINT | 0xf] = "External Interrupt 15",
61ab3b491fSBlue Swirl };
62ab3b491fSBlue Swirl #endif
63ab3b491fSBlue Swirl 
6497a8ea5aSAndreas Färber void sparc_cpu_do_interrupt(CPUState *cs)
65ab3b491fSBlue Swirl {
6697a8ea5aSAndreas Färber     SPARCCPU *cpu = SPARC_CPU(cs);
6797a8ea5aSAndreas Färber     CPUSPARCState *env = &cpu->env;
6827103424SAndreas Färber     int intno = cs->exception_index;
69ab3b491fSBlue Swirl     trap_state *tsptr;
70ab3b491fSBlue Swirl 
7120132b96SRichard Henderson     /* Compute PSR before exposing state.  */
7220132b96SRichard Henderson     if (env->cc_op != CC_OP_FLAGS) {
7320132b96SRichard Henderson         cpu_get_psr(env);
7420132b96SRichard Henderson     }
7520132b96SRichard Henderson 
76ab3b491fSBlue Swirl #ifdef DEBUG_PCALL
77ab3b491fSBlue Swirl     if (qemu_loglevel_mask(CPU_LOG_INT)) {
78ab3b491fSBlue Swirl         static int count;
79ab3b491fSBlue Swirl         const char *name;
80ab3b491fSBlue Swirl 
81ab3b491fSBlue Swirl         if (intno < 0 || intno >= 0x180) {
82ab3b491fSBlue Swirl             name = "Unknown";
83ab3b491fSBlue Swirl         } else if (intno >= 0x100) {
84ab3b491fSBlue Swirl             name = "Trap Instruction";
85ab3b491fSBlue Swirl         } else if (intno >= 0xc0) {
86ab3b491fSBlue Swirl             name = "Window Fill";
87ab3b491fSBlue Swirl         } else if (intno >= 0x80) {
88ab3b491fSBlue Swirl             name = "Window Spill";
89ab3b491fSBlue Swirl         } else {
90ab3b491fSBlue Swirl             name = excp_names[intno];
91ab3b491fSBlue Swirl             if (!name) {
92ab3b491fSBlue Swirl                 name = "Unknown";
93ab3b491fSBlue Swirl             }
94ab3b491fSBlue Swirl         }
95ab3b491fSBlue Swirl 
96b884fc5eSRichard Henderson         qemu_log("%6d: %s (v=%04x)\n", count, name, intno);
97a0762859SAndreas Färber         log_cpu_state(cs, 0);
98ab3b491fSBlue Swirl #if 0
99ab3b491fSBlue Swirl         {
100ab3b491fSBlue Swirl             int i;
101ab3b491fSBlue Swirl             uint8_t *ptr;
102ab3b491fSBlue Swirl 
103ab3b491fSBlue Swirl             qemu_log("       code=");
104ab3b491fSBlue Swirl             ptr = (uint8_t *)env->pc;
105ab3b491fSBlue Swirl             for (i = 0; i < 16; i++) {
106ab3b491fSBlue Swirl                 qemu_log(" %02x", ldub(ptr + i));
107ab3b491fSBlue Swirl             }
108ab3b491fSBlue Swirl             qemu_log("\n");
109ab3b491fSBlue Swirl         }
110ab3b491fSBlue Swirl #endif
111ab3b491fSBlue Swirl         count++;
112ab3b491fSBlue Swirl     }
113ab3b491fSBlue Swirl #endif
114ab3b491fSBlue Swirl #if !defined(CONFIG_USER_ONLY)
115ab3b491fSBlue Swirl     if (env->tl >= env->maxtl) {
116a47dddd7SAndreas Färber         cpu_abort(cs, "Trap 0x%04x while trap level (%d) >= MAXTL (%d),"
11727103424SAndreas Färber                   " Error state", cs->exception_index, env->tl, env->maxtl);
118ab3b491fSBlue Swirl         return;
119ab3b491fSBlue Swirl     }
120ab3b491fSBlue Swirl #endif
121ab3b491fSBlue Swirl     if (env->tl < env->maxtl - 1) {
122ab3b491fSBlue Swirl         env->tl++;
123ab3b491fSBlue Swirl     } else {
124ab3b491fSBlue Swirl         env->pstate |= PS_RED;
125ab3b491fSBlue Swirl         if (env->tl < env->maxtl) {
126ab3b491fSBlue Swirl             env->tl++;
127ab3b491fSBlue Swirl         }
128ab3b491fSBlue Swirl     }
129ab3b491fSBlue Swirl     tsptr = cpu_tsptr(env);
130ab3b491fSBlue Swirl 
131ab3b491fSBlue Swirl     tsptr->tstate = (cpu_get_ccr(env) << 32) |
132ab3b491fSBlue Swirl         ((env->asi & 0xff) << 24) | ((env->pstate & 0xf3f) << 8) |
133ab3b491fSBlue Swirl         cpu_get_cwp64(env);
134ab3b491fSBlue Swirl     tsptr->tpc = env->pc;
135ab3b491fSBlue Swirl     tsptr->tnpc = env->npc;
136ab3b491fSBlue Swirl     tsptr->tt = intno;
137ab3b491fSBlue Swirl 
138ab3b491fSBlue Swirl     switch (intno) {
139ab3b491fSBlue Swirl     case TT_IVEC:
140ab3b491fSBlue Swirl         cpu_change_pstate(env, PS_PEF | PS_PRIV | PS_IG);
141ab3b491fSBlue Swirl         break;
142ab3b491fSBlue Swirl     case TT_TFAULT:
143ab3b491fSBlue Swirl     case TT_DFAULT:
144ab3b491fSBlue Swirl     case TT_TMISS ... TT_TMISS + 3:
145ab3b491fSBlue Swirl     case TT_DMISS ... TT_DMISS + 3:
146ab3b491fSBlue Swirl     case TT_DPROT ... TT_DPROT + 3:
147ab3b491fSBlue Swirl         cpu_change_pstate(env, PS_PEF | PS_PRIV | PS_MG);
148ab3b491fSBlue Swirl         break;
149ab3b491fSBlue Swirl     default:
150ab3b491fSBlue Swirl         cpu_change_pstate(env, PS_PEF | PS_PRIV | PS_AG);
151ab3b491fSBlue Swirl         break;
152ab3b491fSBlue Swirl     }
153ab3b491fSBlue Swirl 
154ab3b491fSBlue Swirl     if (intno == TT_CLRWIN) {
155ab3b491fSBlue Swirl         cpu_set_cwp(env, cpu_cwp_dec(env, env->cwp - 1));
156ab3b491fSBlue Swirl     } else if ((intno & 0x1c0) == TT_SPILL) {
157ab3b491fSBlue Swirl         cpu_set_cwp(env, cpu_cwp_dec(env, env->cwp - env->cansave - 2));
158ab3b491fSBlue Swirl     } else if ((intno & 0x1c0) == TT_FILL) {
159ab3b491fSBlue Swirl         cpu_set_cwp(env, cpu_cwp_inc(env, env->cwp + 1));
160ab3b491fSBlue Swirl     }
161ab3b491fSBlue Swirl     env->tbr &= ~0x7fffULL;
162ab3b491fSBlue Swirl     env->tbr |= ((env->tl > 1) ? 1 << 14 : 0) | (intno << 5);
163ab3b491fSBlue Swirl     env->pc = env->tbr;
164ab3b491fSBlue Swirl     env->npc = env->pc + 4;
16527103424SAndreas Färber     cs->exception_index = -1;
166ab3b491fSBlue Swirl }
1672336c1f1SBlue Swirl 
168c5f9864eSAndreas Färber trap_state *cpu_tsptr(CPUSPARCState* env)
1692336c1f1SBlue Swirl {
1702336c1f1SBlue Swirl     return &env->ts[env->tl & MAXTL_MASK];
1712336c1f1SBlue Swirl }
17279227036SBlue Swirl 
173c5f9864eSAndreas Färber static bool do_modify_softint(CPUSPARCState *env, uint32_t value)
17479227036SBlue Swirl {
17579227036SBlue Swirl     if (env->softint != value) {
17679227036SBlue Swirl         env->softint = value;
17779227036SBlue Swirl #if !defined(CONFIG_USER_ONLY)
17879227036SBlue Swirl         if (cpu_interrupts_enabled(env)) {
17979227036SBlue Swirl             cpu_check_irqs(env);
18079227036SBlue Swirl         }
18179227036SBlue Swirl #endif
18211e66bcaSBlue Swirl         return true;
18379227036SBlue Swirl     }
18411e66bcaSBlue Swirl     return false;
18579227036SBlue Swirl }
18679227036SBlue Swirl 
187c5f9864eSAndreas Färber void helper_set_softint(CPUSPARCState *env, uint64_t value)
18879227036SBlue Swirl {
18911e66bcaSBlue Swirl     if (do_modify_softint(env, env->softint | (uint32_t)value)) {
19011e66bcaSBlue Swirl         trace_int_helper_set_softint(env->softint);
19111e66bcaSBlue Swirl     }
19279227036SBlue Swirl }
19379227036SBlue Swirl 
194c5f9864eSAndreas Färber void helper_clear_softint(CPUSPARCState *env, uint64_t value)
19579227036SBlue Swirl {
19611e66bcaSBlue Swirl     if (do_modify_softint(env, env->softint & (uint32_t)~value)) {
19711e66bcaSBlue Swirl         trace_int_helper_clear_softint(env->softint);
19811e66bcaSBlue Swirl     }
19979227036SBlue Swirl }
20079227036SBlue Swirl 
201c5f9864eSAndreas Färber void helper_write_softint(CPUSPARCState *env, uint64_t value)
20279227036SBlue Swirl {
20311e66bcaSBlue Swirl     if (do_modify_softint(env, (uint32_t)value)) {
20411e66bcaSBlue Swirl         trace_int_helper_write_softint(env->softint);
20511e66bcaSBlue Swirl     }
20679227036SBlue Swirl }
207