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