2 * Copyright (C) 2017 IBM Corp.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * Driver for the Nuvoton W83773G SMBus temperature sensor IC.
10 * Supported models: W83773G
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/i2c.h>
16 #include <linux/hwmon.h>
17 #include <linux/hwmon-sysfs.h>
18 #include <linux/err.h>
19 #include <linux/of_device.h>
20 #include <linux/regmap.h>
22 /* W83773 has 3 channels */
23 #define W83773_CHANNELS 3
25 /* The W83773 registers */
26 #define W83773_CONVERSION_RATE_REG_READ 0x04
27 #define W83773_CONVERSION_RATE_REG_WRITE 0x0A
28 #define W83773_MANUFACTURER_ID_REG 0xFE
29 #define W83773_LOCAL_TEMP 0x00
31 static const u8 W83773_STATUS
[2] = { 0x02, 0x17 };
33 static const u8 W83773_TEMP_LSB
[2] = { 0x10, 0x25 };
34 static const u8 W83773_TEMP_MSB
[2] = { 0x01, 0x24 };
36 static const u8 W83773_OFFSET_LSB
[2] = { 0x12, 0x16 };
37 static const u8 W83773_OFFSET_MSB
[2] = { 0x11, 0x15 };
39 /* this is the number of sensors in the device */
40 static const struct i2c_device_id w83773_id
[] = {
45 MODULE_DEVICE_TABLE(i2c
, w83773_id
);
47 static const struct of_device_id w83773_of_match
[] = {
49 .compatible
= "nuvoton,w83773g"
53 MODULE_DEVICE_TABLE(of
, w83773_of_match
);
55 static inline long temp_of_local(s8 reg
)
60 static inline long temp_of_remote(s8 hb
, u8 lb
)
62 return (hb
<< 3 | lb
>> 5) * 125;
65 static int get_local_temp(struct regmap
*regmap
, long *val
)
70 ret
= regmap_read(regmap
, W83773_LOCAL_TEMP
, ®val
);
74 *val
= temp_of_local(regval
);
78 static int get_remote_temp(struct regmap
*regmap
, int index
, long *val
)
80 unsigned int regval_high
;
81 unsigned int regval_low
;
84 ret
= regmap_read(regmap
, W83773_TEMP_MSB
[index
], ®val_high
);
88 ret
= regmap_read(regmap
, W83773_TEMP_LSB
[index
], ®val_low
);
92 *val
= temp_of_remote(regval_high
, regval_low
);
96 static int get_fault(struct regmap
*regmap
, int index
, long *val
)
101 ret
= regmap_read(regmap
, W83773_STATUS
[index
], ®val
);
105 *val
= (regval
& 0x04) >> 2;
109 static int get_offset(struct regmap
*regmap
, int index
, long *val
)
111 unsigned int regval_high
;
112 unsigned int regval_low
;
115 ret
= regmap_read(regmap
, W83773_OFFSET_MSB
[index
], ®val_high
);
119 ret
= regmap_read(regmap
, W83773_OFFSET_LSB
[index
], ®val_low
);
123 *val
= temp_of_remote(regval_high
, regval_low
);
127 static int set_offset(struct regmap
*regmap
, int index
, long val
)
133 val
= clamp_val(val
, -127825, 127825);
134 /* offset value equals to (high_byte << 3 | low_byte >> 5) * 125 */
136 high_byte
= val
>> 3;
137 low_byte
= (val
& 0x07) << 5;
139 ret
= regmap_write(regmap
, W83773_OFFSET_MSB
[index
], high_byte
);
143 return regmap_write(regmap
, W83773_OFFSET_LSB
[index
], low_byte
);
146 static int get_update_interval(struct regmap
*regmap
, long *val
)
151 ret
= regmap_read(regmap
, W83773_CONVERSION_RATE_REG_READ
, ®val
);
155 *val
= 16000 >> regval
;
159 static int set_update_interval(struct regmap
*regmap
, long val
)
164 * For valid rates, interval can be calculated as
165 * interval = (1 << (8 - rate)) * 62.5;
166 * Rounded rate is therefore
167 * rate = 8 - __fls(interval * 8 / (62.5 * 7));
168 * Use clamp_val() to avoid overflows, and to ensure valid input
171 val
= clamp_val(val
, 62, 16000) * 10;
172 rate
= 8 - __fls((val
* 8 / (625 * 7)));
173 return regmap_write(regmap
, W83773_CONVERSION_RATE_REG_WRITE
, rate
);
176 static int w83773_read(struct device
*dev
, enum hwmon_sensor_types type
,
177 u32 attr
, int channel
, long *val
)
179 struct regmap
*regmap
= dev_get_drvdata(dev
);
181 if (type
== hwmon_chip
) {
182 if (attr
== hwmon_chip_update_interval
)
183 return get_update_interval(regmap
, val
);
188 case hwmon_temp_input
:
190 return get_local_temp(regmap
, val
);
191 return get_remote_temp(regmap
, channel
- 1, val
);
192 case hwmon_temp_fault
:
193 return get_fault(regmap
, channel
- 1, val
);
194 case hwmon_temp_offset
:
195 return get_offset(regmap
, channel
- 1, val
);
201 static int w83773_write(struct device
*dev
, enum hwmon_sensor_types type
,
202 u32 attr
, int channel
, long val
)
204 struct regmap
*regmap
= dev_get_drvdata(dev
);
206 if (type
== hwmon_chip
&& attr
== hwmon_chip_update_interval
)
207 return set_update_interval(regmap
, val
);
209 if (type
== hwmon_temp
&& attr
== hwmon_temp_offset
)
210 return set_offset(regmap
, channel
- 1, val
);
215 static umode_t
w83773_is_visible(const void *data
, enum hwmon_sensor_types type
,
216 u32 attr
, int channel
)
221 case hwmon_chip_update_interval
:
227 case hwmon_temp_input
:
228 case hwmon_temp_fault
:
230 case hwmon_temp_offset
:
240 static const u32 w83773_chip_config
[] = {
241 HWMON_C_REGISTER_TZ
| HWMON_C_UPDATE_INTERVAL
,
245 static const struct hwmon_channel_info w83773_chip
= {
247 .config
= w83773_chip_config
,
250 static const u32 w83773_temp_config
[] = {
252 HWMON_T_INPUT
| HWMON_T_FAULT
| HWMON_T_OFFSET
,
253 HWMON_T_INPUT
| HWMON_T_FAULT
| HWMON_T_OFFSET
,
257 static const struct hwmon_channel_info w83773_temp
= {
259 .config
= w83773_temp_config
,
262 static const struct hwmon_channel_info
*w83773_info
[] = {
268 static const struct hwmon_ops w83773_ops
= {
269 .is_visible
= w83773_is_visible
,
271 .write
= w83773_write
,
274 static const struct hwmon_chip_info w83773_chip_info
= {
279 static const struct regmap_config w83773_regmap_config
= {
284 static int w83773_probe(struct i2c_client
*client
,
285 const struct i2c_device_id
*id
)
287 struct device
*dev
= &client
->dev
;
288 struct device
*hwmon_dev
;
289 struct regmap
*regmap
;
292 regmap
= devm_regmap_init_i2c(client
, &w83773_regmap_config
);
293 if (IS_ERR(regmap
)) {
294 dev_err(dev
, "failed to allocate register map\n");
295 return PTR_ERR(regmap
);
298 /* Set the conversion rate to 2 Hz */
299 ret
= regmap_write(regmap
, W83773_CONVERSION_RATE_REG_WRITE
, 0x05);
301 dev_err(&client
->dev
, "error writing config rate register\n");
305 i2c_set_clientdata(client
, regmap
);
307 hwmon_dev
= devm_hwmon_device_register_with_info(dev
,
312 return PTR_ERR_OR_ZERO(hwmon_dev
);
315 static struct i2c_driver w83773_driver
= {
316 .class = I2C_CLASS_HWMON
,
319 .of_match_table
= of_match_ptr(w83773_of_match
),
321 .probe
= w83773_probe
,
322 .id_table
= w83773_id
,
325 module_i2c_driver(w83773_driver
);
327 MODULE_AUTHOR("Lei YU <mine260309@gmail.com>");
328 MODULE_DESCRIPTION("W83773G temperature sensor driver");
329 MODULE_LICENSE("GPL");