| # SPDX-FileCopyrightText: 2021 , Dinesh Annayya |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # SPDX-License-Identifier: Apache-2.0 |
| # SPDX-FileContributor: Modified by Dinesh Annayya <dinesha@opencores.org> |
| |
| |
| |
| set_units -time ns |
| set ::env(CLOCK_PERIOD) "10" |
| set ::env(CLOCK_PORT) "clk_i" |
| |
| create_clock [get_ports $::env(CLOCK_PORT)] -name $::env(CLOCK_PORT) -period $::env(CLOCK_PERIOD) |
| |
| set input_delay_value [expr $::env(CLOCK_PERIOD) * 0.6] |
| set output_delay_value [expr $::env(CLOCK_PERIOD) * 0.4] |
| puts "\[INFO\]: Setting output delay to: $output_delay_value" |
| puts "\[INFO\]: Setting input delay to: $input_delay_value" |
| |
| |
| set clk_indx [lsearch [all_inputs] [get_port $::env(CLOCK_PORT)]] |
| set rst_indx [lsearch [all_inputs] [get_port rst_n]] |
| set all_inputs_wo_clk_rst [lreplace [all_inputs] $clk_indx $rst_indx] |
| |
| set_clock_uncertainty -from $::env(CLOCK_PORT) -to $::env(CLOCK_PORT) -setup 0.400 |
| set_clock_uncertainty -from $::env(CLOCK_PORT) -to $::env(CLOCK_PORT) -hold 0.050 |
| |
| # correct resetn |
| set_input_delay $input_delay_value -clock [get_clocks $::env(CLOCK_PORT)] $all_inputs_wo_clk_rst |
| set_input_delay 2.0 -clock [get_clocks $::env(CLOCK_PORT)] {rst_n} |
| set_output_delay $output_delay_value -clock [get_clocks $::env(CLOCK_PORT)] [all_outputs] |
| |
| # TODO set this as parameter |
| set_driving_cell -lib_cell $::env(SYNTH_DRIVING_CELL) -pin $::env(SYNTH_DRIVING_CELL_PIN) [all_inputs] |
| set cap_load [expr $::env(SYNTH_CAP_LOAD) / 1000.0] |
| puts "\[INFO\]: Setting load to: $cap_load" |
| set_load $cap_load [all_outputs] |