UPC EETAC Bachelor's Degree in Telecommunications Systems and in Network Engineering EEL

 

Enc_10_4 plan B: behavioural single-file VHDL (flat)

P2


Binary encoder from 10 inputs to 4 outputs (type 74LS148)

1.Specifications

Design a binary encoder 10-lines to 4-lines (Enc_10_4) with priority-high following plan B based on a direct translation of the truth table to VHDL. Data inputs D_L(9..0) are active-low, enable input (Ei_L) is also active-low. Code outputs Y(3..0) are active high, and group select (GS_L) and enable output Eo_L are active low. A similar circuit is the standard Enc_8_3 74LS148.

This is some introductory theory on encoders. Mind maps that represent main concepts involved in designing combinational circuits and our VHDL design flow that allow us to observe the same entity from diverse perspectives.

These are the circuit's symbol, truth table, and example timing diagram. rec.

Symbol
Fig. 1. Enc_4_10 symbol and the way to connect keys as active-low or active-high.

Fig. 2 shows how to connect active-low keys and how to drive common anode LED from an active-low chip output.

Keys and LED
Fig. 2. How to connect keys as active-low or active-high.

Fig. 3 shows the truth table of this encoder.

Truth table
Fig. 3. The Enc_4_8 truth table.

In Fig. 4 there is an example of sketch of a timing diagram. This sketch will be translated to VHDL as stimulus to drive the testbench.

timing diagram
  Fig. 4. Example of a timing diagram showing some input activity and the predicted outputs for each time interval. When translating such sketch to a testbench is easy to check any output combination.

In Fig. 5 there is the circuit in Proteus Enc_4_10.pdsprj showing output values when clicking simultaneously key 5 and key 2 and the circuit is enabled.

Proteus
  Fig. 5. Example of circuit in Proteus. Run the simulation and comprehend how the truth table works and the meaning of input and output signals.

 

2. Planning

For the plan B, let us try to adapt the truth table itself to VHDL. Fig. 6 shows a direct translation schematic, consisting of the truth table block and buffers to convert inputs and outputs to vectors.

schematic

Fig. 6. Schematic for the complete truth table using buffers to adapt inputs and outputs to the truth table statement, that this time is based on "std_match" instruction.

 Project location:

<drive>: \CSD\P2\Enc_4_10B\(files)

 

3. Development

1.- Write down the VHDL file translating the schematic above in Fig 6. This is an example VHDL file  Enc_10_4.vhd.

NOTE: Be aware on how to translate to VHDL: this circuit that looks pretty much the same, generates many inferred latches (memory cells not used in combinational circuits) and so, is not going to work properly. This is why, plan B, even if it looks clear and simple is not so; attention has to be paid to translate the truth table so that all the 2048 row are covered.

2.- Start an EDA tool project Enc_10_4_prj for a CPLD/FPGA target chip and obtain the synthesised circuit. Represent and analyse the RTL and technology views. This in Fig . 7 is an example of a RTL view of the circuit synthesised by the computer tool.

RTL

Fig. 7. Click the image to zoom. RTL generated from the VHDL synthesis. In this case, it seems quite simple to follow the circuit to check each equation. However, we'll solve the test better using a VHDL simulation.

3.- Examine and print a commented copy of the technology view to be very well aware of the design embedded in FPGA fabric.

Tech view
logic cells
  Fig. 7.This is an example of a technology view when targeting the FPGA chip MAX10 10M50DAF484C7. Study how functions are implemented for real in a programmable logic device (PLD).

4. Testing

1.- Start an EDA VHDL simulator project and verify the Device-Under-Test (DUT) using a VHDL simulator test bench (Enc_4_10_tb.vhd), which may be exactly the same for all the different plans.

testbench Fig. 8.This is the testbench schematic. The component under test is driven by input stimulus (process) and once the simulation is completed it is possible to inspect both inputs and outputs in a logic analyser (wave).

2.- Verify applying sufficient test vectors that the device works as expected (verify the truth table). Print timing diagram screen and add comments on the signals to show how the device works.

Functional

Fig. 9.  This is an example of a functional simulation of the Unit Under Test (UUT). 

 

5. Report

It is required a handwritten original project report containing sections 1 - 2 - 3 - 4, scanned figures with annotations, file listings, diagrams, sketches or any other resources. Theory stuff to comprehend how the circuit works may be included in section 1 on specifications. 

6. Prototyping

Use training boards and perform laboratory measurements to verify how the circuit works for real. The configuration file has to be downloaded into the target board as explained in the flow chart.