xref: /freebsd/sys/contrib/device-tree/Bindings/hwmon/maxim,max6639.yaml (revision 0e8011faf58b743cc652e3b2ad0f7671227610df)
1*0e8011faSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2*0e8011faSEmmanuel Vadot%YAML 1.2
3*0e8011faSEmmanuel Vadot---
4*0e8011faSEmmanuel Vadot
5*0e8011faSEmmanuel Vadot$id: http://devicetree.org/schemas/hwmon/maxim,max6639.yaml#
6*0e8011faSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
7*0e8011faSEmmanuel Vadot
8*0e8011faSEmmanuel Vadottitle: Maxim max6639
9*0e8011faSEmmanuel Vadot
10*0e8011faSEmmanuel Vadotmaintainers:
11*0e8011faSEmmanuel Vadot  - Naresh Solanki <naresh.solanki@9elements.com>
12*0e8011faSEmmanuel Vadot
13*0e8011faSEmmanuel Vadotdescription: |
14*0e8011faSEmmanuel Vadot  The MAX6639 is a 2-channel temperature monitor with dual, automatic, PWM
15*0e8011faSEmmanuel Vadot  fan-speed controller.  It monitors its own temperature and one external
16*0e8011faSEmmanuel Vadot  diode-connected transistor or the temperatures of two external diode-connected
17*0e8011faSEmmanuel Vadot  transistors, typically available in CPUs, FPGAs, or GPUs.
18*0e8011faSEmmanuel Vadot
19*0e8011faSEmmanuel Vadot  Datasheets:
20*0e8011faSEmmanuel Vadot    https://datasheets.maximintegrated.com/en/ds/MAX6639-MAX6639F.pdf
21*0e8011faSEmmanuel Vadot
22*0e8011faSEmmanuel Vadotproperties:
23*0e8011faSEmmanuel Vadot  compatible:
24*0e8011faSEmmanuel Vadot    enum:
25*0e8011faSEmmanuel Vadot      - maxim,max6639
26*0e8011faSEmmanuel Vadot
27*0e8011faSEmmanuel Vadot  reg:
28*0e8011faSEmmanuel Vadot    maxItems: 1
29*0e8011faSEmmanuel Vadot
30*0e8011faSEmmanuel Vadot  '#address-cells':
31*0e8011faSEmmanuel Vadot    const: 1
32*0e8011faSEmmanuel Vadot
33*0e8011faSEmmanuel Vadot  '#size-cells':
34*0e8011faSEmmanuel Vadot    const: 0
35*0e8011faSEmmanuel Vadot
36*0e8011faSEmmanuel Vadot  '#pwm-cells':
37*0e8011faSEmmanuel Vadot    const: 3
38*0e8011faSEmmanuel Vadot
39*0e8011faSEmmanuel Vadotrequired:
40*0e8011faSEmmanuel Vadot  - compatible
41*0e8011faSEmmanuel Vadot  - reg
42*0e8011faSEmmanuel Vadot
43*0e8011faSEmmanuel VadotpatternProperties:
44*0e8011faSEmmanuel Vadot  "^fan@[0-1]$":
45*0e8011faSEmmanuel Vadot    type: object
46*0e8011faSEmmanuel Vadot    description:
47*0e8011faSEmmanuel Vadot      Represents the two fans and their specific configuration.
48*0e8011faSEmmanuel Vadot
49*0e8011faSEmmanuel Vadot    $ref: fan-common.yaml#
50*0e8011faSEmmanuel Vadot
51*0e8011faSEmmanuel Vadot    unevaluatedProperties: false
52*0e8011faSEmmanuel Vadot
53*0e8011faSEmmanuel Vadot    properties:
54*0e8011faSEmmanuel Vadot      reg:
55*0e8011faSEmmanuel Vadot        description:
56*0e8011faSEmmanuel Vadot          The fan number.
57*0e8011faSEmmanuel Vadot
58*0e8011faSEmmanuel Vadot    required:
59*0e8011faSEmmanuel Vadot      - reg
60*0e8011faSEmmanuel Vadot
61*0e8011faSEmmanuel VadotadditionalProperties: false
62*0e8011faSEmmanuel Vadot
63*0e8011faSEmmanuel Vadotexamples:
64*0e8011faSEmmanuel Vadot  - |
65*0e8011faSEmmanuel Vadot    i2c {
66*0e8011faSEmmanuel Vadot        #address-cells = <1>;
67*0e8011faSEmmanuel Vadot        #size-cells = <0>;
68*0e8011faSEmmanuel Vadot
69*0e8011faSEmmanuel Vadot        fan1: fan-controller@10 {
70*0e8011faSEmmanuel Vadot            compatible = "maxim,max6639";
71*0e8011faSEmmanuel Vadot            reg = <0x10>;
72*0e8011faSEmmanuel Vadot            #address-cells = <1>;
73*0e8011faSEmmanuel Vadot            #size-cells = <0>;
74*0e8011faSEmmanuel Vadot            #pwm-cells = <3>;
75*0e8011faSEmmanuel Vadot
76*0e8011faSEmmanuel Vadot            fan@0 {
77*0e8011faSEmmanuel Vadot                reg = <0x0>;
78*0e8011faSEmmanuel Vadot                pulses-per-revolution = <2>;
79*0e8011faSEmmanuel Vadot                max-rpm = <4000>;
80*0e8011faSEmmanuel Vadot                target-rpm = <1000>;
81*0e8011faSEmmanuel Vadot                pwms = <&fan1 0 25000 0>;
82*0e8011faSEmmanuel Vadot            };
83*0e8011faSEmmanuel Vadot
84*0e8011faSEmmanuel Vadot            fan@1 {
85*0e8011faSEmmanuel Vadot                reg = <0x1>;
86*0e8011faSEmmanuel Vadot                pulses-per-revolution = <2>;
87*0e8011faSEmmanuel Vadot                max-rpm = <8000>;
88*0e8011faSEmmanuel Vadot                pwms = <&fan1 1 25000 0>;
89*0e8011faSEmmanuel Vadot            };
90*0e8011faSEmmanuel Vadot        };
91*0e8011faSEmmanuel Vadot    };
92*0e8011faSEmmanuel Vadot...
93