Difference between revisions of "FPGA loader"

From ArmadeusWiki
Jump to: navigation, search
m
(new driver don't care about fpga size & create automatically /dev interface)
Line 5: Line 5:
 
Driver is installed in default Armadeus rootfs.
 
Driver is installed in default Armadeus rootfs.
  
In the Host directory ''target/linux/modules/fpga/dev_tools/fpga_devtools/'' you will find a script named ''fpgaloader.sh''.  
+
For the hackers, code is located in ''target/linux/modules/fpga/dev_tools/fpga_devtools/''.
  
Copy this script on the target and launch it:
+
== Driver usage ==
 
<pre class="apf">
 
<pre class="apf">
  # sh fpgaloader.sh
+
  # modprobe fpgaloader
 
</pre>
 
</pre>
This will load (=modprobe) the driver.
 
  
===Remark===
+
*The FPGA loader driver is usable through the standard Linux filesystem interface. To read the available configuration, do:
The default FPGA version is the Spartan3 200k.
+
The version can be changed when loading the module:
+
<pre class="apf">
+
# modprobe fpgaloader fpga_descriptor=0    (for a 200K)
+
</pre>
+
and:
+
<pre class="apf">
+
# modprobe fpgaloader fpga_descriptor=1    (for a 400k)
+
</pre>
+
 
+
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:
+
 
<pre class="apf">
 
<pre class="apf">
 
  # cat /proc/driver/fpga/loader
 
  # cat /proc/driver/fpga/loader
 +
spartan slave serial
 
</pre>
 
</pre>
*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''), use:
 
*To upload a new firmware (here ''bramtest_top_apf.bin''), use:
 
<pre class="apf">
 
<pre class="apf">
  # dd if=bramtest_top_apf.bin of=/dev/fpga/fpgaloader
+
  # dd if=bramtest_top_apf.bin of=/dev/fpgaloader
 
</pre>
 
</pre>

Revision as of 00:20, 7 March 2009

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

 # modprobe fpgaloader
  • The FPGA loader driver is usable through the standard Linux filesystem interface. To read the available configuration, do:
 # cat /proc/driver/fpga/loader
 spartan slave serial
  • To upload a new firmware (here bramtest_top_apf.bin), use:
 # dd if=bramtest_top_apf.bin of=/dev/fpgaloader