Skip to content

Commit d26e30c

Browse files
committed
remove idelay control
1 parent 494151e commit d26e30c

File tree

3 files changed

+4
-24
lines changed

3 files changed

+4
-24
lines changed

rtl/iddr.v

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ module iddr #
5252
input wire load,
5353
input wire [8:0] cnt_value_in,
5454
output wire [(WIDTH*9)-1:0] cnt_value_out,
55-
input wire refclk,
56-
output wire rdy_idelay,
5755
// Data input
5856

5957
input wire [WIDTH-1:0] d,
@@ -97,16 +95,6 @@ end else begin
9795
assign d_int = d;
9896
end
9997

100-
IDELAYCTRL #(
101-
.SIM_DEVICE("ULTRASCALE") // Set the device version for simulation functionality (ULTRASCALE)
102-
)
103-
IDELAYCTRL_rx_inst (
104-
.RDY(rdy_idelay), // 1-bit output: Ready output
105-
.REFCLK(refclk), // 1-bit input: Reference clock input
106-
.RST(rst) // 1-bit input: Active-High reset input. Asynchronous assert, synchronous deassert to
107-
// REFCLK.
108-
);
109-
11098
for (n = 0; n < WIDTH; n = n + 1) begin : iddr
11199

112100
IDELAYE3 #(

rtl/rgmii_phy_if.v

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,7 @@ module rgmii_phy_if #
9898
input wire inc,
9999
input wire load,
100100
input wire [8:0] cnt_value_in,
101-
output wire [(5*9)-1:0] cnt_value_out,
102-
input wire refclk,
103-
output wire rdy_idelay
101+
output wire [(5*9)-1:0] cnt_value_out
104102
);
105103
// Debug _signal
106104
wire rgmii_rxc_debug;
@@ -178,9 +176,7 @@ rx_ssio_ddr_inst (
178176
.inc(inc),
179177
.load(load),
180178
.cnt_value_in(cnt_value_in),
181-
.cnt_value_out(cnt_value_out),
182-
.refclk(refclk),
183-
.rdy_idelay(rdy_idelay)
179+
.cnt_value_out(cnt_value_out)
184180
// Data input
185181
);
186182

rtl/ssio_ddr_in.v

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,7 @@ module ssio_ddr_in #
6363
input wire inc,
6464
input wire load,
6565
input wire [8:0] cnt_value_in,
66-
output wire [(WIDTH*9)-1:0] cnt_value_out,
67-
input wire refclk,
68-
output wire rdy_idelay
66+
output wire [(WIDTH*9)-1:0] cnt_value_out
6967
);
7068

7169
wire input_clk_int;
@@ -174,9 +172,7 @@ data_iddr_inst (
174172
.inc(inc),
175173
.load(load),
176174
.cnt_value_in(cnt_value_in),
177-
.cnt_value_out(cnt_value_out),
178-
.refclk(refclk),
179-
.rdy_idelay(rdy_idelay)
175+
.cnt_value_out(cnt_value_out)
180176

181177
);
182178

0 commit comments

Comments
 (0)