1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * g762 - Driver for the Global Mixed-mode Technology Inc. fan speed
4 * PWM controller chips from G762 family, i.e. G762 and G763
6 * Copyright (C) 2013, Arnaud EBALARD <arno@natisbad.org>
8 * This work is based on a basic version for 2.6.31 kernel developed
9 * by Olivier Mouchet for LaCie. Updates and correction have been
10 * performed to run on recent kernels. Additional features, like the
11 * ability to configure various characteristics via .dts file or
12 * board init file have been added. Detailed datasheet on which this
13 * development is based is available here:
15 * http://natisbad.org/NAS/refs/GMT_EDS-762_763-080710-0.2.pdf
17 * Headers from previous developments have been kept below:
19 * Copyright (c) 2009 LaCie
21 * Author: Olivier Mouchet <olivier.mouchet@gmail.com>
23 * based on g760a code written by Herbert Valerio Riedel <hvr@gnu.org>
24 * Copyright (C) 2007 Herbert Valerio Riedel <hvr@gnu.org>
26 * g762: minimal datasheet available at:
27 * http://www.gmt.com.tw/product/datasheet/EDS-762_3.pdf
30 #include <linux/device.h>
31 #include <linux/module.h>
32 #include <linux/init.h>
33 #include <linux/jiffies.h>
34 #include <linux/i2c.h>
35 #include <linux/hwmon.h>
36 #include <linux/hwmon-sysfs.h>
37 #include <linux/err.h>
38 #include <linux/mutex.h>
39 #include <linux/kernel.h>
40 #include <linux/clk.h>
42 #include <linux/of_device.h>
43 #include <linux/platform_data/g762.h>
45 #define DRVNAME "g762"
47 static const struct i2c_device_id g762_id
[] = {
52 MODULE_DEVICE_TABLE(i2c
, g762_id
);
55 G762_REG_SET_CNT
= 0x00,
56 G762_REG_ACT_CNT
= 0x01,
57 G762_REG_FAN_STA
= 0x02,
58 G762_REG_SET_OUT
= 0x03,
59 G762_REG_FAN_CMD1
= 0x04,
60 G762_REG_FAN_CMD2
= 0x05,
63 /* Config register bits */
64 #define G762_REG_FAN_CMD1_DET_FAN_FAIL 0x80 /* enable fan_fail signal */
65 #define G762_REG_FAN_CMD1_DET_FAN_OOC 0x40 /* enable fan_out_of_control */
66 #define G762_REG_FAN_CMD1_OUT_MODE 0x20 /* out mode: PWM or DC */
67 #define G762_REG_FAN_CMD1_FAN_MODE 0x10 /* fan mode: closed/open-loop */
68 #define G762_REG_FAN_CMD1_CLK_DIV_ID1 0x08 /* clock divisor value */
69 #define G762_REG_FAN_CMD1_CLK_DIV_ID0 0x04
70 #define G762_REG_FAN_CMD1_PWM_POLARITY 0x02 /* PWM polarity */
71 #define G762_REG_FAN_CMD1_PULSE_PER_REV 0x01 /* pulse per fan revolution */
73 #define G762_REG_FAN_CMD2_GEAR_MODE_1 0x08 /* fan gear mode */
74 #define G762_REG_FAN_CMD2_GEAR_MODE_0 0x04
75 #define G762_REG_FAN_CMD2_FAN_STARTV_1 0x02 /* fan startup voltage */
76 #define G762_REG_FAN_CMD2_FAN_STARTV_0 0x01
78 #define G762_REG_FAN_STA_FAIL 0x02 /* fan fail */
79 #define G762_REG_FAN_STA_OOC 0x01 /* fan out of control */
81 /* Config register values */
82 #define G762_OUT_MODE_PWM 1
83 #define G762_OUT_MODE_DC 0
85 #define G762_FAN_MODE_CLOSED_LOOP 2
86 #define G762_FAN_MODE_OPEN_LOOP 1
88 #define G762_PWM_POLARITY_NEGATIVE 1
89 #define G762_PWM_POLARITY_POSITIVE 0
91 /* Register data is read (and cached) at most once per second. */
92 #define G762_UPDATE_INTERVAL HZ
95 * Extract pulse count per fan revolution value (2 or 4) from given
96 * FAN_CMD1 register value.
98 #define G762_PULSE_FROM_REG(reg) \
99 ((((reg) & G762_REG_FAN_CMD1_PULSE_PER_REV) + 1) << 1)
102 * Extract fan clock divisor (1, 2, 4 or 8) from given FAN_CMD1
105 #define G762_CLKDIV_FROM_REG(reg) \
106 (1 << (((reg) & (G762_REG_FAN_CMD1_CLK_DIV_ID0 | \
107 G762_REG_FAN_CMD1_CLK_DIV_ID1)) >> 2))
110 * Extract fan gear mode multiplier value (0, 2 or 4) from given
111 * FAN_CMD2 register value.
113 #define G762_GEARMULT_FROM_REG(reg) \
114 (1 << (((reg) & (G762_REG_FAN_CMD2_GEAR_MODE_0 | \
115 G762_REG_FAN_CMD2_GEAR_MODE_1)) >> 2))
118 struct i2c_client
*client
;
122 struct mutex update_lock
;
124 /* board specific parameters. */
127 /* g762 register cache */
129 unsigned long last_updated
; /* in jiffies */
131 u8 set_cnt
; /* controls fan rotation speed in closed-loop mode */
132 u8 act_cnt
; /* provides access to current fan RPM value */
133 u8 fan_sta
; /* bit 0: set when actual fan speed is more than
134 * 25% outside requested fan speed
135 * bit 1: set when no transition occurs on fan
138 u8 set_out
; /* controls fan rotation speed in open-loop mode */
139 u8 fan_cmd1
; /* 0: FG_PLS_ID0 FG pulses count per revolution
140 * 0: 2 counts per revolution
141 * 1: 4 counts per revolution
142 * 1: PWM_POLARITY 1: negative_duty
144 * 2,3: [FG_CLOCK_ID0, FG_CLK_ID1]
145 * 00: Divide fan clock by 1
146 * 01: Divide fan clock by 2
147 * 10: Divide fan clock by 4
148 * 11: Divide fan clock by 8
149 * 4: FAN_MODE 1:closed-loop, 0:open-loop
150 * 5: OUT_MODE 1:PWM, 0:DC
151 * 6: DET_FAN_OOC enable "fan ooc" status
152 * 7: DET_FAN_FAIL enable "fan fail" status
154 u8 fan_cmd2
; /* 0,1: FAN_STARTV 0,1,2,3 -> 0,32,64,96 dac_code
159 * 4: Mask ALERT# (g763 only)
164 * Convert count value from fan controller register (FAN_SET_CNT) into fan
165 * speed RPM value. Note that the datasheet documents a basic formula;
166 * influence of additional parameters (fan clock divisor, fan gear mode)
167 * have been infered from examples in the datasheet and tests.
169 static inline unsigned int rpm_from_cnt(u8 cnt
, u32 clk_freq
, u16 p
,
170 u8 clk_div
, u8 gear_mult
)
172 if (cnt
== 0xff) /* setting cnt to 255 stops the fan */
175 return (clk_freq
* 30 * gear_mult
) / ((cnt
? cnt
: 1) * p
* clk_div
);
179 * Convert fan RPM value from sysfs into count value for fan controller
180 * register (FAN_SET_CNT).
182 static inline unsigned char cnt_from_rpm(unsigned long rpm
, u32 clk_freq
, u16 p
,
183 u8 clk_div
, u8 gear_mult
)
185 unsigned long f1
= clk_freq
* 30 * gear_mult
;
186 unsigned long f2
= p
* clk_div
;
188 if (!rpm
) /* to stop the fan, set cnt to 255 */
191 rpm
= clamp_val(rpm
, f1
/ (255 * f2
), ULONG_MAX
/ f2
);
192 return DIV_ROUND_CLOSEST(f1
, rpm
* f2
);
195 /* helper to grab and cache data, at most one time per second */
196 static struct g762_data
*g762_update_client(struct device
*dev
)
198 struct g762_data
*data
= dev_get_drvdata(dev
);
199 struct i2c_client
*client
= data
->client
;
202 mutex_lock(&data
->update_lock
);
203 if (time_before(jiffies
, data
->last_updated
+ G762_UPDATE_INTERVAL
) &&
207 ret
= i2c_smbus_read_byte_data(client
, G762_REG_SET_CNT
);
212 ret
= i2c_smbus_read_byte_data(client
, G762_REG_ACT_CNT
);
217 ret
= i2c_smbus_read_byte_data(client
, G762_REG_FAN_STA
);
222 ret
= i2c_smbus_read_byte_data(client
, G762_REG_SET_OUT
);
227 ret
= i2c_smbus_read_byte_data(client
, G762_REG_FAN_CMD1
);
230 data
->fan_cmd1
= ret
;
232 ret
= i2c_smbus_read_byte_data(client
, G762_REG_FAN_CMD2
);
235 data
->fan_cmd2
= ret
;
237 data
->last_updated
= jiffies
;
240 mutex_unlock(&data
->update_lock
);
242 if (ret
< 0) /* upon error, encode it in return value */
248 /* helpers for writing hardware parameters */
251 * Set input clock frequency received on CLK pin of the chip. Accepted values
252 * are between 0 and 0xffffff. If zero is given, then default frequency
253 * (32,768Hz) is used. Note that clock frequency is a characteristic of the
254 * system but an internal parameter, i.e. value is not passed to the device.
256 static int do_set_clk_freq(struct device
*dev
, unsigned long val
)
258 struct g762_data
*data
= dev_get_drvdata(dev
);
265 data
->clk_freq
= val
;
270 /* Set pwm mode. Accepts either 0 (PWM mode) or 1 (DC mode) */
271 static int do_set_pwm_mode(struct device
*dev
, unsigned long val
)
273 struct g762_data
*data
= g762_update_client(dev
);
277 return PTR_ERR(data
);
279 mutex_lock(&data
->update_lock
);
281 case G762_OUT_MODE_PWM
:
282 data
->fan_cmd1
|= G762_REG_FAN_CMD1_OUT_MODE
;
284 case G762_OUT_MODE_DC
:
285 data
->fan_cmd1
&= ~G762_REG_FAN_CMD1_OUT_MODE
;
291 ret
= i2c_smbus_write_byte_data(data
->client
, G762_REG_FAN_CMD1
,
295 mutex_unlock(&data
->update_lock
);
300 /* Set fan clock divisor. Accepts either 1, 2, 4 or 8. */
301 static int do_set_fan_div(struct device
*dev
, unsigned long val
)
303 struct g762_data
*data
= g762_update_client(dev
);
307 return PTR_ERR(data
);
309 mutex_lock(&data
->update_lock
);
312 data
->fan_cmd1
&= ~G762_REG_FAN_CMD1_CLK_DIV_ID0
;
313 data
->fan_cmd1
&= ~G762_REG_FAN_CMD1_CLK_DIV_ID1
;
316 data
->fan_cmd1
|= G762_REG_FAN_CMD1_CLK_DIV_ID0
;
317 data
->fan_cmd1
&= ~G762_REG_FAN_CMD1_CLK_DIV_ID1
;
320 data
->fan_cmd1
&= ~G762_REG_FAN_CMD1_CLK_DIV_ID0
;
321 data
->fan_cmd1
|= G762_REG_FAN_CMD1_CLK_DIV_ID1
;
324 data
->fan_cmd1
|= G762_REG_FAN_CMD1_CLK_DIV_ID0
;
325 data
->fan_cmd1
|= G762_REG_FAN_CMD1_CLK_DIV_ID1
;
331 ret
= i2c_smbus_write_byte_data(data
->client
, G762_REG_FAN_CMD1
,
335 mutex_unlock(&data
->update_lock
);
340 /* Set fan gear mode. Accepts either 0, 1 or 2. */
341 static int do_set_fan_gear_mode(struct device
*dev
, unsigned long val
)
343 struct g762_data
*data
= g762_update_client(dev
);
347 return PTR_ERR(data
);
349 mutex_lock(&data
->update_lock
);
352 data
->fan_cmd2
&= ~G762_REG_FAN_CMD2_GEAR_MODE_0
;
353 data
->fan_cmd2
&= ~G762_REG_FAN_CMD2_GEAR_MODE_1
;
356 data
->fan_cmd2
|= G762_REG_FAN_CMD2_GEAR_MODE_0
;
357 data
->fan_cmd2
&= ~G762_REG_FAN_CMD2_GEAR_MODE_1
;
360 data
->fan_cmd2
&= ~G762_REG_FAN_CMD2_GEAR_MODE_0
;
361 data
->fan_cmd2
|= G762_REG_FAN_CMD2_GEAR_MODE_1
;
367 ret
= i2c_smbus_write_byte_data(data
->client
, G762_REG_FAN_CMD2
,
371 mutex_unlock(&data
->update_lock
);
376 /* Set number of fan pulses per revolution. Accepts either 2 or 4. */
377 static int do_set_fan_pulses(struct device
*dev
, unsigned long val
)
379 struct g762_data
*data
= g762_update_client(dev
);
383 return PTR_ERR(data
);
385 mutex_lock(&data
->update_lock
);
388 data
->fan_cmd1
&= ~G762_REG_FAN_CMD1_PULSE_PER_REV
;
391 data
->fan_cmd1
|= G762_REG_FAN_CMD1_PULSE_PER_REV
;
397 ret
= i2c_smbus_write_byte_data(data
->client
, G762_REG_FAN_CMD1
,
401 mutex_unlock(&data
->update_lock
);
406 /* Set fan mode. Accepts either 1 (open-loop) or 2 (closed-loop). */
407 static int do_set_pwm_enable(struct device
*dev
, unsigned long val
)
409 struct g762_data
*data
= g762_update_client(dev
);
413 return PTR_ERR(data
);
415 mutex_lock(&data
->update_lock
);
417 case G762_FAN_MODE_CLOSED_LOOP
:
418 data
->fan_cmd1
|= G762_REG_FAN_CMD1_FAN_MODE
;
420 case G762_FAN_MODE_OPEN_LOOP
:
421 data
->fan_cmd1
&= ~G762_REG_FAN_CMD1_FAN_MODE
;
423 * BUG FIX: if SET_CNT register value is 255 then, for some
424 * unknown reason, fan will not rotate as expected, no matter
425 * the value of SET_OUT (to be specific, this seems to happen
426 * only in PWM mode). To workaround this bug, we give SET_CNT
427 * value of 254 if it is 255 when switching to open-loop.
429 if (data
->set_cnt
== 0xff)
430 i2c_smbus_write_byte_data(data
->client
,
431 G762_REG_SET_CNT
, 254);
438 ret
= i2c_smbus_write_byte_data(data
->client
, G762_REG_FAN_CMD1
,
442 mutex_unlock(&data
->update_lock
);
447 /* Set PWM polarity. Accepts either 0 (positive duty) or 1 (negative duty) */
448 static int do_set_pwm_polarity(struct device
*dev
, unsigned long val
)
450 struct g762_data
*data
= g762_update_client(dev
);
454 return PTR_ERR(data
);
456 mutex_lock(&data
->update_lock
);
458 case G762_PWM_POLARITY_POSITIVE
:
459 data
->fan_cmd1
&= ~G762_REG_FAN_CMD1_PWM_POLARITY
;
461 case G762_PWM_POLARITY_NEGATIVE
:
462 data
->fan_cmd1
|= G762_REG_FAN_CMD1_PWM_POLARITY
;
468 ret
= i2c_smbus_write_byte_data(data
->client
, G762_REG_FAN_CMD1
,
472 mutex_unlock(&data
->update_lock
);
478 * Set pwm value. Accepts values between 0 (stops the fan) and
479 * 255 (full speed). This only makes sense in open-loop mode.
481 static int do_set_pwm(struct device
*dev
, unsigned long val
)
483 struct g762_data
*data
= dev_get_drvdata(dev
);
484 struct i2c_client
*client
= data
->client
;
490 mutex_lock(&data
->update_lock
);
491 ret
= i2c_smbus_write_byte_data(client
, G762_REG_SET_OUT
, val
);
493 mutex_unlock(&data
->update_lock
);
499 * Set fan RPM value. Can be called both in closed and open-loop mode
500 * but effect will only be seen after closed-loop mode is configured.
502 static int do_set_fan_target(struct device
*dev
, unsigned long val
)
504 struct g762_data
*data
= g762_update_client(dev
);
508 return PTR_ERR(data
);
510 mutex_lock(&data
->update_lock
);
511 data
->set_cnt
= cnt_from_rpm(val
, data
->clk_freq
,
512 G762_PULSE_FROM_REG(data
->fan_cmd1
),
513 G762_CLKDIV_FROM_REG(data
->fan_cmd1
),
514 G762_GEARMULT_FROM_REG(data
->fan_cmd2
));
515 ret
= i2c_smbus_write_byte_data(data
->client
, G762_REG_SET_CNT
,
518 mutex_unlock(&data
->update_lock
);
523 /* Set fan startup voltage. Accepted values are either 0, 1, 2 or 3. */
524 static int do_set_fan_startv(struct device
*dev
, unsigned long val
)
526 struct g762_data
*data
= g762_update_client(dev
);
530 return PTR_ERR(data
);
532 mutex_lock(&data
->update_lock
);
535 data
->fan_cmd2
&= ~G762_REG_FAN_CMD2_FAN_STARTV_0
;
536 data
->fan_cmd2
&= ~G762_REG_FAN_CMD2_FAN_STARTV_1
;
539 data
->fan_cmd2
|= G762_REG_FAN_CMD2_FAN_STARTV_0
;
540 data
->fan_cmd2
&= ~G762_REG_FAN_CMD2_FAN_STARTV_1
;
543 data
->fan_cmd2
&= ~G762_REG_FAN_CMD2_FAN_STARTV_0
;
544 data
->fan_cmd2
|= G762_REG_FAN_CMD2_FAN_STARTV_1
;
547 data
->fan_cmd2
|= G762_REG_FAN_CMD2_FAN_STARTV_0
;
548 data
->fan_cmd2
|= G762_REG_FAN_CMD2_FAN_STARTV_1
;
554 ret
= i2c_smbus_write_byte_data(data
->client
, G762_REG_FAN_CMD2
,
558 mutex_unlock(&data
->update_lock
);
564 * Helper to import hardware characteristics from .dts file and push
569 static const struct of_device_id g762_dt_match
[] = {
570 { .compatible
= "gmt,g762" },
571 { .compatible
= "gmt,g763" },
574 MODULE_DEVICE_TABLE(of
, g762_dt_match
);
577 * Grab clock (a required property), enable it, get (fixed) clock frequency
578 * and store it. Note: upon success, clock has been prepared and enabled; it
579 * must later be unprepared and disabled (e.g. during module unloading) by a
580 * call to g762_of_clock_disable(). Note that a reference to clock is kept
581 * in our private data structure to be used in this function.
583 static void g762_of_clock_disable(void *data
)
585 struct g762_data
*g762
= data
;
587 clk_disable_unprepare(g762
->clk
);
591 static int g762_of_clock_enable(struct i2c_client
*client
)
593 struct g762_data
*data
;
594 unsigned long clk_freq
;
598 if (!client
->dev
.of_node
)
601 clk
= of_clk_get(client
->dev
.of_node
, 0);
603 dev_err(&client
->dev
, "failed to get clock\n");
607 ret
= clk_prepare_enable(clk
);
609 dev_err(&client
->dev
, "failed to enable clock\n");
613 clk_freq
= clk_get_rate(clk
);
614 ret
= do_set_clk_freq(&client
->dev
, clk_freq
);
616 dev_err(&client
->dev
, "invalid clock freq %lu\n", clk_freq
);
620 data
= i2c_get_clientdata(client
);
623 devm_add_action(&client
->dev
, g762_of_clock_disable
, data
);
627 clk_disable_unprepare(clk
);
635 static int g762_of_prop_import_one(struct i2c_client
*client
,
637 int (*psetter
)(struct device
*dev
,
643 if (of_property_read_u32(client
->dev
.of_node
, pname
, &pval
))
646 dev_dbg(&client
->dev
, "found %s (%d)\n", pname
, pval
);
647 ret
= (*psetter
)(&client
->dev
, pval
);
649 dev_err(&client
->dev
, "unable to set %s (%d)\n", pname
, pval
);
654 static int g762_of_prop_import(struct i2c_client
*client
)
658 if (!client
->dev
.of_node
)
661 ret
= g762_of_prop_import_one(client
, "fan_gear_mode",
662 do_set_fan_gear_mode
);
666 ret
= g762_of_prop_import_one(client
, "pwm_polarity",
667 do_set_pwm_polarity
);
671 return g762_of_prop_import_one(client
, "fan_startv",
676 static int g762_of_prop_import(struct i2c_client
*client
)
681 static int g762_of_clock_enable(struct i2c_client
*client
)
688 * Helper to import hardware characteristics from .dts file and push
692 static int g762_pdata_prop_import(struct i2c_client
*client
)
694 struct g762_platform_data
*pdata
= dev_get_platdata(&client
->dev
);
700 ret
= do_set_fan_gear_mode(&client
->dev
, pdata
->fan_gear_mode
);
704 ret
= do_set_pwm_polarity(&client
->dev
, pdata
->pwm_polarity
);
708 ret
= do_set_fan_startv(&client
->dev
, pdata
->fan_startv
);
712 return do_set_clk_freq(&client
->dev
, pdata
->clk_freq
);
720 * Read function for fan1_input sysfs file. Return current fan RPM value, or
721 * 0 if fan is out of control.
723 static ssize_t
fan1_input_show(struct device
*dev
,
724 struct device_attribute
*da
, char *buf
)
726 struct g762_data
*data
= g762_update_client(dev
);
727 unsigned int rpm
= 0;
730 return PTR_ERR(data
);
732 mutex_lock(&data
->update_lock
);
733 /* reverse logic: fan out of control reporting is enabled low */
734 if (data
->fan_sta
& G762_REG_FAN_STA_OOC
) {
735 rpm
= rpm_from_cnt(data
->act_cnt
, data
->clk_freq
,
736 G762_PULSE_FROM_REG(data
->fan_cmd1
),
737 G762_CLKDIV_FROM_REG(data
->fan_cmd1
),
738 G762_GEARMULT_FROM_REG(data
->fan_cmd2
));
740 mutex_unlock(&data
->update_lock
);
742 return sprintf(buf
, "%u\n", rpm
);
746 * Read and write functions for pwm1_mode sysfs file. Get and set fan speed
747 * control mode i.e. PWM (1) or DC (0).
749 static ssize_t
pwm1_mode_show(struct device
*dev
, struct device_attribute
*da
,
752 struct g762_data
*data
= g762_update_client(dev
);
755 return PTR_ERR(data
);
757 return sprintf(buf
, "%d\n",
758 !!(data
->fan_cmd1
& G762_REG_FAN_CMD1_OUT_MODE
));
761 static ssize_t
pwm1_mode_store(struct device
*dev
,
762 struct device_attribute
*da
, const char *buf
,
768 if (kstrtoul(buf
, 10, &val
))
771 ret
= do_set_pwm_mode(dev
, val
);
779 * Read and write functions for fan1_div sysfs file. Get and set fan
780 * controller prescaler value
782 static ssize_t
fan1_div_show(struct device
*dev
, struct device_attribute
*da
,
785 struct g762_data
*data
= g762_update_client(dev
);
788 return PTR_ERR(data
);
790 return sprintf(buf
, "%d\n", G762_CLKDIV_FROM_REG(data
->fan_cmd1
));
793 static ssize_t
fan1_div_store(struct device
*dev
, struct device_attribute
*da
,
794 const char *buf
, size_t count
)
799 if (kstrtoul(buf
, 10, &val
))
802 ret
= do_set_fan_div(dev
, val
);
810 * Read and write functions for fan1_pulses sysfs file. Get and set number
811 * of tachometer pulses per fan revolution.
813 static ssize_t
fan1_pulses_show(struct device
*dev
,
814 struct device_attribute
*da
, char *buf
)
816 struct g762_data
*data
= g762_update_client(dev
);
819 return PTR_ERR(data
);
821 return sprintf(buf
, "%d\n", G762_PULSE_FROM_REG(data
->fan_cmd1
));
824 static ssize_t
fan1_pulses_store(struct device
*dev
,
825 struct device_attribute
*da
, const char *buf
,
831 if (kstrtoul(buf
, 10, &val
))
834 ret
= do_set_fan_pulses(dev
, val
);
842 * Read and write functions for pwm1_enable. Get and set fan speed control mode
843 * (i.e. closed or open-loop).
845 * Following documentation about hwmon's sysfs interface, a pwm1_enable node
846 * should accept the following:
848 * 0 : no fan speed control (i.e. fan at full speed)
849 * 1 : manual fan speed control enabled (use pwm[1-*]) (open-loop)
850 * 2+: automatic fan speed control enabled (use fan[1-*]_target) (closed-loop)
852 * but we do not accept 0 as this mode is not natively supported by the chip
853 * and it is not emulated by g762 driver. -EINVAL is returned in this case.
855 static ssize_t
pwm1_enable_show(struct device
*dev
,
856 struct device_attribute
*da
, char *buf
)
858 struct g762_data
*data
= g762_update_client(dev
);
861 return PTR_ERR(data
);
863 return sprintf(buf
, "%d\n",
864 (!!(data
->fan_cmd1
& G762_REG_FAN_CMD1_FAN_MODE
)) + 1);
867 static ssize_t
pwm1_enable_store(struct device
*dev
,
868 struct device_attribute
*da
, const char *buf
,
874 if (kstrtoul(buf
, 10, &val
))
877 ret
= do_set_pwm_enable(dev
, val
);
885 * Read and write functions for pwm1 sysfs file. Get and set pwm value
886 * (which affects fan speed) in open-loop mode. 0 stops the fan and 255
887 * makes it run at full speed.
889 static ssize_t
pwm1_show(struct device
*dev
, struct device_attribute
*da
,
892 struct g762_data
*data
= g762_update_client(dev
);
895 return PTR_ERR(data
);
897 return sprintf(buf
, "%d\n", data
->set_out
);
900 static ssize_t
pwm1_store(struct device
*dev
, struct device_attribute
*da
,
901 const char *buf
, size_t count
)
906 if (kstrtoul(buf
, 10, &val
))
909 ret
= do_set_pwm(dev
, val
);
917 * Read and write function for fan1_target sysfs file. Get/set the fan speed in
918 * closed-loop mode. Speed is given as a RPM value; then the chip will regulate
919 * the fan speed using pulses from fan tachometer.
921 * Refer to rpm_from_cnt() implementation above to get info about count number
924 * Also note that due to rounding errors it is possible that you don't read
925 * back exactly the value you have set.
927 static ssize_t
fan1_target_show(struct device
*dev
,
928 struct device_attribute
*da
, char *buf
)
930 struct g762_data
*data
= g762_update_client(dev
);
934 return PTR_ERR(data
);
936 mutex_lock(&data
->update_lock
);
937 rpm
= rpm_from_cnt(data
->set_cnt
, data
->clk_freq
,
938 G762_PULSE_FROM_REG(data
->fan_cmd1
),
939 G762_CLKDIV_FROM_REG(data
->fan_cmd1
),
940 G762_GEARMULT_FROM_REG(data
->fan_cmd2
));
941 mutex_unlock(&data
->update_lock
);
943 return sprintf(buf
, "%u\n", rpm
);
946 static ssize_t
fan1_target_store(struct device
*dev
,
947 struct device_attribute
*da
, const char *buf
,
953 if (kstrtoul(buf
, 10, &val
))
956 ret
= do_set_fan_target(dev
, val
);
963 /* read function for fan1_fault sysfs file. */
964 static ssize_t
fan1_fault_show(struct device
*dev
, struct device_attribute
*da
,
967 struct g762_data
*data
= g762_update_client(dev
);
970 return PTR_ERR(data
);
972 return sprintf(buf
, "%u\n", !!(data
->fan_sta
& G762_REG_FAN_STA_FAIL
));
976 * read function for fan1_alarm sysfs file. Note that OOC condition is
979 static ssize_t
fan1_alarm_show(struct device
*dev
,
980 struct device_attribute
*da
, char *buf
)
982 struct g762_data
*data
= g762_update_client(dev
);
985 return PTR_ERR(data
);
987 return sprintf(buf
, "%u\n", !(data
->fan_sta
& G762_REG_FAN_STA_OOC
));
990 static DEVICE_ATTR_RW(pwm1
);
991 static DEVICE_ATTR_RW(pwm1_mode
);
992 static DEVICE_ATTR_RW(pwm1_enable
);
993 static DEVICE_ATTR_RO(fan1_input
);
994 static DEVICE_ATTR_RO(fan1_alarm
);
995 static DEVICE_ATTR_RO(fan1_fault
);
996 static DEVICE_ATTR_RW(fan1_target
);
997 static DEVICE_ATTR_RW(fan1_div
);
998 static DEVICE_ATTR_RW(fan1_pulses
);
1001 static struct attribute
*g762_attrs
[] = {
1002 &dev_attr_fan1_input
.attr
,
1003 &dev_attr_fan1_alarm
.attr
,
1004 &dev_attr_fan1_fault
.attr
,
1005 &dev_attr_fan1_target
.attr
,
1006 &dev_attr_fan1_div
.attr
,
1007 &dev_attr_fan1_pulses
.attr
,
1008 &dev_attr_pwm1
.attr
,
1009 &dev_attr_pwm1_mode
.attr
,
1010 &dev_attr_pwm1_enable
.attr
,
1014 ATTRIBUTE_GROUPS(g762
);
1017 * Enable both fan failure detection and fan out of control protection. The
1018 * function does not protect change/access to data structure; it must thus
1019 * only be called during initialization.
1021 static inline int g762_fan_init(struct device
*dev
)
1023 struct g762_data
*data
= g762_update_client(dev
);
1026 return PTR_ERR(data
);
1028 data
->fan_cmd1
|= G762_REG_FAN_CMD1_DET_FAN_FAIL
;
1029 data
->fan_cmd1
|= G762_REG_FAN_CMD1_DET_FAN_OOC
;
1030 data
->valid
= false;
1032 return i2c_smbus_write_byte_data(data
->client
, G762_REG_FAN_CMD1
,
1036 static int g762_probe(struct i2c_client
*client
)
1038 struct device
*dev
= &client
->dev
;
1039 struct device
*hwmon_dev
;
1040 struct g762_data
*data
;
1043 if (!i2c_check_functionality(client
->adapter
,
1044 I2C_FUNC_SMBUS_BYTE_DATA
))
1047 data
= devm_kzalloc(dev
, sizeof(struct g762_data
), GFP_KERNEL
);
1051 i2c_set_clientdata(client
, data
);
1052 data
->client
= client
;
1053 mutex_init(&data
->update_lock
);
1055 /* Enable fan failure detection and fan out of control protection */
1056 ret
= g762_fan_init(dev
);
1060 /* Get configuration via DT ... */
1061 ret
= g762_of_clock_enable(client
);
1064 ret
= g762_of_prop_import(client
);
1067 /* ... or platform_data */
1068 ret
= g762_pdata_prop_import(client
);
1072 hwmon_dev
= devm_hwmon_device_register_with_groups(dev
, client
->name
,
1074 return PTR_ERR_OR_ZERO(hwmon_dev
);
1077 static struct i2c_driver g762_driver
= {
1080 .of_match_table
= of_match_ptr(g762_dt_match
),
1082 .probe_new
= g762_probe
,
1083 .id_table
= g762_id
,
1086 module_i2c_driver(g762_driver
);
1088 MODULE_AUTHOR("Arnaud EBALARD <arno@natisbad.org>");
1089 MODULE_DESCRIPTION("GMT G762/G763 driver");
1090 MODULE_LICENSE("GPL");