2023-11-13 01:05:07 +01:00
|
|
|
#[cfg(any(stm32l0, stm32l1))]
|
|
|
|
pub use crate::pac::pwr::vals::Vos as VoltageScale;
|
2023-10-09 02:48:22 +02:00
|
|
|
use crate::pac::rcc::regs::Cfgr;
|
2023-10-23 01:09:36 +02:00
|
|
|
#[cfg(any(stm32wb, stm32wl))]
|
|
|
|
pub use crate::pac::rcc::vals::Hsepre as HsePrescaler;
|
2024-02-26 00:00:17 +01:00
|
|
|
pub use crate::pac::rcc::vals::{Hpre as AHBPrescaler, Msirange as MSIRange, Ppre as APBPrescaler, Sw as Sysclk};
|
2023-09-06 17:48:12 -05:00
|
|
|
use crate::pac::{FLASH, RCC};
|
2022-07-10 17:36:10 -05:00
|
|
|
use crate::time::Hertz;
|
2021-06-14 10:48:14 +02:00
|
|
|
|
2022-07-10 20:59:36 +03:00
|
|
|
/// HSI speed
|
|
|
|
pub const HSI_FREQ: Hertz = Hertz(16_000_000);
|
|
|
|
|
2023-10-23 00:28:54 +02:00
|
|
|
#[derive(Clone, Copy, Eq, PartialEq)]
|
|
|
|
pub enum HseMode {
|
|
|
|
/// crystal/ceramic oscillator (HSEBYP=0)
|
|
|
|
Oscillator,
|
|
|
|
/// external analog clock (low swing) (HSEBYP=1)
|
|
|
|
Bypass,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Copy, Eq, PartialEq)]
|
|
|
|
pub struct Hse {
|
|
|
|
/// HSE frequency.
|
|
|
|
pub freq: Hertz,
|
|
|
|
/// HSE mode.
|
|
|
|
pub mode: HseMode,
|
2023-10-23 01:09:36 +02:00
|
|
|
/// HSE prescaler
|
|
|
|
#[cfg(any(stm32wb, stm32wl))]
|
|
|
|
pub prescaler: HsePrescaler,
|
2023-10-23 00:28:54 +02:00
|
|
|
}
|
|
|
|
|
2023-11-01 11:46:17 -07:00
|
|
|
/// Clocks configuration
|
2021-06-14 10:48:14 +02:00
|
|
|
pub struct Config {
|
2023-10-15 03:08:14 +02:00
|
|
|
// base clock sources
|
|
|
|
pub msi: Option<MSIRange>,
|
2023-10-22 22:39:55 +02:00
|
|
|
pub hsi: bool,
|
2023-10-23 00:28:54 +02:00
|
|
|
pub hse: Option<Hse>,
|
2023-11-05 23:35:01 +01:00
|
|
|
#[cfg(crs)]
|
|
|
|
pub hsi48: Option<super::Hsi48Config>,
|
2023-10-15 03:08:14 +02:00
|
|
|
|
|
|
|
// pll
|
|
|
|
pub pll: Option<Pll>,
|
2023-10-23 01:09:36 +02:00
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wb))]
|
2023-10-15 03:08:14 +02:00
|
|
|
pub pllsai1: Option<Pll>,
|
2023-10-16 03:47:54 +02:00
|
|
|
#[cfg(any(stm32l47x, stm32l48x, stm32l49x, stm32l4ax, rcc_l4plus, stm32l5))]
|
2023-10-15 03:08:14 +02:00
|
|
|
pub pllsai2: Option<Pll>,
|
|
|
|
|
|
|
|
// sysclk, buses.
|
2024-02-26 00:00:17 +01:00
|
|
|
pub sys: Sysclk,
|
2022-01-04 11:18:59 +01:00
|
|
|
pub ahb_pre: AHBPrescaler,
|
|
|
|
pub apb1_pre: APBPrescaler,
|
2024-04-13 02:13:41 +02:00
|
|
|
#[cfg(not(stm32u0))]
|
2022-01-04 11:18:59 +01:00
|
|
|
pub apb2_pre: APBPrescaler,
|
2023-10-23 01:09:36 +02:00
|
|
|
#[cfg(any(stm32wl5x, stm32wb))]
|
|
|
|
pub core2_ahb_pre: AHBPrescaler,
|
|
|
|
#[cfg(any(stm32wl, stm32wb))]
|
2023-10-23 00:28:54 +02:00
|
|
|
pub shared_ahb_pre: AHBPrescaler,
|
2023-10-15 03:08:14 +02:00
|
|
|
|
|
|
|
// low speed LSI/LSE/RTC
|
2023-10-11 03:53:27 +02:00
|
|
|
pub ls: super::LsConfig,
|
2023-11-01 11:46:17 -07:00
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
#[cfg(any(stm32l0, stm32l1))]
|
|
|
|
pub voltage_scale: VoltageScale,
|
2024-02-26 03:28:27 +01:00
|
|
|
|
|
|
|
/// Per-peripheral kernel clock selection muxes
|
|
|
|
pub mux: super::mux::ClockMux,
|
2021-06-14 10:48:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Config {
|
|
|
|
#[inline]
|
|
|
|
fn default() -> Config {
|
|
|
|
Config {
|
2023-10-15 03:08:14 +02:00
|
|
|
hse: None,
|
2023-10-22 22:39:55 +02:00
|
|
|
hsi: false,
|
2023-10-15 03:08:14 +02:00
|
|
|
msi: Some(MSIRange::RANGE4M),
|
2024-02-26 00:00:17 +01:00
|
|
|
sys: Sysclk::MSI,
|
2023-09-16 17:41:11 -05:00
|
|
|
ahb_pre: AHBPrescaler::DIV1,
|
|
|
|
apb1_pre: APBPrescaler::DIV1,
|
2024-04-13 02:13:41 +02:00
|
|
|
#[cfg(not(stm32u0))]
|
2023-09-16 17:41:11 -05:00
|
|
|
apb2_pre: APBPrescaler::DIV1,
|
2023-10-23 01:09:36 +02:00
|
|
|
#[cfg(any(stm32wl5x, stm32wb))]
|
|
|
|
core2_ahb_pre: AHBPrescaler::DIV1,
|
|
|
|
#[cfg(any(stm32wl, stm32wb))]
|
2023-10-23 00:28:54 +02:00
|
|
|
shared_ahb_pre: AHBPrescaler::DIV1,
|
2023-10-15 03:08:14 +02:00
|
|
|
pll: None,
|
2023-10-23 01:09:36 +02:00
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wb))]
|
2022-04-01 22:22:41 -06:00
|
|
|
pllsai1: None,
|
2023-10-16 03:47:54 +02:00
|
|
|
#[cfg(any(stm32l47x, stm32l48x, stm32l49x, stm32l4ax, rcc_l4plus, stm32l5))]
|
2023-10-15 03:08:14 +02:00
|
|
|
pllsai2: None,
|
2023-11-05 23:35:01 +01:00
|
|
|
#[cfg(crs)]
|
|
|
|
hsi48: Some(Default::default()),
|
2023-10-11 03:53:27 +02:00
|
|
|
ls: Default::default(),
|
2023-11-13 01:05:07 +01:00
|
|
|
#[cfg(any(stm32l0, stm32l1))]
|
|
|
|
voltage_scale: VoltageScale::RANGE1,
|
2024-02-26 03:28:27 +01:00
|
|
|
mux: Default::default(),
|
2021-06-14 10:48:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-23 01:09:36 +02:00
|
|
|
#[cfg(stm32wb)]
|
|
|
|
pub const WPAN_DEFAULT: Config = Config {
|
|
|
|
hse: Some(Hse {
|
|
|
|
freq: Hertz(32_000_000),
|
|
|
|
mode: HseMode::Oscillator,
|
|
|
|
prescaler: HsePrescaler::DIV1,
|
|
|
|
}),
|
2024-02-26 00:00:17 +01:00
|
|
|
sys: Sysclk::PLL1_R,
|
2023-11-05 23:35:01 +01:00
|
|
|
#[cfg(crs)]
|
|
|
|
hsi48: Some(super::Hsi48Config { sync_from_usb: false }),
|
2023-10-23 01:09:36 +02:00
|
|
|
msi: None,
|
|
|
|
hsi: false,
|
|
|
|
|
|
|
|
ls: super::LsConfig::default_lse(),
|
|
|
|
|
|
|
|
pll: Some(Pll {
|
2023-11-13 00:52:01 +01:00
|
|
|
source: PllSource::HSE,
|
2023-10-23 01:09:36 +02:00
|
|
|
prediv: PllPreDiv::DIV2,
|
|
|
|
mul: PllMul::MUL12,
|
|
|
|
divp: Some(PllPDiv::DIV3), // 32 / 2 * 12 / 3 = 64Mhz
|
|
|
|
divq: Some(PllQDiv::DIV4), // 32 / 2 * 12 / 4 = 48Mhz
|
|
|
|
divr: Some(PllRDiv::DIV3), // 32 / 2 * 12 / 3 = 64Mhz
|
|
|
|
}),
|
|
|
|
pllsai1: None,
|
|
|
|
|
|
|
|
ahb_pre: AHBPrescaler::DIV1,
|
|
|
|
core2_ahb_pre: AHBPrescaler::DIV2,
|
|
|
|
shared_ahb_pre: AHBPrescaler::DIV1,
|
|
|
|
apb1_pre: APBPrescaler::DIV1,
|
|
|
|
apb2_pre: APBPrescaler::DIV1,
|
2024-02-26 03:28:27 +01:00
|
|
|
|
|
|
|
mux: super::mux::ClockMux::default(),
|
2023-10-23 01:09:36 +02:00
|
|
|
};
|
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
fn msi_enable(range: MSIRange) {
|
2024-04-13 02:13:41 +02:00
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wb, stm32wl, stm32u0))]
|
2023-11-13 01:05:07 +01:00
|
|
|
RCC.cr().modify(|w| {
|
|
|
|
#[cfg(not(stm32wb))]
|
|
|
|
w.set_msirgsel(crate::pac::rcc::vals::Msirgsel::CR);
|
|
|
|
w.set_msirange(range);
|
|
|
|
w.set_msipllen(false);
|
|
|
|
});
|
|
|
|
#[cfg(any(stm32l0, stm32l1))]
|
|
|
|
RCC.icscr().modify(|w| w.set_msirange(range));
|
|
|
|
|
|
|
|
RCC.cr().modify(|w| w.set_msion(true));
|
|
|
|
while !RCC.cr().read().msirdy() {}
|
|
|
|
}
|
|
|
|
|
2022-01-04 23:58:13 +01:00
|
|
|
pub(crate) unsafe fn init(config: Config) {
|
2023-07-01 12:16:23 +02:00
|
|
|
// Switch to MSI to prevent problems with PLL configuration.
|
|
|
|
if !RCC.cr().read().msion() {
|
|
|
|
// Turn on MSI and configure it to 4MHz.
|
2023-11-13 01:05:07 +01:00
|
|
|
msi_enable(MSIRange::RANGE4M)
|
2023-07-01 12:16:23 +02:00
|
|
|
}
|
2024-02-26 00:00:17 +01:00
|
|
|
if RCC.cfgr().read().sws() != Sysclk::MSI {
|
2023-07-01 12:16:23 +02:00
|
|
|
// Set MSI as a clock source, reset prescalers.
|
|
|
|
RCC.cfgr().write_value(Cfgr::default());
|
|
|
|
// Wait for clock switch status bits to change.
|
2024-02-26 00:00:17 +01:00
|
|
|
while RCC.cfgr().read().sws() != Sysclk::MSI {}
|
2023-07-01 12:16:23 +02:00
|
|
|
}
|
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
// Set voltage scale
|
|
|
|
#[cfg(any(stm32l0, stm32l1))]
|
|
|
|
{
|
|
|
|
while crate::pac::PWR.csr().read().vosf() {}
|
|
|
|
crate::pac::PWR.cr().write(|w| w.set_vos(config.voltage_scale));
|
|
|
|
while crate::pac::PWR.csr().read().vosf() {}
|
|
|
|
}
|
|
|
|
|
2023-10-16 03:47:54 +02:00
|
|
|
#[cfg(stm32l5)]
|
|
|
|
crate::pac::PWR.cr1().modify(|w| {
|
|
|
|
w.set_vos(crate::pac::pwr::vals::Vos::RANGE0);
|
|
|
|
});
|
|
|
|
|
2023-10-11 03:53:27 +02:00
|
|
|
let rtc = config.ls.init();
|
2023-05-25 21:15:18 +02:00
|
|
|
|
2023-10-15 03:08:14 +02:00
|
|
|
let msi = config.msi.map(|range| {
|
2023-11-13 01:05:07 +01:00
|
|
|
msi_enable(range);
|
2023-10-15 03:08:14 +02:00
|
|
|
msirange_to_hertz(range)
|
|
|
|
});
|
2022-04-01 22:22:41 -06:00
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
// If LSE is enabled and the right freq, enable calibration of MSI
|
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wb, stm32wl))]
|
|
|
|
if config.ls.lse.map(|x| x.frequency) == Some(Hertz(32_768)) {
|
|
|
|
RCC.cr().modify(|w| w.set_msipllen(true));
|
|
|
|
}
|
|
|
|
|
2023-10-22 22:39:55 +02:00
|
|
|
let hsi = config.hsi.then(|| {
|
2023-10-23 00:28:54 +02:00
|
|
|
RCC.cr().modify(|w| w.set_hsion(true));
|
2023-10-15 03:08:14 +02:00
|
|
|
while !RCC.cr().read().hsirdy() {}
|
2022-01-04 23:58:13 +01:00
|
|
|
|
2023-10-15 03:08:14 +02:00
|
|
|
HSI_FREQ
|
|
|
|
});
|
|
|
|
|
2023-10-23 00:28:54 +02:00
|
|
|
let hse = config.hse.map(|hse| {
|
|
|
|
RCC.cr().modify(|w| {
|
|
|
|
#[cfg(stm32wl)]
|
|
|
|
w.set_hsebyppwr(hse.mode == HseMode::Bypass);
|
|
|
|
#[cfg(not(stm32wl))]
|
|
|
|
w.set_hsebyp(hse.mode == HseMode::Bypass);
|
|
|
|
w.set_hseon(true);
|
|
|
|
});
|
2023-10-15 03:08:14 +02:00
|
|
|
while !RCC.cr().read().hserdy() {}
|
|
|
|
|
2023-10-23 00:28:54 +02:00
|
|
|
hse.freq
|
2023-10-15 03:08:14 +02:00
|
|
|
});
|
2022-01-04 23:58:13 +01:00
|
|
|
|
2023-11-05 23:35:01 +01:00
|
|
|
#[cfg(crs)]
|
2024-02-04 22:07:17 +01:00
|
|
|
let hsi48 = config.hsi48.map(|config| super::init_hsi48(config));
|
2023-11-05 23:35:01 +01:00
|
|
|
#[cfg(not(crs))]
|
2024-02-04 22:07:17 +01:00
|
|
|
let hsi48: Option<Hertz> = None;
|
2023-10-16 03:09:33 +02:00
|
|
|
|
|
|
|
let _plls = [
|
|
|
|
&config.pll,
|
2023-10-23 01:09:36 +02:00
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wb))]
|
2023-10-16 03:09:33 +02:00
|
|
|
&config.pllsai1,
|
2023-10-16 03:47:54 +02:00
|
|
|
#[cfg(any(stm32l47x, stm32l48x, stm32l49x, stm32l4ax, rcc_l4plus, stm32l5))]
|
2023-10-16 03:09:33 +02:00
|
|
|
&config.pllsai2,
|
|
|
|
];
|
|
|
|
|
|
|
|
// L4 has shared PLLSRC, PLLM, check it's equal in all PLLs.
|
2023-10-16 03:47:54 +02:00
|
|
|
#[cfg(all(stm32l4, not(rcc_l4plus)))]
|
2023-10-23 01:48:09 +02:00
|
|
|
match super::util::get_equal(_plls.into_iter().flatten().map(|p| (p.source, p.prediv))) {
|
2023-10-16 03:09:33 +02:00
|
|
|
Err(()) => panic!("Source must be equal across all enabled PLLs."),
|
|
|
|
Ok(None) => {}
|
|
|
|
Ok(Some((source, prediv))) => RCC.pllcfgr().write(|w| {
|
|
|
|
w.set_pllm(prediv);
|
|
|
|
w.set_pllsrc(source);
|
|
|
|
}),
|
2023-10-15 03:08:14 +02:00
|
|
|
};
|
|
|
|
|
2023-10-23 00:28:54 +02:00
|
|
|
// L4+, WL has shared PLLSRC, check it's equal in all PLLs.
|
|
|
|
#[cfg(any(rcc_l4plus, stm32wl))]
|
2023-10-23 01:48:09 +02:00
|
|
|
match super::util::get_equal(_plls.into_iter().flatten().map(|p| p.source)) {
|
2023-10-16 03:09:33 +02:00
|
|
|
Err(()) => panic!("Source must be equal across all enabled PLLs."),
|
|
|
|
Ok(None) => {}
|
|
|
|
Ok(Some(source)) => RCC.pllcfgr().write(|w| {
|
|
|
|
w.set_pllsrc(source);
|
|
|
|
}),
|
|
|
|
};
|
2023-10-15 03:08:14 +02:00
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
let pll_input = PllInput {
|
|
|
|
hse,
|
|
|
|
hsi,
|
2024-04-13 02:13:41 +02:00
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wb, stm32wl, stm32u0))]
|
2023-11-13 01:05:07 +01:00
|
|
|
msi,
|
|
|
|
};
|
2023-10-16 03:09:33 +02:00
|
|
|
let pll = init_pll(PllInstance::Pll, config.pll, &pll_input);
|
2023-10-23 01:09:36 +02:00
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wb))]
|
2023-10-16 03:09:33 +02:00
|
|
|
let pllsai1 = init_pll(PllInstance::Pllsai1, config.pllsai1, &pll_input);
|
2023-10-16 03:47:54 +02:00
|
|
|
#[cfg(any(stm32l47x, stm32l48x, stm32l49x, stm32l4ax, rcc_l4plus, stm32l5))]
|
2024-02-02 22:42:32 +01:00
|
|
|
let pllsai2 = init_pll(PllInstance::Pllsai2, config.pllsai2, &pll_input);
|
2022-04-09 14:25:29 -06:00
|
|
|
|
2024-02-26 00:00:17 +01:00
|
|
|
let sys_clk = match config.sys {
|
|
|
|
Sysclk::HSE => hse.unwrap(),
|
|
|
|
Sysclk::HSI => hsi.unwrap(),
|
|
|
|
Sysclk::MSI => msi.unwrap(),
|
|
|
|
Sysclk::PLL1_R => pll.r.unwrap(),
|
2024-04-13 02:13:41 +02:00
|
|
|
#[cfg(stm32u0)]
|
|
|
|
Sysclk::LSI | Sysclk::LSE => todo!(),
|
|
|
|
#[cfg(stm32u0)]
|
|
|
|
Sysclk::_RESERVED_6 | Sysclk::_RESERVED_7 => unreachable!(),
|
2023-10-16 03:09:33 +02:00
|
|
|
};
|
|
|
|
|
2023-10-16 03:47:54 +02:00
|
|
|
#[cfg(rcc_l4plus)]
|
2023-10-15 03:08:14 +02:00
|
|
|
assert!(sys_clk.0 <= 120_000_000);
|
2023-10-16 03:47:54 +02:00
|
|
|
#[cfg(all(stm32l4, not(rcc_l4plus)))]
|
2023-10-15 03:08:14 +02:00
|
|
|
assert!(sys_clk.0 <= 80_000_000);
|
|
|
|
|
2023-10-23 01:48:09 +02:00
|
|
|
let hclk1 = sys_clk / config.ahb_pre;
|
|
|
|
let (pclk1, pclk1_tim) = super::util::calc_pclk(hclk1, config.apb1_pre);
|
2024-04-13 02:13:41 +02:00
|
|
|
#[cfg(not(stm32u0))]
|
2023-10-23 01:48:09 +02:00
|
|
|
let (pclk2, pclk2_tim) = super::util::calc_pclk(hclk1, config.apb2_pre);
|
2023-11-13 01:05:07 +01:00
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wlex))]
|
2023-10-23 01:48:09 +02:00
|
|
|
let hclk2 = hclk1;
|
2023-10-23 01:09:36 +02:00
|
|
|
#[cfg(any(stm32wl5x, stm32wb))]
|
2023-10-23 01:48:09 +02:00
|
|
|
let hclk2 = sys_clk / config.core2_ahb_pre;
|
2023-11-13 01:05:07 +01:00
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wlex))]
|
2023-10-23 01:48:09 +02:00
|
|
|
let hclk3 = hclk1;
|
2023-11-13 01:05:07 +01:00
|
|
|
#[cfg(any(stm32wl5x, stm32wb))]
|
2023-10-23 01:48:09 +02:00
|
|
|
let hclk3 = sys_clk / config.shared_ahb_pre;
|
2023-10-23 00:28:54 +02:00
|
|
|
|
|
|
|
// Set flash wait states
|
2023-11-13 01:05:07 +01:00
|
|
|
#[cfg(any(stm32l0, stm32l1))]
|
|
|
|
let latency = match (config.voltage_scale, sys_clk.0) {
|
|
|
|
(VoltageScale::RANGE1, ..=16_000_000) => false,
|
|
|
|
(VoltageScale::RANGE2, ..=8_000_000) => false,
|
|
|
|
(VoltageScale::RANGE3, ..=4_200_000) => false,
|
|
|
|
_ => true,
|
|
|
|
};
|
2023-10-23 00:28:54 +02:00
|
|
|
#[cfg(stm32l4)]
|
2023-10-23 01:48:09 +02:00
|
|
|
let latency = match hclk1.0 {
|
2023-10-23 00:28:54 +02:00
|
|
|
0..=16_000_000 => 0,
|
|
|
|
0..=32_000_000 => 1,
|
|
|
|
0..=48_000_000 => 2,
|
|
|
|
0..=64_000_000 => 3,
|
|
|
|
_ => 4,
|
|
|
|
};
|
|
|
|
#[cfg(stm32l5)]
|
2023-10-23 01:48:09 +02:00
|
|
|
let latency = match hclk1.0 {
|
2023-10-23 00:28:54 +02:00
|
|
|
// VCORE Range 0 (performance), others TODO
|
|
|
|
0..=20_000_000 => 0,
|
|
|
|
0..=40_000_000 => 1,
|
|
|
|
0..=60_000_000 => 2,
|
|
|
|
0..=80_000_000 => 3,
|
|
|
|
0..=100_000_000 => 4,
|
|
|
|
_ => 5,
|
|
|
|
};
|
|
|
|
#[cfg(stm32wl)]
|
2023-10-23 01:48:09 +02:00
|
|
|
let latency = match hclk3.0 {
|
2023-10-23 00:28:54 +02:00
|
|
|
// VOS RANGE1, others TODO.
|
|
|
|
..=18_000_000 => 0,
|
|
|
|
..=36_000_000 => 1,
|
|
|
|
_ => 2,
|
|
|
|
};
|
2023-10-23 01:09:36 +02:00
|
|
|
#[cfg(stm32wb)]
|
2023-10-23 01:48:09 +02:00
|
|
|
let latency = match hclk3.0 {
|
2023-10-23 01:09:36 +02:00
|
|
|
// VOS RANGE1, others TODO.
|
|
|
|
..=18_000_000 => 0,
|
|
|
|
..=36_000_000 => 1,
|
|
|
|
..=54_000_000 => 2,
|
|
|
|
..=64_000_000 => 3,
|
|
|
|
_ => 4,
|
|
|
|
};
|
2024-04-13 02:13:41 +02:00
|
|
|
#[cfg(stm32u0)]
|
|
|
|
let latency = match hclk1.0 {
|
|
|
|
// VOS RANGE1, others TODO.
|
|
|
|
..=24_000_000 => 0,
|
|
|
|
..=48_000_000 => 1,
|
|
|
|
_ => 2,
|
|
|
|
};
|
2023-10-23 00:28:54 +02:00
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
#[cfg(stm32l1)]
|
|
|
|
FLASH.acr().write(|w| w.set_acc64(true));
|
|
|
|
#[cfg(not(stm32l5))]
|
|
|
|
FLASH.acr().modify(|w| w.set_prften(true));
|
2023-10-23 00:28:54 +02:00
|
|
|
FLASH.acr().modify(|w| w.set_latency(latency));
|
|
|
|
while FLASH.acr().read().latency() != latency {}
|
|
|
|
|
|
|
|
RCC.cfgr().modify(|w| {
|
2024-02-26 00:00:17 +01:00
|
|
|
w.set_sw(config.sys);
|
2023-10-23 00:28:54 +02:00
|
|
|
w.set_hpre(config.ahb_pre);
|
2024-04-13 02:13:41 +02:00
|
|
|
#[cfg(stm32u0)]
|
|
|
|
w.set_ppre(config.apb1_pre);
|
|
|
|
#[cfg(not(stm32u0))]
|
2023-10-23 00:28:54 +02:00
|
|
|
w.set_ppre1(config.apb1_pre);
|
2024-04-13 02:13:41 +02:00
|
|
|
#[cfg(not(stm32u0))]
|
2023-10-23 00:28:54 +02:00
|
|
|
w.set_ppre2(config.apb2_pre);
|
|
|
|
});
|
2024-02-26 00:00:17 +01:00
|
|
|
while RCC.cfgr().read().sws() != config.sys {}
|
2023-10-23 00:28:54 +02:00
|
|
|
|
2023-10-23 01:09:36 +02:00
|
|
|
#[cfg(any(stm32wl, stm32wb))]
|
2023-10-23 00:28:54 +02:00
|
|
|
{
|
|
|
|
RCC.extcfgr().modify(|w| {
|
|
|
|
w.set_shdhpre(config.shared_ahb_pre);
|
2023-10-23 01:09:36 +02:00
|
|
|
#[cfg(any(stm32wl5x, stm32wb))]
|
|
|
|
w.set_c2hpre(config.core2_ahb_pre);
|
2023-10-23 00:28:54 +02:00
|
|
|
});
|
|
|
|
while !RCC.extcfgr().read().shdhpref() {}
|
2023-10-23 01:09:36 +02:00
|
|
|
#[cfg(any(stm32wl5x, stm32wb))]
|
|
|
|
while !RCC.extcfgr().read().c2hpref() {}
|
2023-10-23 00:28:54 +02:00
|
|
|
}
|
|
|
|
|
2024-02-26 03:28:27 +01:00
|
|
|
config.mux.init();
|
|
|
|
|
2024-02-02 22:42:32 +01:00
|
|
|
set_clocks!(
|
|
|
|
sys: Some(sys_clk),
|
|
|
|
hclk1: Some(hclk1),
|
2023-11-13 01:05:07 +01:00
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wb, stm32wl))]
|
2024-02-02 22:42:32 +01:00
|
|
|
hclk2: Some(hclk2),
|
2023-11-13 01:05:07 +01:00
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wb, stm32wl))]
|
2024-02-02 22:42:32 +01:00
|
|
|
hclk3: Some(hclk3),
|
|
|
|
pclk1: Some(pclk1),
|
2024-04-13 02:13:41 +02:00
|
|
|
#[cfg(not(stm32u0))]
|
2024-02-02 22:42:32 +01:00
|
|
|
pclk2: Some(pclk2),
|
|
|
|
pclk1_tim: Some(pclk1_tim),
|
2024-04-13 02:13:41 +02:00
|
|
|
#[cfg(not(stm32u0))]
|
2024-02-02 22:42:32 +01:00
|
|
|
pclk2_tim: Some(pclk2_tim),
|
2023-10-23 00:28:54 +02:00
|
|
|
#[cfg(stm32wl)]
|
2024-02-02 22:42:32 +01:00
|
|
|
pclk3: Some(hclk3),
|
|
|
|
hsi: hsi,
|
|
|
|
hse: hse,
|
|
|
|
msi: msi,
|
2024-02-04 22:07:17 +01:00
|
|
|
hsi48: hsi48,
|
2024-02-02 22:42:32 +01:00
|
|
|
|
2024-02-26 03:28:27 +01:00
|
|
|
#[cfg(any(stm32l0, stm32l1))]
|
|
|
|
pll1_vco_div_2: pll.vco.map(|c| c/2u32),
|
|
|
|
|
2024-02-02 22:42:32 +01:00
|
|
|
#[cfg(not(any(stm32l0, stm32l1)))]
|
|
|
|
pll1_p: pll.p,
|
|
|
|
#[cfg(not(any(stm32l0, stm32l1)))]
|
|
|
|
pll1_q: pll.q,
|
|
|
|
pll1_r: pll.r,
|
|
|
|
|
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wb))]
|
|
|
|
pllsai1_p: pllsai1.p,
|
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wb))]
|
|
|
|
pllsai1_q: pllsai1.q,
|
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wb))]
|
|
|
|
pllsai1_r: pllsai1.r,
|
|
|
|
|
2024-02-04 22:07:17 +01:00
|
|
|
#[cfg(not(any(stm32l47x, stm32l48x, stm32l49x, stm32l4ax, rcc_l4plus, stm32l5)))]
|
|
|
|
pllsai2_p: None,
|
|
|
|
#[cfg(not(any(stm32l47x, stm32l48x, stm32l49x, stm32l4ax, rcc_l4plus, stm32l5)))]
|
|
|
|
pllsai2_q: None,
|
|
|
|
#[cfg(not(any(stm32l47x, stm32l48x, stm32l49x, stm32l4ax, rcc_l4plus, stm32l5)))]
|
|
|
|
pllsai2_r: None,
|
|
|
|
|
2024-02-02 22:42:32 +01:00
|
|
|
#[cfg(any(stm32l47x, stm32l48x, stm32l49x, stm32l4ax, rcc_l4plus, stm32l5))]
|
|
|
|
pllsai2_p: pllsai2.p,
|
|
|
|
#[cfg(any(stm32l47x, stm32l48x, stm32l49x, stm32l4ax, rcc_l4plus, stm32l5))]
|
|
|
|
pllsai2_q: pllsai2.q,
|
|
|
|
#[cfg(any(stm32l47x, stm32l48x, stm32l49x, stm32l4ax, rcc_l4plus, stm32l5))]
|
|
|
|
pllsai2_r: pllsai2.r,
|
|
|
|
|
|
|
|
rtc: rtc,
|
|
|
|
|
|
|
|
// TODO
|
2023-10-16 20:04:10 -05:00
|
|
|
sai1_extclk: None,
|
|
|
|
sai2_extclk: None,
|
2024-02-02 22:42:32 +01:00
|
|
|
lsi: None,
|
|
|
|
lse: None,
|
2024-04-27 21:37:58 +08:00
|
|
|
#[cfg(stm32l4)]
|
|
|
|
dsi_phy: None,
|
2024-02-02 22:42:32 +01:00
|
|
|
);
|
2021-06-14 10:48:14 +02:00
|
|
|
}
|
2023-10-09 02:48:22 +02:00
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
#[cfg(any(stm32l0, stm32l1))]
|
|
|
|
fn msirange_to_hertz(range: MSIRange) -> Hertz {
|
|
|
|
Hertz(32_768 * (1 << (range as u8 + 1)))
|
|
|
|
}
|
|
|
|
|
2024-04-13 02:13:41 +02:00
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wb, stm32wl, stm32u0))]
|
2023-10-15 03:08:14 +02:00
|
|
|
fn msirange_to_hertz(range: MSIRange) -> Hertz {
|
2023-10-09 02:48:22 +02:00
|
|
|
match range {
|
|
|
|
MSIRange::RANGE100K => Hertz(100_000),
|
|
|
|
MSIRange::RANGE200K => Hertz(200_000),
|
|
|
|
MSIRange::RANGE400K => Hertz(400_000),
|
|
|
|
MSIRange::RANGE800K => Hertz(800_000),
|
|
|
|
MSIRange::RANGE1M => Hertz(1_000_000),
|
|
|
|
MSIRange::RANGE2M => Hertz(2_000_000),
|
|
|
|
MSIRange::RANGE4M => Hertz(4_000_000),
|
|
|
|
MSIRange::RANGE8M => Hertz(8_000_000),
|
|
|
|
MSIRange::RANGE16M => Hertz(16_000_000),
|
|
|
|
MSIRange::RANGE24M => Hertz(24_000_000),
|
|
|
|
MSIRange::RANGE32M => Hertz(32_000_000),
|
|
|
|
MSIRange::RANGE48M => Hertz(48_000_000),
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
2023-10-16 03:09:33 +02:00
|
|
|
|
|
|
|
#[derive(PartialEq, Eq, Clone, Copy)]
|
|
|
|
enum PllInstance {
|
|
|
|
Pll,
|
2023-10-23 01:09:36 +02:00
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wb))]
|
2023-10-16 03:09:33 +02:00
|
|
|
Pllsai1,
|
2023-10-16 03:47:54 +02:00
|
|
|
#[cfg(any(stm32l47x, stm32l48x, stm32l49x, stm32l4ax, rcc_l4plus, stm32l5))]
|
2023-10-16 03:09:33 +02:00
|
|
|
Pllsai2,
|
|
|
|
}
|
|
|
|
|
2023-10-23 01:48:09 +02:00
|
|
|
fn pll_enable(instance: PllInstance, enabled: bool) {
|
2023-10-16 03:09:33 +02:00
|
|
|
match instance {
|
|
|
|
PllInstance::Pll => {
|
2023-10-23 01:48:09 +02:00
|
|
|
RCC.cr().modify(|w| w.set_pllon(enabled));
|
|
|
|
while RCC.cr().read().pllrdy() != enabled {}
|
2023-10-16 03:09:33 +02:00
|
|
|
}
|
2023-10-23 01:09:36 +02:00
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wb))]
|
2023-10-16 03:09:33 +02:00
|
|
|
PllInstance::Pllsai1 => {
|
2023-10-23 01:48:09 +02:00
|
|
|
RCC.cr().modify(|w| w.set_pllsai1on(enabled));
|
|
|
|
while RCC.cr().read().pllsai1rdy() != enabled {}
|
2023-10-16 03:09:33 +02:00
|
|
|
}
|
2023-10-16 03:47:54 +02:00
|
|
|
#[cfg(any(stm32l47x, stm32l48x, stm32l49x, stm32l4ax, rcc_l4plus, stm32l5))]
|
2023-10-16 03:09:33 +02:00
|
|
|
PllInstance::Pllsai2 => {
|
2023-10-23 01:48:09 +02:00
|
|
|
RCC.cr().modify(|w| w.set_pllsai2on(enabled));
|
|
|
|
while RCC.cr().read().pllsai2rdy() != enabled {}
|
2023-10-16 03:09:33 +02:00
|
|
|
}
|
|
|
|
}
|
2023-10-23 01:48:09 +02:00
|
|
|
}
|
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
pub use pll::*;
|
2023-10-16 03:09:33 +02:00
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
#[cfg(any(stm32l0, stm32l1))]
|
|
|
|
mod pll {
|
|
|
|
use super::{pll_enable, PllInstance};
|
|
|
|
pub use crate::pac::rcc::vals::{Plldiv as PllDiv, Pllmul as PllMul, Pllsrc as PllSource};
|
|
|
|
use crate::pac::RCC;
|
|
|
|
use crate::time::Hertz;
|
2023-10-16 03:09:33 +02:00
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
pub struct Pll {
|
|
|
|
/// PLL source
|
|
|
|
pub source: PllSource,
|
2023-10-16 03:09:33 +02:00
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
/// PLL multiplication factor.
|
|
|
|
pub mul: PllMul,
|
2023-10-16 03:09:33 +02:00
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
/// PLL main output division factor.
|
|
|
|
pub div: PllDiv,
|
|
|
|
}
|
2023-10-16 03:09:33 +02:00
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
pub(super) struct PllInput {
|
|
|
|
pub hsi: Option<Hertz>,
|
|
|
|
pub hse: Option<Hertz>,
|
|
|
|
}
|
2023-10-16 03:09:33 +02:00
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
#[allow(unused)]
|
|
|
|
#[derive(Default)]
|
|
|
|
pub(super) struct PllOutput {
|
|
|
|
pub r: Option<Hertz>,
|
2024-02-26 03:28:27 +01:00
|
|
|
pub vco: Option<Hertz>,
|
2023-10-16 03:47:54 +02:00
|
|
|
}
|
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
pub(super) fn init_pll(instance: PllInstance, config: Option<Pll>, input: &PllInput) -> PllOutput {
|
|
|
|
// Disable PLL
|
|
|
|
pll_enable(instance, false);
|
|
|
|
|
|
|
|
let Some(pll) = config else { return PllOutput::default() };
|
|
|
|
|
|
|
|
let pll_src = match pll.source {
|
|
|
|
PllSource::HSE => unwrap!(input.hse),
|
|
|
|
PllSource::HSI => unwrap!(input.hsi),
|
2023-10-16 03:09:33 +02:00
|
|
|
};
|
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
let vco_freq = pll_src * pll.mul;
|
|
|
|
|
|
|
|
let r = vco_freq / pll.div;
|
|
|
|
|
|
|
|
assert!(r <= Hertz(32_000_000));
|
|
|
|
|
|
|
|
RCC.cfgr().write(move |w| {
|
|
|
|
w.set_pllmul(pll.mul);
|
|
|
|
w.set_plldiv(pll.div);
|
2023-10-16 03:09:33 +02:00
|
|
|
w.set_pllsrc(pll.source);
|
2023-11-13 01:05:07 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// Enable PLL
|
|
|
|
pll_enable(instance, true);
|
|
|
|
|
2024-02-26 03:28:27 +01:00
|
|
|
PllOutput {
|
|
|
|
r: Some(r),
|
|
|
|
vco: Some(vco_freq),
|
|
|
|
}
|
2023-11-13 01:05:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-13 02:13:41 +02:00
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wb, stm32wl, stm32u0))]
|
2023-11-13 01:05:07 +01:00
|
|
|
mod pll {
|
|
|
|
use super::{pll_enable, PllInstance};
|
|
|
|
pub use crate::pac::rcc::vals::{
|
|
|
|
Pllm as PllPreDiv, Plln as PllMul, Pllp as PllPDiv, Pllq as PllQDiv, Pllr as PllRDiv, Pllsrc as PllSource,
|
|
|
|
};
|
|
|
|
use crate::pac::RCC;
|
|
|
|
use crate::time::Hertz;
|
|
|
|
|
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
pub struct Pll {
|
|
|
|
/// PLL source
|
|
|
|
pub source: PllSource,
|
|
|
|
|
|
|
|
/// PLL pre-divider (DIVM).
|
|
|
|
pub prediv: PllPreDiv,
|
|
|
|
|
|
|
|
/// PLL multiplication factor.
|
|
|
|
pub mul: PllMul,
|
|
|
|
|
|
|
|
/// PLL P division factor. If None, PLL P output is disabled.
|
|
|
|
pub divp: Option<PllPDiv>,
|
|
|
|
/// PLL Q division factor. If None, PLL Q output is disabled.
|
|
|
|
pub divq: Option<PllQDiv>,
|
|
|
|
/// PLL R division factor. If None, PLL R output is disabled.
|
|
|
|
pub divr: Option<PllRDiv>,
|
2023-10-16 03:09:33 +02:00
|
|
|
}
|
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
pub(super) struct PllInput {
|
|
|
|
pub hsi: Option<Hertz>,
|
|
|
|
pub hse: Option<Hertz>,
|
|
|
|
pub msi: Option<Hertz>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(unused)]
|
|
|
|
#[derive(Default)]
|
|
|
|
pub(super) struct PllOutput {
|
|
|
|
pub p: Option<Hertz>,
|
|
|
|
pub q: Option<Hertz>,
|
|
|
|
pub r: Option<Hertz>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(super) fn init_pll(instance: PllInstance, config: Option<Pll>, input: &PllInput) -> PllOutput {
|
|
|
|
// Disable PLL
|
|
|
|
pll_enable(instance, false);
|
|
|
|
|
|
|
|
let Some(pll) = config else { return PllOutput::default() };
|
|
|
|
|
|
|
|
let pll_src = match pll.source {
|
|
|
|
PllSource::DISABLE => panic!("must not select PLL source as DISABLE"),
|
|
|
|
PllSource::HSE => unwrap!(input.hse),
|
|
|
|
PllSource::HSI => unwrap!(input.hsi),
|
|
|
|
PllSource::MSI => unwrap!(input.msi),
|
|
|
|
};
|
|
|
|
|
|
|
|
let vco_freq = pll_src / pll.prediv * pll.mul;
|
2023-10-16 03:09:33 +02:00
|
|
|
|
2023-11-13 01:05:07 +01:00
|
|
|
let p = pll.divp.map(|div| vco_freq / div);
|
|
|
|
let q = pll.divq.map(|div| vco_freq / div);
|
|
|
|
let r = pll.divr.map(|div| vco_freq / div);
|
|
|
|
|
|
|
|
#[cfg(stm32l5)]
|
|
|
|
if instance == PllInstance::Pllsai2 {
|
|
|
|
assert!(q.is_none(), "PLLSAI2_Q is not available on L5");
|
|
|
|
assert!(r.is_none(), "PLLSAI2_R is not available on L5");
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! write_fields {
|
|
|
|
($w:ident) => {
|
|
|
|
$w.set_plln(pll.mul);
|
|
|
|
if let Some(divp) = pll.divp {
|
|
|
|
$w.set_pllp(divp);
|
|
|
|
$w.set_pllpen(true);
|
|
|
|
}
|
|
|
|
if let Some(divq) = pll.divq {
|
|
|
|
$w.set_pllq(divq);
|
|
|
|
$w.set_pllqen(true);
|
|
|
|
}
|
|
|
|
if let Some(divr) = pll.divr {
|
|
|
|
$w.set_pllr(divr);
|
|
|
|
$w.set_pllren(true);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
match instance {
|
|
|
|
PllInstance::Pll => RCC.pllcfgr().write(|w| {
|
|
|
|
w.set_pllm(pll.prediv);
|
|
|
|
w.set_pllsrc(pll.source);
|
|
|
|
write_fields!(w);
|
|
|
|
}),
|
|
|
|
#[cfg(any(stm32l4, stm32l5, stm32wb))]
|
|
|
|
PllInstance::Pllsai1 => RCC.pllsai1cfgr().write(|w| {
|
|
|
|
#[cfg(any(rcc_l4plus, stm32l5))]
|
|
|
|
w.set_pllm(pll.prediv);
|
|
|
|
#[cfg(stm32l5)]
|
|
|
|
w.set_pllsrc(pll.source);
|
|
|
|
write_fields!(w);
|
|
|
|
}),
|
|
|
|
#[cfg(any(stm32l47x, stm32l48x, stm32l49x, stm32l4ax, rcc_l4plus, stm32l5))]
|
|
|
|
PllInstance::Pllsai2 => RCC.pllsai2cfgr().write(|w| {
|
|
|
|
#[cfg(any(rcc_l4plus, stm32l5))]
|
|
|
|
w.set_pllm(pll.prediv);
|
|
|
|
#[cfg(stm32l5)]
|
|
|
|
w.set_pllsrc(pll.source);
|
|
|
|
write_fields!(w);
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enable PLL
|
|
|
|
pll_enable(instance, true);
|
|
|
|
|
|
|
|
PllOutput { p, q, r }
|
|
|
|
}
|
2023-10-16 03:09:33 +02:00
|
|
|
}
|