Compare commits

..

2 Commits

Author SHA1 Message Date
mwojcik ecd4ca333c rtio_clocking: inform the user if PLL is bypassed 2023-10-06 16:27:25 +08:00
mwojcik ae3099dd8e kasli_soc: support 100MHz clock 2023-10-06 16:27:25 +08:00
2 changed files with 1 additions and 2 deletions

View File

@ -68,7 +68,6 @@ class GTPBootstrapClock(Module):
bootstrap_125 = platform.request("clk125_gtp")
bootstrap_se = Signal()
clk_out = Signal()
platform.add_period_constraint(bootstrap_125.p, 8.0)
self.specials += [

View File

@ -267,7 +267,7 @@ pub fn init(timer: &mut GlobalTimer, cfg: &Config) {
RtioClock::Ext0_Bypass => {
info!("bypassing the PLL for RTIO clock");
si5324::bypass(i2c, SI5324_EXT_INPUT, timer).expect("cannot bypass Si5324")
},
}
_ => setup_si5324(i2c, timer, clk),
}
}