2 * Hardware monitoring driver for Maxim MAX8688
4 * Copyright (c) 2011 Ericsson AB.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include <linux/bitops.h>
22 #include <linux/kernel.h>
23 #include <linux/module.h>
24 #include <linux/init.h>
25 #include <linux/err.h>
26 #include <linux/i2c.h>
29 #define MAX8688_MFR_VOUT_PEAK 0xd4
30 #define MAX8688_MFR_IOUT_PEAK 0xd5
31 #define MAX8688_MFR_TEMPERATURE_PEAK 0xd6
32 #define MAX8688_MFG_STATUS 0xd8
34 #define MAX8688_STATUS_OC_FAULT BIT(4)
35 #define MAX8688_STATUS_OV_FAULT BIT(5)
36 #define MAX8688_STATUS_OV_WARNING BIT(8)
37 #define MAX8688_STATUS_UV_FAULT BIT(9)
38 #define MAX8688_STATUS_UV_WARNING BIT(10)
39 #define MAX8688_STATUS_UC_FAULT BIT(11)
40 #define MAX8688_STATUS_OC_WARNING BIT(12)
41 #define MAX8688_STATUS_OT_FAULT BIT(13)
42 #define MAX8688_STATUS_OT_WARNING BIT(14)
44 static int max8688_read_word_data(struct i2c_client
*client
, int page
, int reg
)
52 case PMBUS_VIRT_READ_VOUT_MAX
:
53 ret
= pmbus_read_word_data(client
, 0, MAX8688_MFR_VOUT_PEAK
);
55 case PMBUS_VIRT_READ_IOUT_MAX
:
56 ret
= pmbus_read_word_data(client
, 0, MAX8688_MFR_IOUT_PEAK
);
58 case PMBUS_VIRT_READ_TEMP_MAX
:
59 ret
= pmbus_read_word_data(client
, 0,
60 MAX8688_MFR_TEMPERATURE_PEAK
);
62 case PMBUS_VIRT_RESET_VOUT_HISTORY
:
63 case PMBUS_VIRT_RESET_IOUT_HISTORY
:
64 case PMBUS_VIRT_RESET_TEMP_HISTORY
:
74 static int max8688_write_word_data(struct i2c_client
*client
, int page
, int reg
,
80 case PMBUS_VIRT_RESET_VOUT_HISTORY
:
81 ret
= pmbus_write_word_data(client
, 0, MAX8688_MFR_VOUT_PEAK
,
84 case PMBUS_VIRT_RESET_IOUT_HISTORY
:
85 ret
= pmbus_write_word_data(client
, 0, MAX8688_MFR_IOUT_PEAK
,
88 case PMBUS_VIRT_RESET_TEMP_HISTORY
:
89 ret
= pmbus_write_word_data(client
, 0,
90 MAX8688_MFR_TEMPERATURE_PEAK
,
100 static int max8688_read_byte_data(struct i2c_client
*client
, int page
, int reg
)
109 case PMBUS_STATUS_VOUT
:
110 mfg_status
= pmbus_read_word_data(client
, 0,
114 if (mfg_status
& MAX8688_STATUS_UV_WARNING
)
115 ret
|= PB_VOLTAGE_UV_WARNING
;
116 if (mfg_status
& MAX8688_STATUS_UV_FAULT
)
117 ret
|= PB_VOLTAGE_UV_FAULT
;
118 if (mfg_status
& MAX8688_STATUS_OV_WARNING
)
119 ret
|= PB_VOLTAGE_OV_WARNING
;
120 if (mfg_status
& MAX8688_STATUS_OV_FAULT
)
121 ret
|= PB_VOLTAGE_OV_FAULT
;
123 case PMBUS_STATUS_IOUT
:
124 mfg_status
= pmbus_read_word_data(client
, 0,
128 if (mfg_status
& MAX8688_STATUS_UC_FAULT
)
129 ret
|= PB_IOUT_UC_FAULT
;
130 if (mfg_status
& MAX8688_STATUS_OC_WARNING
)
131 ret
|= PB_IOUT_OC_WARNING
;
132 if (mfg_status
& MAX8688_STATUS_OC_FAULT
)
133 ret
|= PB_IOUT_OC_FAULT
;
135 case PMBUS_STATUS_TEMPERATURE
:
136 mfg_status
= pmbus_read_word_data(client
, 0,
140 if (mfg_status
& MAX8688_STATUS_OT_WARNING
)
141 ret
|= PB_TEMP_OT_WARNING
;
142 if (mfg_status
& MAX8688_STATUS_OT_FAULT
)
143 ret
|= PB_TEMP_OT_FAULT
;
152 static struct pmbus_driver_info max8688_info
= {
154 .format
[PSC_VOLTAGE_IN
] = direct
,
155 .format
[PSC_VOLTAGE_OUT
] = direct
,
156 .format
[PSC_TEMPERATURE
] = direct
,
157 .format
[PSC_CURRENT_OUT
] = direct
,
158 .m
[PSC_VOLTAGE_IN
] = 19995,
159 .b
[PSC_VOLTAGE_IN
] = 0,
160 .R
[PSC_VOLTAGE_IN
] = -1,
161 .m
[PSC_VOLTAGE_OUT
] = 19995,
162 .b
[PSC_VOLTAGE_OUT
] = 0,
163 .R
[PSC_VOLTAGE_OUT
] = -1,
164 .m
[PSC_CURRENT_OUT
] = 23109,
165 .b
[PSC_CURRENT_OUT
] = 0,
166 .R
[PSC_CURRENT_OUT
] = -2,
167 .m
[PSC_TEMPERATURE
] = -7612,
168 .b
[PSC_TEMPERATURE
] = 335,
169 .R
[PSC_TEMPERATURE
] = -3,
170 .func
[0] = PMBUS_HAVE_VOUT
| PMBUS_HAVE_IOUT
| PMBUS_HAVE_TEMP
171 | PMBUS_HAVE_STATUS_VOUT
| PMBUS_HAVE_STATUS_IOUT
172 | PMBUS_HAVE_STATUS_TEMP
,
173 .read_byte_data
= max8688_read_byte_data
,
174 .read_word_data
= max8688_read_word_data
,
175 .write_word_data
= max8688_write_word_data
,
178 static int max8688_probe(struct i2c_client
*client
,
179 const struct i2c_device_id
*id
)
181 return pmbus_do_probe(client
, id
, &max8688_info
);
184 static const struct i2c_device_id max8688_id
[] = {
189 MODULE_DEVICE_TABLE(i2c
, max8688_id
);
191 /* This is the driver that will be inserted */
192 static struct i2c_driver max8688_driver
= {
196 .probe
= max8688_probe
,
197 .remove
= pmbus_do_remove
,
198 .id_table
= max8688_id
,
201 module_i2c_driver(max8688_driver
);
203 MODULE_AUTHOR("Guenter Roeck");
204 MODULE_DESCRIPTION("PMBus driver for Maxim MAX8688");
205 MODULE_LICENSE("GPL");