VLSI DESIGN
Very-large-scale integration (VLSI) is a process of combining thousands of transistors into a single chip. It started in the 1970s with the development of complex semiconductor and communication technologies. A VLSI device commonly known, is the microcontroller.
A VLSI device commonly known, is the microcontroller. Before VLSI, most ICs had limited functions. An electronic circuit usually consists of a CPU, ROM, RAM and other peripherals on one board. VLSI lets IC designers add all of these into one chip. Let’s look into the backstory of VLSI development before going into specifics.
Designing a VLSI IC
The design of a VLSI IC consists broadly of 2 parts. Front end design includes digital design using HDLs such as Verilog, VHDL, SystemVerilog and the like. It includes design verification through simulation and other verification techniques. The process includes designing, starting from gates to design for testability. Backend design comprises of CMOS library design and its characterization. It also covers physical design and fault simulation. The entire design procedure follows a step by step approach.
Front end hardware development
Problem Specification
It is a high-level representation of the system. The major parameters are performance, functionality, physical dimensions, fabrication technology and design techniques. It has to be a tradeoff between market requirements, the available technology and the economic viability of the design. The end specifications include the size, speed, power and functionality of the VLSI system.
Architecture Definition
Basic specifications like floating point units, which system to use, like reduced instruction set computer (RISC) or complex instruction set computer (CISC), number of ALU’s cache size etc.
Functional Design
Defines the major functional units of the system and hence facilitates the identification of interconnect requirements between units, the physical and electrical specifications of each unit.
Logic Design
Boolean expressions, control flow, word width, register allocation etc. are developed and the outcome are the register transfer level (RTL) description. HDLs implement the RTL description onto a system.
Circuit Design
While the logic design gives the simplified implementation of the logic,the realization of the circuit in the form of a netlist is done in this step. The netlist consists of gates, transistors and various interconnects. This again is a software step and the outcome is checked via simulation.
Physical Design
The conversion of the netlist into its geometrical representation is done in this step and the result is called a layout. This step follows some predefined fixed rules like the lambda rules which provide the exact details of the size, ratio and spacing between components
Back end hardware development
Next, we have the hardware implementation (or what we study in college). Once we sort out the issues with hardware in a simulated environment, we move onto the actual hardware. Majorly talking, we have the following steps in hardware fabrication,
Wafer processing
Pure silicon is melted in a pot at 1400º C. A small seed containing the desired crystal orientation is inserted into molten silicon and slowly (1mm/minute) pulled out. The silicon crystal is manufactured as a cylindrical ingot. This cylinder is sawed into discs or wafers. Polishing and crystal orientation takes place later on.
Lithography
The process of photolithography includes masking with a photographic mask and photo etching. A photoresist film is applied on the wafer. A photo aligner aligns the wafer to a mask. Tracks are highlighted by exposing the wafer to ultraviolet light through a mask.
Etching
It removes material selectively from the surface of wafer to create patterns. An etching mask protects some parts of the material. Additional chemicals or plasma removes the remaining photoresist. An inspection makes sure the transference of the image from mask to the top layer of wafer.
Ion implantation
It is a method of adding dopants. A beam of high energy dopant ions (Phosphine or boron trichloride) is targeted at specific regions of a wafer. The depth of penetration into the wafer depends on the energy of the beam.
Metallization
A thin layer of aluminum is deposited over the whole wafer. Aluminium is working as a good conductor and forms low resistance contacts. It can be applied and patterned with single deposition and etching process.
Assembly and Packaging
Each of the wafers contains hundreds of chips. A diamond saw cuts the wafer into single chips separating the single chips. The chips failing electrical tests are discarded, whereas the good ones are sent for packaging. Before packaging, remaining chips are observed under a microscope. The good chips are packaged and rechecked after packaging.
Seems like a lengthy process for a single chip, but that’s how innovation happens. However, once you have a netlist, it can be reused with an omission of the front end design.