Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

hwmon: (ads7828) driver cleanup

As there is no reliable way to identify the chip, it is preferable to
remove the detect callback, to avoid misdetection.

Module parameters are not worth it here, so let's get rid of them and
add an ads7828_platform_data structure instead.

Clean the code by removing unused macros, fixing coding style issues,
avoiding function prototypes and using convenient macros such as
module_i2c_driver().

Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>

authored by

Vivien Didelot and committed by
Guenter Roeck
46d78462 22e32f4f

+139 -151
+25 -10
Documentation/hwmon/ads7828
··· 4 4 Supported chips: 5 5 * Texas Instruments/Burr-Brown ADS7828 6 6 Prefix: 'ads7828' 7 - Addresses scanned: I2C 0x48, 0x49, 0x4a, 0x4b 8 - Datasheet: Publicly available at the Texas Instruments website : 7 + Datasheet: Publicly available at the Texas Instruments website: 9 8 http://focus.ti.com/lit/ds/symlink/ads7828.pdf 10 9 11 10 Authors: 12 11 Steve Hardy <shardy@redhat.com> 12 + Vivien Didelot <vivien.didelot@savoirfairelinux.com> 13 13 14 - Module Parameters 15 - ----------------- 14 + Platform data 15 + ------------- 16 16 17 - * se_input: bool (default Y) 18 - Single ended operation - set to N for differential mode 19 - * int_vref: bool (default Y) 20 - Operate with the internal 2.5V reference - set to N for external reference 21 - * vref_mv: int (default 2500) 22 - If using an external reference, set this to the reference voltage in mV 17 + The ads7828 driver accepts an optional ads7828_platform_data structure (defined 18 + in include/linux/platform_data/ads7828.h). The structure fields are: 19 + 20 + * diff_input: (bool) Differential operation 21 + set to true for differential mode, false for default single ended mode. 22 + 23 + * ext_vref: (bool) External reference 24 + set to true if it operates with an external reference, false for default 25 + internal reference. 26 + 27 + * vref_mv: (unsigned int) Voltage reference 28 + if using an external reference, set this to the reference voltage in mV, 29 + otherwise it will default to the internal value (2500mV). This value will be 30 + bounded with limits accepted by the chip, described in the datasheet. 31 + 32 + If no structure is provided, the configuration defaults to single ended 33 + operation and internal voltage reference (2.5V). 23 34 24 35 Description 25 36 ----------- ··· 45 34 The chip also has the facility to use an external voltage reference. This 46 35 may be required if your hardware supplies the ADS7828 from a 5V supply, see 47 36 the datasheet for more details. 37 + 38 + There is no reliable way to identify this chip, so the driver will not scan 39 + some addresses to try to auto-detect it. That means that you will have to 40 + statically declare the device in the platform support code.
+85 -141
drivers/hwmon/ads7828.c
··· 6 6 * 7 7 * Written by Steve Hardy <shardy@redhat.com> 8 8 * 9 - * Datasheet available at: http://focus.ti.com/lit/ds/symlink/ads7828.pdf 9 + * For further information, see the Documentation/hwmon/ads7828 file. 10 10 * 11 11 * This program is free software; you can redistribute it and/or modify 12 12 * it under the terms of the GNU General Public License as published by ··· 23 23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 24 24 */ 25 25 26 - #include <linux/module.h> 27 - #include <linux/init.h> 28 - #include <linux/slab.h> 29 - #include <linux/jiffies.h> 30 - #include <linux/i2c.h> 26 + #include <linux/err.h> 31 27 #include <linux/hwmon.h> 32 28 #include <linux/hwmon-sysfs.h> 33 - #include <linux/err.h> 29 + #include <linux/i2c.h> 30 + #include <linux/init.h> 31 + #include <linux/jiffies.h> 32 + #include <linux/module.h> 34 33 #include <linux/mutex.h> 34 + #include <linux/platform_data/ads7828.h> 35 + #include <linux/slab.h> 35 36 36 37 /* The ADS7828 registers */ 37 - #define ADS7828_NCH 8 /* 8 channels of 12-bit A-D supported */ 38 - #define ADS7828_CMD_SD_SE 0x80 /* Single ended inputs */ 39 - #define ADS7828_CMD_SD_DIFF 0x00 /* Differential inputs */ 40 - #define ADS7828_CMD_PD0 0x0 /* Power Down between A-D conversions */ 41 - #define ADS7828_CMD_PD1 0x04 /* Internal ref OFF && A-D ON */ 42 - #define ADS7828_CMD_PD2 0x08 /* Internal ref ON && A-D OFF */ 43 - #define ADS7828_CMD_PD3 0x0C /* Internal ref ON && A-D ON */ 44 - #define ADS7828_INT_VREF_MV 2500 /* Internal vref is 2.5V, 2500mV */ 38 + #define ADS7828_NCH 8 /* 8 channels supported */ 39 + #define ADS7828_CMD_SD_SE 0x80 /* Single ended inputs */ 40 + #define ADS7828_CMD_PD1 0x04 /* Internal vref OFF && A/D ON */ 41 + #define ADS7828_CMD_PD3 0x0C /* Internal vref ON && A/D ON */ 42 + #define ADS7828_INT_VREF_MV 2500 /* Internal vref is 2.5V, 2500mV */ 43 + #define ADS7828_EXT_VREF_MV_MIN 50 /* External vref min value 0.05V */ 44 + #define ADS7828_EXT_VREF_MV_MAX 5250 /* External vref max value 5.25V */ 45 45 46 - /* Addresses to scan */ 47 - static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, 48 - I2C_CLIENT_END }; 49 - 50 - /* Module parameters */ 51 - static bool se_input = 1; /* Default is SE, 0 == diff */ 52 - static bool int_vref = 1; /* Default is internal ref ON */ 53 - static int vref_mv = ADS7828_INT_VREF_MV; /* set if vref != 2.5V */ 54 - module_param(se_input, bool, S_IRUGO); 55 - module_param(int_vref, bool, S_IRUGO); 56 - module_param(vref_mv, int, S_IRUGO); 57 - 58 - /* Global Variables */ 59 - static u8 ads7828_cmd_byte; /* cmd byte without channel bits */ 60 - static unsigned int ads7828_lsb_resol; /* resolution of the ADC sample lsb */ 61 - 62 - /* Each client has this additional data */ 46 + /* Client specific data */ 63 47 struct ads7828_data { 64 48 struct device *hwmon_dev; 65 - struct mutex update_lock; /* mutex protect updates */ 66 - char valid; /* !=0 if following fields are valid */ 67 - unsigned long last_updated; /* In jiffies */ 68 - u16 adc_input[ADS7828_NCH]; /* ADS7828_NCH 12-bit samples */ 49 + struct mutex update_lock; /* Mutex protecting updates */ 50 + unsigned long last_updated; /* Last updated time (in jiffies) */ 51 + u16 adc_input[ADS7828_NCH]; /* ADS7828_NCH samples */ 52 + bool valid; /* Validity flag */ 53 + bool diff_input; /* Differential input */ 54 + bool ext_vref; /* External voltage reference */ 55 + unsigned int vref_mv; /* voltage reference value */ 56 + u8 cmd_byte; /* Command byte without channel bits */ 57 + unsigned int lsb_resol; /* Resolution of the ADC sample LSB */ 69 58 }; 70 59 71 - /* Function declaration - necessary due to function dependencies */ 72 - static int ads7828_detect(struct i2c_client *client, 73 - struct i2c_board_info *info); 74 - static int ads7828_probe(struct i2c_client *client, 75 - const struct i2c_device_id *id); 76 - 77 - static inline u8 channel_cmd_byte(int ch) 60 + /* Command byte C2,C1,C0 - see datasheet */ 61 + static inline u8 ads7828_cmd_byte(u8 cmd, int ch) 78 62 { 79 - /* cmd byte C2,C1,C0 - see datasheet */ 80 - u8 cmd = (((ch>>1) | (ch&0x01)<<2)<<4); 81 - cmd |= ads7828_cmd_byte; 82 - return cmd; 63 + return cmd | (((ch >> 1) | (ch & 0x01) << 2) << 4); 83 64 } 84 65 85 66 /* Update data for the device (all 8 channels) */ ··· 77 96 dev_dbg(&client->dev, "Starting ads7828 update\n"); 78 97 79 98 for (ch = 0; ch < ADS7828_NCH; ch++) { 80 - u8 cmd = channel_cmd_byte(ch); 99 + u8 cmd = ads7828_cmd_byte(data->cmd_byte, ch); 81 100 data->adc_input[ch] = 82 101 i2c_smbus_read_word_swapped(client, cmd); 83 102 } 84 103 data->last_updated = jiffies; 85 - data->valid = 1; 104 + data->valid = true; 86 105 } 87 106 88 107 mutex_unlock(&data->update_lock); ··· 91 110 } 92 111 93 112 /* sysfs callback function */ 94 - static ssize_t show_in(struct device *dev, struct device_attribute *da, 95 - char *buf) 113 + static ssize_t ads7828_show_in(struct device *dev, struct device_attribute *da, 114 + char *buf) 96 115 { 97 116 struct sensor_device_attribute *attr = to_sensor_dev_attr(da); 98 117 struct ads7828_data *data = ads7828_update_device(dev); 99 - /* Print value (in mV as specified in sysfs-interface documentation) */ 100 - return sprintf(buf, "%d\n", (data->adc_input[attr->index] * 101 - ads7828_lsb_resol)/1000); 118 + unsigned int value = DIV_ROUND_CLOSEST(data->adc_input[attr->index] * 119 + data->lsb_resol, 1000); 120 + 121 + return sprintf(buf, "%d\n", value); 102 122 } 103 123 104 - #define in_reg(offset)\ 105 - static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, show_in,\ 106 - NULL, offset) 107 - 108 - in_reg(0); 109 - in_reg(1); 110 - in_reg(2); 111 - in_reg(3); 112 - in_reg(4); 113 - in_reg(5); 114 - in_reg(6); 115 - in_reg(7); 124 + static SENSOR_DEVICE_ATTR(in0_input, S_IRUGO, ads7828_show_in, NULL, 0); 125 + static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, ads7828_show_in, NULL, 1); 126 + static SENSOR_DEVICE_ATTR(in2_input, S_IRUGO, ads7828_show_in, NULL, 2); 127 + static SENSOR_DEVICE_ATTR(in3_input, S_IRUGO, ads7828_show_in, NULL, 3); 128 + static SENSOR_DEVICE_ATTR(in4_input, S_IRUGO, ads7828_show_in, NULL, 4); 129 + static SENSOR_DEVICE_ATTR(in5_input, S_IRUGO, ads7828_show_in, NULL, 5); 130 + static SENSOR_DEVICE_ATTR(in6_input, S_IRUGO, ads7828_show_in, NULL, 6); 131 + static SENSOR_DEVICE_ATTR(in7_input, S_IRUGO, ads7828_show_in, NULL, 7); 116 132 117 133 static struct attribute *ads7828_attributes[] = { 118 134 &sensor_dev_attr_in0_input.dev_attr.attr, ··· 130 152 static int ads7828_remove(struct i2c_client *client) 131 153 { 132 154 struct ads7828_data *data = i2c_get_clientdata(client); 155 + 133 156 hwmon_device_unregister(data->hwmon_dev); 134 157 sysfs_remove_group(&client->dev.kobj, &ads7828_group); 135 - return 0; 136 - } 137 - 138 - static const struct i2c_device_id ads7828_id[] = { 139 - { "ads7828", 0 }, 140 - { } 141 - }; 142 - MODULE_DEVICE_TABLE(i2c, ads7828_id); 143 - 144 - /* This is the driver that will be inserted */ 145 - static struct i2c_driver ads7828_driver = { 146 - .class = I2C_CLASS_HWMON, 147 - .driver = { 148 - .name = "ads7828", 149 - }, 150 - .probe = ads7828_probe, 151 - .remove = ads7828_remove, 152 - .id_table = ads7828_id, 153 - .detect = ads7828_detect, 154 - .address_list = normal_i2c, 155 - }; 156 - 157 - /* Return 0 if detection is successful, -ENODEV otherwise */ 158 - static int ads7828_detect(struct i2c_client *client, 159 - struct i2c_board_info *info) 160 - { 161 - struct i2c_adapter *adapter = client->adapter; 162 - int ch; 163 - 164 - /* Check we have a valid client */ 165 - if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_READ_WORD_DATA)) 166 - return -ENODEV; 167 - 168 - /* 169 - * Now, we do the remaining detection. There is no identification 170 - * dedicated register so attempt to sanity check using knowledge of 171 - * the chip 172 - * - Read from the 8 channel addresses 173 - * - Check the top 4 bits of each result are not set (12 data bits) 174 - */ 175 - for (ch = 0; ch < ADS7828_NCH; ch++) { 176 - u16 in_data; 177 - u8 cmd = channel_cmd_byte(ch); 178 - in_data = i2c_smbus_read_word_swapped(client, cmd); 179 - if (in_data & 0xF000) { 180 - pr_debug("%s : Doesn't look like an ads7828 device\n", 181 - __func__); 182 - return -ENODEV; 183 - } 184 - } 185 - 186 - strlcpy(info->type, "ads7828", I2C_NAME_SIZE); 187 158 188 159 return 0; 189 160 } ··· 140 213 static int ads7828_probe(struct i2c_client *client, 141 214 const struct i2c_device_id *id) 142 215 { 216 + struct ads7828_platform_data *pdata = client->dev.platform_data; 143 217 struct ads7828_data *data; 144 218 int err; 145 219 ··· 149 221 if (!data) 150 222 return -ENOMEM; 151 223 224 + if (pdata) { 225 + data->diff_input = pdata->diff_input; 226 + data->ext_vref = pdata->ext_vref; 227 + if (data->ext_vref) 228 + data->vref_mv = pdata->vref_mv; 229 + } 230 + 231 + /* Bound Vref with min/max values if it was provided */ 232 + if (data->vref_mv) 233 + data->vref_mv = SENSORS_LIMIT(data->vref_mv, 234 + ADS7828_EXT_VREF_MV_MIN, 235 + ADS7828_EXT_VREF_MV_MAX); 236 + else 237 + data->vref_mv = ADS7828_INT_VREF_MV; 238 + 239 + data->lsb_resol = DIV_ROUND_CLOSEST(data->vref_mv * 1000, 4096); 240 + 241 + data->cmd_byte = data->ext_vref ? ADS7828_CMD_PD1 : ADS7828_CMD_PD3; 242 + if (!data->diff_input) 243 + data->cmd_byte |= ADS7828_CMD_SD_SE; 244 + 152 245 i2c_set_clientdata(client, data); 153 246 mutex_init(&data->update_lock); 154 247 155 - /* Register sysfs hooks */ 156 248 err = sysfs_create_group(&client->dev.kobj, &ads7828_group); 157 249 if (err) 158 250 return err; ··· 180 232 data->hwmon_dev = hwmon_device_register(&client->dev); 181 233 if (IS_ERR(data->hwmon_dev)) { 182 234 err = PTR_ERR(data->hwmon_dev); 183 - goto exit_remove; 235 + goto error; 184 236 } 185 237 186 238 return 0; 187 239 188 - exit_remove: 240 + error: 189 241 sysfs_remove_group(&client->dev.kobj, &ads7828_group); 190 242 return err; 191 243 } 192 244 193 - static int __init sensors_ads7828_init(void) 194 - { 195 - /* Initialize the command byte according to module parameters */ 196 - ads7828_cmd_byte = se_input ? 197 - ADS7828_CMD_SD_SE : ADS7828_CMD_SD_DIFF; 198 - ads7828_cmd_byte |= int_vref ? 199 - ADS7828_CMD_PD3 : ADS7828_CMD_PD1; 245 + static const struct i2c_device_id ads7828_device_ids[] = { 246 + { "ads7828", 0 }, 247 + { } 248 + }; 249 + MODULE_DEVICE_TABLE(i2c, ads7828_device_ids); 200 250 201 - /* Calculate the LSB resolution */ 202 - ads7828_lsb_resol = (vref_mv*1000)/4096; 251 + static struct i2c_driver ads7828_driver = { 252 + .driver = { 253 + .name = "ads7828", 254 + }, 203 255 204 - return i2c_add_driver(&ads7828_driver); 205 - } 256 + .id_table = ads7828_device_ids, 257 + .probe = ads7828_probe, 258 + .remove = ads7828_remove, 259 + }; 206 260 207 - static void __exit sensors_ads7828_exit(void) 208 - { 209 - i2c_del_driver(&ads7828_driver); 210 - } 261 + module_i2c_driver(ads7828_driver); 211 262 212 - MODULE_AUTHOR("Steve Hardy <shardy@redhat.com>"); 213 - MODULE_DESCRIPTION("ADS7828 driver"); 214 263 MODULE_LICENSE("GPL"); 215 - 216 - module_init(sensors_ads7828_init); 217 - module_exit(sensors_ads7828_exit); 264 + MODULE_AUTHOR("Steve Hardy <shardy@redhat.com>"); 265 + MODULE_DESCRIPTION("Driver for TI ADS7828 A/D converter");
+29
include/linux/platform_data/ads7828.h
··· 1 + /* 2 + * TI ADS7828 A/D Converter platform data definition 3 + * 4 + * Copyright (c) 2012 Savoir-faire Linux Inc. 5 + * Vivien Didelot <vivien.didelot@savoirfairelinux.com> 6 + * 7 + * For further information, see the Documentation/hwmon/ads7828 file. 8 + * 9 + * This program is free software; you can redistribute it and/or modify 10 + * it under the terms of the GNU General Public License version 2 as 11 + * published by the Free Software Foundation. 12 + */ 13 + 14 + #ifndef _PDATA_ADS7828_H 15 + #define _PDATA_ADS7828_H 16 + 17 + /** 18 + * struct ads7828_platform_data - optional ADS7828 connectivity info 19 + * @diff_input: Differential input mode. 20 + * @ext_vref: Use an external voltage reference. 21 + * @vref_mv: Voltage reference value, if external. 22 + */ 23 + struct ads7828_platform_data { 24 + bool diff_input; 25 + bool ext_vref; 26 + unsigned int vref_mv; 27 + }; 28 + 29 + #endif /* _PDATA_ADS7828_H */