-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathulp_bd_with_aie_16.tcl
1260 lines (1022 loc) · 65.8 KB
/
ulp_bd_with_aie_16.tcl
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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
################################################################
# This is a generated script based on design: ulp_inst_0
#
# Though there are limitations about the generated script,
# the main purpose of this utility is to make learning
# IP Integrator Tcl commands easier.
################################################################
namespace eval _tcl {
proc get_script_folder {} {
set script_path [file normalize [info script]]
set script_folder [file dirname $script_path]
return $script_folder
}
}
variable script_folder
set script_folder [_tcl::get_script_folder]
################################################################
# Check if script is running in correct Vivado version.
################################################################
set scripts_vivado_version 2022.2
set current_vivado_version [version -short]
if { [string first $scripts_vivado_version $current_vivado_version] == -1 } {
puts ""
catch {common::send_gid_msg -ssname BD::TCL -id 2041 -severity "ERROR" "This script was generated using Vivado <$scripts_vivado_version> and is being run in <$current_vivado_version> of Vivado. Please run the script in Vivado <$scripts_vivado_version> then open the design in Vivado <$current_vivado_version>. Upgrade the design by running \"Tools => Report => Report IP Status...\", then run write_bd_tcl to create an updated script."}
return 1
}
################################################################
# START
################################################################
# To test this script, run the following commands from Vivado Tcl console:
# source ulp_inst_0_script.tcl
# If there is no project opened, this script will create a
# project, but make sure you do not have an existing project
# <./myproj/project_1.xpr> in the current working folder.
set kernel [lindex $argv 0]
set list_projs [get_projects -quiet]
if { $list_projs eq "" } {
create_project -force project_1 myproj_${kernel} -part xcvc1902-vsvd1760-2MP-e-S
set_property BOARD_PART xilinx.com:vck5000:part0:1.0 [current_project]
}
source setup_ip_repos.tcl
# CHANGE DESIGN NAME HERE
variable design_name
set design_name ulp_inst_0
# If you do not already have an existing IP Integrator design open,
# you can create a design using the following command:
# create_bd_design $design_name
# Creating design if needed
set errMsg ""
set nRet 0
set cur_design [current_bd_design -quiet]
set list_cells [get_bd_cells -quiet]
if { ${design_name} eq "" } {
# USE CASES:
# 1) Design_name not set
set errMsg "Please set the variable <design_name> to a non-empty value."
set nRet 1
} elseif { ${cur_design} ne "" && ${list_cells} eq "" } {
# USE CASES:
# 2): Current design opened AND is empty AND names same.
# 3): Current design opened AND is empty AND names diff; design_name NOT in project.
# 4): Current design opened AND is empty AND names diff; design_name exists in project.
if { $cur_design ne $design_name } {
common::send_gid_msg -ssname BD::TCL -id 2001 -severity "INFO" "Changing value of <design_name> from <$design_name> to <$cur_design> since current design is empty."
set design_name [get_property NAME $cur_design]
}
common::send_gid_msg -ssname BD::TCL -id 2002 -severity "INFO" "Constructing design in IPI design <$cur_design>..."
} elseif { ${cur_design} ne "" && $list_cells ne "" && $cur_design eq $design_name } {
# USE CASES:
# 5) Current design opened AND has components AND same names.
set errMsg "Design <$design_name> already exists in your project, please set the variable <design_name> to another value."
set nRet 1
} elseif { [get_files -quiet ${design_name}.bd] ne "" } {
# USE CASES:
# 6) Current opened design, has components, but diff names, design_name exists in project.
# 7) No opened design, design_name exists in project.
set errMsg "Design <$design_name> already exists in your project, please set the variable <design_name> to another value."
set nRet 2
} else {
# USE CASES:
# 8) No opened design, design_name not in project.
# 9) Current opened design, has components, but diff names, design_name not in project.
common::send_gid_msg -ssname BD::TCL -id 2003 -severity "INFO" "Currently there is no design <$design_name> in project, so creating one..."
create_bd_design -bdsource Vitis $design_name
common::send_gid_msg -ssname BD::TCL -id 2004 -severity "INFO" "Making design <$design_name> as current_bd_design."
current_bd_design $design_name
}
common::send_gid_msg -ssname BD::TCL -id 2005 -severity "INFO" "Currently the variable <design_name> is equal to \"$design_name\"."
if { $nRet != 0 } {
catch {common::send_gid_msg -ssname BD::TCL -id 2006 -severity "ERROR" $errMsg}
return $nRet
}
set bCheckIPsPassed 1
##################################################################
# CHECK IPs
##################################################################
set bCheckIPs 1
if { $bCheckIPs == 1 } {
set list_check_ips "\
xilinx.com:ip:ai_engine:2.0\
xilinx.com:ip:axi_bram_ctrl:4.1\
xilinx.com:ip:axi_firewall:1.2\
xilinx.com:ip:axi_dbg_hub:2.0\
xilinx.com:ip:axi_gpio:2.0\
xilinx.com:ip:smartconnect:1.0\
xilinx.com:ip:axi_noc:1.0\
xilinx.com:ip:xlconstant:1.1\
xilinx.com:RTLKernel:data_mover_mm2mm:1.0\
xilinx.com:ip:emb_mem_gen:1.0\
xilinx.com:ip:util_vector_logic:2.0\
xilinx.com:ip:util_ff:1.0\
xilinx.com:ip:xlconcat:2.1\
xilinx.com:ip:proc_sys_reset:5.0\
"
set list_ips_missing ""
common::send_gid_msg -ssname BD::TCL -id 2011 -severity "INFO" "Checking if the following IPs exist in the project's IP catalog: $list_check_ips ."
foreach ip_vlnv $list_check_ips {
set ip_obj [get_ipdefs -all $ip_vlnv]
if { $ip_obj eq "" } {
lappend list_ips_missing $ip_vlnv
}
}
if { $list_ips_missing ne "" } {
catch {common::send_gid_msg -ssname BD::TCL -id 2012 -severity "ERROR" "The following IPs are not found in the IP Catalog:\n $list_ips_missing\n\nResolution: Please add the repository containing the IP(s) to the project." }
set bCheckIPsPassed 0
}
}
if { $bCheckIPsPassed != 1 } {
common::send_gid_msg -ssname BD::TCL -id 2023 -severity "WARNING" "Will not continue with creation of design due to the error(s) above."
return 3
}
##################################################################
# DESIGN PROCs
##################################################################
# Hierarchical cell: reset_controllers
proc create_hier_cell_reset_controllers { parentCell nameHier } {
variable script_folder
if { $parentCell eq "" || $nameHier eq "" } {
catch {common::send_gid_msg -ssname BD::TCL -id 2092 -severity "ERROR" "create_hier_cell_reset_controllers() - Empty argument(s)!"}
return
}
# Get object for parentCell
set parentObj [get_bd_cells $parentCell]
if { $parentObj == "" } {
catch {common::send_gid_msg -ssname BD::TCL -id 2090 -severity "ERROR" "Unable to find parent cell <$parentCell>!"}
return
}
# Make sure parentObj is hier blk
set parentType [get_property TYPE $parentObj]
if { $parentType ne "hier" } {
catch {common::send_gid_msg -ssname BD::TCL -id 2091 -severity "ERROR" "Parent <$parentObj> has TYPE = <$parentType>. Expected to be <hier>."}
return
}
# Save current instance; Restore later
set oldCurInst [current_bd_instance .]
# Set parent object as current
current_bd_instance $parentObj
# Create cell and set as current instance
set hier_obj [create_bd_cell -type hier $nameHier]
current_bd_instance $hier_obj
# Create interface pins
# Create pins
create_bd_pin -dir I -type clk clk_kernel0
create_bd_pin -dir I -type clk clk_kernel1
create_bd_pin -dir I -type clk clk_pcie
create_bd_pin -dir I -type clk clk_pl_axi
create_bd_pin -dir O -from 0 -to 0 -type rst peripheral_aresetn
create_bd_pin -dir O -from 0 -to 0 -type rst resetn_kernel0_ic
create_bd_pin -dir O -from 0 -to 0 -type rst resetn_kernel1_ic
create_bd_pin -dir I -type rst resetn_pcie
create_bd_pin -dir O -from 0 -to 0 -type rst resetn_pcie_axi
create_bd_pin -dir O -from 0 -to 0 -type rst resetn_pl_axi
create_bd_pin -dir I -type rst resetn_ulp
# Create instance: pipereg_kernel0, and set properties
set pipereg_kernel0 [ create_bd_cell -type ip -vlnv xilinx.com:ip:util_ff:1.0 pipereg_kernel0 ]
# Create instance: pipereg_kernel1, and set properties
set pipereg_kernel1 [ create_bd_cell -type ip -vlnv xilinx.com:ip:util_ff:1.0 pipereg_kernel1 ]
# Create instance: pipereg_pcie0, and set properties
set pipereg_pcie0 [ create_bd_cell -type ip -vlnv xilinx.com:ip:util_ff:1.0 pipereg_pcie0 ]
# Create instance: pipereg_pl_axi0, and set properties
set pipereg_pl_axi0 [ create_bd_cell -type ip -vlnv xilinx.com:ip:util_ff:1.0 pipereg_pl_axi0 ]
# Create instance: reset_sync_fixed, and set properties
set reset_sync_fixed [ create_bd_cell -type ip -vlnv xilinx.com:ip:proc_sys_reset:5.0 reset_sync_fixed ]
set_property -dict [list \
CONFIG.C_AUX_RESET_HIGH {0} \
CONFIG.C_AUX_RST_WIDTH {1} \
CONFIG.C_EXT_RST_WIDTH {1} \
] $reset_sync_fixed
# Create instance: reset_sync_kernel0, and set properties
set reset_sync_kernel0 [ create_bd_cell -type ip -vlnv xilinx.com:ip:proc_sys_reset:5.0 reset_sync_kernel0 ]
set_property -dict [list \
CONFIG.C_AUX_RESET_HIGH {0} \
CONFIG.C_AUX_RST_WIDTH {1} \
CONFIG.C_EXT_RST_WIDTH {1} \
] $reset_sync_kernel0
# Create instance: reset_sync_kernel1, and set properties
set reset_sync_kernel1 [ create_bd_cell -type ip -vlnv xilinx.com:ip:proc_sys_reset:5.0 reset_sync_kernel1 ]
set_property -dict [list \
CONFIG.C_AUX_RESET_HIGH {0} \
CONFIG.C_AUX_RST_WIDTH {1} \
CONFIG.C_EXT_RST_WIDTH {1} \
] $reset_sync_kernel1
# Create instance: rstn_const, and set properties
set rstn_const [ create_bd_cell -type ip -vlnv xilinx.com:ip:xlconstant:1.1 rstn_const ]
set_property -dict [list \
CONFIG.CONST_VAL {1} \
CONFIG.CONST_WIDTH {1} \
] $rstn_const
# Create port connections
connect_bd_net -net clk_kernel0_1 [get_bd_pins clk_kernel0] [get_bd_pins pipereg_kernel0/clk] [get_bd_pins reset_sync_kernel0/slowest_sync_clk]
connect_bd_net -net clk_kernel1_1 [get_bd_pins clk_kernel1] [get_bd_pins pipereg_kernel1/clk] [get_bd_pins reset_sync_kernel1/slowest_sync_clk]
connect_bd_net -net clk_pcie_1 [get_bd_pins clk_pcie] [get_bd_pins pipereg_pcie0/clk]
connect_bd_net -net clk_pl_axi_1 [get_bd_pins clk_pl_axi] [get_bd_pins pipereg_pl_axi0/clk] [get_bd_pins reset_sync_fixed/slowest_sync_clk]
connect_bd_net -net pipereg_kernel0_q [get_bd_pins resetn_kernel0_ic] [get_bd_pins pipereg_kernel0/Q]
connect_bd_net -net pipereg_kernel1_q [get_bd_pins resetn_kernel1_ic] [get_bd_pins pipereg_kernel1/Q]
connect_bd_net -net pipereg_pcie0_q [get_bd_pins resetn_pcie_axi] [get_bd_pins pipereg_pcie0/Q]
connect_bd_net -net pipereg_pl_axi0_q [get_bd_pins resetn_pl_axi] [get_bd_pins pipereg_pl_axi0/Q]
connect_bd_net -net reset_sync_kernel0_interconnect_aresetn [get_bd_pins pipereg_kernel0/D] [get_bd_pins reset_sync_kernel0/interconnect_aresetn]
connect_bd_net -net reset_sync_kernel0_peripheral_aresetn [get_bd_pins peripheral_aresetn] [get_bd_pins reset_sync_kernel0/peripheral_aresetn]
connect_bd_net -net reset_sync_kernel1_interconnect_aresetn [get_bd_pins pipereg_kernel1/D] [get_bd_pins reset_sync_kernel1/interconnect_aresetn]
connect_bd_net -net resetn_pcie_1 [get_bd_pins resetn_pcie] [get_bd_pins pipereg_pcie0/D]
connect_bd_net -net resetn_ulp_1 [get_bd_pins resetn_ulp] [get_bd_pins pipereg_pl_axi0/D] [get_bd_pins reset_sync_fixed/ext_reset_in] [get_bd_pins reset_sync_kernel0/ext_reset_in] [get_bd_pins reset_sync_kernel1/ext_reset_in]
connect_bd_net -net rstn_const_dout [get_bd_pins pipereg_kernel0/reset] [get_bd_pins pipereg_kernel1/reset] [get_bd_pins pipereg_pcie0/reset] [get_bd_pins pipereg_pl_axi0/reset] [get_bd_pins rstn_const/dout]
# Restore current instance
current_bd_instance $oldCurInst
}
# Hierarchical cell: kernel_interrupt
proc create_hier_cell_kernel_interrupt { parentCell nameHier } {
variable script_folder
if { $parentCell eq "" || $nameHier eq "" } {
catch {common::send_gid_msg -ssname BD::TCL -id 2092 -severity "ERROR" "create_hier_cell_kernel_interrupt() - Empty argument(s)!"}
return
}
# Get object for parentCell
set parentObj [get_bd_cells $parentCell]
if { $parentObj == "" } {
catch {common::send_gid_msg -ssname BD::TCL -id 2090 -severity "ERROR" "Unable to find parent cell <$parentCell>!"}
return
}
# Make sure parentObj is hier blk
set parentType [get_property TYPE $parentObj]
if { $parentType ne "hier" } {
catch {common::send_gid_msg -ssname BD::TCL -id 2091 -severity "ERROR" "Parent <$parentObj> has TYPE = <$parentType>. Expected to be <hier>."}
return
}
# Save current instance; Restore later
set oldCurInst [current_bd_instance .]
# Set parent object as current
current_bd_instance $parentObj
# Create cell and set as current instance
set hier_obj [create_bd_cell -type hier $nameHier]
current_bd_instance $hier_obj
# Create interface pins
# Create pins
create_bd_pin -dir I -from 31 -to 0 In0
create_bd_pin -dir O -from 127 -to 0 xlconcat_interrupt_dout
# Create instance: xlconcat_0, and set properties
set xlconcat_0 [ create_bd_cell -type ip -vlnv xilinx.com:ip:xlconcat:2.1 xlconcat_0 ]
set_property CONFIG.IN0_WIDTH {32} $xlconcat_0
# Create instance: xlconstant_0, and set properties
set xlconstant_0 [ create_bd_cell -type ip -vlnv xilinx.com:ip:xlconstant:1.1 xlconstant_0 ]
set_property -dict [list \
CONFIG.CONST_VAL {0} \
CONFIG.CONST_WIDTH {96} \
] $xlconstant_0
# Create port connections
connect_bd_net -net In0_1 [get_bd_pins In0] [get_bd_pins xlconcat_0/In0]
connect_bd_net -net xlconcat_0_dout [get_bd_pins xlconcat_interrupt_dout] [get_bd_pins xlconcat_0/dout]
connect_bd_net -net xlconstant_0_dout [get_bd_pins xlconcat_0/In1] [get_bd_pins xlconstant_0/dout]
# Restore current instance
current_bd_instance $oldCurInst
}
# Procedure to create entire design; Provide argument to make
# procedure reusable. If parentCell is "", will use root.
proc create_root_design { parentCell } {
variable script_folder
variable design_name
if { $parentCell eq "" } {
set parentCell [get_bd_cells /]
}
# Get object for parentCell
set parentObj [get_bd_cells $parentCell]
if { $parentObj == "" } {
catch {common::send_gid_msg -ssname BD::TCL -id 2090 -severity "ERROR" "Unable to find parent cell <$parentCell>!"}
return
}
# Make sure parentObj is hier blk
set parentType [get_property TYPE $parentObj]
if { $parentType ne "hier" } {
catch {common::send_gid_msg -ssname BD::TCL -id 2091 -severity "ERROR" "Parent <$parentObj> has TYPE = <$parentType>. Expected to be <hier>."}
return
}
# Save current instance; Restore later
set oldCurInst [current_bd_instance .]
# Set parent object as current
current_bd_instance $parentObj
# Create interface ports
set BLP_M_M00_INI_0 [ create_bd_intf_port -mode Master -vlnv xilinx.com:interface:inimm_rtl:1.0 BLP_M_M00_INI_0 ]
set_property APERTURES {{0xC1_0000_0000 12G}} [get_bd_intf_ports BLP_M_M00_INI_0]
set BLP_M_M01_INI_0 [ create_bd_intf_port -mode Master -vlnv xilinx.com:interface:inimm_rtl:1.0 BLP_M_M01_INI_0 ]
set_property APERTURES {{0xC1_0000_0000 12G}} [get_bd_intf_ports BLP_M_M01_INI_0]
set BLP_M_M02_INI_0 [ create_bd_intf_port -mode Master -vlnv xilinx.com:interface:inimm_rtl:1.0 BLP_M_M02_INI_0 ]
set_property APERTURES {{0xC1_0000_0000 12G}} [get_bd_intf_ports BLP_M_M02_INI_0]
set BLP_S_AXI_CTRL_USER_00 [ create_bd_intf_port -mode Slave -vlnv xilinx.com:interface:aximm_rtl:1.0 -portmaps { \
ARADDR { physical_name BLP_S_AXI_CTRL_USER_00_araddr direction I left 63 right 0 } \
ARPROT { physical_name BLP_S_AXI_CTRL_USER_00_arprot direction I left 2 right 0 } \
ARREADY { physical_name BLP_S_AXI_CTRL_USER_00_arready direction O } \
ARVALID { physical_name BLP_S_AXI_CTRL_USER_00_arvalid direction I } \
AWADDR { physical_name BLP_S_AXI_CTRL_USER_00_awaddr direction I left 63 right 0 } \
AWPROT { physical_name BLP_S_AXI_CTRL_USER_00_awprot direction I left 2 right 0 } \
AWREADY { physical_name BLP_S_AXI_CTRL_USER_00_awready direction O } \
AWVALID { physical_name BLP_S_AXI_CTRL_USER_00_awvalid direction I } \
BREADY { physical_name BLP_S_AXI_CTRL_USER_00_bready direction I } \
BRESP { physical_name BLP_S_AXI_CTRL_USER_00_bresp direction O left 1 right 0 } \
BVALID { physical_name BLP_S_AXI_CTRL_USER_00_bvalid direction O } \
RDATA { physical_name BLP_S_AXI_CTRL_USER_00_rdata direction O left 31 right 0 } \
RREADY { physical_name BLP_S_AXI_CTRL_USER_00_rready direction I } \
RRESP { physical_name BLP_S_AXI_CTRL_USER_00_rresp direction O left 1 right 0 } \
RVALID { physical_name BLP_S_AXI_CTRL_USER_00_rvalid direction O } \
WDATA { physical_name BLP_S_AXI_CTRL_USER_00_wdata direction I left 31 right 0 } \
WREADY { physical_name BLP_S_AXI_CTRL_USER_00_wready direction O } \
WSTRB { physical_name BLP_S_AXI_CTRL_USER_00_wstrb direction I left 3 right 0 } \
WVALID { physical_name BLP_S_AXI_CTRL_USER_00_wvalid direction I } \
} \
BLP_S_AXI_CTRL_USER_00 ]
set_property -dict [ list \
CONFIG.ADDR_WIDTH {64} \
CONFIG.ARUSER_WIDTH {0} \
CONFIG.AWUSER_WIDTH {0} \
CONFIG.BUSER_WIDTH {0} \
CONFIG.DATA_WIDTH {32} \
CONFIG.FREQ_HZ {99999992} \
CONFIG.HAS_BRESP {1} \
CONFIG.HAS_BURST {0} \
CONFIG.HAS_CACHE {0} \
CONFIG.HAS_LOCK {0} \
CONFIG.HAS_PROT {1} \
CONFIG.HAS_QOS {0} \
CONFIG.HAS_REGION {0} \
CONFIG.HAS_RRESP {1} \
CONFIG.HAS_WSTRB {1} \
CONFIG.ID_WIDTH {0} \
CONFIG.INSERT_VIP {0} \
CONFIG.MAX_BURST_LENGTH {1} \
CONFIG.NUM_READ_OUTSTANDING {2} \
CONFIG.NUM_READ_THREADS {1} \
CONFIG.NUM_WRITE_OUTSTANDING {2} \
CONFIG.NUM_WRITE_THREADS {1} \
CONFIG.PHASE {0.0} \
CONFIG.PROTOCOL {AXI4LITE} \
CONFIG.READ_WRITE_MODE {READ_WRITE} \
CONFIG.RUSER_BITS_PER_BYTE {0} \
CONFIG.RUSER_WIDTH {0} \
CONFIG.SUPPORTS_NARROW_BURST {0} \
CONFIG.WUSER_BITS_PER_BYTE {0} \
CONFIG.WUSER_WIDTH {0} \
] $BLP_S_AXI_CTRL_USER_00
set_property APERTURES {{0x202_0000_0000 32M}} [get_bd_intf_ports BLP_S_AXI_CTRL_USER_00]
set_property HDL_ATTRIBUTE.LOCKED {true} [get_bd_intf_ports BLP_S_AXI_CTRL_USER_00]
set BLP_S_INI_AIE_00 [ create_bd_intf_port -mode Slave -vlnv xilinx.com:interface:inimm_rtl:1.0 BLP_S_INI_AIE_00 ]
set BLP_S_INI_DBG_00 [ create_bd_intf_port -mode Slave -vlnv xilinx.com:interface:inimm_rtl:1.0 BLP_S_INI_DBG_00 ]
set BLP_S_INI_PLRAM_00 [ create_bd_intf_port -mode Slave -vlnv xilinx.com:interface:inimm_rtl:1.0 BLP_S_INI_PLRAM_00 ]
set qsfp0_161mhz [ create_bd_intf_port -mode Slave -vlnv xilinx.com:interface:diff_clock_rtl:1.0 -board_intf qsfp0_161mhz qsfp0_161mhz ]
set_property -dict [ list \
CONFIG.CAN_DEBUG {false} \
CONFIG.FREQ_HZ {161132812} \
] $qsfp0_161mhz
set_property HDL_ATTRIBUTE.BOARD_INTERFACE {qsfp0_161mhz} [get_bd_intf_ports qsfp0_161mhz]
set_property HDL_ATTRIBUTE.LOCKED {TRUE} [get_bd_intf_ports qsfp0_161mhz]
set qsfp0_4x [ create_bd_intf_port -mode Master -vlnv xilinx.com:interface:gt_rtl:1.0 -board_intf qsfp0_4x qsfp0_4x ]
set_property -dict [ list \
CONFIG.CAN_DEBUG {false} \
] $qsfp0_4x
set_property HDL_ATTRIBUTE.BOARD_INTERFACE {qsfp0_4x} [get_bd_intf_ports qsfp0_4x]
set_property HDL_ATTRIBUTE.LOCKED {TRUE} [get_bd_intf_ports qsfp0_4x]
set qsfp1_161mhz [ create_bd_intf_port -mode Slave -vlnv xilinx.com:interface:diff_clock_rtl:1.0 -board_intf qsfp1_161mhz qsfp1_161mhz ]
set_property -dict [ list \
CONFIG.CAN_DEBUG {false} \
CONFIG.FREQ_HZ {161132812} \
] $qsfp1_161mhz
set_property HDL_ATTRIBUTE.BOARD_INTERFACE {qsfp1_161mhz} [get_bd_intf_ports qsfp1_161mhz]
set_property HDL_ATTRIBUTE.LOCKED {TRUE} [get_bd_intf_ports qsfp1_161mhz]
set qsfp1_4x [ create_bd_intf_port -mode Master -vlnv xilinx.com:interface:gt_rtl:1.0 -board_intf qsfp1_4x qsfp1_4x ]
set_property -dict [ list \
CONFIG.CAN_DEBUG {false} \
] $qsfp1_4x
set_property HDL_ATTRIBUTE.BOARD_INTERFACE {qsfp1_4x} [get_bd_intf_ports qsfp1_4x]
set_property HDL_ATTRIBUTE.LOCKED {TRUE} [get_bd_intf_ports qsfp1_4x]
# Create ports
set blp_m_dbg_hub_fw_00 [ create_bd_port -dir O -from 0 -to 0 -type intr blp_m_dbg_hub_fw_00 ]
set blp_m_ext_tog_ctrl_kernel_00_enable [ create_bd_port -dir O -from 0 -to 0 blp_m_ext_tog_ctrl_kernel_00_enable ]
set blp_m_ext_tog_ctrl_kernel_00_in [ create_bd_port -dir O -from 0 -to 0 blp_m_ext_tog_ctrl_kernel_00_in ]
set blp_m_ext_tog_ctrl_kernel_01_enable [ create_bd_port -dir O -from 0 -to 0 blp_m_ext_tog_ctrl_kernel_01_enable ]
set blp_m_ext_tog_ctrl_kernel_01_in [ create_bd_port -dir O -from 0 -to 0 blp_m_ext_tog_ctrl_kernel_01_in ]
set blp_m_irq_kernel_00 [ create_bd_port -dir O -from 127 -to 0 -type intr blp_m_irq_kernel_00 ]
set blp_s_aclk_ctrl_00 [ create_bd_port -dir I -type clk blp_s_aclk_ctrl_00 ]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {BLP_S_AXI_CTRL_USER_00} \
CONFIG.CLK_DOMAIN {bd_4885_pspmc_0_0_pl0_ref_clk} \
CONFIG.FREQ_HZ {99999992} \
CONFIG.FREQ_TOLERANCE_HZ {0} \
CONFIG.INSERT_VIP {0} \
CONFIG.PHASE {0.0} \
] $blp_s_aclk_ctrl_00
set_property CONFIG.ASSOCIATED_BUSIF.VALUE_SRC STRONG $blp_s_aclk_ctrl_00
set_property CONFIG.CLK_DOMAIN.VALUE_SRC STRONG $blp_s_aclk_ctrl_00
set_property CONFIG.FREQ_HZ.VALUE_SRC STRONG $blp_s_aclk_ctrl_00
set_property CONFIG.FREQ_TOLERANCE_HZ.VALUE_SRC STRONG $blp_s_aclk_ctrl_00
set_property CONFIG.INSERT_VIP.VALUE_SRC STRONG $blp_s_aclk_ctrl_00
set_property CONFIG.PHASE.VALUE_SRC STRONG $blp_s_aclk_ctrl_00
set blp_s_aclk_ext_tog_kernel_00 [ create_bd_port -dir I -type clk blp_s_aclk_ext_tog_kernel_00 ]
set_property -dict [ list \
CONFIG.CLK_DOMAIN {cd_aclk_ext_tog_kernel_00} \
CONFIG.FREQ_HZ {299996999} \
CONFIG.FREQ_TOLERANCE_HZ {0} \
CONFIG.INSERT_VIP {0} \
CONFIG.PHASE {0.0} \
] $blp_s_aclk_ext_tog_kernel_00
set_property CONFIG.CLK_DOMAIN.VALUE_SRC STRONG $blp_s_aclk_ext_tog_kernel_00
set_property CONFIG.FREQ_HZ.VALUE_SRC STRONG $blp_s_aclk_ext_tog_kernel_00
set_property CONFIG.FREQ_TOLERANCE_HZ.VALUE_SRC STRONG $blp_s_aclk_ext_tog_kernel_00
set_property CONFIG.INSERT_VIP.VALUE_SRC STRONG $blp_s_aclk_ext_tog_kernel_00
set_property CONFIG.PHASE.VALUE_SRC STRONG $blp_s_aclk_ext_tog_kernel_00
set blp_s_aclk_ext_tog_kernel_01 [ create_bd_port -dir I -type clk blp_s_aclk_ext_tog_kernel_01 ]
set_property -dict [ list \
CONFIG.CLK_DOMAIN {cd_aclk_ext_tog_kernel_01} \
CONFIG.FREQ_HZ {499994999} \
CONFIG.FREQ_TOLERANCE_HZ {0} \
CONFIG.INSERT_VIP {0} \
CONFIG.PHASE {0.0} \
] $blp_s_aclk_ext_tog_kernel_01
set_property CONFIG.CLK_DOMAIN.VALUE_SRC STRONG $blp_s_aclk_ext_tog_kernel_01
set_property CONFIG.FREQ_HZ.VALUE_SRC STRONG $blp_s_aclk_ext_tog_kernel_01
set_property CONFIG.FREQ_TOLERANCE_HZ.VALUE_SRC STRONG $blp_s_aclk_ext_tog_kernel_01
set_property CONFIG.INSERT_VIP.VALUE_SRC STRONG $blp_s_aclk_ext_tog_kernel_01
set_property CONFIG.PHASE.VALUE_SRC STRONG $blp_s_aclk_ext_tog_kernel_01
set blp_s_aclk_kernel_00 [ create_bd_port -dir I -type clk blp_s_aclk_kernel_00 ]
set_property -dict [ list \
CONFIG.CLK_DOMAIN {cd_aclk_kernel_00} \
CONFIG.FREQ_HZ {299996999} \
CONFIG.FREQ_TOLERANCE_HZ {0} \
CONFIG.INSERT_VIP {0} \
CONFIG.PHASE {0.0} \
] $blp_s_aclk_kernel_00
set_property CONFIG.CLK_DOMAIN.VALUE_SRC STRONG $blp_s_aclk_kernel_00
set_property CONFIG.FREQ_HZ.VALUE_SRC STRONG $blp_s_aclk_kernel_00
set_property CONFIG.FREQ_TOLERANCE_HZ.VALUE_SRC STRONG $blp_s_aclk_kernel_00
set_property CONFIG.INSERT_VIP.VALUE_SRC STRONG $blp_s_aclk_kernel_00
set_property CONFIG.PHASE.VALUE_SRC STRONG $blp_s_aclk_kernel_00
set blp_s_aclk_kernel_01 [ create_bd_port -dir I -type clk blp_s_aclk_kernel_01 ]
set_property -dict [ list \
CONFIG.CLK_DOMAIN {cd_aclk_kernel_01} \
CONFIG.FREQ_HZ {499994999} \
CONFIG.FREQ_TOLERANCE_HZ {0} \
CONFIG.INSERT_VIP {0} \
CONFIG.PHASE {0.0} \
] $blp_s_aclk_kernel_01
set_property CONFIG.CLK_DOMAIN.VALUE_SRC STRONG $blp_s_aclk_kernel_01
set_property CONFIG.FREQ_HZ.VALUE_SRC STRONG $blp_s_aclk_kernel_01
set_property CONFIG.FREQ_TOLERANCE_HZ.VALUE_SRC STRONG $blp_s_aclk_kernel_01
set_property CONFIG.INSERT_VIP.VALUE_SRC STRONG $blp_s_aclk_kernel_01
set_property CONFIG.PHASE.VALUE_SRC STRONG $blp_s_aclk_kernel_01
set blp_s_aclk_pcie_00 [ create_bd_port -dir I -type clk blp_s_aclk_pcie_00 ]
set_property -dict [ list \
CONFIG.CLK_DOMAIN {bd_4885_pspmc_0_0_pl2_ref_clk} \
CONFIG.FREQ_HZ {249999985} \
CONFIG.FREQ_TOLERANCE_HZ {0} \
CONFIG.INSERT_VIP {0} \
CONFIG.PHASE {0.0} \
] $blp_s_aclk_pcie_00
set_property CONFIG.CLK_DOMAIN.VALUE_SRC STRONG $blp_s_aclk_pcie_00
set_property CONFIG.FREQ_HZ.VALUE_SRC STRONG $blp_s_aclk_pcie_00
set_property CONFIG.FREQ_TOLERANCE_HZ.VALUE_SRC STRONG $blp_s_aclk_pcie_00
set_property CONFIG.INSERT_VIP.VALUE_SRC STRONG $blp_s_aclk_pcie_00
set_property CONFIG.PHASE.VALUE_SRC STRONG $blp_s_aclk_pcie_00
set blp_s_aresetn_pcie_reset_00 [ create_bd_port -dir I -from 0 -to 0 -type rst blp_s_aresetn_pcie_reset_00 ]
set_property -dict [ list \
CONFIG.INSERT_VIP {0} \
CONFIG.POLARITY {ACTIVE_LOW} \
] $blp_s_aresetn_pcie_reset_00
set_property CONFIG.INSERT_VIP.VALUE_SRC STRONG $blp_s_aresetn_pcie_reset_00
set_property CONFIG.POLARITY.VALUE_SRC STRONG $blp_s_aresetn_pcie_reset_00
set blp_s_aresetn_pr_reset_00 [ create_bd_port -dir I -from 0 -to 0 -type rst blp_s_aresetn_pr_reset_00 ]
set_property -dict [ list \
CONFIG.INSERT_VIP {0} \
CONFIG.POLARITY {ACTIVE_LOW} \
] $blp_s_aresetn_pr_reset_00
set_property CONFIG.INSERT_VIP.VALUE_SRC STRONG $blp_s_aresetn_pr_reset_00
set_property CONFIG.POLARITY.VALUE_SRC STRONG $blp_s_aresetn_pr_reset_00
set blp_s_ext_tog_ctrl_kernel_00_out [ create_bd_port -dir I blp_s_ext_tog_ctrl_kernel_00_out ]
set blp_s_ext_tog_ctrl_kernel_01_out [ create_bd_port -dir I blp_s_ext_tog_ctrl_kernel_01_out ]
# Create instance: ai_engine_0, and set properties
set ai_engine_0 [ create_bd_cell -type ip -vlnv xilinx.com:ip:ai_engine:2.0 ai_engine_0 ]
set_property -dict [list \
CONFIG.AIE_CORE_REF_CTRL_FREQMHZ {1250} \
CONFIG.CLK_NAMES {aclk0,} \
CONFIG.NAME_MI_AXI {} \
CONFIG.NAME_MI_AXIS {} \
CONFIG.NAME_SI_AXIS {} \
CONFIG.NUM_CLKS {1} \
CONFIG.NUM_MI_AXI {16} \
CONFIG.NUM_MI_AXIS {0} \
CONFIG.NUM_SI_AXIS {0} \
] $ai_engine_0
set_property -dict [ list \
CONFIG.CATEGORY {NOC} \
] [get_bd_intf_pins /ai_engine_0/M00_AXI]
set_property -dict [ list \
CONFIG.CATEGORY {NOC} \
] [get_bd_intf_pins /ai_engine_0/M01_AXI]
set_property -dict [ list \
CONFIG.CATEGORY {NOC} \
] [get_bd_intf_pins /ai_engine_0/M02_AXI]
set_property -dict [ list \
CONFIG.CATEGORY {NOC} \
] [get_bd_intf_pins /ai_engine_0/M03_AXI]
set_property -dict [ list \
CONFIG.CATEGORY {NOC} \
] [get_bd_intf_pins /ai_engine_0/M04_AXI]
set_property -dict [ list \
CONFIG.CATEGORY {NOC} \
] [get_bd_intf_pins /ai_engine_0/M05_AXI]
set_property -dict [ list \
CONFIG.CATEGORY {NOC} \
] [get_bd_intf_pins /ai_engine_0/M06_AXI]
set_property -dict [ list \
CONFIG.CATEGORY {NOC} \
] [get_bd_intf_pins /ai_engine_0/M07_AXI]
set_property -dict [ list \
CONFIG.CATEGORY {NOC} \
] [get_bd_intf_pins /ai_engine_0/M08_AXI]
set_property -dict [ list \
CONFIG.CATEGORY {NOC} \
] [get_bd_intf_pins /ai_engine_0/M09_AXI]
set_property -dict [ list \
CONFIG.CATEGORY {NOC} \
] [get_bd_intf_pins /ai_engine_0/M10_AXI]
set_property -dict [ list \
CONFIG.CATEGORY {NOC} \
] [get_bd_intf_pins /ai_engine_0/M11_AXI]
set_property -dict [ list \
CONFIG.CATEGORY {NOC} \
] [get_bd_intf_pins /ai_engine_0/M12_AXI]
set_property -dict [ list \
CONFIG.CATEGORY {NOC} \
] [get_bd_intf_pins /ai_engine_0/M13_AXI]
set_property -dict [ list \
CONFIG.CATEGORY {NOC} \
] [get_bd_intf_pins /ai_engine_0/M14_AXI]
set_property -dict [ list \
CONFIG.CATEGORY {NOC} \
] [get_bd_intf_pins /ai_engine_0/M15_AXI]
set_property -dict [ list \
CONFIG.CATEGORY {NOC} \
] [get_bd_intf_pins /ai_engine_0/S00_AXI]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {} \
] [get_bd_pins /ai_engine_0/aclk0]
# Create instance: axi_bram_ctrl_0, and set properties
set axi_bram_ctrl_0 [ create_bd_cell -type ip -vlnv xilinx.com:ip:axi_bram_ctrl:4.1 axi_bram_ctrl_0 ]
# Create instance: axi_dbg_fw, and set properties
set axi_dbg_fw [ create_bd_cell -type ip -vlnv xilinx.com:ip:axi_firewall:1.2 axi_dbg_fw ]
set_property CONFIG.MASK_ERR_RESP {1} $axi_dbg_fw
# Create instance: axi_dbg_hub, and set properties
set axi_dbg_hub [ create_bd_cell -type ip -vlnv xilinx.com:ip:axi_dbg_hub:2.0 axi_dbg_hub ]
set_property -dict [list \
CONFIG.C_AXI_DATA_WIDTH {128} \
CONFIG.C_NUM_DEBUG_CORES {0} \
] $axi_dbg_hub
# Create instance: axi_gpio_null_user, and set properties
set axi_gpio_null_user [ create_bd_cell -type ip -vlnv xilinx.com:ip:axi_gpio:2.0 axi_gpio_null_user ]
set_property CONFIG.C_GPIO_WIDTH {1} $axi_gpio_null_user
# Create instance: axi_ic_user, and set properties
set axi_ic_user [ create_bd_cell -type ip -vlnv xilinx.com:ip:smartconnect:1.0 axi_ic_user ]
set_property -dict [list \
CONFIG.ADVANCED_PROPERTIES {__experimental_features__ {__enable_axi4lite_64_mi__ 1}} \
CONFIG.NUM_CLKS {2} \
CONFIG.NUM_MI {2} \
CONFIG.NUM_SI {1} \
] $axi_ic_user
set_property HDL_ATTRIBUTE.DPA_AXILITE_MASTER {primary} [get_bd_cells axi_ic_user]
# Create instance: axi_ic_user_extend, and set properties
set axi_ic_user_extend [ create_bd_cell -type ip -vlnv xilinx.com:ip:smartconnect:1.0 axi_ic_user_extend ]
set_property -dict [list \
CONFIG.ADVANCED_PROPERTIES {__experimental_features__ {__enable_axi4lite_64_mi__ 1}} \
CONFIG.NUM_CLKS {1} \
CONFIG.NUM_MI {1} \
CONFIG.NUM_SI {1} \
] $axi_ic_user_extend
# Create instance: axi_noc_aie_prog, and set properties
set axi_noc_aie_prog [ create_bd_cell -type ip -vlnv xilinx.com:ip:axi_noc:1.0 axi_noc_aie_prog ]
set_property -dict [list \
CONFIG.NUM_CLKS {18} \
CONFIG.NUM_MI {2} \
CONFIG.NUM_NSI {1} \
CONFIG.NUM_SI {17} \
CONFIG.SI_SIDEBAND_PINS {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0} \
] $axi_noc_aie_prog
set_property -dict [ list \
CONFIG.CATEGORY {aie} \
] [get_bd_intf_pins /axi_noc_aie_prog/M00_AXI]
set_property -dict [ list \
CONFIG.APERTURES {{0x201_0000_0000 1G}} \
CONFIG.CATEGORY {pl} \
] [get_bd_intf_pins /axi_noc_aie_prog/M01_AXI]
set_property -dict [ list \
CONFIG.CONNECTIONS {M01_AXI { read_bw {5} write_bw {5} read_avg_burst {4} write_avg_burst {4}}} \
CONFIG.DEST_IDS {M01_AXI:0x40} \
CONFIG.NOC_PARAMS {} \
CONFIG.CATEGORY {aie} \
] [get_bd_intf_pins /axi_noc_aie_prog/S00_AXI]
set_property -dict [ list \
CONFIG.INI_STRATEGY {load} \
CONFIG.CONNECTIONS {M00_AXI { read_bw {5} write_bw {5} read_avg_burst {64} write_avg_burst {64}} } \
] [get_bd_intf_pins /axi_noc_aie_prog/S00_INI]
set_property -dict [ list \
CONFIG.CONNECTIONS {M01_AXI { read_bw {5} write_bw {5} read_avg_burst {4} write_avg_burst {4}}} \
CONFIG.DEST_IDS {M01_AXI:0x40} \
CONFIG.NOC_PARAMS {} \
CONFIG.CATEGORY {aie} \
] [get_bd_intf_pins /axi_noc_aie_prog/S01_AXI]
set_property -dict [ list \
CONFIG.CONNECTIONS {M01_AXI { read_bw {5} write_bw {5} read_avg_burst {4} write_avg_burst {4}}} \
CONFIG.DEST_IDS {M01_AXI:0x40} \
CONFIG.NOC_PARAMS {} \
CONFIG.CATEGORY {aie} \
] [get_bd_intf_pins /axi_noc_aie_prog/S02_AXI]
set_property -dict [ list \
CONFIG.CONNECTIONS {M01_AXI { read_bw {5} write_bw {5} read_avg_burst {4} write_avg_burst {4}}} \
CONFIG.DEST_IDS {M01_AXI:0x40} \
CONFIG.NOC_PARAMS {} \
CONFIG.CATEGORY {aie} \
] [get_bd_intf_pins /axi_noc_aie_prog/S03_AXI]
set_property -dict [ list \
CONFIG.CONNECTIONS {M01_AXI { read_bw {5} write_bw {5} read_avg_burst {4} write_avg_burst {4}}} \
CONFIG.DEST_IDS {M01_AXI:0x40} \
CONFIG.NOC_PARAMS {} \
CONFIG.CATEGORY {aie} \
] [get_bd_intf_pins /axi_noc_aie_prog/S04_AXI]
set_property -dict [ list \
CONFIG.CONNECTIONS {M01_AXI { read_bw {5} write_bw {5} read_avg_burst {4} write_avg_burst {4}}} \
CONFIG.DEST_IDS {M01_AXI:0x40} \
CONFIG.NOC_PARAMS {} \
CONFIG.CATEGORY {aie} \
] [get_bd_intf_pins /axi_noc_aie_prog/S05_AXI]
set_property -dict [ list \
CONFIG.CONNECTIONS {M01_AXI { read_bw {5} write_bw {5} read_avg_burst {4} write_avg_burst {4}}} \
CONFIG.DEST_IDS {M01_AXI:0x40} \
CONFIG.NOC_PARAMS {} \
CONFIG.CATEGORY {aie} \
] [get_bd_intf_pins /axi_noc_aie_prog/S06_AXI]
set_property -dict [ list \
CONFIG.CONNECTIONS {M01_AXI { read_bw {5} write_bw {5} read_avg_burst {4} write_avg_burst {4}}} \
CONFIG.DEST_IDS {M01_AXI:0x40} \
CONFIG.NOC_PARAMS {} \
CONFIG.CATEGORY {aie} \
] [get_bd_intf_pins /axi_noc_aie_prog/S07_AXI]
set_property -dict [ list \
CONFIG.CONNECTIONS {M01_AXI { read_bw {5} write_bw {5} read_avg_burst {4} write_avg_burst {4}}} \
CONFIG.DEST_IDS {M01_AXI:0x40} \
CONFIG.NOC_PARAMS {} \
CONFIG.CATEGORY {aie} \
] [get_bd_intf_pins /axi_noc_aie_prog/S08_AXI]
set_property -dict [ list \
CONFIG.CONNECTIONS {M01_AXI { read_bw {5} write_bw {5} read_avg_burst {4} write_avg_burst {4}}} \
CONFIG.DEST_IDS {M01_AXI:0x40} \
CONFIG.NOC_PARAMS {} \
CONFIG.CATEGORY {aie} \
] [get_bd_intf_pins /axi_noc_aie_prog/S09_AXI]
set_property -dict [ list \
CONFIG.CONNECTIONS {M01_AXI { read_bw {5} write_bw {5} read_avg_burst {4} write_avg_burst {4}}} \
CONFIG.DEST_IDS {M01_AXI:0x40} \
CONFIG.NOC_PARAMS {} \
CONFIG.CATEGORY {aie} \
] [get_bd_intf_pins /axi_noc_aie_prog/S10_AXI]
set_property -dict [ list \
CONFIG.CONNECTIONS {M01_AXI { read_bw {5} write_bw {5} read_avg_burst {4} write_avg_burst {4}}} \
CONFIG.DEST_IDS {M01_AXI:0x40} \
CONFIG.NOC_PARAMS {} \
CONFIG.CATEGORY {aie} \
] [get_bd_intf_pins /axi_noc_aie_prog/S11_AXI]
set_property -dict [ list \
CONFIG.CONNECTIONS {M01_AXI { read_bw {5} write_bw {5} read_avg_burst {4} write_avg_burst {4}}} \
CONFIG.DEST_IDS {M01_AXI:0x40} \
CONFIG.NOC_PARAMS {} \
CONFIG.CATEGORY {aie} \
] [get_bd_intf_pins /axi_noc_aie_prog/S12_AXI]
set_property -dict [ list \
CONFIG.CONNECTIONS {M01_AXI { read_bw {5} write_bw {5} read_avg_burst {4} write_avg_burst {4}}} \
CONFIG.DEST_IDS {M01_AXI:0x40} \
CONFIG.NOC_PARAMS {} \
CONFIG.CATEGORY {aie} \
] [get_bd_intf_pins /axi_noc_aie_prog/S13_AXI]
set_property -dict [ list \
CONFIG.CONNECTIONS {M01_AXI { read_bw {5} write_bw {5} read_avg_burst {4} write_avg_burst {4}}} \
CONFIG.DEST_IDS {M01_AXI:0x40} \
CONFIG.NOC_PARAMS {} \
CONFIG.CATEGORY {aie} \
] [get_bd_intf_pins /axi_noc_aie_prog/S14_AXI]
set_property -dict [ list \
CONFIG.CONNECTIONS {M01_AXI { read_bw {5} write_bw {5} read_avg_burst {4} write_avg_burst {4}}} \
CONFIG.DEST_IDS {M01_AXI:0x40} \
CONFIG.NOC_PARAMS {} \
CONFIG.CATEGORY {aie} \
] [get_bd_intf_pins /axi_noc_aie_prog/S15_AXI]
set_property -dict [ list \
CONFIG.CONNECTIONS {M00_AXI { read_bw {1720} write_bw {1720} read_avg_burst {4} write_avg_burst {4}}} \
CONFIG.DEST_IDS {M00_AXI:0x240} \
CONFIG.NOC_PARAMS {} \
CONFIG.CATEGORY {pl} \
] [get_bd_intf_pins /axi_noc_aie_prog/S16_AXI]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {M00_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk0]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {M01_AXI:S16_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk1]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {S00_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk2]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {S01_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk3]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {S02_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk4]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {S03_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk5]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {S04_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk6]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {S05_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk7]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {S06_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk8]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {S07_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk9]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {S08_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk10]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {S09_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk11]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {S10_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk12]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {S11_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk13]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {S12_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk14]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {S13_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk15]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {S14_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk16]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {S15_AXI} \
] [get_bd_pins /axi_noc_aie_prog/aclk17]
# Create instance: axi_noc_h2c, and set properties
set axi_noc_h2c [ create_bd_cell -type ip -vlnv xilinx.com:ip:axi_noc:1.0 axi_noc_h2c ]
set_property -dict [list \
CONFIG.NUM_MI {2} \
CONFIG.NUM_NMI {0} \
CONFIG.NUM_NSI {2} \
CONFIG.NUM_SI {0} \
] $axi_noc_h2c
set_property -dict [ list \
CONFIG.APERTURES {{0x202_0580_0000 2M}} \
CONFIG.CATEGORY {pl} \
] [get_bd_intf_pins /axi_noc_h2c/M00_AXI]
set_property -dict [ list \
CONFIG.APERTURES {{0x202_0400_0000 16M}} \
CONFIG.CATEGORY {pl} \
] [get_bd_intf_pins /axi_noc_h2c/M01_AXI]
set_property -dict [ list \
CONFIG.INI_STRATEGY {load} \
CONFIG.CONNECTIONS {M00_AXI { read_bw {1720} write_bw {1720} read_avg_burst {64} write_avg_burst {64}} } \
] [get_bd_intf_pins /axi_noc_h2c/S00_INI]
set_property -dict [ list \
CONFIG.INI_STRATEGY {load} \
CONFIG.CONNECTIONS {M01_AXI { read_bw {1720} write_bw {1720} read_avg_burst {64} write_avg_burst {64}} } \
] [get_bd_intf_pins /axi_noc_h2c/S01_INI]
set_property -dict [ list \
CONFIG.ASSOCIATED_BUSIF {M00_AXI:M01_AXI} \
] [get_bd_pins /axi_noc_h2c/aclk0]
# Create instance: axi_noc_kernel0, and set properties
set axi_noc_kernel0 [ create_bd_cell -type ip -vlnv xilinx.com:ip:axi_noc:1.0 axi_noc_kernel0 ]
set_property -dict [list \
CONFIG.NUM_CLKS {1} \
CONFIG.NUM_MI {0} \
CONFIG.NUM_NMI {3} \
CONFIG.NUM_NSI {0} \
CONFIG.NUM_SI {1} \
] $axi_noc_kernel0
set_property HDL_ATTRIBUTE.DPA_TRACE_SLAVE {true} [get_bd_cells axi_noc_kernel0]
set_property -dict [ list \
CONFIG.INI_STRATEGY {load} \
] [get_bd_intf_pins /axi_noc_kernel0/M00_INI]
set_property -dict [ list \
CONFIG.INI_STRATEGY {load} \
] [get_bd_intf_pins /axi_noc_kernel0/M01_INI]
set_property -dict [ list \