aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/include
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2025-07-24 16:33:10 +0000
committerFelix Morgner <felix.morgner@ost.ch>2025-07-24 16:33:10 +0000
commit1b65136a11453fe7e89320dfe6170a0cd75e60dd (patch)
treeb031192e5af29866e75a2c842d01e22f16877bcc /arch/x86_64/include
parent3b9bbbb4be529f2365b8bc2e43c1c8e9a65b1a07 (diff)
downloadteachos-1b65136a11453fe7e89320dfe6170a0cd75e60dd.tar.xz
teachos-1b65136a11453fe7e89320dfe6170a0cd75e60dd.zip
x86_64: clean up hw details
Diffstat (limited to 'arch/x86_64/include')
-rw-r--r--arch/x86_64/include/arch/boot/pointers.hpp15
-rw-r--r--arch/x86_64/include/x86_64/cpu/registers.hpp (renamed from arch/x86_64/include/arch/kernel/cpu/control_register.hpp)19
-rw-r--r--arch/x86_64/include/x86_64/memory/mmu.hpp (renamed from arch/x86_64/include/arch/kernel/cpu/tlb.hpp)14
3 files changed, 17 insertions, 31 deletions
diff --git a/arch/x86_64/include/arch/boot/pointers.hpp b/arch/x86_64/include/arch/boot/pointers.hpp
deleted file mode 100644
index fe9c657..0000000
--- a/arch/x86_64/include/arch/boot/pointers.hpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef TEACHOS_ARCH_X86_64_BOOT_POINTERS_HPP
-#define TEACHOS_ARCH_X86_64_BOOT_POINTERS_HPP
-
-#include <cstddef>
-
-namespace teachos::arch::boot
-{
- /**
- * @brief Address pointing to the start of the multiboot information structure.
- */
- extern "C" size_t const multiboot_information_pointer;
-
-} // namespace teachos::arch::boot
-
-#endif // TEACHOS_ARCH_X86_64_BOOT_POINTERS_HPP
diff --git a/arch/x86_64/include/arch/kernel/cpu/control_register.hpp b/arch/x86_64/include/x86_64/cpu/registers.hpp
index dcaf02d..607d559 100644
--- a/arch/x86_64/include/arch/kernel/cpu/control_register.hpp
+++ b/arch/x86_64/include/x86_64/cpu/registers.hpp
@@ -1,10 +1,11 @@
-#ifndef TEACHOS_ARCH_X86_64_KERNEL_CPU_CR3_HPP
-#define TEACHOS_ARCH_X86_64_KERNEL_CPU_CR3_HPP
+#ifndef TEACHOS_X86_64_CPU_REGISTERS_HPP
+#define TEACHOS_X86_64_CPU_REGISTERS_HPP
#include <cstdint>
-namespace teachos::arch::kernel::cpu
+namespace teachos::x86_64::cpu
{
+
/**
* @brief Control registers that can be read and written to.
*
@@ -14,16 +15,16 @@ namespace teachos::arch::kernel::cpu
*/
enum struct control_register : uint8_t
{
- CR0, ///< Contains various control flags that modify basic operation of the processor, Machine Status World (MSW)
+ cr0, ///< Contains various control flags that modify basic operation of the processor, Machine Status World (MSW)
///< register.
- CR2 = 2U, ///< Contains Page Fault Linear Address (PFLA), when page fault occurs address program attended to accces
+ cr2 = 2U, ///< Contains Page Fault Linear Address (PFLA), when page fault occurs address program attended to accces
///< is stored here.
- CR3, ///< Enables process to translate linear addresses into physical addresses using paging, CR0 bit 32 Paging
+ cr3, ///< Enables process to translate linear addresses into physical addresses using paging, CR0 bit 32 Paging
///< (PG) needs to be enabled simply contains the register value that represents the physical address of the
///< level 4 page table used for paging in the system. Therefore reading this value allows to access the level
///< 4 page table directly. Instead of over the virtual address 0xffffffff'fffff000, which then has to be
///< first translated into a physical address.
- CR4 ///< Used in protected mode to control operations.
+ cr4 ///< Used in protected mode to control operations.
};
/**
@@ -66,6 +67,6 @@ namespace teachos::arch::kernel::cpu
*/
auto set_cr0_bit(cr0_flags flag) -> void;
-} // namespace teachos::arch::kernel::cpu
+} // namespace teachos::x86_64::cpu
-#endif // TEACHOS_ARCH_X86_64_KERNEL_CPU_CR3_HPP
+#endif \ No newline at end of file
diff --git a/arch/x86_64/include/arch/kernel/cpu/tlb.hpp b/arch/x86_64/include/x86_64/memory/mmu.hpp
index f3e58a6..b03ffa2 100644
--- a/arch/x86_64/include/arch/kernel/cpu/tlb.hpp
+++ b/arch/x86_64/include/x86_64/memory/mmu.hpp
@@ -1,9 +1,9 @@
-#ifndef TEACHOS_ARCH_X86_64_KERNEL_CPU_TLB_HPP
-#define TEACHOS_ARCH_X86_64_KERNEL_CPU_TLB_HPP
+#ifndef TEACHOS_X86_64_MEMORY_MMU_HPP
+#define TEACHOS_X86_64_MEMORY_MMU_HPP
-#include "arch/memory/paging/virtual_page.hpp"
+#include "x86_64/memory/address.hpp"
-namespace teachos::arch::kernel::cpu
+namespace teachos::x86_64::memory
{
/**
* @brief Invalidates any translation lookaside buffer (TLB) entry for the page table the given address is cotained
@@ -12,7 +12,7 @@ namespace teachos::arch::kernel::cpu
* @param address Memory address, which will be used to determine the contained page and flush the TLB entry for
* that page.
*/
- auto tlb_flush(memory::paging::virtual_address address) -> void;
+ auto tlb_flush(linear_address address) -> void;
/**
* @brief Invalidates the translation lookaside buffer (TLB) entry for all page tables.
@@ -22,6 +22,6 @@ namespace teachos::arch::kernel::cpu
*/
auto tlb_flush_all() -> void;
-} // namespace teachos::arch::kernel::cpu
+} // namespace teachos::x86_64::memory
-#endif // TEACHOS_ARCH_X86_64_KERNEL_CPU_TLB_HPP
+#endif \ No newline at end of file