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
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
|
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
/**
* @file pmem.c
* Physical memory subsystem. Allocates physical memory pages, with support for
* different ordered pages, depending on the underlying architecture.
*
* Quick overview of the physical memory subsystem: Somewhere in RAM there
* exists a number of buckets, each with an n-tree representing different order
* pages and their status (used/free). When a lower-order memory page (i.e.
* smaller) is allocated, it blocks allocation of higher-order pages (i.e.
* larger) whose addresses would overlap. This is avoided by marking all
* higher-order pages as used in their respective buckets.
*
* This approach is reasonably efficient at handling the different possible page
* sizes, but requires that the caller maintains some data about page sizes, as
* the algorithm doesn't keep any of that information. Allocating a region of a
* certain page order and freeing it as another could easily be a
* source of difficult to track bugs.
*
* \todo More in depth documentation about the physical memory algorithms,
* unfortunately it is quite difficult to follow.
*
* \todo See if there are improvements to be made, either to the implementation
* or code in general. Could I use bitmaps, for example, and maybe calculate the
* next pointer instead of storing it?
*/
#include <kmi/mem_nodes.h>
#include <kmi/pmem.h>
#include <kmi/dmem.h>
#include <kmi/debug.h>
#include <kmi/initrd.h>
#include <kmi/string.h> /* memset */
#include <kmi/bits.h> /* is_nset etc */
#include <libfdt.h>
/* \todo add memory page counting?
* To make sure memory is not overcommited at clone, for example.
*/
/**
* Beauty macro for looping over all page indexes.
* The current page index is stored in \c page.
*
* @param num Number of pages in branch.
*/
#define foreach_page(num) \
for (pm_t page = 0; page < num; ++page)
/**
* Loop over orders, giving the iterator the name \p iter.
*
* @param iter Name of iterator.
*/
#define foreach_order(iter) \
for (enum mm_order iter = MM_O0; iter <= max_order(); ++iter)
/**
* Loop over orders, with already initialized start iterator \p iter.
*
* @param iter Name of iterator.
*/
#define foreach_order_init(iter) \
for (; iter <= max_order(); ++iter)
/**
* Loop over orders in reverse, starting with highest, giving the iterator the
* name \p iter.
*
* @param iter Name of iterator.
*/
#define reverse_foreach_order(iter) \
for (enum mm_order iter = max_order(); iter != MM_MIN; --iter)
/**
* Loop over orders in reverse, starting with highest, with already initialized
* start iterator \p iter.
*
* @param iter Name of iterator.
*/
#define reverse_foreach_order_init(iter) \
for (; iter != MM_MIN; --iter)
/** Beauty typedef for uint8_t *, used for bitmaps in this file. */
typedef uint8_t mm_bitmap_t[];
/** Memory page branch. */
struct mm_branch {
/** Number of entries in leaf. */
size_t num;
/** Size of one whole span of one sub branch. */
size_t size;
/** Bitmap of used pages. */
mm_bitmap_t used;
};
/** Order map. */
struct mm_bucket {
/** Base address of map. */
pm_t base;
/** Order of map. */
enum mm_order order;
/** Pointer to array of nodes. */
struct mm_branch *tree[MM_NUM];
};
/** Physical map. */
struct mm_pmap {
/** Buckets, one per order up to maximum order. */
struct mm_bucket *bucket[NUM_ORDERS];
};
/** Static physical map address. \note If I support NUMA, this should not be
* static, rather one physical map per NUMA region. */
static struct mm_pmap *pmap = 0;
/**
* Calculate size of branch structure plus bitmap for branch.
*
* @param num Number of elements in branch.
* @return Size in bytes of a branch.
*/
static size_t sizeof_branch(size_t num)
{
return align_up(sizeof(struct mm_branch) + (num + 8) / 8,
sizeof(struct mm_branch));
}
/**
* Get top of current branch, that is, the start of a following branch.
*
* @param branch Branch whose top to calculate.
* @return Top of \p branch.
*/
static struct mm_branch *branch_top(struct mm_branch *branch)
{
return (struct mm_branch *)(sizeof_branch(branch->num) + (pm_t)branch);
}
/**
* Get the branch under \p branch at \p index.
*
* @param branch Branch whose sub branches to access.
* @param index Index of sub branch to access.
* @return Pointer to sub branch.
*/
static struct mm_branch *sub_branch(struct mm_branch *branch, size_t index)
{
struct mm_branch *sub_start = branch_top(branch);
return (struct mm_branch *)(index * branch->size + (pm_t)sub_start);
}
/**
* Mark a page free in tree.
*
* @param branch Branch wherein some part of \p page lies.
* @param page Page address relative to start of RAM.
* @param req_order Order of page to be marked free.
* @param cur_order Current page order.
* @param tree_order Order context we're in.
*/
static void __mark_free(struct mm_branch *branch, pm_t page,
enum mm_order req_order,
enum mm_order cur_order,
enum mm_order tree_order)
{
size_t idx = pm_to_index(page, cur_order);
if (cur_order == req_order) {
bitmap_clear(branch->used, idx);
return;
}
/* freeing a page results in always clearing a full bit */
bitmap_clear(branch->used, idx);
if(cur_order != tree_order)
__mark_free(sub_branch(branch, idx), page,
req_order, cur_order - 1, tree_order);
}
/**
* Mark page in bucket free in all trees.
*
* @param bucket Bucket page lies in.
* @param order Order of page to free.
* @param addr Physical address of page.
*/
static void __mark_bucket_page_free(struct mm_bucket *bucket,
enum mm_order order, pm_t addr)
{
pm_t fixup_addr = addr - bucket->base;
enum mm_order iter = bucket->order;
reverse_foreach_order_init(iter) {
struct mm_branch *tree = bucket->tree[iter];
if (!tree)
continue;
__mark_free(bucket->tree[iter], fixup_addr,
order, bucket->order, iter);
}
}
void free_page(enum mm_order order, pm_t addr)
{
foreach_order(iter) {
struct mm_bucket *bucket = pmap->bucket[iter];
if (!bucket)
continue;
if (addr < bucket->base)
continue;
__mark_bucket_page_free(bucket, order, addr);
return;
}
}
/**
* Mark page used in tree.
*
* @param branch Current branch.
* @param page Page address relative to start of RAM.
* @param req_order Page order.
* @param cur_order Current order.
* @param tree_order Order of context we're in.
* @return Whether the branch below got filled up.
*/
static bool __mark_used(struct mm_branch *branch, pm_t page,
enum mm_order req_order,
enum mm_order cur_order,
enum mm_order tree_order)
{
size_t idx = pm_to_index(page, cur_order);
if (cur_order == req_order || cur_order == tree_order) {
bitmap_set(branch->used, idx);
if (idx == max_index(cur_order))
return true;
return false;
}
bool r = __mark_used(sub_branch(branch, idx), page,
req_order,
cur_order - 1,
tree_order);
if (r) {
bitmap_set(branch->used, idx);
if (idx == max_index(cur_order))
return true;
}
return false;
}
/**
* Mark page in bucket used.
*
* @param bucket Bucket in which \p page lies.
* @param order Order of \p page.
* @param addr Physical address of \p page.
*/
static void __mark_bucket_page_used(struct mm_bucket *bucket,
enum mm_order order, pm_t addr)
{
pm_t fixed_addr = addr - bucket->base;
reverse_foreach_order(iter) {
struct mm_branch *tree = bucket->tree[iter];
if (!tree)
continue;
__mark_used(bucket->tree[iter], fixed_addr,
order, bucket->order, iter);
}
}
void mark_used(enum mm_order order, pm_t addr)
{
enum mm_order iter = order;
foreach_order_init(iter) {
struct mm_bucket *bucket = pmap->bucket[iter];
if (!bucket)
continue;
if (addr < bucket->base)
continue;
__mark_bucket_page_used(bucket, iter, addr);
return;
}
}
/**
* Find first unused page on branch.
* Helper for converting between bitmap and pmem error conditions.
*
* @param branch Branch to look for unused pages on.
* @return \c -1 if there are no free pages, otherwise the index of first unused
* page.
*/
static pm_t __branch_find_first_unset(struct mm_branch *branch)
{
size_t r = bitmap_find_first_unset(branch->used, branch->num);
if (r > branch->num)
return -1;
return r;
}
/**
* Main worker for searching a free page.
* Passing the address worked up so far allows the compiler to performa
* tail call optimization, speeding things up a little.
*
* @param branch Current branch.
* @param cur_order Current order of branch.
* @param req_order Requested page order.
* @param addr Address built up so far.
* @return Final address of found free page if found, -1 otherwise.
*/
static pm_t __search_branch(struct mm_branch *branch,
enum mm_order cur_order,
enum mm_order req_order,
pm_t addr)
{
pm_t page = __branch_find_first_unset(branch);
if (page == (pm_t)(-1))
return -1;
if (cur_order == req_order)
return addr | page << order_shift(cur_order);
return __search_branch(sub_branch(branch, page),
cur_order - 1, req_order,
addr | page << order_shift(cur_order));
}
/**
* Search for unused pages in tree.
* Easy wrapper for __search_branch.
*
* @param branch Current branch.
* @param cur_order Current order of branch.
* @param req_order Requested page order.
* @return \c -1 if there are no free pages, otherwise the address of the lower
* order page found.
*/
static pm_t __search_tree(struct mm_branch *branch,
enum mm_order cur_order,
enum mm_order req_order)
{
return __search_branch(branch, cur_order, req_order, 0);
}
pm_t alloc_page(enum mm_order order)
{
if (order > max_order())
return 0;
pm_t p = -1;
struct mm_bucket *bucket;
enum mm_order iter = order;
foreach_order_init(iter) {
bucket = pmap->bucket[iter];
if (!bucket)
continue;
p = __search_tree(bucket->tree[order], bucket->order, order);
if (p != (pm_t)(-1))
break;
}
if (p == (pm_t)(-1))
return 0;
p = p + bucket->base;
__mark_bucket_page_used(bucket, order, p);
return p;
}
/**
* Zero out memory at \p cont if \p populate.
*
* @param populate Whether to populate at \p cont.
* @param cont Where to zero out memory.
* @param size How many bytes to zero.
* @return \code cont + size \endcode
*/
static pm_t __zero_if(bool populate, pm_t cont, size_t size)
{
if (populate)
memset((void *)cont, 0, size);
return cont + size;
}
/**
* Populate tree.
*
* @param populate Whether to populate map or just probe.
* @param cont Address at which to continue placing data.
* @param num Number of elements in branch.
* @param cur_order Current branch order.
* @param req_order Requested tree order.
* @return Top of tree.
*/
static pm_t __populate_tree(bool populate, pm_t cont, size_t num,
enum mm_order cur_order, enum mm_order req_order)
{
struct mm_branch *branch = (struct mm_branch *)cont;
cont = __zero_if(populate, cont, sizeof_branch(num));
if (populate)
branch->num = num;
if (cur_order == req_order)
return cont;
pm_t prev = cont;
foreach_page(num) {
prev = cont;
cont = __populate_tree(populate, cont,
order_width(cur_order - 1),
cur_order - 1, req_order);
}
if (populate)
branch->size = cont - prev;
return cont;
}
/**
* Populate bucket.
*
* @param populate Whether to actually populate or just probe.
* @param cont Address at which to continue placing data.
* @param base Base of bucket.
* @param num Number of elements in top level trees.
* @param order Bucket order.
* @return Top of bucket.
*/
static pm_t __populate_bucket(bool populate, pm_t cont, pm_t base, size_t num,
enum mm_order order)
{
struct mm_bucket *bucket = (struct mm_bucket *)cont;
cont = __zero_if(populate, cont, sizeof(*bucket));
if (populate) {
bucket->order = order;
bucket->base = base;
}
enum mm_order iter = order;
reverse_foreach_order_init(iter) {
if (populate)
bucket->tree[iter] = (struct mm_branch *)cont;
cont = __populate_tree(populate, cont, num, order, iter);
}
return cont;
}
/**
* Main worker for populating and probing the memory map.
*
* @param populate Whether to populate the map of just probe.
* @param ram_base Base physical address of RAM.
* @param ram_size Size of physical RAM.
* @param cont Where to place the map.
* @return Size of physical map.
*/
static size_t __populate_pmap(bool populate, pm_t ram_base, size_t ram_size,
pm_t cont)
{
pm_t start = cont;
pmap = (struct mm_pmap *)cont;
cont = __zero_if(populate, cont, sizeof(*pmap));
reverse_foreach_order(iter) {
size_t num = ram_size / order_size(iter);
if (num == 0)
continue;
if (populate)
pmap->bucket[iter] = (struct mm_bucket *)cont;
cont = __populate_bucket(populate, cont, ram_base, num, iter);
ram_size -= order_size(iter) * num;
ram_base += order_size(iter) * num;
}
return cont - start;
}
size_t populate_pmap(pm_t ram_base, size_t ram_size, pm_t cont)
{
return __populate_pmap(true, ram_base, ram_size, cont);
}
size_t probe_pmap(pm_t ram_base, size_t ram_size, pm_t cont)
{
return __populate_pmap(false, ram_base, ram_size, cont);
}
/**
* Helper function for marking area used.
*
* @param base Base address of area.
* @param top Top address of top.
*/
static void __mark_area_used(pm_t base, pm_t top)
{
if (top < base) {
bug("top < base: %lx < %lx\n", top, base);
return;
}
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);
}
/**
* Mark reserved memory region used, to avoid it getting accidentally allocated.
*
* @param fdt Global FDT pointer.
*/
static void __mark_reserved_mem(void *fdt)
{
int rmem_offset = fdt_path_offset(fdt, "/reserved-memory");
struct cell_info ci = get_reginfo(fdt, "/reserved-memory");
int node = 0;
fdt_for_each_subnode(node, fdt, rmem_offset) {
uint8_t *rmem_reg =
(uint8_t *)fdt_getprop(fdt, node, "reg", NULL);
pm_t base = (pm_t)fdt_load_reg_addr(ci, rmem_reg, 0);
/** @todo make sure the top of a reserved memory area doesn't go
* against our assumptions in FW_MAX_SIZE? */
pm_t top = (pm_t)fdt_load_reg_size(ci, rmem_reg, 0) + base;
__mark_area_used((pm_t)__va(base), (pm_t)__va(top));
info("marked [%lx - %lx] reserved\n",
(pm_t)__va(base), (pm_t)__va(top));
}
}
/**
* Read top of RAM from FDT.
*
* @param fdt Global FDT pointer.
* @return Physical address of top of RAM.
*/
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_reg_addr(ci, mem_reg, 0);
return (pm_t)fdt_load_reg_size(ci, mem_reg, 0) + base;
}
/**
* Read top of FDT.
*
* @param fdt Global FDT pointer.
* @return Physical address of top of FDT.
*/
static pm_t __get_fdttop(void *fdt)
{
const char *b = (const char *)fdt;
return (pm_t)(b + fdt_totalsize(fdt));
}
/**
* Return base of FDT.
*
* Technically pretty useless, but here mainly for cohesion.
*
* @param fdt Global FDT pointer.
* @return \c fdt.
*/
static pm_t __get_fdtbase(void *fdt)
{
/* lol */
return (pm_t)fdt;
}
void init_pmem(void *fdt)
{
/** @todo should I keep the info outputs? I suppose it's nice to see
* if any assumption is being broken in the serial log, but in that case
* I should really try adding more of them to other parts of the
* codebase as well, the pmem subsystem isn't really especially complex.
*/
info("initializing pmem\n");
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) - get_ram_base();
pm_t ram_base = (pm_t)__va(get_ram_base());
info("using ram range [%lx - %lx]\n",
ram_base, ram_base + ram_size);
/** @todo could probably improve error messages on failing to get fdt
* values */
pm_t initrd_base = get_initrdbase(fdt);
pm_t initrd_top = get_initrdtop(fdt);
info("found initrd at [%lx - %lx]\n", initrd_base, initrd_top);
pm_t fdt_top = __get_fdttop(fdt);
pm_t fdt_base = __get_fdtbase(fdt);
info("found fdt at [%lx - %lx]\n", fdt_base, fdt_top);
/* find probably most suitable contiguous region of ram for our physical
* ram map */
/** @todo this could be better? */
pm_t pmap_base = align_up(MAX(initrd_top, fdt_top), sizeof(int));
info("choosing to place pmem map at %lx\n", pmap_base);
size_t probe_size = probe_pmap(ram_base, ram_size, pmap_base);
info("pmem map probe size returned %lu\n", probe_size);
size_t actual_size = populate_pmap(ram_base, ram_size, pmap_base);
info("pmem map actual size %lu\n", actual_size);
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(VM_STACK_BASE, VM_STACK_TOP);
info("marked stack [%lx - %lx] used\n", VM_STACK_BASE, VM_STACK_TOP);
/* mark kernel */
/* this could be made more explicit, I suppose. */
__mark_area_used(VM_KERN, VM_KERN + PM_KERN_SIZE);
info("marked kernel [%lx - %lx] used\n", VM_KERN,
VM_KERN + PM_KERN_SIZE);
/* mark fdt and initrd */
__mark_area_used(initrd_base, initrd_top);
info("marked initrd [%lx - %lx] used\n", initrd_base, initrd_top);
__mark_area_used(fdt_base, fdt_top);
info("marked fdt [%lx - %lx] used\n", fdt_base, fdt_top);
/* mark pmap */
__mark_area_used(pmap_base, pmap_base + actual_size);
info("marked pmap [%lx - %lx] used\n", pmap_base,
pmap_base + actual_size);
/* mark reserved mem */
__mark_reserved_mem(fdt);
init_mem_nodes();
init_devmem((pm_t)__pa(ram_base), (pm_t)__pa(ram_base + ram_size));
}
|