aspect

VHDL based structure modeling

prepared by P. Bakowski


Contents: levels of composition, logic-level model, RT-level model


Levels of composition (abstraction) and structural descriptions

The structural descriptions may be elaborated at any level of abstraction such as:

Note however that the components of higher abstraction levels may be decomposed into components of lower abstraction levels. For example a register block may be decomposed into several flip-flops and logic gates.

An assembly of register blocks, functional blocks like ALUs and decoders my be represented as structural description. In this case each memory or functional block is instantiated as separate component.


A digital electronic system is described in VHDL as a module with inputs and/or outputs. The electrical /logical values on the outputs are some function of the values on the inputs.

VHDL module called entity

The above module MOD has tree inputs, a, b and cin , and two outputs s and cout. Using VHDL terminology, we call the module MOD a design entity , and the inputs and outputs are called ports .

One way of describing the function of a module is to describe how it is composed of sub-modules.

Each of the sub-modules is an instance of some entity, and the ports of the instances are connected using signals .


Logic level model

At this page we will first study a small example of a VHDL description of a full adder to give you an illustration of a simple structural description at logic level.

We start the description of an entity by specifying its external interface, which includes a description of its ports.


So the adder might be defined as:

-- single-bit adder

entity adder is

end adder;


This specifies the entity with 3 inputs and 2 outputs, all of which are bit values, that is, they can take on the only two values: `0' and `1'.

To understand the internal operations of the entity the folowing architecture is described functionally with two concurrent signal assignments.


-- description of adder using concurrent signal assignments

architecture rtl of adder is

begin

end rtl;


The entity may be enhanced with timing information using the generic statement which contains the predefined temporal parameters - delays:


-- single-bit adder

entity adder is

end adder;


Which provides us with a reformulated architecture:


-- description of adder using concurrent signal assignments

architecture rtl of adder is

begin

end rtl;


The next architecture is completely structural. It uses bgates library containing the description of gates like xorg, andg, and org.

These components are directly instantiated and interconnected through port map clause.

Note that the same component may be instantiated several times under different instantiation names.

The direct instantiation may be used only for the components/entities with single architecture.

To chose the components having more than one architecture one must use configuration clause.



RTL level model "specification"

The following example illustrates a simple two component system incorporating one memory block and one counter unit.

Requirements

The interconnection of the components requires the introduction of at least three-state logic including a high-impedancy state - 'Z' and a bus resolution function.

The use of the incrementation operation on bit_vectors with different sizes necessitates the use of a generic increment function.

The example starts with a simple TSL package for Three State Logic system which needs to be developed in order to provide the required types and functions.

This package contains the declaration of a set of logic values (0,1,Z) and several data types necessary to construct bus resolution function BUSFUNC .

Remark:

The BUSFUNC displays a message if more then one active signal sources ('0' or '1') are detected.

Development

Develop the above package adding three-state to binary and binary to three-state conversionfunctions.

Develop binary to integer conversion function - necessary to produce integer indexi from bit_vector address.

Use the above package to design a small system with 2 components:


Completed package STSL:







RAM memory entity has three inputs:




incrementer entity has three outputs:




system entity has one input :

Go :activates the system-incrementer when set to '0'