Subversion Repositories HelenOS

Rev

Rev 3771 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3771 Rev 3862
1
/*
1
/*
2
 * Copyright (c) 2005 Jakub Jermar
2
 * Copyright (c) 2005 Jakub Jermar
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup sparc64mm  
29
/** @addtogroup sparc64mm  
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
#include <arch/mm/sun4u/tlb.h>
-
 
36
#include <arch/mm/sun4u/tlb.h>
35
#include <arch/mm/tlb.h>
37
#include <mm/tlb.h>
36
#include <mm/tlb.h>
38
#include <mm/as.h>
37
#include <mm/as.h>
39
#include <mm/asid.h>
38
#include <mm/asid.h>
40
#include <arch/mm/frame.h>
39
#include <arch/mm/frame.h>
41
#include <arch/mm/page.h>
40
#include <arch/mm/page.h>
42
#include <arch/mm/pagesize.h>
41
#include <arch/mm/pagesize.h>
43
#include <arch/mm/sun4u/mmu.h>
42
#include <arch/mm/mmu.h>
44
#include <arch/interrupt.h>
43
#include <arch/interrupt.h>
45
#include <interrupt.h>
44
#include <interrupt.h>
46
#include <arch.h>
45
#include <arch.h>
47
#include <print.h>
46
#include <print.h>
48
#include <arch/types.h>
47
#include <arch/types.h>
49
#include <config.h>
48
#include <config.h>
50
#include <arch/trap/trap.h>
49
#include <arch/trap/trap.h>
51
#include <arch/trap/exception.h>
50
#include <arch/trap/exception.h>
52
#include <panic.h>
51
#include <panic.h>
53
#include <arch/asm.h>
52
#include <arch/asm.h>
54
 
53
 
55
#ifdef CONFIG_TSB
54
#ifdef CONFIG_TSB
56
#include <arch/mm/tsb.h>
55
#include <arch/mm/tsb.h>
57
#endif
56
#endif
58
 
57
 
59
static void dtlb_pte_copy(pte_t *, index_t, bool);
58
static void dtlb_pte_copy(pte_t *, index_t, bool);
60
static void itlb_pte_copy(pte_t *, index_t);
59
static void itlb_pte_copy(pte_t *, index_t);
61
static void do_fast_instruction_access_mmu_miss_fault(istate_t *, const char *);
60
static void do_fast_instruction_access_mmu_miss_fault(istate_t *, const char *);
62
static void do_fast_data_access_mmu_miss_fault(istate_t *, tlb_tag_access_reg_t,
61
static void do_fast_data_access_mmu_miss_fault(istate_t *, tlb_tag_access_reg_t,
63
    const char *);
62
    const char *);
64
static void do_fast_data_access_protection_fault(istate_t *,
63
static void do_fast_data_access_protection_fault(istate_t *,
65
    tlb_tag_access_reg_t, const char *);
64
    tlb_tag_access_reg_t, const char *);
66
 
65
 
67
char *context_encoding[] = {
66
char *context_encoding[] = {
68
    "Primary",
67
    "Primary",
69
    "Secondary",
68
    "Secondary",
70
    "Nucleus",
69
    "Nucleus",
71
    "Reserved"
70
    "Reserved"
72
};
71
};
73
 
72
 
74
void tlb_arch_init(void)
73
void tlb_arch_init(void)
75
{
74
{
76
    /*
75
    /*
77
     * Invalidate all non-locked DTLB and ITLB entries.
76
     * Invalidate all non-locked DTLB and ITLB entries.
78
     */
77
     */
79
    tlb_invalidate_all();
78
    tlb_invalidate_all();
80
 
79
 
81
    /*
80
    /*
82
     * Clear both SFSRs.
81
     * Clear both SFSRs.
83
     */
82
     */
84
    dtlb_sfsr_write(0);
83
    dtlb_sfsr_write(0);
85
    itlb_sfsr_write(0);
84
    itlb_sfsr_write(0);
86
}
85
}
87
 
86
 
88
/** Insert privileged mapping into DMMU TLB.
87
/** Insert privileged mapping into DMMU TLB.
89
 *
88
 *
90
 * @param page      Virtual page address.
89
 * @param page      Virtual page address.
91
 * @param frame     Physical frame address.
90
 * @param frame     Physical frame address.
92
 * @param pagesize  Page size.
91
 * @param pagesize  Page size.
93
 * @param locked    True for permanent mappings, false otherwise.
92
 * @param locked    True for permanent mappings, false otherwise.
94
 * @param cacheable True if the mapping is cacheable, false otherwise.
93
 * @param cacheable True if the mapping is cacheable, false otherwise.
95
 */
94
 */
96
void dtlb_insert_mapping(uintptr_t page, uintptr_t frame, int pagesize,
95
void dtlb_insert_mapping(uintptr_t page, uintptr_t frame, int pagesize,
97
    bool locked, bool cacheable)
96
    bool locked, bool cacheable)
98
{
97
{
99
    tlb_tag_access_reg_t tag;
98
    tlb_tag_access_reg_t tag;
100
    tlb_data_t data;
99
    tlb_data_t data;
101
    page_address_t pg;
100
    page_address_t pg;
102
    frame_address_t fr;
101
    frame_address_t fr;
103
 
102
 
104
    pg.address = page;
103
    pg.address = page;
105
    fr.address = frame;
104
    fr.address = frame;
106
 
105
 
107
    tag.context = ASID_KERNEL;
106
    tag.context = ASID_KERNEL;
108
    tag.vpn = pg.vpn;
107
    tag.vpn = pg.vpn;
109
 
108
 
110
    dtlb_tag_access_write(tag.value);
109
    dtlb_tag_access_write(tag.value);
111
 
110
 
112
    data.value = 0;
111
    data.value = 0;
113
    data.v = true;
112
    data.v = true;
114
    data.size = pagesize;
113
    data.size = pagesize;
115
    data.pfn = fr.pfn;
114
    data.pfn = fr.pfn;
116
    data.l = locked;
115
    data.l = locked;
117
    data.cp = cacheable;
116
    data.cp = cacheable;
118
#ifdef CONFIG_VIRT_IDX_DCACHE
117
#ifdef CONFIG_VIRT_IDX_DCACHE
119
    data.cv = cacheable;
118
    data.cv = cacheable;
120
#endif /* CONFIG_VIRT_IDX_DCACHE */
119
#endif /* CONFIG_VIRT_IDX_DCACHE */
121
    data.p = true;
120
    data.p = true;
122
    data.w = true;
121
    data.w = true;
123
    data.g = false;
122
    data.g = false;
124
 
123
 
125
    dtlb_data_in_write(data.value);
124
    dtlb_data_in_write(data.value);
126
}
125
}
127
 
126
 
128
/** Copy PTE to TLB.
127
/** Copy PTE to TLB.
129
 *
128
 *
130
 * @param t         Page Table Entry to be copied.
129
 * @param t         Page Table Entry to be copied.
131
 * @param index     Zero if lower 8K-subpage, one if higher 8K-subpage.
130
 * @param index     Zero if lower 8K-subpage, one if higher 8K-subpage.
132
 * @param ro        If true, the entry will be created read-only, regardless
131
 * @param ro        If true, the entry will be created read-only, regardless
133
 *          of its w field.
132
 *          of its w field.
134
 */
133
 */
135
void dtlb_pte_copy(pte_t *t, index_t index, bool ro)
134
void dtlb_pte_copy(pte_t *t, index_t index, bool ro)
136
{
135
{
137
    tlb_tag_access_reg_t tag;
136
    tlb_tag_access_reg_t tag;
138
    tlb_data_t data;
137
    tlb_data_t data;
139
    page_address_t pg;
138
    page_address_t pg;
140
    frame_address_t fr;
139
    frame_address_t fr;
141
 
140
 
142
    pg.address = t->page + (index << MMU_PAGE_WIDTH);
141
    pg.address = t->page + (index << MMU_PAGE_WIDTH);
143
    fr.address = t->frame + (index << MMU_PAGE_WIDTH);
142
    fr.address = t->frame + (index << MMU_PAGE_WIDTH);
144
 
143
 
145
    tag.value = 0;
144
    tag.value = 0;
146
    tag.context = t->as->asid;
145
    tag.context = t->as->asid;
147
    tag.vpn = pg.vpn;
146
    tag.vpn = pg.vpn;
148
 
147
 
149
    dtlb_tag_access_write(tag.value);
148
    dtlb_tag_access_write(tag.value);
150
 
149
 
151
    data.value = 0;
150
    data.value = 0;
152
    data.v = true;
151
    data.v = true;
153
    data.size = PAGESIZE_8K;
152
    data.size = PAGESIZE_8K;
154
    data.pfn = fr.pfn;
153
    data.pfn = fr.pfn;
155
    data.l = false;
154
    data.l = false;
156
    data.cp = t->c;
155
    data.cp = t->c;
157
#ifdef CONFIG_VIRT_IDX_DCACHE
156
#ifdef CONFIG_VIRT_IDX_DCACHE
158
    data.cv = t->c;
157
    data.cv = t->c;
159
#endif /* CONFIG_VIRT_IDX_DCACHE */
158
#endif /* CONFIG_VIRT_IDX_DCACHE */
160
    data.p = t->k;      /* p like privileged */
159
    data.p = t->k;      /* p like privileged */
161
    data.w = ro ? false : t->w;
160
    data.w = ro ? false : t->w;
162
    data.g = t->g;
161
    data.g = t->g;
163
 
162
 
164
    dtlb_data_in_write(data.value);
163
    dtlb_data_in_write(data.value);
165
}
164
}
166
 
165
 
167
/** Copy PTE to ITLB.
166
/** Copy PTE to ITLB.
168
 *
167
 *
169
 * @param t     Page Table Entry to be copied.
168
 * @param t     Page Table Entry to be copied.
170
 * @param index     Zero if lower 8K-subpage, one if higher 8K-subpage.
169
 * @param index     Zero if lower 8K-subpage, one if higher 8K-subpage.
171
 */
170
 */
172
void itlb_pte_copy(pte_t *t, index_t index)
171
void itlb_pte_copy(pte_t *t, index_t index)
173
{
172
{
174
    tlb_tag_access_reg_t tag;
173
    tlb_tag_access_reg_t tag;
175
    tlb_data_t data;
174
    tlb_data_t data;
176
    page_address_t pg;
175
    page_address_t pg;
177
    frame_address_t fr;
176
    frame_address_t fr;
178
 
177
 
179
    pg.address = t->page + (index << MMU_PAGE_WIDTH);
178
    pg.address = t->page + (index << MMU_PAGE_WIDTH);
180
    fr.address = t->frame + (index << MMU_PAGE_WIDTH);
179
    fr.address = t->frame + (index << MMU_PAGE_WIDTH);
181
 
180
 
182
    tag.value = 0;
181
    tag.value = 0;
183
    tag.context = t->as->asid;
182
    tag.context = t->as->asid;
184
    tag.vpn = pg.vpn;
183
    tag.vpn = pg.vpn;
185
   
184
   
186
    itlb_tag_access_write(tag.value);
185
    itlb_tag_access_write(tag.value);
187
   
186
   
188
    data.value = 0;
187
    data.value = 0;
189
    data.v = true;
188
    data.v = true;
190
    data.size = PAGESIZE_8K;
189
    data.size = PAGESIZE_8K;
191
    data.pfn = fr.pfn;
190
    data.pfn = fr.pfn;
192
    data.l = false;
191
    data.l = false;
193
    data.cp = t->c;
192
    data.cp = t->c;
194
    data.p = t->k;      /* p like privileged */
193
    data.p = t->k;      /* p like privileged */
195
    data.w = false;
194
    data.w = false;
196
    data.g = t->g;
195
    data.g = t->g;
197
   
196
   
198
    itlb_data_in_write(data.value);
197
    itlb_data_in_write(data.value);
199
}
198
}
200
 
199
 
201
/** ITLB miss handler. */
200
/** ITLB miss handler. */
202
void fast_instruction_access_mmu_miss(unative_t unused, istate_t *istate)
201
void fast_instruction_access_mmu_miss(unative_t unused, istate_t *istate)
203
{
202
{
204
    uintptr_t va = ALIGN_DOWN(istate->tpc, PAGE_SIZE);
203
    uintptr_t va = ALIGN_DOWN(istate->tpc, PAGE_SIZE);
205
    index_t index = (istate->tpc >> MMU_PAGE_WIDTH) % MMU_PAGES_PER_PAGE;
204
    index_t index = (istate->tpc >> MMU_PAGE_WIDTH) % MMU_PAGES_PER_PAGE;
206
    pte_t *t;
205
    pte_t *t;
207
 
206
 
208
    page_table_lock(AS, true);
207
    page_table_lock(AS, true);
209
    t = page_mapping_find(AS, va);
208
    t = page_mapping_find(AS, va);
210
    if (t && PTE_EXECUTABLE(t)) {
209
    if (t && PTE_EXECUTABLE(t)) {
211
        /*
210
        /*
212
         * The mapping was found in the software page hash table.
211
         * The mapping was found in the software page hash table.
213
         * Insert it into ITLB.
212
         * Insert it into ITLB.
214
         */
213
         */
215
        t->a = true;
214
        t->a = true;
216
        itlb_pte_copy(t, index);
215
        itlb_pte_copy(t, index);
217
#ifdef CONFIG_TSB
216
#ifdef CONFIG_TSB
218
        itsb_pte_copy(t, index);
217
        itsb_pte_copy(t, index);
219
#endif
218
#endif
220
        page_table_unlock(AS, true);
219
        page_table_unlock(AS, true);
221
    } else {
220
    } else {
222
        /*
221
        /*
223
         * Forward the page fault to the address space page fault
222
         * Forward the page fault to the address space page fault
224
         * handler.
223
         * handler.
225
         */    
224
         */    
226
        page_table_unlock(AS, true);
225
        page_table_unlock(AS, true);
227
        if (as_page_fault(va, PF_ACCESS_EXEC, istate) == AS_PF_FAULT) {
226
        if (as_page_fault(va, PF_ACCESS_EXEC, istate) == AS_PF_FAULT) {
228
            do_fast_instruction_access_mmu_miss_fault(istate,
227
            do_fast_instruction_access_mmu_miss_fault(istate,
229
                __func__);
228
                __func__);
230
        }
229
        }
231
    }
230
    }
232
}
231
}
233
 
232
 
234
/** DTLB miss handler.
233
/** DTLB miss handler.
235
 *
234
 *
236
 * Note that some faults (e.g. kernel faults) were already resolved by the
235
 * Note that some faults (e.g. kernel faults) were already resolved by the
237
 * low-level, assembly language part of the fast_data_access_mmu_miss handler.
236
 * low-level, assembly language part of the fast_data_access_mmu_miss handler.
238
 *
237
 *
239
 * @param tag       Content of the TLB Tag Access register as it existed
238
 * @param tag       Content of the TLB Tag Access register as it existed
240
 *          when the trap happened. This is to prevent confusion
239
 *          when the trap happened. This is to prevent confusion
241
 *          created by clobbered Tag Access register during a nested
240
 *          created by clobbered Tag Access register during a nested
242
 *          DTLB miss.
241
 *          DTLB miss.
243
 * @param istate    Interrupted state saved on the stack.
242
 * @param istate    Interrupted state saved on the stack.
244
 */
243
 */
245
void fast_data_access_mmu_miss(tlb_tag_access_reg_t tag, istate_t *istate)
244
void fast_data_access_mmu_miss(tlb_tag_access_reg_t tag, istate_t *istate)
246
{
245
{
247
    uintptr_t va;
246
    uintptr_t va;
248
    index_t index;
247
    index_t index;
249
    pte_t *t;
248
    pte_t *t;
250
 
249
 
251
    va = ALIGN_DOWN((uint64_t) tag.vpn << MMU_PAGE_WIDTH, PAGE_SIZE);
250
    va = ALIGN_DOWN((uint64_t) tag.vpn << MMU_PAGE_WIDTH, PAGE_SIZE);
252
    index = tag.vpn % MMU_PAGES_PER_PAGE;
251
    index = tag.vpn % MMU_PAGES_PER_PAGE;
253
 
252
 
254
    if (tag.context == ASID_KERNEL) {
253
    if (tag.context == ASID_KERNEL) {
255
        if (!tag.vpn) {
254
        if (!tag.vpn) {
256
            /* NULL access in kernel */
255
            /* NULL access in kernel */
257
            do_fast_data_access_mmu_miss_fault(istate, tag,
256
            do_fast_data_access_mmu_miss_fault(istate, tag,
258
                __func__);
257
                __func__);
259
        }
258
        }
260
        do_fast_data_access_mmu_miss_fault(istate, tag, "Unexpected "
259
        do_fast_data_access_mmu_miss_fault(istate, tag, "Unexpected "
261
            "kernel page fault.");
260
            "kernel page fault.");
262
    }
261
    }
263
 
262
 
264
    page_table_lock(AS, true);
263
    page_table_lock(AS, true);
265
    t = page_mapping_find(AS, va);
264
    t = page_mapping_find(AS, va);
266
    if (t) {
265
    if (t) {
267
        /*
266
        /*
268
         * The mapping was found in the software page hash table.
267
         * The mapping was found in the software page hash table.
269
         * Insert it into DTLB.
268
         * Insert it into DTLB.
270
         */
269
         */
271
        t->a = true;
270
        t->a = true;
272
        dtlb_pte_copy(t, index, true);
271
        dtlb_pte_copy(t, index, true);
273
#ifdef CONFIG_TSB
272
#ifdef CONFIG_TSB
274
        dtsb_pte_copy(t, index, true);
273
        dtsb_pte_copy(t, index, true);
275
#endif
274
#endif
276
        page_table_unlock(AS, true);
275
        page_table_unlock(AS, true);
277
    } else {
276
    } else {
278
        /*
277
        /*
279
         * Forward the page fault to the address space page fault
278
         * Forward the page fault to the address space page fault
280
         * handler.
279
         * handler.
281
         */    
280
         */    
282
        page_table_unlock(AS, true);
281
        page_table_unlock(AS, true);
283
        if (as_page_fault(va, PF_ACCESS_READ, istate) == AS_PF_FAULT) {
282
        if (as_page_fault(va, PF_ACCESS_READ, istate) == AS_PF_FAULT) {
284
            do_fast_data_access_mmu_miss_fault(istate, tag,
283
            do_fast_data_access_mmu_miss_fault(istate, tag,
285
                __func__);
284
                __func__);
286
        }
285
        }
287
    }
286
    }
288
}
287
}
289
 
288
 
290
/** DTLB protection fault handler.
289
/** DTLB protection fault handler.
291
 *
290
 *
292
 * @param tag       Content of the TLB Tag Access register as it existed
291
 * @param tag       Content of the TLB Tag Access register as it existed
293
 *          when the trap happened. This is to prevent confusion
292
 *          when the trap happened. This is to prevent confusion
294
 *          created by clobbered Tag Access register during a nested
293
 *          created by clobbered Tag Access register during a nested
295
 *          DTLB miss.
294
 *          DTLB miss.
296
 * @param istate    Interrupted state saved on the stack.
295
 * @param istate    Interrupted state saved on the stack.
297
 */
296
 */
298
void fast_data_access_protection(tlb_tag_access_reg_t tag, istate_t *istate)
297
void fast_data_access_protection(tlb_tag_access_reg_t tag, istate_t *istate)
299
{
298
{
300
    uintptr_t va;
299
    uintptr_t va;
301
    index_t index;
300
    index_t index;
302
    pte_t *t;
301
    pte_t *t;
303
 
302
 
304
    va = ALIGN_DOWN((uint64_t) tag.vpn << MMU_PAGE_WIDTH, PAGE_SIZE);
303
    va = ALIGN_DOWN((uint64_t) tag.vpn << MMU_PAGE_WIDTH, PAGE_SIZE);
305
    index = tag.vpn % MMU_PAGES_PER_PAGE;   /* 16K-page emulation */
304
    index = tag.vpn % MMU_PAGES_PER_PAGE;   /* 16K-page emulation */
306
 
305
 
307
    page_table_lock(AS, true);
306
    page_table_lock(AS, true);
308
    t = page_mapping_find(AS, va);
307
    t = page_mapping_find(AS, va);
309
    if (t && PTE_WRITABLE(t)) {
308
    if (t && PTE_WRITABLE(t)) {
310
        /*
309
        /*
311
         * The mapping was found in the software page hash table and is
310
         * The mapping was found in the software page hash table and is
312
         * writable. Demap the old mapping and insert an updated mapping
311
         * writable. Demap the old mapping and insert an updated mapping
313
         * into DTLB.
312
         * into DTLB.
314
         */
313
         */
315
        t->a = true;
314
        t->a = true;
316
        t->d = true;
315
        t->d = true;
317
        dtlb_demap(TLB_DEMAP_PAGE, TLB_DEMAP_SECONDARY,
316
        dtlb_demap(TLB_DEMAP_PAGE, TLB_DEMAP_SECONDARY,
318
            va + index * MMU_PAGE_SIZE);
317
            va + index * MMU_PAGE_SIZE);
319
        dtlb_pte_copy(t, index, false);
318
        dtlb_pte_copy(t, index, false);
320
#ifdef CONFIG_TSB
319
#ifdef CONFIG_TSB
321
        dtsb_pte_copy(t, index, false);
320
        dtsb_pte_copy(t, index, false);
322
#endif
321
#endif
323
        page_table_unlock(AS, true);
322
        page_table_unlock(AS, true);
324
    } else {
323
    } else {
325
        /*
324
        /*
326
         * Forward the page fault to the address space page fault
325
         * Forward the page fault to the address space page fault
327
         * handler.
326
         * handler.
328
         */    
327
         */    
329
        page_table_unlock(AS, true);
328
        page_table_unlock(AS, true);
330
        if (as_page_fault(va, PF_ACCESS_WRITE, istate) == AS_PF_FAULT) {
329
        if (as_page_fault(va, PF_ACCESS_WRITE, istate) == AS_PF_FAULT) {
331
            do_fast_data_access_protection_fault(istate, tag,
330
            do_fast_data_access_protection_fault(istate, tag,
332
                __func__);
331
                __func__);
333
        }
332
        }
334
    }
333
    }
335
}
334
}
336
 
335
 
337
/** Print TLB entry (for debugging purposes).
336
/** Print TLB entry (for debugging purposes).
338
 *
337
 *
339
 * The diag field has been left out in order to make this function more generic
338
 * The diag field has been left out in order to make this function more generic
340
 * (there is no diag field in US3 architeture).
339
 * (there is no diag field in US3 architeture).
341
 *
340
 *
342
 * @param i     TLB entry number
341
 * @param i     TLB entry number
343
 * @param t     TLB entry tag
342
 * @param t     TLB entry tag
344
 * @param d     TLB entry data
343
 * @param d     TLB entry data
345
 */
344
 */
346
static void print_tlb_entry(int i, tlb_tag_read_reg_t t, tlb_data_t d)
345
static void print_tlb_entry(int i, tlb_tag_read_reg_t t, tlb_data_t d)
347
{
346
{
348
    printf("%d: vpn=%#llx, context=%d, v=%d, size=%d, nfo=%d, "
347
    printf("%d: vpn=%#llx, context=%d, v=%d, size=%d, nfo=%d, "
349
        "ie=%d, soft2=%#x, pfn=%#x, soft=%#x, l=%d, "
348
        "ie=%d, soft2=%#x, pfn=%#x, soft=%#x, l=%d, "
350
        "cp=%d, cv=%d, e=%d, p=%d, w=%d, g=%d\n", i, t.vpn,
349
        "cp=%d, cv=%d, e=%d, p=%d, w=%d, g=%d\n", i, t.vpn,
351
        t.context, d.v, d.size, d.nfo, d.ie, d.soft2,
350
        t.context, d.v, d.size, d.nfo, d.ie, d.soft2,
352
        d.pfn, d.soft, d.l, d.cp, d.cv, d.e, d.p, d.w, d.g);
351
        d.pfn, d.soft, d.l, d.cp, d.cv, d.e, d.p, d.w, d.g);
353
}
352
}
354
 
353
 
355
#if defined (US)
354
#if defined (US)
356
 
355
 
357
/** Print contents of both TLBs. */
356
/** Print contents of both TLBs. */
358
void tlb_print(void)
357
void tlb_print(void)
359
{
358
{
360
    int i;
359
    int i;
361
    tlb_data_t d;
360
    tlb_data_t d;
362
    tlb_tag_read_reg_t t;
361
    tlb_tag_read_reg_t t;
363
   
362
   
364
    printf("I-TLB contents:\n");
363
    printf("I-TLB contents:\n");
365
    for (i = 0; i < ITLB_ENTRY_COUNT; i++) {
364
    for (i = 0; i < ITLB_ENTRY_COUNT; i++) {
366
        d.value = itlb_data_access_read(i);
365
        d.value = itlb_data_access_read(i);
367
        t.value = itlb_tag_read_read(i);
366
        t.value = itlb_tag_read_read(i);
368
        print_tlb_entry(i, t, d);
367
        print_tlb_entry(i, t, d);
369
    }
368
    }
370
 
369
 
371
    printf("D-TLB contents:\n");
370
    printf("D-TLB contents:\n");
372
    for (i = 0; i < DTLB_ENTRY_COUNT; i++) {
371
    for (i = 0; i < DTLB_ENTRY_COUNT; i++) {
373
        d.value = dtlb_data_access_read(i);
372
        d.value = dtlb_data_access_read(i);
374
        t.value = dtlb_tag_read_read(i);
373
        t.value = dtlb_tag_read_read(i);
375
        print_tlb_entry(i, t, d);
374
        print_tlb_entry(i, t, d);
376
    }
375
    }
377
}
376
}
378
 
377
 
379
#elif defined (US3)
378
#elif defined (US3)
380
 
379
 
381
/** Print contents of all TLBs. */
380
/** Print contents of all TLBs. */
382
void tlb_print(void)
381
void tlb_print(void)
383
{
382
{
384
    int i;
383
    int i;
385
    tlb_data_t d;
384
    tlb_data_t d;
386
    tlb_tag_read_reg_t t;
385
    tlb_tag_read_reg_t t;
387
   
386
   
388
    printf("TLB_ISMALL contents:\n");
387
    printf("TLB_ISMALL contents:\n");
389
    for (i = 0; i < tlb_ismall_size(); i++) {
388
    for (i = 0; i < tlb_ismall_size(); i++) {
390
        d.value = dtlb_data_access_read(TLB_ISMALL, i);
389
        d.value = dtlb_data_access_read(TLB_ISMALL, i);
391
        t.value = dtlb_tag_read_read(TLB_ISMALL, i);
390
        t.value = dtlb_tag_read_read(TLB_ISMALL, i);
392
        print_tlb_entry(i, t, d);
391
        print_tlb_entry(i, t, d);
393
    }
392
    }
394
   
393
   
395
    printf("TLB_IBIG contents:\n");
394
    printf("TLB_IBIG contents:\n");
396
    for (i = 0; i < tlb_ibig_size(); i++) {
395
    for (i = 0; i < tlb_ibig_size(); i++) {
397
        d.value = dtlb_data_access_read(TLB_IBIG, i);
396
        d.value = dtlb_data_access_read(TLB_IBIG, i);
398
        t.value = dtlb_tag_read_read(TLB_IBIG, i);
397
        t.value = dtlb_tag_read_read(TLB_IBIG, i);
399
        print_tlb_entry(i, t, d);
398
        print_tlb_entry(i, t, d);
400
    }
399
    }
401
   
400
   
402
    printf("TLB_DSMALL contents:\n");
401
    printf("TLB_DSMALL contents:\n");
403
    for (i = 0; i < tlb_dsmall_size(); i++) {
402
    for (i = 0; i < tlb_dsmall_size(); i++) {
404
        d.value = dtlb_data_access_read(TLB_DSMALL, i);
403
        d.value = dtlb_data_access_read(TLB_DSMALL, i);
405
        t.value = dtlb_tag_read_read(TLB_DSMALL, i);
404
        t.value = dtlb_tag_read_read(TLB_DSMALL, i);
406
        print_tlb_entry(i, t, d);
405
        print_tlb_entry(i, t, d);
407
    }
406
    }
408
   
407
   
409
    printf("TLB_DBIG_1 contents:\n");
408
    printf("TLB_DBIG_1 contents:\n");
410
    for (i = 0; i < tlb_dbig_size(); i++) {
409
    for (i = 0; i < tlb_dbig_size(); i++) {
411
        d.value = dtlb_data_access_read(TLB_DBIG_0, i);
410
        d.value = dtlb_data_access_read(TLB_DBIG_0, i);
412
        t.value = dtlb_tag_read_read(TLB_DBIG_0, i);
411
        t.value = dtlb_tag_read_read(TLB_DBIG_0, i);
413
        print_tlb_entry(i, t, d);
412
        print_tlb_entry(i, t, d);
414
    }
413
    }
415
   
414
   
416
    printf("TLB_DBIG_2 contents:\n");
415
    printf("TLB_DBIG_2 contents:\n");
417
    for (i = 0; i < tlb_dbig_size(); i++) {
416
    for (i = 0; i < tlb_dbig_size(); i++) {
418
        d.value = dtlb_data_access_read(TLB_DBIG_1, i);
417
        d.value = dtlb_data_access_read(TLB_DBIG_1, i);
419
        t.value = dtlb_tag_read_read(TLB_DBIG_1, i);
418
        t.value = dtlb_tag_read_read(TLB_DBIG_1, i);
420
        print_tlb_entry(i, t, d);
419
        print_tlb_entry(i, t, d);
421
    }
420
    }
422
}
421
}
423
 
422
 
424
#endif
423
#endif
425
 
424
 
426
void do_fast_instruction_access_mmu_miss_fault(istate_t *istate,
425
void do_fast_instruction_access_mmu_miss_fault(istate_t *istate,
427
    const char *str)
426
    const char *str)
428
{
427
{
429
    fault_if_from_uspace(istate, "%s\n", str);
428
    fault_if_from_uspace(istate, "%s\n", str);
430
    dump_istate(istate);
429
    dump_istate(istate);
431
    panic("%s\n", str);
430
    panic("%s\n", str);
432
}
431
}
433
 
432
 
434
void do_fast_data_access_mmu_miss_fault(istate_t *istate,
433
void do_fast_data_access_mmu_miss_fault(istate_t *istate,
435
    tlb_tag_access_reg_t tag, const char *str)
434
    tlb_tag_access_reg_t tag, const char *str)
436
{
435
{
437
    uintptr_t va;
436
    uintptr_t va;
438
 
437
 
439
    va = tag.vpn << MMU_PAGE_WIDTH;
438
    va = tag.vpn << MMU_PAGE_WIDTH;
440
    if (tag.context) {
439
    if (tag.context) {
441
        fault_if_from_uspace(istate, "%s, Page=%p (ASID=%d)\n", str, va,
440
        fault_if_from_uspace(istate, "%s, Page=%p (ASID=%d)\n", str, va,
442
            tag.context);
441
            tag.context);
443
    }
442
    }
444
    dump_istate(istate);
443
    dump_istate(istate);
445
    printf("Faulting page: %p, ASID=%d\n", va, tag.context);
444
    printf("Faulting page: %p, ASID=%d\n", va, tag.context);
446
    panic("%s\n", str);
445
    panic("%s\n", str);
447
}
446
}
448
 
447
 
449
void do_fast_data_access_protection_fault(istate_t *istate,
448
void do_fast_data_access_protection_fault(istate_t *istate,
450
    tlb_tag_access_reg_t tag, const char *str)
449
    tlb_tag_access_reg_t tag, const char *str)
451
{
450
{
452
    uintptr_t va;
451
    uintptr_t va;
453
 
452
 
454
    va = tag.vpn << MMU_PAGE_WIDTH;
453
    va = tag.vpn << MMU_PAGE_WIDTH;
455
 
454
 
456
    if (tag.context) {
455
    if (tag.context) {
457
        fault_if_from_uspace(istate, "%s, Page=%p (ASID=%d)\n", str, va,
456
        fault_if_from_uspace(istate, "%s, Page=%p (ASID=%d)\n", str, va,
458
            tag.context);
457
            tag.context);
459
    }
458
    }
460
    printf("Faulting page: %p, ASID=%d\n", va, tag.context);
459
    printf("Faulting page: %p, ASID=%d\n", va, tag.context);
461
    dump_istate(istate);
460
    dump_istate(istate);
462
    panic("%s\n", str);
461
    panic("%s\n", str);
463
}
462
}
464
 
463
 
465
void describe_mmu_fault(void)
464
void describe_mmu_fault(void)
466
{
465
{
467
    tlb_sfsr_reg_t sfsr;
466
    tlb_sfsr_reg_t sfsr;
468
    uintptr_t sfar;
467
    uintptr_t sfar;
469
 
468
 
470
    sfsr.value = dtlb_sfsr_read();
469
    sfsr.value = dtlb_sfsr_read();
471
    sfar = dtlb_sfar_read();
470
    sfar = dtlb_sfar_read();
472
   
471
   
473
#if defined (US)
472
#if defined (US)
474
    printf("DTLB SFSR: asi=%#x, ft=%#x, e=%d, ct=%d, pr=%d, w=%d, ow=%d, "
473
    printf("DTLB SFSR: asi=%#x, ft=%#x, e=%d, ct=%d, pr=%d, w=%d, ow=%d, "
475
        "fv=%d\n", sfsr.asi, sfsr.ft, sfsr.e, sfsr.ct, sfsr.pr, sfsr.w,
474
        "fv=%d\n", sfsr.asi, sfsr.ft, sfsr.e, sfsr.ct, sfsr.pr, sfsr.w,
476
        sfsr.ow, sfsr.fv);
475
        sfsr.ow, sfsr.fv);
477
#elif defined (US3)
476
#elif defined (US3)
478
    printf("DTLB SFSR: nf=%d, asi=%#x, tm=%d, ft=%#x, e=%d, ct=%d, pr=%d, "
477
    printf("DTLB SFSR: nf=%d, asi=%#x, tm=%d, ft=%#x, e=%d, ct=%d, pr=%d, "
479
        "w=%d, ow=%d, fv=%d\n", sfsr.nf, sfsr.asi, sfsr.tm, sfsr.ft,
478
        "w=%d, ow=%d, fv=%d\n", sfsr.nf, sfsr.asi, sfsr.tm, sfsr.ft,
480
        sfsr.e, sfsr.ct, sfsr.pr, sfsr.w, sfsr.ow, sfsr.fv);
479
        sfsr.e, sfsr.ct, sfsr.pr, sfsr.w, sfsr.ow, sfsr.fv);
481
#endif
480
#endif
482
       
481
       
483
    printf("DTLB SFAR: address=%p\n", sfar);
482
    printf("DTLB SFAR: address=%p\n", sfar);
484
   
483
   
485
    dtlb_sfsr_write(0);
484
    dtlb_sfsr_write(0);
486
}
485
}
487
 
486
 
488
#if defined (US3)
487
#if defined (US3)
489
/** Invalidates given TLB entry if and only if it is non-locked or global.
488
/** Invalidates given TLB entry if and only if it is non-locked or global.
490
 *
489
 *
491
 * @param tlb       TLB number (one of TLB_DSMALL, TLB_DBIG_0, TLB_DBIG_1,
490
 * @param tlb       TLB number (one of TLB_DSMALL, TLB_DBIG_0, TLB_DBIG_1,
492
 *          TLB_ISMALL, TLB_IBIG).
491
 *          TLB_ISMALL, TLB_IBIG).
493
 * @param entry     Entry index within the given TLB.
492
 * @param entry     Entry index within the given TLB.
494
 */
493
 */
495
static void tlb_invalidate_entry(int tlb, index_t entry)
494
static void tlb_invalidate_entry(int tlb, index_t entry)
496
{
495
{
497
    tlb_data_t d;
496
    tlb_data_t d;
498
    tlb_tag_read_reg_t t;
497
    tlb_tag_read_reg_t t;
499
   
498
   
500
    if (tlb == TLB_DSMALL || tlb == TLB_DBIG_0 || tlb == TLB_DBIG_1) {
499
    if (tlb == TLB_DSMALL || tlb == TLB_DBIG_0 || tlb == TLB_DBIG_1) {
501
        d.value = dtlb_data_access_read(tlb, entry);
500
        d.value = dtlb_data_access_read(tlb, entry);
502
        if (!d.l || d.g) {
501
        if (!d.l || d.g) {
503
            t.value = dtlb_tag_read_read(tlb, entry);
502
            t.value = dtlb_tag_read_read(tlb, entry);
504
            d.v = false;
503
            d.v = false;
505
            dtlb_tag_access_write(t.value);
504
            dtlb_tag_access_write(t.value);
506
            dtlb_data_access_write(tlb, entry, d.value);
505
            dtlb_data_access_write(tlb, entry, d.value);
507
        }
506
        }
508
    } else if (tlb == TLB_ISMALL || tlb == TLB_IBIG) {
507
    } else if (tlb == TLB_ISMALL || tlb == TLB_IBIG) {
509
        d.value = itlb_data_access_read(tlb, entry);
508
        d.value = itlb_data_access_read(tlb, entry);
510
        if (!d.l || d.g) {
509
        if (!d.l || d.g) {
511
            t.value = itlb_tag_read_read(tlb, entry);
510
            t.value = itlb_tag_read_read(tlb, entry);
512
            d.v = false;
511
            d.v = false;
513
            itlb_tag_access_write(t.value);
512
            itlb_tag_access_write(t.value);
514
            itlb_data_access_write(tlb, entry, d.value);
513
            itlb_data_access_write(tlb, entry, d.value);
515
        }
514
        }
516
    }
515
    }
517
}
516
}
518
#endif
517
#endif
519
 
518
 
520
/** Invalidate all unlocked ITLB and DTLB entries. */
519
/** Invalidate all unlocked ITLB and DTLB entries. */
521
void tlb_invalidate_all(void)
520
void tlb_invalidate_all(void)
522
{
521
{
523
    int i;
522
    int i;
524
   
523
   
525
    /*
524
    /*
526
     * Walk all ITLB and DTLB entries and remove all unlocked mappings.
525
     * Walk all ITLB and DTLB entries and remove all unlocked mappings.
527
     *
526
     *
528
     * The kernel doesn't use global mappings so any locked global mappings
527
     * The kernel doesn't use global mappings so any locked global mappings
529
     * found must have been created by someone else. Their only purpose now
528
     * found must have been created by someone else. Their only purpose now
530
     * is to collide with proper mappings. Invalidate immediately. It should
529
     * is to collide with proper mappings. Invalidate immediately. It should
531
     * be safe to invalidate them as late as now.
530
     * be safe to invalidate them as late as now.
532
     */
531
     */
533
 
532
 
534
#if defined (US)
533
#if defined (US)
535
    tlb_data_t d;
534
    tlb_data_t d;
536
    tlb_tag_read_reg_t t;
535
    tlb_tag_read_reg_t t;
537
 
536
 
538
    for (i = 0; i < ITLB_ENTRY_COUNT; i++) {
537
    for (i = 0; i < ITLB_ENTRY_COUNT; i++) {
539
        d.value = itlb_data_access_read(i);
538
        d.value = itlb_data_access_read(i);
540
        if (!d.l || d.g) {
539
        if (!d.l || d.g) {
541
            t.value = itlb_tag_read_read(i);
540
            t.value = itlb_tag_read_read(i);
542
            d.v = false;
541
            d.v = false;
543
            itlb_tag_access_write(t.value);
542
            itlb_tag_access_write(t.value);
544
            itlb_data_access_write(i, d.value);
543
            itlb_data_access_write(i, d.value);
545
        }
544
        }
546
    }
545
    }
547
 
546
 
548
    for (i = 0; i < DTLB_ENTRY_COUNT; i++) {
547
    for (i = 0; i < DTLB_ENTRY_COUNT; i++) {
549
        d.value = dtlb_data_access_read(i);
548
        d.value = dtlb_data_access_read(i);
550
        if (!d.l || d.g) {
549
        if (!d.l || d.g) {
551
            t.value = dtlb_tag_read_read(i);
550
            t.value = dtlb_tag_read_read(i);
552
            d.v = false;
551
            d.v = false;
553
            dtlb_tag_access_write(t.value);
552
            dtlb_tag_access_write(t.value);
554
            dtlb_data_access_write(i, d.value);
553
            dtlb_data_access_write(i, d.value);
555
        }
554
        }
556
    }
555
    }
557
 
556
 
558
#elif defined (US3)
557
#elif defined (US3)
559
 
558
 
560
    for (i = 0; i < tlb_ismall_size(); i++)
559
    for (i = 0; i < tlb_ismall_size(); i++)
561
        tlb_invalidate_entry(TLB_ISMALL, i);
560
        tlb_invalidate_entry(TLB_ISMALL, i);
562
    for (i = 0; i < tlb_ibig_size(); i++)
561
    for (i = 0; i < tlb_ibig_size(); i++)
563
        tlb_invalidate_entry(TLB_IBIG, i);
562
        tlb_invalidate_entry(TLB_IBIG, i);
564
    for (i = 0; i < tlb_dsmall_size(); i++)
563
    for (i = 0; i < tlb_dsmall_size(); i++)
565
        tlb_invalidate_entry(TLB_DSMALL, i);
564
        tlb_invalidate_entry(TLB_DSMALL, i);
566
    for (i = 0; i < tlb_dbig_size(); i++)
565
    for (i = 0; i < tlb_dbig_size(); i++)
567
        tlb_invalidate_entry(TLB_DBIG_0, i);
566
        tlb_invalidate_entry(TLB_DBIG_0, i);
568
    for (i = 0; i < tlb_dbig_size(); i++)
567
    for (i = 0; i < tlb_dbig_size(); i++)
569
        tlb_invalidate_entry(TLB_DBIG_1, i);
568
        tlb_invalidate_entry(TLB_DBIG_1, i);
570
#endif
569
#endif
571
 
570
 
572
}
571
}
573
 
572
 
574
/** Invalidate all ITLB and DTLB entries that belong to specified ASID
573
/** Invalidate all ITLB and DTLB entries that belong to specified ASID
575
 * (Context).
574
 * (Context).
576
 *
575
 *
577
 * @param asid Address Space ID.
576
 * @param asid Address Space ID.
578
 */
577
 */
579
void tlb_invalidate_asid(asid_t asid)
578
void tlb_invalidate_asid(asid_t asid)
580
{
579
{
581
    tlb_context_reg_t pc_save, ctx;
580
    tlb_context_reg_t pc_save, ctx;
582
   
581
   
583
    /* switch to nucleus because we are mapped by the primary context */
582
    /* switch to nucleus because we are mapped by the primary context */
584
    nucleus_enter();
583
    nucleus_enter();
585
   
584
   
586
    ctx.v = pc_save.v = mmu_primary_context_read();
585
    ctx.v = pc_save.v = mmu_primary_context_read();
587
    ctx.context = asid;
586
    ctx.context = asid;
588
    mmu_primary_context_write(ctx.v);
587
    mmu_primary_context_write(ctx.v);
589
   
588
   
590
    itlb_demap(TLB_DEMAP_CONTEXT, TLB_DEMAP_PRIMARY, 0);
589
    itlb_demap(TLB_DEMAP_CONTEXT, TLB_DEMAP_PRIMARY, 0);
591
    dtlb_demap(TLB_DEMAP_CONTEXT, TLB_DEMAP_PRIMARY, 0);
590
    dtlb_demap(TLB_DEMAP_CONTEXT, TLB_DEMAP_PRIMARY, 0);
592
   
591
   
593
    mmu_primary_context_write(pc_save.v);
592
    mmu_primary_context_write(pc_save.v);
594
   
593
   
595
    nucleus_leave();
594
    nucleus_leave();
596
}
595
}
597
 
596
 
598
/** Invalidate all ITLB and DTLB entries for specified page range in specified
597
/** Invalidate all ITLB and DTLB entries for specified page range in specified
599
 * address space.
598
 * address space.
600
 *
599
 *
601
 * @param asid      Address Space ID.
600
 * @param asid      Address Space ID.
602
 * @param page      First page which to sweep out from ITLB and DTLB.
601
 * @param page      First page which to sweep out from ITLB and DTLB.
603
 * @param cnt       Number of ITLB and DTLB entries to invalidate.
602
 * @param cnt       Number of ITLB and DTLB entries to invalidate.
604
 */
603
 */
605
void tlb_invalidate_pages(asid_t asid, uintptr_t page, count_t cnt)
604
void tlb_invalidate_pages(asid_t asid, uintptr_t page, count_t cnt)
606
{
605
{
607
    unsigned int i;
606
    unsigned int i;
608
    tlb_context_reg_t pc_save, ctx;
607
    tlb_context_reg_t pc_save, ctx;
609
   
608
   
610
    /* switch to nucleus because we are mapped by the primary context */
609
    /* switch to nucleus because we are mapped by the primary context */
611
    nucleus_enter();
610
    nucleus_enter();
612
   
611
   
613
    ctx.v = pc_save.v = mmu_primary_context_read();
612
    ctx.v = pc_save.v = mmu_primary_context_read();
614
    ctx.context = asid;
613
    ctx.context = asid;
615
    mmu_primary_context_write(ctx.v);
614
    mmu_primary_context_write(ctx.v);
616
   
615
   
617
    for (i = 0; i < cnt * MMU_PAGES_PER_PAGE; i++) {
616
    for (i = 0; i < cnt * MMU_PAGES_PER_PAGE; i++) {
618
        itlb_demap(TLB_DEMAP_PAGE, TLB_DEMAP_PRIMARY,
617
        itlb_demap(TLB_DEMAP_PAGE, TLB_DEMAP_PRIMARY,
619
            page + i * MMU_PAGE_SIZE);
618
            page + i * MMU_PAGE_SIZE);
620
        dtlb_demap(TLB_DEMAP_PAGE, TLB_DEMAP_PRIMARY,
619
        dtlb_demap(TLB_DEMAP_PAGE, TLB_DEMAP_PRIMARY,
621
            page + i * MMU_PAGE_SIZE);
620
            page + i * MMU_PAGE_SIZE);
622
    }
621
    }
623
   
622
   
624
    mmu_primary_context_write(pc_save.v);
623
    mmu_primary_context_write(pc_save.v);
625
   
624
   
626
    nucleus_leave();
625
    nucleus_leave();
627
}
626
}
628
 
627
 
629
/** @}
628
/** @}
630
 */
629
 */
631
 
630