Primitive: 5-Bit Look-Up Table
- PRIMITIVE_GROUP: CLB
- PRIMITIVE_SUBGROUP: LUT
Introduction
This design element is a 5-bit look-up table (LUT). This element allows the creation of any logical function with five inputs.
The INIT parameter for the LUT primitive is what gives the LUT its logical value. By
default, this value is zero, thus driving the output to a zero regardless of the input values
(acting as a ground). However, in most cases a new INIT value must be determined in order
to specify the logic function for the LUT primitive. There are at least two methods by which
the LUT value can be determined:
- The Logic Table Method: A common method to determine the desired INIT value for a LUT is using a logic table. To do so, simply create a binary logic table of all possible inputs, specify the desired logic value of the output and then create the INIT string from those output values.
- The Equation Method: Another method to determine the LUT value is to define parameters or generics for each input to the LUT that correspond to their listed truth value and use those to build the logic equation you are after. This method is easier to understand once you have grasped the concept and is more self-documenting than the above method. However, this method does require the code to first specify the appropriate parameters or generics.
A LUT5 can be grouped with a LUT1, LUT2, LUT3, LUT4, or LUT5 and placed into a single LUT6 resource, as long as the combined input signals do not exceed five unique inputs. The Vivado Design Suite will automatically combine LUTs when necessary or advantageous. However this can be manually controlled by specifying a LUTNM or HLUTNM on the associated LUT components to specify specific grouping within a single LUT resource.
Logic Table
Inputs | Outputs | ||||
---|---|---|---|---|---|
I4 | I3 | I2 | I1 | I0 | LO |
0 | 0 | 0 | 0 | 0 | INIT[0] |
0 | 0 | 0 | 0 | 1 | INIT[1] |
0 | 0 | 0 | 1 | 0 | INIT[2] |
0 | 0 | 0 | 1 | 1 | INIT[3] |
0 | 0 | 1 | 0 | 0 | INIT[4] |
0 | 0 | 1 | 0 | 1 | INIT[5] |
0 | 0 | 1 | 1 | 0 | INIT[6] |
0 | 0 | 1 | 1 | 1 | INIT[7] |
0 | 1 | 0 | 0 | 0 | INIT[8] |
0 | 1 | 0 | 0 | 1 | INIT[9] |
0 | 1 | 0 | 1 | 0 | INIT[10] |
0 | 1 | 0 | 1 | 1 | INIT[11] |
0 | 1 | 1 | 0 | 0 | INIT[12] |
0 | 1 | 1 | 0 | 1 | INIT[13] |
0 | 1 | 1 | 1 | 0 | INIT[14] |
0 | 1 | 1 | 1 | 1 | INIT[15] |
1 | 0 | 0 | 0 | 0 | INIT[16] |
1 | 0 | 0 | 0 | 1 | INIT[17] |
1 | 0 | 0 | 1 | 0 | INIT[18] |
1 | 0 | 0 | 1 | 1 | INIT[19] |
1 | 0 | 1 | 0 | 0 | INIT[20] |
1 | 0 | 1 | 0 | 1 | INIT[21] |
1 | 0 | 1 | 1 | 0 | INIT[22] |
1 | 0 | 1 | 1 | 1 | INIT[23] |
1 | 1 | 0 | 0 | 0 | INIT[24] |
1 | 1 | 0 | 0 | 1 | INIT[25] |
1 | 1 | 0 | 1 | 0 | INIT[26] |
1 | 1 | 0 | 1 | 1 | INIT[27] |
1 | 1 | 1 | 0 | 0 | INIT[28] |
1 | 1 | 1 | 0 | 1 | INIT[29] |
1 | 1 | 1 | 1 | 0 | INIT[30] |
1 | 1 | 1 | 1 | 1 | INIT[31] |
INIT = Binary equivalent of the hexadecimal number assigned to the INIT attribute |
Port Descriptions
Port | Direction | Width | Function |
---|---|---|---|
I0 | Input | 1 | LUT input |
I1 | Input | 1 | LUT input |
I2 | Input | 1 | LUT input |
I3 | Input | 1 | LUT input |
I4 | Input | 1 | LUT input |
O | Output | 1 | LUT output |
Design Entry Method
Instantiation | Yes |
Inference | Recommended |
IP and IP Integrator Catalog | No |
Available Attributes
Attribute | Type | Allowed Values | Default | Description |
---|---|---|---|---|
INIT | HEX | Any 32-bit HEX value | All zeroes | Specifies the logical expression of this element. |
VHDL Instantiation Template
Unless they already exist, copy the following
two statements and paste them before the entity declaration.
Library UNISIM;
use UNISIM.vcomponents.all;
-- LUT5: 5-Bit Look-Up Table
-- Versal Prime series
-- Xilinx HDL Language Template, version 2021.1
LUT5_inst : LUT5
generic map (
INIT => X"00000000" -- Logic function
)
port map (
O => O, -- 1-bit output: LUT
I0 => I0, -- 1-bit input: LUT
I1 => I1, -- 1-bit input: LUT
I2 => I2, -- 1-bit input: LUT
I3 => I3, -- 1-bit input: LUT
I4 => I4 -- 1-bit input: LUT
);
-- End of LUT5_inst instantiation
Verilog Instantiation Template
// LUT5: 5-Bit Look-Up Table
// Versal Prime series
// Xilinx HDL Language Template, version 2021.1
LUT5 #(
.INIT(32'h00000000) // Logic function
)
LUT5_inst (
.O(O), // 1-bit output: LUT
.I0(I0), // 1-bit input: LUT
.I1(I1), // 1-bit input: LUT
.I2(I2), // 1-bit input: LUT
.I3(I3), // 1-bit input: LUT
.I4(I4) // 1-bit input: LUT
);
// End of LUT5_inst instantiation
Related Information
- Versal ACAP Configurable Logic Block Architecture Manual (AM005)