1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * nct7904.c - driver for Nuvoton NCT7904D.
5 * Copyright (c) 2015 Kontron
6 * Author: Vadim V. Vlasov <vvlasov@dev.rtsoft.ru>
9 #include <linux/module.h>
10 #include <linux/device.h>
11 #include <linux/init.h>
12 #include <linux/i2c.h>
13 #include <linux/mutex.h>
14 #include <linux/hwmon.h>
16 #define VENDOR_ID_REG 0x7A /* Any bank */
17 #define NUVOTON_ID 0x50
18 #define CHIP_ID_REG 0x7B /* Any bank */
19 #define NCT7904_ID 0xC5
20 #define DEVICE_ID_REG 0x7C /* Any bank */
22 #define BANK_SEL_REG 0xFF
30 #define FANIN_MAX 12 /* Counted from 1 */
31 #define VSEN_MAX 21 /* VSEN1..14, 3VDD, VBAT, V3VSB,
32 LTD (not a voltage), VSEN17..19 */
33 #define FANCTL_MAX 4 /* Counted from 1 */
34 #define TCPU_MAX 8 /* Counted from 1 */
35 #define TEMP_MAX 4 /* Counted from 1 */
37 #define VT_ADC_CTRL0_REG 0x20 /* Bank 0 */
38 #define VT_ADC_CTRL1_REG 0x21 /* Bank 0 */
39 #define VT_ADC_CTRL2_REG 0x22 /* Bank 0 */
40 #define FANIN_CTRL0_REG 0x24
41 #define FANIN_CTRL1_REG 0x25
42 #define DTS_T_CTRL0_REG 0x26
43 #define DTS_T_CTRL1_REG 0x27
44 #define VT_ADC_MD_REG 0x2E
46 #define VSEN1_HV_REG 0x40 /* Bank 0; 2 regs (HV/LV) per sensor */
47 #define TEMP_CH1_HV_REG 0x42 /* Bank 0; same as VSEN2_HV */
48 #define LTD_HV_REG 0x62 /* Bank 0; 2 regs in VSEN range */
49 #define FANIN1_HV_REG 0x80 /* Bank 0; 2 regs (HV/LV) per sensor */
50 #define T_CPU1_HV_REG 0xA0 /* Bank 0; 2 regs (HV/LV) per sensor */
52 #define PRTS_REG 0x03 /* Bank 2 */
53 #define FANCTL1_FMR_REG 0x00 /* Bank 3; 1 reg per channel */
54 #define FANCTL1_OUT_REG 0x10 /* Bank 3; 1 reg per channel */
56 static const unsigned short normal_i2c
[] = {
57 0x2d, 0x2e, I2C_CLIENT_END
61 struct i2c_client
*client
;
62 struct mutex bank_lock
;
67 u8 fan_mode
[FANCTL_MAX
];
70 /* Access functions */
71 static int nct7904_bank_lock(struct nct7904_data
*data
, unsigned int bank
)
75 mutex_lock(&data
->bank_lock
);
76 if (data
->bank_sel
== bank
)
78 ret
= i2c_smbus_write_byte_data(data
->client
, BANK_SEL_REG
, bank
);
80 data
->bank_sel
= bank
;
86 static inline void nct7904_bank_release(struct nct7904_data
*data
)
88 mutex_unlock(&data
->bank_lock
);
91 /* Read 1-byte register. Returns unsigned reg or -ERRNO on error. */
92 static int nct7904_read_reg(struct nct7904_data
*data
,
93 unsigned int bank
, unsigned int reg
)
95 struct i2c_client
*client
= data
->client
;
98 ret
= nct7904_bank_lock(data
, bank
);
100 ret
= i2c_smbus_read_byte_data(client
, reg
);
102 nct7904_bank_release(data
);
107 * Read 2-byte register. Returns register in big-endian format or
110 static int nct7904_read_reg16(struct nct7904_data
*data
,
111 unsigned int bank
, unsigned int reg
)
113 struct i2c_client
*client
= data
->client
;
116 ret
= nct7904_bank_lock(data
, bank
);
118 ret
= i2c_smbus_read_byte_data(client
, reg
);
121 ret
= i2c_smbus_read_byte_data(client
, reg
+ 1);
127 nct7904_bank_release(data
);
131 /* Write 1-byte register. Returns 0 or -ERRNO on error. */
132 static int nct7904_write_reg(struct nct7904_data
*data
,
133 unsigned int bank
, unsigned int reg
, u8 val
)
135 struct i2c_client
*client
= data
->client
;
138 ret
= nct7904_bank_lock(data
, bank
);
140 ret
= i2c_smbus_write_byte_data(client
, reg
, val
);
142 nct7904_bank_release(data
);
146 static int nct7904_read_fan(struct device
*dev
, u32 attr
, int channel
,
149 struct nct7904_data
*data
= dev_get_drvdata(dev
);
150 unsigned int cnt
, rpm
;
154 case hwmon_fan_input
:
155 ret
= nct7904_read_reg16(data
, BANK_0
,
156 FANIN1_HV_REG
+ channel
* 2);
159 cnt
= ((ret
& 0xff00) >> 3) | (ret
& 0x1f);
171 static umode_t
nct7904_fan_is_visible(const void *_data
, u32 attr
, int channel
)
173 const struct nct7904_data
*data
= _data
;
175 if (attr
== hwmon_fan_input
&& data
->fanin_mask
& (1 << channel
))
180 static u8 nct7904_chan_to_index
[] = {
182 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
186 static int nct7904_read_in(struct device
*dev
, u32 attr
, int channel
,
189 struct nct7904_data
*data
= dev_get_drvdata(dev
);
190 int ret
, volt
, index
;
192 index
= nct7904_chan_to_index
[channel
];
196 ret
= nct7904_read_reg16(data
, BANK_0
,
197 VSEN1_HV_REG
+ index
* 2);
200 volt
= ((ret
& 0xff00) >> 5) | (ret
& 0x7);
202 volt
*= 2; /* 0.002V scale */
204 volt
*= 6; /* 0.006V scale */
212 static umode_t
nct7904_in_is_visible(const void *_data
, u32 attr
, int channel
)
214 const struct nct7904_data
*data
= _data
;
215 int index
= nct7904_chan_to_index
[channel
];
217 if (channel
> 0 && attr
== hwmon_in_input
&&
218 (data
->vsen_mask
& BIT(index
)))
224 static int nct7904_read_temp(struct device
*dev
, u32 attr
, int channel
,
227 struct nct7904_data
*data
= dev_get_drvdata(dev
);
231 case hwmon_temp_input
:
233 ret
= nct7904_read_reg16(data
, BANK_0
, LTD_HV_REG
);
235 ret
= nct7904_read_reg16(data
, BANK_0
,
236 T_CPU1_HV_REG
+ (channel
- 1) * 2);
239 temp
= ((ret
& 0xff00) >> 5) | (ret
& 0x7);
240 *val
= sign_extend32(temp
, 10) * 125;
247 static umode_t
nct7904_temp_is_visible(const void *_data
, u32 attr
, int channel
)
249 const struct nct7904_data
*data
= _data
;
251 if (attr
== hwmon_temp_input
) {
253 if (data
->vsen_mask
& BIT(17))
256 if (data
->tcpu_mask
& BIT(channel
- 1))
264 static int nct7904_read_pwm(struct device
*dev
, u32 attr
, int channel
,
267 struct nct7904_data
*data
= dev_get_drvdata(dev
);
271 case hwmon_pwm_input
:
272 ret
= nct7904_read_reg(data
, BANK_3
, FANCTL1_OUT_REG
+ channel
);
277 case hwmon_pwm_enable
:
278 ret
= nct7904_read_reg(data
, BANK_3
, FANCTL1_FMR_REG
+ channel
);
289 static int nct7904_write_pwm(struct device
*dev
, u32 attr
, int channel
,
292 struct nct7904_data
*data
= dev_get_drvdata(dev
);
296 case hwmon_pwm_input
:
297 if (val
< 0 || val
> 255)
299 ret
= nct7904_write_reg(data
, BANK_3
, FANCTL1_OUT_REG
+ channel
,
302 case hwmon_pwm_enable
:
303 if (val
< 1 || val
> 2 ||
304 (val
== 2 && !data
->fan_mode
[channel
]))
306 ret
= nct7904_write_reg(data
, BANK_3
, FANCTL1_FMR_REG
+ channel
,
307 val
== 2 ? data
->fan_mode
[channel
] : 0);
314 static umode_t
nct7904_pwm_is_visible(const void *_data
, u32 attr
, int channel
)
317 case hwmon_pwm_input
:
318 case hwmon_pwm_enable
:
325 static int nct7904_read(struct device
*dev
, enum hwmon_sensor_types type
,
326 u32 attr
, int channel
, long *val
)
330 return nct7904_read_in(dev
, attr
, channel
, val
);
332 return nct7904_read_fan(dev
, attr
, channel
, val
);
334 return nct7904_read_pwm(dev
, attr
, channel
, val
);
336 return nct7904_read_temp(dev
, attr
, channel
, val
);
342 static int nct7904_write(struct device
*dev
, enum hwmon_sensor_types type
,
343 u32 attr
, int channel
, long val
)
347 return nct7904_write_pwm(dev
, attr
, channel
, val
);
353 static umode_t
nct7904_is_visible(const void *data
,
354 enum hwmon_sensor_types type
,
355 u32 attr
, int channel
)
359 return nct7904_in_is_visible(data
, attr
, channel
);
361 return nct7904_fan_is_visible(data
, attr
, channel
);
363 return nct7904_pwm_is_visible(data
, attr
, channel
);
365 return nct7904_temp_is_visible(data
, attr
, channel
);
371 /* Return 0 if detection is successful, -ENODEV otherwise */
372 static int nct7904_detect(struct i2c_client
*client
,
373 struct i2c_board_info
*info
)
375 struct i2c_adapter
*adapter
= client
->adapter
;
377 if (!i2c_check_functionality(adapter
,
378 I2C_FUNC_SMBUS_READ_BYTE
|
379 I2C_FUNC_SMBUS_WRITE_BYTE_DATA
))
382 /* Determine the chip type. */
383 if (i2c_smbus_read_byte_data(client
, VENDOR_ID_REG
) != NUVOTON_ID
||
384 i2c_smbus_read_byte_data(client
, CHIP_ID_REG
) != NCT7904_ID
||
385 (i2c_smbus_read_byte_data(client
, DEVICE_ID_REG
) & 0xf0) != 0x50 ||
386 (i2c_smbus_read_byte_data(client
, BANK_SEL_REG
) & 0xf8) != 0x00)
389 strlcpy(info
->type
, "nct7904", I2C_NAME_SIZE
);
394 static const struct hwmon_channel_info
*nct7904_info
[] = {
395 HWMON_CHANNEL_INFO(in
,
396 HWMON_I_INPUT
, /* dummy, skipped in is_visible */
417 HWMON_CHANNEL_INFO(fan
,
426 HWMON_CHANNEL_INFO(pwm
,
427 HWMON_PWM_INPUT
| HWMON_PWM_ENABLE
,
428 HWMON_PWM_INPUT
| HWMON_PWM_ENABLE
,
429 HWMON_PWM_INPUT
| HWMON_PWM_ENABLE
,
430 HWMON_PWM_INPUT
| HWMON_PWM_ENABLE
),
431 HWMON_CHANNEL_INFO(temp
,
444 static const struct hwmon_ops nct7904_hwmon_ops
= {
445 .is_visible
= nct7904_is_visible
,
446 .read
= nct7904_read
,
447 .write
= nct7904_write
,
450 static const struct hwmon_chip_info nct7904_chip_info
= {
451 .ops
= &nct7904_hwmon_ops
,
452 .info
= nct7904_info
,
455 static int nct7904_probe(struct i2c_client
*client
,
456 const struct i2c_device_id
*id
)
458 struct nct7904_data
*data
;
459 struct device
*hwmon_dev
;
460 struct device
*dev
= &client
->dev
;
464 data
= devm_kzalloc(dev
, sizeof(struct nct7904_data
), GFP_KERNEL
);
468 data
->client
= client
;
469 mutex_init(&data
->bank_lock
);
472 /* Setup sensor groups. */
473 /* FANIN attributes */
474 ret
= nct7904_read_reg16(data
, BANK_0
, FANIN_CTRL0_REG
);
477 data
->fanin_mask
= (ret
>> 8) | ((ret
& 0xff) << 8);
482 * Note: voltage sensors overlap with external temperature
483 * sensors. So, if we ever decide to support the latter
484 * we will have to adjust 'vsen_mask' accordingly.
487 ret
= nct7904_read_reg16(data
, BANK_0
, VT_ADC_CTRL0_REG
);
489 mask
= (ret
>> 8) | ((ret
& 0xff) << 8);
490 ret
= nct7904_read_reg(data
, BANK_0
, VT_ADC_CTRL2_REG
);
493 data
->vsen_mask
= mask
;
495 /* CPU_TEMP attributes */
496 ret
= nct7904_read_reg16(data
, BANK_0
, DTS_T_CTRL0_REG
);
499 data
->tcpu_mask
= ((ret
>> 8) & 0xf) | ((ret
& 0xf) << 4);
501 for (i
= 0; i
< FANCTL_MAX
; i
++) {
502 ret
= nct7904_read_reg(data
, BANK_3
, FANCTL1_FMR_REG
+ i
);
505 data
->fan_mode
[i
] = ret
;
509 devm_hwmon_device_register_with_info(dev
, client
->name
, data
,
510 &nct7904_chip_info
, NULL
);
511 return PTR_ERR_OR_ZERO(hwmon_dev
);
514 static const struct i2c_device_id nct7904_id
[] = {
518 MODULE_DEVICE_TABLE(i2c
, nct7904_id
);
520 static struct i2c_driver nct7904_driver
= {
521 .class = I2C_CLASS_HWMON
,
525 .probe
= nct7904_probe
,
526 .id_table
= nct7904_id
,
527 .detect
= nct7904_detect
,
528 .address_list
= normal_i2c
,
531 module_i2c_driver(nct7904_driver
);
533 MODULE_AUTHOR("Vadim V. Vlasov <vvlasov@dev.rtsoft.ru>");
534 MODULE_DESCRIPTION("Hwmon driver for NUVOTON NCT7904");
535 MODULE_LICENSE("GPL");