pub mod erase_flash;
pub mod ram_command;
pub mod read_flash;
pub mod reset;
pub mod sifli_debug;
pub mod speed;
pub mod write_flash;
use crate::common::sifli_debug::SifliDebug;
use crate::sf32lb52::ram_command::DownloadStub;
use crate::{SifliTool, SifliToolBase, SifliToolTrait};
use serialport::SerialPort;
use std::time::Duration;
pub struct SF32LB52Tool {
pub base: SifliToolBase,
pub port: Box<dyn SerialPort>,
}
unsafe impl Send for SF32LB52Tool {}
unsafe impl Sync for SF32LB52Tool {}
impl SF32LB52Tool {
pub fn internal_erase_all(&mut self, address: u32) -> Result<(), std::io::Error> {
use ram_command::{Command, RamCommand};
let progress = self.progress();
let spinner =
progress.create_spinner(format!("Erasing entire flash at 0x{:08X}...", address));
let _ = self.command(Command::EraseAll { address });
let mut buffer = Vec::new();
let now = std::time::SystemTime::now();
loop {
let elapsed = now.elapsed().unwrap().as_millis();
if elapsed > 30000 {
tracing::error!("response string is {}", String::from_utf8_lossy(&buffer));
return Err(std::io::Error::new(
std::io::ErrorKind::TimedOut,
"Erase timeout",
));
}
let mut byte = [0];
let ret = self.port().read_exact(&mut byte);
if ret.is_err() {
continue;
}
buffer.push(byte[0]);
if buffer.windows(2).any(|window| window == b"OK") {
break;
}
}
spinner.finish_with_message(format!("Erase flash successfully: 0x{:08X}", address));
Ok(())
}
pub fn internal_erase_region(&mut self, address: u32, len: u32) -> Result<(), std::io::Error> {
use ram_command::{Command, RamCommand};
let progress = self.progress();
let spinner =
progress.create_spinner(format!("Erasing entire flash at 0x{:08X}...", address));
let _ = self.command(Command::Erase { address, len });
let mut buffer = Vec::new();
let now = std::time::SystemTime::now();
let timeout_ms = (len as u128 / (4 * 1024) + 1) * 800; tracing::info!(
"Erase region at 0x{:08X} with length 0x{:08X}, timeout: {} ms",
address,
len,
timeout_ms
);
loop {
let elapsed = now.elapsed().unwrap().as_millis();
if elapsed > timeout_ms {
tracing::error!("response string is {}", String::from_utf8_lossy(&buffer));
return Err(std::io::Error::new(
std::io::ErrorKind::TimedOut,
"Erase timeout",
));
}
let mut byte = [0];
let ret = self.port().read_exact(&mut byte);
if ret.is_err() {
continue;
}
buffer.push(byte[0]);
if buffer.windows(2).any(|window| window == b"OK") {
break;
}
}
spinner.finish_with_message(format!(
"Erase region successfully: 0x{:08X} (length: {} bytes)",
address, len
));
Ok(())
}
fn attempt_connect(&mut self) -> Result<(), std::io::Error> {
use crate::Operation;
use crate::common::sifli_debug::{SifliUartCommand, SifliUartResponse};
let infinite_attempts = self.base.connect_attempts <= 0;
let mut remaining_attempts = if infinite_attempts {
None
} else {
Some(self.base.connect_attempts)
};
loop {
if self.base.before == Operation::DefaultReset {
self.port.write_request_to_send(true)?;
std::thread::sleep(Duration::from_millis(100));
self.port.write_request_to_send(false)?;
std::thread::sleep(Duration::from_millis(100));
}
let value = match self.debug_command(SifliUartCommand::Enter) {
Ok(SifliUartResponse::Enter) => Ok(()),
_ => Err(std::io::Error::new(
std::io::ErrorKind::Other,
"Failed to enter debug mode",
)),
};
if let Some(ref mut attempts) = remaining_attempts {
if *attempts == 0 {
break; }
*attempts -= 1;
}
let progress = self.progress();
let spinner = progress.create_spinner("Connecting to chip...");
match value {
Ok(_) => {
spinner.finish_with_message("Connected success!");
return Ok(());
}
Err(_) => {
spinner.finish_with_message("Failed to connect to the chip, retrying...");
std::thread::sleep(Duration::from_millis(500));
}
}
}
Err(std::io::Error::new(
std::io::ErrorKind::Other,
"Failed to connect to the chip",
))
}
fn download_stub_impl(&mut self) -> Result<(), std::io::Error> {
use crate::common::sifli_debug::SifliUartCommand;
use crate::ram_stub::{self, CHIP_FILE_NAME};
use probe_rs::MemoryMappedRegister;
use probe_rs::architecture::arm::core::armv7m::{Aircr, Demcr};
use probe_rs::architecture::arm::core::registers::cortex_m::{PC, SP};
let progress = self.progress();
let spinner = progress.create_spinner("Download stub...");
let demcr = self.debug_read_word32(Demcr::get_mmio_address() as u32)?;
let mut demcr = Demcr(demcr);
demcr.set_vc_corereset(true);
self.debug_write_word32(Demcr::get_mmio_address() as u32, demcr.into())?;
let mut aircr = Aircr(0);
aircr.vectkey();
aircr.set_sysresetreq(true);
let _ = self.debug_write_word32(Aircr::get_mmio_address() as u32, aircr.into()); std::thread::sleep(std::time::Duration::from_millis(10));
self.debug_command(SifliUartCommand::Enter)?;
self.debug_halt()?;
let demcr = self.debug_read_word32(Demcr::get_mmio_address() as u32)?;
let mut demcr = Demcr(demcr);
demcr.set_vc_corereset(false);
self.debug_write_word32(Demcr::get_mmio_address() as u32, demcr.into())?;
std::thread::sleep(std::time::Duration::from_millis(100));
let stub = ram_stub::RamStubFile::get(
CHIP_FILE_NAME
.get(format!("sf32lb52_{}", self.base.memory_type).as_str())
.expect("REASON"),
);
let Some(stub) = stub else {
spinner.finish_with_message("No stub file found for the given chip and memory type");
return Err(std::io::Error::new(
std::io::ErrorKind::NotFound,
"No stub file found for the given chip and memory type",
));
};
let packet_size = if self.base.compat { 256 } else { 64 * 1024 };
let mut addr = 0x2005_A000;
let mut data = &stub.data[..];
while !data.is_empty() {
let chunk = &data[..std::cmp::min(data.len(), packet_size)];
self.debug_write_memory(addr, chunk)?;
addr += chunk.len() as u32;
data = &data[chunk.len()..];
}
let bkp0r_addr = 0x500cb000 + 0x30;
let bkp0r_value = 0xA640;
self.debug_write_word32(bkp0r_addr, bkp0r_value)?;
let gpio_dosr0_addr = 0x500a0008;
let mut gpio_dosr0_value = self.debug_read_word32(gpio_dosr0_addr)?;
gpio_dosr0_value |= 1 << 21;
self.debug_write_word32(gpio_dosr0_addr, gpio_dosr0_value)?;
let sp = u32::from_le_bytes(
stub.data[0..4]
.try_into()
.expect("slice with exactly 4 bytes"),
);
let pc = u32::from_le_bytes(
stub.data[4..8]
.try_into()
.expect("slice with exactly 4 bytes"),
);
self.debug_write_core_reg(PC.id.0, pc)?;
self.debug_write_core_reg(SP.id.0, sp)?;
self.debug_run()?;
spinner.finish_with_message("Download stub success!");
Ok(())
}
}
impl SifliTool for SF32LB52Tool {
fn create_tool(base: SifliToolBase) -> Box<dyn SifliTool> {
let mut port = serialport::new(&base.port_name, 1000000)
.timeout(Duration::from_secs(5))
.open()
.unwrap();
port.write_request_to_send(false).unwrap();
std::thread::sleep(Duration::from_millis(100));
let mut tool = Box::new(Self { base, port });
tool.download_stub().expect("Failed to download stub");
tool
}
}
impl SifliToolTrait for SF32LB52Tool {
fn port(&mut self) -> &mut Box<dyn SerialPort> {
&mut self.port
}
fn base(&self) -> &SifliToolBase {
&self.base
}
fn set_speed(&mut self, baud: u32) -> Result<(), std::io::Error> {
use crate::speed::SpeedTrait;
SpeedTrait::set_speed(self, baud)
}
fn soft_reset(&mut self) -> Result<(), std::io::Error> {
use crate::reset::Reset;
Reset::soft_reset(self)
}
}