blob: 7a72b6e4ff1dcd0735878d20a0b7ae8a96f8c9e5 [file] [log] [blame]
Guenter Roeck200855e2011-07-29 22:21:53 -07001/*
2 * Hardware monitoring driver for ZL6100 and compatibles
3 *
4 * Copyright (c) 2011 Ericsson AB.
5 *
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.
10 *
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.
15 *
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.
19 */
20
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/init.h>
24#include <linux/err.h>
25#include <linux/slab.h>
26#include <linux/i2c.h>
27#include <linux/ktime.h>
28#include <linux/delay.h>
29#include "pmbus.h"
30
Guenter Roeckbc581e62011-10-01 16:50:36 -070031enum chips { zl2004, zl2005, zl2006, zl2008, zl2105, zl2106, zl6100, zl6105 };
Guenter Roeck200855e2011-07-29 22:21:53 -070032
33struct zl6100_data {
34 int id;
35 ktime_t access; /* chip access time */
36 struct pmbus_driver_info info;
37};
38
39#define to_zl6100_data(x) container_of(x, struct zl6100_data, info)
40
41#define ZL6100_DEVICE_ID 0xe4
42
43#define ZL6100_WAIT_TIME 1000 /* uS */
44
45static ushort delay = ZL6100_WAIT_TIME;
46module_param(delay, ushort, 0644);
47MODULE_PARM_DESC(delay, "Delay between chip accesses in uS");
48
49/* Some chips need a delay between accesses */
50static inline void zl6100_wait(const struct zl6100_data *data)
51{
52 if (delay) {
53 s64 delta = ktime_us_delta(ktime_get(), data->access);
54 if (delta < delay)
55 udelay(delay - delta);
56 }
57}
58
59static int zl6100_read_word_data(struct i2c_client *client, int page, int reg)
60{
61 const struct pmbus_driver_info *info = pmbus_get_driver_info(client);
62 struct zl6100_data *data = to_zl6100_data(info);
63 int ret;
64
65 if (page || reg >= PMBUS_VIRT_BASE)
66 return -ENXIO;
67
Guenter Roeckbc581e62011-10-01 16:50:36 -070068 if (data->id == zl2005) {
69 /*
70 * Limit register detection is not reliable on ZL2005.
71 * Make sure registers are not erroneously detected.
72 */
73 switch (reg) {
74 case PMBUS_VOUT_OV_WARN_LIMIT:
75 case PMBUS_VOUT_UV_WARN_LIMIT:
76 case PMBUS_IOUT_OC_WARN_LIMIT:
77 return -ENXIO;
78 }
79 }
80
Guenter Roeck200855e2011-07-29 22:21:53 -070081 zl6100_wait(data);
82 ret = pmbus_read_word_data(client, page, reg);
83 data->access = ktime_get();
84
85 return ret;
86}
87
88static int zl6100_read_byte_data(struct i2c_client *client, int page, int reg)
89{
90 const struct pmbus_driver_info *info = pmbus_get_driver_info(client);
91 struct zl6100_data *data = to_zl6100_data(info);
92 int ret;
93
94 if (page > 0)
95 return -ENXIO;
96
97 zl6100_wait(data);
98 ret = pmbus_read_byte_data(client, page, reg);
99 data->access = ktime_get();
100
101 return ret;
102}
103
104static int zl6100_write_word_data(struct i2c_client *client, int page, int reg,
105 u16 word)
106{
107 const struct pmbus_driver_info *info = pmbus_get_driver_info(client);
108 struct zl6100_data *data = to_zl6100_data(info);
109 int ret;
110
111 if (page || reg >= PMBUS_VIRT_BASE)
112 return -ENXIO;
113
114 zl6100_wait(data);
115 ret = pmbus_write_word_data(client, page, reg, word);
116 data->access = ktime_get();
117
118 return ret;
119}
120
121static int zl6100_write_byte(struct i2c_client *client, int page, u8 value)
122{
123 const struct pmbus_driver_info *info = pmbus_get_driver_info(client);
124 struct zl6100_data *data = to_zl6100_data(info);
125 int ret;
126
127 if (page > 0)
128 return -ENXIO;
129
130 zl6100_wait(data);
131 ret = pmbus_write_byte(client, page, value);
132 data->access = ktime_get();
133
134 return ret;
135}
136
137static const struct i2c_device_id zl6100_id[] = {
Guenter Roeck443830f2011-10-01 17:35:44 -0700138 {"bmr450", zl2005},
139 {"bmr451", zl2005},
140 {"bmr462", zl2008},
141 {"bmr463", zl2008},
142 {"bmr464", zl2008},
Guenter Roeck200855e2011-07-29 22:21:53 -0700143 {"zl2004", zl2004},
Guenter Roeckbc581e62011-10-01 16:50:36 -0700144 {"zl2005", zl2005},
Guenter Roeck200855e2011-07-29 22:21:53 -0700145 {"zl2006", zl2006},
146 {"zl2008", zl2008},
147 {"zl2105", zl2105},
148 {"zl2106", zl2106},
149 {"zl6100", zl6100},
150 {"zl6105", zl6105},
151 { }
152};
153MODULE_DEVICE_TABLE(i2c, zl6100_id);
154
155static int zl6100_probe(struct i2c_client *client,
156 const struct i2c_device_id *id)
157{
158 int ret;
159 struct zl6100_data *data;
160 struct pmbus_driver_info *info;
161 u8 device_id[I2C_SMBUS_BLOCK_MAX + 1];
162 const struct i2c_device_id *mid;
163
164 if (!i2c_check_functionality(client->adapter,
165 I2C_FUNC_SMBUS_READ_BYTE_DATA
166 | I2C_FUNC_SMBUS_READ_BLOCK_DATA))
167 return -ENODEV;
168
169 ret = i2c_smbus_read_block_data(client, ZL6100_DEVICE_ID,
170 device_id);
171 if (ret < 0) {
172 dev_err(&client->dev, "Failed to read device ID\n");
173 return ret;
174 }
175 device_id[ret] = '\0';
176 dev_info(&client->dev, "Device ID %s\n", device_id);
177
178 mid = NULL;
179 for (mid = zl6100_id; mid->name[0]; mid++) {
180 if (!strncasecmp(mid->name, device_id, strlen(mid->name)))
181 break;
182 }
183 if (!mid->name[0]) {
184 dev_err(&client->dev, "Unsupported device\n");
185 return -ENODEV;
186 }
187 if (id->driver_data != mid->driver_data)
188 dev_notice(&client->dev,
189 "Device mismatch: Configured %s, detected %s\n",
190 id->name, mid->name);
191
192 data = kzalloc(sizeof(struct zl6100_data), GFP_KERNEL);
193 if (!data)
194 return -ENOMEM;
195
196 data->id = mid->driver_data;
197
198 /*
Guenter Roeckbc581e62011-10-01 16:50:36 -0700199 * ZL2005, ZL2008, ZL2105, and ZL6100 are known to require a wait time
Guenter Roeck200855e2011-07-29 22:21:53 -0700200 * between I2C accesses. ZL2004 and ZL6105 are known to be safe.
Guenter Roeckbc581e62011-10-01 16:50:36 -0700201 * Other chips have not yet been tested.
Guenter Roeck200855e2011-07-29 22:21:53 -0700202 *
203 * Only clear the wait time for chips known to be safe. The wait time
204 * can be cleared later for additional chips if tests show that it
205 * is not needed (in other words, better be safe than sorry).
206 */
207 if (data->id == zl2004 || data->id == zl6105)
208 delay = 0;
209
210 /*
211 * Since there was a direct I2C device access above, wait before
212 * accessing the chip again.
213 * Set the timestamp, wait, then set it again. This should provide
214 * enough buffer time to be safe.
215 */
216 data->access = ktime_get();
217 zl6100_wait(data);
218 data->access = ktime_get();
219
220 info = &data->info;
221
222 info->pages = 1;
223 info->func[0] = PMBUS_HAVE_VIN | PMBUS_HAVE_STATUS_INPUT
224 | PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT
225 | PMBUS_HAVE_IOUT | PMBUS_HAVE_STATUS_IOUT
226 | PMBUS_HAVE_TEMP | PMBUS_HAVE_TEMP2 | PMBUS_HAVE_STATUS_TEMP;
227
228 info->read_word_data = zl6100_read_word_data;
229 info->read_byte_data = zl6100_read_byte_data;
230 info->write_word_data = zl6100_write_word_data;
231 info->write_byte = zl6100_write_byte;
232
233 ret = pmbus_do_probe(client, mid, info);
234 if (ret)
235 goto err_mem;
236 return 0;
237
238err_mem:
239 kfree(data);
240 return ret;
241}
242
243static int zl6100_remove(struct i2c_client *client)
244{
245 const struct pmbus_driver_info *info = pmbus_get_driver_info(client);
246 const struct zl6100_data *data = to_zl6100_data(info);
247
248 pmbus_do_remove(client);
249 kfree(data);
250 return 0;
251}
252
253static struct i2c_driver zl6100_driver = {
254 .driver = {
255 .name = "zl6100",
256 },
257 .probe = zl6100_probe,
258 .remove = zl6100_remove,
259 .id_table = zl6100_id,
260};
261
262static int __init zl6100_init(void)
263{
264 return i2c_add_driver(&zl6100_driver);
265}
266
267static void __exit zl6100_exit(void)
268{
269 i2c_del_driver(&zl6100_driver);
270}
271
272MODULE_AUTHOR("Guenter Roeck");
273MODULE_DESCRIPTION("PMBus driver for ZL6100 and compatibles");
274MODULE_LICENSE("GPL");
275module_init(zl6100_init);
276module_exit(zl6100_exit);