forked from M-Labs/artiq
runtime mgmt: reorganize uses
This commit is contained in:
parent
33642a3c47
commit
dd7ac81b28
|
@ -1,6 +1,6 @@
|
||||||
use core::cell::RefCell;
|
use core::cell::RefCell;
|
||||||
|
|
||||||
use board_artiq::drtio_routing;
|
use board_artiq::drtio_routing::RoutingTable;
|
||||||
use io::{ProtoRead, Write, Error as IoError};
|
use io::{ProtoRead, Write, Error as IoError};
|
||||||
use mgmt_proto::*;
|
use mgmt_proto::*;
|
||||||
use sched::{Io, Mutex, TcpListener, TcpStream, Error as SchedError};
|
use sched::{Io, Mutex, TcpListener, TcpStream, Error as SchedError};
|
||||||
|
@ -19,10 +19,10 @@ mod local_coremgmt {
|
||||||
use log::LevelFilter;
|
use log::LevelFilter;
|
||||||
|
|
||||||
use board_misoc::{config, mem, spiflash};
|
use board_misoc::{config, mem, spiflash};
|
||||||
use io::{Write, ProtoWrite, Error as IoError};
|
use io::ProtoWrite;
|
||||||
use logger_artiq::BufferLogger;
|
use logger_artiq::BufferLogger;
|
||||||
use mgmt_proto::{Error, Reply};
|
|
||||||
use sched::{Io, TcpStream, Error as SchedError};
|
use super::*;
|
||||||
|
|
||||||
|
|
||||||
pub fn get_log(io: &Io, stream: &mut TcpStream) -> Result<(), Error<SchedError>> {
|
pub fn get_log(io: &Io, stream: &mut TcpStream) -> Result<(), Error<SchedError>> {
|
||||||
|
@ -177,13 +177,12 @@ mod remote_coremgmt {
|
||||||
use alloc::{string::String, vec::Vec};
|
use alloc::{string::String, vec::Vec};
|
||||||
use log::LevelFilter;
|
use log::LevelFilter;
|
||||||
|
|
||||||
use board_artiq::{drtioaux, drtioaux::Packet, drtio_routing};
|
use board_artiq::{drtioaux, drtioaux::Packet};
|
||||||
use io::{Cursor, ProtoWrite};
|
use io::ProtoWrite;
|
||||||
use mgmt_proto::{Error, Reply};
|
|
||||||
use rtio_mgt::drtio;
|
use rtio_mgt::drtio;
|
||||||
use sched::{Io, Mutex, TcpStream, Error as SchedError};
|
|
||||||
use proto_artiq::drtioaux_proto::MASTER_PAYLOAD_MAX_SIZE;
|
use proto_artiq::drtioaux_proto::MASTER_PAYLOAD_MAX_SIZE;
|
||||||
|
|
||||||
|
use super::*;
|
||||||
|
|
||||||
impl From<drtio::Error> for Error<SchedError> {
|
impl From<drtio::Error> for Error<SchedError> {
|
||||||
fn from(_value: drtio::Error) -> Error<SchedError> {
|
fn from(_value: drtio::Error) -> Error<SchedError> {
|
||||||
|
@ -193,7 +192,7 @@ mod remote_coremgmt {
|
||||||
|
|
||||||
pub fn get_log(io: &Io, aux_mutex: &Mutex,
|
pub fn get_log(io: &Io, aux_mutex: &Mutex,
|
||||||
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
||||||
routing_table: &drtio_routing::RoutingTable, linkno: u8,
|
routing_table: &RoutingTable, linkno: u8,
|
||||||
destination: u8, stream: &mut TcpStream) -> Result<(), Error<SchedError>> {
|
destination: u8, stream: &mut TcpStream) -> Result<(), Error<SchedError>> {
|
||||||
let mut buffer = String::new();
|
let mut buffer = String::new();
|
||||||
loop {
|
loop {
|
||||||
|
@ -226,7 +225,7 @@ mod remote_coremgmt {
|
||||||
|
|
||||||
pub fn clear_log(io: &Io, aux_mutex: &Mutex,
|
pub fn clear_log(io: &Io, aux_mutex: &Mutex,
|
||||||
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
||||||
routing_table: &drtio_routing::RoutingTable, linkno: u8,
|
routing_table: &RoutingTable, linkno: u8,
|
||||||
destination: u8, stream: &mut TcpStream) -> Result<(), Error<SchedError>> {
|
destination: u8, stream: &mut TcpStream) -> Result<(), Error<SchedError>> {
|
||||||
let reply = drtio::aux_transact(io, aux_mutex, ddma_mutex, subkernel_mutex, routing_table, linkno,
|
let reply = drtio::aux_transact(io, aux_mutex, ddma_mutex, subkernel_mutex, routing_table, linkno,
|
||||||
&Packet::CoreMgmtClearLogRequest { destination }
|
&Packet::CoreMgmtClearLogRequest { destination }
|
||||||
|
@ -252,7 +251,7 @@ mod remote_coremgmt {
|
||||||
|
|
||||||
pub fn pull_log(io: &Io, aux_mutex: &Mutex,
|
pub fn pull_log(io: &Io, aux_mutex: &Mutex,
|
||||||
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
||||||
routing_table: &drtio_routing::RoutingTable, linkno: u8,
|
routing_table: &RoutingTable, linkno: u8,
|
||||||
destination: u8, stream: &mut TcpStream) -> Result<(), Error<SchedError>> {
|
destination: u8, stream: &mut TcpStream) -> Result<(), Error<SchedError>> {
|
||||||
loop {
|
loop {
|
||||||
let reply = drtio::aux_transact(io, aux_mutex, ddma_mutex, subkernel_mutex, routing_table, linkno,
|
let reply = drtio::aux_transact(io, aux_mutex, ddma_mutex, subkernel_mutex, routing_table, linkno,
|
||||||
|
@ -277,7 +276,7 @@ mod remote_coremgmt {
|
||||||
|
|
||||||
pub fn set_log_filter(io: &Io, aux_mutex: &Mutex,
|
pub fn set_log_filter(io: &Io, aux_mutex: &Mutex,
|
||||||
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
||||||
routing_table: &drtio_routing::RoutingTable, linkno: u8,
|
routing_table: &RoutingTable, linkno: u8,
|
||||||
destination: u8, stream: &mut TcpStream, level: LevelFilter) -> Result<(), Error<SchedError>> {
|
destination: u8, stream: &mut TcpStream, level: LevelFilter) -> Result<(), Error<SchedError>> {
|
||||||
let reply = drtio::aux_transact(io, aux_mutex, ddma_mutex, subkernel_mutex, routing_table, linkno,
|
let reply = drtio::aux_transact(io, aux_mutex, ddma_mutex, subkernel_mutex, routing_table, linkno,
|
||||||
&Packet::CoreMgmtSetLogLevelRequest { destination, log_level: level as u8 }
|
&Packet::CoreMgmtSetLogLevelRequest { destination, log_level: level as u8 }
|
||||||
|
@ -303,7 +302,7 @@ mod remote_coremgmt {
|
||||||
|
|
||||||
pub fn set_uart_log_filter(io: &Io, aux_mutex: &Mutex,
|
pub fn set_uart_log_filter(io: &Io, aux_mutex: &Mutex,
|
||||||
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
||||||
routing_table: &drtio_routing::RoutingTable, linkno: u8,
|
routing_table: &RoutingTable, linkno: u8,
|
||||||
destination: u8, stream: &mut TcpStream, level: LevelFilter) -> Result<(), Error<SchedError>> {
|
destination: u8, stream: &mut TcpStream, level: LevelFilter) -> Result<(), Error<SchedError>> {
|
||||||
let reply = drtio::aux_transact(io, aux_mutex, ddma_mutex, subkernel_mutex, routing_table, linkno,
|
let reply = drtio::aux_transact(io, aux_mutex, ddma_mutex, subkernel_mutex, routing_table, linkno,
|
||||||
&Packet::CoreMgmtSetUartLogLevelRequest { destination, log_level: level as u8 }
|
&Packet::CoreMgmtSetUartLogLevelRequest { destination, log_level: level as u8 }
|
||||||
|
@ -329,7 +328,7 @@ mod remote_coremgmt {
|
||||||
|
|
||||||
pub fn config_read(io: &Io, aux_mutex: &Mutex,
|
pub fn config_read(io: &Io, aux_mutex: &Mutex,
|
||||||
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
||||||
routing_table: &drtio_routing::RoutingTable, linkno: u8,
|
routing_table: &RoutingTable, linkno: u8,
|
||||||
destination: u8, stream: &mut TcpStream, key: &String) -> Result<(), Error<SchedError>> {
|
destination: u8, stream: &mut TcpStream, key: &String) -> Result<(), Error<SchedError>> {
|
||||||
let mut config_key: [u8; MASTER_PAYLOAD_MAX_SIZE] = [0; MASTER_PAYLOAD_MAX_SIZE];
|
let mut config_key: [u8; MASTER_PAYLOAD_MAX_SIZE] = [0; MASTER_PAYLOAD_MAX_SIZE];
|
||||||
let len = key.len();
|
let len = key.len();
|
||||||
|
@ -376,7 +375,7 @@ mod remote_coremgmt {
|
||||||
|
|
||||||
pub fn config_write(io: &Io, aux_mutex: &Mutex,
|
pub fn config_write(io: &Io, aux_mutex: &Mutex,
|
||||||
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
||||||
routing_table: &drtio_routing::RoutingTable, linkno: u8,
|
routing_table: &RoutingTable, linkno: u8,
|
||||||
destination: u8, stream: &mut TcpStream, key: &String, value: &Vec<u8>) -> Result<(), Error<SchedError>> {
|
destination: u8, stream: &mut TcpStream, key: &String, value: &Vec<u8>) -> Result<(), Error<SchedError>> {
|
||||||
let mut message = Vec::with_capacity(key.len() + value.len() + 4 * 2);
|
let mut message = Vec::with_capacity(key.len() + value.len() + 4 * 2);
|
||||||
message.write_string(key).unwrap();
|
message.write_string(key).unwrap();
|
||||||
|
@ -411,7 +410,7 @@ mod remote_coremgmt {
|
||||||
|
|
||||||
pub fn config_remove(io: &Io, aux_mutex: &Mutex,
|
pub fn config_remove(io: &Io, aux_mutex: &Mutex,
|
||||||
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
||||||
routing_table: &drtio_routing::RoutingTable, linkno: u8,
|
routing_table: &RoutingTable, linkno: u8,
|
||||||
destination: u8, stream: &mut TcpStream, key: &String) -> Result<(), Error<SchedError>> {
|
destination: u8, stream: &mut TcpStream, key: &String) -> Result<(), Error<SchedError>> {
|
||||||
let mut config_key: [u8; MASTER_PAYLOAD_MAX_SIZE] = [0; MASTER_PAYLOAD_MAX_SIZE];
|
let mut config_key: [u8; MASTER_PAYLOAD_MAX_SIZE] = [0; MASTER_PAYLOAD_MAX_SIZE];
|
||||||
let len = key.len();
|
let len = key.len();
|
||||||
|
@ -444,7 +443,7 @@ mod remote_coremgmt {
|
||||||
|
|
||||||
pub fn config_erase(io: &Io, aux_mutex: &Mutex,
|
pub fn config_erase(io: &Io, aux_mutex: &Mutex,
|
||||||
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
||||||
routing_table: &drtio_routing::RoutingTable, linkno: u8,
|
routing_table: &RoutingTable, linkno: u8,
|
||||||
destination: u8, stream: &mut TcpStream) -> Result<(), Error<SchedError>> {
|
destination: u8, stream: &mut TcpStream) -> Result<(), Error<SchedError>> {
|
||||||
let reply = drtio::aux_transact(io, aux_mutex, ddma_mutex, subkernel_mutex, routing_table, linkno,
|
let reply = drtio::aux_transact(io, aux_mutex, ddma_mutex, subkernel_mutex, routing_table, linkno,
|
||||||
&Packet::CoreMgmtConfigEraseRequest {
|
&Packet::CoreMgmtConfigEraseRequest {
|
||||||
|
@ -471,7 +470,7 @@ mod remote_coremgmt {
|
||||||
|
|
||||||
pub fn reboot(io: &Io, aux_mutex: &Mutex,
|
pub fn reboot(io: &Io, aux_mutex: &Mutex,
|
||||||
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
||||||
routing_table: &drtio_routing::RoutingTable, linkno: u8,
|
routing_table: &RoutingTable, linkno: u8,
|
||||||
destination: u8, stream: &mut TcpStream) -> Result<(), Error<SchedError>> {
|
destination: u8, stream: &mut TcpStream) -> Result<(), Error<SchedError>> {
|
||||||
let reply = drtio::aux_transact(io, aux_mutex, ddma_mutex, subkernel_mutex, routing_table, linkno,
|
let reply = drtio::aux_transact(io, aux_mutex, ddma_mutex, subkernel_mutex, routing_table, linkno,
|
||||||
&Packet::CoreMgmtRebootRequest {
|
&Packet::CoreMgmtRebootRequest {
|
||||||
|
@ -498,7 +497,7 @@ mod remote_coremgmt {
|
||||||
|
|
||||||
pub fn debug_allocator(io: &Io, aux_mutex: &Mutex,
|
pub fn debug_allocator(io: &Io, aux_mutex: &Mutex,
|
||||||
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
||||||
routing_table: &drtio_routing::RoutingTable, linkno: u8,
|
routing_table: &RoutingTable, linkno: u8,
|
||||||
destination: u8, _stream: &mut TcpStream) -> Result<(), Error<SchedError>> {
|
destination: u8, _stream: &mut TcpStream) -> Result<(), Error<SchedError>> {
|
||||||
let reply = drtio::aux_transact(io, aux_mutex, ddma_mutex, subkernel_mutex, routing_table, linkno,
|
let reply = drtio::aux_transact(io, aux_mutex, ddma_mutex, subkernel_mutex, routing_table, linkno,
|
||||||
&Packet::CoreMgmtAllocatorDebugRequest {
|
&Packet::CoreMgmtAllocatorDebugRequest {
|
||||||
|
@ -520,7 +519,7 @@ mod remote_coremgmt {
|
||||||
|
|
||||||
pub fn flash(io: &Io, aux_mutex: &Mutex,
|
pub fn flash(io: &Io, aux_mutex: &Mutex,
|
||||||
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
ddma_mutex: &Mutex, subkernel_mutex: &Mutex,
|
||||||
routing_table: &drtio_routing::RoutingTable, linkno: u8,
|
routing_table: &RoutingTable, linkno: u8,
|
||||||
destination: u8, stream: &mut TcpStream, image: &[u8]) -> Result<(), Error<SchedError>> {
|
destination: u8, stream: &mut TcpStream, image: &[u8]) -> Result<(), Error<SchedError>> {
|
||||||
|
|
||||||
match drtio::partition_data(&image, |slice, status, len: usize| {
|
match drtio::partition_data(&image, |slice, status, len: usize| {
|
||||||
|
@ -582,7 +581,7 @@ macro_rules! process {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn worker(io: &Io, _aux_mutex: &Mutex, _ddma_mutex: &Mutex, _subkernel_mutex: &Mutex,
|
fn worker(io: &Io, _aux_mutex: &Mutex, _ddma_mutex: &Mutex, _subkernel_mutex: &Mutex,
|
||||||
_routing_table: &drtio_routing::RoutingTable, stream: &mut TcpStream) -> Result<(), Error<SchedError>> {
|
_routing_table: &RoutingTable, stream: &mut TcpStream) -> Result<(), Error<SchedError>> {
|
||||||
read_magic(stream)?;
|
read_magic(stream)?;
|
||||||
let _destination = stream.read_u8()?;
|
let _destination = stream.read_u8()?;
|
||||||
Write::write_all(stream, "e".as_bytes())?;
|
Write::write_all(stream, "e".as_bytes())?;
|
||||||
|
@ -606,7 +605,7 @@ fn worker(io: &Io, _aux_mutex: &Mutex, _ddma_mutex: &Mutex, _subkernel_mutex: &M
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn thread(io: Io, aux_mutex: &Mutex, ddma_mutex: &Mutex, subkernel_mutex: &Mutex, routing_table: &Urc<RefCell<drtio_routing::RoutingTable>>) {
|
pub fn thread(io: Io, aux_mutex: &Mutex, ddma_mutex: &Mutex, subkernel_mutex: &Mutex, routing_table: &Urc<RefCell<RoutingTable>>) {
|
||||||
let listener = TcpListener::new(&io, 8192);
|
let listener = TcpListener::new(&io, 8192);
|
||||||
listener.listen(1380).expect("mgmt: cannot listen");
|
listener.listen(1380).expect("mgmt: cannot listen");
|
||||||
info!("management interface active");
|
info!("management interface active");
|
||||||
|
|
Loading…
Reference in New Issue