forked from M-Labs/zynq-rs
DDR: fixed register write.
Previously it writes `0x20066`, while the ps7_init set it to be `0x200066`, notice the 1 more 0. This should perform the same writes to the registers, so we do not have to apply the ps7_init in artiq_zynq.
This commit is contained in:
parent
ae4d3e2455
commit
90904634cd
|
@ -236,7 +236,7 @@ impl DdrRam {
|
||||||
regs::DfiTiming::zeroed()
|
regs::DfiTiming::zeroed()
|
||||||
.rddata_en(0x6)
|
.rddata_en(0x6)
|
||||||
.ctrlup_min(0x3)
|
.ctrlup_min(0x3)
|
||||||
.ctrlup_max(0x4)
|
.ctrlup_max(0x40)
|
||||||
);
|
);
|
||||||
|
|
||||||
self.regs.phy_init_ratio3.write(
|
self.regs.phy_init_ratio3.write(
|
||||||
|
|
Loading…
Reference in New Issue