12G

VHDL based generic models

prepared by P. Bakowski


Contents: generic values, simple examples: generic clock, generic counter, generic RAM block, , generic components instantiation, generic and generate, generater generic counter, exercises


VHDL entity declaration and generic values

The basic descriptional element of VHDL is entity; each description must be composed from at least one entity.

Each entity has a set of ports which constitute its interface to the outside world.

In VHDL, an entity is such a module which may be used as a component in a design, or which may be the top level module of the design.

Entity module may contain a generic statement which allows to characterize:

The generic constants are default values; they may be instantiated from outside with new values.


Very simple examples:

Clock component with one generic parameter allowing to modify the clock frequency and

counter component with two generic parameters one allowing to determine the interval of counting (upper limit) and one allowing a possible modification .


Counter component model:


Structural genericity : quantitative parameters

The following example shows the entity module which declares a RAM block component with address depth and data width dependent on generic constants.

This component can act as a template for a RAM entity .

The entity module corresponding to the above component may be described using a two-dimensional array with the indexes representing the depth and width of the array.

For example:


Generic parameters instantiation

A component defined in an architecture may be instantiated using the syntax:

This indicates that the architecture contains an instance of the named component, with actual values specified for generic constants, and with the component ports connected to actual signals or entity ports.


The RAM_block component declared in the above example may be instantiated twice as follows:


generic parameters and generate statement

As we have seen at the previous page the construction of of a complex circuit is long to prepare. For the cases, when the constructed circuit features a high degree of regularity , VHDL offers generate mechanism. Generate statement indicates the compiler how to multiply the instantiations of the components in order to build a regular structure.

The use of generate statement is illustrated below:

The generation_scheme includes for loop with some internal conditions allowing to differentiate the instantiations:


The following is an example of counter circuit generated from simple T-flip-flops and and gates. The width of the counter is a generic parameter which can be modified at the moment of component instantiation.


Exercises