From 20c2708383a50733af55d051303fe44cdf6a1a14 Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Thu, 3 Aug 2023 09:20:29 +1200 Subject: [PATCH] Move presentation intro example Rework images makefile a bit to get it to import and build from resources folder(s). Currently requires running twice from a clean build due to the way it finds `.dot` files to convert. --- docs/.gitignore | 9 +- docs/images/Makefile | 23 +- docs/images/levels_of_abstraction.tex | 42 ++ .../resources}/PRESENTATION_Intro/.gitignore | 4 + docs/resources/PRESENTATION_Intro/Makefile | 10 + .../resources}/PRESENTATION_Intro/counter.v | 0 docs/resources/PRESENTATION_Intro/counter.ys | 21 + .../PRESENTATION_Intro/counter_outputs.ys | 8 +- .../resources}/PRESENTATION_Intro/mycells.lib | 0 .../resources}/PRESENTATION_Intro/mycells.v | 0 docs/source/getting_started/examples.rst | 117 ++++- docs/source/introduction.rst | 30 +- docs/source/yosys_internals/flow/index.rst | 10 + manual/PRESENTATION_Intro.tex | 403 ------------------ manual/PRESENTATION_Intro/Makefile | 10 - 15 files changed, 249 insertions(+), 438 deletions(-) create mode 100644 docs/images/levels_of_abstraction.tex rename {manual => docs/resources}/PRESENTATION_Intro/.gitignore (50%) create mode 100644 docs/resources/PRESENTATION_Intro/Makefile rename {manual => docs/resources}/PRESENTATION_Intro/counter.v (100%) create mode 100644 docs/resources/PRESENTATION_Intro/counter.ys rename manual/PRESENTATION_Intro/counter.ys => docs/resources/PRESENTATION_Intro/counter_outputs.ys (59%) rename {manual => docs/resources}/PRESENTATION_Intro/mycells.lib (100%) rename {manual => docs/resources}/PRESENTATION_Intro/mycells.v (100%) delete mode 100644 manual/PRESENTATION_Intro/Makefile diff --git a/docs/.gitignore b/docs/.gitignore index e36f2309a..40b781904 100644 --- a/docs/.gitignore +++ b/docs/.gitignore @@ -5,7 +5,8 @@ /images/*.aux /images/*.pdf /images/*.svg -/images/011/*.log -/images/011/*.aux -/images/011/*.pdf -/images/011/*.svg +/images/**/*.log +/images/**/*.aux +/images/**/*.pdf +/images/**/*.svg +/images/**/*.dot diff --git a/docs/images/Makefile b/docs/images/Makefile index a7216ec90..ed0255b09 100644 --- a/docs/images/Makefile +++ b/docs/images/Makefile @@ -1,9 +1,23 @@ -all: dots tex svg tidy +all: resources dots tex svg tidy + +RES_LIST:= PRESENTATION_Intro/ +RES_DIRS:= $(addprefix ../resources/,$(RES_LIST)) +.PHONY: resources +resources: $(RES_DIRS) +FORCE: +../resources/%: FORCE + @$(MAKE) -C $@ + @mkdir -p res/$* + @cp --update -t res/$* $@*.dot TEX_SOURCE:= $(wildcard *.tex) DOT_LOC:= ../source/APPNOTE_011_Design_Investigation DOT_SOURCE:= $(wildcard $(DOT_LOC)/*.dot) +RES_DOTS:= $(wildcard res/*/*.dot) +RES_DIRS:= $(sort $(dir $(RES_DOTS))) +RES_PDF:= $(RES_DOTS:%.dot=%.pdf) + TEX_SOURCE+= 011/example_out.tex 011/example_out.pdf: 011/example_00.pdf 011/example_01.pdf 011/example_02.pdf TEX_SOURCE+= 011/select_prod.tex @@ -15,15 +29,18 @@ TEX_SOURCE+= 011/submod_dots.tex TEX_PDF:= $(patsubst %.tex,%.pdf,$(TEX_SOURCE)) DOT_PDF:= $(addprefix 011/,$(notdir $(patsubst %.dot,%.pdf,$(DOT_SOURCE)))) -SVG_OUTPUT:= $(patsubst %.pdf,%.svg,$(TEX_PDF) $(DOT_PDF)) +SVG_OUTPUT:= $(patsubst %.pdf,%.svg,$(TEX_PDF) $(DOT_PDF) $(RES_PDF)) -dots: $(DOT_PDF) +dots: $(DOT_PDF) $(RES_PDF) tex: $(TEX_PDF) svg: $(SVG_OUTPUT) 011/%.pdf: $(DOT_LOC)/%.dot faketime -f '2022-01-01 00:00:00 x0,001' dot -Tpdf -o $@ $< +res/%.pdf: res/%.dot + faketime -f '2022-01-01 00:00:00 x0,001' dot -Tpdf -o $@ $< + 011/%.pdf: 011/%.tex cd 011 && faketime -f '2022-01-01 00:00:00 x0,001' pdflatex $(] (sysx) -- node[right] {System Design} (hlx); + \draw[|->|] (hlx) -- node[right] {High Level Synthesis (HLS)} (behx); + \draw[->|] (behx) -- node[right] {Behavioral Synthesis} (rtlx); + \draw[->|] (rtlx) -- node[right] {RTL Synthesis} (lgx); + \draw[->|] (lgx) -- node[right] {Logic Synthesis} (pgx); + \draw[gray,->|] (pgx) -- node[right] {Cell Library} (swx); + + \draw[dotted] (behx) -- ++(4,0) coordinate (a); + \draw[dotted] (pgx) -- ++(4,0) coordinate (b); + \draw[|->|] (a) -- node[right] {Yosys} (b); +\end{tikzpicture} +\end{document} diff --git a/manual/PRESENTATION_Intro/.gitignore b/docs/resources/PRESENTATION_Intro/.gitignore similarity index 50% rename from manual/PRESENTATION_Intro/.gitignore rename to docs/resources/PRESENTATION_Intro/.gitignore index d0c4618ac..c3cbb8c51 100644 --- a/manual/PRESENTATION_Intro/.gitignore +++ b/docs/resources/PRESENTATION_Intro/.gitignore @@ -2,3 +2,7 @@ counter_00.dot counter_01.dot counter_02.dot counter_03.dot +counter_00.pdf +counter_01.pdf +counter_02.pdf +counter_03.pdf diff --git a/docs/resources/PRESENTATION_Intro/Makefile b/docs/resources/PRESENTATION_Intro/Makefile new file mode 100644 index 000000000..48946f1e1 --- /dev/null +++ b/docs/resources/PRESENTATION_Intro/Makefile @@ -0,0 +1,10 @@ + +all: counter_00.dot counter_01.dot counter_02.dot counter_03.dot + +counter_00.dot: counter.v counter.ys mycells.lib + ../../../yosys counter_outputs.ys + +counter_01.dot: counter_00.dot +counter_02.dot: counter_00.dot +counter_03.dot: counter_00.dot + diff --git a/manual/PRESENTATION_Intro/counter.v b/docs/resources/PRESENTATION_Intro/counter.v similarity index 100% rename from manual/PRESENTATION_Intro/counter.v rename to docs/resources/PRESENTATION_Intro/counter.v diff --git a/docs/resources/PRESENTATION_Intro/counter.ys b/docs/resources/PRESENTATION_Intro/counter.ys new file mode 100644 index 000000000..5582f1b78 --- /dev/null +++ b/docs/resources/PRESENTATION_Intro/counter.ys @@ -0,0 +1,21 @@ +# read design +read_verilog counter.v +hierarchy -check -top counter + +# the high-level stuff +proc; opt; memory; opt; fsm; opt + +# mapping to internal cell library +techmap; opt + +# mapping flip-flops to mycells.lib +dfflibmap -liberty mycells.lib + +# mapping logic to mycells.lib +abc -liberty mycells.lib + +# cleanup +clean + +# write synthesized design +write_verilog synth.v diff --git a/manual/PRESENTATION_Intro/counter.ys b/docs/resources/PRESENTATION_Intro/counter_outputs.ys similarity index 59% rename from manual/PRESENTATION_Intro/counter.ys rename to docs/resources/PRESENTATION_Intro/counter_outputs.ys index cc4e7cd31..a35c83d6f 100644 --- a/manual/PRESENTATION_Intro/counter.ys +++ b/docs/resources/PRESENTATION_Intro/counter_outputs.ys @@ -2,18 +2,18 @@ read_verilog counter.v hierarchy -check -top counter -show -notitle -stretch -format pdf -prefix counter_00 +show -notitle -format dot -prefix counter_00 # the high-level stuff proc; opt; memory; opt; fsm; opt -show -notitle -stretch -format pdf -prefix counter_01 +show -notitle -format dot -prefix counter_01 # mapping to internal cell library techmap; opt splitnets -ports;; -show -notitle -stretch -format pdf -prefix counter_02 +show -notitle -format dot -prefix counter_02 # mapping flip-flops to mycells.lib dfflibmap -liberty mycells.lib @@ -24,4 +24,4 @@ abc -liberty mycells.lib # cleanup clean -show -notitle -stretch -lib mycells.v -format pdf -prefix counter_03 +show -notitle -lib mycells.v -format dot -prefix counter_03 diff --git a/manual/PRESENTATION_Intro/mycells.lib b/docs/resources/PRESENTATION_Intro/mycells.lib similarity index 100% rename from manual/PRESENTATION_Intro/mycells.lib rename to docs/resources/PRESENTATION_Intro/mycells.lib diff --git a/manual/PRESENTATION_Intro/mycells.v b/docs/resources/PRESENTATION_Intro/mycells.v similarity index 100% rename from manual/PRESENTATION_Intro/mycells.v rename to docs/resources/PRESENTATION_Intro/mycells.v diff --git a/docs/source/getting_started/examples.rst b/docs/source/getting_started/examples.rst index 88458c50e..30a522ba3 100644 --- a/docs/source/getting_started/examples.rst +++ b/docs/source/getting_started/examples.rst @@ -13,38 +13,133 @@ synth.v using the cell library described by the Liberty file : .. code:: yoscrypt :number-lines: - # read input file to internal representation + #. read input file to internal representation read_verilog design.v - # convert high-level behavioral parts ("processes") to d-type flip-flops and muxes + #. convert high-level behavioral parts ("processes") to d-type flip-flops and muxes proc - # perform some simple optimizations + #. perform some simple optimizations opt - # convert high-level memory constructs to d-type flip-flops and multiplexers + #. convert high-level memory constructs to d-type flip-flops and multiplexers memory - # perform some simple optimizations + #. perform some simple optimizations opt - # convert design to (logical) gate-level netlists + #. convert design to (logical) gate-level netlists techmap - # perform some simple optimizations + #. perform some simple optimizations opt - # map internal register types to the ones from the cell library + #. map internal register types to the ones from the cell library dfflibmap -liberty cells.lib - # use ABC to map remaining logic to cells from the cell library + #. use ABC to map remaining logic to cells from the cell library abc -liberty cells.lib - # cleanup + #. cleanup opt - # write results to output file + #. write results to output file write_verilog synth.v A detailed description of the commands available in Yosys can be found in :ref:`cmd_ref`. + +Simple synthesis script +~~~~~~~~~~~~~~~~~~~~~~~ + +This section covers an example project available in +``docs/resources/PRESENTATION_Intro/*``. The project contains a simple ASIC +synthesis script (``counter.ys``), a digital design written in Verilog +(``counter.v``), and a simple CMOS cell library (``mycells.lib``). + +.. literalinclude:: ../../resources/PRESENTATION_Intro/counter.ys + :language: yoscrypt + :caption: ``docs/resources/PRESENTATION_Intro/counter.ys`` + +.. role:: yoscrypt(code) + :language: yoscrypt + +#. :yoscrypt:`read_verilog counter.v` - Read Verilog source file and convert to + internal representation. +#. :yoscrypt:`hierarchy -check -top counter` - Elaborate the design hierarchy. + Should always be the first command after reading the design. Can re-run AST front-end. +#. :yoscrypt:`proc` - Convert ``processes`` (the internal representation of + behavioral Verilog code) into multiplexers and registers. +#. :yoscrypt:`opt` - Perform some basic optimizations and cleanups. +#. :yoscrypt:`fsm` - Analyze and optimize finite state machines. +#. :yoscrypt:`opt` - Perform some basic optimizations and cleanups. +#. :yoscrypt:`memory` - Analyze memories and create circuits to implement them. +#. :yoscrypt:`opt` - Perform some basic optimizations and cleanups. +#. :yoscrypt:`techmap` - Map coarse-grain RTL cells (adders, etc.) to fine-grain + logic gates (AND, OR, NOT, etc.). +#. :yoscrypt:`opt` - Perform some basic optimizations and cleanups. +#. :yoscrypt:`dfflibmap -liberty mycells.lib` - Map registers to available + hardware flip-flops. +#. :yoscrypt:`abc -liberty mycells.lib` - Map logic to available hardware gates. +#. :yoscrypt:`clean` - Clean up the design (just the last step of ``opt``). +#. :yoscrypt:`write_verilog synth.v` - Write final synthesis result to output + file. + +Running the script +^^^^^^^^^^^^^^^^^^ + +.. literalinclude:: ../../resources/PRESENTATION_Intro/counter.v + :language: Verilog + :caption: ``docs/resources/PRESENTATION_Intro/counter.v`` + +.. literalinclude:: ../../resources/PRESENTATION_Intro/mycells.lib + :language: Liberty + :caption: ``docs/resources/PRESENTATION_Intro/mycells.lib`` + +Step 1 +"""""" + +.. literalinclude:: ../../resources/PRESENTATION_Intro/counter.ys + :language: yoscrypt + :lines: 1-3 + +Result: + +.. figure:: ../../images/res/PRESENTATION_Intro/counter_00.* + :class: width-helper + +Step 2 +"""""" + +.. literalinclude:: ../../resources/PRESENTATION_Intro/counter.ys + :language: yoscrypt + :lines: 5-6 + +Result: + +.. figure:: ../../images/res/PRESENTATION_Intro/counter_01.* + :class: width-helper + +Step 3 +"""""" + +.. literalinclude:: ../../resources/PRESENTATION_Intro/counter.ys + :language: yoscrypt + :lines: 8-9 + +Result: + +.. figure:: ../../images/res/PRESENTATION_Intro/counter_02.* + :class: width-helper + +Step 4 +"""""" + +.. literalinclude:: ../../resources/PRESENTATION_Intro/counter.ys + :language: yoscrypt + :lines: 11-18 + +Result: + +.. figure:: ../../images/res/PRESENTATION_Intro/counter_03.* + :class: width-helper diff --git a/docs/source/introduction.rst b/docs/source/introduction.rst index c4d6c1285..f9be83ec5 100644 --- a/docs/source/introduction.rst +++ b/docs/source/introduction.rst @@ -28,13 +28,37 @@ What is Yosys This document was originally published as bachelor thesis at the Vienna University of Technology :cite:p:`BACC`. -Yosys is a tool for synthesising (behavioural) Verilog HDL code to target -architecture netlists. Yosys aims at a wide range of application domains and -thus must be flexible and easy to adapt to new tasks. +Yosys is a Verilog HDL synthesis tool. This means that it takes a behavioural +design description as input and generates an RTL, logical gate or physical gate +level description of the design as output. Yosys' main strengths are behavioural +and RTL synthesis. A wide range of commands (synthesis passes) exist within +Yosys that can be used to perform a wide range of synthesis tasks within the +domain of behavioural, rtl and logic synthesis. Yosys is designed to be +extensible and therefore is a good basis for implementing custom synthesis tools +for specialised tasks. + +.. figure:: ../images/levels_of_abstraction.* + :class: width-helper + :name: fig:Levels_of_abstraction + + Where Yosys exists in the layers of abstraction What you can do with Yosys -------------------------- +- Read and process (most of) modern Verilog-2005 code +- Perform all kinds of operations on netlist (RTL, Logic, Gate) +- Perform logic optimizations and gate mapping with ABC + +Things you can't do +~~~~~~~~~~~~~~~~~~~ + +- Process high-level languages such as C/C++/SystemC +- Create physical layouts (place&route) + + Check out `nextpnr`_ for that + +.. _nextpnr: https://github.com/YosysHQ/nextpnr + The extended Yosys universe --------------------------- diff --git a/docs/source/yosys_internals/flow/index.rst b/docs/source/yosys_internals/flow/index.rst index a235996e9..195e50f64 100644 --- a/docs/source/yosys_internals/flow/index.rst +++ b/docs/source/yosys_internals/flow/index.rst @@ -1,6 +1,16 @@ Internal flow ============= + +A (usually short) synthesis script controls Yosys. + +This scripts contain three types of commands: + +- **Frontends**, that read input files (usually Verilog); +- **Passes**, that perform transformations on the design in memory; +- **Backends**, that write the design in memory to a file (various formats are + available: Verilog, BLIF, EDIF, SPICE, BTOR, . . .). + .. toctree:: :maxdepth: 2 diff --git a/manual/PRESENTATION_Intro.tex b/manual/PRESENTATION_Intro.tex index 1c3b79fa0..acd909c12 100644 --- a/manual/PRESENTATION_Intro.tex +++ b/manual/PRESENTATION_Intro.tex @@ -8,247 +8,6 @@ \iffalse %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -\subsection{Representations of (digital) Circuits} - -\begin{frame}[t]{\subsecname} -\begin{itemize} - \item Graphical - \begin{itemize} - \item \alert<1>{Schematic Diagram} - \item \alert<2>{Physical Layout} - \end{itemize} - \bigskip - \item Non-graphical - \begin{itemize} - \item \alert<3>{Netlists} - \item \alert<4>{Hardware Description Languages (HDLs)} - \end{itemize} -\end{itemize} -\bigskip -\begin{block}{Definition: -\only<1>{Schematic Diagram}% -\only<2>{Physical Layout}% -\only<3>{Netlists}% -\only<4>{Hardware Description Languages (HDLs)}} -\only<1>{ - Graphical representation of the circuit topology. Circuit elements - are represented by symbols and electrical connections by lines. The geometric - layout is for readability only. -}% -\only<2>{ - The actual physical geometry of the device (PCB or ASIC manufacturing masks). - This is the final product of the design process. -}% -\only<3>{ - A list of circuit elements and a list of connections. This is the raw circuit - topology. -}% -\only<4>{ - Computer languages (like programming languages) that can be used to describe - circuits. HDLs are much more powerful in describing huge circuits than - schematic diagrams. -}% -\end{block} -\end{frame} - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -\fi - -\subsection{Levels of Abstraction for Digital Circuits} - -\begin{frame}[t]{\subsecname} -\begin{itemize} - \item \alert<1>{System Level} - \item \alert<2>{High Level} - \item \alert<3>{Behavioral Level} - \item \alert<4>{Register-Transfer Level (RTL)} - \item \alert<5>{Logical Gate Level} - \item \alert<6>{Physical Gate Level} - \item \alert<7>{Switch Level} -\end{itemize} -\bigskip -\begin{block}{Definition: -\only<1>{System Level}% -\only<2>{High Level}% -\only<3>{Behavioral Level}% -\only<4>{Register-Transfer Level (RTL)}% -\only<5>{Logical Gate Level}% -\only<6>{Physical Gate Level}% -\only<7>{Switch Level}} -\only<1>{ - Overall view of the circuit. E.g. block-diagrams or instruction-set architecture descriptions. -}% -\only<2>{ - Functional implementation of circuit in high-level programming language (C, C++, SystemC, Matlab, Python, etc.). -}% -\only<3>{ - Cycle-accurate description of circuit in hardware description language (Verilog, VHDL, etc.). -}% -\only<4>{ - List of registers (flip-flops) and logic functions that calculate the next state from the previous one. Usually - a netlist utilizing high-level cells such as adders, multipliers, multiplexer, etc. -}% -\only<5>{ - Netlist of single-bit registers and basic logic gates (such as AND, OR, - NOT, etc.). Popular form: And-Inverter-Graphs (AIGs) with pairs of primary - inputs and outputs for each register bit. -}% -\only<6>{ - Netlist of cells that actually are available on the target architecture - (such as CMOS gates in an ASIC or LUTs in an FPGA). Optimized for - area, power, and/or speed (static timing or number of logic levels). -}% -\only<7>{ - Netlist of individual transistors. -}% -\end{block} -\end{frame} - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -\subsection{Digital Circuit Synthesis} - -\begin{frame}{\subsecname} - Synthesis Tools (such as Yosys) can transform HDL code to circuits: - - \bigskip - \begin{center} - \begin{tikzpicture}[scale=0.8, every node/.style={transform shape}] - \tikzstyle{lvl} = [draw, fill=MyBlue, rectangle, minimum height=2em, minimum width=15em] - \node[lvl] (sys) {System Level}; - \node[lvl] (hl) [below of=sys] {High Level}; - \node[lvl] (beh) [below of=hl] {Behavioral Level}; - \node[lvl] (rtl) [below of=beh] {Register-Transfer Level (RTL)}; - \node[lvl] (lg) [below of=rtl] {Logical Gate Level}; - \node[lvl] (pg) [below of=lg] {Physical Gate Level}; - \node[lvl] (sw) [below of=pg] {Switch Level}; - - \draw[dotted] (sys.east) -- ++(1,0) coordinate (sysx); - \draw[dotted] (hl.east) -- ++(1,0) coordinate (hlx); - \draw[dotted] (beh.east) -- ++(1,0) coordinate (behx); - \draw[dotted] (rtl.east) -- ++(1,0) coordinate (rtlx); - \draw[dotted] (lg.east) -- ++(1,0) coordinate (lgx); - \draw[dotted] (pg.east) -- ++(1,0) coordinate (pgx); - \draw[dotted] (sw.east) -- ++(1,0) coordinate (swx); - - \draw[gray,|->] (sysx) -- node[right] {System Design} (hlx); - \draw[|->|] (hlx) -- node[right] {High Level Synthesis (HLS)} (behx); - \draw[->|] (behx) -- node[right] {Behavioral Synthesis} (rtlx); - \draw[->|] (rtlx) -- node[right] {RTL Synthesis} (lgx); - \draw[->|] (lgx) -- node[right] {Logic Synthesis} (pgx); - \draw[gray,->|] (pgx) -- node[right] {Cell Library} (swx); - - \draw[dotted] (behx) -- ++(4,0) coordinate (a); - \draw[dotted] (pgx) -- ++(4,0) coordinate (b); - \draw[|->|] (a) -- node[right] {Yosys} (b); - \end{tikzpicture} - \end{center} -\end{frame} - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -\subsection{What Yosys can and can't do} - -\begin{frame}{\subsecname} - -Things Yosys can do: -\begin{itemize} -\item Read and process (most of) modern Verilog-2005 code. -\item Perform all kinds of operations on netlist (RTL, Logic, Gate). -\item Perform logic optimizations and gate mapping with ABC\footnote[frame]{\url{http://www.eecs.berkeley.edu/~alanmi/abc/}}. -\end{itemize} - -\bigskip -Things Yosys can't do: -\begin{itemize} -\item Process high-level languages such as C/C++/SystemC. -\item Create physical layouts (place\&route). -\end{itemize} - -\bigskip -A typical flow combines Yosys with with a low-level implementation tool, such -as Qflow\footnote[frame]{\url{http://opencircuitdesign.com/qflow/}} for ASIC designs. - -\end{frame} - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -\subsection{Yosys Data- and Control-Flow} - -\begin{frame}{\subsecname} - A (usually short) synthesis script controls Yosys. - - This scripts contain three types of commands: - \begin{itemize} - \item {\bf Frontends}, that read input files (usually Verilog). - \item {\bf Passes}, that perform transformations on the design in memory. - \item {\bf Backends}, that write the design in memory to a file (various formats are available: Verilog, BLIF, EDIF, SPICE, BTOR, \dots). - \end{itemize} - - \bigskip - \begin{center} - \begin{tikzpicture}[scale=0.6, every node/.style={transform shape}] - \path (-1.5,3) coordinate (cursor); - \draw[-latex] ($ (cursor) + (0,-1.5) $) -- ++(1,0); - \draw[fill=orange!10] ($ (cursor) + (1,-3) $) rectangle node[rotate=90] {Frontend} ++(1,3) coordinate (cursor); - \draw[-latex] ($ (cursor) + (0,-1.5) $) -- ++(1,0); - \draw[fill=green!10] ($ (cursor) + (1,-3) $) rectangle node[rotate=90] {Pass} ++(1,3) coordinate (cursor); - \draw[-latex] ($ (cursor) + (0,-1.5) $) -- ++(1,0); - \draw[fill=green!10] ($ (cursor) + (1,-3) $) rectangle node[rotate=90] {Pass} ++(1,3) coordinate (cursor); - \draw[-latex] ($ (cursor) + (0,-1.5) $) -- ++(1,0); - \draw[fill=green!10] ($ (cursor) + (1,-3) $) rectangle node[rotate=90] {Pass} ++(1,3) coordinate (cursor); - \draw[-latex] ($ (cursor) + (0,-1.5) $) -- ++(1,0); - \draw[fill=orange!10] ($ (cursor) + (1,-3) $) rectangle node[rotate=90] {Backend} ++(1,3) coordinate (cursor); - \draw[-latex] ($ (cursor) + (0,-1.5) $) -- ++(1,0); - - \path (-3,-0.5) coordinate (cursor); - \draw (cursor) -- node[below] {HDL} ++(3,0) coordinate (cursor); - \draw[|-|] (cursor) -- node[below] {Internal Format (RTLIL)} ++(8,0) coordinate (cursor); - \draw (cursor) -- node[below] {Netlist} ++(3,0); - - \path (-3,3.5) coordinate (cursor); - \draw[-] (cursor) -- node[above] {High-Level} ++(3,0) coordinate (cursor); - \draw[-] (cursor) -- ++(8,0) coordinate (cursor); - \draw[->] (cursor) -- node[above] {Low-Level} ++(3,0); - \end{tikzpicture} - \end{center} -\end{frame} - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -\subsection{Program Components and Data Formats} - -\begin{frame}{\subsecname} - \begin{center} - \begin{tikzpicture}[scale=0.6, every node/.style={transform shape}] - \tikzstyle{process} = [draw, fill=green!10, rectangle, minimum height=3em, minimum width=10em, node distance=15em] - \tikzstyle{data} = [draw, fill=blue!10, ellipse, minimum height=3em, minimum width=7em, node distance=15em] - \node[process] (vlog) {Verilog Frontend}; - \node[process, dashed, fill=green!5] (vhdl) [right of=vlog] {VHDL Frontend}; - \node[process] (ilang) [right of=vhdl] {Other Frontends}; - \node[data] (ast) [below of=vlog, node distance=5em, xshift=7.5em] {AST}; - \node[process] (astfe) [below of=ast, node distance=5em] {AST Frontend}; - \node[data] (rtlil) [below of=astfe, node distance=5em, xshift=7.5em] {RTLIL}; - \node[process] (pass) [right of=rtlil, node distance=5em, xshift=7.5em] {Passes}; - \node[process] (vlbe) [below of=rtlil, node distance=7em, xshift=-13em] {Verilog Backend}; - \node[process] (ilangbe) [below of=rtlil, node distance=7em, xshift=0em] {RTLIL Backend}; - \node[process, fill=green!5] (otherbe) [below of=rtlil, node distance=7em, xshift=+13em] {Other Backends}; - - \draw[-latex] (vlog) -- (ast); - \draw[-latex] (vhdl) -- (ast); - \draw[-latex] (ast) -- (astfe); - \draw[-latex] (astfe) -- (rtlil); - \draw[-latex] (ilang) -- (rtlil); - \draw[latex-latex] (rtlil) -- (pass); - \draw[-latex] (rtlil) -- (vlbe); - \draw[-latex] (rtlil) -- (ilangbe); - \draw[-latex] (rtlil) -- (otherbe); - \end{tikzpicture} - \end{center} -\end{frame} - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - \subsection{Example Project} \begin{frame}[t]{\subsecname} @@ -265,168 +24,6 @@ Direct link to the files: \\ \footnotesize %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -\begin{frame}[t]{\subsecname{} -- Synthesis Script} - -\setbeamercolor{alerted text}{fg=white,bg=red} - -\begin{minipage}[t]{6cm} -\tt\scriptsize -{\color{YosysGreen}\# read design}\\ -\boxalert<1>{read\_verilog counter.v}\\ -\boxalert<2>{hierarchy -check -top counter} - -\medskip -{\color{YosysGreen}\# the high-level stuff}\\ -\boxalert<3>{proc}; \boxalert<4>{opt}; \boxalert<5>{fsm}; \boxalert<6>{opt}; \boxalert<7>{memory}; \boxalert<8>{opt} - -\medskip -{\color{YosysGreen}\# mapping to internal cell library}\\ -\boxalert<9>{techmap}; \boxalert<10>{opt} -\end{minipage} -\begin{minipage}[t]{5cm} -\tt\scriptsize -{\color{YosysGreen}\# mapping flip-flops to mycells.lib}\\ -\boxalert<11>{dfflibmap -liberty mycells.lib} - -\medskip -{\color{YosysGreen}\# mapping logic to mycells.lib}\\ -\boxalert<12>{abc -liberty mycells.lib} - -\medskip -{\color{YosysGreen}\# cleanup}\\ -\boxalert<13>{clean} - -\medskip -{\color{YosysGreen}\# write synthesized design}\\ -\boxalert<14>{write\_verilog synth.v} -\end{minipage} - -\vskip1cm - -\begin{block}{Command: \tt -\only<1>{read\_verilog counter.v}% -\only<2>{hierarchy -check -top counter}% -\only<3>{proc}% -\only<4>{opt}% -\only<5>{fsm}% -\only<6>{opt}% -\only<7>{memory}% -\only<8>{opt}% -\only<9>{techmap}% -\only<10>{opt}% -\only<11>{dfflibmap -liberty mycells.lib}% -\only<12>{abc -liberty mycells.lib}% -\only<13>{clean}% -\only<14>{write\_verilog synth.v}} -\only<1>{ - Read Verilog source file and convert to internal representation. -}% -\only<2>{ - Elaborate the design hierarchy. Should always be the first - command after reading the design. Can re-run AST front-end. -}% -\only<3>{ - Convert ``processes'' (the internal representation of behavioral - Verilog code) into multiplexers and registers. -}% -\only<4>{ - Perform some basic optimizations and cleanups. -}% -\only<5>{ - Analyze and optimize finite state machines. -}% -\only<6>{ - Perform some basic optimizations and cleanups. -}% -\only<7>{ - Analyze memories and create circuits to implement them. -}% -\only<8>{ - Perform some basic optimizations and cleanups. -}% -\only<9>{ - Map coarse-grain RTL cells (adders, etc.) to fine-grain - logic gates (AND, OR, NOT, etc.). -}% -\only<10>{ - Perform some basic optimizations and cleanups. -}% -\only<11>{ - Map registers to available hardware flip-flops. -}% -\only<12>{ - Map logic to available hardware gates. -}% -\only<13>{ - Clean up the design (just the last step of {\tt opt}). -}% -\only<14>{ - Write final synthesis result to output file. -}% -\end{block} - -\end{frame} - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -\begin{frame}[fragile]{\subsecname{} -- Verilog Source: \tt counter.v} -\lstinputlisting[xleftmargin=1cm, language=Verilog]{PRESENTATION_Intro/counter.v} -\end{frame} - -\begin{frame}[fragile]{\subsecname{} -- Cell Library: \tt mycells.lib} -\begin{columns} -\column[t]{5cm} -\lstinputlisting[basicstyle=\ttfamily\fontsize{8pt}{10pt}\selectfont, language=liberty, lastline=20]{PRESENTATION_Intro/mycells.lib} -\column[t]{5cm} -\lstinputlisting[basicstyle=\ttfamily\fontsize{8pt}{10pt}\selectfont, language=liberty, firstline=21]{PRESENTATION_Intro/mycells.lib} -\end{columns} -\end{frame} - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -\subsection{Running the Synthesis Script} - -\begin{frame}[t, fragile]{\subsecname{} -- Step 1/4} -\begin{verbatim} -read_verilog counter.v -hierarchy -check -top counter -\end{verbatim} - -\vfill -\includegraphics[width=\linewidth,trim=0 0cm 0 0cm]{PRESENTATION_Intro/counter_00.pdf} -\end{frame} - -\begin{frame}[t, fragile]{\subsecname{} -- Step 2/4} -\begin{verbatim} -proc; opt; fsm; opt; memory; opt -\end{verbatim} - -\vfill -\includegraphics[width=\linewidth,trim=0 0cm 0 0cm]{PRESENTATION_Intro/counter_01.pdf} -\end{frame} - -\begin{frame}[t, fragile]{\subsecname{} -- Step 3/4} -\begin{verbatim} -techmap; opt -\end{verbatim} - -\vfill -\includegraphics[width=\linewidth,trim=0 0cm 0 2cm]{PRESENTATION_Intro/counter_02.pdf} -\end{frame} - -\begin{frame}[t, fragile]{\subsecname{} -- Step 4/4} -\begin{verbatim} -dfflibmap -liberty mycells.lib -abc -liberty mycells.lib -clean -\end{verbatim} - -\vfill\hfil -\includegraphics[width=10cm,trim=0 0cm 0 0cm]{PRESENTATION_Intro/counter_03.pdf} -\end{frame} - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - \subsection{The synth command} \begin{frame}[fragile]{\subsecname{}} diff --git a/manual/PRESENTATION_Intro/Makefile b/manual/PRESENTATION_Intro/Makefile deleted file mode 100644 index abc354e46..000000000 --- a/manual/PRESENTATION_Intro/Makefile +++ /dev/null @@ -1,10 +0,0 @@ - -all: counter_00.pdf counter_01.pdf counter_02.pdf counter_03.pdf - -counter_00.pdf: counter.v counter.ys mycells.lib - ../../yosys counter.ys - -counter_01.pdf: counter_00.pdf -counter_02.pdf: counter_00.pdf -counter_03.pdf: counter_00.pdf -