xref: /qemu/target/sparc/cpu.c (revision 781c67ca5585b38a29076093ecdff4f273db5a35)
1ab3b491fSBlue Swirl /*
2ab3b491fSBlue Swirl  * Sparc CPU init 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"
21da34e65cSMarkus Armbruster #include "qapi/error.h"
22ab3b491fSBlue Swirl #include "cpu.h"
230b8fa32fSMarkus Armbruster #include "qemu/module.h"
240442428aSMarkus Armbruster #include "qemu/qemu-print.h"
2563c91552SPaolo Bonzini #include "exec/exec-all.h"
26de05005bSIgor Mammedov #include "hw/qdev-properties.h"
27de05005bSIgor Mammedov #include "qapi/visitor.h"
28ab3b491fSBlue Swirl 
29ab3b491fSBlue Swirl //#define DEBUG_FEATURES
30ab3b491fSBlue Swirl 
31*781c67caSPeter Maydell static void sparc_cpu_reset(DeviceState *dev)
32ab7ab3d7SAndreas Färber {
33*781c67caSPeter Maydell     CPUState *s = CPU(dev);
34ab7ab3d7SAndreas Färber     SPARCCPU *cpu = SPARC_CPU(s);
35ab7ab3d7SAndreas Färber     SPARCCPUClass *scc = SPARC_CPU_GET_CLASS(cpu);
36ab7ab3d7SAndreas Färber     CPUSPARCState *env = &cpu->env;
37ab7ab3d7SAndreas Färber 
38*781c67caSPeter Maydell     scc->parent_reset(dev);
39ab7ab3d7SAndreas Färber 
401f5c00cfSAlex Bennée     memset(env, 0, offsetof(CPUSPARCState, end_reset_fields));
41ab3b491fSBlue Swirl     env->cwp = 0;
42ab3b491fSBlue Swirl #ifndef TARGET_SPARC64
43ab3b491fSBlue Swirl     env->wim = 1;
44ab3b491fSBlue Swirl #endif
45ab3b491fSBlue Swirl     env->regwptr = env->regbase + (env->cwp * 16);
46ab3b491fSBlue Swirl     CC_OP = CC_OP_FLAGS;
47ab3b491fSBlue Swirl #if defined(CONFIG_USER_ONLY)
48ab3b491fSBlue Swirl #ifdef TARGET_SPARC64
49ab3b491fSBlue Swirl     env->cleanwin = env->nwindows - 2;
50ab3b491fSBlue Swirl     env->cansave = env->nwindows - 2;
51ab3b491fSBlue Swirl     env->pstate = PS_RMO | PS_PEF | PS_IE;
52ab3b491fSBlue Swirl     env->asi = 0x82; /* Primary no-fault */
53ab3b491fSBlue Swirl #endif
54ab3b491fSBlue Swirl #else
55ab3b491fSBlue Swirl #if !defined(TARGET_SPARC64)
56ab3b491fSBlue Swirl     env->psret = 0;
57ab3b491fSBlue Swirl     env->psrs = 1;
58ab3b491fSBlue Swirl     env->psrps = 1;
59ab3b491fSBlue Swirl #endif
60ab3b491fSBlue Swirl #ifdef TARGET_SPARC64
61cbc3a6a4SArtyom Tarasenko     env->pstate = PS_PRIV | PS_RED | PS_PEF;
62cbc3a6a4SArtyom Tarasenko     if (!cpu_has_hypervisor(env)) {
63cbc3a6a4SArtyom Tarasenko         env->pstate |= PS_AG;
64cbc3a6a4SArtyom Tarasenko     }
65ab3b491fSBlue Swirl     env->hpstate = cpu_has_hypervisor(env) ? HS_PRIV : 0;
66ab3b491fSBlue Swirl     env->tl = env->maxtl;
67cbc3a6a4SArtyom Tarasenko     env->gl = 2;
68ab3b491fSBlue Swirl     cpu_tsptr(env)->tt = TT_POWER_ON_RESET;
69ab3b491fSBlue Swirl     env->lsu = 0;
70ab3b491fSBlue Swirl #else
71ab3b491fSBlue Swirl     env->mmuregs[0] &= ~(MMU_E | MMU_NF);
72576e1c4cSIgor Mammedov     env->mmuregs[0] |= env->def.mmu_bm;
73ab3b491fSBlue Swirl #endif
74ab3b491fSBlue Swirl     env->pc = 0;
75ab3b491fSBlue Swirl     env->npc = env->pc + 4;
76ab3b491fSBlue Swirl #endif
77ab3b491fSBlue Swirl     env->cache_control = 0;
78ab3b491fSBlue Swirl }
79ab3b491fSBlue Swirl 
8087afe467SRichard Henderson static bool sparc_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
8187afe467SRichard Henderson {
8287afe467SRichard Henderson     if (interrupt_request & CPU_INTERRUPT_HARD) {
8387afe467SRichard Henderson         SPARCCPU *cpu = SPARC_CPU(cs);
8487afe467SRichard Henderson         CPUSPARCState *env = &cpu->env;
8587afe467SRichard Henderson 
8687afe467SRichard Henderson         if (cpu_interrupts_enabled(env) && env->interrupt_index > 0) {
8787afe467SRichard Henderson             int pil = env->interrupt_index & 0xf;
8887afe467SRichard Henderson             int type = env->interrupt_index & 0xf0;
8987afe467SRichard Henderson 
9087afe467SRichard Henderson             if (type != TT_EXTINT || cpu_pil_allowed(env, pil)) {
9187afe467SRichard Henderson                 cs->exception_index = env->interrupt_index;
9287afe467SRichard Henderson                 sparc_cpu_do_interrupt(cs);
9387afe467SRichard Henderson                 return true;
9487afe467SRichard Henderson             }
9587afe467SRichard Henderson         }
9687afe467SRichard Henderson     }
9787afe467SRichard Henderson     return false;
9887afe467SRichard Henderson }
9987afe467SRichard Henderson 
100df0900ebSPeter Crosthwaite static void cpu_sparc_disas_set_info(CPUState *cpu, disassemble_info *info)
101df0900ebSPeter Crosthwaite {
102df0900ebSPeter Crosthwaite     info->print_insn = print_insn_sparc;
103df0900ebSPeter Crosthwaite #ifdef TARGET_SPARC64
104df0900ebSPeter Crosthwaite     info->mach = bfd_mach_sparc_v9b;
105df0900ebSPeter Crosthwaite #endif
106df0900ebSPeter Crosthwaite }
107df0900ebSPeter Crosthwaite 
108d1853231SIgor Mammedov static void
109d1853231SIgor Mammedov cpu_add_feat_as_prop(const char *typename, const char *name, const char *val)
110ab3b491fSBlue Swirl {
111d1853231SIgor Mammedov     GlobalProperty *prop = g_new0(typeof(*prop), 1);
112d1853231SIgor Mammedov     prop->driver = typename;
113d1853231SIgor Mammedov     prop->property = g_strdup(name);
114d1853231SIgor Mammedov     prop->value = g_strdup(val);
115d1853231SIgor Mammedov     qdev_prop_register_global(prop);
116433ac7a9SAndreas Färber }
117433ac7a9SAndreas Färber 
118d1853231SIgor Mammedov /* Parse "+feature,-feature,feature=foo" CPU feature string */
119d1853231SIgor Mammedov static void sparc_cpu_parse_features(const char *typename, char *features,
120d1853231SIgor Mammedov                                      Error **errp)
121d1853231SIgor Mammedov {
122d1853231SIgor Mammedov     GList *l, *plus_features = NULL, *minus_features = NULL;
123d1853231SIgor Mammedov     char *featurestr; /* Single 'key=value" string being parsed */
124d1853231SIgor Mammedov     static bool cpu_globals_initialized;
125d1853231SIgor Mammedov 
126d1853231SIgor Mammedov     if (cpu_globals_initialized) {
127d1853231SIgor Mammedov         return;
128d1853231SIgor Mammedov     }
129d1853231SIgor Mammedov     cpu_globals_initialized = true;
130d1853231SIgor Mammedov 
131d1853231SIgor Mammedov     if (!features) {
132d1853231SIgor Mammedov         return;
133d1853231SIgor Mammedov     }
134d1853231SIgor Mammedov 
135d1853231SIgor Mammedov     for (featurestr = strtok(features, ",");
136d1853231SIgor Mammedov          featurestr;
137d1853231SIgor Mammedov          featurestr = strtok(NULL, ",")) {
138d1853231SIgor Mammedov         const char *name;
139d1853231SIgor Mammedov         const char *val = NULL;
140d1853231SIgor Mammedov         char *eq = NULL;
141d1853231SIgor Mammedov 
142d1853231SIgor Mammedov         /* Compatibility syntax: */
143d1853231SIgor Mammedov         if (featurestr[0] == '+') {
144d1853231SIgor Mammedov             plus_features = g_list_append(plus_features,
145d1853231SIgor Mammedov                                           g_strdup(featurestr + 1));
146d1853231SIgor Mammedov             continue;
147d1853231SIgor Mammedov         } else if (featurestr[0] == '-') {
148d1853231SIgor Mammedov             minus_features = g_list_append(minus_features,
149d1853231SIgor Mammedov                                            g_strdup(featurestr + 1));
150d1853231SIgor Mammedov             continue;
151d1853231SIgor Mammedov         }
152d1853231SIgor Mammedov 
153d1853231SIgor Mammedov         eq = strchr(featurestr, '=');
154d1853231SIgor Mammedov         name = featurestr;
155d1853231SIgor Mammedov         if (eq) {
156d1853231SIgor Mammedov             *eq++ = 0;
157d1853231SIgor Mammedov             val = eq;
158d1853231SIgor Mammedov 
159d1853231SIgor Mammedov             /*
160d1853231SIgor Mammedov              * Temporarily, only +feat/-feat will be supported
161d1853231SIgor Mammedov              * for boolean properties until we remove the
162d1853231SIgor Mammedov              * minus-overrides-plus semantics and just follow
163d1853231SIgor Mammedov              * the order options appear on the command-line.
164d1853231SIgor Mammedov              *
165d1853231SIgor Mammedov              * TODO: warn if user is relying on minus-override-plus semantics
166d1853231SIgor Mammedov              * TODO: remove minus-override-plus semantics after
167d1853231SIgor Mammedov              *       warning for a few releases
168d1853231SIgor Mammedov              */
169d1853231SIgor Mammedov             if (!strcasecmp(val, "on") ||
170d1853231SIgor Mammedov                 !strcasecmp(val, "off") ||
171d1853231SIgor Mammedov                 !strcasecmp(val, "true") ||
172d1853231SIgor Mammedov                 !strcasecmp(val, "false")) {
173d1853231SIgor Mammedov                 error_setg(errp, "Boolean properties in format %s=%s"
174d1853231SIgor Mammedov                                  " are not supported", name, val);
175d1853231SIgor Mammedov                 return;
176d1853231SIgor Mammedov             }
177d1853231SIgor Mammedov         } else {
178d1853231SIgor Mammedov             error_setg(errp, "Unsupported property format: %s", name);
179d1853231SIgor Mammedov             return;
180d1853231SIgor Mammedov         }
181d1853231SIgor Mammedov         cpu_add_feat_as_prop(typename, name, val);
182d1853231SIgor Mammedov     }
183d1853231SIgor Mammedov 
184d1853231SIgor Mammedov     for (l = plus_features; l; l = l->next) {
185d1853231SIgor Mammedov         const char *name = l->data;
186d1853231SIgor Mammedov         cpu_add_feat_as_prop(typename, name, "on");
187d1853231SIgor Mammedov     }
188d1853231SIgor Mammedov     g_list_free_full(plus_features, g_free);
189d1853231SIgor Mammedov 
190d1853231SIgor Mammedov     for (l = minus_features; l; l = l->next) {
191d1853231SIgor Mammedov         const char *name = l->data;
192d1853231SIgor Mammedov         cpu_add_feat_as_prop(typename, name, "off");
193d1853231SIgor Mammedov     }
194d1853231SIgor Mammedov     g_list_free_full(minus_features, g_free);
195ab3b491fSBlue Swirl }
196ab3b491fSBlue Swirl 
197ab3b491fSBlue Swirl void cpu_sparc_set_id(CPUSPARCState *env, unsigned int cpu)
198ab3b491fSBlue Swirl {
199ab3b491fSBlue Swirl #if !defined(TARGET_SPARC64)
200ab3b491fSBlue Swirl     env->mxccregs[7] = ((cpu + 8) & 0xf) << 24;
201ab3b491fSBlue Swirl #endif
202ab3b491fSBlue Swirl }
203ab3b491fSBlue Swirl 
204ab3b491fSBlue Swirl static const sparc_def_t sparc_defs[] = {
205ab3b491fSBlue Swirl #ifdef TARGET_SPARC64
206ab3b491fSBlue Swirl     {
207ab3b491fSBlue Swirl         .name = "Fujitsu Sparc64",
208ab3b491fSBlue Swirl         .iu_version = ((0x04ULL << 48) | (0x02ULL << 32) | (0ULL << 24)),
209ab3b491fSBlue Swirl         .fpu_version = 0x00000000,
210ab3b491fSBlue Swirl         .mmu_version = mmu_us_12,
211ab3b491fSBlue Swirl         .nwindows = 4,
212ab3b491fSBlue Swirl         .maxtl = 4,
213ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
214ab3b491fSBlue Swirl     },
215ab3b491fSBlue Swirl     {
216ab3b491fSBlue Swirl         .name = "Fujitsu Sparc64 III",
217ab3b491fSBlue Swirl         .iu_version = ((0x04ULL << 48) | (0x03ULL << 32) | (0ULL << 24)),
218ab3b491fSBlue Swirl         .fpu_version = 0x00000000,
219ab3b491fSBlue Swirl         .mmu_version = mmu_us_12,
220ab3b491fSBlue Swirl         .nwindows = 5,
221ab3b491fSBlue Swirl         .maxtl = 4,
222ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
223ab3b491fSBlue Swirl     },
224ab3b491fSBlue Swirl     {
225ab3b491fSBlue Swirl         .name = "Fujitsu Sparc64 IV",
226ab3b491fSBlue Swirl         .iu_version = ((0x04ULL << 48) | (0x04ULL << 32) | (0ULL << 24)),
227ab3b491fSBlue Swirl         .fpu_version = 0x00000000,
228ab3b491fSBlue Swirl         .mmu_version = mmu_us_12,
229ab3b491fSBlue Swirl         .nwindows = 8,
230ab3b491fSBlue Swirl         .maxtl = 5,
231ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
232ab3b491fSBlue Swirl     },
233ab3b491fSBlue Swirl     {
234ab3b491fSBlue Swirl         .name = "Fujitsu Sparc64 V",
235ab3b491fSBlue Swirl         .iu_version = ((0x04ULL << 48) | (0x05ULL << 32) | (0x51ULL << 24)),
236ab3b491fSBlue Swirl         .fpu_version = 0x00000000,
237ab3b491fSBlue Swirl         .mmu_version = mmu_us_12,
238ab3b491fSBlue Swirl         .nwindows = 8,
239ab3b491fSBlue Swirl         .maxtl = 5,
240ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
241ab3b491fSBlue Swirl     },
242ab3b491fSBlue Swirl     {
243ab3b491fSBlue Swirl         .name = "TI UltraSparc I",
244ab3b491fSBlue Swirl         .iu_version = ((0x17ULL << 48) | (0x10ULL << 32) | (0x40ULL << 24)),
245ab3b491fSBlue Swirl         .fpu_version = 0x00000000,
246ab3b491fSBlue Swirl         .mmu_version = mmu_us_12,
247ab3b491fSBlue Swirl         .nwindows = 8,
248ab3b491fSBlue Swirl         .maxtl = 5,
249ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
250ab3b491fSBlue Swirl     },
251ab3b491fSBlue Swirl     {
252ab3b491fSBlue Swirl         .name = "TI UltraSparc II",
253ab3b491fSBlue Swirl         .iu_version = ((0x17ULL << 48) | (0x11ULL << 32) | (0x20ULL << 24)),
254ab3b491fSBlue Swirl         .fpu_version = 0x00000000,
255ab3b491fSBlue Swirl         .mmu_version = mmu_us_12,
256ab3b491fSBlue Swirl         .nwindows = 8,
257ab3b491fSBlue Swirl         .maxtl = 5,
258ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
259ab3b491fSBlue Swirl     },
260ab3b491fSBlue Swirl     {
261ab3b491fSBlue Swirl         .name = "TI UltraSparc IIi",
262ab3b491fSBlue Swirl         .iu_version = ((0x17ULL << 48) | (0x12ULL << 32) | (0x91ULL << 24)),
263ab3b491fSBlue Swirl         .fpu_version = 0x00000000,
264ab3b491fSBlue Swirl         .mmu_version = mmu_us_12,
265ab3b491fSBlue Swirl         .nwindows = 8,
266ab3b491fSBlue Swirl         .maxtl = 5,
267ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
268ab3b491fSBlue Swirl     },
269ab3b491fSBlue Swirl     {
270ab3b491fSBlue Swirl         .name = "TI UltraSparc IIe",
271ab3b491fSBlue Swirl         .iu_version = ((0x17ULL << 48) | (0x13ULL << 32) | (0x14ULL << 24)),
272ab3b491fSBlue Swirl         .fpu_version = 0x00000000,
273ab3b491fSBlue Swirl         .mmu_version = mmu_us_12,
274ab3b491fSBlue Swirl         .nwindows = 8,
275ab3b491fSBlue Swirl         .maxtl = 5,
276ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
277ab3b491fSBlue Swirl     },
278ab3b491fSBlue Swirl     {
279ab3b491fSBlue Swirl         .name = "Sun UltraSparc III",
280ab3b491fSBlue Swirl         .iu_version = ((0x3eULL << 48) | (0x14ULL << 32) | (0x34ULL << 24)),
281ab3b491fSBlue Swirl         .fpu_version = 0x00000000,
282ab3b491fSBlue Swirl         .mmu_version = mmu_us_12,
283ab3b491fSBlue Swirl         .nwindows = 8,
284ab3b491fSBlue Swirl         .maxtl = 5,
285ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
286ab3b491fSBlue Swirl     },
287ab3b491fSBlue Swirl     {
288ab3b491fSBlue Swirl         .name = "Sun UltraSparc III Cu",
289ab3b491fSBlue Swirl         .iu_version = ((0x3eULL << 48) | (0x15ULL << 32) | (0x41ULL << 24)),
290ab3b491fSBlue Swirl         .fpu_version = 0x00000000,
291ab3b491fSBlue Swirl         .mmu_version = mmu_us_3,
292ab3b491fSBlue Swirl         .nwindows = 8,
293ab3b491fSBlue Swirl         .maxtl = 5,
294ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
295ab3b491fSBlue Swirl     },
296ab3b491fSBlue Swirl     {
297ab3b491fSBlue Swirl         .name = "Sun UltraSparc IIIi",
298ab3b491fSBlue Swirl         .iu_version = ((0x3eULL << 48) | (0x16ULL << 32) | (0x34ULL << 24)),
299ab3b491fSBlue Swirl         .fpu_version = 0x00000000,
300ab3b491fSBlue Swirl         .mmu_version = mmu_us_12,
301ab3b491fSBlue Swirl         .nwindows = 8,
302ab3b491fSBlue Swirl         .maxtl = 5,
303ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
304ab3b491fSBlue Swirl     },
305ab3b491fSBlue Swirl     {
306ab3b491fSBlue Swirl         .name = "Sun UltraSparc IV",
307ab3b491fSBlue Swirl         .iu_version = ((0x3eULL << 48) | (0x18ULL << 32) | (0x31ULL << 24)),
308ab3b491fSBlue Swirl         .fpu_version = 0x00000000,
309ab3b491fSBlue Swirl         .mmu_version = mmu_us_4,
310ab3b491fSBlue Swirl         .nwindows = 8,
311ab3b491fSBlue Swirl         .maxtl = 5,
312ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
313ab3b491fSBlue Swirl     },
314ab3b491fSBlue Swirl     {
315ab3b491fSBlue Swirl         .name = "Sun UltraSparc IV+",
316ab3b491fSBlue Swirl         .iu_version = ((0x3eULL << 48) | (0x19ULL << 32) | (0x22ULL << 24)),
317ab3b491fSBlue Swirl         .fpu_version = 0x00000000,
318ab3b491fSBlue Swirl         .mmu_version = mmu_us_12,
319ab3b491fSBlue Swirl         .nwindows = 8,
320ab3b491fSBlue Swirl         .maxtl = 5,
321ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES | CPU_FEATURE_CMT,
322ab3b491fSBlue Swirl     },
323ab3b491fSBlue Swirl     {
324ab3b491fSBlue Swirl         .name = "Sun UltraSparc IIIi+",
325ab3b491fSBlue Swirl         .iu_version = ((0x3eULL << 48) | (0x22ULL << 32) | (0ULL << 24)),
326ab3b491fSBlue Swirl         .fpu_version = 0x00000000,
327ab3b491fSBlue Swirl         .mmu_version = mmu_us_3,
328ab3b491fSBlue Swirl         .nwindows = 8,
329ab3b491fSBlue Swirl         .maxtl = 5,
330ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
331ab3b491fSBlue Swirl     },
332ab3b491fSBlue Swirl     {
333ab3b491fSBlue Swirl         .name = "Sun UltraSparc T1",
334ab3b491fSBlue Swirl         /* defined in sparc_ifu_fdp.v and ctu.h */
335ab3b491fSBlue Swirl         .iu_version = ((0x3eULL << 48) | (0x23ULL << 32) | (0x02ULL << 24)),
336ab3b491fSBlue Swirl         .fpu_version = 0x00000000,
337ab3b491fSBlue Swirl         .mmu_version = mmu_sun4v,
338ab3b491fSBlue Swirl         .nwindows = 8,
339ab3b491fSBlue Swirl         .maxtl = 6,
340ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES | CPU_FEATURE_HYPV | CPU_FEATURE_CMT
341ab3b491fSBlue Swirl         | CPU_FEATURE_GL,
342ab3b491fSBlue Swirl     },
343ab3b491fSBlue Swirl     {
344ab3b491fSBlue Swirl         .name = "Sun UltraSparc T2",
345ab3b491fSBlue Swirl         /* defined in tlu_asi_ctl.v and n2_revid_cust.v */
346ab3b491fSBlue Swirl         .iu_version = ((0x3eULL << 48) | (0x24ULL << 32) | (0x02ULL << 24)),
347ab3b491fSBlue Swirl         .fpu_version = 0x00000000,
348ab3b491fSBlue Swirl         .mmu_version = mmu_sun4v,
349ab3b491fSBlue Swirl         .nwindows = 8,
350ab3b491fSBlue Swirl         .maxtl = 6,
351ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES | CPU_FEATURE_HYPV | CPU_FEATURE_CMT
352ab3b491fSBlue Swirl         | CPU_FEATURE_GL,
353ab3b491fSBlue Swirl     },
354ab3b491fSBlue Swirl     {
355ab3b491fSBlue Swirl         .name = "NEC UltraSparc I",
356ab3b491fSBlue Swirl         .iu_version = ((0x22ULL << 48) | (0x10ULL << 32) | (0x40ULL << 24)),
357ab3b491fSBlue Swirl         .fpu_version = 0x00000000,
358ab3b491fSBlue Swirl         .mmu_version = mmu_us_12,
359ab3b491fSBlue Swirl         .nwindows = 8,
360ab3b491fSBlue Swirl         .maxtl = 5,
361ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
362ab3b491fSBlue Swirl     },
363ab3b491fSBlue Swirl #else
364ab3b491fSBlue Swirl     {
365ab3b491fSBlue Swirl         .name = "Fujitsu MB86904",
366ab3b491fSBlue Swirl         .iu_version = 0x04 << 24, /* Impl 0, ver 4 */
367ab3b491fSBlue Swirl         .fpu_version = 4 << 17, /* FPU version 4 (Meiko) */
368ab3b491fSBlue Swirl         .mmu_version = 0x04 << 24, /* Impl 0, ver 4 */
369ab3b491fSBlue Swirl         .mmu_bm = 0x00004000,
370ab3b491fSBlue Swirl         .mmu_ctpr_mask = 0x00ffffc0,
371ab3b491fSBlue Swirl         .mmu_cxr_mask = 0x000000ff,
372ab3b491fSBlue Swirl         .mmu_sfsr_mask = 0x00016fff,
373ab3b491fSBlue Swirl         .mmu_trcr_mask = 0x00ffffff,
374ab3b491fSBlue Swirl         .nwindows = 8,
375ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
376ab3b491fSBlue Swirl     },
377ab3b491fSBlue Swirl     {
378ab3b491fSBlue Swirl         .name = "Fujitsu MB86907",
379ab3b491fSBlue Swirl         .iu_version = 0x05 << 24, /* Impl 0, ver 5 */
380ab3b491fSBlue Swirl         .fpu_version = 4 << 17, /* FPU version 4 (Meiko) */
381ab3b491fSBlue Swirl         .mmu_version = 0x05 << 24, /* Impl 0, ver 5 */
382ab3b491fSBlue Swirl         .mmu_bm = 0x00004000,
383ab3b491fSBlue Swirl         .mmu_ctpr_mask = 0xffffffc0,
384ab3b491fSBlue Swirl         .mmu_cxr_mask = 0x000000ff,
385ab3b491fSBlue Swirl         .mmu_sfsr_mask = 0x00016fff,
386ab3b491fSBlue Swirl         .mmu_trcr_mask = 0xffffffff,
387ab3b491fSBlue Swirl         .nwindows = 8,
388ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
389ab3b491fSBlue Swirl     },
390ab3b491fSBlue Swirl     {
391ab3b491fSBlue Swirl         .name = "TI MicroSparc I",
392ab3b491fSBlue Swirl         .iu_version = 0x41000000,
393ab3b491fSBlue Swirl         .fpu_version = 4 << 17,
394ab3b491fSBlue Swirl         .mmu_version = 0x41000000,
395ab3b491fSBlue Swirl         .mmu_bm = 0x00004000,
396ab3b491fSBlue Swirl         .mmu_ctpr_mask = 0x007ffff0,
397ab3b491fSBlue Swirl         .mmu_cxr_mask = 0x0000003f,
398ab3b491fSBlue Swirl         .mmu_sfsr_mask = 0x00016fff,
399ab3b491fSBlue Swirl         .mmu_trcr_mask = 0x0000003f,
400ab3b491fSBlue Swirl         .nwindows = 7,
401ab3b491fSBlue Swirl         .features = CPU_FEATURE_FLOAT | CPU_FEATURE_SWAP | CPU_FEATURE_MUL |
402ab3b491fSBlue Swirl         CPU_FEATURE_DIV | CPU_FEATURE_FLUSH | CPU_FEATURE_FSQRT |
403ab3b491fSBlue Swirl         CPU_FEATURE_FMUL,
404ab3b491fSBlue Swirl     },
405ab3b491fSBlue Swirl     {
406ab3b491fSBlue Swirl         .name = "TI MicroSparc II",
407ab3b491fSBlue Swirl         .iu_version = 0x42000000,
408ab3b491fSBlue Swirl         .fpu_version = 4 << 17,
409ab3b491fSBlue Swirl         .mmu_version = 0x02000000,
410ab3b491fSBlue Swirl         .mmu_bm = 0x00004000,
411ab3b491fSBlue Swirl         .mmu_ctpr_mask = 0x00ffffc0,
412ab3b491fSBlue Swirl         .mmu_cxr_mask = 0x000000ff,
413ab3b491fSBlue Swirl         .mmu_sfsr_mask = 0x00016fff,
414ab3b491fSBlue Swirl         .mmu_trcr_mask = 0x00ffffff,
415ab3b491fSBlue Swirl         .nwindows = 8,
416ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
417ab3b491fSBlue Swirl     },
418ab3b491fSBlue Swirl     {
419ab3b491fSBlue Swirl         .name = "TI MicroSparc IIep",
420ab3b491fSBlue Swirl         .iu_version = 0x42000000,
421ab3b491fSBlue Swirl         .fpu_version = 4 << 17,
422ab3b491fSBlue Swirl         .mmu_version = 0x04000000,
423ab3b491fSBlue Swirl         .mmu_bm = 0x00004000,
424ab3b491fSBlue Swirl         .mmu_ctpr_mask = 0x00ffffc0,
425ab3b491fSBlue Swirl         .mmu_cxr_mask = 0x000000ff,
426ab3b491fSBlue Swirl         .mmu_sfsr_mask = 0x00016bff,
427ab3b491fSBlue Swirl         .mmu_trcr_mask = 0x00ffffff,
428ab3b491fSBlue Swirl         .nwindows = 8,
429ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
430ab3b491fSBlue Swirl     },
431ab3b491fSBlue Swirl     {
432ab3b491fSBlue Swirl         .name = "TI SuperSparc 40", /* STP1020NPGA */
433ab3b491fSBlue Swirl         .iu_version = 0x41000000, /* SuperSPARC 2.x */
434ab3b491fSBlue Swirl         .fpu_version = 0 << 17,
435ab3b491fSBlue Swirl         .mmu_version = 0x00000800, /* SuperSPARC 2.x, no MXCC */
436ab3b491fSBlue Swirl         .mmu_bm = 0x00002000,
437ab3b491fSBlue Swirl         .mmu_ctpr_mask = 0xffffffc0,
438ab3b491fSBlue Swirl         .mmu_cxr_mask = 0x0000ffff,
439ab3b491fSBlue Swirl         .mmu_sfsr_mask = 0xffffffff,
440ab3b491fSBlue Swirl         .mmu_trcr_mask = 0xffffffff,
441ab3b491fSBlue Swirl         .nwindows = 8,
442ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
443ab3b491fSBlue Swirl     },
444ab3b491fSBlue Swirl     {
445ab3b491fSBlue Swirl         .name = "TI SuperSparc 50", /* STP1020PGA */
446ab3b491fSBlue Swirl         .iu_version = 0x40000000, /* SuperSPARC 3.x */
447ab3b491fSBlue Swirl         .fpu_version = 0 << 17,
448ab3b491fSBlue Swirl         .mmu_version = 0x01000800, /* SuperSPARC 3.x, no MXCC */
449ab3b491fSBlue Swirl         .mmu_bm = 0x00002000,
450ab3b491fSBlue Swirl         .mmu_ctpr_mask = 0xffffffc0,
451ab3b491fSBlue Swirl         .mmu_cxr_mask = 0x0000ffff,
452ab3b491fSBlue Swirl         .mmu_sfsr_mask = 0xffffffff,
453ab3b491fSBlue Swirl         .mmu_trcr_mask = 0xffffffff,
454ab3b491fSBlue Swirl         .nwindows = 8,
455ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
456ab3b491fSBlue Swirl     },
457ab3b491fSBlue Swirl     {
458ab3b491fSBlue Swirl         .name = "TI SuperSparc 51",
459ab3b491fSBlue Swirl         .iu_version = 0x40000000, /* SuperSPARC 3.x */
460ab3b491fSBlue Swirl         .fpu_version = 0 << 17,
461ab3b491fSBlue Swirl         .mmu_version = 0x01000000, /* SuperSPARC 3.x, MXCC */
462ab3b491fSBlue Swirl         .mmu_bm = 0x00002000,
463ab3b491fSBlue Swirl         .mmu_ctpr_mask = 0xffffffc0,
464ab3b491fSBlue Swirl         .mmu_cxr_mask = 0x0000ffff,
465ab3b491fSBlue Swirl         .mmu_sfsr_mask = 0xffffffff,
466ab3b491fSBlue Swirl         .mmu_trcr_mask = 0xffffffff,
467ab3b491fSBlue Swirl         .mxcc_version = 0x00000104,
468ab3b491fSBlue Swirl         .nwindows = 8,
469ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
470ab3b491fSBlue Swirl     },
471ab3b491fSBlue Swirl     {
472ab3b491fSBlue Swirl         .name = "TI SuperSparc 60", /* STP1020APGA */
473ab3b491fSBlue Swirl         .iu_version = 0x40000000, /* SuperSPARC 3.x */
474ab3b491fSBlue Swirl         .fpu_version = 0 << 17,
475ab3b491fSBlue Swirl         .mmu_version = 0x01000800, /* SuperSPARC 3.x, no MXCC */
476ab3b491fSBlue Swirl         .mmu_bm = 0x00002000,
477ab3b491fSBlue Swirl         .mmu_ctpr_mask = 0xffffffc0,
478ab3b491fSBlue Swirl         .mmu_cxr_mask = 0x0000ffff,
479ab3b491fSBlue Swirl         .mmu_sfsr_mask = 0xffffffff,
480ab3b491fSBlue Swirl         .mmu_trcr_mask = 0xffffffff,
481ab3b491fSBlue Swirl         .nwindows = 8,
482ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
483ab3b491fSBlue Swirl     },
484ab3b491fSBlue Swirl     {
485ab3b491fSBlue Swirl         .name = "TI SuperSparc 61",
486ab3b491fSBlue Swirl         .iu_version = 0x44000000, /* SuperSPARC 3.x */
487ab3b491fSBlue Swirl         .fpu_version = 0 << 17,
488ab3b491fSBlue Swirl         .mmu_version = 0x01000000, /* SuperSPARC 3.x, MXCC */
489ab3b491fSBlue Swirl         .mmu_bm = 0x00002000,
490ab3b491fSBlue Swirl         .mmu_ctpr_mask = 0xffffffc0,
491ab3b491fSBlue Swirl         .mmu_cxr_mask = 0x0000ffff,
492ab3b491fSBlue Swirl         .mmu_sfsr_mask = 0xffffffff,
493ab3b491fSBlue Swirl         .mmu_trcr_mask = 0xffffffff,
494ab3b491fSBlue Swirl         .mxcc_version = 0x00000104,
495ab3b491fSBlue Swirl         .nwindows = 8,
496ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
497ab3b491fSBlue Swirl     },
498ab3b491fSBlue Swirl     {
499ab3b491fSBlue Swirl         .name = "TI SuperSparc II",
500ab3b491fSBlue Swirl         .iu_version = 0x40000000, /* SuperSPARC II 1.x */
501ab3b491fSBlue Swirl         .fpu_version = 0 << 17,
502ab3b491fSBlue Swirl         .mmu_version = 0x08000000, /* SuperSPARC II 1.x, MXCC */
503ab3b491fSBlue Swirl         .mmu_bm = 0x00002000,
504ab3b491fSBlue Swirl         .mmu_ctpr_mask = 0xffffffc0,
505ab3b491fSBlue Swirl         .mmu_cxr_mask = 0x0000ffff,
506ab3b491fSBlue Swirl         .mmu_sfsr_mask = 0xffffffff,
507ab3b491fSBlue Swirl         .mmu_trcr_mask = 0xffffffff,
508ab3b491fSBlue Swirl         .mxcc_version = 0x00000104,
509ab3b491fSBlue Swirl         .nwindows = 8,
510ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES,
511ab3b491fSBlue Swirl     },
512ab3b491fSBlue Swirl     {
513ab3b491fSBlue Swirl         .name = "LEON2",
514ab3b491fSBlue Swirl         .iu_version = 0xf2000000,
515ab3b491fSBlue Swirl         .fpu_version = 4 << 17, /* FPU version 4 (Meiko) */
516ab3b491fSBlue Swirl         .mmu_version = 0xf2000000,
517ab3b491fSBlue Swirl         .mmu_bm = 0x00004000,
518ab3b491fSBlue Swirl         .mmu_ctpr_mask = 0x007ffff0,
519ab3b491fSBlue Swirl         .mmu_cxr_mask = 0x0000003f,
520ab3b491fSBlue Swirl         .mmu_sfsr_mask = 0xffffffff,
521ab3b491fSBlue Swirl         .mmu_trcr_mask = 0xffffffff,
522ab3b491fSBlue Swirl         .nwindows = 8,
523ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES | CPU_FEATURE_TA0_SHUTDOWN,
524ab3b491fSBlue Swirl     },
525ab3b491fSBlue Swirl     {
526ab3b491fSBlue Swirl         .name = "LEON3",
527ab3b491fSBlue Swirl         .iu_version = 0xf3000000,
528ab3b491fSBlue Swirl         .fpu_version = 4 << 17, /* FPU version 4 (Meiko) */
529ab3b491fSBlue Swirl         .mmu_version = 0xf3000000,
530ab3b491fSBlue Swirl         .mmu_bm = 0x00000000,
5317a0a9c2cSRonald Hecht         .mmu_ctpr_mask = 0xfffffffc,
5327a0a9c2cSRonald Hecht         .mmu_cxr_mask = 0x000000ff,
533ab3b491fSBlue Swirl         .mmu_sfsr_mask = 0xffffffff,
534ab3b491fSBlue Swirl         .mmu_trcr_mask = 0xffffffff,
535ab3b491fSBlue Swirl         .nwindows = 8,
536ab3b491fSBlue Swirl         .features = CPU_DEFAULT_FEATURES | CPU_FEATURE_TA0_SHUTDOWN |
53716c358e9SSebastian Huber         CPU_FEATURE_ASR17 | CPU_FEATURE_CACHE_CTRL | CPU_FEATURE_POWERDOWN |
53816c358e9SSebastian Huber         CPU_FEATURE_CASA,
539ab3b491fSBlue Swirl     },
540ab3b491fSBlue Swirl #endif
541ab3b491fSBlue Swirl };
542ab3b491fSBlue Swirl 
543ab3b491fSBlue Swirl static const char * const feature_name[] = {
544ab3b491fSBlue Swirl     "float",
545ab3b491fSBlue Swirl     "float128",
546ab3b491fSBlue Swirl     "swap",
547ab3b491fSBlue Swirl     "mul",
548ab3b491fSBlue Swirl     "div",
549ab3b491fSBlue Swirl     "flush",
550ab3b491fSBlue Swirl     "fsqrt",
551ab3b491fSBlue Swirl     "fmul",
552ab3b491fSBlue Swirl     "vis1",
553ab3b491fSBlue Swirl     "vis2",
554ab3b491fSBlue Swirl     "fsmuld",
555ab3b491fSBlue Swirl     "hypv",
556ab3b491fSBlue Swirl     "cmt",
557ab3b491fSBlue Swirl     "gl",
558ab3b491fSBlue Swirl };
559ab3b491fSBlue Swirl 
5600442428aSMarkus Armbruster static void print_features(uint32_t features, const char *prefix)
561ab3b491fSBlue Swirl {
562ab3b491fSBlue Swirl     unsigned int i;
563ab3b491fSBlue Swirl 
564ab3b491fSBlue Swirl     for (i = 0; i < ARRAY_SIZE(feature_name); i++) {
565ab3b491fSBlue Swirl         if (feature_name[i] && (features & (1 << i))) {
566ab3b491fSBlue Swirl             if (prefix) {
5670442428aSMarkus Armbruster                 qemu_printf("%s", prefix);
568ab3b491fSBlue Swirl             }
5690442428aSMarkus Armbruster             qemu_printf("%s ", feature_name[i]);
570ab3b491fSBlue Swirl         }
571ab3b491fSBlue Swirl     }
572ab3b491fSBlue Swirl }
573ab3b491fSBlue Swirl 
5740442428aSMarkus Armbruster void sparc_cpu_list(void)
575ab3b491fSBlue Swirl {
576ab3b491fSBlue Swirl     unsigned int i;
577ab3b491fSBlue Swirl 
578ab3b491fSBlue Swirl     for (i = 0; i < ARRAY_SIZE(sparc_defs); i++) {
5790442428aSMarkus Armbruster         qemu_printf("Sparc %16s IU " TARGET_FMT_lx
580ab3b491fSBlue Swirl                     " FPU %08x MMU %08x NWINS %d ",
581ab3b491fSBlue Swirl                     sparc_defs[i].name,
582ab3b491fSBlue Swirl                     sparc_defs[i].iu_version,
583ab3b491fSBlue Swirl                     sparc_defs[i].fpu_version,
584ab3b491fSBlue Swirl                     sparc_defs[i].mmu_version,
585ab3b491fSBlue Swirl                     sparc_defs[i].nwindows);
5860442428aSMarkus Armbruster         print_features(CPU_DEFAULT_FEATURES & ~sparc_defs[i].features, "-");
5870442428aSMarkus Armbruster         print_features(~CPU_DEFAULT_FEATURES & sparc_defs[i].features, "+");
5880442428aSMarkus Armbruster         qemu_printf("\n");
589ab3b491fSBlue Swirl     }
5900442428aSMarkus Armbruster     qemu_printf("Default CPU feature flags (use '-' to remove): ");
5910442428aSMarkus Armbruster     print_features(CPU_DEFAULT_FEATURES, NULL);
5920442428aSMarkus Armbruster     qemu_printf("\n");
5930442428aSMarkus Armbruster     qemu_printf("Available CPU feature flags (use '+' to add): ");
5940442428aSMarkus Armbruster     print_features(~CPU_DEFAULT_FEATURES, NULL);
5950442428aSMarkus Armbruster     qemu_printf("\n");
5960442428aSMarkus Armbruster     qemu_printf("Numerical features (use '=' to set): iu_version "
597ab3b491fSBlue Swirl                 "fpu_version mmu_version nwindows\n");
598ab3b491fSBlue Swirl }
599ab3b491fSBlue Swirl 
60090c84c56SMarkus Armbruster static void cpu_print_cc(FILE *f, uint32_t cc)
601ab3b491fSBlue Swirl {
60290c84c56SMarkus Armbruster     qemu_fprintf(f, "%c%c%c%c", cc & PSR_NEG ? 'N' : '-',
603ab3b491fSBlue Swirl                  cc & PSR_ZERO ? 'Z' : '-', cc & PSR_OVF ? 'V' : '-',
604ab3b491fSBlue Swirl                  cc & PSR_CARRY ? 'C' : '-');
605ab3b491fSBlue Swirl }
606ab3b491fSBlue Swirl 
607ab3b491fSBlue Swirl #ifdef TARGET_SPARC64
608ab3b491fSBlue Swirl #define REGS_PER_LINE 4
609ab3b491fSBlue Swirl #else
610ab3b491fSBlue Swirl #define REGS_PER_LINE 8
611ab3b491fSBlue Swirl #endif
612ab3b491fSBlue Swirl 
61390c84c56SMarkus Armbruster void sparc_cpu_dump_state(CPUState *cs, FILE *f, int flags)
614ab3b491fSBlue Swirl {
615878096eeSAndreas Färber     SPARCCPU *cpu = SPARC_CPU(cs);
616878096eeSAndreas Färber     CPUSPARCState *env = &cpu->env;
617ab3b491fSBlue Swirl     int i, x;
618ab3b491fSBlue Swirl 
61990c84c56SMarkus Armbruster     qemu_fprintf(f, "pc: " TARGET_FMT_lx "  npc: " TARGET_FMT_lx "\n", env->pc,
620ab3b491fSBlue Swirl                  env->npc);
621ab3b491fSBlue Swirl 
622ab3b491fSBlue Swirl     for (i = 0; i < 8; i++) {
623ab3b491fSBlue Swirl         if (i % REGS_PER_LINE == 0) {
62490c84c56SMarkus Armbruster             qemu_fprintf(f, "%%g%d-%d:", i, i + REGS_PER_LINE - 1);
625ab3b491fSBlue Swirl         }
62690c84c56SMarkus Armbruster         qemu_fprintf(f, " " TARGET_FMT_lx, env->gregs[i]);
627ab3b491fSBlue Swirl         if (i % REGS_PER_LINE == REGS_PER_LINE - 1) {
62890c84c56SMarkus Armbruster             qemu_fprintf(f, "\n");
629ab3b491fSBlue Swirl         }
630ab3b491fSBlue Swirl     }
631ab3b491fSBlue Swirl     for (x = 0; x < 3; x++) {
632ab3b491fSBlue Swirl         for (i = 0; i < 8; i++) {
633ab3b491fSBlue Swirl             if (i % REGS_PER_LINE == 0) {
63490c84c56SMarkus Armbruster                 qemu_fprintf(f, "%%%c%d-%d: ",
635ab3b491fSBlue Swirl                              x == 0 ? 'o' : (x == 1 ? 'l' : 'i'),
636ab3b491fSBlue Swirl                              i, i + REGS_PER_LINE - 1);
637ab3b491fSBlue Swirl             }
63890c84c56SMarkus Armbruster             qemu_fprintf(f, TARGET_FMT_lx " ", env->regwptr[i + x * 8]);
639ab3b491fSBlue Swirl             if (i % REGS_PER_LINE == REGS_PER_LINE - 1) {
64090c84c56SMarkus Armbruster                 qemu_fprintf(f, "\n");
641ab3b491fSBlue Swirl             }
642ab3b491fSBlue Swirl         }
643ab3b491fSBlue Swirl     }
64476a23ca0SRichard Henderson 
645d13c394cSRichard Henderson     if (flags & CPU_DUMP_FPU) {
64630038fd8SRichard Henderson         for (i = 0; i < TARGET_DPREGS; i++) {
647ab3b491fSBlue Swirl             if ((i & 3) == 0) {
64890c84c56SMarkus Armbruster                 qemu_fprintf(f, "%%f%02d: ", i * 2);
649ab3b491fSBlue Swirl             }
65090c84c56SMarkus Armbruster             qemu_fprintf(f, " %016" PRIx64, env->fpr[i].ll);
651ab3b491fSBlue Swirl             if ((i & 3) == 3) {
65290c84c56SMarkus Armbruster                 qemu_fprintf(f, "\n");
653ab3b491fSBlue Swirl             }
654ab3b491fSBlue Swirl         }
655d13c394cSRichard Henderson     }
656d13c394cSRichard Henderson 
657ab3b491fSBlue Swirl #ifdef TARGET_SPARC64
65890c84c56SMarkus Armbruster     qemu_fprintf(f, "pstate: %08x ccr: %02x (icc: ", env->pstate,
659ab3b491fSBlue Swirl                  (unsigned)cpu_get_ccr(env));
66090c84c56SMarkus Armbruster     cpu_print_cc(f, cpu_get_ccr(env) << PSR_CARRY_SHIFT);
66190c84c56SMarkus Armbruster     qemu_fprintf(f, " xcc: ");
66290c84c56SMarkus Armbruster     cpu_print_cc(f, cpu_get_ccr(env) << (PSR_CARRY_SHIFT - 4));
66390c84c56SMarkus Armbruster     qemu_fprintf(f, ") asi: %02x tl: %d pil: %x gl: %d\n", env->asi, env->tl,
664cbc3a6a4SArtyom Tarasenko                  env->psrpil, env->gl);
66590c84c56SMarkus Armbruster     qemu_fprintf(f, "tbr: " TARGET_FMT_lx " hpstate: " TARGET_FMT_lx " htba: "
666cbc3a6a4SArtyom Tarasenko                  TARGET_FMT_lx "\n", env->tbr, env->hpstate, env->htba);
66790c84c56SMarkus Armbruster     qemu_fprintf(f, "cansave: %d canrestore: %d otherwin: %d wstate: %d "
668ab3b491fSBlue Swirl                  "cleanwin: %d cwp: %d\n",
669ab3b491fSBlue Swirl                  env->cansave, env->canrestore, env->otherwin, env->wstate,
670ab3b491fSBlue Swirl                  env->cleanwin, env->nwindows - 1 - env->cwp);
67190c84c56SMarkus Armbruster     qemu_fprintf(f, "fsr: " TARGET_FMT_lx " y: " TARGET_FMT_lx " fprs: "
672ab3b491fSBlue Swirl                  TARGET_FMT_lx "\n", env->fsr, env->y, env->fprs);
673cbc3a6a4SArtyom Tarasenko 
674ab3b491fSBlue Swirl #else
67590c84c56SMarkus Armbruster     qemu_fprintf(f, "psr: %08x (icc: ", cpu_get_psr(env));
67690c84c56SMarkus Armbruster     cpu_print_cc(f, cpu_get_psr(env));
67790c84c56SMarkus Armbruster     qemu_fprintf(f, " SPE: %c%c%c) wim: %08x\n", env->psrs ? 'S' : '-',
678ab3b491fSBlue Swirl                  env->psrps ? 'P' : '-', env->psret ? 'E' : '-',
679ab3b491fSBlue Swirl                  env->wim);
68090c84c56SMarkus Armbruster     qemu_fprintf(f, "fsr: " TARGET_FMT_lx " y: " TARGET_FMT_lx "\n",
681ab3b491fSBlue Swirl                  env->fsr, env->y);
682ab3b491fSBlue Swirl #endif
68390c84c56SMarkus Armbruster     qemu_fprintf(f, "\n");
684ab3b491fSBlue Swirl }
685ab7ab3d7SAndreas Färber 
686f45748f1SAndreas Färber static void sparc_cpu_set_pc(CPUState *cs, vaddr value)
687f45748f1SAndreas Färber {
688f45748f1SAndreas Färber     SPARCCPU *cpu = SPARC_CPU(cs);
689f45748f1SAndreas Färber 
690f45748f1SAndreas Färber     cpu->env.pc = value;
691f45748f1SAndreas Färber     cpu->env.npc = value + 4;
692f45748f1SAndreas Färber }
693f45748f1SAndreas Färber 
694bdf7ae5bSAndreas Färber static void sparc_cpu_synchronize_from_tb(CPUState *cs, TranslationBlock *tb)
695bdf7ae5bSAndreas Färber {
696bdf7ae5bSAndreas Färber     SPARCCPU *cpu = SPARC_CPU(cs);
697bdf7ae5bSAndreas Färber 
698bdf7ae5bSAndreas Färber     cpu->env.pc = tb->pc;
699bdf7ae5bSAndreas Färber     cpu->env.npc = tb->cs_base;
700bdf7ae5bSAndreas Färber }
701bdf7ae5bSAndreas Färber 
7028c2e1b00SAndreas Färber static bool sparc_cpu_has_work(CPUState *cs)
7038c2e1b00SAndreas Färber {
7048c2e1b00SAndreas Färber     SPARCCPU *cpu = SPARC_CPU(cs);
7058c2e1b00SAndreas Färber     CPUSPARCState *env = &cpu->env;
7068c2e1b00SAndreas Färber 
7078c2e1b00SAndreas Färber     return (cs->interrupt_request & CPU_INTERRUPT_HARD) &&
7088c2e1b00SAndreas Färber            cpu_interrupts_enabled(env);
7098c2e1b00SAndreas Färber }
7108c2e1b00SAndreas Färber 
71112a6c15eSIgor Mammedov static char *sparc_cpu_type_name(const char *cpu_model)
71212a6c15eSIgor Mammedov {
7131d4bfc54SIgor Mammedov     char *name = g_strdup_printf(SPARC_CPU_TYPE_NAME("%s"), cpu_model);
71412a6c15eSIgor Mammedov     char *s = name;
71512a6c15eSIgor Mammedov 
71612a6c15eSIgor Mammedov     /* SPARC cpu model names happen to have whitespaces,
71712a6c15eSIgor Mammedov      * as type names shouldn't have spaces replace them with '-'
71812a6c15eSIgor Mammedov      */
71912a6c15eSIgor Mammedov     while ((s = strchr(s, ' '))) {
72012a6c15eSIgor Mammedov         *s = '-';
72112a6c15eSIgor Mammedov     }
72212a6c15eSIgor Mammedov 
72312a6c15eSIgor Mammedov     return name;
72412a6c15eSIgor Mammedov }
72512a6c15eSIgor Mammedov 
72612a6c15eSIgor Mammedov static ObjectClass *sparc_cpu_class_by_name(const char *cpu_model)
72712a6c15eSIgor Mammedov {
72812a6c15eSIgor Mammedov     ObjectClass *oc;
72912a6c15eSIgor Mammedov     char *typename;
73012a6c15eSIgor Mammedov 
73112a6c15eSIgor Mammedov     typename = sparc_cpu_type_name(cpu_model);
73212a6c15eSIgor Mammedov     oc = object_class_by_name(typename);
73312a6c15eSIgor Mammedov     g_free(typename);
73412a6c15eSIgor Mammedov     return oc;
73512a6c15eSIgor Mammedov }
73612a6c15eSIgor Mammedov 
737b6e91ebfSAndreas Färber static void sparc_cpu_realizefn(DeviceState *dev, Error **errp)
738b6e91ebfSAndreas Färber {
739ce5b1bbfSLaurent Vivier     CPUState *cs = CPU(dev);
740b6e91ebfSAndreas Färber     SPARCCPUClass *scc = SPARC_CPU_GET_CLASS(dev);
741ce5b1bbfSLaurent Vivier     Error *local_err = NULL;
742247bf011SAndreas Färber     SPARCCPU *cpu = SPARC_CPU(dev);
743247bf011SAndreas Färber     CPUSPARCState *env = &cpu->env;
744247bf011SAndreas Färber 
74570054962SIgor Mammedov #if defined(CONFIG_USER_ONLY)
746576e1c4cSIgor Mammedov     if ((env->def.features & CPU_FEATURE_FLOAT)) {
747576e1c4cSIgor Mammedov         env->def.features |= CPU_FEATURE_FLOAT128;
748247bf011SAndreas Färber     }
749247bf011SAndreas Färber #endif
750b6e91ebfSAndreas Färber 
75170054962SIgor Mammedov     env->version = env->def.iu_version;
75270054962SIgor Mammedov     env->fsr = env->def.fpu_version;
75370054962SIgor Mammedov     env->nwindows = env->def.nwindows;
75470054962SIgor Mammedov #if !defined(TARGET_SPARC64)
75570054962SIgor Mammedov     env->mmuregs[0] |= env->def.mmu_version;
75670054962SIgor Mammedov     cpu_sparc_set_id(env, 0);
75770054962SIgor Mammedov     env->mxccregs[7] |= env->def.mxcc_version;
75870054962SIgor Mammedov #else
75970054962SIgor Mammedov     env->mmu_version = env->def.mmu_version;
76070054962SIgor Mammedov     env->maxtl = env->def.maxtl;
76170054962SIgor Mammedov     env->version |= env->def.maxtl << 8;
76270054962SIgor Mammedov     env->version |= env->def.nwindows - 1;
76370054962SIgor Mammedov #endif
76470054962SIgor Mammedov 
765ce5b1bbfSLaurent Vivier     cpu_exec_realizefn(cs, &local_err);
766ce5b1bbfSLaurent Vivier     if (local_err != NULL) {
767ce5b1bbfSLaurent Vivier         error_propagate(errp, local_err);
768ce5b1bbfSLaurent Vivier         return;
769ce5b1bbfSLaurent Vivier     }
770ce5b1bbfSLaurent Vivier 
771ce5b1bbfSLaurent Vivier     qemu_init_vcpu(cs);
77214a10fc3SAndreas Färber 
773b6e91ebfSAndreas Färber     scc->parent_realize(dev, errp);
774b6e91ebfSAndreas Färber }
775b6e91ebfSAndreas Färber 
776ab7ab3d7SAndreas Färber static void sparc_cpu_initfn(Object *obj)
777ab7ab3d7SAndreas Färber {
778ab7ab3d7SAndreas Färber     SPARCCPU *cpu = SPARC_CPU(obj);
77912a6c15eSIgor Mammedov     SPARCCPUClass *scc = SPARC_CPU_GET_CLASS(obj);
780ab7ab3d7SAndreas Färber     CPUSPARCState *env = &cpu->env;
781ab7ab3d7SAndreas Färber 
7827506ed90SRichard Henderson     cpu_set_cpustate_pointers(cpu);
7835266d20aSAndreas Färber 
784576e1c4cSIgor Mammedov     if (scc->cpu_def) {
785576e1c4cSIgor Mammedov         env->def = *scc->cpu_def;
786ab7ab3d7SAndreas Färber     }
787ab7ab3d7SAndreas Färber }
788ab7ab3d7SAndreas Färber 
789de05005bSIgor Mammedov static void sparc_get_nwindows(Object *obj, Visitor *v, const char *name,
790de05005bSIgor Mammedov                                void *opaque, Error **errp)
791de05005bSIgor Mammedov {
792de05005bSIgor Mammedov     SPARCCPU *cpu = SPARC_CPU(obj);
793de05005bSIgor Mammedov     int64_t value = cpu->env.def.nwindows;
794de05005bSIgor Mammedov 
795de05005bSIgor Mammedov     visit_type_int(v, name, &value, errp);
796de05005bSIgor Mammedov }
797de05005bSIgor Mammedov 
798de05005bSIgor Mammedov static void sparc_set_nwindows(Object *obj, Visitor *v, const char *name,
799de05005bSIgor Mammedov                                void *opaque, Error **errp)
800de05005bSIgor Mammedov {
801de05005bSIgor Mammedov     const int64_t min = MIN_NWINDOWS;
802de05005bSIgor Mammedov     const int64_t max = MAX_NWINDOWS;
803de05005bSIgor Mammedov     SPARCCPU *cpu = SPARC_CPU(obj);
804de05005bSIgor Mammedov     Error *err = NULL;
805de05005bSIgor Mammedov     int64_t value;
806de05005bSIgor Mammedov 
807de05005bSIgor Mammedov     visit_type_int(v, name, &value, &err);
808de05005bSIgor Mammedov     if (err) {
809de05005bSIgor Mammedov         error_propagate(errp, err);
810de05005bSIgor Mammedov         return;
811de05005bSIgor Mammedov     }
812de05005bSIgor Mammedov 
813de05005bSIgor Mammedov     if (value < min || value > max) {
814de05005bSIgor Mammedov         error_setg(errp, "Property %s.%s doesn't take value %" PRId64
815de05005bSIgor Mammedov                    " (minimum: %" PRId64 ", maximum: %" PRId64 ")",
816de05005bSIgor Mammedov                    object_get_typename(obj), name ? name : "null",
817de05005bSIgor Mammedov                    value, min, max);
818de05005bSIgor Mammedov         return;
819de05005bSIgor Mammedov     }
820de05005bSIgor Mammedov     cpu->env.def.nwindows = value;
821de05005bSIgor Mammedov }
822de05005bSIgor Mammedov 
823de05005bSIgor Mammedov static PropertyInfo qdev_prop_nwindows = {
824de05005bSIgor Mammedov     .name  = "int",
825de05005bSIgor Mammedov     .get   = sparc_get_nwindows,
826de05005bSIgor Mammedov     .set   = sparc_set_nwindows,
827de05005bSIgor Mammedov };
828de05005bSIgor Mammedov 
829de05005bSIgor Mammedov static Property sparc_cpu_properties[] = {
830de05005bSIgor Mammedov     DEFINE_PROP_BIT("float",    SPARCCPU, env.def.features, 0, false),
831de05005bSIgor Mammedov     DEFINE_PROP_BIT("float128", SPARCCPU, env.def.features, 1, false),
832de05005bSIgor Mammedov     DEFINE_PROP_BIT("swap",     SPARCCPU, env.def.features, 2, false),
833de05005bSIgor Mammedov     DEFINE_PROP_BIT("mul",      SPARCCPU, env.def.features, 3, false),
834de05005bSIgor Mammedov     DEFINE_PROP_BIT("div",      SPARCCPU, env.def.features, 4, false),
835de05005bSIgor Mammedov     DEFINE_PROP_BIT("flush",    SPARCCPU, env.def.features, 5, false),
836de05005bSIgor Mammedov     DEFINE_PROP_BIT("fsqrt",    SPARCCPU, env.def.features, 6, false),
837de05005bSIgor Mammedov     DEFINE_PROP_BIT("fmul",     SPARCCPU, env.def.features, 7, false),
838de05005bSIgor Mammedov     DEFINE_PROP_BIT("vis1",     SPARCCPU, env.def.features, 8, false),
839de05005bSIgor Mammedov     DEFINE_PROP_BIT("vis2",     SPARCCPU, env.def.features, 9, false),
840de05005bSIgor Mammedov     DEFINE_PROP_BIT("fsmuld",   SPARCCPU, env.def.features, 10, false),
841de05005bSIgor Mammedov     DEFINE_PROP_BIT("hypv",     SPARCCPU, env.def.features, 11, false),
842de05005bSIgor Mammedov     DEFINE_PROP_BIT("cmt",      SPARCCPU, env.def.features, 12, false),
843de05005bSIgor Mammedov     DEFINE_PROP_BIT("gl",       SPARCCPU, env.def.features, 13, false),
844de05005bSIgor Mammedov     DEFINE_PROP_UNSIGNED("iu-version", SPARCCPU, env.def.iu_version, 0,
845de05005bSIgor Mammedov                          qdev_prop_uint64, target_ulong),
846de05005bSIgor Mammedov     DEFINE_PROP_UINT32("fpu-version", SPARCCPU, env.def.fpu_version, 0),
847de05005bSIgor Mammedov     DEFINE_PROP_UINT32("mmu-version", SPARCCPU, env.def.mmu_version, 0),
848de05005bSIgor Mammedov     { .name  = "nwindows", .info  = &qdev_prop_nwindows },
849de05005bSIgor Mammedov     DEFINE_PROP_END_OF_LIST()
850de05005bSIgor Mammedov };
851de05005bSIgor Mammedov 
852ab7ab3d7SAndreas Färber static void sparc_cpu_class_init(ObjectClass *oc, void *data)
853ab7ab3d7SAndreas Färber {
854ab7ab3d7SAndreas Färber     SPARCCPUClass *scc = SPARC_CPU_CLASS(oc);
855ab7ab3d7SAndreas Färber     CPUClass *cc = CPU_CLASS(oc);
856b6e91ebfSAndreas Färber     DeviceClass *dc = DEVICE_CLASS(oc);
857b6e91ebfSAndreas Färber 
858bf853881SPhilippe Mathieu-Daudé     device_class_set_parent_realize(dc, sparc_cpu_realizefn,
859bf853881SPhilippe Mathieu-Daudé                                     &scc->parent_realize);
8604f67d30bSMarc-André Lureau     device_class_set_props(dc, sparc_cpu_properties);
861ab7ab3d7SAndreas Färber 
862*781c67caSPeter Maydell     device_class_set_parent_reset(dc, sparc_cpu_reset, &scc->parent_reset);
86397a8ea5aSAndreas Färber 
86412a6c15eSIgor Mammedov     cc->class_by_name = sparc_cpu_class_by_name;
865d1853231SIgor Mammedov     cc->parse_features = sparc_cpu_parse_features;
8668c2e1b00SAndreas Färber     cc->has_work = sparc_cpu_has_work;
86797a8ea5aSAndreas Färber     cc->do_interrupt = sparc_cpu_do_interrupt;
86887afe467SRichard Henderson     cc->cpu_exec_interrupt = sparc_cpu_exec_interrupt;
869878096eeSAndreas Färber     cc->dump_state = sparc_cpu_dump_state;
870f3659eeeSAndreas Färber #if !defined(TARGET_SPARC64) && !defined(CONFIG_USER_ONLY)
871f3659eeeSAndreas Färber     cc->memory_rw_debug = sparc_cpu_memory_rw_debug;
872f3659eeeSAndreas Färber #endif
873f45748f1SAndreas Färber     cc->set_pc = sparc_cpu_set_pc;
874bdf7ae5bSAndreas Färber     cc->synchronize_from_tb = sparc_cpu_synchronize_from_tb;
8755b50e790SAndreas Färber     cc->gdb_read_register = sparc_cpu_gdb_read_register;
8765b50e790SAndreas Färber     cc->gdb_write_register = sparc_cpu_gdb_write_register;
877e84942f2SRichard Henderson     cc->tlb_fill = sparc_cpu_tlb_fill;
878e84942f2SRichard Henderson #ifndef CONFIG_USER_ONLY
879f8c3db33SPeter Maydell     cc->do_transaction_failed = sparc_cpu_do_transaction_failed;
88093e22326SPaolo Bonzini     cc->do_unaligned_access = sparc_cpu_do_unaligned_access;
88100b941e5SAndreas Färber     cc->get_phys_page_debug = sparc_cpu_get_phys_page_debug;
882df32c8d4SJuan Quintela     cc->vmsd = &vmstate_sparc_cpu;
88300b941e5SAndreas Färber #endif
884df0900ebSPeter Crosthwaite     cc->disas_set_info = cpu_sparc_disas_set_info;
88555c3ceefSRichard Henderson     cc->tcg_initialize = sparc_tcg_init;
886a0e372f0SAndreas Färber 
887a0e372f0SAndreas Färber #if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
888a0e372f0SAndreas Färber     cc->gdb_num_core_regs = 86;
889a0e372f0SAndreas Färber #else
890a0e372f0SAndreas Färber     cc->gdb_num_core_regs = 72;
891a0e372f0SAndreas Färber #endif
892ab7ab3d7SAndreas Färber }
893ab7ab3d7SAndreas Färber 
894ab7ab3d7SAndreas Färber static const TypeInfo sparc_cpu_type_info = {
895ab7ab3d7SAndreas Färber     .name = TYPE_SPARC_CPU,
896ab7ab3d7SAndreas Färber     .parent = TYPE_CPU,
897ab7ab3d7SAndreas Färber     .instance_size = sizeof(SPARCCPU),
898ab7ab3d7SAndreas Färber     .instance_init = sparc_cpu_initfn,
89912a6c15eSIgor Mammedov     .abstract = true,
900ab7ab3d7SAndreas Färber     .class_size = sizeof(SPARCCPUClass),
901ab7ab3d7SAndreas Färber     .class_init = sparc_cpu_class_init,
902ab7ab3d7SAndreas Färber };
903ab7ab3d7SAndreas Färber 
90412a6c15eSIgor Mammedov static void sparc_cpu_cpudef_class_init(ObjectClass *oc, void *data)
90512a6c15eSIgor Mammedov {
90612a6c15eSIgor Mammedov     SPARCCPUClass *scc = SPARC_CPU_CLASS(oc);
90712a6c15eSIgor Mammedov     scc->cpu_def = data;
90812a6c15eSIgor Mammedov }
90912a6c15eSIgor Mammedov 
91012a6c15eSIgor Mammedov static void sparc_register_cpudef_type(const struct sparc_def_t *def)
91112a6c15eSIgor Mammedov {
91212a6c15eSIgor Mammedov     char *typename = sparc_cpu_type_name(def->name);
91312a6c15eSIgor Mammedov     TypeInfo ti = {
91412a6c15eSIgor Mammedov         .name = typename,
91512a6c15eSIgor Mammedov         .parent = TYPE_SPARC_CPU,
91612a6c15eSIgor Mammedov         .class_init = sparc_cpu_cpudef_class_init,
91712a6c15eSIgor Mammedov         .class_data = (void *)def,
91812a6c15eSIgor Mammedov     };
91912a6c15eSIgor Mammedov 
92012a6c15eSIgor Mammedov     type_register(&ti);
92112a6c15eSIgor Mammedov     g_free(typename);
92212a6c15eSIgor Mammedov }
92312a6c15eSIgor Mammedov 
924ab7ab3d7SAndreas Färber static void sparc_cpu_register_types(void)
925ab7ab3d7SAndreas Färber {
92612a6c15eSIgor Mammedov     int i;
92712a6c15eSIgor Mammedov 
928ab7ab3d7SAndreas Färber     type_register_static(&sparc_cpu_type_info);
92912a6c15eSIgor Mammedov     for (i = 0; i < ARRAY_SIZE(sparc_defs); i++) {
93012a6c15eSIgor Mammedov         sparc_register_cpudef_type(&sparc_defs[i]);
93112a6c15eSIgor Mammedov     }
932ab7ab3d7SAndreas Färber }
933ab7ab3d7SAndreas Färber 
934ab7ab3d7SAndreas Färber type_init(sparc_cpu_register_types)
935