Tell me more ×
Electrical Engineering Stack Exchange is a question and answer site for electronics and electrical engineering professionals, students, and enthusiasts. It's 100% free, no registration required.

From the results given by power analyzer, I find that the Xilinx FPGAs always have a high static power consumption no matter what your design is, although it will vary if your design utilize different number of resources.

What are the components consuming the static power on Xilinx FPGA reported by power analyzer?

My guess is: interconnect (wires and switches) + slice used + IOB used + memory used + ASIC component used (multiplier, adder, etc)

share|improve this question

2 Answers

up vote 1 down vote accepted

First, it depends on the family. Older ones have less leakage.

Interconnect does have a lot of transistors, so it is likely high.

Slices used is high (for the logic) and low (the configuration logic is optimized for power since it doesn't need speed).

IOB is low.

Memory and ASIC components I can't comment on.

share|improve this answer
My impression is that newer ones also have less leakage (per LUT or similar) :) I think from Xilinx's 6 series to 7 series they tried really hard to reduce the static power... V5 was a peak, V6 started the downward trend. But of course the devices keep getting denser, so it might not look downward from a whole-device point of view! – Martin Thompson Apr 19 at 8:36

Any transistors in the FPGA that have power applied to them will consume static power, due to leakage through the transistor. Wires do not consume static power.

If you have a small design I guess that certain blocks would be power gated, which will reduce static power, but for anything that's used it will consume static power, which will increase linearly with the amount of 'stuff' used, mostly regardless of what it's used for.

share|improve this answer
Thank you for pointing out wires does not consume power. I find Brian's answer more detail. But your answer is also very good. – rex Apr 23 at 0:17

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.