Statistics
| Branch: | Revision:

root / target-microblaze / mmu.c @ 2a2af967

History | View | Annotate | Download (8.9 kB)

1 afeeceb0 Edgar E. Iglesias
/*
2 afeeceb0 Edgar E. Iglesias
 *  Microblaze MMU emulation for qemu.
3 afeeceb0 Edgar E. Iglesias
 *
4 afeeceb0 Edgar E. Iglesias
 *  Copyright (c) 2009 Edgar E. Iglesias
5 afeeceb0 Edgar E. Iglesias
 *
6 afeeceb0 Edgar E. Iglesias
 * This library is free software; you can redistribute it and/or
7 afeeceb0 Edgar E. Iglesias
 * modify it under the terms of the GNU Lesser General Public
8 afeeceb0 Edgar E. Iglesias
 * License as published by the Free Software Foundation; either
9 afeeceb0 Edgar E. Iglesias
 * version 2 of the License, or (at your option) any later version.
10 afeeceb0 Edgar E. Iglesias
 *
11 afeeceb0 Edgar E. Iglesias
 * This library is distributed in the hope that it will be useful,
12 afeeceb0 Edgar E. Iglesias
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 afeeceb0 Edgar E. Iglesias
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 afeeceb0 Edgar E. Iglesias
 * Lesser General Public License for more details.
15 afeeceb0 Edgar E. Iglesias
 *
16 afeeceb0 Edgar E. Iglesias
 * You should have received a copy of the GNU Lesser General Public
17 8167ee88 Blue Swirl
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 afeeceb0 Edgar E. Iglesias
 */
19 afeeceb0 Edgar E. Iglesias
#include <stdio.h>
20 afeeceb0 Edgar E. Iglesias
#include <stdlib.h>
21 afeeceb0 Edgar E. Iglesias
#include <assert.h>
22 afeeceb0 Edgar E. Iglesias
23 afeeceb0 Edgar E. Iglesias
#include "config.h"
24 afeeceb0 Edgar E. Iglesias
#include "cpu.h"
25 afeeceb0 Edgar E. Iglesias
26 afeeceb0 Edgar E. Iglesias
#define D(x)
27 afeeceb0 Edgar E. Iglesias
28 afeeceb0 Edgar E. Iglesias
static unsigned int tlb_decode_size(unsigned int f)
29 afeeceb0 Edgar E. Iglesias
{
30 afeeceb0 Edgar E. Iglesias
    static const unsigned int sizes[] = {
31 afeeceb0 Edgar E. Iglesias
        1 * 1024, 4 * 1024, 16 * 1024, 64 * 1024, 256 * 1024,
32 afeeceb0 Edgar E. Iglesias
        1 * 1024 * 1024, 4 * 1024 * 1024, 16 * 1024 * 1024
33 afeeceb0 Edgar E. Iglesias
    };
34 afeeceb0 Edgar E. Iglesias
    assert(f < ARRAY_SIZE(sizes));
35 afeeceb0 Edgar E. Iglesias
    return sizes[f];
36 afeeceb0 Edgar E. Iglesias
}
37 afeeceb0 Edgar E. Iglesias
38 6b2fce90 Edgar E. Iglesias
static void mmu_flush_idx(CPUState *env, unsigned int idx)
39 afeeceb0 Edgar E. Iglesias
{
40 afeeceb0 Edgar E. Iglesias
    struct microblaze_mmu *mmu = &env->mmu;
41 afeeceb0 Edgar E. Iglesias
    unsigned int tlb_size;
42 afeeceb0 Edgar E. Iglesias
    uint32_t tlb_tag, end, t;
43 afeeceb0 Edgar E. Iglesias
44 afeeceb0 Edgar E. Iglesias
    t = mmu->rams[RAM_TAG][idx];
45 afeeceb0 Edgar E. Iglesias
    if (!(t & TLB_VALID))
46 afeeceb0 Edgar E. Iglesias
        return;
47 afeeceb0 Edgar E. Iglesias
48 afeeceb0 Edgar E. Iglesias
    tlb_tag = t & TLB_EPN_MASK;
49 afeeceb0 Edgar E. Iglesias
    tlb_size = tlb_decode_size((t & TLB_PAGESZ_MASK) >> 7);
50 afeeceb0 Edgar E. Iglesias
    end = tlb_tag + tlb_size;
51 afeeceb0 Edgar E. Iglesias
52 afeeceb0 Edgar E. Iglesias
    while (tlb_tag < end) {
53 afeeceb0 Edgar E. Iglesias
        tlb_flush_page(env, tlb_tag);
54 afeeceb0 Edgar E. Iglesias
        tlb_tag += TARGET_PAGE_SIZE;
55 afeeceb0 Edgar E. Iglesias
    }
56 afeeceb0 Edgar E. Iglesias
}
57 afeeceb0 Edgar E. Iglesias
58 afeeceb0 Edgar E. Iglesias
static void mmu_change_pid(CPUState *env, unsigned int newpid) 
59 afeeceb0 Edgar E. Iglesias
{
60 afeeceb0 Edgar E. Iglesias
    struct microblaze_mmu *mmu = &env->mmu;
61 afeeceb0 Edgar E. Iglesias
    unsigned int i;
62 183aa454 Blue Swirl
    uint32_t t;
63 afeeceb0 Edgar E. Iglesias
64 afeeceb0 Edgar E. Iglesias
    if (newpid & ~0xff)
65 afeeceb0 Edgar E. Iglesias
        qemu_log("Illegal rpid=%x\n", newpid);
66 afeeceb0 Edgar E. Iglesias
67 afeeceb0 Edgar E. Iglesias
    for (i = 0; i < ARRAY_SIZE(mmu->rams[RAM_TAG]); i++) {
68 afeeceb0 Edgar E. Iglesias
        /* Lookup and decode.  */
69 afeeceb0 Edgar E. Iglesias
        t = mmu->rams[RAM_TAG][i];
70 afeeceb0 Edgar E. Iglesias
        if (t & TLB_VALID) {
71 afeeceb0 Edgar E. Iglesias
            if (mmu->tids[i] && ((mmu->regs[MMU_R_PID] & 0xff) == mmu->tids[i]))
72 afeeceb0 Edgar E. Iglesias
                mmu_flush_idx(env, i);
73 afeeceb0 Edgar E. Iglesias
        }
74 afeeceb0 Edgar E. Iglesias
    }
75 afeeceb0 Edgar E. Iglesias
}
76 afeeceb0 Edgar E. Iglesias
77 afeeceb0 Edgar E. Iglesias
/* rw - 0 = read, 1 = write, 2 = fetch.  */
78 afeeceb0 Edgar E. Iglesias
unsigned int mmu_translate(struct microblaze_mmu *mmu,
79 afeeceb0 Edgar E. Iglesias
                           struct microblaze_mmu_lookup *lu,
80 afeeceb0 Edgar E. Iglesias
                           target_ulong vaddr, int rw, int mmu_idx)
81 afeeceb0 Edgar E. Iglesias
{
82 afeeceb0 Edgar E. Iglesias
    unsigned int i, hit = 0;
83 afeeceb0 Edgar E. Iglesias
    unsigned int tlb_ex = 0, tlb_wr = 0, tlb_zsel;
84 afeeceb0 Edgar E. Iglesias
    unsigned int tlb_size;
85 afeeceb0 Edgar E. Iglesias
    uint32_t tlb_tag, tlb_rpn, mask, t0;
86 afeeceb0 Edgar E. Iglesias
87 afeeceb0 Edgar E. Iglesias
    lu->err = ERR_MISS;
88 afeeceb0 Edgar E. Iglesias
    for (i = 0; i < ARRAY_SIZE(mmu->rams[RAM_TAG]); i++) {
89 afeeceb0 Edgar E. Iglesias
        uint32_t t, d;
90 afeeceb0 Edgar E. Iglesias
91 afeeceb0 Edgar E. Iglesias
        /* Lookup and decode.  */
92 afeeceb0 Edgar E. Iglesias
        t = mmu->rams[RAM_TAG][i];
93 afeeceb0 Edgar E. Iglesias
        D(qemu_log("TLB %d valid=%d\n", i, t & TLB_VALID));
94 afeeceb0 Edgar E. Iglesias
        if (t & TLB_VALID) {
95 afeeceb0 Edgar E. Iglesias
            tlb_size = tlb_decode_size((t & TLB_PAGESZ_MASK) >> 7);
96 afeeceb0 Edgar E. Iglesias
            if (tlb_size < TARGET_PAGE_SIZE) {
97 afeeceb0 Edgar E. Iglesias
                qemu_log("%d pages not supported\n", tlb_size);
98 afeeceb0 Edgar E. Iglesias
                abort();
99 afeeceb0 Edgar E. Iglesias
            }
100 afeeceb0 Edgar E. Iglesias
101 afeeceb0 Edgar E. Iglesias
            mask = ~(tlb_size - 1);
102 afeeceb0 Edgar E. Iglesias
            tlb_tag = t & TLB_EPN_MASK;
103 afeeceb0 Edgar E. Iglesias
            if ((vaddr & mask) != (tlb_tag & mask)) {
104 afeeceb0 Edgar E. Iglesias
                D(qemu_log("TLB %d vaddr=%x != tag=%x\n",
105 afeeceb0 Edgar E. Iglesias
                           i, vaddr & mask, tlb_tag & mask));
106 afeeceb0 Edgar E. Iglesias
                continue;
107 afeeceb0 Edgar E. Iglesias
            }
108 afeeceb0 Edgar E. Iglesias
            if (mmu->tids[i]
109 afeeceb0 Edgar E. Iglesias
                && ((mmu->regs[MMU_R_PID] & 0xff) != mmu->tids[i])) {
110 afeeceb0 Edgar E. Iglesias
                D(qemu_log("TLB %d pid=%x != tid=%x\n",
111 afeeceb0 Edgar E. Iglesias
                           i, mmu->regs[MMU_R_PID], mmu->tids[i]));
112 afeeceb0 Edgar E. Iglesias
                continue;
113 afeeceb0 Edgar E. Iglesias
            }
114 afeeceb0 Edgar E. Iglesias
115 afeeceb0 Edgar E. Iglesias
            /* Bring in the data part.  */
116 afeeceb0 Edgar E. Iglesias
            d = mmu->rams[RAM_DATA][i];
117 afeeceb0 Edgar E. Iglesias
            tlb_ex = d & TLB_EX;
118 afeeceb0 Edgar E. Iglesias
            tlb_wr = d & TLB_WR;
119 afeeceb0 Edgar E. Iglesias
120 afeeceb0 Edgar E. Iglesias
            /* Now lets see if there is a zone that overrides the protbits.  */
121 afeeceb0 Edgar E. Iglesias
            tlb_zsel = (d >> 4) & 0xf;
122 afeeceb0 Edgar E. Iglesias
            t0 = mmu->regs[MMU_R_ZPR] >> (30 - (tlb_zsel * 2));
123 afeeceb0 Edgar E. Iglesias
            t0 &= 0x3;
124 3c50a71f Edgar E. Iglesias
125 3c50a71f Edgar E. Iglesias
            if (tlb_zsel > mmu->c_mmu_zones) {
126 3c50a71f Edgar E. Iglesias
                qemu_log("tlb zone select out of range! %d\n", tlb_zsel);
127 3c50a71f Edgar E. Iglesias
                t0 = 1; /* Ignore.  */
128 3c50a71f Edgar E. Iglesias
            }
129 3c50a71f Edgar E. Iglesias
130 3c50a71f Edgar E. Iglesias
            if (mmu->c_mmu == 1) {
131 3c50a71f Edgar E. Iglesias
                t0 = 1; /* Zones are disabled.  */
132 3c50a71f Edgar E. Iglesias
            }
133 3c50a71f Edgar E. Iglesias
134 afeeceb0 Edgar E. Iglesias
            switch (t0) {
135 afeeceb0 Edgar E. Iglesias
                case 0:
136 afeeceb0 Edgar E. Iglesias
                    if (mmu_idx == MMU_USER_IDX)
137 afeeceb0 Edgar E. Iglesias
                        continue;
138 afeeceb0 Edgar E. Iglesias
                    break;
139 afeeceb0 Edgar E. Iglesias
                case 2:
140 afeeceb0 Edgar E. Iglesias
                    if (mmu_idx != MMU_USER_IDX) {
141 afeeceb0 Edgar E. Iglesias
                        tlb_ex = 1;
142 afeeceb0 Edgar E. Iglesias
                        tlb_wr = 1;
143 afeeceb0 Edgar E. Iglesias
                    }
144 afeeceb0 Edgar E. Iglesias
                    break;
145 afeeceb0 Edgar E. Iglesias
                case 3:
146 afeeceb0 Edgar E. Iglesias
                    tlb_ex = 1;
147 afeeceb0 Edgar E. Iglesias
                    tlb_wr = 1;
148 afeeceb0 Edgar E. Iglesias
                    break;
149 3c50a71f Edgar E. Iglesias
                default: break;
150 afeeceb0 Edgar E. Iglesias
            }
151 afeeceb0 Edgar E. Iglesias
152 afeeceb0 Edgar E. Iglesias
            lu->err = ERR_PROT;
153 afeeceb0 Edgar E. Iglesias
            lu->prot = PAGE_READ;
154 afeeceb0 Edgar E. Iglesias
            if (tlb_wr)
155 afeeceb0 Edgar E. Iglesias
                lu->prot |= PAGE_WRITE;
156 afeeceb0 Edgar E. Iglesias
            else if (rw == 1)
157 afeeceb0 Edgar E. Iglesias
                goto done;
158 afeeceb0 Edgar E. Iglesias
            if (tlb_ex)
159 afeeceb0 Edgar E. Iglesias
                lu->prot |=PAGE_EXEC;
160 afeeceb0 Edgar E. Iglesias
            else if (rw == 2) {
161 afeeceb0 Edgar E. Iglesias
                goto done;
162 afeeceb0 Edgar E. Iglesias
            }
163 afeeceb0 Edgar E. Iglesias
164 afeeceb0 Edgar E. Iglesias
            tlb_rpn = d & TLB_RPN_MASK;
165 afeeceb0 Edgar E. Iglesias
166 afeeceb0 Edgar E. Iglesias
            lu->vaddr = tlb_tag;
167 afeeceb0 Edgar E. Iglesias
            lu->paddr = tlb_rpn;
168 afeeceb0 Edgar E. Iglesias
            lu->size = tlb_size;
169 afeeceb0 Edgar E. Iglesias
            lu->err = ERR_HIT;
170 afeeceb0 Edgar E. Iglesias
            lu->idx = i;
171 afeeceb0 Edgar E. Iglesias
            hit = 1;
172 afeeceb0 Edgar E. Iglesias
            goto done;
173 afeeceb0 Edgar E. Iglesias
        }
174 afeeceb0 Edgar E. Iglesias
    }
175 afeeceb0 Edgar E. Iglesias
done:
176 afeeceb0 Edgar E. Iglesias
    D(qemu_log("MMU vaddr=%x rw=%d tlb_wr=%d tlb_ex=%d hit=%d\n",
177 afeeceb0 Edgar E. Iglesias
              vaddr, rw, tlb_wr, tlb_ex, hit));
178 afeeceb0 Edgar E. Iglesias
    return hit;
179 afeeceb0 Edgar E. Iglesias
}
180 afeeceb0 Edgar E. Iglesias
181 afeeceb0 Edgar E. Iglesias
/* Writes/reads to the MMU's special regs end up here.  */
182 afeeceb0 Edgar E. Iglesias
uint32_t mmu_read(CPUState *env, uint32_t rn)
183 afeeceb0 Edgar E. Iglesias
{
184 afeeceb0 Edgar E. Iglesias
    unsigned int i;
185 afeeceb0 Edgar E. Iglesias
    uint32_t r;
186 afeeceb0 Edgar E. Iglesias
187 3c50a71f Edgar E. Iglesias
    if (env->mmu.c_mmu < 2 || !env->mmu.c_mmu_tlb_access) {
188 3c50a71f Edgar E. Iglesias
        qemu_log("MMU access on MMU-less system\n");
189 3c50a71f Edgar E. Iglesias
        return 0;
190 3c50a71f Edgar E. Iglesias
    }
191 3c50a71f Edgar E. Iglesias
192 afeeceb0 Edgar E. Iglesias
    switch (rn) {
193 afeeceb0 Edgar E. Iglesias
        /* Reads to HI/LO trig reads from the mmu rams.  */
194 afeeceb0 Edgar E. Iglesias
        case MMU_R_TLBLO:
195 afeeceb0 Edgar E. Iglesias
        case MMU_R_TLBHI:
196 3c50a71f Edgar E. Iglesias
            if (!(env->mmu.c_mmu_tlb_access & 1)) {
197 3c50a71f Edgar E. Iglesias
                qemu_log("Invalid access to MMU reg %d\n", rn);
198 3c50a71f Edgar E. Iglesias
                return 0;
199 3c50a71f Edgar E. Iglesias
            }
200 3c50a71f Edgar E. Iglesias
201 afeeceb0 Edgar E. Iglesias
            i = env->mmu.regs[MMU_R_TLBX] & 0xff;
202 afeeceb0 Edgar E. Iglesias
            r = env->mmu.rams[rn & 1][i];
203 afeeceb0 Edgar E. Iglesias
            if (rn == MMU_R_TLBHI)
204 afeeceb0 Edgar E. Iglesias
                env->mmu.regs[MMU_R_PID] = env->mmu.tids[i];
205 afeeceb0 Edgar E. Iglesias
            break;
206 3c50a71f Edgar E. Iglesias
        case MMU_R_PID:
207 3c50a71f Edgar E. Iglesias
        case MMU_R_ZPR:
208 3c50a71f Edgar E. Iglesias
            if (!(env->mmu.c_mmu_tlb_access & 1)) {
209 3c50a71f Edgar E. Iglesias
                qemu_log("Invalid access to MMU reg %d\n", rn);
210 3c50a71f Edgar E. Iglesias
                return 0;
211 3c50a71f Edgar E. Iglesias
            }
212 3c50a71f Edgar E. Iglesias
            r = env->mmu.regs[rn];
213 3c50a71f Edgar E. Iglesias
            break;
214 afeeceb0 Edgar E. Iglesias
        default:
215 afeeceb0 Edgar E. Iglesias
            r = env->mmu.regs[rn];
216 afeeceb0 Edgar E. Iglesias
            break;
217 afeeceb0 Edgar E. Iglesias
    }
218 afeeceb0 Edgar E. Iglesias
    D(qemu_log("%s rn=%d=%x\n", __func__, rn, r));
219 afeeceb0 Edgar E. Iglesias
    return r;
220 afeeceb0 Edgar E. Iglesias
}
221 afeeceb0 Edgar E. Iglesias
222 afeeceb0 Edgar E. Iglesias
void mmu_write(CPUState *env, uint32_t rn, uint32_t v)
223 afeeceb0 Edgar E. Iglesias
{
224 afeeceb0 Edgar E. Iglesias
    unsigned int i;
225 afeeceb0 Edgar E. Iglesias
    D(qemu_log("%s rn=%d=%x old=%x\n", __func__, rn, v, env->mmu.regs[rn]));
226 afeeceb0 Edgar E. Iglesias
227 3c50a71f Edgar E. Iglesias
    if (env->mmu.c_mmu < 2 || !env->mmu.c_mmu_tlb_access) {
228 3c50a71f Edgar E. Iglesias
        qemu_log("MMU access on MMU-less system\n");
229 3c50a71f Edgar E. Iglesias
        return;
230 3c50a71f Edgar E. Iglesias
    }
231 3c50a71f Edgar E. Iglesias
232 afeeceb0 Edgar E. Iglesias
    switch (rn) {
233 afeeceb0 Edgar E. Iglesias
        /* Writes to HI/LO trig writes to the mmu rams.  */
234 afeeceb0 Edgar E. Iglesias
        case MMU_R_TLBLO:
235 afeeceb0 Edgar E. Iglesias
        case MMU_R_TLBHI:
236 afeeceb0 Edgar E. Iglesias
            i = env->mmu.regs[MMU_R_TLBX] & 0xff;
237 afeeceb0 Edgar E. Iglesias
            if (rn == MMU_R_TLBHI) {
238 afeeceb0 Edgar E. Iglesias
                if (i < 3 && !(v & TLB_VALID) && qemu_loglevel_mask(~0))
239 afeeceb0 Edgar E. Iglesias
                    qemu_log("invalidating index %x at pc=%x\n",
240 afeeceb0 Edgar E. Iglesias
                             i, env->sregs[SR_PC]);
241 afeeceb0 Edgar E. Iglesias
                env->mmu.tids[i] = env->mmu.regs[MMU_R_PID] & 0xff;
242 afeeceb0 Edgar E. Iglesias
                mmu_flush_idx(env, i);
243 afeeceb0 Edgar E. Iglesias
            }
244 afeeceb0 Edgar E. Iglesias
            env->mmu.rams[rn & 1][i] = v;
245 afeeceb0 Edgar E. Iglesias
246 afeeceb0 Edgar E. Iglesias
            D(qemu_log("%s ram[%d][%d]=%x\n", __func__, rn & 1, i, v));
247 afeeceb0 Edgar E. Iglesias
            break;
248 afeeceb0 Edgar E. Iglesias
        case MMU_R_ZPR:
249 3c50a71f Edgar E. Iglesias
            if (env->mmu.c_mmu_tlb_access <= 1) {
250 3c50a71f Edgar E. Iglesias
                qemu_log("Invalid access to MMU reg %d\n", rn);
251 3c50a71f Edgar E. Iglesias
                return;
252 3c50a71f Edgar E. Iglesias
            }
253 3c50a71f Edgar E. Iglesias
254 d0f3654f Edgar E. Iglesias
            /* Changes to the zone protection reg flush the QEMU TLB.
255 d0f3654f Edgar E. Iglesias
               Fortunately, these are very uncommon.  */
256 d0f3654f Edgar E. Iglesias
            if (v != env->mmu.regs[rn]) {
257 d0f3654f Edgar E. Iglesias
                tlb_flush(env, 1);
258 d0f3654f Edgar E. Iglesias
            }
259 d0f3654f Edgar E. Iglesias
            env->mmu.regs[rn] = v;
260 d0f3654f Edgar E. Iglesias
            break;
261 afeeceb0 Edgar E. Iglesias
        case MMU_R_PID:
262 3c50a71f Edgar E. Iglesias
            if (env->mmu.c_mmu_tlb_access <= 1) {
263 3c50a71f Edgar E. Iglesias
                qemu_log("Invalid access to MMU reg %d\n", rn);
264 3c50a71f Edgar E. Iglesias
                return;
265 3c50a71f Edgar E. Iglesias
            }
266 3c50a71f Edgar E. Iglesias
267 afeeceb0 Edgar E. Iglesias
            if (v != env->mmu.regs[rn]) {
268 afeeceb0 Edgar E. Iglesias
                mmu_change_pid(env, v);
269 afeeceb0 Edgar E. Iglesias
                env->mmu.regs[rn] = v;
270 afeeceb0 Edgar E. Iglesias
            }
271 afeeceb0 Edgar E. Iglesias
            break;
272 afeeceb0 Edgar E. Iglesias
        case MMU_R_TLBSX:
273 afeeceb0 Edgar E. Iglesias
        {
274 afeeceb0 Edgar E. Iglesias
            struct microblaze_mmu_lookup lu;
275 afeeceb0 Edgar E. Iglesias
            int hit;
276 3c50a71f Edgar E. Iglesias
277 3c50a71f Edgar E. Iglesias
            if (env->mmu.c_mmu_tlb_access <= 1) {
278 3c50a71f Edgar E. Iglesias
                qemu_log("Invalid access to MMU reg %d\n", rn);
279 3c50a71f Edgar E. Iglesias
                return;
280 3c50a71f Edgar E. Iglesias
            }
281 3c50a71f Edgar E. Iglesias
282 afeeceb0 Edgar E. Iglesias
            hit = mmu_translate(&env->mmu, &lu,
283 afeeceb0 Edgar E. Iglesias
                                v & TLB_EPN_MASK, 0, cpu_mmu_index(env));
284 afeeceb0 Edgar E. Iglesias
            if (hit) {
285 afeeceb0 Edgar E. Iglesias
                env->mmu.regs[MMU_R_TLBX] = lu.idx;
286 afeeceb0 Edgar E. Iglesias
            } else
287 afeeceb0 Edgar E. Iglesias
                env->mmu.regs[MMU_R_TLBX] |= 0x80000000;
288 afeeceb0 Edgar E. Iglesias
            break;
289 afeeceb0 Edgar E. Iglesias
        }
290 afeeceb0 Edgar E. Iglesias
        default:
291 afeeceb0 Edgar E. Iglesias
            env->mmu.regs[rn] = v;
292 afeeceb0 Edgar E. Iglesias
            break;
293 afeeceb0 Edgar E. Iglesias
   }
294 afeeceb0 Edgar E. Iglesias
}
295 afeeceb0 Edgar E. Iglesias
296 afeeceb0 Edgar E. Iglesias
void mmu_init(struct microblaze_mmu *mmu)
297 afeeceb0 Edgar E. Iglesias
{
298 3c50a71f Edgar E. Iglesias
    int i;
299 3c50a71f Edgar E. Iglesias
    for (i = 0; i < ARRAY_SIZE(mmu->regs); i++) {
300 3c50a71f Edgar E. Iglesias
        mmu->regs[i] = 0;
301 3c50a71f Edgar E. Iglesias
    }
302 afeeceb0 Edgar E. Iglesias
}