2 * g762 - Driver for the Global Mixed-mode Technology Inc. fan speed
3 * PWM controller chips from G762 family, i.e. G762 and G763
5 * Copyright (C) 2013, Arnaud EBALARD <arno@natisbad.org>
7 * This work is based on a basic version for 2.6.31 kernel developed
8 * by Olivier Mouchet for LaCie. Updates and correction have been
9 * performed to run on recent kernels. Additional features, like the
10 * ability to configure various characteristics via .dts file or
11 * board init file have been added. Detailed datasheet on which this
12 * development is based is available here:
14 * http://natisbad.org/NAS/refs/GMT_EDS-762_763-080710-0.2.pdf
16 * Headers from previous developments have been kept below:
18 * Copyright (c) 2009 LaCie
20 * Author: Olivier Mouchet <olivier.mouchet@gmail.com>
22 * based on g760a code written by Herbert Valerio Riedel <hvr@gnu.org>
23 * Copyright (C) 2007 Herbert Valerio Riedel <hvr@gnu.org>
25 * g762: minimal datasheet available at:
26 * http://www.gmt.com.tw/product/datasheet/EDS-762_3.pdf
28 * This program is free software; you can redistribute it and/or modify
29 * it under the terms of the GNU General Public License as published by
30 * the Free Software Foundation; either version 2 of the License, or
31 * (at your option) any later version.
33 * This program is distributed in the hope that it will be useful,
34 * but WITHOUT ANY WARRANTY; without even the implied warranty of
35 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
36 * GNU General Public License for more details.
38 * You should have received a copy of the GNU General Public License
39 * along with this program; if not, write to the Free Software
43 #include <linux/device.h>
44 #include <linux/module.h>
45 #include <linux/init.h>
46 #include <linux/jiffies.h>
47 #include <linux/i2c.h>
48 #include <linux/hwmon.h>
49 #include <linux/hwmon-sysfs.h>
50 #include <linux/err.h>
51 #include <linux/mutex.h>
52 #include <linux/kernel.h>
53 #include <linux/clk.h>
55 #include <linux/of_device.h>
56 #include <linux/platform_data/g762.h>
58 #define DRVNAME "g762"
60 static const struct i2c_device_id g762_id[] = {
65 MODULE_DEVICE_TABLE(i2c, g762_id);
68 G762_REG_SET_CNT = 0x00,
69 G762_REG_ACT_CNT = 0x01,
70 G762_REG_FAN_STA = 0x02,
71 G762_REG_SET_OUT = 0x03,
72 G762_REG_FAN_CMD1 = 0x04,
73 G762_REG_FAN_CMD2 = 0x05,
76 /* Config register bits */
77 #define G762_REG_FAN_CMD1_DET_FAN_FAIL 0x80 /* enable fan_fail signal */
78 #define G762_REG_FAN_CMD1_DET_FAN_OOC 0x40 /* enable fan_out_of_control */
79 #define G762_REG_FAN_CMD1_OUT_MODE 0x20 /* out mode: PWM or DC */
80 #define G762_REG_FAN_CMD1_FAN_MODE 0x10 /* fan mode: closed/open-loop */
81 #define G762_REG_FAN_CMD1_CLK_DIV_ID1 0x08 /* clock divisor value */
82 #define G762_REG_FAN_CMD1_CLK_DIV_ID0 0x04
83 #define G762_REG_FAN_CMD1_PWM_POLARITY 0x02 /* PWM polarity */
84 #define G762_REG_FAN_CMD1_PULSE_PER_REV 0x01 /* pulse per fan revolution */
86 #define G762_REG_FAN_CMD2_GEAR_MODE_1 0x08 /* fan gear mode */
87 #define G762_REG_FAN_CMD2_GEAR_MODE_0 0x04
88 #define G762_REG_FAN_CMD2_FAN_STARTV_1 0x02 /* fan startup voltage */
89 #define G762_REG_FAN_CMD2_FAN_STARTV_0 0x01
91 #define G762_REG_FAN_STA_FAIL 0x02 /* fan fail */
92 #define G762_REG_FAN_STA_OOC 0x01 /* fan out of control */
94 /* Config register values */
95 #define G762_OUT_MODE_PWM 1
96 #define G762_OUT_MODE_DC 0
98 #define G762_FAN_MODE_CLOSED_LOOP 2
99 #define G762_FAN_MODE_OPEN_LOOP 1
101 #define G762_PWM_POLARITY_NEGATIVE 1
102 #define G762_PWM_POLARITY_POSITIVE 0
104 /* Register data is read (and cached) at most once per second. */
105 #define G762_UPDATE_INTERVAL HZ
108 * Extract pulse count per fan revolution value (2 or 4) from given
109 * FAN_CMD1 register value.
111 #define G762_PULSE_FROM_REG(reg) \
112 ((((reg) & G762_REG_FAN_CMD1_PULSE_PER_REV) + 1) << 1)
115 * Extract fan clock divisor (1, 2, 4 or 8) from given FAN_CMD1
118 #define G762_CLKDIV_FROM_REG(reg) \
119 (1 << (((reg) & (G762_REG_FAN_CMD1_CLK_DIV_ID0 | \
120 G762_REG_FAN_CMD1_CLK_DIV_ID1)) >> 2))
123 * Extract fan gear mode multiplier value (0, 2 or 4) from given
124 * FAN_CMD2 register value.
126 #define G762_GEARMULT_FROM_REG(reg) \
127 (1 << (((reg) & (G762_REG_FAN_CMD2_GEAR_MODE_0 | \
128 G762_REG_FAN_CMD2_GEAR_MODE_1)) >> 2))
131 struct device *hwmon_dev;
132 struct i2c_client *client;
136 struct mutex update_lock;
138 /* board specific parameters. */
141 /* g762 register cache */
143 unsigned long last_updated; /* in jiffies */
145 u8 set_cnt; /* controls fan rotation speed in closed-loop mode */
146 u8 act_cnt; /* provides access to current fan RPM value */
147 u8 fan_sta; /* bit 0: set when actual fan speed is more than
148 * 25% outside requested fan speed
149 * bit 1: set when no transition occurs on fan
152 u8 set_out; /* controls fan rotation speed in open-loop mode */
153 u8 fan_cmd1; /* 0: FG_PLS_ID0 FG pulses count per revolution
154 * 0: 2 counts per revolution
155 * 1: 4 counts per revolution
156 * 1: PWM_POLARITY 1: negative_duty
158 * 2,3: [FG_CLOCK_ID0, FG_CLK_ID1]
159 * 00: Divide fan clock by 1
160 * 01: Divide fan clock by 2
161 * 10: Divide fan clock by 4
162 * 11: Divide fan clock by 8
163 * 4: FAN_MODE 1:closed-loop, 0:open-loop
164 * 5: OUT_MODE 1:PWM, 0:DC
165 * 6: DET_FAN_OOC enable "fan ooc" status
166 * 7: DET_FAN_FAIL enable "fan fail" status
168 u8 fan_cmd2; /* 0,1: FAN_STARTV 0,1,2,3 -> 0,32,64,96 dac_code
173 * 4: Mask ALERT# (g763 only)
178 * Convert count value from fan controller register (FAN_SET_CNT) into fan
179 * speed RPM value. Note that the datasheet documents a basic formula;
180 * influence of additional parameters (fan clock divisor, fan gear mode)
181 * have been infered from examples in the datasheet and tests.
183 static inline unsigned int rpm_from_cnt(u8 cnt, u32 clk_freq, u16 p,
184 u8 clk_div, u8 gear_mult)
186 if (cnt == 0xff) /* setting cnt to 255 stops the fan */
189 return (clk_freq * 30 * gear_mult) / ((cnt ? cnt : 1) * p * clk_div);
193 * Convert fan RPM value from sysfs into count value for fan controller
194 * register (FAN_SET_CNT).
196 static inline unsigned char cnt_from_rpm(u32 rpm, u32 clk_freq, u16 p,
197 u8 clk_div, u8 gear_mult)
199 if (!rpm) /* to stop the fan, set cnt to 255 */
202 return clamp_val(((clk_freq * 30 * gear_mult) / (rpm * p * clk_div)),
206 /* helper to grab and cache data, at most one time per second */
207 static struct g762_data *g762_update_client(struct device *dev)
209 struct g762_data *data = dev_get_drvdata(dev);
210 struct i2c_client *client = data->client;
213 mutex_lock(&data->update_lock);
214 if (time_before(jiffies, data->last_updated + G762_UPDATE_INTERVAL) &&
218 ret = i2c_smbus_read_byte_data(client, G762_REG_SET_CNT);
223 ret = i2c_smbus_read_byte_data(client, G762_REG_ACT_CNT);
228 ret = i2c_smbus_read_byte_data(client, G762_REG_FAN_STA);
233 ret = i2c_smbus_read_byte_data(client, G762_REG_SET_OUT);
238 ret = i2c_smbus_read_byte_data(client, G762_REG_FAN_CMD1);
241 data->fan_cmd1 = ret;
243 ret = i2c_smbus_read_byte_data(client, G762_REG_FAN_CMD2);
246 data->fan_cmd2 = ret;
248 data->last_updated = jiffies;
251 mutex_unlock(&data->update_lock);
253 if (ret < 0) /* upon error, encode it in return value */
259 /* helpers for writing hardware parameters */
262 * Set input clock frequency received on CLK pin of the chip. Accepted values
263 * are between 0 and 0xffffff. If zero is given, then default frequency
264 * (32,768Hz) is used. Note that clock frequency is a characteristic of the
265 * system but an internal parameter, i.e. value is not passed to the device.
267 static int do_set_clk_freq(struct device *dev, unsigned long val)
269 struct g762_data *data = dev_get_drvdata(dev);
276 data->clk_freq = val;
281 /* Set pwm mode. Accepts either 0 (PWM mode) or 1 (DC mode) */
282 static int do_set_pwm_mode(struct device *dev, unsigned long val)
284 struct g762_data *data = g762_update_client(dev);
288 return PTR_ERR(data);
290 mutex_lock(&data->update_lock);
292 case G762_OUT_MODE_PWM:
293 data->fan_cmd1 |= G762_REG_FAN_CMD1_OUT_MODE;
295 case G762_OUT_MODE_DC:
296 data->fan_cmd1 &= ~G762_REG_FAN_CMD1_OUT_MODE;
302 ret = i2c_smbus_write_byte_data(data->client, G762_REG_FAN_CMD1,
306 mutex_unlock(&data->update_lock);
311 /* Set fan clock divisor. Accepts either 1, 2, 4 or 8. */
312 static int do_set_fan_div(struct device *dev, unsigned long val)
314 struct g762_data *data = g762_update_client(dev);
318 return PTR_ERR(data);
320 mutex_lock(&data->update_lock);
323 data->fan_cmd1 &= ~G762_REG_FAN_CMD1_CLK_DIV_ID0;
324 data->fan_cmd1 &= ~G762_REG_FAN_CMD1_CLK_DIV_ID1;
327 data->fan_cmd1 |= G762_REG_FAN_CMD1_CLK_DIV_ID0;
328 data->fan_cmd1 &= ~G762_REG_FAN_CMD1_CLK_DIV_ID1;
331 data->fan_cmd1 &= ~G762_REG_FAN_CMD1_CLK_DIV_ID0;
332 data->fan_cmd1 |= G762_REG_FAN_CMD1_CLK_DIV_ID1;
335 data->fan_cmd1 |= G762_REG_FAN_CMD1_CLK_DIV_ID0;
336 data->fan_cmd1 |= G762_REG_FAN_CMD1_CLK_DIV_ID1;
342 ret = i2c_smbus_write_byte_data(data->client, G762_REG_FAN_CMD1,
346 mutex_unlock(&data->update_lock);
351 /* Set fan gear mode. Accepts either 0, 1 or 2. */
352 static int do_set_fan_gear_mode(struct device *dev, unsigned long val)
354 struct g762_data *data = g762_update_client(dev);
358 return PTR_ERR(data);
360 mutex_lock(&data->update_lock);
363 data->fan_cmd2 &= ~G762_REG_FAN_CMD2_GEAR_MODE_0;
364 data->fan_cmd2 &= ~G762_REG_FAN_CMD2_GEAR_MODE_1;
367 data->fan_cmd2 |= G762_REG_FAN_CMD2_GEAR_MODE_0;
368 data->fan_cmd2 &= ~G762_REG_FAN_CMD2_GEAR_MODE_1;
371 data->fan_cmd2 &= ~G762_REG_FAN_CMD2_GEAR_MODE_0;
372 data->fan_cmd2 |= G762_REG_FAN_CMD2_GEAR_MODE_1;
378 ret = i2c_smbus_write_byte_data(data->client, G762_REG_FAN_CMD2,
382 mutex_unlock(&data->update_lock);
387 /* Set number of fan pulses per revolution. Accepts either 2 or 4. */
388 static int do_set_fan_pulses(struct device *dev, unsigned long val)
390 struct g762_data *data = g762_update_client(dev);
394 return PTR_ERR(data);
396 mutex_lock(&data->update_lock);
399 data->fan_cmd1 &= ~G762_REG_FAN_CMD1_PULSE_PER_REV;
402 data->fan_cmd1 |= G762_REG_FAN_CMD1_PULSE_PER_REV;
408 ret = i2c_smbus_write_byte_data(data->client, G762_REG_FAN_CMD1,
412 mutex_unlock(&data->update_lock);
417 /* Set fan mode. Accepts either 1 (open-loop) or 2 (closed-loop). */
418 static int do_set_pwm_enable(struct device *dev, unsigned long val)
420 struct g762_data *data = g762_update_client(dev);
424 return PTR_ERR(data);
426 mutex_lock(&data->update_lock);
428 case G762_FAN_MODE_CLOSED_LOOP:
429 data->fan_cmd1 |= G762_REG_FAN_CMD1_FAN_MODE;
431 case G762_FAN_MODE_OPEN_LOOP:
432 data->fan_cmd1 &= ~G762_REG_FAN_CMD1_FAN_MODE;
434 * BUG FIX: if SET_CNT register value is 255 then, for some
435 * unknown reason, fan will not rotate as expected, no matter
436 * the value of SET_OUT (to be specific, this seems to happen
437 * only in PWM mode). To workaround this bug, we give SET_CNT
438 * value of 254 if it is 255 when switching to open-loop.
440 if (data->set_cnt == 0xff)
441 i2c_smbus_write_byte_data(data->client,
442 G762_REG_SET_CNT, 254);
449 ret = i2c_smbus_write_byte_data(data->client, G762_REG_FAN_CMD1,
453 mutex_unlock(&data->update_lock);
458 /* Set PWM polarity. Accepts either 0 (positive duty) or 1 (negative duty) */
459 static int do_set_pwm_polarity(struct device *dev, unsigned long val)
461 struct g762_data *data = g762_update_client(dev);
465 return PTR_ERR(data);
467 mutex_lock(&data->update_lock);
469 case G762_PWM_POLARITY_POSITIVE:
470 data->fan_cmd1 &= ~G762_REG_FAN_CMD1_PWM_POLARITY;
472 case G762_PWM_POLARITY_NEGATIVE:
473 data->fan_cmd1 |= G762_REG_FAN_CMD1_PWM_POLARITY;
479 ret = i2c_smbus_write_byte_data(data->client, G762_REG_FAN_CMD1,
483 mutex_unlock(&data->update_lock);
489 * Set pwm value. Accepts values between 0 (stops the fan) and
490 * 255 (full speed). This only makes sense in open-loop mode.
492 static int do_set_pwm(struct device *dev, unsigned long val)
494 struct g762_data *data = dev_get_drvdata(dev);
495 struct i2c_client *client = data->client;
501 mutex_lock(&data->update_lock);
502 ret = i2c_smbus_write_byte_data(client, G762_REG_SET_OUT, val);
504 mutex_unlock(&data->update_lock);
510 * Set fan RPM value. Can be called both in closed and open-loop mode
511 * but effect will only be seen after closed-loop mode is configured.
513 static int do_set_fan_target(struct device *dev, unsigned long val)
515 struct g762_data *data = g762_update_client(dev);
519 return PTR_ERR(data);
521 mutex_lock(&data->update_lock);
522 data->set_cnt = cnt_from_rpm(val, data->clk_freq,
523 G762_PULSE_FROM_REG(data->fan_cmd1),
524 G762_CLKDIV_FROM_REG(data->fan_cmd1),
525 G762_GEARMULT_FROM_REG(data->fan_cmd2));
526 ret = i2c_smbus_write_byte_data(data->client, G762_REG_SET_CNT,
529 mutex_unlock(&data->update_lock);
534 /* Set fan startup voltage. Accepted values are either 0, 1, 2 or 3. */
535 static int do_set_fan_startv(struct device *dev, unsigned long val)
537 struct g762_data *data = g762_update_client(dev);
541 return PTR_ERR(data);
543 mutex_lock(&data->update_lock);
546 data->fan_cmd2 &= ~G762_REG_FAN_CMD2_FAN_STARTV_0;
547 data->fan_cmd2 &= ~G762_REG_FAN_CMD2_FAN_STARTV_1;
550 data->fan_cmd2 |= G762_REG_FAN_CMD2_FAN_STARTV_0;
551 data->fan_cmd2 &= ~G762_REG_FAN_CMD2_FAN_STARTV_1;
554 data->fan_cmd2 &= ~G762_REG_FAN_CMD2_FAN_STARTV_0;
555 data->fan_cmd2 |= G762_REG_FAN_CMD2_FAN_STARTV_1;
558 data->fan_cmd2 |= G762_REG_FAN_CMD2_FAN_STARTV_0;
559 data->fan_cmd2 |= G762_REG_FAN_CMD2_FAN_STARTV_1;
565 ret = i2c_smbus_write_byte_data(data->client, G762_REG_FAN_CMD2,
569 mutex_unlock(&data->update_lock);
575 * Helper to import hardware characteristics from .dts file and push
580 static const struct of_device_id g762_dt_match[] = {
581 { .compatible = "gmt,g762" },
582 { .compatible = "gmt,g763" },
585 MODULE_DEVICE_TABLE(of, g762_dt_match);
588 * Grab clock (a required property), enable it, get (fixed) clock frequency
589 * and store it. Note: upon success, clock has been prepared and enabled; it
590 * must later be unprepared and disabled (e.g. during module unloading) by a
591 * call to g762_of_clock_disable(). Note that a reference to clock is kept
592 * in our private data structure to be used in this function.
594 static int g762_of_clock_enable(struct i2c_client *client)
596 struct g762_data *data;
597 unsigned long clk_freq;
601 if (!client->dev.of_node)
604 clk = of_clk_get(client->dev.of_node, 0);
606 dev_err(&client->dev, "failed to get clock\n");
610 ret = clk_prepare_enable(clk);
612 dev_err(&client->dev, "failed to enable clock\n");
616 clk_freq = clk_get_rate(clk);
617 ret = do_set_clk_freq(&client->dev, clk_freq);
619 dev_err(&client->dev, "invalid clock freq %lu\n", clk_freq);
623 data = i2c_get_clientdata(client);
629 clk_disable_unprepare(clk);
637 static void g762_of_clock_disable(struct i2c_client *client)
639 struct g762_data *data = i2c_get_clientdata(client);
644 clk_disable_unprepare(data->clk);
648 static int g762_of_prop_import_one(struct i2c_client *client,
650 int (*psetter)(struct device *dev,
656 if (of_property_read_u32(client->dev.of_node, pname, &pval))
659 dev_dbg(&client->dev, "found %s (%d)\n", pname, pval);
660 ret = (*psetter)(&client->dev, pval);
662 dev_err(&client->dev, "unable to set %s (%d)\n", pname, pval);
667 static int g762_of_prop_import(struct i2c_client *client)
671 if (!client->dev.of_node)
674 ret = g762_of_prop_import_one(client, "fan_gear_mode",
675 do_set_fan_gear_mode);
679 ret = g762_of_prop_import_one(client, "pwm_polarity",
680 do_set_pwm_polarity);
684 return g762_of_prop_import_one(client, "fan_startv",
689 static int g762_of_prop_import(struct i2c_client *client)
694 static int g762_of_clock_enable(struct i2c_client *client)
699 static void g762_of_clock_disable(struct i2c_client *client) { }
703 * Helper to import hardware characteristics from .dts file and push
707 static int g762_pdata_prop_import(struct i2c_client *client)
709 struct g762_platform_data *pdata = dev_get_platdata(&client->dev);
715 ret = do_set_fan_gear_mode(&client->dev, pdata->fan_gear_mode);
719 ret = do_set_pwm_polarity(&client->dev, pdata->pwm_polarity);
723 ret = do_set_fan_startv(&client->dev, pdata->fan_startv);
727 return do_set_clk_freq(&client->dev, pdata->clk_freq);
735 * Read function for fan1_input sysfs file. Return current fan RPM value, or
736 * 0 if fan is out of control.
738 static ssize_t get_fan_rpm(struct device *dev, struct device_attribute *da,
741 struct g762_data *data = g762_update_client(dev);
742 unsigned int rpm = 0;
745 return PTR_ERR(data);
747 mutex_lock(&data->update_lock);
748 /* reverse logic: fan out of control reporting is enabled low */
749 if (data->fan_sta & G762_REG_FAN_STA_OOC) {
750 rpm = rpm_from_cnt(data->act_cnt, data->clk_freq,
751 G762_PULSE_FROM_REG(data->fan_cmd1),
752 G762_CLKDIV_FROM_REG(data->fan_cmd1),
753 G762_GEARMULT_FROM_REG(data->fan_cmd2));
755 mutex_unlock(&data->update_lock);
757 return sprintf(buf, "%u\n", rpm);
761 * Read and write functions for pwm1_mode sysfs file. Get and set fan speed
762 * control mode i.e. PWM (1) or DC (0).
764 static ssize_t get_pwm_mode(struct device *dev, struct device_attribute *da,
767 struct g762_data *data = g762_update_client(dev);
770 return PTR_ERR(data);
772 return sprintf(buf, "%d\n",
773 !!(data->fan_cmd1 & G762_REG_FAN_CMD1_OUT_MODE));
776 static ssize_t set_pwm_mode(struct device *dev, struct device_attribute *da,
777 const char *buf, size_t count)
782 if (kstrtoul(buf, 10, &val))
785 ret = do_set_pwm_mode(dev, val);
793 * Read and write functions for fan1_div sysfs file. Get and set fan
794 * controller prescaler value
796 static ssize_t get_fan_div(struct device *dev,
797 struct device_attribute *da, char *buf)
799 struct g762_data *data = g762_update_client(dev);
802 return PTR_ERR(data);
804 return sprintf(buf, "%d\n", G762_CLKDIV_FROM_REG(data->fan_cmd1));
807 static ssize_t set_fan_div(struct device *dev,
808 struct device_attribute *da,
809 const char *buf, size_t count)
814 if (kstrtoul(buf, 10, &val))
817 ret = do_set_fan_div(dev, val);
825 * Read and write functions for fan1_pulses sysfs file. Get and set number
826 * of tachometer pulses per fan revolution.
828 static ssize_t get_fan_pulses(struct device *dev,
829 struct device_attribute *da, char *buf)
831 struct g762_data *data = g762_update_client(dev);
834 return PTR_ERR(data);
836 return sprintf(buf, "%d\n", G762_PULSE_FROM_REG(data->fan_cmd1));
839 static ssize_t set_fan_pulses(struct device *dev,
840 struct device_attribute *da,
841 const char *buf, size_t count)
846 if (kstrtoul(buf, 10, &val))
849 ret = do_set_fan_pulses(dev, val);
857 * Read and write functions for pwm1_enable. Get and set fan speed control mode
858 * (i.e. closed or open-loop).
860 * Following documentation about hwmon's sysfs interface, a pwm1_enable node
861 * should accept followings:
863 * 0 : no fan speed control (i.e. fan at full speed)
864 * 1 : manual fan speed control enabled (use pwm[1-*]) (open-loop)
865 * 2+: automatic fan speed control enabled (use fan[1-*]_target) (closed-loop)
867 * but we do not accept 0 as this mode is not natively supported by the chip
868 * and it is not emulated by g762 driver. -EINVAL is returned in this case.
870 static ssize_t get_pwm_enable(struct device *dev,
871 struct device_attribute *da, char *buf)
873 struct g762_data *data = g762_update_client(dev);
876 return PTR_ERR(data);
878 return sprintf(buf, "%d\n",
879 (!!(data->fan_cmd1 & G762_REG_FAN_CMD1_FAN_MODE)) + 1);
882 static ssize_t set_pwm_enable(struct device *dev,
883 struct device_attribute *da,
884 const char *buf, size_t count)
889 if (kstrtoul(buf, 10, &val))
892 ret = do_set_pwm_enable(dev, val);
900 * Read and write functions for pwm1 sysfs file. Get and set pwm value
901 * (which affects fan speed) in open-loop mode. 0 stops the fan and 255
902 * makes it run at full speed.
904 static ssize_t get_pwm(struct device *dev, struct device_attribute *da,
907 struct g762_data *data = g762_update_client(dev);
910 return PTR_ERR(data);
912 return sprintf(buf, "%d\n", data->set_out);
915 static ssize_t set_pwm(struct device *dev, struct device_attribute *da,
916 const char *buf, size_t count)
921 if (kstrtoul(buf, 10, &val))
924 ret = do_set_pwm(dev, val);
932 * Read and write function for fan1_target sysfs file. Get/set the fan speed in
933 * closed-loop mode. Speed is given as a RPM value; then the chip will regulate
934 * the fan speed using pulses from fan tachometer.
936 * Refer to rpm_from_cnt() implementation above to get info about count number
939 * Also note that due to rounding errors it is possible that you don't read
940 * back exactly the value you have set.
942 static ssize_t get_fan_target(struct device *dev, struct device_attribute *da,
945 struct g762_data *data = g762_update_client(dev);
949 return PTR_ERR(data);
951 mutex_lock(&data->update_lock);
952 rpm = rpm_from_cnt(data->set_cnt, data->clk_freq,
953 G762_PULSE_FROM_REG(data->fan_cmd1),
954 G762_CLKDIV_FROM_REG(data->fan_cmd1),
955 G762_GEARMULT_FROM_REG(data->fan_cmd2));
956 mutex_unlock(&data->update_lock);
958 return sprintf(buf, "%u\n", rpm);
961 static ssize_t set_fan_target(struct device *dev, struct device_attribute *da,
962 const char *buf, size_t count)
967 if (kstrtoul(buf, 10, &val))
970 ret = do_set_fan_target(dev, val);
977 /* read function for fan1_fault sysfs file. */
978 static ssize_t get_fan_failure(struct device *dev, struct device_attribute *da,
981 struct g762_data *data = g762_update_client(dev);
984 return PTR_ERR(data);
986 return sprintf(buf, "%u\n", !!(data->fan_sta & G762_REG_FAN_STA_FAIL));
990 * read function for fan1_alarm sysfs file. Note that OOC condition is
993 static ssize_t get_fan_ooc(struct device *dev, struct device_attribute *da,
996 struct g762_data *data = g762_update_client(dev);
999 return PTR_ERR(data);
1001 return sprintf(buf, "%u\n", !(data->fan_sta & G762_REG_FAN_STA_OOC));
1004 static DEVICE_ATTR(pwm1, S_IWUSR | S_IRUGO, get_pwm, set_pwm);
1005 static DEVICE_ATTR(pwm1_mode, S_IWUSR | S_IRUGO, get_pwm_mode, set_pwm_mode);
1006 static DEVICE_ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
1007 get_pwm_enable, set_pwm_enable);
1008 static DEVICE_ATTR(fan1_input, S_IRUGO, get_fan_rpm, NULL);
1009 static DEVICE_ATTR(fan1_alarm, S_IRUGO, get_fan_ooc, NULL);
1010 static DEVICE_ATTR(fan1_fault, S_IRUGO, get_fan_failure, NULL);
1011 static DEVICE_ATTR(fan1_target, S_IWUSR | S_IRUGO,
1012 get_fan_target, set_fan_target);
1013 static DEVICE_ATTR(fan1_div, S_IWUSR | S_IRUGO, get_fan_div, set_fan_div);
1014 static DEVICE_ATTR(fan1_pulses, S_IWUSR | S_IRUGO,
1015 get_fan_pulses, set_fan_pulses);
1018 static struct attribute *g762_attrs[] = {
1019 &dev_attr_fan1_input.attr,
1020 &dev_attr_fan1_alarm.attr,
1021 &dev_attr_fan1_fault.attr,
1022 &dev_attr_fan1_target.attr,
1023 &dev_attr_fan1_div.attr,
1024 &dev_attr_fan1_pulses.attr,
1025 &dev_attr_pwm1.attr,
1026 &dev_attr_pwm1_mode.attr,
1027 &dev_attr_pwm1_enable.attr,
1031 ATTRIBUTE_GROUPS(g762);
1034 * Enable both fan failure detection and fan out of control protection. The
1035 * function does not protect change/access to data structure; it must thus
1036 * only be called during initialization.
1038 static inline int g762_fan_init(struct device *dev)
1040 struct g762_data *data = g762_update_client(dev);
1043 return PTR_ERR(data);
1045 data->fan_cmd1 |= G762_REG_FAN_CMD1_DET_FAN_FAIL;
1046 data->fan_cmd1 |= G762_REG_FAN_CMD1_DET_FAN_OOC;
1047 data->valid = false;
1049 return i2c_smbus_write_byte_data(data->client, G762_REG_FAN_CMD1,
1053 static int g762_probe(struct i2c_client *client, const struct i2c_device_id *id)
1055 struct device *dev = &client->dev;
1056 struct g762_data *data;
1059 if (!i2c_check_functionality(client->adapter,
1060 I2C_FUNC_SMBUS_BYTE_DATA))
1063 data = devm_kzalloc(dev, sizeof(struct g762_data), GFP_KERNEL);
1067 i2c_set_clientdata(client, data);
1068 data->client = client;
1069 mutex_init(&data->update_lock);
1071 /* Enable fan failure detection and fan out of control protection */
1072 ret = g762_fan_init(dev);
1076 /* Get configuration via DT ... */
1077 ret = g762_of_clock_enable(client);
1080 ret = g762_of_prop_import(client);
1083 /* ... or platform_data */
1084 ret = g762_pdata_prop_import(client);
1088 data->hwmon_dev = hwmon_device_register_with_groups(dev, client->name,
1090 if (IS_ERR(data->hwmon_dev)) {
1091 ret = PTR_ERR(data->hwmon_dev);
1098 g762_of_clock_disable(client);
1103 static int g762_remove(struct i2c_client *client)
1105 struct g762_data *data = i2c_get_clientdata(client);
1107 hwmon_device_unregister(data->hwmon_dev);
1108 g762_of_clock_disable(client);
1113 static struct i2c_driver g762_driver = {
1116 .of_match_table = of_match_ptr(g762_dt_match),
1118 .probe = g762_probe,
1119 .remove = g762_remove,
1120 .id_table = g762_id,
1123 module_i2c_driver(g762_driver);
1125 MODULE_AUTHOR("Arnaud EBALARD <arno@natisbad.org>");
1126 MODULE_DESCRIPTION("GMT G762/G763 driver");
1127 MODULE_LICENSE("GPL");