use core::arch::asm;
use memory_addr::{MemoryAddr, PhysAddr, VirtAddr};
use x86::{controlregs, msr, tlb};
use x86_64::instructions::interrupts;
#[inline]
pub fn enable_irqs() {
#[cfg(not(target_os = "none"))]
{
warn!("enable_irqs: not implemented");
}
#[cfg(target_os = "none")]
interrupts::enable()
}
#[inline]
pub fn disable_irqs() {
#[cfg(not(target_os = "none"))]
{
warn!("disable_irqs: not implemented");
}
#[cfg(target_os = "none")]
interrupts::disable()
}
#[inline]
pub fn irqs_enabled() -> bool {
interrupts::are_enabled()
}
#[inline]
pub fn wait_for_irqs() {
if cfg!(target_os = "none") {
unsafe { asm!("hlt") }
} else {
core::hint::spin_loop()
}
}
#[inline]
pub fn halt() {
disable_irqs();
wait_for_irqs(); }
#[inline]
pub fn read_user_page_table() -> PhysAddr {
pa!(unsafe { controlregs::cr3() } as usize).align_down_4k()
}
#[inline]
pub fn read_kernel_page_table() -> PhysAddr {
read_user_page_table()
}
#[inline]
pub unsafe fn write_user_page_table(root_paddr: PhysAddr) {
unsafe { controlregs::cr3_write(root_paddr.as_usize() as _) }
}
#[inline]
pub unsafe fn write_kernel_page_table(root_paddr: PhysAddr) {
unsafe { write_user_page_table(root_paddr) }
}
#[inline]
pub fn flush_tlb(vaddr: Option<VirtAddr>) {
if let Some(vaddr) = vaddr {
unsafe { tlb::flush(vaddr.into()) }
} else {
unsafe { tlb::flush_all() }
}
}
#[inline]
pub fn read_thread_pointer() -> usize {
unsafe { msr::rdmsr(msr::IA32_FS_BASE) as usize }
}
#[inline]
pub unsafe fn write_thread_pointer(fs_base: usize) {
unsafe { msr::wrmsr(msr::IA32_FS_BASE, fs_base as u64) }
}