Path: blob/master/Documentation/devicetree/bindings/iio/adc/adi,max14001.yaml
38303 views
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)1# Copyright 2023-2025 Analog Devices Inc.2# Copyright 2023 Kim Seer Paller3# Copyright 2025 Marilene Andrade Garcia4%YAML 1.25---6$id: http://devicetree.org/schemas/iio/adc/adi,max14001.yaml#7$schema: http://devicetree.org/meta-schemas/core.yaml#89title: Analog Devices MAX14001-MAX14002 ADC1011maintainers:12- Kim Seer Paller <kimseer.paller@analog.com>13- Marilene Andrade Garcia <marilene.agarcia@gmail.com>1415description: |16Single channel 10 bit ADC with SPI interface.17Datasheet can be found here18https://www.analog.com/media/en/technical-documentation/data-sheets/MAX14001-MAX14002.pdf1920$ref: /schemas/spi/spi-peripheral-props.yaml#2122properties:23compatible:24oneOf:25- const: adi,max1400226- items:27- const: adi,max1400128- const: adi,max140022930reg:31maxItems: 13233spi-max-frequency:34maximum: 50000003536vdd-supply:37description:38Isolated DC-DC power supply input voltage.3940vddl-supply:41description:42Logic power supply.4344refin-supply:45description:46ADC voltage reference supply.4748interrupts:49minItems: 150items:51- description: |52cout: comparator output signal that asserts high on the COUT pin53when ADC readings exceed the upper threshold and low when readings54fall below the lower threshold.55- description: |56fault: when fault reporting is enabled, the FAULT pin is asserted57low whenever one of the monitored fault conditions occurs.5859interrupt-names:60minItems: 161items:62- const: cout63- const: fault6465required:66- compatible67- reg68- vdd-supply69- vddl-supply7071unevaluatedProperties: false7273examples:74- |75spi {76#address-cells = <1>;77#size-cells = <0>;7879adc@0 {80compatible = "adi,max14001", "adi,max14002";81reg = <0>;82spi-max-frequency = <5000000>;83spi-lsb-first;84vdd-supply = <&vdd>;85vddl-supply = <&vddl>;86};87};88...899091