mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 00:14:32 -08:00
In order to reduce the amount of tracked state, now use the vm_area_buffers instead of a VMA with buffer_cache on top.
75 lines
2.3 KiB
C++
75 lines
2.3 KiB
C++
#pragma once
|
|
/// \file kernel_memory.h
|
|
/// Constants related to the kernel's memory layout
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
namespace memory {
|
|
|
|
/// Size of a single page frame.
|
|
constexpr size_t frame_size = 0x1000;
|
|
|
|
/// Start of kernel memory.
|
|
constexpr uintptr_t kernel_offset = 0xffff800000000000ull;
|
|
|
|
/// Offset from physical where page tables are mapped.
|
|
constexpr uintptr_t page_offset = 0xffffc00000000000ull;
|
|
|
|
/// Max number of pages for a kernel stack
|
|
constexpr unsigned kernel_stack_pages = 4;
|
|
|
|
/// Max number of pages for a kernel buffer
|
|
constexpr unsigned kernel_buffer_pages = 16;
|
|
|
|
/// Max size of the kernel heap
|
|
constexpr size_t kernel_max_heap = 0x8000000000ull; // 512GiB
|
|
|
|
/// Start of the kernel heap
|
|
constexpr uintptr_t heap_start = page_offset - kernel_max_heap;
|
|
|
|
/// Max size of the kernel stacks area
|
|
constexpr size_t kernel_max_stacks = 0x8000000000ull; // 512GiB
|
|
|
|
/// Start of the kernel stacks
|
|
constexpr uintptr_t stacks_start = heap_start - kernel_max_stacks;
|
|
|
|
/// Max size of kernel buffers area
|
|
constexpr size_t kernel_max_buffers = 0x10000000000ull; // 1TiB
|
|
|
|
/// Start of kernel buffers
|
|
constexpr uintptr_t buffers_start = stacks_start - kernel_max_buffers;
|
|
|
|
/// First kernel space PML4 entry
|
|
constexpr unsigned pml4e_kernel = 256;
|
|
|
|
/// First offset-mapped space PML4 entry
|
|
constexpr unsigned pml4e_offset = 384;
|
|
|
|
/// Number of page_table entries
|
|
constexpr unsigned table_entries = 512;
|
|
|
|
/// Helper to determine if a physical address can be accessed
|
|
/// through the page_offset area.
|
|
inline bool page_mappable(uintptr_t a) { return (a & page_offset) == 0; }
|
|
|
|
/// Convert a physical address to a virtual one (in the offset-mapped area)
|
|
template <typename T> T * to_virtual(uintptr_t a) {
|
|
return reinterpret_cast<T*>(a|page_offset);
|
|
}
|
|
|
|
/// Get the number of pages needed for a given number of bytes.
|
|
/// \arg bytes The number of bytes desired
|
|
/// \returns The number of pages needed to contain the desired bytes
|
|
inline size_t page_count(size_t bytes) {
|
|
return ((bytes - 1) >> 12) + 1;
|
|
}
|
|
|
|
/// Get the given address, aligned to the next lowest page
|
|
inline uintptr_t page_align_down(uintptr_t a) { return a & ~(frame_size-1); }
|
|
|
|
/// Get the given address, aligned to the next page
|
|
inline uintptr_t page_align_up(uintptr_t a) { return page_align_down(a-1) + frame_size; }
|
|
|
|
} // namespace memory
|