A 12-bit Two-Stage Pipelined SAR ADC design

Image credit: predictabledesigns.com

Overview

In this project, we designed a 2-stage pipelined Successive Approximation Register (SAR) Analog to Digital Converter (ADC). SAR ADC architectures are popular for achieving high energy efficiency but they suffer from resolution and speed limitations. The pipelined SAR architecture divides a moderate resolution SAR ADC into some low resolution SAR ADCs. The target specifications are given in the following table:

ItemSpecifications
Technology45nm (NCSU FreePDK45)
Power supplyVDD = 1.2V, VSS = 0V
Resistor size< 100kΩ
Capacitor size2fF~ 10pF
ENOB@ Nyquist rate>12bits
Sampling rate>30MS/s
Walden figure-of-merit (FOM)< 100-fJ/conversion-step

Get Started

High Level Block Diagram of the Pipelined SAR ADC
High Level Block Diagram of the Pipelined SAR ADC

The diagram above shows the block diagram of the SAR ADC architecture. The ADC is a pipeline of a 6-bit and a 8-bit SAR ADCs. We decide to use differential sampling in order to cancel the common mode sampling offset. Furthermore, Vcm-based switching technique is used in both stages to lower the power consumption of the whole system.

Stage 1 Schematic Diagram
Stage 1 Schematic Diagram

The first stage has 6-bit effective resolution. The first stage sub-ADC and CDAC share the same sampling capacitor array. There are several typical switching techniques that are available. We decide to use Vcm based switching technique mainly because the low power consumption and faster settling speed. However, one biggest drawback of this method is that it requires extra switches to control each capacitor. There are three possibilities at all sampling capacitors. Before the certain bit compared, the corresponding capacitor’s bottom plate is connected to Vcm. After comparison, its bottom plate will be connected to either ground or Vref depends on the comparing result is 1 or 0. Notice that the positive pair sampling capacitor array and the negative pair sampling capacitor array are connected opposite to each other. These sets of switches are controlled by a SAR logic unit which I’ll go over in next section. Additional independent clock sets are used to make sure each capacitor is in the right phase.

Stage 2 Schematic Diagram
Stage 2 Schematic Diagram

The second stage is a 8-bit SAR ADC. The use of SAR architecture in the second stage enables a large resolution in this single stage. The implementation is very similar compare to the first stage but has two more capacitor sets.

SAR Logic

6-bit SAR Logic
6-bit SAR Logic
The classic SAR architecture is use due to its straightforward design technique. Figure above is the implementation on Cadence. It consists of a set of ring counter and a set of shift regisiter. There are 2x6+2 = 14 D flip flops in use. For each conversion, piror to the first clock rising edge, RESET will first clocked high to reset all flip flop’s output to 0. After that, the RESET signal remains low for the reset of the process. Once the first rising edge approaches, the MSB flip flop is set to 1. Then when second rising edge approaches, the counter shifts 1 to the next flip flop until it reaches the LSB. SAR logic determains the value of bit one by one based on the comparator’s output. For a 6-bit SAR logic, it requires 1+6 = 7 cycles to complete one single conversion. Table below is the algorithm of 6-bit SAR logic.

ClockD1D2D3D4D5D6COMP. Out
RESET000000
1100000D1
2D110000D2
3D1D21000D3
4D1D2D3100D4
5D1D2D3D410D5
6D1D2D3D4D51D6
7D1D2D3D4D5D6

Below is the SAR Logic testing result. Notice that the input (Data) is set to 110000. Our SAR Logic output for each bit matches the input correctly.

SAR logic testing
SAR logic testing

D Flip Flop

Circuit architecture for D Flip Flop
Circuit architecture for D Flip Flop
Because SAR logic uses flip flop, we decide to implement a Positive-edge-triggered D flip-flop with Clear and Preset. Here, three input NAND gates are used. Below is the truth table of our DFF.
Truth Table for D Flip Flop
Truth Table for D Flip Flop

Comparator

strongARM comparator
strongARM comparator
For the comparator, the StrongARM latch is selected for our design.

License

Copyright Zhe Liu.

Zhe Liu
Zhe Liu
DRAM Design Verification Engineer