Copyright | © Christiaan Baaij, 2014-2015 |
---|---|
License | Creative Commons 4.0 (CC BY 4.0) (http://creativecommons.org/licenses/by/4.0/) |
Safe Haskell | None |
Language | Haskell2010 |
Introduction
CλaSH (pronounced ‘clash’) is a functional hardware description language that borrows both its syntax and semantics from the functional programming language Haskell. The merits of using a functional language to describe hardware comes from the fact that combinational circuits can be directly modeled as mathematical functions and that functional languages lend themselves very well at describing and (de-)composing mathematical functions. The CλaSH compiler transforms these high-level descriptions to low-level synthesizable VHDL, Verilog, or SystemVerilog.
Although we say that CλaSH borrows the semantics of Haskell, that statement should be taken with a grain of salt. What we mean to say is that the CλaSH compiler views a circuit description as structural description. This means, in an academic handwavy way, that every function denotes a component and every function application denotes an instantiation of said component. Now, this has consequences on how we view recursive functions: structurally, a recursive function would denote an infinitely deep / structured component, something that cannot be turned into an actual circuit (See also Unsupported Haskell features). Of course there are variants of recursion that could be completely unfolded at compile-time with a finite amount of steps and hence could be converted to a realisable circuit. Sadly, this last feature is missing in the current version of the compiler.
On the other hand, Haskell's by-default non-strict evaluation works very well for the simulation of the feedback loops, which are ubiquitous in digital circuits. That is, when we take our structural view to circuit descriptions, value-recursion corresponds directly to a feedback loop:
counter = s
where
s = register
0 (s + 1)
Over time, you will get a better feeling for the consequences of taking a structural view on circuit descriptions. What is always important to remember is that every applied functions results in an instantiated component, and also that the compiler will never infer / invent more logic than what is specified in the circuit description.
With that out of the way, let us continue with installing CλaSH and building our first circuit.
Installation
The CλaSH compiler and Prelude library for circuit design only work with the GHC Haskell compiler version 7.10.* and up.
Install GHC (version 7.10.* or higher)
- Download and install GHC for your platform.
Unix user can use
./configure prefix=<LOCATION>
to set the installation location. - Make sure that the
bin
directory of GHC is in yourPATH
.
The following are alternative options, if the cannot find what you are looking for on http://www.haskell.org/ghc/download
Ubuntu:
- Run:
sudo add-apt-repository -y ppa:hvr/ghc
- Run:
sudo apt-get update
- Run:
sudo apt-get install cabal-install-1.22 ghc-7.10.1 libtinfo-dev
- Update your
PATH
with:/opt/ghc/7.10.1/bin
,/opt/cabal/1.22/bin
, and$HOME/.cabal/bin
- Run:
cabal update
- Skip step 2.
- Run:
OS X:
- Follow the instructions on: Haskell for Max OS X
- Run:
cabal update
- Skip step 2.
Windows:
- Follow the instructions on: MinGHC
- Run:
cabal update
- Skip step 2.
- Download and install GHC for your platform.
Unix user can use
Install Cabal (version 1.22.* or higher)
Binary, when available:
- Download the binary for cabal-install
- Put the binary in a location mentioned in your
PATH
Add
cabal
'sbin
directory to yourPATH
:- Windows:
%appdata%\cabal\bin
- Unix:
$HOME/.cabal/bin
- Windows:
Source:
- Download the sources for cabal-install
- Unpack (
tar xf
) the archive andcd
to the directory - Run:
sh bootstrap.sh
- Follow the instructions to add
cabal
to yourPATH
- Run
cabal update
Install CλaSH
- Run
cabal install clash-ghc --enable-documentation
- This is going to take awhile, so have a refreshment
- Run
Verify that everything is working by:
- Downloading the Fir.hs example
- Run:
clash --interactive FIR.hs
- Execute, in the interpreter, the
:vhdl
command - Execute, in the interpreter, the
:verilog
command - Execute, in the interpreter, the
:systemverilog
command - Exit the interpreter using
:q
- Examine the VHDL code in the
vhdl
directory - Examine the Verilog code in the
verilog
directory - Examine the SystemVerilog code in the
systemverilog
directory
Working with this tutorial
This tutorial can be followed best whilst having the CλaSH interpreter running at the same time. If you followed the installation instructions, you already know how to start the CλaSH compiler in interpretive mode:
clash --interactive
For those familiar with Haskell/GHC, this is indeed just GHCi
, with three
added command (:vhdl
, :verilog
, and :systemverilog
). You can load files
into the interpreter using the :l <FILENAME>
command. Now, depending on your
choice in editor, the following edit-load-run
cycle probably work best for you:
Commandline (e.g. emacs, vim):
- You can run system commands using
:!
, for example:! touch <FILENAME>
- Set the editor mode to your favourite editor using:
:set editor <EDITOR>
- You can load files using
:l
as noted above. - You can go into editor mode using:
:e
- Leave the editor mode by quitting the editor (e.g.
:wq
invim
)
- You can run system commands using
GUI (e.g. SublimeText, Notepad++):
- Just create new files in your editor.
- Load the files using
:l
as noted above. - Once a file has been edited and saved, type
:r
to reload the files in the interpreter
You are of course free to deviate from these suggestions as you see fit :-) It is just recommended that you have the CλaSH interpreter open during this tutorial.
Your first circuit
The very first circuit that we will build is the "classic" multiply-and-accumulate (MAC) circuit. This circuit is as simple as it sounds, it multiplies its inputs and accumulates them. Before we describe any logic, we must first create the file we will be working on and input some preliminaries:
Create the file:
MAC.hs
Write on the first line the module header:
module MAC where
Module names must always start with a Capital letter. Also make sure that the file name corresponds to the module name.
Add the import statement for the CλaSH prelude library:
import CLaSH.Prelude
This imports all the necessary functions and datatypes for circuit description.
We can now finally start describing the logic of our circuit, starting with just the multiplication and addition:
ma acc (x,y) = acc + x * y
If you followed the instructions of running the interpreter side-by-side, you can already test this function:
>>>
ma 4 (8,9)
76>>>
ma 2 (3,4)
14
We can also examine the inferred type of ma
in the interpreter:
>>>
:t ma
ma :: Num a => a -> (a, a) -> a
Talking about types also brings us to one of the most important parts of this
tutorial: types and synchronous sequential logic. Especially how we can
always determine, through the types of a specification, if it describes
combinational logic or (synchronous) sequential logic. We do this by examining
the type of one of the sequential primitives, the
function:register
register :: a ->Signal
a ->Signal
a register i s = ...
Where we see that the second argument and the result are not just of the
polymorphic a
type, but of the type:
. All (synchronous)
sequential circuits work on values of type Signal
a
. Combinational
circuits always work on values of, well, not of type Signal
a
. A Signal
aSignal
is an (infinite) list of samples, where the samples correspond to the values
of the Signal
at discrete, consecutive, ticks of the clock. All (sequential)
components in the circuit are synchronized to this global clock. For the
rest of this tutorial, and probably at any moment where you will be working with
CλaSH, you should probably not actively think about Signal
s as infinite lists
of samples, but just as values that are manipulated by sequential circuits. To
make this even easier, it actually not possible to manipulate the underlying
representation directly: you can only modify Signal
values through a set of
primitives such as the register
function above.
Now, let us get back to the functionality of the register
function: it is
a simple latch
that only changes state at the tick of the global clock, and
it has an initial value a
which is its output at time 0. We can further
examine the register
function by taking a look at the first 4 samples of the
register
functions applied to a constant signal with the value 8:
>>>
sampleN 4 (register 0 (signal 8))
[0,8,8,8]
Where we see that the initial value of the signal is the specified 0 value, followed by 8's.
Sequential circuit
The register
function is our primary sequential building block to capture
state. It is used internally by one of the CLaSH.Prelude function that we
will use to describe our MAC circuit. Note that the following paragraphs will
only show one of many ways to specify a sequential circuit, at the section we
will show a couple more.
A principled way to describe a sequential circuit is to use one of the classic machine models, within the CλaSH prelude library offer standard function to support the Mealy machine. To improve sharing, we will combine the transition function and output function into one. This gives rise to the following Mealy specification of the MAC circuit:
macT acc (x,y) = (acc',o) where acc' = ma acc (x,y) o = acc
Note that the where
clause and explicit tuple are just for demonstrative
purposes, without loss of sharing we could've also written:
macT acc inp = (ma acc inp,acc)
Going back to the original specification we note the following:
acc
is the current state of the circuit.- '(x,y)' is its input.
acc'
is the updated, or next, state.o
is the output.
When we examine the type of macT
we see that is still completely combinational:
>>>
:t macT
macT :: Num t => t -> (t, t) -> (t, t)
The CLaSH.Prelude library contains a function that creates a sequential
circuit from a combinational circuit that has the same Mealy machine type /
shape of macT
:
mealy :: (s -> i -> (s,o)) -> s -> (Signal
i ->Signal
o) mealy f initS = ...
The complete sequential MAC circuit can now be specified as:
mac = mealy
macT 0
Where the first argument of
is our mealy
macT
function, and the second
argument is the initial state, in this case 0. We can see it is functioning
correctly in our interpreter:
>>>
import qualified Data.List
>>>
Data.List.take 4 $ simulate mac [(1::Int,1),(2,2),(3,3),(4,4)] :: [Int]
[0,1,5,14]
Where we simulate our sequential circuit over a list of input samples and take the first 4 output samples. We have now completed our first sequential circuit and have made an initial confirmation that it is working as expected.
Generating VHDL
We are now almost at the point that we can create actual hardware, in the form
of a VHDL netlist, from our sequential
circuit specification. The first thing we have to do is create a function
called topEntity
and ensure that it has a monomorphic type. In our case
that means that we have to give it an explicit type annotation. It might now
always be needed, you can always check the type with the :t
command and see
if the function is monomorphic:
topEntity ::Signal
(Signed
9,Signed
9) ->Signal
(Signed
9) topEntity = mac
Which makes our circuit work on 9-bit signed integers. Including the above
definition, our complete MAC.hs
should now have the following content:
module MAC where import CLaSH.Prelude ma acc (x,y) = acc + x * y macT acc (x,y) = (acc',o) where acc' = ma acc (x,y) o = acc mac =mealy
macT 0 topEntity ::Signal
(Signed
9,Signed
9) ->Signal
(Signed
9) topEntity = mac
The topEntity
function is the starting point for the CλaSH compiler to
transform your circuit description into a VHDL netlist. It must meet the
following restrictions in order for the CλaSH compiler to work:
- It must be completely monomorphic
- It must be completely first-order
Our topEntity
meets those restrictions, and so we can convert it successfully
to VHDL by executing the :vhdl
command in the interpreter. This will create
a directory called vhdl
, which contains a directory called MAC
, which
ultimately contains all the generated VHDL files. You can now load these files
into your favourite VHDL synthesis tool, marking MAC_topEntity.vhdl
as the file
containing the top level entity.
Circuit testbench
There are multiple reasons as to why might you want to create a so-called testbench for the VHDL:
- You want to compare post-synthesis / post-place&route behaviour to that of the behaviour of the original VHDL.
- Need representative stimuli for your dynamic power calculations
- Verify that the VHDL output of the CλaSH compiler has the same behaviour as the Haskell / CλaSH specification.
For these purposes, you can have CλaSH compiler generate a MAC_testbench.vhdl
file which contains a stimulus generator and an expected output verifier. The
CλaSH compiler looks for the following functions to generate these to aspects:
testInput
for the stimulus generator.expectedOutput
for the output verification.
Given a topEntity
with the type:
topEntity ::Signal
a ->Signal
b
Where a
and b
are placeholders for monomorphic types: the topEntity
is
not allowed to be polymorphic. So given the above type for the topEntity
, the
type of testInput
should be:
testInput :: Signal
a
And the type of expectedOutput
should be:
expectedOutput ::Signal
b ->Signal
Bool
Where the expectedOutput
function should assert to True
once it has verified
all expected values. The CLaSH.Prelude module contains two standard functions
to serve the above purpose, but a user is free to use any CλaSH specification
to describe these two functions. For this tutorial we will be using the
functions specified in the CLaSH.Prelude module, which are
and stimuliGenerator
:outputVerifier
testInput ::Signal
(Signed
9,Signed
9) testInput =stimuliGenerator
$(v
[(1,1) :: (Signed
9,Signed
9),(2,2),(3,3),(4,4)]) expectedOutput ::Signal
(Signed
9) ->Signal
Bool expectedOutput =outputVerifier
$(v
[0 ::Signed
9,1,5,14])
This will create a stimulus generator that creates the same inputs as we used earlier for the simulation of the circuit, and creates an output verifier that compares against the results we got from our earlier simulation. We can even simulate the behaviour of the testbench:
>>>
sampleN 7 $ expectedOutput (topEntity testInput)
[False,False,False,False, expected value: 14, not equal to actual value: 30 True, expected value: 14, not equal to actual value: 46 True, expected value: 14, not equal to actual value: 62 True]
We can see that for the first 4 samples, everything is working as expected,
after which warnings are being reported. The reason is that stimuliGenerator
will keep on producing the last sample, (4,4), while the outputVerifier
will
keep on expecting the last sample, 14. In the VHDL testbench these errors won't
show, as the the global clock will be stopped after 4 ticks.
You should now again run :vhdl
in the interpreter; this time the compiler
will take a bit longer to generate all the circuits. After it is finished you
can load all the files in your favourite VHDL simulation tool. Once all files
are loaded into the VHDL simulator, run the simulation on the testbench
entity.
On questasim / modelsim: doing a run -all
will finish once the output verifier
will assert its output to true
. The generated testbench, modulo the clock
signal generator(s), is completely synthesizable. This means that if you want to
test your circuit on an FPGA, you will only have to replace the clock signal
generator(s) by actual clock sources, such as an onboard PLL.
Generating SystemVerilog
Aside from being to generate VHDL, the CλaSH compiler can also generate Verilog
and SystemVerilog. You can repeat the previous two parts of the tutorial, but
instead of executing the :vhdl
command, you execute the :verilog
or
:sytemverilog
command in the interpreter. This will create a directory called
verilog
, respectively systemverilog
, which contains a directory called MAC
,
which ultimately contains all the generated Verilog and SystemVerilog files.
Verilog files end in the file extension v
, while SystemVerilog files end in
the file extension sv
.
This concludes the main part of this section on "Your first circuit", read on
for alternative specifications for the same mac
circuit, or just skip to the
next section where we will describe another DSP classic: an FIR filter
structure.
Alternative specifications
is also also considered aSignal
aNum
eric type as long as the value type a is alsoNum
eric. This means that we can also use the standard numeric operators, such as (*
) and (+
), directly on signals. An alternative specification of themac
circuit will also use theregister
function directly:macN (x,y) = acc where acc =
register
0 (acc + x * y)Applicative
instance forSignal
:We can also mix the combinational
ma
function, with the sequentialregister
function, by lifting thema
function to the sequentialSignal
domain using the operators (<$>
and<*>
) of theApplicative
type class:macA (x,y) = acc where acc =
register
0 acc' acc' = ma<$>
acc<*>
bundle
(x,y)State
MonadWe can also implement the original
macT
function as a
monadic computation. First we must an extra import statement, right after the import of CLaSH.Prelude:State
import Control.Monad.State
We can then implement macT as follows:
macTS (x,y) = do acc <-
get
put
(acc + x * y) return accWe can use the
mealy
function again, although we will have to change position of the arguments and result:asStateM :: (i ->
State
s o) -> s -> (Signal
i ->Signal
o) asStateM f i =mealy
g i where g s x = let (o,s') =runState
(f x) s in (s',o)We can then create the complete
mac
circuit as:macS = asStateM macTS 0
Higher-order functions
An FIR filter is defined as: the dot-product of a set of filter coefficients and a window over the input, where the size of the window matches the number of coefficients.
dotp as bs =foldl
(+) 0 (zipWith
(*) as bs) fir coeffs x_t = y_t where y_t = dotp coeffs xs xs =window
x_t topEntity ::Signal
(Signed
16) ->Signal
(Signed
16) topEntity = fir $(v
[0::Signal
(Signed
16),1,2,3])
Here we can see that, although the CλaSH compiler does not support recursion,
many of the regular patterns that we often encounter in circuit design are
already captured by the higher-order functions that are present for the Vec
tor
type.
Composition of sequential circuits
Given a function f
of type:
f :: Int -> (Bool, Int) -> (Int, (Int, Bool))
When we want to make compositions of f
in g
using mealy
, we have to
write:
g a b c = (b1,b2,i2) where (i1,b1) =unbundle
(mealy
f 0 (bundle
(a,b))) (i2,b2) =unbundle
(mealy
f 3 (bundle
(i1,c)))
Why do we need these bundle
, and unbundle
functions you might ask? When we
look at the type of mealy
:
mealy :: (s -> i -> (s,o)) -> s -> (Signal
i ->Signal
o)
we see that the resulting function has an input of type
, and an
output of Signal
i
. However, the type of Signal
o(a,b)
in the definition of g
is:
(
. And the type of Signal
Bool, Signal
Int)(i1,b1)
is of type
(
.Signal
Int, Signal
Bool)
Syntactically,
and Signal
(Bool,Int)(
are unequal.
So we need to make a conversion between the two, that is what Signal
Bool, Signal
Int)bundle
and
unbundle
are for. In the above case bundle
gets the type:
bundle :: (Signal
Bool,Signal
Int) ->Signal
(Bool,Int)
and unbundle
:
unbundle ::Signal
(Int,Bool) -> (Signal
Int,Signal
Bool)
The true types of these two functions are, however:
bundle ::Bundle
a =>Unbundled
a ->Signal
a unbundle ::Bundle
a =>Signal
a ->Unbundled
a
Unbundled
is an associated type family
belonging to the Bundle
type class,
which, together with bundle
and unbundle
defines the isomorphism between a
product type of Signal
s and a Signal
of a product type. That is, while
(Signal a, Signal b)
and Signal (a,b)
are not equal, they are isomorphic
and can be converted from on to the other using bundle
and unbundle
.
Instances of this Bundle
type-class are defined as isomorphisms for:
- All tuples until and including 8-tuples
- The
Vec
tor type
But they are defined as identities for:
That is:
instanceBundle
(a,b) where typeUnbundled'
clk (a,b) = (Signal'
clk a,Signal'
clk b) bundle' _ (a,b) = (,)<$>
a<*>
b unbundle' _ tup = (fst<$>
tup, snd<*>
tup)
but,
instanceBundle
Bool where typeUnbundled'
clk Bool =Signal'
clk Bool bundle' _ s = s unpack' _ s = s
What you need take away from the above is that a product type (e.g. a tuple) of
Signal
s is not syntactically equal to a Signal
of a product type, but that
the functions of the Bundle
type class allow easy conversion between the two.
As a final note on this section we also want to mention the mealyB
function,
which does the bundling and unbundling for us:
mealyB :: (Bundle
i,Bundle
o) => (s -> i -> (s,o)) -> s -> (Unbundled
i ->Unbundled
o)
Using mealyB
we can define g
as:
g a b c = (b1,b2,i2) where (i1,b1) =mealyB
f 0 (a,b) (i2,b2) =mealyB
f 3 (i1,c)
The general rule of thumb is: always use mealy
, unless you do pattern matching
or construction of product types, then use mealyB
.
TopEntity annotations: controlling the VHDL/Verilog/SystemVerilog generation.
The TopEntity
annotations described in this section make it easier to put your
CλaSH design on an FPGA.
We can exert some control how the top level function is created by the CλaSH
compiler by annotating the topEntity
function with a TopEntity
annotation.
You apply these annotation using the ANN
pragma like so:
{-# ANN topEntity (TopEntity {t_name = ..., ... }) #-} topEntity x = ...
For example, given the following specification:
topEntity :: Signal Bit -> Signal (BitVector 8) topEntity key1 = leds where key1R = isRising 1 key1 leds = mealy blinkerT (1,False,0) key1R blinkerT (leds,mode,cntr) key1R = ((leds',mode',cntr'),leds) where -- clock frequency = 50e6 (50 MHz) -- led update rate = 333e-3 (every 333ms) cnt_max = 16650000 -- 50e6 * 333e-3 cntr' | cntr == cnt_max = 0 | otherwise = cntr + 1 mode' | key1R = not mode | otherwise = mode leds' | cntr == 0 = if mode then complement leds else rotateL leds 1 | otherwise = leds
The CλaSH compiler will normally generate the following Blinker_topEntity.vhdl
file:
-- Automatically generated VHDL library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.NUMERIC_STD.ALL; use IEEE.MATH_REAL.ALL; use work.all; use work.Blinker_types.all; entity Blinker_topEntity is port(input_0 : in std_logic_vector(0 downto 0); -- clock system1000 : in std_logic; -- asynchronous reset: active low system1000_rstn : in std_logic; output_0 : out std_logic_vector(7 downto 0)); end; architecture structural of Blinker_topEntity is begin Blinker_topEntity_0_inst : entity Blinker_topEntity_0 port map (key1_i1 => input_0 ,system1000 => system1000 ,system1000_rstn => system1000_rstn ,topLet_o => output_0); end;
However, if we add the following TopEntity
annotation in the file:
{-# ANN topEntity (defTop
{ t_name = "blinker" , t_inputs = ["KEY1"] , t_outputs = ["LED"] , t_extraIn = [ ("CLOCK_50", 1) , ("KEY0" , 1) ] , t_clocks = [defClkAltera
"altpll50" "CLOCK_50(0)" "not KEY0(0)" ] }) #-}
The CλaSH compiler will generate the following blinker.vhdl
file instead:
-- Automatically generated VHDL library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.NUMERIC_STD.ALL; use IEEE.MATH_REAL.ALL; use work.all; use work.Blinker_types.all; entity blinker is port(KEY1 : in std_logic_vector(0 downto 0); CLOCK_50 : in std_logic_vector(0 downto 0); KEY0 : in std_logic_vector(0 downto 0); LED : out std_logic_vector(7 downto 0)); end; architecture structural of blinker is signal system1000 : std_logic; signal system1000_rstn : std_logic; signal altpll50_locked : std_logic; begin altpll50_inst : entity altpll50 port map (inclk0 => CLOCK_50(0) ,c0 => system1000 ,areset => not KEY0(0) ,locked => altpll50_locked); -- reset system1000_rstn is asynchronously asserted, but synchronously de-asserted resetSync_n_0 : block signal n_1 : std_logic; signal n_2 : std_logic; begin process(system1000,altpll50_locked) begin if altpll50_locked = '0' then n_1 <= '0'; n_2 <= '0'; elsif rising_edge(system1000) then n_1 <= '1'; n_2 <= n_1; end if; end process; system1000_rstn <= n_2; end block; Blinker_topEntity_0_inst : entity Blinker_topEntity_0 port map (key1_i1 => KEY1 ,system1000 => system1000 ,system1000_rstn => system1000_rstn ,topLet_o => LED); end;
Where we now have:
- A top-level component that is called
blinker
. - Inputs and outputs that have a user-chosen name:
KEY1
,LED
, etc. - An instantiated PLL
component providing a stable clock signal from the free-running clock pin
CLOCK_50
. - A reset that is asynchronously asserted by the
lock
signal originating from the PLL, meaning that your design is kept in reset until the PLL is providing a stable clock. The reset is additionally synchronously de-asserted to prevent metastability of your design due to unlucky timing of the de-assertion of the reset.
See the documentation of TopEntity
for the meaning of all its fields.
Advanced: Primitives
There are times when you already have an existing piece of IP, or there are times where you need the VHDL to have a specific shape so that the VHDL synthesis tool can infer a specific component. In these specific cases you can resort to defining your own VHDL primitives. Actually, most of the primitives in CλaSH are specified in the same way as you will read about in this section. There are perhaps 10 (at most) functions which are truly hard-coded into the CλaSH compiler. You can take a look at the files in https://github.com/clash-lang/clash-compiler/tree/master/clash-vhdl/primitives (or https://github.com/clash-lang/clash-compiler/tree/master/clash-verilog/primitives for the Verilog primitives or https://github.com/clash-lang/clash-compiler/tree/master/clash-systemverilog/primitives for the SystemVerilog primitives) if you want to know which functions are defined as "regular" primitives. The compiler looks for primitives in two locations:
- The official install location: e.g.
$CABAL_DIR/share/<GHC_VERSION>/clash-vhdl-<VERSION>/primitives
$CABAL_DIR/share/<GHC_VERSION>/clash-verilog-<VERSION>/primitives
$CABAL_DIR/share/<GHC_VERSION>/clash-systemverilog-<VERSION>/primitives
- The current directory (the location given by
pwd
)
Where redefined primitives in the current directory will overwrite those in
the official install location. For now, files containing primitive definitions
must end in the .json
file-extension.
CλaSH differentiates between two types of primitives, expression primitives
and declaration primitives, corresponding to whether the primitive is a VHDL
expression or a VHDL declaration. We will first explore expression
primitives, using Signed
multiplication (*
) as an example. The
CLaSH.Sized.Internal.Signed module specifies multiplication as follows:
{-# NOINLINE (*#) #-} (*#) ::KnownNat
n =>Signed
n ->Signed
n ->Signed
n (S a) *# (S b) = fromInteger_INLINE (a * b)
For which the VHDL expression primitive is:
{ "BlackBox" : { "name" : "CLaSH.Sized.Internal.Signed.*#" , "templateE" : "resize(~ARG[1] * ~ARG[2], ~LIT[0])" } }
The name
of the primitive is the fully qualified name of the function you
are creating the primitive for. Because we are creating an expression
primitive we define a templateE
field. As the name suggest, it is a VHDL
template, meaning that the compiler must fill in the holes heralded by the
tilde (~). Here:
~ARG[1]
denotes the second argument given to thetimesS
function, which corresponds to the LHS of the (*
) operator.~ARG[2]
denotes the third argument given to thetimesS
function, which corresponds to the RHS of the (*
) operator.~LIT[0]
denotes the first argument given to thetimesS
function, with the extra condition that it must be aLIT
eral. If for some reason this first argument does not turn out to be a literal then the compiler will raise an error. This first arguments corresponds to the "
" class constraint.KnownNat
n
An extensive list with all of the template holes will be given the end of this
section. What we immediately notice is that class constraints are counted as
normal arguments in the primitive definition. This is because these class
constraints are actually represented by ordinary record types, with fields
corresponding to the methods of the type class. In the above case, KnownNat
is actually just like a newtype
wrapper for Integer
.
The second kind of primitive that we will explore is the declaration primitive.
We will use cblockRam
as an example, for which the Haskell/CλaSH code is:
{-# NOINLINE blockRam' #-} -- | Create a blockRAM with space forn
elements -- -- * __NB__: Read value is delayed by 1 cycle -- * __NB__: Initial output value is 'undefined' -- -- @ -- type ClkA = Clk \"A\" 100 -- -- clkA100 :: SClock ClkA -- clkA100 = sclock -- -- bram40 :: Signal' ClkA (Unsigned 6) -> Signal' ClkA (Unsigned 6) -- -> Signal' ClkA Bool -> Signal' ClkA Bit -> Signal' ClkA Bit -- bram40 = 'blockRam'' clkA100 ('CLaSH.Sized.Vector.replicate' d40 1) -- @ blockRam' :: (KnownNat
n,KnownNat
m) =>SClock
clk -- ^ 'Clock' to synchronize to ->Vec
n a -- ^ Initial content of the BRAM, also -- determines the size, @n@, of the BRAM. -- -- __NB__: __MUST__ be a constant. ->Signal'
clk (Unsigned
m) -- ^ Write address @w@ ->Signal'
clk (Unsigned
m) -- ^ Read address @r@ ->Signal'
clk Bool -- ^ Write enable ->Signal'
clk a -- ^ Value to write (at address @w@) ->Signal'
clk a -- ^ Value of the @blockRAM@ at address @r@ from the previous clock -- cycle blockRam' clk binit wr rd en din =mealy'
clk bram' (binit,undefined) (bundle'
clk (wr,rd,en,din)) where bram' (ram,o) (w,r,e,d) = ((ram',o'),o) where ram' | e =replace
ram w d | otherwise = ram o' = ram!!
r
And for which the definition primitive is:
{ "BlackBox" : { "name" : "CLaSH.Prelude.BlockRam.blockRam'" , "templateD" : "blockRam_~COMPNAME_~SYM[0] : block signal ~SYM[1] : ~TYP[3] := ~LIT[3]; -- ram signal ~SYM[2] : ~TYP[7]; -- inp signal ~SYM[3] : ~TYP[7]; -- outp begin ~SYM[2] <= ~ARG[7]; process(~CLK[2]) begin if rising_edge(~CLK[2]) then if ~ARG[6] then ~SYM[1](to_integer(~ARG[4])) <= ~SYM[2]; end if; ~SYM[3] <= ~SYM[1](to_integer(~ARG[5])); end if; end process; ~RESULT <= ~SYM[3]; end block;" } }
Again, the name
of the primitive is the fully qualified name of the function
you are creating the primitive for. Because we are creating a declaration
primitive we define a templateD
field. Instead of discussing what the
individual template holes mean in the above context, we will instead just give
a general listing of the available template holes:
~RESULT
: VHDL signal to which the result of a primitive must be assigned to. NB: Only used in a definition primitive.~ARG[N]
:(N+1)
'th argument to the function.~LIT[N]
:(N+1)
'th argument to the function An extra condition that must hold is that this(N+1)
'th argument is an (integer) literal.~CLK[N]
: Clock signal to which the(N+1)
'th argument is synchronized to.~CLKO
: Clock signal to which the result is synchronized to.~RST[N]
: Asynchronous reset signal to the clock to which the(N+1)
'th argument is synchronized to.~RSTO
: Asynchronous reset signal to the clock to which the result is synchronized to.~TYP[N]
: VHDL type of the(N+1)
'th argument.~TYPO
: VHDL type of the result.~TYPM[N]
: VHDL typename of the(N+1)
'th argument; used in type qualification.~TYPM
: VHDL typename of the result; used in type qualification.~ERROR[N]
: Error value for the VHDL type of the(N+1)
'th argument.~ERRORO
: Error value for the VHDL type of the result.~SYM[N]
: Randomly generated, but unique, symbol. Multiple occurrences of~SYM[N]
in the same primitive definition all refer to the same random, but unique, symbol.~SIGD[<HOLE>][N]
: Create a signal declaration, using<HOLE>
as the name of the signal, and the type of the(N+1)
'th argument.~SIGDO[<HOLE>]
: Create a signal declaration, using<HOLE>
as the name of the signal, and the type of the result.~TYPELEM[<HOLE>]
: The element type of the vector type represented by<HOLE>
. The content of<HOLE>
must either be:TYPM[N]
,TYPO
, orTYPELEM[<HOLE>]
.~COMPNAME
: The name of the component in which the primitive is instantiated.~LENGHT[<HOLE>]
: The vector length of the type represented by<HOLE>
. The content of<HOLE>
must either be:TYPM[N]
,TYPO
, orTYPELEM[<HOLE>]
.~SIZE[<HOLE>]
: The number of bits needed to encode the type represented by<HOLE>
. The content of<HOLE>
must either be:TYPM[N]
,TYPO
, orTYPELEM[<HOLE>]
.
Some final remarks to end this section: VHDL primitives are there to instruct the CλaSH compiler to use the given VHDL template, instead of trying to do normal synthesis. As a consequence you can use constructs inside the Haskell definitions that are normally not synthesizable by the CλaSH compiler. However, VHDL primitives do not give us co-simulation: where you would be able to simulate VHDL and Haskell in a single environment. If you still want to simulate your design in Haskell, you will have to describe, in a cycle- and bit-accurate way, the behaviour of that (potentially complex) IP you are trying to include in your design.
Perhaps in the future, someone will figure out how to connect the two simulation worlds, using e.g. VHDL's foreign function interface VHPI.
Verilog primitives
For those who are interested, the equivalent Verilog primitives are:
{ "BlackBox" : { "name" : "CLaSH.Sized.Internal.Signed.*#" , "templateE" : "~ARG[1] * ~ARG[2]" } }
and
{ "BlackBox" : { "name" : "CLaSH.Prelude.BlockRam.blockRam'" , "templateD" : "// blockRam reg ~TYPO ~SYM[0] [0:~LIT[0]-1]; reg ~SIGD[~SYM[1]][7]; reg ~TYP[3] ~SYM[2]; integer ~SYM[3]; initial begin ~SYM[2] = ~ARG[3]; for (~SYM[3]=0; ~SYM[3] < ~LIT[0]; ~SYM[3] = ~SYM[3] + 1) begin ~SYM[0][~LIT[0]-1-~SYM[3]] = ~SYM[2][~SYM[3]*~SIZE[~TYPO]+:~SIZE[~TYPO]]; end end always @(posedge ~CLK[2]) begin : blockRam_~COMPNAME_~SYM[4] if (~ARG[6]) begin ~SYM[0][~ARG[4]] <= ~ARG[7]; end ~SYM[1] <= ~SYM[0][~ARG[5]]; end assign ~RESULT = ~SYM[1];" } }
SystemVerilog primitives
And the equivalent SystemVerilog primitives are:
{ "BlackBox" : { "name" : "CLaSH.Sized.Internal.Signed.*#" , "templateE" : "~ARG[1] * ~ARG[2]" } }
and
{ "BlackBox" : { "name" : "CLaSH.Prelude.BlockRam.blockRam'" , "templateD" : "// blockRam ~SIGD[~SYM[0]][3]; ~SIGD[~SYM[1]][7]; initial begin ~SYM[0] = ~LIT[3]; end always @(posedge ~CLK[2]) begin if (~ARG[6]) begin ~SYM[0][~ARG[4]] <= ~ARG[7]; end ~SYM[1] <= ~SYM[0][~ARG[5]]; end assign ~RESULT = ~SYM[1];" } }
Conclusion
For now, this is the end of this tutorial. We will be adding updates over time, so check back from time to time. For now, we recommend that you continue with exploring the CLaSH.Prelude module, and get a better understanding of the capabilities of CλaSH in the process.
Troubleshooting
A list of often encountered errors and their solutions:
Type error: Couldn't match expected type
with actual typeSignal
(a,b)(
:Signal
a,Signal
b)Signals of product types and product types (to which tuples belong) of signals are isomorphic due to synchronisity principle, but are not (structurally) equal. Use the
pack
function to convert from a product type to the signal type. So if your code which gives the error looks like:... = f a b (c,d)
add the
bundle'
function like so:... = f a b (
bundle
(c,d))Product types supported by 'bundle are:
- All tuples until and including 8-tuples
- The
Vec
tor type
NB: Use
bundle'
when you are using explicitly clockedSignal'
sType error: Couldn't match expected type
(
with actual typeSignal
a,Signal
b)
:Signal
(a,b)Product types (to which tuples belong) of signals and signals of product types are isomorphic due to synchronicity principle, but are not (structurally) equal. Use the
unpack
function to convert from a signal type to the product type. So if your code which gives the error looks like:(c,d) = f a b
add the
unbundle
function like so:(c,d) =
unbundle
(f a b)Product types supported by 'unbundle are:
- All tuples until and including 8-tuples
- The
Vec
tor type
NB: Use
unbundle'
when you are using explicitly clockedSignal'
sCLaSH.Netlist(..): Not in normal form: <REASON>: <EXPR>:
A function could not be transformed into the expected normal form. This usually means one of the following:
- The
topEntity
has residual polymorphism. - The
topEntity
has higher-order arguments, or a higher-order result. - You are using types which cannot be represented in hardware.
The solution for all the above listed reasons is quite simple: remove them. That is, make sure that the
topEntity
is completely monomorphic and first-order. Also remove any variables and constants/literals that have a non-representable type, see Unsupported Haskell features to find out which types are not representable.- The
CLaSH.Normalize(94): Expr belonging to bndr: <FUNCTION> remains recursive after normalization:
- If you actually wrote a recursive function, rewrite it to a non-recursive one using e.g. one of the higher-order functions in CLaSH.Sized.Vector :-)
- You defined a recursively defined value, but left it polymorphic:
topEntity x y = acc where acc =
register
3 (acc + x * y)The above function, works for any number-like type. This means that
acc
is a recursively defined polymorphic value. Adding a monomorphic type annotation makes the error go away:topEntity ::
Signal
(Signed
8) ->Signal
(Signed
8) ->Signal
(Signed
8) topEntity x y = acc where acc =register
3 (acc + x * y)Or, alternatively:
topEntity x y = acc where acc =
register
(3 ::Signed
8) (acc + x * y)CLaSH.Normalize.Transformations(155): InlineNonRep: <FUNCTION> already inlined 100 times in:<FUNCTION>, <TYPE>:
You left the
topEntity
function polymorphic or higher-order: use:t topEntity
to check if the type is indeed polymorphic or higher-order. If it is, add a monomorphic type signature, and / or supply higher-order arguments.Can't make testbench for: <LONG_VERBATIM_COMPONENT_DESCRIPTION>:
- Don't worry, it's actually only a warning.
- The
topEntity
function does not have exactly 1 argument. If yourtopEntity
has no arguments, you're out of luck for now. If it has multiple arguments, consider bundling them in a tuple.
<*** Exception: <<loop>>
You are using value-recursion, but one of the
Vec
tor functions that you are using is too strict in one of the recursive arguments. For example:-- Bubble sort for 1 iteration sortV xs =
map
fst sorted<:
(snd (last
sorted)) where lefts =head
xs :>map
snd (init
sorted) rights =tail
xs sorted =zipWith
compareSwapL lefts rights -- Compare and swap compareSwapL a b = if a < b then (a,b) else (b,a)Will not terminate because
zipWith
is too strict in its second argument:>>>
sortV (4 :> 1 :> 2 :> 3 :> Nil)
<*** Exception: <<loop>>In this case, adding
lazyV
onzipWith
s second argument:sortVL xs =
map
fst sorted<:
(snd (last
sorted)) where lefts =head
xs :> map snd (init
sorted) rights =tail
xs sorted =zipWith
compareSwapL (lazyV
lefts) rightsResults in a successful computation:
>>>
sortVL (4 :> 1 :> 2 :> 3 :> Nil)
<1,2,3,4>
Unsupported Haskell features
Here is a list of Haskell features which the CλaSH compiler cannot synthesize to VHDLVerilogSystemVerilog (for now):
Recursive functions
Although it seems rather bad that a compiler for a functional language does not support recursion, this bug/feature of the CλaSH compiler is amortized by the builtin knowledge of all the functions listed in CLaSH.Sized.Vector. And as you saw in this tutorial, the higher-order functions of CLaSH.Sized.Vector can cope with many of the recursive design patterns found in circuit design.
Also note that although recursive functions are not supported, recursively (tying-the-knot) defined values are supported (as long as these values do not have a function type). An example that uses recursively defined values is the following function that performs one iteration of bubble sort:
sortV xs =
map
fst sorted <: (snd (last
sorted)) where lefts =head
xs :>map
snd (init
sorted) rights =tail
xs sorted =zipWith
compareSwapL lefts rightsWhere we can clearly see that
lefts
andsorted
are defined in terms of each other.Recursive datatypes
The CλaSH compiler needs to be able to determine a bit-size for any value that will be represented in the eventual circuit. More specifically, we need to know the maximum number of bits needed to represent a value. While this is trivial for values of the elementary types, sum types, and product types, putting a fixed upper bound on recursive types is not (always) feasible. This means that the ubiquitous list type is unsupported! The only recursive type that is currently supported by the CλaSH compiler is the
Vec
tor type, for which the compiler has hard-coded knowledge.For "easy"
Vec
tor literals you should use Template Haskell splices and thev
meta-function that as we have seen earlier in this tutorial.GADT pattern matching
While pattern matching for regular ADTs is supported, pattern matching for GADTs is not. The
Vec
tor type, which is also a GADT, is no exception! You can use the extraction and indexing functions of CLaSH.Sized.Vector to get access to individual ranges / elements of aVec
tor.Floating point types
There is no support for the
Float
andDouble
types, if you need numbers with a fractional part you can use theFixed
point type.Other primitive types
Most primitive types are not supported, with the exception of
Int
,Int#
, andInteger
. This means that types such as:Word
,Word8
,Int8
,Char
,Array
, etc. cannot to translated to hardware.The translations of
Int
,Int#
, andInteger
are also incorrect: they are translated to the VHDLinteger
type, the Verilogsigned [31:0], or the SystemVerilog
signed logic [31:0]@ type, which can only represent 32-bit integer values. Use these types with due diligence.Side-effects:
IO
,ST
, etc.There is no support for side-effecting computations such as those in the
IO
orST
monad. There is also no support for Haskell's FFI.
CλaSH vs Lava
In Haskell land the most well-known way of describing digital circuits is the Lava family of languages:
The big difference between CλaSH and Lava is that CλaSH uses a "standard" compiler (static analysis) approach towards synthesis, where Lava is an embedded domain specific language. One downside of static analysis vs. the embedded language approach is already clearly visible: synthesis of recursive descriptions does not come for "free". This will be implemented in CλaSH in due time, but that doesn't help the circuit designer right now. As already mentioned earlier, the lack of support for recursive functions is amortized by the built-in support for the higher-order in CLaSH.Sized.Vector.
The big upside of CλaSH and its static analysis approach is that CλaSH can do synthesis of "normal" functions: there is no forced encasing datatype (often called Signal in Lava) on all the arguments and results of a synthesizable function. This enables the following features not available to Lava:
- Automatic synthesis for user-defined ADTs
- Synthesis of all choice constructs (pattern matching, guards, etc.)
Applicative
instance for theSignal
type- Working with "normal" functions permits the use of e.g. the State monad to describe the functionality of a circuit.
Although there are Lava alternatives to some of the above features (e.g. first-class patterns to replace pattern matching) they are not as "beautiful" and / or easy to use as the standard Haskell features.