1
0
Fork 0

Remove 150 MHz option from set_fclk0_freq

This commit is contained in:
newell 2024-11-16 18:04:16 -08:00
parent ea8374d686
commit 8cf0fa01a1
1 changed files with 1 additions and 9 deletions

View File

@ -425,14 +425,6 @@ fn set_fclk0_freq(clk: RtioClock, cfg: &Config) {
target_freq = 125_000_000; target_freq = 125_000_000;
divisor0 = 8; divisor0 = 8;
} }
RtioClock::Int_150 => {
target_freq = 150_000_000;
divisor0 = 7; // Closest approximation to 150 MHz
warn!(
"Closest achievable FCLK0 frequency for RTIO Clock 150 MHz is {:.2} MHz (divider 7).",
io_pll_freq as f64 / divisor0 as f64
);
}
_ => { _ => {
warn!("Unsupported RTIO Clock: '{:?}'", clk); warn!("Unsupported RTIO Clock: '{:?}'", clk);
return; return;
@ -479,7 +471,7 @@ pub fn init(timer: &mut GlobalTimer, cfg: &Config) {
#[cfg(feature = "target_ebaz4205")] #[cfg(feature = "target_ebaz4205")]
{ {
match clk { match clk {
RtioClock::Int_100 | RtioClock::Int_125 | RtioClock::Int_150 => { RtioClock::Int_100 | RtioClock::Int_125 => {
set_fclk0_freq(clk, cfg); set_fclk0_freq(clk, cfg);
} }
_ => {} // Not set for external clocks _ => {} // Not set for external clocks