8000 axi_dmac: Allow wider FIFO/AXI Stream interface · analogdevicesinc/hdl@5dd9fd4 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Commit 5dd9fd4

Browse files
committed
axi_dmac: Allow wider FIFO/AXI Stream interface
On large projects with multiple channels the databus on the FIFO/AXI stream interface can get wider that 1024 bits. This commit allows a wider range for all the interfaces, in 8000 case for the memory mapped interfaces where the range is 32-1024 the user selects a bus width out of range that will be handled by the IPI.
1 parent 63b6711 commit 5dd9fd4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

library/axi_dmac/axi_dmac_ip.tcl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ set_property -dict [list \
258258
foreach dir {"SRC" "DEST"} {
259259
set_property -dict [list \
260260
"value_validation_type" "list" \
261-
"value_validation_list" "16 32 64 128 256 512 1024" \
261+
"value_validation_list" "16 32 64 128 256 512 1024 2048" \
262262
] \
263263
[ipx::get_user_parameters DMA_DATA_WIDTH_${dir} -of_objects $cc]
264264

@@ -308,6 +308,7 @@ foreach {dir group} [list "SRC" $src_group "DEST" $dest_group] {
308308
ipgui::move_param -component $cc -order 2 $p -parent $group
309309
set_property -dict [list \
310310
"display_name" "Bus Width" \
311+
"tooltip" "Bus Width: For Memory-Mapped interface the valid range is 32-1024 bits" \
311312
] $p
312313

313314
set p [ipgui::get_guiparamspec -name "AXI_SLICE_${dir}" -component $cc]

0 commit comments

Comments
 (0)
0