1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/iio/adc/adi,ad9467.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Analog Devices AD9467 High-Speed ADC
8
9maintainers:
10  - Michael Hennerich <michael.hennerich@analog.com>
11  - Alexandru Ardelean <alexandru.ardelean@analog.com>
12
13description: |
14  The AD9467 is a 16-bit, monolithic, IF sampling analog-to-digital
15  converter (ADC).
16
17  https://www.analog.com/media/en/technical-documentation/data-sheets/AD9467.pdf
18
19properties:
20  compatible:
21    enum:
22      - adi,ad9467
23
24  reg:
25    maxItems: 1
26
27  clocks:
28    maxItems: 1
29
30  clock-names:
31    items:
32      - const: adc-clk
33
34  powerdown-gpios:
35    description:
36      Pin that controls the powerdown mode of the device.
37    maxItems: 1
38
39  reset-gpios:
40    description:
41      Reset pin for the device.
42    maxItems: 1
43
44required:
45  - compatible
46  - reg
47  - clocks
48  - clock-names
49
50additionalProperties: false
51
52examples:
53  - |
54    spi {
55        #address-cells = <1>;
56        #size-cells = <0>;
57
58        adc@0 {
59          compatible = "adi,ad9467";
60          reg = <0>;
61          clocks = <&adc_clk>;
62          clock-names = "adc-clk";
63        };
64    };
65...
66