WIP FPC-III support
[linux/fpc-iii.git] / drivers / hwmon / pmbus / adm1275.c
blob38a6515b07634ffdb01622f13fcc9c22f5ae72cf
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Hardware monitoring driver for Analog Devices ADM1275 Hot-Swap Controller
4 * and Digital Power Monitor
6 * Copyright (c) 2011 Ericsson AB.
7 * Copyright (c) 2018 Guenter Roeck
8 */
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/init.h>
13 #include <linux/err.h>
14 #include <linux/slab.h>
15 #include <linux/i2c.h>
16 #include <linux/bitops.h>
17 #include <linux/bitfield.h>
18 #include <linux/log2.h>
19 #include "pmbus.h"
21 enum chips { adm1075, adm1272, adm1275, adm1276, adm1278, adm1293, adm1294 };
23 #define ADM1275_MFR_STATUS_IOUT_WARN2 BIT(0)
24 #define ADM1293_MFR_STATUS_VAUX_UV_WARN BIT(5)
25 #define ADM1293_MFR_STATUS_VAUX_OV_WARN BIT(6)
27 #define ADM1275_PEAK_IOUT 0xd0
28 #define ADM1275_PEAK_VIN 0xd1
29 #define ADM1275_PEAK_VOUT 0xd2
30 #define ADM1275_PMON_CONFIG 0xd4
32 #define ADM1275_VIN_VOUT_SELECT BIT(6)
33 #define ADM1275_VRANGE BIT(5)
34 #define ADM1075_IRANGE_50 BIT(4)
35 #define ADM1075_IRANGE_25 BIT(3)
36 #define ADM1075_IRANGE_MASK (BIT(3) | BIT(4))
38 #define ADM1272_IRANGE BIT(0)
40 #define ADM1278_TEMP1_EN BIT(3)
41 #define ADM1278_VIN_EN BIT(2)
42 #define ADM1278_VOUT_EN BIT(1)
44 #define ADM1293_IRANGE_25 0
45 #define ADM1293_IRANGE_50 BIT(6)
46 #define ADM1293_IRANGE_100 BIT(7)
47 #define ADM1293_IRANGE_200 (BIT(6) | BIT(7))
48 #define ADM1293_IRANGE_MASK (BIT(6) | BIT(7))
50 #define ADM1293_VIN_SEL_012 BIT(2)
51 #define ADM1293_VIN_SEL_074 BIT(3)
52 #define ADM1293_VIN_SEL_210 (BIT(2) | BIT(3))
53 #define ADM1293_VIN_SEL_MASK (BIT(2) | BIT(3))
55 #define ADM1293_VAUX_EN BIT(1)
57 #define ADM1278_PEAK_TEMP 0xd7
58 #define ADM1275_IOUT_WARN2_LIMIT 0xd7
59 #define ADM1275_DEVICE_CONFIG 0xd8
61 #define ADM1275_IOUT_WARN2_SELECT BIT(4)
63 #define ADM1276_PEAK_PIN 0xda
64 #define ADM1075_READ_VAUX 0xdd
65 #define ADM1075_VAUX_OV_WARN_LIMIT 0xde
66 #define ADM1075_VAUX_UV_WARN_LIMIT 0xdf
67 #define ADM1293_IOUT_MIN 0xe3
68 #define ADM1293_PIN_MIN 0xe4
69 #define ADM1075_VAUX_STATUS 0xf6
71 #define ADM1075_VAUX_OV_WARN BIT(7)
72 #define ADM1075_VAUX_UV_WARN BIT(6)
74 #define ADM1275_VI_AVG_SHIFT 0
75 #define ADM1275_VI_AVG_MASK GENMASK(ADM1275_VI_AVG_SHIFT + 2, \
76 ADM1275_VI_AVG_SHIFT)
77 #define ADM1275_SAMPLES_AVG_MAX 128
79 #define ADM1278_PWR_AVG_SHIFT 11
80 #define ADM1278_PWR_AVG_MASK GENMASK(ADM1278_PWR_AVG_SHIFT + 2, \
81 ADM1278_PWR_AVG_SHIFT)
82 #define ADM1278_VI_AVG_SHIFT 8
83 #define ADM1278_VI_AVG_MASK GENMASK(ADM1278_VI_AVG_SHIFT + 2, \
84 ADM1278_VI_AVG_SHIFT)
86 struct adm1275_data {
87 int id;
88 bool have_oc_fault;
89 bool have_uc_fault;
90 bool have_vout;
91 bool have_vaux_status;
92 bool have_mfr_vaux_status;
93 bool have_iout_min;
94 bool have_pin_min;
95 bool have_pin_max;
96 bool have_temp_max;
97 bool have_power_sampling;
98 struct pmbus_driver_info info;
101 #define to_adm1275_data(x) container_of(x, struct adm1275_data, info)
103 struct coefficients {
104 s16 m;
105 s16 b;
106 s16 R;
109 static const struct coefficients adm1075_coefficients[] = {
110 [0] = { 27169, 0, -1 }, /* voltage */
111 [1] = { 806, 20475, -1 }, /* current, irange25 */
112 [2] = { 404, 20475, -1 }, /* current, irange50 */
113 [3] = { 8549, 0, -1 }, /* power, irange25 */
114 [4] = { 4279, 0, -1 }, /* power, irange50 */
117 static const struct coefficients adm1272_coefficients[] = {
118 [0] = { 6770, 0, -2 }, /* voltage, vrange 60V */
119 [1] = { 4062, 0, -2 }, /* voltage, vrange 100V */
120 [2] = { 1326, 20480, -1 }, /* current, vsense range 15mV */
121 [3] = { 663, 20480, -1 }, /* current, vsense range 30mV */
122 [4] = { 3512, 0, -2 }, /* power, vrange 60V, irange 15mV */
123 [5] = { 21071, 0, -3 }, /* power, vrange 100V, irange 15mV */
124 [6] = { 17561, 0, -3 }, /* power, vrange 60V, irange 30mV */
125 [7] = { 10535, 0, -3 }, /* power, vrange 100V, irange 30mV */
126 [8] = { 42, 31871, -1 }, /* temperature */
130 static const struct coefficients adm1275_coefficients[] = {
131 [0] = { 19199, 0, -2 }, /* voltage, vrange set */
132 [1] = { 6720, 0, -1 }, /* voltage, vrange not set */
133 [2] = { 807, 20475, -1 }, /* current */
136 static const struct coefficients adm1276_coefficients[] = {
137 [0] = { 19199, 0, -2 }, /* voltage, vrange set */
138 [1] = { 6720, 0, -1 }, /* voltage, vrange not set */
139 [2] = { 807, 20475, -1 }, /* current */
140 [3] = { 6043, 0, -2 }, /* power, vrange set */
141 [4] = { 2115, 0, -1 }, /* power, vrange not set */
144 static const struct coefficients adm1278_coefficients[] = {
145 [0] = { 19599, 0, -2 }, /* voltage */
146 [1] = { 800, 20475, -1 }, /* current */
147 [2] = { 6123, 0, -2 }, /* power */
148 [3] = { 42, 31880, -1 }, /* temperature */
151 static const struct coefficients adm1293_coefficients[] = {
152 [0] = { 3333, -1, 0 }, /* voltage, vrange 1.2V */
153 [1] = { 5552, -5, -1 }, /* voltage, vrange 7.4V */
154 [2] = { 19604, -50, -2 }, /* voltage, vrange 21V */
155 [3] = { 8000, -100, -2 }, /* current, irange25 */
156 [4] = { 4000, -100, -2 }, /* current, irange50 */
157 [5] = { 20000, -1000, -3 }, /* current, irange100 */
158 [6] = { 10000, -1000, -3 }, /* current, irange200 */
159 [7] = { 10417, 0, -1 }, /* power, 1.2V, irange25 */
160 [8] = { 5208, 0, -1 }, /* power, 1.2V, irange50 */
161 [9] = { 26042, 0, -2 }, /* power, 1.2V, irange100 */
162 [10] = { 13021, 0, -2 }, /* power, 1.2V, irange200 */
163 [11] = { 17351, 0, -2 }, /* power, 7.4V, irange25 */
164 [12] = { 8676, 0, -2 }, /* power, 7.4V, irange50 */
165 [13] = { 4338, 0, -2 }, /* power, 7.4V, irange100 */
166 [14] = { 21689, 0, -3 }, /* power, 7.4V, irange200 */
167 [15] = { 6126, 0, -2 }, /* power, 21V, irange25 */
168 [16] = { 30631, 0, -3 }, /* power, 21V, irange50 */
169 [17] = { 15316, 0, -3 }, /* power, 21V, irange100 */
170 [18] = { 7658, 0, -3 }, /* power, 21V, irange200 */
173 static int adm1275_read_pmon_config(const struct adm1275_data *data,
174 struct i2c_client *client, bool is_power)
176 int shift, ret;
177 u16 mask;
180 * The PMON configuration register is a 16-bit register only on chips
181 * supporting power average sampling. On other chips it is an 8-bit
182 * register.
184 if (data->have_power_sampling) {
185 ret = i2c_smbus_read_word_data(client, ADM1275_PMON_CONFIG);
186 mask = is_power ? ADM1278_PWR_AVG_MASK : ADM1278_VI_AVG_MASK;
187 shift = is_power ? ADM1278_PWR_AVG_SHIFT : ADM1278_VI_AVG_SHIFT;
188 } else {
189 ret = i2c_smbus_read_byte_data(client, ADM1275_PMON_CONFIG);
190 mask = ADM1275_VI_AVG_MASK;
191 shift = ADM1275_VI_AVG_SHIFT;
193 if (ret < 0)
194 return ret;
196 return (ret & mask) >> shift;
199 static int adm1275_write_pmon_config(const struct adm1275_data *data,
200 struct i2c_client *client,
201 bool is_power, u16 word)
203 int shift, ret;
204 u16 mask;
206 if (data->have_power_sampling) {
207 ret = i2c_smbus_read_word_data(client, ADM1275_PMON_CONFIG);
208 mask = is_power ? ADM1278_PWR_AVG_MASK : ADM1278_VI_AVG_MASK;
209 shift = is_power ? ADM1278_PWR_AVG_SHIFT : ADM1278_VI_AVG_SHIFT;
210 } else {
211 ret = i2c_smbus_read_byte_data(client, ADM1275_PMON_CONFIG);
212 mask = ADM1275_VI_AVG_MASK;
213 shift = ADM1275_VI_AVG_SHIFT;
215 if (ret < 0)
216 return ret;
218 word = (ret & ~mask) | ((word << shift) & mask);
219 if (data->have_power_sampling)
220 ret = i2c_smbus_write_word_data(client, ADM1275_PMON_CONFIG,
221 word);
222 else
223 ret = i2c_smbus_write_byte_data(client, ADM1275_PMON_CONFIG,
224 word);
226 return ret;
229 static int adm1275_read_word_data(struct i2c_client *client, int page,
230 int phase, int reg)
232 const struct pmbus_driver_info *info = pmbus_get_driver_info(client);
233 const struct adm1275_data *data = to_adm1275_data(info);
234 int ret = 0;
236 if (page > 0)
237 return -ENXIO;
239 switch (reg) {
240 case PMBUS_IOUT_UC_FAULT_LIMIT:
241 if (!data->have_uc_fault)
242 return -ENXIO;
243 ret = pmbus_read_word_data(client, 0, 0xff,
244 ADM1275_IOUT_WARN2_LIMIT);
245 break;
246 case PMBUS_IOUT_OC_FAULT_LIMIT:
247 if (!data->have_oc_fault)
248 return -ENXIO;
249 ret = pmbus_read_word_data(client, 0, 0xff,
250 ADM1275_IOUT_WARN2_LIMIT);
251 break;
252 case PMBUS_VOUT_OV_WARN_LIMIT:
253 if (data->have_vout)
254 return -ENODATA;
255 ret = pmbus_read_word_data(client, 0, 0xff,
256 ADM1075_VAUX_OV_WARN_LIMIT);
257 break;
258 case PMBUS_VOUT_UV_WARN_LIMIT:
259 if (data->have_vout)
260 return -ENODATA;
261 ret = pmbus_read_word_data(client, 0, 0xff,
262 ADM1075_VAUX_UV_WARN_LIMIT);
263 break;
264 case PMBUS_READ_VOUT:
265 if (data->have_vout)
266 return -ENODATA;
267 ret = pmbus_read_word_data(client, 0, 0xff,
268 ADM1075_READ_VAUX);
269 break;
270 case PMBUS_VIRT_READ_IOUT_MIN:
271 if (!data->have_iout_min)
272 return -ENXIO;
273 ret = pmbus_read_word_data(client, 0, 0xff,
274 ADM1293_IOUT_MIN);
275 break;
276 case PMBUS_VIRT_READ_IOUT_MAX:
277 ret = pmbus_read_word_data(client, 0, 0xff,
278 ADM1275_PEAK_IOUT);
279 break;
280 case PMBUS_VIRT_READ_VOUT_MAX:
281 ret = pmbus_read_word_data(client, 0, 0xff,
282 ADM1275_PEAK_VOUT);
283 break;
284 case PMBUS_VIRT_READ_VIN_MAX:
285 ret = pmbus_read_word_data(client, 0, 0xff,
286 ADM1275_PEAK_VIN);
287 break;
288 case PMBUS_VIRT_READ_PIN_MIN:
289 if (!data->have_pin_min)
290 return -ENXIO;
291 ret = pmbus_read_word_data(client, 0, 0xff,
292 ADM1293_PIN_MIN);
293 break;
294 case PMBUS_VIRT_READ_PIN_MAX:
295 if (!data->have_pin_max)
296 return -ENXIO;
297 ret = pmbus_read_word_data(client, 0, 0xff,
298 ADM1276_PEAK_PIN);
299 break;
300 case PMBUS_VIRT_READ_TEMP_MAX:
301 if (!data->have_temp_max)
302 return -ENXIO;
303 ret = pmbus_read_word_data(client, 0, 0xff,
304 ADM1278_PEAK_TEMP);
305 break;
306 case PMBUS_VIRT_RESET_IOUT_HISTORY:
307 case PMBUS_VIRT_RESET_VOUT_HISTORY:
308 case PMBUS_VIRT_RESET_VIN_HISTORY:
309 break;
310 case PMBUS_VIRT_RESET_PIN_HISTORY:
311 if (!data->have_pin_max)
312 return -ENXIO;
313 break;
314 case PMBUS_VIRT_RESET_TEMP_HISTORY:
315 if (!data->have_temp_max)
316 return -ENXIO;
317 break;
318 case PMBUS_VIRT_POWER_SAMPLES:
319 if (!data->have_power_sampling)
320 return -ENXIO;
321 ret = adm1275_read_pmon_config(data, client, true);
322 if (ret < 0)
323 break;
324 ret = BIT(ret);
325 break;
326 case PMBUS_VIRT_IN_SAMPLES:
327 case PMBUS_VIRT_CURR_SAMPLES:
328 ret = adm1275_read_pmon_config(data, client, false);
329 if (ret < 0)
330 break;
331 ret = BIT(ret);
332 break;
333 default:
334 ret = -ENODATA;
335 break;
337 return ret;
340 static int adm1275_write_word_data(struct i2c_client *client, int page, int reg,
341 u16 word)
343 const struct pmbus_driver_info *info = pmbus_get_driver_info(client);
344 const struct adm1275_data *data = to_adm1275_data(info);
345 int ret;
347 if (page > 0)
348 return -ENXIO;
350 switch (reg) {
351 case PMBUS_IOUT_UC_FAULT_LIMIT:
352 case PMBUS_IOUT_OC_FAULT_LIMIT:
353 ret = pmbus_write_word_data(client, 0, ADM1275_IOUT_WARN2_LIMIT,
354 word);
355 break;
356 case PMBUS_VIRT_RESET_IOUT_HISTORY:
357 ret = pmbus_write_word_data(client, 0, ADM1275_PEAK_IOUT, 0);
358 if (!ret && data->have_iout_min)
359 ret = pmbus_write_word_data(client, 0,
360 ADM1293_IOUT_MIN, 0);
361 break;
362 case PMBUS_VIRT_RESET_VOUT_HISTORY:
363 ret = pmbus_write_word_data(client, 0, ADM1275_PEAK_VOUT, 0);
364 break;
365 case PMBUS_VIRT_RESET_VIN_HISTORY:
366 ret = pmbus_write_word_data(client, 0, ADM1275_PEAK_VIN, 0);
367 break;
368 case PMBUS_VIRT_RESET_PIN_HISTORY:
369 ret = pmbus_write_word_data(client, 0, ADM1276_PEAK_PIN, 0);
370 if (!ret && data->have_pin_min)
371 ret = pmbus_write_word_data(client, 0,
372 ADM1293_PIN_MIN, 0);
373 break;
374 case PMBUS_VIRT_RESET_TEMP_HISTORY:
375 ret = pmbus_write_word_data(client, 0, ADM1278_PEAK_TEMP, 0);
376 break;
377 case PMBUS_VIRT_POWER_SAMPLES:
378 if (!data->have_power_sampling)
379 return -ENXIO;
380 word = clamp_val(word, 1, ADM1275_SAMPLES_AVG_MAX);
381 ret = adm1275_write_pmon_config(data, client, true,
382 ilog2(word));
383 break;
384 case PMBUS_VIRT_IN_SAMPLES:
385 case PMBUS_VIRT_CURR_SAMPLES:
386 word = clamp_val(word, 1, ADM1275_SAMPLES_AVG_MAX);
387 ret = adm1275_write_pmon_config(data, client, false,
388 ilog2(word));
389 break;
390 default:
391 ret = -ENODATA;
392 break;
394 return ret;
397 static int adm1275_read_byte_data(struct i2c_client *client, int page, int reg)
399 const struct pmbus_driver_info *info = pmbus_get_driver_info(client);
400 const struct adm1275_data *data = to_adm1275_data(info);
401 int mfr_status, ret;
403 if (page > 0)
404 return -ENXIO;
406 switch (reg) {
407 case PMBUS_STATUS_IOUT:
408 ret = pmbus_read_byte_data(client, page, PMBUS_STATUS_IOUT);
409 if (ret < 0)
410 break;
411 if (!data->have_oc_fault && !data->have_uc_fault)
412 break;
413 mfr_status = pmbus_read_byte_data(client, page,
414 PMBUS_STATUS_MFR_SPECIFIC);
415 if (mfr_status < 0)
416 return mfr_status;
417 if (mfr_status & ADM1275_MFR_STATUS_IOUT_WARN2) {
418 ret |= data->have_oc_fault ?
419 PB_IOUT_OC_FAULT : PB_IOUT_UC_FAULT;
421 break;
422 case PMBUS_STATUS_VOUT:
423 if (data->have_vout)
424 return -ENODATA;
425 ret = 0;
426 if (data->have_vaux_status) {
427 mfr_status = pmbus_read_byte_data(client, 0,
428 ADM1075_VAUX_STATUS);
429 if (mfr_status < 0)
430 return mfr_status;
431 if (mfr_status & ADM1075_VAUX_OV_WARN)
432 ret |= PB_VOLTAGE_OV_WARNING;
433 if (mfr_status & ADM1075_VAUX_UV_WARN)
434 ret |= PB_VOLTAGE_UV_WARNING;
435 } else if (data->have_mfr_vaux_status) {
436 mfr_status = pmbus_read_byte_data(client, page,
437 PMBUS_STATUS_MFR_SPECIFIC);
438 if (mfr_status < 0)
439 return mfr_status;
440 if (mfr_status & ADM1293_MFR_STATUS_VAUX_OV_WARN)
441 ret |= PB_VOLTAGE_OV_WARNING;
442 if (mfr_status & ADM1293_MFR_STATUS_VAUX_UV_WARN)
443 ret |= PB_VOLTAGE_UV_WARNING;
445 break;
446 default:
447 ret = -ENODATA;
448 break;
450 return ret;
453 static const struct i2c_device_id adm1275_id[] = {
454 { "adm1075", adm1075 },
455 { "adm1272", adm1272 },
456 { "adm1275", adm1275 },
457 { "adm1276", adm1276 },
458 { "adm1278", adm1278 },
459 { "adm1293", adm1293 },
460 { "adm1294", adm1294 },
463 MODULE_DEVICE_TABLE(i2c, adm1275_id);
465 static int adm1275_probe(struct i2c_client *client)
467 s32 (*config_read_fn)(const struct i2c_client *client, u8 reg);
468 u8 block_buffer[I2C_SMBUS_BLOCK_MAX + 1];
469 int config, device_config;
470 int ret;
471 struct pmbus_driver_info *info;
472 struct adm1275_data *data;
473 const struct i2c_device_id *mid;
474 const struct coefficients *coefficients;
475 int vindex = -1, voindex = -1, cindex = -1, pindex = -1;
476 int tindex = -1;
477 u32 shunt;
479 if (!i2c_check_functionality(client->adapter,
480 I2C_FUNC_SMBUS_READ_BYTE_DATA
481 | I2C_FUNC_SMBUS_BLOCK_DATA))
482 return -ENODEV;
484 ret = i2c_smbus_read_block_data(client, PMBUS_MFR_ID, block_buffer);
485 if (ret < 0) {
486 dev_err(&client->dev, "Failed to read Manufacturer ID\n");
487 return ret;
489 if (ret != 3 || strncmp(block_buffer, "ADI", 3)) {
490 dev_err(&client->dev, "Unsupported Manufacturer ID\n");
491 return -ENODEV;
494 ret = i2c_smbus_read_block_data(client, PMBUS_MFR_MODEL, block_buffer);
495 if (ret < 0) {
496 dev_err(&client->dev, "Failed to read Manufacturer Model\n");
497 return ret;
499 for (mid = adm1275_id; mid->name[0]; mid++) {
500 if (!strncasecmp(mid->name, block_buffer, strlen(mid->name)))
501 break;
503 if (!mid->name[0]) {
504 dev_err(&client->dev, "Unsupported device\n");
505 return -ENODEV;
508 if (strcmp(client->name, mid->name) != 0)
509 dev_notice(&client->dev,
510 "Device mismatch: Configured %s, detected %s\n",
511 client->name, mid->name);
513 if (mid->driver_data == adm1272 || mid->driver_data == adm1278 ||
514 mid->driver_data == adm1293 || mid->driver_data == adm1294)
515 config_read_fn = i2c_smbus_read_word_data;
516 else
517 config_read_fn = i2c_smbus_read_byte_data;
518 config = config_read_fn(client, ADM1275_PMON_CONFIG);
519 if (config < 0)
520 return config;
522 device_config = config_read_fn(client, ADM1275_DEVICE_CONFIG);
523 if (device_config < 0)
524 return device_config;
526 data = devm_kzalloc(&client->dev, sizeof(struct adm1275_data),
527 GFP_KERNEL);
528 if (!data)
529 return -ENOMEM;
531 if (of_property_read_u32(client->dev.of_node,
532 "shunt-resistor-micro-ohms", &shunt))
533 shunt = 1000; /* 1 mOhm if not set via DT */
535 if (shunt == 0)
536 return -EINVAL;
538 data->id = mid->driver_data;
540 info = &data->info;
542 info->pages = 1;
543 info->format[PSC_VOLTAGE_IN] = direct;
544 info->format[PSC_VOLTAGE_OUT] = direct;
545 info->format[PSC_CURRENT_OUT] = direct;
546 info->format[PSC_POWER] = direct;
547 info->format[PSC_TEMPERATURE] = direct;
548 info->func[0] = PMBUS_HAVE_IOUT | PMBUS_HAVE_STATUS_IOUT |
549 PMBUS_HAVE_SAMPLES;
551 info->read_word_data = adm1275_read_word_data;
552 info->read_byte_data = adm1275_read_byte_data;
553 info->write_word_data = adm1275_write_word_data;
555 switch (data->id) {
556 case adm1075:
557 if (device_config & ADM1275_IOUT_WARN2_SELECT)
558 data->have_oc_fault = true;
559 else
560 data->have_uc_fault = true;
561 data->have_pin_max = true;
562 data->have_vaux_status = true;
564 coefficients = adm1075_coefficients;
565 vindex = 0;
566 switch (config & ADM1075_IRANGE_MASK) {
567 case ADM1075_IRANGE_25:
568 cindex = 1;
569 pindex = 3;
570 break;
571 case ADM1075_IRANGE_50:
572 cindex = 2;
573 pindex = 4;
574 break;
575 default:
576 dev_err(&client->dev, "Invalid input current range");
577 break;
580 info->func[0] |= PMBUS_HAVE_VIN | PMBUS_HAVE_PIN
581 | PMBUS_HAVE_STATUS_INPUT;
582 if (config & ADM1275_VIN_VOUT_SELECT)
583 info->func[0] |=
584 PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT;
585 break;
586 case adm1272:
587 data->have_vout = true;
588 data->have_pin_max = true;
589 data->have_temp_max = true;
590 data->have_power_sampling = true;
592 coefficients = adm1272_coefficients;
593 vindex = (config & ADM1275_VRANGE) ? 1 : 0;
594 cindex = (config & ADM1272_IRANGE) ? 3 : 2;
595 /* pindex depends on the combination of the above */
596 switch (config & (ADM1275_VRANGE | ADM1272_IRANGE)) {
597 case 0:
598 default:
599 pindex = 4;
600 break;
601 case ADM1275_VRANGE:
602 pindex = 5;
603 break;
604 case ADM1272_IRANGE:
605 pindex = 6;
606 break;
607 case ADM1275_VRANGE | ADM1272_IRANGE:
608 pindex = 7;
609 break;
611 tindex = 8;
613 info->func[0] |= PMBUS_HAVE_PIN | PMBUS_HAVE_STATUS_INPUT |
614 PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT;
616 /* Enable VOUT if not enabled (it is disabled by default) */
617 if (!(config & ADM1278_VOUT_EN)) {
618 config |= ADM1278_VOUT_EN;
619 ret = i2c_smbus_write_byte_data(client,
620 ADM1275_PMON_CONFIG,
621 config);
622 if (ret < 0) {
623 dev_err(&client->dev,
624 "Failed to enable VOUT monitoring\n");
625 return -ENODEV;
629 if (config & ADM1278_TEMP1_EN)
630 info->func[0] |=
631 PMBUS_HAVE_TEMP | PMBUS_HAVE_STATUS_TEMP;
632 if (config & ADM1278_VIN_EN)
633 info->func[0] |= PMBUS_HAVE_VIN;
634 break;
635 case adm1275:
636 if (device_config & ADM1275_IOUT_WARN2_SELECT)
637 data->have_oc_fault = true;
638 else
639 data->have_uc_fault = true;
640 data->have_vout = true;
642 coefficients = adm1275_coefficients;
643 vindex = (config & ADM1275_VRANGE) ? 0 : 1;
644 cindex = 2;
646 if (config & ADM1275_VIN_VOUT_SELECT)
647 info->func[0] |=
648 PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT;
649 else
650 info->func[0] |=
651 PMBUS_HAVE_VIN | PMBUS_HAVE_STATUS_INPUT;
652 break;
653 case adm1276:
654 if (device_config & ADM1275_IOUT_WARN2_SELECT)
655 data->have_oc_fault = true;
656 else
657 data->have_uc_fault = true;
658 data->have_vout = true;
659 data->have_pin_max = true;
661 coefficients = adm1276_coefficients;
662 vindex = (config & ADM1275_VRANGE) ? 0 : 1;
663 cindex = 2;
664 pindex = (config & ADM1275_VRANGE) ? 3 : 4;
666 info->func[0] |= PMBUS_HAVE_VIN | PMBUS_HAVE_PIN
667 | PMBUS_HAVE_STATUS_INPUT;
668 if (config & ADM1275_VIN_VOUT_SELECT)
669 info->func[0] |=
670 PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT;
671 break;
672 case adm1278:
673 data->have_vout = true;
674 data->have_pin_max = true;
675 data->have_temp_max = true;
676 data->have_power_sampling = true;
678 coefficients = adm1278_coefficients;
679 vindex = 0;
680 cindex = 1;
681 pindex = 2;
682 tindex = 3;
684 info->func[0] |= PMBUS_HAVE_PIN | PMBUS_HAVE_STATUS_INPUT |
685 PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT |
686 PMBUS_HAVE_TEMP | PMBUS_HAVE_STATUS_TEMP;
688 /* Enable VOUT & TEMP1 if not enabled (disabled by default) */
689 if ((config & (ADM1278_VOUT_EN | ADM1278_TEMP1_EN)) !=
690 (ADM1278_VOUT_EN | ADM1278_TEMP1_EN)) {
691 config |= ADM1278_VOUT_EN | ADM1278_TEMP1_EN;
692 ret = i2c_smbus_write_byte_data(client,
693 ADM1275_PMON_CONFIG,
694 config);
695 if (ret < 0) {
696 dev_err(&client->dev,
697 "Failed to enable VOUT monitoring\n");
698 return -ENODEV;
702 if (config & ADM1278_VIN_EN)
703 info->func[0] |= PMBUS_HAVE_VIN;
704 break;
705 case adm1293:
706 case adm1294:
707 data->have_iout_min = true;
708 data->have_pin_min = true;
709 data->have_pin_max = true;
710 data->have_mfr_vaux_status = true;
711 data->have_power_sampling = true;
713 coefficients = adm1293_coefficients;
715 voindex = 0;
716 switch (config & ADM1293_VIN_SEL_MASK) {
717 case ADM1293_VIN_SEL_012: /* 1.2V */
718 vindex = 0;
719 break;
720 case ADM1293_VIN_SEL_074: /* 7.4V */
721 vindex = 1;
722 break;
723 case ADM1293_VIN_SEL_210: /* 21V */
724 vindex = 2;
725 break;
726 default: /* disabled */
727 break;
730 switch (config & ADM1293_IRANGE_MASK) {
731 case ADM1293_IRANGE_25:
732 cindex = 3;
733 break;
734 case ADM1293_IRANGE_50:
735 cindex = 4;
736 break;
737 case ADM1293_IRANGE_100:
738 cindex = 5;
739 break;
740 case ADM1293_IRANGE_200:
741 cindex = 6;
742 break;
745 if (vindex >= 0)
746 pindex = 7 + vindex * 4 + (cindex - 3);
748 if (config & ADM1293_VAUX_EN)
749 info->func[0] |=
750 PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT;
752 info->func[0] |= PMBUS_HAVE_PIN |
753 PMBUS_HAVE_VIN | PMBUS_HAVE_STATUS_INPUT;
755 break;
756 default:
757 dev_err(&client->dev, "Unsupported device\n");
758 return -ENODEV;
761 if (voindex < 0)
762 voindex = vindex;
763 if (vindex >= 0) {
764 info->m[PSC_VOLTAGE_IN] = coefficients[vindex].m;
765 info->b[PSC_VOLTAGE_IN] = coefficients[vindex].b;
766 info->R[PSC_VOLTAGE_IN] = coefficients[vindex].R;
768 if (voindex >= 0) {
769 info->m[PSC_VOLTAGE_OUT] = coefficients[voindex].m;
770 info->b[PSC_VOLTAGE_OUT] = coefficients[voindex].b;
771 info->R[PSC_VOLTAGE_OUT] = coefficients[voindex].R;
773 if (cindex >= 0) {
774 /* Scale current with sense resistor value */
775 info->m[PSC_CURRENT_OUT] =
776 coefficients[cindex].m * shunt / 1000;
777 info->b[PSC_CURRENT_OUT] = coefficients[cindex].b;
778 info->R[PSC_CURRENT_OUT] = coefficients[cindex].R;
780 if (pindex >= 0) {
781 info->m[PSC_POWER] =
782 coefficients[pindex].m * shunt / 1000;
783 info->b[PSC_POWER] = coefficients[pindex].b;
784 info->R[PSC_POWER] = coefficients[pindex].R;
786 if (tindex >= 0) {
787 info->m[PSC_TEMPERATURE] = coefficients[tindex].m;
788 info->b[PSC_TEMPERATURE] = coefficients[tindex].b;
789 info->R[PSC_TEMPERATURE] = coefficients[tindex].R;
792 return pmbus_do_probe(client, info);
795 static struct i2c_driver adm1275_driver = {
796 .driver = {
797 .name = "adm1275",
799 .probe_new = adm1275_probe,
800 .id_table = adm1275_id,
803 module_i2c_driver(adm1275_driver);
805 MODULE_AUTHOR("Guenter Roeck");
806 MODULE_DESCRIPTION("PMBus driver for Analog Devices ADM1275 and compatibles");
807 MODULE_LICENSE("GPL");