2022-01-24 12:54:09 +01:00
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
#![no_std]
|
2022-08-30 13:07:35 +02:00
|
|
|
#![warn(missing_docs)]
|
|
|
|
#![doc = include_str!("../../README.md")]
|
2022-01-24 12:54:09 +01:00
|
|
|
mod fmt;
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
use embedded_storage::nor_flash::{ErrorType, NorFlash, NorFlashError, NorFlashErrorKind, ReadNorFlash};
|
2022-01-24 12:54:09 +01:00
|
|
|
use embedded_storage_async::nor_flash::AsyncNorFlash;
|
|
|
|
|
2022-04-20 13:49:59 +02:00
|
|
|
const BOOT_MAGIC: u8 = 0xD0;
|
|
|
|
const SWAP_MAGIC: u8 = 0xF0;
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
/// A region in flash used by the bootloader.
|
2022-01-24 12:54:09 +01:00
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
|
|
pub struct Partition {
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Start of the flash region.
|
2022-01-24 12:54:09 +01:00
|
|
|
pub from: usize,
|
2022-08-30 13:07:35 +02:00
|
|
|
/// End of the flash region.
|
2022-01-24 12:54:09 +01:00
|
|
|
pub to: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Partition {
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Create a new partition with the provided range
|
2022-01-24 12:54:09 +01:00
|
|
|
pub const fn new(from: usize, to: usize) -> Self {
|
|
|
|
Self { from, to }
|
|
|
|
}
|
2022-08-30 13:07:35 +02:00
|
|
|
|
|
|
|
/// Return the length of the partition
|
2022-09-02 08:42:42 +02:00
|
|
|
#[allow(clippy::len_without_is_empty)]
|
2022-01-24 12:54:09 +01:00
|
|
|
pub const fn len(&self) -> usize {
|
|
|
|
self.to - self.from
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
/// The state of the bootloader after running prepare.
|
|
|
|
#[derive(PartialEq, Eq, Debug)]
|
2022-01-24 12:54:09 +01:00
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
|
|
pub enum State {
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Bootloader is ready to boot the active partition.
|
2022-01-24 12:54:09 +01:00
|
|
|
Boot,
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Bootloader has swapped the active partition with the dfu partition and will attempt boot.
|
2022-01-24 12:54:09 +01:00
|
|
|
Swap,
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Errors returned by bootloader
|
|
|
|
#[derive(PartialEq, Eq, Debug)]
|
2022-04-19 14:42:38 +02:00
|
|
|
pub enum BootError {
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Error from flash.
|
2022-04-19 14:42:38 +02:00
|
|
|
Flash(NorFlashErrorKind),
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Invalid bootloader magic
|
2022-01-24 12:54:09 +01:00
|
|
|
BadMagic,
|
|
|
|
}
|
|
|
|
|
2022-04-19 14:42:38 +02:00
|
|
|
impl<E> From<E> for BootError
|
|
|
|
where
|
|
|
|
E: NorFlashError,
|
|
|
|
{
|
2022-01-24 12:54:09 +01:00
|
|
|
fn from(error: E) -> Self {
|
2022-04-19 14:42:38 +02:00
|
|
|
BootError::Flash(error.kind())
|
2022-01-24 12:54:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Buffer aligned to 32 byte boundary, largest known alignment requirement for embassy-boot.
|
|
|
|
#[repr(align(32))]
|
|
|
|
pub struct AlignedBuffer<const N: usize>(pub [u8; N]);
|
|
|
|
|
|
|
|
impl<const N: usize> AsRef<[u8]> for AlignedBuffer<N> {
|
|
|
|
fn as_ref(&self) -> &[u8] {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<const N: usize> AsMut<[u8]> for AlignedBuffer<N> {
|
|
|
|
fn as_mut(&mut self) -> &mut [u8] {
|
|
|
|
&mut self.0
|
|
|
|
}
|
|
|
|
}
|
2022-04-19 14:42:38 +02:00
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Extension of the embedded-storage flash type information with block size and erase value.
|
|
|
|
pub trait Flash: NorFlash + ReadNorFlash {
|
|
|
|
/// The block size that should be used when writing to flash. For most builtin flashes, this is the same as the erase
|
|
|
|
/// size of the flash, but for external QSPI flash modules, this can be lower.
|
|
|
|
const BLOCK_SIZE: usize;
|
|
|
|
/// The erase value of the flash. Typically the default of 0xFF is used, but some flashes use a different value.
|
|
|
|
const ERASE_VALUE: u8 = 0xFF;
|
2022-04-19 14:42:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Trait defining the flash handles used for active and DFU partition
|
2022-08-30 13:07:35 +02:00
|
|
|
pub trait FlashConfig {
|
|
|
|
/// Flash type used for the state partition.
|
|
|
|
type STATE: Flash;
|
|
|
|
/// Flash type used for the active partition.
|
|
|
|
type ACTIVE: Flash;
|
|
|
|
/// Flash type used for the dfu partition.
|
|
|
|
type DFU: Flash;
|
2022-04-19 14:42:38 +02:00
|
|
|
|
|
|
|
/// Return flash instance used to write/read to/from active partition.
|
|
|
|
fn active(&mut self) -> &mut Self::ACTIVE;
|
|
|
|
/// Return flash instance used to write/read to/from dfu partition.
|
|
|
|
fn dfu(&mut self) -> &mut Self::DFU;
|
|
|
|
/// Return flash instance used to write/read to/from bootloader state.
|
|
|
|
fn state(&mut self) -> &mut Self::STATE;
|
|
|
|
}
|
|
|
|
|
2022-01-24 12:54:09 +01:00
|
|
|
/// BootLoader works with any flash implementing embedded_storage and can also work with
|
2022-04-20 13:49:59 +02:00
|
|
|
/// different page sizes and flash write sizes.
|
2022-08-30 13:07:35 +02:00
|
|
|
pub struct BootLoader {
|
2022-01-24 12:54:09 +01:00
|
|
|
// Page with current state of bootloader. The state partition has the following format:
|
2022-04-20 13:49:59 +02:00
|
|
|
// | Range | Description |
|
|
|
|
// | 0 - WRITE_SIZE | Magic indicating bootloader state. BOOT_MAGIC means boot, SWAP_MAGIC means swap. |
|
|
|
|
// | WRITE_SIZE - N | Progress index used while swapping or reverting |
|
2022-01-24 12:54:09 +01:00
|
|
|
state: Partition,
|
|
|
|
// Location of the partition which will be booted from
|
|
|
|
active: Partition,
|
|
|
|
// Location of the partition which will be swapped in when requested
|
|
|
|
dfu: Partition,
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
impl BootLoader {
|
|
|
|
/// Create a new instance of a bootloader with the given partitions.
|
|
|
|
///
|
|
|
|
/// - All partitions must be aligned with the PAGE_SIZE const generic parameter.
|
|
|
|
/// - The dfu partition must be at least PAGE_SIZE bigger than the active partition.
|
2022-01-24 12:54:09 +01:00
|
|
|
pub fn new(active: Partition, dfu: Partition, state: Partition) -> Self {
|
|
|
|
Self { active, dfu, state }
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Return the boot address for the active partition.
|
2022-01-24 12:54:09 +01:00
|
|
|
pub fn boot_address(&self) -> usize {
|
|
|
|
self.active.from
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Perform necessary boot preparations like swapping images.
|
|
|
|
///
|
|
|
|
/// The DFU partition is assumed to be 1 page bigger than the active partition for the swap
|
|
|
|
/// algorithm to work correctly.
|
|
|
|
///
|
|
|
|
/// SWAPPING
|
|
|
|
///
|
|
|
|
/// Assume a flash size of 3 pages for the active partition, and 4 pages for the DFU partition.
|
|
|
|
/// The swap index contains the copy progress, as to allow continuation of the copy process on
|
|
|
|
/// power failure. The index counter is represented within 1 or more pages (depending on total
|
|
|
|
/// flash size), where a page X is considered swapped if index at location (X + WRITE_SIZE)
|
|
|
|
/// contains a zero value. This ensures that index updates can be performed atomically and
|
|
|
|
/// avoid a situation where the wrong index value is set (page write size is "atomic").
|
|
|
|
///
|
|
|
|
/// +-----------+------------+--------+--------+--------+--------+
|
|
|
|
/// | Partition | Swap Index | Page 0 | Page 1 | Page 3 | Page 4 |
|
|
|
|
/// +-----------+------------+--------+--------+--------+--------+
|
|
|
|
/// | Active | 0 | 1 | 2 | 3 | - |
|
|
|
|
/// | DFU | 0 | 3 | 2 | 1 | X |
|
|
|
|
/// +-----------+-------+--------+--------+--------+--------+
|
|
|
|
///
|
|
|
|
/// The algorithm starts by copying 'backwards', and after the first step, the layout is
|
|
|
|
/// as follows:
|
|
|
|
///
|
|
|
|
/// +-----------+------------+--------+--------+--------+--------+
|
|
|
|
/// | Partition | Swap Index | Page 0 | Page 1 | Page 3 | Page 4 |
|
|
|
|
/// +-----------+------------+--------+--------+--------+--------+
|
|
|
|
/// | Active | 1 | 1 | 2 | 1 | - |
|
|
|
|
/// | DFU | 1 | 3 | 2 | 1 | 3 |
|
|
|
|
/// +-----------+------------+--------+--------+--------+--------+
|
|
|
|
///
|
|
|
|
/// The next iteration performs the same steps
|
|
|
|
///
|
|
|
|
/// +-----------+------------+--------+--------+--------+--------+
|
|
|
|
/// | Partition | Swap Index | Page 0 | Page 1 | Page 3 | Page 4 |
|
|
|
|
/// +-----------+------------+--------+--------+--------+--------+
|
|
|
|
/// | Active | 2 | 1 | 2 | 1 | - |
|
|
|
|
/// | DFU | 2 | 3 | 2 | 2 | 3 |
|
|
|
|
/// +-----------+------------+--------+--------+--------+--------+
|
|
|
|
///
|
|
|
|
/// And again until we're done
|
|
|
|
///
|
|
|
|
/// +-----------+------------+--------+--------+--------+--------+
|
|
|
|
/// | Partition | Swap Index | Page 0 | Page 1 | Page 3 | Page 4 |
|
|
|
|
/// +-----------+------------+--------+--------+--------+--------+
|
|
|
|
/// | Active | 3 | 3 | 2 | 1 | - |
|
|
|
|
/// | DFU | 3 | 3 | 1 | 2 | 3 |
|
|
|
|
/// +-----------+------------+--------+--------+--------+--------+
|
|
|
|
///
|
|
|
|
/// REVERTING
|
|
|
|
///
|
|
|
|
/// The reverting algorithm uses the swap index to discover that images were swapped, but that
|
|
|
|
/// the application failed to mark the boot successful. In this case, the revert algorithm will
|
|
|
|
/// run.
|
|
|
|
///
|
|
|
|
/// The revert index is located separately from the swap index, to ensure that revert can continue
|
|
|
|
/// on power failure.
|
|
|
|
///
|
|
|
|
/// The revert algorithm works forwards, by starting copying into the 'unused' DFU page at the start.
|
|
|
|
///
|
|
|
|
/// +-----------+--------------+--------+--------+--------+--------+
|
|
|
|
/// | Partition | Revert Index | Page 0 | Page 1 | Page 3 | Page 4 |
|
|
|
|
//*/
|
|
|
|
/// +-----------+--------------+--------+--------+--------+--------+
|
|
|
|
/// | Active | 3 | 1 | 2 | 1 | - |
|
|
|
|
/// | DFU | 3 | 3 | 1 | 2 | 3 |
|
|
|
|
/// +-----------+--------------+--------+--------+--------+--------+
|
|
|
|
///
|
|
|
|
///
|
|
|
|
/// +-----------+--------------+--------+--------+--------+--------+
|
|
|
|
/// | Partition | Revert Index | Page 0 | Page 1 | Page 3 | Page 4 |
|
|
|
|
/// +-----------+--------------+--------+--------+--------+--------+
|
|
|
|
/// | Active | 3 | 1 | 2 | 1 | - |
|
|
|
|
/// | DFU | 3 | 3 | 2 | 2 | 3 |
|
|
|
|
/// +-----------+--------------+--------+--------+--------+--------+
|
|
|
|
///
|
|
|
|
/// +-----------+--------------+--------+--------+--------+--------+
|
|
|
|
/// | Partition | Revert Index | Page 0 | Page 1 | Page 3 | Page 4 |
|
|
|
|
/// +-----------+--------------+--------+--------+--------+--------+
|
|
|
|
/// | Active | 3 | 1 | 2 | 3 | - |
|
|
|
|
/// | DFU | 3 | 3 | 2 | 1 | 3 |
|
|
|
|
/// +-----------+--------------+--------+--------+--------+--------+
|
|
|
|
///
|
2022-08-30 13:07:35 +02:00
|
|
|
pub fn prepare_boot<P: FlashConfig>(
|
|
|
|
&mut self,
|
|
|
|
p: &mut P,
|
|
|
|
magic: &mut [u8],
|
|
|
|
page: &mut [u8],
|
|
|
|
) -> Result<State, BootError> {
|
2022-04-28 10:38:25 +02:00
|
|
|
// Ensure we have enough progress pages to store copy progress
|
2022-09-20 14:03:04 +02:00
|
|
|
assert_partitions(self.active, self.dfu, self.state, page.len(), P::STATE::WRITE_SIZE);
|
2022-08-30 13:07:35 +02:00
|
|
|
assert_eq!(magic.len(), P::STATE::WRITE_SIZE);
|
2022-04-28 10:38:25 +02:00
|
|
|
|
2022-01-24 12:54:09 +01:00
|
|
|
// Copy contents from partition N to active
|
2022-08-30 13:07:35 +02:00
|
|
|
let state = self.read_state(p, magic)?;
|
2022-09-02 08:42:42 +02:00
|
|
|
if state == State::Swap {
|
|
|
|
//
|
|
|
|
// Check if we already swapped. If we're in the swap state, this means we should revert
|
|
|
|
// since the app has failed to mark boot as successful
|
|
|
|
//
|
|
|
|
if !self.is_swapped(p, magic, page)? {
|
|
|
|
trace!("Swapping");
|
|
|
|
self.swap(p, magic, page)?;
|
|
|
|
trace!("Swapping done");
|
|
|
|
} else {
|
|
|
|
trace!("Reverting");
|
|
|
|
self.revert(p, magic, page)?;
|
|
|
|
|
|
|
|
// Overwrite magic and reset progress
|
|
|
|
let fstate = p.state();
|
|
|
|
magic.fill(!P::STATE::ERASE_VALUE);
|
|
|
|
fstate.write(self.state.from as u32, magic)?;
|
|
|
|
fstate.erase(self.state.from as u32, self.state.to as u32)?;
|
|
|
|
|
|
|
|
magic.fill(BOOT_MAGIC);
|
|
|
|
fstate.write(self.state.from as u32, magic)?;
|
2022-01-24 12:54:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(state)
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
fn is_swapped<P: FlashConfig>(&mut self, p: &mut P, magic: &mut [u8], page: &mut [u8]) -> Result<bool, BootError> {
|
|
|
|
let page_size = page.len();
|
|
|
|
let page_count = self.active.len() / page_size;
|
|
|
|
let progress = self.current_progress(p, magic)?;
|
2022-01-24 12:54:09 +01:00
|
|
|
|
|
|
|
Ok(progress >= page_count * 2)
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
fn current_progress<P: FlashConfig>(&mut self, config: &mut P, aligned: &mut [u8]) -> Result<usize, BootError> {
|
|
|
|
let write_size = aligned.len();
|
2022-04-28 10:38:25 +02:00
|
|
|
let max_index = ((self.state.len() - write_size) / write_size) - 1;
|
2022-08-30 13:07:35 +02:00
|
|
|
aligned.fill(!P::STATE::ERASE_VALUE);
|
|
|
|
|
|
|
|
let flash = config.state();
|
2022-01-24 12:54:09 +01:00
|
|
|
for i in 0..max_index {
|
2022-08-30 13:07:35 +02:00
|
|
|
flash.read((self.state.from + write_size + i * write_size) as u32, aligned)?;
|
|
|
|
|
|
|
|
if aligned.iter().any(|&b| b == P::STATE::ERASE_VALUE) {
|
2022-01-24 12:54:09 +01:00
|
|
|
return Ok(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(max_index)
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
fn update_progress<P: FlashConfig>(&mut self, idx: usize, p: &mut P, magic: &mut [u8]) -> Result<(), BootError> {
|
|
|
|
let flash = p.state();
|
|
|
|
let write_size = magic.len();
|
2022-04-28 10:38:25 +02:00
|
|
|
let w = self.state.from + write_size + idx * write_size;
|
2022-08-30 13:07:35 +02:00
|
|
|
|
|
|
|
let aligned = magic;
|
|
|
|
aligned.fill(!P::STATE::ERASE_VALUE);
|
|
|
|
flash.write(w as u32, aligned)?;
|
2022-01-24 12:54:09 +01:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
fn active_addr(&self, n: usize, page_size: usize) -> usize {
|
|
|
|
self.active.from + n * page_size
|
2022-01-24 12:54:09 +01:00
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
fn dfu_addr(&self, n: usize, page_size: usize) -> usize {
|
|
|
|
self.dfu.from + n * page_size
|
2022-01-24 12:54:09 +01:00
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
fn copy_page_once_to_active<P: FlashConfig>(
|
2022-01-24 12:54:09 +01:00
|
|
|
&mut self,
|
|
|
|
idx: usize,
|
2022-04-19 14:42:38 +02:00
|
|
|
from_page: usize,
|
|
|
|
to_page: usize,
|
|
|
|
p: &mut P,
|
2022-08-30 13:07:35 +02:00
|
|
|
magic: &mut [u8],
|
|
|
|
page: &mut [u8],
|
|
|
|
) -> Result<(), BootError> {
|
|
|
|
let buf = page;
|
|
|
|
if self.current_progress(p, magic)? <= idx {
|
2022-04-19 14:42:38 +02:00
|
|
|
let mut offset = from_page;
|
|
|
|
for chunk in buf.chunks_mut(P::DFU::BLOCK_SIZE) {
|
2022-08-30 13:07:35 +02:00
|
|
|
p.dfu().read(offset as u32, chunk)?;
|
2022-04-19 14:42:38 +02:00
|
|
|
offset += chunk.len();
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
p.active().erase(to_page as u32, (to_page + buf.len()) as u32)?;
|
2022-04-19 14:42:38 +02:00
|
|
|
|
|
|
|
let mut offset = to_page;
|
|
|
|
for chunk in buf.chunks(P::ACTIVE::BLOCK_SIZE) {
|
2022-08-30 13:07:35 +02:00
|
|
|
p.active().write(offset as u32, chunk)?;
|
2022-04-19 14:42:38 +02:00
|
|
|
offset += chunk.len();
|
|
|
|
}
|
2022-08-30 13:07:35 +02:00
|
|
|
self.update_progress(idx, p, magic)?;
|
2022-04-19 14:42:38 +02:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
fn copy_page_once_to_dfu<P: FlashConfig>(
|
2022-04-19 14:42:38 +02:00
|
|
|
&mut self,
|
|
|
|
idx: usize,
|
|
|
|
from_page: usize,
|
|
|
|
to_page: usize,
|
|
|
|
p: &mut P,
|
2022-08-30 13:07:35 +02:00
|
|
|
magic: &mut [u8],
|
|
|
|
page: &mut [u8],
|
|
|
|
) -> Result<(), BootError> {
|
|
|
|
let buf = page;
|
|
|
|
if self.current_progress(p, magic)? <= idx {
|
2022-04-19 14:42:38 +02:00
|
|
|
let mut offset = from_page;
|
|
|
|
for chunk in buf.chunks_mut(P::ACTIVE::BLOCK_SIZE) {
|
2022-08-30 13:07:35 +02:00
|
|
|
p.active().read(offset as u32, chunk)?;
|
2022-04-19 14:42:38 +02:00
|
|
|
offset += chunk.len();
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
p.dfu().erase(to_page as u32, (to_page + buf.len()) as u32)?;
|
2022-04-19 14:42:38 +02:00
|
|
|
|
|
|
|
let mut offset = to_page;
|
|
|
|
for chunk in buf.chunks(P::DFU::BLOCK_SIZE) {
|
2022-08-30 13:07:35 +02:00
|
|
|
p.dfu().write(offset as u32, chunk)?;
|
2022-04-19 14:42:38 +02:00
|
|
|
offset += chunk.len();
|
|
|
|
}
|
2022-08-30 13:07:35 +02:00
|
|
|
self.update_progress(idx, p, magic)?;
|
2022-01-24 12:54:09 +01:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
fn swap<P: FlashConfig>(&mut self, p: &mut P, magic: &mut [u8], page: &mut [u8]) -> Result<(), BootError> {
|
|
|
|
let page_size = page.len();
|
|
|
|
let page_count = self.active.len() / page_size;
|
2022-04-20 13:49:59 +02:00
|
|
|
trace!("Page count: {}", page_count);
|
2022-08-30 13:07:35 +02:00
|
|
|
for page_num in 0..page_count {
|
|
|
|
trace!("COPY PAGE {}", page_num);
|
2022-01-24 12:54:09 +01:00
|
|
|
// Copy active page to the 'next' DFU page.
|
2022-08-30 13:07:35 +02:00
|
|
|
let active_page = self.active_addr(page_count - 1 - page_num, page_size);
|
|
|
|
let dfu_page = self.dfu_addr(page_count - page_num, page_size);
|
2022-04-20 13:49:59 +02:00
|
|
|
//trace!("Copy active {} to dfu {}", active_page, dfu_page);
|
2022-08-30 13:07:35 +02:00
|
|
|
self.copy_page_once_to_dfu(page_num * 2, active_page, dfu_page, p, magic, page)?;
|
2022-01-24 12:54:09 +01:00
|
|
|
|
|
|
|
// Copy DFU page to the active page
|
2022-08-30 13:07:35 +02:00
|
|
|
let active_page = self.active_addr(page_count - 1 - page_num, page_size);
|
|
|
|
let dfu_page = self.dfu_addr(page_count - 1 - page_num, page_size);
|
2022-04-20 13:49:59 +02:00
|
|
|
//trace!("Copy dfy {} to active {}", dfu_page, active_page);
|
2022-08-30 13:07:35 +02:00
|
|
|
self.copy_page_once_to_active(page_num * 2 + 1, dfu_page, active_page, p, magic, page)?;
|
2022-01-24 12:54:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
fn revert<P: FlashConfig>(&mut self, p: &mut P, magic: &mut [u8], page: &mut [u8]) -> Result<(), BootError> {
|
|
|
|
let page_size = page.len();
|
|
|
|
let page_count = self.active.len() / page_size;
|
|
|
|
for page_num in 0..page_count {
|
2022-01-24 12:54:09 +01:00
|
|
|
// Copy the bad active page to the DFU page
|
2022-08-30 13:07:35 +02:00
|
|
|
let active_page = self.active_addr(page_num, page_size);
|
|
|
|
let dfu_page = self.dfu_addr(page_num, page_size);
|
|
|
|
self.copy_page_once_to_dfu(page_count * 2 + page_num * 2, active_page, dfu_page, p, magic, page)?;
|
2022-01-24 12:54:09 +01:00
|
|
|
|
|
|
|
// Copy the DFU page back to the active page
|
2022-08-30 13:07:35 +02:00
|
|
|
let active_page = self.active_addr(page_num, page_size);
|
|
|
|
let dfu_page = self.dfu_addr(page_num + 1, page_size);
|
|
|
|
self.copy_page_once_to_active(page_count * 2 + page_num * 2 + 1, dfu_page, active_page, p, magic, page)?;
|
2022-01-24 12:54:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
fn read_state<P: FlashConfig>(&mut self, config: &mut P, magic: &mut [u8]) -> Result<State, BootError> {
|
|
|
|
let flash = config.state();
|
|
|
|
flash.read(self.state.from as u32, magic)?;
|
2022-01-24 12:54:09 +01:00
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
if !magic.iter().any(|&b| b != SWAP_MAGIC) {
|
2022-04-20 13:49:59 +02:00
|
|
|
Ok(State::Swap)
|
|
|
|
} else {
|
|
|
|
Ok(State::Boot)
|
2022-01-24 12:54:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-20 14:03:04 +02:00
|
|
|
fn assert_partitions(active: Partition, dfu: Partition, state: Partition, page_size: usize, write_size: usize) {
|
|
|
|
assert_eq!(active.len() % page_size, 0);
|
|
|
|
assert_eq!(dfu.len() % page_size, 0);
|
|
|
|
assert!(dfu.len() - active.len() >= page_size);
|
|
|
|
assert!(2 * (active.len() / page_size) <= (state.len() - write_size) / write_size);
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Convenience provider that uses a single flash for all partitions.
|
|
|
|
pub struct SingleFlashConfig<'a, F>
|
2022-04-19 14:42:38 +02:00
|
|
|
where
|
2022-08-30 13:07:35 +02:00
|
|
|
F: Flash,
|
2022-04-19 14:42:38 +02:00
|
|
|
{
|
2022-08-30 13:07:35 +02:00
|
|
|
flash: &'a mut F,
|
2022-04-19 14:42:38 +02:00
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
impl<'a, F> SingleFlashConfig<'a, F>
|
2022-04-19 14:42:38 +02:00
|
|
|
where
|
2022-08-30 13:07:35 +02:00
|
|
|
F: Flash,
|
2022-04-19 14:42:38 +02:00
|
|
|
{
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Create a provider for a single flash.
|
2022-04-19 14:42:38 +02:00
|
|
|
pub fn new(flash: &'a mut F) -> Self {
|
2022-08-30 13:07:35 +02:00
|
|
|
Self { flash }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, F> FlashConfig for SingleFlashConfig<'a, F>
|
|
|
|
where
|
|
|
|
F: Flash,
|
|
|
|
{
|
|
|
|
type STATE = F;
|
|
|
|
type ACTIVE = F;
|
|
|
|
type DFU = F;
|
|
|
|
|
|
|
|
fn active(&mut self) -> &mut Self::STATE {
|
|
|
|
self.flash
|
|
|
|
}
|
|
|
|
fn dfu(&mut self) -> &mut Self::ACTIVE {
|
|
|
|
self.flash
|
|
|
|
}
|
|
|
|
fn state(&mut self) -> &mut Self::DFU {
|
|
|
|
self.flash
|
2022-04-19 14:42:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
/// A flash wrapper implementing the Flash and embedded_storage traits.
|
2022-09-20 09:42:40 +02:00
|
|
|
pub struct BootFlash<F, const BLOCK_SIZE: usize, const ERASE_VALUE: u8 = 0xFF>
|
2022-04-19 14:42:38 +02:00
|
|
|
where
|
|
|
|
F: NorFlash + ReadNorFlash,
|
|
|
|
{
|
2022-09-20 09:42:40 +02:00
|
|
|
flash: F,
|
2022-04-19 14:42:38 +02:00
|
|
|
}
|
|
|
|
|
2022-09-20 09:42:40 +02:00
|
|
|
impl<F, const BLOCK_SIZE: usize, const ERASE_VALUE: u8> BootFlash<F, BLOCK_SIZE, ERASE_VALUE>
|
2022-04-19 14:42:38 +02:00
|
|
|
where
|
|
|
|
F: NorFlash + ReadNorFlash,
|
|
|
|
{
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Create a new instance of a bootable flash
|
2022-09-20 09:42:40 +02:00
|
|
|
pub fn new(flash: F) -> Self {
|
2022-08-30 13:07:35 +02:00
|
|
|
Self { flash }
|
2022-04-19 14:42:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-20 09:42:40 +02:00
|
|
|
impl<F, const BLOCK_SIZE: usize, const ERASE_VALUE: u8> Flash for BootFlash<F, BLOCK_SIZE, ERASE_VALUE>
|
2022-04-19 14:42:38 +02:00
|
|
|
where
|
|
|
|
F: NorFlash + ReadNorFlash,
|
|
|
|
{
|
2022-08-30 13:07:35 +02:00
|
|
|
const BLOCK_SIZE: usize = BLOCK_SIZE;
|
2022-04-28 10:38:25 +02:00
|
|
|
const ERASE_VALUE: u8 = ERASE_VALUE;
|
2022-08-30 13:07:35 +02:00
|
|
|
}
|
|
|
|
|
2022-09-20 09:42:40 +02:00
|
|
|
impl<F, const BLOCK_SIZE: usize, const ERASE_VALUE: u8> ErrorType for BootFlash<F, BLOCK_SIZE, ERASE_VALUE>
|
2022-08-30 13:07:35 +02:00
|
|
|
where
|
|
|
|
F: ReadNorFlash + NorFlash,
|
|
|
|
{
|
|
|
|
type Error = F::Error;
|
|
|
|
}
|
|
|
|
|
2022-09-20 09:42:40 +02:00
|
|
|
impl<F, const BLOCK_SIZE: usize, const ERASE_VALUE: u8> NorFlash for BootFlash<F, BLOCK_SIZE, ERASE_VALUE>
|
2022-08-30 13:07:35 +02:00
|
|
|
where
|
|
|
|
F: ReadNorFlash + NorFlash,
|
|
|
|
{
|
|
|
|
const WRITE_SIZE: usize = F::WRITE_SIZE;
|
|
|
|
const ERASE_SIZE: usize = F::ERASE_SIZE;
|
|
|
|
|
|
|
|
fn erase(&mut self, from: u32, to: u32) -> Result<(), Self::Error> {
|
2022-09-20 09:42:40 +02:00
|
|
|
F::erase(&mut self.flash, from, to)
|
2022-08-30 13:07:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn write(&mut self, offset: u32, bytes: &[u8]) -> Result<(), Self::Error> {
|
2022-09-20 09:42:40 +02:00
|
|
|
F::write(&mut self.flash, offset, bytes)
|
2022-04-19 14:42:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-20 09:42:40 +02:00
|
|
|
impl<F, const BLOCK_SIZE: usize, const ERASE_VALUE: u8> ReadNorFlash for BootFlash<F, BLOCK_SIZE, ERASE_VALUE>
|
2022-04-28 10:38:25 +02:00
|
|
|
where
|
2022-08-30 13:07:35 +02:00
|
|
|
F: ReadNorFlash + NorFlash,
|
2022-04-28 10:38:25 +02:00
|
|
|
{
|
2022-08-30 13:07:35 +02:00
|
|
|
const READ_SIZE: usize = F::READ_SIZE;
|
|
|
|
|
|
|
|
fn read(&mut self, offset: u32, bytes: &mut [u8]) -> Result<(), Self::Error> {
|
2022-09-20 09:42:40 +02:00
|
|
|
F::read(&mut self.flash, offset, bytes)
|
2022-08-30 13:07:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn capacity(&self) -> usize {
|
2022-09-20 09:42:40 +02:00
|
|
|
F::capacity(&self.flash)
|
2022-08-30 13:07:35 +02:00
|
|
|
}
|
2022-04-28 10:38:25 +02:00
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Convenience flash provider that uses separate flash instances for each partition.
|
|
|
|
pub struct MultiFlashConfig<'a, ACTIVE, STATE, DFU>
|
2022-04-28 10:38:25 +02:00
|
|
|
where
|
2022-08-30 13:07:35 +02:00
|
|
|
ACTIVE: Flash,
|
|
|
|
STATE: Flash,
|
|
|
|
DFU: Flash,
|
2022-04-28 10:38:25 +02:00
|
|
|
{
|
2022-08-30 13:07:35 +02:00
|
|
|
active: &'a mut ACTIVE,
|
|
|
|
state: &'a mut STATE,
|
|
|
|
dfu: &'a mut DFU,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, ACTIVE, STATE, DFU> MultiFlashConfig<'a, ACTIVE, STATE, DFU>
|
|
|
|
where
|
|
|
|
ACTIVE: Flash,
|
|
|
|
STATE: Flash,
|
|
|
|
DFU: Flash,
|
|
|
|
{
|
|
|
|
/// Create a new flash provider with separate configuration for all three partitions.
|
2022-04-28 10:38:25 +02:00
|
|
|
pub fn new(active: &'a mut ACTIVE, state: &'a mut STATE, dfu: &'a mut DFU) -> Self {
|
2022-08-30 13:07:35 +02:00
|
|
|
Self { active, state, dfu }
|
2022-04-28 10:38:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
impl<'a, ACTIVE, STATE, DFU> FlashConfig for MultiFlashConfig<'a, ACTIVE, STATE, DFU>
|
2022-04-28 10:38:25 +02:00
|
|
|
where
|
2022-08-30 13:07:35 +02:00
|
|
|
ACTIVE: Flash,
|
|
|
|
STATE: Flash,
|
|
|
|
DFU: Flash,
|
2022-04-28 10:38:25 +02:00
|
|
|
{
|
2022-08-30 13:07:35 +02:00
|
|
|
type STATE = STATE;
|
|
|
|
type ACTIVE = ACTIVE;
|
|
|
|
type DFU = DFU;
|
2022-04-28 10:38:25 +02:00
|
|
|
|
|
|
|
fn active(&mut self) -> &mut Self::ACTIVE {
|
2022-08-30 13:07:35 +02:00
|
|
|
self.active
|
2022-04-28 10:38:25 +02:00
|
|
|
}
|
|
|
|
fn dfu(&mut self) -> &mut Self::DFU {
|
2022-08-30 13:07:35 +02:00
|
|
|
self.dfu
|
2022-04-28 10:38:25 +02:00
|
|
|
}
|
|
|
|
fn state(&mut self) -> &mut Self::STATE {
|
2022-08-30 13:07:35 +02:00
|
|
|
self.state
|
2022-04-28 10:38:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-24 12:54:09 +01:00
|
|
|
/// FirmwareUpdater is an application API for interacting with the BootLoader without the ability to
|
|
|
|
/// 'mess up' the internal bootloader state
|
|
|
|
pub struct FirmwareUpdater {
|
|
|
|
state: Partition,
|
|
|
|
dfu: Partition,
|
|
|
|
}
|
|
|
|
|
2022-04-20 13:49:59 +02:00
|
|
|
impl Default for FirmwareUpdater {
|
|
|
|
fn default() -> Self {
|
|
|
|
extern "C" {
|
|
|
|
static __bootloader_state_start: u32;
|
|
|
|
static __bootloader_state_end: u32;
|
|
|
|
static __bootloader_dfu_start: u32;
|
|
|
|
static __bootloader_dfu_end: u32;
|
|
|
|
}
|
|
|
|
|
|
|
|
let dfu = unsafe {
|
|
|
|
Partition::new(
|
|
|
|
&__bootloader_dfu_start as *const u32 as usize,
|
|
|
|
&__bootloader_dfu_end as *const u32 as usize,
|
|
|
|
)
|
|
|
|
};
|
|
|
|
let state = unsafe {
|
|
|
|
Partition::new(
|
|
|
|
&__bootloader_state_start as *const u32 as usize,
|
|
|
|
&__bootloader_state_end as *const u32 as usize,
|
|
|
|
)
|
|
|
|
};
|
2022-04-26 18:33:09 +02:00
|
|
|
|
|
|
|
trace!("DFU: 0x{:x} - 0x{:x}", dfu.from, dfu.to);
|
|
|
|
trace!("STATE: 0x{:x} - 0x{:x}", state.from, state.to);
|
2022-04-20 13:49:59 +02:00
|
|
|
FirmwareUpdater::new(dfu, state)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-24 12:54:09 +01:00
|
|
|
impl FirmwareUpdater {
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Create a firmware updater instance with partition ranges for the update and state partitions.
|
2022-01-24 12:54:09 +01:00
|
|
|
pub const fn new(dfu: Partition, state: Partition) -> Self {
|
|
|
|
Self { dfu, state }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return the length of the DFU area
|
|
|
|
pub fn firmware_len(&self) -> usize {
|
|
|
|
self.dfu.len()
|
|
|
|
}
|
|
|
|
|
2022-09-26 06:53:40 +02:00
|
|
|
/// Obtain the current state.
|
|
|
|
///
|
|
|
|
/// This is useful to check if the bootloader has just done a swap, in order
|
|
|
|
/// to do verifications and self-tests of the new image before calling
|
|
|
|
/// `mark_booted`.
|
|
|
|
pub async fn get_state<F: AsyncNorFlash>(&mut self, flash: &mut F, aligned: &mut [u8]) -> Result<State, F::Error> {
|
|
|
|
flash.read(self.state.from as u32, aligned).await?;
|
|
|
|
|
|
|
|
if !aligned.iter().any(|&b| b != SWAP_MAGIC) {
|
|
|
|
Ok(State::Swap)
|
|
|
|
} else {
|
|
|
|
Ok(State::Boot)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Mark to trigger firmware swap on next boot.
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
///
|
|
|
|
/// The `aligned` buffer must have a size of F::WRITE_SIZE, and follow the alignment rules for the flash being written to.
|
|
|
|
pub async fn mark_updated<F: AsyncNorFlash>(&mut self, flash: &mut F, aligned: &mut [u8]) -> Result<(), F::Error> {
|
|
|
|
assert_eq!(aligned.len(), F::WRITE_SIZE);
|
|
|
|
self.set_magic(aligned, SWAP_MAGIC, flash).await
|
2022-01-24 12:54:09 +01:00
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Mark firmware boot successful and stop rollback on reset.
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
///
|
|
|
|
/// The `aligned` buffer must have a size of F::WRITE_SIZE, and follow the alignment rules for the flash being written to.
|
|
|
|
pub async fn mark_booted<F: AsyncNorFlash>(&mut self, flash: &mut F, aligned: &mut [u8]) -> Result<(), F::Error> {
|
|
|
|
assert_eq!(aligned.len(), F::WRITE_SIZE);
|
|
|
|
self.set_magic(aligned, BOOT_MAGIC, flash).await
|
2022-04-20 13:49:59 +02:00
|
|
|
}
|
2022-03-22 12:52:47 +01:00
|
|
|
|
2022-04-20 13:49:59 +02:00
|
|
|
async fn set_magic<F: AsyncNorFlash>(
|
|
|
|
&mut self,
|
|
|
|
aligned: &mut [u8],
|
|
|
|
magic: u8,
|
|
|
|
flash: &mut F,
|
|
|
|
) -> Result<(), F::Error> {
|
|
|
|
flash.read(self.state.from as u32, aligned).await?;
|
2022-03-31 15:23:06 +02:00
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
if aligned.iter().any(|&b| b != magic) {
|
2022-06-30 14:46:17 +02:00
|
|
|
aligned.fill(0);
|
|
|
|
|
2022-04-20 13:49:59 +02:00
|
|
|
flash.write(self.state.from as u32, aligned).await?;
|
2022-06-12 22:15:44 +02:00
|
|
|
flash.erase(self.state.from as u32, self.state.to as u32).await?;
|
2022-04-20 13:49:59 +02:00
|
|
|
|
2022-06-30 14:46:17 +02:00
|
|
|
aligned.fill(magic);
|
2022-04-20 13:49:59 +02:00
|
|
|
flash.write(self.state.from as u32, aligned).await?;
|
2022-03-31 15:23:06 +02:00
|
|
|
}
|
2022-01-24 12:54:09 +01:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
/// Write data to a flash page.
|
|
|
|
///
|
|
|
|
/// The buffer must follow alignment requirements of the target flash and a multiple of page size big.
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
///
|
|
|
|
/// Failing to meet alignment and size requirements may result in a panic.
|
2022-01-24 12:54:09 +01:00
|
|
|
pub async fn write_firmware<F: AsyncNorFlash>(
|
|
|
|
&mut self,
|
|
|
|
offset: usize,
|
|
|
|
data: &[u8],
|
|
|
|
flash: &mut F,
|
2022-04-19 14:42:38 +02:00
|
|
|
block_size: usize,
|
2022-01-24 12:54:09 +01:00
|
|
|
) -> Result<(), F::Error> {
|
2022-04-19 14:42:38 +02:00
|
|
|
assert!(data.len() >= F::ERASE_SIZE);
|
|
|
|
|
2022-01-24 12:54:09 +01:00
|
|
|
flash
|
|
|
|
.erase(
|
|
|
|
(self.dfu.from + offset) as u32,
|
|
|
|
(self.dfu.from + offset + data.len()) as u32,
|
|
|
|
)
|
|
|
|
.await?;
|
2022-04-19 14:42:38 +02:00
|
|
|
|
|
|
|
trace!(
|
|
|
|
"Erased from {} to {}",
|
|
|
|
self.dfu.from + offset,
|
|
|
|
self.dfu.from + offset + data.len()
|
|
|
|
);
|
|
|
|
|
2022-09-26 06:53:40 +02:00
|
|
|
FirmwareWriter(self.dfu)
|
|
|
|
.write_block(offset, data, flash, block_size)
|
2022-09-26 06:01:18 +02:00
|
|
|
.await?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Prepare for an incoming DFU update by erasing the entire DFU area and
|
|
|
|
/// returning a `FirmwareWriter`.
|
|
|
|
///
|
|
|
|
/// Using this instead of `write_firmware` allows for an optimized API in
|
|
|
|
/// exchange for added complexity.
|
|
|
|
pub fn prepare_update<F: NorFlash>(&mut self, flash: &mut F) -> Result<FirmwareWriter, F::Error> {
|
|
|
|
flash.erase((self.dfu.from) as u32, (self.dfu.to) as u32)?;
|
|
|
|
|
|
|
|
trace!("Erased from {} to {}", self.dfu.from, self.dfu.to);
|
|
|
|
|
2022-09-26 06:53:40 +02:00
|
|
|
Ok(FirmwareWriter(self.dfu))
|
2022-09-26 06:01:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Blocking API
|
|
|
|
//
|
|
|
|
|
2022-09-26 06:53:40 +02:00
|
|
|
/// Obtain the current state.
|
|
|
|
///
|
|
|
|
/// This is useful to check if the bootloader has just done a swap, in order
|
|
|
|
/// to do verifications and self-tests of the new image before calling
|
|
|
|
/// `mark_booted`.
|
|
|
|
pub fn get_state_blocking<F: NorFlash>(&mut self, flash: &mut F, aligned: &mut [u8]) -> Result<State, F::Error> {
|
|
|
|
flash.read(self.state.from as u32, aligned)?;
|
|
|
|
|
|
|
|
if !aligned.iter().any(|&b| b != SWAP_MAGIC) {
|
|
|
|
Ok(State::Swap)
|
|
|
|
} else {
|
|
|
|
Ok(State::Boot)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-26 06:01:18 +02:00
|
|
|
/// Mark to trigger firmware swap on next boot.
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
///
|
|
|
|
/// The `aligned` buffer must have a size of F::WRITE_SIZE, and follow the alignment rules for the flash being written to.
|
|
|
|
pub fn mark_updated_blocking<F: NorFlash>(&mut self, flash: &mut F, aligned: &mut [u8]) -> Result<(), F::Error> {
|
|
|
|
assert_eq!(aligned.len(), F::WRITE_SIZE);
|
|
|
|
self.set_magic_blocking(aligned, SWAP_MAGIC, flash)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Mark firmware boot successful and stop rollback on reset.
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
///
|
|
|
|
/// The `aligned` buffer must have a size of F::WRITE_SIZE, and follow the alignment rules for the flash being written to.
|
|
|
|
pub fn mark_booted_blocking<F: NorFlash>(&mut self, flash: &mut F, aligned: &mut [u8]) -> Result<(), F::Error> {
|
|
|
|
assert_eq!(aligned.len(), F::WRITE_SIZE);
|
|
|
|
self.set_magic_blocking(aligned, BOOT_MAGIC, flash)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_magic_blocking<F: NorFlash>(
|
|
|
|
&mut self,
|
|
|
|
aligned: &mut [u8],
|
|
|
|
magic: u8,
|
|
|
|
flash: &mut F,
|
|
|
|
) -> Result<(), F::Error> {
|
|
|
|
flash.read(self.state.from as u32, aligned)?;
|
|
|
|
|
|
|
|
if aligned.iter().any(|&b| b != magic) {
|
|
|
|
aligned.fill(0);
|
|
|
|
|
|
|
|
flash.write(self.state.from as u32, aligned)?;
|
|
|
|
flash.erase(self.state.from as u32, self.state.to as u32)?;
|
|
|
|
|
|
|
|
aligned.fill(magic);
|
|
|
|
flash.write(self.state.from as u32, aligned)?;
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Write data to a flash page.
|
|
|
|
///
|
|
|
|
/// The buffer must follow alignment requirements of the target flash and a multiple of page size big.
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
///
|
|
|
|
/// Failing to meet alignment and size requirements may result in a panic.
|
|
|
|
pub fn write_firmware_blocking<F: NorFlash>(
|
|
|
|
&mut self,
|
|
|
|
offset: usize,
|
|
|
|
data: &[u8],
|
|
|
|
flash: &mut F,
|
|
|
|
block_size: usize,
|
|
|
|
) -> Result<(), F::Error> {
|
|
|
|
assert!(data.len() >= F::ERASE_SIZE);
|
|
|
|
|
|
|
|
flash.erase(
|
|
|
|
(self.dfu.from + offset) as u32,
|
|
|
|
(self.dfu.from + offset + data.len()) as u32,
|
|
|
|
)?;
|
|
|
|
|
|
|
|
trace!(
|
|
|
|
"Erased from {} to {}",
|
|
|
|
self.dfu.from + offset,
|
|
|
|
self.dfu.from + offset + data.len()
|
|
|
|
);
|
|
|
|
|
2022-09-26 06:53:40 +02:00
|
|
|
FirmwareWriter(self.dfu).write_block_blocking(offset, data, flash, block_size)?;
|
2022-09-26 06:01:18 +02:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Prepare for an incoming DFU update by erasing the entire DFU area and
|
|
|
|
/// returning a `FirmwareWriter`.
|
|
|
|
///
|
|
|
|
/// Using this instead of `write_firmware_blocking` allows for an optimized
|
|
|
|
/// API in exchange for added complexity.
|
|
|
|
pub fn prepare_update_blocking<F: NorFlash>(&mut self, flash: &mut F) -> Result<FirmwareWriter, F::Error> {
|
|
|
|
flash.erase((self.dfu.from) as u32, (self.dfu.to) as u32)?;
|
|
|
|
|
|
|
|
trace!("Erased from {} to {}", self.dfu.from, self.dfu.to);
|
|
|
|
|
2022-09-26 06:53:40 +02:00
|
|
|
Ok(FirmwareWriter(self.dfu))
|
2022-09-26 06:01:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// FirmwareWriter allows writing blocks to an already erased flash.
|
2022-09-26 06:53:40 +02:00
|
|
|
pub struct FirmwareWriter(Partition);
|
2022-09-26 06:01:18 +02:00
|
|
|
|
2022-09-26 06:53:40 +02:00
|
|
|
impl FirmwareWriter {
|
2022-09-26 06:01:18 +02:00
|
|
|
/// Write data to a flash page.
|
|
|
|
///
|
|
|
|
/// The buffer must follow alignment requirements of the target flash and a multiple of page size big.
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
///
|
|
|
|
/// Failing to meet alignment and size requirements may result in a panic.
|
2022-09-26 06:53:40 +02:00
|
|
|
pub async fn write_block<F: AsyncNorFlash>(
|
2022-09-26 06:01:18 +02:00
|
|
|
&mut self,
|
|
|
|
offset: usize,
|
|
|
|
data: &[u8],
|
|
|
|
flash: &mut F,
|
|
|
|
block_size: usize,
|
|
|
|
) -> Result<(), F::Error> {
|
|
|
|
trace!(
|
|
|
|
"Writing firmware at offset 0x{:x} len {}",
|
2022-09-26 06:53:40 +02:00
|
|
|
self.0.from + offset,
|
2022-09-26 06:01:18 +02:00
|
|
|
data.len()
|
|
|
|
);
|
|
|
|
|
2022-09-26 06:53:40 +02:00
|
|
|
let mut write_offset = self.0.from + offset;
|
2022-04-19 14:42:38 +02:00
|
|
|
for chunk in data.chunks(block_size) {
|
|
|
|
trace!("Wrote chunk at {}: {:?}", write_offset, chunk);
|
|
|
|
flash.write(write_offset as u32, chunk).await?;
|
|
|
|
write_offset += chunk.len();
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
trace!("Wrote data, reading back for verification");
|
|
|
|
|
|
|
|
let mut buf: [u8; 4096] = [0; 4096];
|
|
|
|
let mut data_offset = 0;
|
|
|
|
let mut read_offset = self.dfu.from + offset;
|
2022-09-26 06:01:18 +02:00
|
|
|
for chunk in buf.chunks_mut(block_size) {
|
|
|
|
flash.read(read_offset as u32, chunk).await?;
|
|
|
|
trace!("Read chunk at {}: {:?}", read_offset, chunk);
|
|
|
|
assert_eq!(&data[data_offset..data_offset + block_size], chunk);
|
|
|
|
read_offset += chunk.len();
|
|
|
|
data_offset += chunk.len();
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Write data to a flash page.
|
|
|
|
///
|
|
|
|
/// The buffer must follow alignment requirements of the target flash and a multiple of page size big.
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
///
|
|
|
|
/// Failing to meet alignment and size requirements may result in a panic.
|
2022-09-26 06:53:40 +02:00
|
|
|
pub fn write_block_blocking<F: NorFlash>(
|
2022-09-26 06:01:18 +02:00
|
|
|
&mut self,
|
|
|
|
offset: usize,
|
|
|
|
data: &[u8],
|
|
|
|
flash: &mut F,
|
|
|
|
block_size: usize,
|
|
|
|
) -> Result<(), F::Error> {
|
|
|
|
trace!(
|
|
|
|
"Writing firmware at offset 0x{:x} len {}",
|
2022-09-26 06:53:40 +02:00
|
|
|
self.0.from + offset,
|
2022-09-26 06:01:18 +02:00
|
|
|
data.len()
|
|
|
|
);
|
|
|
|
|
2022-09-26 06:53:40 +02:00
|
|
|
let mut write_offset = self.0.from + offset;
|
2022-09-26 06:01:18 +02:00
|
|
|
for chunk in data.chunks(block_size) {
|
|
|
|
trace!("Wrote chunk at {}: {:?}", write_offset, chunk);
|
|
|
|
flash.write(write_offset as u32, chunk)?;
|
|
|
|
write_offset += chunk.len();
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
trace!("Wrote data, reading back for verification");
|
|
|
|
|
|
|
|
let mut buf: [u8; 4096] = [0; 4096];
|
|
|
|
let mut data_offset = 0;
|
|
|
|
let mut read_offset = self.dfu.from + offset;
|
2022-04-19 14:42:38 +02:00
|
|
|
for chunk in buf.chunks_mut(block_size) {
|
|
|
|
flash.read(read_offset as u32, chunk).await?;
|
|
|
|
trace!("Read chunk at {}: {:?}", read_offset, chunk);
|
|
|
|
assert_eq!(&data[data_offset..data_offset + block_size], chunk);
|
|
|
|
read_offset += chunk.len();
|
|
|
|
data_offset += chunk.len();
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
Ok(())
|
2022-01-24 12:54:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use core::convert::Infallible;
|
|
|
|
use core::future::Future;
|
2022-06-12 22:15:44 +02:00
|
|
|
|
2022-04-20 13:49:59 +02:00
|
|
|
use embedded_storage::nor_flash::ErrorType;
|
2022-01-24 12:54:09 +01:00
|
|
|
use embedded_storage_async::nor_flash::AsyncReadNorFlash;
|
|
|
|
use futures::executor::block_on;
|
|
|
|
|
2022-06-12 22:15:44 +02:00
|
|
|
use super::*;
|
|
|
|
|
2022-04-20 13:49:59 +02:00
|
|
|
/*
|
2022-01-24 12:54:09 +01:00
|
|
|
#[test]
|
|
|
|
fn test_bad_magic() {
|
|
|
|
let mut flash = MemFlash([0xff; 131072]);
|
2022-08-30 13:07:35 +02:00
|
|
|
let mut flash = SingleFlashConfig::new(&mut flash);
|
2022-01-24 12:54:09 +01:00
|
|
|
|
|
|
|
let mut bootloader = BootLoader::<4096>::new(ACTIVE, DFU, STATE);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
bootloader.prepare_boot(&mut flash),
|
|
|
|
Err(BootError::BadMagic)
|
|
|
|
);
|
|
|
|
}
|
2022-04-20 13:49:59 +02:00
|
|
|
*/
|
2022-01-24 12:54:09 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_boot_state() {
|
2022-04-28 10:38:25 +02:00
|
|
|
const STATE: Partition = Partition::new(0, 4096);
|
|
|
|
const ACTIVE: Partition = Partition::new(4096, 61440);
|
|
|
|
const DFU: Partition = Partition::new(61440, 122880);
|
|
|
|
|
|
|
|
let mut flash = MemFlash::<131072, 4096, 4>([0xff; 131072]);
|
2022-04-20 13:49:59 +02:00
|
|
|
flash.0[0..4].copy_from_slice(&[BOOT_MAGIC; 4]);
|
2022-08-30 13:07:35 +02:00
|
|
|
let mut flash = SingleFlashConfig::new(&mut flash);
|
2022-01-24 12:54:09 +01:00
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
let mut bootloader: BootLoader = BootLoader::new(ACTIVE, DFU, STATE);
|
2022-01-24 12:54:09 +01:00
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
let mut magic = [0; 4];
|
|
|
|
let mut page = [0; 4096];
|
|
|
|
assert_eq!(
|
|
|
|
State::Boot,
|
|
|
|
bootloader.prepare_boot(&mut flash, &mut magic, &mut page).unwrap()
|
|
|
|
);
|
2022-01-24 12:54:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_swap_state() {
|
2022-04-28 10:38:25 +02:00
|
|
|
const STATE: Partition = Partition::new(0, 4096);
|
|
|
|
const ACTIVE: Partition = Partition::new(4096, 61440);
|
|
|
|
const DFU: Partition = Partition::new(61440, 122880);
|
|
|
|
let mut flash = MemFlash::<131072, 4096, 4>([0xff; 131072]);
|
2022-01-24 12:54:09 +01:00
|
|
|
|
|
|
|
let original: [u8; ACTIVE.len()] = [rand::random::<u8>(); ACTIVE.len()];
|
|
|
|
let update: [u8; DFU.len()] = [rand::random::<u8>(); DFU.len()];
|
2022-08-30 13:07:35 +02:00
|
|
|
let mut aligned = [0; 4];
|
2022-01-24 12:54:09 +01:00
|
|
|
|
|
|
|
for i in ACTIVE.from..ACTIVE.to {
|
|
|
|
flash.0[i] = original[i - ACTIVE.from];
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
let mut bootloader: BootLoader = BootLoader::new(ACTIVE, DFU, STATE);
|
2022-01-24 12:54:09 +01:00
|
|
|
let mut updater = FirmwareUpdater::new(DFU, STATE);
|
2022-04-20 13:49:59 +02:00
|
|
|
let mut offset = 0;
|
|
|
|
for chunk in update.chunks(4096) {
|
2022-08-30 13:07:35 +02:00
|
|
|
block_on(updater.write_firmware(offset, chunk, &mut flash, 4096)).unwrap();
|
2022-04-20 13:49:59 +02:00
|
|
|
offset += chunk.len();
|
2022-01-24 12:54:09 +01:00
|
|
|
}
|
2022-08-30 13:07:35 +02:00
|
|
|
block_on(updater.mark_updated(&mut flash, &mut aligned)).unwrap();
|
2022-01-24 12:54:09 +01:00
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
let mut magic = [0; 4];
|
|
|
|
let mut page = [0; 4096];
|
2022-04-20 13:49:59 +02:00
|
|
|
assert_eq!(
|
|
|
|
State::Swap,
|
|
|
|
bootloader
|
2022-08-30 13:07:35 +02:00
|
|
|
.prepare_boot(&mut SingleFlashConfig::new(&mut flash), &mut magic, &mut page)
|
2022-04-20 13:49:59 +02:00
|
|
|
.unwrap()
|
|
|
|
);
|
2022-01-24 12:54:09 +01:00
|
|
|
|
|
|
|
for i in ACTIVE.from..ACTIVE.to {
|
|
|
|
assert_eq!(flash.0[i], update[i - ACTIVE.from], "Index {}", i);
|
|
|
|
}
|
|
|
|
|
|
|
|
// First DFU page is untouched
|
|
|
|
for i in DFU.from + 4096..DFU.to {
|
|
|
|
assert_eq!(flash.0[i], original[i - DFU.from - 4096], "Index {}", i);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Running again should cause a revert
|
2022-04-20 13:49:59 +02:00
|
|
|
assert_eq!(
|
|
|
|
State::Swap,
|
|
|
|
bootloader
|
2022-08-30 13:07:35 +02:00
|
|
|
.prepare_boot(&mut SingleFlashConfig::new(&mut flash), &mut magic, &mut page)
|
2022-04-20 13:49:59 +02:00
|
|
|
.unwrap()
|
|
|
|
);
|
2022-01-24 12:54:09 +01:00
|
|
|
|
|
|
|
for i in ACTIVE.from..ACTIVE.to {
|
|
|
|
assert_eq!(flash.0[i], original[i - ACTIVE.from], "Index {}", i);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Last page is untouched
|
|
|
|
for i in DFU.from..DFU.to - 4096 {
|
|
|
|
assert_eq!(flash.0[i], update[i - DFU.from], "Index {}", i);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mark as booted
|
2022-08-30 13:07:35 +02:00
|
|
|
block_on(updater.mark_booted(&mut flash, &mut aligned)).unwrap();
|
2022-04-20 13:49:59 +02:00
|
|
|
assert_eq!(
|
|
|
|
State::Boot,
|
|
|
|
bootloader
|
2022-08-30 13:07:35 +02:00
|
|
|
.prepare_boot(&mut SingleFlashConfig::new(&mut flash), &mut magic, &mut page)
|
2022-04-20 13:49:59 +02:00
|
|
|
.unwrap()
|
|
|
|
);
|
2022-01-24 12:54:09 +01:00
|
|
|
}
|
|
|
|
|
2022-04-28 10:38:25 +02:00
|
|
|
#[test]
|
|
|
|
fn test_separate_flash_active_page_biggest() {
|
|
|
|
const STATE: Partition = Partition::new(2048, 4096);
|
|
|
|
const ACTIVE: Partition = Partition::new(4096, 16384);
|
|
|
|
const DFU: Partition = Partition::new(0, 16384);
|
|
|
|
|
|
|
|
let mut active = MemFlash::<16384, 4096, 8>([0xff; 16384]);
|
|
|
|
let mut dfu = MemFlash::<16384, 2048, 8>([0xff; 16384]);
|
|
|
|
let mut state = MemFlash::<4096, 128, 4>([0xff; 4096]);
|
2022-08-30 13:07:35 +02:00
|
|
|
let mut aligned = [0; 4];
|
2022-04-28 10:38:25 +02:00
|
|
|
|
|
|
|
let original: [u8; ACTIVE.len()] = [rand::random::<u8>(); ACTIVE.len()];
|
|
|
|
let update: [u8; DFU.len()] = [rand::random::<u8>(); DFU.len()];
|
|
|
|
|
|
|
|
for i in ACTIVE.from..ACTIVE.to {
|
|
|
|
active.0[i] = original[i - ACTIVE.from];
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut updater = FirmwareUpdater::new(DFU, STATE);
|
|
|
|
|
|
|
|
let mut offset = 0;
|
|
|
|
for chunk in update.chunks(2048) {
|
2022-08-30 13:07:35 +02:00
|
|
|
block_on(updater.write_firmware(offset, chunk, &mut dfu, chunk.len())).unwrap();
|
2022-04-28 10:38:25 +02:00
|
|
|
offset += chunk.len();
|
|
|
|
}
|
2022-08-30 13:07:35 +02:00
|
|
|
block_on(updater.mark_updated(&mut state, &mut aligned)).unwrap();
|
|
|
|
|
|
|
|
let mut bootloader: BootLoader = BootLoader::new(ACTIVE, DFU, STATE);
|
|
|
|
let mut magic = [0; 4];
|
|
|
|
let mut page = [0; 4096];
|
2022-04-28 10:38:25 +02:00
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
State::Swap,
|
|
|
|
bootloader
|
2022-08-30 13:07:35 +02:00
|
|
|
.prepare_boot(
|
|
|
|
&mut MultiFlashConfig::new(&mut active, &mut state, &mut dfu),
|
|
|
|
&mut magic,
|
|
|
|
&mut page
|
|
|
|
)
|
2022-04-28 10:38:25 +02:00
|
|
|
.unwrap()
|
|
|
|
);
|
|
|
|
|
|
|
|
for i in ACTIVE.from..ACTIVE.to {
|
|
|
|
assert_eq!(active.0[i], update[i - ACTIVE.from], "Index {}", i);
|
|
|
|
}
|
|
|
|
|
|
|
|
// First DFU page is untouched
|
|
|
|
for i in DFU.from + 4096..DFU.to {
|
|
|
|
assert_eq!(dfu.0[i], original[i - DFU.from - 4096], "Index {}", i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_separate_flash_dfu_page_biggest() {
|
|
|
|
const STATE: Partition = Partition::new(2048, 4096);
|
|
|
|
const ACTIVE: Partition = Partition::new(4096, 16384);
|
|
|
|
const DFU: Partition = Partition::new(0, 16384);
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
let mut aligned = [0; 4];
|
2022-04-28 10:38:25 +02:00
|
|
|
let mut active = MemFlash::<16384, 2048, 4>([0xff; 16384]);
|
|
|
|
let mut dfu = MemFlash::<16384, 4096, 8>([0xff; 16384]);
|
|
|
|
let mut state = MemFlash::<4096, 128, 4>([0xff; 4096]);
|
|
|
|
|
|
|
|
let original: [u8; ACTIVE.len()] = [rand::random::<u8>(); ACTIVE.len()];
|
|
|
|
let update: [u8; DFU.len()] = [rand::random::<u8>(); DFU.len()];
|
2022-01-24 12:54:09 +01:00
|
|
|
|
2022-04-28 10:38:25 +02:00
|
|
|
for i in ACTIVE.from..ACTIVE.to {
|
|
|
|
active.0[i] = original[i - ACTIVE.from];
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut updater = FirmwareUpdater::new(DFU, STATE);
|
|
|
|
|
|
|
|
let mut offset = 0;
|
|
|
|
for chunk in update.chunks(4096) {
|
2022-08-30 13:07:35 +02:00
|
|
|
block_on(updater.write_firmware(offset, chunk, &mut dfu, chunk.len())).unwrap();
|
2022-04-28 10:38:25 +02:00
|
|
|
offset += chunk.len();
|
|
|
|
}
|
2022-08-30 13:07:35 +02:00
|
|
|
block_on(updater.mark_updated(&mut state, &mut aligned)).unwrap();
|
2022-04-28 10:38:25 +02:00
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
let mut bootloader: BootLoader = BootLoader::new(ACTIVE, DFU, STATE);
|
|
|
|
let mut magic = [0; 4];
|
|
|
|
let mut page = [0; 4096];
|
2022-04-28 10:38:25 +02:00
|
|
|
assert_eq!(
|
|
|
|
State::Swap,
|
|
|
|
bootloader
|
2022-08-30 13:07:35 +02:00
|
|
|
.prepare_boot(
|
|
|
|
&mut MultiFlashConfig::new(&mut active, &mut state, &mut dfu,),
|
|
|
|
&mut magic,
|
|
|
|
&mut page
|
|
|
|
)
|
2022-04-28 10:38:25 +02:00
|
|
|
.unwrap()
|
|
|
|
);
|
|
|
|
|
|
|
|
for i in ACTIVE.from..ACTIVE.to {
|
|
|
|
assert_eq!(active.0[i], update[i - ACTIVE.from], "Index {}", i);
|
|
|
|
}
|
|
|
|
|
|
|
|
// First DFU page is untouched
|
|
|
|
for i in DFU.from + 4096..DFU.to {
|
|
|
|
assert_eq!(dfu.0[i], original[i - DFU.from - 4096], "Index {}", i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-20 14:03:04 +02:00
|
|
|
#[test]
|
|
|
|
#[should_panic]
|
|
|
|
fn test_range_asserts() {
|
|
|
|
const ACTIVE: Partition = Partition::new(4096, 4194304);
|
|
|
|
const DFU: Partition = Partition::new(4194304, 2 * 4194304);
|
|
|
|
const STATE: Partition = Partition::new(0, 4096);
|
|
|
|
assert_partitions(ACTIVE, DFU, STATE, 4096, 4);
|
|
|
|
}
|
|
|
|
|
2022-06-12 22:15:44 +02:00
|
|
|
struct MemFlash<const SIZE: usize, const ERASE_SIZE: usize, const WRITE_SIZE: usize>([u8; SIZE]);
|
2022-04-28 10:38:25 +02:00
|
|
|
|
|
|
|
impl<const SIZE: usize, const ERASE_SIZE: usize, const WRITE_SIZE: usize> NorFlash
|
|
|
|
for MemFlash<SIZE, ERASE_SIZE, WRITE_SIZE>
|
|
|
|
{
|
|
|
|
const WRITE_SIZE: usize = WRITE_SIZE;
|
|
|
|
const ERASE_SIZE: usize = ERASE_SIZE;
|
2022-01-24 12:54:09 +01:00
|
|
|
fn erase(&mut self, from: u32, to: u32) -> Result<(), Self::Error> {
|
|
|
|
let from = from as usize;
|
|
|
|
let to = to as usize;
|
2022-04-28 10:38:25 +02:00
|
|
|
assert!(from % ERASE_SIZE == 0);
|
2022-06-12 22:15:44 +02:00
|
|
|
assert!(to % ERASE_SIZE == 0, "To: {}, erase size: {}", to, ERASE_SIZE);
|
2022-01-24 12:54:09 +01:00
|
|
|
for i in from..to {
|
|
|
|
self.0[i] = 0xFF;
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn write(&mut self, offset: u32, data: &[u8]) -> Result<(), Self::Error> {
|
2022-04-28 10:38:25 +02:00
|
|
|
assert!(data.len() % WRITE_SIZE == 0);
|
|
|
|
assert!(offset as usize % WRITE_SIZE == 0);
|
|
|
|
assert!(offset as usize + data.len() <= SIZE);
|
2022-01-24 12:54:09 +01:00
|
|
|
|
|
|
|
self.0[offset as usize..offset as usize + data.len()].copy_from_slice(data);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-28 10:38:25 +02:00
|
|
|
impl<const SIZE: usize, const ERASE_SIZE: usize, const WRITE_SIZE: usize> ErrorType
|
|
|
|
for MemFlash<SIZE, ERASE_SIZE, WRITE_SIZE>
|
|
|
|
{
|
2022-04-20 13:49:59 +02:00
|
|
|
type Error = Infallible;
|
|
|
|
}
|
|
|
|
|
2022-04-28 10:38:25 +02:00
|
|
|
impl<const SIZE: usize, const ERASE_SIZE: usize, const WRITE_SIZE: usize> ReadNorFlash
|
|
|
|
for MemFlash<SIZE, ERASE_SIZE, WRITE_SIZE>
|
|
|
|
{
|
2022-01-24 12:54:09 +01:00
|
|
|
const READ_SIZE: usize = 4;
|
|
|
|
|
|
|
|
fn read(&mut self, offset: u32, buf: &mut [u8]) -> Result<(), Self::Error> {
|
|
|
|
let len = buf.len();
|
|
|
|
buf[..].copy_from_slice(&self.0[offset as usize..offset as usize + len]);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn capacity(&self) -> usize {
|
2022-04-28 10:38:25 +02:00
|
|
|
SIZE
|
2022-01-24 12:54:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-30 13:07:35 +02:00
|
|
|
impl<const SIZE: usize, const ERASE_SIZE: usize, const WRITE_SIZE: usize> super::Flash
|
|
|
|
for MemFlash<SIZE, ERASE_SIZE, WRITE_SIZE>
|
|
|
|
{
|
|
|
|
const BLOCK_SIZE: usize = ERASE_SIZE;
|
|
|
|
const ERASE_VALUE: u8 = 0xFF;
|
|
|
|
}
|
|
|
|
|
2022-04-28 10:38:25 +02:00
|
|
|
impl<const SIZE: usize, const ERASE_SIZE: usize, const WRITE_SIZE: usize> AsyncReadNorFlash
|
|
|
|
for MemFlash<SIZE, ERASE_SIZE, WRITE_SIZE>
|
|
|
|
{
|
2022-01-24 12:54:09 +01:00
|
|
|
const READ_SIZE: usize = 4;
|
|
|
|
|
|
|
|
type ReadFuture<'a> = impl Future<Output = Result<(), Self::Error>> + 'a;
|
2022-04-20 13:49:59 +02:00
|
|
|
fn read<'a>(&'a mut self, offset: u32, buf: &'a mut [u8]) -> Self::ReadFuture<'a> {
|
2022-01-24 12:54:09 +01:00
|
|
|
async move {
|
|
|
|
let len = buf.len();
|
|
|
|
buf[..].copy_from_slice(&self.0[offset as usize..offset as usize + len]);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn capacity(&self) -> usize {
|
2022-04-28 10:38:25 +02:00
|
|
|
SIZE
|
2022-01-24 12:54:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-28 10:38:25 +02:00
|
|
|
impl<const SIZE: usize, const ERASE_SIZE: usize, const WRITE_SIZE: usize> AsyncNorFlash
|
|
|
|
for MemFlash<SIZE, ERASE_SIZE, WRITE_SIZE>
|
|
|
|
{
|
|
|
|
const WRITE_SIZE: usize = WRITE_SIZE;
|
|
|
|
const ERASE_SIZE: usize = ERASE_SIZE;
|
2022-01-24 12:54:09 +01:00
|
|
|
|
|
|
|
type EraseFuture<'a> = impl Future<Output = Result<(), Self::Error>> + 'a;
|
2022-09-02 08:42:42 +02:00
|
|
|
fn erase(&mut self, from: u32, to: u32) -> Self::EraseFuture<'_> {
|
2022-01-24 12:54:09 +01:00
|
|
|
async move {
|
|
|
|
let from = from as usize;
|
|
|
|
let to = to as usize;
|
2022-04-28 10:38:25 +02:00
|
|
|
assert!(from % ERASE_SIZE == 0);
|
|
|
|
assert!(to % ERASE_SIZE == 0);
|
2022-01-24 12:54:09 +01:00
|
|
|
for i in from..to {
|
|
|
|
self.0[i] = 0xFF;
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type WriteFuture<'a> = impl Future<Output = Result<(), Self::Error>> + 'a;
|
|
|
|
fn write<'a>(&'a mut self, offset: u32, data: &'a [u8]) -> Self::WriteFuture<'a> {
|
2022-04-28 10:38:25 +02:00
|
|
|
info!("Writing {} bytes to 0x{:x}", data.len(), offset);
|
2022-01-24 12:54:09 +01:00
|
|
|
async move {
|
2022-04-28 10:38:25 +02:00
|
|
|
assert!(data.len() % WRITE_SIZE == 0);
|
|
|
|
assert!(offset as usize % WRITE_SIZE == 0);
|
|
|
|
assert!(
|
|
|
|
offset as usize + data.len() <= SIZE,
|
|
|
|
"OFFSET: {}, LEN: {}, FLASH SIZE: {}",
|
|
|
|
offset,
|
|
|
|
data.len(),
|
|
|
|
SIZE
|
|
|
|
);
|
2022-01-24 12:54:09 +01:00
|
|
|
|
|
|
|
self.0[offset as usize..offset as usize + data.len()].copy_from_slice(data);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|