Path: blob/master/Documentation/devicetree/bindings/iio/adc/adi,ad4080.yaml
26309 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1# Copyright 2025 Analog Devices Inc.2%YAML 1.23---4$id: http://devicetree.org/schemas/iio/adc/adi,ad4080.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#67title: Analog Devices AD4080 20-Bit, 40 MSPS, Differential SAR ADC89maintainers:10- Antoniu Miclaus <antoniu.miclaus@analog.com>1112description: |13The AD4080 is a high speed, low noise, low distortion, 20-bit, Easy Drive,14successive approximation register (SAR) analog-to-digital converter (ADC).15Maintaining high performance (signal-to-noise and distortion (SINAD) ratio16> 90 dBFS) at signal frequencies in excess of 1 MHz enables the AD4080 to17service a wide variety of precision, wide bandwidth data acquisition18applications.1920https://www.analog.com/media/en/technical-documentation/data-sheets/ad4080.pdf2122$ref: /schemas/spi/spi-peripheral-props.yaml#2324properties:25compatible:26enum:27- adi,ad40802829reg:30maxItems: 13132spi-max-frequency:33description: Configuration of the SPI bus.34maximum: 500000003536clocks:37maxItems: 13839clock-names:40items:41- const: cnv4243vdd33-supply: true4445vdd11-supply: true4647vddldo-supply: true4849iovdd-supply: true5051vrefin-supply: true5253io-backends:54maxItems: 15556adi,lvds-cnv-enable:57description: Enable the LVDS signal type on the CNV pin. Default is CMOS.58type: boolean5960adi,num-lanes:61description:62Number of lanes on which the data is sent on the output (DA, DB pins).63$ref: /schemas/types.yaml#/definitions/uint3264enum: [1, 2]65default: 16667required:68- compatible69- reg70- clocks71- clock-names72- vdd33-supply73- vrefin-supply7475additionalProperties: false7677examples:78- |79spi {80#address-cells = <1>;81#size-cells = <0>;8283adc@0 {84compatible = "adi,ad4080";85reg = <0>;86spi-max-frequency = <10000000>;87vdd33-supply = <&vdd33>;88vddldo-supply = <&vddldo>;89vrefin-supply = <&vrefin>;90clocks = <&cnv>;91clock-names = "cnv";92io-backends = <&iio_backend>;93};94};95...969798