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

pull/99/head
occheung 2022-07-20 15:16:15 +08:00
parent 6cd32f6ee0
commit 043a152b91
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);