2022-05-02 15:36:02 +02:00
|
|
|
use core::convert::TryInto;
|
|
|
|
use core::ptr::write_volatile;
|
|
|
|
|
2023-03-25 16:04:45 +01:00
|
|
|
use atomic_polyfill::{fence, Ordering};
|
|
|
|
|
2023-03-30 08:32:36 +02:00
|
|
|
use super::{FlashRegion, FlashSector, FLASH_REGIONS, WRITE_SIZE};
|
2022-05-02 15:36:02 +02:00
|
|
|
use crate::flash::Error;
|
|
|
|
use crate::pac;
|
|
|
|
|
2023-05-23 22:50:41 +02:00
|
|
|
pub const fn set_default_layout() {}
|
|
|
|
|
2023-03-31 15:47:45 +02:00
|
|
|
pub const fn get_flash_regions() -> &'static [&'static FlashRegion] {
|
2023-03-30 08:32:36 +02:00
|
|
|
&FLASH_REGIONS
|
|
|
|
}
|
|
|
|
|
2023-05-24 12:17:12 +02:00
|
|
|
pub(crate) unsafe fn on_interrupt(_: *mut ()) {
|
|
|
|
unimplemented!();
|
|
|
|
}
|
|
|
|
|
2022-05-02 15:36:02 +02:00
|
|
|
pub(crate) unsafe fn lock() {
|
|
|
|
pac::FLASH.cr().modify(|w| w.set_lock(true));
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) unsafe fn unlock() {
|
|
|
|
pac::FLASH.keyr().write(|w| w.set_fkeyr(0x4567_0123));
|
|
|
|
pac::FLASH.keyr().write(|w| w.set_fkeyr(0xCDEF_89AB));
|
|
|
|
}
|
|
|
|
|
2023-05-24 12:17:12 +02:00
|
|
|
pub(crate) unsafe fn enable_blocking_write() {
|
2023-03-25 16:04:45 +01:00
|
|
|
assert_eq!(0, WRITE_SIZE % 2);
|
2022-05-02 15:36:02 +02:00
|
|
|
|
2023-03-25 16:04:45 +01:00
|
|
|
pac::FLASH.cr().write(|w| w.set_pg(true));
|
|
|
|
}
|
2022-05-02 15:36:02 +02:00
|
|
|
|
2023-05-24 12:17:12 +02:00
|
|
|
pub(crate) unsafe fn disable_blocking_write() {
|
2022-05-02 15:36:02 +02:00
|
|
|
pac::FLASH.cr().write(|w| w.set_pg(false));
|
2023-03-25 16:04:45 +01:00
|
|
|
}
|
2022-05-02 15:36:02 +02:00
|
|
|
|
2023-05-24 12:17:12 +02:00
|
|
|
pub(crate) unsafe fn write_blocking(start_address: u32, buf: &[u8; WRITE_SIZE]) -> Result<(), Error> {
|
2023-03-25 16:04:45 +01:00
|
|
|
let mut address = start_address;
|
|
|
|
for chunk in buf.chunks(2) {
|
|
|
|
write_volatile(address as *mut u16, u16::from_le_bytes(chunk.try_into().unwrap()));
|
|
|
|
address += chunk.len() as u32;
|
|
|
|
|
|
|
|
// prevents parallelism errors
|
|
|
|
fence(Ordering::SeqCst);
|
|
|
|
}
|
|
|
|
|
2023-05-24 12:17:12 +02:00
|
|
|
wait_ready_blocking()
|
2022-05-02 15:36:02 +02:00
|
|
|
}
|
|
|
|
|
2023-05-24 12:17:12 +02:00
|
|
|
pub(crate) unsafe fn erase_sector_blocking(sector: &FlashSector) -> Result<(), Error> {
|
2023-03-29 13:37:10 +02:00
|
|
|
pac::FLASH.cr().modify(|w| {
|
|
|
|
w.set_per(true);
|
|
|
|
});
|
2022-05-02 15:36:02 +02:00
|
|
|
|
2023-03-30 06:01:56 +02:00
|
|
|
pac::FLASH.ar().write(|w| w.set_far(sector.start));
|
2022-05-02 15:36:02 +02:00
|
|
|
|
2023-03-29 13:37:10 +02:00
|
|
|
pac::FLASH.cr().modify(|w| {
|
|
|
|
w.set_strt(true);
|
|
|
|
});
|
2022-05-02 15:36:02 +02:00
|
|
|
|
2023-05-24 12:17:12 +02:00
|
|
|
let mut ret: Result<(), Error> = wait_ready_blocking();
|
2022-05-02 15:36:02 +02:00
|
|
|
|
2023-03-29 13:37:10 +02:00
|
|
|
if !pac::FLASH.sr().read().eop() {
|
|
|
|
trace!("FLASH: EOP not set");
|
|
|
|
ret = Err(Error::Prog);
|
|
|
|
} else {
|
|
|
|
pac::FLASH.sr().write(|w| w.set_eop(true));
|
|
|
|
}
|
2022-05-02 15:36:02 +02:00
|
|
|
|
2023-03-29 13:37:10 +02:00
|
|
|
pac::FLASH.cr().modify(|w| w.set_per(false));
|
2022-05-02 15:36:02 +02:00
|
|
|
|
2023-03-29 13:37:10 +02:00
|
|
|
clear_all_err();
|
|
|
|
if ret.is_err() {
|
|
|
|
return ret;
|
2022-05-02 15:36:02 +02:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) unsafe fn clear_all_err() {
|
|
|
|
pac::FLASH.sr().modify(|w| {
|
|
|
|
if w.pgerr() {
|
|
|
|
w.set_pgerr(true);
|
|
|
|
}
|
|
|
|
if w.wrprterr() {
|
|
|
|
w.set_wrprterr(true);
|
|
|
|
}
|
|
|
|
if w.eop() {
|
|
|
|
w.set_eop(true);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-05-24 12:17:12 +02:00
|
|
|
unsafe fn wait_ready_blocking() -> Result<(), Error> {
|
2022-05-02 15:36:02 +02:00
|
|
|
loop {
|
|
|
|
let sr = pac::FLASH.sr().read();
|
|
|
|
|
|
|
|
if !sr.bsy() {
|
|
|
|
if sr.wrprterr() {
|
|
|
|
return Err(Error::Protected);
|
|
|
|
}
|
|
|
|
|
|
|
|
if sr.pgerr() {
|
|
|
|
return Err(Error::Seq);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|