zynq::ddr: only enable_ddr if no clock yet

that's only an issue for the cora z7
master
Astro 2019-11-06 23:04:35 +01:00
parent d2df5652d0
commit ff96bf903b
1 changed files with 4 additions and 1 deletions

View File

@ -36,8 +36,11 @@ impl DdrRam {
/// 10.6.1 DDR Clock Initialization
fn clock_setup() -> CpuClocks {
let clocks = CpuClocks::get();
if clocks.ddr == 0 {
CpuClocks::enable_ddr(clocks.arm);
}
let clocks = CpuClocks::get();
println!("Clocks: {:?}", clocks);
let ddr3x_clk_divisor = ((clocks.ddr - 1) / DDR_FREQ + 1).min(255) as u8;
let ddr2x_clk_divisor = 3 * ddr3x_clk_divisor / 2;