893 lines
41 KiB
ReStructuredText
893 lines
41 KiB
ReStructuredText
.. _circuit_model_examples:
|
|
|
|
Circuit model examples
|
|
----------------------
|
|
As circuit model in different types have various special syntax.
|
|
Here, we will provide detailed examples on each type of ``circuit_model``.
|
|
These examples may be considered as template for users to craft their own ``circuit_model``.
|
|
|
|
Inverters and Buffers
|
|
~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Template
|
|
````````
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="inv_buf" name="<string>" prefix="<string>" netlist="<string>" is_default="<int>">
|
|
<design_technology type="cmos" topology="<string>" size="<int>" num_level="<int>" f_per_stage="<float>"/>
|
|
<port type="input" prefix="<string>" size="<int>"/>
|
|
<port type="output" prefix="<string>" size="<int>"/>
|
|
</circuit_model>
|
|
|
|
.. option:: <design_technology type="cmos" topology="<string>" size="<int>" num_level="<int>" f_per_stage="<float>"/>
|
|
|
|
- ``topology="inverter|buffer"`` Specify the type of this component, can be either an inverter or a buffer.
|
|
|
|
- ``size="<int>"`` Specify the driving strength of inverter/buffer. For a buffer, the size is the driving strength of the inverter at the second level. Note that we consider a two-level structure for a buffer here.
|
|
|
|
- ``num_level="<int>"`` Define the number of levels of a tapered inverter/buffer. This is required when users need an inverter or a buffer consisting of >2 stages
|
|
|
|
- ``f_per_stage="<float>"`` Define the ratio of driving strength between the levels of a tapered inverter/buffer. Default value is 4.
|
|
|
|
Inverter 1x Example
|
|
```````````````````
|
|
|
|
:numref:`fig_inv1` is the inverter symbol depicted in this example.
|
|
|
|
.. _fig_inv1:
|
|
|
|
.. figure:: ./figures/Inverter_1.png
|
|
:scale: 100%
|
|
:alt: classical inverter 1x symbol
|
|
|
|
Classical inverter 1x symbol.
|
|
|
|
The XML code describing this inverter is:
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="inv_buf" name="inv1x" prefix="inv1x">
|
|
<design_technology type="cmos" topology="inverter" size="1"/>
|
|
<port type="input" prefix="in" size="1"/>
|
|
<port type="output" prefix="out" size="1"/>
|
|
</circuit_model>
|
|
|
|
This example shows:
|
|
|
|
- The topology chosen as inverter
|
|
- Size of 1 for the output strength
|
|
- The tapered parameter is not declared and is ``false`` by default
|
|
|
|
Power-gated Inverter 1x example
|
|
```````````````````````````````
|
|
|
|
The XML code describing an inverter which can be power-gated by the control signals ``EN`` and ``ENB`` :
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="inv_buf" name="INVTX1" prefix="INVTX1">
|
|
<design_technology type="cmos" topology="inverter" size="3" power_gated="true"/>
|
|
<port type="input" prefix="in" size="1" lib_name="I"/>
|
|
<port type="input" prefix="EN" size="1" lib_name="EN" is_global="true" default_val="0" is_config_enable="true"/>
|
|
<port type="input" prefix="ENB" size="1" lib_name="ENB" is_global="true" default_val="1" is_config_enable="true"/>
|
|
<port type="output" prefix="out" size="1" lib_name="Z"/>
|
|
</circuit_model>
|
|
|
|
.. note:: For power-gated inverters: all the control signals must be set as ``config_enable`` so that the testbench generation will generate testing waveforms. If the power-gated inverters are auto-generated , all the ``config_enable`` signals must be ``global`` signals as well. If the pwoer-gated inverters come from user-defined netlists, restrictions on ``global`` signals are free.
|
|
|
|
Buffer 2x example
|
|
`````````````````
|
|
|
|
:numref:`fig_buff` is the buffer symbol depicted in this example.
|
|
|
|
.. _fig_buff:
|
|
|
|
.. figure:: ./figures/Buffer.png
|
|
:scale: 50%
|
|
:alt: buffer symbol composed by 2 inverter, its output strength equals to 2
|
|
|
|
Buffer made by two inverter, with an output strength of 2.
|
|
|
|
The XML code describing this buffer is:
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="inv_buf" name="buf2" prefix="buf2">
|
|
<design_technology type="cmos" topology="buffer" size="2"/>
|
|
<port type="input" prefix="in" size="1"/>
|
|
<port type="output" prefix="out" size="1"/>
|
|
</circuit_model>
|
|
|
|
This example shows:
|
|
- The topology chosen as buffer
|
|
- Size of 2 for the output strength
|
|
- The tapered parameter is not declared and is ``false`` by default
|
|
|
|
|
|
Tapered inverter 16x example
|
|
````````````````````````````
|
|
|
|
:numref:`fig_invtap4` is the tapered inverter symbol depicted this example.
|
|
|
|
.. _fig_invtap4:
|
|
|
|
.. figure:: ./figures/Tapered_inverter.png
|
|
:scale: 50%
|
|
:alt: tapered inverter composed by 3 inverter for an output strength = 16
|
|
|
|
Inverter with high output strength made by 3 stage of inverter.
|
|
|
|
The XML code describing this inverter is:
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="inv_buf" name="tapdrive4" prefix="tapdrive4">
|
|
<design_technology type="cmos" topology=”inverter" size="1" num_level="3" f_per_stage="4"/>
|
|
<port type="input" prefix="in" size="1"/>
|
|
<port type="output" prefix="out" size="1"/>
|
|
</circuit_model>
|
|
|
|
|
|
This example shows:
|
|
- The topology chosen as inverter
|
|
- Size of 1 for the first stage output strength
|
|
- The number of stage is set to 3 by
|
|
- f_per_stage is set to 4. Then 2nd stage output strength is 4* the 1st stage output strength (so 4*1 = 4) and the 3rd stage output strength is 4* the 2nd stage output strength (so 4*4 = 16).
|
|
|
|
Pass-gate Logic
|
|
~~~~~~~~~~~~~~~
|
|
|
|
Template
|
|
````````
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="pass_gate" name="<string>" prefix="<string>" netlist="<string>" is_default="<int>">
|
|
<design_technology type="cmos" topology="<string>" nmos_size="<float>" pmos_size="<float>"/>
|
|
<input_buffer exist="false"/>
|
|
<output_buffer exist="false"/>
|
|
<port type="input" prefix="<string>" size="<int>"/>
|
|
<port type="output" prefix="<string>" size="<int>"/>
|
|
</circuit_model>
|
|
|
|
.. note:: Please do not add input and output buffers to pass-gate logic.
|
|
|
|
.. option:: <design_technology type="cmos" topology="<string>" nmos_size="<float>" pmos_size="<float>"/>
|
|
|
|
- ``topology="transmission_gate|pass_transistor"`` Specify the circuit topology for the pass-gate logic. A transmission gate consists of a *n*-type transistor and a *p*-type transistor. The pass transistor consists of only a *n*-type transistor.
|
|
|
|
- ``nmos_size="<float>"`` the size of *n*-type transistor in a transmission gate or pass_transistor, expressed in terms of the minimum width ``min_width`` defined in the transistor model in :ref:`technology_library`.
|
|
|
|
- ``pmos_size="<float>"`` the size of *p*-type transistor in a transmission gate, expressed in terms of the minimum width ``min_width`` defined in the transistor model in :ref:`technology_library`.
|
|
|
|
.. note:: ``nmos_size`` and ``pmos_size`` are required for FPGA-SPICE
|
|
|
|
Transmission-gate Example
|
|
`````````````````````````
|
|
|
|
:numref:`fig_passgate` is the pass-gate symbol depicted in this example.
|
|
|
|
.. _fig_passgate:
|
|
|
|
.. figure:: ./figures/pass-gate.png
|
|
:scale: 30%
|
|
:alt: pmos and nmos transistortors forming a pass-gate
|
|
|
|
Pass-gate made by a *p*-type and a *n*-type transistors.
|
|
|
|
The XML code describing this pass-gate is:
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="pass_gate" name="tgate" prefix="tgate">
|
|
<design_technology type="cmos" topology="transmission_gate" nmos_size="1" pmos_size="2"/>
|
|
<port type="input" prefix="in" size="1"/>
|
|
<port type="input" prefix="sram" size="1"/>
|
|
<port type="input" prefix="sramb" size="1"/>
|
|
<port type="output" prefix="out" size="1"/>
|
|
</circuit_model>
|
|
|
|
This example shows:
|
|
- A ``transmission_gate`` built with a *n*-type transistor in the size of 1 and a *p*-type transistor in the size of 2.
|
|
- 3 inputs considered, 1 for datapath signal and 2 to turn on/off the transistors gates
|
|
|
|
Pass-transistor Example
|
|
```````````````````````
|
|
|
|
:numref:`fig_passtran` is the pass-gate symbol depicted in this example.
|
|
|
|
.. _fig_passtran:
|
|
|
|
.. figure:: ./figures/pass_transistor.png
|
|
:scale: 30%
|
|
:alt: nmos transistortor forming a pass-gate
|
|
|
|
Pass-gate made by a nmos transistor.
|
|
|
|
The XML code describing this pass-gate is:
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="pass_gate" name="t_pass" prefix="t_pass">
|
|
<design_technology type="cmos" topology="pass_transistor"/>
|
|
<port type="input" prefix="in" size="1"/>
|
|
<port type="input" prefix="sram" size="1"/>
|
|
<port type="output" prefix="out" size="1"/>
|
|
</circuit_model>
|
|
|
|
This example shows:
|
|
- A ``pass_transistor`` build with a *n*-type transistor in the size of 1
|
|
- 2 inputs considered, 1 for datapath signal and 1 to turn on/off the transistor gate
|
|
|
|
SRAMs
|
|
~~~~~
|
|
|
|
Template
|
|
````````
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="sram" name="<string>" prefix="<string>" verilog_netlist="<string>" spice_netlist="<string>"/>
|
|
<design_technology type="cmos"/>
|
|
<input_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
<output_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
<port type="input" prefix="<string>" size="<int>"/>
|
|
<port type="output" prefix="<string>" size="<int>"/>
|
|
</circuit_model>
|
|
|
|
.. note:: The circuit designs of SRAMs are highly dependent on the technology node and well optimized by engineers. Therefore, FPGA-Verilog/SPICE requires users to provide their customized SRAM Verilog/SPICE/Verilog netlists. A sample Verilog/SPICE netlist of SRAM can be found in the directory SpiceNetlists in the released package. FPGA-Verilog/SPICE assumes that all the LUTs and MUXes employ the SRAM circuit design. Therefore, currently only one SRAM type is allowed to be defined.
|
|
|
|
.. note:: The information of input and output buffer should be clearly specified according to the customized Verilog/SPICE netlist! The existence of input/output buffers will influence the decision in creating testbenches, which may leads to larger errors in power analysis.
|
|
|
|
SRAM with BL/WL
|
|
```````````````
|
|
.. _fig_sram_blwl:
|
|
|
|
.. figure:: ./figures/sram_blwl.png
|
|
:scale: 100%
|
|
|
|
An example of a SRAM with Bit-Line (BL) and Word-Line (WL) control signals
|
|
|
|
The following XML codes describes the SRAM cell shown in :numref:`fig_sram_blwl`.
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="sram" name="sram_blwl" prefix="sram_blwl" verilog_netlist="sram.v" spice_netlist="sram.sp"/>
|
|
<design_technology type="cmos"/>
|
|
<input_buffer exist="false"/>
|
|
<output_buffer exist="false"/>
|
|
<port type="bl" prefix="bl" size="1"/>
|
|
<port type="blb" prefix="blb" size="1"/>
|
|
<port type="wl" prefix="wl" size="1"/>
|
|
<port type="output" prefix="out" size="1"/>
|
|
<port type="output" prefix="outb" size="1"/>
|
|
</circuit_model>
|
|
|
|
.. note:: OpenFPGA always assume that a ``WL`` port should be the write/read enable signal, while a ``BL`` port is the data input.
|
|
|
|
.. note:: When the ``memory_bank`` type of configuration procotol is specified, SRAM modules should have a BL and a WL.
|
|
|
|
Configurable Latch
|
|
``````````````````
|
|
|
|
.. _fig_config_latch:
|
|
|
|
.. figure:: ./figures/config_latch.png
|
|
:scale: 100%
|
|
|
|
An example of a SRAM-based configurable latch with Bit-Line (BL) and Word-Line (WL) control signals
|
|
|
|
The following XML codes describes the configurable latch shown in :numref:`fig_config_latch`.
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="sram" name="config_latch" prefix="config_latch" verilog_netlist="sram.v" spice_netlist="sram.sp"/>
|
|
<design_technology type="cmos"/>
|
|
<input_buffer exist="false"/>
|
|
<output_buffer exist="false"/>
|
|
<port type="clock" prefix="clk" size="1"/>
|
|
<port type="bl" prefix="bl" size="1"/>
|
|
<port type="wl" prefix="wl" size="1"/>
|
|
<port type="output" prefix="out" size="1"/>
|
|
<port type="output" prefix="outb" size="1"/>
|
|
</circuit_model>
|
|
|
|
.. note:: OpenFPGA always assume that a ``WL`` port should be the write/read enable signal, while a ``BL`` port is the data input.
|
|
|
|
.. note:: When the ``frame_based`` type of configuration procotol is specified, the configurable latch or a SRAM with ``BL`` and ``WL`` should be specified.
|
|
|
|
Logic gates
|
|
~~~~~~~~~~~
|
|
|
|
The circuit model in the type of ``gate`` aims to support direct mapping to standard cells or customized cells provided by technology vendors or users.
|
|
|
|
Template
|
|
````````
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="gate" name="<string>" prefix="<string>" spice_netlist="<string>" verilog_netlist="<string>"/>
|
|
<design_technology type="cmos" topology="<string>"/>
|
|
<input_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
<output_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
<port type="input" prefix="<string>" lib_name="<string>" size="<int>"/>
|
|
<port type="output" prefix="<string>" lib_name="<string>" size="<int>"/>
|
|
</circuit_model>
|
|
|
|
.. option:: <design_technology type="cmos" topology="<string>"/>
|
|
|
|
- ``topology="AND|OR|MUX2"`` Specify the logic functionality of a gate. As for standard cells, the size of each port is limited to 1. Currently, only 2-input and single-output logic gates are supported.
|
|
|
|
2-input OR Gate Example
|
|
```````````````````````
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="gate" name="OR2" prefix="OR2" is_default="true">
|
|
<design_technology type="cmos" topology="OR"/>
|
|
<input_buffer exist="false"/>
|
|
<output_buffer exist="false"/>
|
|
<port type="input" prefix="a" size="1"/>
|
|
<port type="input" prefix="b" size="1"/>
|
|
<port type="output" prefix="out" size="1"/>
|
|
<delay_matrix type="rise" in_port="a b" out_port="out">
|
|
10e-12 8e-12
|
|
</delay_matrix>
|
|
<delay_matrix type="fall" in_port="a b" out_port="out">
|
|
10e-12 7e-12
|
|
</delay_matrix>
|
|
</circuit_model>
|
|
|
|
This example shows:
|
|
- A 2-input OR gate without any input and output buffers
|
|
- Propagation delay from input ``a`` to ``out`` is 10ps in rising edge and and 8ps in falling edge
|
|
- Propagation delay from input ``b`` to ``out`` is 10ps in rising edge and 7ps in falling edge
|
|
|
|
MUX2 Gate Example
|
|
```````````````````````
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="gate" name="MUX2" prefix="MUX2" is_default="true" verilog_netlist="sc_mux.v">
|
|
<design_technology type="cmos" topology="MUX2"/>
|
|
<input_buffer exist="false"/>
|
|
<output_buffer exist="false"/>
|
|
<port type="input" prefix="in0" lib_name="B" size="1"/>
|
|
<port type="input" prefix="in1" lib_name="A" size="1"/>
|
|
<port type="input" prefix="sel" lib_name="S" size="1"/>
|
|
<port type="output" prefix="out" lib_name="Y" size="1"/>
|
|
</circuit_model>
|
|
|
|
This example shows:
|
|
- A 2-input MUX gate with two inputs ``in0`` and ``in1``, a select port ``sel`` and an output port ``out``
|
|
- The Verilog of MUX2 gate is provided by the user in the netlist ``sc_mux.v``
|
|
- The use of ``lib_name`` to bind to a Verilog module with different port names.
|
|
- When binding to the Verilog module, the inputs will be swapped. In other words, ``in0`` of the circuit model will be wired to the input ``B`` of the MUX2 cell, while ``in1`` of the circuit model will be wired to the input ``A`` of the MUX2 cell.
|
|
|
|
.. note:: OpenFPGA requires a fixed truth table for the ``MUX2`` gate. When the select signal sel is enabled, the first input, i.e., ``in0``, will be propagated to the output, i.e., ``out``. If your standard cell provider does not offer the exact truth table, you can simply swap the inputs as shown in the example.
|
|
|
|
Multiplexers
|
|
~~~~~~~~~~~~
|
|
|
|
Template
|
|
````````
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="mux" name="<string>" prefix="<string>">
|
|
<design_technology type="<string>" structure="<string>" num_level="<int>" add_const_input="<bool>" const_input_val="<int>" local_encoder="<bool>"/>
|
|
<input_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
<output_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
<pass_gate_logic type="<string>" circuit_model_name="<string>"/>
|
|
<port type="input" prefix="<string>" size="<int>"/>
|
|
<port type="output" prefix="<string>" size="<int>"/>
|
|
<port type="sram" prefix="<string>" size="<int>"/>
|
|
</circuit_model>
|
|
|
|
.. note:: user-defined Verilog/SPICE netlists are not currently supported for multiplexers.
|
|
|
|
.. option:: <design_technology type="<string>" structure="<string>" num_level="<int>" add_const_input="<bool>" const_input_val="<int>" local_encoder="<bool>"/>
|
|
|
|
- ``structure="tree|multi-level|one-level"`` Specify the multiplexer structure for a multiplexer. The structure option is only valid for SRAM-based multiplexers. For RRAM-based multiplexers, currently we only support the one-level structure
|
|
|
|
- ``num_level="<int>"`` Specify the number of levels when ``multi-level`` structure is selected.
|
|
|
|
- ``add_const_input="true|false"`` Specify if an extra input should be added to the multiplexer circuits. For example, an 4-input multiplexer will be turned to a 5-input multiplexer. The extra input will be wired to a constant value, which can be specified through the XML syntax ``const_input_val``.
|
|
|
|
.. note:: Adding an extra constant input will help reducing the leakage power of FPGA and parasitic signal activities, with a limited area overhead.
|
|
|
|
- ``const_input_val="0|1"`` Specify the constant value, to which the extra input will be connected. By default it is 0. This syntax is only valid when the ``add_const_input`` is set to true.
|
|
|
|
- ``local_encoder="true|false"``. Specify if a local encoder should be added to the multiplexer circuits. The local encoder will interface the SRAM inputs of multiplexing structure and SRAMs. It can encode the one-hot codes (that drive the select port of multiplexing structure) to a binary code. For example, 8-bit ``00000001`` will be encoded to 3-bit ``000``. This will help reduce the number of SRAM cells used in FPGAs as well as configuration time (especially for scan-chain configuration protocols). But it may cost an area overhead.
|
|
|
|
.. note:: Local encoders are only applicable for one-level and multi-level multiplexers. Tree-like multiplexers are already encoded in their nature.
|
|
|
|
.. note:: A multiplexer should have only three types of ports, ``input``, ``output`` and ``sram``, which are all mandatory.
|
|
|
|
.. note:: For tree-like multiplexers, they can be built with standard cell MUX2. To enable this, users should define a ``circuit_model``, which describes a 2-input multiplexer (See details and examples in how to define a logic gate using ``circuit_model``. In this case, the ``circuit_model_name`` in the ``pass_gate_logic`` should be the name of MUX2 ``circuit_model``.
|
|
|
|
.. note:: When multiplexers are not provided by users, the size of ports do not have to be consistent with actual numbers in the architecture.
|
|
|
|
One-level Mux Example
|
|
`````````````````````
|
|
|
|
:numref:`fig_mux1` illustrates an example of multiplexer modelling, which consists of input/output buffers and a transmission-gate-based tree structure.
|
|
|
|
.. _fig_mux1:
|
|
|
|
.. figure:: ./figures/mux1lvl.png
|
|
:scale: 60%
|
|
:alt: Detailed one level Multiplexer
|
|
|
|
An example of a one level multiplexer with transistor-level design parameters
|
|
|
|
The code describing this Multiplexer is:
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="mux" name="mux_1level" prefix="mux_1level">
|
|
<design_technology type="cmos" structure="one-level"/>
|
|
<input_buffer exist="on" circuit_model_name="inv1x"/>
|
|
<output_buffer exist="on" circuit_model_name="tapbuf4"/>
|
|
<pass_gate_logic circuit_model_name="tgate"/>
|
|
<port type="input" prefix="in" size="4"/>
|
|
<port type="output" prefix="out" size="1"/>
|
|
<port type="sram" prefix="sram" size="4"/>
|
|
</circuit_model>
|
|
|
|
This example shows:
|
|
- A one-level 4-input CMOS multiplexer
|
|
- All the inputs will be buffered using the circuit model ``inv1x``
|
|
- All the outputs will be buffered using the circuit model ``tapbuf4``
|
|
- The multiplexer will be built by transmission gate using the circuit model ``tgate``
|
|
- The multiplexer will have 4 inputs and 4 SRAMs to control which datapath to propagate
|
|
|
|
Tree-like Multiplexer Example
|
|
`````````````````````````````
|
|
|
|
:numref:`fig_mux` illustrates an example of multiplexer modelling, which consists of input/output buffers and a transmission-gate-based tree structure.
|
|
|
|
.. _fig_mux:
|
|
|
|
.. figure:: ./figures/mux.png
|
|
:scale: 100%
|
|
:alt: Examples of Mux-tree
|
|
|
|
An example of a tree-like multiplexer with transistor-level design parameters
|
|
|
|
If we arbitrarily fix the number of Mux entries at 4, the following code could illustrate (a):
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="mux" name="mux_tree" prefix="mux_tree">
|
|
<design_technology type="cmos" structure="tree"/>
|
|
<input_buffer exist="on" circuit_model_name="inv1x"/>
|
|
<output_buffer exist="on" circuit_model_name="tapdrive4"/>
|
|
<pass_gate_logic circuit_model_name="tgate"/>
|
|
<port type="input" prefix="in" size="4"/>
|
|
<port type="output" prefix="out" size="1"/>
|
|
<port type="sram" prefix="sram" size="3"/>
|
|
</circuit_model>
|
|
|
|
This example shows:
|
|
- A tree-like 4-input CMOS multiplexer
|
|
- All the inputs will be buffered using the circuit model ``inv1x``
|
|
- All the outputs will be buffered using the circuit model ``tapbuf4``
|
|
- The multiplexer will be built by transmission gate using the circuit model ``tgate``
|
|
- The multiplexer will have 4 inputs and 3 SRAMs to control which datapath to propagate
|
|
|
|
Standard Cell Multiplexer Example
|
|
`````````````````````````````````
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="mux" name="mux_stdcell" prefix="mux_stdcell">
|
|
<design_technology type="cmos" structure="tree"/>
|
|
<input_buffer exist="on" circuit_model_name="inv1x"/>
|
|
<output_buffer exist="on" circuit_model_name="tapdrive4"/>
|
|
<pass_gate_logic circuit_model_name="MUX2"/>
|
|
<port type="input" prefix="in" size="4"/>
|
|
<port type="output" prefix="out" size="1"/>
|
|
<port type="sram" prefix="sram" size="3"/>
|
|
</circuit_model>
|
|
|
|
This example shows:
|
|
- A tree-like 4-input CMOS multiplexer built by the standard cell ``MUX2``
|
|
- All the inputs will be buffered using the circuit model ``inv1x``
|
|
- All the outputs will be buffered using the circuit model ``tapbuf4``
|
|
- The multiplexer will have 4 inputs and 3 SRAMs to control which datapath to propagate
|
|
|
|
Look-Up Tables
|
|
~~~~~~~~~~~~~~
|
|
|
|
Template
|
|
````````
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="lut" name="<string>" prefix="<string>" spice_netlist="<string>" verilog_netlist="<string>"/>
|
|
<design_technology type="cmos" fracturable_lut="<bool>"/>
|
|
<input_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
<output_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
<lut_input_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
<lut_input_inverter exist="<string>" circuit_model_name="<string>"/>
|
|
<lut_intermediate_buffer exist="<string>" circuit_model_name="<string>" location_map="<string>"/>
|
|
<pass_gate_logic type="<string>" circuit_model_name="<string>"/>
|
|
<port type="input" prefix="<string>" size="<int>" tri_state_map="<string>" circuit_model_name="<string>"/>
|
|
<port type="output" prefix="<string>" size="<int>" lut_frac_level="<int>" lut_output_mask="<int>"/>
|
|
<port type="sram" prefix="<string>" size="<int>" mode_select="<bool>" circuit_model_name="<string>" default_val="<int>"/>
|
|
</circuit_model>
|
|
|
|
.. note:: The Verilog/SPICE netlists of LUT can be auto-generated or customized.
|
|
The auto-generated LUTs are based on a tree-like multiplexer, whose gates of the transistors are used as the inputs of LUTs and the drains/sources of the transistors are used for configurable memories (SRAMs).
|
|
The LUT provided in customized Verilog/SPICE netlist should have the same decoding methodology as the traditional LUT.
|
|
|
|
.. option:: <lut_input_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
|
|
Define transistor-level description for the buffer for the inputs of a LUT (gates of the internal multiplexer).
|
|
|
|
- ``exist="true|false"`` Specify if the input buffer should exist for LUT inputs
|
|
|
|
- ``circuit_model_name="<string>"`` Specify the ``circuit_model`` that will be used to build the input buffers
|
|
|
|
.. note:: In the context of LUT, ``input_buffer`` corresponds to the buffer for the datapath inputs of multiplexers inside a LUT. ``lut_input_buffer`` corresponds to the buffer at the inputs of a LUT
|
|
|
|
.. option:: <lut_input_inverter exist="<string>" circuit_model_name="<string>"/>
|
|
|
|
Define transistor-level description for the inverter for the inputs of a LUT (gates of the internal multiplexer).
|
|
|
|
- ``exist="true|false"`` Specify if the input buffer should exist for LUT inputs
|
|
|
|
- ``circuit_model_name="<string>"`` Specify the ``circuit_model`` that will be used to build the input inverters
|
|
|
|
.. option:: <lut_intermediate_buffer exist="<string>" circuit_model_name="<string>" location_map="<string>"/>
|
|
|
|
Define transistor-level description for the buffer locating at intermediate stages of internal multiplexer of a LUT.
|
|
|
|
- ``exist="true|false"`` Specify if the input buffer should exist at intermediate stages
|
|
|
|
- ``circuit_model_name="<string>"`` Specify the ``circuit_model`` that will be used to build these buffers
|
|
|
|
- ``location_map="[1|-]"`` Customize the location of buffers in intermediate stages. Users can define an integer array consisting of '1' and '-'. For example, ``-1-1-`` indicates buffer inseration to every two stages of the LUT multiplexer tree, considering a 6-input LUT.
|
|
|
|
.. note:: For a LUT, three types of ports (``input``, ``output`` and ``sram``) should be defined. If the user provides an customized Verilog/SPICE netlist, the bandwidth of ports should be defined to the same as the Verilog/SPICE netlist. To support customizable LUTs, each type of port contain special keywords.
|
|
|
|
.. option:: <port type="input" prefix="<string>" size="<int>" tri_state_map="<string>" circuit_model_name="<string>"/>
|
|
|
|
- ``tri_state_map="[-|1]"`` Customize which inputs are fixed to constant values when the LUT is in fracturable modes. For example, ``tri_state_map="----11"`` indicates that the last two inputs will be fixed to be logic '1' when a 6-input LUT is in fracturable modes.
|
|
|
|
- ``circuit_model_name="<string>"`` Specify the circuit model to build logic gates in order to tri-state the inputs in fracturable LUT modes. It is required to use an ``AND`` gate to force logic '0' or an ``OR`` gate to force logic '1' for the input ports.
|
|
|
|
.. option:: <port type="output" prefix="<string>" size="<int>" lut_frac_level="<int>" lut_output_mask="<int>"/>
|
|
|
|
- ``lut_frac_level="<int>"`` Specify the level in LUT multiplexer tree where the output port are wired to. For example, ``lut_frac_level="4"`` in a fracturable LUT6 means that the output are potentially wired to the 4th stage of a LUT multiplexer and it is an output of a LUT4.
|
|
|
|
- ``lut_output_mask="<int>"`` Describe which fracturable outputs are used. For instance, in a 6-LUT, there are potentially four LUT4 outputs can be wired out. ``lut_output_mask="0,2"`` indicates that only the first and the thrid LUT4 outputs will be used in fracturable mode.
|
|
|
|
.. note:: The size of the output port should be consistent to the length of ``lut_output_mask``.
|
|
|
|
.. option:: <port type="sram" prefix="<string>" size="<int>" mode_select="<bool>" circuit_model_name="<string>" default_val="<int>"/>
|
|
|
|
- ``mode_select="true|false"`` Specify if this port is used to switch the LUT between different operating modes, the SRAM bits of a fracturable LUT consists of two parts: configuration memory and mode selecting.
|
|
|
|
- ``circuit_model_name="<string>"`` Specify the circuit model to be drive the SRAM port. Typically, the circuit model should be in the type of ``ccff`` or ``sram``.
|
|
|
|
- ``default_val="0|1"`` Specify the default value for the SRAM port. The default value will be used in generating testbenches for unused LUTs
|
|
|
|
.. note:: The size of a mode-selection SRAM port should be consistent to the number of '1s' or '0s' in the ``tri_state_map``.
|
|
|
|
Single-Output LUT Example
|
|
`````````````````````````
|
|
|
|
:numref:`fig_lut` illustrates an example of LUT modeling, which consists of input/output buffers and a transmission-gate-based tree structure.
|
|
|
|
.. _fig_lut:
|
|
|
|
.. figure:: ./figures/lut.png
|
|
:scale: 80%
|
|
:alt: Detailed LUT composition
|
|
|
|
An example of a LUT with transistor-level design parameters.
|
|
|
|
The code describing this LUT is:
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="lut" name="lut6" prefix="lut6">
|
|
<input_buffer exist="on" circuit_model="inv1x"/>
|
|
<output_buffer exist="on" circuit_model_name="inv1x"/>
|
|
<lut_input_buffer exist="on" circuit_model_name="buf2"/>
|
|
<lut_input_inverter exist="on" circuit_model_name="inv1x"/>
|
|
<pass_gate_logic circuit_model_name="tgate"/>
|
|
<port type="input" prefix="in" size="6"/>
|
|
<port type="output" prefix="out" size="1"/>
|
|
<port type="sram" prefix="sram" size="64"/>
|
|
</circuit_model>
|
|
|
|
This example shows:
|
|
- A 6-input LUT which is configurable by 64 SRAM cells.
|
|
- The multiplexer inside LUT will be built with transmission gate using circuuit model ``inv1x``
|
|
- There are no internal buffered inserted to any intermediate stage of a LUT
|
|
|
|
Fracturable LUT Example
|
|
`````````````````````````
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="lut" name="frac_lut6" prefix="frac_lut6" dump_structural_verilog="true">
|
|
<design_technology type="cmos" fracturable_lut="true"/>
|
|
<input_buffer exist="true" circuit_model_name="inv1x"/>
|
|
<output_buffer exist="true" circuit_model_name="inv1x"/>
|
|
<lut_input_inverter exist="true" circuit_model_name="inv1x"/>
|
|
<lut_input_buffer exist="true" circuit_model_name="buf4"/>
|
|
<lut_intermediate_buffer exist="true" circuit_model_name="buf4" location_map="-1-1-"/>
|
|
<pass_gate_logic circuit_model_name="tgate"/>
|
|
<port type="input" prefix="in" size="6" tri_state_map="-----1" circuit_model_name="OR2"/>
|
|
<port type="output" prefix="lut5_out" size="2" lut_frac_level="5" lut_output_mask="0,1"/>
|
|
<port type="output" prefix="lut6_out" size="1" lut_output_mask="0"/>
|
|
<port type="sram" prefix="sram" size="64"/>
|
|
<port type="sram" prefix="mode" size="1" mode_select="true" circuit_model_name="ccff" default_val="1"/>
|
|
</circuit_model>
|
|
|
|
This example shows:
|
|
- Fracturable 6-input LUT which is configurable by 65 SRAM cells.
|
|
- Intermedate buffers are added to every two stages of the internal multiplexer
|
|
- There is a SRAM cell to switch the operating mode of this LUT, configured by a configuration-chain flip-flop ``ccff``
|
|
- The last input ``in[5]`` of LUT will be tri-stated in dual-LUT5 mode.
|
|
- An 2-input OR gate will be wired to the last input ``in[5]`` to tri-state the input. The mode-select SRAM will be wired to an input of the OR gate.
|
|
It means that when the mode-selection bit is '1', the LUT will operate in dual-LUT5 mode.
|
|
- There will be two outputs wired to the 5th stage of routing multiplexer (the outputs of dual 5-input LUTs)
|
|
- By default, the mode-selection configuration bit will be '1', indicating that by default the LUT will operate in dual-LUT5 mode.
|
|
|
|
Flip-Flops
|
|
~~~~~~~~~~
|
|
|
|
Template
|
|
````````
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="ccff|ff" name="<string>" prefix="<string>" spice_netlist="<string>" verilog_netlist="<string>"/>
|
|
<design_technology type="cmos"/>
|
|
<input_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
<output_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
<port type="input" prefix="<string>" size="<int>"/>
|
|
<port type="output" prefix="<string>" size="<int>"/>
|
|
<port type="clock" prefix="<string>" size="<int>"/>
|
|
</circuit_model>
|
|
|
|
.. note:: The circuit designs of flip-flops are highly dependent on the technology node and well optimized by engineers. Therefore, FPGA-Verilog/SPICE requires users to provide their customized FF Verilog/SPICE/Verilog netlists. A sample Verilog/SPICE netlist of FF can be found in the directory SpiceNetlists in the released package.
|
|
|
|
The information of input and output buffer should be clearly specified according to the customized SPICE netlist! The existence of input/output buffers will influence the decision in creating SPICE testbenches, which may leads to larger errors in power analysis.
|
|
|
|
.. note:: FPGA-Verilog/SPICE currently support only one clock domain in the FPGA. Therefore there should be only one clock port to be defined and the size of the clock port should be 1.
|
|
|
|
.. option:: <circuit_model type="ccff|ff" name="<string>" prefix="<string>" spice_netlist="<string>" verilog_netlist="<string>"/>
|
|
|
|
- ``type="ccff|ff"`` Specify the type of a flip-flop. ``ff`` is a regular flip-flop while ``ccff`` denotes a configuration-chain flip-flop
|
|
|
|
.. note:: A flip-flop should have three types of ports, ``input``, ``output`` and ``clock``.
|
|
|
|
.. note:: If the user provides a customized Verilog/SPICE netlist, the bandwidth of ports should be defined to the same as the Verilog/SPICE netlist.
|
|
|
|
.. note:: In a valid FPGA architecture, users should provide at least either a ``ccff`` or ``sram`` circuit model, so that the configurations can loaded to core logic.
|
|
|
|
Flip-Flop example
|
|
`````````````````
|
|
|
|
:numref:`fig_ff` illustrates an example of regular flip-flop.
|
|
|
|
.. _fig_ff:
|
|
|
|
.. figure:: ./figures/FF.png
|
|
:scale: 50%
|
|
:alt: FF symbol
|
|
|
|
An example of classical Flip-Flop.
|
|
|
|
The code describing this FF is:
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="ff" name="dff" prefix="dff" verilog_netlist="ff.v" spice_netlist="ff.sp">
|
|
<port type="input" prefix="D" lib_name="D" size="1"/>
|
|
<port type="input" prefix="Set" lib_name="S" size="1" is_global="true"/>
|
|
<port type="input" prefix="Reset" lib_name="R" size="1" is_global="true"/>
|
|
<port type="output" prefix="Q" lib_name="Q" size="1"/>
|
|
<port type="clock" prefix="clk" lib_name="CK" size="1" is_global="true"/>
|
|
</circuit_model>
|
|
|
|
This example shows:
|
|
- A regular flip-flop which is defined in a Verilog netlist ``ff.v`` and a SPICE netlist ``ff.sp``
|
|
- The flip-flop has ``set`` and ``reset`` functionalities
|
|
- The flip-flop port names defined differently in standard cell library and VPR architecture. The ``lib_name`` capture the port name defined in standard cells, while ``prefix`` capture the port name defined in ``pb_type`` of VPR architecture file
|
|
|
|
Configuration-chain Flip-flop Example
|
|
`````````````````````````````````````
|
|
|
|
:numref:`fig_ccff` illustrates an example of scan-chain flop-flop used to build a configuration chain.
|
|
|
|
.. _fig_ccff:
|
|
|
|
.. figure:: ./figures/scff.png
|
|
:scale: 50%
|
|
:alt: SCFF symbol
|
|
|
|
An example of a Scan-Chain Flip-Flop.
|
|
|
|
The code describing this FF is:
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="ccff" name="ccff" prefix="ccff" verilog_netlist="ccff.v" spice_netlist="ccff.sp">
|
|
<port type="input" prefix="D" size="1"/>
|
|
<port type="output" prefix="Q" size="2"/>
|
|
<port type="clock" prefix="CK" size="1" is_global="true"/>
|
|
</circuit_model>
|
|
|
|
This example shows:
|
|
- A configuration-chain flip-flop which is defined in a Verilog netlist ``ccff.v`` and a SPICE netlist ``ccff.sp``
|
|
- The flip-flop has a global clock port, ``CK``, which will be wired a global programming clock
|
|
|
|
Hard Logics
|
|
~~~~~~~~~~~
|
|
|
|
Template
|
|
````````
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="hardlogic" name="<string>" prefix="<string>" verilog_netlist="<string>" spice_netlist="<string>"/>
|
|
<design_technology type="cmos"/>
|
|
<input_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
<output_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
<port type="input" prefix="<string>" size="<int>"/>
|
|
<port type="output" prefix="<string>" size="<int>"/>
|
|
</circuit_model>
|
|
|
|
.. note:: Hard logics are defined for non-configurable resources in FPGA architectures, such as adders, multipliers and RAM blocks.
|
|
Their circuit designs are highly dependent on the technology node and well optimized by engineers.
|
|
As more functional units are included in FPGA architecture, it is impossible to auto-generate these functional units.
|
|
Therefore, FPGA-Verilog/SPICE requires users to provide their customized Verilog/SPICE netlists.
|
|
|
|
.. note:: Examples can be found in hard_logic_example_link_
|
|
|
|
.. _hard_logic_example_link: https://github.com/LNIS-Projects/OpenFPGA/tree/master/openfpga_flow/VerilogNetlists
|
|
|
|
.. note:: The information of input and output buffer should be clearly specified according to the customized Verilog/SPICE netlist! The existence of input/output buffers will influence the decision in creating SPICE testbenches, which may leads to larger errors in power analysis.
|
|
|
|
1-bit Full Adder Example
|
|
````````````````````````
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="hard_logic" name="adder" prefix="adder" spice_netlist="adder.sp" verilog_netlist="adder.v">
|
|
<design_technology type="cmos"/>
|
|
<input_buffer exist="true" circuit_model_name="inv1x"/>
|
|
<output_buffer exist="true" circuit_model_name="inv1x"/>
|
|
<port type="input" prefix="a" size="1"/>
|
|
<port type="input" prefix="b" size="1"/>
|
|
<port type="input" prefix="cin" size="1"/>
|
|
<port type="output" prefix="cout" size="1"/>
|
|
<port type="output" prefix="sumout" size="1"/>
|
|
</circuit_model>
|
|
|
|
Routing Wire Segments
|
|
~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
FPGA architecture requires two type of wire segments:
|
|
|
|
- ``wire``, which targets the local wires inside the logic blocks. The wire has one input and one output, directly connecting the output of a driver and the input of the downstream unit, respectively
|
|
- ``chan_wire``, especially targeting the channel wires. The channel wires have one input and two outputs, one of which is connected to the inputs of Connection Boxes while the other is connected to the inputs of Switch Boxes. Two outputs are created because from the view of layout, the inputs of Connection Boxes are typically connected to the middle point of channel wires, which has less parasitic resistances and capacitances than connected to the ending point.
|
|
|
|
Template
|
|
````````
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="wire|cham_wire" name="<string>" prefix="<string>" spice_netlist="<string>" verilog_netlist="<string>"/>
|
|
<design_technology type="cmos"/>
|
|
<input_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
<output_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
<port type="input" prefix="<string>" size="<int>"/>
|
|
<port type="output" prefix="<string>" size="<int>"/>
|
|
<wire_param model_type="<string>" R="<float>" C="<float>" num_level="<int>"/>
|
|
</circuit_model>
|
|
|
|
.. note:: FPGA-Verilog/SPICE can auto-generate the Verilog/SPICE model for wires while also allows users to provide their customized Verilog/SPICE netlists.
|
|
|
|
.. note:: The information of input and output buffer should be clearly specified according to the customized netlist! The existence of input/output buffers will influence the decision in creating testbenches, which may leads to larger errors in power analysis.
|
|
|
|
.. option:: <wire_param model_type="<string>" R="<float>" C="<float>" num_level="<int>"/>
|
|
|
|
- ``model_type="pi|T"`` Specify the type of RC models for this wire segement. Currently, OpenFPGA supports the π-type and T-type multi-level RC models.
|
|
- ``R="<float>"`` Specify the total resistance of the wire
|
|
- ``C="<float>"`` Specify the total capacitance of the wire.
|
|
- ``num_level="<int>"`` Specify the number of levels of the RC wire model.
|
|
|
|
.. note:: wire parameters are essential for FPGA-SPICE to accurately model wire parasitics
|
|
|
|
Routing Track Wire Example
|
|
``````````````````````````
|
|
|
|
:numref:`fig_wire` depicts the modeling for a length-2 channel wire.
|
|
|
|
.. _fig_wire:
|
|
|
|
.. figure:: ./figures/wire.png
|
|
:scale: 80%
|
|
:alt: map to buried treasure
|
|
|
|
An example of a length-2 channel wire modeling
|
|
|
|
The code describing this wire is:
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="chan_wire" name="segment0" prefix="chan_wire"/>
|
|
<design_technology type="cmos"/>
|
|
<port type="input" prefix="mux_out" size="1"/>
|
|
<port type="output" prefix="cb_sb" size="1"/>
|
|
<wire_param model_type="pi" res_val="103.84" cap_val="13.80e-15" level="1"/>
|
|
</circuit_model>
|
|
|
|
This example shows
|
|
- A routing track wire has 1 input and output
|
|
- The routing wire will be modelled as a 1-level π-type RC wire model with a total resistance of :math:`103.84\Omega` and a total capacitance of :math:`13.89fF`
|
|
|
|
I/O pads
|
|
~~~~~~~~
|
|
|
|
Template
|
|
````````
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="iopad" name="<string>" prefix="<string>" spice_netlist="<string>" verilog_netlist="<string>"/>
|
|
<design_technology type="cmos"/>
|
|
<input_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
<output_buffer exist="<string>" circuit_model_name="<string>"/>
|
|
<port type="input" prefix="<string>" size="<int>"/>
|
|
<port type="output" prefix="<string>" size="<int>"/>
|
|
<port type="sram" prefix="<string>" size="<int>" mode_select="<bool>" circuit_model_name="<string>" default_val="<int>"/>
|
|
</circuit_model>
|
|
|
|
.. note:: The circuit designs of I/O pads are highly dependent on the technology node and well optimized by engineers.
|
|
Therefore, FPGA-Verilog/SPICE requires users to provide their customized Verilog/SPICE/Verilog netlists. A sample Verilog/SPICE netlist of an I/O pad can be found in the directory SpiceNetlists in the released package.
|
|
|
|
.. note:: The information of input and output buffer should be clearly specified according to the customized netlist! The existence of input/output buffers will influence the decision in creating testbenches, which may leads to larger errors in power analysis.
|
|
|
|
I/O Pad Example
|
|
```````````````
|
|
|
|
:numref:`fig_iopad` depicts an I/O pad.
|
|
|
|
.. _fig_iopad:
|
|
|
|
.. figure:: ./figures/iopad.png
|
|
:scale: 50%
|
|
:alt: IO-Pad symbol
|
|
|
|
An example of an IO-Pad
|
|
|
|
The code describing this IO-Pad is:
|
|
|
|
.. code-block:: xml
|
|
|
|
<circuit_model type="iopad" name="iopad" prefix="iopad" spice_netlist="io.sp" verilog_netlist="io.v">
|
|
<design_technology type="cmos"/>
|
|
<input_buffer exist="true" circuit_model_name="INVTX1"/>
|
|
<output_buffer exist="true" circuit_model_name="INVTX1"/>
|
|
<pass_gate_logic circuit_model_name="TGATE"/>
|
|
<port type="inout" prefix="pad" size="1"/>
|
|
<port type="sram" prefix="en" size="1" mode_select="true" circuit_model_name="ccff" default_val="1"/>
|
|
<port type="input" prefix="outpad" size="1"/>
|
|
<port type="output" prefix="inpad" size="1"/>
|
|
</circuit_model>
|
|
|
|
This example shows
|
|
- A general purpose I/O cell defined in Verilog netlist ``io.sp`` and SPICE netlist ``io.sp``
|
|
- The I/O cell has an ``inout`` port as the bi-directional port
|
|
- The directionality of I/O can be controlled by a configuration-chain flip-flop defined in circuit model ``ccff``
|
|
- If unused, the I/O cell will be configured to ``1``
|