]> git.proxmox.com Git - qemu.git/blame - target-sparc/cpu.h
Fix unassigned memory access handling
[qemu.git] / target-sparc / cpu.h
CommitLineData
7a3f1944
FB
1#ifndef CPU_SPARC_H
2#define CPU_SPARC_H
3
af7bf89b 4#include "config.h"
047b39e4 5#include "qemu-common.h"
af7bf89b
FB
6
7#if !defined(TARGET_SPARC64)
3cf1e035 8#define TARGET_LONG_BITS 32
af7bf89b 9#define TARGET_FPREGS 32
83469015 10#define TARGET_PAGE_BITS 12 /* 4k */
058ed88c
RH
11#define TARGET_PHYS_ADDR_SPACE_BITS 36
12#define TARGET_VIRT_ADDR_SPACE_BITS 32
13#else
14#define TARGET_LONG_BITS 64
15#define TARGET_FPREGS 64
16#define TARGET_PAGE_BITS 13 /* 8k */
52705890
RH
17#define TARGET_PHYS_ADDR_SPACE_BITS 41
18# ifdef TARGET_ABI32
19# define TARGET_VIRT_ADDR_SPACE_BITS 32
20# else
21# define TARGET_VIRT_ADDR_SPACE_BITS 44
22# endif
af7bf89b 23#endif
3cf1e035 24
c2764719
PB
25#define CPUState struct CPUSPARCState
26
7a3f1944
FB
27#include "cpu-defs.h"
28
7a0e1f41
FB
29#include "softfloat.h"
30
1fddef4b
FB
31#define TARGET_HAS_ICE 1
32
9042c0e2 33#if !defined(TARGET_SPARC64)
0f8a249a 34#define ELF_MACHINE EM_SPARC
9042c0e2 35#else
0f8a249a 36#define ELF_MACHINE EM_SPARCV9
9042c0e2
TS
37#endif
38
7a3f1944
FB
39/*#define EXCP_INTERRUPT 0x100*/
40
cf495bcf 41/* trap definitions */
3475187d 42#ifndef TARGET_SPARC64
878d3096 43#define TT_TFAULT 0x01
cf495bcf 44#define TT_ILL_INSN 0x02
e8af50a3 45#define TT_PRIV_INSN 0x03
e80cfcfc 46#define TT_NFPU_INSN 0x04
cf495bcf 47#define TT_WIN_OVF 0x05
5fafdf24 48#define TT_WIN_UNF 0x06
d2889a3e 49#define TT_UNALIGNED 0x07
e8af50a3 50#define TT_FP_EXCP 0x08
878d3096 51#define TT_DFAULT 0x09
e32f879d 52#define TT_TOVF 0x0a
878d3096 53#define TT_EXTINT 0x10
1b2e93c1 54#define TT_CODE_ACCESS 0x21
64a88d5d 55#define TT_UNIMP_FLUSH 0x25
b4f0a316 56#define TT_DATA_ACCESS 0x29
cf495bcf 57#define TT_DIV_ZERO 0x2a
fcc72045 58#define TT_NCP_INSN 0x24
cf495bcf 59#define TT_TRAP 0x80
3475187d 60#else
8194f35a 61#define TT_POWER_ON_RESET 0x01
3475187d 62#define TT_TFAULT 0x08
1b2e93c1 63#define TT_CODE_ACCESS 0x0a
3475187d 64#define TT_ILL_INSN 0x10
64a88d5d 65#define TT_UNIMP_FLUSH TT_ILL_INSN
3475187d
FB
66#define TT_PRIV_INSN 0x11
67#define TT_NFPU_INSN 0x20
68#define TT_FP_EXCP 0x21
e32f879d 69#define TT_TOVF 0x23
3475187d
FB
70#define TT_CLRWIN 0x24
71#define TT_DIV_ZERO 0x28
72#define TT_DFAULT 0x30
b4f0a316 73#define TT_DATA_ACCESS 0x32
d2889a3e 74#define TT_UNALIGNED 0x34
83469015 75#define TT_PRIV_ACT 0x37
3475187d 76#define TT_EXTINT 0x40
74b9decc 77#define TT_IVEC 0x60
e19e4efe
BS
78#define TT_TMISS 0x64
79#define TT_DMISS 0x68
74b9decc 80#define TT_DPROT 0x6c
3475187d
FB
81#define TT_SPILL 0x80
82#define TT_FILL 0xc0
88c8e03f 83#define TT_WOTHER (1 << 5)
3475187d
FB
84#define TT_TRAP 0x100
85#endif
7a3f1944 86
4b8b8b76
BS
87#define PSR_NEG_SHIFT 23
88#define PSR_NEG (1 << PSR_NEG_SHIFT)
89#define PSR_ZERO_SHIFT 22
90#define PSR_ZERO (1 << PSR_ZERO_SHIFT)
91#define PSR_OVF_SHIFT 21
92#define PSR_OVF (1 << PSR_OVF_SHIFT)
93#define PSR_CARRY_SHIFT 20
94#define PSR_CARRY (1 << PSR_CARRY_SHIFT)
e8af50a3 95#define PSR_ICC (PSR_NEG|PSR_ZERO|PSR_OVF|PSR_CARRY)
2aae2b8e 96#if !defined(TARGET_SPARC64)
e80cfcfc
FB
97#define PSR_EF (1<<12)
98#define PSR_PIL 0xf00
e8af50a3
FB
99#define PSR_S (1<<7)
100#define PSR_PS (1<<6)
101#define PSR_ET (1<<5)
102#define PSR_CWP 0x1f
2aae2b8e 103#endif
e8af50a3 104
8393617c
BS
105#define CC_SRC (env->cc_src)
106#define CC_SRC2 (env->cc_src2)
107#define CC_DST (env->cc_dst)
108#define CC_OP (env->cc_op)
109
110enum {
111 CC_OP_DYNAMIC, /* must use dynamic code to get cc_op */
112 CC_OP_FLAGS, /* all cc are back in status register */
113 CC_OP_DIV, /* modify N, Z and V, C = 0*/
114 CC_OP_ADD, /* modify all flags, CC_DST = res, CC_SRC = src1 */
115 CC_OP_ADDX, /* modify all flags, CC_DST = res, CC_SRC = src1 */
116 CC_OP_TADD, /* modify all flags, CC_DST = res, CC_SRC = src1 */
117 CC_OP_TADDTV, /* modify all flags except V, CC_DST = res, CC_SRC = src1 */
118 CC_OP_SUB, /* modify all flags, CC_DST = res, CC_SRC = src1 */
119 CC_OP_SUBX, /* modify all flags, CC_DST = res, CC_SRC = src1 */
120 CC_OP_TSUB, /* modify all flags, CC_DST = res, CC_SRC = src1 */
121 CC_OP_TSUBTV, /* modify all flags except V, CC_DST = res, CC_SRC = src1 */
122 CC_OP_LOGIC, /* modify N and Z, C = V = 0, CC_DST = res */
123 CC_OP_NB,
124};
125
e8af50a3
FB
126/* Trap base register */
127#define TBR_BASE_MASK 0xfffff000
128
3475187d 129#if defined(TARGET_SPARC64)
5210977a
IK
130#define PS_TCT (1<<12) /* UA2007, impl.dep. trap on control transfer */
131#define PS_IG (1<<11) /* v9, zero on UA2007 */
132#define PS_MG (1<<10) /* v9, zero on UA2007 */
133#define PS_CLE (1<<9) /* UA2007 */
134#define PS_TLE (1<<8) /* UA2007 */
6ef905f6 135#define PS_RMO (1<<7)
5210977a
IK
136#define PS_RED (1<<5) /* v9, zero on UA2007 */
137#define PS_PEF (1<<4) /* enable fpu */
138#define PS_AM (1<<3) /* address mask */
3475187d
FB
139#define PS_PRIV (1<<2)
140#define PS_IE (1<<1)
5210977a 141#define PS_AG (1<<0) /* v9, zero on UA2007 */
a80dde08
FB
142
143#define FPRS_FEF (1<<2)
6f27aba6
BS
144
145#define HS_PRIV (1<<2)
3475187d
FB
146#endif
147
e8af50a3 148/* Fcc */
ba6a9d8c
BS
149#define FSR_RD1 (1ULL << 31)
150#define FSR_RD0 (1ULL << 30)
e8af50a3
FB
151#define FSR_RD_MASK (FSR_RD1 | FSR_RD0)
152#define FSR_RD_NEAREST 0
153#define FSR_RD_ZERO FSR_RD0
154#define FSR_RD_POS FSR_RD1
155#define FSR_RD_NEG (FSR_RD1 | FSR_RD0)
156
ba6a9d8c
BS
157#define FSR_NVM (1ULL << 27)
158#define FSR_OFM (1ULL << 26)
159#define FSR_UFM (1ULL << 25)
160#define FSR_DZM (1ULL << 24)
161#define FSR_NXM (1ULL << 23)
e8af50a3
FB
162#define FSR_TEM_MASK (FSR_NVM | FSR_OFM | FSR_UFM | FSR_DZM | FSR_NXM)
163
ba6a9d8c
BS
164#define FSR_NVA (1ULL << 9)
165#define FSR_OFA (1ULL << 8)
166#define FSR_UFA (1ULL << 7)
167#define FSR_DZA (1ULL << 6)
168#define FSR_NXA (1ULL << 5)
e8af50a3
FB
169#define FSR_AEXC_MASK (FSR_NVA | FSR_OFA | FSR_UFA | FSR_DZA | FSR_NXA)
170
ba6a9d8c
BS
171#define FSR_NVC (1ULL << 4)
172#define FSR_OFC (1ULL << 3)
173#define FSR_UFC (1ULL << 2)
174#define FSR_DZC (1ULL << 1)
175#define FSR_NXC (1ULL << 0)
e8af50a3
FB
176#define FSR_CEXC_MASK (FSR_NVC | FSR_OFC | FSR_UFC | FSR_DZC | FSR_NXC)
177
ba6a9d8c
BS
178#define FSR_FTT2 (1ULL << 16)
179#define FSR_FTT1 (1ULL << 15)
180#define FSR_FTT0 (1ULL << 14)
47ad35f1
BS
181//gcc warns about constant overflow for ~FSR_FTT_MASK
182//#define FSR_FTT_MASK (FSR_FTT2 | FSR_FTT1 | FSR_FTT0)
183#ifdef TARGET_SPARC64
184#define FSR_FTT_NMASK 0xfffffffffffe3fffULL
185#define FSR_FTT_CEXC_NMASK 0xfffffffffffe3fe0ULL
3a3b925d
BS
186#define FSR_LDFSR_OLDMASK 0x0000003f000fc000ULL
187#define FSR_LDXFSR_MASK 0x0000003fcfc00fffULL
188#define FSR_LDXFSR_OLDMASK 0x00000000000fc000ULL
47ad35f1
BS
189#else
190#define FSR_FTT_NMASK 0xfffe3fffULL
191#define FSR_FTT_CEXC_NMASK 0xfffe3fe0ULL
3a3b925d 192#define FSR_LDFSR_OLDMASK 0x000fc000ULL
47ad35f1 193#endif
3a3b925d 194#define FSR_LDFSR_MASK 0xcfc00fffULL
ba6a9d8c
BS
195#define FSR_FTT_IEEE_EXCP (1ULL << 14)
196#define FSR_FTT_UNIMPFPOP (3ULL << 14)
197#define FSR_FTT_SEQ_ERROR (4ULL << 14)
198#define FSR_FTT_INVAL_FPR (6ULL << 14)
e8af50a3 199
4b8b8b76 200#define FSR_FCC1_SHIFT 11
ba6a9d8c 201#define FSR_FCC1 (1ULL << FSR_FCC1_SHIFT)
4b8b8b76 202#define FSR_FCC0_SHIFT 10
ba6a9d8c 203#define FSR_FCC0 (1ULL << FSR_FCC0_SHIFT)
e8af50a3
FB
204
205/* MMU */
0f8a249a
BS
206#define MMU_E (1<<0)
207#define MMU_NF (1<<1)
e8af50a3
FB
208
209#define PTE_ENTRYTYPE_MASK 3
210#define PTE_ACCESS_MASK 0x1c
211#define PTE_ACCESS_SHIFT 2
8d5f07fa 212#define PTE_PPN_SHIFT 7
e8af50a3
FB
213#define PTE_ADDR_MASK 0xffffff00
214
0f8a249a
BS
215#define PG_ACCESSED_BIT 5
216#define PG_MODIFIED_BIT 6
e8af50a3
FB
217#define PG_CACHE_BIT 7
218
219#define PG_ACCESSED_MASK (1 << PG_ACCESSED_BIT)
220#define PG_MODIFIED_MASK (1 << PG_MODIFIED_BIT)
221#define PG_CACHE_MASK (1 << PG_CACHE_BIT)
222
1a14026e
BS
223/* 3 <= NWINDOWS <= 32. */
224#define MIN_NWINDOWS 3
225#define MAX_NWINDOWS 32
cf495bcf 226
6f27aba6 227#if !defined(TARGET_SPARC64)
6ebbf390 228#define NB_MMU_MODES 2
6f27aba6 229#else
2065061e 230#define NB_MMU_MODES 6
375ee38b
BS
231typedef struct trap_state {
232 uint64_t tpc;
233 uint64_t tnpc;
234 uint64_t tstate;
235 uint32_t tt;
236} trap_state;
6f27aba6 237#endif
6ebbf390 238
5578ceab
BS
239typedef struct sparc_def_t {
240 const char *name;
241 target_ulong iu_version;
242 uint32_t fpu_version;
243 uint32_t mmu_version;
244 uint32_t mmu_bm;
245 uint32_t mmu_ctpr_mask;
246 uint32_t mmu_cxr_mask;
247 uint32_t mmu_sfsr_mask;
248 uint32_t mmu_trcr_mask;
963262de 249 uint32_t mxcc_version;
5578ceab
BS
250 uint32_t features;
251 uint32_t nwindows;
252 uint32_t maxtl;
253} sparc_def_t;
254
b04d9890
FC
255#define CPU_FEATURE_FLOAT (1 << 0)
256#define CPU_FEATURE_FLOAT128 (1 << 1)
257#define CPU_FEATURE_SWAP (1 << 2)
258#define CPU_FEATURE_MUL (1 << 3)
259#define CPU_FEATURE_DIV (1 << 4)
260#define CPU_FEATURE_FLUSH (1 << 5)
261#define CPU_FEATURE_FSQRT (1 << 6)
262#define CPU_FEATURE_FMUL (1 << 7)
263#define CPU_FEATURE_VIS1 (1 << 8)
264#define CPU_FEATURE_VIS2 (1 << 9)
265#define CPU_FEATURE_FSMULD (1 << 10)
266#define CPU_FEATURE_HYPV (1 << 11)
267#define CPU_FEATURE_CMT (1 << 12)
268#define CPU_FEATURE_GL (1 << 13)
269#define CPU_FEATURE_TA0_SHUTDOWN (1 << 14) /* Shutdown on "ta 0x0" */
4a2ba232 270#define CPU_FEATURE_ASR17 (1 << 15)
60f356e8
FC
271#define CPU_FEATURE_CACHE_CTRL (1 << 16)
272
5578ceab
BS
273#ifndef TARGET_SPARC64
274#define CPU_DEFAULT_FEATURES (CPU_FEATURE_FLOAT | CPU_FEATURE_SWAP | \
275 CPU_FEATURE_MUL | CPU_FEATURE_DIV | \
276 CPU_FEATURE_FLUSH | CPU_FEATURE_FSQRT | \
277 CPU_FEATURE_FMUL | CPU_FEATURE_FSMULD)
278#else
279#define CPU_DEFAULT_FEATURES (CPU_FEATURE_FLOAT | CPU_FEATURE_SWAP | \
280 CPU_FEATURE_MUL | CPU_FEATURE_DIV | \
281 CPU_FEATURE_FLUSH | CPU_FEATURE_FSQRT | \
282 CPU_FEATURE_FMUL | CPU_FEATURE_VIS1 | \
283 CPU_FEATURE_VIS2 | CPU_FEATURE_FSMULD)
284enum {
285 mmu_us_12, // Ultrasparc < III (64 entry TLB)
286 mmu_us_3, // Ultrasparc III (512 entry TLB)
287 mmu_us_4, // Ultrasparc IV (several TLBs, 32 and 256MB pages)
288 mmu_sun4v, // T1, T2
289};
290#endif
291
f707726e
IK
292#define TTE_VALID_BIT (1ULL << 63)
293#define TTE_USED_BIT (1ULL << 41)
294#define TTE_LOCKED_BIT (1ULL << 6)
2a90358f 295#define TTE_GLOBAL_BIT (1ULL << 0)
f707726e
IK
296
297#define TTE_IS_VALID(tte) ((tte) & TTE_VALID_BIT)
298#define TTE_IS_USED(tte) ((tte) & TTE_USED_BIT)
299#define TTE_IS_LOCKED(tte) ((tte) & TTE_LOCKED_BIT)
2a90358f 300#define TTE_IS_GLOBAL(tte) ((tte) & TTE_GLOBAL_BIT)
f707726e
IK
301
302#define TTE_SET_USED(tte) ((tte) |= TTE_USED_BIT)
303#define TTE_SET_UNUSED(tte) ((tte) &= ~TTE_USED_BIT)
304
6e8e7d4c
IK
305typedef struct SparcTLBEntry {
306 uint64_t tag;
307 uint64_t tte;
308} SparcTLBEntry;
309
8f4efc55
IK
310struct CPUTimer
311{
312 const char *name;
313 uint32_t frequency;
314 uint32_t disabled;
315 uint64_t disabled_mask;
316 int64_t clock_offset;
317 struct QEMUTimer *qtimer;
318};
319
320typedef struct CPUTimer CPUTimer;
321
322struct QEMUFile;
323void cpu_put_timer(struct QEMUFile *f, CPUTimer *s);
324void cpu_get_timer(struct QEMUFile *f, CPUTimer *s);
325
7a3f1944 326typedef struct CPUSPARCState {
af7bf89b
FB
327 target_ulong gregs[8]; /* general registers */
328 target_ulong *regwptr; /* pointer to current register window */
af7bf89b
FB
329 target_ulong pc; /* program counter */
330 target_ulong npc; /* next program counter */
331 target_ulong y; /* multiply/divide register */
dc99a3f2
BS
332
333 /* emulator internal flags handling */
d9bdab86 334 target_ulong cc_src, cc_src2;
dc99a3f2 335 target_ulong cc_dst;
8393617c 336 uint32_t cc_op;
dc99a3f2 337
7c60cc4b
FB
338 target_ulong t0, t1; /* temporaries live across basic blocks */
339 target_ulong cond; /* conditional branch result (XXX: save it in a
340 temporary register when possible) */
341
cf495bcf 342 uint32_t psr; /* processor state register */
3475187d 343 target_ulong fsr; /* FPU state register */
7c60cc4b 344 float32 fpr[TARGET_FPREGS]; /* floating point registers */
cf495bcf
FB
345 uint32_t cwp; /* index of current register window (extracted
346 from PSR) */
5210977a 347#if !defined(TARGET_SPARC64) || defined(TARGET_ABI32)
cf495bcf 348 uint32_t wim; /* window invalid mask */
5210977a 349#endif
3475187d 350 target_ulong tbr; /* trap base register */
2aae2b8e 351#if !defined(TARGET_SPARC64)
e8af50a3
FB
352 int psrs; /* supervisor mode (extracted from PSR) */
353 int psrps; /* previous supervisor mode */
354 int psret; /* enable traps */
5210977a 355#endif
327ac2e7
BS
356 uint32_t psrpil; /* interrupt blocking level */
357 uint32_t pil_in; /* incoming interrupt level bitmap */
2aae2b8e 358#if !defined(TARGET_SPARC64)
e80cfcfc 359 int psref; /* enable fpu */
2aae2b8e 360#endif
62724a37 361 target_ulong version;
cf495bcf 362 int interrupt_index;
1a14026e 363 uint32_t nwindows;
cf495bcf 364 /* NOTE: we allow 8 more registers to handle wrapping */
1a14026e 365 target_ulong regbase[MAX_NWINDOWS * 16 + 8];
d720b93d 366
a316d335
FB
367 CPU_COMMON
368
e8af50a3 369 /* MMU regs */
3475187d
FB
370#if defined(TARGET_SPARC64)
371 uint64_t lsu;
372#define DMMU_E 0x8
373#define IMMU_E 0x4
6e8e7d4c
IK
374 //typedef struct SparcMMU
375 union {
376 uint64_t immuregs[16];
377 struct {
378 uint64_t tsb_tag_target;
379 uint64_t unused_mmu_primary_context; // use DMMU
380 uint64_t unused_mmu_secondary_context; // use DMMU
381 uint64_t sfsr;
382 uint64_t sfar;
383 uint64_t tsb;
384 uint64_t tag_access;
385 } immu;
386 };
387 union {
388 uint64_t dmmuregs[16];
389 struct {
390 uint64_t tsb_tag_target;
391 uint64_t mmu_primary_context;
392 uint64_t mmu_secondary_context;
393 uint64_t sfsr;
394 uint64_t sfar;
395 uint64_t tsb;
396 uint64_t tag_access;
397 } dmmu;
398 };
399 SparcTLBEntry itlb[64];
400 SparcTLBEntry dtlb[64];
fb79ceb9 401 uint32_t mmu_version;
3475187d 402#else
3dd9a152 403 uint32_t mmuregs[32];
952a328f
BS
404 uint64_t mxccdata[4];
405 uint64_t mxccregs[8];
4d2c2b77
BS
406 uint32_t mmubpctrv, mmubpctrc, mmubpctrs;
407 uint64_t mmubpaction;
4017190e 408 uint64_t mmubpregs[4];
3ebf5aaf 409 uint64_t prom_addr;
3475187d 410#endif
e8af50a3 411 /* temporary float registers */
65ce8c2f 412 float64 dt0, dt1;
1f587329 413 float128 qt0, qt1;
7a0e1f41 414 float_status fp_status;
af7bf89b 415#if defined(TARGET_SPARC64)
c19148bd
BS
416#define MAXTL_MAX 8
417#define MAXTL_MASK (MAXTL_MAX - 1)
c19148bd 418 trap_state ts[MAXTL_MAX];
0f8a249a 419 uint32_t xcc; /* Extended integer condition codes */
3475187d
FB
420 uint32_t asi;
421 uint32_t pstate;
422 uint32_t tl;
c19148bd 423 uint32_t maxtl;
3475187d 424 uint32_t cansave, canrestore, otherwin, wstate, cleanwin;
83469015
FB
425 uint64_t agregs[8]; /* alternate general registers */
426 uint64_t bgregs[8]; /* backup for normal global registers */
427 uint64_t igregs[8]; /* interrupt general registers */
428 uint64_t mgregs[8]; /* mmu general registers */
3475187d 429 uint64_t fprs;
83469015 430 uint64_t tick_cmpr, stick_cmpr;
8f4efc55 431 CPUTimer *tick, *stick;
709f2c1b
IK
432#define TICK_NPT_MASK 0x8000000000000000ULL
433#define TICK_INT_DIS 0x8000000000000000ULL
725cb90b 434 uint64_t gsr;
e9ebed4d
BS
435 uint32_t gl; // UA2005
436 /* UA 2005 hyperprivileged registers */
c19148bd 437 uint64_t hpstate, htstate[MAXTL_MAX], hintp, htba, hver, hstick_cmpr, ssr;
8f4efc55 438 CPUTimer *hstick; // UA 2005
9d926598 439 uint32_t softint;
8fa211e8
BS
440#define SOFTINT_TIMER 1
441#define SOFTINT_STIMER (1 << 16)
709f2c1b
IK
442#define SOFTINT_INTRMASK (0xFFFE)
443#define SOFTINT_REG_MASK (SOFTINT_STIMER|SOFTINT_INTRMASK|SOFTINT_TIMER)
3475187d 444#endif
5578ceab 445 sparc_def_t *def;
b04d9890
FC
446
447 void *irq_manager;
448 void (*qemu_irq_ack) (void *irq_manager, int intno);
449
450 /* Leon3 cache control */
451 uint32_t cache_control;
7a3f1944 452} CPUSPARCState;
64a88d5d 453
5a834bb4 454#ifndef NO_CPU_IO_DEFS
91736d37 455/* helper.c */
aaed909a 456CPUSPARCState *cpu_sparc_init(const char *cpu_model);
91736d37 457void cpu_sparc_set_id(CPUSPARCState *env, unsigned int cpu);
047b39e4 458void sparc_cpu_list(FILE *f, fprintf_function cpu_fprintf);
48585ec5
BS
459int cpu_sparc_handle_mmu_fault(CPUSPARCState *env1, target_ulong address, int rw,
460 int mmu_idx, int is_softmmu);
0b5c1ce8 461#define cpu_handle_mmu_fault cpu_sparc_handle_mmu_fault
48585ec5 462target_ulong mmu_probe(CPUSPARCState *env, target_ulong address, int mmulev);
d41160a3 463void dump_mmu(FILE *f, fprintf_function cpu_fprintf, CPUState *env);
91736d37
BS
464
465/* translate.c */
466void gen_intermediate_code_init(CPUSPARCState *env);
467
468/* cpu-exec.c */
469int cpu_sparc_exec(CPUSPARCState *s);
7a3f1944 470
5a834bb4
BS
471/* op_helper.c */
472target_ulong cpu_get_psr(CPUState *env1);
473void cpu_put_psr(CPUState *env1, target_ulong val);
474#ifdef TARGET_SPARC64
475target_ulong cpu_get_ccr(CPUState *env1);
476void cpu_put_ccr(CPUState *env1, target_ulong val);
477target_ulong cpu_get_cwp64(CPUState *env1);
478void cpu_put_cwp64(CPUState *env1, int cwp);
e67768d0 479void cpu_change_pstate(CPUState *env1, uint32_t new_pstate);
4c6aa085 480#endif
5a834bb4
BS
481int cpu_cwp_inc(CPUState *env1, int cwp);
482int cpu_cwp_dec(CPUState *env1, int cwp);
483void cpu_set_cwp(CPUState *env1, int new_cwp);
60f356e8 484void leon3_irq_manager(void *irq_manager, int intno);
b04d9890 485
4c6aa085
BS
486/* sun4m.c, sun4u.c */
487void cpu_check_irqs(CPUSPARCState *env);
1a14026e 488
60f356e8
FC
489/* leon3.c */
490void leon3_irq_ack(void *irq_manager, int intno);
491
299b520c
IK
492#if defined (TARGET_SPARC64)
493
494static inline int compare_masked(uint64_t x, uint64_t y, uint64_t mask)
495{
496 return (x & mask) == (y & mask);
497}
498
499#define MMU_CONTEXT_BITS 13
500#define MMU_CONTEXT_MASK ((1 << MMU_CONTEXT_BITS) - 1)
501
502static inline int tlb_compare_context(const SparcTLBEntry *tlb,
503 uint64_t context)
504{
505 return compare_masked(context, tlb->tag, MMU_CONTEXT_MASK);
506}
507
0bbd4a0d 508#endif
3475187d
FB
509#endif
510
91736d37 511/* cpu-exec.c */
3c7b48b7 512#if !defined(CONFIG_USER_ONLY)
b14ef7c9
BS
513void cpu_unassigned_access(CPUState *env1, target_phys_addr_t addr,
514 int is_write, int is_exec, int is_asi, int size);
2065061e
IK
515target_phys_addr_t cpu_get_phys_page_nofault(CPUState *env, target_ulong addr,
516 int mmu_idx);
517
3c7b48b7 518#endif
f0d5e471 519int cpu_sparc_signal_handler(int host_signum, void *pinfo, void *puc);
7a3f1944 520
9467d44c
TS
521#define cpu_init cpu_sparc_init
522#define cpu_exec cpu_sparc_exec
523#define cpu_gen_code cpu_sparc_gen_code
524#define cpu_signal_handler cpu_sparc_signal_handler
c732abe2 525#define cpu_list sparc_cpu_list
9467d44c 526
4d2c2b77 527#define CPU_SAVE_VERSION 7
b3c7724c 528
6ebbf390 529/* MMU modes definitions */
2aae2b8e
IK
530#if defined (TARGET_SPARC64)
531#define MMU_USER_IDX 0
6f27aba6 532#define MMU_MODE0_SUFFIX _user
2aae2b8e
IK
533#define MMU_USER_SECONDARY_IDX 1
534#define MMU_MODE1_SUFFIX _user_secondary
535#define MMU_KERNEL_IDX 2
536#define MMU_MODE2_SUFFIX _kernel
537#define MMU_KERNEL_SECONDARY_IDX 3
538#define MMU_MODE3_SUFFIX _kernel_secondary
539#define MMU_NUCLEUS_IDX 4
540#define MMU_MODE4_SUFFIX _nucleus
541#define MMU_HYPV_IDX 5
542#define MMU_MODE5_SUFFIX _hypv
543#else
9e31b9e2 544#define MMU_USER_IDX 0
2aae2b8e 545#define MMU_MODE0_SUFFIX _user
9e31b9e2 546#define MMU_KERNEL_IDX 1
2aae2b8e
IK
547#define MMU_MODE1_SUFFIX _kernel
548#endif
549
550#if defined (TARGET_SPARC64)
551static inline int cpu_has_hypervisor(CPUState *env1)
552{
553 return env1->def->features & CPU_FEATURE_HYPV;
554}
555
556static inline int cpu_hypervisor_mode(CPUState *env1)
557{
558 return cpu_has_hypervisor(env1) && (env1->hpstate & HS_PRIV);
559}
560
561static inline int cpu_supervisor_mode(CPUState *env1)
562{
563 return env1->pstate & PS_PRIV;
564}
2065061e 565#endif
9e31b9e2 566
22548760 567static inline int cpu_mmu_index(CPUState *env1)
6ebbf390 568{
6f27aba6 569#if defined(CONFIG_USER_ONLY)
9e31b9e2 570 return MMU_USER_IDX;
6f27aba6 571#elif !defined(TARGET_SPARC64)
22548760 572 return env1->psrs;
6f27aba6 573#else
9fd1ae3a
IK
574 if (env1->tl > 0) {
575 return MMU_NUCLEUS_IDX;
576 } else if (cpu_hypervisor_mode(env1)) {
9e31b9e2 577 return MMU_HYPV_IDX;
2aae2b8e
IK
578 } else if (cpu_supervisor_mode(env1)) {
579 return MMU_KERNEL_IDX;
580 } else {
581 return MMU_USER_IDX;
582 }
6f27aba6
BS
583#endif
584}
585
2df6c2d0
IK
586static inline int cpu_interrupts_enabled(CPUState *env1)
587{
588#if !defined (TARGET_SPARC64)
589 if (env1->psret != 0)
590 return 1;
591#else
592 if (env1->pstate & PS_IE)
593 return 1;
594#endif
595
596 return 0;
597}
598
d532b26c
IK
599static inline int cpu_pil_allowed(CPUState *env1, int pil)
600{
601#if !defined(TARGET_SPARC64)
602 /* level 15 is non-maskable on sparc v8 */
603 return pil == 15 || pil > env1->psrpil;
604#else
605 return pil > env1->psrpil;
606#endif
607}
608
6e68e076
PB
609#if defined(CONFIG_USER_ONLY)
610static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
611{
f8ed7070 612 if (newsp)
6e68e076
PB
613 env->regwptr[22] = newsp;
614 env->regwptr[0] = 0;
615 /* FIXME: Do we also need to clear CF? */
616 /* XXXXX */
617 printf ("HELPME: %s:%d\n", __FILE__, __LINE__);
618}
619#endif
620
7a3f1944
FB
621#include "cpu-all.h"
622
f4b1a842
BS
623#ifdef TARGET_SPARC64
624/* sun4u.c */
8f4efc55
IK
625void cpu_tick_set_count(CPUTimer *timer, uint64_t count);
626uint64_t cpu_tick_get_count(CPUTimer *timer);
627void cpu_tick_set_limit(CPUTimer *timer, uint64_t limit);
8194f35a 628trap_state* cpu_tsptr(CPUState* env);
f4b1a842
BS
629#endif
630
f838e2c5
BS
631#define TB_FLAG_FPU_ENABLED (1 << 4)
632#define TB_FLAG_AM_ENABLED (1 << 5)
633
6b917547
AL
634static inline void cpu_get_tb_cpu_state(CPUState *env, target_ulong *pc,
635 target_ulong *cs_base, int *flags)
636{
637 *pc = env->pc;
638 *cs_base = env->npc;
639#ifdef TARGET_SPARC64
640 // AM . Combined FPU enable bits . PRIV . DMMU enabled . IMMU enabled
f838e2c5 641 *flags = (env->pstate & PS_PRIV) /* 2 */
9fd1ae3a
IK
642 | ((env->lsu & (DMMU_E | IMMU_E)) >> 2) /* 1, 0 */
643 | ((env->tl & 0xff) << 8)
644 | (env->dmmu.mmu_primary_context << 16); /* 16... */
f838e2c5
BS
645 if (env->pstate & PS_AM) {
646 *flags |= TB_FLAG_AM_ENABLED;
647 }
648 if ((env->def->features & CPU_FEATURE_FLOAT) && (env->pstate & PS_PEF)
649 && (env->fprs & FPRS_FEF)) {
650 *flags |= TB_FLAG_FPU_ENABLED;
651 }
6b917547
AL
652#else
653 // FPU enable . Supervisor
f838e2c5
BS
654 *flags = env->psrs;
655 if ((env->def->features & CPU_FEATURE_FLOAT) && env->psref) {
656 *flags |= TB_FLAG_FPU_ENABLED;
657 }
658#endif
659}
660
661static inline bool tb_fpu_enabled(int tb_flags)
662{
663#if defined(CONFIG_USER_ONLY)
664 return true;
665#else
666 return tb_flags & TB_FLAG_FPU_ENABLED;
667#endif
668}
669
670static inline bool tb_am_enabled(int tb_flags)
671{
672#ifndef TARGET_SPARC64
673 return false;
674#else
675 return tb_flags & TB_FLAG_AM_ENABLED;
6b917547
AL
676#endif
677}
678
e67768d0
BS
679/* helper.c */
680void do_interrupt(CPUState *env);
681
f081c76c
BS
682static inline bool cpu_has_work(CPUState *env1)
683{
684 return (env1->interrupt_request & CPU_INTERRUPT_HARD) &&
685 cpu_interrupts_enabled(env1);
686}
687
688#include "exec-all.h"
689
690static inline void cpu_pc_from_tb(CPUState *env, TranslationBlock *tb)
691{
692 env->pc = tb->pc;
693 env->npc = tb->cs_base;
694}
695
7a3f1944 696#endif