Skip to main content

YAML in Semiconductor EDA: From Configuration Language to Reusable Design-Flow Methodology

Hello Dear Readers,   Today in this post, I will provide some deep insight about yaml langauge for CAD flow developments with detailed examples. YAML is not a programming language in the same sense as Python, Tcl, C++, or Verilog. It is primarily a human-readable data serialization/configuration language . In semiconductor EDA, that distinction is important because YAML generally describes what a flow should do , while Python/Tcl/Shell and the EDA tools execute the flow . The official YAML specification describes it as a data serialization language designed to be human-friendly and portable across programming languages. For the semiconductor angle, this becomes particularly interesting because YAML can act as a configuration layer between design methodology and EDA implementation . Frameworks such as Hammer explicitly use YAML/JSON configuration and an intermediate representation to standardize information exchanged between design, technology, and tool plugins. 1. Introduction M...

The Microwind MOS Generator

 Hello Dear Readers,

Today, I will explain how to use Microwind inbuilt MOS generator. My first post regarding Microwind got responses as expected so I will try to make complete series of the Microwind tutorial which makes you technically stronger. So Let's start with how to use Microwind to create our transistor layouts.

Launch Microwind and examine the screen. The palette window appears. The top portion of the palette menu is shown in Fig.1. Notice the button which is a circle by a blue pen that looks like a FET circuit symbol. This provides access to the MOS generator routine in Microwind. When you click on it will be brought up on the dialog screen.

Fig.1 MOS Layout Generator button

The MOS Layout Generator has several options, all of which are controlled by the screen shown in Fig.2. The Channel length L is preset by the selected process. Normally the channel length will be left at the default value, but the designer adjusts the value of W according to the circuit specification but this is only for the digital circuits in analog integrated circuit design length also may vary.


Fig.2 MOS Layout Generator dialog screen

To create NMOS push the nMOS button after specifying the W/L ratio and then push generate device button. This action will place you back on the drawing screen. Specify the location where you want the NMOS by positioning the cursor, then left-click the mouse. As shown in Fig.3 NMOS layout with color-coded layer according to the scheme appears. The red layout represents Poly gate, Metal1 which is represented by blue color, and n+ doping is represented by green color.
Fig.3 Generated NMOS

Similar Steps is for PMOS except that you push the pMOS button in the dialog screen and generated layout which Shown in Fig.4. Also noted is that the PMOS  is embedded within an n-well that is color-coded as a green rectangle with a green stipple pattern fill.

Fig.4 Generated PMOS
And the last feature of the MOS generator we will study here is the Add polarization box in Fig.2. In the terminology of Microwind, "polarization" means to add a positive or negative bias voltage. if you select this option by clicking box, both the generated NMOS and PMOS are modified to those shown in Fig.5 and Fig.6. The NMOS has an added section of Metal1 and contact to the substrate, this is used to insure that the P-substrate has a well defined voltage and is not a floating value. In practice , this is most commonly set at 0V(ground). Similarly PMOS device now has a contact to the n-well which is added for the same purpose and it is most commonly connected to the Vdd supply voltage.
Fig.5 Modified NMOS with Polarization
Fig.6 Modified PMOS with Polarization

The MOS Layout Generator can be used to create the MOSFETs needed for a circuit, and the transistors are wired together using metal layers with contacts and vias.


Connect with me 




Comments

  1. Super duper now first time I understand this level of Microwind software go ahead with more tutorials also keep it up.

    ReplyDelete
  2. Everything is as expected thanks you so much bro and we need more into it by complex circuit design and how to design hierarchical circuits.

    ReplyDelete
  3. Well good tutorial

    ReplyDelete
  4. Superb please go through also some complex circuit implementation will be waiting.

    ReplyDelete

Post a Comment

Popular posts from this blog

Signal Electromigration (Signal EM): Violations, Examples, and Practical Fixes

  Hello Dear Readers,   Today in this post, I will provide some deep insight into the Signal Electromigration (Signal EM): Violations, Examples, and Practical Fixes. 1. Introduction: As technology nodes shrink into the deep‑submicron and nanometer regime (7nm, 5nm, 3nm and beyond), electromigration (EM) has become a first‑order reliability concern—not only for power/ground (PG) networks but also for signal nets. Signal EM failures are often underestimated because signal currents are transient and bidirectional. However, with higher switching activity, tighter metal pitches, thinner wires, and aggressive timing closure, signal EM can cause latent or early‑life failures if not addressed properly. This article explains: What Signal EM is and how it differs from PG EM Typical Signal EM violation scenarios Detailed, practical examples Root causes behind each violation Proven solutions and best practices to fix and prevent Signal EM issues 2. What is Signal Electromigration: El...

Exploring the Role of LEF Files in VLSI Chip Design: A Beginner's Guide

Hello Dear Readers,   Today in this post, I will provide some deep insight into the LEF file role during the VLSI Chip Design process. In VLSI (Very Large Scale Integration) design, a LEF file is a file that contains information about the physical geometry of the standard cells used in a circuit. LEF stands for Library Exchange Format. A standard cell is a pre-designed logic cell that contains a specific function, such as a flip-flop or an AND gate. Standard cells are designed to be easily combinable and scalable to create more complex circuits. The physical geometry of each standard cell is defined in the LEF file. The LEF file contains information such as the width, height, and position of the pins and metal layers of each standard cell. It also contains information about the physical design rules that govern the placement of these cells on the chip. LEF files are important in VLSI design because they enable the interoperability of different design tools from different vend...

Power Analysis in the VLSI Chip Design

  Hello Dear Readers,   Today in this series of posts I will provide some deep insight into Power Analysis in the VLSI Chip Design. The power analysis flow calculates (estimates of) the active and static leakage power dissipation of the SoC design. This electrical analysis step utilizes the detailed extraction model of the block and global SoC layouts. The active power estimates depend on the availability of switching factors for all signals in the cell netlist. Representative simulation test cases are applied to the netlist model, and the signal value change data are recorded. The output data from the power analysis flow guide the following SoC tape out release assessments:  Total SoC power specification (average and standby leakage): The specification for SoC power is critical for package selection and is used by end customers for thermal analysis of the product enclosure. In addition to the package technology selection, the SoC power dissipation is used to ev...