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