Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
comcellnode_ethernet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
DG
FOFB
comcellnode_ethernet
Commits
e83a03d5
Commit
e83a03d5
authored
Feb 10, 2023
by
BRONES Romain
Browse files
Options
Downloads
Patches
Plain Diff
Removing useless files
parent
d1d91dc4
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
tcl/comcellnode.tcl
+0
-69
0 additions, 69 deletions
tcl/comcellnode.tcl
with
0 additions
and
69 deletions
tcl/comcellnode.tcl
deleted
100644 → 0
+
0
−
69
View file @
d1d91dc4
# Source metadata
set design
"comcellnode"
set top top_comcellnode
set part
"xczu11eg-ffvc1760-2L-e"
# Create project
set ip_project
[
create_project -name $
{
design
}
-part $
{
part
}
-in_memory
]
set_property top $
{
top
}
[
current_fileset
]
# Compilation order in auto
set_property source_mgmt_mode All $
{
ip_project
}
# Read sources
source tcl/sources.tcl
# Generate Xilinx IP
source tcl/generate_ethernet.tcl
# Compile order to auto
update_compile_order -fileset sources_1
# Package project
set ip_properties
[
list
\
vendor
"synchrotron-soleil.fr"
\
library
"user"
\
name $
{
design
}
\
version
"1.0"
\
taxonomy
"/Communication_&_Networking/Serial_Interfaces"
\
display_name
"Cell node Communication"
\
description
"Embed ethernet IP to perform inter cellnode communication."
\
vendor_display_name
"Synchrotron SOLEIL"
\
company_url
"http://www.synchrotron-soleil.fr"
\
]
set family_lifecycle
[
list
\
zynquplus
{
${part}
}
Beta
\
]
ipx::package_project
set ip_core
[
ipx::current_core
]
set_property -dict $
{
ip_properties
}
$
{
ip_core
}
set_property SUPPORTED_FAMILIES $
{
family_lifecycle
}
$
{
ip_core
}
# Associate AX/AXIS interfaces and reset with clock
# Done in VHDL file
# Remove default address map
ipx::remove_memory_map
[
lindex
[
split
[
ipx::get_memory_maps
]]
2
]
[
ipx::current_core
]
# Create Address map
set s_axi_mm
[
ipx::add_memory_map s_axi_ctrl
[
ipx::current_core
]]
set_property slave_memory_map_ref s_axi_ctrl
[
ipx::get_bus_interfaces s_axi -of_objects
[
ipx::current_core
]]
set_property ENABLEMENT_PRESENCE required $
{
s_axi_mm
}
set s_axi_blk
[
ipx::add_address_block registers $
{
s_axi_mm
}]
set_property -dict
{
\
ACCESS
"read-write"
\
DESCRIPTION
"Control and status registers"
\
ENABLEMENT_PRESENCE required
\
NAME
"registers"
\
RANGE 4096
\
USAGE
"register"
\
WIDTH 11
\
}
$
{
s_axi_blk
}
# Save IP and close project
ipx::check_integrity $
{
ip_core
}
ipx::save_core $
{
ip_core
}
close_project
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment