Statistics
| Branch: | Revision:

root / target-mips / helper.c @ f8ed7070

History | View | Annotate | Download (20.4 kB)

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