2 * MIPS emulation helpers for qemu.
4 * Copyright (c) 2004-2005 Jocelyn Mayer
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
27 #include "sysemu/kvm.h"
28 #include "exec/cpu_ldst.h"
40 #if !defined(CONFIG_USER_ONLY)
42 /* no MMU emulation */
43 int no_mmu_map_address (CPUMIPSState
*env
, hwaddr
*physical
, int *prot
,
44 target_ulong address
, int rw
, int access_type
)
47 *prot
= PAGE_READ
| PAGE_WRITE
;
51 /* fixed mapping MMU emulation */
52 int fixed_mmu_map_address (CPUMIPSState
*env
, hwaddr
*physical
, int *prot
,
53 target_ulong address
, int rw
, int access_type
)
55 if (address
<= (int32_t)0x7FFFFFFFUL
) {
56 if (!(env
->CP0_Status
& (1 << CP0St_ERL
)))
57 *physical
= address
+ 0x40000000UL
;
60 } else if (address
<= (int32_t)0xBFFFFFFFUL
)
61 *physical
= address
& 0x1FFFFFFF;
65 *prot
= PAGE_READ
| PAGE_WRITE
;
69 /* MIPS32/MIPS64 R4000-style MMU emulation */
70 int r4k_map_address (CPUMIPSState
*env
, hwaddr
*physical
, int *prot
,
71 target_ulong address
, int rw
, int access_type
)
73 uint8_t ASID
= env
->CP0_EntryHi
& 0xFF;
76 for (i
= 0; i
< env
->tlb
->tlb_in_use
; i
++) {
77 r4k_tlb_t
*tlb
= &env
->tlb
->mmu
.r4k
.tlb
[i
];
78 /* 1k pages are not supported. */
79 target_ulong mask
= tlb
->PageMask
| ~(TARGET_PAGE_MASK
<< 1);
80 target_ulong tag
= address
& ~mask
;
81 target_ulong VPN
= tlb
->VPN
& ~mask
;
82 #if defined(TARGET_MIPS64)
86 /* Check ASID, virtual page number & size */
87 if ((tlb
->G
== 1 || tlb
->ASID
== ASID
) && VPN
== tag
&& !tlb
->EHINV
) {
89 int n
= !!(address
& mask
& ~(mask
>> 1));
90 /* Check access rights */
91 if (!(n
? tlb
->V1
: tlb
->V0
)) {
92 return TLBRET_INVALID
;
94 if (rw
== MMU_INST_FETCH
&& (n
? tlb
->XI1
: tlb
->XI0
)) {
97 if (rw
== MMU_DATA_LOAD
&& (n
? tlb
->RI1
: tlb
->RI0
)) {
100 if (rw
!= MMU_DATA_STORE
|| (n
? tlb
->D1
: tlb
->D0
)) {
101 *physical
= tlb
->PFN
[n
] | (address
& (mask
>> 1));
103 if (n
? tlb
->D1
: tlb
->D0
)
110 return TLBRET_NOMATCH
;
113 static int get_physical_address (CPUMIPSState
*env
, hwaddr
*physical
,
114 int *prot
, target_ulong real_address
,
115 int rw
, int access_type
)
117 /* User mode can only access useg/xuseg */
118 int user_mode
= (env
->hflags
& MIPS_HFLAG_MODE
) == MIPS_HFLAG_UM
;
119 int supervisor_mode
= (env
->hflags
& MIPS_HFLAG_MODE
) == MIPS_HFLAG_SM
;
120 int kernel_mode
= !user_mode
&& !supervisor_mode
;
121 #if defined(TARGET_MIPS64)
122 int UX
= (env
->CP0_Status
& (1 << CP0St_UX
)) != 0;
123 int SX
= (env
->CP0_Status
& (1 << CP0St_SX
)) != 0;
124 int KX
= (env
->CP0_Status
& (1 << CP0St_KX
)) != 0;
126 int ret
= TLBRET_MATCH
;
127 /* effective address (modified for KVM T&E kernel segments) */
128 target_ulong address
= real_address
;
131 qemu_log("user mode %d h %08x\n", user_mode
, env
->hflags
);
134 #define USEG_LIMIT 0x7FFFFFFFUL
135 #define KSEG0_BASE 0x80000000UL
136 #define KSEG1_BASE 0xA0000000UL
137 #define KSEG2_BASE 0xC0000000UL
138 #define KSEG3_BASE 0xE0000000UL
140 #define KVM_KSEG0_BASE 0x40000000UL
141 #define KVM_KSEG2_BASE 0x60000000UL
144 /* KVM T&E adds guest kernel segments in useg */
145 if (real_address
>= KVM_KSEG0_BASE
) {
146 if (real_address
< KVM_KSEG2_BASE
) {
148 address
+= KSEG0_BASE
- KVM_KSEG0_BASE
;
149 } else if (real_address
<= USEG_LIMIT
) {
151 address
+= KSEG2_BASE
- KVM_KSEG2_BASE
;
156 if (address
<= USEG_LIMIT
) {
158 if (env
->CP0_Status
& (1 << CP0St_ERL
)) {
159 *physical
= address
& 0xFFFFFFFF;
160 *prot
= PAGE_READ
| PAGE_WRITE
;
162 ret
= env
->tlb
->map_address(env
, physical
, prot
, real_address
, rw
, access_type
);
164 #if defined(TARGET_MIPS64)
165 } else if (address
< 0x4000000000000000ULL
) {
167 if (UX
&& address
<= (0x3FFFFFFFFFFFFFFFULL
& env
->SEGMask
)) {
168 ret
= env
->tlb
->map_address(env
, physical
, prot
, real_address
, rw
, access_type
);
170 ret
= TLBRET_BADADDR
;
172 } else if (address
< 0x8000000000000000ULL
) {
174 if ((supervisor_mode
|| kernel_mode
) &&
175 SX
&& address
<= (0x7FFFFFFFFFFFFFFFULL
& env
->SEGMask
)) {
176 ret
= env
->tlb
->map_address(env
, physical
, prot
, real_address
, rw
, access_type
);
178 ret
= TLBRET_BADADDR
;
180 } else if (address
< 0xC000000000000000ULL
) {
182 if (kernel_mode
&& KX
&&
183 (address
& 0x07FFFFFFFFFFFFFFULL
) <= env
->PAMask
) {
184 *physical
= address
& env
->PAMask
;
185 *prot
= PAGE_READ
| PAGE_WRITE
;
187 ret
= TLBRET_BADADDR
;
189 } else if (address
< 0xFFFFFFFF80000000ULL
) {
191 if (kernel_mode
&& KX
&&
192 address
<= (0xFFFFFFFF7FFFFFFFULL
& env
->SEGMask
)) {
193 ret
= env
->tlb
->map_address(env
, physical
, prot
, real_address
, rw
, access_type
);
195 ret
= TLBRET_BADADDR
;
198 } else if (address
< (int32_t)KSEG1_BASE
) {
201 *physical
= address
- (int32_t)KSEG0_BASE
;
202 *prot
= PAGE_READ
| PAGE_WRITE
;
204 ret
= TLBRET_BADADDR
;
206 } else if (address
< (int32_t)KSEG2_BASE
) {
209 *physical
= address
- (int32_t)KSEG1_BASE
;
210 *prot
= PAGE_READ
| PAGE_WRITE
;
212 ret
= TLBRET_BADADDR
;
214 } else if (address
< (int32_t)KSEG3_BASE
) {
216 if (supervisor_mode
|| kernel_mode
) {
217 ret
= env
->tlb
->map_address(env
, physical
, prot
, real_address
, rw
, access_type
);
219 ret
= TLBRET_BADADDR
;
223 /* XXX: debug segment is not emulated */
225 ret
= env
->tlb
->map_address(env
, physical
, prot
, real_address
, rw
, access_type
);
227 ret
= TLBRET_BADADDR
;
231 qemu_log(TARGET_FMT_lx
" %d %d => %" HWADDR_PRIx
" %d (%d)\n",
232 address
, rw
, access_type
, *physical
, *prot
, ret
);
239 static void raise_mmu_exception(CPUMIPSState
*env
, target_ulong address
,
240 int rw
, int tlb_error
)
242 CPUState
*cs
= CPU(mips_env_get_cpu(env
));
243 int exception
= 0, error_code
= 0;
245 if (rw
== MMU_INST_FETCH
) {
246 error_code
|= EXCP_INST_NOTAVAIL
;
252 /* Reference to kernel address from user mode or supervisor mode */
253 /* Reference to supervisor address from user mode */
254 if (rw
== MMU_DATA_STORE
) {
255 exception
= EXCP_AdES
;
257 exception
= EXCP_AdEL
;
261 /* No TLB match for a mapped address */
262 if (rw
== MMU_DATA_STORE
) {
263 exception
= EXCP_TLBS
;
265 exception
= EXCP_TLBL
;
267 error_code
|= EXCP_TLB_NOMATCH
;
270 /* TLB match with no valid bit */
271 if (rw
== MMU_DATA_STORE
) {
272 exception
= EXCP_TLBS
;
274 exception
= EXCP_TLBL
;
278 /* TLB match but 'D' bit is cleared */
279 exception
= EXCP_LTLBL
;
282 /* Execute-Inhibit Exception */
283 if (env
->CP0_PageGrain
& (1 << CP0PG_IEC
)) {
284 exception
= EXCP_TLBXI
;
286 exception
= EXCP_TLBL
;
290 /* Read-Inhibit Exception */
291 if (env
->CP0_PageGrain
& (1 << CP0PG_IEC
)) {
292 exception
= EXCP_TLBRI
;
294 exception
= EXCP_TLBL
;
298 /* Raise exception */
299 env
->CP0_BadVAddr
= address
;
300 env
->CP0_Context
= (env
->CP0_Context
& ~0x007fffff) |
301 ((address
>> 9) & 0x007ffff0);
303 (env
->CP0_EntryHi
& 0xFF) | (address
& (TARGET_PAGE_MASK
<< 1));
304 #if defined(TARGET_MIPS64)
305 env
->CP0_EntryHi
&= env
->SEGMask
;
306 env
->CP0_XContext
= (env
->CP0_XContext
& ((~0ULL) << (env
->SEGBITS
- 7))) |
307 ((address
& 0xC00000000000ULL
) >> (55 - env
->SEGBITS
)) |
308 ((address
& ((1ULL << env
->SEGBITS
) - 1) & 0xFFFFFFFFFFFFE000ULL
) >> 9);
310 cs
->exception_index
= exception
;
311 env
->error_code
= error_code
;
314 #if !defined(CONFIG_USER_ONLY)
315 hwaddr
mips_cpu_get_phys_page_debug(CPUState
*cs
, vaddr addr
)
317 MIPSCPU
*cpu
= MIPS_CPU(cs
);
321 if (get_physical_address(&cpu
->env
, &phys_addr
, &prot
, addr
, 0,
329 int mips_cpu_handle_mmu_fault(CPUState
*cs
, vaddr address
, int rw
,
332 MIPSCPU
*cpu
= MIPS_CPU(cs
);
333 CPUMIPSState
*env
= &cpu
->env
;
334 #if !defined(CONFIG_USER_ONLY)
342 log_cpu_state(cs
, 0);
344 qemu_log_mask(CPU_LOG_MMU
,
345 "%s pc " TARGET_FMT_lx
" ad %" VADDR_PRIx
" rw %d mmu_idx %d\n",
346 __func__
, env
->active_tc
.PC
, address
, rw
, mmu_idx
);
349 #if !defined(CONFIG_USER_ONLY)
350 /* XXX: put correct access by using cpu_restore_state()
352 access_type
= ACCESS_INT
;
353 ret
= get_physical_address(env
, &physical
, &prot
,
354 address
, rw
, access_type
);
355 qemu_log_mask(CPU_LOG_MMU
,
356 "%s address=%" VADDR_PRIx
" ret %d physical " TARGET_FMT_plx
358 __func__
, address
, ret
, physical
, prot
);
359 if (ret
== TLBRET_MATCH
) {
360 tlb_set_page(cs
, address
& TARGET_PAGE_MASK
,
361 physical
& TARGET_PAGE_MASK
, prot
| PAGE_EXEC
,
362 mmu_idx
, TARGET_PAGE_SIZE
);
367 raise_mmu_exception(env
, address
, rw
, ret
);
374 #if !defined(CONFIG_USER_ONLY)
375 hwaddr
cpu_mips_translate_address(CPUMIPSState
*env
, target_ulong address
, int rw
)
383 access_type
= ACCESS_INT
;
384 ret
= get_physical_address(env
, &physical
, &prot
,
385 address
, rw
, access_type
);
386 if (ret
!= TLBRET_MATCH
) {
387 raise_mmu_exception(env
, address
, rw
, ret
);
394 static const char * const excp_names
[EXCP_LAST
+ 1] = {
395 [EXCP_RESET
] = "reset",
396 [EXCP_SRESET
] = "soft reset",
397 [EXCP_DSS
] = "debug single step",
398 [EXCP_DINT
] = "debug interrupt",
399 [EXCP_NMI
] = "non-maskable interrupt",
400 [EXCP_MCHECK
] = "machine check",
401 [EXCP_EXT_INTERRUPT
] = "interrupt",
402 [EXCP_DFWATCH
] = "deferred watchpoint",
403 [EXCP_DIB
] = "debug instruction breakpoint",
404 [EXCP_IWATCH
] = "instruction fetch watchpoint",
405 [EXCP_AdEL
] = "address error load",
406 [EXCP_AdES
] = "address error store",
407 [EXCP_TLBF
] = "TLB refill",
408 [EXCP_IBE
] = "instruction bus error",
409 [EXCP_DBp
] = "debug breakpoint",
410 [EXCP_SYSCALL
] = "syscall",
411 [EXCP_BREAK
] = "break",
412 [EXCP_CpU
] = "coprocessor unusable",
413 [EXCP_RI
] = "reserved instruction",
414 [EXCP_OVERFLOW
] = "arithmetic overflow",
415 [EXCP_TRAP
] = "trap",
416 [EXCP_FPE
] = "floating point",
417 [EXCP_DDBS
] = "debug data break store",
418 [EXCP_DWATCH
] = "data watchpoint",
419 [EXCP_LTLBL
] = "TLB modify",
420 [EXCP_TLBL
] = "TLB load",
421 [EXCP_TLBS
] = "TLB store",
422 [EXCP_DBE
] = "data bus error",
423 [EXCP_DDBL
] = "debug data break load",
424 [EXCP_THREAD
] = "thread",
425 [EXCP_MDMX
] = "MDMX",
426 [EXCP_C2E
] = "precise coprocessor 2",
427 [EXCP_CACHE
] = "cache error",
428 [EXCP_TLBXI
] = "TLB execute-inhibit",
429 [EXCP_TLBRI
] = "TLB read-inhibit",
430 [EXCP_MSADIS
] = "MSA disabled",
431 [EXCP_MSAFPE
] = "MSA floating point",
435 target_ulong
exception_resume_pc (CPUMIPSState
*env
)
438 target_ulong isa_mode
;
440 isa_mode
= !!(env
->hflags
& MIPS_HFLAG_M16
);
441 bad_pc
= env
->active_tc
.PC
| isa_mode
;
442 if (env
->hflags
& MIPS_HFLAG_BMASK
) {
443 /* If the exception was raised from a delay slot, come back to
445 bad_pc
-= (env
->hflags
& MIPS_HFLAG_B16
? 2 : 4);
451 #if !defined(CONFIG_USER_ONLY)
452 static void set_hflags_for_handler (CPUMIPSState
*env
)
454 /* Exception handlers are entered in 32-bit mode. */
455 env
->hflags
&= ~(MIPS_HFLAG_M16
);
456 /* ...except that microMIPS lets you choose. */
457 if (env
->insn_flags
& ASE_MICROMIPS
) {
458 env
->hflags
|= (!!(env
->CP0_Config3
459 & (1 << CP0C3_ISA_ON_EXC
))
460 << MIPS_HFLAG_M16_SHIFT
);
464 static inline void set_badinstr_registers(CPUMIPSState
*env
)
466 if (env
->hflags
& MIPS_HFLAG_M16
) {
467 /* TODO: add BadInstr support for microMIPS */
470 if (env
->CP0_Config3
& (1 << CP0C3_BI
)) {
471 env
->CP0_BadInstr
= cpu_ldl_code(env
, env
->active_tc
.PC
);
473 if ((env
->CP0_Config3
& (1 << CP0C3_BP
)) &&
474 (env
->hflags
& MIPS_HFLAG_BMASK
)) {
475 env
->CP0_BadInstrP
= cpu_ldl_code(env
, env
->active_tc
.PC
- 4);
480 void mips_cpu_do_interrupt(CPUState
*cs
)
482 #if !defined(CONFIG_USER_ONLY)
483 MIPSCPU
*cpu
= MIPS_CPU(cs
);
484 CPUMIPSState
*env
= &cpu
->env
;
485 bool update_badinstr
= 0;
490 if (qemu_log_enabled() && cs
->exception_index
!= EXCP_EXT_INTERRUPT
) {
491 if (cs
->exception_index
< 0 || cs
->exception_index
> EXCP_LAST
) {
494 name
= excp_names
[cs
->exception_index
];
497 qemu_log("%s enter: PC " TARGET_FMT_lx
" EPC " TARGET_FMT_lx
" %s exception\n",
498 __func__
, env
->active_tc
.PC
, env
->CP0_EPC
, name
);
500 if (cs
->exception_index
== EXCP_EXT_INTERRUPT
&&
501 (env
->hflags
& MIPS_HFLAG_DM
)) {
502 cs
->exception_index
= EXCP_DINT
;
505 switch (cs
->exception_index
) {
507 env
->CP0_Debug
|= 1 << CP0DB_DSS
;
508 /* Debug single step cannot be raised inside a delay slot and
509 resume will always occur on the next instruction
510 (but we assume the pc has always been updated during
511 code translation). */
512 env
->CP0_DEPC
= env
->active_tc
.PC
| !!(env
->hflags
& MIPS_HFLAG_M16
);
513 goto enter_debug_mode
;
515 env
->CP0_Debug
|= 1 << CP0DB_DINT
;
518 env
->CP0_Debug
|= 1 << CP0DB_DIB
;
521 env
->CP0_Debug
|= 1 << CP0DB_DBp
;
524 env
->CP0_Debug
|= 1 << CP0DB_DDBS
;
527 env
->CP0_Debug
|= 1 << CP0DB_DDBL
;
529 env
->CP0_DEPC
= exception_resume_pc(env
);
530 env
->hflags
&= ~MIPS_HFLAG_BMASK
;
532 if (env
->insn_flags
& ISA_MIPS3
) {
533 env
->hflags
|= MIPS_HFLAG_64
;
535 env
->hflags
|= MIPS_HFLAG_DM
| MIPS_HFLAG_CP0
;
536 env
->hflags
&= ~(MIPS_HFLAG_KSU
);
537 /* EJTAG probe trap enable is not implemented... */
538 if (!(env
->CP0_Status
& (1 << CP0St_EXL
)))
539 env
->CP0_Cause
&= ~(1U << CP0Ca_BD
);
540 env
->active_tc
.PC
= (int32_t)0xBFC00480;
541 set_hflags_for_handler(env
);
547 env
->CP0_Status
|= (1 << CP0St_SR
);
548 memset(env
->CP0_WatchLo
, 0, sizeof(*env
->CP0_WatchLo
));
551 env
->CP0_Status
|= (1 << CP0St_NMI
);
553 env
->CP0_ErrorEPC
= exception_resume_pc(env
);
554 env
->hflags
&= ~MIPS_HFLAG_BMASK
;
555 env
->CP0_Status
|= (1 << CP0St_ERL
) | (1 << CP0St_BEV
);
556 if (env
->insn_flags
& ISA_MIPS3
) {
557 env
->hflags
|= MIPS_HFLAG_64
;
559 env
->hflags
|= MIPS_HFLAG_CP0
;
560 env
->hflags
&= ~(MIPS_HFLAG_KSU
);
561 if (!(env
->CP0_Status
& (1 << CP0St_EXL
)))
562 env
->CP0_Cause
&= ~(1U << CP0Ca_BD
);
563 env
->active_tc
.PC
= (int32_t)0xBFC00000;
564 set_hflags_for_handler(env
);
566 case EXCP_EXT_INTERRUPT
:
568 if (env
->CP0_Cause
& (1 << CP0Ca_IV
))
571 if (env
->CP0_Config3
& ((1 << CP0C3_VInt
) | (1 << CP0C3_VEIC
))) {
572 /* Vectored Interrupts. */
573 unsigned int spacing
;
575 unsigned int pending
= (env
->CP0_Cause
& CP0Ca_IP_mask
) >> 8;
577 pending
&= env
->CP0_Status
>> 8;
578 /* Compute the Vector Spacing. */
579 spacing
= (env
->CP0_IntCtl
>> CP0IntCtl_VS
) & ((1 << 6) - 1);
582 if (env
->CP0_Config3
& (1 << CP0C3_VInt
)) {
583 /* For VInt mode, the MIPS computes the vector internally. */
584 for (vector
= 7; vector
> 0; vector
--) {
585 if (pending
& (1 << vector
)) {
591 /* For VEIC mode, the external interrupt controller feeds the
592 vector through the CP0Cause IP lines. */
595 offset
= 0x200 + vector
* spacing
;
600 update_badinstr
= !(env
->error_code
& EXCP_INST_NOTAVAIL
);
604 update_badinstr
= !(env
->error_code
& EXCP_INST_NOTAVAIL
);
605 if ((env
->error_code
& EXCP_TLB_NOMATCH
) &&
606 !(env
->CP0_Status
& (1 << CP0St_EXL
))) {
607 #if defined(TARGET_MIPS64)
608 int R
= env
->CP0_BadVAddr
>> 62;
609 int UX
= (env
->CP0_Status
& (1 << CP0St_UX
)) != 0;
610 int SX
= (env
->CP0_Status
& (1 << CP0St_SX
)) != 0;
611 int KX
= (env
->CP0_Status
& (1 << CP0St_KX
)) != 0;
613 if (((R
== 0 && UX
) || (R
== 1 && SX
) || (R
== 3 && KX
)) &&
614 (!(env
->insn_flags
& (INSN_LOONGSON2E
| INSN_LOONGSON2F
))))
624 if ((env
->error_code
& EXCP_TLB_NOMATCH
) &&
625 !(env
->CP0_Status
& (1 << CP0St_EXL
))) {
626 #if defined(TARGET_MIPS64)
627 int R
= env
->CP0_BadVAddr
>> 62;
628 int UX
= (env
->CP0_Status
& (1 << CP0St_UX
)) != 0;
629 int SX
= (env
->CP0_Status
& (1 << CP0St_SX
)) != 0;
630 int KX
= (env
->CP0_Status
& (1 << CP0St_KX
)) != 0;
632 if (((R
== 0 && UX
) || (R
== 1 && SX
) || (R
== 3 && KX
)) &&
633 (!(env
->insn_flags
& (INSN_LOONGSON2E
| INSN_LOONGSON2F
))))
642 update_badinstr
= !(env
->error_code
& EXCP_INST_NOTAVAIL
);
669 env
->CP0_Cause
= (env
->CP0_Cause
& ~(0x3 << CP0Ca_CE
)) |
670 (env
->error_code
<< CP0Ca_CE
);
707 /* XXX: TODO: manage defered watch exceptions */
720 if (env
->CP0_Status
& (1 << CP0St_BEV
)) {
726 if (!(env
->CP0_Status
& (1 << CP0St_EXL
))) {
727 env
->CP0_EPC
= exception_resume_pc(env
);
728 if (update_badinstr
) {
729 set_badinstr_registers(env
);
731 if (env
->hflags
& MIPS_HFLAG_BMASK
) {
732 env
->CP0_Cause
|= (1U << CP0Ca_BD
);
734 env
->CP0_Cause
&= ~(1U << CP0Ca_BD
);
736 env
->CP0_Status
|= (1 << CP0St_EXL
);
737 if (env
->insn_flags
& ISA_MIPS3
) {
738 env
->hflags
|= MIPS_HFLAG_64
;
740 env
->hflags
|= MIPS_HFLAG_CP0
;
741 env
->hflags
&= ~(MIPS_HFLAG_KSU
);
743 env
->hflags
&= ~MIPS_HFLAG_BMASK
;
744 if (env
->CP0_Status
& (1 << CP0St_BEV
)) {
745 env
->active_tc
.PC
= (int32_t)0xBFC00200;
747 env
->active_tc
.PC
= (int32_t)(env
->CP0_EBase
& ~0x3ff);
749 env
->active_tc
.PC
+= offset
;
750 set_hflags_for_handler(env
);
751 env
->CP0_Cause
= (env
->CP0_Cause
& ~(0x1f << CP0Ca_EC
)) | (cause
<< CP0Ca_EC
);
754 qemu_log("Invalid MIPS exception %d. Exiting\n", cs
->exception_index
);
755 printf("Invalid MIPS exception %d. Exiting\n", cs
->exception_index
);
758 if (qemu_log_enabled() && cs
->exception_index
!= EXCP_EXT_INTERRUPT
) {
759 qemu_log("%s: PC " TARGET_FMT_lx
" EPC " TARGET_FMT_lx
" cause %d\n"
760 " S %08x C %08x A " TARGET_FMT_lx
" D " TARGET_FMT_lx
"\n",
761 __func__
, env
->active_tc
.PC
, env
->CP0_EPC
, cause
,
762 env
->CP0_Status
, env
->CP0_Cause
, env
->CP0_BadVAddr
,
766 cs
->exception_index
= EXCP_NONE
;
769 bool mips_cpu_exec_interrupt(CPUState
*cs
, int interrupt_request
)
771 if (interrupt_request
& CPU_INTERRUPT_HARD
) {
772 MIPSCPU
*cpu
= MIPS_CPU(cs
);
773 CPUMIPSState
*env
= &cpu
->env
;
775 if (cpu_mips_hw_interrupts_pending(env
)) {
777 cs
->exception_index
= EXCP_EXT_INTERRUPT
;
779 mips_cpu_do_interrupt(cs
);
786 #if !defined(CONFIG_USER_ONLY)
787 void r4k_invalidate_tlb (CPUMIPSState
*env
, int idx
, int use_extra
)
789 MIPSCPU
*cpu
= mips_env_get_cpu(env
);
794 uint8_t ASID
= env
->CP0_EntryHi
& 0xFF;
797 tlb
= &env
->tlb
->mmu
.r4k
.tlb
[idx
];
798 /* The qemu TLB is flushed when the ASID changes, so no need to
799 flush these entries again. */
800 if (tlb
->G
== 0 && tlb
->ASID
!= ASID
) {
804 if (use_extra
&& env
->tlb
->tlb_in_use
< MIPS_TLB_MAX
) {
805 /* For tlbwr, we can shadow the discarded entry into
806 a new (fake) TLB entry, as long as the guest can not
807 tell that it's there. */
808 env
->tlb
->mmu
.r4k
.tlb
[env
->tlb
->tlb_in_use
] = *tlb
;
809 env
->tlb
->tlb_in_use
++;
813 /* 1k pages are not supported. */
814 mask
= tlb
->PageMask
| ~(TARGET_PAGE_MASK
<< 1);
817 addr
= tlb
->VPN
& ~mask
;
818 #if defined(TARGET_MIPS64)
819 if (addr
>= (0xFFFFFFFF80000000ULL
& env
->SEGMask
)) {
820 addr
|= 0x3FFFFF0000000000ULL
;
823 end
= addr
| (mask
>> 1);
825 tlb_flush_page(cs
, addr
);
826 addr
+= TARGET_PAGE_SIZE
;
831 addr
= (tlb
->VPN
& ~mask
) | ((mask
>> 1) + 1);
832 #if defined(TARGET_MIPS64)
833 if (addr
>= (0xFFFFFFFF80000000ULL
& env
->SEGMask
)) {
834 addr
|= 0x3FFFFF0000000000ULL
;
838 while (addr
- 1 < end
) {
839 tlb_flush_page(cs
, addr
);
840 addr
+= TARGET_PAGE_SIZE
;