2020-05-06 06:05:23 +02:00
|
|
|
# Copyright (C) 2017-2020 The Project X-Ray Authors
|
|
|
|
|
#
|
|
|
|
|
# Use of this source code is governed by a ISC-style
|
|
|
|
|
# license that can be found in the LICENSE file or at
|
|
|
|
|
# https://opensource.org/licenses/ISC
|
|
|
|
|
#
|
|
|
|
|
# SPDX-License-Identifier: ISC
|
2019-06-07 10:28:12 +02:00
|
|
|
proc print_tile_pips {tile_type filename} {
|
|
|
|
|
set tile [lindex [get_tiles -filter "TYPE == $tile_type"] 0]
|
|
|
|
|
puts "Dumping PIPs for tile $tile ($tile_type) to $filename."
|
|
|
|
|
set fp [open $filename w]
|
|
|
|
|
foreach pip [lsort [get_pips -of_objects [get_tiles $tile]]] {
|
|
|
|
|
set src [get_wires -uphill -of_objects $pip]
|
|
|
|
|
set dst [get_wires -downhill -of_objects $pip]
|
|
|
|
|
if {[llength [get_nodes -uphill -of_objects [get_nodes -of_objects $dst]]] != 1} {
|
|
|
|
|
puts $fp "$tile_type.[regsub {.*/} $dst ""].[regsub {.*/} $src ""]"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
close $fp
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
create_project -force -part $::env(XRAY_PART) design design
|
|
|
|
|
set_property design_mode PinPlanning [current_fileset]
|
|
|
|
|
open_io_design -name io_1
|
|
|
|
|
|
|
|
|
|
print_tile_pips CLK_BUFG_TOP_R clk_bufg_top_r.txt
|
|
|
|
|
print_tile_pips CLK_BUFG_BOT_R clk_bufg_bot_r.txt
|