wpan: fully implement initial draft concept
This commit is contained in:
parent
d040871f7a
commit
890d113b85
@ -6,11 +6,11 @@ pub struct Error {
|
||||
}
|
||||
|
||||
pub struct Control<'a> {
|
||||
runner: &'a Runner,
|
||||
runner: &'a Runner<'a>,
|
||||
}
|
||||
|
||||
impl<'a> Control<'a> {
|
||||
pub(crate) fn new(runner: &'a Runner) -> Self {
|
||||
pub(crate) fn new(runner: &'a Runner<'a>) -> Self {
|
||||
Self { runner: runner }
|
||||
}
|
||||
|
||||
|
@ -4,16 +4,20 @@
|
||||
use core::task::Context;
|
||||
|
||||
use embassy_net_driver::{Capabilities, LinkState, Medium};
|
||||
use embassy_sync::blocking_mutex::raw::CriticalSectionRawMutex;
|
||||
use embassy_sync::channel::Channel;
|
||||
|
||||
use super::event::MacEvent;
|
||||
use crate::mac::event::Event;
|
||||
use crate::mac::runner::Runner;
|
||||
use crate::mac::MTU;
|
||||
|
||||
pub struct Driver<'d> {
|
||||
runner: &'d Runner,
|
||||
runner: &'d Runner<'d>,
|
||||
}
|
||||
|
||||
impl<'d> Driver<'d> {
|
||||
pub(crate) fn new(runner: &'d Runner) -> Self {
|
||||
pub(crate) fn new(runner: &'d Runner<'d>) -> Self {
|
||||
Self { runner: runner }
|
||||
}
|
||||
}
|
||||
@ -21,34 +25,33 @@ impl<'d> Driver<'d> {
|
||||
impl<'d> embassy_net_driver::Driver for Driver<'d> {
|
||||
// type RxToken<'a> = RxToken<'a, 'd> where Self: 'a;
|
||||
// type TxToken<'a> = TxToken<'a, 'd> where Self: 'a;
|
||||
type RxToken<'a> = RxToken where Self: 'a;
|
||||
type TxToken<'a> = TxToken where Self: 'a;
|
||||
type RxToken<'a> = RxToken<'d> where Self: 'a;
|
||||
type TxToken<'a> = TxToken<'d> where Self: 'a;
|
||||
|
||||
fn receive(&mut self, cx: &mut Context) -> Option<(Self::RxToken<'_>, Self::TxToken<'_>)> {
|
||||
self.runner.rx_waker.register(cx.waker());
|
||||
|
||||
// WAKER.register(cx.waker());
|
||||
// if self.rx.available().is_some() && self.tx.available().is_some() {
|
||||
// Some((RxToken { rx: &mut self.rx }, TxToken { tx: &mut self.tx }))
|
||||
// } else {
|
||||
// None
|
||||
// }
|
||||
|
||||
if self.runner.rx_channel.poll_ready_to_receive(cx) && self.runner.tx_channel.poll_ready_to_receive(cx) {
|
||||
Some((
|
||||
RxToken {
|
||||
rx: &self.runner.rx_channel,
|
||||
},
|
||||
TxToken {
|
||||
tx: &self.runner.tx_channel,
|
||||
},
|
||||
))
|
||||
} else {
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
fn transmit(&mut self, cx: &mut Context) -> Option<Self::TxToken<'_>> {
|
||||
self.runner.tx_waker.register(cx.waker());
|
||||
|
||||
// WAKER.register(cx.waker());
|
||||
// / if self.tx.available().is_some() {
|
||||
// / Some(TxToken { tx: &mut self.tx })
|
||||
// / } else {
|
||||
// / None
|
||||
// / }
|
||||
|
||||
if self.runner.tx_channel.poll_ready_to_receive(cx) {
|
||||
Some(TxToken {
|
||||
tx: &self.runner.tx_channel,
|
||||
})
|
||||
} else {
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
fn capabilities(&self) -> Capabilities {
|
||||
let mut caps = Capabilities::default();
|
||||
@ -76,30 +79,38 @@ impl<'d> embassy_net_driver::Driver for Driver<'d> {
|
||||
}
|
||||
}
|
||||
|
||||
pub struct RxToken {
|
||||
// rx: &'a mut RDesRing<'d>,
|
||||
pub struct RxToken<'d> {
|
||||
rx: &'d Channel<CriticalSectionRawMutex, Event, 1>,
|
||||
}
|
||||
|
||||
impl embassy_net_driver::RxToken for RxToken {
|
||||
impl<'d> embassy_net_driver::RxToken for RxToken<'d> {
|
||||
fn consume<R, F>(self, f: F) -> R
|
||||
where
|
||||
F: FnOnce(&mut [u8]) -> R,
|
||||
{
|
||||
// NOTE(unwrap): we checked the queue wasn't full when creating the token.
|
||||
// let pkt = unwrap!(self.rx.available());
|
||||
// Only valid data events should be put into the queue
|
||||
|
||||
let event = self.rx.try_recv().unwrap();
|
||||
let mac_event = event.mac_event().unwrap();
|
||||
let data_event = match mac_event {
|
||||
MacEvent::McpsDataInd(data_event) => data_event,
|
||||
_ => unreachable!(),
|
||||
};
|
||||
|
||||
let pkt = &mut [];
|
||||
let r = f(&mut pkt[0..]);
|
||||
// self.rx.pop_packet();
|
||||
|
||||
// let r = f(&mut data_event.payload());
|
||||
r
|
||||
}
|
||||
}
|
||||
|
||||
pub struct TxToken {
|
||||
pub struct TxToken<'d> {
|
||||
tx: &'d Channel<CriticalSectionRawMutex, &'d [u8], 1>,
|
||||
// tx: &'a mut TDesRing<'d>,
|
||||
}
|
||||
|
||||
impl embassy_net_driver::TxToken for TxToken {
|
||||
impl<'d> embassy_net_driver::TxToken for TxToken<'d> {
|
||||
fn consume<R, F>(self, len: usize, f: F) -> R
|
||||
where
|
||||
F: FnOnce(&mut [u8]) -> R,
|
||||
|
@ -18,7 +18,7 @@ pub use crate::mac::runner::Runner;
|
||||
|
||||
const MTU: usize = 127;
|
||||
|
||||
pub async fn new<'a>(runner: &'a Runner) -> (Control<'a>, Driver<'a>) {
|
||||
pub async fn new<'a>(runner: &'a Runner<'a>) -> (Control<'a>, Driver<'a>) {
|
||||
(Control::new(runner), Driver::new(runner))
|
||||
}
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
use embassy_futures::select::{select3, Either3};
|
||||
use embassy_sync::blocking_mutex::raw::CriticalSectionRawMutex;
|
||||
use embassy_sync::channel::Channel;
|
||||
use embassy_sync::waitqueue::AtomicWaker;
|
||||
|
||||
use crate::mac::event::{Event, MacEvent};
|
||||
@ -44,22 +46,18 @@ impl TxRing {
|
||||
}
|
||||
}
|
||||
|
||||
pub struct Runner {
|
||||
pub struct Runner<'a> {
|
||||
mac_subsystem: Mac,
|
||||
pub(crate) rx_ring: Option<Event>,
|
||||
pub(crate) tx_ring: TxRing,
|
||||
pub(crate) rx_waker: AtomicWaker,
|
||||
pub(crate) tx_waker: AtomicWaker,
|
||||
pub(crate) rx_channel: Channel<CriticalSectionRawMutex, Event, 1>,
|
||||
pub(crate) tx_channel: Channel<CriticalSectionRawMutex, &'a [u8], 1>,
|
||||
}
|
||||
|
||||
impl Runner {
|
||||
impl<'a> Runner<'a> {
|
||||
pub fn new(mac: Mac) -> Self {
|
||||
Self {
|
||||
mac_subsystem: mac,
|
||||
rx_ring: None,
|
||||
tx_ring: TxRing::new(),
|
||||
rx_waker: AtomicWaker::new(),
|
||||
tx_waker: AtomicWaker::new(),
|
||||
rx_channel: Channel::new(),
|
||||
tx_channel: Channel::new(),
|
||||
}
|
||||
}
|
||||
|
||||
@ -73,8 +71,7 @@ impl Runner {
|
||||
if let Ok(evt) = event.mac_event() {
|
||||
match evt {
|
||||
MacEvent::McpsDataInd(data_ind) => {
|
||||
// TODO: store mac_event in rx_ring
|
||||
self.rx_waker.wake();
|
||||
self.rx_channel.try_send(event);
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
|
@ -335,6 +335,12 @@ impl<T, const N: usize> ChannelState<T, N> {
|
||||
}
|
||||
}
|
||||
|
||||
fn poll_ready_to_receive(&mut self, cx: &mut Context<'_>) -> bool {
|
||||
self.receiver_waker.register(cx.waker());
|
||||
|
||||
!self.queue.is_empty()
|
||||
}
|
||||
|
||||
fn try_send(&mut self, message: T) -> Result<(), TrySendError<T>> {
|
||||
self.try_send_with_context(message, None)
|
||||
}
|
||||
@ -353,6 +359,12 @@ impl<T, const N: usize> ChannelState<T, N> {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn poll_ready_to_send(&mut self, cx: &mut Context<'_>) -> bool {
|
||||
self.senders_waker.register(cx.waker());
|
||||
|
||||
!self.queue.is_full()
|
||||
}
|
||||
}
|
||||
|
||||
/// A bounded channel for communicating between asynchronous tasks
|
||||
@ -401,6 +413,16 @@ where
|
||||
self.lock(|c| c.try_send_with_context(m, cx))
|
||||
}
|
||||
|
||||
/// Allows a poll_fn to poll until the channel is ready to receive
|
||||
pub fn poll_ready_to_receive(&self, cx: &mut Context<'_>) -> bool {
|
||||
self.lock(|c| c.poll_ready_to_receive(cx))
|
||||
}
|
||||
|
||||
/// Allows a poll_fn to poll until the channel is ready to send
|
||||
pub fn poll_ready_to_send(&self, cx: &mut Context<'_>) -> bool {
|
||||
self.lock(|c| c.poll_ready_to_send(cx))
|
||||
}
|
||||
|
||||
/// Get a sender for this channel.
|
||||
pub fn sender(&self) -> Sender<'_, M, T, N> {
|
||||
Sender { channel: self }
|
||||
|
@ -25,7 +25,7 @@ async fn run_mm_queue(memory_manager: mm::MemoryManager) {
|
||||
}
|
||||
|
||||
#[embassy_executor::task]
|
||||
async fn run_mac(runner: &'static Runner) {
|
||||
async fn run_mac(runner: &'static Runner<'static>) {
|
||||
runner.run().await;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user