brintos

brintos / linux-shallow public Read only

0
0
Text · 1.7 KiB · bf33321 Raw
79 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/hwmon/jedec,jc42.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Jedec JC-42.4 compatible temperature sensors8 9maintainers:10  - Jean Delvare <jdelvare@suse.com>11  - Guenter Roeck <linux@roeck-us.net>12 13select:14  properties:15    compatible:16      const: jedec,jc-42.4-temp17 18  required:19    - compatible20 21properties:22  compatible:23    oneOf:24      - const: jedec,jc-42.4-temp25      - items:26          - enum:27              - adi,adt740828              - atmel,at30ts0029              - atmel,at30tse00430              - idt,tse200231              - idt,tse200432              - idt,ts300033              - idt,ts300134              - maxim,max660435              - microchip,mcp980436              - microchip,mcp980537              - microchip,mcp980838              - microchip,mcp9824339              - microchip,mcp9824440              - microchip,mcp984341              - nxp,se9742              - nxp,se97b43              - nxp,se9844              - onnn,cat609545              - onnn,cat34ts0246              - st,stts200247              - st,stts200448              - st,stts300049              - st,stts42450              - st,stts424e51          - const: jedec,jc-42.4-temp52 53  reg:54    maxItems: 155 56  smbus-timeout-disable:57    description: |58      When set, the smbus timeout function will be disabled. This is not59      supported on all chips.60    type: boolean61 62required:63  - compatible64  - reg65 66additionalProperties: false67 68examples:69  - |70    i2c {71        #address-cells = <1>;72        #size-cells = <0>;73 74        temp-sensor@1a {75            compatible = "jedec,jc-42.4-temp";76            reg = <0x1a>;77        };78    };79