Giter Site home page Giter Site logo

fpga_adc's Introduction

An FPGA-based 7-ENOB 600 MSample/s ADC without any External Components

This repository contains the VHDL code of the proposed ADC from the paper An FPGA-based 7-ENOB 600 MSample/s ADC without any External Components published at the conference FPGA 2021.

DOI DOI

VHDL

The VHDL code of the ADC is provided in VHDL/adc/adc.vhd. The ADC was implemented on a ZCU104 demo board from Xilinx which deploys the Ultrascale+ FPGA XCZU7EV-2FFVC1156.

Constraints

The following constraints are necessary for the ADC to work:

set_property OUTPUT_IMPEDANCE RDRV_60_60 [get_ports inp]
set_property SLEW SLOW [get_ports inp]

This sets the output impedance and the slewrate of the pin which is used to create the reference slope.

set_false_path -from [get_pins clk_wiz_0/inst/mmcme4_adv_inst/CLKOUT0] -to [get_pins {adc_0/U0/inst_TDC/gen_TDC[*].*.inst_TDC/inst_carryChain/output_buffer[*].*/D}]
set_false_path -from [get_pins clk_wiz_0/inst/mmcme4_adv_inst/CLKOUT1] -to [get_pins {adc_0/U0/inst_TDC/gen_TDC[*].*.inst_TDC/inst_carryChain/output_buffer[*].*/D}]
...
set_false_path -from [get_pins adc_0/U0/inst_TDC/inst_calLength/*/C] -to [get_pins {adc_0/U0/inst_TDC/gen_TDC[*].*.inst_TDC/inst_carryChain/output_buffer[*].*/D}]
set_false_path -from [get_pins adc_0/U0/inst_TDC/inst_inlCorrection/inst_controlFalling/*/C] -to [get_pins {adc_0/U0/inst_TDC/gen_TDC[*].*.inst_TDC/inst_carryChain/output_buffer[*].*/D}]
set_false_path -from [get_pins adc_0/U0/inst_TDC/inst_inlCorrection/inst_controlRising/*/C] -to [get_pins {adc_0/U0/inst_TDC/gen_TDC[*].*.inst_TDC/inst_carryChain/output_buffer[*].*/D}]

To achieve the timing with this ADC, it is necessary to set a false path from all signals which are fed into the carry chain to the carry chain FFs.

DRC error

During placement a DRC error will occur which states that a single ended output buffer is not allowed to drive a differential input buffer. This error can be downgraded to a warning with the following tcl script:

set_property SEVERITY WARNING [get_drc_checks REQP-1581]

Known limitations

  • The delay chain cannot be longer than 1.5 times the period of the clock used to determine the length of the delay chain. In other words, if a delay element has a delay of 4ps and a 600MHz clock is used, the delay chain cannot be longer than 625 delay elements (1250 if the XOR outputs are also used).

fpga_adc's People

Contributors

lukileu avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.