]>
Commit | Line | Data |
---|---|---|
6af0bf9c FB |
1 | #if !defined (__MIPS_CPU_H__) |
2 | #define __MIPS_CPU_H__ | |
3 | ||
3e457172 BS |
4 | //#define DEBUG_OP |
5 | ||
d94f0a8e | 6 | #define ALIGNED_ONLY |
4ad40f36 | 7 | |
9349b4f9 | 8 | #define CPUArchState struct CPUMIPSState |
c2764719 | 9 | |
9a78eead | 10 | #include "qemu-common.h" |
6af0bf9c | 11 | #include "mips-defs.h" |
022c62cb | 12 | #include "exec/cpu-defs.h" |
6b4c305c | 13 | #include "fpu/softfloat.h" |
6af0bf9c | 14 | |
ead9360e | 15 | struct CPUMIPSState; |
6af0bf9c | 16 | |
c227f099 AL |
17 | typedef struct r4k_tlb_t r4k_tlb_t; |
18 | struct r4k_tlb_t { | |
6af0bf9c | 19 | target_ulong VPN; |
9c2149c8 | 20 | uint32_t PageMask; |
d783f789 PM |
21 | uint8_t ASID; |
22 | unsigned int G:1; | |
23 | unsigned int C0:3; | |
24 | unsigned int C1:3; | |
25 | unsigned int V0:1; | |
26 | unsigned int V1:1; | |
27 | unsigned int D0:1; | |
28 | unsigned int D1:1; | |
29 | unsigned int XI0:1; | |
30 | unsigned int XI1:1; | |
31 | unsigned int RI0:1; | |
32 | unsigned int RI1:1; | |
33 | unsigned int EHINV:1; | |
284b731a | 34 | uint64_t PFN[2]; |
6af0bf9c | 35 | }; |
6af0bf9c | 36 | |
3c7b48b7 | 37 | #if !defined(CONFIG_USER_ONLY) |
ead9360e TS |
38 | typedef struct CPUMIPSTLBContext CPUMIPSTLBContext; |
39 | struct CPUMIPSTLBContext { | |
40 | uint32_t nb_tlb; | |
41 | uint32_t tlb_in_use; | |
a8170e5e | 42 | int (*map_address) (struct CPUMIPSState *env, hwaddr *physical, int *prot, target_ulong address, int rw, int access_type); |
895c2d04 BS |
43 | void (*helper_tlbwi)(struct CPUMIPSState *env); |
44 | void (*helper_tlbwr)(struct CPUMIPSState *env); | |
45 | void (*helper_tlbp)(struct CPUMIPSState *env); | |
46 | void (*helper_tlbr)(struct CPUMIPSState *env); | |
9456c2fb LA |
47 | void (*helper_tlbinv)(struct CPUMIPSState *env); |
48 | void (*helper_tlbinvf)(struct CPUMIPSState *env); | |
ead9360e TS |
49 | union { |
50 | struct { | |
c227f099 | 51 | r4k_tlb_t tlb[MIPS_TLB_MAX]; |
ead9360e TS |
52 | } r4k; |
53 | } mmu; | |
54 | }; | |
3c7b48b7 | 55 | #endif |
51b2772f | 56 | |
e97a391d YK |
57 | /* MSA Context */ |
58 | #define MSA_WRLEN (128) | |
59 | ||
60 | enum CPUMIPSMSADataFormat { | |
61 | DF_BYTE = 0, | |
62 | DF_HALF, | |
63 | DF_WORD, | |
64 | DF_DOUBLE | |
65 | }; | |
66 | ||
67 | typedef union wr_t wr_t; | |
68 | union wr_t { | |
69 | int8_t b[MSA_WRLEN/8]; | |
70 | int16_t h[MSA_WRLEN/16]; | |
71 | int32_t w[MSA_WRLEN/32]; | |
72 | int64_t d[MSA_WRLEN/64]; | |
73 | }; | |
74 | ||
c227f099 AL |
75 | typedef union fpr_t fpr_t; |
76 | union fpr_t { | |
ead9360e TS |
77 | float64 fd; /* ieee double precision */ |
78 | float32 fs[2];/* ieee single precision */ | |
79 | uint64_t d; /* binary double fixed-point */ | |
80 | uint32_t w[2]; /* binary single fixed-point */ | |
e97a391d YK |
81 | /* FPU/MSA register mapping is not tested on big-endian hosts. */ |
82 | wr_t wr; /* vector data */ | |
ead9360e TS |
83 | }; |
84 | /* define FP_ENDIAN_IDX to access the same location | |
4ff9786c | 85 | * in the fpr_t union regardless of the host endianness |
ead9360e | 86 | */ |
e2542fe2 | 87 | #if defined(HOST_WORDS_BIGENDIAN) |
ead9360e TS |
88 | # define FP_ENDIAN_IDX 1 |
89 | #else | |
90 | # define FP_ENDIAN_IDX 0 | |
c570fd16 | 91 | #endif |
ead9360e TS |
92 | |
93 | typedef struct CPUMIPSFPUContext CPUMIPSFPUContext; | |
94 | struct CPUMIPSFPUContext { | |
6af0bf9c | 95 | /* Floating point registers */ |
c227f099 | 96 | fpr_t fpr[32]; |
6ea83fed | 97 | float_status fp_status; |
5a5012ec | 98 | /* fpu implementation/revision register (fir) */ |
6af0bf9c | 99 | uint32_t fcr0; |
7c979afd | 100 | #define FCR0_FREP 29 |
b4dd99a3 | 101 | #define FCR0_UFRP 28 |
ba5c79f2 | 102 | #define FCR0_HAS2008 23 |
5a5012ec TS |
103 | #define FCR0_F64 22 |
104 | #define FCR0_L 21 | |
105 | #define FCR0_W 20 | |
106 | #define FCR0_3D 19 | |
107 | #define FCR0_PS 18 | |
108 | #define FCR0_D 17 | |
109 | #define FCR0_S 16 | |
110 | #define FCR0_PRID 8 | |
111 | #define FCR0_REV 0 | |
6ea83fed FB |
112 | /* fcsr */ |
113 | uint32_t fcr31; | |
ba5c79f2 LA |
114 | #define FCR31_ABS2008 19 |
115 | #define FCR31_NAN2008 18 | |
f01be154 TS |
116 | #define SET_FP_COND(num,env) do { ((env).fcr31) |= ((num) ? (1 << ((num) + 24)) : (1 << 23)); } while(0) |
117 | #define CLEAR_FP_COND(num,env) do { ((env).fcr31) &= ~((num) ? (1 << ((num) + 24)) : (1 << 23)); } while(0) | |
118 | #define GET_FP_COND(env) ((((env).fcr31 >> 24) & 0xfe) | (((env).fcr31 >> 23) & 0x1)) | |
5a5012ec TS |
119 | #define GET_FP_CAUSE(reg) (((reg) >> 12) & 0x3f) |
120 | #define GET_FP_ENABLE(reg) (((reg) >> 7) & 0x1f) | |
121 | #define GET_FP_FLAGS(reg) (((reg) >> 2) & 0x1f) | |
122 | #define SET_FP_CAUSE(reg,v) do { (reg) = ((reg) & ~(0x3f << 12)) | ((v & 0x3f) << 12); } while(0) | |
123 | #define SET_FP_ENABLE(reg,v) do { (reg) = ((reg) & ~(0x1f << 7)) | ((v & 0x1f) << 7); } while(0) | |
124 | #define SET_FP_FLAGS(reg,v) do { (reg) = ((reg) & ~(0x1f << 2)) | ((v & 0x1f) << 2); } while(0) | |
125 | #define UPDATE_FP_FLAGS(reg,v) do { (reg) |= ((v & 0x1f) << 2); } while(0) | |
6ea83fed FB |
126 | #define FP_INEXACT 1 |
127 | #define FP_UNDERFLOW 2 | |
128 | #define FP_OVERFLOW 4 | |
129 | #define FP_DIV0 8 | |
130 | #define FP_INVALID 16 | |
131 | #define FP_UNIMPLEMENTED 32 | |
ead9360e TS |
132 | }; |
133 | ||
623a930e | 134 | #define NB_MMU_MODES 3 |
c20d594e | 135 | #define TARGET_INSN_START_EXTRA_WORDS 2 |
6ebbf390 | 136 | |
ead9360e TS |
137 | typedef struct CPUMIPSMVPContext CPUMIPSMVPContext; |
138 | struct CPUMIPSMVPContext { | |
139 | int32_t CP0_MVPControl; | |
140 | #define CP0MVPCo_CPA 3 | |
141 | #define CP0MVPCo_STLB 2 | |
142 | #define CP0MVPCo_VPC 1 | |
143 | #define CP0MVPCo_EVP 0 | |
144 | int32_t CP0_MVPConf0; | |
145 | #define CP0MVPC0_M 31 | |
146 | #define CP0MVPC0_TLBS 29 | |
147 | #define CP0MVPC0_GS 28 | |
148 | #define CP0MVPC0_PCP 27 | |
149 | #define CP0MVPC0_PTLBE 16 | |
150 | #define CP0MVPC0_TCA 15 | |
151 | #define CP0MVPC0_PVPE 10 | |
152 | #define CP0MVPC0_PTC 0 | |
153 | int32_t CP0_MVPConf1; | |
154 | #define CP0MVPC1_CIM 31 | |
155 | #define CP0MVPC1_CIF 30 | |
156 | #define CP0MVPC1_PCX 20 | |
157 | #define CP0MVPC1_PCP2 10 | |
158 | #define CP0MVPC1_PCP1 0 | |
159 | }; | |
160 | ||
c227f099 | 161 | typedef struct mips_def_t mips_def_t; |
ead9360e TS |
162 | |
163 | #define MIPS_SHADOW_SET_MAX 16 | |
164 | #define MIPS_TC_MAX 5 | |
f01be154 | 165 | #define MIPS_FPU_MAX 1 |
ead9360e | 166 | #define MIPS_DSP_ACC 4 |
e98c0d17 | 167 | #define MIPS_KSCRATCH_NUM 6 |
ead9360e | 168 | |
b5dc7732 TS |
169 | typedef struct TCState TCState; |
170 | struct TCState { | |
171 | target_ulong gpr[32]; | |
172 | target_ulong PC; | |
173 | target_ulong HI[MIPS_DSP_ACC]; | |
174 | target_ulong LO[MIPS_DSP_ACC]; | |
175 | target_ulong ACX[MIPS_DSP_ACC]; | |
176 | target_ulong DSPControl; | |
177 | int32_t CP0_TCStatus; | |
178 | #define CP0TCSt_TCU3 31 | |
179 | #define CP0TCSt_TCU2 30 | |
180 | #define CP0TCSt_TCU1 29 | |
181 | #define CP0TCSt_TCU0 28 | |
182 | #define CP0TCSt_TMX 27 | |
183 | #define CP0TCSt_RNST 23 | |
184 | #define CP0TCSt_TDS 21 | |
185 | #define CP0TCSt_DT 20 | |
186 | #define CP0TCSt_DA 15 | |
187 | #define CP0TCSt_A 13 | |
188 | #define CP0TCSt_TKSU 11 | |
189 | #define CP0TCSt_IXMT 10 | |
190 | #define CP0TCSt_TASID 0 | |
191 | int32_t CP0_TCBind; | |
192 | #define CP0TCBd_CurTC 21 | |
193 | #define CP0TCBd_TBE 17 | |
194 | #define CP0TCBd_CurVPE 0 | |
195 | target_ulong CP0_TCHalt; | |
196 | target_ulong CP0_TCContext; | |
197 | target_ulong CP0_TCSchedule; | |
198 | target_ulong CP0_TCScheFBack; | |
199 | int32_t CP0_Debug_tcstatus; | |
d279279e | 200 | target_ulong CP0_UserLocal; |
e97a391d YK |
201 | |
202 | int32_t msacsr; | |
203 | ||
204 | #define MSACSR_FS 24 | |
205 | #define MSACSR_FS_MASK (1 << MSACSR_FS) | |
206 | #define MSACSR_NX 18 | |
207 | #define MSACSR_NX_MASK (1 << MSACSR_NX) | |
208 | #define MSACSR_CEF 2 | |
209 | #define MSACSR_CEF_MASK (0xffff << MSACSR_CEF) | |
210 | #define MSACSR_RM 0 | |
211 | #define MSACSR_RM_MASK (0x3 << MSACSR_RM) | |
212 | #define MSACSR_MASK (MSACSR_RM_MASK | MSACSR_CEF_MASK | MSACSR_NX_MASK | \ | |
213 | MSACSR_FS_MASK) | |
214 | ||
215 | float_status msa_fp_status; | |
b5dc7732 TS |
216 | }; |
217 | ||
ead9360e TS |
218 | typedef struct CPUMIPSState CPUMIPSState; |
219 | struct CPUMIPSState { | |
b5dc7732 | 220 | TCState active_tc; |
f01be154 | 221 | CPUMIPSFPUContext active_fpu; |
b5dc7732 | 222 | |
ead9360e | 223 | uint32_t current_tc; |
f01be154 | 224 | uint32_t current_fpu; |
36d23958 | 225 | |
e034e2c3 | 226 | uint32_t SEGBITS; |
6d35524c | 227 | uint32_t PABITS; |
e117f526 LA |
228 | #if defined(TARGET_MIPS64) |
229 | # define PABITS_BASE 36 | |
230 | #else | |
231 | # define PABITS_BASE 32 | |
232 | #endif | |
b6d96bed | 233 | target_ulong SEGMask; |
284b731a | 234 | uint64_t PAMask; |
e117f526 | 235 | #define PAMASK_BASE ((1ULL << PABITS_BASE) - 1) |
29929e34 | 236 | |
e97a391d YK |
237 | int32_t msair; |
238 | #define MSAIR_ProcID 8 | |
239 | #define MSAIR_Rev 0 | |
240 | ||
9c2149c8 | 241 | int32_t CP0_Index; |
ead9360e | 242 | /* CP0_MVP* are per MVP registers. */ |
01bc435b YK |
243 | int32_t CP0_VPControl; |
244 | #define CP0VPCtl_DIS 0 | |
9c2149c8 | 245 | int32_t CP0_Random; |
ead9360e TS |
246 | int32_t CP0_VPEControl; |
247 | #define CP0VPECo_YSI 21 | |
248 | #define CP0VPECo_GSI 20 | |
249 | #define CP0VPECo_EXCPT 16 | |
250 | #define CP0VPECo_TE 15 | |
251 | #define CP0VPECo_TargTC 0 | |
252 | int32_t CP0_VPEConf0; | |
253 | #define CP0VPEC0_M 31 | |
254 | #define CP0VPEC0_XTC 21 | |
255 | #define CP0VPEC0_TCS 19 | |
256 | #define CP0VPEC0_SCS 18 | |
257 | #define CP0VPEC0_DSC 17 | |
258 | #define CP0VPEC0_ICS 16 | |
259 | #define CP0VPEC0_MVP 1 | |
260 | #define CP0VPEC0_VPA 0 | |
261 | int32_t CP0_VPEConf1; | |
262 | #define CP0VPEC1_NCX 20 | |
263 | #define CP0VPEC1_NCP2 10 | |
264 | #define CP0VPEC1_NCP1 0 | |
265 | target_ulong CP0_YQMask; | |
266 | target_ulong CP0_VPESchedule; | |
267 | target_ulong CP0_VPEScheFBack; | |
268 | int32_t CP0_VPEOpt; | |
269 | #define CP0VPEOpt_IWX7 15 | |
270 | #define CP0VPEOpt_IWX6 14 | |
271 | #define CP0VPEOpt_IWX5 13 | |
272 | #define CP0VPEOpt_IWX4 12 | |
273 | #define CP0VPEOpt_IWX3 11 | |
274 | #define CP0VPEOpt_IWX2 10 | |
275 | #define CP0VPEOpt_IWX1 9 | |
276 | #define CP0VPEOpt_IWX0 8 | |
277 | #define CP0VPEOpt_DWX7 7 | |
278 | #define CP0VPEOpt_DWX6 6 | |
279 | #define CP0VPEOpt_DWX5 5 | |
280 | #define CP0VPEOpt_DWX4 4 | |
281 | #define CP0VPEOpt_DWX3 3 | |
282 | #define CP0VPEOpt_DWX2 2 | |
283 | #define CP0VPEOpt_DWX1 1 | |
284 | #define CP0VPEOpt_DWX0 0 | |
284b731a LA |
285 | uint64_t CP0_EntryLo0; |
286 | uint64_t CP0_EntryLo1; | |
2fb58b73 LA |
287 | #if defined(TARGET_MIPS64) |
288 | # define CP0EnLo_RI 63 | |
289 | # define CP0EnLo_XI 62 | |
290 | #else | |
291 | # define CP0EnLo_RI 31 | |
292 | # define CP0EnLo_XI 30 | |
293 | #endif | |
01bc435b YK |
294 | int32_t CP0_GlobalNumber; |
295 | #define CP0GN_VPId 0 | |
9c2149c8 | 296 | target_ulong CP0_Context; |
e98c0d17 | 297 | target_ulong CP0_KScratch[MIPS_KSCRATCH_NUM]; |
9c2149c8 | 298 | int32_t CP0_PageMask; |
7207c7f9 | 299 | int32_t CP0_PageGrain_rw_bitmask; |
9c2149c8 | 300 | int32_t CP0_PageGrain; |
7207c7f9 LA |
301 | #define CP0PG_RIE 31 |
302 | #define CP0PG_XIE 30 | |
e117f526 | 303 | #define CP0PG_ELPA 29 |
92ceb440 | 304 | #define CP0PG_IEC 27 |
9c2149c8 | 305 | int32_t CP0_Wired; |
ead9360e TS |
306 | int32_t CP0_SRSConf0_rw_bitmask; |
307 | int32_t CP0_SRSConf0; | |
308 | #define CP0SRSC0_M 31 | |
309 | #define CP0SRSC0_SRS3 20 | |
310 | #define CP0SRSC0_SRS2 10 | |
311 | #define CP0SRSC0_SRS1 0 | |
312 | int32_t CP0_SRSConf1_rw_bitmask; | |
313 | int32_t CP0_SRSConf1; | |
314 | #define CP0SRSC1_M 31 | |
315 | #define CP0SRSC1_SRS6 20 | |
316 | #define CP0SRSC1_SRS5 10 | |
317 | #define CP0SRSC1_SRS4 0 | |
318 | int32_t CP0_SRSConf2_rw_bitmask; | |
319 | int32_t CP0_SRSConf2; | |
320 | #define CP0SRSC2_M 31 | |
321 | #define CP0SRSC2_SRS9 20 | |
322 | #define CP0SRSC2_SRS8 10 | |
323 | #define CP0SRSC2_SRS7 0 | |
324 | int32_t CP0_SRSConf3_rw_bitmask; | |
325 | int32_t CP0_SRSConf3; | |
326 | #define CP0SRSC3_M 31 | |
327 | #define CP0SRSC3_SRS12 20 | |
328 | #define CP0SRSC3_SRS11 10 | |
329 | #define CP0SRSC3_SRS10 0 | |
330 | int32_t CP0_SRSConf4_rw_bitmask; | |
331 | int32_t CP0_SRSConf4; | |
332 | #define CP0SRSC4_SRS15 20 | |
333 | #define CP0SRSC4_SRS14 10 | |
334 | #define CP0SRSC4_SRS13 0 | |
9c2149c8 | 335 | int32_t CP0_HWREna; |
c570fd16 | 336 | target_ulong CP0_BadVAddr; |
aea14095 LA |
337 | uint32_t CP0_BadInstr; |
338 | uint32_t CP0_BadInstrP; | |
9c2149c8 TS |
339 | int32_t CP0_Count; |
340 | target_ulong CP0_EntryHi; | |
9456c2fb | 341 | #define CP0EnHi_EHINV 10 |
9c2149c8 TS |
342 | int32_t CP0_Compare; |
343 | int32_t CP0_Status; | |
6af0bf9c FB |
344 | #define CP0St_CU3 31 |
345 | #define CP0St_CU2 30 | |
346 | #define CP0St_CU1 29 | |
347 | #define CP0St_CU0 28 | |
348 | #define CP0St_RP 27 | |
6ea83fed | 349 | #define CP0St_FR 26 |
6af0bf9c | 350 | #define CP0St_RE 25 |
7a387fff TS |
351 | #define CP0St_MX 24 |
352 | #define CP0St_PX 23 | |
6af0bf9c FB |
353 | #define CP0St_BEV 22 |
354 | #define CP0St_TS 21 | |
355 | #define CP0St_SR 20 | |
356 | #define CP0St_NMI 19 | |
357 | #define CP0St_IM 8 | |
7a387fff TS |
358 | #define CP0St_KX 7 |
359 | #define CP0St_SX 6 | |
360 | #define CP0St_UX 5 | |
623a930e | 361 | #define CP0St_KSU 3 |
6af0bf9c FB |
362 | #define CP0St_ERL 2 |
363 | #define CP0St_EXL 1 | |
364 | #define CP0St_IE 0 | |
9c2149c8 | 365 | int32_t CP0_IntCtl; |
ead9360e | 366 | #define CP0IntCtl_IPTI 29 |
88991299 | 367 | #define CP0IntCtl_IPPCI 26 |
ead9360e | 368 | #define CP0IntCtl_VS 5 |
9c2149c8 | 369 | int32_t CP0_SRSCtl; |
ead9360e TS |
370 | #define CP0SRSCtl_HSS 26 |
371 | #define CP0SRSCtl_EICSS 18 | |
372 | #define CP0SRSCtl_ESS 12 | |
373 | #define CP0SRSCtl_PSS 6 | |
374 | #define CP0SRSCtl_CSS 0 | |
9c2149c8 | 375 | int32_t CP0_SRSMap; |
ead9360e TS |
376 | #define CP0SRSMap_SSV7 28 |
377 | #define CP0SRSMap_SSV6 24 | |
378 | #define CP0SRSMap_SSV5 20 | |
379 | #define CP0SRSMap_SSV4 16 | |
380 | #define CP0SRSMap_SSV3 12 | |
381 | #define CP0SRSMap_SSV2 8 | |
382 | #define CP0SRSMap_SSV1 4 | |
383 | #define CP0SRSMap_SSV0 0 | |
9c2149c8 | 384 | int32_t CP0_Cause; |
7a387fff TS |
385 | #define CP0Ca_BD 31 |
386 | #define CP0Ca_TI 30 | |
387 | #define CP0Ca_CE 28 | |
388 | #define CP0Ca_DC 27 | |
389 | #define CP0Ca_PCI 26 | |
6af0bf9c | 390 | #define CP0Ca_IV 23 |
7a387fff TS |
391 | #define CP0Ca_WP 22 |
392 | #define CP0Ca_IP 8 | |
4de9b249 | 393 | #define CP0Ca_IP_mask 0x0000FF00 |
7a387fff | 394 | #define CP0Ca_EC 2 |
c570fd16 | 395 | target_ulong CP0_EPC; |
9c2149c8 | 396 | int32_t CP0_PRid; |
b29a0341 | 397 | int32_t CP0_EBase; |
c870e3f5 | 398 | target_ulong CP0_CMGCRBase; |
9c2149c8 | 399 | int32_t CP0_Config0; |
6af0bf9c FB |
400 | #define CP0C0_M 31 |
401 | #define CP0C0_K23 28 | |
402 | #define CP0C0_KU 25 | |
403 | #define CP0C0_MDU 20 | |
aff2bc6d | 404 | #define CP0C0_MM 18 |
6af0bf9c FB |
405 | #define CP0C0_BM 16 |
406 | #define CP0C0_BE 15 | |
407 | #define CP0C0_AT 13 | |
408 | #define CP0C0_AR 10 | |
409 | #define CP0C0_MT 7 | |
7a387fff | 410 | #define CP0C0_VI 3 |
6af0bf9c | 411 | #define CP0C0_K0 0 |
9c2149c8 | 412 | int32_t CP0_Config1; |
7a387fff | 413 | #define CP0C1_M 31 |
6af0bf9c FB |
414 | #define CP0C1_MMU 25 |
415 | #define CP0C1_IS 22 | |
416 | #define CP0C1_IL 19 | |
417 | #define CP0C1_IA 16 | |
418 | #define CP0C1_DS 13 | |
419 | #define CP0C1_DL 10 | |
420 | #define CP0C1_DA 7 | |
7a387fff TS |
421 | #define CP0C1_C2 6 |
422 | #define CP0C1_MD 5 | |
6af0bf9c FB |
423 | #define CP0C1_PC 4 |
424 | #define CP0C1_WR 3 | |
425 | #define CP0C1_CA 2 | |
426 | #define CP0C1_EP 1 | |
427 | #define CP0C1_FP 0 | |
9c2149c8 | 428 | int32_t CP0_Config2; |
7a387fff TS |
429 | #define CP0C2_M 31 |
430 | #define CP0C2_TU 28 | |
431 | #define CP0C2_TS 24 | |
432 | #define CP0C2_TL 20 | |
433 | #define CP0C2_TA 16 | |
434 | #define CP0C2_SU 12 | |
435 | #define CP0C2_SS 8 | |
436 | #define CP0C2_SL 4 | |
437 | #define CP0C2_SA 0 | |
9c2149c8 | 438 | int32_t CP0_Config3; |
7a387fff | 439 | #define CP0C3_M 31 |
70409e67 | 440 | #define CP0C3_BPG 30 |
c870e3f5 | 441 | #define CP0C3_CMGCR 29 |
e97a391d | 442 | #define CP0C3_MSAP 28 |
aea14095 LA |
443 | #define CP0C3_BP 27 |
444 | #define CP0C3_BI 26 | |
70409e67 MR |
445 | #define CP0C3_IPLW 21 |
446 | #define CP0C3_MMAR 18 | |
447 | #define CP0C3_MCU 17 | |
bbfa8f72 | 448 | #define CP0C3_ISA_ON_EXC 16 |
70409e67 | 449 | #define CP0C3_ISA 14 |
d279279e | 450 | #define CP0C3_ULRI 13 |
7207c7f9 | 451 | #define CP0C3_RXI 12 |
70409e67 | 452 | #define CP0C3_DSP2P 11 |
7a387fff TS |
453 | #define CP0C3_DSPP 10 |
454 | #define CP0C3_LPA 7 | |
455 | #define CP0C3_VEIC 6 | |
456 | #define CP0C3_VInt 5 | |
457 | #define CP0C3_SP 4 | |
70409e67 | 458 | #define CP0C3_CDMM 3 |
7a387fff TS |
459 | #define CP0C3_MT 2 |
460 | #define CP0C3_SM 1 | |
461 | #define CP0C3_TL 0 | |
8280b12c MR |
462 | int32_t CP0_Config4; |
463 | int32_t CP0_Config4_rw_bitmask; | |
b4160af1 | 464 | #define CP0C4_M 31 |
9456c2fb | 465 | #define CP0C4_IE 29 |
e98c0d17 | 466 | #define CP0C4_KScrExist 16 |
70409e67 MR |
467 | #define CP0C4_MMUExtDef 14 |
468 | #define CP0C4_FTLBPageSize 8 | |
469 | #define CP0C4_FTLBWays 4 | |
470 | #define CP0C4_FTLBSets 0 | |
471 | #define CP0C4_MMUSizeExt 0 | |
8280b12c MR |
472 | int32_t CP0_Config5; |
473 | int32_t CP0_Config5_rw_bitmask; | |
b4dd99a3 PJ |
474 | #define CP0C5_M 31 |
475 | #define CP0C5_K 30 | |
476 | #define CP0C5_CV 29 | |
477 | #define CP0C5_EVA 28 | |
478 | #define CP0C5_MSAEn 27 | |
b00c7218 | 479 | #define CP0C5_XNP 13 |
7c979afd LA |
480 | #define CP0C5_UFE 9 |
481 | #define CP0C5_FRE 8 | |
01bc435b | 482 | #define CP0C5_VP 7 |
faf1f68b | 483 | #define CP0C5_SBRI 6 |
5204ea79 | 484 | #define CP0C5_MVH 5 |
ce9782f4 | 485 | #define CP0C5_LLB 4 |
b4dd99a3 PJ |
486 | #define CP0C5_UFR 2 |
487 | #define CP0C5_NFExists 0 | |
e397ee33 TS |
488 | int32_t CP0_Config6; |
489 | int32_t CP0_Config7; | |
ead9360e | 490 | /* XXX: Maybe make LLAddr per-TC? */ |
284b731a | 491 | uint64_t lladdr; |
590bc601 PB |
492 | target_ulong llval; |
493 | target_ulong llnewval; | |
494 | target_ulong llreg; | |
284b731a | 495 | uint64_t CP0_LLAddr_rw_bitmask; |
2a6e32dd | 496 | int CP0_LLAddr_shift; |
fd88b6ab TS |
497 | target_ulong CP0_WatchLo[8]; |
498 | int32_t CP0_WatchHi[8]; | |
9c2149c8 TS |
499 | target_ulong CP0_XContext; |
500 | int32_t CP0_Framemask; | |
501 | int32_t CP0_Debug; | |
ead9360e | 502 | #define CP0DB_DBD 31 |
6af0bf9c FB |
503 | #define CP0DB_DM 30 |
504 | #define CP0DB_LSNM 28 | |
505 | #define CP0DB_Doze 27 | |
506 | #define CP0DB_Halt 26 | |
507 | #define CP0DB_CNT 25 | |
508 | #define CP0DB_IBEP 24 | |
509 | #define CP0DB_DBEP 21 | |
510 | #define CP0DB_IEXI 20 | |
511 | #define CP0DB_VER 15 | |
512 | #define CP0DB_DEC 10 | |
513 | #define CP0DB_SSt 8 | |
514 | #define CP0DB_DINT 5 | |
515 | #define CP0DB_DIB 4 | |
516 | #define CP0DB_DDBS 3 | |
517 | #define CP0DB_DDBL 2 | |
518 | #define CP0DB_DBp 1 | |
519 | #define CP0DB_DSS 0 | |
c570fd16 | 520 | target_ulong CP0_DEPC; |
9c2149c8 | 521 | int32_t CP0_Performance0; |
284b731a | 522 | uint64_t CP0_TagLo; |
9c2149c8 TS |
523 | int32_t CP0_DataLo; |
524 | int32_t CP0_TagHi; | |
525 | int32_t CP0_DataHi; | |
c570fd16 | 526 | target_ulong CP0_ErrorEPC; |
9c2149c8 | 527 | int32_t CP0_DESAVE; |
b5dc7732 TS |
528 | /* We waste some space so we can handle shadow registers like TCs. */ |
529 | TCState tcs[MIPS_SHADOW_SET_MAX]; | |
f01be154 | 530 | CPUMIPSFPUContext fpus[MIPS_FPU_MAX]; |
5cbdb3a3 | 531 | /* QEMU */ |
6af0bf9c | 532 | int error_code; |
aea14095 LA |
533 | #define EXCP_TLB_NOMATCH 0x1 |
534 | #define EXCP_INST_NOTAVAIL 0x2 /* No valid instruction word for BadInstr */ | |
6af0bf9c FB |
535 | uint32_t hflags; /* CPU State */ |
536 | /* TMASK defines different execution modes */ | |
e117f526 | 537 | #define MIPS_HFLAG_TMASK 0x75807FF |
79ef2c4c | 538 | #define MIPS_HFLAG_MODE 0x00007 /* execution modes */ |
623a930e TS |
539 | /* The KSU flags must be the lowest bits in hflags. The flag order |
540 | must be the same as defined for CP0 Status. This allows to use | |
541 | the bits as the value of mmu_idx. */ | |
79ef2c4c NF |
542 | #define MIPS_HFLAG_KSU 0x00003 /* kernel/supervisor/user mode mask */ |
543 | #define MIPS_HFLAG_UM 0x00002 /* user mode flag */ | |
544 | #define MIPS_HFLAG_SM 0x00001 /* supervisor mode flag */ | |
545 | #define MIPS_HFLAG_KM 0x00000 /* kernel mode flag */ | |
546 | #define MIPS_HFLAG_DM 0x00004 /* Debug mode */ | |
547 | #define MIPS_HFLAG_64 0x00008 /* 64-bit instructions enabled */ | |
548 | #define MIPS_HFLAG_CP0 0x00010 /* CP0 enabled */ | |
549 | #define MIPS_HFLAG_FPU 0x00020 /* FPU enabled */ | |
550 | #define MIPS_HFLAG_F64 0x00040 /* 64-bit FPU enabled */ | |
b8aa4598 TS |
551 | /* True if the MIPS IV COP1X instructions can be used. This also |
552 | controls the non-COP1X instructions RECIP.S, RECIP.D, RSQRT.S | |
553 | and RSQRT.D. */ | |
79ef2c4c NF |
554 | #define MIPS_HFLAG_COP1X 0x00080 /* COP1X instructions enabled */ |
555 | #define MIPS_HFLAG_RE 0x00100 /* Reversed endianness */ | |
01f72885 | 556 | #define MIPS_HFLAG_AWRAP 0x00200 /* 32-bit compatibility address wrapping */ |
79ef2c4c NF |
557 | #define MIPS_HFLAG_M16 0x00400 /* MIPS16 mode flag */ |
558 | #define MIPS_HFLAG_M16_SHIFT 10 | |
4ad40f36 FB |
559 | /* If translation is interrupted between the branch instruction and |
560 | * the delay slot, record what type of branch it is so that we can | |
561 | * resume translation properly. It might be possible to reduce | |
562 | * this from three bits to two. */ | |
339cd2a8 | 563 | #define MIPS_HFLAG_BMASK_BASE 0x803800 |
79ef2c4c NF |
564 | #define MIPS_HFLAG_B 0x00800 /* Unconditional branch */ |
565 | #define MIPS_HFLAG_BC 0x01000 /* Conditional branch */ | |
566 | #define MIPS_HFLAG_BL 0x01800 /* Likely branch */ | |
567 | #define MIPS_HFLAG_BR 0x02000 /* branch to register (can't link TB) */ | |
568 | /* Extra flags about the current pending branch. */ | |
b231c103 | 569 | #define MIPS_HFLAG_BMASK_EXT 0x7C000 |
79ef2c4c NF |
570 | #define MIPS_HFLAG_B16 0x04000 /* branch instruction was 16 bits */ |
571 | #define MIPS_HFLAG_BDS16 0x08000 /* branch requires 16-bit delay slot */ | |
572 | #define MIPS_HFLAG_BDS32 0x10000 /* branch requires 32-bit delay slot */ | |
b231c103 YK |
573 | #define MIPS_HFLAG_BDS_STRICT 0x20000 /* Strict delay slot size */ |
574 | #define MIPS_HFLAG_BX 0x40000 /* branch exchanges execution mode */ | |
79ef2c4c | 575 | #define MIPS_HFLAG_BMASK (MIPS_HFLAG_BMASK_BASE | MIPS_HFLAG_BMASK_EXT) |
853c3240 | 576 | /* MIPS DSP resources access. */ |
b231c103 YK |
577 | #define MIPS_HFLAG_DSP 0x080000 /* Enable access to MIPS DSP resources. */ |
578 | #define MIPS_HFLAG_DSPR2 0x100000 /* Enable access to MIPS DSPR2 resources. */ | |
d279279e | 579 | /* Extra flag about HWREna register. */ |
b231c103 | 580 | #define MIPS_HFLAG_HWRENA_ULR 0x200000 /* ULR bit from HWREna is set. */ |
faf1f68b | 581 | #define MIPS_HFLAG_SBRI 0x400000 /* R6 SDBBP causes RI excpt. in user mode */ |
339cd2a8 | 582 | #define MIPS_HFLAG_FBNSLOT 0x800000 /* Forbidden slot */ |
e97a391d | 583 | #define MIPS_HFLAG_MSA 0x1000000 |
7c979afd | 584 | #define MIPS_HFLAG_FRE 0x2000000 /* FRE enabled */ |
e117f526 | 585 | #define MIPS_HFLAG_ELPA 0x4000000 |
6af0bf9c | 586 | target_ulong btarget; /* Jump / branch target */ |
1ba74fb8 | 587 | target_ulong bcond; /* Branch condition (if needed) */ |
a316d335 | 588 | |
7a387fff TS |
589 | int SYNCI_Step; /* Address step size for SYNCI */ |
590 | int CCRes; /* Cycle count resolution/divisor */ | |
ead9360e TS |
591 | uint32_t CP0_Status_rw_bitmask; /* Read/write bits in CP0_Status */ |
592 | uint32_t CP0_TCStatus_rw_bitmask; /* Read/write bits in CP0_TCStatus */ | |
e189e748 | 593 | int insn_flags; /* Supported instruction set */ |
7a387fff | 594 | |
a316d335 | 595 | CPU_COMMON |
6ae81775 | 596 | |
f0c3c505 | 597 | /* Fields from here on are preserved across CPU reset. */ |
51cc2e78 | 598 | CPUMIPSMVPContext *mvp; |
3c7b48b7 | 599 | #if !defined(CONFIG_USER_ONLY) |
51cc2e78 | 600 | CPUMIPSTLBContext *tlb; |
3c7b48b7 | 601 | #endif |
51cc2e78 | 602 | |
c227f099 | 603 | const mips_def_t *cpu_model; |
33ac7f16 | 604 | void *irq[8]; |
1246b259 | 605 | QEMUTimer *timer; /* Internal timer */ |
6af0bf9c FB |
606 | }; |
607 | ||
0f71a709 AF |
608 | #include "cpu-qom.h" |
609 | ||
3c7b48b7 | 610 | #if !defined(CONFIG_USER_ONLY) |
a8170e5e | 611 | int no_mmu_map_address (CPUMIPSState *env, hwaddr *physical, int *prot, |
29929e34 | 612 | target_ulong address, int rw, int access_type); |
a8170e5e | 613 | int fixed_mmu_map_address (CPUMIPSState *env, hwaddr *physical, int *prot, |
29929e34 | 614 | target_ulong address, int rw, int access_type); |
a8170e5e | 615 | int r4k_map_address (CPUMIPSState *env, hwaddr *physical, int *prot, |
29929e34 | 616 | target_ulong address, int rw, int access_type); |
895c2d04 BS |
617 | void r4k_helper_tlbwi(CPUMIPSState *env); |
618 | void r4k_helper_tlbwr(CPUMIPSState *env); | |
619 | void r4k_helper_tlbp(CPUMIPSState *env); | |
620 | void r4k_helper_tlbr(CPUMIPSState *env); | |
9456c2fb LA |
621 | void r4k_helper_tlbinv(CPUMIPSState *env); |
622 | void r4k_helper_tlbinvf(CPUMIPSState *env); | |
33d68b5f | 623 | |
c658b94f AF |
624 | void mips_cpu_unassigned_access(CPUState *cpu, hwaddr addr, |
625 | bool is_write, bool is_exec, int unused, | |
626 | unsigned size); | |
3c7b48b7 PB |
627 | #endif |
628 | ||
9a78eead | 629 | void mips_cpu_list (FILE *f, fprintf_function cpu_fprintf); |
647de6ca | 630 | |
9467d44c | 631 | #define cpu_exec cpu_mips_exec |
9467d44c | 632 | #define cpu_signal_handler cpu_mips_signal_handler |
c732abe2 | 633 | #define cpu_list mips_cpu_list |
9467d44c | 634 | |
084d0497 RH |
635 | extern void cpu_wrdsp(uint32_t rs, uint32_t mask_num, CPUMIPSState *env); |
636 | extern uint32_t cpu_rddsp(uint32_t mask_num, CPUMIPSState *env); | |
637 | ||
623a930e TS |
638 | /* MMU modes definitions. We carefully match the indices with our |
639 | hflags layout. */ | |
6ebbf390 | 640 | #define MMU_MODE0_SUFFIX _kernel |
623a930e TS |
641 | #define MMU_MODE1_SUFFIX _super |
642 | #define MMU_MODE2_SUFFIX _user | |
643 | #define MMU_USER_IDX 2 | |
97ed5ccd | 644 | static inline int cpu_mmu_index (CPUMIPSState *env, bool ifetch) |
6ebbf390 | 645 | { |
623a930e | 646 | return env->hflags & MIPS_HFLAG_KSU; |
6ebbf390 JM |
647 | } |
648 | ||
71ca034a | 649 | static inline bool cpu_mips_hw_interrupts_enabled(CPUMIPSState *env) |
138afb02 | 650 | { |
71ca034a LA |
651 | return (env->CP0_Status & (1 << CP0St_IE)) && |
652 | !(env->CP0_Status & (1 << CP0St_EXL)) && | |
653 | !(env->CP0_Status & (1 << CP0St_ERL)) && | |
654 | !(env->hflags & MIPS_HFLAG_DM) && | |
344eecf6 EI |
655 | /* Note that the TCStatus IXMT field is initialized to zero, |
656 | and only MT capable cores can set it to one. So we don't | |
657 | need to check for MT capabilities here. */ | |
71ca034a LA |
658 | !(env->active_tc.CP0_TCStatus & (1 << CP0TCSt_IXMT)); |
659 | } | |
660 | ||
661 | /* Check if there is pending and not masked out interrupt */ | |
662 | static inline bool cpu_mips_hw_interrupts_pending(CPUMIPSState *env) | |
663 | { | |
664 | int32_t pending; | |
665 | int32_t status; | |
666 | bool r; | |
4cdc1cd1 | 667 | |
138afb02 EI |
668 | pending = env->CP0_Cause & CP0Ca_IP_mask; |
669 | status = env->CP0_Status & CP0Ca_IP_mask; | |
670 | ||
671 | if (env->CP0_Config3 & (1 << CP0C3_VEIC)) { | |
672 | /* A MIPS configured with a vectorizing external interrupt controller | |
673 | will feed a vector into the Cause pending lines. The core treats | |
674 | the status lines as a vector level, not as indiviual masks. */ | |
675 | r = pending > status; | |
676 | } else { | |
677 | /* A MIPS configured with compatibility or VInt (Vectored Interrupts) | |
678 | treats the pending lines as individual interrupt lines, the status | |
679 | lines are individual masks. */ | |
71ca034a | 680 | r = (pending & status) != 0; |
138afb02 EI |
681 | } |
682 | return r; | |
683 | } | |
684 | ||
022c62cb | 685 | #include "exec/cpu-all.h" |
6af0bf9c FB |
686 | |
687 | /* Memory access type : | |
688 | * may be needed for precise access rights control and precise exceptions. | |
689 | */ | |
690 | enum { | |
691 | /* 1 bit to define user level / supervisor access */ | |
692 | ACCESS_USER = 0x00, | |
693 | ACCESS_SUPER = 0x01, | |
694 | /* 1 bit to indicate direction */ | |
695 | ACCESS_STORE = 0x02, | |
696 | /* Type of instruction that generated the access */ | |
697 | ACCESS_CODE = 0x10, /* Code fetch access */ | |
698 | ACCESS_INT = 0x20, /* Integer load/store access */ | |
699 | ACCESS_FLOAT = 0x30, /* floating point load/store access */ | |
700 | }; | |
701 | ||
702 | /* Exceptions */ | |
703 | enum { | |
704 | EXCP_NONE = -1, | |
705 | EXCP_RESET = 0, | |
706 | EXCP_SRESET, | |
707 | EXCP_DSS, | |
708 | EXCP_DINT, | |
14e51cc7 TS |
709 | EXCP_DDBL, |
710 | EXCP_DDBS, | |
6af0bf9c FB |
711 | EXCP_NMI, |
712 | EXCP_MCHECK, | |
14e51cc7 | 713 | EXCP_EXT_INTERRUPT, /* 8 */ |
6af0bf9c | 714 | EXCP_DFWATCH, |
14e51cc7 | 715 | EXCP_DIB, |
6af0bf9c FB |
716 | EXCP_IWATCH, |
717 | EXCP_AdEL, | |
718 | EXCP_AdES, | |
719 | EXCP_TLBF, | |
720 | EXCP_IBE, | |
14e51cc7 | 721 | EXCP_DBp, /* 16 */ |
6af0bf9c | 722 | EXCP_SYSCALL, |
14e51cc7 | 723 | EXCP_BREAK, |
4ad40f36 | 724 | EXCP_CpU, |
6af0bf9c FB |
725 | EXCP_RI, |
726 | EXCP_OVERFLOW, | |
727 | EXCP_TRAP, | |
5a5012ec | 728 | EXCP_FPE, |
14e51cc7 | 729 | EXCP_DWATCH, /* 24 */ |
6af0bf9c FB |
730 | EXCP_LTLBL, |
731 | EXCP_TLBL, | |
732 | EXCP_TLBS, | |
733 | EXCP_DBE, | |
ead9360e | 734 | EXCP_THREAD, |
14e51cc7 TS |
735 | EXCP_MDMX, |
736 | EXCP_C2E, | |
737 | EXCP_CACHE, /* 32 */ | |
853c3240 | 738 | EXCP_DSPDIS, |
e97a391d YK |
739 | EXCP_MSADIS, |
740 | EXCP_MSAFPE, | |
92ceb440 LA |
741 | EXCP_TLBXI, |
742 | EXCP_TLBRI, | |
14e51cc7 | 743 | |
92ceb440 | 744 | EXCP_LAST = EXCP_TLBRI, |
6af0bf9c | 745 | }; |
590bc601 PB |
746 | /* Dummy exception for conditional stores. */ |
747 | #define EXCP_SC 0x100 | |
6af0bf9c | 748 | |
f249412c EI |
749 | /* |
750 | * This is an interrnally generated WAKE request line. | |
751 | * It is driven by the CPU itself. Raised when the MT | |
752 | * block wants to wake a VPE from an inactive state and | |
753 | * cleared when VPE goes from active to inactive. | |
754 | */ | |
755 | #define CPU_INTERRUPT_WAKE CPU_INTERRUPT_TGT_INT_0 | |
756 | ||
ea3e9847 | 757 | int cpu_mips_exec(CPUState *cpu); |
78ce64f4 | 758 | void mips_tcg_init(void); |
30bf942d | 759 | MIPSCPU *cpu_mips_init(const char *cpu_model); |
388bb21a | 760 | int cpu_mips_signal_handler(int host_signum, void *pinfo, void *puc); |
6af0bf9c | 761 | |
2994fd96 | 762 | #define cpu_init(cpu_model) CPU(cpu_mips_init(cpu_model)) |
bff384a4 | 763 | bool cpu_supports_cps_smp(const char *cpu_model); |
30bf942d | 764 | |
b7e516ce AF |
765 | /* TODO QOM'ify CPU reset and remove */ |
766 | void cpu_state_reset(CPUMIPSState *s); | |
767 | ||
f9480ffc | 768 | /* mips_timer.c */ |
7db13fae AF |
769 | uint32_t cpu_mips_get_random (CPUMIPSState *env); |
770 | uint32_t cpu_mips_get_count (CPUMIPSState *env); | |
771 | void cpu_mips_store_count (CPUMIPSState *env, uint32_t value); | |
772 | void cpu_mips_store_compare (CPUMIPSState *env, uint32_t value); | |
773 | void cpu_mips_start_count(CPUMIPSState *env); | |
774 | void cpu_mips_stop_count(CPUMIPSState *env); | |
f9480ffc | 775 | |
5dc5d9f0 | 776 | /* mips_int.c */ |
7db13fae | 777 | void cpu_mips_soft_irq(CPUMIPSState *env, int irq, int level); |
5dc5d9f0 | 778 | |
f9480ffc | 779 | /* helper.c */ |
7510454e AF |
780 | int mips_cpu_handle_mmu_fault(CPUState *cpu, vaddr address, int rw, |
781 | int mmu_idx); | |
3c7b48b7 | 782 | #if !defined(CONFIG_USER_ONLY) |
7db13fae | 783 | void r4k_invalidate_tlb (CPUMIPSState *env, int idx, int use_extra); |
a8170e5e | 784 | hwaddr cpu_mips_translate_address (CPUMIPSState *env, target_ulong address, |
c36bbb28 | 785 | int rw); |
3c7b48b7 | 786 | #endif |
1239b472 | 787 | target_ulong exception_resume_pc (CPUMIPSState *env); |
f9480ffc | 788 | |
b7651e95 YK |
789 | /* op_helper.c */ |
790 | extern unsigned int ieee_rm[]; | |
791 | int ieee_ex_to_mips(int xcpt); | |
792 | ||
bb962386 MR |
793 | static inline void restore_rounding_mode(CPUMIPSState *env) |
794 | { | |
795 | set_float_rounding_mode(ieee_rm[env->active_fpu.fcr31 & 3], | |
796 | &env->active_fpu.fp_status); | |
797 | } | |
798 | ||
799 | static inline void restore_flush_mode(CPUMIPSState *env) | |
800 | { | |
801 | set_flush_to_zero((env->active_fpu.fcr31 & (1 << 24)) != 0, | |
802 | &env->active_fpu.fp_status); | |
803 | } | |
804 | ||
64451111 LA |
805 | static inline void restore_fp_status(CPUMIPSState *env) |
806 | { | |
807 | restore_rounding_mode(env); | |
808 | restore_flush_mode(env); | |
809 | } | |
810 | ||
811 | static inline void restore_msa_fp_status(CPUMIPSState *env) | |
812 | { | |
813 | float_status *status = &env->active_tc.msa_fp_status; | |
814 | int rounding_mode = (env->active_tc.msacsr & MSACSR_RM_MASK) >> MSACSR_RM; | |
815 | bool flush_to_zero = (env->active_tc.msacsr & MSACSR_FS_MASK) != 0; | |
816 | ||
817 | set_float_rounding_mode(ieee_rm[rounding_mode], status); | |
818 | set_flush_to_zero(flush_to_zero, status); | |
819 | set_flush_inputs_to_zero(flush_to_zero, status); | |
820 | } | |
821 | ||
e117f526 LA |
822 | static inline void restore_pamask(CPUMIPSState *env) |
823 | { | |
824 | if (env->hflags & MIPS_HFLAG_ELPA) { | |
825 | env->PAMask = (1ULL << env->PABITS) - 1; | |
826 | } else { | |
827 | env->PAMask = PAMASK_BASE; | |
828 | } | |
829 | } | |
830 | ||
7db13fae | 831 | static inline void cpu_get_tb_cpu_state(CPUMIPSState *env, target_ulong *pc, |
6b917547 AL |
832 | target_ulong *cs_base, int *flags) |
833 | { | |
834 | *pc = env->active_tc.PC; | |
835 | *cs_base = 0; | |
d279279e PJ |
836 | *flags = env->hflags & (MIPS_HFLAG_TMASK | MIPS_HFLAG_BMASK | |
837 | MIPS_HFLAG_HWRENA_ULR); | |
6b917547 AL |
838 | } |
839 | ||
7db13fae | 840 | static inline int mips_vpe_active(CPUMIPSState *env) |
f249412c EI |
841 | { |
842 | int active = 1; | |
843 | ||
844 | /* Check that the VPE is enabled. */ | |
845 | if (!(env->mvp->CP0_MVPControl & (1 << CP0MVPCo_EVP))) { | |
846 | active = 0; | |
847 | } | |
4abf79a4 | 848 | /* Check that the VPE is activated. */ |
f249412c EI |
849 | if (!(env->CP0_VPEConf0 & (1 << CP0VPEC0_VPA))) { |
850 | active = 0; | |
851 | } | |
852 | ||
853 | /* Now verify that there are active thread contexts in the VPE. | |
854 | ||
855 | This assumes the CPU model will internally reschedule threads | |
856 | if the active one goes to sleep. If there are no threads available | |
857 | the active one will be in a sleeping state, and we can turn off | |
858 | the entire VPE. */ | |
859 | if (!(env->active_tc.CP0_TCStatus & (1 << CP0TCSt_A))) { | |
860 | /* TC is not activated. */ | |
861 | active = 0; | |
862 | } | |
863 | if (env->active_tc.CP0_TCHalt & 1) { | |
864 | /* TC is in halt state. */ | |
865 | active = 0; | |
866 | } | |
867 | ||
868 | return active; | |
869 | } | |
870 | ||
01bc435b YK |
871 | static inline int mips_vp_active(CPUMIPSState *env) |
872 | { | |
873 | CPUState *other_cs = first_cpu; | |
874 | ||
875 | /* Check if the VP disabled other VPs (which means the VP is enabled) */ | |
876 | if ((env->CP0_VPControl >> CP0VPCtl_DIS) & 1) { | |
877 | return 1; | |
878 | } | |
879 | ||
880 | /* Check if the virtual processor is disabled due to a DVP */ | |
881 | CPU_FOREACH(other_cs) { | |
882 | MIPSCPU *other_cpu = MIPS_CPU(other_cs); | |
883 | if ((&other_cpu->env != env) && | |
884 | ((other_cpu->env.CP0_VPControl >> CP0VPCtl_DIS) & 1)) { | |
885 | return 0; | |
886 | } | |
887 | } | |
888 | return 1; | |
889 | } | |
890 | ||
022c62cb | 891 | #include "exec/exec-all.h" |
f081c76c | 892 | |
03e6e501 MR |
893 | static inline void compute_hflags(CPUMIPSState *env) |
894 | { | |
895 | env->hflags &= ~(MIPS_HFLAG_COP1X | MIPS_HFLAG_64 | MIPS_HFLAG_CP0 | | |
896 | MIPS_HFLAG_F64 | MIPS_HFLAG_FPU | MIPS_HFLAG_KSU | | |
faf1f68b | 897 | MIPS_HFLAG_AWRAP | MIPS_HFLAG_DSP | MIPS_HFLAG_DSPR2 | |
e117f526 LA |
898 | MIPS_HFLAG_SBRI | MIPS_HFLAG_MSA | MIPS_HFLAG_FRE | |
899 | MIPS_HFLAG_ELPA); | |
03e6e501 MR |
900 | if (!(env->CP0_Status & (1 << CP0St_EXL)) && |
901 | !(env->CP0_Status & (1 << CP0St_ERL)) && | |
902 | !(env->hflags & MIPS_HFLAG_DM)) { | |
903 | env->hflags |= (env->CP0_Status >> CP0St_KSU) & MIPS_HFLAG_KSU; | |
904 | } | |
905 | #if defined(TARGET_MIPS64) | |
d9224450 MR |
906 | if ((env->insn_flags & ISA_MIPS3) && |
907 | (((env->hflags & MIPS_HFLAG_KSU) != MIPS_HFLAG_UM) || | |
908 | (env->CP0_Status & (1 << CP0St_PX)) || | |
909 | (env->CP0_Status & (1 << CP0St_UX)))) { | |
03e6e501 MR |
910 | env->hflags |= MIPS_HFLAG_64; |
911 | } | |
01f72885 | 912 | |
c48245f0 | 913 | if (!(env->insn_flags & ISA_MIPS3)) { |
01f72885 | 914 | env->hflags |= MIPS_HFLAG_AWRAP; |
c48245f0 MR |
915 | } else if (((env->hflags & MIPS_HFLAG_KSU) == MIPS_HFLAG_UM) && |
916 | !(env->CP0_Status & (1 << CP0St_UX))) { | |
917 | env->hflags |= MIPS_HFLAG_AWRAP; | |
918 | } else if (env->insn_flags & ISA_MIPS64R6) { | |
01f72885 LA |
919 | /* Address wrapping for Supervisor and Kernel is specified in R6 */ |
920 | if ((((env->hflags & MIPS_HFLAG_KSU) == MIPS_HFLAG_SM) && | |
921 | !(env->CP0_Status & (1 << CP0St_SX))) || | |
922 | (((env->hflags & MIPS_HFLAG_KSU) == MIPS_HFLAG_KM) && | |
923 | !(env->CP0_Status & (1 << CP0St_KX)))) { | |
924 | env->hflags |= MIPS_HFLAG_AWRAP; | |
925 | } | |
03e6e501 MR |
926 | } |
927 | #endif | |
a63eb0ce LA |
928 | if (((env->CP0_Status & (1 << CP0St_CU0)) && |
929 | !(env->insn_flags & ISA_MIPS32R6)) || | |
03e6e501 MR |
930 | !(env->hflags & MIPS_HFLAG_KSU)) { |
931 | env->hflags |= MIPS_HFLAG_CP0; | |
932 | } | |
933 | if (env->CP0_Status & (1 << CP0St_CU1)) { | |
934 | env->hflags |= MIPS_HFLAG_FPU; | |
935 | } | |
936 | if (env->CP0_Status & (1 << CP0St_FR)) { | |
937 | env->hflags |= MIPS_HFLAG_F64; | |
938 | } | |
faf1f68b LA |
939 | if (((env->hflags & MIPS_HFLAG_KSU) != MIPS_HFLAG_KM) && |
940 | (env->CP0_Config5 & (1 << CP0C5_SBRI))) { | |
941 | env->hflags |= MIPS_HFLAG_SBRI; | |
942 | } | |
853c3240 JL |
943 | if (env->insn_flags & ASE_DSPR2) { |
944 | /* Enables access MIPS DSP resources, now our cpu is DSP ASER2, | |
945 | so enable to access DSPR2 resources. */ | |
946 | if (env->CP0_Status & (1 << CP0St_MX)) { | |
947 | env->hflags |= MIPS_HFLAG_DSP | MIPS_HFLAG_DSPR2; | |
948 | } | |
949 | ||
950 | } else if (env->insn_flags & ASE_DSP) { | |
951 | /* Enables access MIPS DSP resources, now our cpu is DSP ASE, | |
952 | so enable to access DSP resources. */ | |
953 | if (env->CP0_Status & (1 << CP0St_MX)) { | |
954 | env->hflags |= MIPS_HFLAG_DSP; | |
955 | } | |
956 | ||
957 | } | |
03e6e501 MR |
958 | if (env->insn_flags & ISA_MIPS32R2) { |
959 | if (env->active_fpu.fcr0 & (1 << FCR0_F64)) { | |
960 | env->hflags |= MIPS_HFLAG_COP1X; | |
961 | } | |
962 | } else if (env->insn_flags & ISA_MIPS32) { | |
963 | if (env->hflags & MIPS_HFLAG_64) { | |
964 | env->hflags |= MIPS_HFLAG_COP1X; | |
965 | } | |
966 | } else if (env->insn_flags & ISA_MIPS4) { | |
967 | /* All supported MIPS IV CPUs use the XX (CU3) to enable | |
968 | and disable the MIPS IV extensions to the MIPS III ISA. | |
969 | Some other MIPS IV CPUs ignore the bit, so the check here | |
970 | would be too restrictive for them. */ | |
f45cb2f4 | 971 | if (env->CP0_Status & (1U << CP0St_CU3)) { |
03e6e501 MR |
972 | env->hflags |= MIPS_HFLAG_COP1X; |
973 | } | |
974 | } | |
e97a391d YK |
975 | if (env->insn_flags & ASE_MSA) { |
976 | if (env->CP0_Config5 & (1 << CP0C5_MSAEn)) { | |
977 | env->hflags |= MIPS_HFLAG_MSA; | |
978 | } | |
979 | } | |
7c979afd LA |
980 | if (env->active_fpu.fcr0 & (1 << FCR0_FREP)) { |
981 | if (env->CP0_Config5 & (1 << CP0C5_FRE)) { | |
982 | env->hflags |= MIPS_HFLAG_FRE; | |
983 | } | |
984 | } | |
e117f526 LA |
985 | if (env->CP0_Config3 & (1 << CP0C3_LPA)) { |
986 | if (env->CP0_PageGrain & (1 << CP0PG_ELPA)) { | |
987 | env->hflags |= MIPS_HFLAG_ELPA; | |
988 | } | |
989 | } | |
03e6e501 MR |
990 | } |
991 | ||
81a423e6 | 992 | #ifndef CONFIG_USER_ONLY |
f93c3a8d LA |
993 | static inline void cpu_mips_tlb_flush(CPUMIPSState *env, int flush_global) |
994 | { | |
995 | MIPSCPU *cpu = mips_env_get_cpu(env); | |
996 | ||
997 | /* Flush qemu's TLB and discard all shadowed entries. */ | |
998 | tlb_flush(CPU(cpu), flush_global); | |
999 | env->tlb->tlb_in_use = env->tlb->nb_tlb; | |
1000 | } | |
1001 | ||
81a423e6 MR |
1002 | /* Called for updates to CP0_Status. */ |
1003 | static inline void sync_c0_status(CPUMIPSState *env, CPUMIPSState *cpu, int tc) | |
1004 | { | |
1005 | int32_t tcstatus, *tcst; | |
1006 | uint32_t v = cpu->CP0_Status; | |
1007 | uint32_t cu, mx, asid, ksu; | |
1008 | uint32_t mask = ((1 << CP0TCSt_TCU3) | |
1009 | | (1 << CP0TCSt_TCU2) | |
1010 | | (1 << CP0TCSt_TCU1) | |
1011 | | (1 << CP0TCSt_TCU0) | |
1012 | | (1 << CP0TCSt_TMX) | |
1013 | | (3 << CP0TCSt_TKSU) | |
1014 | | (0xff << CP0TCSt_TASID)); | |
1015 | ||
1016 | cu = (v >> CP0St_CU0) & 0xf; | |
1017 | mx = (v >> CP0St_MX) & 0x1; | |
1018 | ksu = (v >> CP0St_KSU) & 0x3; | |
1019 | asid = env->CP0_EntryHi & 0xff; | |
1020 | ||
1021 | tcstatus = cu << CP0TCSt_TCU0; | |
1022 | tcstatus |= mx << CP0TCSt_TMX; | |
1023 | tcstatus |= ksu << CP0TCSt_TKSU; | |
1024 | tcstatus |= asid; | |
1025 | ||
1026 | if (tc == cpu->current_tc) { | |
1027 | tcst = &cpu->active_tc.CP0_TCStatus; | |
1028 | } else { | |
1029 | tcst = &cpu->tcs[tc].CP0_TCStatus; | |
1030 | } | |
1031 | ||
1032 | *tcst &= ~mask; | |
1033 | *tcst |= tcstatus; | |
1034 | compute_hflags(cpu); | |
1035 | } | |
1036 | ||
1037 | static inline void cpu_mips_store_status(CPUMIPSState *env, target_ulong val) | |
1038 | { | |
1039 | uint32_t mask = env->CP0_Status_rw_bitmask; | |
f93c3a8d | 1040 | target_ulong old = env->CP0_Status; |
81a423e6 MR |
1041 | |
1042 | if (env->insn_flags & ISA_MIPS32R6) { | |
1043 | bool has_supervisor = extract32(mask, CP0St_KSU, 2) == 0x3; | |
2dcf7908 LA |
1044 | #if defined(TARGET_MIPS64) |
1045 | uint32_t ksux = (1 << CP0St_KX) & val; | |
1046 | ksux |= (ksux >> 1) & val; /* KX = 0 forces SX to be 0 */ | |
1047 | ksux |= (ksux >> 1) & val; /* SX = 0 forces UX to be 0 */ | |
1048 | val = (val & ~(7 << CP0St_UX)) | ksux; | |
1049 | #endif | |
81a423e6 MR |
1050 | if (has_supervisor && extract32(val, CP0St_KSU, 2) == 0x3) { |
1051 | mask &= ~(3 << CP0St_KSU); | |
1052 | } | |
1053 | mask &= ~(((1 << CP0St_SR) | (1 << CP0St_NMI)) & val); | |
1054 | } | |
1055 | ||
f93c3a8d LA |
1056 | env->CP0_Status = (old & ~mask) | (val & mask); |
1057 | #if defined(TARGET_MIPS64) | |
1058 | if ((env->CP0_Status ^ old) & (old & (7 << CP0St_UX))) { | |
1059 | /* Access to at least one of the 64-bit segments has been disabled */ | |
1060 | cpu_mips_tlb_flush(env, 1); | |
1061 | } | |
1062 | #endif | |
81a423e6 MR |
1063 | if (env->CP0_Config3 & (1 << CP0C3_MT)) { |
1064 | sync_c0_status(env, env, env->current_tc); | |
1065 | } else { | |
1066 | compute_hflags(env); | |
1067 | } | |
1068 | } | |
1069 | ||
1070 | static inline void cpu_mips_store_cause(CPUMIPSState *env, target_ulong val) | |
1071 | { | |
1072 | uint32_t mask = 0x00C00300; | |
1073 | uint32_t old = env->CP0_Cause; | |
1074 | int i; | |
1075 | ||
1076 | if (env->insn_flags & ISA_MIPS32R2) { | |
1077 | mask |= 1 << CP0Ca_DC; | |
1078 | } | |
1079 | if (env->insn_flags & ISA_MIPS32R6) { | |
1080 | mask &= ~((1 << CP0Ca_WP) & val); | |
1081 | } | |
1082 | ||
1083 | env->CP0_Cause = (env->CP0_Cause & ~mask) | (val & mask); | |
1084 | ||
1085 | if ((old ^ env->CP0_Cause) & (1 << CP0Ca_DC)) { | |
1086 | if (env->CP0_Cause & (1 << CP0Ca_DC)) { | |
1087 | cpu_mips_stop_count(env); | |
1088 | } else { | |
1089 | cpu_mips_start_count(env); | |
1090 | } | |
1091 | } | |
1092 | ||
1093 | /* Set/reset software interrupts */ | |
1094 | for (i = 0 ; i < 2 ; i++) { | |
1095 | if ((old ^ env->CP0_Cause) & (1 << (CP0Ca_IP + i))) { | |
1096 | cpu_mips_soft_irq(env, i, env->CP0_Cause & (1 << (CP0Ca_IP + i))); | |
1097 | } | |
1098 | } | |
1099 | } | |
1100 | #endif | |
1101 | ||
9c708c7f PD |
1102 | static inline void QEMU_NORETURN do_raise_exception_err(CPUMIPSState *env, |
1103 | uint32_t exception, | |
1104 | int error_code, | |
1105 | uintptr_t pc) | |
1106 | { | |
1107 | CPUState *cs = CPU(mips_env_get_cpu(env)); | |
1108 | ||
1109 | if (exception < EXCP_SC) { | |
1110 | qemu_log_mask(CPU_LOG_INT, "%s: %d %d\n", | |
1111 | __func__, exception, error_code); | |
1112 | } | |
1113 | cs->exception_index = exception; | |
1114 | env->error_code = error_code; | |
1115 | ||
1116 | cpu_loop_exit_restore(cs, pc); | |
1117 | } | |
1118 | ||
1119 | static inline void QEMU_NORETURN do_raise_exception(CPUMIPSState *env, | |
1120 | uint32_t exception, | |
1121 | uintptr_t pc) | |
1122 | { | |
1123 | do_raise_exception_err(env, exception, 0, pc); | |
1124 | } | |
1125 | ||
6af0bf9c | 1126 | #endif /* !defined (__MIPS_CPU_H__) */ |