source: mainline/kernel/arch/sparc64/src/mm/sun4u/as.c@ 3abfe9a8

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 3abfe9a8 was cb4f078, checked in by Martin Decky <martin@…>, 15 years ago

unify kernel byte string implementations

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