1 #if !defined (__MIPS_CPU_H__)
8 #define CPUArchState struct CPUMIPSState
11 #include "qemu-common.h"
12 #include "mips-defs.h"
13 #include "exec/cpu-defs.h"
14 #include "fpu/softfloat.h"
18 typedef struct r4k_tlb_t r4k_tlb_t
;
34 uint_fast16_t EHINV
:1;
38 #if !defined(CONFIG_USER_ONLY)
39 typedef struct CPUMIPSTLBContext CPUMIPSTLBContext
;
40 struct CPUMIPSTLBContext
{
43 int (*map_address
) (struct CPUMIPSState
*env
, hwaddr
*physical
, int *prot
, target_ulong address
, int rw
, int access_type
);
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
);
48 void (*helper_tlbinv
)(struct CPUMIPSState
*env
);
49 void (*helper_tlbinvf
)(struct CPUMIPSState
*env
);
52 r4k_tlb_t tlb
[MIPS_TLB_MAX
];
59 #define MSA_WRLEN (128)
61 enum CPUMIPSMSADataFormat
{
68 typedef union wr_t 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];
76 typedef union fpr_t fpr_t
;
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 */
82 /* FPU/MSA register mapping is not tested on big-endian hosts. */
83 wr_t wr
; /* vector data */
85 /* define FP_ENDIAN_IDX to access the same location
86 * in the fpr_t union regardless of the host endianness
88 #if defined(HOST_WORDS_BIGENDIAN)
89 # define FP_ENDIAN_IDX 1
91 # define FP_ENDIAN_IDX 0
94 typedef struct CPUMIPSFPUContext CPUMIPSFPUContext
;
95 struct CPUMIPSFPUContext
{
96 /* Floating point registers */
98 float_status fp_status
;
99 /* fpu implementation/revision register (fir) */
114 #define SET_FP_COND(num,env) do { ((env).fcr31) |= ((num) ? (1 << ((num) + 24)) : (1 << 23)); } while(0)
115 #define CLEAR_FP_COND(num,env) do { ((env).fcr31) &= ~((num) ? (1 << ((num) + 24)) : (1 << 23)); } while(0)
116 #define GET_FP_COND(env) ((((env).fcr31 >> 24) & 0xfe) | (((env).fcr31 >> 23) & 0x1))
117 #define GET_FP_CAUSE(reg) (((reg) >> 12) & 0x3f)
118 #define GET_FP_ENABLE(reg) (((reg) >> 7) & 0x1f)
119 #define GET_FP_FLAGS(reg) (((reg) >> 2) & 0x1f)
120 #define SET_FP_CAUSE(reg,v) do { (reg) = ((reg) & ~(0x3f << 12)) | ((v & 0x3f) << 12); } while(0)
121 #define SET_FP_ENABLE(reg,v) do { (reg) = ((reg) & ~(0x1f << 7)) | ((v & 0x1f) << 7); } while(0)
122 #define SET_FP_FLAGS(reg,v) do { (reg) = ((reg) & ~(0x1f << 2)) | ((v & 0x1f) << 2); } while(0)
123 #define UPDATE_FP_FLAGS(reg,v) do { (reg) |= ((v & 0x1f) << 2); } while(0)
125 #define FP_UNDERFLOW 2
126 #define FP_OVERFLOW 4
128 #define FP_INVALID 16
129 #define FP_UNIMPLEMENTED 32
132 #define NB_MMU_MODES 3
133 #define TARGET_INSN_START_EXTRA_WORDS 2
135 typedef struct CPUMIPSMVPContext CPUMIPSMVPContext
;
136 struct CPUMIPSMVPContext
{
137 int32_t CP0_MVPControl
;
138 #define CP0MVPCo_CPA 3
139 #define CP0MVPCo_STLB 2
140 #define CP0MVPCo_VPC 1
141 #define CP0MVPCo_EVP 0
142 int32_t CP0_MVPConf0
;
143 #define CP0MVPC0_M 31
144 #define CP0MVPC0_TLBS 29
145 #define CP0MVPC0_GS 28
146 #define CP0MVPC0_PCP 27
147 #define CP0MVPC0_PTLBE 16
148 #define CP0MVPC0_TCA 15
149 #define CP0MVPC0_PVPE 10
150 #define CP0MVPC0_PTC 0
151 int32_t CP0_MVPConf1
;
152 #define CP0MVPC1_CIM 31
153 #define CP0MVPC1_CIF 30
154 #define CP0MVPC1_PCX 20
155 #define CP0MVPC1_PCP2 10
156 #define CP0MVPC1_PCP1 0
159 typedef struct mips_def_t mips_def_t
;
161 #define MIPS_SHADOW_SET_MAX 16
162 #define MIPS_TC_MAX 5
163 #define MIPS_FPU_MAX 1
164 #define MIPS_DSP_ACC 4
165 #define MIPS_KSCRATCH_NUM 6
167 typedef struct TCState TCState
;
169 target_ulong gpr
[32];
171 target_ulong HI
[MIPS_DSP_ACC
];
172 target_ulong LO
[MIPS_DSP_ACC
];
173 target_ulong ACX
[MIPS_DSP_ACC
];
174 target_ulong DSPControl
;
175 int32_t CP0_TCStatus
;
176 #define CP0TCSt_TCU3 31
177 #define CP0TCSt_TCU2 30
178 #define CP0TCSt_TCU1 29
179 #define CP0TCSt_TCU0 28
180 #define CP0TCSt_TMX 27
181 #define CP0TCSt_RNST 23
182 #define CP0TCSt_TDS 21
183 #define CP0TCSt_DT 20
184 #define CP0TCSt_DA 15
186 #define CP0TCSt_TKSU 11
187 #define CP0TCSt_IXMT 10
188 #define CP0TCSt_TASID 0
190 #define CP0TCBd_CurTC 21
191 #define CP0TCBd_TBE 17
192 #define CP0TCBd_CurVPE 0
193 target_ulong CP0_TCHalt
;
194 target_ulong CP0_TCContext
;
195 target_ulong CP0_TCSchedule
;
196 target_ulong CP0_TCScheFBack
;
197 int32_t CP0_Debug_tcstatus
;
198 target_ulong CP0_UserLocal
;
203 #define MSACSR_FS_MASK (1 << MSACSR_FS)
205 #define MSACSR_NX_MASK (1 << MSACSR_NX)
207 #define MSACSR_CEF_MASK (0xffff << MSACSR_CEF)
209 #define MSACSR_RM_MASK (0x3 << MSACSR_RM)
210 #define MSACSR_MASK (MSACSR_RM_MASK | MSACSR_CEF_MASK | MSACSR_NX_MASK | \
213 float_status msa_fp_status
;
216 typedef struct CPUMIPSState CPUMIPSState
;
217 struct CPUMIPSState
{
219 CPUMIPSFPUContext active_fpu
;
222 uint32_t current_fpu
;
226 #if defined(TARGET_MIPS64)
227 # define PABITS_BASE 36
229 # define PABITS_BASE 32
231 target_ulong SEGMask
;
233 #define PAMASK_BASE ((1ULL << PABITS_BASE) - 1)
236 #define MSAIR_ProcID 8
240 /* CP0_MVP* are per MVP registers. */
242 int32_t CP0_VPEControl
;
243 #define CP0VPECo_YSI 21
244 #define CP0VPECo_GSI 20
245 #define CP0VPECo_EXCPT 16
246 #define CP0VPECo_TE 15
247 #define CP0VPECo_TargTC 0
248 int32_t CP0_VPEConf0
;
249 #define CP0VPEC0_M 31
250 #define CP0VPEC0_XTC 21
251 #define CP0VPEC0_TCS 19
252 #define CP0VPEC0_SCS 18
253 #define CP0VPEC0_DSC 17
254 #define CP0VPEC0_ICS 16
255 #define CP0VPEC0_MVP 1
256 #define CP0VPEC0_VPA 0
257 int32_t CP0_VPEConf1
;
258 #define CP0VPEC1_NCX 20
259 #define CP0VPEC1_NCP2 10
260 #define CP0VPEC1_NCP1 0
261 target_ulong CP0_YQMask
;
262 target_ulong CP0_VPESchedule
;
263 target_ulong CP0_VPEScheFBack
;
265 #define CP0VPEOpt_IWX7 15
266 #define CP0VPEOpt_IWX6 14
267 #define CP0VPEOpt_IWX5 13
268 #define CP0VPEOpt_IWX4 12
269 #define CP0VPEOpt_IWX3 11
270 #define CP0VPEOpt_IWX2 10
271 #define CP0VPEOpt_IWX1 9
272 #define CP0VPEOpt_IWX0 8
273 #define CP0VPEOpt_DWX7 7
274 #define CP0VPEOpt_DWX6 6
275 #define CP0VPEOpt_DWX5 5
276 #define CP0VPEOpt_DWX4 4
277 #define CP0VPEOpt_DWX3 3
278 #define CP0VPEOpt_DWX2 2
279 #define CP0VPEOpt_DWX1 1
280 #define CP0VPEOpt_DWX0 0
281 uint64_t CP0_EntryLo0
;
282 uint64_t CP0_EntryLo1
;
283 #if defined(TARGET_MIPS64)
284 # define CP0EnLo_RI 63
285 # define CP0EnLo_XI 62
287 # define CP0EnLo_RI 31
288 # define CP0EnLo_XI 30
290 target_ulong CP0_Context
;
291 target_ulong CP0_KScratch
[MIPS_KSCRATCH_NUM
];
292 int32_t CP0_PageMask
;
293 int32_t CP0_PageGrain_rw_bitmask
;
294 int32_t CP0_PageGrain
;
297 #define CP0PG_ELPA 29
300 int32_t CP0_SRSConf0_rw_bitmask
;
301 int32_t CP0_SRSConf0
;
302 #define CP0SRSC0_M 31
303 #define CP0SRSC0_SRS3 20
304 #define CP0SRSC0_SRS2 10
305 #define CP0SRSC0_SRS1 0
306 int32_t CP0_SRSConf1_rw_bitmask
;
307 int32_t CP0_SRSConf1
;
308 #define CP0SRSC1_M 31
309 #define CP0SRSC1_SRS6 20
310 #define CP0SRSC1_SRS5 10
311 #define CP0SRSC1_SRS4 0
312 int32_t CP0_SRSConf2_rw_bitmask
;
313 int32_t CP0_SRSConf2
;
314 #define CP0SRSC2_M 31
315 #define CP0SRSC2_SRS9 20
316 #define CP0SRSC2_SRS8 10
317 #define CP0SRSC2_SRS7 0
318 int32_t CP0_SRSConf3_rw_bitmask
;
319 int32_t CP0_SRSConf3
;
320 #define CP0SRSC3_M 31
321 #define CP0SRSC3_SRS12 20
322 #define CP0SRSC3_SRS11 10
323 #define CP0SRSC3_SRS10 0
324 int32_t CP0_SRSConf4_rw_bitmask
;
325 int32_t CP0_SRSConf4
;
326 #define CP0SRSC4_SRS15 20
327 #define CP0SRSC4_SRS14 10
328 #define CP0SRSC4_SRS13 0
330 target_ulong CP0_BadVAddr
;
331 uint32_t CP0_BadInstr
;
332 uint32_t CP0_BadInstrP
;
334 target_ulong CP0_EntryHi
;
335 #define CP0EnHi_EHINV 10
360 #define CP0IntCtl_IPTI 29
361 #define CP0IntCtl_IPPC1 26
362 #define CP0IntCtl_VS 5
364 #define CP0SRSCtl_HSS 26
365 #define CP0SRSCtl_EICSS 18
366 #define CP0SRSCtl_ESS 12
367 #define CP0SRSCtl_PSS 6
368 #define CP0SRSCtl_CSS 0
370 #define CP0SRSMap_SSV7 28
371 #define CP0SRSMap_SSV6 24
372 #define CP0SRSMap_SSV5 20
373 #define CP0SRSMap_SSV4 16
374 #define CP0SRSMap_SSV3 12
375 #define CP0SRSMap_SSV2 8
376 #define CP0SRSMap_SSV1 4
377 #define CP0SRSMap_SSV0 0
387 #define CP0Ca_IP_mask 0x0000FF00
389 target_ulong CP0_EPC
;
434 #define CP0C3_CMCGR 29
435 #define CP0C3_MSAP 28
438 #define CP0C3_IPLW 21
439 #define CP0C3_MMAR 18
441 #define CP0C3_ISA_ON_EXC 16
443 #define CP0C3_ULRI 13
445 #define CP0C3_DSP2P 11
446 #define CP0C3_DSPP 10
456 int32_t CP0_Config4_rw_bitmask
;
459 #define CP0C4_KScrExist 16
460 #define CP0C4_MMUExtDef 14
461 #define CP0C4_FTLBPageSize 8
462 #define CP0C4_FTLBWays 4
463 #define CP0C4_FTLBSets 0
464 #define CP0C4_MMUSizeExt 0
466 int32_t CP0_Config5_rw_bitmask
;
471 #define CP0C5_MSAEn 27
478 #define CP0C5_NFExists 0
481 /* XXX: Maybe make LLAddr per-TC? */
484 target_ulong llnewval
;
486 uint64_t CP0_LLAddr_rw_bitmask
;
487 int CP0_LLAddr_shift
;
488 target_ulong CP0_WatchLo
[8];
489 int32_t CP0_WatchHi
[8];
490 target_ulong CP0_XContext
;
491 int32_t CP0_Framemask
;
495 #define CP0DB_LSNM 28
496 #define CP0DB_Doze 27
497 #define CP0DB_Halt 26
499 #define CP0DB_IBEP 24
500 #define CP0DB_DBEP 21
501 #define CP0DB_IEXI 20
511 target_ulong CP0_DEPC
;
512 int32_t CP0_Performance0
;
517 target_ulong CP0_ErrorEPC
;
519 /* We waste some space so we can handle shadow registers like TCs. */
520 TCState tcs
[MIPS_SHADOW_SET_MAX
];
521 CPUMIPSFPUContext fpus
[MIPS_FPU_MAX
];
524 #define EXCP_TLB_NOMATCH 0x1
525 #define EXCP_INST_NOTAVAIL 0x2 /* No valid instruction word for BadInstr */
526 uint32_t hflags
; /* CPU State */
527 /* TMASK defines different execution modes */
528 #define MIPS_HFLAG_TMASK 0x75807FF
529 #define MIPS_HFLAG_MODE 0x00007 /* execution modes */
530 /* The KSU flags must be the lowest bits in hflags. The flag order
531 must be the same as defined for CP0 Status. This allows to use
532 the bits as the value of mmu_idx. */
533 #define MIPS_HFLAG_KSU 0x00003 /* kernel/supervisor/user mode mask */
534 #define MIPS_HFLAG_UM 0x00002 /* user mode flag */
535 #define MIPS_HFLAG_SM 0x00001 /* supervisor mode flag */
536 #define MIPS_HFLAG_KM 0x00000 /* kernel mode flag */
537 #define MIPS_HFLAG_DM 0x00004 /* Debug mode */
538 #define MIPS_HFLAG_64 0x00008 /* 64-bit instructions enabled */
539 #define MIPS_HFLAG_CP0 0x00010 /* CP0 enabled */
540 #define MIPS_HFLAG_FPU 0x00020 /* FPU enabled */
541 #define MIPS_HFLAG_F64 0x00040 /* 64-bit FPU enabled */
542 /* True if the MIPS IV COP1X instructions can be used. This also
543 controls the non-COP1X instructions RECIP.S, RECIP.D, RSQRT.S
545 #define MIPS_HFLAG_COP1X 0x00080 /* COP1X instructions enabled */
546 #define MIPS_HFLAG_RE 0x00100 /* Reversed endianness */
547 #define MIPS_HFLAG_AWRAP 0x00200 /* 32-bit compatibility address wrapping */
548 #define MIPS_HFLAG_M16 0x00400 /* MIPS16 mode flag */
549 #define MIPS_HFLAG_M16_SHIFT 10
550 /* If translation is interrupted between the branch instruction and
551 * the delay slot, record what type of branch it is so that we can
552 * resume translation properly. It might be possible to reduce
553 * this from three bits to two. */
554 #define MIPS_HFLAG_BMASK_BASE 0x803800
555 #define MIPS_HFLAG_B 0x00800 /* Unconditional branch */
556 #define MIPS_HFLAG_BC 0x01000 /* Conditional branch */
557 #define MIPS_HFLAG_BL 0x01800 /* Likely branch */
558 #define MIPS_HFLAG_BR 0x02000 /* branch to register (can't link TB) */
559 /* Extra flags about the current pending branch. */
560 #define MIPS_HFLAG_BMASK_EXT 0x7C000
561 #define MIPS_HFLAG_B16 0x04000 /* branch instruction was 16 bits */
562 #define MIPS_HFLAG_BDS16 0x08000 /* branch requires 16-bit delay slot */
563 #define MIPS_HFLAG_BDS32 0x10000 /* branch requires 32-bit delay slot */
564 #define MIPS_HFLAG_BDS_STRICT 0x20000 /* Strict delay slot size */
565 #define MIPS_HFLAG_BX 0x40000 /* branch exchanges execution mode */
566 #define MIPS_HFLAG_BMASK (MIPS_HFLAG_BMASK_BASE | MIPS_HFLAG_BMASK_EXT)
567 /* MIPS DSP resources access. */
568 #define MIPS_HFLAG_DSP 0x080000 /* Enable access to MIPS DSP resources. */
569 #define MIPS_HFLAG_DSPR2 0x100000 /* Enable access to MIPS DSPR2 resources. */
570 /* Extra flag about HWREna register. */
571 #define MIPS_HFLAG_HWRENA_ULR 0x200000 /* ULR bit from HWREna is set. */
572 #define MIPS_HFLAG_SBRI 0x400000 /* R6 SDBBP causes RI excpt. in user mode */
573 #define MIPS_HFLAG_FBNSLOT 0x800000 /* Forbidden slot */
574 #define MIPS_HFLAG_MSA 0x1000000
575 #define MIPS_HFLAG_FRE 0x2000000 /* FRE enabled */
576 #define MIPS_HFLAG_ELPA 0x4000000
577 target_ulong btarget
; /* Jump / branch target */
578 target_ulong bcond
; /* Branch condition (if needed) */
580 int SYNCI_Step
; /* Address step size for SYNCI */
581 int CCRes
; /* Cycle count resolution/divisor */
582 uint32_t CP0_Status_rw_bitmask
; /* Read/write bits in CP0_Status */
583 uint32_t CP0_TCStatus_rw_bitmask
; /* Read/write bits in CP0_TCStatus */
584 int insn_flags
; /* Supported instruction set */
588 /* Fields from here on are preserved across CPU reset. */
589 CPUMIPSMVPContext
*mvp
;
590 #if !defined(CONFIG_USER_ONLY)
591 CPUMIPSTLBContext
*tlb
;
594 const mips_def_t
*cpu_model
;
596 QEMUTimer
*timer
; /* Internal timer */
601 #if !defined(CONFIG_USER_ONLY)
602 int no_mmu_map_address (CPUMIPSState
*env
, hwaddr
*physical
, int *prot
,
603 target_ulong address
, int rw
, int access_type
);
604 int fixed_mmu_map_address (CPUMIPSState
*env
, hwaddr
*physical
, int *prot
,
605 target_ulong address
, int rw
, int access_type
);
606 int r4k_map_address (CPUMIPSState
*env
, hwaddr
*physical
, int *prot
,
607 target_ulong address
, int rw
, int access_type
);
608 void r4k_helper_tlbwi(CPUMIPSState
*env
);
609 void r4k_helper_tlbwr(CPUMIPSState
*env
);
610 void r4k_helper_tlbp(CPUMIPSState
*env
);
611 void r4k_helper_tlbr(CPUMIPSState
*env
);
612 void r4k_helper_tlbinv(CPUMIPSState
*env
);
613 void r4k_helper_tlbinvf(CPUMIPSState
*env
);
615 void mips_cpu_unassigned_access(CPUState
*cpu
, hwaddr addr
,
616 bool is_write
, bool is_exec
, int unused
,
620 void mips_cpu_list (FILE *f
, fprintf_function cpu_fprintf
);
622 #define cpu_exec cpu_mips_exec
623 #define cpu_signal_handler cpu_mips_signal_handler
624 #define cpu_list mips_cpu_list
626 extern void cpu_wrdsp(uint32_t rs
, uint32_t mask_num
, CPUMIPSState
*env
);
627 extern uint32_t cpu_rddsp(uint32_t mask_num
, CPUMIPSState
*env
);
629 /* MMU modes definitions. We carefully match the indices with our
631 #define MMU_MODE0_SUFFIX _kernel
632 #define MMU_MODE1_SUFFIX _super
633 #define MMU_MODE2_SUFFIX _user
634 #define MMU_USER_IDX 2
635 static inline int cpu_mmu_index (CPUMIPSState
*env
, bool ifetch
)
637 return env
->hflags
& MIPS_HFLAG_KSU
;
640 static inline int cpu_mips_hw_interrupts_pending(CPUMIPSState
*env
)
646 if (!(env
->CP0_Status
& (1 << CP0St_IE
)) ||
647 (env
->CP0_Status
& (1 << CP0St_EXL
)) ||
648 (env
->CP0_Status
& (1 << CP0St_ERL
)) ||
649 /* Note that the TCStatus IXMT field is initialized to zero,
650 and only MT capable cores can set it to one. So we don't
651 need to check for MT capabilities here. */
652 (env
->active_tc
.CP0_TCStatus
& (1 << CP0TCSt_IXMT
)) ||
653 (env
->hflags
& MIPS_HFLAG_DM
)) {
654 /* Interrupts are disabled */
658 pending
= env
->CP0_Cause
& CP0Ca_IP_mask
;
659 status
= env
->CP0_Status
& CP0Ca_IP_mask
;
661 if (env
->CP0_Config3
& (1 << CP0C3_VEIC
)) {
662 /* A MIPS configured with a vectorizing external interrupt controller
663 will feed a vector into the Cause pending lines. The core treats
664 the status lines as a vector level, not as indiviual masks. */
665 r
= pending
> status
;
667 /* A MIPS configured with compatibility or VInt (Vectored Interrupts)
668 treats the pending lines as individual interrupt lines, the status
669 lines are individual masks. */
670 r
= pending
& status
;
675 #include "exec/cpu-all.h"
677 /* Memory access type :
678 * may be needed for precise access rights control and precise exceptions.
681 /* 1 bit to define user level / supervisor access */
684 /* 1 bit to indicate direction */
686 /* Type of instruction that generated the access */
687 ACCESS_CODE
= 0x10, /* Code fetch access */
688 ACCESS_INT
= 0x20, /* Integer load/store access */
689 ACCESS_FLOAT
= 0x30, /* floating point load/store access */
703 EXCP_EXT_INTERRUPT
, /* 8 */
719 EXCP_DWATCH
, /* 24 */
734 EXCP_LAST
= EXCP_TLBRI
,
736 /* Dummy exception for conditional stores. */
737 #define EXCP_SC 0x100
740 * This is an interrnally generated WAKE request line.
741 * It is driven by the CPU itself. Raised when the MT
742 * block wants to wake a VPE from an inactive state and
743 * cleared when VPE goes from active to inactive.
745 #define CPU_INTERRUPT_WAKE CPU_INTERRUPT_TGT_INT_0
747 int cpu_mips_exec(CPUState
*cpu
);
748 void mips_tcg_init(void);
749 MIPSCPU
*cpu_mips_init(const char *cpu_model
);
750 int cpu_mips_signal_handler(int host_signum
, void *pinfo
, void *puc
);
752 #define cpu_init(cpu_model) CPU(cpu_mips_init(cpu_model))
754 /* TODO QOM'ify CPU reset and remove */
755 void cpu_state_reset(CPUMIPSState
*s
);
758 uint32_t cpu_mips_get_random (CPUMIPSState
*env
);
759 uint32_t cpu_mips_get_count (CPUMIPSState
*env
);
760 void cpu_mips_store_count (CPUMIPSState
*env
, uint32_t value
);
761 void cpu_mips_store_compare (CPUMIPSState
*env
, uint32_t value
);
762 void cpu_mips_start_count(CPUMIPSState
*env
);
763 void cpu_mips_stop_count(CPUMIPSState
*env
);
766 void cpu_mips_soft_irq(CPUMIPSState
*env
, int irq
, int level
);
769 int mips_cpu_handle_mmu_fault(CPUState
*cpu
, vaddr address
, int rw
,
771 #if !defined(CONFIG_USER_ONLY)
772 void r4k_invalidate_tlb (CPUMIPSState
*env
, int idx
, int use_extra
);
773 hwaddr
cpu_mips_translate_address (CPUMIPSState
*env
, target_ulong address
,
776 target_ulong
exception_resume_pc (CPUMIPSState
*env
);
779 extern unsigned int ieee_rm
[];
780 int ieee_ex_to_mips(int xcpt
);
782 static inline void restore_rounding_mode(CPUMIPSState
*env
)
784 set_float_rounding_mode(ieee_rm
[env
->active_fpu
.fcr31
& 3],
785 &env
->active_fpu
.fp_status
);
788 static inline void restore_flush_mode(CPUMIPSState
*env
)
790 set_flush_to_zero((env
->active_fpu
.fcr31
& (1 << 24)) != 0,
791 &env
->active_fpu
.fp_status
);
794 static inline void restore_fp_status(CPUMIPSState
*env
)
796 restore_rounding_mode(env
);
797 restore_flush_mode(env
);
800 static inline void restore_msa_fp_status(CPUMIPSState
*env
)
802 float_status
*status
= &env
->active_tc
.msa_fp_status
;
803 int rounding_mode
= (env
->active_tc
.msacsr
& MSACSR_RM_MASK
) >> MSACSR_RM
;
804 bool flush_to_zero
= (env
->active_tc
.msacsr
& MSACSR_FS_MASK
) != 0;
806 set_float_rounding_mode(ieee_rm
[rounding_mode
], status
);
807 set_flush_to_zero(flush_to_zero
, status
);
808 set_flush_inputs_to_zero(flush_to_zero
, status
);
811 static inline void restore_pamask(CPUMIPSState
*env
)
813 if (env
->hflags
& MIPS_HFLAG_ELPA
) {
814 env
->PAMask
= (1ULL << env
->PABITS
) - 1;
816 env
->PAMask
= PAMASK_BASE
;
820 static inline void cpu_get_tb_cpu_state(CPUMIPSState
*env
, target_ulong
*pc
,
821 target_ulong
*cs_base
, int *flags
)
823 *pc
= env
->active_tc
.PC
;
825 *flags
= env
->hflags
& (MIPS_HFLAG_TMASK
| MIPS_HFLAG_BMASK
|
826 MIPS_HFLAG_HWRENA_ULR
);
829 static inline int mips_vpe_active(CPUMIPSState
*env
)
833 /* Check that the VPE is enabled. */
834 if (!(env
->mvp
->CP0_MVPControl
& (1 << CP0MVPCo_EVP
))) {
837 /* Check that the VPE is activated. */
838 if (!(env
->CP0_VPEConf0
& (1 << CP0VPEC0_VPA
))) {
842 /* Now verify that there are active thread contexts in the VPE.
844 This assumes the CPU model will internally reschedule threads
845 if the active one goes to sleep. If there are no threads available
846 the active one will be in a sleeping state, and we can turn off
848 if (!(env
->active_tc
.CP0_TCStatus
& (1 << CP0TCSt_A
))) {
849 /* TC is not activated. */
852 if (env
->active_tc
.CP0_TCHalt
& 1) {
853 /* TC is in halt state. */
860 #include "exec/exec-all.h"
862 static inline void compute_hflags(CPUMIPSState
*env
)
864 env
->hflags
&= ~(MIPS_HFLAG_COP1X
| MIPS_HFLAG_64
| MIPS_HFLAG_CP0
|
865 MIPS_HFLAG_F64
| MIPS_HFLAG_FPU
| MIPS_HFLAG_KSU
|
866 MIPS_HFLAG_AWRAP
| MIPS_HFLAG_DSP
| MIPS_HFLAG_DSPR2
|
867 MIPS_HFLAG_SBRI
| MIPS_HFLAG_MSA
| MIPS_HFLAG_FRE
|
869 if (!(env
->CP0_Status
& (1 << CP0St_EXL
)) &&
870 !(env
->CP0_Status
& (1 << CP0St_ERL
)) &&
871 !(env
->hflags
& MIPS_HFLAG_DM
)) {
872 env
->hflags
|= (env
->CP0_Status
>> CP0St_KSU
) & MIPS_HFLAG_KSU
;
874 #if defined(TARGET_MIPS64)
875 if ((env
->insn_flags
& ISA_MIPS3
) &&
876 (((env
->hflags
& MIPS_HFLAG_KSU
) != MIPS_HFLAG_UM
) ||
877 (env
->CP0_Status
& (1 << CP0St_PX
)) ||
878 (env
->CP0_Status
& (1 << CP0St_UX
)))) {
879 env
->hflags
|= MIPS_HFLAG_64
;
882 if (!(env
->insn_flags
& ISA_MIPS3
)) {
883 env
->hflags
|= MIPS_HFLAG_AWRAP
;
884 } else if (((env
->hflags
& MIPS_HFLAG_KSU
) == MIPS_HFLAG_UM
) &&
885 !(env
->CP0_Status
& (1 << CP0St_UX
))) {
886 env
->hflags
|= MIPS_HFLAG_AWRAP
;
887 } else if (env
->insn_flags
& ISA_MIPS64R6
) {
888 /* Address wrapping for Supervisor and Kernel is specified in R6 */
889 if ((((env
->hflags
& MIPS_HFLAG_KSU
) == MIPS_HFLAG_SM
) &&
890 !(env
->CP0_Status
& (1 << CP0St_SX
))) ||
891 (((env
->hflags
& MIPS_HFLAG_KSU
) == MIPS_HFLAG_KM
) &&
892 !(env
->CP0_Status
& (1 << CP0St_KX
)))) {
893 env
->hflags
|= MIPS_HFLAG_AWRAP
;
897 if (((env
->CP0_Status
& (1 << CP0St_CU0
)) &&
898 !(env
->insn_flags
& ISA_MIPS32R6
)) ||
899 !(env
->hflags
& MIPS_HFLAG_KSU
)) {
900 env
->hflags
|= MIPS_HFLAG_CP0
;
902 if (env
->CP0_Status
& (1 << CP0St_CU1
)) {
903 env
->hflags
|= MIPS_HFLAG_FPU
;
905 if (env
->CP0_Status
& (1 << CP0St_FR
)) {
906 env
->hflags
|= MIPS_HFLAG_F64
;
908 if (((env
->hflags
& MIPS_HFLAG_KSU
) != MIPS_HFLAG_KM
) &&
909 (env
->CP0_Config5
& (1 << CP0C5_SBRI
))) {
910 env
->hflags
|= MIPS_HFLAG_SBRI
;
912 if (env
->insn_flags
& ASE_DSPR2
) {
913 /* Enables access MIPS DSP resources, now our cpu is DSP ASER2,
914 so enable to access DSPR2 resources. */
915 if (env
->CP0_Status
& (1 << CP0St_MX
)) {
916 env
->hflags
|= MIPS_HFLAG_DSP
| MIPS_HFLAG_DSPR2
;
919 } else if (env
->insn_flags
& ASE_DSP
) {
920 /* Enables access MIPS DSP resources, now our cpu is DSP ASE,
921 so enable to access DSP resources. */
922 if (env
->CP0_Status
& (1 << CP0St_MX
)) {
923 env
->hflags
|= MIPS_HFLAG_DSP
;
927 if (env
->insn_flags
& ISA_MIPS32R2
) {
928 if (env
->active_fpu
.fcr0
& (1 << FCR0_F64
)) {
929 env
->hflags
|= MIPS_HFLAG_COP1X
;
931 } else if (env
->insn_flags
& ISA_MIPS32
) {
932 if (env
->hflags
& MIPS_HFLAG_64
) {
933 env
->hflags
|= MIPS_HFLAG_COP1X
;
935 } else if (env
->insn_flags
& ISA_MIPS4
) {
936 /* All supported MIPS IV CPUs use the XX (CU3) to enable
937 and disable the MIPS IV extensions to the MIPS III ISA.
938 Some other MIPS IV CPUs ignore the bit, so the check here
939 would be too restrictive for them. */
940 if (env
->CP0_Status
& (1U << CP0St_CU3
)) {
941 env
->hflags
|= MIPS_HFLAG_COP1X
;
944 if (env
->insn_flags
& ASE_MSA
) {
945 if (env
->CP0_Config5
& (1 << CP0C5_MSAEn
)) {
946 env
->hflags
|= MIPS_HFLAG_MSA
;
949 if (env
->active_fpu
.fcr0
& (1 << FCR0_FREP
)) {
950 if (env
->CP0_Config5
& (1 << CP0C5_FRE
)) {
951 env
->hflags
|= MIPS_HFLAG_FRE
;
954 if (env
->CP0_Config3
& (1 << CP0C3_LPA
)) {
955 if (env
->CP0_PageGrain
& (1 << CP0PG_ELPA
)) {
956 env
->hflags
|= MIPS_HFLAG_ELPA
;
961 #ifndef CONFIG_USER_ONLY
962 /* Called for updates to CP0_Status. */
963 static inline void sync_c0_status(CPUMIPSState
*env
, CPUMIPSState
*cpu
, int tc
)
965 int32_t tcstatus
, *tcst
;
966 uint32_t v
= cpu
->CP0_Status
;
967 uint32_t cu
, mx
, asid
, ksu
;
968 uint32_t mask
= ((1 << CP0TCSt_TCU3
)
969 | (1 << CP0TCSt_TCU2
)
970 | (1 << CP0TCSt_TCU1
)
971 | (1 << CP0TCSt_TCU0
)
973 | (3 << CP0TCSt_TKSU
)
974 | (0xff << CP0TCSt_TASID
));
976 cu
= (v
>> CP0St_CU0
) & 0xf;
977 mx
= (v
>> CP0St_MX
) & 0x1;
978 ksu
= (v
>> CP0St_KSU
) & 0x3;
979 asid
= env
->CP0_EntryHi
& 0xff;
981 tcstatus
= cu
<< CP0TCSt_TCU0
;
982 tcstatus
|= mx
<< CP0TCSt_TMX
;
983 tcstatus
|= ksu
<< CP0TCSt_TKSU
;
986 if (tc
== cpu
->current_tc
) {
987 tcst
= &cpu
->active_tc
.CP0_TCStatus
;
989 tcst
= &cpu
->tcs
[tc
].CP0_TCStatus
;
997 static inline void cpu_mips_store_status(CPUMIPSState
*env
, target_ulong val
)
999 uint32_t mask
= env
->CP0_Status_rw_bitmask
;
1001 if (env
->insn_flags
& ISA_MIPS32R6
) {
1002 bool has_supervisor
= extract32(mask
, CP0St_KSU
, 2) == 0x3;
1004 if (has_supervisor
&& extract32(val
, CP0St_KSU
, 2) == 0x3) {
1005 mask
&= ~(3 << CP0St_KSU
);
1007 mask
&= ~(((1 << CP0St_SR
) | (1 << CP0St_NMI
)) & val
);
1010 env
->CP0_Status
= (env
->CP0_Status
& ~mask
) | (val
& mask
);
1011 if (env
->CP0_Config3
& (1 << CP0C3_MT
)) {
1012 sync_c0_status(env
, env
, env
->current_tc
);
1014 compute_hflags(env
);
1018 static inline void cpu_mips_store_cause(CPUMIPSState
*env
, target_ulong val
)
1020 uint32_t mask
= 0x00C00300;
1021 uint32_t old
= env
->CP0_Cause
;
1024 if (env
->insn_flags
& ISA_MIPS32R2
) {
1025 mask
|= 1 << CP0Ca_DC
;
1027 if (env
->insn_flags
& ISA_MIPS32R6
) {
1028 mask
&= ~((1 << CP0Ca_WP
) & val
);
1031 env
->CP0_Cause
= (env
->CP0_Cause
& ~mask
) | (val
& mask
);
1033 if ((old
^ env
->CP0_Cause
) & (1 << CP0Ca_DC
)) {
1034 if (env
->CP0_Cause
& (1 << CP0Ca_DC
)) {
1035 cpu_mips_stop_count(env
);
1037 cpu_mips_start_count(env
);
1041 /* Set/reset software interrupts */
1042 for (i
= 0 ; i
< 2 ; i
++) {
1043 if ((old
^ env
->CP0_Cause
) & (1 << (CP0Ca_IP
+ i
))) {
1044 cpu_mips_soft_irq(env
, i
, env
->CP0_Cause
& (1 << (CP0Ca_IP
+ i
)));
1050 static inline void QEMU_NORETURN
do_raise_exception_err(CPUMIPSState
*env
,
1055 CPUState
*cs
= CPU(mips_env_get_cpu(env
));
1057 if (exception
< EXCP_SC
) {
1058 qemu_log_mask(CPU_LOG_INT
, "%s: %d %d\n",
1059 __func__
, exception
, error_code
);
1061 cs
->exception_index
= exception
;
1062 env
->error_code
= error_code
;
1064 cpu_loop_exit_restore(cs
, pc
);
1067 static inline void QEMU_NORETURN
do_raise_exception(CPUMIPSState
*env
,
1071 do_raise_exception_err(env
, exception
, 0, pc
);
1074 #endif /* !defined (__MIPS_CPU_H__) */