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

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

Move functionality of tlb_arch_init() to take_over_tlb_and_tt().
Call take_over_tlb_and_tt() very early after the kernel starts
executing.

  • Property mode set to 100644
File size: 6.1 KB
Line 
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
29/** @addtogroup sparc64mm
30 * @{
31 */
32/** @file
33 */
34
35#include <arch/mm/tlb.h>
36#include <mm/tlb.h>
37#include <arch/mm/frame.h>
38#include <arch/mm/page.h>
39#include <arch/mm/mmu.h>
40#include <mm/asid.h>
41#include <print.h>
42#include <arch/types.h>
43#include <typedefs.h>
44#include <config.h>
45#include <arch/trap/trap.h>
46#include <panic.h>
47#include <arch/asm.h>
48#include <symtab.h>
49
50#include <arch/drivers/fb.h>
51#include <arch/drivers/i8042.h>
52
53char *context_encoding[] = {
54 "Primary",
55 "Secondary",
56 "Nucleus",
57 "Reserved"
58};
59
60void tlb_arch_init(void)
61{
62}
63
64/** Insert privileged mapping into DMMU TLB.
65 *
66 * @param page Virtual page address.
67 * @param frame Physical frame address.
68 * @param pagesize Page size.
69 * @param locked True for permanent mappings, false otherwise.
70 * @param cacheable True if the mapping is cacheable, false otherwise.
71 */
72void dtlb_insert_mapping(uintptr_t page, uintptr_t frame, int pagesize, bool locked, bool cacheable)
73{
74 tlb_tag_access_reg_t tag;
75 tlb_data_t data;
76 page_address_t pg;
77 frame_address_t fr;
78
79 pg.address = page;
80 fr.address = frame;
81
82 tag.value = ASID_KERNEL;
83 tag.vpn = pg.vpn;
84
85 dtlb_tag_access_write(tag.value);
86
87 data.value = 0;
88 data.v = true;
89 data.size = pagesize;
90 data.pfn = fr.pfn;
91 data.l = locked;
92 data.cp = cacheable;
93 data.cv = cacheable;
94 data.p = true;
95 data.w = true;
96 data.g = true;
97
98 dtlb_data_in_write(data.value);
99}
100
101/** ITLB miss handler. */
102void fast_instruction_access_mmu_miss(void)
103{
104 panic("%s\n", __FUNCTION__);
105}
106
107/** DTLB miss handler. */
108void fast_data_access_mmu_miss(void)
109{
110 tlb_tag_access_reg_t tag;
111 uintptr_t tpc;
112 char *tpc_str;
113
114 tag.value = dtlb_tag_access_read();
115 if (tag.context != ASID_KERNEL || tag.vpn == 0) {
116 tpc = tpc_read();
117 tpc_str = get_symtab_entry(tpc);
118
119 printf("Faulting page: %p, ASID=%d\n", tag.vpn * PAGE_SIZE, tag.context);
120 printf("TPC=%p, (%s)\n", tpc, tpc_str ? tpc_str : "?");
121 panic("%s\n", __FUNCTION__);
122 }
123
124 /*
125 * Identity map piece of faulting kernel address space.
126 */
127 dtlb_insert_mapping(tag.vpn * PAGE_SIZE, tag.vpn * FRAME_SIZE, PAGESIZE_8K, false, true);
128}
129
130/** DTLB protection fault handler. */
131void fast_data_access_protection(void)
132{
133 panic("%s\n", __FUNCTION__);
134}
135
136/** Print contents of both TLBs. */
137void tlb_print(void)
138{
139 int i;
140 tlb_data_t d;
141 tlb_tag_read_reg_t t;
142
143 printf("I-TLB contents:\n");
144 for (i = 0; i < ITLB_ENTRY_COUNT; i++) {
145 d.value = itlb_data_access_read(i);
146 t.value = itlb_tag_read_read(i);
147
148 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",
149 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);
150 }
151
152 printf("D-TLB contents:\n");
153 for (i = 0; i < DTLB_ENTRY_COUNT; i++) {
154 d.value = dtlb_data_access_read(i);
155 t.value = dtlb_tag_read_read(i);
156
157 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",
158 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);
159 }
160
161}
162
163/** Invalidate all unlocked ITLB and DTLB entries. */
164void tlb_invalidate_all(void)
165{
166 int i;
167 tlb_data_t d;
168 tlb_tag_read_reg_t t;
169
170 for (i = 0; i < ITLB_ENTRY_COUNT; i++) {
171 d.value = itlb_data_access_read(i);
172 if (!d.l) {
173 t.value = itlb_tag_read_read(i);
174 d.v = false;
175 itlb_tag_access_write(t.value);
176 itlb_data_access_write(i, d.value);
177 }
178 }
179
180 for (i = 0; i < DTLB_ENTRY_COUNT; i++) {
181 d.value = dtlb_data_access_read(i);
182 if (!d.l) {
183 t.value = dtlb_tag_read_read(i);
184 d.v = false;
185 dtlb_tag_access_write(t.value);
186 dtlb_data_access_write(i, d.value);
187 }
188 }
189
190}
191
192/** Invalidate all ITLB and DTLB entries that belong to specified ASID (Context).
193 *
194 * @param asid Address Space ID.
195 */
196void tlb_invalidate_asid(asid_t asid)
197{
198 /* TODO: write asid to some Context register and encode the register in second parameter below. */
199 itlb_demap(TLB_DEMAP_CONTEXT, TLB_DEMAP_NUCLEUS, 0);
200 dtlb_demap(TLB_DEMAP_CONTEXT, TLB_DEMAP_NUCLEUS, 0);
201}
202
203/** Invalidate all ITLB and DTLB entries for specified page range in specified address space.
204 *
205 * @param asid Address Space ID.
206 * @param page First page which to sweep out from ITLB and DTLB.
207 * @param cnt Number of ITLB and DTLB entries to invalidate.
208 */
209void tlb_invalidate_pages(asid_t asid, uintptr_t page, count_t cnt)
210{
211 int i;
212
213 for (i = 0; i < cnt; i++) {
214 /* TODO: write asid to some Context register and encode the register in second parameter below. */
215 itlb_demap(TLB_DEMAP_PAGE, TLB_DEMAP_NUCLEUS, page + i * PAGE_SIZE);
216 dtlb_demap(TLB_DEMAP_PAGE, TLB_DEMAP_NUCLEUS, page + i * PAGE_SIZE);
217 }
218}
219
220/** @}
221 */
Note: See TracBrowser for help on using the repository browser.