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