0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/iio/adc/sigma-delta-modulator.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Device-Tree bindings for sigma delta modulator
0008
0009 maintainers:
0010 - Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
0011
0012 properties:
0013 compatible:
0014 description: |
0015 "sd-modulator" can be used as a generic SD modulator,
0016 if the modulator is not specified in the compatible list.
0017 enum:
0018 - sd-modulator
0019 - ads1201
0020
0021 '#io-channel-cells':
0022 const: 0
0023
0024 required:
0025 - compatible
0026 - '#io-channel-cells'
0027
0028 additionalProperties: false
0029
0030 examples:
0031 - |
0032 ads1202: adc {
0033 compatible = "sd-modulator";
0034 #io-channel-cells = <0>;
0035 };
0036
0037 ...