2.2 Mixed Voltage Domain Systems

In most cases, devices on differing voltage domains cannot directly communicate with each other. The problem is that the lower-voltage device is likely below the VIH of the higher-voltage device, while the higher-voltage device may cause damage to the lower-voltage device due to applying overvoltage to the I/O pins. As a result, communication may not function correctly.

Note: Some devices may have 5V tolerant pins which can handle I/O overvoltage without damage.

As an example of possible behavior, consider the following system:

An MCU is powered on 3.3V, and an SPI Quadrature Decoder is running on 5V. Since the CS line from the MCU uses 3.3V logic levels, the SPI device considers the CS line to be 0 (asserted) when it is 1 (de-asserted). If the SPI device tries to send a 1 to the MCU, the I/O pin will have 5V applied while supplied on an operating voltage of 3.3V, which is enough to exceed the Absolute Maximum Ratings of the MCU.

There are multiple possible solutions to this problem.

  • Use Multi-Voltage I/O (MVIO)
    • MVIO is a level-shifting I/O peripheral built into some microcontrollers. With MVIO, an I/O port operates on a separate voltage domain than the rest of the device.
  • Use an external level shifter
    • Level shifters are specialized circuits to shift a signal from one voltage domain to another. Level shifters come in various types, from auto-direction sensing to bi-directional, depending on the system requirements.
  • Divide down the signal
    • By using a voltage divider, it is possible to divide a higher-voltage signal to the appropriate logic level, which only works for half-duplex communication since the lower-voltage device cannot shift its signal up. Additionally, the logic input will not pull much current due to the high-impedance nature of this signal. Minimize the capacitance for the same reason. Figure Figure 2-2 shows this circuit.
      Figure 2-2. Resistor Divider for Level-Shifting