1*7ef62cebSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*7ef62cebSEmmanuel Vadot%YAML 1.2 3*7ef62cebSEmmanuel Vadot--- 4*7ef62cebSEmmanuel Vadot$id: http://devicetree.org/schemas/hwmon/adi,max31760.yaml# 5*7ef62cebSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*7ef62cebSEmmanuel Vadot 7*7ef62cebSEmmanuel Vadottitle: Analog Devices MAX31760 Fan-Speed Controller 8*7ef62cebSEmmanuel Vadot 9*7ef62cebSEmmanuel Vadotmaintainers: 10*7ef62cebSEmmanuel Vadot - Ibrahim Tilki <Ibrahim.Tilki@analog.com> 11*7ef62cebSEmmanuel Vadot 12*7ef62cebSEmmanuel Vadotdescription: | 13*7ef62cebSEmmanuel Vadot Analog Devices MAX31760 Fan-Speed Controller 14*7ef62cebSEmmanuel Vadot https://datasheets.maximintegrated.com/en/ds/MAX31760.pdf 15*7ef62cebSEmmanuel Vadot 16*7ef62cebSEmmanuel Vadotproperties: 17*7ef62cebSEmmanuel Vadot compatible: 18*7ef62cebSEmmanuel Vadot enum: 19*7ef62cebSEmmanuel Vadot - adi,max31760 20*7ef62cebSEmmanuel Vadot 21*7ef62cebSEmmanuel Vadot reg: 22*7ef62cebSEmmanuel Vadot description: I2C address of slave device. 23*7ef62cebSEmmanuel Vadot minimum: 0x50 24*7ef62cebSEmmanuel Vadot maximum: 0x57 25*7ef62cebSEmmanuel Vadot 26*7ef62cebSEmmanuel Vadotrequired: 27*7ef62cebSEmmanuel Vadot - compatible 28*7ef62cebSEmmanuel Vadot - reg 29*7ef62cebSEmmanuel Vadot 30*7ef62cebSEmmanuel VadotadditionalProperties: false 31*7ef62cebSEmmanuel Vadot 32*7ef62cebSEmmanuel Vadotexamples: 33*7ef62cebSEmmanuel Vadot - | 34*7ef62cebSEmmanuel Vadot i2c { 35*7ef62cebSEmmanuel Vadot #address-cells = <1>; 36*7ef62cebSEmmanuel Vadot #size-cells = <0>; 37*7ef62cebSEmmanuel Vadot 38*7ef62cebSEmmanuel Vadot fan-controller@50 { 39*7ef62cebSEmmanuel Vadot reg = <0x50>; 40*7ef62cebSEmmanuel Vadot compatible = "adi,max31760"; 41*7ef62cebSEmmanuel Vadot }; 42*7ef62cebSEmmanuel Vadot }; 43