Statistics
| Branch: | Revision:

root / target-mips / helper.c @ 5fafdf24

History | View | Annotate | Download (18.7 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 100ce988 ths
#ifdef 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 b4ab4b4e ths
#ifdef TARGET_MIPS64
110 b4ab4b4e ths
    int UX = (env->CP0_Status & (1 << CP0St_UX)) != 0;
111 b4ab4b4e ths
    int SX = (env->CP0_Status & (1 << CP0St_SX)) != 0;
112 b4ab4b4e ths
    int KX = (env->CP0_Status & (1 << CP0St_KX)) != 0;
113 b4ab4b4e ths
#endif
114 43057ab1 bellard
    int ret = TLBRET_MATCH;
115 43057ab1 bellard
116 6af0bf9c bellard
#if 0
117 6af0bf9c bellard
    if (logfile) {
118 6af0bf9c bellard
        fprintf(logfile, "user mode %d h %08x\n",
119 6af0bf9c bellard
                user_mode, env->hflags);
120 6af0bf9c bellard
    }
121 6af0bf9c bellard
#endif
122 b4ab4b4e ths
123 b4ab4b4e ths
#ifdef TARGET_MIPS64
124 b4ab4b4e ths
    if (user_mode && address > 0x3FFFFFFFFFFFFFFFULL)
125 b4ab4b4e ths
        return TLBRET_BADADDR;
126 b4ab4b4e ths
#else
127 6af0bf9c bellard
    if (user_mode && address > 0x7FFFFFFFUL)
128 43057ab1 bellard
        return TLBRET_BADADDR;
129 b4ab4b4e ths
#endif
130 b4ab4b4e ths
131 b4ab4b4e ths
    if (address <= (int32_t)0x7FFFFFFFUL) {
132 b4ab4b4e ths
        /* useg */
133 996ba2cc ths
        if (env->CP0_Status & (1 << CP0St_ERL)) {
134 29929e34 ths
            *physical = address & 0xFFFFFFFF;
135 6af0bf9c bellard
            *prot = PAGE_READ | PAGE_WRITE;
136 996ba2cc ths
        } else {
137 ead9360e ths
            ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
138 6af0bf9c bellard
        }
139 b4ab4b4e ths
#ifdef TARGET_MIPS64
140 b4ab4b4e ths
/*
141 b4ab4b4e ths
   XXX: Assuming :
142 b4ab4b4e ths
   - PABITS = 36 (correct for MIPS64R1)
143 b4ab4b4e ths
*/
144 b4ab4b4e ths
    } else if (address < 0x3FFFFFFFFFFFFFFFULL) {
145 b4ab4b4e ths
        /* xuseg */
146 e034e2c3 ths
        if (UX && address < (0x3FFFFFFFFFFFFFFFULL & env->SEGMask)) {
147 ead9360e ths
            ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
148 b4ab4b4e ths
        } else {
149 b4ab4b4e ths
            ret = TLBRET_BADADDR;
150 b4ab4b4e ths
        }
151 b4ab4b4e ths
    } else if (address < 0x7FFFFFFFFFFFFFFFULL) {
152 b4ab4b4e ths
        /* xsseg */
153 e034e2c3 ths
        if (SX && address < (0x7FFFFFFFFFFFFFFFULL & env->SEGMask)) {
154 ead9360e ths
            ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
155 b4ab4b4e ths
        } else {
156 b4ab4b4e ths
            ret = TLBRET_BADADDR;
157 b4ab4b4e ths
        }
158 b4ab4b4e ths
    } else if (address < 0xBFFFFFFFFFFFFFFFULL) {
159 b4ab4b4e ths
        /* xkphys */
160 b4ab4b4e ths
        /* XXX: check supervisor mode */
161 e034e2c3 ths
        if (KX && (address & 0x07FFFFFFFFFFFFFFULL) < 0X0000000FFFFFFFFFULL)
162 b4ab4b4e ths
        {
163 e034e2c3 ths
            *physical = address & 0X0000000FFFFFFFFFULL;
164 b4ab4b4e ths
            *prot = PAGE_READ | PAGE_WRITE;
165 b4ab4b4e ths
        } else {
166 b4ab4b4e ths
            ret = TLBRET_BADADDR;
167 b4ab4b4e ths
        }
168 b4ab4b4e ths
    } else if (address < 0xFFFFFFFF7FFFFFFFULL) {
169 b4ab4b4e ths
        /* xkseg */
170 b4ab4b4e ths
        /* XXX: check supervisor mode */
171 e034e2c3 ths
        if (KX && address < (0xFFFFFFFF7FFFFFFFULL & env->SEGMask)) {
172 ead9360e ths
            ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
173 b4ab4b4e ths
        } else {
174 b4ab4b4e ths
            ret = TLBRET_BADADDR;
175 b4ab4b4e ths
        }
176 b4ab4b4e ths
#endif
177 5dc4b744 ths
    } else if (address < (int32_t)0xA0000000UL) {
178 6af0bf9c bellard
        /* kseg0 */
179 6af0bf9c bellard
        /* XXX: check supervisor mode */
180 5dc4b744 ths
        *physical = address - (int32_t)0x80000000UL;
181 6af0bf9c bellard
        *prot = PAGE_READ | PAGE_WRITE;
182 5dc4b744 ths
    } else if (address < (int32_t)0xC0000000UL) {
183 6af0bf9c bellard
        /* kseg1 */
184 6af0bf9c bellard
        /* XXX: check supervisor mode */
185 5dc4b744 ths
        *physical = address - (int32_t)0xA0000000UL;
186 6af0bf9c bellard
        *prot = PAGE_READ | PAGE_WRITE;
187 5dc4b744 ths
    } else if (address < (int32_t)0xE0000000UL) {
188 6af0bf9c bellard
        /* kseg2 */
189 ead9360e ths
        ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
190 6af0bf9c bellard
    } else {
191 6af0bf9c bellard
        /* kseg3 */
192 6af0bf9c bellard
        /* XXX: check supervisor mode */
193 6af0bf9c bellard
        /* XXX: debug segment is not emulated */
194 ead9360e ths
        ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
195 6af0bf9c bellard
    }
196 6af0bf9c bellard
#if 0
197 6af0bf9c bellard
    if (logfile) {
198 3594c774 ths
        fprintf(logfile, TARGET_FMT_lx " %d %d => " TARGET_FMT_lx " %d (%d)\n",
199 c570fd16 ths
                address, rw, access_type, *physical, *prot, ret);
200 6af0bf9c bellard
    }
201 6af0bf9c bellard
#endif
202 6af0bf9c bellard
203 6af0bf9c bellard
    return ret;
204 6af0bf9c bellard
}
205 6af0bf9c bellard
206 5fafdf24 ths
#if defined(CONFIG_USER_ONLY)
207 9b3c35e0 j_mayer
target_phys_addr_t cpu_get_phys_page_debug(CPUState *env, target_ulong addr)
208 6af0bf9c bellard
{
209 6af0bf9c bellard
    return addr;
210 6af0bf9c bellard
}
211 6af0bf9c bellard
#else
212 9b3c35e0 j_mayer
target_phys_addr_t cpu_get_phys_page_debug(CPUState *env, target_ulong addr)
213 6af0bf9c bellard
{
214 6af0bf9c bellard
    target_ulong phys_addr;
215 6af0bf9c bellard
    int prot;
216 6af0bf9c bellard
217 6af0bf9c bellard
    if (get_physical_address(env, &phys_addr, &prot, addr, 0, ACCESS_INT) != 0)
218 6af0bf9c bellard
        return -1;
219 6af0bf9c bellard
    return phys_addr;
220 6af0bf9c bellard
}
221 6af0bf9c bellard
222 6af0bf9c bellard
void cpu_mips_init_mmu (CPUState *env)
223 6af0bf9c bellard
{
224 6af0bf9c bellard
}
225 6af0bf9c bellard
#endif /* !defined(CONFIG_USER_ONLY) */
226 6af0bf9c bellard
227 6af0bf9c bellard
int cpu_mips_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
228 6af0bf9c bellard
                               int is_user, int is_softmmu)
229 6af0bf9c bellard
{
230 6af0bf9c bellard
    target_ulong physical;
231 6af0bf9c bellard
    int prot;
232 6af0bf9c bellard
    int exception = 0, error_code = 0;
233 6af0bf9c bellard
    int access_type;
234 6af0bf9c bellard
    int ret = 0;
235 6af0bf9c bellard
236 6af0bf9c bellard
    if (logfile) {
237 4ad40f36 bellard
#if 0
238 6af0bf9c bellard
        cpu_dump_state(env, logfile, fprintf, 0);
239 4ad40f36 bellard
#endif
240 3594c774 ths
        fprintf(logfile, "%s pc " TARGET_FMT_lx " ad " TARGET_FMT_lx " rw %d is_user %d smmu %d\n",
241 ead9360e ths
                __func__, env->PC[env->current_tc], address, rw, is_user, is_softmmu);
242 6af0bf9c bellard
    }
243 4ad40f36 bellard
244 4ad40f36 bellard
    rw &= 1;
245 4ad40f36 bellard
246 6af0bf9c bellard
    /* data access */
247 6af0bf9c bellard
    /* XXX: put correct access by using cpu_restore_state()
248 6af0bf9c bellard
       correctly */
249 6af0bf9c bellard
    access_type = ACCESS_INT;
250 6af0bf9c bellard
    if (env->user_mode_only) {
251 6af0bf9c bellard
        /* user mode only emulation */
252 43057ab1 bellard
        ret = TLBRET_NOMATCH;
253 6af0bf9c bellard
        goto do_fault;
254 6af0bf9c bellard
    }
255 6af0bf9c bellard
    ret = get_physical_address(env, &physical, &prot,
256 6af0bf9c bellard
                               address, rw, access_type);
257 6af0bf9c bellard
    if (logfile) {
258 3594c774 ths
        fprintf(logfile, "%s address=" TARGET_FMT_lx " ret %d physical " TARGET_FMT_lx " prot %d\n",
259 6af0bf9c bellard
                __func__, address, ret, physical, prot);
260 6af0bf9c bellard
    }
261 43057ab1 bellard
    if (ret == TLBRET_MATCH) {
262 43057ab1 bellard
       ret = tlb_set_page(env, address & TARGET_PAGE_MASK,
263 43057ab1 bellard
                          physical & TARGET_PAGE_MASK, prot,
264 43057ab1 bellard
                          is_user, is_softmmu);
265 6af0bf9c bellard
    } else if (ret < 0) {
266 6af0bf9c bellard
    do_fault:
267 6af0bf9c bellard
        switch (ret) {
268 6af0bf9c bellard
        default:
269 43057ab1 bellard
        case TLBRET_BADADDR:
270 6af0bf9c bellard
            /* Reference to kernel address from user mode or supervisor mode */
271 6af0bf9c bellard
            /* Reference to supervisor address from user mode */
272 6af0bf9c bellard
            if (rw)
273 6af0bf9c bellard
                exception = EXCP_AdES;
274 6af0bf9c bellard
            else
275 6af0bf9c bellard
                exception = EXCP_AdEL;
276 6af0bf9c bellard
            break;
277 43057ab1 bellard
        case TLBRET_NOMATCH:
278 6af0bf9c bellard
            /* No TLB match for a mapped address */
279 6af0bf9c bellard
            if (rw)
280 6af0bf9c bellard
                exception = EXCP_TLBS;
281 6af0bf9c bellard
            else
282 6af0bf9c bellard
                exception = EXCP_TLBL;
283 6af0bf9c bellard
            error_code = 1;
284 6af0bf9c bellard
            break;
285 43057ab1 bellard
        case TLBRET_INVALID:
286 6af0bf9c bellard
            /* TLB match with no valid bit */
287 6af0bf9c bellard
            if (rw)
288 6af0bf9c bellard
                exception = EXCP_TLBS;
289 6af0bf9c bellard
            else
290 6af0bf9c bellard
                exception = EXCP_TLBL;
291 6af0bf9c bellard
            break;
292 43057ab1 bellard
        case TLBRET_DIRTY:
293 6af0bf9c bellard
            /* TLB match but 'D' bit is cleared */
294 6af0bf9c bellard
            exception = EXCP_LTLBL;
295 6af0bf9c bellard
            break;
296 5fafdf24 ths
               
297 6af0bf9c bellard
        }
298 6af0bf9c bellard
        /* Raise exception */
299 6af0bf9c bellard
        env->CP0_BadVAddr = address;
300 100ce988 ths
        env->CP0_Context = (env->CP0_Context & ~0x007fffff) |
301 4ad40f36 bellard
                           ((address >> 9) &   0x007ffff0);
302 6af0bf9c bellard
        env->CP0_EntryHi =
303 43057ab1 bellard
            (env->CP0_EntryHi & 0xFF) | (address & (TARGET_PAGE_MASK << 1));
304 100ce988 ths
#ifdef TARGET_MIPS64
305 e034e2c3 ths
        env->CP0_EntryHi &= env->SEGMask;
306 e034e2c3 ths
        env->CP0_XContext = (env->CP0_XContext & ((~0ULL) << (env->SEGBITS - 7))) |
307 e034e2c3 ths
                            ((address & 0xC00000000000ULL) >> (env->SEGBITS - 9)) |
308 e034e2c3 ths
                            ((address & ((1ULL << env->SEGBITS) - 1) & 0xFFFFFFFFFFFFE000ULL) >> 9);
309 100ce988 ths
#endif
310 6af0bf9c bellard
        env->exception_index = exception;
311 6af0bf9c bellard
        env->error_code = error_code;
312 6af0bf9c bellard
        ret = 1;
313 6af0bf9c bellard
    }
314 6af0bf9c bellard
315 6af0bf9c bellard
    return ret;
316 6af0bf9c bellard
}
317 6af0bf9c bellard
318 ca7c2b1b ths
#if defined(CONFIG_USER_ONLY)
319 ca7c2b1b ths
void do_interrupt (CPUState *env)
320 ca7c2b1b ths
{
321 ca7c2b1b ths
    env->exception_index = EXCP_NONE;
322 ca7c2b1b ths
}
323 ca7c2b1b ths
#else
324 6af0bf9c bellard
void do_interrupt (CPUState *env)
325 6af0bf9c bellard
{
326 aa328add ths
    target_ulong offset;
327 6af0bf9c bellard
    int cause = -1;
328 6af0bf9c bellard
329 6af0bf9c bellard
    if (logfile && env->exception_index != EXCP_EXT_INTERRUPT) {
330 3594c774 ths
        fprintf(logfile, "%s enter: PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx " cause %d excp %d\n",
331 ead9360e ths
                __func__, env->PC[env->current_tc], env->CP0_EPC, cause, env->exception_index);
332 6af0bf9c bellard
    }
333 6af0bf9c bellard
    if (env->exception_index == EXCP_EXT_INTERRUPT &&
334 6af0bf9c bellard
        (env->hflags & MIPS_HFLAG_DM))
335 6af0bf9c bellard
        env->exception_index = EXCP_DINT;
336 6af0bf9c bellard
    offset = 0x180;
337 6af0bf9c bellard
    switch (env->exception_index) {
338 6af0bf9c bellard
    case EXCP_DSS:
339 6af0bf9c bellard
        env->CP0_Debug |= 1 << CP0DB_DSS;
340 6af0bf9c bellard
        /* Debug single step cannot be raised inside a delay slot and
341 6af0bf9c bellard
         * resume will always occur on the next instruction
342 6af0bf9c bellard
         * (but we assume the pc has always been updated during
343 6af0bf9c bellard
         *  code translation).
344 6af0bf9c bellard
         */
345 ead9360e ths
        env->CP0_DEPC = env->PC[env->current_tc];
346 6af0bf9c bellard
        goto enter_debug_mode;
347 6af0bf9c bellard
    case EXCP_DINT:
348 6af0bf9c bellard
        env->CP0_Debug |= 1 << CP0DB_DINT;
349 6af0bf9c bellard
        goto set_DEPC;
350 6af0bf9c bellard
    case EXCP_DIB:
351 6af0bf9c bellard
        env->CP0_Debug |= 1 << CP0DB_DIB;
352 6af0bf9c bellard
        goto set_DEPC;
353 6af0bf9c bellard
    case EXCP_DBp:
354 6af0bf9c bellard
        env->CP0_Debug |= 1 << CP0DB_DBp;
355 6af0bf9c bellard
        goto set_DEPC;
356 6af0bf9c bellard
    case EXCP_DDBS:
357 6af0bf9c bellard
        env->CP0_Debug |= 1 << CP0DB_DDBS;
358 6af0bf9c bellard
        goto set_DEPC;
359 6af0bf9c bellard
    case EXCP_DDBL:
360 6af0bf9c bellard
        env->CP0_Debug |= 1 << CP0DB_DDBL;
361 6af0bf9c bellard
    set_DEPC:
362 4ad40f36 bellard
        if (env->hflags & MIPS_HFLAG_BMASK) {
363 6af0bf9c bellard
            /* If the exception was raised from a delay slot,
364 aa328add ths
               come back to the jump.  */
365 ead9360e ths
            env->CP0_DEPC = env->PC[env->current_tc] - 4;
366 4ad40f36 bellard
            env->hflags &= ~MIPS_HFLAG_BMASK;
367 6af0bf9c bellard
        } else {
368 ead9360e ths
            env->CP0_DEPC = env->PC[env->current_tc];
369 6af0bf9c bellard
        }
370 6af0bf9c bellard
    enter_debug_mode:
371 6af0bf9c bellard
        env->hflags |= MIPS_HFLAG_DM;
372 3ddf0b5c ths
        if ((env->CP0_Config0 & (0x3 << CP0C0_AT)))
373 3ddf0b5c ths
            env->hflags |= MIPS_HFLAG_64;
374 24c7b0e3 ths
        env->hflags &= ~MIPS_HFLAG_UM;
375 6af0bf9c bellard
        /* EJTAG probe trap enable is not implemented... */
376 0a6de750 ths
        if (!(env->CP0_Status & (1 << CP0St_EXL)))
377 0a6de750 ths
            env->CP0_Cause &= ~(1 << CP0Ca_BD);
378 ead9360e ths
        env->PC[env->current_tc] = (int32_t)0xBFC00480;
379 6af0bf9c bellard
        break;
380 6af0bf9c bellard
    case EXCP_RESET:
381 aa328add ths
        cpu_reset(env);
382 aa328add ths
        break;
383 6af0bf9c bellard
    case EXCP_SRESET:
384 24c7b0e3 ths
        env->CP0_Status |= (1 << CP0St_SR);
385 fd88b6ab ths
        memset(env->CP0_WatchLo, 0, sizeof(*env->CP0_WatchLo));
386 6af0bf9c bellard
        goto set_error_EPC;
387 6af0bf9c bellard
    case EXCP_NMI:
388 24c7b0e3 ths
        env->CP0_Status |= (1 << CP0St_NMI);
389 6af0bf9c bellard
    set_error_EPC:
390 4ad40f36 bellard
        if (env->hflags & MIPS_HFLAG_BMASK) {
391 6af0bf9c bellard
            /* If the exception was raised from a delay slot,
392 aa328add ths
               come back to the jump.  */
393 ead9360e ths
            env->CP0_ErrorEPC = env->PC[env->current_tc] - 4;
394 ecd78a0a pbrook
            env->hflags &= ~MIPS_HFLAG_BMASK;
395 6af0bf9c bellard
        } else {
396 ead9360e ths
            env->CP0_ErrorEPC = env->PC[env->current_tc];
397 6af0bf9c bellard
        }
398 24c7b0e3 ths
        env->CP0_Status |= (1 << CP0St_ERL) | (1 << CP0St_BEV);
399 3ddf0b5c ths
        if ((env->CP0_Config0 & (0x3 << CP0C0_AT)))
400 3ddf0b5c ths
            env->hflags |= MIPS_HFLAG_64;
401 24c7b0e3 ths
        env->hflags &= ~MIPS_HFLAG_UM;
402 0a6de750 ths
        if (!(env->CP0_Status & (1 << CP0St_EXL)))
403 0a6de750 ths
            env->CP0_Cause &= ~(1 << CP0Ca_BD);
404 ead9360e ths
        env->PC[env->current_tc] = (int32_t)0xBFC00000;
405 6af0bf9c bellard
        break;
406 6af0bf9c bellard
    case EXCP_MCHECK:
407 6af0bf9c bellard
        cause = 24;
408 6af0bf9c bellard
        goto set_EPC;
409 6af0bf9c bellard
    case EXCP_EXT_INTERRUPT:
410 6af0bf9c bellard
        cause = 0;
411 6af0bf9c bellard
        if (env->CP0_Cause & (1 << CP0Ca_IV))
412 6af0bf9c bellard
            offset = 0x200;
413 6af0bf9c bellard
        goto set_EPC;
414 6af0bf9c bellard
    case EXCP_DWATCH:
415 6af0bf9c bellard
        cause = 23;
416 6af0bf9c bellard
        /* XXX: TODO: manage defered watch exceptions */
417 6af0bf9c bellard
        goto set_EPC;
418 6af0bf9c bellard
    case EXCP_AdEL:
419 6af0bf9c bellard
        cause = 4;
420 6af0bf9c bellard
        goto set_EPC;
421 beb811bd ths
    case EXCP_AdES:
422 beb811bd ths
        cause = 5;
423 beb811bd ths
        goto set_EPC;
424 6af0bf9c bellard
    case EXCP_TLBL:
425 6af0bf9c bellard
        cause = 2;
426 100ce988 ths
        if (env->error_code == 1 && !(env->CP0_Status & (1 << CP0St_EXL))) {
427 100ce988 ths
#ifdef TARGET_MIPS64
428 100ce988 ths
            int R = env->CP0_BadVAddr >> 62;
429 100ce988 ths
            int UX = (env->CP0_Status & (1 << CP0St_UX)) != 0;
430 100ce988 ths
            int SX = (env->CP0_Status & (1 << CP0St_SX)) != 0;
431 100ce988 ths
            int KX = (env->CP0_Status & (1 << CP0St_KX)) != 0;
432 100ce988 ths
433 100ce988 ths
            if ((R == 0 && UX) || (R == 1 && SX) || (R == 3 && KX))
434 100ce988 ths
                offset = 0x080;
435 100ce988 ths
            else
436 100ce988 ths
#endif
437 100ce988 ths
                offset = 0x000;
438 100ce988 ths
        }
439 6af0bf9c bellard
        goto set_EPC;
440 6af0bf9c bellard
    case EXCP_IBE:
441 6af0bf9c bellard
        cause = 6;
442 6af0bf9c bellard
        goto set_EPC;
443 6af0bf9c bellard
    case EXCP_DBE:
444 6af0bf9c bellard
        cause = 7;
445 6af0bf9c bellard
        goto set_EPC;
446 6af0bf9c bellard
    case EXCP_SYSCALL:
447 6af0bf9c bellard
        cause = 8;
448 6af0bf9c bellard
        goto set_EPC;
449 6af0bf9c bellard
    case EXCP_BREAK:
450 6af0bf9c bellard
        cause = 9;
451 6af0bf9c bellard
        goto set_EPC;
452 6af0bf9c bellard
    case EXCP_RI:
453 6af0bf9c bellard
        cause = 10;
454 6af0bf9c bellard
        goto set_EPC;
455 6af0bf9c bellard
    case EXCP_CpU:
456 6af0bf9c bellard
        cause = 11;
457 39d51eb8 ths
        env->CP0_Cause = (env->CP0_Cause & ~(0x3 << CP0Ca_CE)) |
458 39d51eb8 ths
                         (env->error_code << CP0Ca_CE);
459 6af0bf9c bellard
        goto set_EPC;
460 6af0bf9c bellard
    case EXCP_OVERFLOW:
461 6af0bf9c bellard
        cause = 12;
462 6af0bf9c bellard
        goto set_EPC;
463 6af0bf9c bellard
    case EXCP_TRAP:
464 6af0bf9c bellard
        cause = 13;
465 6af0bf9c bellard
        goto set_EPC;
466 5a5012ec ths
    case EXCP_FPE:
467 5a5012ec ths
        cause = 15;
468 5a5012ec ths
        goto set_EPC;
469 6af0bf9c bellard
    case EXCP_LTLBL:
470 6af0bf9c bellard
        cause = 1;
471 6af0bf9c bellard
        goto set_EPC;
472 6af0bf9c bellard
    case EXCP_TLBS:
473 6af0bf9c bellard
        cause = 3;
474 ead9360e ths
        goto set_EPC;
475 ead9360e ths
    case EXCP_THREAD:
476 ead9360e ths
        cause = 25;
477 100ce988 ths
        if (env->error_code == 1 && !(env->CP0_Status & (1 << CP0St_EXL))) {
478 100ce988 ths
#ifdef TARGET_MIPS64
479 100ce988 ths
            int R = env->CP0_BadVAddr >> 62;
480 100ce988 ths
            int UX = (env->CP0_Status & (1 << CP0St_UX)) != 0;
481 100ce988 ths
            int SX = (env->CP0_Status & (1 << CP0St_SX)) != 0;
482 100ce988 ths
            int KX = (env->CP0_Status & (1 << CP0St_KX)) != 0;
483 100ce988 ths
484 100ce988 ths
            if ((R == 0 && UX) || (R == 1 && SX) || (R == 3 && KX))
485 100ce988 ths
                offset = 0x080;
486 100ce988 ths
            else
487 100ce988 ths
#endif
488 100ce988 ths
                offset = 0x000;
489 100ce988 ths
        }
490 6af0bf9c bellard
    set_EPC:
491 24c7b0e3 ths
        if (!(env->CP0_Status & (1 << CP0St_EXL))) {
492 24c7b0e3 ths
            if (env->hflags & MIPS_HFLAG_BMASK) {
493 24c7b0e3 ths
                /* If the exception was raised from a delay slot,
494 24c7b0e3 ths
                   come back to the jump.  */
495 ead9360e ths
                env->CP0_EPC = env->PC[env->current_tc] - 4;
496 39d51eb8 ths
                env->CP0_Cause |= (1 << CP0Ca_BD);
497 24c7b0e3 ths
            } else {
498 ead9360e ths
                env->CP0_EPC = env->PC[env->current_tc];
499 24c7b0e3 ths
                env->CP0_Cause &= ~(1 << CP0Ca_BD);
500 24c7b0e3 ths
            }
501 24c7b0e3 ths
            env->CP0_Status |= (1 << CP0St_EXL);
502 3ddf0b5c ths
            if ((env->CP0_Config0 & (0x3 << CP0C0_AT)))
503 3ddf0b5c ths
                env->hflags |= MIPS_HFLAG_64;
504 24c7b0e3 ths
            env->hflags &= ~MIPS_HFLAG_UM;
505 6af0bf9c bellard
        }
506 c53f4a62 ths
        env->hflags &= ~MIPS_HFLAG_BMASK;
507 aa328add ths
        if (env->CP0_Status & (1 << CP0St_BEV)) {
508 ead9360e ths
            env->PC[env->current_tc] = (int32_t)0xBFC00200;
509 aa328add ths
        } else {
510 ead9360e ths
            env->PC[env->current_tc] = (int32_t)(env->CP0_EBase & ~0x3ff);
511 aa328add ths
        }
512 ead9360e ths
        env->PC[env->current_tc] += offset;
513 e58c8ba5 ths
        env->CP0_Cause = (env->CP0_Cause & ~(0x1f << CP0Ca_EC)) | (cause << CP0Ca_EC);
514 6af0bf9c bellard
        break;
515 6af0bf9c bellard
    default:
516 6af0bf9c bellard
        if (logfile) {
517 6af0bf9c bellard
            fprintf(logfile, "Invalid MIPS exception %d. Exiting\n",
518 6af0bf9c bellard
                    env->exception_index);
519 6af0bf9c bellard
        }
520 6af0bf9c bellard
        printf("Invalid MIPS exception %d. Exiting\n", env->exception_index);
521 6af0bf9c bellard
        exit(1);
522 6af0bf9c bellard
    }
523 6af0bf9c bellard
    if (logfile && env->exception_index != EXCP_EXT_INTERRUPT) {
524 3594c774 ths
        fprintf(logfile, "%s: PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx " cause %d excp %d\n"
525 3594c774 ths
                "    S %08x C %08x A " TARGET_FMT_lx " D " TARGET_FMT_lx "\n",
526 ead9360e ths
                __func__, env->PC[env->current_tc], env->CP0_EPC, cause, env->exception_index,
527 6af0bf9c bellard
                env->CP0_Status, env->CP0_Cause, env->CP0_BadVAddr,
528 6af0bf9c bellard
                env->CP0_DEPC);
529 6af0bf9c bellard
    }
530 6af0bf9c bellard
    env->exception_index = EXCP_NONE;
531 6af0bf9c bellard
}
532 ca7c2b1b ths
#endif /* !defined(CONFIG_USER_ONLY) */
533 2ee4aed8 bellard
534 29929e34 ths
void r4k_invalidate_tlb (CPUState *env, int idx, int use_extra)
535 2ee4aed8 bellard
{
536 29929e34 ths
    r4k_tlb_t *tlb;
537 3b1c8be4 ths
    target_ulong addr;
538 3b1c8be4 ths
    target_ulong end;
539 3b1c8be4 ths
    uint8_t ASID = env->CP0_EntryHi & 0xFF;
540 3b1c8be4 ths
    target_ulong mask;
541 2ee4aed8 bellard
542 ead9360e ths
    tlb = &env->tlb->mmu.r4k.tlb[idx];
543 f2e9ebef ths
    /* The qemu TLB is flushed when the ASID changes, so no need to
544 2ee4aed8 bellard
       flush these entries again.  */
545 2ee4aed8 bellard
    if (tlb->G == 0 && tlb->ASID != ASID) {
546 2ee4aed8 bellard
        return;
547 2ee4aed8 bellard
    }
548 2ee4aed8 bellard
549 ead9360e ths
    if (use_extra && env->tlb->tlb_in_use < MIPS_TLB_MAX) {
550 2ee4aed8 bellard
        /* For tlbwr, we can shadow the discarded entry into
551 2ee4aed8 bellard
           a new (fake) TLB entry, as long as the guest can not
552 2ee4aed8 bellard
           tell that it's there.  */
553 ead9360e ths
        env->tlb->mmu.r4k.tlb[env->tlb->tlb_in_use] = *tlb;
554 ead9360e ths
        env->tlb->tlb_in_use++;
555 2ee4aed8 bellard
        return;
556 2ee4aed8 bellard
    }
557 2ee4aed8 bellard
558 3b1c8be4 ths
    /* 1k pages are not supported. */
559 f2e9ebef ths
    mask = tlb->PageMask | ~(TARGET_PAGE_MASK << 1);
560 3b1c8be4 ths
    if (tlb->V0) {
561 f2e9ebef ths
        addr = tlb->VPN & ~mask;
562 100ce988 ths
#ifdef TARGET_MIPS64
563 e034e2c3 ths
        if (addr >= (0xFFFFFFFF80000000ULL & env->SEGMask)) {
564 100ce988 ths
            addr |= 0x3FFFFF0000000000ULL;
565 100ce988 ths
        }
566 100ce988 ths
#endif
567 3b1c8be4 ths
        end = addr | (mask >> 1);
568 3b1c8be4 ths
        while (addr < end) {
569 3b1c8be4 ths
            tlb_flush_page (env, addr);
570 3b1c8be4 ths
            addr += TARGET_PAGE_SIZE;
571 3b1c8be4 ths
        }
572 3b1c8be4 ths
    }
573 3b1c8be4 ths
    if (tlb->V1) {
574 f2e9ebef ths
        addr = (tlb->VPN & ~mask) | ((mask >> 1) + 1);
575 100ce988 ths
#ifdef TARGET_MIPS64
576 e034e2c3 ths
        if (addr >= (0xFFFFFFFF80000000ULL & env->SEGMask)) {
577 100ce988 ths
            addr |= 0x3FFFFF0000000000ULL;
578 100ce988 ths
        }
579 100ce988 ths
#endif
580 3b1c8be4 ths
        end = addr | mask;
581 3b1c8be4 ths
        while (addr < end) {
582 3b1c8be4 ths
            tlb_flush_page (env, addr);
583 3b1c8be4 ths
            addr += TARGET_PAGE_SIZE;
584 3b1c8be4 ths
        }
585 3b1c8be4 ths
    }
586 2ee4aed8 bellard
}