pub struct Interrupter {
    interrupt_evt: Event,
    usbsts: Register<u32>,
    iman: Register<u32>,
    erdp: Register<u64>,
    event_handler_busy: bool,
    enabled: bool,
    moderation_interval: u16,
    moderation_counter: u16,
    event_ring: EventRing,
    last_interrupt_time: Instant,
    clock: Clock,
}
Expand description

See spec 4.17 for interrupters. Controller can send an event back to guest kernel driver through interrupter.

Fields§

§interrupt_evt: Event§usbsts: Register<u32>§iman: Register<u32>§erdp: Register<u64>§event_handler_busy: bool§enabled: bool§moderation_interval: u16§moderation_counter: u16§event_ring: EventRing§last_interrupt_time: Instant§clock: Clock

Implementations§

source§

impl Interrupter

source

pub fn new(mem: GuestMemory, irq_evt: Event, regs: &XhciRegs) -> Self

Create a new interrupter.

source

pub fn event_ring_is_empty(&self) -> bool

Returns true if event ring is empty.

source

fn add_event(&mut self, trb: Trb) -> Result<(), Error>

Add event to event ring.

source

pub fn send_port_status_change_trb(&mut self, port_id: u8) -> Result<(), Error>

Send port status change trb for port.

source

pub fn send_command_completion_trb( &mut self, completion_code: TrbCompletionCode, slot_id: u8, trb_addr: GuestAddress ) -> Result<(), Error>

Send command completion trb.

source

pub fn send_transfer_event_trb( &mut self, completion_code: TrbCompletionCode, trb_pointer: u64, transfer_length: u32, event_data: bool, slot_id: u8, endpoint_id: u8 ) -> Result<(), Error>

Send transfer event trb.

source

pub fn set_enabled(&mut self, enabled: bool) -> Result<(), Error>

Enable/Disable this interrupter.

source

pub fn set_moderation( &mut self, interval: u16, counter: u16 ) -> Result<(), Error>

Set interrupt moderation.

source

pub fn set_event_ring_seg_table_size(&mut self, size: u16) -> Result<(), Error>

Set event ring seg table size.

source

pub fn set_event_ring_seg_table_base_addr( &mut self, addr: GuestAddress ) -> Result<(), Error>

Set event ring segment table base address.

source

pub fn set_event_ring_dequeue_pointer( &mut self, addr: GuestAddress, busy: bool ) -> Result<(), Error>

Set event ring dequeue pointer.

source

pub fn interrupt(&mut self) -> Result<(), Error>

Send and interrupt.

source

fn interrupt_interval(&self) -> Duration

source

fn interrupt_if_needed(&mut self) -> Result<(), Error>

Auto Trait Implementations§

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> 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
§

impl<T> Downcast for Twhere T: Any,

§

fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
§

impl<T> DowncastSync for Twhere T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T, Global>) -> Arc<dyn Any + Sync + Send, Global>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
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, 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.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V