1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
|
#include <apos/mem_nodes.h>
#include <apos/pmem.h>
#include <apos/dmem.h>
#include <apos/debug.h>
#include <apos/initrd.h>
#include <apos/string.h> /* memset */
#include <apos/bits.h> /* __is_nset etc */
#include <libfdt.h>
/* NOTE: these are all for pnum_t, i.e. O0_SHIFT is from 0 */
#define __foreach_page(var, start, end, attr, neg) \
for (size_t i = num_indexes(start); i < num_elems(end); ++i) \
if (var->attr[i] == (mm_info_t)(-1)) \
continue; \
else \
for (pnum_t page = i * MM_OINFO_WIDTH, j = 0; \
j < (pnum_t)MIN((end)-i * MM_OINFO_WIDTH, \
MM_OINFO_WIDTH); \
++j, ++page) \
if (neg(__is_nset(var->attr[i], j)))
#define NEG !
#define foreach_full_page(var, start, order) \
__foreach_page(var, start, var->entries, full, )
#define foreach_not_full_page(var, start, order) \
__foreach_page(var, start, var->entries, full, NEG)
#define foreach_used_page(var, start, order) \
__foreach_page(var, start, var->entries, used, )
#define foreach_not_used_page(var, start, order) \
__foreach_page(var, start, var->entries, used, NEG)
typedef uint32_t mm_info_t;
typedef void mm_node_t;
struct mm_leaf_t {
size_t entries;
mm_info_t *used;
};
struct mm_branch_t {
size_t entries;
mm_info_t *full;
mm_node_t **next;
};
struct mm_omap_t {
pm_t base;
mm_node_t **orders;
enum mm_order order;
};
struct mm_pmap_t {
struct mm_omap_t *omap[9];
};
static struct mm_pmap_t *pmap = 0;
static void __mark_free(mm_node_t *op, pnum_t pnum, enum mm_order tgt,
enum mm_order src, enum mm_order dst)
{
size_t idx = pnum_to_index(pnum, src);
if (src == dst) {
struct mm_leaf_t *o = (struct mm_leaf_t *)op;
__clear_nbit(o->used[__o_container(idx)], __o_bit(idx));
return;
}
struct mm_branch_t *o = (struct mm_branch_t *)op;
if (src != tgt)
__mark_free(o->next[idx], pnum, tgt, src - 1, dst);
/* freeing a page results in always clearing a full bit? */
__clear_nbit(o->full[__o_container(idx)], __o_bit(idx));
}
/* this could probably use an int for status, but eh */
void free_page(enum mm_order order, pm_t paddr)
{
for (size_t i = MM_O0; i <= __mm_max_order; ++i) {
if (!pmap->omap[i])
continue;
struct mm_omap_t *omap = pmap->omap[i];
if (paddr < omap->base)
continue;
for (size_t j = 0; j < omap->order; ++j)
__mark_free(omap->orders[j],
pm_to_pnum(paddr - omap->base), order,
omap->order, j);
return;
}
}
static bool __mark_used(mm_node_t *op, pnum_t pnum, enum mm_order tgt,
enum mm_order src, enum mm_order dst)
{
size_t idx = pnum_to_index(pnum, src);
if (src == dst) {
struct mm_leaf_t *o = (struct mm_leaf_t *)op;
__set_nbit(o->used[__o_container(idx)], __o_bit(idx));
if (idx == max_index(src))
return true;
return false;
}
struct mm_branch_t *o = (struct mm_branch_t *)op;
if (src == tgt) {
__set_nbit(o->full[__o_container(idx)], __o_bit(idx));
if (idx == max_index(src))
return true;
return false;
}
if (__mark_used(o->next[idx], pnum, tgt, src - 1, dst)) {
__set_nbit(o->full[__o_container(idx)], __o_bit(idx));
if (idx == max_index(src))
return true;
}
return false;
}
void mark_used(enum mm_order order, pm_t paddr)
{
for (size_t i = MM_O0; i <= __mm_max_order; ++i) {
if (!pmap->omap[i])
continue;
struct mm_omap_t *omap = pmap->omap[i];
if (paddr < omap->base)
continue;
for (size_t j = 0; j <= omap->order; ++j)
__mark_used(omap->orders[j],
pm_to_pnum(paddr - omap->base), order,
omap->order, j);
return;
}
}
static pnum_t __enum_order(mm_node_t *op, pnum_t offset, enum mm_order src,
enum mm_order dst)
{
size_t idx = pnum_to_index(offset, src);
if (src == dst) {
struct mm_leaf_t *o = (struct mm_leaf_t *)op;
foreach_not_used_page(o, idx, src)
{
return page << __o_offset(src);
}
return -1;
}
struct mm_branch_t *o = (struct mm_branch_t *)op;
foreach_not_full_page(o, idx, src)
{
/* if the suggested search index is full, the following level
* would get an incorrect offset if trying to follow the original
* suggestion. */
if (page != (pnum_t)idx)
offset = 0;
pnum_t ret = __enum_order(o->next[page], offset, src - 1, dst);
if (!(ret < 0))
return (page << __o_offset(src)) + ret;
}
return -1;
}
pm_t alloc_page(enum mm_order order, pm_t offset)
{
if (order > __mm_max_order)
return 0;
pnum_t pnum = -1;
pm_t base = 0;
struct mm_omap_t *omap;
for (size_t i = order; i <= __mm_max_order; ++i) {
if (!pmap->omap[i])
continue;
omap = pmap->omap[i];
if (offset != 0)
base = offset - omap->base;
pnum = __enum_order(omap->orders[order], pm_to_pnum(base),
omap->order, order);
if (!(pnum < 0))
break;
}
if (pnum < 0)
return 0;
pm_t paddr = pnum_to_paddr(pnum) + omap->base;
mark_used(order, paddr);
return paddr;
}
/* unfortunate that populating the mm info is so complicated */
static pm_t __populate_order(mm_node_t **op, pm_t cont, enum mm_order src,
enum mm_order dst, size_t num)
{
if (src == dst) {
struct mm_leaf_t *o = (struct mm_leaf_t *)move_forward(
cont, sizeof(struct mm_leaf_t));
o->entries = num;
o->used = (mm_info_t *)move_forward(cont, state_elems(num));
memset(o->used, 0, state_elems(num));
*op = (mm_node_t *)o;
return cont;
}
struct mm_branch_t *o = (struct mm_branch_t *)move_forward(
cont, sizeof(struct mm_branch_t));
o->entries = num;
o->full = (mm_info_t *)move_forward(cont, state_elems(num));
cont = align_up(cont, sizeof(void *));
o->next = (mm_node_t **)move_forward(cont, next_elems(num));
memset(o->full, 0, state_elems(num));
memset(o->next, 0, next_elems(num));
for (size_t i = 0; i < num; ++i) {
cont = __populate_order(&o->next[i], cont, src - 1, dst,
__o_width(src - 1));
}
*op = (mm_node_t *)o;
return cont;
}
static pm_t __probe_order(pm_t cont, enum mm_order src, enum mm_order dst,
size_t num)
{
if (src == dst) {
cont += sizeof(struct mm_leaf_t);
cont += state_elems(num);
return cont;
}
cont += sizeof(struct mm_branch_t);
cont += state_elems(num);
cont = align_up(cont, sizeof(void *));
cont += next_elems(num);
for (size_t i = 0; i < num; ++i)
cont = __probe_order(cont, src - 1, dst, __o_width(src - 1));
return cont;
}
static pm_t __populate_omap(struct mm_omap_t **omap, pm_t cont, pm_t base,
size_t entries, enum mm_order order)
{
struct mm_omap_t *lomap = (struct mm_omap_t *)move_forward(
cont, sizeof(struct mm_omap_t));
memset(lomap, 0, sizeof(struct mm_omap_t));
lomap->orders = (mm_node_t **)move_forward(
cont, (order + 1) * sizeof(mm_node_t **));
memset(lomap->orders, 0, (order + 1) * sizeof(mm_node_t **));
lomap->order = order;
lomap->base = base;
for (size_t i = 0; i <= order; ++i)
cont = __populate_order(&lomap->orders[i], cont, order, i,
entries);
*omap = lomap;
return cont;
}
static pm_t __probe_omap(pm_t cont, size_t entries, enum mm_order order)
{
cont += sizeof(struct mm_omap_t);
cont += (order + 1) * sizeof(mm_node_t **);
for (size_t i = 0; i <= order; ++i)
cont = __probe_order(cont, order, i, entries);
return cont;
}
/* only call from init */
pm_t populate_pmap(pm_t ram_base, size_t ram_size, pm_t cont)
{
pm_t start = cont;
pmap = (struct mm_pmap_t *)move_forward(cont, sizeof(struct mm_pmap_t));
memset(pmap, 0, sizeof(struct mm_pmap_t));
pm_t ram_region = ram_base;
size_t ram_left = ram_size;
for (ssize_t i = __mm_max_order; i >= MM_O0; --i) {
size_t entries = ram_left / __mm_sizes[i];
if (entries == 0)
continue;
cont = __populate_omap(&pmap->omap[i], cont, ram_region,
entries, i);
ram_left -= __mm_sizes[i] * entries;
ram_region += (__mm_sizes[i] * entries);
}
return cont - start;
}
/* not a huge fan of having a separate probe_pmap function as that seems like an
* easy way to cause weird bugs. Should always at least check that probe_pmap
* returns the same value as populate_pmap, or possibly even add in some method
* to combine the two? */
pm_t probe_pmap(pm_t ram_base, size_t ram_size)
{
pm_t cont = 0;
cont += sizeof(struct mm_pmap_t);
pm_t ram_region = ram_base;
size_t ram_left = ram_size;
for (ssize_t i = __mm_max_order; i >= MM_O0; --i) {
size_t entries = ram_left / __mm_sizes[i];
if (entries == 0)
continue;
cont = __probe_omap(cont, entries, i);
ram_left -= __mm_sizes[i] * entries;
ram_region += (__mm_sizes[i] * entries);
}
return cont;
}
static void __mark_area_used(pm_t base, pm_t top)
{
size_t area_left = top - base;
pm_t runner = base;
while (area_left >= BASE_PAGE_SIZE) {
mark_used(BASE_PAGE, runner);
runner += BASE_PAGE_SIZE;
area_left -= BASE_PAGE_SIZE;
}
if (area_left != 0)
mark_used(BASE_PAGE, runner);
}
static void __mark_reserved_mem(void *fdt)
{
int rmem_offset = fdt_path_offset(fdt, "/reserved-memory/mmode_resv0");
struct cell_info ci = get_reginfo(fdt, "/reserved-memory/mmode_resv0");
uint8_t *rmem_reg =
(uint8_t *)fdt_getprop(fdt, rmem_offset, "reg", NULL);
pm_t base = (pm_t)fdt_load_int_ptr(ci.addr_cells, rmem_reg);
if (ci.addr_cells == 2)
rmem_reg += sizeof(fdt64_t);
else
rmem_reg += sizeof(fdt32_t);
pm_t top = (pm_t)fdt_load_int_ptr(ci.size_cells, rmem_reg) + base;
__mark_area_used((pm_t)__va(base), (pm_t)__va(top));
}
static pm_t __get_ramtop(void *fdt)
{
struct cell_info ci = get_reginfo(fdt, "/memory");
int mem_offset = fdt_path_offset(fdt, "/memory");
uint8_t *mem_reg = (uint8_t *)fdt_getprop(fdt, mem_offset, "reg", NULL);
pm_t base = (pm_t)fdt_load_int_ptr(ci.addr_cells, mem_reg);
if (ci.addr_cells == 2)
mem_reg += sizeof(fdt64_t);
else
mem_reg += sizeof(fdt32_t);
return (pm_t)fdt_load_int_ptr(ci.size_cells, mem_reg) + base;
}
static pm_t __get_fdttop(void *fdt)
{
const char *b = (const char *)fdt;
return (pm_t)(b + fdt_totalsize(fdt));
}
static pm_t __get_fdtbase(void *fdt)
{
/* lol */
return (pm_t)fdt;
}
void init_pmem(void *fdt)
{
size_t max_order = 0;
size_t base_bits = 0;
size_t bits[NUM_ORDERS] = { 0 };
stat_pmem_conf(fdt, &max_order, &base_bits, bits);
init_mem(max_order, bits, base_bits);
pm_t ram_size = __get_ramtop(fdt) - RAM_BASE;
pm_t ram_base = (pm_t)__va(RAM_BASE);
pm_t initrd_top = get_initrdtop(fdt);
pm_t fdt_top = __get_fdttop(fdt);
/* find probably most suitable contiguous region of ram for our physical
* ram map */
pm_t pmap_base = align_up(MAX(initrd_top, fdt_top), sizeof(int));
size_t probe_size = probe_pmap(ram_base, ram_size);
size_t actual_size = populate_pmap(ram_base, ram_size, pmap_base);
if (probe_size != actual_size)
bug("probe_size (%#lx) != actual_size (%#lx)\n", probe_size,
actual_size);
/* mark init stack, this should be unmapped once we get to executing
* processes */
__mark_area_used((pm_t)__va(PM_STACK_BASE), (pm_t)__va(PM_STACK_TOP));
/* mark kernel */
/* this could be made more explicit, I suppose. */
__mark_area_used(VM_KERN, VM_KERN + PM_KERN_SIZE);
/* mark fdt and initrd */
__mark_area_used(get_initrdbase(fdt), initrd_top);
__mark_area_used(__get_fdtbase(fdt), fdt_top);
/* mark pmap */
__mark_area_used(pmap_base, pmap_base + actual_size);
/* mark reserved mem */
__mark_reserved_mem(fdt);
init_mem_blocks();
init_devmem((pm_t)__pa(ram_base), (pm_t)__pa(ram_base + ram_size));
}
|