Friday, April 4, 2025

sample run.tcl to perform synthesis

 

Sample run.tcl to perform synthesis:

set DESIGN cmsdk_apb_uart

set_db / .init_lib_search_path {/home/cad/FOUNDRY/digital/45nm/LIBS/lib/max}

set_db / .init_hdl_search_path {/root/Desktop/apb_uart/rtl}

set_db / .library "slow.lib"

read_hdl "cmsdk_apb_uart.v"

elaborate $DESIGN

check_design -unresolved

read_sdc "/root/Desktop/apb_uart/sdc/apb_uart_sdc.sdc"

report_timing -lint

syn_generic

syn_map

syn_opt

write_hdl > outputs/output_gln.v

write_sdc > outputs/outsdc.sdc

 

Explanation

Let me break it down step by step:


  1. Set Design Name:

set DESIGN cmsdk_apb_uart

    • Assigns the name cmsdk_apb_uart to the variable DESIGN, which likely represents the module or design being worked on.

  1. Library Search Paths:

set_db / .init_lib_search_path {/home/cad/FOUNDRY/digital/45nm/LIBS/lib/max}

set_db / .init_hdl_search_path {/root/Desktop/apb_uart/rtl}

    • Specifies paths for searching libraries:
      • .init_lib_search_path: Points to the directory containing the technology libraries (e.g., max folder for the 45nm process node).
      • .init_hdl_search_path: Points to the directory containing the HDL (Hardware Description Language) files, such as Verilog.

  1. Library Reference:

set_db / .library "slow.lib"

    • Loads the timing library (slow.lib) required for synthesis and analysis. This file contains delay and power information for standard cells in the design.

  1. Read HDL File:

read_hdl "cmsdk_apb_uart.v"

    • Reads the Verilog file cmsdk_apb_uart.v into the tool. This file contains the module definition and hardware description.

  1. Elaborate Design:

elaborate $DESIGN

    • Elaborates the design specified by $DESIGN, resolving its hierarchy and preparing it for analysis or synthesis.

  1. Check Design:

check_design -unresolved

    • Performs a check for unresolved references or missing modules in the design. It ensures that all signals, modules, and entities are defined correctly.

  1. Read SDC File:

read_sdc "/root/Desktop/apb_uart/sdc/apb_uart_sdc.sdc"

    • Reads the Synopsys Design Constraints (SDC) file, which contains timing constraints for the design (e.g., clock definitions, timing paths, input/output delays).

  1. Report Timing:

report_timing -lint

    • Generates a timing report, possibly with linting, to identify issues related to timing paths, constraints, and violations.

  1. Synthesis Steps:

syn_generic

syn_map

syn_opt

    • syn_generic: Performs technology-independent synthesis, converting RTL into generic gates.
    • syn_map: Maps the generic design onto technology-specific standard cells.
    • syn_opt: Optimizes the mapped design for timing, area, and power.

  1. Output Files:

write_hdl > outputs/output_gln.v

write_sdc > outputs/outsdc.sdc

    • write_hdl: Writes the synthesized design as a Verilog file (output_gln.v).
    • write_sdc: Writes the updated SDC file (outsdc.sdc), capturing new timing constraints after synthesis.

If you're running this workflow, ensure that the paths and libraries are correctly configured for your specific setup. Let me know if you'd like detailed guidance on any step!

 

Saturday, January 25, 2025

.gvimrc

.gvimrc

cd ==> This will take you to your home directory

touch .gvimrc and add the below mentioned content

Tuesday, January 7, 2025

junk

Certainly! Here's the HTML version of the code breakdown you provided: ```html Library Definition

Absolutely! Let's break down this section of code to understand it better.

Library Definition

The code defines a library for a specific cell type used in VLSI (Very Large Scale Integration) design. Here's a detailed explanation:

General Attributes

  1. library (TT_25_1.0): Defines a library named TT_25_1.0.
    • comment: An empty comment field.
    • date: The date when this library was created or last modified.
    • revision: Version of the library.
    • delay_model: The type of delay model used, in this case, table_lookup.
    • Units:
      • capacitive_load_unit (1,pf): Capacitance unit is 1 picofarad.
      • current_unit: "1mA": Current unit is 1 milliampere.
      • leakage_power_unit: "1uW": Leakage power unit is 1 microwatt.
      • pulling_resistance_unit: "1kohm": Pulling resistance unit is 1 kilohm.
      • time_unit: "1ns": Time unit is 1 nanosecond.
      • voltage_unit: "1V": Voltage unit is 1 volt.
    • Voltage Maps:
      • voltage_map (VDD, 1): VDD is mapped to 1V.
      • voltage_map (VSS, 0): VSS is mapped to 0V.
      • voltage_map (VNW, 1): VNW is mapped to 1V.
      • voltage_map (VPW, 0): VPW is mapped to 0V.
      • voltage_map (GND, 0): GND is mapped to 0V.

Default Attributes

  • default_cell_leakage_power: 0: Default leakage power for cells.
  • default_fanout_load: 1: Default fanout load.
  • default_max_transition: 0.48: Default maximum transition time.
  • default_output_pin_cap: 0: Default output pin capacitance.
  • in_place_swap_mode: match_footprint: Defines the in-place swap mode.
  • Thresholds:
    • input_threshold_pct_fall: 50
    • input_threshold_pct_rise: 50
    • output_threshold_pct_fall: 50
    • output_threshold_pct_rise: 50
  • Nominal Conditions:
    • nom_process: 1
    • nom_temperature: 25
    • nom_voltage: 1
  • Slew Rates:
    • slew_derate_from_library: 0.5
    • slew_lower_threshold_pct_fall: 30
    • slew_lower_threshold_pct_rise: 30
    • slew_upper_threshold_pct_fall: 70
    • slew_upper_threshold_pct_rise: 70

Operating Conditions

  • operating_conditions (PVT_1V_25C): Defines operating conditions.
    • process: 1
    • temperature: 25
    • voltage: 1
  • default_operating_conditions: PVT_1V_25C: Sets default operating conditions.

Templates

  • Power Grid Current Templates:
    • pg_current_template (ccsp_template1):
      • variable_1: input_net_transition
      • variable_2: time
    • pg_current_template (ccsp_template2):
      • variable_1: input_net_transition
      • variable_2: total_output_net_capacitance
      • variable_3: time
  • Lookup Table Templates:
    • lu_table_template (constraint_template_2x2):
      • variable_1: constrained_pin_transition
      • variable_2: related_pin_transition
      • Indexes: "0.008, 0.28"
    • lu_table_template (delay_template_2x2):
      • variable_1: input_net_transition
      • variable_2: total_output_net_capacitance
      • Indexes: "0.008, 0.28", "0.01, 0.3"
    • lu_table_template (mpw_constraint_template_2x2):
      • variable_1: constrained_pin_transition
      • Indexes: "0.008, 0.28"
  • Power LUT Templates:
    • power_lut_template (passive_power_template_2x1):
      • variable_1: input_transition_time
      • Index: "0.008, 0.28"
    • power_lut_template (power_template_2x2):
      • variable_1: input_transition_time
      • variable_2: total_output_net_capacitance
      • Indexes: "0.008, 0.28", "0.01, 0.3"

Cell Definition (INVX1)

  • cell (INVX1): Defines a cell named INVX1.
    • area: 0.684: Area of the cell.
    • Power Pins:
      • pg_pin (VDD):
        • pg_type: primary_power
        • voltage_name: "VDD"
      • pg_pin (VSS):
        • pg_type: primary_ground
        • voltage_name: "VSS"
    • Leakage Power:
      • Multiple leakage_power definitions indicating power dissipation under various conditions (e.g., when input A is high or low).
    • Leakage Current:
      • leakage_current () defines the current leakage characteristics.
      • when: "A": Specifies conditions for leakage current.
      • pg_current and gate_leakage provide details about current values and gate leakage.
    • Intrinsic Parasitics:
      • intrinsic_parasitic () defines intrinsic parasitic parameters.
      • Includes values for intrinsic_capacitance and intrinsic_resistance for both VDD and VSS.

This comprehensive breakdown covers the basic structure and significant elements of the library file, which is crucial for digital design and simulation in VLSI systems. If you have any specific questions or need further details on a particular section, just let me know!

Wednesday, January 1, 2025

About Us

About Us - TMSY Tutorials

About Us

Welcome to TMSY Tutorials!

At TMSY Tutorials, we are passionate about making complex engineering concepts easy to understand and apply. With a focus on electronics and communication engineering, VLSI design, and embedded systems, our goal is to empower students and professionals with the knowledge and skills they need to excel in these fields.

Our founder, TMSY, brings a wealth of expertise and experience to the table. Having guided numerous projects, including efficient VLSI arithmetic circuit designs and performance comparisons among various adder topologies, TMSY is dedicated to providing high-quality education that bridges the gap between theory and practice.

What We Offer

Comprehensive Courses: Dive deep into subjects like Computer Organization and Architecture, Analog Electronics, Digital System Design using Verilog HDL, and more.

Hands-On Projects: Gain practical experience with real-world projects and lab courses.

Accessible Learning: Join our courses on Udemy and YouTube for flexible, on-demand learning.

Our Mission

To make engineering education accessible, engaging, and practical, helping you achieve your career goals and personal aspirations.

Join Us

Whether you're a student preparing for exams or a professional looking to upgrade your skills, TMSY Tutorials is here to support your learning journey. Explore our courses and start your path to success today!

sample run.tcl to perform synthesis

  Sample run.tcl to perform synthesis: set DESIGN cmsdk_apb_uart set_db / . init_lib_search_path {/ home / cad / FOUNDRY / digital / 4...