[Solved] Digital_IC computational_system

$25

File Name: Digital_IC_computational_system.zip
File Size: 292.02 KB

SKU: [Solved] Digital_IC computational_system Category: Tag:
5/5 - (1 vote)

1. Problem Description

Please design a computational system whose transfer function is defined in section 2.3 by using CIC FPGA Development Kit. About CIC FPGA Development Kit, please refer to Appendix A. Each team can only use the Verilog or VHDL RTL to complete the design according to the specifications given in the following section and the constraints as illustrated in Appendix B and Appendix C. You can only claim that your design is successful if it passes the checks by the test bench provided by CIC. You can refer to Appendix B for detailed information of files provided by CIC and Appendix C for design constraints of target device setting and predefined pin assignment.

After the end of the contest, CIC will rate the successful designs according to the scoring rule defined in section 3. All the related materials as illustrated in Appendix D should be transferred to CIC. And the procedures for transferring are described in Appendix E. Note that the time for this contest is from 8:30 to 20:30. That means you have to transfer all the related materials to CIC before 20:30.

2. Design Specifications

2.1 Block Overview

2.2 I/O Interface

Table I I/O Interface

Signal Name I/O Width Description
clk I 1 clock for the computational system
reset I 1 reset the state of the computational system when it asserts
X I 8 input data of the computational system
Y O 10 computed output

2.3 Functional Description

Refer to Fig.1, a series of 8-bit positive integer is generated as the input of the computational system by the test bench. The output value Y, which is a 10-bit positive integer is calculated according to equations (1), (2), (3) and (4). Note that denotes the quotient operation.

j+n1

Xi

Xavg j = i=nj .. (1)

where Xi is the value of the ith input data and j 1.

XS = {X j , X j+1, X j+2,, X j+n1}. (2)

Xapprj = Xavg j

Xapprj =Xi if Xavg j XS(Xi XS) and (Xi < Xavg j ) and (Xavg j Xi is if Xavg j XS minimal). (3)

where Xapprj is the value of the jth approximate average.

j+n1

(Xi +Xapprj )

Yj = i= j n1 (4)

where Yj is the value of the jth output data.

The computational system produces the output sequence according to the given input sequence. Each input and output data in the respective sequence is indexed. This index, in terms of hardware, is the relative time when the input data is given or the output data is ready. Thinking as a hardware designer, the approximate average is chosen from the last n input data which should be stored in the system. The system should be able to calculate the integral part of the real average of the last n input data first. And then if the integral part of the real average equals to any one of the last n input data, the approximate average is simply the integral part. Else the approximate average is the one which is one of the last n input data whose value is smaller than and most close to the integral part of the real average. The above descriptions stated the desired operations as those defined by equations (1), (2), and (3).

After the approximate average is obtained, the output value can be calculated according to equation (4). First, the last n input value is added by the corresponding approximate average. And then they are summed up and divided by n-1. The output value is the quotient after division.

For example, assume that n=4, X1=3, X2=24, X3=16, X4=8, and X5=3. After the first 4 input items are given, the system should store them and calculate the output value. The average of the first 4 input values is 12(only the integral part is left). Since it is not in the set of {X1, X2, X3, X4}, the system selects one from {X1, X2, X3, X4} as the approximate average whose value is smaller than 12 and close to 12. In this case, the approximate average is 8. So the first output value is calculated as [(3+ 8) + (24 +8) + (16 +8) + (8+ 8)]/[(4 1)]= 27 . Similar to those described above, when the 5th input data item is given, the system should store X2, X3, X4 and X5 and calculate the corresponding output value. The 2nd output value should be the same as the first one because the values stored in the system is the same.

2.4 Timing Diagrams

Fig. 2 I/O Timing Diagram

Table II Timing Value

Symbol Description Value
Tcycle clock period user defined
Treset reset pulse width 2 Tcycle
Tos setup time from valid output to positive edge of clk 0.5ns
Toh hold time from positive edge of clk to invalid output 0.5ns

The I/O timing diagram is as shown in Fig. 2. For this contest, n in equations (1)-(4) are fixed to 9. The computational system is reset by asserting reset signal for 2 periods. The input X is changed to the next at the negative edges of the clock while output Y is checked by the test bench at positive edges of the clock. Note that the output should be stable around the positive edges of the clock. The setup and hold time requirements for the output are listed in Table II. The first output data should be valid after the input data changes from 9th one to 10th and before the next positive clock edge. After that, the output should be changed to the next at the next positive clock edge and so on, that is to say, the test bench checks one output value per clock cycle.

3. Scoring

The referees will check the completeness as well as the correctness of your design data. If all materials listed in RTL category and Post-layout Gate-Level Category of Table VII are uploaded to CIC, the design is complete. (PS. Post-layout Gate-Level stands for the design passes FPGA placement and routing phases.) The correctness means the result of Post-layout Gate-Level simulation under the user-defined clock rate is the same as the golden result provided by CIC and without any setup/hold time violations.

Once the completeness and correctness are confirmed by the referees, the score is calculated. The scoring rule is quite simple. The earlier you complete your design, the higher score youll get.

And the higher the score, the higher the rank will be. Note that the time you complete your design is determined by the time the design of the latest version is uploaded to CICs ftp sites.

If necessary, those designs with only files in RTL category uploaded are also ranked. In this case, the correctness means RTL simulation result is the same as the golden result provided by CIC.

Appendix

Appendix A details what is CIC FPGA Development Kit. The related files and notes provided by CIC for designers using Verilog and VHDL are listed and described in the Appendix B. Appendix C lists design constraints of the target device and pin assignment settings. The materials that each team should hand in are listed in Appendix D while the transferring procedures are described in Appendix E. Several inputs as well as their corresponding outputs and intermediums are provided as an example for debugging in Appendix F.

Appendix A

CIC FPGA Development Kit provides all necessary and latest EDA tools for FPGA design. It consists of design entry, logic simulation, logic synthesis and FPGA Implementation as shown in Table III.

Table III CIC FPGA Development Kit

Functionality Corresponding EDA tools
Design Entry VHDL / Verilog Entry
Logic Simulator Mentor Graphic ModelSim(V5.8 SE)
Logic Synthesizer Synplicity Synplify Pro(v7.x)
FPGA Implementation Altera Quartus-II (v4.x)

Appendix B

After you download and extract the altera_fpga.zip file, you will find the hierarchical structure of the files and directories provided by CIC as depicted in Fig.3. Each team should start the design based on this file structure. Table IV details each item of Fig.3.

CS.v

Fig.3 File Structure Provided by CIC

Table IV Description of File Structure

File Name File Description
Altera_<Team_ID_Number> This is the root directory of the contest. Directory name Altera_<Team_ID_Number> should be modified with your team ID number
readme.txt contains file descriptions and some important notes
fpga_contest.pdf the description of FPGA contest problem
report000.txt report form
reporttem.txt template of the report
Project The whole design should be compiled in the Project directory.
CS.v I/O declarations of the design RTL code for using Verilog
CS.vhd I/O declarations of the design RTL code for s using VHDL
Simulation simulation directory
testfixture.v test bench for verifying design
in.dat input patterns
out_golden.dat golden output patterns
VHDL_lib Altera FPGA simulation library for VHDL
Verilog_lib Altera FPGA simulation library for Verilog
Result Final simulation results should be duplicated in this Result directory. Please refer to Appendix D.
ResultFunction_sim RTL Simulation results should be duplicated in this directory
ResultTiming_sim Post-layout Gate-level simulation results should be duplicated in this directory

Several rules and tips of using these files are stated below. Please read them carefully before you start to design.

When you write RTL code and create FPGA design

When you create your design, the top file name of the RTL code should be CS.v or CS.vhd, and the names of the top module I/O ports should be the same as those defined in the file CS.v or CS.vhd CIC provide. Otherwise, your design will not be able to be recognized by the test bench. Besides, the whole design should be compiled in the Project directory.

When you verify the RTL functional code and Post-layout gate-level netlist

Please use testfixture.v in Simulation directory as the test bench to verify your design by ModelSim. In this test bench, 2000 inputs (in.dat) are provided and the corresponding golden outputs (out_golden.dat) are compared to verify the correctness of your design. For Post-layout Gate-level timing simulation, remember to modify the parameter CYCLE to your target clock period. Also remember to modify the parameter SDFFILE to the name of your SDF file. After simulation is finished, if your design meets the specification, a PASS message will be shown on the display. Also, please make a copy of the RTL functional simulation result to the Function_sim directory and the Post-layout Gate-Level timing simulation result to the Timing_sim directory, respectively.

Note that besides the released test patterns, CIC will also verify your design using other unreleased test patterns to further confirm the correctness.

When you finish your design

Once you finish your design, you have to fill in the fields in report000.txt. Referees will check the correctness of your design according to the materials you hand in. Refer to reporttem.txt if you have any difficulties filling in the fields.

Appendix C

Please define the target device and pin assignment as shown in Table V & Table VI for your Altera FPGA Design. Otherwise, the design will be treated not correct.

Table V Target Device Setting

Altera
Target Family Cyclone
Target Device EP1C3
Target Package TQFP
Pin count 100
Target Speed 8

Appendix D

The materials that each team should hand in are listed below.

Table VII Necessary Deliverables

Directory File Description
report.xxx design report
RTL category
Directory File Description
Function_sim *.v or *.vhd Verilog (or VHDL) synthesizable RTL code
Post-layout Gate-Level category
Directory File Description
Timing_sim *.vo or *.vho Post-layout Gate-Level netlist generated byQuartus II EDA writer
*.sdo SDF timing information generated by Quartus IIEDA writer
*.sof bitstream file for configuring FPGA device

Several rules and tips of generating these files are stated below. Please read them carefully before you hand in the materials.

For RTL category

Once you finish your design, you have to fill in the fields as many as possible in report.xxx of which the extension xxx indicate the revision number. Referees will check the correctness of your design according to the materials you hand in. Refer to report.tem if you have any difficulties filling in the fields.

Note that the RTL code should be synthesizable and dont forget to copy RTL files (*.v or *.vhd) to ResultFunction_sim directory. Otherwise, the design will be treated as not correct.

For Post-layout Gate-Level category

The gate-level netlist should not contain any behavioral statements, for example, assign statement and dont forget to copy Post-layout Gate-Level netlist (*.vo or *.vho), SDF file (*.sdo), bitstream file (*.sof) to ResultTiming_sim directory. Otherwise, the design will be treated as not correct.

Appendix E

All file directories in Fig.3 have to be handed in. Before the files are transferred to CIC, all files should be archived and compressed into ZIP format*. The following is a step-by-step illustration.

  1. Change to the Result
  2. Make sure to duplicate all necessary deliverables in Table VII to the ResultFunction_sim and ResultTiming_sim directories, respectively. The file extension xxx means the revision number. For example, for the first revision, the file name is 000. You may have improvements on your design later and want to re-transmit the design data. Now, the report file name should be report.001 to let referees always get the latest updated design data.
  3. Archive and compress the Result directory into .zip format. After this operation, you will get zip. The purpose of using xxx postfix is the same as that of using xxx extension for report file.
  4. Check if all necessary fields of the report form (xxx) are filled in.
  5. Transfer the compressed file zip and the report file report.xxx via ftp with binary mode to the following ftp sites. The username and password will be given 4 days before of the contest via email. Any problems, please contact CIC.

FTP site1 (NTU)iccftp.ee.ntu.edu.tw (140.112.20.85)

FTP site2 (CIC)iccftp.cic.org.tw (140.126.24.6)

FTP site3 (NCKU)iccftp.ee.ncku.edu.tw (140.116.156.55)

FTP site 4(CIC South region office): iccftp1.cic.org.tw(140.110.117.20)

  1. Repeat the above steps if you have updated the design. Remember to change the extension of the report file name as well as the postfix of the compressed file name to indicate the revision number. Also remember that the content of the report should be updated.

*If you didnt have any archive/compress tools, you can download trial version of archive and compress tools as follows:

winzip: http://www.winzip.com/

winrar: http://www.rarlab.com/index.htm Appendix F

An example is shown for debugging in the next pages.

(Hexadecimal number)

index i Xi Xavg j Xapprj j+n1(Xi + Xapprj )i= j Yj index j
1 8f
2 0b
3 5d
4 20
5 f3
6 3e
7 e5
8 03
9 0c 5c 3e 056a 00ad 1
10 74 59 3e 054f 00a9 2
11 79 65 5d 06d4 00da 3
12 01 5b 3e 0561 00ac 4
13 30 5c 3e 0571 00ae 5
14 2e 46 3e 04ac 0095 6
15 a4 52 30 0494 0092 7
16 76 45 30 0425 0084 8
17 84 54 30 04a6 0094 9
18 51 5b 51 0614 00c2 10
19 d6 66 51 0676 00ce 11
20 70 65 51 066d 00cd 12
21 35 6b 51 06a1 00d4 13
22 10 68 51 0681 00d0 14
23 23 66 51 0676 00ce 15
24 e7 6e 51 06b9 00d7 16
25 3b 67 51 067e 00cf 17
26 6d 65 51 0667 00cc 18
27 34 61 3b 0584 00b0 19
28 61 54 3b 050f 00a1 20
29 89 57 3b 0528 00a5 21
30 bf 67 61 0708 00e1 22
31 dc 7d 6d 0840 0108 23
32 d3 91 89 09ec 013d 24
33 9c 88 6d 08a5 0114 25
34 8f 92 8f 0a2b 0145 26

(Decimal number)

index i Xi Xavg j Xapprj j+n1(Xi + Xapprj )i= j Yj index j
1 143
2 11
3 93
4 32
5 243
6 62
7 229
8 3
9 12 92 62 1386 173 1
10 116 89 62 1359 169 2
11 121 101 93 1748 218 3
12 1 91 62 1377 172 4
13 48 92 62 1393 174 5
14 46 70 62 1196 149 6
15 164 82 48 1172 146 7
16 118 69 48 1061 132 8
17 132 84 48 1190 148 9
18 81 91 81 1556 194 10
19 214 102 81 1654 206 11
20 112 101 81 1645 205 12
21 53 107 81 1697 212 13
22 16 104 81 1665 208 14
23 35 102 81 1654 206 15
24 231 110 81 1721 215 16
25 59 103 81 1662 207 17
26 109 101 81 1639 204 18
27 52 97 59 1412 176 19
28 97 84 59 1295 161 20
29 137 87 59 1320 165 21
30 191 103 97 1800 225 22
31 220 125 109 2112 264 23
32 211 145 137 2540 317 24
33 156 136 109 2213 276 25
34 143 146 143 2603 325 26

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[Solved] Digital_IC computational_system
$25