/drivers/hwmon/w83l786ng.c
C | 789 lines | 601 code | 132 blank | 56 comment | 33 complexity | b3649e00cd014e23a0d80dcb36cd1e4d MD5 | raw file
Possible License(s): LGPL-2.0, AGPL-1.0, GPL-2.0
- /*
- w83l786ng.c - Linux kernel driver for hardware monitoring
- Copyright (c) 2007 Kevin Lo <kevlo@kevlo.org>
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation - version 2.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- 02110-1301 USA.
- */
- /*
- Supports following chips:
- Chip #vin #fanin #pwm #temp wchipid vendid i2c ISA
- w83l786ng 3 2 2 2 0x7b 0x5ca3 yes no
- */
- #include <linux/module.h>
- #include <linux/init.h>
- #include <linux/slab.h>
- #include <linux/i2c.h>
- #include <linux/hwmon.h>
- #include <linux/hwmon-vid.h>
- #include <linux/hwmon-sysfs.h>
- #include <linux/err.h>
- #include <linux/mutex.h>
- /* Addresses to scan */
- static const unsigned short normal_i2c[] = { 0x2e, 0x2f, I2C_CLIENT_END };
- /* Insmod parameters */
- static int reset;
- module_param(reset, bool, 0);
- MODULE_PARM_DESC(reset, "Set to 1 to reset chip, not recommended");
- #define W83L786NG_REG_IN_MIN(nr) (0x2C + (nr) * 2)
- #define W83L786NG_REG_IN_MAX(nr) (0x2B + (nr) * 2)
- #define W83L786NG_REG_IN(nr) ((nr) + 0x20)
- #define W83L786NG_REG_FAN(nr) ((nr) + 0x28)
- #define W83L786NG_REG_FAN_MIN(nr) ((nr) + 0x3B)
- #define W83L786NG_REG_CONFIG 0x40
- #define W83L786NG_REG_ALARM1 0x41
- #define W83L786NG_REG_ALARM2 0x42
- #define W83L786NG_REG_GPIO_EN 0x47
- #define W83L786NG_REG_MAN_ID2 0x4C
- #define W83L786NG_REG_MAN_ID1 0x4D
- #define W83L786NG_REG_CHIP_ID 0x4E
- #define W83L786NG_REG_DIODE 0x53
- #define W83L786NG_REG_FAN_DIV 0x54
- #define W83L786NG_REG_FAN_CFG 0x80
- #define W83L786NG_REG_TOLERANCE 0x8D
- static const u8 W83L786NG_REG_TEMP[2][3] = {
- { 0x25, /* TEMP 0 in DataSheet */
- 0x35, /* TEMP 0 Over in DataSheet */
- 0x36 }, /* TEMP 0 Hyst in DataSheet */
- { 0x26, /* TEMP 1 in DataSheet */
- 0x37, /* TEMP 1 Over in DataSheet */
- 0x38 } /* TEMP 1 Hyst in DataSheet */
- };
- static const u8 W83L786NG_PWM_MODE_SHIFT[] = {6, 7};
- static const u8 W83L786NG_PWM_ENABLE_SHIFT[] = {2, 4};
- /* FAN Duty Cycle, be used to control */
- static const u8 W83L786NG_REG_PWM[] = {0x81, 0x87};
- static inline u8
- FAN_TO_REG(long rpm, int div)
- {
- if (rpm == 0)
- return 255;
- rpm = SENSORS_LIMIT(rpm, 1, 1000000);
- return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
- }
- #define FAN_FROM_REG(val,div) ((val) == 0 ? -1 : \
- ((val) == 255 ? 0 : \
- 1350000 / ((val) * (div))))
- /* for temp */
- #define TEMP_TO_REG(val) (SENSORS_LIMIT(((val) < 0 ? (val)+0x100*1000 \
- : (val)) / 1000, 0, 0xff))
- #define TEMP_FROM_REG(val) (((val) & 0x80 ? (val)-0x100 : (val)) * 1000)
- /* The analog voltage inputs have 8mV LSB. Since the sysfs output is
- in mV as would be measured on the chip input pin, need to just
- multiply/divide by 8 to translate from/to register values. */
- #define IN_TO_REG(val) (SENSORS_LIMIT((((val) + 4) / 8), 0, 255))
- #define IN_FROM_REG(val) ((val) * 8)
- #define DIV_FROM_REG(val) (1 << (val))
- static inline u8
- DIV_TO_REG(long val)
- {
- int i;
- val = SENSORS_LIMIT(val, 1, 128) >> 1;
- for (i = 0; i < 7; i++) {
- if (val == 0)
- break;
- val >>= 1;
- }
- return ((u8) i);
- }
- struct w83l786ng_data {
- struct device *hwmon_dev;
- struct mutex update_lock;
- char valid; /* !=0 if following fields are valid */
- unsigned long last_updated; /* In jiffies */
- unsigned long last_nonvolatile; /* In jiffies, last time we update the
- nonvolatile registers */
- u8 in[3];
- u8 in_max[3];
- u8 in_min[3];
- u8 fan[2];
- u8 fan_div[2];
- u8 fan_min[2];
- u8 temp_type[2];
- u8 temp[2][3];
- u8 pwm[2];
- u8 pwm_mode[2]; /* 0->DC variable voltage
- 1->PWM variable duty cycle */
- u8 pwm_enable[2]; /* 1->manual
- 2->thermal cruise (also called SmartFan I) */
- u8 tolerance[2];
- };
- static int w83l786ng_probe(struct i2c_client *client,
- const struct i2c_device_id *id);
- static int w83l786ng_detect(struct i2c_client *client,
- struct i2c_board_info *info);
- static int w83l786ng_remove(struct i2c_client *client);
- static void w83l786ng_init_client(struct i2c_client *client);
- static struct w83l786ng_data *w83l786ng_update_device(struct device *dev);
- static const struct i2c_device_id w83l786ng_id[] = {
- { "w83l786ng", 0 },
- { }
- };
- MODULE_DEVICE_TABLE(i2c, w83l786ng_id);
- static struct i2c_driver w83l786ng_driver = {
- .class = I2C_CLASS_HWMON,
- .driver = {
- .name = "w83l786ng",
- },
- .probe = w83l786ng_probe,
- .remove = w83l786ng_remove,
- .id_table = w83l786ng_id,
- .detect = w83l786ng_detect,
- .address_list = normal_i2c,
- };
- static u8
- w83l786ng_read_value(struct i2c_client *client, u8 reg)
- {
- return i2c_smbus_read_byte_data(client, reg);
- }
- static int
- w83l786ng_write_value(struct i2c_client *client, u8 reg, u8 value)
- {
- return i2c_smbus_write_byte_data(client, reg, value);
- }
- /* following are the sysfs callback functions */
- #define show_in_reg(reg) \
- static ssize_t \
- show_##reg(struct device *dev, struct device_attribute *attr, \
- char *buf) \
- { \
- int nr = to_sensor_dev_attr(attr)->index; \
- struct w83l786ng_data *data = w83l786ng_update_device(dev); \
- return sprintf(buf,"%d\n", IN_FROM_REG(data->reg[nr])); \
- }
- show_in_reg(in)
- show_in_reg(in_min)
- show_in_reg(in_max)
- #define store_in_reg(REG, reg) \
- static ssize_t \
- store_in_##reg (struct device *dev, struct device_attribute *attr, \
- const char *buf, size_t count) \
- { \
- int nr = to_sensor_dev_attr(attr)->index; \
- struct i2c_client *client = to_i2c_client(dev); \
- struct w83l786ng_data *data = i2c_get_clientdata(client); \
- unsigned long val = simple_strtoul(buf, NULL, 10); \
- mutex_lock(&data->update_lock); \
- data->in_##reg[nr] = IN_TO_REG(val); \
- w83l786ng_write_value(client, W83L786NG_REG_IN_##REG(nr), \
- data->in_##reg[nr]); \
- mutex_unlock(&data->update_lock); \
- return count; \
- }
- store_in_reg(MIN, min)
- store_in_reg(MAX, max)
- static struct sensor_device_attribute sda_in_input[] = {
- SENSOR_ATTR(in0_input, S_IRUGO, show_in, NULL, 0),
- SENSOR_ATTR(in1_input, S_IRUGO, show_in, NULL, 1),
- SENSOR_ATTR(in2_input, S_IRUGO, show_in, NULL, 2),
- };
- static struct sensor_device_attribute sda_in_min[] = {
- SENSOR_ATTR(in0_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 0),
- SENSOR_ATTR(in1_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 1),
- SENSOR_ATTR(in2_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 2),
- };
- static struct sensor_device_attribute sda_in_max[] = {
- SENSOR_ATTR(in0_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 0),
- SENSOR_ATTR(in1_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 1),
- SENSOR_ATTR(in2_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 2),
- };
- #define show_fan_reg(reg) \
- static ssize_t show_##reg(struct device *dev, struct device_attribute *attr, \
- char *buf) \
- { \
- int nr = to_sensor_dev_attr(attr)->index; \
- struct w83l786ng_data *data = w83l786ng_update_device(dev); \
- return sprintf(buf,"%d\n", \
- FAN_FROM_REG(data->fan[nr], DIV_FROM_REG(data->fan_div[nr]))); \
- }