mirror of
https://github.com/italicsjenga/rp-hal-boards.git
synced 2024-12-23 20:51:31 +11:00
Use u32 instead of u64 division in clock calculations
This saves about 1kB of flash by removing compiler_builtins::int::specialized_div_rem::u64_div_rem if no other code uses u64 divisions.
This commit is contained in:
parent
7750781650
commit
402b7f1eb8
|
@ -13,7 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
### Changed
|
||||
|
||||
- Updated embedded-hal alpha support to version 1.0.0-alpha.7
|
||||
- Update embedded-hal alpha support to version 1.0.0-alpha.7
|
||||
- Avoid 64-bit division in clock calculations
|
||||
|
||||
## [0.3.0] - 2021-12-19
|
||||
|
||||
|
|
|
@ -180,19 +180,13 @@ macro_rules! clock {
|
|||
|
||||
#[doc = "Configure `"$name"`"]
|
||||
fn configure_clock<S: ValidSrc<$name>>(&mut self, src: &S, freq: Hertz) -> Result<(), ClockError>{
|
||||
let src_freq: Hertz<u64> = src.get_freq().into();
|
||||
let src_freq: Hertz<u32> = src.get_freq().into();
|
||||
|
||||
if freq.gt(&src_freq){
|
||||
return Err(ClockError::CantIncreaseFreq);
|
||||
}
|
||||
|
||||
// Div register is 24.8) int.frac divider so multiply by 2^8 (left shift by 8)
|
||||
let shifted_src_freq = src_freq * (1 << 8);
|
||||
let div = if freq.eq(&src_freq) {
|
||||
1 << 8
|
||||
} else {
|
||||
(shifted_src_freq / freq.integer() as u64).integer() as u32
|
||||
};
|
||||
let div = fractional_div(src_freq.integer(), freq.integer()).ok_or(ClockError::FrequencyTooLow)?;
|
||||
|
||||
// If increasing divisor, set divisor before source. Otherwise set source
|
||||
// before divisor. This avoids a momentary overspeed when e.g. switching
|
||||
|
@ -223,8 +217,7 @@ macro_rules! clock {
|
|||
self.set_div(div);
|
||||
|
||||
// Store the configured frequency
|
||||
// div contains both the integer part and the fractional part so we need to shift the src_freq equally
|
||||
self.frequency = (shifted_src_freq / div as u64).try_into().map_err(|_| ClockError::FrequencyToHigh)?;
|
||||
self.frequency = fractional_div(src_freq.integer(), div).ok_or(ClockError::FrequencyTooHigh)?.Hz();
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
@ -337,19 +330,13 @@ macro_rules! stoppable_clock {
|
|||
|
||||
#[doc = "Configure `"$name"`"]
|
||||
fn configure_clock<S: ValidSrc<$name>>(&mut self, src: &S, freq: Hertz) -> Result<(), ClockError>{
|
||||
let src_freq: Hertz<u64> = src.get_freq().into();
|
||||
let src_freq: Hertz<u32> = src.get_freq().into();
|
||||
|
||||
if freq.gt(&src_freq){
|
||||
return Err(ClockError::CantIncreaseFreq);
|
||||
}
|
||||
|
||||
// Div register is 24.8) int.frac divider so multiply by 2^8 (left shift by 8)
|
||||
let shifted_src_freq = src_freq * (1 << 8);
|
||||
let div = if freq.eq(&src_freq) {
|
||||
1 << 8
|
||||
} else {
|
||||
(shifted_src_freq / freq.integer() as u64).integer() as u32
|
||||
};
|
||||
let div = fractional_div(src_freq.integer(), freq.integer()).ok_or(ClockError::FrequencyTooLow)?;
|
||||
|
||||
// If increasing divisor, set divisor before source. Otherwise set source
|
||||
// before divisor. This avoids a momentary overspeed when e.g. switching
|
||||
|
@ -386,7 +373,7 @@ macro_rules! stoppable_clock {
|
|||
self.set_div(div);
|
||||
|
||||
// Store the configured frequency
|
||||
self.frequency = (shifted_src_freq / div as u64).try_into().map_err(|_| ClockError::FrequencyToHigh)?;
|
||||
self.frequency = fractional_div(src_freq.integer(), div).ok_or(ClockError::FrequencyTooHigh)?.Hz();
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
|
@ -70,10 +70,7 @@ use crate::{
|
|||
watchdog::Watchdog,
|
||||
xosc::{setup_xosc_blocking, CrystalOscillator, Error as XoscError, Stable},
|
||||
};
|
||||
use core::{
|
||||
convert::{Infallible, TryInto},
|
||||
marker::PhantomData,
|
||||
};
|
||||
use core::{convert::Infallible, marker::PhantomData};
|
||||
use embedded_time::rate::*;
|
||||
use pac::{CLOCKS, PLL_SYS, PLL_USB, RESETS, XOSC};
|
||||
|
||||
|
@ -106,7 +103,9 @@ pub enum ClockError {
|
|||
/// The frequency desired is higher than the source frequency
|
||||
CantIncreaseFreq,
|
||||
/// The desired frequency is to high (would overflow an u32)
|
||||
FrequencyToHigh,
|
||||
FrequencyTooHigh,
|
||||
/// The desired frequency is too low (divider can't reach the desired value)
|
||||
FrequencyTooLow,
|
||||
}
|
||||
|
||||
/// For clocks
|
||||
|
@ -354,3 +353,30 @@ pub fn init_clocks_and_plls(
|
|||
.map_err(InitError::ClockError)?;
|
||||
Ok(clocks)
|
||||
}
|
||||
|
||||
// Calculates (numerator<<8)/denominator, avoiding 64bit division
|
||||
// Returns None if the result would not fit in 32 bit.
|
||||
fn fractional_div(numerator: u32, denominator: u32) -> Option<u32> {
|
||||
if denominator.eq(&numerator) {
|
||||
return Some(1 << 8);
|
||||
}
|
||||
|
||||
let div_int = numerator / denominator;
|
||||
if div_int >= 1 << 24 {
|
||||
return None;
|
||||
}
|
||||
|
||||
let div_rem = numerator - (div_int * denominator);
|
||||
|
||||
let div_frac = if div_rem < 1 << 24 {
|
||||
// div_rem is small enough to shift it by 8 bits without overflow
|
||||
(div_rem << 8) / denominator
|
||||
} else {
|
||||
// div_rem is too large. Shift denominator right, instead.
|
||||
// As 1<<24 < div_rem < denominator, relative error caused by the
|
||||
// lost lower 8 bits of denominator is smaller than 2^-16
|
||||
(div_rem) / (denominator >> 8)
|
||||
};
|
||||
|
||||
Some((div_int << 8) + div_frac)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue