bcd50307d963ea1eb45f40584fc7387d04a7ae3a
[linux-2.6-microblaze.git] / drivers / hwmon / max6650.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * max6650.c - Part of lm_sensors, Linux kernel modules for hardware
4  *             monitoring.
5  *
6  * (C) 2007 by Hans J. Koch <hjk@hansjkoch.de>
7  *
8  * based on code written by John Morris <john.morris@spirentcom.com>
9  * Copyright (c) 2003 Spirent Communications
10  * and Claus Gindhart <claus.gindhart@kontron.com>
11  *
12  * This module has only been tested with the MAX6650 chip. It should
13  * also work with the MAX6651. It does not distinguish max6650 and max6651
14  * chips.
15  *
16  * The datasheet was last seen at:
17  *
18  *        http://pdfserv.maxim-ic.com/en/ds/MAX6650-MAX6651.pdf
19  */
20
21 #include <linux/module.h>
22 #include <linux/init.h>
23 #include <linux/slab.h>
24 #include <linux/jiffies.h>
25 #include <linux/i2c.h>
26 #include <linux/hwmon.h>
27 #include <linux/hwmon-sysfs.h>
28 #include <linux/err.h>
29 #include <linux/of_device.h>
30 #include <linux/thermal.h>
31
32 /*
33  * Insmod parameters
34  */
35
36 /* fan_voltage: 5=5V fan, 12=12V fan, 0=don't change */
37 static int fan_voltage;
38 /* prescaler: Possible values are 1, 2, 4, 8, 16 or 0 for don't change */
39 static int prescaler;
40 /* clock: The clock frequency of the chip (max6651 can be clocked externally) */
41 static int clock = 254000;
42
43 module_param(fan_voltage, int, 0444);
44 module_param(prescaler, int, 0444);
45 module_param(clock, int, 0444);
46
47 /*
48  * MAX 6650/6651 registers
49  */
50
51 #define MAX6650_REG_SPEED       0x00
52 #define MAX6650_REG_CONFIG      0x02
53 #define MAX6650_REG_GPIO_DEF    0x04
54 #define MAX6650_REG_DAC         0x06
55 #define MAX6650_REG_ALARM_EN    0x08
56 #define MAX6650_REG_ALARM       0x0A
57 #define MAX6650_REG_TACH0       0x0C
58 #define MAX6650_REG_TACH1       0x0E
59 #define MAX6650_REG_TACH2       0x10
60 #define MAX6650_REG_TACH3       0x12
61 #define MAX6650_REG_GPIO_STAT   0x14
62 #define MAX6650_REG_COUNT       0x16
63
64 /*
65  * Config register bits
66  */
67
68 #define MAX6650_CFG_V12                 0x08
69 #define MAX6650_CFG_PRESCALER_MASK      0x07
70 #define MAX6650_CFG_PRESCALER_2         0x01
71 #define MAX6650_CFG_PRESCALER_4         0x02
72 #define MAX6650_CFG_PRESCALER_8         0x03
73 #define MAX6650_CFG_PRESCALER_16        0x04
74 #define MAX6650_CFG_MODE_MASK           0x30
75 #define MAX6650_CFG_MODE_ON             0x00
76 #define MAX6650_CFG_MODE_OFF            0x10
77 #define MAX6650_CFG_MODE_CLOSED_LOOP    0x20
78 #define MAX6650_CFG_MODE_OPEN_LOOP      0x30
79 #define MAX6650_COUNT_MASK              0x03
80
81 /*
82  * Alarm status register bits
83  */
84
85 #define MAX6650_ALRM_MAX        0x01
86 #define MAX6650_ALRM_MIN        0x02
87 #define MAX6650_ALRM_TACH       0x04
88 #define MAX6650_ALRM_GPIO1      0x08
89 #define MAX6650_ALRM_GPIO2      0x10
90
91 /* Minimum and maximum values of the FAN-RPM */
92 #define FAN_RPM_MIN 240
93 #define FAN_RPM_MAX 30000
94
95 #define DIV_FROM_REG(reg)       (1 << ((reg) & 7))
96 #define DAC_LIMIT(v12)          ((v12) ? 180 : 76)
97
98 /*
99  * Client data (each client gets its own)
100  */
101
102 struct max6650_data {
103         struct i2c_client *client;
104         struct mutex update_lock;
105         int nr_fans;
106         bool valid; /* false until following fields are valid */
107         unsigned long last_updated; /* in jiffies */
108
109         /* register values */
110         u8 speed;
111         u8 config;
112         u8 tach[4];
113         u8 count;
114         u8 dac;
115         u8 alarm;
116         u8 alarm_en;
117         unsigned long cooling_dev_state;
118 };
119
120 static const u8 tach_reg[] = {
121         MAX6650_REG_TACH0,
122         MAX6650_REG_TACH1,
123         MAX6650_REG_TACH2,
124         MAX6650_REG_TACH3,
125 };
126
127 static const struct of_device_id __maybe_unused max6650_dt_match[] = {
128         {
129                 .compatible = "maxim,max6650",
130                 .data = (void *)1
131         },
132         {
133                 .compatible = "maxim,max6651",
134                 .data = (void *)4
135         },
136         { },
137 };
138 MODULE_DEVICE_TABLE(of, max6650_dt_match);
139
140 static int dac_to_pwm(int dac, bool v12)
141 {
142         /*
143          * Useful range for dac is 0-180 for 12V fans and 0-76 for 5V fans.
144          * Lower DAC values mean higher speeds.
145          */
146         return clamp_val(255 - (255 * dac) / DAC_LIMIT(v12), 0, 255);
147 }
148
149 static u8 pwm_to_dac(unsigned int pwm, bool v12)
150 {
151         int limit = DAC_LIMIT(v12);
152
153         return limit - (limit * pwm) / 255;
154 }
155
156 static struct max6650_data *max6650_update_device(struct device *dev)
157 {
158         struct max6650_data *data = dev_get_drvdata(dev);
159         struct i2c_client *client = data->client;
160         int i;
161
162         mutex_lock(&data->update_lock);
163
164         if (time_after(jiffies, data->last_updated + HZ) || !data->valid) {
165                 data->speed = i2c_smbus_read_byte_data(client,
166                                                        MAX6650_REG_SPEED);
167                 data->config = i2c_smbus_read_byte_data(client,
168                                                         MAX6650_REG_CONFIG);
169                 for (i = 0; i < data->nr_fans; i++) {
170                         data->tach[i] = i2c_smbus_read_byte_data(client,
171                                                                  tach_reg[i]);
172                 }
173                 data->count = i2c_smbus_read_byte_data(client,
174                                                         MAX6650_REG_COUNT);
175                 data->dac = i2c_smbus_read_byte_data(client, MAX6650_REG_DAC);
176
177                 /*
178                  * Alarms are cleared on read in case the condition that
179                  * caused the alarm is removed. Keep the value latched here
180                  * for providing the register through different alarm files.
181                  */
182                 data->alarm |= i2c_smbus_read_byte_data(client,
183                                                         MAX6650_REG_ALARM);
184
185                 data->last_updated = jiffies;
186                 data->valid = true;
187         }
188
189         mutex_unlock(&data->update_lock);
190
191         return data;
192 }
193
194 /*
195  * Change the operating mode of the chip (if needed).
196  * mode is one of the MAX6650_CFG_MODE_* values.
197  */
198 static int max6650_set_operating_mode(struct max6650_data *data, u8 mode)
199 {
200         int result;
201         u8 config = data->config;
202
203         if (mode == (config & MAX6650_CFG_MODE_MASK))
204                 return 0;
205
206         config = (config & ~MAX6650_CFG_MODE_MASK) | mode;
207
208         result = i2c_smbus_write_byte_data(data->client, MAX6650_REG_CONFIG,
209                                            config);
210         if (result < 0)
211                 return result;
212
213         data->config = config;
214
215         return 0;
216 }
217
218 /*
219  * Set the fan speed to the specified RPM (or read back the RPM setting).
220  * This works in closed loop mode only. Use pwm1 for open loop speed setting.
221  *
222  * The MAX6650/1 will automatically control fan speed when in closed loop
223  * mode.
224  *
225  * Assumptions:
226  *
227  * 1) The MAX6650/1 internal 254kHz clock frequency is set correctly. Use
228  *    the clock module parameter if you need to fine tune this.
229  *
230  * 2) The prescaler (low three bits of the config register) has already
231  *    been set to an appropriate value. Use the prescaler module parameter
232  *    if your BIOS doesn't initialize the chip properly.
233  *
234  * The relevant equations are given on pages 21 and 22 of the datasheet.
235  *
236  * From the datasheet, the relevant equation when in regulation is:
237  *
238  *    [fCLK / (128 x (KTACH + 1))] = 2 x FanSpeed / KSCALE
239  *
240  * where:
241  *
242  *    fCLK is the oscillator frequency (either the 254kHz internal
243  *         oscillator or the externally applied clock)
244  *
245  *    KTACH is the value in the speed register
246  *
247  *    FanSpeed is the speed of the fan in rps
248  *
249  *    KSCALE is the prescaler value (1, 2, 4, 8, or 16)
250  *
251  * When reading, we need to solve for FanSpeed. When writing, we need to
252  * solve for KTACH.
253  *
254  * Note: this tachometer is completely separate from the tachometers
255  * used to measure the fan speeds. Only one fan's speed (fan1) is
256  * controlled.
257  */
258
259 static int max6650_set_target(struct max6650_data *data, unsigned long rpm)
260 {
261         int kscale, ktach;
262
263         if (rpm == 0)
264                 return max6650_set_operating_mode(data, MAX6650_CFG_MODE_OFF);
265
266         rpm = clamp_val(rpm, FAN_RPM_MIN, FAN_RPM_MAX);
267
268         /*
269          * Divide the required speed by 60 to get from rpm to rps, then
270          * use the datasheet equation:
271          *
272          *     KTACH = [(fCLK x KSCALE) / (256 x FanSpeed)] - 1
273          */
274
275         kscale = DIV_FROM_REG(data->config);
276         ktach = ((clock * kscale) / (256 * rpm / 60)) - 1;
277         if (ktach < 0)
278                 ktach = 0;
279         if (ktach > 255)
280                 ktach = 255;
281         data->speed = ktach;
282
283         return i2c_smbus_write_byte_data(data->client, MAX6650_REG_SPEED,
284                                          data->speed);
285 }
286
287 /*
288  * Get gpio alarm status:
289  * Possible values:
290  * 0 = no alarm
291  * 1 = alarm
292  */
293
294 static ssize_t alarm_show(struct device *dev,
295                           struct device_attribute *devattr, char *buf)
296 {
297         struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
298         struct max6650_data *data = max6650_update_device(dev);
299         bool alarm = data->alarm & attr->index;
300
301         if (alarm) {
302                 mutex_lock(&data->update_lock);
303                 data->alarm &= ~attr->index;
304                 data->valid = false;
305                 mutex_unlock(&data->update_lock);
306         }
307
308         return sprintf(buf, "%d\n", alarm);
309 }
310
311 static SENSOR_DEVICE_ATTR_RO(gpio1_alarm, alarm, MAX6650_ALRM_GPIO1);
312 static SENSOR_DEVICE_ATTR_RO(gpio2_alarm, alarm, MAX6650_ALRM_GPIO2);
313
314 static umode_t max6650_attrs_visible(struct kobject *kobj, struct attribute *a,
315                                     int n)
316 {
317         struct device *dev = container_of(kobj, struct device, kobj);
318         struct max6650_data *data = dev_get_drvdata(dev);
319         struct device_attribute *devattr;
320
321         /*
322          * Hide the alarms that have not been enabled by the firmware
323          */
324
325         devattr = container_of(a, struct device_attribute, attr);
326         if (devattr == &sensor_dev_attr_gpio1_alarm.dev_attr ||
327             devattr == &sensor_dev_attr_gpio2_alarm.dev_attr) {
328                 if (!(data->alarm_en & to_sensor_dev_attr(devattr)->index))
329                         return 0;
330         }
331
332         return a->mode;
333 }
334
335 static struct attribute *max6650_attrs[] = {
336         &sensor_dev_attr_gpio1_alarm.dev_attr.attr,
337         &sensor_dev_attr_gpio2_alarm.dev_attr.attr,
338         NULL
339 };
340
341 static const struct attribute_group max6650_group = {
342         .attrs = max6650_attrs,
343         .is_visible = max6650_attrs_visible,
344 };
345
346 static const struct attribute_group *max6650_groups[] = {
347         &max6650_group,
348         NULL
349 };
350
351 static int max6650_init_client(struct max6650_data *data,
352                                struct i2c_client *client)
353 {
354         struct device *dev = &client->dev;
355         int reg;
356         int err;
357         u32 voltage;
358         u32 prescale;
359         u32 target_rpm;
360
361         if (of_property_read_u32(dev->of_node, "maxim,fan-microvolt",
362                                  &voltage))
363                 voltage = fan_voltage;
364         else
365                 voltage /= 1000000; /* Microvolts to volts */
366         if (of_property_read_u32(dev->of_node, "maxim,fan-prescale",
367                                  &prescale))
368                 prescale = prescaler;
369
370         reg = i2c_smbus_read_byte_data(client, MAX6650_REG_CONFIG);
371         if (reg < 0) {
372                 dev_err(dev, "Error reading config register, aborting.\n");
373                 return reg;
374         }
375
376         switch (voltage) {
377         case 0:
378                 break;
379         case 5:
380                 reg &= ~MAX6650_CFG_V12;
381                 break;
382         case 12:
383                 reg |= MAX6650_CFG_V12;
384                 break;
385         default:
386                 dev_err(dev, "illegal value for fan_voltage (%d)\n", voltage);
387         }
388
389         switch (prescale) {
390         case 0:
391                 break;
392         case 1:
393                 reg &= ~MAX6650_CFG_PRESCALER_MASK;
394                 break;
395         case 2:
396                 reg = (reg & ~MAX6650_CFG_PRESCALER_MASK)
397                          | MAX6650_CFG_PRESCALER_2;
398                 break;
399         case  4:
400                 reg = (reg & ~MAX6650_CFG_PRESCALER_MASK)
401                          | MAX6650_CFG_PRESCALER_4;
402                 break;
403         case  8:
404                 reg = (reg & ~MAX6650_CFG_PRESCALER_MASK)
405                          | MAX6650_CFG_PRESCALER_8;
406                 break;
407         case 16:
408                 reg = (reg & ~MAX6650_CFG_PRESCALER_MASK)
409                          | MAX6650_CFG_PRESCALER_16;
410                 break;
411         default:
412                 dev_err(dev, "illegal value for prescaler (%d)\n", prescale);
413         }
414
415         dev_info(dev, "Fan voltage: %dV, prescaler: %d.\n",
416                  (reg & MAX6650_CFG_V12) ? 12 : 5,
417                  1 << (reg & MAX6650_CFG_PRESCALER_MASK));
418
419         err = i2c_smbus_write_byte_data(client, MAX6650_REG_CONFIG, reg);
420         if (err) {
421                 dev_err(dev, "Config write error, aborting.\n");
422                 return err;
423         }
424
425         data->config = reg;
426         reg = i2c_smbus_read_byte_data(client, MAX6650_REG_COUNT);
427         if (reg < 0) {
428                 dev_err(dev, "Failed to read count register, aborting.\n");
429                 return reg;
430         }
431         data->count = reg;
432
433         reg = i2c_smbus_read_byte_data(client, MAX6650_REG_ALARM_EN);
434         if (reg < 0) {
435                 dev_err(dev, "Failed to read alarm configuration, aborting.\n");
436                 return reg;
437         }
438         data->alarm_en = reg;
439
440         if (!of_property_read_u32(client->dev.of_node, "maxim,fan-target-rpm",
441                                   &target_rpm)) {
442                 max6650_set_target(data, target_rpm);
443                 max6650_set_operating_mode(data, MAX6650_CFG_MODE_CLOSED_LOOP);
444         }
445
446         return 0;
447 }
448
449 #if IS_ENABLED(CONFIG_THERMAL)
450
451 static int max6650_get_max_state(struct thermal_cooling_device *cdev,
452                                  unsigned long *state)
453 {
454         *state = 255;
455
456         return 0;
457 }
458
459 static int max6650_get_cur_state(struct thermal_cooling_device *cdev,
460                                  unsigned long *state)
461 {
462         struct max6650_data *data = cdev->devdata;
463
464         *state = data->cooling_dev_state;
465
466         return 0;
467 }
468
469 static int max6650_set_cur_state(struct thermal_cooling_device *cdev,
470                                  unsigned long state)
471 {
472         struct max6650_data *data = cdev->devdata;
473         struct i2c_client *client = data->client;
474         int err;
475
476         state = clamp_val(state, 0, 255);
477
478         mutex_lock(&data->update_lock);
479
480         data->dac = pwm_to_dac(state, data->config & MAX6650_CFG_V12);
481         err = i2c_smbus_write_byte_data(client, MAX6650_REG_DAC, data->dac);
482
483         if (!err) {
484                 max6650_set_operating_mode(data, state ?
485                                                    MAX6650_CFG_MODE_OPEN_LOOP :
486                                                    MAX6650_CFG_MODE_OFF);
487                 data->cooling_dev_state = state;
488         }
489
490         mutex_unlock(&data->update_lock);
491
492         return err;
493 }
494
495 static const struct thermal_cooling_device_ops max6650_cooling_ops = {
496         .get_max_state = max6650_get_max_state,
497         .get_cur_state = max6650_get_cur_state,
498         .set_cur_state = max6650_set_cur_state,
499 };
500 #endif
501
502 static int max6650_read(struct device *dev, enum hwmon_sensor_types type,
503                         u32 attr, int channel, long *val)
504 {
505         struct max6650_data *data = max6650_update_device(dev);
506         int mode;
507
508         switch (type) {
509         case hwmon_pwm:
510                 switch (attr) {
511                 case hwmon_pwm_input:
512                         *val = dac_to_pwm(data->dac,
513                                           data->config & MAX6650_CFG_V12);
514                         break;
515                 case hwmon_pwm_enable:
516                         /*
517                          * Possible values:
518                          * 0 = Fan always on
519                          * 1 = Open loop, Voltage is set according to speed,
520                          *     not regulated.
521                          * 2 = Closed loop, RPM for all fans regulated by fan1
522                          *     tachometer
523                          * 3 = Fan off
524                          */
525                         mode = (data->config & MAX6650_CFG_MODE_MASK) >> 4;
526                         *val = (4 - mode) & 3; /* {0 1 2 3} -> {0 3 2 1} */
527                         break;
528                 default:
529                         return -EOPNOTSUPP;
530                 }
531                 break;
532         case hwmon_fan:
533                 switch (attr) {
534                 case hwmon_fan_input:
535                         /*
536                          * Calculation details:
537                          *
538                          * Each tachometer counts over an interval given by the
539                          * "count" register (0.25, 0.5, 1 or 2 seconds).
540                          * The driver assumes that the fans produce two pulses
541                          * per revolution (this seems to be the most common).
542                          */
543                         *val = DIV_ROUND_CLOSEST(data->tach[channel] * 120,
544                                                  DIV_FROM_REG(data->count));
545                         break;
546                 case hwmon_fan_div:
547                         *val = DIV_FROM_REG(data->count);
548                         break;
549                 case hwmon_fan_target:
550                         /*
551                          * Use the datasheet equation:
552                          *    FanSpeed = KSCALE x fCLK / [256 x (KTACH + 1)]
553                          * then multiply by 60 to give rpm.
554                          */
555                         *val = 60 * DIV_FROM_REG(data->config) * clock /
556                                 (256 * (data->speed + 1));
557                         break;
558                 case hwmon_fan_min_alarm:
559                         *val = !!(data->alarm & MAX6650_ALRM_MIN);
560                         data->alarm &= ~MAX6650_ALRM_MIN;
561                         data->valid = false;
562                         break;
563                 case hwmon_fan_max_alarm:
564                         *val = !!(data->alarm & MAX6650_ALRM_MAX);
565                         data->alarm &= ~MAX6650_ALRM_MAX;
566                         data->valid = false;
567                         break;
568                 case hwmon_fan_fault:
569                         *val = !!(data->alarm & MAX6650_ALRM_TACH);
570                         data->alarm &= ~MAX6650_ALRM_TACH;
571                         data->valid = false;
572                         break;
573                 default:
574                         return -EOPNOTSUPP;
575                 }
576                 break;
577         default:
578                 return -EOPNOTSUPP;
579         }
580         return 0;
581 }
582
583 static const u8 max6650_pwm_modes[] = {
584         MAX6650_CFG_MODE_ON,
585         MAX6650_CFG_MODE_OPEN_LOOP,
586         MAX6650_CFG_MODE_CLOSED_LOOP,
587         MAX6650_CFG_MODE_OFF,
588 };
589
590 static int max6650_write(struct device *dev, enum hwmon_sensor_types type,
591                          u32 attr, int channel, long val)
592 {
593         struct max6650_data *data = dev_get_drvdata(dev);
594         int ret = 0;
595         u8 reg;
596
597         mutex_lock(&data->update_lock);
598
599         switch (type) {
600         case hwmon_pwm:
601                 switch (attr) {
602                 case hwmon_pwm_input:
603                         reg = pwm_to_dac(clamp_val(val, 0, 255),
604                                          data->config & MAX6650_CFG_V12);
605                         ret = i2c_smbus_write_byte_data(data->client,
606                                                         MAX6650_REG_DAC, reg);
607                         if (ret)
608                                 break;
609                         data->dac = reg;
610                         break;
611                 case hwmon_pwm_enable:
612                         if (val < 0 || val >= ARRAY_SIZE(max6650_pwm_modes)) {
613                                 ret = -EINVAL;
614                                 break;
615                         }
616                         ret = max6650_set_operating_mode(data,
617                                                 max6650_pwm_modes[val]);
618                         break;
619                 default:
620                         ret = -EOPNOTSUPP;
621                         break;
622                 }
623                 break;
624         case hwmon_fan:
625                 switch (attr) {
626                 case hwmon_fan_div:
627                         switch (val) {
628                         case 1:
629                                 reg = 0;
630                                 break;
631                         case 2:
632                                 reg = 1;
633                                 break;
634                         case 4:
635                                 reg = 2;
636                                 break;
637                         case 8:
638                                 reg = 3;
639                                 break;
640                         default:
641                                 ret = -EINVAL;
642                                 goto error;
643                         }
644                         ret = i2c_smbus_write_byte_data(data->client,
645                                                         MAX6650_REG_COUNT, reg);
646                         if (ret)
647                                 break;
648                         data->count = reg;
649                         break;
650                 case hwmon_fan_target:
651                         if (val < 0) {
652                                 ret = -EINVAL;
653                                 break;
654                         }
655                         ret = max6650_set_target(data, val);
656                         break;
657                 default:
658                         ret = -EOPNOTSUPP;
659                         break;
660                 }
661                 break;
662         default:
663                 ret = -EOPNOTSUPP;
664                 break;
665         }
666
667 error:
668         mutex_unlock(&data->update_lock);
669         return ret;
670 }
671
672 static umode_t max6650_is_visible(const void *_data,
673                                   enum hwmon_sensor_types type, u32 attr,
674                                   int channel)
675 {
676         const struct max6650_data *data = _data;
677
678         if (channel && (channel >= data->nr_fans || type != hwmon_fan))
679                 return 0;
680
681         switch (type) {
682         case hwmon_fan:
683                 switch (attr) {
684                 case hwmon_fan_input:
685                         return 0444;
686                 case hwmon_fan_target:
687                 case hwmon_fan_div:
688                         return 0644;
689                 case hwmon_fan_min_alarm:
690                         if (data->alarm_en & MAX6650_ALRM_MIN)
691                                 return 0444;
692                         break;
693                 case hwmon_fan_max_alarm:
694                         if (data->alarm_en & MAX6650_ALRM_MAX)
695                                 return 0444;
696                         break;
697                 case hwmon_fan_fault:
698                         if (data->alarm_en & MAX6650_ALRM_TACH)
699                                 return 0444;
700                         break;
701                 default:
702                         break;
703                 }
704                 break;
705         case hwmon_pwm:
706                 switch (attr) {
707                 case hwmon_pwm_input:
708                 case hwmon_pwm_enable:
709                         return 0644;
710                 default:
711                         break;
712                 }
713                 break;
714         default:
715                 break;
716         }
717         return 0;
718 }
719
720 static const struct hwmon_channel_info *max6650_info[] = {
721         HWMON_CHANNEL_INFO(fan, HWMON_F_INPUT | HWMON_F_TARGET | HWMON_F_DIV |
722                            HWMON_F_MIN_ALARM | HWMON_F_MAX_ALARM |
723                            HWMON_F_FAULT,
724                            HWMON_F_INPUT, HWMON_F_INPUT, HWMON_F_INPUT),
725         HWMON_CHANNEL_INFO(pwm, HWMON_PWM_INPUT | HWMON_PWM_ENABLE),
726         NULL
727 };
728
729 static const struct hwmon_ops max6650_hwmon_ops = {
730         .read = max6650_read,
731         .write = max6650_write,
732         .is_visible = max6650_is_visible,
733 };
734
735 static const struct hwmon_chip_info max6650_chip_info = {
736         .ops = &max6650_hwmon_ops,
737         .info = max6650_info,
738 };
739
740 static int max6650_probe(struct i2c_client *client,
741                          const struct i2c_device_id *id)
742 {
743         struct thermal_cooling_device *cooling_dev;
744         struct device *dev = &client->dev;
745         const struct of_device_id *of_id =
746                 of_match_device(of_match_ptr(max6650_dt_match), dev);
747         struct max6650_data *data;
748         struct device *hwmon_dev;
749         int err;
750
751         data = devm_kzalloc(dev, sizeof(struct max6650_data), GFP_KERNEL);
752         if (!data)
753                 return -ENOMEM;
754
755         data->client = client;
756         i2c_set_clientdata(client, data);
757         mutex_init(&data->update_lock);
758         data->nr_fans = of_id ? (int)(uintptr_t)of_id->data : id->driver_data;
759
760         /*
761          * Initialize the max6650 chip
762          */
763         err = max6650_init_client(data, client);
764         if (err)
765                 return err;
766
767         hwmon_dev = devm_hwmon_device_register_with_info(dev,
768                                                          client->name, data,
769                                                          &max6650_chip_info,
770                                                          max6650_groups);
771         err = PTR_ERR_OR_ZERO(hwmon_dev);
772         if (err)
773                 return err;
774
775 #if IS_ENABLED(CONFIG_THERMAL)
776         cooling_dev = devm_thermal_of_cooling_device_register(dev, dev->of_node,
777                                 client->name, data, &max6650_cooling_ops);
778         if (IS_ERR(cooling_dev)) {
779                 dev_warn(dev, "thermal cooling device register failed: %ld\n",
780                          PTR_ERR(cooling_dev));
781         }
782 #endif
783         return 0;
784 }
785
786 static const struct i2c_device_id max6650_id[] = {
787         { "max6650", 1 },
788         { "max6651", 4 },
789         { }
790 };
791 MODULE_DEVICE_TABLE(i2c, max6650_id);
792
793 static struct i2c_driver max6650_driver = {
794         .driver = {
795                 .name   = "max6650",
796                 .of_match_table = of_match_ptr(max6650_dt_match),
797         },
798         .probe          = max6650_probe,
799         .id_table       = max6650_id,
800 };
801
802 module_i2c_driver(max6650_driver);
803
804 MODULE_AUTHOR("Hans J. Koch");
805 MODULE_DESCRIPTION("MAX6650 sensor driver");
806 MODULE_LICENSE("GPL");