sq formatting

This commit is contained in:
Berkus Decker 2020-11-24 16:12:20 +02:00
parent ba8e8ae5ae
commit 56aca62409
2 changed files with 14 additions and 11 deletions

View File

@ -34,7 +34,8 @@ use {
// Caps definitions // Caps definitions
//================== //==================
register_bitfields! [u128, register_bitfields! {
u128,
NullCap [ NullCap [
Type OFFSET(64) NUMBITS(5) [ Type OFFSET(64) NUMBITS(5) [
value = 0 value = 0
@ -140,12 +141,13 @@ register_bitfields! [u128,
value = 22 value = 22
] ]
] ]
]; }
// mod aarch64 { // mod aarch64 {
// ARM-specific caps // ARM-specific caps
register_bitfields! [u128, register_bitfields! {
u128,
FrameCap [ FrameCap [
MappedASID OFFSET(0) NUMBITS(16) [], MappedASID OFFSET(0) NUMBITS(16) [],
BasePtr OFFSET(16) NUMBITS(48) [], // PhysAddr BasePtr OFFSET(16) NUMBITS(48) [], // PhysAddr
@ -209,7 +211,7 @@ register_bitfields! [u128,
// Type OFFSET(64) NUMBITS(5) [], // 15 // Type OFFSET(64) NUMBITS(5) [], // 15
// VCPUPtr OFFSET(80) NUMBITS(48) [], // VCPUPtr OFFSET(80) NUMBITS(48) [],
// ], // ],
]; }
//================ //================
// Kernel objects // Kernel objects
@ -225,7 +227,8 @@ register_bitfields! [u128,
//field mdbPrev 64 //field mdbPrev 64
//} //}
register_bitfields! [u128, register_bitfields! {
u128,
CapDerivationNode [ CapDerivationNode [
// Next CTE node address -- per cteInsert this is address of the entire CTE slot // Next CTE node address -- per cteInsert this is address of the entire CTE slot
Next OFFSET(16) NUMBITS(46) [], // 4-bytes-aligned, size of canonical phys address is 48 bits Next OFFSET(16) NUMBITS(46) [], // 4-bytes-aligned, size of canonical phys address is 48 bits
@ -240,7 +243,7 @@ register_bitfields! [u128,
// Prev CTE node address -- per cteInsert this is address of the entire CTE slot // Prev CTE node address -- per cteInsert this is address of the entire CTE slot
Prev OFFSET(64) NUMBITS(64) [] Prev OFFSET(64) NUMBITS(64) []
] ]
]; }
/// Opaque capability object, manipulated by the kernel. /// Opaque capability object, manipulated by the kernel.
pub trait Capability { pub trait Capability {
@ -526,7 +529,7 @@ impl CapNode {
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use super::*; // use super::*;
#[test_case] #[test_case]
fn first_capability_derivation_has_no_prev_link() {} fn first_capability_derivation_has_no_prev_link() {}

View File

@ -18,7 +18,8 @@
// Kernel objects // Kernel objects
//================ //================
register_bitfields! {u128, register_bitfields! {
u128,
Endpoint [ Endpoint [
QueueHead OFFSET(0) NUMBITS(64) [], QueueHead OFFSET(0) NUMBITS(64) [],
QueueTail OFFSET(80) NUMBITS(46) [], QueueTail OFFSET(80) NUMBITS(46) [],
@ -31,7 +32,8 @@ register_bitfields! {u128,
} }
// @todo replace with Event // @todo replace with Event
register_bitfields! {u256, register_bitfields! {
u256,
Notification [ Notification [
BoundTCB OFFSET(16) NUMBITS(48) [], BoundTCB OFFSET(16) NUMBITS(48) [],
MsgId OFFSET(64) NUMBITS(64) [], MsgId OFFSET(64) NUMBITS(64) [],
@ -49,13 +51,11 @@ register_bitfields! {u256,
// +--VirtSpace // +--VirtSpace
// +--CapSpace // +--CapSpace
enum MemoryKind { enum MemoryKind {
General, General,
Device, Device,
} }
// The source of all available memory, device or general. // The source of all available memory, device or general.
// Boot code reserves kernel memory and initial mapping allocations (4 pages probably - on rpi3? should be platform-dependent). // Boot code reserves kernel memory and initial mapping allocations (4 pages probably - on rpi3? should be platform-dependent).
// The rest is converted to untypeds with appropriate kind and given away to start thread. // The rest is converted to untypeds with appropriate kind and given away to start thread.