2
0
mirror of https://github.com/m-labs/artiq.git synced 2025-01-13 20:38:56 +08:00

master: implement DRTIO-EEM satellite disconnection

This commit is contained in:
occheung 2024-10-23 13:47:48 +08:00 committed by Sébastien Bourdeauducq
parent 40ab4fee5b
commit bd7b07b0fd
2 changed files with 53 additions and 0 deletions

View File

@ -187,6 +187,24 @@ unsafe fn align_comma() {
}
}
pub unsafe fn align_wordslip(trx_no: u8) -> bool {
csr::eem_transceiver::transceiver_sel_write(trx_no);
for slip in 0..=1 {
csr::eem_transceiver::wordslip_write(slip as u8);
clock::spin_us(1);
csr::eem_transceiver::comma_align_reset_write(1);
clock::spin_us(100);
if csr::eem_transceiver::comma_read() == 1 {
debug!("comma alignment completed with {} wordslip", slip);
return true;
}
}
false
}
pub fn init() {
for trx_no in 0..csr::CONFIG_EEM_DRTIO_COUNT {
unsafe {

View File

@ -16,6 +16,8 @@ const ASYNC_ERROR_SEQUENCE_ERROR: u8 = 1 << 2;
pub mod drtio {
use super::*;
use alloc::vec::Vec;
#[cfg(has_drtio_eem)]
use board_artiq::drtio_eem;
use drtioaux;
use proto_artiq::drtioaux_proto::{MASTER_PAYLOAD_MAX_SIZE, PayloadStatus};
use rtio_dma::remote_dma;
@ -24,6 +26,9 @@ pub mod drtio {
use kernel::subkernel;
use sched::Error as SchedError;
#[cfg(has_drtio_eem)]
const DRTIO_EEM_LINKNOS: core::ops::Range<usize> = (csr::DRTIO.len()-csr::CONFIG_EEM_DRTIO_COUNT as usize)..csr::DRTIO.len();
#[derive(Fail, Debug)]
pub enum Error {
#[fail(display = "timed out")]
@ -73,6 +78,18 @@ pub mod drtio {
fn link_rx_up(linkno: u8) -> bool {
let linkno = linkno as usize;
#[cfg(has_drtio_eem)]
if DRTIO_EEM_LINKNOS.contains(&linkno) {
let eem_trx_no = linkno - DRTIO_EEM_LINKNOS.start;
unsafe {
csr::eem_transceiver::transceiver_sel_write(eem_trx_no as u8);
csr::eem_transceiver::comma_align_reset_write(1);
}
clock::spin_us(100);
return unsafe {
csr::eem_transceiver::comma_read() == 1
};
}
unsafe {
(csr::DRTIO[linkno].rx_up_read)() == 1
}
@ -414,9 +431,27 @@ pub mod drtio {
} else {
info!("[LINK#{}] link is down", linkno);
up_links[linkno as usize] = false;
#[cfg(has_drtio_eem)]
if DRTIO_EEM_LINKNOS.contains(&(linkno as usize)) {
unsafe { csr::eem_transceiver::rx_ready_write(0); }
// Clear DRTIOAUX buffer
while !matches!(drtioaux::recv(linkno), Ok(None)) {}
}
}
} else {
/* link was previously down */
#[cfg(has_drtio_eem)]
if DRTIO_EEM_LINKNOS.contains(&(linkno as usize)) {
let eem_trx_no = linkno - DRTIO_EEM_LINKNOS.start as u8;
if !unsafe { drtio_eem::align_wordslip(eem_trx_no) } {
continue;
}
unsafe {
csr::eem_transceiver::rx_ready_write(1);
}
}
if link_rx_up(linkno) {
info!("[LINK#{}] link RX became up, pinging", linkno);
let ping_count = ping_remote(&io, aux_mutex, linkno);