forked from lolo859/vystem
26 lines
1.3 KiB
Markdown
26 lines
1.3 KiB
Markdown
# Memory subsystem
|
|
|
|
## Introduction
|
|
|
|
The memory subsystem is responsible for handling tasks like physical pages allocations, virtual memory management, initial memory map analysis, pages mapping and unmapping and kernel heap management. Please note that, unless used with `sh_malloc` or `sh_free`, no object or function described in this subsystem is thread safe.
|
|
|
|
## Summary
|
|
|
|
1) [Page subsystem](page.md)
|
|
2) [Virtual memory layout](vmemlayout.md)
|
|
3) [Ring buffer](ring.md)
|
|
4) [Pages block allocator](pba.md)
|
|
5) [Slabs allocator](slabs.md)
|
|
6) [Radix trees subsystem](radix.md)
|
|
7) [Pez plane manager](pez.md)
|
|
8) [Kernel heap manager](heap.md)
|
|
|
|
## Memory subsystem
|
|
|
|
The memory subsystem is defined into `shelter/lib/include/memory/memory.h` and implemented into `shelter/lib/include/memory/memory.c`.
|
|
|
|
The entire memory subsystem is initialized with the `sh_memory_init_subsystem()` function. This function produces a `sh_memory_MEMORY_SERVICES` struct, which is stored in the main file and contains all the elements necessary for the memory subsystem initialization.
|
|
|
|
The memory subsystem also provides some higher level functions:
|
|
- `sh_memory_identity_map(sh_page_PHYSICAL_ADDRESS phys_start,sh_uint64 page_count,sh_uint64 flags)`: identity map a range of physical pages into the page table of the booting kernel. It is not thread safe.
|