x393  1.0
FPGAcodeforElphelNC393camera
timing393.v
Go to the documentation of this file.
1 
39 `timescale 1ns/1ps
40 
41 module timing393 #(
42  parameter RTC_ADDR= 'h704, // 'h707
43  parameter CAMSYNC_ADDR = 'h708, // 'h70f
44  parameter RTC_STATUS_REG_ADDR = 'h31, // (1 loc) address where status can be read out (currently just sequence # and alternating bit)
45  parameter RTC_SEC_USEC_ADDR = 'h32, // ..'h33 address where seconds of the snapshot can be read (microseconds - next address)
46  parameter RTC_MASK = 'h7fc,
47  parameter CAMSYNC_MASK = 'h7f8,
48  parameter CAMSYNC_MODE = 'h0,
49  parameter CAMSYNC_TRIG_SRC = 'h1, // setup trigger source
50  parameter CAMSYNC_TRIG_DST = 'h2, // setup trigger destination line(s)
51  parameter CAMSYNC_TRIG_PERIOD = 'h3, // setup output trigger period
52  parameter CAMSYNC_TRIG_DELAY0 = 'h4, // setup input trigger delay
53  parameter CAMSYNC_TRIG_DELAY1 = 'h5, // setup input trigger delay
54  parameter CAMSYNC_TRIG_DELAY2 = 'h6, // setup input trigger delay
55  parameter CAMSYNC_TRIG_DELAY3 = 'h7, // setup input trigger delay
56  parameter CAMSYNC_EN_BIT = 'h0, // enable module (0 - reset)
57  parameter CAMSYNC_SNDEN_BIT = 'h2, // enable writing ts_snd_en
58  parameter CAMSYNC_EXTERNAL_BIT = 'h4, // enable writing ts_external (0 - local timestamp in the frame header)
59  parameter CAMSYNC_TRIGGERED_BIT = 'h6, // triggered mode ( 0- async)
60  parameter CAMSYNC_MASTER_BIT = 'h9, // select a 2-bit master channel (master delay may be used as a flash delay)
61  parameter CAMSYNC_CHN_EN_BIT = 'he, // per-channel enable timestamp generation
62  parameter CAMSYNC_PRE_MAGIC = 6'b110100,
63  parameter CAMSYNC_POST_MAGIC = 6'b001101,
64 
65  parameter RTC_MHZ= 25, // RTC input clock in MHz (should be interger number)
66  parameter RTC_BITC_PREDIV = 5, // number of bits to generate 2 MHz pulses counting refclk
67  parameter RTC_SET_USEC= 0, // 20-bit number of microseconds
68  parameter RTC_SET_SEC= 1, // 32-bit full number of seconds (und actually update timer)
69  parameter RTC_SET_CORR= 2, // write correction 16-bit signed
70  parameter RTC_SET_STATUS= 3 // generate an output pulse to take a snapshot
71  )(
72 // input rst, // global reset
73  input mclk, // system clock
74  input pclk, // was pixel clock in x353 clock (global) - switch it to 100MHz (mclk/2)?
75  input mrst, // @ posedge mclk - sync reset
76  input prst, // @ posedge pclk - sync reset
77 
78  input refclk, // not a global clock, reference frequency < mclk/2
79 
80  input [7:0] cmd_ad, // byte-serial command address/data (up to 6 bytes: AL-AH-D0-D1-D2-D3
81  input cmd_stb, // strobe (with first byte) for the command a/d
82 
83  output [7:0] status_ad, // status address/data - up to 5 bytes: A - {seq,status[1:0]} - status[2:9] - status[10:17] - status[18:25]
84  output status_rq, // input request to send status downstream
85  input status_start, // Acknowledge of the first status packet byte (address)
86 
87  // connection to the general purpose I/O control
88  input [9:0] gpio_in, // 10-bit input from GPIO pins -> 10 bit
89  output [9:0] gpio_out, // 10-bit output to GPIO pins
90  output [9:0] gpio_out_en, // 10-bit output enable to GPIO pins
91 
92  // common for all sensors - use triggered mode (as opposed to a free-running mode)
93  output triggered_mode, // use triggered mode (0 - sensors are free-running) @mclk - common to all sensors
94 
95  // per-channel frame sync inputs and trigger outputs. Both single-cycle mclk pulses
96  input frsync_chn0, // @mclk trigrst, // single-clock start of frame input (resets trigger output) posedge (@pclk)
97  output trig_chn0, // @mclk 1 cycle-long trigger output
98 
99  input frsync_chn1, // @mclk trigrst, // single-clock start of frame input (resets trigger output) posedge (@pclk)
100  output trig_chn1, // 1 cycle-long trigger output
101 
102  input frsync_chn2, // @mclk trigrst, // single-clock start of frame input (resets trigger output) posedge (@pclk)
103  output trig_chn2, // 1 cycle-long trigger output
104 
105  input frsync_chn3, // @mclk trigrst, // single-clock start of frame input (resets trigger output) posedge (@pclk)
106  output trig_chn3, // 1 cycle-long trigger output
107 
108  // timestamps used by the compressor channel (to be included in the image file) and to the event logger (i.e. as a master timestamp)
109  output ts_stb_chn0, // 1 clock before ts_rcv_data is valid
110  output [7:0] ts_data_chn0, // byte-wide serialized timestamp message received or local
111 
112  output ts_stb_chn1, // 1 clock before ts_rcv_data is valid
113  output [7:0] ts_data_chn1, // byte-wide serialized timestamp message received or local
114 
115  output ts_stb_chn2, // 1 clock before ts_rcv_data is valid
116  output [7:0] ts_data_chn2, // byte-wide serialized timestamp message received or local
117 
118  output ts_stb_chn3, // 1 clock before ts_rcv_data is valid
119  output [7:0] ts_data_chn3, // byte-wide serialized timestamp message received or local
120 
121  // timestamp for the event logger
122  input lclk, // clock used by the event logger
123  input lrst, // @ posedge lclk - sync reset
124  input ts_logger_snap, // request from the logger to take a snapshot
125  output ts_logger_stb, // one clock pulse before sending TS data
126  output [7:0] ts_logger_data // timestamp data (s0,s1,s2,s3,u0,u1,u2,u3==0)
127 
128 );
129 
130  wire [3:0] frame_sync;
131  wire [3:0] trig;
132  wire [3:0] ts_local_snap; // ts_snap_mclk make a timestamp pulse single @(posedge pclk)
133  wire [3:0] ts_local_stb; // 1 clk before ts_snd_data is valid
134  wire [31:0] ts_local_data; // byte-wide serialized timestamp message
135 
136  wire [3:0] ts_stb; // 1 clk before ts_snd_data is valid
137  wire [31:0] ts_data; // byte-wide serialized timestamp message (channels concatenated)
138 
139  wire [31:0] live_sec; // current time seconds, updated @ mclk
140  wire [19:0] live_usec; // current time microseconds, updated @ mclk
141 
142 
147 
149  .RTC_ADDR (RTC_ADDR),
152  .RTC_MASK (RTC_MASK),
153  .RTC_MHZ (RTC_MHZ),
159  ) rtc393_i (
160 // .rst (rst), // input
161  .mclk (mclk), // input
162  .mrst (mrst), // input
163  .refclk (refclk), // input
164  .cmd_ad (cmd_ad), // input[7:0]
165  .cmd_stb (cmd_stb), // input
166  .status_ad (status_ad), // output[7:0]
167  .status_rq (status_rq), // output
168  .status_start (status_start), // input
169  .live_sec (live_sec), // output[31:0]
170  .live_usec (live_usec) // output[19:0]
171  );
172 
173 
174  timestamp_snapshot timestamp_snapshot_logger_i (
175 // .rst (rst), // input
176  .tclk (mclk), // input
177  .sec (live_sec), // input[31:0]
178  .usec (live_usec), // input[19:0]
179  .sclk (lclk), // input
180  .srst (lrst), // input
181  .snap (ts_logger_snap), // input
182  .pre_stb (ts_logger_stb), // output
183  .ts_data (ts_logger_data) // output[7:0] reg
184  );
185 
186  timestamp_snapshot timestamp_snapshot_chn0_i (
187 // .rst (rst), // input
188  .tclk (mclk), // input
189  .sec (live_sec), // input[31:0]
190  .usec (live_usec), // input[19:0]
191  .sclk (mclk), // input
192  .srst (mrst), // input
193  .snap (ts_local_snap[0]), // input
194  .pre_stb (ts_local_stb[0]), // output
195  .ts_data (ts_local_data[0 * 8 +: 8]) // output[7:0] reg
196  );
197 
198  timestamp_snapshot timestamp_snapshot_chn1_i (
199 // .rst (rst), // input
200  .tclk (mclk), // input
201  .sec (live_sec), // input[31:0]
202  .usec (live_usec), // input[19:0]
203  .sclk (mclk), // input
204  .srst (mrst), // input
205  .snap (ts_local_snap[1]), // input
206  .pre_stb (ts_local_stb[1]), // output
207  .ts_data (ts_local_data[1 * 8 +: 8]) // output[7:0] reg
208  );
209 
210  timestamp_snapshot timestamp_snapshot_chn2_i (
211 // .rst (rst), // input
212  .tclk (mclk), // input
213  .sec (live_sec), // input[31:0]
214  .usec (live_usec), // input[19:0]
215  .sclk (mclk), // input
216  .srst (mrst), // input
217  .snap (ts_local_snap[2]), // input
218  .pre_stb (ts_local_stb[2]), // output
219  .ts_data (ts_local_data[2 * 8 +: 8]) // output[7:0] reg
220  );
221 
222  timestamp_snapshot timestamp_snapshot_chn3_i (
223 // .rst (rst), // input
224  .tclk (mclk), // input
225  .sec (live_sec), // input[31:0]
226  .usec (live_usec), // input[19:0]
227  .sclk (mclk), // input
228  .srst (mrst), // input
229  .snap (ts_local_snap[3]), // input
230  .pre_stb (ts_local_stb[3]), // output
231  .ts_data (ts_local_data[3 * 8 +: 8]) // output[7:0] reg
232  );
233 
253  ) camsync393_i (
254 // .rst (rst), // input
255  .mclk (mclk), // input
256  .mrst (mrst), // input
257  .cmd_ad (cmd_ad), // input[7:0]
258  .cmd_stb (cmd_stb), // input
259  .pclk (pclk), // input
260  .prst (prst), // input
261 
262  .gpio_in (gpio_in), // input[9:0]
263  .gpio_out (gpio_out), // output[9:0]
264  .gpio_out_en (gpio_out_en), // output[9:0] reg
265  .triggered_mode (triggered_mode), // output
266  .frsync_chn0 (frame_sync[0]), // input
267  .trig_chn0 (trig[0]), // output
268  .frsync_chn1 (frame_sync[1]), // input
269  .trig_chn1 (trig[1]), // output
270  .frsync_chn2 (frame_sync[2]), // input
271  .trig_chn2 (trig[2]), // output
272  .frsync_chn3 (frame_sync[3]), // input
273  .trig_chn3 (trig[3]), // output
274  .ts_snap_mclk_chn0 (ts_local_snap[0]), // output
275  .ts_snd_stb_chn0 (ts_local_stb[0]), // input
276  .ts_snd_data_chn0 (ts_local_data[0 * 8 +: 8]), // input[7:0]
277  .ts_snap_mclk_chn1 (ts_local_snap[1]), // output
278  .ts_snd_stb_chn1 (ts_local_stb[1]), // input
279  .ts_snd_data_chn1 (ts_local_data[1 * 8 +: 8]), // input[7:0]
280  .ts_snap_mclk_chn2 (ts_local_snap[2]), // output
281  .ts_snd_stb_chn2 (ts_local_stb[2]), // input
282  .ts_snd_data_chn2 (ts_local_data[2 * 8 +: 8]), // input[7:0]
283  .ts_snap_mclk_chn3 (ts_local_snap[3]), // output
284  .ts_snd_stb_chn3 (ts_local_stb[3]), // input
285  .ts_snd_data_chn3 (ts_local_data[3 * 8 +: 8]), // input[7:0]
286  .ts_rcv_stb_chn0 (ts_stb[0]), // output
287  .ts_rcv_data_chn0 (ts_data[0 * 8 +: 8]), // output[7:0]
288  .ts_rcv_stb_chn1 (ts_stb[1]), // output
289  .ts_rcv_data_chn1 (ts_data[1 * 8 +: 8]), // output[7:0]
290  .ts_rcv_stb_chn2 (ts_stb[2]), // output
291  .ts_rcv_data_chn2 (ts_data[2 * 8 +: 8]), // output[7:0]
292  .ts_rcv_stb_chn3 (ts_stb[3]), // output
293  .ts_rcv_data_chn3 (ts_data[3 * 8 +: 8]) // output[7:0]
294  );
295 
296 endmodule
297 
9417ts_snd_stb_chn2
Definition: camsync393.v:134
9658CAMSYNC_MODE'h0
Definition: timing393.v:48
9416ts_snap_mclk_chn2
Definition: camsync393.v:133
9654RTC_STATUS_REG_ADDR'h31
Definition: timing393.v:44
9659CAMSYNC_TRIG_SRC'h1
Definition: timing393.v:49
9719ts_local_datawire[31:0]
Definition: timing393.v:134
9661CAMSYNC_TRIG_PERIOD'h3
Definition: timing393.v:51
9671CAMSYNC_CHN_EN_BIT'he
Definition: timing393.v:61
9702ts_stb_chn0
Definition: timing393.v:109
9663CAMSYNC_TRIG_DELAY1'h5
Definition: timing393.v:53
9715frame_syncwire[3:0]
Definition: timing393.v:130
9695trig_chn0
Definition: timing393.v:97
[7:0] 9707ts_data_chn2
Definition: timing393.v:116
[7:0] 9703ts_data_chn0
Definition: timing393.v:110
[7:0] 9687status_ad
Definition: timing393.v:83
9675RTC_BITC_PREDIV5
Definition: timing393.v:66
9420ts_snd_stb_chn3
Definition: camsync393.v:138
[7:0] 9429ts_rcv_data_chn3
Definition: camsync393.v:156
[9:0] 9398gpio_in
Definition: camsync393.v:100
9666CAMSYNC_EN_BIT'h0
Definition: timing393.v:56
9424ts_rcv_stb_chn1
Definition: camsync393.v:149
[7:0] 9569cmd_ad
Definition: rtc393.v:63
9712ts_logger_snap
Definition: timing393.v:124
[7:0] 9415ts_snd_data_chn1
Definition: camsync393.v:131
9700frsync_chn3
Definition: timing393.v:105
9722live_secwire[31:0]
Definition: timing393.v:139
9426ts_rcv_stb_chn2
Definition: camsync393.v:152
[7:0] 9571status_ad
Definition: rtc393.v:66
9693triggered_mode
Definition: timing393.v:93
[7:0] 9427ts_rcv_data_chn2
Definition: camsync393.v:153
[7:0] 9421ts_snd_data_chn3
Definition: camsync393.v:139
9717ts_local_snapwire[3:0]
Definition: timing393.v:132
9677RTC_SET_SEC1
Definition: timing393.v:68
9674RTC_MHZ25
Definition: timing393.v:65
9428ts_rcv_stb_chn3
Definition: camsync393.v:155
[19:0] 9575live_usec
Definition: rtc393.v:71
9713ts_logger_stb
Definition: timing393.v:125
9679RTC_SET_STATUS3
Definition: timing393.v:70
9721ts_datawire[31:0]
Definition: timing393.v:137
[7:0] 9412ts_snd_data_chn0
Definition: camsync393.v:127
[7:0] 9394cmd_ad
Definition: camsync393.v:77
[7:0] 9714ts_logger_data
Definition: timing393.v:126
9723live_usecwire[19:0]
Definition: timing393.v:140
9689status_start
Definition: timing393.v:85
9566mclk
Definition: rtc393.v:58
camsync393_i camsync393
Definition: timing393.v:234
9652RTC_ADDR'h704
Definition: timing393.v:42
[31:0] 9574live_sec
Definition: rtc393.v:70
[7:0] 9685cmd_ad
Definition: timing393.v:80
9573status_start
Definition: rtc393.v:68
9678RTC_SET_CORR2
Definition: timing393.v:69
9655RTC_SEC_USEC_ADDR'h32
Definition: timing393.v:45
rtc393_i rtc393
Definition: timing393.v:148
9720ts_stbwire[3:0]
Definition: timing393.v:136
9422ts_rcv_stb_chn0
Definition: camsync393.v:146
9669CAMSYNC_TRIGGERED_BIT'h6
Definition: timing393.v:59
9410ts_snap_mclk_chn0
Definition: camsync393.v:125
[7:0] 9709ts_data_chn3
Definition: timing393.v:119
9694frsync_chn0
Definition: timing393.v:96
9672CAMSYNC_PRE_MAGIC6'b110100
Definition: timing393.v:62
9656RTC_MASK'h7fc
Definition: timing393.v:46
9706ts_stb_chn2
Definition: timing393.v:115
9668CAMSYNC_EXTERNAL_BIT'h4
Definition: timing393.v:58
9673CAMSYNC_POST_MAGIC6'b001101
Definition: timing393.v:63
9708ts_stb_chn3
Definition: timing393.v:118
9572status_rq
Definition: rtc393.v:67
9567mrst
Definition: rtc393.v:59
9411ts_snd_stb_chn0
Definition: camsync393.v:126
[7:0] 9423ts_rcv_data_chn0
Definition: camsync393.v:147
9676RTC_SET_USEC0
Definition: timing393.v:67
9653CAMSYNC_ADDR'h708
Definition: timing393.v:43
9568refclk
Definition: rtc393.v:61
9660CAMSYNC_TRIG_DST'h2
Definition: timing393.v:50
[9:0] 9692gpio_out_en
Definition: timing393.v:90
[9:0] 9399gpio_out
Definition: camsync393.v:101
9414ts_snd_stb_chn1
Definition: camsync393.v:130
9419ts_snap_mclk_chn3
Definition: camsync393.v:137
[9:0] 9690gpio_in
Definition: timing393.v:88
9401triggered_mode
Definition: camsync393.v:104
[9:0] 9400gpio_out_en
Definition: camsync393.v:102
9657CAMSYNC_MASK'h7f8
Definition: timing393.v:47
[7:0] 9425ts_rcv_data_chn1
Definition: camsync393.v:150
9662CAMSYNC_TRIG_DELAY0'h4
Definition: timing393.v:52
9718ts_local_stbwire[3:0]
Definition: timing393.v:133
9704ts_stb_chn1
Definition: timing393.v:112
9670CAMSYNC_MASTER_BIT'h9
Definition: timing393.v:60
9716trigwire[3:0]
Definition: timing393.v:131
9664CAMSYNC_TRIG_DELAY2'h6
Definition: timing393.v:54
timestamp_snapshot_chn3_i timestamp_snapshot
Definition: timing393.v:222
9413ts_snap_mclk_chn1
Definition: camsync393.v:129
9688status_rq
Definition: timing393.v:84
9570cmd_stb
Definition: rtc393.v:64
9696frsync_chn1
Definition: timing393.v:99
[7:0] 9705ts_data_chn1
Definition: timing393.v:113
9665CAMSYNC_TRIG_DELAY3'h7
Definition: timing393.v:55
9667CAMSYNC_SNDEN_BIT'h2
Definition: timing393.v:57
[7:0] 9418ts_snd_data_chn2
Definition: camsync393.v:135
9698frsync_chn2
Definition: timing393.v:102
[9:0] 9691gpio_out
Definition: timing393.v:89