Difference between revisions of "FPGA loader"

From ArmadeusWiki
Jump to: navigation, search
m (APF51)
Line 8: Line 8:
  
 
== Driver usage ==
 
== Driver usage ==
<pre class="apf">
 
# modprobe fpgaloader
 
fpgaloader v0.9
 
</pre>
 
  
*The FPGA loader driver is usable through the standard Linux filesystem interface. To read the available configuration, do:
+
*To upload a new firmware, use the small helper script that can do all the job for you (load driver and then firmware). Just call it with the bitfile (.rbf for APF6SP and .bin for the other boards) as parameter. For example:
<pre class="apf">
+
# cat /proc/driver/fpga/loader
+
spartan slave serial        <<-- on APF9328
+
spartan slave parallel      <<-- on APF27, APF51
+
</pre>
+
 
+
 
+
*To upload a new firmware, use the small helper script that can do all the job for you (load driver and then firmware). Just call it with the bitfile as parameter. For example:
+
 
<pre class="apf">
 
<pre class="apf">
 
  # load_fpga bramtest_top_apf.bin
 
  # load_fpga bramtest_top_apf.bin
Line 31: Line 19:
  
 
==Troubleshots==
 
==Troubleshots==
=== APF27 ===
 
*If the dd is executed just after the modprobe an error may occur (no space left on device). This can be avoid with this small script:
 
<pre class="apf">
 
modprobe fpgaloader
 
while [ ! -c /dev/fpgaloader ]; do
 
    usleep 1000
 
done
 
dd if=bramtest_top_apf.bin of=/dev/fpgaloader
 
</pre>
 
 
=== APF51 ===
 
=== APF51 ===
* do not use a file stored in flash to load the FPGA. Please copy it to the RAM (/tmp) before.
 
 
* Use binary format '''.bin''', bitstream format '''.bit''' doesn't work.
 
* Use binary format '''.bin''', bitstream format '''.bit''' doesn't work.
  

Revision as of 11:59, 6 November 2014

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).

Driver installation

Driver is installed in default Armadeus rootfs.

For the hackers, code is located in target/linux/modules/fpga/dev_tools/fpga_devtools/.

Driver usage

  • To upload a new firmware, use the small helper script that can do all the job for you (load driver and then firmware). Just call it with the bitfile (.rbf for APF6SP and .bin for the other boards) as parameter. For example:
 # load_fpga bramtest_top_apf.bin


Note Note: On apf9328_devfull and on apf27_dev a LED is already soldered on fpga. For apf27_dev the fpga bank1 must be powered with 3.3V (connect pin 39 and pin 1 on J20 header)


Troubleshots

APF51

  • Use binary format .bin, bitstream format .bit doesn't work.

All the troubleshots are handled by the /usr/bin/load_fpga utility, mentionned above.