FPGA loader

From ArmadeusWiki
Revision as of 22:00, 15 September 2008 by JulienB (Talk | contribs) (Driver usage)

Jump to: navigation, search

On this page, you will find all the informations needed to use the Linux FPGA loader driver. This driver allows you to load the FPGA of your APF board from Linux userspace/shell (ie FPGA reprogrammation after Linux boot).

Module compilation & installation

  • The first thing you have to do is to activate the driver in the Linux configuration:
$ make linux-menuconfig
  • In Device Drivers --> Armadeus specific drivers select "Armadeus FPGA configuration driver".
  • rebuild Linux or the complete rootfs
$ make

Once done, you will find the new driver in the /lib/modules/drivers/ of the rootfs In the host directory target/linux/modules/fpga/dev_tools/fpga_devtools/ you will find a script named fpgaloader.sh.

Copy this script on the target and launch it

# sh fpgaloader.sh

This will install the driver.

Remark

The default FPGA version is the Spartan3 200k. The version can be changed when installing the module (insmod /lib/modules/drivers/fpgaloader.ko fpga_descriptor=0 for a 200K and 1 for a 400k). These informations are given by the /proc interface.

Driver usage

  • The FPGA loader driver is usable through the standard Linux filesystem interface. To read the available configurations, do:
# cat /proc/driver/fpga/loader 
  • The displayed sizes correspond to the different FPGA versions supported by the board:
    • 130k: Spartan 200k
    • 212k: Spartan 400k
  • To upload a new firmware (here bramtest_top_apf.bin), write:
# dd if=bramtest_top_apf.bin of=/dev/fpga/fpgaloader