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