[f761f1eb] | 1 | /*
|
---|
| 2 | * Copyright (C) 2001-2004 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 | #include <arch/types.h>
|
---|
| 30 | #include <func.h>
|
---|
| 31 |
|
---|
| 32 | #include <mm/heap.h>
|
---|
| 33 | #include <mm/frame.h>
|
---|
| 34 | #include <mm/page.h>
|
---|
| 35 | #include <mm/vm.h>
|
---|
| 36 | #include <arch/mm/page.h>
|
---|
| 37 |
|
---|
| 38 | #include <config.h>
|
---|
| 39 | #include <memstr.h>
|
---|
| 40 |
|
---|
| 41 | #include <panic.h>
|
---|
| 42 |
|
---|
| 43 | #include <synch/spinlock.h>
|
---|
| 44 |
|
---|
[18e0a6c] | 45 | #include <arch/asm.h>
|
---|
| 46 |
|
---|
[2b50d7c] | 47 | count_t frames = 0;
|
---|
| 48 | count_t frames_free;
|
---|
[f761f1eb] | 49 |
|
---|
| 50 | __u8 *frame_bitmap;
|
---|
[2b50d7c] | 51 | count_t frame_bitmap_octets;
|
---|
[f761f1eb] | 52 |
|
---|
| 53 | static spinlock_t framelock;
|
---|
| 54 |
|
---|
| 55 | void frame_init(void)
|
---|
| 56 | {
|
---|
| 57 | if (config.cpu_active == 1) {
|
---|
| 58 |
|
---|
| 59 | /*
|
---|
| 60 | * The bootstrap processor will allocate all necessary memory for frame allocation.
|
---|
| 61 | */
|
---|
| 62 |
|
---|
| 63 | frames = config.memory_size / FRAME_SIZE;
|
---|
| 64 | frame_bitmap_octets = frames / 8 + (frames % 8 > 0);
|
---|
| 65 | frame_bitmap = (__u8 *) malloc(frame_bitmap_octets);
|
---|
| 66 | if (!frame_bitmap)
|
---|
[02a99d2] | 67 | panic("malloc/frame_bitmap\n");
|
---|
[f761f1eb] | 68 |
|
---|
| 69 | /*
|
---|
| 70 | * Mark all frames free.
|
---|
| 71 | */
|
---|
| 72 | memsetb((__address) frame_bitmap, frame_bitmap_octets, 0);
|
---|
| 73 | frames_free = frames;
|
---|
| 74 | }
|
---|
| 75 |
|
---|
| 76 | /*
|
---|
[a7a10630] | 77 | * No frame allocations/reservations prior this point.
|
---|
[f761f1eb] | 78 | */
|
---|
| 79 |
|
---|
| 80 | frame_arch_init();
|
---|
| 81 |
|
---|
| 82 | if (config.cpu_active == 1) {
|
---|
| 83 | /*
|
---|
| 84 | * Create the memory address space map. Marked frames and frame
|
---|
| 85 | * regions cannot be used for allocation.
|
---|
| 86 | */
|
---|
| 87 | frame_region_not_free(config.base, config.base + config.kernel_size);
|
---|
| 88 | }
|
---|
| 89 | }
|
---|
| 90 |
|
---|
| 91 | /*
|
---|
| 92 | * Allocate a frame.
|
---|
| 93 | */
|
---|
| 94 | __address frame_alloc(int flags)
|
---|
| 95 | {
|
---|
| 96 | int i;
|
---|
| 97 | pri_t pri;
|
---|
| 98 |
|
---|
| 99 | loop:
|
---|
| 100 | pri = cpu_priority_high();
|
---|
| 101 | spinlock_lock(&framelock);
|
---|
[a7a10630] | 102 | if (frames_free) {
|
---|
| 103 | for (i=0; i < frames; i++) {
|
---|
[f761f1eb] | 104 | int m, n;
|
---|
| 105 |
|
---|
| 106 | m = i / 8;
|
---|
| 107 | n = i % 8;
|
---|
| 108 |
|
---|
[a7a10630] | 109 | if ((frame_bitmap[m] & (1<<n)) == 0) {
|
---|
| 110 | frame_bitmap[m] |= (1<<n);
|
---|
| 111 | frames_free--;
|
---|
[f761f1eb] | 112 | spinlock_unlock(&framelock);
|
---|
| 113 | cpu_priority_restore(pri);
|
---|
| 114 | if (flags & FRAME_KA) return PA2KA(i*FRAME_SIZE);
|
---|
| 115 | return i*FRAME_SIZE;
|
---|
| 116 | }
|
---|
| 117 | }
|
---|
[02a99d2] | 118 | panic("frames_free inconsistent (%d)\n", frames_free);
|
---|
[f761f1eb] | 119 | }
|
---|
| 120 | spinlock_unlock(&framelock);
|
---|
| 121 | cpu_priority_restore(pri);
|
---|
| 122 |
|
---|
| 123 | if (flags & FRAME_PANIC)
|
---|
[02a99d2] | 124 | panic("unable to allocate frame\n");
|
---|
[f761f1eb] | 125 |
|
---|
| 126 | /* TODO: implement sleeping logic here */
|
---|
[02a99d2] | 127 | panic("sleep not supported\n");
|
---|
[f761f1eb] | 128 |
|
---|
| 129 | goto loop;
|
---|
| 130 | }
|
---|
| 131 |
|
---|
| 132 | /*
|
---|
| 133 | * Free a frame.
|
---|
| 134 | */
|
---|
| 135 | void frame_free(__address addr)
|
---|
| 136 | {
|
---|
| 137 | pri_t pri;
|
---|
| 138 | __u32 frame;
|
---|
| 139 |
|
---|
| 140 | pri = cpu_priority_high();
|
---|
| 141 | spinlock_lock(&framelock);
|
---|
| 142 |
|
---|
| 143 | frame = IS_KA(addr) ? KA2PA(addr) : addr;
|
---|
| 144 | frame /= FRAME_SIZE;
|
---|
[a7a10630] | 145 | if (frame < frames) {
|
---|
[f761f1eb] | 146 | int m, n;
|
---|
| 147 |
|
---|
| 148 | m = frame / 8;
|
---|
| 149 | n = frame % 8;
|
---|
| 150 |
|
---|
[a7a10630] | 151 | if (frame_bitmap[m] & (1<<n)) {
|
---|
| 152 | frame_bitmap[m] &= ~(1<<n);
|
---|
| 153 | frames_free++;
|
---|
[f761f1eb] | 154 | }
|
---|
[2b50d7c] | 155 | else panic("frame already free\n");
|
---|
[f761f1eb] | 156 | }
|
---|
[2b50d7c] | 157 | else panic("frame number too big\n");
|
---|
[f761f1eb] | 158 |
|
---|
| 159 | spinlock_unlock(&framelock);
|
---|
| 160 | cpu_priority_restore(pri);
|
---|
| 161 | }
|
---|
| 162 |
|
---|
| 163 | /*
|
---|
| 164 | * Don't use this function for normal allocation. Use frame_alloc() instead.
|
---|
| 165 | * Use this function to declare that some special frame is not free.
|
---|
| 166 | */
|
---|
| 167 | void frame_not_free(__address addr)
|
---|
| 168 | {
|
---|
| 169 | pri_t pri;
|
---|
| 170 | __u32 frame;
|
---|
| 171 |
|
---|
| 172 | pri = cpu_priority_high();
|
---|
| 173 | spinlock_lock(&framelock);
|
---|
| 174 | frame = IS_KA(addr) ? KA2PA(addr) : addr;
|
---|
| 175 | frame /= FRAME_SIZE;
|
---|
[a7a10630] | 176 | if (frame < frames) {
|
---|
[f761f1eb] | 177 | int m, n;
|
---|
| 178 |
|
---|
| 179 | m = frame / 8;
|
---|
| 180 | n = frame % 8;
|
---|
| 181 |
|
---|
[a7a10630] | 182 | if ((frame_bitmap[m] & (1<<n)) == 0) {
|
---|
| 183 | frame_bitmap[m] |= (1<<n);
|
---|
| 184 | frames_free--;
|
---|
[f761f1eb] | 185 | }
|
---|
| 186 | }
|
---|
| 187 | spinlock_unlock(&framelock);
|
---|
| 188 | cpu_priority_restore(pri);
|
---|
| 189 | }
|
---|
| 190 |
|
---|
| 191 | void frame_region_not_free(__address start, __address stop)
|
---|
| 192 | {
|
---|
| 193 | __u32 i;
|
---|
| 194 |
|
---|
| 195 | start /= FRAME_SIZE;
|
---|
| 196 | stop /= FRAME_SIZE;
|
---|
| 197 | for (i = start; i <= stop; i++)
|
---|
| 198 | frame_not_free(i * FRAME_SIZE);
|
---|
| 199 | }
|
---|