source: mainline/kernel/arch/sparc64/src/mm/tlb.c@ cf5ddf6

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since cf5ddf6 was b3f8fb7, checked in by Martin Decky <martin@…>, 19 years ago

huge type system cleanup
remove cyclical type dependencies across multiple header files
many minor coding style fixes

  • Property mode set to 100644
File size: 12.0 KB
RevLine 
[0d04024]1/*
[df4ed85]2 * Copyright (c) 2005 Jakub Jermar
[0d04024]3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
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
15 * derived from this software without specific prior written permission.
16 *
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
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
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
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
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
[10b890b]29/** @addtogroup sparc64mm
[b45c443]30 * @{
31 */
32/** @file
33 */
34
[0d04024]35#include <arch/mm/tlb.h>
36#include <mm/tlb.h>
[f47fd19]37#include <mm/as.h>
38#include <mm/asid.h>
[0cfc4d38]39#include <arch/mm/frame.h>
40#include <arch/mm/page.h>
41#include <arch/mm/mmu.h>
[f47fd19]42#include <arch/interrupt.h>
[e2bf639]43#include <interrupt.h>
[f47fd19]44#include <arch.h>
[0d04024]45#include <print.h>
[dbb6886]46#include <arch/types.h>
[0cfc4d38]47#include <config.h>
[49b6d32]48#include <arch/trap/trap.h>
[7bb6b06]49#include <arch/trap/exception.h>
[008029d]50#include <panic.h>
[b6fba84]51#include <arch/asm.h>
[02f441c0]52
[29b2bbf]53#ifdef CONFIG_TSB
54#include <arch/mm/tsb.h>
55#endif
56
[a7961271]57static void dtlb_pte_copy(pte_t *t, bool ro);
58static void itlb_pte_copy(pte_t *t);
[771cd22]59static void do_fast_instruction_access_mmu_miss_fault(istate_t *istate, const
60 char *str);
61static void do_fast_data_access_mmu_miss_fault(istate_t *istate,
62 tlb_tag_access_reg_t tag, const char *str);
63static void do_fast_data_access_protection_fault(istate_t *istate,
64 tlb_tag_access_reg_t tag, const char *str);
[f47fd19]65
[b6fba84]66char *context_encoding[] = {
67 "Primary",
68 "Secondary",
69 "Nucleus",
70 "Reserved"
71};
[0d04024]72
73void tlb_arch_init(void)
74{
[c6e314a]75 /*
[c23baab]76 * Invalidate all non-locked DTLB and ITLB entries.
[c6e314a]77 */
[c23baab]78 tlb_invalidate_all();
[8cee705]79
80 /*
81 * Clear both SFSRs.
82 */
83 dtlb_sfsr_write(0);
84 itlb_sfsr_write(0);
[97f1691]85}
[b6fba84]86
[97f1691]87/** Insert privileged mapping into DMMU TLB.
88 *
89 * @param page Virtual page address.
90 * @param frame Physical frame address.
91 * @param pagesize Page size.
92 * @param locked True for permanent mappings, false otherwise.
93 * @param cacheable True if the mapping is cacheable, false otherwise.
94 */
[771cd22]95void dtlb_insert_mapping(uintptr_t page, uintptr_t frame, int pagesize, bool
96 locked, bool cacheable)
[97f1691]97{
98 tlb_tag_access_reg_t tag;
99 tlb_data_t data;
100 page_address_t pg;
101 frame_address_t fr;
[b6fba84]102
[97f1691]103 pg.address = page;
104 fr.address = frame;
[02f441c0]105
106 tag.value = ASID_KERNEL;
107 tag.vpn = pg.vpn;
108
109 dtlb_tag_access_write(tag.value);
110
111 data.value = 0;
112 data.v = true;
[97f1691]113 data.size = pagesize;
[02f441c0]114 data.pfn = fr.pfn;
[97f1691]115 data.l = locked;
116 data.cp = cacheable;
[92778f2]117#ifdef CONFIG_VIRT_IDX_DCACHE
[97f1691]118 data.cv = cacheable;
[92778f2]119#endif /* CONFIG_VIRT_IDX_DCACHE */
[02f441c0]120 data.p = true;
121 data.w = true;
[d681c17]122 data.g = false;
[02f441c0]123
124 dtlb_data_in_write(data.value);
[0d04024]125}
126
[a7961271]127/** Copy PTE to TLB.
128 *
129 * @param t Page Table Entry to be copied.
[771cd22]130 * @param ro If true, the entry will be created read-only, regardless of its w
131 * field.
[a7961271]132 */
133void dtlb_pte_copy(pte_t *t, bool ro)
134{
135 tlb_tag_access_reg_t tag;
136 tlb_data_t data;
137 page_address_t pg;
138 frame_address_t fr;
139
140 pg.address = t->page;
141 fr.address = t->frame;
142
143 tag.value = 0;
144 tag.context = t->as->asid;
145 tag.vpn = pg.vpn;
146
147 dtlb_tag_access_write(tag.value);
148
149 data.value = 0;
150 data.v = true;
151 data.size = PAGESIZE_8K;
152 data.pfn = fr.pfn;
153 data.l = false;
154 data.cp = t->c;
[92778f2]155#ifdef CONFIG_VIRT_IDX_DCACHE
[a7961271]156 data.cv = t->c;
[92778f2]157#endif /* CONFIG_VIRT_IDX_DCACHE */
[cfa70add]158 data.p = t->k; /* p like privileged */
[a7961271]159 data.w = ro ? false : t->w;
160 data.g = t->g;
161
162 dtlb_data_in_write(data.value);
163}
164
[29b2bbf]165/** Copy PTE to ITLB.
166 *
167 * @param t Page Table Entry to be copied.
168 */
[a7961271]169void itlb_pte_copy(pte_t *t)
[f47fd19]170{
[a7961271]171 tlb_tag_access_reg_t tag;
172 tlb_data_t data;
173 page_address_t pg;
174 frame_address_t fr;
175
176 pg.address = t->page;
177 fr.address = t->frame;
178
179 tag.value = 0;
180 tag.context = t->as->asid;
181 tag.vpn = pg.vpn;
182
183 itlb_tag_access_write(tag.value);
184
185 data.value = 0;
186 data.v = true;
187 data.size = PAGESIZE_8K;
188 data.pfn = fr.pfn;
189 data.l = false;
190 data.cp = t->c;
[cfa70add]191 data.p = t->k; /* p like privileged */
[a7961271]192 data.w = false;
193 data.g = t->g;
194
195 itlb_data_in_write(data.value);
[f47fd19]196}
197
[008029d]198/** ITLB miss handler. */
[f47fd19]199void fast_instruction_access_mmu_miss(int n, istate_t *istate)
[008029d]200{
[a7961271]201 uintptr_t va = ALIGN_DOWN(istate->tpc, PAGE_SIZE);
202 pte_t *t;
203
204 page_table_lock(AS, true);
205 t = page_mapping_find(AS, va);
206 if (t && PTE_EXECUTABLE(t)) {
207 /*
208 * The mapping was found in the software page hash table.
209 * Insert it into ITLB.
210 */
211 t->a = true;
212 itlb_pte_copy(t);
[29b2bbf]213#ifdef CONFIG_TSB
214 itsb_pte_copy(t);
215#endif
[a7961271]216 page_table_unlock(AS, true);
217 } else {
218 /*
[771cd22]219 * Forward the page fault to the address space page fault
220 * handler.
[a7961271]221 */
222 page_table_unlock(AS, true);
223 if (as_page_fault(va, PF_ACCESS_EXEC, istate) == AS_PF_FAULT) {
[771cd22]224 do_fast_instruction_access_mmu_miss_fault(istate,
225 __FUNCTION__);
[a7961271]226 }
227 }
[008029d]228}
229
[f47fd19]230/** DTLB miss handler.
231 *
[771cd22]232 * Note that some faults (e.g. kernel faults) were already resolved by the
233 * low-level, assembly language part of the fast_data_access_mmu_miss handler.
[f47fd19]234 */
235void fast_data_access_mmu_miss(int n, istate_t *istate)
[008029d]236{
[68656282]237 tlb_tag_access_reg_t tag;
[f47fd19]238 uintptr_t va;
239 pte_t *t;
[7cb53f62]240
[68656282]241 tag.value = dtlb_tag_access_read();
[fd85ae5]242 va = tag.vpn << PAGE_WIDTH;
243
[f47fd19]244 if (tag.context == ASID_KERNEL) {
245 if (!tag.vpn) {
246 /* NULL access in kernel */
[771cd22]247 do_fast_data_access_mmu_miss_fault(istate, tag,
248 __FUNCTION__);
[f47fd19]249 }
[771cd22]250 do_fast_data_access_mmu_miss_fault(istate, tag, "Unexpected "
251 "kernel page fault.");
[68656282]252 }
253
[f47fd19]254 page_table_lock(AS, true);
255 t = page_mapping_find(AS, va);
256 if (t) {
257 /*
258 * The mapping was found in the software page hash table.
259 * Insert it into DTLB.
260 */
[a7961271]261 t->a = true;
262 dtlb_pte_copy(t, true);
[29b2bbf]263#ifdef CONFIG_TSB
264 dtsb_pte_copy(t, true);
265#endif
[f47fd19]266 page_table_unlock(AS, true);
267 } else {
268 /*
269 * Forward the page fault to the address space page fault handler.
270 */
271 page_table_unlock(AS, true);
272 if (as_page_fault(va, PF_ACCESS_READ, istate) == AS_PF_FAULT) {
[771cd22]273 do_fast_data_access_mmu_miss_fault(istate, tag,
274 __FUNCTION__);
[f47fd19]275 }
276 }
[008029d]277}
278
279/** DTLB protection fault handler. */
[f47fd19]280void fast_data_access_protection(int n, istate_t *istate)
[008029d]281{
[e0b241f]282 tlb_tag_access_reg_t tag;
283 uintptr_t va;
284 pte_t *t;
285
286 tag.value = dtlb_tag_access_read();
[fd85ae5]287 va = tag.vpn << PAGE_WIDTH;
[e0b241f]288
289 page_table_lock(AS, true);
290 t = page_mapping_find(AS, va);
291 if (t && PTE_WRITABLE(t)) {
292 /*
[771cd22]293 * The mapping was found in the software page hash table and is
294 * writable. Demap the old mapping and insert an updated mapping
295 * into DTLB.
[e0b241f]296 */
297 t->a = true;
298 t->d = true;
299 dtlb_demap(TLB_DEMAP_PAGE, TLB_DEMAP_SECONDARY, va);
300 dtlb_pte_copy(t, false);
[29b2bbf]301#ifdef CONFIG_TSB
302 dtsb_pte_copy(t, false);
303#endif
[e0b241f]304 page_table_unlock(AS, true);
305 } else {
306 /*
[771cd22]307 * Forward the page fault to the address space page fault
308 * handler.
[e0b241f]309 */
310 page_table_unlock(AS, true);
311 if (as_page_fault(va, PF_ACCESS_WRITE, istate) == AS_PF_FAULT) {
[771cd22]312 do_fast_data_access_protection_fault(istate, tag,
313 __FUNCTION__);
[e0b241f]314 }
315 }
[008029d]316}
317
[0d04024]318/** Print contents of both TLBs. */
319void tlb_print(void)
320{
321 int i;
322 tlb_data_t d;
323 tlb_tag_read_reg_t t;
324
325 printf("I-TLB contents:\n");
326 for (i = 0; i < ITLB_ENTRY_COUNT; i++) {
327 d.value = itlb_data_access_read(i);
[c52ed6b]328 t.value = itlb_tag_read_read(i);
[8dbc18c]329
[771cd22]330 printf("%d: vpn=%#llx, context=%d, v=%d, size=%d, nfo=%d, "
331 "ie=%d, soft2=%#x, diag=%#x, pfn=%#x, soft=%#x, l=%d, "
332 "cp=%d, cv=%d, e=%d, p=%d, w=%d, g=%d\n", i, t.vpn,
333 t.context, d.v, d.size, d.nfo, d.ie, d.soft2, d.diag,
334 d.pfn, d.soft, d.l, d.cp, d.cv, d.e, d.p, d.w, d.g);
[0d04024]335 }
336
337 printf("D-TLB contents:\n");
338 for (i = 0; i < DTLB_ENTRY_COUNT; i++) {
339 d.value = dtlb_data_access_read(i);
[c52ed6b]340 t.value = dtlb_tag_read_read(i);
[0d04024]341
[771cd22]342 printf("%d: vpn=%#llx, context=%d, v=%d, size=%d, nfo=%d, "
343 "ie=%d, soft2=%#x, diag=%#x, pfn=%#x, soft=%#x, l=%d, "
344 "cp=%d, cv=%d, e=%d, p=%d, w=%d, g=%d\n", i, t.vpn,
345 t.context, d.v, d.size, d.nfo, d.ie, d.soft2, d.diag,
346 d.pfn, d.soft, d.l, d.cp, d.cv, d.e, d.p, d.w, d.g);
[0d04024]347 }
348
349}
[dbb6886]350
[771cd22]351void do_fast_instruction_access_mmu_miss_fault(istate_t *istate, const char
352 *str)
[a7961271]353{
[e2bf639]354 fault_if_from_uspace(istate, "%s\n", str);
[7bb6b06]355 dump_istate(istate);
[a7961271]356 panic("%s\n", str);
357}
358
[771cd22]359void do_fast_data_access_mmu_miss_fault(istate_t *istate, tlb_tag_access_reg_t
360 tag, const char *str)
[f47fd19]361{
362 uintptr_t va;
363
[fd85ae5]364 va = tag.vpn << PAGE_WIDTH;
[f47fd19]365
[771cd22]366 fault_if_from_uspace(istate, "%s, Page=%p (ASID=%d)\n", str, va,
367 tag.context);
[7bb6b06]368 dump_istate(istate);
[f47fd19]369 printf("Faulting page: %p, ASID=%d\n", va, tag.context);
370 panic("%s\n", str);
371}
372
[771cd22]373void do_fast_data_access_protection_fault(istate_t *istate, tlb_tag_access_reg_t
374 tag, const char *str)
[e0b241f]375{
376 uintptr_t va;
377
[fd85ae5]378 va = tag.vpn << PAGE_WIDTH;
[e0b241f]379
[771cd22]380 fault_if_from_uspace(istate, "%s, Page=%p (ASID=%d)\n", str, va,
381 tag.context);
[e0b241f]382 printf("Faulting page: %p, ASID=%d\n", va, tag.context);
[7bb6b06]383 dump_istate(istate);
[e0b241f]384 panic("%s\n", str);
385}
386
[8cee705]387void dump_sfsr_and_sfar(void)
388{
389 tlb_sfsr_reg_t sfsr;
390 uintptr_t sfar;
391
392 sfsr.value = dtlb_sfsr_read();
393 sfar = dtlb_sfar_read();
394
[771cd22]395 printf("DTLB SFSR: asi=%#x, ft=%#x, e=%d, ct=%d, pr=%d, w=%d, ow=%d, "
396 "fv=%d\n", sfsr.asi, sfsr.ft, sfsr.e, sfsr.ct, sfsr.pr, sfsr.w,
397 sfsr.ow, sfsr.fv);
[8cee705]398 printf("DTLB SFAR: address=%p\n", sfar);
399
400 dtlb_sfsr_write(0);
401}
402
[dbb6886]403/** Invalidate all unlocked ITLB and DTLB entries. */
404void tlb_invalidate_all(void)
405{
406 int i;
407 tlb_data_t d;
408 tlb_tag_read_reg_t t;
409
[8dbc18c]410 /*
411 * Walk all ITLB and DTLB entries and remove all unlocked mappings.
412 *
413 * The kernel doesn't use global mappings so any locked global mappings
414 * found must have been created by someone else. Their only purpose now
415 * is to collide with proper mappings. Invalidate immediately. It should
416 * be safe to invalidate them as late as now.
417 */
418
[dbb6886]419 for (i = 0; i < ITLB_ENTRY_COUNT; i++) {
420 d.value = itlb_data_access_read(i);
[8dbc18c]421 if (!d.l || d.g) {
[dbb6886]422 t.value = itlb_tag_read_read(i);
423 d.v = false;
424 itlb_tag_access_write(t.value);
425 itlb_data_access_write(i, d.value);
426 }
427 }
428
429 for (i = 0; i < DTLB_ENTRY_COUNT; i++) {
430 d.value = dtlb_data_access_read(i);
[8dbc18c]431 if (!d.l || d.g) {
[dbb6886]432 t.value = dtlb_tag_read_read(i);
433 d.v = false;
434 dtlb_tag_access_write(t.value);
435 dtlb_data_access_write(i, d.value);
436 }
437 }
438
439}
440
[771cd22]441/** Invalidate all ITLB and DTLB entries that belong to specified ASID
442 * (Context).
[dbb6886]443 *
444 * @param asid Address Space ID.
445 */
446void tlb_invalidate_asid(asid_t asid)
447{
[fd85ae5]448 tlb_context_reg_t pc_save, ctx;
[ed166f7]449
[fd85ae5]450 /* switch to nucleus because we are mapped by the primary context */
451 nucleus_enter();
452
453 ctx.v = pc_save.v = mmu_primary_context_read();
[ed166f7]454 ctx.context = asid;
[fd85ae5]455 mmu_primary_context_write(ctx.v);
456
457 itlb_demap(TLB_DEMAP_CONTEXT, TLB_DEMAP_PRIMARY, 0);
458 dtlb_demap(TLB_DEMAP_CONTEXT, TLB_DEMAP_PRIMARY, 0);
[ed166f7]459
[fd85ae5]460 mmu_primary_context_write(pc_save.v);
[ed166f7]461
[fd85ae5]462 nucleus_leave();
[dbb6886]463}
464
[771cd22]465/** Invalidate all ITLB and DTLB entries for specified page range in specified
466 * address space.
[dbb6886]467 *
468 * @param asid Address Space ID.
[4512d7e]469 * @param page First page which to sweep out from ITLB and DTLB.
470 * @param cnt Number of ITLB and DTLB entries to invalidate.
[dbb6886]471 */
[7f1c620]472void tlb_invalidate_pages(asid_t asid, uintptr_t page, count_t cnt)
[dbb6886]473{
[4512d7e]474 int i;
[fd85ae5]475 tlb_context_reg_t pc_save, ctx;
[ed166f7]476
[fd85ae5]477 /* switch to nucleus because we are mapped by the primary context */
478 nucleus_enter();
479
480 ctx.v = pc_save.v = mmu_primary_context_read();
[ed166f7]481 ctx.context = asid;
[fd85ae5]482 mmu_primary_context_write(ctx.v);
[4512d7e]483
484 for (i = 0; i < cnt; i++) {
[771cd22]485 itlb_demap(TLB_DEMAP_PAGE, TLB_DEMAP_PRIMARY, page + i *
486 PAGE_SIZE);
487 dtlb_demap(TLB_DEMAP_PAGE, TLB_DEMAP_PRIMARY, page + i *
488 PAGE_SIZE);
[4512d7e]489 }
[ed166f7]490
[fd85ae5]491 mmu_primary_context_write(pc_save.v);
492
493 nucleus_leave();
[dbb6886]494}
[b45c443]495
[10b890b]496/** @}
[b45c443]497 */
Note: See TracBrowser for help on using the repository browser.