Main Topics:: Circuit Design Based On VHDL VHDL Basics Advanced VHDL Language Structures Circuit Examples
Main Topics:: Circuit Design Based On VHDL VHDL Basics Advanced VHDL Language Structures Circuit Examples
Main Topics:: Circuit Design Based On VHDL VHDL Basics Advanced VHDL Language Structures Circuit Examples
Main topics: Circuit design based on VHDL VHDL basics Advanced VHDL language structures Circuit examples
Introduction to VHDL
VHDL is an acronym of VHSIC Hardware Description Language VHSIC is an acronym of Very High Speed Integrated Circuits
A Formal Language for Specifying the Behavior and Structure of a Digital Circuit Allows Top-Down Design
Introduction to VHDL
Gajskis Y-chart
Structural Processors, memories Registers, FUs, MUXs Gates, flip-flops Behavior Sequential programs Register transfers Logic equations/FSM Transfer functions Cell Layout Modules Chips
Transistors
Defines outputs as function of inputs Algorithms but no implementation Implements behavior by connecting components with known behavior
Structural
Boards Physical
Physical
Executable Specification
Results, Errors
Test Vectors
Final Chip
Model
New possibilities
VHDL frees the designer from having to use von Neumann structures
(Neumann Jnos = John von Neumann)
It allows him to work with real concurrency instead of sequential machines This opens up completely new possibilities for the designer
Shorter development times for electronic design Simpler maintenance Traditional way: schematic design
VHDL was standardized in 1987 by the IEEE It is now accepted as one of the most important standard languages for
specifying verifying designing of electronics
Introduction to VHDL
Standardization 1
IEEE standard specification language (IEEE 1076-1993) for describing digital hardware used by industry worldwide VHDL enables hardware modeling from the gate level to the system level
All the major tool manufacturers now support the VHDL standard VHDL is now a standardized language, with the advantage that it is easy to move VHDL code between different commercial platforms (tools) => VHDL code is interchangeable among the different tools
Standardization 2
VHDL is an acronym of VHSIC Hardware Description Language VHSIC is an acronym of Very High Speed Integrated Circuits All the major tool manufacturers now support the VHDL standard VHDL is now a standardized language, with the advantage that it it easy to move VHDL code between different commercial platforms (tools) => VHDL code is interchangeable among the different tools
Introduction to VHDL
Standardization 3
It was the American Department of Defense which initiated the development of VHDL in the early 1980s because the US military needed a standardized method of describing electronic systems VHDL was standardized in 1987 by the IEEE
IEEE Std-1076-1987
Introduction to VHDL
Standardization 4
1995:
numeric_std/bit: IEEE-1076.3 VITAL: IEEE-1076.4
2002: IEEE-1076-2002
Introduction to VHDL
Tools
Good VHDL tools, and VHDL simulators in particular, have also been developed for PCs Prices have fallen dramatically, enabling smaller companies to use VHDL, too There are also PC synthesis tools, primarily for FPGAs and EPLDs
Usage
High-tech companies
Texas Instruments, Intel use VHDL most European companies use VHDL
IEEE
IEEE is the Institute of Electrical and Electronics Engineers The reference manual is called IEEE VHDL Language Reference Manual Draft Standard version 1076/B It was ratified in December 1987 as IEEE 1076-1987 Important:
the VHDL is standardized for system specification but not for design
Technology independence
The design of VHDL components can be technologyindependent or more-or-less technology independent for a technical family The components can be stored in a library for reuse in several different designs VHDL models of commercial IC standard components can now be bought, which is a great advantage when it comes to verifying entire circuit boards
Analog world
VHDL has not yet been standardized for analog electronics Standardization is in progress on VHDL with an analog extension (AHDL) to allow analog systems to be described as well This new standard will be based wholly on the VHDL standard and will have a number of additions for describing analog functions
VHDL-Related Newsgroups
comp.arch.fpga comp.lang.vhdl comp.cad.synthesis
Introduction to VHDL
There are several other language extensions built to either aid in RTL construction or assist in modeling:
ParaCore - http://www.dilloneng.com/paracore.shtml RubyHDL - http://www.aracnet.com/~ptkwt/ruby_stuff/RHDL/index.shtml MyHDL - http://jandecaluwe.com/Tools/MyHDL/Overview.shtml JHDL - http://www.jhdl.org/ Lava - http://www.xilinx.com/labs/lava/ HDLmaker - http://www.polybus.com/hdlmaker/users_guide/ SystemC AHDL http://www.altera.com
It is good for Altera-made chips only, which limits its usefulness But it is easy to pick up and use successfully
The main purpose of a language -- programming, hdl, or otherwise -- is to ease the expression of design
Introduction to VHDL
Verilog
Verifying Logic Phil Moorby from Gateway Design Automation in 1984 to 1987
Absorbed by Cadence Cadence's ownership of Verilog => others support VHDL
Verilog-XL simulator from GDA in 1986 Synopsis Synthesis Tool in 1988 In 1990 became open language
OVI: Open Verilog International
Introduction to VHDL
Verilog
All abstraction levels
Complex grammar
Describe a system (everything) Lots of data types User-defined package & library
Easy language
Describe a digital system Few data types No user-defined packages
Simple parameterization
Less consistent language. If you don't follow some adhoc methodology for coding styles, you will not get it right. It executes differently on different platforms unless you follow some adhoc coding rules.
Introduction to VHDL
It does seem that Verilog is easier for designing at the gate-level, but that people who do higher level simulations express a preference for VHDL VHDL places constraints on evaluation order that limit the optimizations that can be performed
Verilog allows the simulator greater freedom For example, multiple levels of zero-delay gates can be collapsed into a single super-gate evaluation in Verilog VHDL requires preserving the original number of delta cycles of delay in propagating through those levels
VHDL
In Europe the VHDL is the most popular language Based on Pascal language
Verilog
Based on C language
VHDL:
process (siga, sigb) begin ... end;
Verilog:
always @ (siga or sigb) begin . end
Introduction to VHDL
VHDL:
c <= a and b;
Verilog:
assign c = a & b ;
Introduction to VHDL
VHDL:
a <= transport b after 1 ns;
Verilog:
#1 assign a = b; a output is delayed by 1 time unit The # operator is the delay operator # N will delay for N simulation units Delays can assigned to both inputs and outputs #1 assign a = #1 b; b is delayed by 1 unit, then assigned to a, which is then delayed by 1 time unit
Introduction to VHDL
VHDL:
signal clk : std_logic := 0; process begin clk <= not (clk) after clkperiod/2; wait on clk; end;
Verilog:
initial clk = 0; always #(clkperiod/2) clk = ~ clk;
Introduction to VHDL
Verilog Weakness
Introduction to VHDL
VHDL:
Configuration, generate, generic and package statements all help manage large design structures
Verilog:
There are no statements in Verilog that help manage large designs
Introduction to VHDL
VHDL:
allows concurrent procedure calls
Verilog:
does not allow concurrent task calls
Introduction to VHDL
VHDL:
The generate statement replicates a number of instances of the same design-unit or some sub part of a design, and connects it appropriately
Verilog:
There is no equivalent to the generate statement in Verilog.
Introduction to VHDL
SystemVerilog
Extending Verilog to higher levels of abstraction for architectural and algorithm design and advanced verification
VHDL 200x
Goal of VHDL Analysis and Standards Group (VASG):
Enhance/update VHDL for to improve performance, modeling capability, ease of use, simulation control, and the type system e.g.: Data types and abstractions: variant records interfaces
Introduction to VHDL