4 * Copyright (c) 2007 AXIS Communications AB
5 * Written by Edgar E. Iglesias.
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
10 * version 2 of the License, or (at your option) any later version.
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.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #ifndef CONFIG_USER_ONLY
39 void cris_mmu_init(CPUState
*env
)
41 env
->mmu_rand_lfsr
= 0xcccc;
44 #define SR_POLYNOM 0x8805
45 static inline unsigned int compute_polynom(unsigned int sr
)
51 for (i
= 0; i
< 16; i
++)
52 f
+= ((SR_POLYNOM
>> i
) & 1) & ((sr
>> i
) & 1);
57 static inline int cris_mmu_enabled(uint32_t rw_gc_cfg
)
59 return (rw_gc_cfg
& 12) != 0;
62 static inline int cris_mmu_segmented_addr(int seg
, uint32_t rw_mm_cfg
)
64 return (1 << seg
) & rw_mm_cfg
;
67 static uint32_t cris_mmu_translate_seg(CPUState
*env
, int seg
)
73 base
= env
->sregs
[SFR_RW_MM_KBASE_LO
];
75 base
= env
->sregs
[SFR_RW_MM_KBASE_HI
];
84 /* Used by the tlb decoder. */
85 #define EXTRACT_FIELD(src, start, end) \
86 (((src) >> start) & ((1 << (end - start + 1)) - 1))
88 static inline void set_field(uint32_t *dst
, unsigned int val
,
89 unsigned int offset
, unsigned int width
)
93 mask
= (1 << width
) - 1;
103 static void dump_tlb(CPUState
*env
, int mmu
)
107 uint32_t hi
, lo
, tlb_vpn
, tlb_pfn
;
109 for (set
= 0; set
< 4; set
++) {
110 for (idx
= 0; idx
< 16; idx
++) {
111 lo
= env
->tlbsets
[mmu
][set
][idx
].lo
;
112 hi
= env
->tlbsets
[mmu
][set
][idx
].hi
;
113 tlb_vpn
= EXTRACT_FIELD(hi
, 13, 31);
114 tlb_pfn
= EXTRACT_FIELD(lo
, 13, 31);
116 printf ("TLB: [%d][%d] hi=%x lo=%x v=%x p=%x\n",
117 set
, idx
, hi
, lo
, tlb_vpn
, tlb_pfn
);
123 /* rw 0 = read, 1 = write, 2 = exec. */
124 static int cris_mmu_translate_page(struct cris_mmu_result_t
*res
,
125 CPUState
*env
, uint32_t vaddr
,
126 int rw
, int usermode
)
131 uint32_t tlb_vpn
, tlb_pfn
= 0;
132 int tlb_pid
, tlb_g
, tlb_v
, tlb_k
, tlb_w
, tlb_x
;
133 int cfg_v
, cfg_k
, cfg_w
, cfg_x
;
138 int mmu
= 1; /* Data mmu is default. */
141 r_cause
= env
->sregs
[SFR_R_MM_CAUSE
];
142 r_cfg
= env
->sregs
[SFR_RW_MM_CFG
];
145 case 2: rwcause
= CRIS_MMU_ERR_EXEC
; mmu
= 0; break;
146 case 1: rwcause
= CRIS_MMU_ERR_WRITE
; break;
148 case 0: rwcause
= CRIS_MMU_ERR_READ
; break;
151 /* I exception vectors 4 - 7, D 8 - 11. */
152 vect_base
= (mmu
+ 1) * 4;
156 /* We know the index which to check on each set.
157 Scan both I and D. */
159 for (set
= 0; set
< 4; set
++) {
160 for (idx
= 0; idx
< 16; idx
++) {
161 lo
= env
->tlbsets
[mmu
][set
][idx
].lo
;
162 hi
= env
->tlbsets
[mmu
][set
][idx
].hi
;
163 tlb_vpn
= EXTRACT_FIELD(hi
, 13, 31);
164 tlb_pfn
= EXTRACT_FIELD(lo
, 13, 31);
166 printf ("TLB: [%d][%d] hi=%x lo=%x v=%x p=%x\n",
167 set
, idx
, hi
, lo
, tlb_vpn
, tlb_pfn
);
173 for (set
= 0; set
< 4; set
++)
175 lo
= env
->tlbsets
[mmu
][set
][idx
].lo
;
176 hi
= env
->tlbsets
[mmu
][set
][idx
].hi
;
178 tlb_vpn
= EXTRACT_FIELD(hi
, 13, 31);
179 tlb_pid
= EXTRACT_FIELD(hi
, 0, 7);
180 tlb_pfn
= EXTRACT_FIELD(lo
, 13, 31);
181 tlb_g
= EXTRACT_FIELD(lo
, 4, 4);
184 "TLB[%d][%d][%d] v=%x vpage=%x->pfn=%x lo=%x hi=%x\n",
185 mmu
, set
, idx
, tlb_vpn
, vpage
, tlb_pfn
, lo
, hi
));
186 if ((tlb_g
|| (tlb_pid
== (env
->pregs
[PR_PID
] & 0xff)))
187 && tlb_vpn
== vpage
) {
193 res
->bf_vec
= vect_base
;
195 cfg_w
= EXTRACT_FIELD(r_cfg
, 19, 19);
196 cfg_k
= EXTRACT_FIELD(r_cfg
, 18, 18);
197 cfg_x
= EXTRACT_FIELD(r_cfg
, 17, 17);
198 cfg_v
= EXTRACT_FIELD(r_cfg
, 16, 16);
200 tlb_pfn
= EXTRACT_FIELD(lo
, 13, 31);
201 tlb_v
= EXTRACT_FIELD(lo
, 3, 3);
202 tlb_k
= EXTRACT_FIELD(lo
, 2, 2);
203 tlb_w
= EXTRACT_FIELD(lo
, 1, 1);
204 tlb_x
= EXTRACT_FIELD(lo
, 0, 0);
207 set_exception_vector(0x04, i_mmu_refill);
208 set_exception_vector(0x05, i_mmu_invalid);
209 set_exception_vector(0x06, i_mmu_access);
210 set_exception_vector(0x07, i_mmu_execute);
211 set_exception_vector(0x08, d_mmu_refill);
212 set_exception_vector(0x09, d_mmu_invalid);
213 set_exception_vector(0x0a, d_mmu_access);
214 set_exception_vector(0x0b, d_mmu_write);
216 if (cfg_k
&& tlb_k
&& usermode
) {
217 D(printf ("tlb: kernel protected %x lo=%x pc=%x\n",
218 vaddr
, lo
, env
->pc
));
220 res
->bf_vec
= vect_base
+ 2;
221 } else if (rw
== 1 && cfg_w
&& !tlb_w
) {
222 D(printf ("tlb: write protected %x lo=%x pc=%x\n",
223 vaddr
, lo
, env
->pc
));
225 /* write accesses never go through the I mmu. */
226 res
->bf_vec
= vect_base
+ 3;
227 } else if (rw
== 2 && cfg_x
&& !tlb_x
) {
228 D(printf ("tlb: exec protected %x lo=%x pc=%x\n",
229 vaddr
, lo
, env
->pc
));
231 res
->bf_vec
= vect_base
+ 3;
232 } else if (cfg_v
&& !tlb_v
) {
233 D(printf ("tlb: invalid %x\n", vaddr
));
235 res
->bf_vec
= vect_base
+ 1;
240 res
->prot
|= PAGE_READ
;
242 res
->prot
|= PAGE_WRITE
;
244 res
->prot
|= PAGE_EXEC
;
247 D(dump_tlb(env
, mmu
));
249 env
->sregs
[SFR_RW_MM_TLB_HI
] = hi
;
250 env
->sregs
[SFR_RW_MM_TLB_LO
] = lo
;
252 /* If refill, provide a randomized set. */
253 set
= env
->mmu_rand_lfsr
& 3;
259 /* Update lfsr at every fault. */
260 f
= compute_polynom(env
->mmu_rand_lfsr
);
261 env
->mmu_rand_lfsr
>>= 1;
262 env
->mmu_rand_lfsr
|= (f
<< 15);
263 env
->mmu_rand_lfsr
&= 0xffff;
268 /* Update RW_MM_TLB_SEL. */
269 env
->sregs
[SFR_RW_MM_TLB_SEL
] = 0;
270 set_field(&env
->sregs
[SFR_RW_MM_TLB_SEL
], idx
, 0, 4);
271 set_field(&env
->sregs
[SFR_RW_MM_TLB_SEL
], set
, 4, 2);
273 /* Update RW_MM_CAUSE. */
274 set_field(&r_cause
, rwcause
, 8, 2);
275 set_field(&r_cause
, vpage
, 13, 19);
276 set_field(&r_cause
, env
->pregs
[PR_PID
], 0, 8);
277 env
->sregs
[SFR_R_MM_CAUSE
] = r_cause
;
278 D(printf("refill vaddr=%x pc=%x\n", vaddr
, env
->pc
));
282 D(printf ("%s rw=%d mtch=%d pc=%x va=%x vpn=%x tlbvpn=%x pfn=%x pid=%x"
283 " %x cause=%x sel=%x sp=%x %x %x\n",
284 __func__
, rw
, match
, env
->pc
,
286 tlb_vpn
, tlb_pfn
, tlb_pid
,
289 env
->sregs
[SFR_RW_MM_TLB_SEL
],
290 env
->regs
[R_SP
], env
->pregs
[PR_USP
], env
->ksp
));
296 void cris_mmu_flush_pid(CPUState
*env
, uint32_t pid
)
302 int tlb_pid
, tlb_g
, tlb_v
, tlb_k
;
307 for (mmu
= 0; mmu
< 2; mmu
++) {
308 for (set
= 0; set
< 4; set
++)
310 for (idx
= 0; idx
< 16; idx
++) {
311 lo
= env
->tlbsets
[mmu
][set
][idx
].lo
;
312 hi
= env
->tlbsets
[mmu
][set
][idx
].hi
;
314 tlb_vpn
= EXTRACT_FIELD(hi
, 13, 31);
315 tlb_pid
= EXTRACT_FIELD(hi
, 0, 7);
316 tlb_g
= EXTRACT_FIELD(lo
, 4, 4);
317 tlb_v
= EXTRACT_FIELD(lo
, 3, 3);
318 tlb_k
= EXTRACT_FIELD(lo
, 2, 2);
320 /* Kernel protected areas need to be flushed
322 if (tlb_v
&& !tlb_g
) {
323 vaddr
= tlb_vpn
<< TARGET_PAGE_BITS
;
325 "flush pid=%x vaddr=%x\n",
327 tlb_flush_page(env
, vaddr
);
334 int cris_mmu_translate(struct cris_mmu_result_t
*res
,
335 CPUState
*env
, uint32_t vaddr
,
338 uint32_t phy
= vaddr
;
341 int is_user
= mmu_idx
== MMU_USER_IDX
;
344 old_srs
= env
->pregs
[PR_SRS
];
346 /* rw == 2 means exec, map the access to the insn mmu. */
347 env
->pregs
[PR_SRS
] = rw
== 2 ? 1 : 2;
349 if (!cris_mmu_enabled(env
->sregs
[SFR_RW_GC_CFG
])) {
351 res
->prot
= PAGE_BITS
;
356 if (cris_mmu_segmented_addr(seg
, env
->sregs
[SFR_RW_MM_CFG
]))
361 base
= cris_mmu_translate_seg(env
, seg
);
362 phy
= base
| (0x0fffffff & vaddr
);
364 res
->prot
= PAGE_BITS
;
368 miss
= cris_mmu_translate_page(res
, env
, vaddr
, rw
, is_user
);
369 phy
= (res
->pfn
<< 13);
373 env
->pregs
[PR_SRS
] = old_srs
;