brintos

brintos / linux-shallow public Read only

0
0
Text · 1.2 KiB · e3db642 Raw
59 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4 5$id: http://devicetree.org/schemas/hwmon/nuvoton,nct6775.yaml#6$schema: http://devicetree.org/meta-schemas/core.yaml#7 8title: Nuvoton NCT6775 and compatible Super I/O chips9 10maintainers:11  - Zev Weiss <zev@bewilderbeest.net>12 13properties:14  compatible:15    enum:16      - nuvoton,nct610617      - nuvoton,nct611618      - nuvoton,nct677519      - nuvoton,nct677620      - nuvoton,nct677921      - nuvoton,nct679122      - nuvoton,nct679223      - nuvoton,nct679324      - nuvoton,nct679525      - nuvoton,nct679626      - nuvoton,nct679727      - nuvoton,nct679828      - nuvoton,nct679929 30  reg:31    maxItems: 132 33  nuvoton,tsi-channel-mask:34    description:35      Bitmask indicating which TSI temperature sensor channels are36      active.  LSB is TSI0, bit 1 is TSI1, etc.37    $ref: /schemas/types.yaml#/definitions/uint3238    maximum: 0xff39    default: 040 41required:42  - compatible43  - reg44 45additionalProperties: false46 47examples:48  - |49    i2c {50        #address-cells = <1>;51        #size-cells = <0>;52 53        superio@4d {54            compatible = "nuvoton,nct6779";55            reg = <0x4d>;56            nuvoton,tsi-channel-mask = <0x03>;57        };58    };59