prepared by P. Bakowski
Synthetizable models do not contain any timing features at the delay level. For example, the clock cycle of a synthesized sequential model is not known until the circuit has not been completely synthesized. Only after the physical layout modelization the clock delay may be back-annotated into the original high level description.
The synthesized (or synthetizable) VHDL processes are roughly classified as combinational or sequential. The combinational processes do not infer any internal memory elements. The figure below shows the overall synthesis path going from algorithmic and/or register level descriptions down to logic level VHDL code.
The algorithmic level descriptions are mainly used to model state machines and sequencers. The register transfer level descriptions are well suited to the modeling of data paths (data flows). Both the algorithmic level and the register transfer level descriptions are taken by high level synthesis tools and transformed into the corresponding netlists. The netlists incorporate logic- level components and the synthetic components (blocks) taken from the design library. In order to minimize the number of required components, the synthesis process exploits optimization algorithms allowing resource sharing.
General modeling recommendations for synthesis Content: high level synthesis, synthetizable subset, synthesis process simple objects, arrays, expressions, arithmetic operations, combinational processes, sequential processes, latches, flip-flops, state-machines, three-state buffers, resource sharing, general modeling recommendations, structuring models, examples, exercises
The basic types and operators used for the synthesis are defined in std_logic_1164 package. This package specifies a 9-level logic system with several sub-systems {0,1}, {0,1,X,Z}. The basic logical operators such as and, or, not are redefined for the proposed logic system using overloading technique. A characteristic fragment of std_logic_1164 package is given below.
For example, the bit vector "1101" is less than "110100" .
The descriptions which do not provide complete information, such as in the example below, cannot be synthesized.
The following states are stored in flip-flops:
Latch circuit may be inferred from a simple process awaken by clock signal and the input data. The following if statement infers a latch since there is no else statement..
The following is a list of operators (components) which can be shared:
Example:
After synthesis without resource sharing:
For combinational logic:
Basic objects: For compatibility reasons, use standard IEEE packages std_logic_1164 and numeric_std (IEEE 1076.6) to specify the simple objects For efficiency reasons, use only bounded integer types
VHDL constructs allow different degree and style of modularization. Functional granularity is first provided through the use of subprograms and processes. Structural granularity of description is supported by the use of blocks , components and configurations.
For the reasons of higher design manageability and synthesis efficiency the decomposition should follow specific functional units such as ALUs, sequencers, memory units, multipliers, etc. Different kind of functionnalities require different and often quite specific description style. Some of the blocks may not be available at source level and only the interfaces (entities) may be visible to VHDL modeler. The units can be synthesized independently and interconnected afterwards to form the required complex architecture. The lowest level modules or components should correspond to few thousands of logic gates. This quantity of circuit corresponds to small hardware module to be implemented as FPGA or ASIC block .
The decomposition requires introduction of a well specified interconnection scheme. This scheme may be used for one-to-one communication or for many-to-many modules communication. In the later case bus structure must be elaborated and modeled together with the overall architecture.
In some cases the bus structure may be specific for the given design; in others a standard bus structure can be applied. The advantage of a standard bus is the possibility to interconnect and integrate the future modules complying to the standard.
Examples of synthetizable descriptions
Exercises