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

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

new physical memory allocator supporting physical address constrains
the buddy allocator framework is retired and replaced by a two-level bitmap
the allocator can allocate an arbitrary number of frames, not only a power-of-two count

Caution: Change of semantics
The physical memory allocator no longer allocates naturally aligned blocks. If you require an aligned block, specify it as the constraint.

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