12C

VHDL based configurable models

prepared by P. Bakowski


Contents: component configuration, configuration module, adder configuration, adder architecture, exercises


The configuration task means the selection of the sub-modules in order to construct the required top-level model. The selection of the sub-modules is done through the configuration parameters. These parameters must be prepared on a deep understanging of the functions provided by the available modules.

The configuration may be performed with closed or generic components. The configured model may be closed or generic. Note that in this sense genericity and configurability are orthogonal concepts and mechanisms.


Component configuration

When several types architectures are defined for a given entity the compiler must know the precise name of the required architecture. In order to select the required architecture VHDL provides configuration modules and configuration statements.

The configuration statement looks as follows:


Possible configurations for RAM block :


VHDL configuration modules

The complex structural descriptions incorporate several components. These components may have only one or several architectures. In order to select one of the possible architecture we use configuration statement or configuration module.

An example of a configuration statement was given above. The following is the presentation of configuration module.


This configuration module presented above configurates the adder entity built from several logic gates. The adder architecture is structural. The instantiated gates are chosen from the bgates package illustrated below.

Note that the package contains 3 versions of the architecture for the and gate: architecture only .., architecture first.. and architecture second...

The configuration module called conf_adder is used to chose architecture first for the first and gate instantiation (and1), and the architecture second for the second and gate instantiation (and2).

The org and xorg gates are all instantiated using the same architecture (architecture only ..)


An example of a package with the components necessary to build the structural architecture of adder entity: