Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen RevisionVorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
software:linux:fpga_loader [2017-04-20 11:57] grafsoftware:linux:fpga_loader [2023-04-11 08:35] (aktuell) Urs Graf
Zeile 2: Zeile 2:
  
 <box 30% right green | QuickLinks> <box 30% right green | QuickLinks>
-  * [[https://github.com/ntb-ch/fpga_loader| Source Code]]+  * [[https://gitlab.ost.ch/tech/inf/public/fpga-loader| Source Code]]
   * [[https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/cfg/cfg_cf51001.pdf| Configuring Altera FPGAs]]   * [[https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/cfg/cfg_cf51001.pdf| Configuring Altera FPGAs]]
 </box> </box>
  
-Altera FPGAs können über Leitungen von einem Microkontroller konfiguriert werden (Passive Serial). Für Linux gibt es ein Kernel Modul, welches über das GPIO Subsystem die Ansteuerung der Signale realisiertAktuell unterstützt die Version auf github das Colibri-Modul von Toradex (iMX6). Für andere Plattformen müssen die Pinnummern im Modul geändert werden+Altera FPGAs can be configured by a microcontroller using wires (Passive Serial). The FPGA loader is a Linux kernel module which uses the gpio subsystem to drive the signals on the 5 wiresThe version on github supports the Colibri module from Toradex (iMX6). For other plattforms you have to change the pin numbers in the source code.
  
- +In order to be able to load the FPGA design you have to enable the creation of the RBF file in Quartus under //Device and Pin Options//:
-Um das FPGA Design laden zu können, muss in Quartus zuerst das Erzeugen des RBF-Files in den //Device and Pin Options// aktiviert werden:+
  
 {{.:quartus-rbf.png?400|}} {{.:quartus-rbf.png?400|}}
  
-Das RBF-File kann mit dem ''dd'' Befehl auf das FPGA geladen werden:+Make sure to load the kernel modul //fpga_loader.ko// before using. After sucessfully loading the FPGA you have to unload the kernel module in order to use the gpio's as usual. 
 +  
 +The RBF file can be loaded with ''dd'':
  
 <code> <code>
 # dd if=design.rbf of=/dev/fpga_loader bs=5M # dd if=design.rbf of=/dev/fpga_loader bs=5M
 </code> </code>
 +
 +===== Details =====
 +[[https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/hb/cyclone-iv/cyiv-51008.pdf]] shows how the FPGA is configured properly. 
 +The timing is as follows {{ :software:linux:timing.pdf |}}. Please note that //Two DCLK falling edges are required after CONF_DONE goes high to begin the
 +initialization of the device.//
 +
 +