Struct devices::serial::Serial

source ·
pub struct Serial {
Show 17 fields interrupt_enable: Arc<AtomicU8>, interrupt_identification: u8, interrupt_evt: Event, line_control: u8, line_status: u8, modem_control: u8, modem_status: u8, scratch: u8, baud_divisor: u16, in_buffer: VecDeque<u8>, in_channel: Option<Receiver<u8>>, input: Option<Box<dyn SerialInput>>, out: Option<Box<dyn Write + Send>>, out_timestamp: bool, last_write_was_newline: bool, device_state: DeviceState, worker: Option<WorkerThread<Box<dyn SerialInput>>>,
}
Expand description

Emulates serial COM ports commonly seen on x86 I/O ports 0x3f8/0x2f8/0x3e8/0x2e8.

This can optionally write the guest’s output to a Write trait object. To send input to the guest, use queue_input_bytes directly, or give a Read trait object which will be used queue bytes when used_command is called.

Fields§

§interrupt_enable: Arc<AtomicU8>§interrupt_identification: u8§interrupt_evt: Event§line_control: u8§line_status: u8§modem_control: u8§modem_status: u8§scratch: u8§baud_divisor: u16§in_buffer: VecDeque<u8>§in_channel: Option<Receiver<u8>>§input: Option<Box<dyn SerialInput>>§out: Option<Box<dyn Write + Send>>§out_timestamp: bool§last_write_was_newline: bool§device_state: DeviceState§worker: Option<WorkerThread<Box<dyn SerialInput>>>

Implementations§

source§

impl Serial

source

fn new_common( interrupt_evt: Event, input: Option<Box<dyn SerialInput>>, out: Option<Box<dyn Write + Send>>, out_timestamp: bool ) -> Serial

source

pub fn device_id() -> DeviceId

Returns a unique ID for the serial device.

source

pub fn debug_label() -> String

Returns a debug label for the serial device. Used when setting up IrqEventSource.

source

pub fn queue_input_bytes(&mut self, c: &[u8]) -> Result<()>

Queues raw bytes for the guest to read and signals the interrupt if the line status would change. These bytes will be read by the guest before any bytes from the input stream that have not already been queued.

source

fn spawn_input_thread(&mut self)

source

fn drain_in_channel(&mut self)

source

pub fn interrupt_event(&self) -> &Event

Gets the interrupt event used to interrupt the driver when it needs to respond to this device.

source

fn is_dlab_set(&self) -> bool

source

fn is_recv_intr_enabled(&self) -> bool

source

fn is_thr_intr_enabled(&self) -> bool

source

fn is_thr_intr_changed(&self, bit: u8) -> bool

source

fn is_loop(&self) -> bool

source

fn add_intr_bit(&mut self, bit: u8)

source

fn del_intr_bit(&mut self, bit: u8)

source

fn trigger_thr_empty(&mut self) -> Result<()>

source

fn trigger_recv_interrupt(&mut self) -> Result<()>

source

fn trigger_interrupt(&mut self) -> Result<()>

source

fn set_data_bit(&mut self)

source

fn is_data_avaiable(&self) -> bool

source

fn iir_reset(&mut self)

source

fn handle_write(&mut self, offset: u8, v: u8) -> Result<()>

source

fn handle_write_data(&mut self, v: u8) -> Result<()>

Trait Implementations§

source§

impl BusDevice for Serial

source§

fn device_id(&self) -> DeviceId

Returns a unique id per device type suitable for metrics gathering.
source§

fn debug_label(&self) -> String

Returns a label suitable for debug output.
source§

fn write(&mut self, info: BusAccessInfo, data: &[u8])

Writes at offset into this device
source§

fn read(&mut self, info: BusAccessInfo, data: &mut [u8])

Reads at offset from this device
source§

fn config_register_write( &mut self, reg_idx: usize, offset: u64, data: &[u8] ) -> ConfigWriteResult

Sets a register in the configuration space. Only used by PCI. Read more
source§

fn config_register_read(&self, reg_idx: usize) -> u32

Gets a register from the configuration space. Only used by PCI. Read more
source§

fn init_pci_config_mapping( &mut self, shmem: &SharedMemory, base: usize, len: usize ) -> bool

Provides a memory region to back MMIO access to the configuration space. If the device can keep the memory region up to date, then it should return true, after which no more calls to config_register_read will be made. Otherwise the device should return false. Read more
source§

fn virtual_config_register_write(&mut self, reg_idx: usize, value: u32)

Sets a register in the virtual config space. Only used by PCI. Read more
source§

fn virtual_config_register_read(&self, reg_idx: usize) -> u32

Gets a register from the virtual config space. Only used by PCI. Read more
source§

fn on_sandboxed(&mut self)

Invoked when the device is sandboxed.
source§

fn get_ranges(&self) -> Vec<(BusRange, BusType)>

Gets a list of all ranges registered by this BusDevice.
source§

fn destroy_device(&mut self)

Invoked when the device is destroyed
source§

fn is_bridge(&self) -> Option<u8>

Returns the secondary bus number if this bus device is pci bridge
source§

impl SerialDevice for Serial

source§

fn new( _protection_type: ProtectionType, interrupt_evt: Event, input: Option<Box<dyn SerialInput>>, out: Option<Box<dyn Write + Send>>, _sync: Option<Box<dyn FileSync + Send>>, options: SerialOptions, _keep_rds: Vec<RawDescriptor> ) -> Serial

Constructs a Serial device ready for input and output.

The stream input should not block, instead returning 0 bytes if are no bytes available.

source§

impl Suspendable for Serial

source§

fn snapshot(&mut self) -> Result<Value>

Save the device state in an image that can be restored.
source§

fn restore(&mut self, data: Value) -> Result<()>

Load a saved snapshot of an image.
source§

fn sleep(&mut self) -> Result<()>

Stop all threads related to the device. Sleep should be idempotent.
source§

fn wake(&mut self) -> Result<()>

Create/Resume all threads related to the device. Wake should be idempotent.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Serial

§

impl Send for Serial

§

impl !Sync for Serial

§

impl Unpin for Serial

§

impl !UnwindSafe for Serial

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