2 * Microblaze MMU emulation for qemu.
4 * Copyright (c) 2009 Edgar E. Iglesias
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
28 static unsigned int tlb_decode_size(unsigned int f)
30 static const unsigned int sizes[] = {
31 1 * 1024, 4 * 1024, 16 * 1024, 64 * 1024, 256 * 1024,
32 1 * 1024 * 1024, 4 * 1024 * 1024, 16 * 1024 * 1024
34 assert(f < ARRAY_SIZE(sizes));
38 static void mmu_flush_idx(CPUState *env, unsigned int idx)
40 struct microblaze_mmu *mmu = &env->mmu;
41 unsigned int tlb_size;
42 uint32_t tlb_tag, end, t;
44 t = mmu->rams[RAM_TAG][idx];
48 tlb_tag = t & TLB_EPN_MASK;
49 tlb_size = tlb_decode_size((t & TLB_PAGESZ_MASK) >> 7);
50 end = tlb_tag + tlb_size;
52 while (tlb_tag < end) {
53 tlb_flush_page(env, tlb_tag);
54 tlb_tag += TARGET_PAGE_SIZE;
58 static void mmu_change_pid(CPUState *env, unsigned int newpid)
60 struct microblaze_mmu *mmu = &env->mmu;
65 qemu_log("Illegal rpid=%x\n", newpid);
67 for (i = 0; i < ARRAY_SIZE(mmu->rams[RAM_TAG]); i++) {
68 /* Lookup and decode. */
69 t = mmu->rams[RAM_TAG][i];
71 if (mmu->tids[i] && ((mmu->regs[MMU_R_PID] & 0xff) == mmu->tids[i]))
72 mmu_flush_idx(env, i);
77 /* rw - 0 = read, 1 = write, 2 = fetch. */
78 unsigned int mmu_translate(struct microblaze_mmu *mmu,
79 struct microblaze_mmu_lookup *lu,
80 target_ulong vaddr, int rw, int mmu_idx)
82 unsigned int i, hit = 0;
83 unsigned int tlb_ex = 0, tlb_wr = 0, tlb_zsel;
84 unsigned int tlb_size;
85 uint32_t tlb_tag, tlb_rpn, mask, t0;
88 for (i = 0; i < ARRAY_SIZE(mmu->rams[RAM_TAG]); i++) {
91 /* Lookup and decode. */
92 t = mmu->rams[RAM_TAG][i];
93 D(qemu_log("TLB %d valid=%d\n", i, t & TLB_VALID));
95 tlb_size = tlb_decode_size((t & TLB_PAGESZ_MASK) >> 7);
96 if (tlb_size < TARGET_PAGE_SIZE) {
97 qemu_log("%d pages not supported\n", tlb_size);
101 mask = ~(tlb_size - 1);
102 tlb_tag = t & TLB_EPN_MASK;
103 if ((vaddr & mask) != (tlb_tag & mask)) {
104 D(qemu_log("TLB %d vaddr=%x != tag=%x\n",
105 i, vaddr & mask, tlb_tag & mask));
109 && ((mmu->regs[MMU_R_PID] & 0xff) != mmu->tids[i])) {
110 D(qemu_log("TLB %d pid=%x != tid=%x\n",
111 i, mmu->regs[MMU_R_PID], mmu->tids[i]));
115 /* Bring in the data part. */
116 d = mmu->rams[RAM_DATA][i];
120 /* Now lets see if there is a zone that overrides the protbits. */
121 tlb_zsel = (d >> 4) & 0xf;
122 t0 = mmu->regs[MMU_R_ZPR] >> (30 - (tlb_zsel * 2));
125 if (tlb_zsel > mmu->c_mmu_zones) {
126 qemu_log("tlb zone select out of range! %d\n", tlb_zsel);
127 t0 = 1; /* Ignore. */
130 if (mmu->c_mmu == 1) {
131 t0 = 1; /* Zones are disabled. */
136 if (mmu_idx == MMU_USER_IDX)
140 if (mmu_idx != MMU_USER_IDX) {
153 lu->prot = PAGE_READ;
155 lu->prot |= PAGE_WRITE;
159 lu->prot |=PAGE_EXEC;
164 tlb_rpn = d & TLB_RPN_MASK;
176 D(qemu_log("MMU vaddr=%x rw=%d tlb_wr=%d tlb_ex=%d hit=%d\n",
177 vaddr, rw, tlb_wr, tlb_ex, hit));
181 /* Writes/reads to the MMU's special regs end up here. */
182 uint32_t mmu_read(CPUState *env, uint32_t rn)
187 if (env->mmu.c_mmu < 2 || !env->mmu.c_mmu_tlb_access) {
188 qemu_log("MMU access on MMU-less system\n");
193 /* Reads to HI/LO trig reads from the mmu rams. */
196 if (!(env->mmu.c_mmu_tlb_access & 1)) {
197 qemu_log("Invalid access to MMU reg %d\n", rn);
201 i = env->mmu.regs[MMU_R_TLBX] & 0xff;
202 r = env->mmu.rams[rn & 1][i];
203 if (rn == MMU_R_TLBHI)
204 env->mmu.regs[MMU_R_PID] = env->mmu.tids[i];
208 if (!(env->mmu.c_mmu_tlb_access & 1)) {
209 qemu_log("Invalid access to MMU reg %d\n", rn);
212 r = env->mmu.regs[rn];
215 r = env->mmu.regs[rn];
218 D(qemu_log("%s rn=%d=%x\n", __func__, rn, r));
222 void mmu_write(CPUState *env, uint32_t rn, uint32_t v)
225 D(qemu_log("%s rn=%d=%x old=%x\n", __func__, rn, v, env->mmu.regs[rn]));
227 if (env->mmu.c_mmu < 2 || !env->mmu.c_mmu_tlb_access) {
228 qemu_log("MMU access on MMU-less system\n");
233 /* Writes to HI/LO trig writes to the mmu rams. */
236 i = env->mmu.regs[MMU_R_TLBX] & 0xff;
237 if (rn == MMU_R_TLBHI) {
238 if (i < 3 && !(v & TLB_VALID) && qemu_loglevel_mask(~0))
239 qemu_log("invalidating index %x at pc=%x\n",
240 i, env->sregs[SR_PC]);
241 env->mmu.tids[i] = env->mmu.regs[MMU_R_PID] & 0xff;
242 mmu_flush_idx(env, i);
244 env->mmu.rams[rn & 1][i] = v;
246 D(qemu_log("%s ram[%d][%d]=%x\n", __func__, rn & 1, i, v));
249 if (env->mmu.c_mmu_tlb_access <= 1) {
250 qemu_log("Invalid access to MMU reg %d\n", rn);
254 /* Changes to the zone protection reg flush the QEMU TLB.
255 Fortunately, these are very uncommon. */
256 if (v != env->mmu.regs[rn]) {
259 env->mmu.regs[rn] = v;
262 if (env->mmu.c_mmu_tlb_access <= 1) {
263 qemu_log("Invalid access to MMU reg %d\n", rn);
267 if (v != env->mmu.regs[rn]) {
268 mmu_change_pid(env, v);
269 env->mmu.regs[rn] = v;
274 struct microblaze_mmu_lookup lu;
277 if (env->mmu.c_mmu_tlb_access <= 1) {
278 qemu_log("Invalid access to MMU reg %d\n", rn);
282 hit = mmu_translate(&env->mmu, &lu,
283 v & TLB_EPN_MASK, 0, cpu_mmu_index(env));
285 env->mmu.regs[MMU_R_TLBX] = lu.idx;
287 env->mmu.regs[MMU_R_TLBX] |= 0x80000000;
291 env->mmu.regs[rn] = v;
296 void mmu_init(struct microblaze_mmu *mmu)
299 for (i = 0; i < ARRAY_SIZE(mmu->regs); i++) {