2022-03-09 00:34:35 +00:00
|
|
|
#![no_std]
|
|
|
|
#![feature(generic_associated_types)]
|
2022-03-25 20:46:14 +00:00
|
|
|
#![feature(type_alias_impl_trait)]
|
2022-03-09 00:34:35 +00:00
|
|
|
|
|
|
|
// This mod MUST go first, so that the others see its macros.
|
|
|
|
pub(crate) mod fmt;
|
|
|
|
|
|
|
|
mod builder;
|
2022-03-25 20:46:14 +00:00
|
|
|
pub mod class;
|
|
|
|
pub mod control;
|
2022-03-09 00:34:35 +00:00
|
|
|
pub mod descriptor;
|
|
|
|
pub mod driver;
|
|
|
|
pub mod types;
|
2022-03-09 22:06:27 +00:00
|
|
|
mod util;
|
2022-03-09 00:34:35 +00:00
|
|
|
|
2022-03-27 21:12:57 +00:00
|
|
|
use class::ControlInRequestStatus;
|
2022-03-28 00:20:01 +00:00
|
|
|
use heapless::Vec;
|
2022-03-27 21:12:57 +00:00
|
|
|
|
2022-03-25 20:46:14 +00:00
|
|
|
use self::class::{RequestStatus, UsbClass};
|
2022-03-09 00:34:35 +00:00
|
|
|
use self::control::*;
|
|
|
|
use self::descriptor::*;
|
|
|
|
use self::driver::*;
|
|
|
|
use self::types::*;
|
2022-03-09 22:06:27 +00:00
|
|
|
use self::util::*;
|
2022-03-09 00:34:35 +00:00
|
|
|
|
|
|
|
pub use self::builder::Config;
|
|
|
|
pub use self::builder::UsbDeviceBuilder;
|
|
|
|
|
|
|
|
/// The global state of the USB device.
|
|
|
|
///
|
|
|
|
/// In general class traffic is only possible in the `Configured` state.
|
|
|
|
#[repr(u8)]
|
|
|
|
#[derive(PartialEq, Eq, Copy, Clone, Debug)]
|
|
|
|
pub enum UsbDeviceState {
|
|
|
|
/// The USB device has just been created or reset.
|
|
|
|
Default,
|
|
|
|
|
|
|
|
/// The USB device has received an address from the host.
|
|
|
|
Addressed,
|
|
|
|
|
|
|
|
/// The USB device has been configured and is fully functional.
|
|
|
|
Configured,
|
|
|
|
|
|
|
|
/// The USB device has been suspended by the host or it has been unplugged from the USB bus.
|
|
|
|
Suspend,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The bConfiguration value for the not configured state.
|
|
|
|
pub const CONFIGURATION_NONE: u8 = 0;
|
|
|
|
|
|
|
|
/// The bConfiguration value for the single configuration supported by this device.
|
|
|
|
pub const CONFIGURATION_VALUE: u8 = 1;
|
|
|
|
|
|
|
|
/// The default value for bAlternateSetting for all interfaces.
|
|
|
|
pub const DEFAULT_ALTERNATE_SETTING: u8 = 0;
|
|
|
|
|
2022-03-28 00:20:01 +00:00
|
|
|
pub const MAX_CLASS_COUNT: usize = 4;
|
|
|
|
|
2022-03-27 21:12:57 +00:00
|
|
|
pub struct UsbDevice<'d, D: Driver<'d>> {
|
2022-03-09 22:06:27 +00:00
|
|
|
bus: D::Bus,
|
2022-03-25 20:46:14 +00:00
|
|
|
control: D::ControlPipe,
|
2022-03-09 00:34:35 +00:00
|
|
|
|
|
|
|
config: Config<'d>,
|
|
|
|
device_descriptor: &'d [u8],
|
|
|
|
config_descriptor: &'d [u8],
|
|
|
|
bos_descriptor: &'d [u8],
|
|
|
|
|
|
|
|
device_state: UsbDeviceState,
|
|
|
|
remote_wakeup_enabled: bool,
|
|
|
|
self_powered: bool,
|
|
|
|
pending_address: u8,
|
2022-03-25 20:46:14 +00:00
|
|
|
|
2022-03-28 00:20:01 +00:00
|
|
|
classes: Vec<&'d mut dyn UsbClass, MAX_CLASS_COUNT>,
|
2022-03-09 00:34:35 +00:00
|
|
|
}
|
|
|
|
|
2022-03-27 21:12:57 +00:00
|
|
|
impl<'d, D: Driver<'d>> UsbDevice<'d, D> {
|
2022-03-09 00:34:35 +00:00
|
|
|
pub(crate) fn build(
|
|
|
|
mut driver: D,
|
|
|
|
config: Config<'d>,
|
|
|
|
device_descriptor: &'d [u8],
|
|
|
|
config_descriptor: &'d [u8],
|
|
|
|
bos_descriptor: &'d [u8],
|
2022-03-28 00:20:01 +00:00
|
|
|
classes: Vec<&'d mut dyn UsbClass, MAX_CLASS_COUNT>,
|
2022-03-09 00:34:35 +00:00
|
|
|
) -> Self {
|
2022-03-25 20:46:14 +00:00
|
|
|
let control = driver
|
|
|
|
.alloc_control_pipe(config.max_packet_size_0 as u16)
|
2022-03-09 00:34:35 +00:00
|
|
|
.expect("failed to alloc control endpoint");
|
|
|
|
|
|
|
|
// Enable the USB bus.
|
|
|
|
// This prevent further allocation by consuming the driver.
|
|
|
|
let driver = driver.enable();
|
|
|
|
|
|
|
|
Self {
|
2022-03-09 22:06:27 +00:00
|
|
|
bus: driver,
|
2022-03-09 00:34:35 +00:00
|
|
|
config,
|
2022-03-25 20:46:14 +00:00
|
|
|
control,
|
2022-03-09 00:34:35 +00:00
|
|
|
device_descriptor,
|
|
|
|
config_descriptor,
|
|
|
|
bos_descriptor,
|
|
|
|
device_state: UsbDeviceState::Default,
|
|
|
|
remote_wakeup_enabled: false,
|
|
|
|
self_powered: false,
|
|
|
|
pending_address: 0,
|
2022-03-25 20:46:14 +00:00
|
|
|
classes,
|
2022-03-09 00:34:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn run(&mut self) {
|
|
|
|
loop {
|
2022-03-25 20:46:14 +00:00
|
|
|
let control_fut = self.control.setup();
|
2022-03-09 22:06:27 +00:00
|
|
|
let bus_fut = self.bus.poll();
|
|
|
|
match select(bus_fut, control_fut).await {
|
|
|
|
Either::Left(evt) => match evt {
|
|
|
|
Event::Reset => {
|
|
|
|
self.bus.reset();
|
|
|
|
|
|
|
|
self.device_state = UsbDeviceState::Default;
|
|
|
|
self.remote_wakeup_enabled = false;
|
|
|
|
self.pending_address = 0;
|
|
|
|
|
2022-03-27 21:12:57 +00:00
|
|
|
for c in self.classes.iter_mut() {
|
|
|
|
c.reset();
|
|
|
|
}
|
2022-03-09 22:06:27 +00:00
|
|
|
}
|
|
|
|
Event::Resume => {}
|
|
|
|
Event::Suspend => {
|
|
|
|
self.bus.suspend();
|
|
|
|
self.device_state = UsbDeviceState::Suspend;
|
|
|
|
}
|
|
|
|
},
|
2022-03-25 20:46:14 +00:00
|
|
|
Either::Right(req) => {
|
2022-03-09 22:06:27 +00:00
|
|
|
info!("control request: {:x}", req);
|
|
|
|
|
|
|
|
match req.direction {
|
|
|
|
UsbDirection::In => self.handle_control_in(req).await,
|
|
|
|
UsbDirection::Out => self.handle_control_out(req).await,
|
|
|
|
}
|
|
|
|
}
|
2022-03-09 00:34:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn control_in_accept_writer(
|
|
|
|
&mut self,
|
|
|
|
req: Request,
|
|
|
|
f: impl FnOnce(&mut DescriptorWriter),
|
|
|
|
) {
|
|
|
|
let mut buf = [0; 256];
|
|
|
|
let mut w = DescriptorWriter::new(&mut buf);
|
|
|
|
f(&mut w);
|
2022-03-25 20:46:14 +00:00
|
|
|
let pos = w.position().min(usize::from(req.length));
|
|
|
|
self.control.accept_in(&buf[..pos]).await;
|
2022-03-09 00:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn handle_control_out(&mut self, req: Request) {
|
2022-03-25 20:46:14 +00:00
|
|
|
{
|
|
|
|
let mut buf = [0; 128];
|
|
|
|
let data = if req.length > 0 {
|
|
|
|
let size = self.control.data_out(&mut buf).await.unwrap();
|
|
|
|
&buf[0..size]
|
|
|
|
} else {
|
|
|
|
&[]
|
|
|
|
};
|
|
|
|
|
2022-03-27 21:12:57 +00:00
|
|
|
for c in self.classes.iter_mut() {
|
|
|
|
match c.control_out(req, data) {
|
|
|
|
RequestStatus::Accepted => return self.control.accept(),
|
|
|
|
RequestStatus::Rejected => return self.control.reject(),
|
|
|
|
RequestStatus::Unhandled => (),
|
|
|
|
}
|
2022-03-25 20:46:14 +00:00
|
|
|
}
|
|
|
|
}
|
2022-03-09 00:34:35 +00:00
|
|
|
|
|
|
|
const CONFIGURATION_NONE_U16: u16 = CONFIGURATION_NONE as u16;
|
|
|
|
const CONFIGURATION_VALUE_U16: u16 = CONFIGURATION_VALUE as u16;
|
|
|
|
const DEFAULT_ALTERNATE_SETTING_U16: u16 = DEFAULT_ALTERNATE_SETTING as u16;
|
|
|
|
|
2022-03-28 01:16:45 +00:00
|
|
|
match (req.request_type, req.recipient) {
|
|
|
|
(RequestType::Standard, Recipient::Device) => match (req.request, req.value) {
|
|
|
|
(Request::CLEAR_FEATURE, Request::FEATURE_DEVICE_REMOTE_WAKEUP) => {
|
2022-03-09 00:34:35 +00:00
|
|
|
self.remote_wakeup_enabled = false;
|
2022-03-25 20:46:14 +00:00
|
|
|
self.control.accept();
|
2022-03-09 00:34:35 +00:00
|
|
|
}
|
2022-03-28 01:16:45 +00:00
|
|
|
(Request::SET_FEATURE, Request::FEATURE_DEVICE_REMOTE_WAKEUP) => {
|
2022-03-09 00:34:35 +00:00
|
|
|
self.remote_wakeup_enabled = true;
|
2022-03-25 20:46:14 +00:00
|
|
|
self.control.accept();
|
2022-03-09 00:34:35 +00:00
|
|
|
}
|
2022-03-28 01:16:45 +00:00
|
|
|
(Request::SET_ADDRESS, 1..=127) => {
|
2022-03-09 00:34:35 +00:00
|
|
|
self.pending_address = req.value as u8;
|
2022-03-25 20:46:14 +00:00
|
|
|
self.control.accept();
|
2022-03-09 00:34:35 +00:00
|
|
|
}
|
2022-03-28 01:16:45 +00:00
|
|
|
(Request::SET_CONFIGURATION, CONFIGURATION_VALUE_U16) => {
|
2022-03-09 00:34:35 +00:00
|
|
|
self.device_state = UsbDeviceState::Configured;
|
2022-03-25 20:46:14 +00:00
|
|
|
self.control.accept();
|
2022-03-09 00:34:35 +00:00
|
|
|
}
|
2022-03-28 01:16:45 +00:00
|
|
|
(Request::SET_CONFIGURATION, CONFIGURATION_NONE_U16) => match self.device_state {
|
|
|
|
UsbDeviceState::Default => {
|
|
|
|
self.control.accept();
|
2022-03-09 00:34:35 +00:00
|
|
|
}
|
2022-03-28 01:16:45 +00:00
|
|
|
_ => {
|
|
|
|
self.device_state = UsbDeviceState::Addressed;
|
|
|
|
self.control.accept();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => self.control.reject(),
|
|
|
|
},
|
|
|
|
(RequestType::Standard, Recipient::Interface) => match (req.request, req.value) {
|
|
|
|
(Request::SET_INTERFACE, DEFAULT_ALTERNATE_SETTING_U16) => {
|
2022-03-09 00:34:35 +00:00
|
|
|
// TODO: do something when alternate settings are implemented
|
2022-03-25 20:46:14 +00:00
|
|
|
self.control.accept();
|
2022-03-09 00:34:35 +00:00
|
|
|
}
|
2022-03-28 01:16:45 +00:00
|
|
|
_ => self.control.reject(),
|
|
|
|
},
|
|
|
|
(RequestType::Standard, Recipient::Endpoint) => match (req.request, req.value) {
|
|
|
|
(Request::SET_FEATURE, Request::FEATURE_ENDPOINT_HALT) => {
|
|
|
|
let ep_addr = ((req.index as u8) & 0x8f).into();
|
|
|
|
self.bus.set_stalled(ep_addr, true);
|
|
|
|
self.control.accept();
|
|
|
|
}
|
|
|
|
(Request::CLEAR_FEATURE, Request::FEATURE_ENDPOINT_HALT) => {
|
|
|
|
let ep_addr = ((req.index as u8) & 0x8f).into();
|
|
|
|
self.bus.set_stalled(ep_addr, false);
|
|
|
|
self.control.accept();
|
|
|
|
}
|
2022-03-25 20:46:14 +00:00
|
|
|
_ => self.control.reject(),
|
2022-03-09 00:34:35 +00:00
|
|
|
},
|
2022-03-25 20:46:14 +00:00
|
|
|
_ => self.control.reject(),
|
2022-03-09 00:34:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn handle_control_in(&mut self, req: Request) {
|
2022-03-27 21:12:57 +00:00
|
|
|
let mut buf = [0; 128];
|
|
|
|
for c in self.classes.iter_mut() {
|
|
|
|
match c.control_in(req, class::ControlIn::new(&mut buf)) {
|
|
|
|
ControlInRequestStatus {
|
|
|
|
status: RequestStatus::Accepted,
|
|
|
|
data,
|
|
|
|
} => return self.control.accept_in(data).await,
|
|
|
|
ControlInRequestStatus {
|
|
|
|
status: RequestStatus::Rejected,
|
|
|
|
..
|
|
|
|
} => return self.control.reject(),
|
|
|
|
ControlInRequestStatus {
|
|
|
|
status: RequestStatus::Unhandled,
|
|
|
|
..
|
|
|
|
} => (),
|
|
|
|
}
|
2022-03-25 20:46:14 +00:00
|
|
|
}
|
|
|
|
|
2022-03-28 01:16:45 +00:00
|
|
|
match (req.request_type, req.recipient) {
|
|
|
|
(RequestType::Standard, Recipient::Device) => match req.request {
|
|
|
|
Request::GET_STATUS => {
|
2022-03-09 00:34:35 +00:00
|
|
|
let mut status: u16 = 0x0000;
|
|
|
|
if self.self_powered {
|
|
|
|
status |= 0x0001;
|
|
|
|
}
|
|
|
|
if self.remote_wakeup_enabled {
|
|
|
|
status |= 0x0002;
|
|
|
|
}
|
2022-03-25 20:46:14 +00:00
|
|
|
self.control.accept_in(&status.to_le_bytes()).await;
|
2022-03-09 00:34:35 +00:00
|
|
|
}
|
2022-03-28 01:16:45 +00:00
|
|
|
Request::GET_DESCRIPTOR => {
|
2022-03-09 00:34:35 +00:00
|
|
|
self.handle_get_descriptor(req).await;
|
|
|
|
}
|
2022-03-28 01:16:45 +00:00
|
|
|
Request::GET_CONFIGURATION => {
|
2022-03-09 00:34:35 +00:00
|
|
|
let status = match self.device_state {
|
|
|
|
UsbDeviceState::Configured => CONFIGURATION_VALUE,
|
|
|
|
_ => CONFIGURATION_NONE,
|
|
|
|
};
|
2022-03-25 20:46:14 +00:00
|
|
|
self.control.accept_in(&status.to_le_bytes()).await;
|
2022-03-09 00:34:35 +00:00
|
|
|
}
|
2022-03-28 01:16:45 +00:00
|
|
|
_ => self.control.reject(),
|
|
|
|
},
|
|
|
|
(RequestType::Standard, Recipient::Interface) => match req.request {
|
|
|
|
Request::GET_STATUS => {
|
|
|
|
let status: u16 = 0x0000;
|
|
|
|
self.control.accept_in(&status.to_le_bytes()).await;
|
|
|
|
}
|
|
|
|
Request::GET_INTERFACE => {
|
2022-03-09 00:34:35 +00:00
|
|
|
// TODO: change when alternate settings are implemented
|
|
|
|
let status = DEFAULT_ALTERNATE_SETTING;
|
2022-03-25 20:46:14 +00:00
|
|
|
self.control.accept_in(&status.to_le_bytes()).await;
|
2022-03-09 00:34:35 +00:00
|
|
|
}
|
2022-03-25 20:46:14 +00:00
|
|
|
_ => self.control.reject(),
|
2022-03-09 00:34:35 +00:00
|
|
|
},
|
2022-03-28 01:16:45 +00:00
|
|
|
(RequestType::Standard, Recipient::Endpoint) => match req.request {
|
|
|
|
Request::GET_STATUS => {
|
|
|
|
let ep_addr: EndpointAddress = ((req.index as u8) & 0x8f).into();
|
|
|
|
let mut status: u16 = 0x0000;
|
|
|
|
if self.bus.is_stalled(ep_addr) {
|
|
|
|
status |= 0x0001;
|
|
|
|
}
|
|
|
|
self.control.accept_in(&status.to_le_bytes()).await;
|
|
|
|
}
|
|
|
|
_ => self.control.reject(),
|
|
|
|
},
|
2022-03-25 20:46:14 +00:00
|
|
|
_ => self.control.reject(),
|
2022-03-09 00:34:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn handle_get_descriptor(&mut self, req: Request) {
|
|
|
|
let (dtype, index) = req.descriptor_type_index();
|
|
|
|
let config = self.config.clone();
|
|
|
|
|
|
|
|
match dtype {
|
2022-03-25 20:46:14 +00:00
|
|
|
descriptor_type::BOS => self.control.accept_in(self.bos_descriptor).await,
|
|
|
|
descriptor_type::DEVICE => self.control.accept_in(self.device_descriptor).await,
|
|
|
|
descriptor_type::CONFIGURATION => self.control.accept_in(self.config_descriptor).await,
|
2022-03-09 00:34:35 +00:00
|
|
|
descriptor_type::STRING => {
|
|
|
|
if index == 0 {
|
|
|
|
self.control_in_accept_writer(req, |w| {
|
|
|
|
w.write(descriptor_type::STRING, &lang_id::ENGLISH_US.to_le_bytes())
|
|
|
|
.unwrap();
|
|
|
|
})
|
|
|
|
.await
|
|
|
|
} else {
|
|
|
|
let s = match index {
|
|
|
|
1 => self.config.manufacturer,
|
|
|
|
2 => self.config.product,
|
|
|
|
3 => self.config.serial_number,
|
|
|
|
_ => {
|
|
|
|
let index = StringIndex::new(index);
|
|
|
|
let lang_id = req.index;
|
|
|
|
None
|
|
|
|
//classes
|
|
|
|
// .iter()
|
|
|
|
// .filter_map(|cls| cls.get_string(index, lang_id))
|
|
|
|
// .nth(0)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(s) = s {
|
|
|
|
self.control_in_accept_writer(req, |w| w.string(s).unwrap())
|
|
|
|
.await;
|
|
|
|
} else {
|
2022-03-25 20:46:14 +00:00
|
|
|
self.control.reject()
|
2022-03-09 00:34:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-25 20:46:14 +00:00
|
|
|
_ => self.control.reject(),
|
2022-03-09 00:34:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|