Best way to learn how to use FPGAs - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T05:56:37Zhttp://stackoverflow.com/feeds/question/148229http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas14Best way to learn how to use FPGAsMyrrdyn2008-09-29T10:44:52Z2009-10-27T00:43:09Z
<p>In next weeks probably I will have some little FPGA to play with. I have a programmer background (C, C++, Java mostly) and some (very) limited experience in electronics.</p>
<p>What are the best tools to know if you want to develop on FPGAs? </p>
<p>What are the best languages to study? (what HW description languages?)</p>
<p>Have you some examples of little "toy projects" that can be interesting, easy, and "eye-opener"?</p>
<p>Thanks in advance.</p>
<p>Edit:</p>
<p>More details: if I understood correctly, the device I will be playing on will have an ARM core (no idea which one) and a 300k gates FPGA</p>
<p>I'm looking specifically at some Linux free sw / open source tools...</p>
http://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas/148237#1482377Answer by Guvante for Best way to learn how to use FPGAsGuvante2008-09-29T10:49:13Z2008-09-29T10:49:13Z<p>Verilog and VHDL are the two big Hardware description languages I know of.</p>
<p>Can't remember what basic projects I did in my classes, but I do remember my favorite project of all of college, building a CPU in VHDL, and then implementing a basic program in binary.</p>
<p>Nothing like having to debug hardware and software at the same time :). Might not be the most applicable toy project, but I personally had a blast doing it just for the paradigm shift. (Like exactly what fundamental operations do you need to implement a software multiple using a looping mechanism)</p>
http://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas/148253#1482530Answer by basszero for Best way to learn how to use FPGAsbasszero2008-09-29T10:55:46Z2008-09-29T10:55:46Z<p>edit: Didn't read ALL of your post. Sorry. Do you know which FPGAs you'll have do play with?</p>
<p>edit: This is what I posted BEFORE I carefully read the original question</p>
<p>I would suggest messing around with a <a href="http://www.microchip.com" rel="nofollow">PIC microcontroller</a>. You can program them in C/Assembly and require basic knowledge of circuits. Great for hobby projects. You might not want to jump right into VHDL/Verilog until you're got a little bit of experience.</p>
http://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas/148277#1482773Answer by Benoit for Best way to learn how to use FPGAsBenoit2008-09-29T11:06:45Z2008-09-29T13:41:20Z<p>When it comes to Hardware Description Languages, Verilog and VHDL are your choices.<br />
Verilog is C like in its syntax.<br />
VHDL is more like pascal.
Whichever one you choose depends on your tastes.</p>
<p>Both Xilinx and Altera provide free tool chains that will allow you to build up programs for everything but their top of the line chips.</p>
<p>One of the big thing you will have to wrap your head around is that in an FPGA, since you are talking to hardware, things don't happen necessarily in discrete time increment.</p>
<p>For example, a simple assignment 'out <= A + B' will change continuously as the A and B signals change.</p>
<p>Also, you can have multiple things going at once, unlike most computers where you have the <em>illusion</em> of multiple things running, in an FPGA, they <strong>do</strong> run at the same time.</p>
http://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas/148348#1483481Answer by Rich B for Best way to learn how to use FPGAsRich B2008-09-29T11:40:23Z2008-09-29T11:40:23Z<p><a href="http://www.ni.com/labview/" rel="nofollow">National Instruments Labview</a> is available for a easier learning curve with a graphical language.</p>
http://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas/148395#1483955Answer by Lance Richardson for Best way to learn how to use FPGAsLance Richardson2008-09-29T12:00:05Z2008-09-29T12:00:05Z<p>Check out <a href="http://www.fpga4fun.com/" rel="nofollow">http://www.fpga4fun.com/</a> for some interesting projects and tutorials.</p>
http://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas/148454#1484544Answer by Nikhil Kashyap for Best way to learn how to use FPGAsNikhil Kashyap2008-09-29T12:23:38Z2008-09-29T12:23:38Z<p>Back in college, I've programmed in VHDL. Its syntax is pretty much like Pascal. There are lots of softwares available from Altera and Xilinx (2 big VHDL companies that I can think of now) that allow you to drag and drop elements. The software also auto-generates the VHDL/Verilog code. So that's pretty cool. The software also has a simulation tool to ensure that you have programmed correctly. Flashing the VHDL code that you've written into a chip, now that's the big deal :)
All the best!</p>
http://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas/149731#1497312Answer by JeeBee for Best way to learn how to use FPGAsJeeBee2008-09-29T17:21:34Z2008-09-29T17:21:34Z<p>A really neat open-source FPGA project is <a href="http://en.wikipedia.org/wiki/Minimig" rel="nofollow" title="MiniMig">MiniMig</a> - an implementation of the Amiga 500/600 in Verilog. There are a few people working on it to improve the reimplementation, or port other FPGA systems (Commodore One cores like the C64, Amstrad CPC, or even FPGA reimplemenations of arcade games) to it.</p>
http://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas/367025#3670251Answer by aneccodeal for Best way to learn how to use FPGAsaneccodeal2008-12-14T21:43:03Z2008-12-14T21:43:03Z<p>Differences between VHDL and Verilog: </p>
<p>As mentioned, Verilog has a more C-like syntax whereas VHDL is based on ADA.
I think the most important difference is that VHDL allows the programmer to define new data types, while in Verilog you're stuck with the ones built into the language. Programmers tend to prefer VHDL for this reason, while hardware engineers tend to prefer Verilog's simplicty and weak typing. VHDL is strongly typed, while Verilog is weakly typed similar to C.</p>
http://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas/367127#3671271Answer by Mark Raddatz for Best way to learn how to use FPGAsMark Raddatz2008-12-14T23:02:09Z2008-12-14T23:02:09Z<p>At our school we are working on a <a href="http://markraddatz.org/gitweb/?p=eis.git;a=summary" rel="nofollow">very small CPU with a RISC architecture</a> in VHDL which gives me a great insight in how a CPU internally works. It is really mind blowing when you find out that everything will run in parallel.</p>
<p>To create some test programs we also build an open source <a href="http://sekproj.qc.to/" rel="nofollow">assembler and a simulator</a>.</p>
<p>We used on of the Xilinx Sparta-3A boards, the Xiling tools, <a href="http://ghdl.free.fr/" rel="nofollow">GHDL</a> and <a href="http://intranet.cs.man.ac.uk/apt/projects/tools/gtkwave/" rel="nofollow">GTKWave</a> to test and run the CPU. The Xilinx tools are very good in code analyzing and can show you graphically how it will looks in FPGA. All together it's a good start for learning FPGA programming.</p>
http://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas/397130#3971303Answer by devin for Best way to learn how to use FPGAsdevin2008-12-29T04:39:28Z2008-12-29T04:39:28Z<p>I'd recommend <a href="http://www.digilentinc.com/Products/Detail.cfm?Prod=NEXYS2" rel="nofollow">this board</a> if you're starting out. It's 500k gates and I think it's around $100. If you do experiment with FPGAs though, beware of Xilinx. Xilinx crashes or mysteriously stops working all the time, which can make it very difficult to figure out if you did something wrong or if Xilinx is just being difficult.</p>
http://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas/397144#3971444Answer by Bob Somers for Best way to learn how to use FPGAsBob Somers2008-12-29T04:51:18Z2008-12-29T04:51:18Z<p>I'd also recommend the <a href="http://www.digilentinc.com/Products/Detail.cfm?Prod=NEXYS2" rel="nofollow">Nexys 2</a> board from Digilent. Very good first FPGA board. Xilinx's software can be pesky on occasion though, so try to get your hands on the newest version you can.</p>
<p>I would say the #1 thing that trips up programmers moving into hardware description languages is that you need to remember that HDL's describe how a circuit operates, they are <strong>not</strong> a programming language in the traditional sense. Unless you're inside a sequential block (like a process statement in VHDL) the commands will <strong>not</strong> run sequentially. They're implemented as hardware, so it'll all run in parallel, at the same time.</p>
<p>A lot of newcomers tend to forget this and end up with tons of bus contention problems because they're treating busses like variables.</p>
http://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas/431630#4316300Answer by brendank310 for Best way to learn how to use FPGAsbrendank3102009-01-10T19:55:13Z2009-01-10T19:55:13Z<p>Start your designs on paper, not just sit down and start "programming." Although you can do "programming" you will run into problems with latches. What you need to wrap your head around is that you are describing hardware, and there are consequences you have to deal with when doing that. Look at the use of state machines, RTL(control/data path partitioning), and ASM chart design. After you describe what you want to do on paper using those design techniques, it should be easy to describe it in VHDL and/or Verilog.</p>
http://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas/719861#7198611Answer by rkb for Best way to learn how to use FPGAsrkb2009-04-05T23:10:14Z2009-04-05T23:10:14Z<p>The easiest way to program FPGAs is using a high-level language, rather than an HDL (hardware description language) like VHDL or Verilog. <em>(Full disclosure: I work for a C-to-FPGA compiler vendor.)</em></p>
<p>There are a number of commercial compilers that take C or C-like languages as input and generate either VHDL/Verilog or some other hardware representation. The output of these compilers may then be run through synthesis/mapping tools (Xilinx ISE, Altera Quartus II) to create a bitfile, analogous to an executable, for programming the FPGA device.</p>
<ul>
<li><a href="http://impulseaccelerated.com/" rel="nofollow">Impulse C</a></li>
<li><a href="http://mitrionics.com/" rel="nofollow">Mitrion-C</a></li>
<li><a href="http://www.synfora.com/products/picoexpress.html" rel="nofollow">Synfora PICO</a></li>
<li><a href="http://www.mentor.com/products/esl/high%5Flevel%5Fsynthesis/" rel="nofollow">Catapult C</a></li>
<li><a href="http://www.agilityds.com/products/c%5Fbased%5Fproducts/dk%5Fdesign%5Fsuite/default.aspx" rel="nofollow">Handel-C</a></li>
</ul>
<p>The book <em>Practical FPGA Programming in C</em> (ISBN: 978-0131543188) covers the basics of FPGA programming, using Impulse C as the design language.</p>
<p>These C-to-FPGA tools are quite expensive from a software developer's perspective, but some of the vendors have educational pricing and/or offer free evaluations (timed or feature-limited). There are free editions of the synthesis tools (Xilinx ISE WebPack and Altera Quartus II Web Edition), which are either time-limited or can only target smaller/older devices.</p>
<p>There are many cheap FPGA boards out there, for example:</p>
<ul>
<li><a href="http://www.nuhorizons.com/xilinx/boards/spartan3a/eval%5Fkit/" rel="nofollow">Xilinx/NuHorizons Spartan-3A Evaluation Kit</a>, $125</li>
<li><a href="http://www.xilinx.com/products/devkits/aes%5Fsp3a%5Feval400%5Favnet.htm" rel="nofollow">Xilinx/Avnet Spartan-3A Evaluation Kit</a>, $39</li>
<li><a href="http://www.altera.com/products/devkits/altera/kit-cyc2-2C20N.html" rel="nofollow">Altera/Cyclone II FPGA Starter Development Kit</a>, $150</li>
<li><a href="http://www.altera.com/products/devkits/altera/kit-cyc3-embedded.html" rel="nofollow">Altera/Nios II Embedded Evaluation Kit, Cyclone III Edition</a>, $449</li>
</ul>
<p>Portable, PC-connected boards are also available from some vendors (Pico Computing, Opal Kelly, etc.). These connect to a PC with a USB cable or via a PC Card/ExpressCard slot, but are somewhat more expensive. The advantage is connectivity with the PC--you can more easily do I/O between system memory and FPGA than with the standalone boards listed above.</p>
<p>The interesting thing about FPGAs is their capacity for parallel processing. Certain parallelizable algorithms, running at ~100MHz in the FPGA, have shown performance improvements on the order of 100x over the same code on a 3GHz x86 CPU. So if you want to be impressed by these little low-power chips, implement Multiple Sequence Alignment, backprojection, image/signal filtering (DSP algorithms in general), or Monte Carlo simulation on an FPGA.</p>
http://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas/1036748#10367480Answer by OutputLogic for Best way to learn how to use FPGAsOutputLogic2009-06-24T06:46:28Z2009-07-24T02:13:51Z<p>Learn by example. Install Xilinx or Altera tools and complete a couple of tutorials.</p>
http://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas/1126458#11264582Answer by finnw for Best way to learn how to use FPGAsfinnw2009-07-14T16:12:42Z2009-07-14T16:12:42Z<p>Video controllers make good projects to start with.</p>
<p>My first test project controlled a 640x480 VGA monitor, with a mouse pointer that could be moved around with a serial mouse (PS2 & USB mice are harder so save those for when you have more experience.)</p>
<p>Later I added a simple background image (some solid rectangles) and an bit-mapped icon that could be dragged around.</p>
<p>I used one of <a href="http://www.digilentinc.com/Products/Detail.cfm?Prod=S3EBOARD&Nav1=Products&Nav2=Programmable" rel="nofollow">these</a>, but this can probably be done with most development boards with no hardware modifications.</p>
<p>A project like this will introduce you to quite a few essential concepts, e.g. counters, signed & unsigned binary comparators, multiplexing, shift registers (both SIPO and PISO), finite state machines etc.</p>
<p>Implementing a CPU is fun too but best done when you have a little experience already.</p>
<p>I would stick to Verilog at first as every FPGA manufacturer supports it. Avoid Xilinx's free schematic editor (there are better ones out there but they are expensive and not really necessary.)</p>
<p>Some things are slightly less fun but still worth learning if you are considering a career change:</p>
<ul>
<li>Interfacing to DRAM</li>
<li>VHDL (more "bureaucratic" than Verilog, hence most large engineering firms prefer it.)</li>
<li>Low-level serial protocols: SPI, I2C etc.</li>
</ul>
http://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas/1338443#13384430Answer by NoMoreZealots for Best way to learn how to use FPGAsNoMoreZealots2009-08-27T01:40:23Z2009-08-27T02:01:32Z<p>I know both Xilinx and Altera have free tools, and most of the cheap HW out there uses one of them. (Digilent has some of lowest price HW you can get, with a decent amount of built in functionality. They are a Xilinx house.) Xilinx tends to have more dev kits avaliable (that's who I use), but there are some really nice Altera kits that have almost a complete PDA type system put together. I've been told they have really nice tools (by nice, I mean better than xilinx). I THINK Actel also has some free tools, but the only place I've seen thier dev boards is Avnet. They have a neat like board based on their Igloo part that has an edge card connector, I thought it would be cool to integrate into a "cartridge" adaptor for an old video game console.</p>
<ul>
<li>Start with simple examples to get a
grasp on the design environment.
Typical boards have LED and Switch
examples to work with. Type them in
rather than using prefab files, it
improves the learning process.</li>
<li>The design workflow is much different
than software and you want to get
used to using the simulation tools. </li>
<li>Get used to the idea of testing with
the simulator before you try burning
flash. (Simulate to debug, once that works run it on hardware and test.)</li>
<li>Modify the examples as things start
making sense. Use a hypothesis and
test methodology.</li>
<li>Start working on TESTBENCH designs. Some simulations can get involved, you NEED to be able to automate your testing to quickly find bugs.</li>
<li>Move on to more complex examples and
look for algorithms you already
understand well from software. For example LZW
decompression such as what is used in
GIF images is well suited to FPGA
designs.</li>
<li>Starting laying out designs of your
own that integrate the example you've
already done. Block it out on paper, then modify your examples and code the interconnects.
(Concept reinforcement.)</li>
<li>If you choose to do something like a
CPU design, start out simple with a
small instruction set and write a
"Emulator" in a programming language
you already know for your CPU FIRST.
This is something that you can use to
generate expected results. (You'll
want to do either a serial link, or a
display of some sort before you do
something like a CPU, it'll make
testing much easier.)</li>
</ul>
http://stackoverflow.com/questions/148229/best-way-to-learn-how-to-use-fpgas/1628151#16281510Answer by Tore for Best way to learn how to use FPGAsTore2009-10-27T00:43:09Z2009-10-27T00:43:09Z<p><a href="http://www.kongregate.com/games/krispykrem/kohctpyktop-engineer-of-the-people" rel="nofollow">http://www.kongregate.com/games/krispykrem/kohctpyktop-engineer-of-the-people</a></p>
<p>This game opened up my horizon to what hardware really is, and i like to think it made me understand vhdl alot better. </p>
<p>Never used verilog, but vhdl is a nightmare if you dont have any guidance, books or software that agrees with you.</p>