forked from arceos-org/arceos
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
938 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,206 @@ | ||
use core::fmt; | ||
|
||
use memory_addr::PhysAddr; | ||
|
||
use crate::{GenericPTE, MappingFlags, PageSize, PageTable64, PagingMetaData}; | ||
|
||
bitflags::bitflags! { | ||
/// Memory attribute fields in the VMSAv8-64 translation table format descriptors. | ||
pub struct DescriptorAttr: u64 { | ||
// Attribute fields in stage 1 VMSAv8-64 Block and Page descriptors: | ||
|
||
/// Whether the descriptor is valid. | ||
const VALID = 1 << 0; | ||
/// The descriptor gives the address of the next level of translation table or 4KB page. | ||
/// (not a 2M, 1G block) | ||
const NON_BLOCK = 1 << 1; | ||
/// Memory attributes index field. | ||
const ATTR_INDX = 0b111 << 2; | ||
/// Non-secure bit. For memory accesses from Secure state, specifies whether the output | ||
/// address is in Secure or Non-secure memory. | ||
const NS = 1 << 5; | ||
/// Access permission: accessable at EL0. | ||
const AP_EL0 = 1 << 6; | ||
/// Access permission: read-only. | ||
const AP_RO = 1 << 7; | ||
/// Shareability: Inner Shareable (otherwise Outer Shareable). | ||
const INNER = 1 << 8; | ||
/// Shareability: Inner or Outer Shareable (otherwise Non-shareable). | ||
const SHAREABLE = 1 << 9; | ||
/// The Access flag. | ||
const AF = 1 << 10; | ||
/// The not global bit. | ||
const NG = 1 << 11; | ||
/// Indicates that 16 adjacent translation table entries point to contiguous memory regions. | ||
const CONTIGUOUS = 1 << 52; | ||
/// The Privileged execute-never field. | ||
const PXN = 1 << 53; | ||
/// The Execute-never or Unprivileged execute-never field. | ||
const UXN = 1 << 54; | ||
|
||
// Next-level attributes in stage 1 VMSAv8-64 Table descriptors: | ||
|
||
/// PXN limit for subsequent levels of lookup. | ||
const PXN_TABLE = 1 << 59; | ||
/// XN limit for subsequent levels of lookup. | ||
const XN_TABLE = 1 << 60; | ||
/// Access permissions limit for subsequent levels of lookup: access at EL0 not permitted. | ||
const AP_NO_EL0_TABLE = 1 << 61; | ||
/// Access permissions limit for subsequent levels of lookup: write access not permitted. | ||
const AP_NO_WRITE_TABLE = 1 << 62; | ||
/// For memory accesses from Secure state, specifies the Security state for subsequent | ||
/// levels of lookup. | ||
const NS_TABLE = 1 << 63; | ||
} | ||
} | ||
|
||
#[repr(u64)] | ||
#[derive(Debug, Clone, Copy, Eq, PartialEq)] | ||
enum MemType { | ||
Device = 0, | ||
Normal = 1, | ||
} | ||
|
||
impl DescriptorAttr { | ||
const ATTR_INDEX_MASK: u64 = 0b111_00; | ||
|
||
const fn from_mem_type(mem_type: MemType) -> Self { | ||
let mut bits = (mem_type as u64) << 2; | ||
if matches!(mem_type, MemType::Normal) { | ||
bits |= Self::INNER.bits() | Self::SHAREABLE.bits(); | ||
} | ||
Self::from_bits_truncate(bits) | ||
} | ||
|
||
fn mem_type(&self) -> MemType { | ||
let idx = (self.bits() & Self::ATTR_INDEX_MASK) >> 2; | ||
match idx { | ||
0 => MemType::Device, | ||
1 => MemType::Normal, | ||
_ => panic!("Invalid memory attribute index"), | ||
} | ||
} | ||
} | ||
|
||
impl From<DescriptorAttr> for MappingFlags { | ||
fn from(attr: DescriptorAttr) -> Self { | ||
let mut flags = Self::empty(); | ||
if attr.contains(DescriptorAttr::VALID) { | ||
flags |= Self::READ; | ||
} | ||
if !attr.contains(DescriptorAttr::AP_RO) { | ||
flags |= Self::WRITE; | ||
} | ||
if attr.contains(DescriptorAttr::AP_EL0) { | ||
flags |= Self::USER; | ||
if !attr.contains(DescriptorAttr::UXN) { | ||
flags |= Self::EXECUTE; | ||
} | ||
} else if !attr.intersects(DescriptorAttr::PXN) { | ||
flags |= Self::EXECUTE; | ||
} | ||
if attr.mem_type() == MemType::Device { | ||
flags |= Self::DEVICE; | ||
} | ||
flags | ||
} | ||
} | ||
|
||
impl From<MappingFlags> for DescriptorAttr { | ||
fn from(flags: MappingFlags) -> Self { | ||
let mut attr = if flags.contains(MappingFlags::DEVICE) { | ||
Self::from_mem_type(MemType::Device) | ||
} else { | ||
Self::from_mem_type(MemType::Normal) | ||
}; | ||
if flags.contains(MappingFlags::READ) { | ||
attr |= Self::VALID; | ||
} | ||
if !flags.contains(MappingFlags::WRITE) { | ||
attr |= Self::AP_RO; | ||
} | ||
if flags.contains(MappingFlags::USER) { | ||
attr |= Self::AP_EL0 | Self::PXN; | ||
if !flags.contains(MappingFlags::EXECUTE) { | ||
attr |= Self::UXN; | ||
} | ||
} else { | ||
attr |= Self::UXN; | ||
if !flags.contains(MappingFlags::EXECUTE) { | ||
attr |= Self::PXN; | ||
} | ||
} | ||
attr | ||
} | ||
} | ||
|
||
#[derive(Clone, Copy)] | ||
#[repr(transparent)] | ||
pub struct A64PTE(u64); | ||
|
||
impl A64PTE { | ||
const PHYS_ADDR_MASK: usize = A64PagingMetaData::PA_MAX_ADDR & !(PageSize::Size4K as usize - 1); | ||
|
||
pub const fn empty() -> Self { | ||
Self(0) | ||
} | ||
} | ||
|
||
impl GenericPTE for A64PTE { | ||
fn new_page(paddr: PhysAddr, flags: MappingFlags, is_huge: bool) -> Self { | ||
let mut attr = DescriptorAttr::from(flags) | DescriptorAttr::AF; | ||
if !is_huge { | ||
attr |= DescriptorAttr::NON_BLOCK; | ||
} | ||
Self(attr.bits() | (paddr.as_usize() & Self::PHYS_ADDR_MASK) as u64) | ||
} | ||
fn new_table(paddr: PhysAddr) -> Self { | ||
let attr = DescriptorAttr::NON_BLOCK | DescriptorAttr::VALID; | ||
Self(attr.bits() | (paddr.as_usize() & Self::PHYS_ADDR_MASK) as u64) | ||
} | ||
fn paddr(&self) -> PhysAddr { | ||
PhysAddr::from(self.0 as usize & Self::PHYS_ADDR_MASK) | ||
} | ||
fn flags(&self) -> MappingFlags { | ||
DescriptorAttr::from_bits_truncate(self.0).into() | ||
} | ||
fn is_unused(&self) -> bool { | ||
self.0 == 0 | ||
} | ||
fn is_present(&self) -> bool { | ||
DescriptorAttr::from_bits_truncate(self.0).contains(DescriptorAttr::VALID) | ||
} | ||
fn is_huge(&self) -> bool { | ||
!DescriptorAttr::from_bits_truncate(self.0).contains(DescriptorAttr::NON_BLOCK) | ||
} | ||
fn clear(&mut self) { | ||
self.0 = 0 | ||
} | ||
} | ||
|
||
impl fmt::Debug for A64PTE { | ||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { | ||
let mut f = f.debug_struct("A64PTE"); | ||
f.field("raw", &self.0) | ||
.field("paddr", &self.paddr()) | ||
.field("attr", &DescriptorAttr::from_bits_truncate(self.0)) | ||
.field("flags", &self.flags()) | ||
.finish() | ||
} | ||
} | ||
|
||
#[derive(Copy, Clone)] | ||
pub struct A64PagingMetaData; | ||
|
||
impl const PagingMetaData for A64PagingMetaData { | ||
const LEVELS: usize = 4; | ||
const PA_MAX_BITS: usize = 40; | ||
const VA_MAX_BITS: usize = 48; | ||
|
||
fn vaddr_is_valid(vaddr: usize) -> bool { | ||
let top_bits = vaddr >> Self::VA_MAX_BITS; | ||
top_bits == 0 || top_bits == 0xffff | ||
} | ||
} | ||
|
||
pub type A64PageTable<I> = PageTable64<A64PagingMetaData, A64PTE, I>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ authors = ["Yuekai Jia <[email protected]>"] | |
|
||
[features] | ||
platform-qemu-virt-riscv = [] | ||
platform-qemu-virt-aarch64 = [] | ||
default = [] | ||
|
||
[dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
arch = "aarch64" | ||
platform = "qemu-virt-aarch64" | ||
|
||
phys-memory-base = "0x4000_0000" | ||
phys-memory-size = "0x800_0000" # 128M | ||
kernel-base-paddr = "0x4008_0000" | ||
kernel-base-vaddr = "0xffff_0000_4008_0000" | ||
phys-virt-offset = "0xffff_0000_0000_0000" | ||
mmio-regions = [ | ||
["0x0900_0000", "0x1000"], # PL011 UART | ||
["0x0800_0000", "0x2_0000"], # GICv2 | ||
] |
Oops, something went wrong.