2 * Hardware monitoring driver for Analog Devices ADM1275 Hot-Swap Controller
3 * and Digital Power Monitor
5 * Copyright (c) 2011 Ericsson AB.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/err.h>
22 #include <linux/slab.h>
23 #include <linux/i2c.h>
24 #include <linux/bitops.h>
27 enum chips
{ adm1075
, adm1275
, adm1276
, adm1278
, adm1293
, adm1294
};
29 #define ADM1275_MFR_STATUS_IOUT_WARN2 BIT(0)
30 #define ADM1293_MFR_STATUS_VAUX_UV_WARN BIT(5)
31 #define ADM1293_MFR_STATUS_VAUX_OV_WARN BIT(6)
33 #define ADM1275_PEAK_IOUT 0xd0
34 #define ADM1275_PEAK_VIN 0xd1
35 #define ADM1275_PEAK_VOUT 0xd2
36 #define ADM1275_PMON_CONFIG 0xd4
38 #define ADM1275_VIN_VOUT_SELECT BIT(6)
39 #define ADM1275_VRANGE BIT(5)
40 #define ADM1075_IRANGE_50 BIT(4)
41 #define ADM1075_IRANGE_25 BIT(3)
42 #define ADM1075_IRANGE_MASK (BIT(3) | BIT(4))
44 #define ADM1278_TEMP1_EN BIT(3)
45 #define ADM1278_VIN_EN BIT(2)
46 #define ADM1278_VOUT_EN BIT(1)
48 #define ADM1293_IRANGE_25 0
49 #define ADM1293_IRANGE_50 BIT(6)
50 #define ADM1293_IRANGE_100 BIT(7)
51 #define ADM1293_IRANGE_200 (BIT(6) | BIT(7))
52 #define ADM1293_IRANGE_MASK (BIT(6) | BIT(7))
54 #define ADM1293_VIN_SEL_012 BIT(2)
55 #define ADM1293_VIN_SEL_074 BIT(3)
56 #define ADM1293_VIN_SEL_210 (BIT(2) | BIT(3))
57 #define ADM1293_VIN_SEL_MASK (BIT(2) | BIT(3))
59 #define ADM1293_VAUX_EN BIT(1)
61 #define ADM1278_PEAK_TEMP 0xd7
62 #define ADM1275_IOUT_WARN2_LIMIT 0xd7
63 #define ADM1275_DEVICE_CONFIG 0xd8
65 #define ADM1275_IOUT_WARN2_SELECT BIT(4)
67 #define ADM1276_PEAK_PIN 0xda
68 #define ADM1075_READ_VAUX 0xdd
69 #define ADM1075_VAUX_OV_WARN_LIMIT 0xde
70 #define ADM1075_VAUX_UV_WARN_LIMIT 0xdf
71 #define ADM1293_IOUT_MIN 0xe3
72 #define ADM1293_PIN_MIN 0xe4
73 #define ADM1075_VAUX_STATUS 0xf6
75 #define ADM1075_VAUX_OV_WARN BIT(7)
76 #define ADM1075_VAUX_UV_WARN BIT(6)
83 bool have_vaux_status
;
84 bool have_mfr_vaux_status
;
89 struct pmbus_driver_info info
;
92 #define to_adm1275_data(x) container_of(x, struct adm1275_data, info)
100 static const struct coefficients adm1075_coefficients
[] = {
101 [0] = { 27169, 0, -1 }, /* voltage */
102 [1] = { 806, 20475, -1 }, /* current, irange25 */
103 [2] = { 404, 20475, -1 }, /* current, irange50 */
104 [3] = { 0, -1, 8549 }, /* power, irange25 */
105 [4] = { 0, -1, 4279 }, /* power, irange50 */
108 static const struct coefficients adm1275_coefficients
[] = {
109 [0] = { 19199, 0, -2 }, /* voltage, vrange set */
110 [1] = { 6720, 0, -1 }, /* voltage, vrange not set */
111 [2] = { 807, 20475, -1 }, /* current */
114 static const struct coefficients adm1276_coefficients
[] = {
115 [0] = { 19199, 0, -2 }, /* voltage, vrange set */
116 [1] = { 6720, 0, -1 }, /* voltage, vrange not set */
117 [2] = { 807, 20475, -1 }, /* current */
118 [3] = { 6043, 0, -2 }, /* power, vrange set */
119 [4] = { 2115, 0, -1 }, /* power, vrange not set */
122 static const struct coefficients adm1278_coefficients
[] = {
123 [0] = { 19599, 0, -2 }, /* voltage */
124 [1] = { 800, 20475, -1 }, /* current */
125 [2] = { 6123, 0, -2 }, /* power */
126 [3] = { 42, 31880, -1 }, /* temperature */
129 static const struct coefficients adm1293_coefficients
[] = {
130 [0] = { 3333, -1, 0 }, /* voltage, vrange 1.2V */
131 [1] = { 5552, -5, -1 }, /* voltage, vrange 7.4V */
132 [2] = { 19604, -50, -2 }, /* voltage, vrange 21V */
133 [3] = { 8000, -100, -2 }, /* current, irange25 */
134 [4] = { 4000, -100, -2 }, /* current, irange50 */
135 [5] = { 20000, -1000, -3 }, /* current, irange100 */
136 [6] = { 10000, -1000, -3 }, /* current, irange200 */
137 [7] = { 10417, 0, -1 }, /* power, 1.2V, irange25 */
138 [8] = { 5208, 0, -1 }, /* power, 1.2V, irange50 */
139 [9] = { 26042, 0, -2 }, /* power, 1.2V, irange100 */
140 [10] = { 13021, 0, -2 }, /* power, 1.2V, irange200 */
141 [11] = { 17351, 0, -2 }, /* power, 7.4V, irange25 */
142 [12] = { 8676, 0, -2 }, /* power, 7.4V, irange50 */
143 [13] = { 4338, 0, -2 }, /* power, 7.4V, irange100 */
144 [14] = { 21689, 0, -3 }, /* power, 7.4V, irange200 */
145 [15] = { 6126, 0, -2 }, /* power, 21V, irange25 */
146 [16] = { 30631, 0, -3 }, /* power, 21V, irange50 */
147 [17] = { 15316, 0, -3 }, /* power, 21V, irange100 */
148 [18] = { 7658, 0, -3 }, /* power, 21V, irange200 */
151 static int adm1275_read_word_data(struct i2c_client
*client
, int page
, int reg
)
153 const struct pmbus_driver_info
*info
= pmbus_get_driver_info(client
);
154 const struct adm1275_data
*data
= to_adm1275_data(info
);
161 case PMBUS_IOUT_UC_FAULT_LIMIT
:
162 if (!data
->have_uc_fault
)
164 ret
= pmbus_read_word_data(client
, 0, ADM1275_IOUT_WARN2_LIMIT
);
166 case PMBUS_IOUT_OC_FAULT_LIMIT
:
167 if (!data
->have_oc_fault
)
169 ret
= pmbus_read_word_data(client
, 0, ADM1275_IOUT_WARN2_LIMIT
);
171 case PMBUS_VOUT_OV_WARN_LIMIT
:
174 ret
= pmbus_read_word_data(client
, 0,
175 ADM1075_VAUX_OV_WARN_LIMIT
);
177 case PMBUS_VOUT_UV_WARN_LIMIT
:
180 ret
= pmbus_read_word_data(client
, 0,
181 ADM1075_VAUX_UV_WARN_LIMIT
);
183 case PMBUS_READ_VOUT
:
186 ret
= pmbus_read_word_data(client
, 0, ADM1075_READ_VAUX
);
188 case PMBUS_VIRT_READ_IOUT_MIN
:
189 if (!data
->have_iout_min
)
191 ret
= pmbus_read_word_data(client
, 0, ADM1293_IOUT_MIN
);
193 case PMBUS_VIRT_READ_IOUT_MAX
:
194 ret
= pmbus_read_word_data(client
, 0, ADM1275_PEAK_IOUT
);
196 case PMBUS_VIRT_READ_VOUT_MAX
:
197 ret
= pmbus_read_word_data(client
, 0, ADM1275_PEAK_VOUT
);
199 case PMBUS_VIRT_READ_VIN_MAX
:
200 ret
= pmbus_read_word_data(client
, 0, ADM1275_PEAK_VIN
);
202 case PMBUS_VIRT_READ_PIN_MIN
:
203 if (!data
->have_pin_min
)
205 ret
= pmbus_read_word_data(client
, 0, ADM1293_PIN_MIN
);
207 case PMBUS_VIRT_READ_PIN_MAX
:
208 if (!data
->have_pin_max
)
210 ret
= pmbus_read_word_data(client
, 0, ADM1276_PEAK_PIN
);
212 case PMBUS_VIRT_READ_TEMP_MAX
:
213 if (!data
->have_temp_max
)
215 ret
= pmbus_read_word_data(client
, 0, ADM1278_PEAK_TEMP
);
217 case PMBUS_VIRT_RESET_IOUT_HISTORY
:
218 case PMBUS_VIRT_RESET_VOUT_HISTORY
:
219 case PMBUS_VIRT_RESET_VIN_HISTORY
:
221 case PMBUS_VIRT_RESET_PIN_HISTORY
:
222 if (!data
->have_pin_max
)
225 case PMBUS_VIRT_RESET_TEMP_HISTORY
:
226 if (!data
->have_temp_max
)
236 static int adm1275_write_word_data(struct i2c_client
*client
, int page
, int reg
,
239 const struct pmbus_driver_info
*info
= pmbus_get_driver_info(client
);
240 const struct adm1275_data
*data
= to_adm1275_data(info
);
247 case PMBUS_IOUT_UC_FAULT_LIMIT
:
248 case PMBUS_IOUT_OC_FAULT_LIMIT
:
249 ret
= pmbus_write_word_data(client
, 0, ADM1275_IOUT_WARN2_LIMIT
,
252 case PMBUS_VIRT_RESET_IOUT_HISTORY
:
253 ret
= pmbus_write_word_data(client
, 0, ADM1275_PEAK_IOUT
, 0);
254 if (!ret
&& data
->have_iout_min
)
255 ret
= pmbus_write_word_data(client
, 0,
256 ADM1293_IOUT_MIN
, 0);
258 case PMBUS_VIRT_RESET_VOUT_HISTORY
:
259 ret
= pmbus_write_word_data(client
, 0, ADM1275_PEAK_VOUT
, 0);
261 case PMBUS_VIRT_RESET_VIN_HISTORY
:
262 ret
= pmbus_write_word_data(client
, 0, ADM1275_PEAK_VIN
, 0);
264 case PMBUS_VIRT_RESET_PIN_HISTORY
:
265 ret
= pmbus_write_word_data(client
, 0, ADM1276_PEAK_PIN
, 0);
266 if (!ret
&& data
->have_pin_min
)
267 ret
= pmbus_write_word_data(client
, 0,
270 case PMBUS_VIRT_RESET_TEMP_HISTORY
:
271 ret
= pmbus_write_word_data(client
, 0, ADM1278_PEAK_TEMP
, 0);
280 static int adm1275_read_byte_data(struct i2c_client
*client
, int page
, int reg
)
282 const struct pmbus_driver_info
*info
= pmbus_get_driver_info(client
);
283 const struct adm1275_data
*data
= to_adm1275_data(info
);
290 case PMBUS_STATUS_IOUT
:
291 ret
= pmbus_read_byte_data(client
, page
, PMBUS_STATUS_IOUT
);
294 if (!data
->have_oc_fault
&& !data
->have_uc_fault
)
296 mfr_status
= pmbus_read_byte_data(client
, page
,
297 PMBUS_STATUS_MFR_SPECIFIC
);
300 if (mfr_status
& ADM1275_MFR_STATUS_IOUT_WARN2
) {
301 ret
|= data
->have_oc_fault
?
302 PB_IOUT_OC_FAULT
: PB_IOUT_UC_FAULT
;
305 case PMBUS_STATUS_VOUT
:
309 if (data
->have_vaux_status
) {
310 mfr_status
= pmbus_read_byte_data(client
, 0,
311 ADM1075_VAUX_STATUS
);
314 if (mfr_status
& ADM1075_VAUX_OV_WARN
)
315 ret
|= PB_VOLTAGE_OV_WARNING
;
316 if (mfr_status
& ADM1075_VAUX_UV_WARN
)
317 ret
|= PB_VOLTAGE_UV_WARNING
;
318 } else if (data
->have_mfr_vaux_status
) {
319 mfr_status
= pmbus_read_byte_data(client
, page
,
320 PMBUS_STATUS_MFR_SPECIFIC
);
323 if (mfr_status
& ADM1293_MFR_STATUS_VAUX_OV_WARN
)
324 ret
|= PB_VOLTAGE_OV_WARNING
;
325 if (mfr_status
& ADM1293_MFR_STATUS_VAUX_UV_WARN
)
326 ret
|= PB_VOLTAGE_UV_WARNING
;
336 static const struct i2c_device_id adm1275_id
[] = {
337 { "adm1075", adm1075
},
338 { "adm1275", adm1275
},
339 { "adm1276", adm1276
},
340 { "adm1278", adm1278
},
341 { "adm1293", adm1293
},
342 { "adm1294", adm1294
},
345 MODULE_DEVICE_TABLE(i2c
, adm1275_id
);
347 static int adm1275_probe(struct i2c_client
*client
,
348 const struct i2c_device_id
*id
)
350 u8 block_buffer
[I2C_SMBUS_BLOCK_MAX
+ 1];
351 int config
, device_config
;
353 struct pmbus_driver_info
*info
;
354 struct adm1275_data
*data
;
355 const struct i2c_device_id
*mid
;
356 const struct coefficients
*coefficients
;
357 int vindex
= -1, voindex
= -1, cindex
= -1, pindex
= -1;
360 if (!i2c_check_functionality(client
->adapter
,
361 I2C_FUNC_SMBUS_READ_BYTE_DATA
362 | I2C_FUNC_SMBUS_BLOCK_DATA
))
365 ret
= i2c_smbus_read_block_data(client
, PMBUS_MFR_ID
, block_buffer
);
367 dev_err(&client
->dev
, "Failed to read Manufacturer ID\n");
370 if (ret
!= 3 || strncmp(block_buffer
, "ADI", 3)) {
371 dev_err(&client
->dev
, "Unsupported Manufacturer ID\n");
375 ret
= i2c_smbus_read_block_data(client
, PMBUS_MFR_MODEL
, block_buffer
);
377 dev_err(&client
->dev
, "Failed to read Manufacturer Model\n");
380 for (mid
= adm1275_id
; mid
->name
[0]; mid
++) {
381 if (!strncasecmp(mid
->name
, block_buffer
, strlen(mid
->name
)))
385 dev_err(&client
->dev
, "Unsupported device\n");
389 if (id
->driver_data
!= mid
->driver_data
)
390 dev_notice(&client
->dev
,
391 "Device mismatch: Configured %s, detected %s\n",
392 id
->name
, mid
->name
);
394 config
= i2c_smbus_read_byte_data(client
, ADM1275_PMON_CONFIG
);
398 device_config
= i2c_smbus_read_byte_data(client
, ADM1275_DEVICE_CONFIG
);
399 if (device_config
< 0)
400 return device_config
;
402 data
= devm_kzalloc(&client
->dev
, sizeof(struct adm1275_data
),
407 data
->id
= mid
->driver_data
;
412 info
->format
[PSC_VOLTAGE_IN
] = direct
;
413 info
->format
[PSC_VOLTAGE_OUT
] = direct
;
414 info
->format
[PSC_CURRENT_OUT
] = direct
;
415 info
->format
[PSC_POWER
] = direct
;
416 info
->format
[PSC_TEMPERATURE
] = direct
;
417 info
->func
[0] = PMBUS_HAVE_IOUT
| PMBUS_HAVE_STATUS_IOUT
;
419 info
->read_word_data
= adm1275_read_word_data
;
420 info
->read_byte_data
= adm1275_read_byte_data
;
421 info
->write_word_data
= adm1275_write_word_data
;
425 if (device_config
& ADM1275_IOUT_WARN2_SELECT
)
426 data
->have_oc_fault
= true;
428 data
->have_uc_fault
= true;
429 data
->have_pin_max
= true;
430 data
->have_vaux_status
= true;
432 coefficients
= adm1075_coefficients
;
434 switch (config
& ADM1075_IRANGE_MASK
) {
435 case ADM1075_IRANGE_25
:
439 case ADM1075_IRANGE_50
:
444 dev_err(&client
->dev
, "Invalid input current range");
448 info
->func
[0] |= PMBUS_HAVE_VIN
| PMBUS_HAVE_PIN
449 | PMBUS_HAVE_STATUS_INPUT
;
450 if (config
& ADM1275_VIN_VOUT_SELECT
)
452 PMBUS_HAVE_VOUT
| PMBUS_HAVE_STATUS_VOUT
;
455 if (device_config
& ADM1275_IOUT_WARN2_SELECT
)
456 data
->have_oc_fault
= true;
458 data
->have_uc_fault
= true;
459 data
->have_vout
= true;
461 coefficients
= adm1275_coefficients
;
462 vindex
= (config
& ADM1275_VRANGE
) ? 0 : 1;
465 if (config
& ADM1275_VIN_VOUT_SELECT
)
467 PMBUS_HAVE_VOUT
| PMBUS_HAVE_STATUS_VOUT
;
470 PMBUS_HAVE_VIN
| PMBUS_HAVE_STATUS_INPUT
;
473 if (device_config
& ADM1275_IOUT_WARN2_SELECT
)
474 data
->have_oc_fault
= true;
476 data
->have_uc_fault
= true;
477 data
->have_vout
= true;
478 data
->have_pin_max
= true;
480 coefficients
= adm1276_coefficients
;
481 vindex
= (config
& ADM1275_VRANGE
) ? 0 : 1;
483 pindex
= (config
& ADM1275_VRANGE
) ? 3 : 4;
485 info
->func
[0] |= PMBUS_HAVE_VIN
| PMBUS_HAVE_PIN
486 | PMBUS_HAVE_STATUS_INPUT
;
487 if (config
& ADM1275_VIN_VOUT_SELECT
)
489 PMBUS_HAVE_VOUT
| PMBUS_HAVE_STATUS_VOUT
;
492 data
->have_vout
= true;
493 data
->have_pin_max
= true;
494 data
->have_temp_max
= true;
496 coefficients
= adm1278_coefficients
;
502 info
->func
[0] |= PMBUS_HAVE_PIN
| PMBUS_HAVE_STATUS_INPUT
;
503 if (config
& ADM1278_TEMP1_EN
)
505 PMBUS_HAVE_TEMP
| PMBUS_HAVE_STATUS_TEMP
;
506 if (config
& ADM1278_VIN_EN
)
507 info
->func
[0] |= PMBUS_HAVE_VIN
;
508 if (config
& ADM1278_VOUT_EN
)
510 PMBUS_HAVE_VOUT
| PMBUS_HAVE_STATUS_VOUT
;
514 data
->have_iout_min
= true;
515 data
->have_pin_min
= true;
516 data
->have_pin_max
= true;
517 data
->have_mfr_vaux_status
= true;
519 coefficients
= adm1293_coefficients
;
522 switch (config
& ADM1293_VIN_SEL_MASK
) {
523 case ADM1293_VIN_SEL_012
: /* 1.2V */
526 case ADM1293_VIN_SEL_074
: /* 7.4V */
529 case ADM1293_VIN_SEL_210
: /* 21V */
532 default: /* disabled */
536 switch (config
& ADM1293_IRANGE_MASK
) {
537 case ADM1293_IRANGE_25
:
540 case ADM1293_IRANGE_50
:
543 case ADM1293_IRANGE_100
:
546 case ADM1293_IRANGE_200
:
552 pindex
= 7 + vindex
* 4 + (cindex
- 3);
554 if (config
& ADM1293_VAUX_EN
)
556 PMBUS_HAVE_VOUT
| PMBUS_HAVE_STATUS_VOUT
;
558 info
->func
[0] |= PMBUS_HAVE_PIN
|
559 PMBUS_HAVE_VIN
| PMBUS_HAVE_STATUS_INPUT
;
563 dev_err(&client
->dev
, "Unsupported device\n");
570 info
->m
[PSC_VOLTAGE_IN
] = coefficients
[vindex
].m
;
571 info
->b
[PSC_VOLTAGE_IN
] = coefficients
[vindex
].b
;
572 info
->R
[PSC_VOLTAGE_IN
] = coefficients
[vindex
].R
;
575 info
->m
[PSC_VOLTAGE_OUT
] = coefficients
[voindex
].m
;
576 info
->b
[PSC_VOLTAGE_OUT
] = coefficients
[voindex
].b
;
577 info
->R
[PSC_VOLTAGE_OUT
] = coefficients
[voindex
].R
;
580 info
->m
[PSC_CURRENT_OUT
] = coefficients
[cindex
].m
;
581 info
->b
[PSC_CURRENT_OUT
] = coefficients
[cindex
].b
;
582 info
->R
[PSC_CURRENT_OUT
] = coefficients
[cindex
].R
;
585 info
->m
[PSC_POWER
] = coefficients
[pindex
].m
;
586 info
->b
[PSC_POWER
] = coefficients
[pindex
].b
;
587 info
->R
[PSC_POWER
] = coefficients
[pindex
].R
;
590 info
->m
[PSC_TEMPERATURE
] = coefficients
[tindex
].m
;
591 info
->b
[PSC_TEMPERATURE
] = coefficients
[tindex
].b
;
592 info
->R
[PSC_TEMPERATURE
] = coefficients
[tindex
].R
;
595 return pmbus_do_probe(client
, id
, info
);
598 static struct i2c_driver adm1275_driver
= {
602 .probe
= adm1275_probe
,
603 .remove
= pmbus_do_remove
,
604 .id_table
= adm1275_id
,
607 module_i2c_driver(adm1275_driver
);
609 MODULE_AUTHOR("Guenter Roeck");
610 MODULE_DESCRIPTION("PMBus driver for Analog Devices ADM1275 and compatibles");
611 MODULE_LICENSE("GPL");