Adding Hysteresis to CPU Supervisor Voltage Sense Inputs Monitoring Upstream Voltage Supplies for Power-Fail Warnings

2003-06-03
添加至 myAnalog

将文章添加到 myAnalog 的资源部分、现有项目或新项目。

创建新项目

摘要

One of the most important features in any embedded design is ensuring that important data is properly saved and the system reaches a safe/known state as power is failing. A CPU supervisor with a voltage sense input can monitor an upstream voltage supply and provide a warning signal to the microprocessor that signifies that power is failing. This allows the microprocessor time to save critical data and reach a safe/known state before the CPU supervisor, which will also be monitoring the processor's power supply, resets the processor. This application note shows how to add hysteresis to the upstream voltage supply's trip level, which prevents the power-fail warning signal from chattering due to noise. This circuit provides a great tool for producing a sophisticated power-supply monitoring system that will help to produce a robust embedded design.

CPU Supervisor Basics

Basic CPU supervisors monitor a processor's VCC, and reset the processor when VCC drops below a predetermined level, VCCTP. VCCTP is generally 5-20% below the nominal VCC value. This function prevents the processor from operating when VCC is below the processor's specified voltage supply range. Most CPU supervisors also provide a reset delay that holds the processor's reset line active for several milliseconds after VCC has reached its specified value. This allows reset to be held active for a short time after power is applied to the processor for peripherals to ready for communication, and it provides a chance for the power supply to stabilize before the processor begins execution.

By themselves, these functions help to produce a reasonably robust power monitoring system; however, problems can still arise as power is failing because the reset line will be immediately set active as soon as VCC drops below VCCTP. Because there is no warning signal to allow the processor to save important data and reach a safe state, there is no way to ensure the system is ready for the reset to occur.

Voltage Sense Inputs

The voltage sense inputs within CPU supervisors are comparators that have internal temperature and voltage compensated references. The internal reference voltage (referenced as VREF in the equations below) is typically either 1.25V or 2.5V. By using the voltage sense input with an external voltage divider, the supervisor can provide an adjustable trip level monitor that can detect high voltages. Figure 1 shows a classic voltage monitor with no hysteresis. In this circuit the non-maskable interrupt output ("NMI-bar") is asserted whenever VIN drops below the VIN trip level (VINTP) calculated using Equation 1.

Figure 1. The classic voltage detection circuit.

Figure 1. The classic voltage detection circuit.

Equation 1

In systems that utilize a regulator to generate the microprocessor's VCC from an upstream power source, the upstream supply can be monitored using a CPU supervisor with a voltage sense input. When the upstream supply begins to drop in voltage, it is detected before the microprocessor's voltage regulator output falls out of specification. This provides time for the microprocessor to ready for the impending power failure.

On Dallas Semiconductor's CPU supervisors, the voltage sense inputs are generally labeled as IN, and their corresponding outputs, which are intended to be routed to a microprocessor's non-maskable interrupt input, are labeled "NMI-bar". It should be noted that the "NMI-bar" outputs of these devices are not always complementary outputs. The DS1831 for example has open drain outputs, and will require a pull-up resistor on both "RST-bar" and "NMI-bar". See Figure 2 for a list of supervisors with voltage sense inputs.

Figure 2. CPU supervisors with voltage sense inputs.
DS1231 DS1238 DS1238A DS1239
DS1705 DS1706 DS1707 DS1708
DS1831 DS1831A DS1831B DS1831C
DS1831D DS1831E

Adding Hysteresis to CPU Supervisor Voltage Sense Inputs

The voltage sense inputs on Dallas Semiconductor's CPU supervisors do not provide any internal hysteresis, but with the addition of a feedback resistor as shown in Figure 3, hysteresis can be added. Equations 2 and 3 calculate the VIN trip points with the added hysteresis. Voltages above VINTP_PG will result in "NMI-bar" being deasserted because the power supply is at an adequate level. Voltages below VINTP_PF will assert "NMI-bar" to indicate a failing supply. Equation 4 calculates the amount of the hysteresis added to the circuit by the feedback resistor. This shows that decreasing the value of the feedback resistor will increase the amount of the hysteresis. Figure 4 shows the hysteresis as a function of VIN.

Figure 3. High voltage monitor with hysteresis.

Figure 3. High voltage monitor with hysteresis.

Equation 2.

Equation 3.

Equation 4.

Figure 4. 'NMI-bar' outpus hysteresis as a function of VIN.

Figure 4. "NMI-bar" outpus hysteresis as a function of VIN.

The example circuit shows a MAX1615 regulator that is configured to provide a 5.0V supply using its 5/"3-bar" input. The voltage input for the regulator, VIN, is being monitored by the voltage sense input (DS1707's VREF = 1.25V, typical) of the DS1707. The DS1707 is configured by the resistors shown in Figure 3 to allow operation when VIN > VINTP_PG = 8.32V. When VIN < VINTP_PF = 8.04V, the "NMI-bar" output will be asserted to inform the processor that the VIN supply is failing. This setup provides 280mV of hysteresis to prevent the "NMI-bar" output from chattering in the event that VIN, which is likely to be moderately noisy, remains near the monitoring trip point for an extended period of time. In addition to monitoring VIN, the DS1707 is monitoring the MAX1615's output (VCC) to ensure that it remains above the DS1707's 5.0V 10% trip level.

Handling the "NMI-bar" Interrupt

The "NMI-bar" interrupt's purpose in this instance is to ensure that the processor gracefully shuts itself down when upstream power is failing, which will eventually cause the 3.3V/5V power supply to fail. One simple approach is to save all the application's data, get the application to a safe state, and halt execution until power is restored. Figure 5 shows pseudocode to accomplish this task.

Figure 5. Pseudocode for the "NMI-bar" interrupt service routine

  • Save the application's data
  • Shutdown Application (put the system in to a safe state for shutdown, inform user, ...)
  • If ("NMI-bar"> = 1)
    Then Power has restored: Continue executing where you left off OR restart application
    Else Upstream power is still below the trip level: Continue polling "NMI-bar" until 3.3V/5V power fails or the upstream power raises back above the trip level.

As shown in Figure 5, The "NMI-bar" pin can be polled to determine if power has been restored or is still below the trip level (VINTP_PG). If it is below the trip level, it can signify either VIN is still dropping but is at a high enough voltage level that the regulator can maintain VCC, or that the power is in a "brown out" condition. If it drops far enough, the regulator will no longer be able to provide VCC to the system within the tolerance of the DS1707, which will reset the processor. If the upstream power goes back above (VINTP_PG), the application can be restarted either from the beginning or where it left off depending on the system's requirements. The critical item to keep in mind while programming this algorithm is the timing of the situation. When power is failing, the amount of time that the processor has to save data and reach a safe state will be system dependent. Thus, this algorithm should be as short as possible, and extensively tested to ensure that this routine will shutdown the application and be polling the "NMI-bar" pin before the DS1707 will shutdown the application because VCC has failed.

Conclusion

Hysteresis can be added to any voltage sense input by utilizing a feedback resistor. The hysteresis prevents the CPU supervisor's "NMI-bar" output from chattering due to noise if the input voltage hovers near the trip point. This improves the quality of the "NMI-bar" output signal that is used as an early warning that power is failing. When processor receives the "NMI-bar" interrupt, it can save critical data and reach a defined state before it is eventually reset as the voltage continues to drop. By allowing the processor to reach the same safe state each time before power fails, the systems behavior during power fail conditions becomes predictable and reliable.



最新视频 20

Subtitle
了解更多
添加至 myAnalog

将文章添加到 myAnalog 的资源部分、现有项目或新项目。

创建新项目