x393  1.0
FPGAcodeforElphelNC393camera
logger_arbiter393.v
Go to the documentation of this file.
1 
39 `timescale 1ns/1ps
40 
42  input xclk, // half frequency (80 MHz nominal)
43  input rst, // module reset (sync)
44  input [3:0] ts_rq_in, // in requests for timestamp (single-cycle - just leading edge )
45  output [3:0] ts_rq, // out request for timestamp, to timestmp module
46  input [3:0] ts_grant, // granted ts requests from timestamping module
47  input [3:0] rdy, // channels ready (leading edge - became ready, trailing - no more data, use zero)
48  output reg [3:0] nxt, // pulses to modules to output next word
49  output [1:0] channel, // decoded channel number (2 bits)
50  output [1:0] ts_sel, // select timestamp word to be output (0..3)
51  output ts_en, // 1 - use timestamp, 0 - channel data (or 16'h0 if !ready)
52  output reg dv, // output data valid (from registered mux - 2 stage - first selects data and ready, second ts/data/zero)
53  output [23:0] sample_counter);// number of 64-byte samples logged
54 /*
55  input xclk; // half frequency (80 MHz nominal)
56  input rst; // reset module
57  input [ 3:0] ts_rq_in; // in requests for timestamp (sinlgle-cycle)
58  output [ 3:0] ts_rq; // out request for timestamp, to timestmp module
59  input [ 3:0] ts_grant; // granted ts requests from timestamping module
60  input [ 3:0] rdy; // channels ready (leading edge - became ready, trailing - no more data, use zero)
61  output [ 3:0] nxt; // pulses to modules to output next word
62  output [ 1:0] channel; // decoded channel number (2 bits)
63  output [ 1:0] ts_sel; // select timestamp word to be output (0..3)
64  output ts_en; // 1 - use timestamp, 0 - channel data (or 16'h0 if !ready)
65  output dv; // output data valid (from registered mux - 2 stage - first selects data and ready, second ts/data/zero)
66  output [23:0] sample_counter;// number of 64-byte samples logged
67 */
68  reg [3:0] ts_rq_in_d;
69  reg [3:0] ts_rq_r;
70  reg [3:0] ts_valid;
71 // reg [3:0] ts_rq_reset;
72  reg [3:0] channels_ready;// channels granted and ready
73  reg [3:1] chn1hot; // channels 1-hot - granted and ready, priority applied
74  reg rq_not_zero; // at least one channel is ready for processing (same time as chn1hot[3:0])
75  reg [1:0] channel_r;
76 // reg start; Not used!
77  reg busy;
78  wire wstart;
79  reg ts_en_r;
80  reg [4:0] seq_cntr;
82  reg [1:0] ts_sel_r;
83 // reg dv;
85  reg [23:0] sample_counter_r;// number of 64-byte samples logged
86 // reg [ 3:0] nxt;
87  reg pre_nxt;
88  reg [ 3:0] chn_servicing; //1-hot channel being service
89  wire [3:0] wts_rq;
90 
91  assign wstart = !busy && rq_not_zero;
92  assign wts_rq[3:0] = ts_rq_in[3:0] & ~ts_rq_in_d[3:0] & (~rdy[3:0] | chn_servicing[3:0]);
94  assign ts_rq = ts_rq_r;
95  assign channel = channel_r;
96  assign ts_en = ts_en_r;
97  assign ts_sel = ts_sel_r;
98 
99  always @ (posedge xclk) begin
100  ts_rq_in_d[3:0] <= ts_rq_in[3:0];
101 
102  if (wstart) channel_r[1:0] <= {chn1hot[3] | chn1hot[2],chn1hot[3] | chn1hot[1]};
103 
104  if (wstart) chn_servicing[3:0] <= {chn1hot[3:1], ~|chn1hot[3:1]};
105  else if (!busy) chn_servicing[3:0] <= 4'h0;
106 
107 
108  if (rst) ts_rq_r[3:0] <= 4'h0;
109  else ts_rq_r[3:0] <= ~ts_grant & ( wts_rq[3:0] | ts_rq_r[3:0]);
110 
111  if (rst) ts_valid[3:0] <= 4'h0;
112  else ts_valid[3:0] <= (ts_grant[3:0] | (ts_valid & ~wts_rq[3:0]));
113 
114  channels_ready[3:0] <= ts_valid[3:0] & rdy[3:0] & ~chn_servicing[3:0]; // ready should go down during servicing
115 
116  rq_not_zero <= channels_ready[3:0] != 4'h0;
117 
118  chn1hot[3:1] <= {channels_ready[3] & ~|channels_ready[2:0],
119  channels_ready[2] & ~|channels_ready[1:0],
120  channels_ready[1] & ~channels_ready[0]};
121 
122  // start <= wstart; Not used !
123 
124  if ((seq_cntr[4:0]=='h1e) || rst) busy <= 1'b0;
125  else if (rq_not_zero) busy <= 1'b1;
126 
127  if (!busy) seq_cntr[4:0] <= 5'h0;
128  else seq_cntr[4:0] <= seq_cntr[4:0] + 1;
129 
130  seq_cntr_last <= (seq_cntr[4:0]=='h1e);
131 
132 
133  if (wstart) ts_en_r <=1'b1;
134  else if (seq_cntr[1:0]==2'h3) ts_en_r <=1'b0;
135 
136  if (!ts_en_r) ts_sel_r[1:0] <= 2'h0;
137  else ts_sel_r[1:0] <= ts_sel_r[1:0] + 1;
138 
139  if (!busy || (seq_cntr[4:0]=='h1d)) pre_nxt <= 1'b0;
140  else if (seq_cntr[4:0]=='h01) pre_nxt <= 1'b1;
141 
142  nxt [3:0] <= pre_nxt? chn_servicing[3:0]:4'h0;
143 
144  dv <= busy || seq_cntr_last;
145 
147 
148  if (rst) sample_counter_r[23:0] <= 24'h0;
149  else if (inc_sample_counter) sample_counter_r[23:0] <= sample_counter_r[23:0] +1;
150  end
151 endmodule
3747sample_counter_rreg[23:0]