Skip to content

Commit

Permalink
tmp: Intermediary commit to fix interconnect build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
StancaPop committed Jan 22, 2025
1 parent 74d3103 commit 9dae66d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CI/scripts_hdl/matlab_processors.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ proc preprocess_bd {project carrier rxtx} {
}
switch $carrier {
zed {
set_property -dict [list CONFIG.NUM_MI {21}] [get_bd_cells axi_cpu_interconnect]
connect_bd_net [get_bd_pins axi_cpu_interconnect/M20_ACLK] [get_bd_pins axi_clkgen/clk_0]
connect_bd_net [get_bd_pins axi_cpu_interconnect/M20_ARESETN] [get_bd_pins sampling_clk_rstgen/peripheral_aresetn]
set_property -dict [list CONFIG.NUM_MI {21}] [get_bd_cells axi_gp0_interconnect]
connect_bd_net [get_bd_pins axi_gp0_interconnect/M20_ACLK] [get_bd_pins axi_clkgen/clk_0]
connect_bd_net [get_bd_pins axi_gp0_interconnect/M20_ARESETN] [get_bd_pins sampling_clk_rstgen/peripheral_aresetn]
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
case 'cn0585'
switch fpga
case{'ZED'}
InterfaceConnection = 'axi_cpu_interconnect/M20_AXI';
InterfaceConnection = 'axi_gp0_interconnect/M20_AXI';
BaseAddress = '0x43C00000';
MasterAddressSpace = 'sys_ps7/Data';
otherwise
Expand Down
2 changes: 1 addition & 1 deletion hdl/vendor/AnalogDevices/+AnalogDevices/plugin_rd.m
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
hRD.BoardName = sprintf('AnalogDevices %s %s', pname, upper(board));

% Tool information
hRD.SupportedToolVersion = {'2022.2'};
hRD.SupportedToolVersion = {'2023.2'};

% Get the root directory
rootDir = fileparts(strtok(mfilename('fullpath'), '+'));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ function add_tx_io(hRD)

% add AXI4 and AXI4-Lite slave interfaces
hRD.addAXI4SlaveInterface( ...
'InterfaceConnection', 'axi_cpu_interconnect/M20_AXI', ...
'InterfaceConnection', 'axi_gp0_interconnect/M20_AXI', ...
'BaseAddress', '0x43C00000', ...
'MasterAddressSpace', 'sys_ps7/Data');

Expand Down

0 comments on commit 9dae66d

Please sign in to comment.