FPGA speeds and recommendations

  • Thread starter Okefenokee
  • Start date
  • Tags
    Fpga
In summary, the conversation discusses the need for an FPGA for a pet project and the questions the individual has about its capabilities and use in their project. They also inquire about recommended brands and free software for Verilog. The conversation also touches on clock speed, documentation, and development tools for FPGAs. Ultimately, the conclusion is to look into Altera's Cyclone IV FPGA and their free software, Quartus, for simulation.
  • #1
Okefenokee
245
13
I don't know much about FPGA's but I think I need one for a pet project. I had a few questions for any Verilog pros.

Do they make them fast enough to process bytes at 48 MHz (DSP basically). I'm sure they do make them somewhere but can you get one cheap?

Can you load a VHDL program to an FPGA using an ordinary microcontroller or do FPGA's need special hardware setups for flashing them? Most tutorials I've been looking at require programming dongles. That's fine for software development but I'd like to put one a board of my own making eventually.

Can anyone recommend a brand? I'm looking for one that has really good documentation including board layouts, programming timing diagrams, recommended components, large selection, free development tools, etc.
 
Engineering news on Phys.org
  • #2
Okefenokee said:
I don't know much about FPGA's but I think I need one for a pet project. I had a few questions for any Verilog pros.

Do they make them fast enough to process bytes at 48 MHz (DSP basically). I'm sure they do make them somewhere but can you get one cheap?

Can you load a VHDL program to an FPGA using an ordinary microcontroller or do FPGA's need special hardware setups for flashing them? Most tutorials I've been looking at require programming dongles. That's fine for software development but I'd like to put one a board of my own making eventually.


48MHz is a pretty slow clock speed for FPGAs, but it depends on the nature of your "processing" (can you elaborate, is it just multiply-accumulates?)

You can load FPGA from microcontroller, but you will have to write/obtain the necessary code. Dongles are generally used to allow FPGA programming during development/debug (eliminating the software dependency).


Okefenokee said:
Can anyone recommend a brand? I'm looking for one that has really good documentation including board layouts, programming timing diagrams, recommended components, large selection, free development tools, etc.

There are only a handful. Go to Wikipedia page for FPGA, they are listed at bottom. They all have good documentation. Development tools may be your issue. You may want to focus on this first. I believe that the major FPGA vendors (Xilinx/Altera) only give this out for free to large customers.
 
  • Like
Likes 1 person
  • #3
The DSP I'm talking about is going to be video compression. Basically I want to make a barebones codec with very little compression so that you can receive a video feed with extremely low latency. The FPGA would package pixel data coming in at 48MHz into packets and send that to a microcontroller with IP capability.

I'm not sure what kind of FPGA I should go for. Is there free software out there for Verilog? It would be cool if I could write what I want and get reports on what kind of hardware I need to realize it.
 
  • #4
Last edited by a moderator:
  • #5
I don't know where you are located but here in the UK you can get an Altera Cyclone IV FPGA for about £15, which has a maximum clock rate of 472.5MHz. However, there are a few disadvantages when you use an FPGA in your circuit:
  • An FPGA doesn't have an internal oscillator. You need to use an oscillator chip or make your own oscillator.
  • The core voltage for the Cyclone IV, for example, is between 1.15V and 1.25V and the maximum output voltage for the IO banks is 3.3V.
  • Altera's FPGAs do not have internal FLASH. You need an external FLASH chip to store the configuration data. On power up the FPGA loads the configuration data. You can download your code on the FLASH chip through the parallel cable. The FLASH can be connected in various ways to the FPGA e.g. parallel, SPI etc.

I am familiar only with Altera's devices. You can download the free version of Quartus from their webside, which includes a free version of ModelSim for simulation.

P.S.
The clock rate of the FPGA is somewhat misleading. This is the maximum rate for the D-type flip-flops but if your delay is longer, you need to decrease your clock rate. Generally, if you need to increase the speed of the encoding, you will put more parallel blocks together. I can give you some advice, if you post what you want to do exactly.

Edit
See Figure 8-6 on page 20 here. Also on pages 4 and 5 you can see the configuration file size.
 
Last edited:
  • Like
Likes 1 person
  • #6
Thanks very much for your replies. It looks like Altera is the way to go. They have video DSP libraries and tables that show the DSP performance on their different core families. I'm checking out their software.
 

What is an FPGA and how does it affect speed?

An FPGA, or Field-Programmable Gate Array, is an integrated circuit that can be configured and reprogrammed by the user to perform a specific set of functions. The speed of an FPGA depends on its architecture, clock frequency, and the complexity of the design implemented on it.

What factors influence the speed of an FPGA?

The speed of an FPGA is influenced by various factors, including its architecture, the technology used to manufacture it, the clock frequency, and the complexity of the design implemented on it. It is also affected by the quality of the design and the optimization techniques used.

What is the clock frequency of an FPGA and why is it important?

The clock frequency of an FPGA is the rate at which it can perform operations. It is important because it determines the maximum achievable speed of the FPGA. A higher clock frequency means the FPGA can perform more operations in a given time, resulting in faster execution of the design implemented on it.

How do I choose the right FPGA for my project?

Choosing the right FPGA for a project involves considering various factors such as the required speed, number of logic elements, I/O pins, and memory resources. It is also important to consider the budget and availability of the desired FPGA. Consulting with an FPGA expert or reference designs can also help in making the right choice.

What are some tips for optimizing the speed of an FPGA design?

Some tips for optimizing the speed of an FPGA design include using efficient coding techniques, minimizing the use of complex logic, using high-speed I/O interfaces, and optimizing the placement and routing of the design. It is also important to consider the trade-off between speed and area utilization during design implementation.

Similar threads

  • Electrical Engineering
Replies
3
Views
1K
Replies
4
Views
3K
Replies
5
Views
2K
  • Electrical Engineering
Replies
7
Views
3K
Replies
4
Views
4K
  • STEM Career Guidance
Replies
11
Views
6K
Replies
2
Views
890
  • Science and Math Textbooks
Replies
1
Views
1K
Replies
2
Views
1K
  • Electrical Engineering
Replies
4
Views
2K
Back
Top