Home > Fedora, Linux, embedded, verilog > Altera Quartus 2 on Fedora 11

Altera Quartus 2 on Fedora 11

On the past months I was enrolled in a “Hardware Description Languages” course where we work with FPGAs implementing several hardware designs, the class cover VHDL and Verilog and I feel quite comfortable working with Verilog. As target platform I use an Altera DE2 devboard and Quartus II IDE;

Installing Quartus II is quite trivial on Fedora 11

1. Install tcsh shell

su -c “yum install tcsh”

2. From www.altera.com/download

Download Quartus II web-install script

3. Give executable permissions to the script

chmod +x 90_altera_webinstall.sh

4. Install dependencies for the installer script (Only for 64 bit systems)

su -c “yum install glibc.i586 glibc-devel.i586″

su -c “yum install libSM.i586 libzip.i586 libXi.i586 libXrender.i586 libXrandr.i586″

su -c “yum install freetype.i586 fontconfig.i586″

5. Run the Quartus II web-install script

./90_altera_webinstall.sh

Follow the installer

altera-webinstall

altera-webinstall-02

altera-webinstall-03

6. Edit ~/.bashrc file and add the path for “quartus/bin”

export PATH=$PATH:/<quartus-install-dir>/quartus/bin

7. Open a new terminal and launch Quartus II IDE

quartus –64bit

With the previous steps you have Quartus II installed, you can now create your own design and simulate them, for downloading your designs to the FPGA you will need a helper script that will start/stop the jtag demon and to create a udev rule file to allow all user to access the usb-blaster device.

On DE2 development platform usb-blaster is used to interface the Jtag server and the FPGA. I have found some references about using usb-blaster in Linux by adding udev rules to properly handle the usb programmer.

8. Create a udev rules file at /etc/udev/rules.d/ such as 30-usb-blaster.rules

Add the following lines

# Altera DE2 USB blaster udev rules
# Adrian Alonso <aalonso00@gmail.com>
#
SUBSYSTEM==”usb”,SYSFS{idVendor}==”09fb”,SYSFS{idProduct}==”6001″,MODE=”0666″,SYMLINK+=”usb-blaster”

Basically when the Usb-blaster is connected to the computer, the udev rules are triggered and based on the idVendor and idProduct values a dev node is created /dev/usb-blaster whit the permissions for Read/Write for every user.

Reload udev rules

su -c “udevcontrol –reload_rules”

*Note: This is only necessary the first time to enable the new rules.

9. Copy the next script and place the script at /<quartus-install-dir>/quartus/bin/
*Note: Change the JTAGD variable for the correct path.
————————————————————————————————–
#!/bin/bash
# Jtag server for usb-blaster
# Based on Dalon Jtagd script
# Reference: http://forum.niosforum.com/forum/index.php?showtopic=5486
# Adrian Alonso <aalonso00@gmail.com>
# Fix stop demon

# Source functions library
source /etc/rc.d/init.d/functions

RET=0
PROG=”jtagd”
PID_FILE=/var/run/jtagd.pid
JTAGD=/opt/altera9.0/quartus/bin/jtagd

start ()
{
echo -n $”Starting $PROG sever:”
$JTAGD && success || failure
RET=$?
pidofproc $PROG >> $PID_FILE
echo
}

stop ()
{
local pid
pidfileofproc $JTAG >> pid
if [ -n $pid]; then
echo -n $”Stopping $PROG server”
killproc $JTAGD
else
failure $”Stooping $PROG”
fi
echo
}

case “$1″ in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
*)
echo $”Usage: $0 {start|stop|restart}”
RET=1
esac

exit $RET
————————————————————————————————–

10. Start the Jtag server by

<script-name.sh> start

11. Create a jtag config file

touch /home/<user>/.jtag.conf

Yes, the file is empty, when launching the programmer from Quartus IDE it only checks if this file exits.

12. From Quartus II launch the programmer and select the device “usb-blaster” to be able to download your design.

programmer

13. SOPC builder fix

When I try to start the SOPC builder I just saw an splash screen and nothing happened, looking at the run time log files “sopc_builder_log.txt” (is placed on your main project directory), libXtst library is missing so just installing it will solve the problem.

su -c “yum install libXtst.i586″

spoc_builder

14. Working with NIOS IDE

Install dependency libraries

su -c “yum install gtk2.i586 libcanberra-gtk2.i586″

Create a script named nios2.sh and add the following lines (Make the proper changes)
————————————————————————————————–
#!/bin/bash
# User specific aliases and functions
export QUARTUS_64BIT=1
QUARTUS_BASE=/opt/altera9.0
export QUARTUS_ROOTDIR=$QUARTUS_BASE/quartus
export SOPC_KIT_NIOS2=$QUARTUS_BASE/nios2eds
export SOPC_BUILDER_PATH=$QUARTUS_BASE/nios2eds
unset GCC_EXEC_PREFIX
export PERL5LIB=/usr/lib/perl5/5.10.0
bash –rcfile $QUARTUS_ROOTDIR/sopc_builder/bin/nios_bash
————————————————————————————————–
Running the script will set the shell with all the environment variables needed to use the nios2 ide.

Start nios2-ide from the shell

nios2-ide

nios2-ide

There should be  a better way to wrap around 64bit libraries and avoid to install 32bit libraries to work with Quartus II.

  1. himerie
    2009/07/02 at 7:25 pm | #1

    Hello, I tried your howto several times on fedora 11 – 32bit.
    However I get

    $quartus
    Aborted

    The only thing I don’t have it is the glibc.i586 but I have glibc.i686

    any help ?

    • aalonso
      2009/07/02 at 11:35 pm | #2

      Hi, you can enable debug mode and look in the log files from any library missing or try to find out what is the problem with your installation.
      In a terminal:

      export LD_DEBUG_OUTPUT=quartus-debug.log
      export LD_DEBUG=files

      And start Quartus IDE

      This will generate several log files that you can look to find out what is missing from your installation.

  2. himerie
    2009/07/04 at 8:05 am | #3

    I have this error:

    /usr/lib/gconv/ISO8859-1.so: error: symbol lookup error: undefined symbol: gconv_end (fatal)

    • aalonso
      2009/07/06 at 3:13 pm | #4

      Hi, gconv utilities are provided by glibc, try installing the packages:

      su -c “yum glibc-utils glibc-common glibc-devel glibc-headers glibc-static”

      Let me now if this help you.

  3. Trond Danielsen
    2009/08/12 at 7:27 am | #5

    Hi,

    I have tried to follow your instructions, but the installer fails when it tries to resolv the hostname of the altera server. Perhaps you could send me the output of yum list installed?

    • aalonso
      2009/08/12 at 2:21 pm | #6

      Send you an email with my i586/i686 installed package list; Probably openssl.i686 package is what is missing;

      • Trond Danielsen
        2009/08/17 at 6:30 am | #7

        The installer still fail to resolv the name of the Altera server. I thought it was a problem with my network, but I’ve just changed ISP, and the problem remain.

        Anyway, it is not your problem so I won’t bother you anymore. I just want to suggest an alternative solution for those of us who have problems with Altera Quartus: Install CentOS 5.2 in a VM. Works perfectly for me; I now start quartus by running:

        $ ssh -X quartus.local /opt/altera9.0/quartus/bin/quartus

  4. Hans Schillstrom
    2009/09/29 at 1:43 pm | #8

    The infamous Aborted has a simple solution, or at least one of them…
    I made a couple of installations on a laptop (both 32 and 64bits) and all I got was
    $quartus
    Aborted
    I tried every thing traced the winMain and the crach inside rpcss “Not enough memory” tried to get help from winMain.

    The solution was so simple, the hostname must be in /etc/hosts or in the dns.
    So simply add
    127.0.0.1 localhost.localdomain localhost
    or update you dhclient

    • Trond Danielsen
      2009/10/02 at 6:08 am | #9

      Great! That worked; finally I can run Quartus under Fedora 11 x86_64. A small correction to your instruction:

      127.0.0.1 localhost.localdomain localhost

      should be
      127.0.0.1 localhost.localdomain localhost myhostname.mydomainname myhostname

      but I guess you already knew that.

      Note that this should only be neccessary if myhostname.mydomainname is not resolved by your dns server.

  1. No trackbacks yet.