hwmon: (max6650) Fix minor formatting issues
[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; /* protect alarm register updates */
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 reg, err = 0;
161         int i;
162
163         mutex_lock(&data->update_lock);
164
165         if (time_after(jiffies, data->last_updated + HZ) || !data->valid) {
166                 for (i = 0; i < data->nr_fans; i++) {
167                         reg = i2c_smbus_read_byte_data(client, tach_reg[i]);
168                         if (reg < 0) {
169                                 err = reg;
170                                 goto error;
171                         }
172                         data->tach[i] = reg;
173                 }
174
175                 /*
176                  * Alarms are cleared on read in case the condition that
177                  * caused the alarm is removed. Keep the value latched here
178                  * for providing the register through different alarm files.
179                  */
180                 reg = i2c_smbus_read_byte_data(client, MAX6650_REG_ALARM);
181                 if (reg < 0) {
182                         err = reg;
183                         goto error;
184                 }
185                 data->alarm |= reg;
186                 data->last_updated = jiffies;
187                 data->valid = true;
188         }
189
190 error:
191         mutex_unlock(&data->update_lock);
192         if (err)
193                 data = ERR_PTR(err);
194         return data;
195 }
196
197 /*
198  * Change the operating mode of the chip (if needed).
199  * mode is one of the MAX6650_CFG_MODE_* values.
200  */
201 static int max6650_set_operating_mode(struct max6650_data *data, u8 mode)
202 {
203         int result;
204         u8 config = data->config;
205
206         if (mode == (config & MAX6650_CFG_MODE_MASK))
207                 return 0;
208
209         config = (config & ~MAX6650_CFG_MODE_MASK) | mode;
210
211         result = i2c_smbus_write_byte_data(data->client, MAX6650_REG_CONFIG,
212                                            config);
213         if (result < 0)
214                 return result;
215
216         data->config = config;
217
218         return 0;
219 }
220
221 /*
222  * Set the fan speed to the specified RPM (or read back the RPM setting).
223  * This works in closed loop mode only. Use pwm1 for open loop speed setting.
224  *
225  * The MAX6650/1 will automatically control fan speed when in closed loop
226  * mode.
227  *
228  * Assumptions:
229  *
230  * 1) The MAX6650/1 internal 254kHz clock frequency is set correctly. Use
231  *    the clock module parameter if you need to fine tune this.
232  *
233  * 2) The prescaler (low three bits of the config register) has already
234  *    been set to an appropriate value. Use the prescaler module parameter
235  *    if your BIOS doesn't initialize the chip properly.
236  *
237  * The relevant equations are given on pages 21 and 22 of the datasheet.
238  *
239  * From the datasheet, the relevant equation when in regulation is:
240  *
241  *    [fCLK / (128 x (KTACH + 1))] = 2 x FanSpeed / KSCALE
242  *
243  * where:
244  *
245  *    fCLK is the oscillator frequency (either the 254kHz internal
246  *         oscillator or the externally applied clock)
247  *
248  *    KTACH is the value in the speed register
249  *
250  *    FanSpeed is the speed of the fan in rps
251  *
252  *    KSCALE is the prescaler value (1, 2, 4, 8, or 16)
253  *
254  * When reading, we need to solve for FanSpeed. When writing, we need to
255  * solve for KTACH.
256  *
257  * Note: this tachometer is completely separate from the tachometers
258  * used to measure the fan speeds. Only one fan's speed (fan1) is
259  * controlled.
260  */
261
262 static int max6650_set_target(struct max6650_data *data, unsigned long rpm)
263 {
264         int kscale, ktach;
265
266         if (rpm == 0)
267                 return max6650_set_operating_mode(data, MAX6650_CFG_MODE_OFF);
268
269         rpm = clamp_val(rpm, FAN_RPM_MIN, FAN_RPM_MAX);
270
271         /*
272          * Divide the required speed by 60 to get from rpm to rps, then
273          * use the datasheet equation:
274          *
275          *     KTACH = [(fCLK x KSCALE) / (256 x FanSpeed)] - 1
276          */
277
278         kscale = DIV_FROM_REG(data->config);
279         ktach = ((clock * kscale) / (256 * rpm / 60)) - 1;
280         if (ktach < 0)
281                 ktach = 0;
282         if (ktach > 255)
283                 ktach = 255;
284         data->speed = ktach;
285
286         return i2c_smbus_write_byte_data(data->client, MAX6650_REG_SPEED,
287                                          data->speed);
288 }
289
290 /*
291  * Get gpio alarm status:
292  * Possible values:
293  * 0 = no alarm
294  * 1 = alarm
295  */
296
297 static ssize_t alarm_show(struct device *dev,
298                           struct device_attribute *devattr, char *buf)
299 {
300         struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
301         struct max6650_data *data = max6650_update_device(dev);
302         bool alarm;
303
304         if (IS_ERR(data))
305                 return PTR_ERR(data);
306
307         alarm = data->alarm & attr->index;
308         if (alarm) {
309                 mutex_lock(&data->update_lock);
310                 data->alarm &= ~attr->index;
311                 data->valid = false;
312                 mutex_unlock(&data->update_lock);
313         }
314
315         return sprintf(buf, "%d\n", alarm);
316 }
317
318 static SENSOR_DEVICE_ATTR_RO(gpio1_alarm, alarm, MAX6650_ALRM_GPIO1);
319 static SENSOR_DEVICE_ATTR_RO(gpio2_alarm, alarm, MAX6650_ALRM_GPIO2);
320
321 static umode_t max6650_attrs_visible(struct kobject *kobj, struct attribute *a,
322                                      int n)
323 {
324         struct device *dev = container_of(kobj, struct device, kobj);
325         struct max6650_data *data = dev_get_drvdata(dev);
326         struct device_attribute *devattr;
327
328         /*
329          * Hide the alarms that have not been enabled by the firmware
330          */
331
332         devattr = container_of(a, struct device_attribute, attr);
333         if (devattr == &sensor_dev_attr_gpio1_alarm.dev_attr ||
334             devattr == &sensor_dev_attr_gpio2_alarm.dev_attr) {
335                 if (!(data->alarm_en & to_sensor_dev_attr(devattr)->index))
336                         return 0;
337         }
338
339         return a->mode;
340 }
341
342 static struct attribute *max6650_attrs[] = {
343         &sensor_dev_attr_gpio1_alarm.dev_attr.attr,
344         &sensor_dev_attr_gpio2_alarm.dev_attr.attr,
345         NULL
346 };
347
348 static const struct attribute_group max6650_group = {
349         .attrs = max6650_attrs,
350         .is_visible = max6650_attrs_visible,
351 };
352
353 static const struct attribute_group *max6650_groups[] = {
354         &max6650_group,
355         NULL
356 };
357
358 static int max6650_init_client(struct max6650_data *data,
359                                struct i2c_client *client)
360 {
361         struct device *dev = &client->dev;
362         int reg;
363         int err;
364         u32 voltage;
365         u32 prescale;
366         u32 target_rpm;
367
368         if (of_property_read_u32(dev->of_node, "maxim,fan-microvolt",
369                                  &voltage))
370                 voltage = fan_voltage;
371         else
372                 voltage /= 1000000; /* Microvolts to volts */
373         if (of_property_read_u32(dev->of_node, "maxim,fan-prescale",
374                                  &prescale))
375                 prescale = prescaler;
376
377         reg = i2c_smbus_read_byte_data(client, MAX6650_REG_CONFIG);
378         if (reg < 0) {
379                 dev_err(dev, "Error reading config register, aborting.\n");
380                 return reg;
381         }
382
383         switch (voltage) {
384         case 0:
385                 break;
386         case 5:
387                 reg &= ~MAX6650_CFG_V12;
388                 break;
389         case 12:
390                 reg |= MAX6650_CFG_V12;
391                 break;
392         default:
393                 dev_err(dev, "illegal value for fan_voltage (%d)\n", voltage);
394         }
395
396         switch (prescale) {
397         case 0:
398                 break;
399         case 1:
400                 reg &= ~MAX6650_CFG_PRESCALER_MASK;
401                 break;
402         case 2:
403                 reg = (reg & ~MAX6650_CFG_PRESCALER_MASK)
404                          | MAX6650_CFG_PRESCALER_2;
405                 break;
406         case  4:
407                 reg = (reg & ~MAX6650_CFG_PRESCALER_MASK)
408                          | MAX6650_CFG_PRESCALER_4;
409                 break;
410         case  8:
411                 reg = (reg & ~MAX6650_CFG_PRESCALER_MASK)
412                          | MAX6650_CFG_PRESCALER_8;
413                 break;
414         case 16:
415                 reg = (reg & ~MAX6650_CFG_PRESCALER_MASK)
416                          | MAX6650_CFG_PRESCALER_16;
417                 break;
418         default:
419                 dev_err(dev, "illegal value for prescaler (%d)\n", prescale);
420         }
421
422         dev_info(dev, "Fan voltage: %dV, prescaler: %d.\n",
423                  (reg & MAX6650_CFG_V12) ? 12 : 5,
424                  1 << (reg & MAX6650_CFG_PRESCALER_MASK));
425
426         err = i2c_smbus_write_byte_data(client, MAX6650_REG_CONFIG, reg);
427         if (err) {
428                 dev_err(dev, "Config write error, aborting.\n");
429                 return err;
430         }
431         data->config = reg;
432
433         reg = i2c_smbus_read_byte_data(client, MAX6650_REG_SPEED);
434         if (reg < 0) {
435                 dev_err(dev, "Failed to read speed register, aborting.\n");
436                 return reg;
437         }
438         data->speed = reg;
439
440         reg = i2c_smbus_read_byte_data(client, MAX6650_REG_DAC);
441         if (reg < 0) {
442                 dev_err(dev, "Failed to read DAC register, aborting.\n");
443                 return reg;
444         }
445         data->dac = reg;
446
447         reg = i2c_smbus_read_byte_data(client, MAX6650_REG_COUNT);
448         if (reg < 0) {
449                 dev_err(dev, "Failed to read count register, aborting.\n");
450                 return reg;
451         }
452         data->count = reg;
453
454         reg = i2c_smbus_read_byte_data(client, MAX6650_REG_ALARM_EN);
455         if (reg < 0) {
456                 dev_err(dev, "Failed to read alarm configuration, aborting.\n");
457                 return reg;
458         }
459         data->alarm_en = reg;
460
461         if (!of_property_read_u32(client->dev.of_node, "maxim,fan-target-rpm",
462                                   &target_rpm)) {
463                 max6650_set_target(data, target_rpm);
464                 max6650_set_operating_mode(data, MAX6650_CFG_MODE_CLOSED_LOOP);
465         }
466
467         return 0;
468 }
469
470 #if IS_ENABLED(CONFIG_THERMAL)
471
472 static int max6650_get_max_state(struct thermal_cooling_device *cdev,
473                                  unsigned long *state)
474 {
475         *state = 255;
476
477         return 0;
478 }
479
480 static int max6650_get_cur_state(struct thermal_cooling_device *cdev,
481                                  unsigned long *state)
482 {
483         struct max6650_data *data = cdev->devdata;
484
485         *state = data->cooling_dev_state;
486
487         return 0;
488 }
489
490 static int max6650_set_cur_state(struct thermal_cooling_device *cdev,
491                                  unsigned long state)
492 {
493         struct max6650_data *data = cdev->devdata;
494         struct i2c_client *client = data->client;
495         int err;
496
497         state = clamp_val(state, 0, 255);
498
499         mutex_lock(&data->update_lock);
500
501         data->dac = pwm_to_dac(state, data->config & MAX6650_CFG_V12);
502         err = i2c_smbus_write_byte_data(client, MAX6650_REG_DAC, data->dac);
503         if (!err) {
504                 max6650_set_operating_mode(data, state ?
505                                            MAX6650_CFG_MODE_OPEN_LOOP :
506                                            MAX6650_CFG_MODE_OFF);
507                 data->cooling_dev_state = state;
508         }
509
510         mutex_unlock(&data->update_lock);
511
512         return err;
513 }
514
515 static const struct thermal_cooling_device_ops max6650_cooling_ops = {
516         .get_max_state = max6650_get_max_state,
517         .get_cur_state = max6650_get_cur_state,
518         .set_cur_state = max6650_set_cur_state,
519 };
520 #endif
521
522 static int max6650_read(struct device *dev, enum hwmon_sensor_types type,
523                         u32 attr, int channel, long *val)
524 {
525         struct max6650_data *data = max6650_update_device(dev);
526         int mode;
527
528         if (IS_ERR(data))
529                 return PTR_ERR(data);
530
531         switch (type) {
532         case hwmon_pwm:
533                 switch (attr) {
534                 case hwmon_pwm_input:
535                         *val = dac_to_pwm(data->dac,
536                                           data->config & MAX6650_CFG_V12);
537                         break;
538                 case hwmon_pwm_enable:
539                         /*
540                          * Possible values:
541                          * 0 = Fan always on
542                          * 1 = Open loop, Voltage is set according to speed,
543                          *     not regulated.
544                          * 2 = Closed loop, RPM for all fans regulated by fan1
545                          *     tachometer
546                          * 3 = Fan off
547                          */
548                         mode = (data->config & MAX6650_CFG_MODE_MASK) >> 4;
549                         *val = (4 - mode) & 3; /* {0 1 2 3} -> {0 3 2 1} */
550                         break;
551                 default:
552                         return -EOPNOTSUPP;
553                 }
554                 break;
555         case hwmon_fan:
556                 switch (attr) {
557                 case hwmon_fan_input:
558                         /*
559                          * Calculation details:
560                          *
561                          * Each tachometer counts over an interval given by the
562                          * "count" register (0.25, 0.5, 1 or 2 seconds).
563                          * The driver assumes that the fans produce two pulses
564                          * per revolution (this seems to be the most common).
565                          */
566                         *val = DIV_ROUND_CLOSEST(data->tach[channel] * 120,
567                                                  DIV_FROM_REG(data->count));
568                         break;
569                 case hwmon_fan_div:
570                         *val = DIV_FROM_REG(data->count);
571                         break;
572                 case hwmon_fan_target:
573                         /*
574                          * Use the datasheet equation:
575                          *    FanSpeed = KSCALE x fCLK / [256 x (KTACH + 1)]
576                          * then multiply by 60 to give rpm.
577                          */
578                         *val = 60 * DIV_FROM_REG(data->config) * clock /
579                                 (256 * (data->speed + 1));
580                         break;
581                 case hwmon_fan_min_alarm:
582                         *val = !!(data->alarm & MAX6650_ALRM_MIN);
583                         data->alarm &= ~MAX6650_ALRM_MIN;
584                         data->valid = false;
585                         break;
586                 case hwmon_fan_max_alarm:
587                         *val = !!(data->alarm & MAX6650_ALRM_MAX);
588                         data->alarm &= ~MAX6650_ALRM_MAX;
589                         data->valid = false;
590                         break;
591                 case hwmon_fan_fault:
592                         *val = !!(data->alarm & MAX6650_ALRM_TACH);
593                         data->alarm &= ~MAX6650_ALRM_TACH;
594                         data->valid = false;
595                         break;
596                 default:
597                         return -EOPNOTSUPP;
598                 }
599                 break;
600         default:
601                 return -EOPNOTSUPP;
602         }
603         return 0;
604 }
605
606 static const u8 max6650_pwm_modes[] = {
607         MAX6650_CFG_MODE_ON,
608         MAX6650_CFG_MODE_OPEN_LOOP,
609         MAX6650_CFG_MODE_CLOSED_LOOP,
610         MAX6650_CFG_MODE_OFF,
611 };
612
613 static int max6650_write(struct device *dev, enum hwmon_sensor_types type,
614                          u32 attr, int channel, long val)
615 {
616         struct max6650_data *data = dev_get_drvdata(dev);
617         int ret = 0;
618         u8 reg;
619
620         mutex_lock(&data->update_lock);
621
622         switch (type) {
623         case hwmon_pwm:
624                 switch (attr) {
625                 case hwmon_pwm_input:
626                         reg = pwm_to_dac(clamp_val(val, 0, 255),
627                                          data->config & MAX6650_CFG_V12);
628                         ret = i2c_smbus_write_byte_data(data->client,
629                                                         MAX6650_REG_DAC, reg);
630                         if (ret)
631                                 break;
632                         data->dac = reg;
633                         break;
634                 case hwmon_pwm_enable:
635                         if (val < 0 || val >= ARRAY_SIZE(max6650_pwm_modes)) {
636                                 ret = -EINVAL;
637                                 break;
638                         }
639                         ret = max6650_set_operating_mode(data,
640                                                 max6650_pwm_modes[val]);
641                         break;
642                 default:
643                         ret = -EOPNOTSUPP;
644                         break;
645                 }
646                 break;
647         case hwmon_fan:
648                 switch (attr) {
649                 case hwmon_fan_div:
650                         switch (val) {
651                         case 1:
652                                 reg = 0;
653                                 break;
654                         case 2:
655                                 reg = 1;
656                                 break;
657                         case 4:
658                                 reg = 2;
659                                 break;
660                         case 8:
661                                 reg = 3;
662                                 break;
663                         default:
664                                 ret = -EINVAL;
665                                 goto error;
666                         }
667                         ret = i2c_smbus_write_byte_data(data->client,
668                                                         MAX6650_REG_COUNT, reg);
669                         if (ret)
670                                 break;
671                         data->count = reg;
672                         break;
673                 case hwmon_fan_target:
674                         if (val < 0) {
675                                 ret = -EINVAL;
676                                 break;
677                         }
678                         ret = max6650_set_target(data, val);
679                         break;
680                 default:
681                         ret = -EOPNOTSUPP;
682                         break;
683                 }
684                 break;
685         default:
686                 ret = -EOPNOTSUPP;
687                 break;
688         }
689
690 error:
691         mutex_unlock(&data->update_lock);
692         return ret;
693 }
694
695 static umode_t max6650_is_visible(const void *_data,
696                                   enum hwmon_sensor_types type, u32 attr,
697                                   int channel)
698 {
699         const struct max6650_data *data = _data;
700
701         if (channel && (channel >= data->nr_fans || type != hwmon_fan))
702                 return 0;
703
704         switch (type) {
705         case hwmon_fan:
706                 switch (attr) {
707                 case hwmon_fan_input:
708                         return 0444;
709                 case hwmon_fan_target:
710                 case hwmon_fan_div:
711                         return 0644;
712                 case hwmon_fan_min_alarm:
713                         if (data->alarm_en & MAX6650_ALRM_MIN)
714                                 return 0444;
715                         break;
716                 case hwmon_fan_max_alarm:
717                         if (data->alarm_en & MAX6650_ALRM_MAX)
718                                 return 0444;
719                         break;
720                 case hwmon_fan_fault:
721                         if (data->alarm_en & MAX6650_ALRM_TACH)
722                                 return 0444;
723                         break;
724                 default:
725                         break;
726                 }
727                 break;
728         case hwmon_pwm:
729                 switch (attr) {
730                 case hwmon_pwm_input:
731                 case hwmon_pwm_enable:
732                         return 0644;
733                 default:
734                         break;
735                 }
736                 break;
737         default:
738                 break;
739         }
740         return 0;
741 }
742
743 static const struct hwmon_channel_info *max6650_info[] = {
744         HWMON_CHANNEL_INFO(fan, HWMON_F_INPUT | HWMON_F_TARGET | HWMON_F_DIV |
745                            HWMON_F_MIN_ALARM | HWMON_F_MAX_ALARM |
746                            HWMON_F_FAULT,
747                            HWMON_F_INPUT, HWMON_F_INPUT, HWMON_F_INPUT),
748         HWMON_CHANNEL_INFO(pwm, HWMON_PWM_INPUT | HWMON_PWM_ENABLE),
749         NULL
750 };
751
752 static const struct hwmon_ops max6650_hwmon_ops = {
753         .read = max6650_read,
754         .write = max6650_write,
755         .is_visible = max6650_is_visible,
756 };
757
758 static const struct hwmon_chip_info max6650_chip_info = {
759         .ops = &max6650_hwmon_ops,
760         .info = max6650_info,
761 };
762
763 static int max6650_probe(struct i2c_client *client,
764                          const struct i2c_device_id *id)
765 {
766         struct thermal_cooling_device *cooling_dev;
767         struct device *dev = &client->dev;
768         const struct of_device_id *of_id =
769                 of_match_device(of_match_ptr(max6650_dt_match), dev);
770         struct max6650_data *data;
771         struct device *hwmon_dev;
772         int err;
773
774         data = devm_kzalloc(dev, sizeof(struct max6650_data), GFP_KERNEL);
775         if (!data)
776                 return -ENOMEM;
777
778         data->client = client;
779         i2c_set_clientdata(client, data);
780         mutex_init(&data->update_lock);
781         data->nr_fans = of_id ? (int)(uintptr_t)of_id->data : id->driver_data;
782
783         /*
784          * Initialize the max6650 chip
785          */
786         err = max6650_init_client(data, client);
787         if (err)
788                 return err;
789
790         hwmon_dev = devm_hwmon_device_register_with_info(dev,
791                                                          client->name, data,
792                                                          &max6650_chip_info,
793                                                          max6650_groups);
794         err = PTR_ERR_OR_ZERO(hwmon_dev);
795         if (err)
796                 return err;
797
798 #if IS_ENABLED(CONFIG_THERMAL)
799         cooling_dev = devm_thermal_of_cooling_device_register(dev, dev->of_node,
800                                 client->name, data, &max6650_cooling_ops);
801         if (IS_ERR(cooling_dev)) {
802                 dev_warn(dev, "thermal cooling device register failed: %ld\n",
803                          PTR_ERR(cooling_dev));
804         }
805 #endif
806         return 0;
807 }
808
809 static const struct i2c_device_id max6650_id[] = {
810         { "max6650", 1 },
811         { "max6651", 4 },
812         { }
813 };
814 MODULE_DEVICE_TABLE(i2c, max6650_id);
815
816 static struct i2c_driver max6650_driver = {
817         .driver = {
818                 .name   = "max6650",
819                 .of_match_table = of_match_ptr(max6650_dt_match),
820         },
821         .probe          = max6650_probe,
822         .id_table       = max6650_id,
823 };
824
825 module_i2c_driver(max6650_driver);
826
827 MODULE_AUTHOR("Hans J. Koch");
828 MODULE_DESCRIPTION("MAX6650 sensor driver");
829 MODULE_LICENSE("GPL");