Subversion Repositories HelenOS

Rev

Rev 3743 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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