]> git.proxmox.com Git - mirror_qemu.git/blame - target-mips/helper.c
More .cvsignore.
[mirror_qemu.git] / target-mips / helper.c
CommitLineData
6af0bf9c
FB
1/*
2 * MIPS emulation helpers for qemu.
5fafdf24 3 *
6af0bf9c
FB
4 * Copyright (c) 2004-2005 Jocelyn Mayer
5 *
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.
10 *
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.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
e37e863f
FB
20#include <stdarg.h>
21#include <stdlib.h>
22#include <stdio.h>
23#include <string.h>
24#include <inttypes.h>
25#include <signal.h>
26#include <assert.h>
27
28#include "cpu.h"
29#include "exec-all.h"
6af0bf9c 30
43057ab1
FB
31enum {
32 TLBRET_DIRTY = -4,
33 TLBRET_INVALID = -3,
34 TLBRET_NOMATCH = -2,
35 TLBRET_BADADDR = -1,
36 TLBRET_MATCH = 0
37};
38
29929e34
TS
39/* no MMU emulation */
40int no_mmu_map_address (CPUState *env, target_ulong *physical, int *prot,
6af0bf9c 41 target_ulong address, int rw, int access_type)
29929e34
TS
42{
43 *physical = address;
44 *prot = PAGE_READ | PAGE_WRITE;
45 return TLBRET_MATCH;
46}
47
48/* fixed mapping MMU emulation */
49int fixed_mmu_map_address (CPUState *env, target_ulong *physical, int *prot,
50 target_ulong address, int rw, int access_type)
51{
52 if (address <= (int32_t)0x7FFFFFFFUL) {
53 if (!(env->CP0_Status & (1 << CP0St_ERL)))
54 *physical = address + 0x40000000UL;
55 else
56 *physical = address;
57 } else if (address <= (int32_t)0xBFFFFFFFUL)
58 *physical = address & 0x1FFFFFFF;
59 else
60 *physical = address;
61
62 *prot = PAGE_READ | PAGE_WRITE;
63 return TLBRET_MATCH;
64}
65
66/* MIPS32/MIPS64 R4000-style MMU emulation */
67int r4k_map_address (CPUState *env, target_ulong *physical, int *prot,
68 target_ulong address, int rw, int access_type)
6af0bf9c 69{
925fd0f2 70 uint8_t ASID = env->CP0_EntryHi & 0xFF;
3b1c8be4 71 int i;
6af0bf9c 72
ead9360e
TS
73 for (i = 0; i < env->tlb->tlb_in_use; i++) {
74 r4k_tlb_t *tlb = &env->tlb->mmu.r4k.tlb[i];
3b1c8be4 75 /* 1k pages are not supported. */
f2e9ebef 76 target_ulong mask = tlb->PageMask | ~(TARGET_PAGE_MASK << 1);
3b1c8be4 77 target_ulong tag = address & ~mask;
f2e9ebef 78 target_ulong VPN = tlb->VPN & ~mask;
540635ba 79#if defined(TARGET_MIPSN32) || defined(TARGET_MIPS64)
e034e2c3 80 tag &= env->SEGMask;
100ce988 81#endif
3b1c8be4 82
6af0bf9c 83 /* Check ASID, virtual page number & size */
f2e9ebef 84 if ((tlb->G == 1 || tlb->ASID == ASID) && VPN == tag) {
6af0bf9c 85 /* TLB match */
f2e9ebef 86 int n = !!(address & mask & ~(mask >> 1));
6af0bf9c 87 /* Check access rights */
f2e9ebef 88 if (!(n ? tlb->V1 : tlb->V0))
43057ab1 89 return TLBRET_INVALID;
f2e9ebef 90 if (rw == 0 || (n ? tlb->D1 : tlb->D0)) {
3b1c8be4 91 *physical = tlb->PFN[n] | (address & (mask >> 1));
9fb63ac2 92 *prot = PAGE_READ;
98c1b82b 93 if (n ? tlb->D1 : tlb->D0)
9fb63ac2 94 *prot |= PAGE_WRITE;
43057ab1 95 return TLBRET_MATCH;
6af0bf9c 96 }
43057ab1 97 return TLBRET_DIRTY;
6af0bf9c
FB
98 }
99 }
43057ab1 100 return TLBRET_NOMATCH;
6af0bf9c 101}
6af0bf9c 102
43057ab1
FB
103static int get_physical_address (CPUState *env, target_ulong *physical,
104 int *prot, target_ulong address,
105 int rw, int access_type)
6af0bf9c 106{
b4ab4b4e 107 /* User mode can only access useg/xuseg */
43057ab1 108 int user_mode = (env->hflags & MIPS_HFLAG_MODE) == MIPS_HFLAG_UM;
671880e6
TS
109 int supervisor_mode = (env->hflags & MIPS_HFLAG_MODE) == MIPS_HFLAG_SM;
110 int kernel_mode = !user_mode && !supervisor_mode;
540635ba 111#if defined(TARGET_MIPSN32) || defined(TARGET_MIPS64)
b4ab4b4e
TS
112 int UX = (env->CP0_Status & (1 << CP0St_UX)) != 0;
113 int SX = (env->CP0_Status & (1 << CP0St_SX)) != 0;
114 int KX = (env->CP0_Status & (1 << CP0St_KX)) != 0;
115#endif
43057ab1
FB
116 int ret = TLBRET_MATCH;
117
6af0bf9c
FB
118#if 0
119 if (logfile) {
120 fprintf(logfile, "user mode %d h %08x\n",
121 user_mode, env->hflags);
122 }
123#endif
b4ab4b4e 124
b4ab4b4e
TS
125 if (address <= (int32_t)0x7FFFFFFFUL) {
126 /* useg */
996ba2cc 127 if (env->CP0_Status & (1 << CP0St_ERL)) {
29929e34 128 *physical = address & 0xFFFFFFFF;
6af0bf9c 129 *prot = PAGE_READ | PAGE_WRITE;
996ba2cc 130 } else {
ead9360e 131 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
6af0bf9c 132 }
540635ba 133#if defined(TARGET_MIPSN32) || defined(TARGET_MIPS64)
89fc88da 134 } else if (address < 0x4000000000000000ULL) {
b4ab4b4e 135 /* xuseg */
e034e2c3 136 if (UX && address < (0x3FFFFFFFFFFFFFFFULL & env->SEGMask)) {
ead9360e 137 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
b4ab4b4e
TS
138 } else {
139 ret = TLBRET_BADADDR;
140 }
89fc88da 141 } else if (address < 0x8000000000000000ULL) {
b4ab4b4e 142 /* xsseg */
671880e6
TS
143 if ((supervisor_mode || kernel_mode) &&
144 SX && address < (0x7FFFFFFFFFFFFFFFULL & env->SEGMask)) {
ead9360e 145 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
b4ab4b4e
TS
146 } else {
147 ret = TLBRET_BADADDR;
148 }
89fc88da 149 } else if (address < 0xC000000000000000ULL) {
b4ab4b4e 150 /* xkphys */
89fc88da 151 /* XXX: Assumes PABITS = 36 (correct for MIPS64R1) */
671880e6 152 if (kernel_mode && KX &&
89fc88da
TS
153 (address & 0x07FFFFFFFFFFFFFFULL) < 0x0000000FFFFFFFFFULL) {
154 *physical = address & 0x0000000FFFFFFFFFULL;
b4ab4b4e
TS
155 *prot = PAGE_READ | PAGE_WRITE;
156 } else {
157 ret = TLBRET_BADADDR;
158 }
89fc88da 159 } else if (address < 0xFFFFFFFF80000000ULL) {
b4ab4b4e 160 /* xkseg */
671880e6
TS
161 if (kernel_mode && KX &&
162 address < (0xFFFFFFFF7FFFFFFFULL & env->SEGMask)) {
ead9360e 163 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
b4ab4b4e
TS
164 } else {
165 ret = TLBRET_BADADDR;
166 }
167#endif
5dc4b744 168 } else if (address < (int32_t)0xA0000000UL) {
6af0bf9c 169 /* kseg0 */
671880e6
TS
170 if (kernel_mode) {
171 *physical = address - (int32_t)0x80000000UL;
172 *prot = PAGE_READ | PAGE_WRITE;
173 } else {
174 ret = TLBRET_BADADDR;
175 }
5dc4b744 176 } else if (address < (int32_t)0xC0000000UL) {
6af0bf9c 177 /* kseg1 */
671880e6
TS
178 if (kernel_mode) {
179 *physical = address - (int32_t)0xA0000000UL;
180 *prot = PAGE_READ | PAGE_WRITE;
181 } else {
182 ret = TLBRET_BADADDR;
183 }
5dc4b744 184 } else if (address < (int32_t)0xE0000000UL) {
89fc88da 185 /* sseg (kseg2) */
671880e6
TS
186 if (supervisor_mode || kernel_mode) {
187 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
188 } else {
189 ret = TLBRET_BADADDR;
190 }
6af0bf9c
FB
191 } else {
192 /* kseg3 */
6af0bf9c 193 /* XXX: debug segment is not emulated */
671880e6
TS
194 if (kernel_mode) {
195 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
196 } else {
197 ret = TLBRET_BADADDR;
198 }
6af0bf9c
FB
199 }
200#if 0
201 if (logfile) {
3594c774 202 fprintf(logfile, TARGET_FMT_lx " %d %d => " TARGET_FMT_lx " %d (%d)\n",
c570fd16 203 address, rw, access_type, *physical, *prot, ret);
6af0bf9c
FB
204 }
205#endif
206
207 return ret;
208}
209
5fafdf24 210#if defined(CONFIG_USER_ONLY)
9b3c35e0 211target_phys_addr_t cpu_get_phys_page_debug(CPUState *env, target_ulong addr)
6af0bf9c
FB
212{
213 return addr;
214}
215#else
9b3c35e0 216target_phys_addr_t cpu_get_phys_page_debug(CPUState *env, target_ulong addr)
6af0bf9c
FB
217{
218 target_ulong phys_addr;
219 int prot;
220
221 if (get_physical_address(env, &phys_addr, &prot, addr, 0, ACCESS_INT) != 0)
222 return -1;
223 return phys_addr;
224}
6af0bf9c
FB
225
226void cpu_mips_init_mmu (CPUState *env)
227{
228}
6af0bf9c
FB
229#endif /* !defined(CONFIG_USER_ONLY) */
230
231int cpu_mips_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
6ebbf390 232 int mmu_idx, int is_softmmu)
6af0bf9c
FB
233{
234 target_ulong physical;
235 int prot;
236 int exception = 0, error_code = 0;
237 int access_type;
238 int ret = 0;
239
240 if (logfile) {
4ad40f36 241#if 0
6af0bf9c 242 cpu_dump_state(env, logfile, fprintf, 0);
4ad40f36 243#endif
6ebbf390
JM
244 fprintf(logfile, "%s pc " TARGET_FMT_lx " ad " TARGET_FMT_lx " rw %d mmu_idx %d smmu %d\n",
245 __func__, env->PC[env->current_tc], address, rw, mmu_idx, is_softmmu);
6af0bf9c 246 }
4ad40f36
FB
247
248 rw &= 1;
249
6af0bf9c
FB
250 /* data access */
251 /* XXX: put correct access by using cpu_restore_state()
252 correctly */
253 access_type = ACCESS_INT;
254 if (env->user_mode_only) {
255 /* user mode only emulation */
43057ab1 256 ret = TLBRET_NOMATCH;
6af0bf9c
FB
257 goto do_fault;
258 }
259 ret = get_physical_address(env, &physical, &prot,
260 address, rw, access_type);
261 if (logfile) {
3594c774 262 fprintf(logfile, "%s address=" TARGET_FMT_lx " ret %d physical " TARGET_FMT_lx " prot %d\n",
6af0bf9c
FB
263 __func__, address, ret, physical, prot);
264 }
43057ab1
FB
265 if (ret == TLBRET_MATCH) {
266 ret = tlb_set_page(env, address & TARGET_PAGE_MASK,
267 physical & TARGET_PAGE_MASK, prot,
6ebbf390 268 mmu_idx, is_softmmu);
6af0bf9c
FB
269 } else if (ret < 0) {
270 do_fault:
271 switch (ret) {
272 default:
43057ab1 273 case TLBRET_BADADDR:
6af0bf9c
FB
274 /* Reference to kernel address from user mode or supervisor mode */
275 /* Reference to supervisor address from user mode */
276 if (rw)
277 exception = EXCP_AdES;
278 else
279 exception = EXCP_AdEL;
280 break;
43057ab1 281 case TLBRET_NOMATCH:
6af0bf9c
FB
282 /* No TLB match for a mapped address */
283 if (rw)
284 exception = EXCP_TLBS;
285 else
286 exception = EXCP_TLBL;
287 error_code = 1;
288 break;
43057ab1 289 case TLBRET_INVALID:
6af0bf9c
FB
290 /* TLB match with no valid bit */
291 if (rw)
292 exception = EXCP_TLBS;
293 else
294 exception = EXCP_TLBL;
6af0bf9c 295 break;
43057ab1 296 case TLBRET_DIRTY:
6af0bf9c
FB
297 /* TLB match but 'D' bit is cleared */
298 exception = EXCP_LTLBL;
299 break;
3b46e624 300
6af0bf9c 301 }
6af0bf9c
FB
302 /* Raise exception */
303 env->CP0_BadVAddr = address;
100ce988 304 env->CP0_Context = (env->CP0_Context & ~0x007fffff) |
4ad40f36 305 ((address >> 9) & 0x007ffff0);
6af0bf9c 306 env->CP0_EntryHi =
43057ab1 307 (env->CP0_EntryHi & 0xFF) | (address & (TARGET_PAGE_MASK << 1));
540635ba 308#if defined(TARGET_MIPSN32) || defined(TARGET_MIPS64)
e034e2c3
TS
309 env->CP0_EntryHi &= env->SEGMask;
310 env->CP0_XContext = (env->CP0_XContext & ((~0ULL) << (env->SEGBITS - 7))) |
311 ((address & 0xC00000000000ULL) >> (env->SEGBITS - 9)) |
312 ((address & ((1ULL << env->SEGBITS) - 1) & 0xFFFFFFFFFFFFE000ULL) >> 9);
100ce988 313#endif
6af0bf9c
FB
314 env->exception_index = exception;
315 env->error_code = error_code;
316 ret = 1;
317 }
318
319 return ret;
320}
321
ca7c2b1b
TS
322#if defined(CONFIG_USER_ONLY)
323void do_interrupt (CPUState *env)
324{
325 env->exception_index = EXCP_NONE;
326}
327#else
6af0bf9c
FB
328void do_interrupt (CPUState *env)
329{
aa328add 330 target_ulong offset;
6af0bf9c
FB
331 int cause = -1;
332
333 if (logfile && env->exception_index != EXCP_EXT_INTERRUPT) {
3594c774 334 fprintf(logfile, "%s enter: PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx " cause %d excp %d\n",
ead9360e 335 __func__, env->PC[env->current_tc], env->CP0_EPC, cause, env->exception_index);
6af0bf9c
FB
336 }
337 if (env->exception_index == EXCP_EXT_INTERRUPT &&
338 (env->hflags & MIPS_HFLAG_DM))
339 env->exception_index = EXCP_DINT;
340 offset = 0x180;
341 switch (env->exception_index) {
342 case EXCP_DSS:
343 env->CP0_Debug |= 1 << CP0DB_DSS;
344 /* Debug single step cannot be raised inside a delay slot and
345 * resume will always occur on the next instruction
346 * (but we assume the pc has always been updated during
347 * code translation).
348 */
ead9360e 349 env->CP0_DEPC = env->PC[env->current_tc];
6af0bf9c
FB
350 goto enter_debug_mode;
351 case EXCP_DINT:
352 env->CP0_Debug |= 1 << CP0DB_DINT;
353 goto set_DEPC;
354 case EXCP_DIB:
355 env->CP0_Debug |= 1 << CP0DB_DIB;
356 goto set_DEPC;
357 case EXCP_DBp:
358 env->CP0_Debug |= 1 << CP0DB_DBp;
359 goto set_DEPC;
360 case EXCP_DDBS:
361 env->CP0_Debug |= 1 << CP0DB_DDBS;
362 goto set_DEPC;
363 case EXCP_DDBL:
364 env->CP0_Debug |= 1 << CP0DB_DDBL;
6af0bf9c 365 set_DEPC:
4ad40f36 366 if (env->hflags & MIPS_HFLAG_BMASK) {
6af0bf9c 367 /* If the exception was raised from a delay slot,
aa328add 368 come back to the jump. */
ead9360e 369 env->CP0_DEPC = env->PC[env->current_tc] - 4;
4ad40f36 370 env->hflags &= ~MIPS_HFLAG_BMASK;
6af0bf9c 371 } else {
ead9360e 372 env->CP0_DEPC = env->PC[env->current_tc];
6af0bf9c
FB
373 }
374 enter_debug_mode:
08fa4bab 375 env->hflags |= MIPS_HFLAG_DM | MIPS_HFLAG_64 | MIPS_HFLAG_CP0;
623a930e 376 env->hflags &= ~(MIPS_HFLAG_KSU);
6af0bf9c 377 /* EJTAG probe trap enable is not implemented... */
0a6de750
TS
378 if (!(env->CP0_Status & (1 << CP0St_EXL)))
379 env->CP0_Cause &= ~(1 << CP0Ca_BD);
ead9360e 380 env->PC[env->current_tc] = (int32_t)0xBFC00480;
6af0bf9c
FB
381 break;
382 case EXCP_RESET:
aa328add
TS
383 cpu_reset(env);
384 break;
6af0bf9c 385 case EXCP_SRESET:
24c7b0e3 386 env->CP0_Status |= (1 << CP0St_SR);
fd88b6ab 387 memset(env->CP0_WatchLo, 0, sizeof(*env->CP0_WatchLo));
6af0bf9c
FB
388 goto set_error_EPC;
389 case EXCP_NMI:
24c7b0e3 390 env->CP0_Status |= (1 << CP0St_NMI);
6af0bf9c 391 set_error_EPC:
4ad40f36 392 if (env->hflags & MIPS_HFLAG_BMASK) {
6af0bf9c 393 /* If the exception was raised from a delay slot,
aa328add 394 come back to the jump. */
ead9360e 395 env->CP0_ErrorEPC = env->PC[env->current_tc] - 4;
ecd78a0a 396 env->hflags &= ~MIPS_HFLAG_BMASK;
6af0bf9c 397 } else {
ead9360e 398 env->CP0_ErrorEPC = env->PC[env->current_tc];
6af0bf9c 399 }
24c7b0e3 400 env->CP0_Status |= (1 << CP0St_ERL) | (1 << CP0St_BEV);
08fa4bab 401 env->hflags |= MIPS_HFLAG_64 | MIPS_HFLAG_CP0;
623a930e 402 env->hflags &= ~(MIPS_HFLAG_KSU);
0a6de750
TS
403 if (!(env->CP0_Status & (1 << CP0St_EXL)))
404 env->CP0_Cause &= ~(1 << CP0Ca_BD);
ead9360e 405 env->PC[env->current_tc] = (int32_t)0xBFC00000;
6af0bf9c
FB
406 break;
407 case EXCP_MCHECK:
408 cause = 24;
409 goto set_EPC;
410 case EXCP_EXT_INTERRUPT:
411 cause = 0;
412 if (env->CP0_Cause & (1 << CP0Ca_IV))
413 offset = 0x200;
414 goto set_EPC;
415 case EXCP_DWATCH:
416 cause = 23;
417 /* XXX: TODO: manage defered watch exceptions */
418 goto set_EPC;
419 case EXCP_AdEL:
6af0bf9c
FB
420 cause = 4;
421 goto set_EPC;
beb811bd
TS
422 case EXCP_AdES:
423 cause = 5;
424 goto set_EPC;
6af0bf9c 425 case EXCP_TLBL:
6af0bf9c 426 cause = 2;
100ce988 427 if (env->error_code == 1 && !(env->CP0_Status & (1 << CP0St_EXL))) {
540635ba 428#if defined(TARGET_MIPSN32) || defined(TARGET_MIPS64)
100ce988
TS
429 int R = env->CP0_BadVAddr >> 62;
430 int UX = (env->CP0_Status & (1 << CP0St_UX)) != 0;
431 int SX = (env->CP0_Status & (1 << CP0St_SX)) != 0;
432 int KX = (env->CP0_Status & (1 << CP0St_KX)) != 0;
433
434 if ((R == 0 && UX) || (R == 1 && SX) || (R == 3 && KX))
435 offset = 0x080;
436 else
437#endif
438 offset = 0x000;
439 }
6af0bf9c
FB
440 goto set_EPC;
441 case EXCP_IBE:
442 cause = 6;
443 goto set_EPC;
444 case EXCP_DBE:
445 cause = 7;
446 goto set_EPC;
447 case EXCP_SYSCALL:
448 cause = 8;
449 goto set_EPC;
450 case EXCP_BREAK:
451 cause = 9;
452 goto set_EPC;
453 case EXCP_RI:
454 cause = 10;
455 goto set_EPC;
456 case EXCP_CpU:
457 cause = 11;
39d51eb8
TS
458 env->CP0_Cause = (env->CP0_Cause & ~(0x3 << CP0Ca_CE)) |
459 (env->error_code << CP0Ca_CE);
6af0bf9c
FB
460 goto set_EPC;
461 case EXCP_OVERFLOW:
462 cause = 12;
463 goto set_EPC;
464 case EXCP_TRAP:
465 cause = 13;
466 goto set_EPC;
5a5012ec
TS
467 case EXCP_FPE:
468 cause = 15;
469 goto set_EPC;
6af0bf9c
FB
470 case EXCP_LTLBL:
471 cause = 1;
472 goto set_EPC;
473 case EXCP_TLBS:
474 cause = 3;
100ce988 475 if (env->error_code == 1 && !(env->CP0_Status & (1 << CP0St_EXL))) {
540635ba 476#if defined(TARGET_MIPSN32) || defined(TARGET_MIPS64)
100ce988
TS
477 int R = env->CP0_BadVAddr >> 62;
478 int UX = (env->CP0_Status & (1 << CP0St_UX)) != 0;
479 int SX = (env->CP0_Status & (1 << CP0St_SX)) != 0;
480 int KX = (env->CP0_Status & (1 << CP0St_KX)) != 0;
481
482 if ((R == 0 && UX) || (R == 1 && SX) || (R == 3 && KX))
483 offset = 0x080;
484 else
485#endif
486 offset = 0x000;
487 }
6276c767
TS
488 goto set_EPC;
489 case EXCP_THREAD:
490 cause = 25;
6af0bf9c 491 set_EPC:
24c7b0e3
TS
492 if (!(env->CP0_Status & (1 << CP0St_EXL))) {
493 if (env->hflags & MIPS_HFLAG_BMASK) {
494 /* If the exception was raised from a delay slot,
495 come back to the jump. */
ead9360e 496 env->CP0_EPC = env->PC[env->current_tc] - 4;
39d51eb8 497 env->CP0_Cause |= (1 << CP0Ca_BD);
24c7b0e3 498 } else {
ead9360e 499 env->CP0_EPC = env->PC[env->current_tc];
24c7b0e3
TS
500 env->CP0_Cause &= ~(1 << CP0Ca_BD);
501 }
24c7b0e3 502 env->CP0_Status |= (1 << CP0St_EXL);
08fa4bab 503 env->hflags |= MIPS_HFLAG_64 | MIPS_HFLAG_CP0;
623a930e 504 env->hflags &= ~(MIPS_HFLAG_KSU);
6af0bf9c 505 }
c53f4a62 506 env->hflags &= ~MIPS_HFLAG_BMASK;
aa328add 507 if (env->CP0_Status & (1 << CP0St_BEV)) {
ead9360e 508 env->PC[env->current_tc] = (int32_t)0xBFC00200;
aa328add 509 } else {
ead9360e 510 env->PC[env->current_tc] = (int32_t)(env->CP0_EBase & ~0x3ff);
aa328add 511 }
ead9360e 512 env->PC[env->current_tc] += offset;
e58c8ba5 513 env->CP0_Cause = (env->CP0_Cause & ~(0x1f << CP0Ca_EC)) | (cause << CP0Ca_EC);
6af0bf9c
FB
514 break;
515 default:
516 if (logfile) {
517 fprintf(logfile, "Invalid MIPS exception %d. Exiting\n",
518 env->exception_index);
519 }
520 printf("Invalid MIPS exception %d. Exiting\n", env->exception_index);
521 exit(1);
522 }
6af0bf9c 523 if (logfile && env->exception_index != EXCP_EXT_INTERRUPT) {
3594c774
TS
524 fprintf(logfile, "%s: PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx " cause %d excp %d\n"
525 " S %08x C %08x A " TARGET_FMT_lx " D " TARGET_FMT_lx "\n",
ead9360e 526 __func__, env->PC[env->current_tc], env->CP0_EPC, cause, env->exception_index,
6af0bf9c
FB
527 env->CP0_Status, env->CP0_Cause, env->CP0_BadVAddr,
528 env->CP0_DEPC);
529 }
530 env->exception_index = EXCP_NONE;
531}
ca7c2b1b 532#endif /* !defined(CONFIG_USER_ONLY) */
2ee4aed8 533
29929e34 534void r4k_invalidate_tlb (CPUState *env, int idx, int use_extra)
2ee4aed8 535{
29929e34 536 r4k_tlb_t *tlb;
3b1c8be4
TS
537 target_ulong addr;
538 target_ulong end;
539 uint8_t ASID = env->CP0_EntryHi & 0xFF;
540 target_ulong mask;
2ee4aed8 541
ead9360e 542 tlb = &env->tlb->mmu.r4k.tlb[idx];
f2e9ebef 543 /* The qemu TLB is flushed when the ASID changes, so no need to
2ee4aed8
FB
544 flush these entries again. */
545 if (tlb->G == 0 && tlb->ASID != ASID) {
546 return;
547 }
548
ead9360e 549 if (use_extra && env->tlb->tlb_in_use < MIPS_TLB_MAX) {
2ee4aed8
FB
550 /* For tlbwr, we can shadow the discarded entry into
551 a new (fake) TLB entry, as long as the guest can not
552 tell that it's there. */
ead9360e
TS
553 env->tlb->mmu.r4k.tlb[env->tlb->tlb_in_use] = *tlb;
554 env->tlb->tlb_in_use++;
2ee4aed8
FB
555 return;
556 }
557
3b1c8be4 558 /* 1k pages are not supported. */
f2e9ebef 559 mask = tlb->PageMask | ~(TARGET_PAGE_MASK << 1);
3b1c8be4 560 if (tlb->V0) {
f2e9ebef 561 addr = tlb->VPN & ~mask;
540635ba 562#if defined(TARGET_MIPSN32) || defined(TARGET_MIPS64)
e034e2c3 563 if (addr >= (0xFFFFFFFF80000000ULL & env->SEGMask)) {
100ce988
TS
564 addr |= 0x3FFFFF0000000000ULL;
565 }
566#endif
3b1c8be4
TS
567 end = addr | (mask >> 1);
568 while (addr < end) {
569 tlb_flush_page (env, addr);
570 addr += TARGET_PAGE_SIZE;
571 }
572 }
573 if (tlb->V1) {
f2e9ebef 574 addr = (tlb->VPN & ~mask) | ((mask >> 1) + 1);
540635ba 575#if defined(TARGET_MIPSN32) || defined(TARGET_MIPS64)
e034e2c3 576 if (addr >= (0xFFFFFFFF80000000ULL & env->SEGMask)) {
100ce988
TS
577 addr |= 0x3FFFFF0000000000ULL;
578 }
579#endif
3b1c8be4
TS
580 end = addr | mask;
581 while (addr < end) {
582 tlb_flush_page (env, addr);
583 addr += TARGET_PAGE_SIZE;
584 }
585 }
2ee4aed8 586}