Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/hwmon/adi,adm1266.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Analog Devices ADM1266 Cascadable Super Sequencer with Margin
0008   Control and Fault Recording
0009 
0010 maintainers:
0011   - Alexandru Tachici <alexandru.tachici@analog.com>
0012 
0013 description: |
0014   Analog Devices ADM1266 Cascadable Super Sequencer with Margin
0015   Control and Fault Recording.
0016   https://www.analog.com/media/en/technical-documentation/data-sheets/ADM1266.pdf
0017 
0018 properties:
0019   compatible:
0020     enum:
0021       - adi,adm1266
0022 
0023   reg:
0024     description: |
0025       I2C address of slave device.
0026     items:
0027       minimum: 0x40
0028       maximum: 0x4F
0029 
0030   avcc-supply:
0031     description: |
0032       Phandle to the Avcc power supply.
0033 
0034 required:
0035   - compatible
0036   - reg
0037 
0038 additionalProperties: false
0039 
0040 examples:
0041   - |
0042     i2c0 {
0043         #address-cells = <1>;
0044         #size-cells = <0>;
0045 
0046         adm1266@40 {
0047                 compatible = "adi,adm1266";
0048                 reg = <0x40>;
0049         };
0050     };
0051 ...