2022-05-03 16:16:37 +02:00
|
|
|
use core::convert::TryInto;
|
|
|
|
use core::ptr::write_volatile;
|
2022-12-23 20:46:49 +01:00
|
|
|
use core::sync::atomic::{fence, Ordering};
|
2022-05-03 16:16:37 +02:00
|
|
|
|
2023-03-30 08:32:36 +02:00
|
|
|
use super::{FlashRegion, FlashSector, FLASH_REGIONS, WRITE_SIZE};
|
2022-05-03 16:16:37 +02:00
|
|
|
use crate::flash::Error;
|
|
|
|
use crate::pac;
|
|
|
|
|
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-03-29 11:31:45 +02:00
|
|
|
|
2022-05-03 16:16:37 +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_key(0x4567_0123));
|
|
|
|
pac::FLASH.keyr().write(|w| w.set_key(0xCDEF_89AB));
|
|
|
|
}
|
|
|
|
|
2023-03-25 16:04:45 +01:00
|
|
|
pub(crate) unsafe fn begin_write() {
|
|
|
|
assert_eq!(0, WRITE_SIZE % 4);
|
|
|
|
|
2022-05-03 16:16:37 +02:00
|
|
|
pac::FLASH.cr().write(|w| {
|
|
|
|
w.set_pg(true);
|
|
|
|
w.set_psize(pac::flash::vals::Psize::PSIZE32);
|
|
|
|
});
|
2023-03-25 16:04:45 +01:00
|
|
|
}
|
2022-05-03 16:16:37 +02:00
|
|
|
|
2023-03-25 16:04:45 +01:00
|
|
|
pub(crate) unsafe fn end_write() {
|
|
|
|
pac::FLASH.cr().write(|w| w.set_pg(false));
|
|
|
|
}
|
2022-05-03 16:16:37 +02:00
|
|
|
|
2023-03-25 16:04:45 +01:00
|
|
|
pub(crate) unsafe fn blocking_write(start_address: u32, buf: &[u8; WRITE_SIZE]) -> Result<(), Error> {
|
|
|
|
let mut address = start_address;
|
|
|
|
for val in buf.chunks(4) {
|
|
|
|
write_volatile(address as *mut u32, u32::from_le_bytes(val.try_into().unwrap()));
|
|
|
|
address += val.len() as u32;
|
2022-05-03 16:16:37 +02:00
|
|
|
|
2023-03-25 16:04:45 +01:00
|
|
|
// prevents parallelism errors
|
|
|
|
fence(Ordering::SeqCst);
|
|
|
|
}
|
2022-05-03 16:16:37 +02:00
|
|
|
|
2023-03-25 16:04:45 +01:00
|
|
|
blocking_wait_ready()
|
2022-05-03 16:16:37 +02:00
|
|
|
}
|
|
|
|
|
2023-03-29 13:37:10 +02:00
|
|
|
pub(crate) unsafe fn blocking_erase_sector(sector: &FlashSector) -> Result<(), Error> {
|
2022-05-03 16:16:37 +02:00
|
|
|
pac::FLASH.cr().modify(|w| {
|
|
|
|
w.set_ser(true);
|
2023-03-30 08:32:36 +02:00
|
|
|
w.set_snb(sector.index_in_bank)
|
2022-05-03 16:16:37 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
pac::FLASH.cr().modify(|w| {
|
|
|
|
w.set_strt(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
let ret: Result<(), Error> = blocking_wait_ready();
|
|
|
|
|
|
|
|
pac::FLASH.cr().modify(|w| w.set_ser(false));
|
|
|
|
|
|
|
|
clear_all_err();
|
|
|
|
|
|
|
|
ret
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) unsafe fn clear_all_err() {
|
|
|
|
pac::FLASH.sr().modify(|w| {
|
|
|
|
if w.erserr() {
|
|
|
|
w.set_erserr(true);
|
|
|
|
}
|
|
|
|
if w.pgperr() {
|
|
|
|
w.set_pgperr(true);
|
|
|
|
}
|
|
|
|
if w.pgaerr() {
|
|
|
|
w.set_pgaerr(true);
|
|
|
|
}
|
|
|
|
if w.wrperr() {
|
|
|
|
w.set_wrperr(true);
|
|
|
|
}
|
|
|
|
if w.eop() {
|
|
|
|
w.set_eop(true);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-03-25 16:04:45 +01:00
|
|
|
unsafe fn blocking_wait_ready() -> Result<(), Error> {
|
2022-05-03 16:16:37 +02:00
|
|
|
loop {
|
|
|
|
let sr = pac::FLASH.sr().read();
|
|
|
|
|
|
|
|
if !sr.bsy() {
|
|
|
|
if sr.erserr() {
|
|
|
|
return Err(Error::Seq);
|
|
|
|
}
|
|
|
|
|
|
|
|
if sr.pgperr() {
|
|
|
|
return Err(Error::Parallelism);
|
|
|
|
}
|
|
|
|
|
|
|
|
if sr.pgaerr() {
|
|
|
|
return Err(Error::Unaligned);
|
|
|
|
}
|
|
|
|
|
|
|
|
if sr.wrperr() {
|
|
|
|
return Err(Error::Protected);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-03-29 11:31:45 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2023-03-30 08:32:36 +02:00
|
|
|
use crate::flash::{get_sector, FlashBank};
|
2023-03-29 11:31:45 +02:00
|
|
|
|
|
|
|
#[test]
|
2023-03-30 08:32:36 +02:00
|
|
|
#[cfg(stm32f732)]
|
2023-03-29 11:31:45 +02:00
|
|
|
fn can_get_sector() {
|
2023-03-30 08:32:36 +02:00
|
|
|
const SMALL_SECTOR_SIZE: u32 = 16 * 1024;
|
|
|
|
const MEDIUM_SECTOR_SIZE: u32 = 64 * 1024;
|
|
|
|
const LARGE_SECTOR_SIZE: u32 = 128 * 1024;
|
|
|
|
|
|
|
|
let assert_sector = |index_in_bank: u8, start: u32, size: u32, address: u32| {
|
|
|
|
assert_eq!(
|
|
|
|
FlashSector {
|
|
|
|
bank: FlashBank::Bank1,
|
|
|
|
index_in_bank,
|
|
|
|
start,
|
|
|
|
size
|
|
|
|
},
|
|
|
|
get_sector(address, &FLASH_REGIONS)
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_sector(0, 0x0800_0000, SMALL_SECTOR_SIZE, 0x0800_0000);
|
|
|
|
assert_sector(0, 0x0800_0000, SMALL_SECTOR_SIZE, 0x0800_3FFF);
|
|
|
|
assert_sector(3, 0x0800_C000, SMALL_SECTOR_SIZE, 0x0800_C000);
|
|
|
|
assert_sector(3, 0x0800_C000, SMALL_SECTOR_SIZE, 0x0800_FFFF);
|
|
|
|
|
|
|
|
assert_sector(4, 0x0801_0000, MEDIUM_SECTOR_SIZE, 0x0801_0000);
|
|
|
|
assert_sector(4, 0x0801_0000, MEDIUM_SECTOR_SIZE, 0x0801_FFFF);
|
|
|
|
|
|
|
|
assert_sector(5, 0x0802_0000, LARGE_SECTOR_SIZE, 0x0802_0000);
|
|
|
|
assert_sector(5, 0x0802_0000, LARGE_SECTOR_SIZE, 0x0803_FFFF);
|
|
|
|
assert_sector(7, 0x0806_0000, LARGE_SECTOR_SIZE, 0x0806_0000);
|
|
|
|
assert_sector(7, 0x0806_0000, LARGE_SECTOR_SIZE, 0x0807_FFFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(stm32f769)]
|
|
|
|
fn can_get_sector() {
|
|
|
|
const SMALL_SECTOR_SIZE: u32 = 32 * 1024;
|
|
|
|
const MEDIUM_SECTOR_SIZE: u32 = 128 * 1024;
|
|
|
|
const LARGE_SECTOR_SIZE: u32 = 256 * 1024;
|
|
|
|
|
|
|
|
let assert_sector = |index_in_bank: u8, start: u32, size: u32, address: u32| {
|
|
|
|
assert_eq!(
|
|
|
|
FlashSector {
|
|
|
|
bank: FlashBank::Bank1,
|
|
|
|
index_in_bank,
|
|
|
|
start,
|
|
|
|
size
|
|
|
|
},
|
|
|
|
get_sector(address, &FLASH_REGIONS)
|
|
|
|
)
|
2023-03-29 11:31:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
assert_sector(0, 0x0800_0000, SMALL_SECTOR_SIZE, 0x0800_0000);
|
|
|
|
assert_sector(0, 0x0800_0000, SMALL_SECTOR_SIZE, 0x0800_7FFF);
|
|
|
|
assert_sector(3, 0x0801_8000, SMALL_SECTOR_SIZE, 0x0801_8000);
|
|
|
|
assert_sector(3, 0x0801_8000, SMALL_SECTOR_SIZE, 0x0801_FFFF);
|
|
|
|
|
|
|
|
assert_sector(4, 0x0802_0000, MEDIUM_SECTOR_SIZE, 0x0802_0000);
|
|
|
|
assert_sector(4, 0x0802_0000, MEDIUM_SECTOR_SIZE, 0x0803_FFFF);
|
|
|
|
|
|
|
|
assert_sector(5, 0x0804_0000, LARGE_SECTOR_SIZE, 0x0804_0000);
|
|
|
|
assert_sector(5, 0x0804_0000, LARGE_SECTOR_SIZE, 0x0807_FFFF);
|
|
|
|
assert_sector(7, 0x080C_0000, LARGE_SECTOR_SIZE, 0x080C_0000);
|
|
|
|
assert_sector(7, 0x080C_0000, LARGE_SECTOR_SIZE, 0x080F_FFFF);
|
|
|
|
}
|
|
|
|
}
|