summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/iio/temperature/microchip,mcp9600.yaml
blob: d2cafa38a5442e229be8befb26ae3f34bae44cdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/iio/temperature/microchip,mcp9600.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Microchip MCP9600 thermocouple EMF converter

maintainers:
  - Andrew Hepp <andrew.hepp@ahepp.dev>

description:
  https://ww1.microchip.com/downloads/en/DeviceDoc/MCP960X-Data-Sheet-20005426.pdf

properties:
  compatible:
    const: microchip,mcp9600

  reg:
    maxItems: 1

  interrupts:
    minItems: 1
    maxItems: 6

  interrupt-names:
    minItems: 1
    maxItems: 6
    items:
      enum:
        - open-circuit
        - short-circuit
        - alert1
        - alert2
        - alert3
        - alert4

  thermocouple-type:
    $ref: /schemas/types.yaml#/definitions/uint32
    description:
      Type of thermocouple (THERMOCOUPLE_TYPE_K if omitted).
      Use defines in dt-bindings/iio/temperature/thermocouple.h.
      Supported types are B, E, J, K, N, R, S, T.

  vdd-supply: true

required:
  - compatible
  - reg

additionalProperties: false

examples:
  - |
    #include <dt-bindings/iio/temperature/thermocouple.h>
    #include <dt-bindings/interrupt-controller/irq.h>
    i2c {
        #address-cells = <1>;
        #size-cells = <0>;

        temperature-sensor@60 {
            compatible = "microchip,mcp9600";
            reg = <0x60>;
            interrupt-parent = <&gpio>;
            interrupts = <25 IRQ_TYPE_EDGE_RISING>;
            interrupt-names = "open-circuit";
            thermocouple-type = <THERMOCOUPLE_TYPE_K>;
            vdd-supply = <&vdd>;
        };
    };