User Tools


This is an old revision of the document!


Seven Segment Controller

In the seven segment decoder laboratory assignment, you created a circuit that can display a hexadecimal value on a single digit.

On this page, you are provided with a Seven-Segment Controller module that can display a unique value on each digit of the eight-digit display. Displaying multiple digits on the display is accomplished by multiplexing the cathode signals and “driving” or displaying one digit at a time. To make it appear to the human eye that more than one digit is displayed, we rapidly turn on each digit and sequence through the digits fast enough so the eye and brain cannot see this sequencing. Even though only one digit is actively displayed at a time, our persistence of vision and slow brain response cannot perceive this single digit display strategy. Instead, it will appear as if all eight digits are being displayed at the same time. If you were to take a high-speed video of the display, you would see this sequential digit display approach in action.

The example shown below demonstrates how the value “0123” is displayed on the first four digits of the display using time multiplexing. In this example, only one digit is being driven on the display at a given time – digit “0” is displayed on digit 3 (the left most digit) during the first time period, digit “1” is displayed on digit 2 during the second time period, digit “2” is displayed on digit 1 during the third time period, and digit “3” is displayed on digit 0 (the right most digit) during the fourth time period. This process of displaying one digit at a time repeats continuously to make it appear that all four digits are being displayed at the same time.

This example demonstrates the signals that must be asserted during each time period to produce the desired display. During the first time period, AN3 is asserted (i.e. is low) and the other annode signals are deasserted. The following cathode signals are asserted (driven low) to display the character “0” on digit 3: CA, CB, CC, CD, CE, and CF. During the next digit period, AN2 is asserted (while AN2 is deasserted) and the following cathode signals are asserted to display the character “1”: CB and CC. Next, AN1 is asserted and the following cathode signals are asserted to display the character “2”: CA, CB, CC, CD, and CE. Finally, AN0 is asserted and the following cathode signals are asserted to display the character “3”: CA, CB, CC, CD, and CG. This process repeats continuously to keep all four values actively highlighted on the four-digit display.

The challenge we have is deciding how long to drive each anode signal. If the “on” time of the anode signals is too long, the eye and brain will detect that only one digit is being displayed at a time and we will see the digits turn on and then off in sequential order. If the “on” time is just right, human brain will perceive all four characters as being displayed at the same time through persistence of vision.

The easiest way to sequence through the eight different digits is to create a “free running” counter. A free running counter is a counter that increments continuously at each clock cycle (See Figure 16.6). When the free running counter reaches all 1's, it will then roll over to zero on the next clock cycle. The top three bits of this free running counter will cycle through the digits, while the rest of the bits of the counter will determine the amount of time to display each digit. For example, if you used an 8-bit counter then the top three bits of the counter would determine which digit to display and the bottom 5 bits would be used to count the duration that each digit is displayed. With 5 bits, each digit will be displayed for 25 = 32 clock cycles.

The table below summarizes how the top three bits of this free running counter are used to select the appropriate digit in the display:

Top 3 Bits Function
000 Display digit 0 (right most) - Assert AN0
001 Display digit 1 - Assert AN1
010 Display digit 2 - Assert AN2
011 Display digit 3 - Assert AN3
100 Display digit 4 - Assert AN4
101 Display digit 5 - Assert AN5
110 Display digit 6 - Assert AN6
111 Display digit 7 (left most) - Assert AN7

The clock we have on the NEXYS 4 board runs at 100 MHz with a clock period of 10 ns. If you use an eight-bit counter to sequence the digits as described above, the top three bits would be used to sequence through each digit and the bottom five bits would be used to count the number of clock cycles to display each digit. Thus, each digit would be displayed for 25 x 10 ns = 320 ns. (The module provided below does not use an 8-bit counter, this is just described here as an example).

SystemVerilog Module

Here is the SystemVerilog module. To use this in your Vivado project, 1) click the link to download the file directly, 2) move the file to your project directory, and 3) add the file as a source in your Vivado project.

SevenSegmentControl.sv
//////////////////////////////////////////////////////////////////////////////////
//
//  Filename: SevenSegmentControl.sv
//
//  Author: Mike Wirthlin, Jeff Goeders
//  
//  Description:
//
//     
//////////////////////////////////////////////////////////////////////////////////
 
module SevenSegmentControl(
    input wire logic            clk, 
    input wire logic            reset, 
    input wire logic    [31:0]  dataIn, 
    input wire logic    [7:0]   digitDisplay, 
    input wire logic    [7:0]   digitPoint, 
    output logic        [7:0]   anode, 
    output logic        [7:0]   segment
    );
 
    parameter integer COUNT_BITS = 17;
 
    logic   [COUNT_BITS-1:0]    count_val;
    logic   [2:0]               anode_select;
    logic   [7:0]               cur_anode;
    logic   [3:0]               cur_data_in;
 
    // Create counter    
    always_ff @(posedge clk) begin
       if (reset)
           count_val <= 0;
       else
           count_val <= count_val + 1;
    end
 
    // Signal to indicate which anode we are driving
    assign anode_select = count_val[COUNT_BITS-1:COUNT_BITS-3];
 
    // current andoe
    assign cur_anode = 
                        (anode_select == 3'b000) ? 8'b11111110 :
                        (anode_select == 3'b001) ? 8'b11111101 :
                        (anode_select == 3'b010) ? 8'b11111011 :
                        (anode_select == 3'b011) ? 8'b11110111 :
                        (anode_select == 3'b100) ? 8'b11101111 :
                        (anode_select == 3'b101) ? 8'b11011111 :
                        (anode_select == 3'b110) ? 8'b10111111 :
                        8'b01111111;
 
    // Mask anode values that are not enabled with digit display
    //  (if a bit of digitDisplay is '0' (off), then it will be 
    //   inverted and "ored" with the annode making it '1' (no drive)
    assign anode = cur_anode | (~digitDisplay);
 
    // This is a statement to simulate a common student problem with the
    // anode is "stuck". This statement is used to make sure the testbench catches
    // this condition.
    //assign anode = 8'hff;              
 
    assign cur_data_in = 
                        (anode_select == 3'b000) ? dataIn[3:0] :
                        (anode_select == 3'b001) ? dataIn[7:4]  :
                        (anode_select == 3'b010) ? dataIn[11:8]  :
                        (anode_select == 3'b011) ? dataIn[15:12]  :
                        (anode_select == 3'b100) ? dataIn[19:16]  :
                        (anode_select == 3'b101) ? dataIn[23:20]  :
                        (anode_select == 3'b110) ? dataIn[27:24]  :
                        dataIn[31:28] ;
 
    // Digit point (drive segmetn with inverted version of input digit point)
    assign segment[7] = 
                        (anode_select == 3'b000) ? ~digitPoint[0] :
                        (anode_select == 3'b001) ? ~digitPoint[1]  :
                        (anode_select == 3'b010) ? ~digitPoint[2]  :
                        (anode_select == 3'b011) ? ~digitPoint[3]  :
                        (anode_select == 3'b100) ? ~digitPoint[4]  :
                        (anode_select == 3'b101) ? ~digitPoint[5]  :
                        (anode_select == 3'b110) ? ~digitPoint[6]  :
                        ~digitPoint[7] ;
 
    assign segment[6:0] =
        (cur_data_in == 0) ? 7'b1000000 :
        (cur_data_in == 1) ? 7'b1111001 :
        (cur_data_in == 2) ? 7'b0100100 :
        (cur_data_in == 3) ? 7'b0110000 :
        (cur_data_in == 4) ? 7'b0011001 :
        (cur_data_in == 5) ? 7'b0010010 :
        (cur_data_in == 6) ? 7'b0000010 :
        (cur_data_in == 7) ? 7'b1111000 :
        (cur_data_in == 8) ? 7'b0000000 :
        (cur_data_in == 9) ? 7'b0010000 :
        (cur_data_in == 10) ? 7'b0001000 :
        (cur_data_in == 11) ? 7'b0000011 :
        (cur_data_in == 12) ? 7'b1000110 :
        (cur_data_in == 13) ? 7'b0100001 :
        (cur_data_in == 14) ? 7'b0000110 :
        7'b0001110;
 
 
endmodule

Module Description

The controller has the following three important inputs:

  • Data input (32 bits): Each digit can display 4-bits of data. With eight digits, the seven segment display can display up to 32-bits of data. You provide a 32-bit data input that indicates what data to display on all 8 of the digits.
  • Digit Display (8 bits): The seven segment controller does not need to turn on all eight digits of the display all of the time. In some applications, you may only want to display four of the eight digits (when there is only 16-bits of data to display). The controller can “turn off” or disable individual digits of the display by never asserting their corresponding Anode signals. This digit display input will have one bit for each digit of the display. A '1' in this bit indicates that the controller should turn on the digit, while a '0' turns off the digit.
  • Digit Point (8 bits): There is one digit point in the bottom right corner of each digit of the seven segment display and there is a corresponding cathode signal for this digit point. This 8-bit input indicates which of the digit points of the display you are to highlight. There is one bit for each of the digits in the display. A '1' indicates that the corresponding digit point should be turned on and a '0' indicates that the corresponding digit point should be turned off.

Full list of ports for this module:

Module Name: SevenSegmentControl
Port Name Direction Width Function
clk Input 1 100 MHz System Clock
reset Input 1 Active high reset, which resets the counter
dataIn Input 32 Data value to display
digitDisplay Input 8 Indicates which digits to display
digitPoint Input 8 Indicates which digit points to turn on
anode Output 8 Anode signal for each of the 8 digits
segment Output 8 Segment signals ([7] is digit point, [6:0] are regular segments)

Exercise #2 - Seven Segment Controller Verification

In this exercise you will simulate your seven segment controller to verify that it functions as you expect it should. This controller is the most complex circuit you have created so far and you will likely have logic problems in your circuit. It is very important that you resolve any logic problems at this point before moving to the top-level design. You will simulate your controller in two ways: with a simple TCL script and a testbench.

TCL Script

In the first simulation step, perform a simple simulation by writing a TCL script and testing the primary functions of the controller. You will not need to exhaustively test all of the features of your controller but you should verify that the major functions of the controller are working properly.

The TCL script below provides a start for such a simulation. Re-read this tutorial if you want to review TCL commands .

restart

# Set a repeating clock
add_force clk {0 0} {1 5} -repeat_every 10
add_force reset 1
run 20ns
add_force reset 0
# set default values for the inputs
add_force -radix hex dataIn 01234567
add_force digitPoint 11111111
add_force digitDisplay 11111111

Extend this script by adding the following:

  • Add a “run” command to run the simulation long enough to cycle through all eight digits (you determined how long it will take to simulate all digits earlier in the preliminary).
  • Add “add_force” commands to change the value being displayed and/or the digit point.
  • Add a final “run” command to cycle through all eight digits again.

After running your simulation script, carefully analyze the waveform of the outputs to test the following features of your controller:

  1. Verify that the controller sequences through each of the anode signals one at a time (i.e., more than one anode signal is never asserted at the same time),
  2. Measure the length of the anode signal and verify that it meets the requirements described earlier, and
  3. Review the cathode signals during at least one anode period and verify that they are correct for the digit that is being displayed.

Resolve any obvious problems with your controller before proceeding to the testbench simulation.

Include a copy of your TCL simulation script

Testbench

After resolving any major issues with your seven-segment controller, you can more thoroughly test your controller with a testbench. This simulation testbench tests many different cases and may find problems with your controller that are not obvious. Download the following testbench, add it as a simulation source to your project, and simulate your controller. This simulation will take a relatively long time (about 2 minutes) and you will need to “run” the simulation until you get the “done” message from the console (about 30ms in total).

Resolve any problems identified by the testbench and simulate your controller until your controller passes all of the testbench cases.

tb_sevensegmentcontrol.v

Include a copy of your seven segment controller SystemVerilog

Exercise 2 Pass-off: Show a TA your extended tcl script and your testbench output.

Exercise #3 - Top-Level Circuit

The final design exercise is to create a top-level module that uses your seven segment display controller to display various settings and values on the buttons. Begin this exercise by creating a new SystemVerilog module with the following name and ports:

Module Name: SevenSegmentControlTop
Port Name Direction Width Function
clk Input 1 100 MHz System Clock
CPU_RESETN Input 1 Active-low reset button
sw Input 16 16 Slide switches to determine what to display
btnc Input 1 Assert all segments (test mode)
btnr Input 1 Blank the display
segment Output 8 Cathode signals for seven segment display
anode Output 8 Anode signals for each of the eight digits

Begin the body of your module by instancing your seven segment controller and attaching the clk input to the top-level clock, the CPU_RESETN to the reset input (remember to invert it), and the segment and anode signals to the top-level segment and anode signals. You will need to create additional logic to control the other signals of your seven segment controller (dataIn, digitDisplay, and digitPoint). In particular, your logic will generate the values for these signals based on the values of the top-level buttons and switches. The figure below provides a high-level diagram of how you should organize your top-level design.

The statements below describe how the seven segment display should operate under a number of different conditions. You will need to create dataflow logic that uses the buttons and switches from the top-level design and drive the dataIn, digitDisplay, and digitPoint inputs to your seven segment display controller. Note that these statements below are listed from highest to lowest priority (for example, if both btnc and btnr are pressed at the same time, btnc's function has priority).

  • btnc: Test mode: each digit has all of its segments lit up, including digit points.
  • btnr: Blank the display (nothing is shown on the display).
  • Default (no buttons pressed): Lower four digits display value of switches. Upper four digits are blanked. No digit points are turned on.

Note that in the default case you are connecting the switches only to the bottom four digits (both 16 bits wide). Since the top four digits are blank, it does not matter what you assign the top 16 bits of dataIn to.

After creating your top-level SystemVerilog file (and resolving any compilation errors), simulate your file to see that it operates as you expect it should. Create a .tcl simulation file that does the following:

  • Simulates the pressing of each button individually for enough time to display the value on all eight digits
  • Simulates the pressing of more than one button at a time (for at least two cases) and long enough to display the value on all eight digits

Once you are satisfied that your module operates correctly, proceed to the next exercise.

Include a copy of your top-level .tcl simulation script

Include a copy of your top-level SystemVerilog file

Perform the steps of Synthesis, Implementation, and Bitstream Generation. Download your design and experiment with several cases to demonstrate that it is working properly.

Provide a summary of your synthesis warnings.

Summarize the size of your circuit (LUTs and FFs).

Final Pass Off

Pass off your laboratory by demonstrating the following to the TA:

  • Pass offs for Exercise 1 and 2
  • Your working circuit on the Nexys4 board

How many hours did you work on the lab?

Please provide any suggestions for improving this lab in the future.

Personal Exploration

Here are some ideas for personal exploration in this laboratory:

  • Experiment with different amounts of time to assert the anode signals and discuss the effect
  • Provide a different function for the display based on the button and switch inputs
  • Review the schematic of your design and comment on any interesting findings
  • Review the layout of your logic on the FPGA

Describe your personal exploration activities


TA Notes and Feedback