Commit 1f82faa6 authored by Sebastien Bourdeauducq's avatar Sebastien Bourdeauducq
Browse files

ku: fix IDDRE1 clocking

Prevents warnings (and more?) about CB being driven without a clock buffer.
parent 96f2fa6e
...@@ -206,9 +206,10 @@ class XilinxDDRInputImplKU(Module): ...@@ -206,9 +206,10 @@ class XilinxDDRInputImplKU(Module):
self.specials += Instance("IDDRE1", self.specials += Instance("IDDRE1",
p_DDR_CLK_EDGE="SAME_EDGE_PIPELINED", p_DDR_CLK_EDGE="SAME_EDGE_PIPELINED",
p_IS_C_INVERTED=0, p_IS_C_INVERTED=0,
p_IS_CB_INVERTED=1,
i_D=i, i_D=i,
o_Q1=o1, o_Q2=o2, o_Q1=o1, o_Q2=o2,
i_C=clk, i_CB=~clk, i_C=clk, i_CB=clk,
i_R=0 i_R=0
) )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment