szl: change CPU frequency of Kasli-SoC to 1 GHz #99

Merged
sb10q merged 1 commits from occheung/zynq-rs:fix_clk_freq into master 2022-07-20 16:55:17 +08:00
1 changed files with 4 additions and 0 deletions

View File

@ -80,8 +80,12 @@ pub fn main_core0() {
);
info!("Simple Zynq Loader starting...");
#[cfg(not(feature = "target_kasli_soc"))]
const CPU_FREQ: u32 = 800_000_000;
#[cfg(feature = "target_kasli_soc")]
const CPU_FREQ: u32 = 1_000_000_000;
ArmPll::setup(2 * CPU_FREQ);
Clocks::set_cpu_freq(CPU_FREQ);
IoPll::setup(1_000_000_000);