[36b01bb2] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2006 Jakub Jermar
|
---|
[36b01bb2] | 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 |
|
---|
[5bda2f3e] | 29 | /** @addtogroup ia64mm
|
---|
[b45c443] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
[36b01bb2] | 35 | /*
|
---|
| 36 | * TLB management.
|
---|
| 37 | */
|
---|
| 38 |
|
---|
| 39 | #include <mm/tlb.h>
|
---|
[a0d74fd] | 40 | #include <mm/asid.h>
|
---|
[9ad03fe] | 41 | #include <mm/page.h>
|
---|
| 42 | #include <mm/as.h>
|
---|
[bc78c75] | 43 | #include <arch/mm/tlb.h>
|
---|
[a0d74fd] | 44 | #include <arch/mm/page.h>
|
---|
[68091bd] | 45 | #include <arch/mm/vhpt.h>
|
---|
[89298e3] | 46 | #include <arch/barrier.h>
|
---|
[2c49fbbe] | 47 | #include <arch/interrupt.h>
|
---|
[7c322bd] | 48 | #include <arch/pal/pal.h>
|
---|
| 49 | #include <arch/asm.h>
|
---|
[2c49fbbe] | 50 | #include <panic.h>
|
---|
[1065603e] | 51 | #include <print.h>
|
---|
[9ad03fe] | 52 | #include <arch.h>
|
---|
[a175a67] | 53 | #include <interrupt.h>
|
---|
[22f0561] | 54 | #include <arch/legacyio.h>
|
---|
[5bda2f3e] | 55 |
|
---|
[ef67bab] | 56 | /** Invalidate all TLB entries. */
|
---|
[36b01bb2] | 57 | void tlb_invalidate_all(void)
|
---|
| 58 | {
|
---|
[ee289cf0] | 59 | ipl_t ipl;
|
---|
| 60 | uintptr_t adr;
|
---|
| 61 | uint32_t count1, count2, stride1, stride2;
|
---|
[5bda2f3e] | 62 |
|
---|
[6c441cf8] | 63 | unsigned int i, j;
|
---|
[5bda2f3e] | 64 |
|
---|
[ee289cf0] | 65 | adr = PAL_PTCE_INFO_BASE();
|
---|
| 66 | count1 = PAL_PTCE_INFO_COUNT1();
|
---|
| 67 | count2 = PAL_PTCE_INFO_COUNT2();
|
---|
| 68 | stride1 = PAL_PTCE_INFO_STRIDE1();
|
---|
| 69 | stride2 = PAL_PTCE_INFO_STRIDE2();
|
---|
[5bda2f3e] | 70 |
|
---|
[ee289cf0] | 71 | ipl = interrupts_disable();
|
---|
[5bda2f3e] | 72 |
|
---|
[6c441cf8] | 73 | for (i = 0; i < count1; i++) {
|
---|
| 74 | for (j = 0; j < count2; j++) {
|
---|
[e7b7be3f] | 75 | asm volatile (
|
---|
[5bda2f3e] | 76 | "ptc.e %[adr] ;;"
|
---|
| 77 | :: [adr] "r" (adr)
|
---|
[ee289cf0] | 78 | );
|
---|
| 79 | adr += stride2;
|
---|
[7c322bd] | 80 | }
|
---|
[ee289cf0] | 81 | adr += stride1;
|
---|
| 82 | }
|
---|
[5bda2f3e] | 83 |
|
---|
[ee289cf0] | 84 | interrupts_restore(ipl);
|
---|
[5bda2f3e] | 85 |
|
---|
[ee289cf0] | 86 | srlz_d();
|
---|
| 87 | srlz_i();
|
---|
[5bda2f3e] | 88 |
|
---|
[68091bd] | 89 | #ifdef CONFIG_VHPT
|
---|
[ee289cf0] | 90 | vhpt_invalidate_all();
|
---|
[5bda2f3e] | 91 | #endif
|
---|
[36b01bb2] | 92 | }
|
---|
| 93 |
|
---|
| 94 | /** Invalidate entries belonging to an address space.
|
---|
| 95 | *
|
---|
[5bda2f3e] | 96 | * @param asid Address space identifier.
|
---|
| 97 | *
|
---|
[36b01bb2] | 98 | */
|
---|
| 99 | void tlb_invalidate_asid(asid_t asid)
|
---|
| 100 | {
|
---|
[a82500ce] | 101 | tlb_invalidate_all();
|
---|
[36b01bb2] | 102 | }
|
---|
[bc78c75] | 103 |
|
---|
[a82500ce] | 104 |
|
---|
[98000fb] | 105 | void tlb_invalidate_pages(asid_t asid, uintptr_t page, size_t cnt)
|
---|
[a82500ce] | 106 | {
|
---|
[5bda2f3e] | 107 | region_register_t rr;
|
---|
[d0cf9de] | 108 | bool restore_rr = false;
|
---|
[1065603e] | 109 | int b = 0;
|
---|
| 110 | int c = cnt;
|
---|
[5bda2f3e] | 111 |
|
---|
[7f1c620] | 112 | uintptr_t va;
|
---|
[1065603e] | 113 | va = page;
|
---|
[5bda2f3e] | 114 |
|
---|
[9043309c] | 115 | rr.word = rr_read(VA2VRN(page));
|
---|
| 116 | if ((restore_rr = (rr.map.rid != ASID2RID(asid, VA2VRN(page))))) {
|
---|
[d0cf9de] | 117 | /*
|
---|
| 118 | * The selected region register does not contain required RID.
|
---|
| 119 | * Save the old content of the register and replace the RID.
|
---|
| 120 | */
|
---|
[5bda2f3e] | 121 | region_register_t rr0;
|
---|
| 122 |
|
---|
[d0cf9de] | 123 | rr0 = rr;
|
---|
[9043309c] | 124 | rr0.map.rid = ASID2RID(asid, VA2VRN(page));
|
---|
| 125 | rr_write(VA2VRN(page), rr0.word);
|
---|
[d0cf9de] | 126 | srlz_d();
|
---|
| 127 | srlz_i();
|
---|
| 128 | }
|
---|
| 129 |
|
---|
[5bda2f3e] | 130 | while (c >>= 1)
|
---|
[1065603e] | 131 | b++;
|
---|
| 132 | b >>= 1;
|
---|
[7f1c620] | 133 | uint64_t ps;
|
---|
[d0cf9de] | 134 |
|
---|
[1065603e] | 135 | switch (b) {
|
---|
[666773c] | 136 | case 0: /* cnt 1 - 3 */
|
---|
[ee289cf0] | 137 | ps = PAGE_WIDTH;
|
---|
| 138 | break;
|
---|
[666773c] | 139 | case 1: /* cnt 4 - 15 */
|
---|
| 140 | ps = PAGE_WIDTH + 2;
|
---|
[9043309c] | 141 | va &= ~((1UL << ps) - 1);
|
---|
[ee289cf0] | 142 | break;
|
---|
[666773c] | 143 | case 2: /* cnt 16 - 63 */
|
---|
| 144 | ps = PAGE_WIDTH + 4;
|
---|
[9043309c] | 145 | va &= ~((1UL << ps) - 1);
|
---|
[ee289cf0] | 146 | break;
|
---|
[666773c] | 147 | case 3: /* cnt 64 - 255 */
|
---|
| 148 | ps = PAGE_WIDTH + 6;
|
---|
[9043309c] | 149 | va &= ~((1UL << ps) - 1);
|
---|
[ee289cf0] | 150 | break;
|
---|
[666773c] | 151 | case 4: /* cnt 256 - 1023 */
|
---|
| 152 | ps = PAGE_WIDTH + 8;
|
---|
[9043309c] | 153 | va &= ~((1UL << ps) - 1);
|
---|
[ee289cf0] | 154 | break;
|
---|
[666773c] | 155 | case 5: /* cnt 1024 - 4095 */
|
---|
| 156 | ps = PAGE_WIDTH + 10;
|
---|
[9043309c] | 157 | va &= ~((1UL << ps) - 1);
|
---|
[ee289cf0] | 158 | break;
|
---|
[666773c] | 159 | case 6: /* cnt 4096 - 16383 */
|
---|
| 160 | ps = PAGE_WIDTH + 12;
|
---|
[9043309c] | 161 | va &= ~((1UL << ps) - 1);
|
---|
[ee289cf0] | 162 | break;
|
---|
[666773c] | 163 | case 7: /* cnt 16384 - 65535 */
|
---|
| 164 | case 8: /* cnt 65536 - (256K - 1) */
|
---|
| 165 | ps = PAGE_WIDTH + 14;
|
---|
[9043309c] | 166 | va &= ~((1UL << ps) - 1);
|
---|
[ee289cf0] | 167 | break;
|
---|
| 168 | default:
|
---|
[666773c] | 169 | ps = PAGE_WIDTH + 18;
|
---|
[9043309c] | 170 | va &= ~((1UL << ps) - 1);
|
---|
[ee289cf0] | 171 | break;
|
---|
[d0cf9de] | 172 | }
|
---|
[5bda2f3e] | 173 |
|
---|
[9043309c] | 174 | for (; va < (page + cnt * PAGE_SIZE); va += (1UL << ps))
|
---|
[5bda2f3e] | 175 | asm volatile (
|
---|
| 176 | "ptc.l %[va], %[ps] ;;"
|
---|
| 177 | :: [va]"r" (va),
|
---|
| 178 | [ps] "r" (ps << 2)
|
---|
| 179 | );
|
---|
| 180 |
|
---|
[d0cf9de] | 181 | srlz_d();
|
---|
| 182 | srlz_i();
|
---|
| 183 |
|
---|
| 184 | if (restore_rr) {
|
---|
[9043309c] | 185 | rr_write(VA2VRN(page), rr.word);
|
---|
[d0cf9de] | 186 | srlz_d();
|
---|
| 187 | srlz_i();
|
---|
| 188 | }
|
---|
[a82500ce] | 189 | }
|
---|
| 190 |
|
---|
[95042fd] | 191 | /** Insert data into data translation cache.
|
---|
| 192 | *
|
---|
[5bda2f3e] | 193 | * @param va Virtual page address.
|
---|
| 194 | * @param asid Address space identifier.
|
---|
| 195 | * @param entry The rest of TLB entry as required by TLB insertion
|
---|
| 196 | * format.
|
---|
| 197 | *
|
---|
[95042fd] | 198 | */
|
---|
[7f1c620] | 199 | void dtc_mapping_insert(uintptr_t va, asid_t asid, tlb_entry_t entry)
|
---|
[b994a60] | 200 | {
|
---|
[95042fd] | 201 | tc_mapping_insert(va, asid, entry, true);
|
---|
| 202 | }
|
---|
[bc78c75] | 203 |
|
---|
[95042fd] | 204 | /** Insert data into instruction translation cache.
|
---|
| 205 | *
|
---|
[5bda2f3e] | 206 | * @param va Virtual page address.
|
---|
| 207 | * @param asid Address space identifier.
|
---|
| 208 | * @param entry The rest of TLB entry as required by TLB insertion
|
---|
| 209 | * format.
|
---|
[95042fd] | 210 | */
|
---|
[7f1c620] | 211 | void itc_mapping_insert(uintptr_t va, asid_t asid, tlb_entry_t entry)
|
---|
[b994a60] | 212 | {
|
---|
[95042fd] | 213 | tc_mapping_insert(va, asid, entry, false);
|
---|
| 214 | }
|
---|
[bc78c75] | 215 |
|
---|
[95042fd] | 216 | /** Insert data into instruction or data translation cache.
|
---|
| 217 | *
|
---|
[5bda2f3e] | 218 | * @param va Virtual page address.
|
---|
| 219 | * @param asid Address space identifier.
|
---|
| 220 | * @param entry The rest of TLB entry as required by TLB insertion
|
---|
| 221 | * format.
|
---|
| 222 | * @param dtc If true, insert into data translation cache, use
|
---|
| 223 | * instruction translation cache otherwise.
|
---|
| 224 | *
|
---|
[95042fd] | 225 | */
|
---|
[7f1c620] | 226 | void tc_mapping_insert(uintptr_t va, asid_t asid, tlb_entry_t entry, bool dtc)
|
---|
[bc78c75] | 227 | {
|
---|
[5bda2f3e] | 228 | region_register_t rr;
|
---|
[95042fd] | 229 | bool restore_rr = false;
|
---|
[5bda2f3e] | 230 |
|
---|
[a0d74fd] | 231 | rr.word = rr_read(VA2VRN(va));
|
---|
| 232 | if ((restore_rr = (rr.map.rid != ASID2RID(asid, VA2VRN(va))))) {
|
---|
[95042fd] | 233 | /*
|
---|
| 234 | * The selected region register does not contain required RID.
|
---|
| 235 | * Save the old content of the register and replace the RID.
|
---|
| 236 | */
|
---|
[5bda2f3e] | 237 | region_register_t rr0;
|
---|
| 238 |
|
---|
[95042fd] | 239 | rr0 = rr;
|
---|
[a0d74fd] | 240 | rr0.map.rid = ASID2RID(asid, VA2VRN(va));
|
---|
| 241 | rr_write(VA2VRN(va), rr0.word);
|
---|
[89298e3] | 242 | srlz_d();
|
---|
[95042fd] | 243 | srlz_i();
|
---|
| 244 | }
|
---|
| 245 |
|
---|
[e7b7be3f] | 246 | asm volatile (
|
---|
[5bda2f3e] | 247 | "mov r8 = psr ;;\n"
|
---|
| 248 | "rsm %[mask] ;;\n" /* PSR_IC_MASK */
|
---|
| 249 | "srlz.d ;;\n"
|
---|
| 250 | "srlz.i ;;\n"
|
---|
| 251 | "mov cr.ifa = %[va]\n" /* va */
|
---|
| 252 | "mov cr.itir = %[word1] ;;\n" /* entry.word[1] */
|
---|
| 253 | "cmp.eq p6, p7 = %[dtc], r0 ;;\n" /* decide between itc and dtc */
|
---|
| 254 | "(p6) itc.i %[word0] ;;\n"
|
---|
| 255 | "(p7) itc.d %[word0] ;;\n"
|
---|
| 256 | "mov psr.l = r8 ;;\n"
|
---|
| 257 | "srlz.d ;;\n"
|
---|
| 258 | :: [mask] "i" (PSR_IC_MASK),
|
---|
| 259 | [va] "r" (va),
|
---|
| 260 | [word0] "r" (entry.word[0]),
|
---|
| 261 | [word1] "r" (entry.word[1]),
|
---|
| 262 | [dtc] "r" (dtc)
|
---|
[2c49fbbe] | 263 | : "p6", "p7", "r8"
|
---|
[95042fd] | 264 | );
|
---|
| 265 |
|
---|
| 266 | if (restore_rr) {
|
---|
[a0d74fd] | 267 | rr_write(VA2VRN(va), rr.word);
|
---|
[95042fd] | 268 | srlz_d();
|
---|
| 269 | srlz_i();
|
---|
[bc78c75] | 270 | }
|
---|
| 271 | }
|
---|
| 272 |
|
---|
[95042fd] | 273 | /** Insert data into instruction translation register.
|
---|
| 274 | *
|
---|
[5bda2f3e] | 275 | * @param va Virtual page address.
|
---|
| 276 | * @param asid Address space identifier.
|
---|
| 277 | * @param entry The rest of TLB entry as required by TLB insertion
|
---|
| 278 | * format.
|
---|
| 279 | * @param tr Translation register.
|
---|
| 280 | *
|
---|
[95042fd] | 281 | */
|
---|
[5bda2f3e] | 282 | void itr_mapping_insert(uintptr_t va, asid_t asid, tlb_entry_t entry, size_t tr)
|
---|
[bc78c75] | 283 | {
|
---|
[95042fd] | 284 | tr_mapping_insert(va, asid, entry, false, tr);
|
---|
[bc78c75] | 285 | }
|
---|
| 286 |
|
---|
[95042fd] | 287 | /** Insert data into data translation register.
|
---|
| 288 | *
|
---|
[5bda2f3e] | 289 | * @param va Virtual page address.
|
---|
| 290 | * @param asid Address space identifier.
|
---|
| 291 | * @param entry The rest of TLB entry as required by TLB insertion
|
---|
| 292 | * format.
|
---|
| 293 | * @param tr Translation register.
|
---|
| 294 | *
|
---|
[95042fd] | 295 | */
|
---|
[5bda2f3e] | 296 | void dtr_mapping_insert(uintptr_t va, asid_t asid, tlb_entry_t entry, size_t tr)
|
---|
[95042fd] | 297 | {
|
---|
| 298 | tr_mapping_insert(va, asid, entry, true, tr);
|
---|
| 299 | }
|
---|
[bc78c75] | 300 |
|
---|
[95042fd] | 301 | /** Insert data into instruction or data translation register.
|
---|
| 302 | *
|
---|
[5bda2f3e] | 303 | * @param va Virtual page address.
|
---|
| 304 | * @param asid Address space identifier.
|
---|
| 305 | * @param entry The rest of TLB entry as required by TLB insertion
|
---|
| 306 | * format.
|
---|
| 307 | * @param dtr If true, insert into data translation register, use
|
---|
| 308 | * instruction translation register otherwise.
|
---|
| 309 | * @param tr Translation register.
|
---|
| 310 | *
|
---|
[95042fd] | 311 | */
|
---|
[5bda2f3e] | 312 | void tr_mapping_insert(uintptr_t va, asid_t asid, tlb_entry_t entry, bool dtr,
|
---|
[98000fb] | 313 | size_t tr)
|
---|
[89298e3] | 314 | {
|
---|
[5bda2f3e] | 315 | region_register_t rr;
|
---|
[95042fd] | 316 | bool restore_rr = false;
|
---|
[5bda2f3e] | 317 |
|
---|
[a0d74fd] | 318 | rr.word = rr_read(VA2VRN(va));
|
---|
| 319 | if ((restore_rr = (rr.map.rid != ASID2RID(asid, VA2VRN(va))))) {
|
---|
[95042fd] | 320 | /*
|
---|
| 321 | * The selected region register does not contain required RID.
|
---|
| 322 | * Save the old content of the register and replace the RID.
|
---|
| 323 | */
|
---|
[5bda2f3e] | 324 | region_register_t rr0;
|
---|
| 325 |
|
---|
[95042fd] | 326 | rr0 = rr;
|
---|
[a0d74fd] | 327 | rr0.map.rid = ASID2RID(asid, VA2VRN(va));
|
---|
| 328 | rr_write(VA2VRN(va), rr0.word);
|
---|
[89298e3] | 329 | srlz_d();
|
---|
[95042fd] | 330 | srlz_i();
|
---|
[89298e3] | 331 | }
|
---|
[5bda2f3e] | 332 |
|
---|
[e7b7be3f] | 333 | asm volatile (
|
---|
[5bda2f3e] | 334 | "mov r8 = psr ;;\n"
|
---|
| 335 | "rsm %[mask] ;;\n" /* PSR_IC_MASK */
|
---|
| 336 | "srlz.d ;;\n"
|
---|
| 337 | "srlz.i ;;\n"
|
---|
| 338 | "mov cr.ifa = %[va]\n" /* va */
|
---|
| 339 | "mov cr.itir = %[word1] ;;\n" /* entry.word[1] */
|
---|
| 340 | "cmp.eq p6, p7 = %[dtr], r0 ;;\n" /* decide between itr and dtr */
|
---|
| 341 | "(p6) itr.i itr[%[tr]] = %[word0] ;;\n"
|
---|
| 342 | "(p7) itr.d dtr[%[tr]] = %[word0] ;;\n"
|
---|
| 343 | "mov psr.l = r8 ;;\n"
|
---|
| 344 | "srlz.d ;;\n"
|
---|
| 345 | :: [mask] "i" (PSR_IC_MASK),
|
---|
| 346 | [va] "r" (va),
|
---|
| 347 | [word1] "r" (entry.word[1]),
|
---|
| 348 | [word0] "r" (entry.word[0]),
|
---|
| 349 | [tr] "r" (tr),
|
---|
| 350 | [dtr] "r" (dtr)
|
---|
[2c49fbbe] | 351 | : "p6", "p7", "r8"
|
---|
[95042fd] | 352 | );
|
---|
| 353 |
|
---|
| 354 | if (restore_rr) {
|
---|
[a0d74fd] | 355 | rr_write(VA2VRN(va), rr.word);
|
---|
[95042fd] | 356 | srlz_d();
|
---|
| 357 | srlz_i();
|
---|
| 358 | }
|
---|
[89298e3] | 359 | }
|
---|
| 360 |
|
---|
[a0d74fd] | 361 | /** Insert data into DTLB.
|
---|
| 362 | *
|
---|
[5bda2f3e] | 363 | * @param page Virtual page address including VRN bits.
|
---|
| 364 | * @param frame Physical frame address.
|
---|
| 365 | * @param dtr If true, insert into data translation register, use data
|
---|
| 366 | * translation cache otherwise.
|
---|
| 367 | * @param tr Translation register if dtr is true, ignored otherwise.
|
---|
| 368 | *
|
---|
[a0d74fd] | 369 | */
|
---|
[5bda2f3e] | 370 | void dtlb_kernel_mapping_insert(uintptr_t page, uintptr_t frame, bool dtr,
|
---|
[98000fb] | 371 | size_t tr)
|
---|
[a0d74fd] | 372 | {
|
---|
| 373 | tlb_entry_t entry;
|
---|
| 374 |
|
---|
| 375 | entry.word[0] = 0;
|
---|
| 376 | entry.word[1] = 0;
|
---|
| 377 |
|
---|
[5bda2f3e] | 378 | entry.p = true; /* present */
|
---|
[a0d74fd] | 379 | entry.ma = MA_WRITEBACK;
|
---|
[5bda2f3e] | 380 | entry.a = true; /* already accessed */
|
---|
| 381 | entry.d = true; /* already dirty */
|
---|
[a0d74fd] | 382 | entry.pl = PL_KERNEL;
|
---|
| 383 | entry.ar = AR_READ | AR_WRITE;
|
---|
| 384 | entry.ppn = frame >> PPN_SHIFT;
|
---|
| 385 | entry.ps = PAGE_WIDTH;
|
---|
| 386 |
|
---|
| 387 | if (dtr)
|
---|
| 388 | dtr_mapping_insert(page, ASID_KERNEL, entry, tr);
|
---|
| 389 | else
|
---|
| 390 | dtc_mapping_insert(page, ASID_KERNEL, entry);
|
---|
| 391 | }
|
---|
| 392 |
|
---|
[208259c] | 393 | /** Purge kernel entries from DTR.
|
---|
| 394 | *
|
---|
| 395 | * Purge DTR entries used by the kernel.
|
---|
| 396 | *
|
---|
[5bda2f3e] | 397 | * @param page Virtual page address including VRN bits.
|
---|
| 398 | * @param width Width of the purge in bits.
|
---|
| 399 | *
|
---|
[208259c] | 400 | */
|
---|
[98000fb] | 401 | void dtr_purge(uintptr_t page, size_t width)
|
---|
[208259c] | 402 | {
|
---|
[5bda2f3e] | 403 | asm volatile (
|
---|
| 404 | "ptr.d %[page], %[width]\n"
|
---|
| 405 | :: [page] "r" (page),
|
---|
| 406 | [width] "r" (width << 2)
|
---|
| 407 | );
|
---|
[208259c] | 408 | }
|
---|
| 409 |
|
---|
| 410 |
|
---|
[9ad03fe] | 411 | /** Copy content of PTE into data translation cache.
|
---|
| 412 | *
|
---|
[5bda2f3e] | 413 | * @param t PTE.
|
---|
| 414 | *
|
---|
[9ad03fe] | 415 | */
|
---|
| 416 | void dtc_pte_copy(pte_t *t)
|
---|
| 417 | {
|
---|
| 418 | tlb_entry_t entry;
|
---|
[5bda2f3e] | 419 |
|
---|
[9ad03fe] | 420 | entry.word[0] = 0;
|
---|
| 421 | entry.word[1] = 0;
|
---|
| 422 |
|
---|
| 423 | entry.p = t->p;
|
---|
| 424 | entry.ma = t->c ? MA_WRITEBACK : MA_UNCACHEABLE;
|
---|
| 425 | entry.a = t->a;
|
---|
| 426 | entry.d = t->d;
|
---|
| 427 | entry.pl = t->k ? PL_KERNEL : PL_USER;
|
---|
| 428 | entry.ar = t->w ? AR_WRITE : AR_READ;
|
---|
| 429 | entry.ppn = t->frame >> PPN_SHIFT;
|
---|
| 430 | entry.ps = PAGE_WIDTH;
|
---|
| 431 |
|
---|
| 432 | dtc_mapping_insert(t->page, t->as->asid, entry);
|
---|
[5bda2f3e] | 433 |
|
---|
[68091bd] | 434 | #ifdef CONFIG_VHPT
|
---|
| 435 | vhpt_mapping_insert(t->page, t->as->asid, entry);
|
---|
[5bda2f3e] | 436 | #endif
|
---|
[9ad03fe] | 437 | }
|
---|
| 438 |
|
---|
| 439 | /** Copy content of PTE into instruction translation cache.
|
---|
| 440 | *
|
---|
[5bda2f3e] | 441 | * @param t PTE.
|
---|
| 442 | *
|
---|
[9ad03fe] | 443 | */
|
---|
| 444 | void itc_pte_copy(pte_t *t)
|
---|
| 445 | {
|
---|
| 446 | tlb_entry_t entry;
|
---|
[5bda2f3e] | 447 |
|
---|
[9ad03fe] | 448 | entry.word[0] = 0;
|
---|
| 449 | entry.word[1] = 0;
|
---|
| 450 |
|
---|
| 451 | ASSERT(t->x);
|
---|
| 452 |
|
---|
| 453 | entry.p = t->p;
|
---|
| 454 | entry.ma = t->c ? MA_WRITEBACK : MA_UNCACHEABLE;
|
---|
| 455 | entry.a = t->a;
|
---|
| 456 | entry.pl = t->k ? PL_KERNEL : PL_USER;
|
---|
| 457 | entry.ar = t->x ? (AR_EXECUTE | AR_READ) : AR_READ;
|
---|
| 458 | entry.ppn = t->frame >> PPN_SHIFT;
|
---|
| 459 | entry.ps = PAGE_WIDTH;
|
---|
| 460 |
|
---|
| 461 | itc_mapping_insert(t->page, t->as->asid, entry);
|
---|
[5bda2f3e] | 462 |
|
---|
[68091bd] | 463 | #ifdef CONFIG_VHPT
|
---|
| 464 | vhpt_mapping_insert(t->page, t->as->asid, entry);
|
---|
[5bda2f3e] | 465 | #endif
|
---|
[9ad03fe] | 466 | }
|
---|
| 467 |
|
---|
[0fd9b35] | 468 | static bool is_kernel_fault(uintptr_t va)
|
---|
| 469 | {
|
---|
| 470 | region_register_t rr;
|
---|
| 471 |
|
---|
| 472 | rr.word = rr_read(VA2VRN(va));
|
---|
| 473 | rid_t rid = rr.map.rid;
|
---|
| 474 | return (RID2ASID(rid) == ASID_KERNEL) && (VA2VRN(va) == VRN_KERNEL);
|
---|
| 475 | }
|
---|
| 476 |
|
---|
[9ad03fe] | 477 | /** Instruction TLB fault handler for faults with VHPT turned off.
|
---|
| 478 | *
|
---|
[5bda2f3e] | 479 | * @param vector Interruption vector.
|
---|
| 480 | * @param istate Structure with saved interruption state.
|
---|
| 481 | *
|
---|
[9ad03fe] | 482 | */
|
---|
[7f1c620] | 483 | void alternate_instruction_tlb_fault(uint64_t vector, istate_t *istate)
|
---|
[89298e3] | 484 | {
|
---|
[7f1c620] | 485 | uintptr_t va;
|
---|
[9ad03fe] | 486 | pte_t *t;
|
---|
| 487 |
|
---|
[5bda2f3e] | 488 | va = istate->cr_ifa; /* faulting address */
|
---|
| 489 |
|
---|
[0fd9b35] | 490 | ASSERT(!is_kernel_fault(va));
|
---|
| 491 |
|
---|
[0ff03f3] | 492 | t = page_mapping_find(AS, va, true);
|
---|
[9ad03fe] | 493 | if (t) {
|
---|
| 494 | /*
|
---|
| 495 | * The mapping was found in software page hash table.
|
---|
| 496 | * Insert it into data translation cache.
|
---|
| 497 | */
|
---|
| 498 | itc_pte_copy(t);
|
---|
| 499 | } else {
|
---|
| 500 | /*
|
---|
| 501 | * Forward the page fault to address space page fault handler.
|
---|
| 502 | */
|
---|
[567807b1] | 503 | if (as_page_fault(va, PF_ACCESS_EXEC, istate) == AS_PF_FAULT) {
|
---|
[7e752b2] | 504 | fault_if_from_uspace(istate, "Page fault at %p.",
|
---|
| 505 | (void *) va);
|
---|
[c15b374] | 506 | panic_memtrap(istate, PF_ACCESS_EXEC, va, NULL);
|
---|
[9ad03fe] | 507 | }
|
---|
| 508 | }
|
---|
[95042fd] | 509 | }
|
---|
[89298e3] | 510 |
|
---|
[46321fb] | 511 | static int is_io_page_accessible(int page)
|
---|
| 512 | {
|
---|
[666773c] | 513 | if (TASK->arch.iomap)
|
---|
[38f6add] | 514 | return bitmap_get(TASK->arch.iomap, page);
|
---|
[666773c] | 515 | else
|
---|
| 516 | return 0;
|
---|
[46321fb] | 517 | }
|
---|
| 518 |
|
---|
[666773c] | 519 | /**
|
---|
| 520 | * There is special handling of memory mapped legacy io, because of 4KB sized
|
---|
| 521 | * access for userspace.
|
---|
[46321fb] | 522 | *
|
---|
[5bda2f3e] | 523 | * @param va Virtual address of page fault.
|
---|
| 524 | * @param istate Structure with saved interruption state.
|
---|
| 525 | *
|
---|
| 526 | * @return One on success, zero on failure.
|
---|
[46321fb] | 527 | *
|
---|
| 528 | */
|
---|
| 529 | static int try_memmap_io_insertion(uintptr_t va, istate_t *istate)
|
---|
| 530 | {
|
---|
[22f0561] | 531 | if ((va >= LEGACYIO_USER_BASE) && (va < LEGACYIO_USER_BASE + (1 << LEGACYIO_PAGE_WIDTH))) {
|
---|
[666773c] | 532 | if (TASK) {
|
---|
[22f0561] | 533 | uint64_t io_page = (va & ((1 << LEGACYIO_PAGE_WIDTH) - 1)) >>
|
---|
| 534 | LEGACYIO_SINGLE_PAGE_WIDTH;
|
---|
[5bda2f3e] | 535 |
|
---|
[666773c] | 536 | if (is_io_page_accessible(io_page)) {
|
---|
| 537 | uint64_t page, frame;
|
---|
[5bda2f3e] | 538 |
|
---|
[22f0561] | 539 | page = LEGACYIO_USER_BASE +
|
---|
| 540 | (1 << LEGACYIO_SINGLE_PAGE_WIDTH) * io_page;
|
---|
| 541 | frame = LEGACYIO_PHYS_BASE +
|
---|
| 542 | (1 << LEGACYIO_SINGLE_PAGE_WIDTH) * io_page;
|
---|
[5bda2f3e] | 543 |
|
---|
[46321fb] | 544 | tlb_entry_t entry;
|
---|
[5bda2f3e] | 545 |
|
---|
[46321fb] | 546 | entry.word[0] = 0;
|
---|
| 547 | entry.word[1] = 0;
|
---|
[5bda2f3e] | 548 |
|
---|
| 549 | entry.p = true; /* present */
|
---|
| 550 | entry.ma = MA_UNCACHEABLE;
|
---|
| 551 | entry.a = true; /* already accessed */
|
---|
| 552 | entry.d = true; /* already dirty */
|
---|
[46321fb] | 553 | entry.pl = PL_USER;
|
---|
| 554 | entry.ar = AR_READ | AR_WRITE;
|
---|
[ef5de6d] | 555 | entry.ppn = frame >> PPN_SHIFT;
|
---|
[22f0561] | 556 | entry.ps = LEGACYIO_SINGLE_PAGE_WIDTH;
|
---|
[5bda2f3e] | 557 |
|
---|
[ef5de6d] | 558 | dtc_mapping_insert(page, TASK->as->asid, entry);
|
---|
[46321fb] | 559 | return 1;
|
---|
[666773c] | 560 | } else {
|
---|
| 561 | fault_if_from_uspace(istate,
|
---|
[7e752b2] | 562 | "IO access fault at %p.", (void *) va);
|
---|
[666773c] | 563 | }
|
---|
| 564 | }
|
---|
| 565 | }
|
---|
[5bda2f3e] | 566 |
|
---|
[46321fb] | 567 | return 0;
|
---|
| 568 | }
|
---|
| 569 |
|
---|
[9ad03fe] | 570 | /** Data TLB fault handler for faults with VHPT turned off.
|
---|
[a0d74fd] | 571 | *
|
---|
[5bda2f3e] | 572 | * @param vector Interruption vector.
|
---|
| 573 | * @param istate Structure with saved interruption state.
|
---|
| 574 | *
|
---|
[a0d74fd] | 575 | */
|
---|
[7f1c620] | 576 | void alternate_data_tlb_fault(uint64_t vector, istate_t *istate)
|
---|
[95042fd] | 577 | {
|
---|
[93d66ef] | 578 | if (istate->cr_isr.sp) {
|
---|
[0fd9b35] | 579 | /*
|
---|
| 580 | * Speculative load. Deffer the exception until a more clever
|
---|
| 581 | * approach can be used. Currently if we try to find the
|
---|
| 582 | * mapping for the speculative load while in the kernel, we
|
---|
| 583 | * might introduce a livelock because of the possibly invalid
|
---|
| 584 | * values of the address.
|
---|
| 585 | */
|
---|
[93d66ef] | 586 | istate->cr_ipsr.ed = true;
|
---|
| 587 | return;
|
---|
| 588 | }
|
---|
| 589 |
|
---|
[5bda2f3e] | 590 | uintptr_t va = istate->cr_ifa; /* faulting address */
|
---|
[0fd9b35] | 591 | as_t *as = AS;
|
---|
[a0d74fd] | 592 |
|
---|
[0fd9b35] | 593 | if (is_kernel_fault(va)) {
|
---|
| 594 | if (va < end_of_identity) {
|
---|
[a0d74fd] | 595 | /*
|
---|
[0fd9b35] | 596 | * Create kernel identity mapping for low memory.
|
---|
[a0d74fd] | 597 | */
|
---|
[9ad03fe] | 598 | dtlb_kernel_mapping_insert(va, KA2PA(va), false, 0);
|
---|
[a0d74fd] | 599 | return;
|
---|
[0fd9b35] | 600 | } else {
|
---|
| 601 | as = AS_KERNEL;
|
---|
[a0d74fd] | 602 | }
|
---|
| 603 | }
|
---|
[5bda2f3e] | 604 |
|
---|
| 605 |
|
---|
[0fd9b35] | 606 | pte_t *entry = page_mapping_find(as, va, true);
|
---|
[5bda2f3e] | 607 | if (entry) {
|
---|
[9ad03fe] | 608 | /*
|
---|
[f47fd19] | 609 | * The mapping was found in the software page hash table.
|
---|
[9ad03fe] | 610 | * Insert it into data translation cache.
|
---|
| 611 | */
|
---|
[5bda2f3e] | 612 | dtc_pte_copy(entry);
|
---|
[9ad03fe] | 613 | } else {
|
---|
[666773c] | 614 | if (try_memmap_io_insertion(va, istate))
|
---|
| 615 | return;
|
---|
[5bda2f3e] | 616 |
|
---|
[9ad03fe] | 617 | /*
|
---|
[5bda2f3e] | 618 | * Forward the page fault to the address space page fault
|
---|
[666773c] | 619 | * handler.
|
---|
[9ad03fe] | 620 | */
|
---|
[567807b1] | 621 | if (as_page_fault(va, PF_ACCESS_READ, istate) == AS_PF_FAULT) {
|
---|
[7e752b2] | 622 | fault_if_from_uspace(istate, "Page fault at %p.",
|
---|
| 623 | (void *) va);
|
---|
[c15b374] | 624 | panic_memtrap(istate, PF_ACCESS_UNKNOWN, va, NULL);
|
---|
[9ad03fe] | 625 | }
|
---|
| 626 | }
|
---|
[95042fd] | 627 | }
|
---|
[89298e3] | 628 |
|
---|
[9ad03fe] | 629 | /** Data nested TLB fault handler.
|
---|
| 630 | *
|
---|
| 631 | * This fault should not occur.
|
---|
| 632 | *
|
---|
[5bda2f3e] | 633 | * @param vector Interruption vector.
|
---|
| 634 | * @param istate Structure with saved interruption state.
|
---|
| 635 | *
|
---|
[9ad03fe] | 636 | */
|
---|
[7f1c620] | 637 | void data_nested_tlb_fault(uint64_t vector, istate_t *istate)
|
---|
[95042fd] | 638 | {
|
---|
[5bda2f3e] | 639 | ASSERT(false);
|
---|
[95042fd] | 640 | }
|
---|
[89298e3] | 641 |
|
---|
[9ad03fe] | 642 | /** Data Dirty bit fault handler.
|
---|
| 643 | *
|
---|
[5bda2f3e] | 644 | * @param vector Interruption vector.
|
---|
| 645 | * @param istate Structure with saved interruption state.
|
---|
| 646 | *
|
---|
[9ad03fe] | 647 | */
|
---|
[7f1c620] | 648 | void data_dirty_bit_fault(uint64_t vector, istate_t *istate)
|
---|
[95042fd] | 649 | {
|
---|
[7f1c620] | 650 | uintptr_t va;
|
---|
[9ad03fe] | 651 | pte_t *t;
|
---|
[0fd9b35] | 652 | as_t *as = AS;
|
---|
[567807b1] | 653 |
|
---|
[5bda2f3e] | 654 | va = istate->cr_ifa; /* faulting address */
|
---|
| 655 |
|
---|
[0fd9b35] | 656 | if (is_kernel_fault(va))
|
---|
| 657 | as = AS_KERNEL;
|
---|
| 658 |
|
---|
| 659 | t = page_mapping_find(as, va, true);
|
---|
[5bda2f3e] | 660 | ASSERT((t) && (t->p));
|
---|
| 661 | if ((t) && (t->p) && (t->w)) {
|
---|
[9ad03fe] | 662 | /*
|
---|
| 663 | * Update the Dirty bit in page tables and reinsert
|
---|
| 664 | * the mapping into DTC.
|
---|
| 665 | */
|
---|
| 666 | t->d = true;
|
---|
| 667 | dtc_pte_copy(t);
|
---|
[567807b1] | 668 | } else {
|
---|
| 669 | if (as_page_fault(va, PF_ACCESS_WRITE, istate) == AS_PF_FAULT) {
|
---|
[7e752b2] | 670 | fault_if_from_uspace(istate, "Page fault at %p.",
|
---|
| 671 | (void *) va);
|
---|
[c15b374] | 672 | panic_memtrap(istate, PF_ACCESS_WRITE, va, NULL);
|
---|
[567807b1] | 673 | }
|
---|
[9ad03fe] | 674 | }
|
---|
[95042fd] | 675 | }
|
---|
[89298e3] | 676 |
|
---|
[9ad03fe] | 677 | /** Instruction access bit fault handler.
|
---|
| 678 | *
|
---|
[5bda2f3e] | 679 | * @param vector Interruption vector.
|
---|
| 680 | * @param istate Structure with saved interruption state.
|
---|
| 681 | *
|
---|
[9ad03fe] | 682 | */
|
---|
[7f1c620] | 683 | void instruction_access_bit_fault(uint64_t vector, istate_t *istate)
|
---|
[95042fd] | 684 | {
|
---|
[7f1c620] | 685 | uintptr_t va;
|
---|
[5bda2f3e] | 686 | pte_t *t;
|
---|
| 687 |
|
---|
| 688 | va = istate->cr_ifa; /* faulting address */
|
---|
[0fd9b35] | 689 |
|
---|
| 690 | ASSERT(!is_kernel_fault(va));
|
---|
[5bda2f3e] | 691 |
|
---|
[0ff03f3] | 692 | t = page_mapping_find(AS, va, true);
|
---|
[5bda2f3e] | 693 | ASSERT((t) && (t->p));
|
---|
| 694 | if ((t) && (t->p) && (t->x)) {
|
---|
[9ad03fe] | 695 | /*
|
---|
| 696 | * Update the Accessed bit in page tables and reinsert
|
---|
| 697 | * the mapping into ITC.
|
---|
| 698 | */
|
---|
| 699 | t->a = true;
|
---|
| 700 | itc_pte_copy(t);
|
---|
[567807b1] | 701 | } else {
|
---|
| 702 | if (as_page_fault(va, PF_ACCESS_EXEC, istate) == AS_PF_FAULT) {
|
---|
[7e752b2] | 703 | fault_if_from_uspace(istate, "Page fault at %p.",
|
---|
| 704 | (void *) va);
|
---|
[c15b374] | 705 | panic_memtrap(istate, PF_ACCESS_EXEC, va, NULL);
|
---|
[567807b1] | 706 | }
|
---|
[9ad03fe] | 707 | }
|
---|
[95042fd] | 708 | }
|
---|
[89298e3] | 709 |
|
---|
[9ad03fe] | 710 | /** Data access bit fault handler.
|
---|
| 711 | *
|
---|
| 712 | * @param vector Interruption vector.
|
---|
[25d7709] | 713 | * @param istate Structure with saved interruption state.
|
---|
[5bda2f3e] | 714 | *
|
---|
[9ad03fe] | 715 | */
|
---|
[7f1c620] | 716 | void data_access_bit_fault(uint64_t vector, istate_t *istate)
|
---|
[95042fd] | 717 | {
|
---|
[7f1c620] | 718 | uintptr_t va;
|
---|
[9ad03fe] | 719 | pte_t *t;
|
---|
[0fd9b35] | 720 | as_t *as = AS;
|
---|
[5bda2f3e] | 721 |
|
---|
| 722 | va = istate->cr_ifa; /* faulting address */
|
---|
| 723 |
|
---|
[0fd9b35] | 724 | if (is_kernel_fault(va))
|
---|
| 725 | as = AS_KERNEL;
|
---|
| 726 |
|
---|
| 727 | t = page_mapping_find(as, va, true);
|
---|
[5bda2f3e] | 728 | ASSERT((t) && (t->p));
|
---|
| 729 | if ((t) && (t->p)) {
|
---|
[9ad03fe] | 730 | /*
|
---|
| 731 | * Update the Accessed bit in page tables and reinsert
|
---|
| 732 | * the mapping into DTC.
|
---|
| 733 | */
|
---|
| 734 | t->a = true;
|
---|
| 735 | dtc_pte_copy(t);
|
---|
[567807b1] | 736 | } else {
|
---|
| 737 | if (as_page_fault(va, PF_ACCESS_READ, istate) == AS_PF_FAULT) {
|
---|
[7e752b2] | 738 | fault_if_from_uspace(istate, "Page fault at %p.",
|
---|
| 739 | (void *) va);
|
---|
[c15b374] | 740 | panic_memtrap(istate, PF_ACCESS_UNKNOWN, va, NULL);
|
---|
[567807b1] | 741 | }
|
---|
[9ad03fe] | 742 | }
|
---|
[89298e3] | 743 | }
|
---|
| 744 |
|
---|
[925be4e] | 745 | /** Data access rights fault handler.
|
---|
| 746 | *
|
---|
| 747 | * @param vector Interruption vector.
|
---|
| 748 | * @param istate Structure with saved interruption state.
|
---|
[5bda2f3e] | 749 | *
|
---|
[925be4e] | 750 | */
|
---|
| 751 | void data_access_rights_fault(uint64_t vector, istate_t *istate)
|
---|
| 752 | {
|
---|
| 753 | uintptr_t va;
|
---|
| 754 | pte_t *t;
|
---|
[5bda2f3e] | 755 |
|
---|
| 756 | va = istate->cr_ifa; /* faulting address */
|
---|
[0fd9b35] | 757 |
|
---|
| 758 | ASSERT(!is_kernel_fault(va));
|
---|
[5bda2f3e] | 759 |
|
---|
[925be4e] | 760 | /*
|
---|
| 761 | * Assume a write to a read-only page.
|
---|
| 762 | */
|
---|
[0ff03f3] | 763 | t = page_mapping_find(AS, va, true);
|
---|
[5bda2f3e] | 764 | ASSERT((t) && (t->p));
|
---|
[925be4e] | 765 | ASSERT(!t->w);
|
---|
| 766 | if (as_page_fault(va, PF_ACCESS_WRITE, istate) == AS_PF_FAULT) {
|
---|
[7e752b2] | 767 | fault_if_from_uspace(istate, "Page fault at %p.",
|
---|
| 768 | (void *) va);
|
---|
[c15b374] | 769 | panic_memtrap(istate, PF_ACCESS_WRITE, va, NULL);
|
---|
[925be4e] | 770 | }
|
---|
| 771 | }
|
---|
| 772 |
|
---|
[9ad03fe] | 773 | /** Page not present fault handler.
|
---|
| 774 | *
|
---|
| 775 | * @param vector Interruption vector.
|
---|
[25d7709] | 776 | * @param istate Structure with saved interruption state.
|
---|
[5bda2f3e] | 777 | *
|
---|
[9ad03fe] | 778 | */
|
---|
[7f1c620] | 779 | void page_not_present(uint64_t vector, istate_t *istate)
|
---|
[95042fd] | 780 | {
|
---|
[7f1c620] | 781 | uintptr_t va;
|
---|
[9ad03fe] | 782 | pte_t *t;
|
---|
| 783 |
|
---|
[5bda2f3e] | 784 | va = istate->cr_ifa; /* faulting address */
|
---|
| 785 |
|
---|
[0fd9b35] | 786 | ASSERT(!is_kernel_fault(va));
|
---|
| 787 |
|
---|
[0ff03f3] | 788 | t = page_mapping_find(AS, va, true);
|
---|
[9ad03fe] | 789 | ASSERT(t);
|
---|
| 790 |
|
---|
| 791 | if (t->p) {
|
---|
| 792 | /*
|
---|
| 793 | * If the Present bit is set in page hash table, just copy it
|
---|
| 794 | * and update ITC/DTC.
|
---|
| 795 | */
|
---|
| 796 | if (t->x)
|
---|
| 797 | itc_pte_copy(t);
|
---|
| 798 | else
|
---|
| 799 | dtc_pte_copy(t);
|
---|
| 800 | } else {
|
---|
[567807b1] | 801 | if (as_page_fault(va, PF_ACCESS_READ, istate) == AS_PF_FAULT) {
|
---|
[7e752b2] | 802 | fault_if_from_uspace(istate, "Page fault at %p.",
|
---|
| 803 | (void *) va);
|
---|
[c15b374] | 804 | panic_memtrap(istate, PF_ACCESS_UNKNOWN, va, NULL);
|
---|
[9ad03fe] | 805 | }
|
---|
| 806 | }
|
---|
[95042fd] | 807 | }
|
---|
[b45c443] | 808 |
|
---|
[9979acb] | 809 | void tlb_arch_init(void)
|
---|
| 810 | {
|
---|
| 811 | }
|
---|
| 812 |
|
---|
| 813 | void tlb_print(void)
|
---|
| 814 | {
|
---|
| 815 | }
|
---|
| 816 |
|
---|
[ee289cf0] | 817 | /** @}
|
---|
[b45c443] | 818 | */
|
---|