FPGA tools

Fra Robin

(Forskjeller mellom versjoner)
Gå til: navigasjon, søk
(License server)
 
(73 mellomrevisjoner ikke vist.)
Linje 1: Linje 1:
-
= FPGA tools on Windows =
+
= FPGA tools on LISP (2428)=
-
Vivado 2015.2 is situated on //bifrost/project0/robin/CADlib/2015/vivado
+
Vivado and Vitis is installed locally on the computers in LISP. To launch Vivado go to ''Applications->Education-> '''Vivado'''
-
it can be accessed from any Windows machine, but it does need to have
+
-
the LM_LICENSE_FILE environment variable set to 5370@lisens.ifi.uio.no
+
-
Vivado, ISE and questa is currently situated on ifiserv-854.ifi.uio.no, and LISP (2428)  
+
Alternatively, you can find it by searching for apps using the ''super''-key (Windows key):
-
Please notify the engineer in ROBIN if there are issues.
+
-
= FPGA tools on Linux =
+
<div style="margin:0 auto;overflow:scroll;width:auto;max-width:100%">
 +
[[Image:Xilinx_suit.png|class=noresize]]</div>
-
'''3430-installation 2015'''
+
 
 +
'''Launch in terminal'''
 +
 
 +
Launching the applications is done by entering the following commands in the terminal:
 +
 
 +
Questa with GUI:
 +
vsim
 +
 
 +
Vivado with GUI:
  vivado
  vivado
-
questa
 
 +
Vitis with GUI:
 +
vitis
-
'''older installations'''
+
Vitis HLS with GUI
-
  0in
+
  vitis_hls
-
Catapult_C
+
-
FormalPro
+
-
Modelsim
+
-
Xilinx
+
 +
Vlog (terminal only):
 +
vlog
-
== Starting a terminal window with tools available ==
+
Vcom (terminal only):
 +
vcom
-
'''First time initialization 3430-2015'''
+
Help:
-
  >cd ~
+
  <command> -h
-
>/ifi/bifrost/project0/robin/CADlib/2015/3430-tools/copy-here
+
-
Note: This will create the folder "3430-tools" from your current folder and copy files to it. You may alter these files for your own purposes later.
+
= FPGA tools via share on Linux =
-
'''Launch'''
+
'''First time initialization'''
-
>cd 3430-tools
+
-
> ./run
+
-
This will open a new terminal having the required environment set. vsim and vivado may be run from the new terminal if started properly. 
+
-
Note that it is required to do the ./run from the correct folder.
+
If you need to use Xilinx' software other places than the RHEL clients at LISP or ALGOL, utilize the following guide:
 +
cd
 +
nano .bashrc
-
'''First time initialization FPGAtools (old)'''
+
Append the following lines to the end of the .bashrc file:
-
>cd ~
+
<pre class="brush: bash">
-
>mkdir fpgatools
+
# Vitis Unified 2020.2 64-bit version
-
>cd fpgatools/
+
if ! [ -x "$(command -v vivado)" ]; then
-
>/hom/mes/src/FPGATools/init_fpgatools
+
  source /projects/robin/programs/Vivado/2020.2/settings64.sh
 +
  export PATH=$PATH:/projects/robin/programs/Vivado/2020.2/bin
 +
fi
-
Note that when starting using run, you get an xterm with .bash_fpgatools (invisible when using ls-l) as source.
+
# License file
-
Since spring 2012, we have moved the license file to tollheimtu from pordoi. The .bash_fpgatools will need to be upgraded either manually or by doing the initialization over again.
+
export LM_LICENSE_FILE=5370@lisens.ifi.uio.no
-
'''Launch'''
+
# Modelsim library
-
>cd ~/fpgatools
+
export MODELSIM=/projects/robin/CADlib/modelsimCADLIB.ini
-
>run
+
-
Use the new xterm window that pops up to start the FPGA tool you like.
+
# Remove duplicants in the PATH variable
-
Paths to all the major components should be ready in the new xterm.
+
PATH=$(printf "%s" "$PATH" | awk -v RS=':' '!a[$1]++ { if (NR > 1) printf RS; printf $1 }')
 +
</pre>
-
To start Modelsim type vsim
+
After you have added the latter and saved the .bashrc file, restart the terminal or 'source' the .bashrc file.
-
To start Xilinx (ISE) type ise
+
-
To start PlanAhead type planAhead
+
-
etc
+
 +
'''Other versions'''
-
== Digilent Adept on Linux ==
+
If needed, you can also make use of older or newer versions of the Xilinx products. As of August 2020, we have 2016.4, 2018.3, 2019.1, 2019.2 and 2020.2 available.
 +
 
 +
<!---
 +
= FPGA tools on Windows =
 +
Vivado 2019.1 is situated on /uio/kant/ifi-project06/robin/programs/vivado
 +
it can be accessed from any Windows machine, but it does need to have
 +
the LM_LICENSE_FILE environment variable set to 5370@lisens.ifi.uio.no
 +
 
 +
Questa is installed on SED (1454) and CHILL (3443).
 +
Please notify the engineer in ROBIN if there are issues.
 +
 
 +
'''BUG'''
 +
 
 +
Due to technical issues, you will receive the following error when creating a new project in Questa on '''M:/''':
 +
 
 +
<pre style="color:#ff0000">
 +
# Project file M:/inf3430/my_first_project.mpf is not readable.
 +
# Unable to open project.
 +
</pre>
 +
 
 +
We are sorry to inform that there are no current solutions to this problem. However, we are working on a solution. You may use;
 +
 
 +
C:\users\<username>
 +
 
 +
for storing project files, but be ware that there is no backup and you need to move your files to M:\ before log out of the client.
 +
 
 +
You may also use X-Win32 to get Linux with GUI on IFIs Windows clients: https://termvakt.uio.no/Fjerninnlogging#Xterm_via_X-Win32
 +
 
 +
--->
 +
 
 +
<!-- = Digilent Adept on Linux =
Digilent Adept to program the Atlys board can be obtained from the Digilent website.
Digilent Adept to program the Atlys board can be obtained from the Digilent website.
Linje 70: Linje 104:
To enable autocompletion and history in XMD:
To enable autocompletion and history in XMD:
-
  rlwrap xmd
+
  rlwrap xmd-->
-
== License server ==
+
= License server =
Licenses can be checked out from lisens.ifi.uio.no:
Licenses can be checked out from lisens.ifi.uio.no:
Linje 80: Linje 114:
  setx LM_LICENSE_FILE 5370@lisens.ifi.uio.no
  setx LM_LICENSE_FILE 5370@lisens.ifi.uio.no
-
== Robin Peripheral Repository ==
+
NOTE: The license server only works from UiOs network.
-
The ROBIN EDK repository is located at:
+
-
\\bifrost.ifi.uio.no\project0\robin\CADlib\spartan3EDK2012
+
= Academic Xilinx FPGA tools =
 +
Python interface to Xilinx/EDK MHS: https://github.com/EPiCS/reconos/tree/master/tools
-
It contains BSP for the Spartan3 Starter Board.
+
Bitstream Intepretation Library (Virtex5): https://github.com/florianbenz/bil
-
Set "Project Peripheral Reposotory Search Path" in XPS to enable it.
+
DeBit: http://code.google.com/p/debit/
-
== Academic Xilinx FPGA tools ==
+
TORC: http://torc-isi.sourceforge.net/
-
Python interface to Xilinx/EDK MHS: https://github.com/EPiCS/reconos/tree/master/tools
+
-
XDL Format description: http://www.mn.uio.no/ifi/english/research/projects/cosrecos/publications/paper/recosoc11beckhoff.pdf
+
ReconOS: http://www.reconos.de
-
Bitstream Intepretation Library (Virtex5): https://github.com/florianbenz/bil
+
= Having problems? =
-
DeBit: http://code.google.com/p/debit/
+
If you are having problems running the tools as mentioned, please ask a group teacher or send an mail to: robin-engineer at ifi.uio.no.
-
GoAhead: http://www.mn.uio.no/ifi/english/research/projects/cosrecos/goahead/
+
== "command not found"  => Not running .bashrc? ==
-
Creating Hard Macros (guide): http://wiki.eng.iastate.edu/reconfigurable-computing-wiki/index.php/Creating_Hard_Macros
+
When running ssh from another linux system or Mac, it is possible that only .bash_profile is read, not .bashrc. This will typically lead to "command not found" when trying to launch vsim or any other program that should have been found in the path. This can be further confirmed by listing PATH or the MODELSIM variable
 +
>>echo $PATH
 +
>>echo $MODELSIM
 +
If they don't show traces of what you have put into .bashrc, it has not been run, or the variables have over-written later.  
-
TORC: http://torc-isi.sourceforge.net/
+
To ensure that the .bashrc is run when opening a new xterm or ssh'ing into a new server, append the following to your .bash_profile:
 +
if [ -f ~/.bashrc ]; then
 +
  source ~/.bashrc
 +
fi
 +
 
 +
You can also manually source .bashrc and then open a new xterm that can use vsim
 +
>>source ~/.bashrc
 +
>>xterm &
 +
 
 +
This last solution will of course be a one-time only approach, since it doesn't change any configuration file.
 +
 
 +
Here is an article on how it became two configuration files rather than just one:
 +
[http://www.joshstaiger.org/archives/2005/07/bash_profile_vs.html www.joshstaiger.org/archives/2005/07/bash_profile_vs.html ]
-
ReconOS: https://github.com/EPiCS/reconos
+
== Remote access with GUI ==
 +
X11 forwarding is required to be able to see windows opened on a linux server. On windows, X-win32 can be used. For linux ssh -X or ssh -Y can be used, while on MAC you may need XQuartz or something similar to allow X11 forwarding. More on this can be found [https://robin.wiki.ifi.uio.no/Remote_access here].

Nåværende revisjon fra 27. jan 2023 kl. 20:57

Innhold

FPGA tools on LISP (2428)

Vivado and Vitis is installed locally on the computers in LISP. To launch Vivado go to Applications->Education-> Vivado

Alternatively, you can find it by searching for apps using the super-key (Windows key):

class=noresize


Launch in terminal

Launching the applications is done by entering the following commands in the terminal:

Questa with GUI:

vsim

Vivado with GUI:

vivado

Vitis with GUI:

vitis

Vitis HLS with GUI

vitis_hls

Vlog (terminal only):

vlog

Vcom (terminal only):

vcom

Help:

<command> -h

FPGA tools via share on Linux

First time initialization

If you need to use Xilinx' software other places than the RHEL clients at LISP or ALGOL, utilize the following guide:

cd 
nano .bashrc

Append the following lines to the end of the .bashrc file:

# Vitis Unified 2020.2 64-bit version
if ! [ -x "$(command -v vivado)" ]; then
  source /projects/robin/programs/Vivado/2020.2/settings64.sh
  export PATH=$PATH:/projects/robin/programs/Vivado/2020.2/bin
fi

# License file
export LM_LICENSE_FILE=5370@lisens.ifi.uio.no

# Modelsim library 
export MODELSIM=/projects/robin/CADlib/modelsimCADLIB.ini

# Remove duplicants in the PATH variable
PATH=$(printf "%s" "$PATH" | awk -v RS=':' '!a[$1]++ { if (NR > 1) printf RS; printf $1 }')

After you have added the latter and saved the .bashrc file, restart the terminal or 'source' the .bashrc file.

Other versions

If needed, you can also make use of older or newer versions of the Xilinx products. As of August 2020, we have 2016.4, 2018.3, 2019.1, 2019.2 and 2020.2 available.


License server

Licenses can be checked out from lisens.ifi.uio.no:

export LM_LICENSE_FILE=5370@lisens.ifi.uio.no

On Windows:

setx LM_LICENSE_FILE 5370@lisens.ifi.uio.no

NOTE: The license server only works from UiOs network.

Academic Xilinx FPGA tools

Python interface to Xilinx/EDK MHS: https://github.com/EPiCS/reconos/tree/master/tools

Bitstream Intepretation Library (Virtex5): https://github.com/florianbenz/bil

DeBit: http://code.google.com/p/debit/

TORC: http://torc-isi.sourceforge.net/

ReconOS: http://www.reconos.de

Having problems?

If you are having problems running the tools as mentioned, please ask a group teacher or send an mail to: robin-engineer at ifi.uio.no.

"command not found" => Not running .bashrc?

When running ssh from another linux system or Mac, it is possible that only .bash_profile is read, not .bashrc. This will typically lead to "command not found" when trying to launch vsim or any other program that should have been found in the path. This can be further confirmed by listing PATH or the MODELSIM variable

>>echo $PATH
>>echo $MODELSIM

If they don't show traces of what you have put into .bashrc, it has not been run, or the variables have over-written later.

To ensure that the .bashrc is run when opening a new xterm or ssh'ing into a new server, append the following to your .bash_profile:

if [ -f ~/.bashrc ]; then
  source ~/.bashrc
fi

You can also manually source .bashrc and then open a new xterm that can use vsim

>>source ~/.bashrc
>>xterm &

This last solution will of course be a one-time only approach, since it doesn't change any configuration file.

Here is an article on how it became two configuration files rather than just one: www.joshstaiger.org/archives/2005/07/bash_profile_vs.html

Remote access with GUI

X11 forwarding is required to be able to see windows opened on a linux server. On windows, X-win32 can be used. For linux ssh -X or ssh -Y can be used, while on MAC you may need XQuartz or something similar to allow X11 forwarding. More on this can be found here.

Personlige verktøy