]> Git Repo - qemu.git/blame - target/cris/mmu.c
works with less than base ISA qemu-system-riscv32 -M virt -bios none -kernel output...
[qemu.git] / target / cris / mmu.c
CommitLineData
94cff60a
TS
1/*
2 * CRIS mmu emulation.
3 *
4 * Copyright (c) 2007 AXIS Communications AB
5 * Written by Edgar E. Iglesias.
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
bf1b52d1 10 * version 2.1 of the License, or (at your option) any later version.
94cff60a
TS
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
8167ee88 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
94cff60a
TS
19 */
20
66d79920 21#include "qemu/osdep.h"
94cff60a 22#include "cpu.h"
63c91552 23#include "exec/exec-all.h"
94cff60a 24#include "mmu.h"
94cff60a 25
d297f464
EI
26#ifdef DEBUG
27#define D(x) x
02021c3f 28#define D_LOG(...) qemu_log(__VA_ARGS__)
d297f464 29#else
3ffd710e 30#define D(x) do { } while (0)
d12d51d5 31#define D_LOG(...) do { } while (0)
d297f464 32#endif
94cff60a 33
a1170bfd 34void cris_mmu_init(CPUCRISState *env)
44cd42ee 35{
81ff3de7 36 env->mmu_rand_lfsr = 0xcccc;
44cd42ee
EI
37}
38
39#define SR_POLYNOM 0x8805
40static inline unsigned int compute_polynom(unsigned int sr)
41{
81ff3de7
RH
42 unsigned int i;
43 unsigned int f;
44cd42ee 44
81ff3de7
RH
45 f = 0;
46 for (i = 0; i < 16; i++) {
47 f += ((SR_POLYNOM >> i) & 1) & ((sr >> i) & 1);
48 }
44cd42ee 49
81ff3de7 50 return f;
44cd42ee
EI
51}
52
a1170bfd 53static void cris_mmu_update_rand_lfsr(CPUCRISState *env)
253248a3 54{
81ff3de7 55 unsigned int f;
253248a3 56
81ff3de7
RH
57 /* Update lfsr at every fault. */
58 f = compute_polynom(env->mmu_rand_lfsr);
59 env->mmu_rand_lfsr >>= 1;
60 env->mmu_rand_lfsr |= (f << 15);
61 env->mmu_rand_lfsr &= 0xffff;
253248a3
EI
62}
63
ef29a70d 64static inline int cris_mmu_enabled(uint32_t rw_gc_cfg)
94cff60a 65{
81ff3de7 66 return (rw_gc_cfg & 12) != 0;
94cff60a
TS
67}
68
ef29a70d 69static inline int cris_mmu_segmented_addr(int seg, uint32_t rw_mm_cfg)
94cff60a 70{
81ff3de7 71 return (1 << seg) & rw_mm_cfg;
94cff60a
TS
72}
73
a1170bfd 74static uint32_t cris_mmu_translate_seg(CPUCRISState *env, int seg)
94cff60a 75{
81ff3de7
RH
76 uint32_t base;
77 int i;
94cff60a 78
81ff3de7
RH
79 if (seg < 8) {
80 base = env->sregs[SFR_RW_MM_KBASE_LO];
81 } else {
82 base = env->sregs[SFR_RW_MM_KBASE_HI];
83 }
94cff60a 84
81ff3de7
RH
85 i = seg & 7;
86 base >>= i * 4;
87 base &= 15;
94cff60a 88
81ff3de7
RH
89 base <<= 28;
90 return base;
94cff60a 91}
81ff3de7 92
94cff60a 93/* Used by the tlb decoder. */
81ff3de7
RH
94#define EXTRACT_FIELD(src, start, end) \
95 (((src) >> start) & ((1 << (end - start + 1)) - 1))
786c02f1 96
81ff3de7 97static inline void set_field(uint32_t *dst, unsigned int val,
786c02f1
EI
98 unsigned int offset, unsigned int width)
99{
81ff3de7 100 uint32_t mask;
786c02f1 101
81ff3de7
RH
102 mask = (1 << width) - 1;
103 mask <<= offset;
104 val <<= offset;
786c02f1 105
81ff3de7
RH
106 val &= mask;
107 *dst &= ~(mask);
108 *dst |= val;
786c02f1 109}
94cff60a 110
d297f464 111#ifdef DEBUG
a1170bfd 112static void dump_tlb(CPUCRISState *env, int mmu)
b41f7df0 113{
81ff3de7
RH
114 int set;
115 int idx;
116 uint32_t hi, lo, tlb_vpn, tlb_pfn;
117
118 for (set = 0; set < 4; set++) {
119 for (idx = 0; idx < 16; idx++) {
120 lo = env->tlbsets[mmu][set][idx].lo;
121 hi = env->tlbsets[mmu][set][idx].hi;
122 tlb_vpn = EXTRACT_FIELD(hi, 13, 31);
123 tlb_pfn = EXTRACT_FIELD(lo, 13, 31);
124
125 printf("TLB: [%d][%d] hi=%x lo=%x v=%x p=%x\n",
126 set, idx, hi, lo, tlb_vpn, tlb_pfn);
127 }
128 }
b41f7df0 129}
d297f464 130#endif
b41f7df0 131
2fa73ec8 132static int cris_mmu_translate_page(struct cris_mmu_result *res,
91ab6d46
PMD
133 CPUCRISState *env, uint32_t vaddr,
134 MMUAccessType access_type,
135 int usermode, int debug)
94cff60a 136{
81ff3de7
RH
137 unsigned int vpage;
138 unsigned int idx;
139 uint32_t pid, lo, hi;
140 uint32_t tlb_vpn, tlb_pfn = 0;
141 int tlb_pid, tlb_g, tlb_v, tlb_k, tlb_w, tlb_x;
142 int cfg_v, cfg_k, cfg_w, cfg_x;
143 int set, match = 0;
144 uint32_t r_cause;
145 uint32_t r_cfg;
146 int rwcause;
147 int mmu = 1; /* Data mmu is default. */
148 int vect_base;
149
150 r_cause = env->sregs[SFR_R_MM_CAUSE];
151 r_cfg = env->sregs[SFR_RW_MM_CFG];
152 pid = env->pregs[PR_PID] & 0xff;
153
91ab6d46 154 switch (access_type) {
c0ff662f 155 case MMU_INST_FETCH:
81ff3de7
RH
156 rwcause = CRIS_MMU_ERR_EXEC;
157 mmu = 0;
158 break;
c0ff662f 159 case MMU_DATA_STORE:
81ff3de7
RH
160 rwcause = CRIS_MMU_ERR_WRITE;
161 break;
162 default:
c0ff662f 163 case MMU_DATA_LOAD:
81ff3de7
RH
164 rwcause = CRIS_MMU_ERR_READ;
165 break;
166 }
167
168 /* I exception vectors 4 - 7, D 8 - 11. */
169 vect_base = (mmu + 1) * 4;
170
171 vpage = vaddr >> 13;
172
173 /*
174 * We know the index which to check on each set.
175 * Scan both I and D.
176 */
177 idx = vpage & 15;
178 for (set = 0; set < 4; set++) {
179 lo = env->tlbsets[mmu][set][idx].lo;
180 hi = env->tlbsets[mmu][set][idx].hi;
181
182 tlb_vpn = hi >> 13;
183 tlb_pid = EXTRACT_FIELD(hi, 0, 7);
184 tlb_g = EXTRACT_FIELD(lo, 4, 4);
185
186 D_LOG("TLB[%d][%d][%d] v=%x vpage=%x lo=%x hi=%x\n",
187 mmu, set, idx, tlb_vpn, vpage, lo, hi);
188 if ((tlb_g || (tlb_pid == pid)) && tlb_vpn == vpage) {
189 match = 1;
190 break;
191 }
192 }
193
194 res->bf_vec = vect_base;
195 if (match) {
196 cfg_w = EXTRACT_FIELD(r_cfg, 19, 19);
197 cfg_k = EXTRACT_FIELD(r_cfg, 18, 18);
198 cfg_x = EXTRACT_FIELD(r_cfg, 17, 17);
199 cfg_v = EXTRACT_FIELD(r_cfg, 16, 16);
200
201 tlb_pfn = EXTRACT_FIELD(lo, 13, 31);
202 tlb_v = EXTRACT_FIELD(lo, 3, 3);
203 tlb_k = EXTRACT_FIELD(lo, 2, 2);
204 tlb_w = EXTRACT_FIELD(lo, 1, 1);
205 tlb_x = EXTRACT_FIELD(lo, 0, 0);
206
207 /*
208 * set_exception_vector(0x04, i_mmu_refill);
209 * set_exception_vector(0x05, i_mmu_invalid);
210 * set_exception_vector(0x06, i_mmu_access);
211 * set_exception_vector(0x07, i_mmu_execute);
212 * set_exception_vector(0x08, d_mmu_refill);
213 * set_exception_vector(0x09, d_mmu_invalid);
214 * set_exception_vector(0x0a, d_mmu_access);
215 * set_exception_vector(0x0b, d_mmu_write);
216 */
217 if (cfg_k && tlb_k && usermode) {
218 D(printf("tlb: kernel protected %x lo=%x pc=%x\n",
219 vaddr, lo, env->pc));
220 match = 0;
221 res->bf_vec = vect_base + 2;
91ab6d46 222 } else if (access_type == MMU_DATA_STORE && cfg_w && !tlb_w) {
81ff3de7
RH
223 D(printf("tlb: write protected %x lo=%x pc=%x\n",
224 vaddr, lo, env->pc));
225 match = 0;
226 /* write accesses never go through the I mmu. */
227 res->bf_vec = vect_base + 3;
91ab6d46 228 } else if (access_type == MMU_INST_FETCH && cfg_x && !tlb_x) {
81ff3de7
RH
229 D(printf("tlb: exec protected %x lo=%x pc=%x\n",
230 vaddr, lo, env->pc));
231 match = 0;
232 res->bf_vec = vect_base + 3;
233 } else if (cfg_v && !tlb_v) {
234 D(printf("tlb: invalid %x\n", vaddr));
235 match = 0;
236 res->bf_vec = vect_base + 1;
237 }
238
239 res->prot = 0;
240 if (match) {
241 res->prot |= PAGE_READ;
242 if (tlb_w) {
243 res->prot |= PAGE_WRITE;
244 }
245 if (mmu == 0 && (cfg_x || tlb_x)) {
246 res->prot |= PAGE_EXEC;
247 }
248 } else {
249 D(dump_tlb(env, mmu));
250 }
251 } else {
252 /* If refill, provide a randomized set. */
253 set = env->mmu_rand_lfsr & 3;
254 }
255
256 if (!match && !debug) {
257 cris_mmu_update_rand_lfsr(env);
258
259 /* Compute index. */
260 idx = vpage & 15;
261
262 /* Update RW_MM_TLB_SEL. */
263 env->sregs[SFR_RW_MM_TLB_SEL] = 0;
264 set_field(&env->sregs[SFR_RW_MM_TLB_SEL], idx, 0, 4);
265 set_field(&env->sregs[SFR_RW_MM_TLB_SEL], set, 4, 2);
266
267 /* Update RW_MM_CAUSE. */
268 set_field(&r_cause, rwcause, 8, 2);
269 set_field(&r_cause, vpage, 13, 19);
270 set_field(&r_cause, pid, 0, 8);
271 env->sregs[SFR_R_MM_CAUSE] = r_cause;
272 D(printf("refill vaddr=%x pc=%x\n", vaddr, env->pc));
273 }
274
91ab6d46 275 D(printf("%s access=%u mtch=%d pc=%x va=%x vpn=%x tlbvpn=%x pfn=%x pid=%x"
81ff3de7 276 " %x cause=%x sel=%x sp=%x %x %x\n",
91ab6d46 277 __func__, access_type, match, env->pc,
81ff3de7
RH
278 vaddr, vpage,
279 tlb_vpn, tlb_pfn, tlb_pid,
280 pid,
281 r_cause,
282 env->sregs[SFR_RW_MM_TLB_SEL],
283 env->regs[R_SP], env->pregs[PR_USP], env->ksp));
284
285 res->phy = tlb_pfn << TARGET_PAGE_BITS;
286 return !match;
94cff60a
TS
287}
288
a1170bfd 289void cris_mmu_flush_pid(CPUCRISState *env, uint32_t pid)
786c02f1 290{
81ff3de7
RH
291 target_ulong vaddr;
292 unsigned int idx;
293 uint32_t lo, hi;
294 uint32_t tlb_vpn;
295 int tlb_pid, tlb_g, tlb_v;
296 unsigned int set;
297 unsigned int mmu;
298
299 pid &= 0xff;
300 for (mmu = 0; mmu < 2; mmu++) {
301 for (set = 0; set < 4; set++) {
302 for (idx = 0; idx < 16; idx++) {
303 lo = env->tlbsets[mmu][set][idx].lo;
304 hi = env->tlbsets[mmu][set][idx].hi;
305
306 tlb_vpn = EXTRACT_FIELD(hi, 13, 31);
307 tlb_pid = EXTRACT_FIELD(hi, 0, 7);
308 tlb_g = EXTRACT_FIELD(lo, 4, 4);
309 tlb_v = EXTRACT_FIELD(lo, 3, 3);
310
311 if (tlb_v && !tlb_g && (tlb_pid == pid)) {
312 vaddr = tlb_vpn << TARGET_PAGE_BITS;
313 D_LOG("flush pid=%x vaddr=%x\n", pid, vaddr);
dbefca23 314 tlb_flush_page(env_cpu(env), vaddr);
81ff3de7
RH
315 }
316 }
317 }
318 }
786c02f1
EI
319}
320
2fa73ec8 321int cris_mmu_translate(struct cris_mmu_result *res,
91ab6d46
PMD
322 CPUCRISState *env, uint32_t vaddr,
323 MMUAccessType access_type, int mmu_idx, int debug)
94cff60a 324{
81ff3de7
RH
325 int seg;
326 int miss = 0;
327 int is_user = mmu_idx == MMU_USER_IDX;
328 uint32_t old_srs;
329
330 old_srs = env->pregs[PR_SRS];
331
91ab6d46 332 env->pregs[PR_SRS] = access_type == MMU_INST_FETCH ? 1 : 2;
81ff3de7
RH
333
334 if (!cris_mmu_enabled(env->sregs[SFR_RW_GC_CFG])) {
335 res->phy = vaddr;
336 res->prot = PAGE_BITS;
337 goto done;
338 }
339
340 seg = vaddr >> 28;
341 if (!is_user && cris_mmu_segmented_addr(seg, env->sregs[SFR_RW_MM_CFG])) {
342 uint32_t base;
343
344 miss = 0;
345 base = cris_mmu_translate_seg(env, seg);
346 res->phy = base | (0x0fffffff & vaddr);
347 res->prot = PAGE_BITS;
348 } else {
91ab6d46 349 miss = cris_mmu_translate_page(res, env, vaddr, access_type,
81ff3de7
RH
350 is_user, debug);
351 }
352 done:
353 env->pregs[PR_SRS] = old_srs;
354 return miss;
94cff60a 355}
This page took 0.999087 seconds and 5 git commands to generate.