Statistics
| Branch: | Revision:

root / target-cris / helper.c @ 16415335

History | View | Annotate | Download (4.9 kB)

1 81fdc5f8 ths
/*
2 81fdc5f8 ths
 *  CRIS helper routines.
3 81fdc5f8 ths
 *
4 81fdc5f8 ths
 *  Copyright (c) 2007 AXIS Communications AB
5 81fdc5f8 ths
 *  Written by Edgar E. Iglesias.
6 81fdc5f8 ths
 *
7 81fdc5f8 ths
 * This library is free software; you can redistribute it and/or
8 81fdc5f8 ths
 * modify it under the terms of the GNU Lesser General Public
9 81fdc5f8 ths
 * License as published by the Free Software Foundation; either
10 81fdc5f8 ths
 * version 2 of the License, or (at your option) any later version.
11 81fdc5f8 ths
 *
12 81fdc5f8 ths
 * This library is distributed in the hope that it will be useful,
13 81fdc5f8 ths
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 81fdc5f8 ths
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 81fdc5f8 ths
 * Lesser General Public License for more details.
16 81fdc5f8 ths
 *
17 81fdc5f8 ths
 * You should have received a copy of the GNU Lesser General Public
18 8167ee88 Blue Swirl
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 81fdc5f8 ths
 */
20 81fdc5f8 ths
21 81fdc5f8 ths
#include <stdio.h>
22 81fdc5f8 ths
#include <string.h>
23 81fdc5f8 ths
24 81fdc5f8 ths
#include "config.h"
25 81fdc5f8 ths
#include "cpu.h"
26 81fdc5f8 ths
#include "mmu.h"
27 81fdc5f8 ths
#include "exec-all.h"
28 941db528 ths
#include "host-utils.h"
29 81fdc5f8 ths
30 d12d51d5 aliguori
31 d12d51d5 aliguori
//#define CRIS_HELPER_DEBUG
32 d12d51d5 aliguori
33 d12d51d5 aliguori
34 d12d51d5 aliguori
#ifdef CRIS_HELPER_DEBUG
35 d12d51d5 aliguori
#define D(x) x
36 93fcfe39 aliguori
#define D_LOG(...) qemu_log(__VA__ARGS__)
37 d12d51d5 aliguori
#else
38 e62b5b13 edgar_igl
#define D(x)
39 d12d51d5 aliguori
#define D_LOG(...) do { } while (0)
40 d12d51d5 aliguori
#endif
41 e62b5b13 edgar_igl
42 81fdc5f8 ths
#if defined(CONFIG_USER_ONLY)
43 81fdc5f8 ths
44 81fdc5f8 ths
void do_interrupt (CPUState *env)
45 81fdc5f8 ths
{
46 bbaf29c7 edgar_igl
        env->exception_index = -1;
47 bbaf29c7 edgar_igl
        env->pregs[PR_ERP] = env->pc;
48 81fdc5f8 ths
}
49 81fdc5f8 ths
50 81fdc5f8 ths
int cpu_cris_handle_mmu_fault(CPUState * env, target_ulong address, int rw,
51 6ebbf390 j_mayer
                             int mmu_idx, int is_softmmu)
52 81fdc5f8 ths
{
53 bbaf29c7 edgar_igl
        env->exception_index = 0xaa;
54 30abcfc7 edgar_igl
        env->pregs[PR_EDA] = address;
55 bbaf29c7 edgar_igl
        cpu_dump_state(env, stderr, fprintf, 0);
56 bbaf29c7 edgar_igl
        return 1;
57 81fdc5f8 ths
}
58 81fdc5f8 ths
59 81fdc5f8 ths
target_phys_addr_t cpu_get_phys_page_debug(CPUState * env, target_ulong addr)
60 81fdc5f8 ths
{
61 bbaf29c7 edgar_igl
        return addr;
62 81fdc5f8 ths
}
63 81fdc5f8 ths
64 81fdc5f8 ths
#else /* !CONFIG_USER_ONLY */
65 81fdc5f8 ths
66 e62b5b13 edgar_igl
67 e62b5b13 edgar_igl
static void cris_shift_ccs(CPUState *env)
68 e62b5b13 edgar_igl
{
69 e62b5b13 edgar_igl
        uint32_t ccs;
70 e62b5b13 edgar_igl
        /* Apply the ccs shift.  */
71 e62b5b13 edgar_igl
        ccs = env->pregs[PR_CCS];
72 b41f7df0 edgar_igl
        ccs = ((ccs & 0xc0000000) | ((ccs << 12) >> 2)) & ~0x3ff;
73 e62b5b13 edgar_igl
        env->pregs[PR_CCS] = ccs;
74 e62b5b13 edgar_igl
}
75 e62b5b13 edgar_igl
76 81fdc5f8 ths
int cpu_cris_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
77 6ebbf390 j_mayer
                               int mmu_idx, int is_softmmu)
78 81fdc5f8 ths
{
79 2fa73ec8 Edgar E. Iglesias
        struct cris_mmu_result res;
80 81fdc5f8 ths
        int prot, miss;
81 e62b5b13 edgar_igl
        int r = -1;
82 81fdc5f8 ths
        target_ulong phy;
83 81fdc5f8 ths
84 b41f7df0 edgar_igl
        D(printf ("%s addr=%x pc=%x rw=%x\n", __func__, address, env->pc, rw));
85 81fdc5f8 ths
        address &= TARGET_PAGE_MASK;
86 6ebbf390 j_mayer
        miss = cris_mmu_translate(&res, env, address, rw, mmu_idx);
87 81fdc5f8 ths
        if (miss)
88 81fdc5f8 ths
        {
89 1b1a38b0 edgar_igl
                if (env->exception_index == EXCP_BUSFAULT)
90 ef29a70d edgar_igl
                        cpu_abort(env, 
91 ef29a70d edgar_igl
                                  "CRIS: Illegal recursive bus fault."
92 ef29a70d edgar_igl
                                  "addr=%x rw=%d\n",
93 ef29a70d edgar_igl
                                  address, rw);
94 ef29a70d edgar_igl
95 1b1a38b0 edgar_igl
                env->exception_index = EXCP_BUSFAULT;
96 e62b5b13 edgar_igl
                env->fault_vector = res.bf_vec;
97 e62b5b13 edgar_igl
                r = 1;
98 81fdc5f8 ths
        }
99 81fdc5f8 ths
        else
100 81fdc5f8 ths
        {
101 980f8a0b edgar_igl
                /*
102 980f8a0b edgar_igl
                 * Mask off the cache selection bit. The ETRAX busses do not
103 980f8a0b edgar_igl
                 * see the top bit.
104 980f8a0b edgar_igl
                 */
105 980f8a0b edgar_igl
                phy = res.phy & ~0x80000000;
106 b41f7df0 edgar_igl
                prot = res.prot;
107 e62b5b13 edgar_igl
                r = tlb_set_page(env, address, phy, prot, mmu_idx, is_softmmu);
108 81fdc5f8 ths
        }
109 b41f7df0 edgar_igl
        if (r > 0)
110 d12d51d5 aliguori
                D_LOG("%s returns %d irqreq=%x addr=%x"
111 cf1d97f0 edgar_igl
                          " phy=%x ismmu=%d vec=%x pc=%x\n", 
112 cf1d97f0 edgar_igl
                          __func__, r, env->interrupt_request, 
113 d12d51d5 aliguori
                          address, res.phy, is_softmmu, res.bf_vec, env->pc);
114 e62b5b13 edgar_igl
        return r;
115 81fdc5f8 ths
}
116 81fdc5f8 ths
117 81fdc5f8 ths
void do_interrupt(CPUState *env)
118 81fdc5f8 ths
{
119 e62b5b13 edgar_igl
        int ex_vec = -1;
120 81fdc5f8 ths
121 d12d51d5 aliguori
        D_LOG( "exception index=%d interrupt_req=%d\n",
122 b41f7df0 edgar_igl
                   env->exception_index,
123 d12d51d5 aliguori
                   env->interrupt_request);
124 81fdc5f8 ths
125 81fdc5f8 ths
        switch (env->exception_index)
126 81fdc5f8 ths
        {
127 81fdc5f8 ths
                case EXCP_BREAK:
128 e62b5b13 edgar_igl
                        /* These exceptions are genereated by the core itself.
129 e62b5b13 edgar_igl
                           ERP should point to the insn following the brk.  */
130 e62b5b13 edgar_igl
                        ex_vec = env->trap_vector;
131 a1aebcb8 edgar_igl
                        env->pregs[PR_ERP] = env->pc;
132 81fdc5f8 ths
                        break;
133 e62b5b13 edgar_igl
134 1b1a38b0 edgar_igl
                case EXCP_NMI:
135 1b1a38b0 edgar_igl
                        /* NMI is hardwired to vector zero.  */
136 1b1a38b0 edgar_igl
                        ex_vec = 0;
137 1b1a38b0 edgar_igl
                        env->pregs[PR_CCS] &= ~M_FLAG;
138 1b1a38b0 edgar_igl
                        env->pregs[PR_NRP] = env->pc;
139 1b1a38b0 edgar_igl
                        break;
140 1b1a38b0 edgar_igl
141 1b1a38b0 edgar_igl
                case EXCP_BUSFAULT:
142 e62b5b13 edgar_igl
                        ex_vec = env->fault_vector;
143 b41f7df0 edgar_igl
                        env->pregs[PR_ERP] = env->pc;
144 81fdc5f8 ths
                        break;
145 81fdc5f8 ths
146 81fdc5f8 ths
                default:
147 1b1a38b0 edgar_igl
                        /* The interrupt controller gives us the vector.  */
148 b41f7df0 edgar_igl
                        ex_vec = env->interrupt_vector;
149 b41f7df0 edgar_igl
                        /* Normal interrupts are taken between
150 b41f7df0 edgar_igl
                           TB's.  env->pc is valid here.  */
151 b41f7df0 edgar_igl
                        env->pregs[PR_ERP] = env->pc;
152 b41f7df0 edgar_igl
                        break;
153 b41f7df0 edgar_igl
        }
154 b41f7df0 edgar_igl
155 cddffe37 edgar_igl
        /* Fill in the IDX field.  */
156 cddffe37 edgar_igl
        env->pregs[PR_EXS] = (ex_vec & 0xff) << 8;
157 cddffe37 edgar_igl
158 cf1d97f0 edgar_igl
        if (env->dslot) {
159 d12d51d5 aliguori
                D_LOG("excp isr=%x PC=%x ds=%d SP=%x"
160 cf1d97f0 edgar_igl
                          " ERP=%x pid=%x ccs=%x cc=%d %x\n",
161 cf1d97f0 edgar_igl
                          ex_vec, env->pc, env->dslot,
162 ef29a70d edgar_igl
                          env->regs[R_SP],
163 b41f7df0 edgar_igl
                          env->pregs[PR_ERP], env->pregs[PR_PID],
164 b41f7df0 edgar_igl
                          env->pregs[PR_CCS],
165 d12d51d5 aliguori
                          env->cc_op, env->cc_mask);
166 cf1d97f0 edgar_igl
                /* We loose the btarget, btaken state here so rexec the
167 cf1d97f0 edgar_igl
                   branch.  */
168 cf1d97f0 edgar_igl
                env->pregs[PR_ERP] -= env->dslot;
169 cf1d97f0 edgar_igl
                /* Exception starts with dslot cleared.  */
170 cf1d97f0 edgar_igl
                env->dslot = 0;
171 81fdc5f8 ths
        }
172 b41f7df0 edgar_igl
        
173 e62b5b13 edgar_igl
        env->pc = ldl_code(env->pregs[PR_EBP] + ex_vec * 4);
174 b41f7df0 edgar_igl
175 b41f7df0 edgar_igl
        if (env->pregs[PR_CCS] & U_FLAG) {
176 b41f7df0 edgar_igl
                /* Swap stack pointers.  */
177 b41f7df0 edgar_igl
                env->pregs[PR_USP] = env->regs[R_SP];
178 b41f7df0 edgar_igl
                env->regs[R_SP] = env->ksp;
179 b41f7df0 edgar_igl
        }
180 b41f7df0 edgar_igl
181 b41f7df0 edgar_igl
        /* Apply the CRIS CCS shift. Clears U if set.  */
182 e62b5b13 edgar_igl
        cris_shift_ccs(env);
183 d12d51d5 aliguori
        D_LOG("%s isr=%x vec=%x ccs=%x pid=%d erp=%x\n", 
184 b41f7df0 edgar_igl
                   __func__, env->pc, ex_vec, 
185 b41f7df0 edgar_igl
                   env->pregs[PR_CCS],
186 b41f7df0 edgar_igl
                   env->pregs[PR_PID], 
187 d12d51d5 aliguori
                   env->pregs[PR_ERP]);
188 81fdc5f8 ths
}
189 81fdc5f8 ths
190 81fdc5f8 ths
target_phys_addr_t cpu_get_phys_page_debug(CPUState * env, target_ulong addr)
191 81fdc5f8 ths
{
192 81fdc5f8 ths
        uint32_t phy = addr;
193 2fa73ec8 Edgar E. Iglesias
        struct cris_mmu_result res;
194 81fdc5f8 ths
        int miss;
195 81fdc5f8 ths
        miss = cris_mmu_translate(&res, env, addr, 0, 0);
196 81fdc5f8 ths
        if (!miss)
197 81fdc5f8 ths
                phy = res.phy;
198 e62b5b13 edgar_igl
        D(fprintf(stderr, "%s %x -> %x\n", __func__, addr, phy));
199 81fdc5f8 ths
        return phy;
200 81fdc5f8 ths
}
201 81fdc5f8 ths
#endif