Difference between revisions of "ATC"

From Vlsiwiki
Jump to: navigation, search
Line 1: Line 1:
 
==Automatic Testbench Creator (ATC)==
 
==Automatic Testbench Creator (ATC)==
 
+
<br><br><br>
 
The ATC is a VPI testbench creator, it processes a verilog topfile, which is the device under test (DUT).<br>
 
The ATC is a VPI testbench creator, it processes a verilog topfile, which is the device under test (DUT).<br>
 
By processing the DUT, the ATC creates an object with inputs and outputs which are exactly the same as the DUT.<br>
 
By processing the DUT, the ATC creates an object with inputs and outputs which are exactly the same as the DUT.<br>
  
* aunit.v *
+
aunit.v  
  
module alu_add(input int data1,
+
module alu_add(input int data1,
input int data2,
+
  input int data2,
output int out);
+
  output int out);
  always_comb begin
+
    always_comb begin
      out = data1 + data2;
+
      out = data1 + data2;
  end
+
    end
end module
+
end module
  
  
 
The ATC created testbench will give access to data1, data2 and out, which is the complete interface of aunit.v
 
The ATC created testbench will give access to data1, data2 and out, which is the complete interface of aunit.v
  
# Implementation:
+
==Implementation:==<br>
 
The ATC is integrated into rake. To use it, edit the xml file in your top directory of the module.
 
The ATC is integrated into rake. To use it, edit the xml file in your top directory of the module.
  
Line 23: Line 23:
  
  
# ce.xml # (Excerpt taken)
+
* ce.xml (Excerpt taken)<br>
...
+
 
<testbench base="salu_tb" suite="vcs" ttb="salu.v">
+
<code>
 +
<testbench base="salu_tb" suite="vcs" ttb="salu.v">
 
     <verilog>
 
     <verilog>
 
       tests/salu_tb.v
 
       tests/salu_tb.v
Line 34: Line 35:
 
     <tab>tests/salu_tb.tab</tab>
 
     <tab>tests/salu_tb.tab</tab>
 
   </testbench>
 
   </testbench>
...
+
</code>
 +
 
 +
*This will create the complete interface for your testbench int the tests/ directory
 +
 
 +
<p>
 +
#dut_tb.v  - The verilog testbench, VCS will run this (Autogenerated every time your run rake)<br>
 +
#dut_tb.cpp - Your VPI testbench, C++ (Autogenerated only if file doesn't exist)<br>
 +
#dut_tb.h  - Any vars / stuff you need for your tb (Autogenerated only if file doesn't exist)<br>
 +
#dut_ttb.h  - VPI definitions, defines object that you use to communicate to ports of DUT (Autogenerated every time your run rake)<br>
 +
#dut_ttb.cpp - VPI Testbench backend, communication with VCS... (Autogenerated every time your run rake)<br>
 +
#dut_ttb.tab - VCS file that correlates verilog functions with C++ VPI functions (Autogenerated every time your run rake, deprecated)<br></p>
 +
 
 +
WORK IN PROGRESS

Revision as of 23:19, 7 July 2009

Automatic Testbench Creator (ATC)




The ATC is a VPI testbench creator, it processes a verilog topfile, which is the device under test (DUT).
By processing the DUT, the ATC creates an object with inputs and outputs which are exactly the same as the DUT.

aunit.v

module alu_add(input int data1,
 input int data2,
 output int out);
   always_comb begin
      out = data1 + data2;
   end
end module


The ATC created testbench will give access to data1, data2 and out, which is the complete interface of aunit.v

==Implementation:==
The ATC is integrated into rake. To use it, edit the xml file in your top directory of the module.

  • In the testbench xml tag, add the ttb attribute, and set it to the name of your DUT.
    This assumes that the dut.v file is relative to rtl/dut.v, and the output of the ATC will be to tests/


  • ce.xml (Excerpt taken)

<testbench base="salu_tb" suite="vcs" ttb="salu.v">
   <verilog>
     tests/salu_tb.v
   </verilog>
   <source>
     tests/salu_tb.cpp
   </source>
   <tab>tests/salu_tb.tab</tab>
 </testbench>

  • This will create the complete interface for your testbench int the tests/ directory

  1. dut_tb.v - The verilog testbench, VCS will run this (Autogenerated every time your run rake)
  2. dut_tb.cpp - Your VPI testbench, C++ (Autogenerated only if file doesn't exist)
  3. dut_tb.h - Any vars / stuff you need for your tb (Autogenerated only if file doesn't exist)
  4. dut_ttb.h - VPI definitions, defines object that you use to communicate to ports of DUT (Autogenerated every time your run rake)
  5. dut_ttb.cpp - VPI Testbench backend, communication with VCS... (Autogenerated every time your run rake)
  6. dut_ttb.tab - VCS file that correlates verilog functions with C++ VPI functions (Autogenerated every time your run rake, deprecated)

WORK IN PROGRESS