Subversion Repositories HelenOS

Rev

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

Rev Author Line No. Line
1 jermar 1
/*
2071 jermar 2
 * Copyright (c) 2005 Jakub Jermar
1 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
 
3966 decky 29
/** @addtogroup mips32mm
1702 cejka 30
 * @{
31
 */
32
/** @file
33
 */
34
 
3228 decky 35
#include <macros.h>
1 jermar 36
#include <arch/mm/frame.h>
3228 decky 37
#include <arch/mm/tlb.h>
3230 decky 38
#include <interrupt.h>
1 jermar 39
#include <mm/frame.h>
3228 decky 40
#include <mm/asid.h>
368 jermar 41
#include <config.h>
3228 decky 42
#include <arch/drivers/msim.h>
43
#include <arch/drivers/serial.h>
44
#include <print.h>
1 jermar 45
 
3231 decky 46
#define ZERO_PAGE_MASK      TLB_PAGE_MASK_256K
3236 decky 47
#define ZERO_FRAMES         2048
3231 decky 48
#define ZERO_PAGE_WIDTH     18  /* 256K */
3228 decky 49
#define ZERO_PAGE_SIZE      (1 << ZERO_PAGE_WIDTH)
50
#define ZERO_PAGE_ASID      ASID_INVALID
51
#define ZERO_PAGE_TLBI      0
52
#define ZERO_PAGE_ADDR      0
53
#define ZERO_PAGE_OFFSET    (ZERO_PAGE_SIZE / sizeof(uint32_t) - 1)
3230 decky 54
#define ZERO_PAGE_VALUE     (((volatile uint32_t *) ZERO_PAGE_ADDR)[ZERO_PAGE_OFFSET])
3228 decky 55
 
3236 decky 56
#define ZERO_PAGE_VALUE_KSEG1(frame) (((volatile uint32_t *) (0xa0000000 + (frame << ZERO_PAGE_WIDTH)))[ZERO_PAGE_OFFSET])
57
 
3228 decky 58
#define MAX_REGIONS         32
59
 
60
typedef struct {
61
    pfn_t start;
62
    pfn_t count;
63
} phys_region_t;
64
 
65
static count_t phys_regions_count = 0;
66
static phys_region_t phys_regions[MAX_REGIONS];
67
 
3908 decky 68
uintptr_t end_frame = 0;
3228 decky 69
 
3908 decky 70
 
3228 decky 71
/** Check whether frame is available
72
 *
73
 * Returns true if given frame is generally available for use.
74
 * Returns false if given frame is used for physical memory
75
 * mapped devices and cannot be used.
76
 *
77
 */
78
static bool frame_available(pfn_t frame)
79
{
3910 decky 80
#ifdef MACHINE_msim
3228 decky 81
    /* MSIM device (dprinter) */
82
    if (frame == (KA2PA(MSIM_VIDEORAM) >> ZERO_PAGE_WIDTH))
83
        return false;
84
 
85
    /* MSIM device (dkeyboard) */
86
    if (frame == (KA2PA(MSIM_KBD_ADDRESS) >> ZERO_PAGE_WIDTH))
87
        return false;
3236 decky 88
#endif
89
 
3910 decky 90
#ifdef MACHINE_simics
3228 decky 91
    /* Simics device (serial line) */
92
    if (frame == (KA2PA(SERIAL_ADDRESS) >> ZERO_PAGE_WIDTH))
93
        return false;
3236 decky 94
#endif
95
 
3910 decky 96
#if defined(MACHINE_lgxemul) || defined(MACHINE_bgxemul)
3236 decky 97
    /* gxemul devices */
98
    if (overlaps(frame << ZERO_PAGE_WIDTH, ZERO_PAGE_SIZE,
99
        0x10000000, MB2SIZE(256)))
100
        return false;
101
#endif
3228 decky 102
 
103
    return true;
104
}
105
 
106
 
107
/** Check whether frame is safe to write
108
 *
109
 * Returns true if given frame is safe for read/write test.
110
 * Returns false if given frame should not be touched.
111
 *
112
 */
113
static bool frame_safe(pfn_t frame)
114
{
115
    /* Kernel structures */
116
    if ((frame << ZERO_PAGE_WIDTH) < KA2PA(config.base))
117
        return false;
118
 
119
    /* Kernel */
120
    if (overlaps(frame << ZERO_PAGE_WIDTH, ZERO_PAGE_SIZE,
121
        KA2PA(config.base), config.kernel_size))
122
        return false;
123
 
124
    /* Kernel stack */
125
    if (overlaps(frame << ZERO_PAGE_WIDTH, ZERO_PAGE_SIZE,
126
        KA2PA(config.stack_base), config.stack_size))
127
        return false;
128
 
129
    /* Init tasks */
130
    bool safe = true;
131
    count_t i;
132
    for (i = 0; i < init.cnt; i++)
133
        if (overlaps(frame << ZERO_PAGE_WIDTH, ZERO_PAGE_SIZE,
134
            KA2PA(init.tasks[i].addr), init.tasks[i].size)) {
135
            safe = false;
136
            break;
137
        }
138
 
139
    return safe;
140
}
141
 
142
static void frame_add_region(pfn_t start_frame, pfn_t end_frame)
143
{
144
    if (end_frame > start_frame) {
145
        /* Convert 1M frames to 16K frames */
146
        pfn_t first = ADDR2PFN(start_frame << ZERO_PAGE_WIDTH);
3230 decky 147
        pfn_t count = ADDR2PFN((end_frame - start_frame) << ZERO_PAGE_WIDTH);
3228 decky 148
 
149
        /* Interrupt vector frame is blacklisted */
150
        pfn_t conf_frame;
3232 decky 151
        if (first == 0)
3228 decky 152
            conf_frame = 1;
153
        else
154
            conf_frame = first;
155
 
3966 decky 156
        while (1);
3228 decky 157
        zone_create(first, count, conf_frame, 0);
158
 
159
        if (phys_regions_count < MAX_REGIONS) {
160
            phys_regions[phys_regions_count].start = first;
161
            phys_regions[phys_regions_count].count = count;
162
            phys_regions_count++;
163
        }
164
    }
165
}
166
 
167
 
573 palkovsky 168
/** Create memory zones
169
 *
3232 decky 170
 * Walk through available 256 KB chunks of physical
3228 decky 171
 * memory and create zones.
172
 *
3230 decky 173
 * Note: It is assumed that the TLB is not yet being
174
 * used in any way, thus there is no interference.
175
 *
573 palkovsky 176
 */
1 jermar 177
void frame_arch_init(void)
178
{
3230 decky 179
    ipl_t ipl = interrupts_disable();
3228 decky 180
 
3230 decky 181
    /* Clear and initialize TLB */
182
    cp0_pagemask_write(ZERO_PAGE_MASK);
183
    cp0_entry_lo0_write(0);
184
    cp0_entry_lo1_write(0);
185
    cp0_entry_hi_write(0);
186
 
187
    count_t i;
188
    for (i = 0; i < TLB_ENTRY_COUNT; i++) {
189
        cp0_index_write(i);
190
        tlbwi();
191
    }
3228 decky 192
 
193
    pfn_t start_frame = 0;
194
    pfn_t frame;
195
    bool avail = true;
196
 
197
    /* Walk through all 1 MB frames */
198
    for (frame = 0; frame < ZERO_FRAMES; frame++) {
199
        if (!frame_available(frame))
200
            avail = false;
201
        else {
202
            if (frame_safe(frame)) {
203
                entry_lo_t lo0;
204
                entry_lo_t lo1;
205
                entry_hi_t hi;
206
                tlb_prepare_entry_lo(&lo0, false, true, true, false, frame << (ZERO_PAGE_WIDTH - 12));
207
                tlb_prepare_entry_lo(&lo1, false, false, false, false, 0);
208
                tlb_prepare_entry_hi(&hi, ZERO_PAGE_ASID, ZERO_PAGE_ADDR);
209
 
3230 decky 210
                cp0_pagemask_write(ZERO_PAGE_MASK);
3228 decky 211
                cp0_entry_lo0_write(lo0.value);
212
                cp0_entry_lo1_write(lo1.value);
213
                cp0_entry_hi_write(hi.value);
3230 decky 214
                cp0_index_write(ZERO_PAGE_TLBI);
3228 decky 215
                tlbwi();
216
 
217
                ZERO_PAGE_VALUE = 0;
218
                if (ZERO_PAGE_VALUE != 0)
219
                    avail = false;
220
                else {
221
                    ZERO_PAGE_VALUE = 0xdeadbeef;
222
                    if (ZERO_PAGE_VALUE != 0xdeadbeef)
223
                        avail = false;
3966 decky 224
#if defined(MACHINE_lgxemul) || defined(MACHINE_bgxemul)
3236 decky 225
                    else {
226
                        ZERO_PAGE_VALUE_KSEG1(frame) = 0xaabbccdd;
227
                        if (ZERO_PAGE_VALUE_KSEG1(frame) != 0xaabbccdd)
228
                            avail = false;
229
                    }
230
#endif
3228 decky 231
                }
232
            }
233
        }
234
 
235
        if (!avail) {
236
            frame_add_region(start_frame, frame);
237
            start_frame = frame + 1;
238
            avail = true;
239
        }
814 palkovsky 240
    }
3228 decky 241
 
3908 decky 242
    end_frame = frame;
3228 decky 243
 
3908 decky 244
    frame_add_region(start_frame, end_frame);
245
 
3230 decky 246
    /* Blacklist interrupt vector frame */
247
    frame_mark_unavailable(0, 1);
248
 
249
    /* Cleanup */
250
    cp0_pagemask_write(ZERO_PAGE_MASK);
251
    cp0_entry_lo0_write(0);
252
    cp0_entry_lo1_write(0);
253
    cp0_entry_hi_write(0);
3228 decky 254
    cp0_index_write(ZERO_PAGE_TLBI);
255
    tlbwi();
256
 
3230 decky 257
    interrupts_restore(ipl);
1 jermar 258
}
1702 cejka 259
 
3228 decky 260
 
261
void physmem_print(void)
262
{
263
    printf("Base       Size\n");
264
    printf("---------- ----------\n");
265
 
266
    count_t i;
267
    for (i = 0; i < phys_regions_count; i++) {
3231 decky 268
        printf("%#010x %10u\n",
3228 decky 269
            PFN2ADDR(phys_regions[i].start), PFN2ADDR(phys_regions[i].count));
270
    }  
271
}
272
 
1776 jermar 273
/** @}
1702 cejka 274
 */