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