8

In the context of FPGAs, it was brought to my attention today that propagation delay varies with supply voltage. When I asked why this was so, one of the FPGA designers stated that a logic gate is essentially an amplifier (which I do agree with) and that more supply voltage means more gain (which I'm not so sure about) and more gain means faster propagation.

I didn't really buy this argument. All else being equal, simply increasing the supply voltage should not increase the small-signal gain, which is out of scope anyways since the 'amplifier' is being over-driven with digital signals.

The only thing I can think of is that a larger supply voltage suggests a higher absolute output voltage slew rate and since the FET threshold voltages don't change (I think), the thresholds are hit more quickly, leading to less delay.

Is my reasoning correct, or is there something else going on here?

pr871
  • 1,167
  • 10
  • 23

2 Answers2

16

I didn't really buy this argument. All else being equal, simply increasing the supply voltage should not increase the small-signal gain, which is out of scope anyways since the 'amplifier' is being over-driven with digital signals.

It really does. Don't think in terms of voltage gain, think in terms of output current:

When you increase the supply voltage, the gate capacitance of a FET is charged quicker, because exponentially more current flows through the involved semiconductor junctions.

That leads to a quasi linear increase of maximum switching speed in modern CMOS ICs. Sadly, you buy that with a raising energy dissipation per switching (=heat!), and thus typically in a superquadratically effort needed to keep the IC at acceptable temperatures. That's one of the main reasons (if not the main reason) there's little complex logic clocked at 10 GHz.

Marcus Müller
  • 88,280
  • 5
  • 131
  • 237
  • Maybe I was misunderstanding what he meant by 'gain'. Regardless, does that mean that my statement near the end of the question regarding rise times and FET thresholds is correct? – pr871 Dec 18 '19 at 20:04
  • the thresholds might actually shift a bit, but that really depends on the configuration in which the FETs are used, but the exponential charge curve of a capacitor really outshines that :) – Marcus Müller Dec 18 '19 at 20:05
  • @pr871 It's not that the threshold voltages are hit more quickly, but that the applied gate voltage \$V_{GS}\$ is much greater than \$V_{TH}\$ so \$I_{DS}\$ increases. – Elliot Alderson Dec 18 '19 at 20:25
5

CMOS voltage gain increases with supply voltage due to increased gm. It also reduces RdOn which improves current slew rate into a capacitive load T= Ron*C by increasing peak current and acceleration.

  • what you describe a prop. delay is actually current slew rate.
  • the time to complete a step is due to this slew rate.
Tony Stewart EE75
  • 1
  • 3
  • 54
  • 182