-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathip.tcl
52 lines (41 loc) · 1.91 KB
/
ip.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
#
# Copyright 2017 Konrad Haeublein
#
# konrad.haeublein@fau.de
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
ipx::package_project -force -vendor {fau.de} -taxonomy {/HSA} -import_files -root_dir "[get_property DIRECTORY [current_project]]/ip"
set_property vendor {fau.de} [ipx::current_core]
set_property library {hsa} [ipx::current_core]
set_property taxonomy {{/HSA}} [ipx::current_core]
set_property vendor_display_name {FAU Erlangen-Nuremberg} [ipx::current_core]
set_property company_url {https://fau.de} [ipx::current_core]
# TODO add all supported families
set_property supported_families { \
{virtex7} {Production} \
{virtexu} {Production} \
{zynq} {Production} \
{zynquplus} {Beta} \
} [ipx::current_core]
#####################################
# Actual IP Settings
set_property name {image_pe} [ipx::current_core]
set_property display_name {Image PE} [ipx::current_core]
set_property description {} [ipx::current_core]
# End of Actual IP Settings
#####################################
ipx::create_xgui_files [ipx::current_core]
ipx::update_checksums [ipx::current_core]
ipx::save_core [ipx::current_core]