aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/memory/cpu/msr.cpp
blob: 3a917c9956114fbc3f9f8e6fffdae890b8cc84d0 (plain)
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
#include "arch/memory/cpu/msr.hpp"

namespace teachos::arch::memory::cpu
{
  uint64_t read_msr(uint32_t msr)
  {
    uint32_t low, high;
    asm volatile("rdmsr" : "=a"(low), "=d"(high) : "c"(msr));
    return (static_cast<uint64_t>(high) << 32) | low;
  }

  void write_msr(uint32_t msr, uint64_t value)
  {
    uint32_t low = value & 0xFFFFFFFF;
    uint32_t high = value >> 32;
    asm volatile("wrmsr"
                 : /* no output from call */
                 : "c"(msr), "a"(low), "d"(high));
  }

  void set_msr_bit(msr_flags flag)
  {
    uint64_t efer = read_msr(IA32_EFER);
    write_msr(IA32_EFER, static_cast<uint64_t>(flag) | efer);
  }

  void enable_nxe_bit() { set_msr_bit(msr_flags::NXE); }

}  // namespace teachos::arch::memory::cpu