]> git.proxmox.com Git - mirror_qemu.git/blame - target-mips/helper.c
target-mips: distinguish between data load and instruction fetch
[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
8167ee88 17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
6af0bf9c 18 */
e37e863f
FB
19#include <stdarg.h>
20#include <stdlib.h>
21#include <stdio.h>
22#include <string.h>
23#include <inttypes.h>
24#include <signal.h>
e37e863f
FB
25
26#include "cpu.h"
4ef37e69 27#include "sysemu/kvm.h"
6af0bf9c 28
43057ab1
FB
29enum {
30 TLBRET_DIRTY = -4,
31 TLBRET_INVALID = -3,
32 TLBRET_NOMATCH = -2,
33 TLBRET_BADADDR = -1,
34 TLBRET_MATCH = 0
35};
36
3c7b48b7
PB
37#if !defined(CONFIG_USER_ONLY)
38
29929e34 39/* no MMU emulation */
a8170e5e 40int no_mmu_map_address (CPUMIPSState *env, hwaddr *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 */
a8170e5e 49int fixed_mmu_map_address (CPUMIPSState *env, hwaddr *physical, int *prot,
29929e34
TS
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 */
a8170e5e 67int r4k_map_address (CPUMIPSState *env, hwaddr *physical, int *prot,
29929e34 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 73 for (i = 0; i < env->tlb->tlb_in_use; i++) {
c227f099 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;
d26bc211 79#if 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;
9f6bcedb 90 if (rw != MMU_DATA_STORE || (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
a8170e5e 103static int get_physical_address (CPUMIPSState *env, hwaddr *physical,
4ef37e69 104 int *prot, target_ulong real_address,
43057ab1 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;
d26bc211 111#if 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 116 int ret = TLBRET_MATCH;
4ef37e69
JH
117 /* effective address (modified for KVM T&E kernel segments) */
118 target_ulong address = real_address;
43057ab1 119
6af0bf9c 120#if 0
93fcfe39 121 qemu_log("user mode %d h %08x\n", user_mode, env->hflags);
6af0bf9c 122#endif
b4ab4b4e 123
22010ce7
JH
124#define USEG_LIMIT 0x7FFFFFFFUL
125#define KSEG0_BASE 0x80000000UL
126#define KSEG1_BASE 0xA0000000UL
127#define KSEG2_BASE 0xC0000000UL
128#define KSEG3_BASE 0xE0000000UL
129
4ef37e69
JH
130#define KVM_KSEG0_BASE 0x40000000UL
131#define KVM_KSEG2_BASE 0x60000000UL
132
133 if (kvm_enabled()) {
134 /* KVM T&E adds guest kernel segments in useg */
135 if (real_address >= KVM_KSEG0_BASE) {
136 if (real_address < KVM_KSEG2_BASE) {
137 /* kseg0 */
138 address += KSEG0_BASE - KVM_KSEG0_BASE;
139 } else if (real_address <= USEG_LIMIT) {
140 /* kseg2/3 */
141 address += KSEG2_BASE - KVM_KSEG2_BASE;
142 }
143 }
144 }
145
22010ce7 146 if (address <= USEG_LIMIT) {
b4ab4b4e 147 /* useg */
996ba2cc 148 if (env->CP0_Status & (1 << CP0St_ERL)) {
29929e34 149 *physical = address & 0xFFFFFFFF;
6af0bf9c 150 *prot = PAGE_READ | PAGE_WRITE;
996ba2cc 151 } else {
4ef37e69 152 ret = env->tlb->map_address(env, physical, prot, real_address, rw, access_type);
6af0bf9c 153 }
d26bc211 154#if defined(TARGET_MIPS64)
89fc88da 155 } else if (address < 0x4000000000000000ULL) {
b4ab4b4e 156 /* xuseg */
6958549d 157 if (UX && address <= (0x3FFFFFFFFFFFFFFFULL & env->SEGMask)) {
4ef37e69 158 ret = env->tlb->map_address(env, physical, prot, real_address, rw, access_type);
6958549d
AJ
159 } else {
160 ret = TLBRET_BADADDR;
b4ab4b4e 161 }
89fc88da 162 } else if (address < 0x8000000000000000ULL) {
b4ab4b4e 163 /* xsseg */
6958549d
AJ
164 if ((supervisor_mode || kernel_mode) &&
165 SX && address <= (0x7FFFFFFFFFFFFFFFULL & env->SEGMask)) {
4ef37e69 166 ret = env->tlb->map_address(env, physical, prot, real_address, rw, access_type);
6958549d
AJ
167 } else {
168 ret = TLBRET_BADADDR;
b4ab4b4e 169 }
89fc88da 170 } else if (address < 0xC000000000000000ULL) {
b4ab4b4e 171 /* xkphys */
671880e6 172 if (kernel_mode && KX &&
6d35524c
TS
173 (address & 0x07FFFFFFFFFFFFFFULL) <= env->PAMask) {
174 *physical = address & env->PAMask;
b4ab4b4e 175 *prot = PAGE_READ | PAGE_WRITE;
6958549d
AJ
176 } else {
177 ret = TLBRET_BADADDR;
178 }
89fc88da 179 } else if (address < 0xFFFFFFFF80000000ULL) {
b4ab4b4e 180 /* xkseg */
6958549d
AJ
181 if (kernel_mode && KX &&
182 address <= (0xFFFFFFFF7FFFFFFFULL & env->SEGMask)) {
4ef37e69 183 ret = env->tlb->map_address(env, physical, prot, real_address, rw, access_type);
6958549d
AJ
184 } else {
185 ret = TLBRET_BADADDR;
186 }
b4ab4b4e 187#endif
22010ce7 188 } else if (address < (int32_t)KSEG1_BASE) {
6af0bf9c 189 /* kseg0 */
671880e6 190 if (kernel_mode) {
22010ce7 191 *physical = address - (int32_t)KSEG0_BASE;
671880e6
TS
192 *prot = PAGE_READ | PAGE_WRITE;
193 } else {
194 ret = TLBRET_BADADDR;
195 }
22010ce7 196 } else if (address < (int32_t)KSEG2_BASE) {
6af0bf9c 197 /* kseg1 */
671880e6 198 if (kernel_mode) {
22010ce7 199 *physical = address - (int32_t)KSEG1_BASE;
671880e6
TS
200 *prot = PAGE_READ | PAGE_WRITE;
201 } else {
202 ret = TLBRET_BADADDR;
203 }
22010ce7 204 } else if (address < (int32_t)KSEG3_BASE) {
89fc88da 205 /* sseg (kseg2) */
671880e6 206 if (supervisor_mode || kernel_mode) {
4ef37e69 207 ret = env->tlb->map_address(env, physical, prot, real_address, rw, access_type);
671880e6
TS
208 } else {
209 ret = TLBRET_BADADDR;
210 }
6af0bf9c
FB
211 } else {
212 /* kseg3 */
6af0bf9c 213 /* XXX: debug segment is not emulated */
671880e6 214 if (kernel_mode) {
4ef37e69 215 ret = env->tlb->map_address(env, physical, prot, real_address, rw, access_type);
671880e6
TS
216 } else {
217 ret = TLBRET_BADADDR;
218 }
6af0bf9c
FB
219 }
220#if 0
951fab99 221 qemu_log(TARGET_FMT_lx " %d %d => %" HWADDR_PRIx " %d (%d)\n",
93fcfe39 222 address, rw, access_type, *physical, *prot, ret);
6af0bf9c
FB
223#endif
224
225 return ret;
226}
932e71cd 227#endif
6af0bf9c 228
7db13fae 229static void raise_mmu_exception(CPUMIPSState *env, target_ulong address,
1147e189
AJ
230 int rw, int tlb_error)
231{
27103424 232 CPUState *cs = CPU(mips_env_get_cpu(env));
1147e189
AJ
233 int exception = 0, error_code = 0;
234
235 switch (tlb_error) {
236 default:
237 case TLBRET_BADADDR:
238 /* Reference to kernel address from user mode or supervisor mode */
239 /* Reference to supervisor address from user mode */
9f6bcedb 240 if (rw == MMU_DATA_STORE) {
1147e189 241 exception = EXCP_AdES;
9f6bcedb 242 } else {
1147e189 243 exception = EXCP_AdEL;
9f6bcedb 244 }
1147e189
AJ
245 break;
246 case TLBRET_NOMATCH:
247 /* No TLB match for a mapped address */
9f6bcedb 248 if (rw == MMU_DATA_STORE) {
1147e189 249 exception = EXCP_TLBS;
9f6bcedb 250 } else {
1147e189 251 exception = EXCP_TLBL;
9f6bcedb 252 }
1147e189
AJ
253 error_code = 1;
254 break;
255 case TLBRET_INVALID:
256 /* TLB match with no valid bit */
9f6bcedb 257 if (rw == MMU_DATA_STORE) {
1147e189 258 exception = EXCP_TLBS;
9f6bcedb 259 } else {
1147e189 260 exception = EXCP_TLBL;
9f6bcedb 261 }
1147e189
AJ
262 break;
263 case TLBRET_DIRTY:
264 /* TLB match but 'D' bit is cleared */
265 exception = EXCP_LTLBL;
266 break;
267
268 }
269 /* Raise exception */
270 env->CP0_BadVAddr = address;
271 env->CP0_Context = (env->CP0_Context & ~0x007fffff) |
272 ((address >> 9) & 0x007ffff0);
273 env->CP0_EntryHi =
274 (env->CP0_EntryHi & 0xFF) | (address & (TARGET_PAGE_MASK << 1));
275#if defined(TARGET_MIPS64)
276 env->CP0_EntryHi &= env->SEGMask;
277 env->CP0_XContext = (env->CP0_XContext & ((~0ULL) << (env->SEGBITS - 7))) |
278 ((address & 0xC00000000000ULL) >> (55 - env->SEGBITS)) |
279 ((address & ((1ULL << env->SEGBITS) - 1) & 0xFFFFFFFFFFFFE000ULL) >> 9);
280#endif
27103424 281 cs->exception_index = exception;
1147e189
AJ
282 env->error_code = error_code;
283}
284
4fcc562b 285#if !defined(CONFIG_USER_ONLY)
00b941e5 286hwaddr mips_cpu_get_phys_page_debug(CPUState *cs, vaddr addr)
6af0bf9c 287{
00b941e5 288 MIPSCPU *cpu = MIPS_CPU(cs);
a8170e5e 289 hwaddr phys_addr;
932e71cd 290 int prot;
6af0bf9c 291
00b941e5
AF
292 if (get_physical_address(&cpu->env, &phys_addr, &prot, addr, 0,
293 ACCESS_INT) != 0) {
932e71cd 294 return -1;
00b941e5 295 }
932e71cd 296 return phys_addr;
6af0bf9c 297}
4fcc562b 298#endif
6af0bf9c 299
7510454e
AF
300int mips_cpu_handle_mmu_fault(CPUState *cs, vaddr address, int rw,
301 int mmu_idx)
6af0bf9c 302{
7510454e
AF
303 MIPSCPU *cpu = MIPS_CPU(cs);
304 CPUMIPSState *env = &cpu->env;
932e71cd 305#if !defined(CONFIG_USER_ONLY)
a8170e5e 306 hwaddr physical;
6af0bf9c 307 int prot;
6af0bf9c 308 int access_type;
99e43d36 309#endif
6af0bf9c
FB
310 int ret = 0;
311
4ad40f36 312#if 0
7510454e 313 log_cpu_state(cs, 0);
4ad40f36 314#endif
7510454e 315 qemu_log("%s pc " TARGET_FMT_lx " ad %" VADDR_PRIx " rw %d mmu_idx %d\n",
97b348e7 316 __func__, env->active_tc.PC, address, rw, mmu_idx);
4ad40f36 317
6af0bf9c 318 /* data access */
99e43d36 319#if !defined(CONFIG_USER_ONLY)
6af0bf9c
FB
320 /* XXX: put correct access by using cpu_restore_state()
321 correctly */
322 access_type = ACCESS_INT;
6af0bf9c
FB
323 ret = get_physical_address(env, &physical, &prot,
324 address, rw, access_type);
7510454e
AF
325 qemu_log("%s address=%" VADDR_PRIx " ret %d physical " TARGET_FMT_plx
326 " prot %d\n",
327 __func__, address, ret, physical, prot);
43057ab1 328 if (ret == TLBRET_MATCH) {
0c591eb0 329 tlb_set_page(cs, address & TARGET_PAGE_MASK,
99e43d36
AJ
330 physical & TARGET_PAGE_MASK, prot | PAGE_EXEC,
331 mmu_idx, TARGET_PAGE_SIZE);
332 ret = 0;
932e71cd
AJ
333 } else if (ret < 0)
334#endif
335 {
1147e189 336 raise_mmu_exception(env, address, rw, ret);
6af0bf9c
FB
337 ret = 1;
338 }
339
340 return ret;
341}
342
25b91e32 343#if !defined(CONFIG_USER_ONLY)
a8170e5e 344hwaddr cpu_mips_translate_address(CPUMIPSState *env, target_ulong address, int rw)
25b91e32 345{
a8170e5e 346 hwaddr physical;
25b91e32
AJ
347 int prot;
348 int access_type;
349 int ret = 0;
350
25b91e32
AJ
351 /* data access */
352 access_type = ACCESS_INT;
353 ret = get_physical_address(env, &physical, &prot,
354 address, rw, access_type);
355 if (ret != TLBRET_MATCH) {
356 raise_mmu_exception(env, address, rw, ret);
c36bbb28
AJ
357 return -1LL;
358 } else {
359 return physical;
25b91e32 360 }
25b91e32
AJ
361}
362#endif
363
9a5d878f
TS
364static const char * const excp_names[EXCP_LAST + 1] = {
365 [EXCP_RESET] = "reset",
366 [EXCP_SRESET] = "soft reset",
367 [EXCP_DSS] = "debug single step",
368 [EXCP_DINT] = "debug interrupt",
369 [EXCP_NMI] = "non-maskable interrupt",
370 [EXCP_MCHECK] = "machine check",
371 [EXCP_EXT_INTERRUPT] = "interrupt",
372 [EXCP_DFWATCH] = "deferred watchpoint",
373 [EXCP_DIB] = "debug instruction breakpoint",
374 [EXCP_IWATCH] = "instruction fetch watchpoint",
375 [EXCP_AdEL] = "address error load",
376 [EXCP_AdES] = "address error store",
377 [EXCP_TLBF] = "TLB refill",
378 [EXCP_IBE] = "instruction bus error",
379 [EXCP_DBp] = "debug breakpoint",
380 [EXCP_SYSCALL] = "syscall",
381 [EXCP_BREAK] = "break",
382 [EXCP_CpU] = "coprocessor unusable",
383 [EXCP_RI] = "reserved instruction",
384 [EXCP_OVERFLOW] = "arithmetic overflow",
385 [EXCP_TRAP] = "trap",
386 [EXCP_FPE] = "floating point",
387 [EXCP_DDBS] = "debug data break store",
388 [EXCP_DWATCH] = "data watchpoint",
389 [EXCP_LTLBL] = "TLB modify",
390 [EXCP_TLBL] = "TLB load",
391 [EXCP_TLBS] = "TLB store",
392 [EXCP_DBE] = "data bus error",
393 [EXCP_DDBL] = "debug data break load",
394 [EXCP_THREAD] = "thread",
395 [EXCP_MDMX] = "MDMX",
396 [EXCP_C2E] = "precise coprocessor 2",
397 [EXCP_CACHE] = "cache error",
14e51cc7 398};
14e51cc7 399
1239b472 400target_ulong exception_resume_pc (CPUMIPSState *env)
32188a03
NF
401{
402 target_ulong bad_pc;
403 target_ulong isa_mode;
404
405 isa_mode = !!(env->hflags & MIPS_HFLAG_M16);
406 bad_pc = env->active_tc.PC | isa_mode;
407 if (env->hflags & MIPS_HFLAG_BMASK) {
408 /* If the exception was raised from a delay slot, come back to
409 the jump. */
410 bad_pc -= (env->hflags & MIPS_HFLAG_B16 ? 2 : 4);
411 }
412
413 return bad_pc;
414}
bbfa8f72 415
1239b472 416#if !defined(CONFIG_USER_ONLY)
7db13fae 417static void set_hflags_for_handler (CPUMIPSState *env)
bbfa8f72
NF
418{
419 /* Exception handlers are entered in 32-bit mode. */
420 env->hflags &= ~(MIPS_HFLAG_M16);
421 /* ...except that microMIPS lets you choose. */
422 if (env->insn_flags & ASE_MICROMIPS) {
423 env->hflags |= (!!(env->CP0_Config3
424 & (1 << CP0C3_ISA_ON_EXC))
425 << MIPS_HFLAG_M16_SHIFT);
426 }
427}
32188a03
NF
428#endif
429
97a8ea5a 430void mips_cpu_do_interrupt(CPUState *cs)
6af0bf9c 431{
27103424 432#if !defined(CONFIG_USER_ONLY)
97a8ea5a
AF
433 MIPSCPU *cpu = MIPS_CPU(cs);
434 CPUMIPSState *env = &cpu->env;
932e71cd
AJ
435 target_ulong offset;
436 int cause = -1;
437 const char *name;
100ce988 438
27103424
AF
439 if (qemu_log_enabled() && cs->exception_index != EXCP_EXT_INTERRUPT) {
440 if (cs->exception_index < 0 || cs->exception_index > EXCP_LAST) {
932e71cd 441 name = "unknown";
27103424
AF
442 } else {
443 name = excp_names[cs->exception_index];
444 }
b67bfe8d 445
93fcfe39
AL
446 qemu_log("%s enter: PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx " %s exception\n",
447 __func__, env->active_tc.PC, env->CP0_EPC, name);
932e71cd 448 }
27103424
AF
449 if (cs->exception_index == EXCP_EXT_INTERRUPT &&
450 (env->hflags & MIPS_HFLAG_DM)) {
451 cs->exception_index = EXCP_DINT;
452 }
932e71cd 453 offset = 0x180;
27103424 454 switch (cs->exception_index) {
932e71cd
AJ
455 case EXCP_DSS:
456 env->CP0_Debug |= 1 << CP0DB_DSS;
457 /* Debug single step cannot be raised inside a delay slot and
458 resume will always occur on the next instruction
459 (but we assume the pc has always been updated during
460 code translation). */
32188a03 461 env->CP0_DEPC = env->active_tc.PC | !!(env->hflags & MIPS_HFLAG_M16);
932e71cd
AJ
462 goto enter_debug_mode;
463 case EXCP_DINT:
464 env->CP0_Debug |= 1 << CP0DB_DINT;
465 goto set_DEPC;
466 case EXCP_DIB:
467 env->CP0_Debug |= 1 << CP0DB_DIB;
468 goto set_DEPC;
469 case EXCP_DBp:
470 env->CP0_Debug |= 1 << CP0DB_DBp;
471 goto set_DEPC;
472 case EXCP_DDBS:
473 env->CP0_Debug |= 1 << CP0DB_DDBS;
474 goto set_DEPC;
475 case EXCP_DDBL:
476 env->CP0_Debug |= 1 << CP0DB_DDBL;
477 set_DEPC:
32188a03
NF
478 env->CP0_DEPC = exception_resume_pc(env);
479 env->hflags &= ~MIPS_HFLAG_BMASK;
0eaef5aa 480 enter_debug_mode:
932e71cd
AJ
481 env->hflags |= MIPS_HFLAG_DM | MIPS_HFLAG_64 | MIPS_HFLAG_CP0;
482 env->hflags &= ~(MIPS_HFLAG_KSU);
483 /* EJTAG probe trap enable is not implemented... */
484 if (!(env->CP0_Status & (1 << CP0St_EXL)))
f45cb2f4 485 env->CP0_Cause &= ~(1U << CP0Ca_BD);
932e71cd 486 env->active_tc.PC = (int32_t)0xBFC00480;
bbfa8f72 487 set_hflags_for_handler(env);
932e71cd
AJ
488 break;
489 case EXCP_RESET:
fca1be7c 490 cpu_reset(CPU(cpu));
932e71cd
AJ
491 break;
492 case EXCP_SRESET:
493 env->CP0_Status |= (1 << CP0St_SR);
494 memset(env->CP0_WatchLo, 0, sizeof(*env->CP0_WatchLo));
495 goto set_error_EPC;
496 case EXCP_NMI:
497 env->CP0_Status |= (1 << CP0St_NMI);
0eaef5aa 498 set_error_EPC:
32188a03
NF
499 env->CP0_ErrorEPC = exception_resume_pc(env);
500 env->hflags &= ~MIPS_HFLAG_BMASK;
932e71cd
AJ
501 env->CP0_Status |= (1 << CP0St_ERL) | (1 << CP0St_BEV);
502 env->hflags |= MIPS_HFLAG_64 | MIPS_HFLAG_CP0;
503 env->hflags &= ~(MIPS_HFLAG_KSU);
504 if (!(env->CP0_Status & (1 << CP0St_EXL)))
f45cb2f4 505 env->CP0_Cause &= ~(1U << CP0Ca_BD);
932e71cd 506 env->active_tc.PC = (int32_t)0xBFC00000;
bbfa8f72 507 set_hflags_for_handler(env);
932e71cd
AJ
508 break;
509 case EXCP_EXT_INTERRUPT:
510 cause = 0;
511 if (env->CP0_Cause & (1 << CP0Ca_IV))
512 offset = 0x200;
138afb02
EI
513
514 if (env->CP0_Config3 & ((1 << CP0C3_VInt) | (1 << CP0C3_VEIC))) {
515 /* Vectored Interrupts. */
516 unsigned int spacing;
517 unsigned int vector;
518 unsigned int pending = (env->CP0_Cause & CP0Ca_IP_mask) >> 8;
519
e4280973 520 pending &= env->CP0_Status >> 8;
138afb02
EI
521 /* Compute the Vector Spacing. */
522 spacing = (env->CP0_IntCtl >> CP0IntCtl_VS) & ((1 << 6) - 1);
523 spacing <<= 5;
524
525 if (env->CP0_Config3 & (1 << CP0C3_VInt)) {
526 /* For VInt mode, the MIPS computes the vector internally. */
e4280973
EI
527 for (vector = 7; vector > 0; vector--) {
528 if (pending & (1 << vector)) {
138afb02
EI
529 /* Found it. */
530 break;
531 }
138afb02
EI
532 }
533 } else {
534 /* For VEIC mode, the external interrupt controller feeds the
e7d81004 535 vector through the CP0Cause IP lines. */
138afb02
EI
536 vector = pending;
537 }
538 offset = 0x200 + vector * spacing;
539 }
932e71cd
AJ
540 goto set_EPC;
541 case EXCP_LTLBL:
542 cause = 1;
543 goto set_EPC;
544 case EXCP_TLBL:
545 cause = 2;
546 if (env->error_code == 1 && !(env->CP0_Status & (1 << CP0St_EXL))) {
0eaef5aa 547#if defined(TARGET_MIPS64)
932e71cd
AJ
548 int R = env->CP0_BadVAddr >> 62;
549 int UX = (env->CP0_Status & (1 << CP0St_UX)) != 0;
550 int SX = (env->CP0_Status & (1 << CP0St_SX)) != 0;
551 int KX = (env->CP0_Status & (1 << CP0St_KX)) != 0;
0eaef5aa 552
3fc00a7b
AJ
553 if (((R == 0 && UX) || (R == 1 && SX) || (R == 3 && KX)) &&
554 (!(env->insn_flags & (INSN_LOONGSON2E | INSN_LOONGSON2F))))
932e71cd
AJ
555 offset = 0x080;
556 else
0eaef5aa 557#endif
932e71cd
AJ
558 offset = 0x000;
559 }
560 goto set_EPC;
561 case EXCP_TLBS:
562 cause = 3;
563 if (env->error_code == 1 && !(env->CP0_Status & (1 << CP0St_EXL))) {
0eaef5aa 564#if defined(TARGET_MIPS64)
932e71cd
AJ
565 int R = env->CP0_BadVAddr >> 62;
566 int UX = (env->CP0_Status & (1 << CP0St_UX)) != 0;
567 int SX = (env->CP0_Status & (1 << CP0St_SX)) != 0;
568 int KX = (env->CP0_Status & (1 << CP0St_KX)) != 0;
0eaef5aa 569
3fc00a7b
AJ
570 if (((R == 0 && UX) || (R == 1 && SX) || (R == 3 && KX)) &&
571 (!(env->insn_flags & (INSN_LOONGSON2E | INSN_LOONGSON2F))))
932e71cd
AJ
572 offset = 0x080;
573 else
0eaef5aa 574#endif
932e71cd
AJ
575 offset = 0x000;
576 }
577 goto set_EPC;
578 case EXCP_AdEL:
579 cause = 4;
580 goto set_EPC;
581 case EXCP_AdES:
582 cause = 5;
583 goto set_EPC;
584 case EXCP_IBE:
585 cause = 6;
586 goto set_EPC;
587 case EXCP_DBE:
588 cause = 7;
589 goto set_EPC;
590 case EXCP_SYSCALL:
591 cause = 8;
592 goto set_EPC;
593 case EXCP_BREAK:
594 cause = 9;
595 goto set_EPC;
596 case EXCP_RI:
597 cause = 10;
598 goto set_EPC;
599 case EXCP_CpU:
600 cause = 11;
601 env->CP0_Cause = (env->CP0_Cause & ~(0x3 << CP0Ca_CE)) |
602 (env->error_code << CP0Ca_CE);
603 goto set_EPC;
604 case EXCP_OVERFLOW:
605 cause = 12;
606 goto set_EPC;
607 case EXCP_TRAP:
608 cause = 13;
609 goto set_EPC;
610 case EXCP_FPE:
611 cause = 15;
612 goto set_EPC;
613 case EXCP_C2E:
614 cause = 18;
615 goto set_EPC;
616 case EXCP_MDMX:
617 cause = 22;
618 goto set_EPC;
619 case EXCP_DWATCH:
620 cause = 23;
621 /* XXX: TODO: manage defered watch exceptions */
622 goto set_EPC;
623 case EXCP_MCHECK:
624 cause = 24;
625 goto set_EPC;
626 case EXCP_THREAD:
627 cause = 25;
628 goto set_EPC;
853c3240
JL
629 case EXCP_DSPDIS:
630 cause = 26;
631 goto set_EPC;
932e71cd
AJ
632 case EXCP_CACHE:
633 cause = 30;
634 if (env->CP0_Status & (1 << CP0St_BEV)) {
635 offset = 0x100;
636 } else {
637 offset = 0x20000100;
638 }
0eaef5aa 639 set_EPC:
932e71cd 640 if (!(env->CP0_Status & (1 << CP0St_EXL))) {
32188a03 641 env->CP0_EPC = exception_resume_pc(env);
932e71cd 642 if (env->hflags & MIPS_HFLAG_BMASK) {
f45cb2f4 643 env->CP0_Cause |= (1U << CP0Ca_BD);
0eaef5aa 644 } else {
f45cb2f4 645 env->CP0_Cause &= ~(1U << CP0Ca_BD);
0eaef5aa 646 }
932e71cd
AJ
647 env->CP0_Status |= (1 << CP0St_EXL);
648 env->hflags |= MIPS_HFLAG_64 | MIPS_HFLAG_CP0;
649 env->hflags &= ~(MIPS_HFLAG_KSU);
6af0bf9c 650 }
932e71cd
AJ
651 env->hflags &= ~MIPS_HFLAG_BMASK;
652 if (env->CP0_Status & (1 << CP0St_BEV)) {
653 env->active_tc.PC = (int32_t)0xBFC00200;
654 } else {
655 env->active_tc.PC = (int32_t)(env->CP0_EBase & ~0x3ff);
6af0bf9c 656 }
932e71cd 657 env->active_tc.PC += offset;
bbfa8f72 658 set_hflags_for_handler(env);
932e71cd
AJ
659 env->CP0_Cause = (env->CP0_Cause & ~(0x1f << CP0Ca_EC)) | (cause << CP0Ca_EC);
660 break;
661 default:
27103424
AF
662 qemu_log("Invalid MIPS exception %d. Exiting\n", cs->exception_index);
663 printf("Invalid MIPS exception %d. Exiting\n", cs->exception_index);
932e71cd
AJ
664 exit(1);
665 }
27103424 666 if (qemu_log_enabled() && cs->exception_index != EXCP_EXT_INTERRUPT) {
93fcfe39 667 qemu_log("%s: PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx " cause %d\n"
932e71cd
AJ
668 " S %08x C %08x A " TARGET_FMT_lx " D " TARGET_FMT_lx "\n",
669 __func__, env->active_tc.PC, env->CP0_EPC, cause,
670 env->CP0_Status, env->CP0_Cause, env->CP0_BadVAddr,
671 env->CP0_DEPC);
6af0bf9c 672 }
932e71cd 673#endif
27103424 674 cs->exception_index = EXCP_NONE;
6af0bf9c 675}
2ee4aed8 676
fa4faba4
RH
677bool mips_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
678{
679 if (interrupt_request & CPU_INTERRUPT_HARD) {
680 MIPSCPU *cpu = MIPS_CPU(cs);
681 CPUMIPSState *env = &cpu->env;
682
683 if (cpu_mips_hw_interrupts_pending(env)) {
684 /* Raise it */
685 cs->exception_index = EXCP_EXT_INTERRUPT;
686 env->error_code = 0;
687 mips_cpu_do_interrupt(cs);
688 return true;
689 }
690 }
691 return false;
692}
693
3c7b48b7 694#if !defined(CONFIG_USER_ONLY)
7db13fae 695void r4k_invalidate_tlb (CPUMIPSState *env, int idx, int use_extra)
2ee4aed8 696{
31b030d4
AF
697 MIPSCPU *cpu = mips_env_get_cpu(env);
698 CPUState *cs;
c227f099 699 r4k_tlb_t *tlb;
3b1c8be4
TS
700 target_ulong addr;
701 target_ulong end;
702 uint8_t ASID = env->CP0_EntryHi & 0xFF;
703 target_ulong mask;
2ee4aed8 704
ead9360e 705 tlb = &env->tlb->mmu.r4k.tlb[idx];
f2e9ebef 706 /* The qemu TLB is flushed when the ASID changes, so no need to
2ee4aed8
FB
707 flush these entries again. */
708 if (tlb->G == 0 && tlb->ASID != ASID) {
709 return;
710 }
711
ead9360e 712 if (use_extra && env->tlb->tlb_in_use < MIPS_TLB_MAX) {
2ee4aed8 713 /* For tlbwr, we can shadow the discarded entry into
6958549d
AJ
714 a new (fake) TLB entry, as long as the guest can not
715 tell that it's there. */
ead9360e
TS
716 env->tlb->mmu.r4k.tlb[env->tlb->tlb_in_use] = *tlb;
717 env->tlb->tlb_in_use++;
2ee4aed8
FB
718 return;
719 }
720
3b1c8be4 721 /* 1k pages are not supported. */
f2e9ebef 722 mask = tlb->PageMask | ~(TARGET_PAGE_MASK << 1);
3b1c8be4 723 if (tlb->V0) {
31b030d4 724 cs = CPU(cpu);
f2e9ebef 725 addr = tlb->VPN & ~mask;
d26bc211 726#if defined(TARGET_MIPS64)
e034e2c3 727 if (addr >= (0xFFFFFFFF80000000ULL & env->SEGMask)) {
100ce988
TS
728 addr |= 0x3FFFFF0000000000ULL;
729 }
730#endif
3b1c8be4
TS
731 end = addr | (mask >> 1);
732 while (addr < end) {
31b030d4 733 tlb_flush_page(cs, addr);
3b1c8be4
TS
734 addr += TARGET_PAGE_SIZE;
735 }
736 }
737 if (tlb->V1) {
31b030d4 738 cs = CPU(cpu);
f2e9ebef 739 addr = (tlb->VPN & ~mask) | ((mask >> 1) + 1);
d26bc211 740#if defined(TARGET_MIPS64)
e034e2c3 741 if (addr >= (0xFFFFFFFF80000000ULL & env->SEGMask)) {
100ce988
TS
742 addr |= 0x3FFFFF0000000000ULL;
743 }
744#endif
3b1c8be4 745 end = addr | mask;
53715e48 746 while (addr - 1 < end) {
31b030d4 747 tlb_flush_page(cs, addr);
3b1c8be4
TS
748 addr += TARGET_PAGE_SIZE;
749 }
750 }
2ee4aed8 751}
3c7b48b7 752#endif