blob: 16c3b586023082922b51e0b238585c5cd2dc9e6c [file]
// Licensed under the Apache-2.0 license
// SPDX-License-Identifier: Apache-2.0
//! Flash device abstractions layered on top of SMC wrappers.
mod block_device;
mod flash;
pub use block_device::{BlockDeviceInfo, SpiNorBlockDevice};
pub use flash::{
FlashAddressingPolicy, FlashCommandProfile, JedecId, SpiNorFlash, SpiNorFlashDevice,
};