When to NOT use Totem Pole Drivers?

When not to use totem-poles:

  1. You can't use totem-poles for wired AND (often called wired OR, but most often they're ANDs). If one output is high and the other low you get a short. Always use open collector/open drain drivers for wired AND.
  2. TTL totem-poles are highly asymmetrical: they can hardly source current, typically 0.4mA versus 16mA when sinking. So don't use them when you need to both source and sink current. CMOS totem-poles are more symmetrical, and don't suffer from this.
  3. When the load you're driving goes beyond \$V_{CC}\$, like for instance a low-power relay which needs +12V on a TTL output. Sinking current the output will be low as expected, but when the output is high it will see the +12V, which will damage the part.
  4. When the input you connect to uses a wildly different supply voltage. If for example the output would switch between 0 and +1.5V it wouldn't be directly usable as input on a 15V system. By using an open collector the pull-up can be connected to the +15V, and the output levels would be automagically according to that system. Important: Many new low-voltage logic families seem to have clamping diodes on their outputs, even open drain, so that you can't go beyond \$V_{DD}\$. I guess it has to do with the low-voltage process, but it does take away the open drain's most interesting feature.

Summary:*

  • A totem pole driver or output is fast and relatively "powerful" when switching in either direction compared to passive resistor stages or current source or open collector loaded stages.

  • A totem pole arrangement is not suitable for paralleling with other divers to make "wired OR" stages - which can be useful in some applications.

  • A totem pole driver switches "between its supply rails" so cannot drive loads which are connected on one end to voltages outside the supply rails - as is required in some applications.

    *- Points in this summary are already covered below. Nothing new added.

A totem pole driver or output stage is a loose term used to mean that the output is driven actively in both the high and low directions.

A totem pole output can be an NPN/PNP or N Channel/P Channel "complementary pair" or, as is the case in many TTL logic devices, two devices of the same polarity stacked on top of each other. This arrangement has become so common that it is often what is envisaged when the term "totem pole" is used, even though a complementary pair can serve the same purposes. The term originally was used in pre transistor thermionic valve designs where two stages were placed in series in the same manner. As there is no Valve equivalent to a PNP transistor, complementary pair designs were not possible.

See diagram below - classic totem-pole output with drivers of same polarity at top and bottom. This is usually what is implied by the term.

enter image description here

See diagram below - two for the price of one. Q1 & Q4 are a classic totem pole driver. Q2 & Q3 form a complementary push-pull output pair - less commonly implied by totm pole terminology.

enter image description here

From here

The alternatives to a totem pole stage are -

  • A passive pullup (or pulldown) where a resistor is used to provide drive in one direction and is "pulled" in the other directionby an active device.

  • An "open collector" drive where there is an active device "pulling" in one direction and nothing pulling in the other. This allows users to add their own "pullup" which is the the "load fopr the active driver, and/or to connect a number of such stages in parallel with a single load shared by all.

  • Current source pullup. This is like using a passive resistive pullup but has somewhat different characteristics.

A totem pole

  • Provides active and so controlled and potentially high level and fast drive in both directions.

  • Has to be designed to avoid excessive (or any) "shoot through" current when both drivers are on at once. Whether this is an issue depends greatly on application and design.

  • Is "always on" either pulling up or pulling down or a bit of both.

  • Switches between on chip supply rails (say Vdd and Ground) so does not allow loads to be switched at voltages above supply rail.

A non totem pole design of one of the 3 main sorts has various pros and cons.

  • Totem pole tends to be faster switching.

  • Totem pole is not easily paralled with other similar devices to create 'wired OR" arrangements. Hi and low drivers fight each other. Opn collector devices do a much better job of this. Devices with internal R's or current sources can be combined with limitations.

  • TP has potential shoot though issues - others don't.

  • TP is limited to drive between power supply rails. Open collector/current source/resistor allow a voltage greater than IC stage Vdd to be switched.

Which type you should use depends on design aims.

  • TP is good for fast single output when due care is taken about what happens in the middle range between high and low.

  • Open collector is far better for paralleling. Resistor and current source (with sources or resistor inside IC) allow paralleling with compromises.

Generally a look at what needs to be achieved makes the choice reasonably clear.


Supercat notes:

  • One other style that's occasionally used (e.g. ports 0 and 2 on an 8x51, when used as an address/data bus) is a cross between an active and passive pull-up: when an output switches from low to high, it briefly outputs a strong signal and then falls back to driving somewhat weakly as long as the output remains high; if the output is externally pulled low, the output current will drop even further. This approach offers the speed advantages of a totem pole while still allowing for wired-or behavior.

The main point of totem pole drivers as used in the original TTL logic chips was to use all NPN transistors, but still provide at least some active pull in each high and low direction. Due to the difference in N and P carrier mobilities, NPN and PNP transistors are never truly symmetric, and there were advantages to using NPN.

In CMOS logic, the N and P channel drivers are symmetric and the driver designs are truly complementary (by definition since that's what the C in CMOS stands for). Since most logic is implemented with FETs instead of bipolar transistors nowadays, the old totem pole output driver topology of TTL logic is rarely used anymore.

Tags:

Driver