[ef67bab] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2006 Jakub Jermar
|
---|
[ef67bab] | 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 |
|
---|
[ed166f7] | 29 | /** @addtogroup sparc64mm
|
---|
[b45c443] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
[ef67bab] | 35 | #include <arch/mm/as.h>
|
---|
[ed166f7] | 36 | #include <arch/mm/tlb.h>
|
---|
[b3f8fb7] | 37 | #include <genarch/mm/page_ht.h>
|
---|
[d0a0f12] | 38 | #include <genarch/mm/asid_fifo.h>
|
---|
[57da95c] | 39 | #include <debug.h>
|
---|
[a9ac978] | 40 | #include <config.h>
|
---|
[57da95c] | 41 |
|
---|
| 42 | #ifdef CONFIG_TSB
|
---|
[da1bafb] | 43 |
|
---|
[57da95c] | 44 | #include <arch/mm/tsb.h>
|
---|
[29b2bbf] | 45 | #include <arch/memstr.h>
|
---|
| 46 | #include <arch/asm.h>
|
---|
| 47 | #include <mm/frame.h>
|
---|
| 48 | #include <bitops.h>
|
---|
| 49 | #include <macros.h>
|
---|
[da1bafb] | 50 |
|
---|
[92778f2] | 51 | #endif /* CONFIG_TSB */
|
---|
| 52 |
|
---|
[ef67bab] | 53 | /** Architecture dependent address space init. */
|
---|
| 54 | void as_arch_init(void)
|
---|
| 55 | {
|
---|
[a9ac978] | 56 | if (config.cpu_active == 1) {
|
---|
| 57 | as_operations = &as_ht_operations;
|
---|
| 58 | asid_fifo_init();
|
---|
| 59 | }
|
---|
[ef67bab] | 60 | }
|
---|
[b45c443] | 61 |
|
---|
[da1bafb] | 62 | int as_constructor_arch(as_t *as, unsigned int flags)
|
---|
[29b2bbf] | 63 | {
|
---|
| 64 | #ifdef CONFIG_TSB
|
---|
[1d79c04] | 65 | /*
|
---|
| 66 | * The order must be calculated with respect to the emulated
|
---|
| 67 | * 16K page size.
|
---|
[da1bafb] | 68 | *
|
---|
[1d79c04] | 69 | */
|
---|
[da1bafb] | 70 | uint8_t order = fnzb32(((ITSB_ENTRY_COUNT + DTSB_ENTRY_COUNT) *
|
---|
[1d79c04] | 71 | sizeof(tsb_entry_t)) >> FRAME_WIDTH);
|
---|
[da1bafb] | 72 |
|
---|
[91d6d28] | 73 | uintptr_t tsb = (uintptr_t) frame_alloc(order, flags | FRAME_KA);
|
---|
[da1bafb] | 74 |
|
---|
[29b2bbf] | 75 | if (!tsb)
|
---|
| 76 | return -1;
|
---|
[da1bafb] | 77 |
|
---|
[29b2bbf] | 78 | as->arch.itsb = (tsb_entry_t *) tsb;
|
---|
[771cd22] | 79 | as->arch.dtsb = (tsb_entry_t *) (tsb + ITSB_ENTRY_COUNT *
|
---|
[1d79c04] | 80 | sizeof(tsb_entry_t));
|
---|
[da1bafb] | 81 |
|
---|
[e32e092] | 82 | memsetb(as->arch.itsb,
|
---|
[2057572] | 83 | (ITSB_ENTRY_COUNT + DTSB_ENTRY_COUNT) * sizeof(tsb_entry_t), 0);
|
---|
[29b2bbf] | 84 | #endif
|
---|
[da1bafb] | 85 |
|
---|
[29b2bbf] | 86 | return 0;
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | int as_destructor_arch(as_t *as)
|
---|
| 90 | {
|
---|
| 91 | #ifdef CONFIG_TSB
|
---|
[1d79c04] | 92 | /*
|
---|
| 93 | * The count must be calculated with respect to the emualted 16K page
|
---|
| 94 | * size.
|
---|
| 95 | */
|
---|
[98000fb] | 96 | size_t cnt = ((ITSB_ENTRY_COUNT + DTSB_ENTRY_COUNT) *
|
---|
[1d79c04] | 97 | sizeof(tsb_entry_t)) >> FRAME_WIDTH;
|
---|
[91d6d28] | 98 | frame_free(KA2PA((uintptr_t) as->arch.itsb));
|
---|
[da1bafb] | 99 |
|
---|
[29b2bbf] | 100 | return cnt;
|
---|
| 101 | #else
|
---|
| 102 | return 0;
|
---|
| 103 | #endif
|
---|
| 104 | }
|
---|
| 105 |
|
---|
[da1bafb] | 106 | int as_create_arch(as_t *as, unsigned int flags)
|
---|
[29b2bbf] | 107 | {
|
---|
| 108 | #ifdef CONFIG_TSB
|
---|
[98000fb] | 109 | tsb_invalidate(as, 0, (size_t) -1);
|
---|
[29b2bbf] | 110 | #endif
|
---|
[da1bafb] | 111 |
|
---|
[29b2bbf] | 112 | return 0;
|
---|
| 113 | }
|
---|
| 114 |
|
---|
[771cd22] | 115 | /** Perform sparc64-specific tasks when an address space becomes active on the
|
---|
| 116 | * processor.
|
---|
[57da95c] | 117 | *
|
---|
| 118 | * Install ASID and map TSBs.
|
---|
| 119 | *
|
---|
| 120 | * @param as Address space.
|
---|
| 121 | */
|
---|
[ed166f7] | 122 | void as_install_arch(as_t *as)
|
---|
| 123 | {
|
---|
| 124 | tlb_context_reg_t ctx;
|
---|
| 125 |
|
---|
[57da95c] | 126 | /*
|
---|
[879585a3] | 127 | * Note that we don't and may not lock the address space. That's ok
|
---|
| 128 | * since we only read members that are currently read-only.
|
---|
| 129 | *
|
---|
| 130 | * Moreover, the as->asid is protected by asidlock, which is being held.
|
---|
[da1bafb] | 131 | *
|
---|
[57da95c] | 132 | */
|
---|
| 133 |
|
---|
[ed166f7] | 134 | /*
|
---|
[879585a3] | 135 | * Write ASID to secondary context register. The primary context
|
---|
| 136 | * register has to be set from TL>0 so it will be filled from the
|
---|
| 137 | * secondary context register from the TL=1 code just before switch to
|
---|
| 138 | * userspace.
|
---|
[da1bafb] | 139 | *
|
---|
[ed166f7] | 140 | */
|
---|
| 141 | ctx.v = 0;
|
---|
| 142 | ctx.context = as->asid;
|
---|
| 143 | mmu_secondary_context_write(ctx.v);
|
---|
[da1bafb] | 144 |
|
---|
| 145 | #ifdef CONFIG_TSB
|
---|
[29b2bbf] | 146 | uintptr_t base = ALIGN_DOWN(config.base, 1 << KERNEL_PAGE_WIDTH);
|
---|
[da1bafb] | 147 |
|
---|
[29b2bbf] | 148 | ASSERT(as->arch.itsb && as->arch.dtsb);
|
---|
[da1bafb] | 149 |
|
---|
[29b2bbf] | 150 | uintptr_t tsb = (uintptr_t) as->arch.itsb;
|
---|
[da1bafb] | 151 |
|
---|
[2057572] | 152 | if (!overlaps(tsb, 8 * MMU_PAGE_SIZE, base, 1 << KERNEL_PAGE_WIDTH)) {
|
---|
[57da95c] | 153 | /*
|
---|
[29b2bbf] | 154 | * TSBs were allocated from memory not covered
|
---|
| 155 | * by the locked 4M kernel DTLB entry. We need
|
---|
| 156 | * to map both TSBs explicitly.
|
---|
[da1bafb] | 157 | *
|
---|
[57da95c] | 158 | */
|
---|
[29b2bbf] | 159 | dtlb_demap(TLB_DEMAP_PAGE, TLB_DEMAP_NUCLEUS, tsb);
|
---|
| 160 | dtlb_insert_mapping(tsb, KA2PA(tsb), PAGESIZE_64K, true, true);
|
---|
[57da95c] | 161 | }
|
---|
[da1bafb] | 162 |
|
---|
[29b2bbf] | 163 | /*
|
---|
| 164 | * Setup TSB Base registers.
|
---|
[da1bafb] | 165 | *
|
---|
[29b2bbf] | 166 | */
|
---|
| 167 | tsb_base_reg_t tsb_base;
|
---|
[da1bafb] | 168 |
|
---|
[29b2bbf] | 169 | tsb_base.value = 0;
|
---|
| 170 | tsb_base.size = TSB_SIZE;
|
---|
| 171 | tsb_base.split = 0;
|
---|
[da1bafb] | 172 |
|
---|
[2057572] | 173 | tsb_base.base = ((uintptr_t) as->arch.itsb) >> MMU_PAGE_WIDTH;
|
---|
[29b2bbf] | 174 | itsb_base_write(tsb_base.value);
|
---|
[2057572] | 175 | tsb_base.base = ((uintptr_t) as->arch.dtsb) >> MMU_PAGE_WIDTH;
|
---|
[29b2bbf] | 176 | dtsb_base_write(tsb_base.value);
|
---|
[965dc18] | 177 |
|
---|
| 178 | #if defined (US3)
|
---|
| 179 | /*
|
---|
| 180 | * Clear the extension registers.
|
---|
| 181 | * In HelenOS, primary and secondary context registers contain
|
---|
| 182 | * equal values and kernel misses (context 0, ie. the nucleus context)
|
---|
| 183 | * are excluded from the TSB miss handler, so it makes no sense
|
---|
| 184 | * to have separate TSBs for primary, secondary and nucleus contexts.
|
---|
| 185 | * Clearing the extension registers will ensure that the value of the
|
---|
| 186 | * TSB Base register will be used as an address of TSB, making the code
|
---|
[da1bafb] | 187 | * compatible with the US port.
|
---|
| 188 | *
|
---|
[965dc18] | 189 | */
|
---|
| 190 | itsb_primary_extension_write(0);
|
---|
| 191 | itsb_nucleus_extension_write(0);
|
---|
| 192 | dtsb_primary_extension_write(0);
|
---|
| 193 | dtsb_secondary_extension_write(0);
|
---|
| 194 | dtsb_nucleus_extension_write(0);
|
---|
| 195 | #endif
|
---|
[57da95c] | 196 | #endif
|
---|
| 197 | }
|
---|
| 198 |
|
---|
[771cd22] | 199 | /** Perform sparc64-specific tasks when an address space is removed from the
|
---|
| 200 | * processor.
|
---|
[57da95c] | 201 | *
|
---|
| 202 | * Demap TSBs.
|
---|
| 203 | *
|
---|
| 204 | * @param as Address space.
|
---|
| 205 | */
|
---|
| 206 | void as_deinstall_arch(as_t *as)
|
---|
| 207 | {
|
---|
| 208 | /*
|
---|
[879585a3] | 209 | * Note that we don't and may not lock the address space. That's ok
|
---|
| 210 | * since we only read members that are currently read-only.
|
---|
| 211 | *
|
---|
| 212 | * Moreover, the as->asid is protected by asidlock, which is being held.
|
---|
[da1bafb] | 213 | *
|
---|
[57da95c] | 214 | */
|
---|
[da1bafb] | 215 |
|
---|
[57da95c] | 216 | #ifdef CONFIG_TSB
|
---|
[29b2bbf] | 217 | uintptr_t base = ALIGN_DOWN(config.base, 1 << KERNEL_PAGE_WIDTH);
|
---|
[da1bafb] | 218 |
|
---|
[29b2bbf] | 219 | ASSERT(as->arch.itsb && as->arch.dtsb);
|
---|
[da1bafb] | 220 |
|
---|
[29b2bbf] | 221 | uintptr_t tsb = (uintptr_t) as->arch.itsb;
|
---|
[da1bafb] | 222 |
|
---|
[2057572] | 223 | if (!overlaps(tsb, 8 * MMU_PAGE_SIZE, base, 1 << KERNEL_PAGE_WIDTH)) {
|
---|
[29b2bbf] | 224 | /*
|
---|
| 225 | * TSBs were allocated from memory not covered
|
---|
| 226 | * by the locked 4M kernel DTLB entry. We need
|
---|
| 227 | * to demap the entry installed by as_install_arch().
|
---|
| 228 | */
|
---|
| 229 | dtlb_demap(TLB_DEMAP_PAGE, TLB_DEMAP_NUCLEUS, tsb);
|
---|
[57da95c] | 230 | }
|
---|
| 231 | #endif
|
---|
[ed166f7] | 232 | }
|
---|
| 233 |
|
---|
| 234 | /** @}
|
---|
[b45c443] | 235 | */
|
---|