|
|
Carl's response was excellent and definitely warrants reading before mine. Having said that:
Before buying a board, I would recommend considering two points carefully:
- Which vendor are you tying yourself to? Are you happy with their tools? This may not be such a big deal if you're putting up $50 for that Avnet board, but if you're shelling out $2k for an ML605 board, you should probably try out Xilinx's tools first. All major vendors offer free versions of their tools online: Xilinx, Altera, Lattice, Actel
What sort of applications do you want to hack at and what sort of peripheral support do they need? Do you want DDR RAM or SRAM? VGA or component video? Do you want a character LCD or a video LCD or neither? AC'97 audio? Do you want Ethernet and, if so, do you care if it's 10/100 or gigabit? Do you want PCI or PCI-E? How about USB?
If, for example, your goal is to use FPGAs to accelerate some application running on a host PC, you need to consider how you'll get data to and from the FPGA, including what sort of bandwidth and latency characteristics you'd like, and what sort of software support you can expect on the host PC side. There's a great-looking module from Opal Kelley that addresses the host-to-FPGA issue.
In short, you don't want to shell out a bunch of money to get stuck with a board that doesn't really meet your expectations. If your goal is simply to experience what it's like to design for an FPGA, the cheapest possible board (i.e., the $50 Avnet Spartan board) is probably your best bet.
Again, I would absolutely recommend downloading the vendors' free tools and working through some tutorials before buying a board.
If you're interested in learning VHDL and/or Verilog independent of the FPGA domain, there are open source simulators for each: Icarus and Alliance. There's also a free version of ModelSim. I'm not aware of a free option that supports mixed-language simulation.
Regarding portability between boards, I tend to disagree with Carl insofar as I think portability can be a big issue. Moving between vendors introduces a lot of problems, ranging from the nuisance of unfamiliar tools to the headache of incompatible or nonexistent IP. Switching boards could mean different, incompatible peripheral chips (e.g., moving from a board with DDR to a board with DDR2 will require a new memory controller). The concepts you learn will definitely be portable; large parts of your designs may also be portable; the integrated system, however, will not be.
The largest barriers will exist when switching between vendors: keep in mind that the FPGA industry is a well-established oligopoly and the leading vendors have a vested interest in preventing their clients from moving to the competition.
On the language front, I also prefer Verilog, mostly because it's more succinct. I've been told that Verilog is more common in North America whereas VHDL is more common in Europe. VHDL also seems to be favoured in defense (possible due to its similarities to Ada). When you're reading about Verilog and VHDL, try to keep in mind that they are event-driven simulation languages that are being used for synthesis -- that is, large portions of the language are only meaningful for simulation and are inefficient or impossible to synthesize.
I agree with Carl that working schematically at the gate level, while possible, will quickly reveal itself to be tedious and inefficient.
There are higher-level languages for hardware design, but none are all that widely accepted. Wikipedia has good links on the C to HDL side and on general-purpose HDLs (like Confluence, Lava, BlueSpec, and so on). There are also MATLAB to HDL tools, like Xilinx's System Generator for DSP.
While there are plenty of decent books on HDL programming, I've honestly never seen a good book on FPGA development. I personally think you'll find better information in vendor tutorials and on blogs. Course notes on university websites may also be useful.
It's often been said that the best way to learn to code well is by reading good code; to that end, take a look at the code for vendor IP and dig around the more successful-looking projects on OpenCores.
Be sure to read the HDL coding guidelines from vendors, and make an effort to read and understand all the warnings and errors generated during synthesis, mapping, placement, and routing. I would also strongly recommend skimming the architecture manual for whatever device you're designing for. Make an effort to understand the synthesis flow and the way in which your HDL maps to the FPGA architecture.
A good example of this is: why is a ripple-carry adder faster on an FPGA than a carry-lookahead adder? The carry chain is so significantly faster than general-purpose routing. Always bear in mind that FPGAs and ASICs are decidedly different beasts.
- I agree with Carl completely here. Not only do the devices change frequently, but so do the design tools and methodologies. Fundamentals will either remain unchanged or provide a basis upon which you can build an understanding of the motivation for the latest tool or architectural quirk.
- I think I've alluded to common pitfalls above, but to summarize:
- The more you understand the architecture you're targeting and the techniques used to translate your HDL, the better you'll be able to target that architecture, leveraging its strengths and avoiding its weaknesses. FPGAs are 'discrete' and 'non-linear', so the difference between playing to their strengths and getting mired in their weaknesses can be very significant.
- Think carefully about the vendor and its tools when buying a board. The price of an FPGA encompasses a lot more than the silicon; it's also IP and tools, and moreover, the latter are probably more significant and valuable than the former.
- This isn't alluded to above, but think carefully about simulation and testing when you're designing for FPGAs. Because synthesis is so time-consuming, you don't want it to be part of your debugging loop. Besides, debugging on the device is vastly more difficult than debugging in a simulator. I'm sure 90% of FPGA development can be done without a development board, so if you're interested in getting into it, just download the tools and dive in.
Edit: Added a link to Actel's tools; the one Actel board I'm aware of is the OpenRISC development kit from ORSoC.
|
|
|
answered
Dec 13 '09 at 18:28
|
|