Struct os::drivers::plic::PLIC

source ·
pub struct PLIC {
    base_addr: usize,
}

Fields§

§base_addr: usize

Implementations§

source§

impl PLIC

source

fn priority_ptr(&self, intr_source_id: usize) -> *mut u32

source

fn hart_id_with_priority( hart_id: usize, target_priority: IntrTargetPriority ) -> usize

source

fn enable_ptr( &self, hart_id: usize, target_priority: IntrTargetPriority, intr_source_id: usize ) -> (*mut u32, usize)

source

fn threshold_ptr_of_hart_with_priority( &self, hart_id: usize, target_priority: IntrTargetPriority ) -> *mut u32

source

fn claim_comp_ptr_of_hart_with_priority( &self, hart_id: usize, target_priority: IntrTargetPriority ) -> *mut u32

source

pub unsafe fn new(base_addr: usize) -> Self

source

pub fn set_priority(&mut self, intr_source_id: usize, priority: u32)

source

pub fn get_priority(&mut self, intr_source_id: usize) -> u32

source

pub fn enable( &mut self, hart_id: usize, target_priority: IntrTargetPriority, intr_source_id: usize )

source

pub fn disable( &mut self, hart_id: usize, target_priority: IntrTargetPriority, intr_source_id: usize )

source

pub fn set_threshold( &mut self, hart_id: usize, target_priority: IntrTargetPriority, threshold: u32 )

source

pub fn get_threshold( &mut self, hart_id: usize, target_priority: IntrTargetPriority ) -> u32

source

pub fn claim( &mut self, hart_id: usize, target_priority: IntrTargetPriority ) -> u32

source

pub fn complete( &mut self, hart_id: usize, target_priority: IntrTargetPriority, completion: u32 )

Auto Trait Implementations§

§

impl RefUnwindSafe for PLIC

§

impl Send for PLIC

§

impl Sync for PLIC

§

impl Unpin for PLIC

§

impl UnwindSafe for PLIC

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Az for T

source§

fn az<Dst>(self) -> Dstwhere T: Cast<Dst>,

Casts the value.
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Src, Dst> CastFrom<Src> for Dstwhere Src: Cast<Dst>,

source§

fn cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> CheckedAs for T

source§

fn checked_as<Dst>(self) -> Option<Dst>where T: CheckedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere Src: CheckedCast<Dst>,

source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> OverflowingAs for T

source§

fn overflowing_as<Dst>(self) -> (Dst, bool)where T: OverflowingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere Src: OverflowingCast<Dst>,

source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
source§

impl<T> SaturatingAs for T

source§

fn saturating_as<Dst>(self) -> Dstwhere T: SaturatingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere Src: SaturatingCast<Dst>,

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> UnwrappedAs for T

source§

fn unwrapped_as<Dst>(self) -> Dstwhere T: UnwrappedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere Src: UnwrappedCast<Dst>,

source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> WrappingAs for T

source§

fn wrapping_as<Dst>(self) -> Dstwhere T: WrappingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere Src: WrappingCast<Dst>,

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.