Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I seem to be under the impression that FPGAs can be updated while the chip is running; and I need to know if that is correct or not.

It seems to be from what I've read that you can change the FPGA netlist on demand the same way you can change the program that's running on a processor. Yes I know that an FPGA is not a processor.

Is my assumption correct, and if not then how come?

share|improve this question
So the assumption above is only true for FPGA's that support partial reconfiguration; which is a small subset of FPGAs. Thanks all. – kurtnelle Dec 10 '10 at 14:04

3 Answers

up vote 3 down vote accepted

Most of the time, you load the configuration for the entire FPGA in one go, and all logic stops running during the reconfiguration process.

It sounds like you want to reload a subset of the FPGA, while the remainder continues running. You would need a device with special support for partial reconfiguration. There's more information on Wikipedia.

share|improve this answer

==> EDIT: I stand corrected: EETimes article on partial reconfiguration

You will generally need to reset the FPGA so that it can be reprogrammed.

At a system level reconfiguration is possible. You can have a software application running on a PC or embedded system that reprograms the FPGA as needed. Depending on the application or software license, you can program different FPGA designs easily. You cannot, however, significantly alter the design structure, such I/Os, logic cells, DSP configs, memory blocks, etc.

share|improve this answer

Yes I know that an FPGA is not a processor.

An FPGA is is a type of processor, but it is not a type of CPU.

Most FPGAs only have volatile storage so you have to update them whilst they're on. This doesn't mean that you can change their operation any time you want. That's dynamic reconfiguration and only supported by a subset of FPGAs.

share|improve this answer
I disagree. FPGA is anything but a processor. It's more like a large configurable logic circuit. – OutputLogic Dec 28 '10 at 2:28
Processors process data (hence their name). FPGAs don't do anything except for processing data, they are processors. – dan_waterworth Dec 28 '10 at 7:34
of course but the term processor can be misleading since 99.9999% of people will interpret the word processor as CPU and there aren't two things as different as a CPU and a FPGA one offers you extreme flexibility and poor performance the other offers extreme performances (some times thousand time more performing than CPU's) but at cost of almost no flexibility So even if it's technically correct saying that FPGA are processors it's extremely misleading – Filippo Savi Feb 27 at 13:35
@FilippoSavi, It's unfortunate that technically precise words to describe processors and types of processor don't exist. – dan_waterworth Feb 27 at 14:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.