0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/iio/potentiometer/max5432.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Maxim Integrated MAX5432-MAX5435 Digital Potentiometers
0008
0009 maintainers:
0010 - Martin Kaiser <martin@kaiser.cx>
0011
0012 description: |
0013 Maxim Integrated MAX5432-MAX5435 Digital Potentiometers connected via I2C
0014
0015 Datasheet:
0016 https://datasheets.maximintegrated.com/en/ds/MAX5432-MAX5435.pdf
0017
0018 properties:
0019 compatible:
0020 enum:
0021 - maxim,max5432
0022 - maxim,max5433
0023 - maxim,max5434
0024 - maxim,max5435
0025
0026 reg:
0027 maxItems: 1
0028
0029 required:
0030 - compatible
0031 - reg
0032
0033 additionalProperties: false
0034
0035 examples:
0036 - |
0037 i2c {
0038 #address-cells = <1>;
0039 #size-cells = <0>;
0040 max5434@28 {
0041 compatible = "maxim,max5434";
0042 reg = <0x28>;
0043 };
0044 };