2 * MIPS internal definitions and helpers
4 * This work is licensed under the terms of the GNU GPL, version 2 or later.
5 * See the COPYING file in the top-level directory.
8 #ifndef MIPS_INTERNAL_H
9 #define MIPS_INTERNAL_H
11 #include "exec/memattrs.h"
13 #include "tcg/tcg-internal.h"
18 * MMU types, the first four entries have the same layout as the
23 MMU_TYPE_R4000
= 1, /* Standard TLB */
24 MMU_TYPE_BAT
= 2, /* Block Address Translation */
25 MMU_TYPE_FMT
= 3, /* Fixed Mapping */
26 MMU_TYPE_DVF
= 4, /* Dual VTLB and FTLB */
40 int32_t CP0_Config4_rw_bitmask
;
42 int32_t CP0_Config5_rw_bitmask
;
44 int32_t CP0_Config6_rw_bitmask
;
46 int32_t CP0_Config7_rw_bitmask
;
47 target_ulong CP0_LLAddr_rw_bitmask
;
51 * @CCRes: rate at which the coprocessor 0 counter increments
53 * The Count register acts as a timer, incrementing at a constant rate,
54 * whether or not an instruction is executed, retired, or any forward
55 * progress is made through the pipeline. The rate at which the counter
56 * increments is implementation dependent, and is a function of the
57 * pipeline clock of the processor, not the issue width of the processor.
60 int32_t CP0_Status_rw_bitmask
;
61 int32_t CP0_TCStatus_rw_bitmask
;
64 int32_t CP1_fcr31_rw_bitmask
;
69 int32_t CP0_SRSConf0_rw_bitmask
;
71 int32_t CP0_SRSConf1_rw_bitmask
;
73 int32_t CP0_SRSConf2_rw_bitmask
;
75 int32_t CP0_SRSConf3_rw_bitmask
;
77 int32_t CP0_SRSConf4_rw_bitmask
;
79 int32_t CP0_PageGrain_rw_bitmask
;
80 int32_t CP0_PageGrain
;
81 target_ulong CP0_EBaseWG_rw_bitmask
;
82 uint32_t lcsr_cpucfg1
;
83 uint32_t lcsr_cpucfg2
;
85 enum mips_mmu_types mmu_type
;
89 extern const char regnames
[32][3];
90 extern const char fregnames
[32][4];
92 extern const struct mips_def_t mips_defs
[];
93 extern const int mips_defs_number
;
95 int mips_cpu_gdb_read_register(CPUState
*cpu
, GByteArray
*buf
, int reg
);
96 int mips_cpu_gdb_write_register(CPUState
*cpu
, uint8_t *buf
, int reg
);
98 #define USEG_LIMIT ((target_ulong)(int32_t)0x7FFFFFFFUL)
99 #define KSEG0_BASE ((target_ulong)(int32_t)0x80000000UL)
100 #define KSEG1_BASE ((target_ulong)(int32_t)0xA0000000UL)
101 #define KSEG2_BASE ((target_ulong)(int32_t)0xC0000000UL)
102 #define KSEG3_BASE ((target_ulong)(int32_t)0xE0000000UL)
104 #if !defined(CONFIG_USER_ONLY)
116 int get_physical_address(CPUMIPSState
*env
, hwaddr
*physical
,
117 int *prot
, target_ulong real_address
,
118 MMUAccessType access_type
, int mmu_idx
);
119 hwaddr
mips_cpu_get_phys_page_debug(CPUState
*cpu
, vaddr addr
);
121 typedef struct r4k_tlb_t r4k_tlb_t
;
138 unsigned int EHINV
:1;
142 struct CPUMIPSTLBContext
{
145 int (*map_address
)(CPUMIPSState
*env
, hwaddr
*physical
, int *prot
,
146 target_ulong address
, MMUAccessType access_type
);
147 void (*helper_tlbwi
)(CPUMIPSState
*env
);
148 void (*helper_tlbwr
)(CPUMIPSState
*env
);
149 void (*helper_tlbp
)(CPUMIPSState
*env
);
150 void (*helper_tlbr
)(CPUMIPSState
*env
);
151 void (*helper_tlbinv
)(CPUMIPSState
*env
);
152 void (*helper_tlbinvf
)(CPUMIPSState
*env
);
155 r4k_tlb_t tlb
[MIPS_TLB_MAX
];
160 void sync_c0_status(CPUMIPSState
*env
, CPUMIPSState
*cpu
, int tc
);
161 void cpu_mips_store_status(CPUMIPSState
*env
, target_ulong val
);
162 void cpu_mips_store_cause(CPUMIPSState
*env
, target_ulong val
);
164 extern const VMStateDescription vmstate_mips_cpu
;
166 #endif /* !CONFIG_USER_ONLY */
168 static inline bool cpu_mips_hw_interrupts_enabled(CPUMIPSState
*env
)
170 return (env
->CP0_Status
& (1 << CP0St_IE
)) &&
171 !(env
->CP0_Status
& (1 << CP0St_EXL
)) &&
172 !(env
->CP0_Status
& (1 << CP0St_ERL
)) &&
173 !(env
->hflags
& MIPS_HFLAG_DM
) &&
175 * Note that the TCStatus IXMT field is initialized to zero,
176 * and only MT capable cores can set it to one. So we don't
177 * need to check for MT capabilities here.
179 !(env
->active_tc
.CP0_TCStatus
& (1 << CP0TCSt_IXMT
));
182 /* Check if there is pending and not masked out interrupt */
183 static inline bool cpu_mips_hw_interrupts_pending(CPUMIPSState
*env
)
189 pending
= env
->CP0_Cause
& CP0Ca_IP_mask
;
190 status
= env
->CP0_Status
& CP0Ca_IP_mask
;
192 if (env
->CP0_Config3
& (1 << CP0C3_VEIC
)) {
194 * A MIPS configured with a vectorizing external interrupt controller
195 * will feed a vector into the Cause pending lines. The core treats
196 * the status lines as a vector level, not as individual masks.
198 r
= pending
> status
;
201 * A MIPS configured with compatibility or VInt (Vectored Interrupts)
202 * treats the pending lines as individual interrupt lines, the status
203 * lines are individual masks.
205 r
= (pending
& status
) != 0;
210 void msa_reset(CPUMIPSState
*env
);
213 uint32_t cpu_mips_get_count(CPUMIPSState
*env
);
214 void cpu_mips_store_count(CPUMIPSState
*env
, uint32_t value
);
215 void cpu_mips_store_compare(CPUMIPSState
*env
, uint32_t value
);
216 void cpu_mips_start_count(CPUMIPSState
*env
);
217 void cpu_mips_stop_count(CPUMIPSState
*env
);
219 static inline void mips_env_set_pc(CPUMIPSState
*env
, target_ulong value
)
221 env
->active_tc
.PC
= value
& ~(target_ulong
)1;
223 env
->hflags
|= MIPS_HFLAG_M16
;
225 env
->hflags
&= ~(MIPS_HFLAG_M16
);
229 static inline void restore_pamask(CPUMIPSState
*env
)
231 if (env
->hflags
& MIPS_HFLAG_ELPA
) {
232 env
->PAMask
= (1ULL << env
->PABITS
) - 1;
234 env
->PAMask
= PAMASK_BASE
;
238 static inline int mips_vpe_active(CPUMIPSState
*env
)
242 /* Check that the VPE is enabled. */
243 if (!(env
->mvp
->CP0_MVPControl
& (1 << CP0MVPCo_EVP
))) {
246 /* Check that the VPE is activated. */
247 if (!(env
->CP0_VPEConf0
& (1 << CP0VPEC0_VPA
))) {
252 * Now verify that there are active thread contexts in the VPE.
254 * This assumes the CPU model will internally reschedule threads
255 * if the active one goes to sleep. If there are no threads available
256 * the active one will be in a sleeping state, and we can turn off
259 if (!(env
->active_tc
.CP0_TCStatus
& (1 << CP0TCSt_A
))) {
260 /* TC is not activated. */
263 if (env
->active_tc
.CP0_TCHalt
& 1) {
264 /* TC is in halt state. */
271 static inline int mips_vp_active(CPUMIPSState
*env
)
273 CPUState
*other_cs
= first_cpu
;
275 /* Check if the VP disabled other VPs (which means the VP is enabled) */
276 if ((env
->CP0_VPControl
>> CP0VPCtl_DIS
) & 1) {
280 /* Check if the virtual processor is disabled due to a DVP */
281 CPU_FOREACH(other_cs
) {
282 MIPSCPU
*other_cpu
= MIPS_CPU(other_cs
);
283 if ((&other_cpu
->env
!= env
) &&
284 ((other_cpu
->env
.CP0_VPControl
>> CP0VPCtl_DIS
) & 1)) {
291 static inline void compute_hflags(CPUMIPSState
*env
)
293 env
->hflags
&= ~(MIPS_HFLAG_COP1X
| MIPS_HFLAG_64
| MIPS_HFLAG_CP0
|
294 MIPS_HFLAG_F64
| MIPS_HFLAG_FPU
| MIPS_HFLAG_KSU
|
295 MIPS_HFLAG_AWRAP
| MIPS_HFLAG_DSP
| MIPS_HFLAG_DSP_R2
|
296 MIPS_HFLAG_DSP_R3
| MIPS_HFLAG_SBRI
| MIPS_HFLAG_MSA
|
297 MIPS_HFLAG_FRE
| MIPS_HFLAG_ELPA
| MIPS_HFLAG_ERL
);
298 if (env
->CP0_Status
& (1 << CP0St_ERL
)) {
299 env
->hflags
|= MIPS_HFLAG_ERL
;
301 if (!(env
->CP0_Status
& (1 << CP0St_EXL
)) &&
302 !(env
->CP0_Status
& (1 << CP0St_ERL
)) &&
303 !(env
->hflags
& MIPS_HFLAG_DM
)) {
304 env
->hflags
|= (env
->CP0_Status
>> CP0St_KSU
) &
307 #if defined(TARGET_MIPS64)
308 if ((env
->insn_flags
& ISA_MIPS3
) &&
309 (((env
->hflags
& MIPS_HFLAG_KSU
) != MIPS_HFLAG_UM
) ||
310 (env
->CP0_Status
& (1 << CP0St_PX
)) ||
311 (env
->CP0_Status
& (1 << CP0St_UX
)))) {
312 env
->hflags
|= MIPS_HFLAG_64
;
315 if (!(env
->insn_flags
& ISA_MIPS3
)) {
316 env
->hflags
|= MIPS_HFLAG_AWRAP
;
317 } else if (((env
->hflags
& MIPS_HFLAG_KSU
) == MIPS_HFLAG_UM
) &&
318 !(env
->CP0_Status
& (1 << CP0St_UX
))) {
319 env
->hflags
|= MIPS_HFLAG_AWRAP
;
320 } else if (env
->insn_flags
& ISA_MIPS_R6
) {
321 /* Address wrapping for Supervisor and Kernel is specified in R6 */
322 if ((((env
->hflags
& MIPS_HFLAG_KSU
) == MIPS_HFLAG_SM
) &&
323 !(env
->CP0_Status
& (1 << CP0St_SX
))) ||
324 (((env
->hflags
& MIPS_HFLAG_KSU
) == MIPS_HFLAG_KM
) &&
325 !(env
->CP0_Status
& (1 << CP0St_KX
)))) {
326 env
->hflags
|= MIPS_HFLAG_AWRAP
;
330 if (((env
->CP0_Status
& (1 << CP0St_CU0
)) &&
331 !(env
->insn_flags
& ISA_MIPS_R6
)) ||
332 !(env
->hflags
& MIPS_HFLAG_KSU
)) {
333 env
->hflags
|= MIPS_HFLAG_CP0
;
335 if (env
->CP0_Status
& (1 << CP0St_CU1
)) {
336 env
->hflags
|= MIPS_HFLAG_FPU
;
338 if (env
->CP0_Status
& (1 << CP0St_FR
)) {
339 env
->hflags
|= MIPS_HFLAG_F64
;
341 if (((env
->hflags
& MIPS_HFLAG_KSU
) != MIPS_HFLAG_KM
) &&
342 (env
->CP0_Config5
& (1 << CP0C5_SBRI
))) {
343 env
->hflags
|= MIPS_HFLAG_SBRI
;
345 if (env
->insn_flags
& ASE_DSP_R3
) {
347 * Our cpu supports DSP R3 ASE, so enable
348 * access to DSP R3 resources.
350 if (env
->CP0_Status
& (1 << CP0St_MX
)) {
351 env
->hflags
|= MIPS_HFLAG_DSP
| MIPS_HFLAG_DSP_R2
|
354 } else if (env
->insn_flags
& ASE_DSP_R2
) {
356 * Our cpu supports DSP R2 ASE, so enable
357 * access to DSP R2 resources.
359 if (env
->CP0_Status
& (1 << CP0St_MX
)) {
360 env
->hflags
|= MIPS_HFLAG_DSP
| MIPS_HFLAG_DSP_R2
;
363 } else if (env
->insn_flags
& ASE_DSP
) {
365 * Our cpu supports DSP ASE, so enable
366 * access to DSP resources.
368 if (env
->CP0_Status
& (1 << CP0St_MX
)) {
369 env
->hflags
|= MIPS_HFLAG_DSP
;
373 if (env
->insn_flags
& ISA_MIPS_R2
) {
374 if (env
->active_fpu
.fcr0
& (1 << FCR0_F64
)) {
375 env
->hflags
|= MIPS_HFLAG_COP1X
;
377 } else if (env
->insn_flags
& ISA_MIPS_R1
) {
378 if (env
->hflags
& MIPS_HFLAG_64
) {
379 env
->hflags
|= MIPS_HFLAG_COP1X
;
381 } else if (env
->insn_flags
& ISA_MIPS4
) {
383 * All supported MIPS IV CPUs use the XX (CU3) to enable
384 * and disable the MIPS IV extensions to the MIPS III ISA.
385 * Some other MIPS IV CPUs ignore the bit, so the check here
386 * would be too restrictive for them.
388 if (env
->CP0_Status
& (1U << CP0St_CU3
)) {
389 env
->hflags
|= MIPS_HFLAG_COP1X
;
392 if (ase_msa_available(env
)) {
393 if (env
->CP0_Config5
& (1 << CP0C5_MSAEn
)) {
394 env
->hflags
|= MIPS_HFLAG_MSA
;
397 if (env
->active_fpu
.fcr0
& (1 << FCR0_FREP
)) {
398 if (env
->CP0_Config5
& (1 << CP0C5_FRE
)) {
399 env
->hflags
|= MIPS_HFLAG_FRE
;
402 if (env
->CP0_Config3
& (1 << CP0C3_LPA
)) {
403 if (env
->CP0_PageGrain
& (1 << CP0PG_ELPA
)) {
404 env
->hflags
|= MIPS_HFLAG_ELPA
;