diff options
| author | Fabian Imhof <fabian.imhof@ost.ch> | 2024-11-10 10:59:22 +0000 |
|---|---|---|
| committer | Fabian Imhof <fabian.imhof@ost.ch> | 2024-11-10 10:59:22 +0000 |
| commit | 1275612382c5c9d31ed7b24a2c6d699c14a10081 (patch) | |
| tree | 367427f7d5216ca07ee1ea2198f53a335fccb811 /arch/x86_64/include | |
| parent | edc11135d83ef1f8fcbc1575a290b31ccbdb7e07 (diff) | |
| download | teachos-1275612382c5c9d31ed7b24a2c6d699c14a10081.tar.xz teachos-1275612382c5c9d31ed7b24a2c6d699c14a10081.zip | |
implement model specific register calls
Diffstat (limited to 'arch/x86_64/include')
| -rw-r--r-- | arch/x86_64/include/arch/memory/cpu/msr.hpp | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/arch/x86_64/include/arch/memory/cpu/msr.hpp b/arch/x86_64/include/arch/memory/cpu/msr.hpp new file mode 100644 index 0000000..662f3ac --- /dev/null +++ b/arch/x86_64/include/arch/memory/cpu/msr.hpp @@ -0,0 +1,69 @@ +#ifndef TEACHOS_ARCH_X86_64_MEMORY_CPU_NXE_HPP +#define TEACHOS_ARCH_X86_64_MEMORY_CPU_NXE_HPP + +#include <bitset> +#include <cstdint> + +namespace teachos::arch::memory::cpu +{ + constexpr uint32_t IA32_EFER = 0xC0000080; + + enum class msr_flags : uint64_t + { + SCE = 1U << 0ULL, ///< System Call Extensions + LME = 1U << 8ULL, ///< Long Mode Enabled + LMA = 1U << 10ULL, ///< Long Mode Active + NXE = 1U << 11ULL, ///< No-Execute Enable + SVME = 1U << 12ULL, ///< Secure Virtual Machine Enable + LMSLE = 1U << 13ULL, ///< Secure Virtual Machine Enable + FFXSR = 1U << 14ULL, ///< fast FXSAVE/FXSTOR + TCE = 1U << 15ULL, ///< Translation Cache Extension + }; + + /** + * @brief Reads a 64-bit Model-Specific Register (MSR). + * + * This function reads the value of an MSR specified by the given address. It + * combines the lower and upper 32-bits of the MSR value and returns it as a + * 64-bit unsigned integer. + * + * @param msr The address of the MSR to read. + * @return The 64-bit value read from the MSR. + */ + uint64_t read_msr(uint32_t msr); + + /** + * @brief Writes a 64-bit value to a Model-Specific Register (MSR). + * + * This function writes a 64-bit value to the MSR specified by the given address. + * It splits the 64-bit value into two 32-bit parts and writes them using the + * `wrmsr` instruction. + * + * @param msr The address of the MSR to write to. + * @param value The 64-bit value to write to the MSR. + */ + void write_msr(uint32_t msr, uint64_t value); + + /** + * @brief Sets a specific bit in the MSR register. + * + * This function reads the current value of the EFER register, ORs the specified + * bit with the current value, and writes the updated value back to the EFER register. + * + * @param flag The flag to set in the EFER register. + */ + void set_msr_bit(msr_flags flag); + + /** + * @brief Enables the No-Execute Enable (NXE) bit in the Extended Feature Enable Register (EFER). + * + * This function reads the current value of the EFER register, enables the NXE bit + * (bit 11), and writes the updated value back to the EFER register. Enabling the NXE + * bit allows the processor to support No-Execute memory regions, which are required + * for certain memory protection features like Data Execution Prevention (DEP). + */ + void enable_nxe_bit(); + +} // namespace teachos::arch::memory::cpu + +#endif // TEACHOS_ARCH_X86_64_MEMORY_CPU_NXE_HPP
\ No newline at end of file |
