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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since a7961271 was a7961271, checked in by Jakub Jermar <jakub@…>, 19 years ago

sparc64 work.
Bunch of changes in preparation for sparc64 mm and userspace support.
Fix alignment of hardcoded_* variables in linker script.

  • Property mode set to 100644
File size: 9.1 KB
RevLine 
[0d04024]1/*
2 * Copyright (C) 2005 Jakub Jermar
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>
43#include <arch.h>
[0d04024]44#include <print.h>
[dbb6886]45#include <arch/types.h>
46#include <typedefs.h>
[0cfc4d38]47#include <config.h>
[49b6d32]48#include <arch/trap/trap.h>
[008029d]49#include <panic.h>
[b6fba84]50#include <arch/asm.h>
51#include <symtab.h>
[02f441c0]52
[a7961271]53static void dtlb_pte_copy(pte_t *t, bool ro);
54static void itlb_pte_copy(pte_t *t);
[f47fd19]55static void do_fast_data_access_mmu_miss_fault(istate_t *istate, const char *str);
[a7961271]56static void do_fast_instruction_access_mmu_miss_fault(istate_t *istate, const char *str);
[f47fd19]57
[b6fba84]58char *context_encoding[] = {
59 "Primary",
60 "Secondary",
61 "Nucleus",
62 "Reserved"
63};
[0d04024]64
65void tlb_arch_init(void)
66{
[c6e314a]67 /*
[287920f]68 * TLBs are actually initialized early
[c6e314a]69 * in start.S.
70 */
[97f1691]71}
[b6fba84]72
[97f1691]73/** Insert privileged mapping into DMMU TLB.
74 *
75 * @param page Virtual page address.
76 * @param frame Physical frame address.
77 * @param pagesize Page size.
78 * @param locked True for permanent mappings, false otherwise.
79 * @param cacheable True if the mapping is cacheable, false otherwise.
80 */
[7f1c620]81void dtlb_insert_mapping(uintptr_t page, uintptr_t frame, int pagesize, bool locked, bool cacheable)
[97f1691]82{
83 tlb_tag_access_reg_t tag;
84 tlb_data_t data;
85 page_address_t pg;
86 frame_address_t fr;
[b6fba84]87
[97f1691]88 pg.address = page;
89 fr.address = frame;
[02f441c0]90
91 tag.value = ASID_KERNEL;
92 tag.vpn = pg.vpn;
93
94 dtlb_tag_access_write(tag.value);
95
96 data.value = 0;
97 data.v = true;
[97f1691]98 data.size = pagesize;
[02f441c0]99 data.pfn = fr.pfn;
[97f1691]100 data.l = locked;
101 data.cp = cacheable;
102 data.cv = cacheable;
[02f441c0]103 data.p = true;
104 data.w = true;
105 data.g = true;
106
107 dtlb_data_in_write(data.value);
[0d04024]108}
109
[a7961271]110/** Copy PTE to TLB.
111 *
112 * @param t Page Table Entry to be copied.
113 * @param ro If true, the entry will be created read-only, regardless of its w field.
114 */
115void dtlb_pte_copy(pte_t *t, bool ro)
116{
117 tlb_tag_access_reg_t tag;
118 tlb_data_t data;
119 page_address_t pg;
120 frame_address_t fr;
121
122 pg.address = t->page;
123 fr.address = t->frame;
124
125 tag.value = 0;
126 tag.context = t->as->asid;
127 tag.vpn = pg.vpn;
128
129 dtlb_tag_access_write(tag.value);
130
131 data.value = 0;
132 data.v = true;
133 data.size = PAGESIZE_8K;
134 data.pfn = fr.pfn;
135 data.l = false;
136 data.cp = t->c;
137 data.cv = t->c;
138 data.p = t->p;
139 data.w = ro ? false : t->w;
140 data.g = t->g;
141
142 dtlb_data_in_write(data.value);
143}
144
145void itlb_pte_copy(pte_t *t)
[f47fd19]146{
[a7961271]147 tlb_tag_access_reg_t tag;
148 tlb_data_t data;
149 page_address_t pg;
150 frame_address_t fr;
151
152 pg.address = t->page;
153 fr.address = t->frame;
154
155 tag.value = 0;
156 tag.context = t->as->asid;
157 tag.vpn = pg.vpn;
158
159 itlb_tag_access_write(tag.value);
160
161 data.value = 0;
162 data.v = true;
163 data.size = PAGESIZE_8K;
164 data.pfn = fr.pfn;
165 data.l = false;
166 data.cp = t->c;
167 data.cv = t->c;
168 data.p = t->p;
169 data.w = false;
170 data.g = t->g;
171
172 itlb_data_in_write(data.value);
[f47fd19]173}
174
[008029d]175/** ITLB miss handler. */
[f47fd19]176void fast_instruction_access_mmu_miss(int n, istate_t *istate)
[008029d]177{
[a7961271]178 uintptr_t va = ALIGN_DOWN(istate->tpc, PAGE_SIZE);
179 pte_t *t;
180
181 page_table_lock(AS, true);
182 t = page_mapping_find(AS, va);
183 if (t && PTE_EXECUTABLE(t)) {
184 /*
185 * The mapping was found in the software page hash table.
186 * Insert it into ITLB.
187 */
188 t->a = true;
189 itlb_pte_copy(t);
190 page_table_unlock(AS, true);
191 } else {
192 /*
193 * Forward the page fault to the address space page fault handler.
194 */
195 page_table_unlock(AS, true);
196 if (as_page_fault(va, PF_ACCESS_EXEC, istate) == AS_PF_FAULT) {
197 do_fast_instruction_access_mmu_miss_fault(istate, __FUNCTION__);
198 }
199 }
[008029d]200}
201
[f47fd19]202/** DTLB miss handler.
203 *
204 * Note that some faults (e.g. kernel faults) were already resolved
205 * by the low-level, assembly language part of the fast_data_access_mmu_miss
206 * handler.
207 */
208void fast_data_access_mmu_miss(int n, istate_t *istate)
[008029d]209{
[68656282]210 tlb_tag_access_reg_t tag;
[f47fd19]211 uintptr_t va;
212 pte_t *t;
[7cb53f62]213
[68656282]214 tag.value = dtlb_tag_access_read();
[f47fd19]215 va = tag.vpn * PAGE_SIZE;
216 if (tag.context == ASID_KERNEL) {
217 if (!tag.vpn) {
218 /* NULL access in kernel */
219 do_fast_data_access_mmu_miss_fault(istate, __FUNCTION__);
220 }
221 do_fast_data_access_mmu_miss_fault(istate, "Unexpected kernel page fault.");
[68656282]222 }
223
[f47fd19]224 page_table_lock(AS, true);
225 t = page_mapping_find(AS, va);
226 if (t) {
227 /*
228 * The mapping was found in the software page hash table.
229 * Insert it into DTLB.
230 */
[a7961271]231 t->a = true;
232 dtlb_pte_copy(t, true);
[f47fd19]233 page_table_unlock(AS, true);
234 } else {
235 /*
236 * Forward the page fault to the address space page fault handler.
237 */
238 page_table_unlock(AS, true);
239 if (as_page_fault(va, PF_ACCESS_READ, istate) == AS_PF_FAULT) {
240 do_fast_data_access_mmu_miss_fault(istate, __FUNCTION__);
241 }
242 }
[008029d]243}
244
245/** DTLB protection fault handler. */
[f47fd19]246void fast_data_access_protection(int n, istate_t *istate)
[008029d]247{
248 panic("%s\n", __FUNCTION__);
249}
250
[0d04024]251/** Print contents of both TLBs. */
252void tlb_print(void)
253{
254 int i;
255 tlb_data_t d;
256 tlb_tag_read_reg_t t;
257
258 printf("I-TLB contents:\n");
259 for (i = 0; i < ITLB_ENTRY_COUNT; i++) {
260 d.value = itlb_data_access_read(i);
[c52ed6b]261 t.value = itlb_tag_read_read(i);
[0d04024]262
[fbf7b4c]263 printf("%d: vpn=%#llx, context=%d, v=%d, size=%d, nfo=%d, ie=%d, soft2=%#x, diag=%#x, pfn=%#x, soft=%#x, l=%d, cp=%d, cv=%d, e=%d, p=%d, w=%d, g=%d\n",
[dbb6886]264 i, t.vpn, t.context, d.v, d.size, d.nfo, d.ie, d.soft2, d.diag, d.pfn, d.soft, d.l, d.cp, d.cv, d.e, d.p, d.w, d.g);
[0d04024]265 }
266
267 printf("D-TLB contents:\n");
268 for (i = 0; i < DTLB_ENTRY_COUNT; i++) {
269 d.value = dtlb_data_access_read(i);
[c52ed6b]270 t.value = dtlb_tag_read_read(i);
[0d04024]271
[fbf7b4c]272 printf("%d: vpn=%#llx, context=%d, v=%d, size=%d, nfo=%d, ie=%d, soft2=%#x, diag=%#x, pfn=%#x, soft=%#x, l=%d, cp=%d, cv=%d, e=%d, p=%d, w=%d, g=%d\n",
[dbb6886]273 i, t.vpn, t.context, d.v, d.size, d.nfo, d.ie, d.soft2, d.diag, d.pfn, d.soft, d.l, d.cp, d.cv, d.e, d.p, d.w, d.g);
[0d04024]274 }
275
276}
[dbb6886]277
[a7961271]278void do_fast_instruction_access_mmu_miss_fault(istate_t *istate, const char *str)
279{
280 char *tpc_str = get_symtab_entry(istate->tpc);
281
282 printf("TPC=%p, (%s)\n", istate->tpc, tpc_str);
283 panic("%s\n", str);
284}
285
[f47fd19]286void do_fast_data_access_mmu_miss_fault(istate_t *istate, const char *str)
287{
288 tlb_tag_access_reg_t tag;
289 uintptr_t va;
290 char *tpc_str = get_symtab_entry(istate->tpc);
291
292 tag.value = dtlb_tag_access_read();
293 va = tag.vpn * PAGE_SIZE;
294
295 printf("Faulting page: %p, ASID=%d\n", va, tag.context);
296 printf("TPC=%p, (%s)\n", istate->tpc, tpc_str);
297 panic("%s\n", str);
298}
299
[dbb6886]300/** Invalidate all unlocked ITLB and DTLB entries. */
301void tlb_invalidate_all(void)
302{
303 int i;
304 tlb_data_t d;
305 tlb_tag_read_reg_t t;
306
307 for (i = 0; i < ITLB_ENTRY_COUNT; i++) {
308 d.value = itlb_data_access_read(i);
309 if (!d.l) {
310 t.value = itlb_tag_read_read(i);
311 d.v = false;
312 itlb_tag_access_write(t.value);
313 itlb_data_access_write(i, d.value);
314 }
315 }
316
317 for (i = 0; i < DTLB_ENTRY_COUNT; i++) {
318 d.value = dtlb_data_access_read(i);
319 if (!d.l) {
320 t.value = dtlb_tag_read_read(i);
321 d.v = false;
322 dtlb_tag_access_write(t.value);
323 dtlb_data_access_write(i, d.value);
324 }
325 }
326
327}
328
329/** Invalidate all ITLB and DTLB entries that belong to specified ASID (Context).
330 *
331 * @param asid Address Space ID.
332 */
333void tlb_invalidate_asid(asid_t asid)
334{
335 /* TODO: write asid to some Context register and encode the register in second parameter below. */
336 itlb_demap(TLB_DEMAP_CONTEXT, TLB_DEMAP_NUCLEUS, 0);
337 dtlb_demap(TLB_DEMAP_CONTEXT, TLB_DEMAP_NUCLEUS, 0);
338}
339
[4512d7e]340/** Invalidate all ITLB and DTLB entries for specified page range in specified address space.
[dbb6886]341 *
342 * @param asid Address Space ID.
[4512d7e]343 * @param page First page which to sweep out from ITLB and DTLB.
344 * @param cnt Number of ITLB and DTLB entries to invalidate.
[dbb6886]345 */
[7f1c620]346void tlb_invalidate_pages(asid_t asid, uintptr_t page, count_t cnt)
[dbb6886]347{
[4512d7e]348 int i;
349
350 for (i = 0; i < cnt; i++) {
351 /* TODO: write asid to some Context register and encode the register in second parameter below. */
352 itlb_demap(TLB_DEMAP_PAGE, TLB_DEMAP_NUCLEUS, page + i * PAGE_SIZE);
353 dtlb_demap(TLB_DEMAP_PAGE, TLB_DEMAP_NUCLEUS, page + i * PAGE_SIZE);
354 }
[dbb6886]355}
[b45c443]356
[10b890b]357/** @}
[b45c443]358 */
Note: See TracBrowser for help on using the repository browser.