Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
H
HUTP
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ywj
HUTP
Commits
61b62b1f
Commit
61b62b1f
authored
Oct 12, 2025
by
ywj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add new ip and readme
parent
a47f2e6a
Changes
16
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
2801 additions
and
0 deletions
+2801
-0
FPGA/ip_repo/axi_lite_para24_1_0/bd/bd.tcl
FPGA/ip_repo/axi_lite_para24_1_0/bd/bd.tcl
+86
-0
FPGA/ip_repo/axi_lite_para24_1_0/component.xml
FPGA/ip_repo/axi_lite_para24_1_0/component.xml
+1205
-0
FPGA/ip_repo/axi_lite_para24_1_0/drivers/axi_lite_para24_v1_0/data/axi_lite_para24.mdd
...1_0/drivers/axi_lite_para24_v1_0/data/axi_lite_para24.mdd
+10
-0
FPGA/ip_repo/axi_lite_para24_1_0/drivers/axi_lite_para24_v1_0/data/axi_lite_para24.tcl
...1_0/drivers/axi_lite_para24_v1_0/data/axi_lite_para24.tcl
+5
-0
FPGA/ip_repo/axi_lite_para24_1_0/drivers/axi_lite_para24_v1_0/src/Makefile
...lite_para24_1_0/drivers/axi_lite_para24_v1_0/src/Makefile
+27
-0
FPGA/ip_repo/axi_lite_para24_1_0/drivers/axi_lite_para24_v1_0/src/axi_lite_para24.c
...24_1_0/drivers/axi_lite_para24_v1_0/src/axi_lite_para24.c
+6
-0
FPGA/ip_repo/axi_lite_para24_1_0/drivers/axi_lite_para24_v1_0/src/axi_lite_para24.h
...24_1_0/drivers/axi_lite_para24_v1_0/src/axi_lite_para24.h
+99
-0
FPGA/ip_repo/axi_lite_para24_1_0/drivers/axi_lite_para24_v1_0/src/axi_lite_para24_selftest.c
...ivers/axi_lite_para24_v1_0/src/axi_lite_para24_selftest.c
+60
-0
FPGA/ip_repo/axi_lite_para24_1_0/example_designs/bfm_design/axi_lite_para24_v1_0_tb.sv
...1_0/example_designs/bfm_design/axi_lite_para24_v1_0_tb.sv
+197
-0
FPGA/ip_repo/axi_lite_para24_1_0/example_designs/bfm_design/design.tcl
...axi_lite_para24_1_0/example_designs/bfm_design/design.tcl
+88
-0
FPGA/ip_repo/axi_lite_para24_1_0/example_designs/debug_hw_design/axi_lite_para24_v1_0_hw_test.tcl
..._designs/debug_hw_design/axi_lite_para24_v1_0_hw_test.tcl
+45
-0
FPGA/ip_repo/axi_lite_para24_1_0/example_designs/debug_hw_design/design.tcl
...ite_para24_1_0/example_designs/debug_hw_design/design.tcl
+118
-0
FPGA/ip_repo/axi_lite_para24_1_0/hdl/axi_lite_para24_v1_0.v
FPGA/ip_repo/axi_lite_para24_1_0/hdl/axi_lite_para24_v1_0.v
+125
-0
FPGA/ip_repo/axi_lite_para24_1_0/hdl/axi_lite_para24_v1_0_S00_AXI.v
...po/axi_lite_para24_1_0/hdl/axi_lite_para24_v1_0_S00_AXI.v
+663
-0
FPGA/ip_repo/axi_lite_para24_1_0/xgui/axi_lite_para24_v1_0.tcl
...ip_repo/axi_lite_para24_1_0/xgui/axi_lite_para24_v1_0.tcl
+60
-0
FPGA/readme.md
FPGA/readme.md
+7
-0
No files found.
FPGA/ip_repo/axi_lite_para24_1_0/bd/bd.tcl
0 → 100644
View file @
61b62b1f
proc init
{
cellpath otherInfo
}
{
set cell_handle
[
get_bd_cells $cellpath
]
set all_busif
[
get_bd_intf_pins $cellpath/*
]
set axi_standard_param_list
[
list ID_WIDTH AWUSER_WIDTH ARUSER_WIDTH WUSER_WIDTH RUSER_WIDTH BUSER_WIDTH
]
set full_sbusif_list
[
list
]
foreach busif $all_busif
{
if
{
[
string equal -nocase
[
get_property MODE $busif
]
"slave"
]
== 1
}
{
set busif_param_list
[
list
]
set busif_name
[
get_property NAME $busif
]
if
{
[
lsearch -exact -nocase $full_sbusif_list $busif_name
]
== -1
}
{
continue
}
foreach tparam $axi_standard_param_list
{
lappend busif_param_list
"C_
${busif_name}
_
${tparam}
"
}
bd::mark_propagate_only $cell_handle $busif_param_list
}
}
}
proc pre_propagate
{
cellpath otherInfo
}
{
set cell_handle
[
get_bd_cells $cellpath
]
set all_busif
[
get_bd_intf_pins $cellpath/*
]
set axi_standard_param_list
[
list ID_WIDTH AWUSER_WIDTH ARUSER_WIDTH WUSER_WIDTH RUSER_WIDTH BUSER_WIDTH
]
foreach busif $all_busif
{
if
{
[
string equal -nocase
[
get_property CONFIG.PROTOCOL $busif
]
"AXI4"
]
!= 1
}
{
continue
}
if
{
[
string equal -nocase
[
get_property MODE $busif
]
"master"
]
!= 1
}
{
continue
}
set busif_name
[
get_property NAME $busif
]
foreach tparam $axi_standard_param_list
{
set busif_param_name
"C_
${busif_name}
_
${tparam}
"
set val_on_cell_intf_pin
[
get_property CONFIG.$
{
tparam
}
$busif
]
set val_on_cell
[
get_property CONFIG.$
{
busif_param_name
}
$cell_handle
]
if
{
[
string equal -nocase $val_on_cell_intf_pin $val_on_cell
]
!= 1
}
{
if
{
$val_on_cell !=
""
}
{
set_property CONFIG.$
{
tparam
}
$val
_on_cell $busif
}
}
}
}
}
proc propagate
{
cellpath otherInfo
}
{
set cell_handle
[
get_bd_cells $cellpath
]
set all_busif
[
get_bd_intf_pins $cellpath/*
]
set axi_standard_param_list
[
list ID_WIDTH AWUSER_WIDTH ARUSER_WIDTH WUSER_WIDTH RUSER_WIDTH BUSER_WIDTH
]
foreach busif $all_busif
{
if
{
[
string equal -nocase
[
get_property CONFIG.PROTOCOL $busif
]
"AXI4"
]
!= 1
}
{
continue
}
if
{
[
string equal -nocase
[
get_property MODE $busif
]
"slave"
]
!= 1
}
{
continue
}
set busif_name
[
get_property NAME $busif
]
foreach tparam $axi_standard_param_list
{
set busif_param_name
"C_
${busif_name}
_
${tparam}
"
set val_on_cell_intf_pin
[
get_property CONFIG.$
{
tparam
}
$busif
]
set val_on_cell
[
get_property CONFIG.$
{
busif_param_name
}
$cell_handle
]
if
{
[
string equal -nocase $val_on_cell_intf_pin $val_on_cell
]
!= 1
}
{
#override property of bd_interface_net to bd_cell -- only for slaves. May check for supported values..
if
{
$val_on_cell_intf_pin !=
""
}
{
set_property CONFIG.$
{
busif_param_name
}
$val
_on_cell_intf_pin $cell_handle
}
}
}
}
}
FPGA/ip_repo/axi_lite_para24_1_0/component.xml
0 → 100644
View file @
61b62b1f
This diff is collapsed.
Click to expand it.
FPGA/ip_repo/axi_lite_para24_1_0/drivers/axi_lite_para24_v1_0/data/axi_lite_para24.mdd
0 → 100644
View file @
61b62b1f
OPTION psf_version = 2.1;
BEGIN DRIVER axi_lite_para24
OPTION supported_peripherals = (axi_lite_para24);
OPTION copyfiles = all;
OPTION VERSION = 1.0;
OPTION NAME = axi_lite_para24;
END DRIVER
FPGA/ip_repo/axi_lite_para24_1_0/drivers/axi_lite_para24_v1_0/data/axi_lite_para24.tcl
0 → 100644
View file @
61b62b1f
proc generate
{
drv_handle
}
{
xdefine_include_file $drv_handle
"xparameters.h"
"axi_lite_para24"
"NUM_INSTANCES"
"DEVICE_ID"
"C_S00_AXI_BASEADDR"
"C_S00_AXI_HIGHADDR"
}
FPGA/ip_repo/axi_lite_para24_1_0/drivers/axi_lite_para24_v1_0/src/Makefile
0 → 100644
View file @
61b62b1f
COMPILER
=
ARCHIVER
=
CP
=
cp
COMPILER_FLAGS
=
EXTRA_COMPILER_FLAGS
=
LIB
=
libxil.a
RELEASEDIR
=
../../../lib
INCLUDEDIR
=
../../../include
INCLUDES
=
-I
./.
-I
${INCLUDEDIR}
INCLUDEFILES
=
*
.h
LIBSOURCES
=
$(
wildcard
*
.c
)
OBJECTS
=
$(
addsuffix
.o,
$(
basename
$(
wildcard
*
.c
)))
ASSEMBLY_OBJECTS
=
$(
addsuffix
.o,
$(
basename
$(
wildcard
*
.S
)))
libs
:
echo
"Compiling axi_lite_para24..."
$(COMPILER)
$(COMPILER_FLAGS)
$(EXTRA_COMPILER_FLAGS)
$(INCLUDES)
$(LIBSOURCES)
$(ARCHIVER)
-r
${RELEASEDIR}
/
${LIB}
${OUTS}
make clean
include
:
${CP}
$(INCLUDEFILES)
$(INCLUDEDIR)
clean
:
rm
-rf
${OUTS}
FPGA/ip_repo/axi_lite_para24_1_0/drivers/axi_lite_para24_v1_0/src/axi_lite_para24.c
0 → 100644
View file @
61b62b1f
/***************************** Include Files *******************************/
#include "axi_lite_para24.h"
/************************** Function Definitions ***************************/
FPGA/ip_repo/axi_lite_para24_1_0/drivers/axi_lite_para24_v1_0/src/axi_lite_para24.h
0 → 100644
View file @
61b62b1f
#ifndef AXI_LITE_PARA24_H
#define AXI_LITE_PARA24_H
/****************** Include Files ********************/
#include "xil_types.h"
#include "xstatus.h"
#define AXI_LITE_PARA24_S00_AXI_SLV_REG0_OFFSET 0
#define AXI_LITE_PARA24_S00_AXI_SLV_REG1_OFFSET 4
#define AXI_LITE_PARA24_S00_AXI_SLV_REG2_OFFSET 8
#define AXI_LITE_PARA24_S00_AXI_SLV_REG3_OFFSET 12
#define AXI_LITE_PARA24_S00_AXI_SLV_REG4_OFFSET 16
#define AXI_LITE_PARA24_S00_AXI_SLV_REG5_OFFSET 20
#define AXI_LITE_PARA24_S00_AXI_SLV_REG6_OFFSET 24
#define AXI_LITE_PARA24_S00_AXI_SLV_REG7_OFFSET 28
#define AXI_LITE_PARA24_S00_AXI_SLV_REG8_OFFSET 32
#define AXI_LITE_PARA24_S00_AXI_SLV_REG9_OFFSET 36
#define AXI_LITE_PARA24_S00_AXI_SLV_REG10_OFFSET 40
#define AXI_LITE_PARA24_S00_AXI_SLV_REG11_OFFSET 44
#define AXI_LITE_PARA24_S00_AXI_SLV_REG12_OFFSET 48
#define AXI_LITE_PARA24_S00_AXI_SLV_REG13_OFFSET 52
#define AXI_LITE_PARA24_S00_AXI_SLV_REG14_OFFSET 56
#define AXI_LITE_PARA24_S00_AXI_SLV_REG15_OFFSET 60
#define AXI_LITE_PARA24_S00_AXI_SLV_REG16_OFFSET 64
#define AXI_LITE_PARA24_S00_AXI_SLV_REG17_OFFSET 68
#define AXI_LITE_PARA24_S00_AXI_SLV_REG18_OFFSET 72
#define AXI_LITE_PARA24_S00_AXI_SLV_REG19_OFFSET 76
#define AXI_LITE_PARA24_S00_AXI_SLV_REG20_OFFSET 80
#define AXI_LITE_PARA24_S00_AXI_SLV_REG21_OFFSET 84
#define AXI_LITE_PARA24_S00_AXI_SLV_REG22_OFFSET 88
#define AXI_LITE_PARA24_S00_AXI_SLV_REG23_OFFSET 92
/**************************** Type Definitions *****************************/
/**
*
* Write a value to a AXI_LITE_PARA24 register. A 32 bit write is performed.
* If the component is implemented in a smaller width, only the least
* significant data is written.
*
* @param BaseAddress is the base address of the AXI_LITE_PARA24device.
* @param RegOffset is the register offset from the base to write to.
* @param Data is the data written to the register.
*
* @return None.
*
* @note
* C-style signature:
* void AXI_LITE_PARA24_mWriteReg(u32 BaseAddress, unsigned RegOffset, u32 Data)
*
*/
#define AXI_LITE_PARA24_mWriteReg(BaseAddress, RegOffset, Data) \
Xil_Out32((BaseAddress) + (RegOffset), (u32)(Data))
/**
*
* Read a value from a AXI_LITE_PARA24 register. A 32 bit read is performed.
* If the component is implemented in a smaller width, only the least
* significant data is read from the register. The most significant data
* will be read as 0.
*
* @param BaseAddress is the base address of the AXI_LITE_PARA24 device.
* @param RegOffset is the register offset from the base to write to.
*
* @return Data is the data from the register.
*
* @note
* C-style signature:
* u32 AXI_LITE_PARA24_mReadReg(u32 BaseAddress, unsigned RegOffset)
*
*/
#define AXI_LITE_PARA24_mReadReg(BaseAddress, RegOffset) \
Xil_In32((BaseAddress) + (RegOffset))
/************************** Function Prototypes ****************************/
/**
*
* Run a self-test on the driver/device. Note this may be a destructive test if
* resets of the device are performed.
*
* If the hardware system is not built correctly, this function may never
* return to the caller.
*
* @param baseaddr_p is the base address of the AXI_LITE_PARA24 instance to be worked on.
*
* @return
*
* - XST_SUCCESS if all self-test code passed
* - XST_FAILURE if any self-test code failed
*
* @note Caching must be turned off for this function to work.
* @note Self test may fail if data memory and device are not on the same bus.
*
*/
XStatus
AXI_LITE_PARA24_Reg_SelfTest
(
void
*
baseaddr_p
);
#endif // AXI_LITE_PARA24_H
FPGA/ip_repo/axi_lite_para24_1_0/drivers/axi_lite_para24_v1_0/src/axi_lite_para24_selftest.c
0 → 100644
View file @
61b62b1f
/***************************** Include Files *******************************/
#include "axi_lite_para24.h"
#include "xparameters.h"
#include "stdio.h"
#include "xil_io.h"
/************************** Constant Definitions ***************************/
#define READ_WRITE_MUL_FACTOR 0x10
/************************** Function Definitions ***************************/
/**
*
* Run a self-test on the driver/device. Note this may be a destructive test if
* resets of the device are performed.
*
* If the hardware system is not built correctly, this function may never
* return to the caller.
*
* @param baseaddr_p is the base address of the AXI_LITE_PARA24instance to be worked on.
*
* @return
*
* - XST_SUCCESS if all self-test code passed
* - XST_FAILURE if any self-test code failed
*
* @note Caching must be turned off for this function to work.
* @note Self test may fail if data memory and device are not on the same bus.
*
*/
XStatus
AXI_LITE_PARA24_Reg_SelfTest
(
void
*
baseaddr_p
)
{
u32
baseaddr
;
int
write_loop_index
;
int
read_loop_index
;
int
Index
;
baseaddr
=
(
u32
)
baseaddr_p
;
xil_printf
(
"******************************
\n\r
"
);
xil_printf
(
"* User Peripheral Self Test
\n\r
"
);
xil_printf
(
"******************************
\n\n\r
"
);
/*
* Write to user logic slave module register(s) and read back
*/
xil_printf
(
"User logic slave module test...
\n\r
"
);
for
(
write_loop_index
=
0
;
write_loop_index
<
4
;
write_loop_index
++
)
AXI_LITE_PARA24_mWriteReg
(
baseaddr
,
write_loop_index
*
4
,
(
write_loop_index
+
1
)
*
READ_WRITE_MUL_FACTOR
);
for
(
read_loop_index
=
0
;
read_loop_index
<
4
;
read_loop_index
++
)
if
(
AXI_LITE_PARA24_mReadReg
(
baseaddr
,
read_loop_index
*
4
)
!=
(
read_loop_index
+
1
)
*
READ_WRITE_MUL_FACTOR
){
xil_printf
(
"Error reading register value at address %x
\n
"
,
(
int
)
baseaddr
+
read_loop_index
*
4
);
return
XST_FAILURE
;
}
xil_printf
(
" - slave register write/read passed
\n\n\r
"
);
return
XST_SUCCESS
;
}
FPGA/ip_repo/axi_lite_para24_1_0/example_designs/bfm_design/axi_lite_para24_v1_0_tb.sv
0 → 100644
View file @
61b62b1f
`timescale
1
ns
/
1
ps
`include
"axi_lite_para24_v1_0_tb_include.svh"
import
axi_vip_pkg
::*
;
import
axi_lite_para24_v1_0_bfm_1_master_0_0_pkg
::*
;
module
axi_lite_para24_v1_0_tb
();
xil_axi_uint
error_cnt
=
0
;
xil_axi_uint
comparison_cnt
=
0
;
axi_transaction
wr_transaction
;
axi_transaction
rd_transaction
;
axi_monitor_transaction
mst_monitor_transaction
;
axi_monitor_transaction
master_moniter_transaction_queue
[$];
xil_axi_uint
master_moniter_transaction_queue_size
=
0
;
axi_monitor_transaction
mst_scb_transaction
;
axi_monitor_transaction
passthrough_monitor_transaction
;
axi_monitor_transaction
passthrough_master_moniter_transaction_queue
[$];
xil_axi_uint
passthrough_master_moniter_transaction_queue_size
=
0
;
axi_monitor_transaction
passthrough_mst_scb_transaction
;
axi_monitor_transaction
passthrough_slave_moniter_transaction_queue
[$];
xil_axi_uint
passthrough_slave_moniter_transaction_queue_size
=
0
;
axi_monitor_transaction
passthrough_slv_scb_transaction
;
axi_monitor_transaction
slv_monitor_transaction
;
axi_monitor_transaction
slave_moniter_transaction_queue
[$];
xil_axi_uint
slave_moniter_transaction_queue_size
=
0
;
axi_monitor_transaction
slv_scb_transaction
;
xil_axi_uint
mst_agent_verbosity
=
0
;
xil_axi_uint
slv_agent_verbosity
=
0
;
xil_axi_uint
passthrough_agent_verbosity
=
0
;
bit
clock
;
bit
reset
;
integer
result_slave
;
bit
[
31
:
0
]
S00_AXI_test_data
[
3
:
0
];
localparam
LC_AXI_BURST_LENGTH
=
8
;
localparam
LC_AXI_DATA_WIDTH
=
32
;
task
automatic
COMPARE_DATA
;
input
[(
LC_AXI_BURST_LENGTH
*
LC_AXI_DATA_WIDTH
)
-
1
:
0
]
expected
;
input
[(
LC_AXI_BURST_LENGTH
*
LC_AXI_DATA_WIDTH
)
-
1
:
0
]
actual
;
begin
if
(
expected
===
'
hx
||
actual
===
'
hx
)
begin
$
display
(
"TESTBENCH ERROR! COMPARE_DATA cannot be performed with an expected or actual vector that is all 'x'!"
);
result_slave
=
0
;
$
stop
;
end
if
(
actual
!=
expected
)
begin
$
display
(
"TESTBENCH ERROR! Data expected is not equal to actual."
,
" expected = 0x%h"
,
expected
,
" actual = 0x%h"
,
actual
);
result_slave
=
0
;
$
stop
;
end
else
begin
$
display
(
"TESTBENCH Passed! Data expected is equal to actual."
,
" expected = 0x%h"
,
expected
,
" actual = 0x%h"
,
actual
);
end
end
endtask
integer
i
;
integer
j
;
xil_axi_uint
trans_cnt_before_switch
=
48
;
xil_axi_uint
passthrough_cmd_switch_cnt
=
0
;
event
passthrough_mastermode_start_event
;
event
passthrough_mastermode_end_event
;
event
passthrough_slavemode_end_event
;
xil_axi_uint
mtestID
;
xil_axi_ulong
mtestADDR
;
xil_axi_len_t
mtestBurstLength
;
xil_axi_size_t
mtestDataSize
;
xil_axi_burst_t
mtestBurstType
;
xil_axi_lock_t
mtestLOCK
;
xil_axi_cache_t
mtestCacheType
=
0
;
xil_axi_prot_t
mtestProtectionType
=
3'b000
;
xil_axi_region_t
mtestRegion
=
4'b000
;
xil_axi_qos_t
mtestQOS
=
4'b000
;
xil_axi_data_beat
dbeat
;
xil_axi_data_beat
[
255
:
0
]
mtestWUSER
;
xil_axi_data_beat
mtestAWUSER
=
'h0
;
xil_axi_data_beat
mtestARUSER
=
0
;
xil_axi_data_beat
[
255
:
0
]
mtestRUSER
;
xil_axi_uint
mtestBUSER
=
0
;
xil_axi_resp_t
mtestBresp
;
xil_axi_resp_t
[
255
:
0
]
mtestRresp
;
bit
[
63
:
0
]
mtestWDataL
;
bit
[
63
:
0
]
mtestRDataL
;
axi_transaction
pss_wr_transaction
;
axi_transaction
pss_rd_transaction
;
axi_transaction
reactive_transaction
;
axi_transaction
rd_payload_transaction
;
axi_transaction
wr_rand
;
axi_transaction
rd_rand
;
axi_transaction
wr_reactive
;
axi_transaction
rd_reactive
;
axi_transaction
wr_reactive2
;
axi_transaction
rd_reactive2
;
axi_ready_gen
bready_gen
;
axi_ready_gen
rready_gen
;
axi_ready_gen
awready_gen
;
axi_ready_gen
wready_gen
;
axi_ready_gen
arready_gen
;
axi_ready_gen
bready_gen2
;
axi_ready_gen
rready_gen2
;
axi_ready_gen
awready_gen2
;
axi_ready_gen
wready_gen2
;
axi_ready_gen
arready_gen2
;
xil_axi_payload_byte
data_mem
[
xil_axi_ulong
];
axi_lite_para24_v1_0_bfm_1_master_0_0_mst_t
mst_agent_0
;
`BD_WRAPPER
DUT
(
.
ARESETN
(
reset
),
.
ACLK
(
clock
)
);
initial
begin
mst_agent_0
=
new
(
"master vip agent"
,
DUT
.
`BD_INST_NAME
.
master_0
.
inst
.
IF
);
//ms
mst_agent_0
.
vif_proxy
.
set_dummy_drive_type
(
XIL_AXI_VIF_DRIVE_NONE
);
mst_agent_0
.
set_agent_tag
(
"Master VIP"
);
mst_agent_0
.
set_verbosity
(
mst_agent_verbosity
);
mst_agent_0
.
start_master
();
$
timeformat
(
-
12
,
1
,
" ps"
,
1
);
end
initial
begin
reset
<=
1'b0
;
#
200
ns
;
reset
<=
1'b1
;
repeat
(
5
)
@
(
negedge
clock
);
end
always
#
5
clock
<=
~
clock
;
initial
begin
S_AXI_TEST
(
);
#
1
ns
;
$
finish
;
end
task
automatic
S_AXI_TEST
;
begin
#
1
;
$
display
(
"Sequential write transfers example similar to AXI BFM WRITE_BURST method starts"
);
mtestID
=
0
;
mtestADDR
=
64'h00000000
;
mtestBurstLength
=
0
;
mtestDataSize
=
xil_axi_size_t
'
(
xil_clog2
(
32
/
8
));
mtestBurstType
=
XIL_AXI_BURST_TYPE_INCR
;
mtestLOCK
=
XIL_AXI_ALOCK_NOLOCK
;
mtestCacheType
=
0
;
mtestProtectionType
=
0
;
mtestRegion
=
0
;
mtestQOS
=
0
;
result_slave
=
1
;
mtestWDataL
[
31
:
0
]
=
32'h00000001
;
for
(
int
i
=
0
;
i
<
4
;
i
++
)
begin
S00_AXI_test_data
[
i
]
<=
mtestWDataL
[
31
:
0
];
mst_agent_0
.
AXI4LITE_WRITE_BURST
(
mtestADDR
,
mtestProtectionType
,
mtestWDataL
,
mtestBresp
);
mtestWDataL
[
31
:
0
]
=
mtestWDataL
[
31
:
0
]
+
1
;
mtestADDR
=
mtestADDR
+
64'h4
;
end
$
display
(
"Sequential write transfers example similar to AXI BFM WRITE_BURST method completes"
);
$
display
(
"Sequential read transfers example similar to AXI BFM READ_BURST method starts"
);
mtestID
=
0
;
mtestADDR
=
64'h00000000
;
mtestBurstLength
=
0
;
mtestDataSize
=
xil_axi_size_t
'
(
xil_clog2
(
32
/
8
));
mtestBurstType
=
XIL_AXI_BURST_TYPE_INCR
;
mtestLOCK
=
XIL_AXI_ALOCK_NOLOCK
;
mtestCacheType
=
0
;
mtestProtectionType
=
0
;
mtestRegion
=
0
;
mtestQOS
=
0
;
for
(
int
i
=
0
;
i
<
4
;
i
++
)
begin
mst_agent_0
.
AXI4LITE_READ_BURST
(
mtestADDR
,
mtestProtectionType
,
mtestRDataL
,
mtestRresp
);
mtestADDR
=
mtestADDR
+
64'h4
;
COMPARE_DATA
(
S00_AXI_test_data
[
i
],
mtestRDataL
);
end
$
display
(
"Sequential read transfers example similar to AXI BFM READ_BURST method completes"
);
$
display
(
"Sequential read transfers example similar to AXI VIP READ_BURST method completes"
);
$
display
(
"---------------------------------------------------------"
);
$
display
(
"EXAMPLE TEST S00_AXI: PTGEN_TEST_FINISHED!"
);
if
(
result_slave
)
begin
$
display
(
"PTGEN_TEST: PASSED!"
);
end
else
begin
$
display
(
"PTGEN_TEST: FAILED!"
);
end
$
display
(
"---------------------------------------------------------"
);
end
endtask
endmodule
FPGA/ip_repo/axi_lite_para24_1_0/example_designs/bfm_design/design.tcl
0 → 100644
View file @
61b62b1f
proc create_ipi_design
{
offsetfile design_name
}
{
create_bd_design $design_name
open_bd_design $design_name
# Create Clock and Reset Ports
set ACLK
[
create_bd_port -dir I -type clk ACLK
]
set_property -dict
[
list CONFIG.FREQ_HZ
{
100000000
}
CONFIG.PHASE
{
0.000
}
CONFIG.CLK_DOMAIN
"
${design_name}
_ACLK"
]
$ACLK
set ARESETN
[
create_bd_port -dir I -type rst ARESETN
]
set_property -dict
[
list CONFIG.POLARITY
{
ACTIVE_LOW
}
]
$ARESETN
set_property CONFIG.ASSOCIATED_RESET ARESETN $ACLK
# Create instance: axi_lite_para24_0, and set properties
set axi_lite_para24_0
[
create_bd_cell -type ip -vlnv xilinx.com:user:axi_lite_para24:1.0 axi_lite_para24_0
]
# Create instance: master_0, and set properties
set master_0
[
create_bd_cell -type ip -vlnv xilinx.com:ip:axi_vip master_0
]
set_property -dict
[
list CONFIG.PROTOCOL
{
AXI4LITE
}
CONFIG.INTERFACE_MODE
{
MASTER
}
]
$master
_0
# Create interface connections
connect_bd_intf_net
[
get_bd_intf_pins master_0/M_AXI
]
[
get_bd_intf_pins axi_lite_para24_0/S00_AXI
]
# Create port connections
connect_bd_net -net aclk_net
[
get_bd_ports ACLK
]
[
get_bd_pins master_0/ACLK
]
[
get_bd_pins axi_lite_para24_0/S00_AXI_ACLK
]
connect_bd_net -net aresetn_net
[
get_bd_ports ARESETN
]
[
get_bd_pins master_0/ARESETN
]
[
get_bd_pins axi_lite_para24_0/S00_AXI_ARESETN
]
set_property target_simulator XSim
[
current_project
]
set_property -name
{
xsim.simulate.runtime
}
-value
{
100ms
}
-objects
[
get_filesets sim_1
]
# Auto assign address
assign_bd_address
# Copy all address to interface_address.vh file
set bd_path
[
file dirname
[
get_property NAME
[
get_files $
{
design_name
}
.bd
]]]
upvar 1 $offsetfile offset_file
set offset_file
"
${bd_path}
/axi_lite_para24_v1_0_tb_include.svh"
set fp
[
open $offset_file
"w"
]
puts $fp
"`ifndef axi_lite_para24_v1_0_tb_include_vh_"
puts $fp
"`define axi_lite_para24_v1_0_tb_include_vh_
\n
"
puts $fp
"//Configuration current bd names"
puts $fp
"`define BD_NAME
${design_name}
"
puts $fp
"`define BD_INST_NAME
${design_name}
_i"
puts $fp
"`define BD_WRAPPER
${design_name}
_wrapper
\n
"
puts $fp
"//Configuration address parameters"
puts $fp
"`endif"
close $fp
}
set ip_path
[
file dirname
[
file normalize
[
get_property XML_FILE_NAME
[
ipx::get_cores xilinx.com:user:axi_lite_para24:1.0
]]]]
set test_bench_file $
{
ip_path
}
/example_designs/bfm_design/axi_lite_para24_v1_0_tb.sv
set interface_address_vh_file
""
# Set IP Repository and Update IP Catalogue
set repo_paths
[
get_property ip_repo_paths
[
current_fileset
]]
if
{
[
lsearch -exact -nocase $repo_paths $ip_path
]
== -1
}
{
set_property ip_repo_paths
"
$ip
_path
[
get_property ip_repo_paths
[
current_fileset
]]
"
[
current_fileset
]
update_ip_catalog
}
set design_name
""
set all_bd
{}
set all_bd_files
[
get_files *.bd -quiet
]
foreach file $all_bd_files
{
set file_name
[
string range $file
[
expr
{[
string last
"/"
$file
]
+ 1
}]
end
]
set bd_name
[
string range $file_name 0
[
expr
{[
string last
"."
$file_name
]
-1
}]]
lappend all_bd $bd_name
}
for
{
set i 1
}
{
1
}
{
incr i
}
{
set design_name
"axi_lite_para24_v1_0_bfm_
${i}
"
if
{
[
lsearch -exact -nocase $all_bd $design_name
]
== -1
}
{
break
}
}
create_ipi_design interface_address_vh_file $
{
design_name
}
validate_bd_design
set wrapper_file
[
make_wrapper -files
[
get_files $
{
design_name
}
.bd
]
-top -force
]
import_files -force -norecurse $wrapper_file
set_property SOURCE_SET sources_1
[
get_filesets sim_1
]
import_files -fileset sim_1 -norecurse -force $test_bench_file
remove_files -quiet -fileset sim_1 axi_lite_para24_v1_0_tb_include.vh
import_files -fileset sim_1 -norecurse -force $interface_address_vh_file
set_property top axi_lite_para24_v1_0_tb
[
get_filesets sim_1
]
set_property top_lib
{}
[
get_filesets sim_1
]
set_property top_file
{}
[
get_filesets sim_1
]
launch_simulation -simset sim_1 -mode behavioral
FPGA/ip_repo/axi_lite_para24_1_0/example_designs/debug_hw_design/axi_lite_para24_v1_0_hw_test.tcl
0 → 100644
View file @
61b62b1f
# Runtime Tcl commands to interact with - axi_lite_para24_v1_0
# Sourcing design address info tcl
set bd_path
[
get_property DIRECTORY
[
current_project
]]
/
[
current_project
]
.srcs/
[
current_fileset
]
/bd
source $
{
bd_path
}
/axi_lite_para24_v1_0_include.tcl
# jtag axi master interface hardware name, change as per your design.
set jtag_axi_master hw_axi_1
set ec 0
# hw test script
# Delete all previous axis transactions
if
{
[
llength
[
get_hw_axi_txns -quiet
]]
}
{
delete_hw_axi_txn
[
get_hw_axi_txns -quiet
]
}
# Test all lite slaves.
set wdata_1 abcd1234
# Test: S00_AXI
# Create a write transaction at s00_axi_addr address
create_hw_axi_txn w_s00_axi_addr
[
get_hw_axis $jtag_axi_master
]
-type write -address $s00_axi_addr -data $wdata_1
# Create a read transaction at s00_axi_addr address
create_hw_axi_txn r_s00_axi_addr
[
get_hw_axis $jtag_axi_master
]
-type read -address $s00_axi_addr
# Initiate transactions
run_hw_axi r_s00_axi_addr
run_hw_axi w_s00_axi_addr
run_hw_axi r_s00_axi_addr
set rdata_tmp
[
get_property DATA
[
get_hw_axi_txn r_s00_axi_addr
]]
# Compare read data
if
{
$rdata_tmp == $wdata_1
}
{
puts
"Data comparison test pass for - S00_AXI"
}
else
{
puts
"Data comparison test fail for - S00_AXI, expected-
$wdata
_1 actual-
$rdata
_tmp"
inc ec
}
# Check error flag
if
{
$ec == 0
}
{
puts
"PTGEN_TEST: PASSED!"
}
else
{
puts
"PTGEN_TEST: FAILED!"
}
FPGA/ip_repo/axi_lite_para24_1_0/example_designs/debug_hw_design/design.tcl
0 → 100644
View file @
61b62b1f
proc create_ipi_design
{
offsetfile design_name
}
{
create_bd_design $design_name
open_bd_design $design_name
# Create and configure Clock/Reset
create_bd_cell -type ip -vlnv xilinx.com:ip:clk_wiz sys_clk_0
create_bd_cell -type ip -vlnv xilinx.com:ip:proc_sys_reset sys_reset_0
#Constraints will be provided manually while pin planning.
create_bd_port -dir I -type rst reset_rtl
set_property CONFIG.POLARITY
[
get_property CONFIG.POLARITY
[
get_bd_pins sys_clk_0/reset
]]
[
get_bd_ports reset_rtl
]
connect_bd_net
[
get_bd_pins sys_reset_0/ext_reset_in
]
[
get_bd_ports reset_rtl
]
connect_bd_net
[
get_bd_ports reset_rtl
]
[
get_bd_pins sys_clk_0/reset
]
set external_reset_port reset_rtl
create_bd_port -dir I -type clk clock_rtl
connect_bd_net
[
get_bd_pins sys_clk_0/clk_in1
]
[
get_bd_ports clock_rtl
]
set external_clock_port clock_rtl
#Avoid IPI DRC, make clock port synchronous to reset
if
{
$external_clock_port ne
""
&& $external_reset_port ne
""
}
{
set_property CONFIG.ASSOCIATED_RESET $external_reset_port
[
get_bd_ports $external_clock_port
]
}
# Connect other sys_reset pins
connect_bd_net
[
get_bd_pins sys_reset_0/slowest_sync_clk
]
[
get_bd_pins sys_clk_0/clk_out1
]
connect_bd_net
[
get_bd_pins sys_clk_0/locked
]
[
get_bd_pins sys_reset_0/dcm_locked
]
# Create instance: axi_lite_para24_0, and set properties
set axi_lite_para24_0
[
create_bd_cell -type ip -vlnv xilinx.com:user:axi_lite_para24:1.0 axi_lite_para24_0
]
# Create instance: jtag_axi_0, and set properties
set jtag_axi_0
[
create_bd_cell -type ip -vlnv xilinx.com:ip:jtag_axi jtag_axi_0
]
set_property -dict
[
list CONFIG.PROTOCOL
{
0
}]
[
get_bd_cells jtag_axi_0
]
connect_bd_net
[
get_bd_pins jtag_axi_0/aclk
]
[
get_bd_pins sys_clk_0/clk_out1
]
connect_bd_net
[
get_bd_pins jtag_axi_0/aresetn
]
[
get_bd_pins sys_reset_0/peripheral_aresetn
]
# Create instance: axi_peri_interconnect, and set properties
set axi_peri_interconnect
[
create_bd_cell -type ip -vlnv xilinx.com:ip:axi_interconnect axi_peri_interconnect
]
connect_bd_net
[
get_bd_pins axi_peri_interconnect/ACLK
]
[
get_bd_pins sys_clk_0/clk_out1
]
connect_bd_net
[
get_bd_pins axi_peri_interconnect/ARESETN
]
[
get_bd_pins sys_reset_0/interconnect_aresetn
]
set_property -dict
[
list CONFIG.NUM_SI
{
1
}
]
$axi
_peri_interconnect
connect_bd_net
[
get_bd_pins axi_peri_interconnect/S00_ACLK
]
[
get_bd_pins sys_clk_0/clk_out1
]
connect_bd_net
[
get_bd_pins axi_peri_interconnect/S00_ARESETN
]
[
get_bd_pins sys_reset_0/peripheral_aresetn
]
connect_bd_intf_net
[
get_bd_intf_pins jtag_axi_0/M_AXI
]
[
get_bd_intf_pins axi_peri_interconnect/S00_AXI
]
set_property -dict
[
list CONFIG.NUM_MI
{
1
}
]
$axi
_peri_interconnect
connect_bd_net
[
get_bd_pins axi_peri_interconnect/M00_ACLK
]
[
get_bd_pins sys_clk_0/clk_out1
]
connect_bd_net
[
get_bd_pins axi_peri_interconnect/M00_ARESETN
]
[
get_bd_pins sys_reset_0/peripheral_aresetn
]
# Connect all clock & reset of axi_lite_para24_0 slave interfaces..
connect_bd_intf_net
[
get_bd_intf_pins axi_peri_interconnect/M00_AXI
]
[
get_bd_intf_pins axi_lite_para24_0/S00_AXI
]
connect_bd_net
[
get_bd_pins axi_lite_para24_0/s00_axi_aclk
]
[
get_bd_pins sys_clk_0/clk_out1
]
connect_bd_net
[
get_bd_pins axi_lite_para24_0/s00_axi_aresetn
]
[
get_bd_pins sys_reset_0/peripheral_aresetn
]
# Auto assign address
assign_bd_address
# Copy all address to axi_lite_para24_v1_0_include.tcl file
set bd_path
[
get_property DIRECTORY
[
current_project
]]
/
[
current_project
]
.srcs/
[
current_fileset
]
/bd
upvar 1 $offsetfile offset_file
set offset_file
"
${bd_path}
/axi_lite_para24_v1_0_include.tcl"
set fp
[
open $offset_file
"w"
]
puts $fp
"# Configuration address parameters"
set offset
[
get_property OFFSET
[
get_bd_addr_segs /jtag_axi_0/Data/SEG_axi_lite_para24_0_S00_AXI_*
]]
puts $fp
"set s00_axi_addr
${offset}
"
close $fp
}
# Set IP Repository and Update IP Catalogue
set ip_path
[
file dirname
[
file normalize
[
get_property XML_FILE_NAME
[
ipx::get_cores xilinx.com:user:axi_lite_para24:1.0
]]]]
set hw_test_file $
{
ip_path
}
/example_designs/debug_hw_design/axi_lite_para24_v1_0_hw_test.tcl
set repo_paths
[
get_property ip_repo_paths
[
current_fileset
]]
if
{
[
lsearch -exact -nocase $repo_paths $ip_path
]
== -1
}
{
set_property ip_repo_paths
"
$ip
_path
[
get_property ip_repo_paths
[
current_fileset
]]
"
[
current_fileset
]
update_ip_catalog
}
set design_name
""
set all_bd
{}
set all_bd_files
[
get_files *.bd -quiet
]
foreach file $all_bd_files
{
set file_name
[
string range $file
[
expr
{[
string last
"/"
$file
]
+ 1
}]
end
]
set bd_name
[
string range $file_name 0
[
expr
{[
string last
"."
$file_name
]
-1
}]]
lappend all_bd $bd_name
}
for
{
set i 1
}
{
1
}
{
incr i
}
{
set design_name
"axi_lite_para24_v1_0_hw_
${i}
"
if
{
[
lsearch -exact -nocase $all_bd $design_name
]
== -1
}
{
break
}
}
set intf_address_include_file
""
create_ipi_design intf_address_include_file $
{
design_name
}
save_bd_design
validate_bd_design
set wrapper_file
[
make_wrapper -files
[
get_files $
{
design_name
}
.bd
]
-top -force
]
import_files -force -norecurse $wrapper_file
puts
"-------------------------------------------------------------------------------------------------"
puts
"INFO NEXT STEPS : Until this stage, debug hardware design has been created, "
puts
" please perform following steps to test design in targeted board."
puts
"1. Generate bitstream"
puts
"2. Setup your targeted board, open hardware manager and open new(or existing) hardware target"
puts
"3. Download generated bitstream"
puts
"4. Run generated hardware test using below command, this invokes basic read/write operation"
puts
" to every interface present in the peripheral : xilinx.com:user:myip:1.0"
puts
" : source -notrace
${hw_test_file}
"
puts
"-------------------------------------------------------------------------------------------------"
FPGA/ip_repo/axi_lite_para24_1_0/hdl/axi_lite_para24_v1_0.v
0 → 100644
View file @
61b62b1f
`timescale
1
ns
/
1
ps
module
axi_lite_para24_v1_0
#
(
// Users to add parameters here
// User parameters ends
// Do not modify the parameters beyond this line
// Parameters of Axi Slave Bus Interface S00_AXI
parameter
integer
C_S00_AXI_DATA_WIDTH
=
32
,
parameter
integer
C_S00_AXI_ADDR_WIDTH
=
7
)
(
// Users to add ports here
input
dma_start
,
input
[
3
:
0
]
card_state1
,
//20250422 add
input
[
3
:
0
]
card_state2
,
input
[
3
:
0
]
card_state3
,
input
[
3
:
0
]
card_state4
,
input
[
3
:
0
]
card_state5
,
input
[
3
:
0
]
card_state6
,
output
[
31
:
0
]
sample_rate
,
output
[
31
:
0
]
total_sample_num
,
output
[
31
:
0
]
sample_num
,
output
[
31
:
0
]
channel_mask1
,
output
[
31
:
0
]
channel_mask2
,
output
[
31
:
0
]
channel_mask3
,
output
[
31
:
0
]
channel_mask4
,
output
[
31
:
0
]
channel_mask5
,
output
[
31
:
0
]
channel_mask6
,
output
[
7
:
0
]
sample_coef
,
output
[
7
:
0
]
job_id
,
output
[
7
:
0
]
stream_mode
,
output
led_lite
,
output
[
31
:
0
]
dest_ip
,
// 20250311 add
output
static_arp
,
output
[
47
:
0
]
static_dest_mac
,
// 20250912 add
// User ports ends
// Do not modify the ports beyond this line
// Ports of Axi Slave Bus Interface S00_AXI
input
wire
s00_axi_aclk
,
input
wire
s00_axi_aresetn
,
input
wire
[
C_S00_AXI_ADDR_WIDTH
-
1
:
0
]
s00_axi_awaddr
,
input
wire
[
2
:
0
]
s00_axi_awprot
,
input
wire
s00_axi_awvalid
,
output
wire
s00_axi_awready
,
input
wire
[
C_S00_AXI_DATA_WIDTH
-
1
:
0
]
s00_axi_wdata
,
input
wire
[(
C_S00_AXI_DATA_WIDTH
/
8
)
-
1
:
0
]
s00_axi_wstrb
,
input
wire
s00_axi_wvalid
,
output
wire
s00_axi_wready
,
output
wire
[
1
:
0
]
s00_axi_bresp
,
output
wire
s00_axi_bvalid
,
input
wire
s00_axi_bready
,
input
wire
[
C_S00_AXI_ADDR_WIDTH
-
1
:
0
]
s00_axi_araddr
,
input
wire
[
2
:
0
]
s00_axi_arprot
,
input
wire
s00_axi_arvalid
,
output
wire
s00_axi_arready
,
output
wire
[
C_S00_AXI_DATA_WIDTH
-
1
:
0
]
s00_axi_rdata
,
output
wire
[
1
:
0
]
s00_axi_rresp
,
output
wire
s00_axi_rvalid
,
input
wire
s00_axi_rready
);
// Instantiation of Axi Bus Interface S00_AXI
axi_lite_para24_v1_0_S00_AXI
#
(
.
C_S_AXI_DATA_WIDTH
(
C_S00_AXI_DATA_WIDTH
),
.
C_S_AXI_ADDR_WIDTH
(
C_S00_AXI_ADDR_WIDTH
)
)
axi_lite_para24_v1_0_S00_AXI_inst
(
.
S_AXI_ACLK
(
s00_axi_aclk
),
.
S_AXI_ARESETN
(
s00_axi_aresetn
),
.
S_AXI_AWADDR
(
s00_axi_awaddr
),
.
S_AXI_AWPROT
(
s00_axi_awprot
),
.
S_AXI_AWVALID
(
s00_axi_awvalid
),
.
S_AXI_AWREADY
(
s00_axi_awready
),
.
S_AXI_WDATA
(
s00_axi_wdata
),
.
S_AXI_WSTRB
(
s00_axi_wstrb
),
.
S_AXI_WVALID
(
s00_axi_wvalid
),
.
S_AXI_WREADY
(
s00_axi_wready
),
.
S_AXI_BRESP
(
s00_axi_bresp
),
.
S_AXI_BVALID
(
s00_axi_bvalid
),
.
S_AXI_BREADY
(
s00_axi_bready
),
.
S_AXI_ARADDR
(
s00_axi_araddr
),
.
S_AXI_ARPROT
(
s00_axi_arprot
),
.
S_AXI_ARVALID
(
s00_axi_arvalid
),
.
S_AXI_ARREADY
(
s00_axi_arready
),
.
S_AXI_RDATA
(
s00_axi_rdata
),
.
S_AXI_RRESP
(
s00_axi_rresp
),
.
S_AXI_RVALID
(
s00_axi_rvalid
),
.
S_AXI_RREADY
(
s00_axi_rready
),
.
card_state1
(
card_state1
),
.
card_state2
(
card_state2
),
.
card_state3
(
card_state3
),
.
card_state4
(
card_state4
),
.
card_state5
(
card_state5
),
.
card_state6
(
card_state6
),
.
sample_rate
(
sample_rate
),
.
total_sample_num
(
total_sample_num
),
.
sample_num
(
sample_num
),
.
channel_mask1
(
channel_mask1
),
.
channel_mask2
(
channel_mask2
),
.
channel_mask3
(
channel_mask3
),
.
channel_mask4
(
channel_mask4
),
.
channel_mask5
(
channel_mask5
),
.
channel_mask6
(
channel_mask6
),
.
sample_coef
(
sample_coef
),
.
job_id
(
job_id
),
.
stream_mode
(
stream_mode
),
.
dma_start
(
dma_start
),
.
led_lite
(
led_lite
),
.
dest_ip
(
dest_ip
),
.
static_arp
(
static_arp
),
.
static_dest_mac
(
static_dest_mac
)
);
// Add user logic here
// User logic ends
endmodule
FPGA/ip_repo/axi_lite_para24_1_0/hdl/axi_lite_para24_v1_0_S00_AXI.v
0 → 100644
View file @
61b62b1f
This diff is collapsed.
Click to expand it.
FPGA/ip_repo/axi_lite_para24_1_0/xgui/axi_lite_para24_v1_0.tcl
0 → 100644
View file @
61b62b1f
# Definitional proc to organize widgets for parameters.
proc init_gui
{
IPINST
}
{
ipgui::add_param $IPINST -name
"Component_Name"
#Adding Page
set Page_0
[
ipgui::add_page $IPINST -name
"Page 0"
]
ipgui::add_param $IPINST -name
"C_S00_AXI_DATA_WIDTH"
-parent $
{
Page_0
}
-widget comboBox
ipgui::add_param $IPINST -name
"C_S00_AXI_ADDR_WIDTH"
-parent $
{
Page_0
}
ipgui::add_param $IPINST -name
"C_S00_AXI_BASEADDR"
-parent $
{
Page_0
}
ipgui::add_param $IPINST -name
"C_S00_AXI_HIGHADDR"
-parent $
{
Page_0
}
}
proc update_PARAM_VALUE.C_S00_AXI_DATA_WIDTH
{
PARAM_VALUE.C_S00_AXI_DATA_WIDTH
}
{
# Procedure called to update C_S00_AXI_DATA_WIDTH when any of the dependent parameters in the arguments change
}
proc validate_PARAM_VALUE.C_S00_AXI_DATA_WIDTH
{
PARAM_VALUE.C_S00_AXI_DATA_WIDTH
}
{
# Procedure called to validate C_S00_AXI_DATA_WIDTH
return true
}
proc update_PARAM_VALUE.C_S00_AXI_ADDR_WIDTH
{
PARAM_VALUE.C_S00_AXI_ADDR_WIDTH
}
{
# Procedure called to update C_S00_AXI_ADDR_WIDTH when any of the dependent parameters in the arguments change
}
proc validate_PARAM_VALUE.C_S00_AXI_ADDR_WIDTH
{
PARAM_VALUE.C_S00_AXI_ADDR_WIDTH
}
{
# Procedure called to validate C_S00_AXI_ADDR_WIDTH
return true
}
proc update_PARAM_VALUE.C_S00_AXI_BASEADDR
{
PARAM_VALUE.C_S00_AXI_BASEADDR
}
{
# Procedure called to update C_S00_AXI_BASEADDR when any of the dependent parameters in the arguments change
}
proc validate_PARAM_VALUE.C_S00_AXI_BASEADDR
{
PARAM_VALUE.C_S00_AXI_BASEADDR
}
{
# Procedure called to validate C_S00_AXI_BASEADDR
return true
}
proc update_PARAM_VALUE.C_S00_AXI_HIGHADDR
{
PARAM_VALUE.C_S00_AXI_HIGHADDR
}
{
# Procedure called to update C_S00_AXI_HIGHADDR when any of the dependent parameters in the arguments change
}
proc validate_PARAM_VALUE.C_S00_AXI_HIGHADDR
{
PARAM_VALUE.C_S00_AXI_HIGHADDR
}
{
# Procedure called to validate C_S00_AXI_HIGHADDR
return true
}
proc update_MODELPARAM_VALUE.C_S00_AXI_DATA_WIDTH
{
MODELPARAM_VALUE.C_S00_AXI_DATA_WIDTH PARAM_VALUE.C_S00_AXI_DATA_WIDTH
}
{
# Procedure called to set VHDL generic/Verilog parameter value
(
s
)
based on TCL parameter value
set_property value
[
get_property value $
{
PARAM_VALUE.C_S00_AXI_DATA_WIDTH
}]
$
{
MODELPARAM_VALUE.C_S00_AXI_DATA_WIDTH
}
}
proc update_MODELPARAM_VALUE.C_S00_AXI_ADDR_WIDTH
{
MODELPARAM_VALUE.C_S00_AXI_ADDR_WIDTH PARAM_VALUE.C_S00_AXI_ADDR_WIDTH
}
{
# Procedure called to set VHDL generic/Verilog parameter value
(
s
)
based on TCL parameter value
set_property value
[
get_property value $
{
PARAM_VALUE.C_S00_AXI_ADDR_WIDTH
}]
$
{
MODELPARAM_VALUE.C_S00_AXI_ADDR_WIDTH
}
}
FPGA/readme.md
0 → 100644
View file @
61b62b1f
# 说明
D-DAQ PL design文件夹是纯PL端的设计,只有采集,udp组包,发送功能
D-DAQ design文件夹是PL+PS端的设计,包括采集,udp组包,发生,dma传输到ps,nvme(pcie)等功能,其中用到了ip核,所以这里还附带了一个ip_repo,在另一台电脑使用这个工程时建议重新导入一下ip_repo里的ip核
然后D-DAQ_design_0911.zip是2025年9月11号更新的最新项目,内容和D-DAQ design是基本一致的,只是更新些内容(当前最新)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment