Difference between revisions of "FPGA loader"

From ArmadeusWiki
Jump to: navigation, search
m (Driver usage)
 
(10 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
[[Category: FPGA]]
 +
 
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 allows you to load the FPGA of your APF board from Linux userspace/shell (ie FPGA reprogrammation after Linux boot).
 
This driver allows you to load the FPGA of your APF board from Linux userspace/shell (ie FPGA reprogrammation after Linux boot).
Line 8: Line 10:
  
 
== 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">
 
<pre class="apf">
# cat /proc/driver/fpga/loader
+
# load_fpga bramtest_top_apf.bin
spartan slave serial        <<-- on APF9328
+
spartan slave parallel      <<-- on APF27
+
 
</pre>
 
</pre>
  
*To upload a new firmware (here ''bramtest_top_apf.bin''), use:
+
* For APF6_SP a periph.rbf must be [[Target_Software_Installation#APF6_SP | loaded in U-Boot]] before, the core.rbf can then be loaded under linux with load_fpga:
 
<pre class="apf">
 
<pre class="apf">
  # dd if=bramtest_top_apf.bin of=/dev/fpgaloader
+
  # load_fpga firmware.core.rbf
 
</pre>
 
</pre>
 +
* [[Simple_blinking_LED |  You can find some ready to use bitfiles in ''firmware/leds/blinking_led/bin/'' (blinking LED).]]
  
*Since 3.1 release, there is a 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:
+
{{Note| On '''APF6_SP''' the command load_fpga work only throught PCIe, see [[PCIe fpga load]] to know how it works}}
<pre class="apf">
+
# load_fpga bramtest_top_apf.bin
+
</pre>
+
  
* [[Simple_blinking_LED |  You can find some ready to use bitfiles in ''firmware/leds/blinking_led/bin/'' (blinking LED).]]
+
==Troubleshots==
 +
=== APF51 ===
 +
* Use binary format '''.bin''', bitstream format '''.bit''' doesn't work.
  
==Troubleshots==
+
All the troubleshots are handled by the ''/usr/bin/load_fpga'' utility, mentionned above.
*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>
+
This is one of the things that is done by the ''/usr/bin/load_fpga'' utility, mentionned above.
+
  
 
[[Category:FPGA]]
 
[[Category:FPGA]]

Latest revision as of 08:41, 27 August 2015


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
  • For APF6_SP a periph.rbf must be loaded in U-Boot before, the core.rbf can then be loaded under linux with load_fpga:
 # load_fpga firmware.core.rbf
Note Note: On APF6_SP the command load_fpga work only throught PCIe, see PCIe fpga load to know how it works


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.