LUT5

NAME
SYNOPSIS
DESCRIPTION
FUNCTIONS
PINS
PARAMETERS
LICENSE

NAME

lut5 - Arbitrary 5-input logic function based on a look-up table

SYNOPSIS

loadrt lut5 [count=N|names=name1[,name2...]]

DESCRIPTION

lut5 constructs a logic function with up to 5 inputs using a look-up table. The value for function can be determined by writing the truth table, and computing the sum of all the weights for which the output value would be TRUE. The weights are hexadecimal not decimal so hexadecimal math must be used to sum the weights. A wiki page has a calculator to assist in computing the proper value for function.

http://wiki.linuxcnc.org/cgi-bin/wiki.pl?Lut5

Note that LUT5 will generate any of the 4,294,967,296 logical functions of 5 inputs so AND, OR, NAND, NOR, XOR and every other combinatorial function is possible.

Example Functions
A 5-input and function is TRUE only when all the inputs are true, so the correct value for function is 0x80000000.

A 2-input or function would be the sum of 0x2 + 0x4 + 0x8, so the correct value for function is 0xe.

A 5-input or function is TRUE whenever any of the inputs are true, so the correct value for function is 0xfffffffe. Because every weight except 0x1 is true the function is the sum of every line except the first one.

A 2-input xor function is TRUE whenever exactly one of the inputs is true, so the correct value for function is 0x6. Only in-0 and in-1 should be connected to signals, because if any other bit is TRUE then the output will be FALSE.

Weights for each line of truth table
Bit 4Bit 3Bit 2Bit 1Bit 0 Weight
000000x1
000010x2
000100x4
000110x8
001000x10
001010x20
001100x40
001110x80
010000x100
010010x200
010100x400
010110x800
011000x1000
011010x2000
011100x4000
011110x8000
100000x10000
100010x20000
100100x40000
100110x80000
101000x100000
101010x200000
101100x400000
101110x800000
110000x1000000
110010x2000000
110100x4000000
110110x8000000
111000x10000000
111010x20000000
111100x40000000
111110x80000000

FUNCTIONS

lut5.N

PINS

lut5.N.in-0 bit in
lut5.
N.in-1 bit in
lut5.
N.in-2 bit in
lut5.
N.in-3 bit in
lut5.
N.in-4 bit in
lut5.
N.out bit out

PARAMETERS

lut5.N.function u32 rw

LICENSE

GPL