1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
#![warn(missing_docs)]
use crate::architecture::arm::ArmError;
use crate::architecture::riscv::communication_interface::RiscvError;
use crate::config::RegistryError;
use crate::DebugProbeError;
/// The overarching error type which contains all possible errors as variants.
#[derive(thiserror::Error, Debug)]
pub enum Error {
/// An error in the probe driver occurred.
#[error("An error with the usage of the probe occurred")]
Probe(#[from] DebugProbeError),
/// An ARM specific error occurred.
#[error("An ARM specific error occurred.")]
Arm(#[source] ArmError),
/// A RISCV specific error occurred.
#[error("A RISCV specific error occurred.")]
Riscv(#[source] RiscvError),
/// The probe could not be opened.
#[error("Probe could not be opened: {0}")]
UnableToOpenProbe(&'static str),
/// The core with given ID does not exist.
#[error("Core {0} does not exist")]
CoreNotFound(usize),
/// The given chip does not exist.
#[error("Unable to load specification for chip")]
ChipNotFound(#[from] RegistryError),
/// An operation was not performed because the required permissions were not given.
///
/// This can for example happen when the core is locked and needs to be erased to be unlocked.
/// Then the correct permission needs to be given to automatically unlock the core to prevent accidental erases.
#[error("An operation could not be performed because it lacked the permission to do so: {0}")]
MissingPermissions(String),
/// An error that is not architecture specific occurred.
#[error("A generic core (not architecture specific) error occurred.")]
GenericCoreError(String),
/// Any other error occurred.
#[error(transparent)]
Other(#[from] anyhow::Error),
// TODO: Errors below should be core specific
/// A timeout occurred during an operation
#[error("A timeout occurred.")]
Timeout,
/// Unaligned memory access
#[error("Alignment error")]
MemoryNotAligned {
/// The address of the register.
address: u64,
/// The required alignment in bytes (address increments).
alignment: usize,
},
}
impl From<ArmError> for Error {
fn from(value: ArmError) -> Self {
match value {
ArmError::Timeout => Error::Timeout,
ArmError::MemoryNotAligned { address, alignment } => {
Error::MemoryNotAligned { address, alignment }
}
other => Error::Arm(other),
}
}
}