-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathexp_hls.v
463 lines (387 loc) · 19.9 KB
/
exp_hls.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
// firewall (HLS / SDNet) wrapper for Innova-1 shell
module exp_hls(sbu2mlx_ieee_vendor_id, sbu2mlx_product_id, sbu2mlx_product_version, sbu2mlx_caps, sbu2mlx_caps_len,
sbu2mlx_caps_addr, mlx2sbu_clk, mlx2sbu_reset, sbu2mlx_leds_on, sbu2mlx_leds_blink, sbu2mlx_watchdog, mlx2sbu_axi4lite_aw_rdy, mlx2sbu_axi4lite_aw_vld, mlx2sbu_axi4lite_aw_addr, mlx2sbu_axi4lite_aw_prot,
mlx2sbu_axi4lite_w_rdy, mlx2sbu_axi4lite_w_vld, mlx2sbu_axi4lite_w_data, mlx2sbu_axi4lite_w_strobe, mlx2sbu_axi4lite_b_rdy, mlx2sbu_axi4lite_b_vld, mlx2sbu_axi4lite_b_resp, mlx2sbu_axi4lite_ar_rdy, mlx2sbu_axi4lite_ar_vld, mlx2sbu_axi4lite_ar_addr,
mlx2sbu_axi4lite_ar_prot, mlx2sbu_axi4lite_r_rdy, mlx2sbu_axi4lite_r_vld, mlx2sbu_axi4lite_r_data, mlx2sbu_axi4lite_r_resp, sbu2mlx_axi4mm_aw_rdy, sbu2mlx_axi4mm_aw_vld, sbu2mlx_axi4mm_aw_addr, sbu2mlx_axi4mm_aw_burst, sbu2mlx_axi4mm_aw_cache,
sbu2mlx_axi4mm_aw_id, sbu2mlx_axi4mm_aw_len, sbu2mlx_axi4mm_aw_lock, sbu2mlx_axi4mm_aw_prot, sbu2mlx_axi4mm_aw_qos, sbu2mlx_axi4mm_aw_region, sbu2mlx_axi4mm_aw_size, sbu2mlx_axi4mm_w_rdy, sbu2mlx_axi4mm_w_vld, sbu2mlx_axi4mm_w_data,
sbu2mlx_axi4mm_w_last, sbu2mlx_axi4mm_w_strobe, sbu2mlx_axi4mm_b_rdy, sbu2mlx_axi4mm_b_vld, sbu2mlx_axi4mm_b_id, sbu2mlx_axi4mm_b_resp, sbu2mlx_axi4mm_ar_rdy, sbu2mlx_axi4mm_ar_vld, sbu2mlx_axi4mm_ar_addr, sbu2mlx_axi4mm_ar_burst,
sbu2mlx_axi4mm_ar_cache, sbu2mlx_axi4mm_ar_id, sbu2mlx_axi4mm_ar_len, sbu2mlx_axi4mm_ar_lock, sbu2mlx_axi4mm_ar_prot, sbu2mlx_axi4mm_ar_qos, sbu2mlx_axi4mm_ar_region, sbu2mlx_axi4mm_ar_size, sbu2mlx_axi4mm_r_rdy, sbu2mlx_axi4mm_r_vld,
sbu2mlx_axi4mm_r_data, sbu2mlx_axi4mm_r_id, sbu2mlx_axi4mm_r_last, sbu2mlx_axi4mm_r_resp, mlx2sbu_axi4stream_rdy, mlx2sbu_axi4stream_vld, mlx2sbu_axi4stream_tdata, mlx2sbu_axi4stream_tkeep, mlx2sbu_axi4stream_tlast, mlx2sbu_axi4stream_tuser,
mlx2sbu_axi4stream_tid, sbu2mlx_axi4stream_rdy, sbu2mlx_axi4stream_vld, sbu2mlx_axi4stream_tdata, sbu2mlx_axi4stream_tkeep, sbu2mlx_axi4stream_tlast, sbu2mlx_axi4stream_tuser, sbu2mlx_axi4stream_tid, nwp2sbu_axi4stream_rdy, nwp2sbu_axi4stream_vld,
nwp2sbu_axi4stream_tdata, nwp2sbu_axi4stream_tkeep, nwp2sbu_axi4stream_tlast, nwp2sbu_axi4stream_tuser, nwp2sbu_axi4stream_tid, sbu2nwp_axi4stream_rdy, sbu2nwp_axi4stream_vld, sbu2nwp_axi4stream_tdata, sbu2nwp_axi4stream_tkeep, sbu2nwp_axi4stream_tlast,
sbu2nwp_axi4stream_tuser, sbu2nwp_axi4stream_tid, cxp2sbu_axi4stream_rdy, cxp2sbu_axi4stream_vld, cxp2sbu_axi4stream_tdata, cxp2sbu_axi4stream_tkeep, cxp2sbu_axi4stream_tlast, cxp2sbu_axi4stream_tuser, cxp2sbu_axi4stream_tid, sbu2cxp_axi4stream_rdy,
sbu2cxp_axi4stream_vld, sbu2cxp_axi4stream_tdata, sbu2cxp_axi4stream_tkeep, sbu2cxp_axi4stream_tlast, sbu2cxp_axi4stream_tuser, sbu2cxp_axi4stream_tid, nwp2sbu_lossy_has_credits, nwp2sbu_lossless_has_credits, cxp2sbu_lossy_has_credits, cxp2sbu_lossless_has_credits);
output [23:0] sbu2mlx_ieee_vendor_id;
output [15:0] sbu2mlx_product_id;
output [15:0] sbu2mlx_product_version;
output [31:0] sbu2mlx_caps;
output [15:0] sbu2mlx_caps_len;
output [23:0] sbu2mlx_caps_addr;
input mlx2sbu_clk;// Working clock of 216.25MHz
input mlx2sbu_reset;// Synchronous reset line to the clock named 'mlx2sbu_clk', active high.
output [7:0] sbu2mlx_leds_on;
output [7:0] sbu2mlx_leds_blink;
output sbu2mlx_watchdog;// Watchdog signal (Should be toggled with freq > 1Hz)
output mlx2sbu_axi4lite_aw_rdy;
input mlx2sbu_axi4lite_aw_vld;
input [63:0] mlx2sbu_axi4lite_aw_addr;
input [2:0] mlx2sbu_axi4lite_aw_prot;
output mlx2sbu_axi4lite_w_rdy;
input mlx2sbu_axi4lite_w_vld;
input [31:0] mlx2sbu_axi4lite_w_data;
input [3:0] mlx2sbu_axi4lite_w_strobe;
input mlx2sbu_axi4lite_b_rdy;
output mlx2sbu_axi4lite_b_vld;
output [1:0] mlx2sbu_axi4lite_b_resp;
output mlx2sbu_axi4lite_ar_rdy;
input mlx2sbu_axi4lite_ar_vld;
input [63:0] mlx2sbu_axi4lite_ar_addr;
input [2:0] mlx2sbu_axi4lite_ar_prot;
input mlx2sbu_axi4lite_r_rdy;
output mlx2sbu_axi4lite_r_vld;
output [31:0] mlx2sbu_axi4lite_r_data;
output [1:0] mlx2sbu_axi4lite_r_resp;
input sbu2mlx_axi4mm_aw_rdy;
output sbu2mlx_axi4mm_aw_vld;
output [63:0] sbu2mlx_axi4mm_aw_addr;
output [1:0] sbu2mlx_axi4mm_aw_burst;
output [3:0] sbu2mlx_axi4mm_aw_cache;
output [2:0] sbu2mlx_axi4mm_aw_id;
output [7:0] sbu2mlx_axi4mm_aw_len;
output sbu2mlx_axi4mm_aw_lock;
output [2:0] sbu2mlx_axi4mm_aw_prot;
output [3:0] sbu2mlx_axi4mm_aw_qos;
output [3:0] sbu2mlx_axi4mm_aw_region;
output [2:0] sbu2mlx_axi4mm_aw_size;
input sbu2mlx_axi4mm_w_rdy;
output sbu2mlx_axi4mm_w_vld;
output [511:0] sbu2mlx_axi4mm_w_data;
output sbu2mlx_axi4mm_w_last;
output [63:0] sbu2mlx_axi4mm_w_strobe;
output sbu2mlx_axi4mm_b_rdy;
input sbu2mlx_axi4mm_b_vld;
input [2:0] sbu2mlx_axi4mm_b_id;
input [1:0] sbu2mlx_axi4mm_b_resp;
input sbu2mlx_axi4mm_ar_rdy;
output sbu2mlx_axi4mm_ar_vld;
output [63:0] sbu2mlx_axi4mm_ar_addr;
output [1:0] sbu2mlx_axi4mm_ar_burst;
output [3:0] sbu2mlx_axi4mm_ar_cache;
output [2:0] sbu2mlx_axi4mm_ar_id;
output [7:0] sbu2mlx_axi4mm_ar_len;
output sbu2mlx_axi4mm_ar_lock;
output [2:0] sbu2mlx_axi4mm_ar_prot;
output [3:0] sbu2mlx_axi4mm_ar_qos;
output [3:0] sbu2mlx_axi4mm_ar_region;
output [2:0] sbu2mlx_axi4mm_ar_size;
output sbu2mlx_axi4mm_r_rdy;
input sbu2mlx_axi4mm_r_vld;
input [511:0] sbu2mlx_axi4mm_r_data;
input [2:0] sbu2mlx_axi4mm_r_id;
input sbu2mlx_axi4mm_r_last;
input [1:0] sbu2mlx_axi4mm_r_resp;
output mlx2sbu_axi4stream_rdy;
input mlx2sbu_axi4stream_vld;
input [255:0] mlx2sbu_axi4stream_tdata;
input [31:0] mlx2sbu_axi4stream_tkeep;
input mlx2sbu_axi4stream_tlast;
input [11:0] mlx2sbu_axi4stream_tuser;
input [2:0] mlx2sbu_axi4stream_tid;
input sbu2mlx_axi4stream_rdy;
output sbu2mlx_axi4stream_vld;
output [255:0] sbu2mlx_axi4stream_tdata;
output [31:0] sbu2mlx_axi4stream_tkeep;
output sbu2mlx_axi4stream_tlast;
output [11:0] sbu2mlx_axi4stream_tuser;
output [2:0] sbu2mlx_axi4stream_tid;
output nwp2sbu_axi4stream_rdy;
input nwp2sbu_axi4stream_vld;
input [255:0] nwp2sbu_axi4stream_tdata;
input [31:0] nwp2sbu_axi4stream_tkeep;
input [0:0] nwp2sbu_axi4stream_tlast;
input [11:0] nwp2sbu_axi4stream_tuser;
input [2:0] nwp2sbu_axi4stream_tid;
input sbu2nwp_axi4stream_rdy;
output sbu2nwp_axi4stream_vld;
output [255:0] sbu2nwp_axi4stream_tdata;
output [31:0] sbu2nwp_axi4stream_tkeep;
output sbu2nwp_axi4stream_tlast;
output [11:0] sbu2nwp_axi4stream_tuser;
output [2:0] sbu2nwp_axi4stream_tid;
output cxp2sbu_axi4stream_rdy;
input cxp2sbu_axi4stream_vld;
input [255:0] cxp2sbu_axi4stream_tdata;
input [31:0] cxp2sbu_axi4stream_tkeep;
input cxp2sbu_axi4stream_tlast;
input [11:0] cxp2sbu_axi4stream_tuser;
input [2:0] cxp2sbu_axi4stream_tid;
input sbu2cxp_axi4stream_rdy;
output sbu2cxp_axi4stream_vld;
output [255:0] sbu2cxp_axi4stream_tdata;
output [31:0] sbu2cxp_axi4stream_tkeep;
output sbu2cxp_axi4stream_tlast;
output [11:0] sbu2cxp_axi4stream_tuser;
output [2:0] sbu2cxp_axi4stream_tid;
input nwp2sbu_lossy_has_credits;
input nwp2sbu_lossless_has_credits;
input cxp2sbu_lossy_has_credits;
input cxp2sbu_lossless_has_credits;
///////////////////////////////////////////////////////////////////////////////
// VERSION // ID
assign sbu2mlx_ieee_vendor_id = 24'h0002c9; // Mellanox OUI
assign sbu2mlx_product_id = 16'd4; // HLS Example
assign sbu2mlx_product_version = 16'd1;
assign sbu2mlx_caps = {24'd0, 8'd2}; // Example HLS
assign sbu2mlx_caps_len = 16'd0; // No capablities
assign sbu2mlx_caps_addr = 24'd0; // No capablities
wire sbu2mlx_axi4mm_aw_user;
wire temp1;
wire temp2;
// sbu to cxp data fifo
wire [255:0] sbu2cxpfifo_axi4stream_tdata;
wire sbu2cxpfifo_axi4stream_vld;
wire sbu2cxpfifo_axi4stream_rdy;
wire [31:0] sbu2cxpfifo_axi4stream_tkeep;
wire sbu2cxpfifo_axi4stream_tlast;
wire [2:0] sbu2cxpfifo_axi4stream_tid;
wire [11:0] sbu2cxpfifo_axi4stream_tuser;
// sbu to cxp data fifo
wire [255:0] fifo2sync_tdata;
wire fifo2sync_vld;
wire fifo2sync_rdy;
wire [31:0] fifo2sync_tkeep;
wire fifo2sync_tlast;
wire [2:0] fifo2sync_tid;
wire [11:0] fifo2sync_tuser;
wire classify_out_stream_din;
wire classify_out_stream_write;
wire classify_out_stream_full;
wire firewall_data_out_tvalid;
wire firewall_data_out_tready;
wire nwp2sbu_axi4stream_strb = nwp2sbu_axi4stream_vld & nwp2sbu_axi4stream_rdy;
`ifdef BUILD_HLS
firewall_firewall_top #(
.C_S_AXI_AXILITES_ADDR_WIDTH(32),
.C_S_AXI_AXILITES_DATA_WIDTH(32)
) firewall0 (
// nica wiring borrowed from example_hls instantiation within ku060_all_exp_hls_wrapper.v:
.ap_clk(mlx2sbu_clk),
.ap_rst_n(~mlx2sbu_reset),
.in_r_TDATA(nwp2sbu_axi4stream_tdata),
.in_r_TVALID(nwp2sbu_axi4stream_vld),
.in_r_TREADY(nwp2sbu_axi4stream_rdy),
.in_r_TKEEP(nwp2sbu_axi4stream_tkeep),
.in_r_TLAST(nwp2sbu_axi4stream_tlast),
.data_out_TDATA(sbu2cxpfifo_axi4stream_tdata),
.data_out_TVALID(firewall_data_out_tvalid),
.data_out_TREADY(firewall_data_out_tready),
.data_out_TKEEP(sbu2cxpfifo_axi4stream_tkeep),
.data_out_TLAST(sbu2cxpfifo_axi4stream_tlast),
.classify_out_stream_V_V_din(classify_out_stream_din),
.classify_out_stream_V_V_write(classify_out_stream_write),
.classify_out_stream_V_V_full_n(~classify_out_stream_full),
// axi lite
.s_axi_AXILiteS_AWREADY(mlx2sbu_axi4lite_aw_rdy),
.s_axi_AXILiteS_AWVALID(mlx2sbu_axi4lite_aw_vld),
.s_axi_AXILiteS_AWADDR(mlx2sbu_axi4lite_aw_addr),
// .axi4lite_aw_prot(mlx2sbu_axi4lite_aw_prot),
.s_axi_AXILiteS_WVALID(mlx2sbu_axi4lite_w_vld),
.s_axi_AXILiteS_WREADY(mlx2sbu_axi4lite_w_rdy),
.s_axi_AXILiteS_WDATA(mlx2sbu_axi4lite_w_data),
.s_axi_AXILiteS_WSTRB(mlx2sbu_axi4lite_w_strobe),
.s_axi_AXILiteS_ARVALID(mlx2sbu_axi4lite_ar_vld),
.s_axi_AXILiteS_ARREADY(mlx2sbu_axi4lite_ar_rdy),
.s_axi_AXILiteS_ARADDR(mlx2sbu_axi4lite_ar_addr),
// .axi4lite_ar_prot(mlx2sbu_axi4lite_ar_prot),
.s_axi_AXILiteS_BVALID(mlx2sbu_axi4lite_b_vld),
.s_axi_AXILiteS_BREADY(mlx2sbu_axi4lite_b_rdy),
.s_axi_AXILiteS_BRESP(mlx2sbu_axi4lite_b_resp),
.s_axi_AXILiteS_RVALID(mlx2sbu_axi4lite_r_vld),
.s_axi_AXILiteS_RREADY(mlx2sbu_axi4lite_r_rdy),
.s_axi_AXILiteS_RDATA(mlx2sbu_axi4lite_r_data),
.s_axi_AXILiteS_RRESP(mlx2sbu_axi4lite_r_resp)
);
`else
wire tuple_in_ctrl_vld = nwp2sbu_axi4stream_strb & nwp2sbu_axi4stream_tlast;
wire [255:0] nwp2sbu_axi4stream_tdata_flip, sbu2cxpfifo_axi4stream_tdata_flip;
wire [31:0] nwp2sbu_axi4stream_tkeep_flip, sbu2cxpfifo_axi4stream_tkeep_flip;
byte_swap #(.N(32)) bs_nwp2sbu_tdata (
.in(nwp2sbu_axi4stream_tdata),
.out(nwp2sbu_axi4stream_tdata_flip)
);
bit_swap #(.N(32)) bs_nwp2sbu_tkeep (
.in(nwp2sbu_axi4stream_tkeep),
.out(nwp2sbu_axi4stream_tkeep_flip)
);
XilinxSwitch_0 firewall0(
// nica wiring borrowed from example_hls instantiation within ku060_all_exp_hls_wrapper.v:
.clk_line_rst(mlx2sbu_reset),
.clk_line(mlx2sbu_clk),
.clk_lookup_rst(mlx2sbu_reset),
.clk_lookup(mlx2sbu_clk),
.clk_control_rst(mlx2sbu_reset),
.clk_control(mlx2sbu_clk),
.enable_processing(1'b1),
.packet_in_packet_in_TDATA(nwp2sbu_axi4stream_tdata_flip),
.packet_in_packet_in_TVALID(nwp2sbu_axi4stream_vld),
.packet_in_packet_in_TREADY(nwp2sbu_axi4stream_rdy),
.packet_in_packet_in_TKEEP(nwp2sbu_axi4stream_tkeep_flip),
.packet_in_packet_in_TLAST(nwp2sbu_axi4stream_tlast),
.tuple_in_ctrl_VALID(tuple_in_ctrl_vld),
.tuple_in_ctrl_DATA(1'b1),
.packet_out_packet_out_TDATA(sbu2cxpfifo_axi4stream_tdata_flip),
.packet_out_packet_out_TVALID(firewall_data_out_tvalid),
.packet_out_packet_out_TREADY(firewall_data_out_tready),
.packet_out_packet_out_TKEEP(sbu2cxpfifo_axi4stream_tkeep_flip),
.packet_out_packet_out_TLAST(sbu2cxpfifo_axi4stream_tlast),
.tuple_out_ctrl_VALID(classify_out_stream_write),
.tuple_out_ctrl_DATA(classify_out_stream_din),
// axi lite
.control_flows_S_AXI_AWREADY(mlx2sbu_axi4lite_aw_rdy),
.control_flows_S_AXI_AWVALID(mlx2sbu_axi4lite_aw_vld),
.control_flows_S_AXI_AWADDR(mlx2sbu_axi4lite_aw_addr),
// .axi4lite_aw_prot(mlx2sbu_axi4lite_aw_prot),
.control_flows_S_AXI_WVALID(mlx2sbu_axi4lite_w_vld),
.control_flows_S_AXI_WREADY(mlx2sbu_axi4lite_w_rdy),
.control_flows_S_AXI_WDATA(mlx2sbu_axi4lite_w_data),
.control_flows_S_AXI_WSTRB(mlx2sbu_axi4lite_w_strobe),
.control_flows_S_AXI_ARVALID(mlx2sbu_axi4lite_ar_vld),
.control_flows_S_AXI_ARREADY(mlx2sbu_axi4lite_ar_rdy),
.control_flows_S_AXI_ARADDR(mlx2sbu_axi4lite_ar_addr),
// .axi4lite_ar_prot(mlx2sbu_axi4lite_ar_prot),
.control_flows_S_AXI_BVALID(mlx2sbu_axi4lite_b_vld),
.control_flows_S_AXI_BREADY(mlx2sbu_axi4lite_b_rdy),
.control_flows_S_AXI_BRESP(mlx2sbu_axi4lite_b_resp),
.control_flows_S_AXI_RVALID(mlx2sbu_axi4lite_r_vld),
.control_flows_S_AXI_RREADY(mlx2sbu_axi4lite_r_rdy),
.control_flows_S_AXI_RDATA(mlx2sbu_axi4lite_r_data),
.control_flows_S_AXI_RRESP(mlx2sbu_axi4lite_r_resp)
);
byte_swap #(.N(32)) bs_sbu2cxpfifo_tdata (
.in(sbu2cxpfifo_axi4stream_tdata_flip),
.out(sbu2cxpfifo_axi4stream_tdata)
);
bit_swap #(.N(32)) bs_sbu2cxpfifo_tkeep (
.in(sbu2cxpfifo_axi4stream_tkeep_flip),
.out(sbu2cxpfifo_axi4stream_tkeep)
);
`endif
wire tuple_fifo2sync_rd;
wire tuple_fifo2sync_empty;
wire tuple_fifo2sync_dout;
fifo_1x64 tuple_fifo0 (
.clk(mlx2sbu_clk),
.srst(mlx2sbu_reset),
.wr_en(classify_out_stream_write),
.full(classify_out_stream_full),
.din(classify_out_stream_din),
.rd_en(tuple_fifo2sync_rd),
.empty(tuple_fifo2sync_empty),
.dout(tuple_fifo2sync_dout)
);
assign sbu2cxpfifo_axi4stream_tuser = 12'b0;
assign sbu2cxpfifo_axi4stream_tid = 3'b0;
assign sbu2cxpfifo_axi4stream_vld = firewall_data_out_tvalid;
assign firewall_data_out_tready = sbu2cxpfifo_axi4stream_rdy;
// 64 deep store & forward fifos.
// For more fifo details, see <netperf-verilog_workarea>/sources/xci/axis_data_fifo_0/axis_data_fifo_0.xci
axis_data_fifo_0 sbu2cxp_data_fifo (
.s_axis_aresetn(~mlx2sbu_reset), // input wire s_axis_aresetn
.s_axis_aclk(mlx2sbu_clk), // input wire s_axis_aclk
.s_axis_tvalid(sbu2cxpfifo_axi4stream_vld), // input wire s_axis_tvalid
.s_axis_tready(sbu2cxpfifo_axi4stream_rdy), // output wire s_axis_tready
.s_axis_tdata(sbu2cxpfifo_axi4stream_tdata), // input wire [255 : 0] s_axis_tdata
.s_axis_tkeep(sbu2cxpfifo_axi4stream_tkeep), // input wire [31 : 0] s_axis_tkeep
.s_axis_tlast(sbu2cxpfifo_axi4stream_tlast), // input wire s_axis_tlast
.s_axis_tid(sbu2cxpfifo_axi4stream_tid), // input wire [2 : 0] s_axis_tid
.s_axis_tuser(sbu2cxpfifo_axi4stream_tuser), // input wire [11 : 0] s_axis_tuser
.m_axis_tvalid(fifo2sync_vld), // output wire m_axis_tvalid
.m_axis_tready(fifo2sync_rdy), // input wire m_axis_tready
.m_axis_tdata(fifo2sync_tdata), // output wire [255 : 0] m_axis_tdata
.m_axis_tkeep(fifo2sync_tkeep), // output wire [31 : 0] m_axis_tkeep
.m_axis_tlast(fifo2sync_tlast), // output wire m_axis_tlast
.m_axis_tid(fifo2sync_tid), // output wire [2 : 0] m_axis_tid
.m_axis_tuser(fifo2sync_tuser) // output wire [11 : 0] m_axis_tuser
);
// sync data and tuple
wire sbu2cxp_axi4stream_strb = sbu2cxp_axi4stream_vld & sbu2cxp_axi4stream_rdy;
reg sbu2cxp_first = 1'b1;
always @(posedge mlx2sbu_clk) begin
if (sbu2cxp_axi4stream_strb) begin
if (sbu2cxp_first)
sbu2cxp_first <= 1'b0;
else if (sbu2cxp_axi4stream_tlast)
sbu2cxp_first <= 1'b1;
end
end
assign sbu2cxp_axi4stream_tdata = fifo2sync_tdata;
assign sbu2cxp_axi4stream_tkeep = fifo2sync_tkeep;
assign sbu2cxp_axi4stream_tlast = fifo2sync_tlast;
assign sbu2cxp_axi4stream_tid = fifo2sync_tid;
assign sbu2cxp_axi4stream_tuser = fifo2sync_tuser |
(sbu2cxp_first ? {11'b0, tuple_fifo2sync_dout} : 12'b0);
assign sbu2cxp_axi4stream_vld = fifo2sync_vld & (sbu2cxp_first ?
~tuple_fifo2sync_empty : 1'b1);
assign tuple_fifo2sync_rd = sbu2cxp_first & sbu2cxp_axi4stream_strb;
assign fifo2sync_rdy = sbu2cxp_axi4stream_rdy & (sbu2cxp_first ?
~tuple_fifo2sync_empty : 1'b1);
assign sbu2nwp_axi4stream_tdata = cxp2sbu_axi4stream_tdata;
assign sbu2nwp_axi4stream_vld = cxp2sbu_axi4stream_vld;
assign cxp2sbu_axi4stream_rdy = sbu2nwp_axi4stream_rdy;
assign sbu2nwp_axi4stream_tkeep = cxp2sbu_axi4stream_tkeep;
assign sbu2nwp_axi4stream_tlast = cxp2sbu_axi4stream_tlast;
assign sbu2nwp_axi4stream_tid = cxp2sbu_axi4stream_tid;
assign sbu2nwp_axi4stream_tuser = cxp2sbu_axi4stream_tuser;
assign mlx2sbu_axi4stream_rdy = sbu2mlx_axi4stream_rdy;
assign sbu2mlx_axi4stream_vld = mlx2sbu_axi4stream_vld;
assign sbu2mlx_axi4stream_tdata = mlx2sbu_axi4stream_tdata;
assign sbu2mlx_axi4stream_tkeep = mlx2sbu_axi4stream_tkeep;
assign sbu2mlx_axi4stream_tlast = mlx2sbu_axi4stream_tlast;
assign sbu2mlx_axi4stream_tuser = mlx2sbu_axi4stream_tuser;
assign sbu2mlx_axi4stream_tid = mlx2sbu_axi4stream_tid;
exp_hls_watchdog exp_hls_watchdog(
.clk(mlx2sbu_clk),
.reset(mlx2sbu_reset),
.watchdog_counter(sbu2mlx_watchdog)
);
assign sbu2mlx_axi4mm_aw_id = 3'd0;
assign sbu2mlx_axi4mm_ar_id = 3'd0;
assign sbu2mlx_axi4mm_aw_lock = 1'b0;
assign sbu2mlx_leds_on =8'd23;
assign sbu2mlx_leds_blink = 8'd0;
wire unconnected_sbu2mlx_axi4mm =
sbu2mlx_axi4mm_aw_user |
sbu2mlx_axi4mm_w_rdy |
sbu2mlx_axi4mm_aw_rdy |
sbu2mlx_axi4mm_r_vld |
sbu2mlx_axi4mm_r_last
;
wire unconnect_axi = |{sbu2mlx_axi4mm_ar_rdy,sbu2mlx_axi4mm_r_data,sbu2mlx_axi4mm_r_resp,sbu2mlx_axi4mm_b_vld,sbu2mlx_axi4mm_b_resp,sbu2mlx_axi4mm_b_id,sbu2mlx_axi4mm_r_id};
wire unconnected_axi_lite = |{mlx2sbu_axi4lite_aw_prot, mlx2sbu_axi4lite_ar_prot};
assign sbu2mlx_axi4mm_w_data = 512'd0;
assign sbu2mlx_axi4mm_w_strobe = 64'd0;
assign sbu2mlx_axi4mm_w_last = 1'b0;
assign sbu2mlx_axi4mm_w_vld = 1'd0;
assign sbu2mlx_axi4mm_aw_vld = 1'b0;
assign sbu2mlx_axi4mm_aw_addr = 64'd0;
assign sbu2mlx_axi4mm_aw_len = 8'd0;
assign sbu2mlx_axi4mm_aw_size = 3'd0;
assign sbu2mlx_axi4mm_aw_burst = 2'd0;
assign sbu2mlx_axi4mm_aw_cache = 4'd0;
assign sbu2mlx_axi4mm_aw_prot = 3'd0;
assign sbu2mlx_axi4mm_aw_qos = 4'd0;
assign sbu2mlx_axi4mm_aw_region = 4'd0;
assign sbu2mlx_axi4mm_aw_user = 1'd0;
assign sbu2mlx_axi4mm_ar_vld = 1'b0;
assign sbu2mlx_axi4mm_ar_addr = 64'd0;
assign sbu2mlx_axi4mm_ar_len = 8'd0;
assign sbu2mlx_axi4mm_ar_size = 3'd0;
assign sbu2mlx_axi4mm_ar_burst = 2'd0;
assign sbu2mlx_axi4mm_ar_lock = 1'b0;
assign sbu2mlx_axi4mm_ar_cache = 4'd0;
assign sbu2mlx_axi4mm_ar_prot = 3'd0;
assign sbu2mlx_axi4mm_ar_qos = 4'd0;
assign sbu2mlx_axi4mm_ar_region = 4'd0;
assign sbu2mlx_axi4mm_r_rdy = 1'b0;
assign sbu2mlx_axi4mm_b_rdy = 1'd0;
endmodule