mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-30 09:33:30 +00:00
228 lines
7.9 KiB
Rust
228 lines
7.9 KiB
Rust
use core::fmt::Debug;
|
|
|
|
use crate::{device::VirtioDeviceError, queue::VirtQueue, transport::VirtioTransport};
|
|
use alloc::{
|
|
boxed::Box,
|
|
string::{String, ToString},
|
|
sync::Arc,
|
|
vec::Vec,
|
|
};
|
|
use bitflags::bitflags;
|
|
use jinux_frame::{io_mem::IoMem, offset_of, sync::SpinLock, trap::TrapFrame};
|
|
use jinux_util::{field_ptr, safe_ptr::SafePtr};
|
|
use log::{debug, info};
|
|
use pod::Pod;
|
|
use virtio_input_decoder::{DecodeType, Decoder};
|
|
|
|
use super::{InputConfigSelect, InputEvent, VirtioInputConfig, QUEUE_EVENT, QUEUE_STATUS};
|
|
|
|
bitflags! {
|
|
/// The properties of input device.
|
|
///
|
|
/// Ref: Linux input-event-codes.h
|
|
pub struct InputProp : u8{
|
|
/// Needs a pointer
|
|
const POINTER = 1 << 0;
|
|
/// Direct input devices
|
|
const DIRECT = 1 << 1;
|
|
/// Has button(s) under pad
|
|
const BUTTONPAD = 1 << 2;
|
|
/// Touch rectangle only
|
|
const SEMI_MT = 1 << 3;
|
|
/// Softbuttons at top of pad
|
|
const TOPBUTTONPAD = 1 << 4;
|
|
/// Is a pointing stick
|
|
const POINTING_STICK = 1 << 5;
|
|
/// Has accelerometer
|
|
const ACCELEROMETER = 1 << 6;
|
|
}
|
|
}
|
|
|
|
pub const SYN: u8 = 0x00;
|
|
pub const KEY: u8 = 0x01;
|
|
pub const REL: u8 = 0x02;
|
|
pub const ABS: u8 = 0x03;
|
|
pub const MSC: u8 = 0x04;
|
|
pub const SW: u8 = 0x05;
|
|
pub const LED: u8 = 0x11;
|
|
pub const SND: u8 = 0x12;
|
|
pub const REP: u8 = 0x14;
|
|
pub const FF: u8 = 0x15;
|
|
pub const PWR: u8 = 0x16;
|
|
pub const FF_STATUS: u8 = 0x17;
|
|
|
|
const QUEUE_SIZE: u16 = 64;
|
|
|
|
/// Virtual human interface devices such as keyboards, mice and tablets.
|
|
///
|
|
/// An instance of the virtio device represents one such input device.
|
|
/// Device behavior mirrors that of the evdev layer in Linux,
|
|
/// making pass-through implementations on top of evdev easy.
|
|
pub struct InputDevice {
|
|
config: SafePtr<VirtioInputConfig, IoMem>,
|
|
event_queue: SpinLock<VirtQueue>,
|
|
status_queue: VirtQueue,
|
|
event_buf: SpinLock<Box<[InputEvent; QUEUE_SIZE as usize]>>,
|
|
callbacks: SpinLock<Vec<Arc<dyn Fn(DecodeType) + Send + Sync + 'static>>>,
|
|
transport: Box<dyn VirtioTransport>,
|
|
}
|
|
|
|
impl InputDevice {
|
|
/// Create a new VirtIO-Input driver.
|
|
/// msix_vector_left should at least have one element or n elements where n is the virtqueue amount
|
|
pub fn init(mut transport: Box<dyn VirtioTransport>) -> Result<(), VirtioDeviceError> {
|
|
let mut event_buf = Box::new([InputEvent::default(); QUEUE_SIZE as usize]);
|
|
let mut event_queue = VirtQueue::new(QUEUE_EVENT, QUEUE_SIZE, transport.as_mut())
|
|
.expect("create event virtqueue failed");
|
|
let status_queue = VirtQueue::new(QUEUE_STATUS, QUEUE_SIZE, transport.as_mut())
|
|
.expect("create status virtqueue failed");
|
|
|
|
for (i, event) in event_buf.as_mut().iter_mut().enumerate() {
|
|
let token = event_queue.add(&[], &[event.as_bytes_mut()]);
|
|
match token {
|
|
Ok(value) => {
|
|
assert_eq!(value, i as u16);
|
|
}
|
|
Err(_) => {
|
|
return Err(VirtioDeviceError::QueueUnknownError);
|
|
}
|
|
}
|
|
}
|
|
|
|
let mut device = Self {
|
|
config: VirtioInputConfig::new(transport.as_mut()),
|
|
event_queue: SpinLock::new(event_queue),
|
|
status_queue,
|
|
event_buf: SpinLock::new(event_buf),
|
|
transport,
|
|
callbacks: SpinLock::new(Vec::new()),
|
|
};
|
|
|
|
let mut raw_name: [u8; 128] = [0; 128];
|
|
device.query_config_select(InputConfigSelect::IdName, 0, &mut raw_name);
|
|
let name = String::from_utf8(raw_name.to_vec()).unwrap();
|
|
info!("Virtio input device name:{}", name);
|
|
|
|
let mut prop: [u8; 128] = [0; 128];
|
|
device.query_config_select(InputConfigSelect::PropBits, 0, &mut prop);
|
|
let input_prop = InputProp::from_bits(prop[0]).unwrap();
|
|
debug!("input device prop:{:?}", input_prop);
|
|
|
|
fn handle_input(_: &TrapFrame) {
|
|
debug!("Handle Virtio input interrupt");
|
|
let device = jinux_input::get_device(&(super::DEVICE_NAME.to_string())).unwrap();
|
|
device.handle_irq().unwrap();
|
|
}
|
|
|
|
fn config_space_change(_: &TrapFrame) {
|
|
debug!("input device config space change");
|
|
}
|
|
|
|
device
|
|
.transport
|
|
.register_cfg_callback(Box::new(config_space_change))
|
|
.unwrap();
|
|
device
|
|
.transport
|
|
.register_queue_callback(QUEUE_EVENT, Box::new(handle_input), false)
|
|
.unwrap();
|
|
|
|
device.transport.finish_init();
|
|
|
|
jinux_input::register_device(super::DEVICE_NAME.to_string(), Arc::new(device));
|
|
|
|
Ok(())
|
|
}
|
|
|
|
/// Pop the pending event.
|
|
pub fn pop_pending_event(&self) -> Option<InputEvent> {
|
|
let mut lock = self.event_queue.lock();
|
|
if let Ok((token, _)) = lock.pop_used() {
|
|
if token >= QUEUE_SIZE {
|
|
return None;
|
|
}
|
|
let event = &mut self.event_buf.lock()[token as usize];
|
|
// requeue
|
|
if let Ok(new_token) = lock.add(&[], &[event.as_bytes_mut()]) {
|
|
// This only works because nothing happen between `pop_used` and `add` that affects
|
|
// the list of free descriptors in the queue, so `add` reuses the descriptor which
|
|
// was just freed by `pop_used`.
|
|
assert_eq!(new_token, token);
|
|
return Some(*event);
|
|
}
|
|
}
|
|
None
|
|
}
|
|
|
|
/// Query a specific piece of information by `select` and `subsel`, and write
|
|
/// result to `out`, return the result size.
|
|
pub fn query_config_select(&self, select: InputConfigSelect, subsel: u8, out: &mut [u8]) -> u8 {
|
|
field_ptr!(&self.config, VirtioInputConfig, select)
|
|
.write(&(select as u8))
|
|
.unwrap();
|
|
field_ptr!(&self.config, VirtioInputConfig, subsel)
|
|
.write(&(subsel as u8))
|
|
.unwrap();
|
|
let size = field_ptr!(&self.config, VirtioInputConfig, size)
|
|
.read()
|
|
.unwrap();
|
|
let data: [u8; 128] = field_ptr!(&self.config, VirtioInputConfig, data)
|
|
.read()
|
|
.unwrap();
|
|
out[..size as usize].copy_from_slice(&data[..size as usize]);
|
|
size
|
|
}
|
|
|
|
/// Negotiate features for the device specified bits 0~23
|
|
pub(crate) fn negotiate_features(features: u64) -> u64 {
|
|
assert_eq!(features, 0);
|
|
0
|
|
}
|
|
}
|
|
|
|
impl jinux_input::InputDevice for InputDevice {
|
|
fn handle_irq(&self) -> Option<()> {
|
|
// one interrupt may contains serval input, so it should loop
|
|
loop {
|
|
let event = self.pop_pending_event()?;
|
|
let dtype = match Decoder::decode(
|
|
event.event_type as usize,
|
|
event.code as usize,
|
|
event.value as usize,
|
|
) {
|
|
Ok(dtype) => dtype,
|
|
Err(_) => return Some(()),
|
|
};
|
|
let lock = self.callbacks.lock();
|
|
for callback in lock.iter() {
|
|
callback.call((dtype,));
|
|
}
|
|
match dtype {
|
|
virtio_input_decoder::DecodeType::Key(key, r#type) => {
|
|
info!("{:?} {:?}", key, r#type);
|
|
}
|
|
virtio_input_decoder::DecodeType::Mouse(mouse) => info!("{:?}", mouse),
|
|
}
|
|
}
|
|
}
|
|
|
|
fn register_callbacks(
|
|
&self,
|
|
function: &'static (dyn Fn(virtio_input_decoder::DecodeType) + Send + Sync),
|
|
) {
|
|
self.callbacks.lock().push(Arc::new(function))
|
|
}
|
|
}
|
|
|
|
impl Debug for InputDevice {
|
|
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
|
|
f.debug_struct("InputDevice")
|
|
.field("config", &self.config)
|
|
.field("event_queue", &self.event_queue)
|
|
.field("status_queue", &self.status_queue)
|
|
.field("event_buf", &self.event_buf)
|
|
.field("transport", &self.transport)
|
|
.finish()
|
|
}
|
|
}
|