embassy/embassy-stm32/src/rcc/g4.rs

183 lines
4.4 KiB
Rust
Raw Normal View History

2023-05-25 16:06:02 +02:00
use stm32_metapac::rcc::vals::{Hpre, Ppre, Sw};
use crate::pac::{PWR, RCC};
use crate::rcc::{set_freqs, Clocks};
use crate::time::Hertz;
2021-11-27 02:21:53 +01:00
/// HSI speed
pub const HSI_FREQ: Hertz = Hertz(16_000_000);
2021-11-27 02:21:53 +01:00
/// LSI speed
pub const LSI_FREQ: Hertz = Hertz(32_000);
2021-11-27 02:21:53 +01:00
/// System clock mux source
#[derive(Clone, Copy)]
pub enum ClockSrc {
HSE(Hertz),
HSI16,
}
/// AHB prescaler
#[derive(Clone, Copy, PartialEq)]
pub enum AHBPrescaler {
NotDivided,
Div2,
Div4,
Div8,
Div16,
Div64,
Div128,
Div256,
Div512,
}
/// APB prescaler
#[derive(Clone, Copy)]
pub enum APBPrescaler {
NotDivided,
Div2,
Div4,
Div8,
Div16,
}
2023-05-25 16:06:02 +02:00
impl AHBPrescaler {
const fn div(self) -> u32 {
match self {
AHBPrescaler::NotDivided => 1,
AHBPrescaler::Div2 => 2,
AHBPrescaler::Div4 => 4,
AHBPrescaler::Div8 => 8,
AHBPrescaler::Div16 => 16,
AHBPrescaler::Div64 => 64,
AHBPrescaler::Div128 => 128,
AHBPrescaler::Div256 => 256,
AHBPrescaler::Div512 => 512,
}
}
}
impl APBPrescaler {
const fn div(self) -> u32 {
2021-11-27 02:21:53 +01:00
match self {
APBPrescaler::NotDivided => 1,
2023-05-25 16:06:02 +02:00
APBPrescaler::Div2 => 2,
APBPrescaler::Div4 => 4,
APBPrescaler::Div8 => 8,
APBPrescaler::Div16 => 16,
2021-11-27 02:21:53 +01:00
}
}
}
2023-05-25 16:06:02 +02:00
impl Into<Ppre> for APBPrescaler {
fn into(self) -> Ppre {
2021-11-27 02:21:53 +01:00
match self {
2023-05-25 16:06:02 +02:00
APBPrescaler::NotDivided => Ppre::DIV1,
APBPrescaler::Div2 => Ppre::DIV2,
APBPrescaler::Div4 => Ppre::DIV4,
APBPrescaler::Div8 => Ppre::DIV8,
APBPrescaler::Div16 => Ppre::DIV16,
}
}
}
impl Into<Hpre> for AHBPrescaler {
fn into(self) -> Hpre {
match self {
AHBPrescaler::NotDivided => Hpre::DIV1,
AHBPrescaler::Div2 => Hpre::DIV2,
AHBPrescaler::Div4 => Hpre::DIV4,
AHBPrescaler::Div8 => Hpre::DIV8,
AHBPrescaler::Div16 => Hpre::DIV16,
AHBPrescaler::Div64 => Hpre::DIV64,
AHBPrescaler::Div128 => Hpre::DIV128,
AHBPrescaler::Div256 => Hpre::DIV256,
AHBPrescaler::Div512 => Hpre::DIV512,
2021-11-27 02:21:53 +01:00
}
}
}
/// Clocks configutation
pub struct Config {
pub mux: ClockSrc,
pub ahb_pre: AHBPrescaler,
pub apb1_pre: APBPrescaler,
pub apb2_pre: APBPrescaler,
pub low_power_run: bool,
2021-11-27 02:21:53 +01:00
}
impl Default for Config {
#[inline]
fn default() -> Config {
Config {
mux: ClockSrc::HSI16,
ahb_pre: AHBPrescaler::NotDivided,
apb1_pre: APBPrescaler::NotDivided,
apb2_pre: APBPrescaler::NotDivided,
low_power_run: false,
}
}
}
pub(crate) unsafe fn init(config: Config) {
let (sys_clk, sw) = match config.mux {
ClockSrc::HSI16 => {
// Enable HSI16
RCC.cr().write(|w| w.set_hsion(true));
while !RCC.cr().read().hsirdy() {}
2021-11-27 02:21:53 +01:00
2023-05-25 16:06:02 +02:00
(HSI_FREQ.0, Sw::HSI16)
2021-11-27 02:21:53 +01:00
}
ClockSrc::HSE(freq) => {
// Enable HSE
RCC.cr().write(|w| w.set_hseon(true));
while !RCC.cr().read().hserdy() {}
2021-11-27 02:21:53 +01:00
2023-05-25 16:06:02 +02:00
(freq.0, Sw::HSE)
2021-11-27 02:21:53 +01:00
}
};
RCC.cfgr().modify(|w| {
2023-05-25 16:06:02 +02:00
w.set_sw(sw);
w.set_hpre(config.ahb_pre.into());
w.set_ppre1(config.apb1_pre.into());
w.set_ppre2(config.apb2_pre.into());
});
let ahb_freq: u32 = match config.ahb_pre {
AHBPrescaler::NotDivided => sys_clk,
2023-05-25 16:06:02 +02:00
pre => sys_clk / pre.div(),
};
let (apb1_freq, apb1_tim_freq) = match config.apb1_pre {
APBPrescaler::NotDivided => (ahb_freq, ahb_freq),
pre => {
2023-05-25 16:06:02 +02:00
let freq = ahb_freq / pre.div();
(freq, freq * 2)
}
};
let (apb2_freq, apb2_tim_freq) = match config.apb2_pre {
APBPrescaler::NotDivided => (ahb_freq, ahb_freq),
pre => {
2023-05-25 16:06:02 +02:00
let freq = ahb_freq / pre.div();
(freq, freq * 2)
2021-11-27 02:21:53 +01:00
}
};
if config.low_power_run {
assert!(sys_clk <= 2_000_000);
PWR.cr1().modify(|w| w.set_lpr(true));
2021-11-27 02:21:53 +01:00
}
set_freqs(Clocks {
sys: Hertz(sys_clk),
ahb1: Hertz(ahb_freq),
ahb2: Hertz(ahb_freq),
apb1: Hertz(apb1_freq),
apb1_tim: Hertz(apb1_tim_freq),
apb2: Hertz(apb2_freq),
apb2_tim: Hertz(apb2_tim_freq),
});
2021-11-27 02:21:53 +01:00
}