Difference between revisions of "SP VISION"

From ArmadeusWiki
Jump to: navigation, search
m (On the APF*_Dev)
 
(15 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Under_Construction}}
+
= Introduction =
== Introduction ==
+
  
The board sp_vision is an extension of apf27-Dev and apf51-dev with a spartan6 and two ddr. It is design for video processing.
+
The SP_Vision board is an extension of [[APF27Dev]] and [[APF51Dev]] with a Spartan6 and two DDR. It is designed for real-time video processing.
  
== Configure the Spartan6 with apf27-Dev==
+
= Configure the sp_vision fpga =
  
Spartan6 selectmap configuration port is plugged on generic IO of apf27 spartan3 fpga. Then, to configure spartan6, a specific virtual component is required under spartan3.
+
SP_Vision FPGA configuration is done through APF* FPGA, then to configure the SP_Vision FPGA you will need a configuration virtual component called ''sp_vision_configure'' under the APF*'s onboard FPGA.
This virtual component is available under POD components library and is named ''spartan_selectmap''. This component must be added to your spartan3 design to enable sp_vision spartan6 configuration.
+
This virtual component is available in [http://periphondemand.git.sourceforge.net/git/gitweb.cgi?p=periphondemand/periphondemand;a=tree;f=src/library/components/sp_vision_configure;h=babdb0b05178267c1a8d077b0a1c5737820dea0e;hb=HEAD POD library], but if you don't want to make special design just for configuration, a standard design is provided in armadeus tree.
  
A simple spartan3 design is available under ARMadeus project tree ''firmware/sp_vision_config/'' to simplify sp_vision config. The design can be synthetized with ISE using the TCL script ''firmware/sp_vision_config/synthesis/testconfig.tcl''.
+
== On the APF*_Dev ==
The already synthetized bitstream is also available under ''firmware/sp_vision_config/bitstream/''.
+
  
Then to configure spartan6 :
+
* First select the driver for sp_vision_configuraton under linux-menuconfig :
* first configure apf27-spartan3:
+
 
 +
<pre class="host">
 +
[ ]$ make linux-menuconfig
 +
</pre>
 +
 
 +
<pre class="config">
 +
Device Drivers  --->     
 +
    Armadeus specific drivers  --->
 +
        FPGA Drivers  --->
 +
            [...]
 +
            [*]  virtual components
 +
            [...]
 +
            [*]  Board designs
 +
            [...]
 +
            <M>    board driver for sp_vision fpga loader
 +
</pre>
 +
 
 +
then
 +
<pre class="host">
 +
[ ]$ make linux
 +
[...]
 +
[ ]$ make
 +
[...]
 +
</pre>
 +
 
 +
The configuration bitstream can be found under the directory ''firmware/pod_scripts/'' and it's named '''apf27_spvision_loader.bit''' for APF27 and '''apf51_spvision_loader.bin''' for APF51. To configure the second (sp_vision) FPGA, first FPGA on APF* must be configured with this bitstream.
 +
* Configure the first fpga (if you transfer files by nfs):
 
<pre class="apf">
 
<pre class="apf">
BIOS> tftpboot ${loadaddr} top_testconfig.bit
+
# modprobe fpgaloader
BIOS> fpga load 0 ${loadaddr} 2486f
+
 
</pre>
 
</pre>
* then configure the second fpga using ''loadsecond'' operator:
+
On APF27:
 
<pre class="apf">
 
<pre class="apf">
BIOS> tftpboot ${loadaddr} spartan6_example_top.bit
+
# load_fpga apf27_spvision_loader.bit
BIOS> fpga loadsecond 1 ${loadaddr} 16a674 D6000000 1
+
 
</pre>
 
</pre>
 +
On APF51:
 +
<pre class="apf">
 +
# load_fpga apf51_spvision_loader.bin
 +
</pre>
 +
 +
* Once the first FPGA configured, just do :
 +
<pre class="apf">
 +
# modprobe sploader
 +
# modprobe sploader_prober
 +
# dd if=your_sp_vision_bitstream.bit of=/dev/sp_loader
 +
</pre>
 +
 +
= Communicate with sp_vision =
 +
{{Under_Construction}}

Latest revision as of 18:18, 4 September 2013

Introduction

The SP_Vision board is an extension of APF27Dev and APF51Dev with a Spartan6 and two DDR. It is designed for real-time video processing.

Configure the sp_vision fpga

SP_Vision FPGA configuration is done through APF* FPGA, then to configure the SP_Vision FPGA you will need a configuration virtual component called sp_vision_configure under the APF*'s onboard FPGA. This virtual component is available in POD library, but if you don't want to make special design just for configuration, a standard design is provided in armadeus tree.

On the APF*_Dev

  • First select the driver for sp_vision_configuraton under linux-menuconfig :
[ ]$ make linux-menuconfig
Device Drivers  --->       
    Armadeus specific drivers  --->
        FPGA Drivers   --->
            [...]
            [*]   virtual components
            [...]
            [*]   Board designs
            [...]
            <M>     board driver for sp_vision fpga loader

then

[ ]$ make linux
[...]
[ ]$ make
[...]

The configuration bitstream can be found under the directory firmware/pod_scripts/ and it's named apf27_spvision_loader.bit for APF27 and apf51_spvision_loader.bin for APF51. To configure the second (sp_vision) FPGA, first FPGA on APF* must be configured with this bitstream.

  • Configure the first fpga (if you transfer files by nfs):
 # modprobe fpgaloader

On APF27:

 # load_fpga apf27_spvision_loader.bit

On APF51:

 # load_fpga apf51_spvision_loader.bin
  • Once the first FPGA configured, just do :
 # modprobe sploader
 # modprobe sploader_prober
 # dd if=your_sp_vision_bitstream.bit of=/dev/sp_loader

Communicate with sp_vision

Page under construction... Construction.png Informations on this page are not guaranteed !!