x393  1.0
FPGAcodeforElphelNC393camera
multipulse_cross_clock.v
Go to the documentation of this file.
1 
44 `timescale 1ns/1ps
45 
47  parameter WIDTH=1, // width of the pulse counter (assign MSB of input to 0 to
48  // have more pending that possible input)
49  parameter EXTRA_DLY=0)( // 0 or 1 - output duty cycle control
50  input rst,
51  input src_clk,
52  input dst_clk,
53  input [WIDTH-1:0] num_pulses, // single-cycle positive pulse
54  input we,
55  output out_pulse,
56  output busy
57 );
58  reg [WIDTH-1:0] pend_cntr=0;
61  reg single_rq_r=0;
62 
63 // assign busy = busy_single && (|pend_cntr);
64  assign busy = busy_single || (|pend_cntr);
65  assign single_rq_w = !busy_single && (|pend_cntr);
66 
67  always @(posedge src_clk) begin
69  if (rst) pend_cntr <= 0;
70  else pend_cntr <= pend_cntr + (we ? num_pulses : {WIDTH{1'b0}}) + (single_rq_r ? {WIDTH{1'b1}}:{WIDTH{1'b0}});
71  end
72 
75  ) pulse_cross_clock_i (
76  .rst (rst), // input
77  .src_clk (src_clk), // input
78  .dst_clk (dst_clk), // input
79  .in_pulse (single_rq_w), // input
80  .out_pulse (out_pulse), // output
81  .busy (busy_single) // output
82  );
83 
84 endmodule
85 
pulse_cross_clock_i pulse_cross_clock