From ba8e8ae5ae10a8a99b52d538c3549dd2568dc108 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Sun, 22 Nov 2020 15:49:57 +0200 Subject: [PATCH] [del] Make LocalRegisterCopy modifiable --- crates/tock-registers/src/registers.rs | 29 ++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/crates/tock-registers/src/registers.rs b/crates/tock-registers/src/registers.rs index f6c9e8f..48de0e5 100644 --- a/crates/tock-registers/src/registers.rs +++ b/crates/tock-registers/src/registers.rs @@ -329,15 +329,16 @@ impl Aliased { } } -/// A read-only copy register contents +/// A read-write copy of register contents. /// -/// This behaves very similarly to a read-only register, but instead of doing a +/// This behaves very similarly to a read-write register, but instead of doing a /// volatile read to MMIO to get the value for each function call, a copy of the /// register contents are stored locally in memory. This allows a peripheral /// to do a single read on a register, and then check which bits are set without /// having to do a full MMIO read each time. It also allows the value of the /// register to be "cached" in case the peripheral driver needs to clear the /// register in hardware yet still be able to check the bits. +/// You can write to a local register, which will modify the stored value. #[derive(Copy, Clone)] pub struct LocalRegisterCopy { value: T, @@ -352,31 +353,55 @@ impl LocalRegisterCopy { } } + /// Get the raw register value #[inline] pub fn get(&self) -> T { self.value } + /// Set the raw register value + #[inline] + pub fn set(&mut self, value: T) { + self.value = value; + } + + /// Read the value of the given field #[inline] pub fn read(&self, field: Field) -> T { field.read(self.get()) } + /// Read value of the given field as an enum member #[inline] pub fn read_as_enum>(&self, field: Field) -> Option { field.read_as_enum(self.get()) } + /// Write the value of one or more fields, overwriting the other fields with zero + #[inline] + pub fn write(&mut self, field: FieldValue) { + self.set(field.value); + } + + /// Write the value of one or more fields, leaving the other fields unchanged + #[inline] + pub fn modify(&mut self, field: FieldValue) { + self.set(field.modify(self.get())); + } + + /// Check if one or more bits in a field are set #[inline] pub fn is_set(&self, field: Field) -> bool { field.is_set(self.get()) } + /// Check if any specified parts of a field match #[inline] pub fn matches_any(&self, field: FieldValue) -> bool { field.matches_any(self.get()) } + /// Check if all specified parts of a field match #[inline] pub fn matches_all(&self, field: FieldValue) -> bool { field.matches_all(self.get())