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/kernel.h>
22 #include <linux/module.h>
23 #include <linux/init.h>
24 #include <linux/err.h>
25 #include <linux/i2c.h>
28 #define MAX8688_MFG_STATUS 0xd8
30 #define MAX8688_STATUS_OC_FAULT (1 << 4)
31 #define MAX8688_STATUS_OV_FAULT (1 << 5)
32 #define MAX8688_STATUS_OV_WARNING (1 << 8)
33 #define MAX8688_STATUS_UV_FAULT (1 << 9)
34 #define MAX8688_STATUS_UV_WARNING (1 << 10)
35 #define MAX8688_STATUS_UC_FAULT (1 << 11)
36 #define MAX8688_STATUS_OC_WARNING (1 << 12)
37 #define MAX8688_STATUS_OT_FAULT (1 << 13)
38 #define MAX8688_STATUS_OT_WARNING (1 << 14)
40 static int max8688_get_status(struct i2c_client
*client
, int page
, int reg
)
49 case PMBUS_STATUS_VOUT
:
50 mfg_status
= pmbus_read_word_data(client
, 0,
54 if (mfg_status
& MAX8688_STATUS_UV_WARNING
)
55 ret
|= PB_VOLTAGE_UV_WARNING
;
56 if (mfg_status
& MAX8688_STATUS_UV_FAULT
)
57 ret
|= PB_VOLTAGE_UV_FAULT
;
58 if (mfg_status
& MAX8688_STATUS_OV_WARNING
)
59 ret
|= PB_VOLTAGE_OV_WARNING
;
60 if (mfg_status
& MAX8688_STATUS_OV_FAULT
)
61 ret
|= PB_VOLTAGE_OV_FAULT
;
63 case PMBUS_STATUS_IOUT
:
64 mfg_status
= pmbus_read_word_data(client
, 0,
68 if (mfg_status
& MAX8688_STATUS_UC_FAULT
)
69 ret
|= PB_IOUT_UC_FAULT
;
70 if (mfg_status
& MAX8688_STATUS_OC_WARNING
)
71 ret
|= PB_IOUT_OC_WARNING
;
72 if (mfg_status
& MAX8688_STATUS_OC_FAULT
)
73 ret
|= PB_IOUT_OC_FAULT
;
75 case PMBUS_STATUS_TEMPERATURE
:
76 mfg_status
= pmbus_read_word_data(client
, 0,
80 if (mfg_status
& MAX8688_STATUS_OT_WARNING
)
81 ret
|= PB_TEMP_OT_WARNING
;
82 if (mfg_status
& MAX8688_STATUS_OT_FAULT
)
83 ret
|= PB_TEMP_OT_FAULT
;
92 static struct pmbus_driver_info max8688_info
= {
94 .direct
[PSC_VOLTAGE_IN
] = true,
95 .direct
[PSC_VOLTAGE_OUT
] = true,
96 .direct
[PSC_TEMPERATURE
] = true,
97 .direct
[PSC_CURRENT_OUT
] = true,
98 .m
[PSC_VOLTAGE_IN
] = 19995,
99 .b
[PSC_VOLTAGE_IN
] = 0,
100 .R
[PSC_VOLTAGE_IN
] = -1,
101 .m
[PSC_VOLTAGE_OUT
] = 19995,
102 .b
[PSC_VOLTAGE_OUT
] = 0,
103 .R
[PSC_VOLTAGE_OUT
] = -1,
104 .m
[PSC_CURRENT_OUT
] = 23109,
105 .b
[PSC_CURRENT_OUT
] = 0,
106 .R
[PSC_CURRENT_OUT
] = -2,
107 .m
[PSC_TEMPERATURE
] = -7612,
108 .b
[PSC_TEMPERATURE
] = 335,
109 .R
[PSC_TEMPERATURE
] = -3,
110 .func
[0] = PMBUS_HAVE_VOUT
| PMBUS_HAVE_IOUT
| PMBUS_HAVE_TEMP
111 | PMBUS_HAVE_STATUS_VOUT
| PMBUS_HAVE_STATUS_IOUT
112 | PMBUS_HAVE_STATUS_TEMP
,
113 .get_status
= max8688_get_status
,
116 static int max8688_probe(struct i2c_client
*client
,
117 const struct i2c_device_id
*id
)
119 return pmbus_do_probe(client
, id
, &max8688_info
);
122 static int max8688_remove(struct i2c_client
*client
)
124 return pmbus_do_remove(client
);
127 static const struct i2c_device_id max8688_id
[] = {
132 MODULE_DEVICE_TABLE(i2c
, max8688_id
);
134 /* This is the driver that will be inserted */
135 static struct i2c_driver max8688_driver
= {
139 .probe
= max8688_probe
,
140 .remove
= max8688_remove
,
141 .id_table
= max8688_id
,
144 static int __init
max8688_init(void)
146 return i2c_add_driver(&max8688_driver
);
149 static void __exit
max8688_exit(void)
151 i2c_del_driver(&max8688_driver
);
154 MODULE_AUTHOR("Guenter Roeck");
155 MODULE_DESCRIPTION("PMBus driver for Maxim MAX8688");
156 MODULE_LICENSE("GPL");
157 module_init(max8688_init
);
158 module_exit(max8688_exit
);