/drivers/hwmon/gl518sm.c
C | 696 lines | 535 code | 97 blank | 64 comment | 34 complexity | 5226a19efac7c2f2db387fac407b4b0c MD5 | raw file
Possible License(s): CC-BY-SA-3.0, GPL-2.0, LGPL-2.0, AGPL-1.0
- /*
- * gl518sm.c - Part of lm_sensors, Linux kernel modules for hardware
- * monitoring
- * Copyright (C) 1998, 1999 Frodo Looijaard <frodol@dds.nl> and
- * Kyosti Malkki <kmalkki@cc.hut.fi>
- * Copyright (C) 2004 Hong-Gunn Chew <hglinux@gunnet.org> and
- * Jean Delvare <khali@linux-fr.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; either version 2 of the License, or
- * (at your option) any later version.
- *
- * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- * Ported to Linux 2.6 by Hong-Gunn Chew with the help of Jean Delvare
- * and advice of Greg Kroah-Hartman.
- *
- * Notes about the port:
- * Release 0x00 of the GL518SM chipset doesn't support reading of in0,
- * in1 nor in2. The original driver had an ugly workaround to get them
- * anyway (changing limits and watching alarms trigger and wear off).
- * We did not keep that part of the original driver in the Linux 2.6
- * version, since it was making the driver significantly more complex
- * with no real benefit.
- */
- #include <linux/module.h>
- #include <linux/init.h>
- #include <linux/slab.h>
- #include <linux/jiffies.h>
- #include <linux/i2c.h>
- #include <linux/hwmon.h>
- #include <linux/hwmon-sysfs.h>
- #include <linux/err.h>
- #include <linux/mutex.h>
- #include <linux/sysfs.h>
- /* Addresses to scan */
- static const unsigned short normal_i2c[] = { 0x2c, 0x2d, I2C_CLIENT_END };
- enum chips { gl518sm_r00, gl518sm_r80 };
- /* Many GL518 constants specified below */
- /* The GL518 registers */
- #define GL518_REG_CHIP_ID 0x00
- #define GL518_REG_REVISION 0x01
- #define GL518_REG_VENDOR_ID 0x02
- #define GL518_REG_CONF 0x03
- #define GL518_REG_TEMP_IN 0x04
- #define GL518_REG_TEMP_MAX 0x05
- #define GL518_REG_TEMP_HYST 0x06
- #define GL518_REG_FAN_COUNT 0x07
- #define GL518_REG_FAN_LIMIT 0x08
- #define GL518_REG_VIN1_LIMIT 0x09
- #define GL518_REG_VIN2_LIMIT 0x0a
- #define GL518_REG_VIN3_LIMIT 0x0b
- #define GL518_REG_VDD_LIMIT 0x0c
- #define GL518_REG_VIN3 0x0d
- #define GL518_REG_MISC 0x0f
- #define GL518_REG_ALARM 0x10
- #define GL518_REG_MASK 0x11
- #define GL518_REG_INT 0x12
- #define GL518_REG_VIN2 0x13
- #define GL518_REG_VIN1 0x14
- #define GL518_REG_VDD 0x15
- /*
- * Conversions. Rounding and limit checking is only done on the TO_REG
- * variants. Note that you should be a bit careful with which arguments
- * these macros are called: arguments may be evaluated more than once.
- * Fixing this is just not worth it.
- */
- #define RAW_FROM_REG(val) val
- #define BOOL_FROM_REG(val) ((val)?0:1)
- #define BOOL_TO_REG(val) ((val)?0:1)
- #define TEMP_TO_REG(val) (SENSORS_LIMIT(((((val)<0? \
- (val)-500:(val)+500)/1000)+119),0,255))
- #define TEMP_FROM_REG(val) (((val) - 119) * 1000)
- static inline u8 FAN_TO_REG(long rpm, int div)
- {
- long rpmdiv;
- if (rpm == 0)
- return 0;
- rpmdiv = SENSORS_LIMIT(rpm, 1, 960000) * div;
- return SENSORS_LIMIT((480000 + rpmdiv / 2) / rpmdiv, 1, 255);
- }
- #define FAN_FROM_REG(val,div) ((val)==0 ? 0 : (480000/((val)*(div))))
- #define IN_TO_REG(val) (SENSORS_LIMIT((((val)+9)/19),0,255))
- #define IN_FROM_REG(val) ((val)*19)
- #define VDD_TO_REG(val) (SENSORS_LIMIT((((val)*4+47)/95),0,255))
- #define VDD_FROM_REG(val) (((val)*95+2)/4)
- #define DIV_FROM_REG(val) (1 << (val))
- #define BEEP_MASK_TO_REG(val) ((val) & 0x7f & data->alarm_mask)
- #define BEEP_MASK_FROM_REG(val) ((val) & 0x7f)
- /* Each client has this additional data */
- struct gl518_data {
- struct device *hwmon_dev;
- enum chips type;
- struct mutex update_lock;
- char valid; /* !=0 if following fields are valid */
- unsigned long last_updated; /* In jiffies */
- u8 voltage_in[4]; /* Register values; [0] = VDD */
- u8 voltage_min[4]; /* Register values; [0] = VDD */
- u8 voltage_max[4]; /* Register values; [0] = VDD */
- u8 fan_in[2];
- u8 fan_min[2];
- u8 fan_div[2]; /* Register encoding, shifted right */
- u8 fan_auto1; /* Boolean */
- u8 temp_in; /* Register values */
- u8 temp_max; /* Register values */
- u8 temp_hyst; /* Register values */
- u8 alarms; /* Register value */
- u8 alarm_mask;
- u8 beep_mask; /* Register value */
- u8 beep_enable; /* Boolean */
- };
- static int gl518_probe(struct i2c_client *client,
- const struct i2c_device_id *id);
- static int gl518_detect(struct i2c_client *client, struct i2c_board_info *info);
- static void gl518_init_client(struct i2c_client *client);
- static int gl518_remove(struct i2c_client *client);
- static int gl518_read_value(struct i2c_client *client, u8 reg);
- static int gl518_write_value(struct i2c_client *client, u8 reg, u16 value);
- static struct gl518_data *gl518_update_device(struct device *dev);
- static const struct i2c_device_id gl518_id[] = {
- { "gl518sm", 0 },
- { }
- };
- MODULE_DEVICE_TABLE(i2c, gl518_id);
- /* This is the driver that will be inserted */
- static struct i2c_driver gl518_driver = {
- .class = I2C_CLASS_HWMON,
- .driver = {
- .name = "gl518sm",
- },
- .probe = gl518_probe,
- .remove = gl518_remove,
- .id_table = gl518_id,
- .detect = gl518_detect,
- .address_list = normal_i2c,
- };
- /*
- * Sysfs stuff
- */
- #define show(type, suffix, value) \
- static ssize_t show_##suffix(struct device *dev, struct device_attribute *attr, char *buf) \
- { \
- struct gl518_data *data = gl518_update_device(dev); \
- return sprintf(buf, "%d\n", type##_FROM_REG(data->value)); \
- }
- show(TEMP, temp_input1, temp_in);
- show(TEMP, temp_max1, temp_max);
- show(TEMP, temp_hyst1, temp_hyst);
- show(BOOL, fan_auto1, fan_auto1);
- show(VDD, in_input0, voltage_in[0]);
- show(IN, in_input1, voltage_in[1]);
- show(IN, in_input2, voltage_in[2]);
- show(IN, in_input3, voltage_in[3]);
- show(VDD, in_min0, voltage_min[0]);
- show(IN, in_min1, voltage_min[1]);
- show(IN, in_min2, voltage_min[2]);
- show(IN, in_min3, voltage_min[3]);
- show(VDD, in_max0, voltage_max[0]);
- show(IN, in_max1, voltage_max[1]);
- show(IN, in_max2, voltage_max[2]);
- show(IN, in_max3, voltage_max[3]);
- show(RAW, alarms, alarms);
- show(BOOL, beep_enable, beep_enable);
- show(BEEP_MASK, beep_mask, beep_mask);
- static ssize_t show_fan_input(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- int nr = to_sensor_dev_attr(attr)->index;
- struct gl518_data *data = gl518_update_device(dev);
- return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_in[nr],
- DIV_FROM_REG(data->fan_div[nr])));
- }
- static ssize_t show_fan_min(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- int nr = to_sensor_dev_attr(attr)->index;
- struct gl518_data *data = gl518_update_device(dev);
- return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[nr],
- DIV_FROM_REG(data->fan_div[nr])));
- }
- static ssize_t show_fan_div(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- int nr = to_sensor_dev_attr(attr)->index;
- struct gl518_data *data = gl518_update_device(dev);
- return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr]));
- }
- #define set(type, suffix, value, reg) \
- static ssize_t set_##suffix(struct device *dev, struct device_attribute *attr, const char *buf, \
- size_t count) \
- { \
- struct i2c_client *client = to_i2c_client(dev); \
- struct gl518_data *data = i2c_get_clientdata(client); \
- long val = simple_strtol(buf, NULL, 10); \
- \
- mutex_lock(&data->update_lock); \
- data->value = type##_TO_REG(val); \
- gl518_write_value(client, reg, data->value); \
- mutex_unlock(&data->update_lock); \
- return count; \
- }
- #define set_bits(type, suffix, value, reg, mask, shift) \
- static ssize_t set_##suffix(struct device *dev, struct device_attribute *attr, const char *buf, \
- size_t count) \
- { \
- struct i2c_client *client = to_i2c_client(dev); \
- struct gl518_data *data = i2c_get_clientdata(client); \
- int regvalue; \
- unsigned long val = simple_strtoul(buf, NULL, 10); \
- \
-