On STM32L4[7-A]xx, STM32L5xxx and STM32U5xxx chips, the GPIOG[2..15] pins are only available once the IOSV bit has been set in PWR->CR2 (U5 chips have the bit in a funkier register). This is meant to allow the user to have control over this power supply, so the GPIOG pins are initially insulated, until the user wishes to un-insulate them (or something like that?). For most applications, though, the VDDIO2 is connected to the VDD line, and this behavior only gets in the way and causes confusing issues. This submission adds an option in `embassy_stm32::Config`, called `enable_independent_io_supply`, which simply enables the IOSV bit. It is only available on chips for which I could find a mention of IOSV (STM32L4 and STM32L5) or IO2SV (STM32U5).
361 lines
11 KiB
Rust
361 lines
11 KiB
Rust
#![cfg_attr(not(test), no_std)]
|
|
#![allow(async_fn_in_trait)]
|
|
#![cfg_attr(
|
|
docsrs,
|
|
doc = "<div style='padding:30px;background:#810;color:#fff;text-align:center;'><p>You might want to <a href='https://docs.embassy.dev/embassy-stm32'>browse the `embassy-stm32` documentation on the Embassy website</a> instead.</p><p>The documentation here on `docs.rs` is built for a single chip only (STM32H755 in particular), while on the Embassy website you can pick your exact chip from the top menu. Available peripherals and their APIs change depending on the chip.</p></div>\n\n"
|
|
)]
|
|
#![doc = include_str!("../README.md")]
|
|
#![warn(missing_docs)]
|
|
|
|
//! ## Feature flags
|
|
#![doc = document_features::document_features!(feature_label = r#"<span class="stab portability"><code>{feature}</code></span>"#)]
|
|
|
|
// This must go FIRST so that all the other modules see its macros.
|
|
mod fmt;
|
|
include!(concat!(env!("OUT_DIR"), "/_macros.rs"));
|
|
|
|
// Utilities
|
|
pub mod time;
|
|
mod traits;
|
|
|
|
// Always-present hardware
|
|
pub mod dma;
|
|
pub mod gpio;
|
|
pub mod rcc;
|
|
#[cfg(feature = "_time-driver")]
|
|
mod time_driver;
|
|
pub mod timer;
|
|
|
|
// Sometimes-present hardware
|
|
|
|
#[cfg(adc)]
|
|
pub mod adc;
|
|
#[cfg(can)]
|
|
pub mod can;
|
|
#[cfg(crc)]
|
|
pub mod crc;
|
|
#[cfg(cryp)]
|
|
pub mod cryp;
|
|
#[cfg(dac)]
|
|
pub mod dac;
|
|
#[cfg(dcmi)]
|
|
pub mod dcmi;
|
|
#[cfg(eth)]
|
|
pub mod eth;
|
|
#[cfg(feature = "exti")]
|
|
pub mod exti;
|
|
pub mod flash;
|
|
#[cfg(fmc)]
|
|
pub mod fmc;
|
|
#[cfg(hash)]
|
|
pub mod hash;
|
|
#[cfg(hrtim)]
|
|
pub mod hrtim;
|
|
#[cfg(i2c)]
|
|
pub mod i2c;
|
|
#[cfg(all(spi_v1, rcc_f4))]
|
|
pub mod i2s;
|
|
#[cfg(stm32wb)]
|
|
pub mod ipcc;
|
|
#[cfg(feature = "low-power")]
|
|
pub mod low_power;
|
|
#[cfg(opamp)]
|
|
pub mod opamp;
|
|
#[cfg(quadspi)]
|
|
pub mod qspi;
|
|
#[cfg(rng)]
|
|
pub mod rng;
|
|
#[cfg(all(rtc, not(rtc_v1)))]
|
|
pub mod rtc;
|
|
#[cfg(sai)]
|
|
pub mod sai;
|
|
#[cfg(sdmmc)]
|
|
pub mod sdmmc;
|
|
#[cfg(spi)]
|
|
pub mod spi;
|
|
#[cfg(ucpd)]
|
|
pub mod ucpd;
|
|
#[cfg(uid)]
|
|
pub mod uid;
|
|
#[cfg(usart)]
|
|
pub mod usart;
|
|
#[cfg(any(usb, otg))]
|
|
pub mod usb;
|
|
#[cfg(iwdg)]
|
|
pub mod wdg;
|
|
|
|
// This must go last, so that it sees all the impl_foo! macros defined earlier.
|
|
pub(crate) mod _generated {
|
|
#![allow(dead_code)]
|
|
#![allow(unused_imports)]
|
|
#![allow(non_snake_case)]
|
|
#![allow(missing_docs)]
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/_generated.rs"));
|
|
}
|
|
|
|
pub use crate::_generated::interrupt;
|
|
|
|
/// Macro to bind interrupts to handlers.
|
|
///
|
|
/// This defines the right interrupt handlers, and creates a unit struct (like `struct Irqs;`)
|
|
/// and implements the right [`Binding`]s for it. You can pass this struct to drivers to
|
|
/// prove at compile-time that the right interrupts have been bound.
|
|
///
|
|
/// Example of how to bind one interrupt:
|
|
///
|
|
/// ```rust,ignore
|
|
/// use embassy_stm32::{bind_interrupts, usb, peripherals};
|
|
///
|
|
/// bind_interrupts!(struct Irqs {
|
|
/// OTG_FS => usb::InterruptHandler<peripherals::USB_OTG_FS>;
|
|
/// });
|
|
/// ```
|
|
///
|
|
/// Example of how to bind multiple interrupts, and multiple handlers to each interrupt, in a single macro invocation:
|
|
///
|
|
/// ```rust,ignore
|
|
/// use embassy_stm32::{bind_interrupts, i2c, peripherals};
|
|
///
|
|
/// bind_interrupts!(struct Irqs {
|
|
/// I2C1 => i2c::EventInterruptHandler<peripherals::I2C1>, i2c::ErrorInterruptHandler<peripherals::I2C1>;
|
|
/// I2C2_3 => i2c::EventInterruptHandler<peripherals::I2C2>, i2c::ErrorInterruptHandler<peripherals::I2C2>,
|
|
/// i2c::EventInterruptHandler<peripherals::I2C3>, i2c::ErrorInterruptHandler<peripherals::I2C3>;
|
|
/// });
|
|
/// ```
|
|
|
|
// developer note: this macro can't be in `embassy-hal-internal` due to the use of `$crate`.
|
|
#[macro_export]
|
|
macro_rules! bind_interrupts {
|
|
($vis:vis struct $name:ident { $($irq:ident => $($handler:ty),*;)* }) => {
|
|
#[derive(Copy, Clone)]
|
|
$vis struct $name;
|
|
|
|
$(
|
|
#[allow(non_snake_case)]
|
|
#[no_mangle]
|
|
unsafe extern "C" fn $irq() {
|
|
$(
|
|
<$handler as $crate::interrupt::typelevel::Handler<$crate::interrupt::typelevel::$irq>>::on_interrupt();
|
|
)*
|
|
}
|
|
|
|
$(
|
|
unsafe impl $crate::interrupt::typelevel::Binding<$crate::interrupt::typelevel::$irq, $handler> for $name {}
|
|
)*
|
|
)*
|
|
};
|
|
}
|
|
|
|
// Reexports
|
|
pub use _generated::{peripherals, Peripherals};
|
|
pub use embassy_hal_internal::{into_ref, Peripheral, PeripheralRef};
|
|
#[cfg(feature = "unstable-pac")]
|
|
pub use stm32_metapac as pac;
|
|
#[cfg(not(feature = "unstable-pac"))]
|
|
pub(crate) use stm32_metapac as pac;
|
|
|
|
use crate::interrupt::Priority;
|
|
#[cfg(feature = "rt")]
|
|
pub use crate::pac::NVIC_PRIO_BITS;
|
|
use crate::rcc::SealedRccPeripheral;
|
|
|
|
/// `embassy-stm32` global configuration.
|
|
#[non_exhaustive]
|
|
pub struct Config {
|
|
/// RCC config.
|
|
pub rcc: rcc::Config,
|
|
|
|
/// Enable debug during sleep and stop.
|
|
///
|
|
/// May incrase power consumption. Defaults to true.
|
|
#[cfg(dbgmcu)]
|
|
pub enable_debug_during_sleep: bool,
|
|
|
|
/// On low-power boards (eg. `stm32l4`, `stm32l5` and `stm32u5`),
|
|
/// some GPIO pins are powered by an auxiliary, independent power supply (`VDDIO2`),
|
|
/// which needs to be enabled before these pins can be used.
|
|
///
|
|
/// May increase power consumption. Defaults to true.
|
|
#[cfg(any(stm32l4, stm32l5, stm32u5))]
|
|
pub enable_independent_io_supply: bool,
|
|
|
|
/// BDMA interrupt priority.
|
|
///
|
|
/// Defaults to P0 (highest).
|
|
#[cfg(bdma)]
|
|
pub bdma_interrupt_priority: Priority,
|
|
|
|
/// DMA interrupt priority.
|
|
///
|
|
/// Defaults to P0 (highest).
|
|
#[cfg(dma)]
|
|
pub dma_interrupt_priority: Priority,
|
|
|
|
/// GPDMA interrupt priority.
|
|
///
|
|
/// Defaults to P0 (highest).
|
|
#[cfg(gpdma)]
|
|
pub gpdma_interrupt_priority: Priority,
|
|
|
|
/// Enables UCPD1 dead battery functionality.
|
|
///
|
|
/// Defaults to false (disabled).
|
|
#[cfg(peri_ucpd1)]
|
|
pub enable_ucpd1_dead_battery: bool,
|
|
|
|
/// Enables UCPD2 dead battery functionality.
|
|
///
|
|
/// Defaults to false (disabled).
|
|
#[cfg(peri_ucpd2)]
|
|
pub enable_ucpd2_dead_battery: bool,
|
|
}
|
|
|
|
impl Default for Config {
|
|
fn default() -> Self {
|
|
Self {
|
|
rcc: Default::default(),
|
|
#[cfg(dbgmcu)]
|
|
enable_debug_during_sleep: true,
|
|
#[cfg(any(stm32l4, stm32l5, stm32u5))]
|
|
enable_independent_io_supply: true,
|
|
#[cfg(bdma)]
|
|
bdma_interrupt_priority: Priority::P0,
|
|
#[cfg(dma)]
|
|
dma_interrupt_priority: Priority::P0,
|
|
#[cfg(gpdma)]
|
|
gpdma_interrupt_priority: Priority::P0,
|
|
#[cfg(peri_ucpd1)]
|
|
enable_ucpd1_dead_battery: false,
|
|
#[cfg(peri_ucpd2)]
|
|
enable_ucpd2_dead_battery: false,
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Initialize the `embassy-stm32` HAL with the provided configuration.
|
|
///
|
|
/// This returns the peripheral singletons that can be used for creating drivers.
|
|
///
|
|
/// This should only be called once at startup, otherwise it panics.
|
|
pub fn init(config: Config) -> Peripherals {
|
|
critical_section::with(|cs| {
|
|
let p = Peripherals::take_with_cs(cs);
|
|
|
|
#[cfg(dbgmcu)]
|
|
crate::pac::DBGMCU.cr().modify(|cr| {
|
|
#[cfg(any(dbgmcu_h5))]
|
|
{
|
|
cr.set_stop(config.enable_debug_during_sleep);
|
|
cr.set_standby(config.enable_debug_during_sleep);
|
|
}
|
|
#[cfg(any(dbgmcu_f0, dbgmcu_c0, dbgmcu_g0, dbgmcu_u5, dbgmcu_wba, dbgmcu_l5))]
|
|
{
|
|
cr.set_dbg_stop(config.enable_debug_during_sleep);
|
|
cr.set_dbg_standby(config.enable_debug_during_sleep);
|
|
}
|
|
#[cfg(any(
|
|
dbgmcu_f1, dbgmcu_f2, dbgmcu_f3, dbgmcu_f4, dbgmcu_f7, dbgmcu_g4, dbgmcu_f7, dbgmcu_l0, dbgmcu_l1,
|
|
dbgmcu_l4, dbgmcu_wb, dbgmcu_wl
|
|
))]
|
|
{
|
|
cr.set_dbg_sleep(config.enable_debug_during_sleep);
|
|
cr.set_dbg_stop(config.enable_debug_during_sleep);
|
|
cr.set_dbg_standby(config.enable_debug_during_sleep);
|
|
}
|
|
#[cfg(dbgmcu_h7)]
|
|
{
|
|
cr.set_d1dbgcken(config.enable_debug_during_sleep);
|
|
cr.set_d3dbgcken(config.enable_debug_during_sleep);
|
|
cr.set_dbgsleep_d1(config.enable_debug_during_sleep);
|
|
cr.set_dbgstby_d1(config.enable_debug_during_sleep);
|
|
cr.set_dbgstop_d1(config.enable_debug_during_sleep);
|
|
}
|
|
});
|
|
|
|
#[cfg(not(any(stm32f1, stm32wb, stm32wl)))]
|
|
peripherals::SYSCFG::enable_and_reset_with_cs(cs);
|
|
#[cfg(not(any(stm32h5, stm32h7, stm32wb, stm32wl)))]
|
|
peripherals::PWR::enable_and_reset_with_cs(cs);
|
|
#[cfg(not(any(stm32f2, stm32f4, stm32f7, stm32l0, stm32h5, stm32h7)))]
|
|
peripherals::FLASH::enable_and_reset_with_cs(cs);
|
|
|
|
// Enable the VDDIO2 power supply on chips that have it.
|
|
// Note that this requires the PWR peripheral to be enabled first.
|
|
#[cfg(any(stm32l4, stm32l5))]
|
|
{
|
|
crate::pac::PWR.cr2().modify(|w| {
|
|
// The official documentation states that we should ideally enable VDDIO2
|
|
// through the PVME2 bit, but it looks like this bit
|
|
w.set_iosv(config.enable_independent_io_supply);
|
|
});
|
|
}
|
|
#[cfg(stm32u5)]
|
|
{
|
|
crate::pac::PWR.svmcr().modify(|w| {
|
|
w.set_io2sv(config.enable_independent_io_supply);
|
|
});
|
|
}
|
|
|
|
// dead battery functionality is still present on these
|
|
// chips despite them not having UCPD- disable it
|
|
#[cfg(any(stm32g070, stm32g0b0))]
|
|
{
|
|
crate::pac::SYSCFG.cfgr1().modify(|w| {
|
|
w.set_ucpd1_strobe(true);
|
|
w.set_ucpd2_strobe(true);
|
|
});
|
|
}
|
|
|
|
unsafe {
|
|
#[cfg(ucpd)]
|
|
ucpd::init(
|
|
cs,
|
|
#[cfg(peri_ucpd1)]
|
|
config.enable_ucpd1_dead_battery,
|
|
#[cfg(peri_ucpd2)]
|
|
config.enable_ucpd2_dead_battery,
|
|
);
|
|
|
|
#[cfg(feature = "_split-pins-enabled")]
|
|
crate::pac::SYSCFG.pmcr().modify(|pmcr| {
|
|
#[cfg(feature = "split-pa0")]
|
|
pmcr.set_pa0so(true);
|
|
#[cfg(feature = "split-pa1")]
|
|
pmcr.set_pa1so(true);
|
|
#[cfg(feature = "split-pc2")]
|
|
pmcr.set_pc2so(true);
|
|
#[cfg(feature = "split-pc3")]
|
|
pmcr.set_pc3so(true);
|
|
});
|
|
|
|
gpio::init(cs);
|
|
dma::init(
|
|
cs,
|
|
#[cfg(bdma)]
|
|
config.bdma_interrupt_priority,
|
|
#[cfg(dma)]
|
|
config.dma_interrupt_priority,
|
|
#[cfg(gpdma)]
|
|
config.gpdma_interrupt_priority,
|
|
);
|
|
#[cfg(feature = "exti")]
|
|
exti::init(cs);
|
|
|
|
rcc::init(config.rcc);
|
|
|
|
// must be after rcc init
|
|
#[cfg(feature = "_time-driver")]
|
|
time_driver::init(cs);
|
|
|
|
#[cfg(feature = "low-power")]
|
|
{
|
|
crate::rcc::REFCOUNT_STOP2 = 0;
|
|
crate::rcc::REFCOUNT_STOP1 = 0;
|
|
}
|
|
}
|
|
|
|
p
|
|
})
|
|
}
|