Industry Article

Designing a Quadrature Encoder Counter with an SPI Bus

This application note describes an SLG46140V design that implements a 16-bit up/down counter with quadrature encoder inputs. The GreenPAK device relieves the host of real-time input requirements and allows for easy connection of multiple encoders.

This application note describes an SLG46140V design that implements a 16-bit up/down counter with quadrature encoder inputs. The GreenPAK device relieves the host of real-time input requirements and allows for easy connection of multiple encoders.

Rotary encoders are widely used to sense the orientation of shafts and machine parts, and as user interface input devices. Most rotary encoders output a pair of quadrature signals, which encode the shaft movement as a series of pulses.

To keep track of the encoder position, every pulse must be counted. Often, interrupt pins are used for this purpose, with the counting implemented in software. Many microcontrollers include specialized peripherals to read quadrature signals. However, interrupt based counting limits the maximum pulse rate and takes up CPU time, while the specialized peripherals limit the number of encoders that can be connected to a single microcontroller. Furthermore, on non-realtime platforms — such as PCs — neither option is available.

This application note demonstrates how an SLG46140V GreenPAK device can implement a quadrature encoder interface with a 16 bit up/down counter and SPI bus interface. The current position of the encoder can be read out by the host application at the desired interval, while the auxiliary device keeps track of each input pulse. Furthermore, the SPI bus allows chaining multiple devices to interface a flexible number of encoders to a single processor.

The High-Level Design

This application note design has three input signals from the encoder: A, B, and Z. Signals A and B are the quadrature signals which switch state alternately in 00, 10, 11, 01 gray code sequence. Signal Z is an optional encoder zero index input, which resets the counter to the zero position.

 

Figure 1: System Connections with One Encoder Device

Figure 1. System connections with one encoder device.

 

The described SPI consists of the nCS chip select signal, an SCK serial clock, and the MISO (master in, slave out) serial output. Chip select is active low, and the bus can be used by other SPI devices when nCS is high. The SPI transfer format used in this application note is CPOL=0, CPHA=1, which means that SCK is in a low state when idle and data is sampled on the falling edge.

 

Figure 2: System Connections with Multiple Encoders

Figure 2. System connections with multiple encoders.

Multiple devices can be chained on the same bus by using the Chain_IN and Chain_OUT signals, which internally delay the data for 16 SCK clock cycles. Thus, the first 16 bits received by the host will be from the first encoder, the next 16 bits from the second encoder and so on. All encoders will be sampled at the same time on the first SCK clock edge.

The implementation inside the GreenPAK device consists of three parts:

  1. Quadrature encoder input block: Converts quadrature signals to KEEP / UP signal pair for the counter, and synchronizes the signals to an internal clock.
  2. 16-bit up/down counter: Two chained 8-bit counters count the encoder pulses and provide parallel data to SPI block.
  3. SPI bus: SPI latches the parallel data and outputs it serially when nCS is active.

The quadrature input block and the counter run from the internal ring oscillator clock, while the SPI is clocked externally by the SPI master. The following sections contain a detailed description of each component.

Quadrature Encoder Input Block

Signals from the encoder initially go to a pair of delay blocks. These work as both glitch filters and synchronizers, ensuring that their output signal only changes at the clock rising edge. The delay value is set to minimum, giving a 2-clock cycle delay. Optionally, for noisy signals, the delay can be increased to filter out any glitch pulses from the inputs, but this filtering will also limit the maximum pulse rate.

The output from the delay blocks is passed to a pair of D-flipflops, which retain the signal state from the previous clock cycle. The current state and the previous state are then compared with a 4-input XNOR gate. If either of the signals has changed, the XNOR gate will output a 0 value for KEEP signal, causing the counter block to count.

 

Figure 3. Quadrature signal input block

Figure 3. Quadrature signal input block

 

Encoder direction is detected by comparing the current states At and Bt with the previous state Bt-1, as shown in Table 1. The detection logic has been programmed to the 3-bit LUT0 component, which outputs an UP signal to the counters.

 

Table 1. Direction Detection from Signal States

Table 1. Direction detection from signal states

 

Some encoders have an additional zero position sensor, which can be used to find the absolute position of the system after a reboot. A high level on this Z signal will reset the counter to zero. If this functionality is not needed, the signal can be left unconnected as the input pin has been configured with a pulldown resistor.

16-Bit Up/Down Counter

The SLG46140V device contains two counter / finite state machine blocks with a parallel data connection to the SPI block. Each of these can output an 8-bit count, and by chaining the two counters a 16-bit counter can be made. The counter wraps around from 0x0000 to 0xFFFF in either direction.

 

logic for Z input signal

Figure 4. Logic for Z input signal

 

By default, the CNT3 block counts from configurable start value either downwards to 0 or upwards to 255, and then restarts at the configured value. Wrap around for downward counting is available by setting the start value for 255, but to get wraparound for upward counting simultaneously, extra logic is needed.

 

Carry Out and Wraparound Logic for Lower 8-bit Counter

Figure 5. Carry out and wraparound logic for lower 8-bit counter

 

The counter's OUT signal activates when the counter is at its extreme value. When KEEP=0 and OUT=1, LUT0 outputs a carry pulse to the next counter to increment its count. Simultaneously LUT1 activates the reset signal if UP=1. DFF2 samples the reset signal so that the counter resets synchronously on the clock rising edge.

The CLEAR signal from the encoder Z input is connected to the asynchronous set input of DFF2, which causes an immediate reset of the counter. The counter resumes counting on the next rising clock edge.

 

Wraparound Logic for High 8-bit Counter

Figure 6. Wraparound logic for high 8-bit counter

 

The second counter stage is connected similarly because a separate carry out signal is not needed from this stage; the three signals are all connected to a single LUT component. It resets the counter to zero when UP=1, KEEP=0, and OUT=1.

SPI Bus

The parallel to serial converter interface is available as a ready-made functional block in the SLG46140 and the SLG46620. The block latches the parallel data from the two counters on the first SCK edge after nCS goes low, and then shifts out the data bit by bit.

The externally generated SCK signal is not synchronous with the internal clock used by the counters, so the two blocks need to be synchronized in some way to reliably transfer data between them. The SPI block offers a built-in selection for gating the FSM clock for two clock cycles when data transfer occurs. In this application, gating the FSM clock is undesirable because it could cause pulses to be lost while the clock was disabled. Instead, DFF5 is used to synchronize the external SCK signal to internal ring oscillator clock. This ensures that the SCK clock edge as seen by SPI block occurs at ring oscillator clock edge when the FSM data is stable.

In this application note, the basic SPI is extended by data chaining logic. This allows connecting multiple encoders easily on the same SPI bus and sampling the counter value of them all simultaneously.

The chaining function is based on Pipe Delay functional block. This block has a chain of 16 flip-flops, which will shift in and shift out one bit on each rising edge of the clock signal. The MISO signal from the previous device in the chain is connected to the input, and the output goes to the next device.

Because the MISO signal is directly connected to pin 12 in hardware, Chain_OUT will have to be externally connected in parallel with it. The output-enabled logic ensures that only one of the pins is active at a time.

 

SPI and data chain logic

Figure 7. SPI and data chain logic

 

For the first 16 clock cycles, after nCS goes low, each device keeps MISO enabled and clock out its counter value. Simultaneously, the Pipe Delay block stores the signal received from the N-1th device in the chain.

After 16 clock cycles, the SPI INTR output goes high to indicate the end of the transmission. LUT2 OR-gate then causes DFF4 flip-flop to go high, disabling PIN12 and enabling PIN13. The Pipe Delay block shifts out the N-1th value, while simultaneously shifting in N-2th value. This continues until all values have been read and the host raises an nCS signal, which resets DFF4 back to its initial state.

 

SPI signal capture with two devices

Figure 8. SPI signal capture with two devices

 

Figure 8 shows an example of SPI communication where the device first sends its own 16-bit data value and then forwards the 16-bit value from the next device in the chain.

Clock Rate Limitations

The delay and counter blocks are clocked from the internal ring oscillator, which runs at approximately 27 MHz frequency and has selectable divider of 1, 4, 8, or 16. The maximum clock rate depends on the delay of the logic elements and varies with the supply voltage.

The longest logic chain in the design goes from input DLY0/1 blocks through 4-bit LUT0 change detector, 2-bit LUT0 carry out logic and 3-bit LUT1 wraparound logic to the FSM blocks. The delay values for these blocks are defined in the SLG46140 datasheet and are summarized in Table 2. Due to routing delays and part variance, the theoretically possible 6.8 MHz frequency did not work with the lowest end of the GreenPAK’s input voltage range (VDD = 1.8 V), and 3.4 MHz clock is used instead.

 

Table 2. Block Delays and Maximum Operating Frequency

Table 2. Block Delays and Maximum Operating Frequency

 

The operating frequency will limit the minimum pulse width on the quadrature inputs. The input glitch filter passes through pulses that are at least three clock cycles long and filter out anything below two clock cycles.

Test Results

Functionality was tested in two ways. Manual testing was performed with the quadrature output from AMT203 rotary encoder, to verify counting in both directions worked as expected and followed the encoder movement.

Maximum pulse rates and counting reliability was verified with a microcontroller generated signal source, which emulates quadrature signals. The microcontroller was configured to output 8000 steps at given step frequencies. Pulse width in quadrature signals is twice the step spacing, as only one signal changes state at a time. The step series was repeated several times while data was being read out through SPI bus. A test case was marked as successful only if all steps were correctly counted every time.

Test results are summarized in Table 3. As expected, pulses shorter than two clock periods get rejected by the glitch filter and result in a zero count. When operating close to the minimum pulse width at each voltage, there are some lost steps. This may be caused by asymmetric rise/fall delays, which can slightly shorten some of the pulses as they travel through the logic.

Conclusions

A design for interfacing quadrature encoders to an SPI bus has been presented. The design can be used as-is, or the individual components can be repurposed for different applications. The quadrature input section can be modified to output signals directly suitable for different devices, such as stepper drivers. The 16-bit up/down counter block provides a useful tool for measuring many kinds of pulse sources. The chainable SPI can be used to simultaneously sample and read from multiple GreenPAK devices, and the data source can come from a counter or an ADC.

References

For related documents and software, visit the configurable mixed signal product page

Download the free GreenPAK Designer software [1] to open the .gp files [2] and view the proposed circuit design. Use the GreenPAK development tools [3] to freeze the design into your own customized IC in a matter of minutes. Dialog Semiconductor provides a complete library of Application Notes [4] featuring design examples as well as explanations of features and blocks within the Dialog IC.

  1. GreenPAK Designer Software, Software Download and User Guide, Dialog Semiconductor.
  2. .gp, GreenPAK Design File, Dialog Semiconductor.
  3. GreenPAK Development Tools, GreenPAK Development Tools Webpage, Dialog Semiconductor.
  4. GreenPAK Application Notes, GreenPAK Application Notes Webpage, Dialog Semiconductor.

Industry Articles are a form of content that allows industry partners to share useful news, messages, and technology with All About Circuits readers in a way editorial content is not well suited to. All Industry Articles are subject to strict editorial guidelines with the intention of offering readers useful news, technical expertise, or stories. The viewpoints and opinions expressed in Industry Articles are those of the partner and not necessarily those of All About Circuits or its writers.

1 Comment
  • T
    takeda July 01, 2022

    There is no link in the second reference:

    .gp, GreenPAK Design File, Dialog Semiconductor.


    The most important thing about this article actually.

    Like. Reply