Difference between revisions of "FPGA loader"

From ArmadeusWiki
Jump to: navigation, search
Line 1: Line 1:
 
On this page, you will find all the informations needed to use the Linux FPGA loader driver.
 
On this page, you will find all the informations needed to use the Linux FPGA loader driver.
This driver add the possibility to load the FPGA of your APF board from Linux userspace -> FPGA reprogrammation after Linux boot.
+
This driver allows you to load the FPGA of your APF board from Linux userspace/shell -> FPGA reprogrammation after Linux boot.
  
 
== Module compilation & installation==
 
== Module compilation & installation==
Line 21: Line 21:
 
The default FPGA version is the spartan3 200k.  
 
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).  
 
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.
+
These informations are given by the /proc interface.
  
 
== Driver usage ==
 
== Driver usage ==
Line 35: Line 35:
  
 
== FPGARegs usage ==
 
== FPGARegs usage ==
Write to a FPGA address
+
* Write to a FPGA address: ''fpgareg addr value''
* fpgareg addr value  
+
 
  # fpgaregs 1000 abcd
 
  # fpgaregs 1000 abcd
 
this will write 0xabcd (16bits only interface) at the FPGA internal address 0x1000
 
this will write 0xabcd (16bits only interface) at the FPGA internal address 0x1000
  
Read a FPGA address
+
* Read a FPGA address: ''fpgareg addr''
* fpgareg addr  
+
 
  # fpgaregs 1000
 
  # fpgaregs 1000
 
this will read the address 0x1000
 
this will read the address 0x1000
  
 
For details take a look at this page: [[Linux Debug |Tips to debug under Linux]]
 
For details take a look at this page: [[Linux Debug |Tips to debug under Linux]]
 +
 +
[[Category:FPGA]]

Revision as of 00:19, 28 March 2008

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 -> FPGA reprogrammation after Linux boot.

Module compilation & installation

The first thing you have to do is to select the driver in the Linux configuration tool.

# cd buildroot/build_arm_nofpu/linux.2.6.xx/

Start the configuration tool:

# make menuconfig

In Device Drivers, Armadeus specific drivers select "Armadeus FPGA configuration driver". Then, you have to start again the top make.

Once done, you will find the new driver in the /lib/modules/drivers/ of the rootfs In the host directory armadeus/target/linux/modules/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

FPGARegs usage

  • Write to a FPGA address: fpgareg addr value
# fpgaregs 1000 abcd

this will write 0xabcd (16bits only interface) at the FPGA internal address 0x1000

  • Read a FPGA address: fpgareg addr
# fpgaregs 1000

this will read the address 0x1000

For details take a look at this page: Tips to debug under Linux