blob: 9722728b954a7d8992049a6a38cb770ffd0dfb9b [file] [log] [blame]
James Ban1028a372014-07-14 13:48:45 +09001/*
James Ban005547e2014-08-08 14:27:04 +09002 * da9211-regulator.c - Regulator device driver for DA9211/DA9213
James Ban1028a372014-07-14 13:48:45 +09003 * Copyright (C) 2014 Dialog Semiconductor Ltd.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
14 */
15
16#include <linux/err.h>
17#include <linux/gpio.h>
18#include <linux/i2c.h>
19#include <linux/module.h>
20#include <linux/init.h>
21#include <linux/slab.h>
22#include <linux/regulator/driver.h>
23#include <linux/regulator/machine.h>
24#include <linux/regmap.h>
25#include <linux/irq.h>
26#include <linux/interrupt.h>
James Banbf3baca2014-08-27 11:47:07 +090027#include <linux/regulator/of_regulator.h>
James Ban1028a372014-07-14 13:48:45 +090028#include <linux/regulator/da9211.h>
29#include "da9211-regulator.h"
30
James Ban005547e2014-08-08 14:27:04 +090031/* DEVICE IDs */
32#define DA9211_DEVICE_ID 0x22
33#define DA9213_DEVICE_ID 0x23
34
James Ban1028a372014-07-14 13:48:45 +090035#define DA9211_BUCK_MODE_SLEEP 1
36#define DA9211_BUCK_MODE_SYNC 2
37#define DA9211_BUCK_MODE_AUTO 3
38
39/* DA9211 REGULATOR IDs */
40#define DA9211_ID_BUCKA 0
41#define DA9211_ID_BUCKB 1
42
43struct da9211 {
44 struct device *dev;
45 struct regmap *regmap;
46 struct da9211_pdata *pdata;
47 struct regulator_dev *rdev[DA9211_MAX_REGULATORS];
48 int num_regulator;
49 int chip_irq;
James Ban005547e2014-08-08 14:27:04 +090050 int chip_id;
James Ban1028a372014-07-14 13:48:45 +090051};
52
53static const struct regmap_range_cfg da9211_regmap_range[] = {
54 {
55 .selector_reg = DA9211_REG_PAGE_CON,
56 .selector_mask = DA9211_REG_PAGE_MASK,
57 .selector_shift = DA9211_REG_PAGE_SHIFT,
58 .window_start = 0,
59 .window_len = 256,
60 .range_min = 0,
James Ban005547e2014-08-08 14:27:04 +090061 .range_max = 5*128,
James Ban1028a372014-07-14 13:48:45 +090062 },
63};
64
65static const struct regmap_config da9211_regmap_config = {
66 .reg_bits = 8,
67 .val_bits = 8,
James Ban005547e2014-08-08 14:27:04 +090068 .max_register = 5 * 128,
James Ban1028a372014-07-14 13:48:45 +090069 .ranges = da9211_regmap_range,
70 .num_ranges = ARRAY_SIZE(da9211_regmap_range),
71};
72
73/* Default limits measured in millivolts and milliamps */
74#define DA9211_MIN_MV 300
75#define DA9211_MAX_MV 1570
76#define DA9211_STEP_MV 10
77
James Ban005547e2014-08-08 14:27:04 +090078/* Current limits for DA9211 buck (uA) indices
79 * corresponds with register values
80 */
James Ban1028a372014-07-14 13:48:45 +090081static const int da9211_current_limits[] = {
82 2000000, 2200000, 2400000, 2600000, 2800000, 3000000, 3200000, 3400000,
83 3600000, 3800000, 4000000, 4200000, 4400000, 4600000, 4800000, 5000000
84};
James Ban005547e2014-08-08 14:27:04 +090085/* Current limits for DA9213 buck (uA) indices
86 * corresponds with register values
87 */
88static const int da9213_current_limits[] = {
89 3000000, 3200000, 3400000, 3600000, 3800000, 4000000, 4200000, 4400000,
90 4600000, 4800000, 5000000, 5200000, 5400000, 5600000, 5800000, 6000000
91};
James Ban1028a372014-07-14 13:48:45 +090092
93static unsigned int da9211_buck_get_mode(struct regulator_dev *rdev)
94{
95 int id = rdev_get_id(rdev);
96 struct da9211 *chip = rdev_get_drvdata(rdev);
97 unsigned int data;
98 int ret, mode = 0;
99
100 ret = regmap_read(chip->regmap, DA9211_REG_BUCKA_CONF+id, &data);
101 if (ret < 0)
102 return ret;
103
104 switch (data & 0x03) {
105 case DA9211_BUCK_MODE_SYNC:
106 mode = REGULATOR_MODE_FAST;
107 break;
108 case DA9211_BUCK_MODE_AUTO:
109 mode = REGULATOR_MODE_NORMAL;
110 break;
111 case DA9211_BUCK_MODE_SLEEP:
112 mode = REGULATOR_MODE_STANDBY;
113 break;
114 }
115
116 return mode;
117}
118
119static int da9211_buck_set_mode(struct regulator_dev *rdev,
120 unsigned int mode)
121{
122 int id = rdev_get_id(rdev);
123 struct da9211 *chip = rdev_get_drvdata(rdev);
124 int val = 0;
125
126 switch (mode) {
127 case REGULATOR_MODE_FAST:
128 val = DA9211_BUCK_MODE_SYNC;
129 break;
130 case REGULATOR_MODE_NORMAL:
131 val = DA9211_BUCK_MODE_AUTO;
132 break;
133 case REGULATOR_MODE_STANDBY:
134 val = DA9211_BUCK_MODE_SLEEP;
135 break;
136 }
137
138 return regmap_update_bits(chip->regmap, DA9211_REG_BUCKA_CONF+id,
139 0x03, val);
140}
141
142static int da9211_set_current_limit(struct regulator_dev *rdev, int min,
143 int max)
144{
145 int id = rdev_get_id(rdev);
146 struct da9211 *chip = rdev_get_drvdata(rdev);
James Ban005547e2014-08-08 14:27:04 +0900147 int i, max_size;
148 const int *current_limits;
149
150 switch (chip->chip_id) {
151 case DA9211:
152 current_limits = da9211_current_limits;
153 max_size = ARRAY_SIZE(da9211_current_limits)-1;
154 break;
155 case DA9213:
156 current_limits = da9213_current_limits;
157 max_size = ARRAY_SIZE(da9213_current_limits)-1;
158 break;
159 default:
160 return -EINVAL;
161 }
James Ban1028a372014-07-14 13:48:45 +0900162
163 /* search for closest to maximum */
James Ban005547e2014-08-08 14:27:04 +0900164 for (i = max_size; i >= 0; i--) {
165 if (min <= current_limits[i] &&
166 max >= current_limits[i]) {
James Ban1028a372014-07-14 13:48:45 +0900167 return regmap_update_bits(chip->regmap,
168 DA9211_REG_BUCK_ILIM,
169 (0x0F << id*4), (i << id*4));
170 }
171 }
172
173 return -EINVAL;
174}
175
176static int da9211_get_current_limit(struct regulator_dev *rdev)
177{
178 int id = rdev_get_id(rdev);
179 struct da9211 *chip = rdev_get_drvdata(rdev);
180 unsigned int data;
181 int ret;
James Ban005547e2014-08-08 14:27:04 +0900182 const int *current_limits;
183
184 switch (chip->chip_id) {
185 case DA9211:
186 current_limits = da9211_current_limits;
187 break;
188 case DA9213:
189 current_limits = da9213_current_limits;
190 break;
191 default:
192 return -EINVAL;
193 }
James Ban1028a372014-07-14 13:48:45 +0900194
195 ret = regmap_read(chip->regmap, DA9211_REG_BUCK_ILIM, &data);
196 if (ret < 0)
197 return ret;
198
James Ban005547e2014-08-08 14:27:04 +0900199 /* select one of 16 values: 0000 (2000mA or 3000mA)
200 * to 1111 (5000mA or 6000mA).
201 */
James Ban1028a372014-07-14 13:48:45 +0900202 data = (data >> id*4) & 0x0F;
James Ban005547e2014-08-08 14:27:04 +0900203 return current_limits[data];
James Ban1028a372014-07-14 13:48:45 +0900204}
205
206static struct regulator_ops da9211_buck_ops = {
207 .get_mode = da9211_buck_get_mode,
208 .set_mode = da9211_buck_set_mode,
209 .enable = regulator_enable_regmap,
210 .disable = regulator_disable_regmap,
211 .is_enabled = regulator_is_enabled_regmap,
212 .set_voltage_sel = regulator_set_voltage_sel_regmap,
213 .get_voltage_sel = regulator_get_voltage_sel_regmap,
214 .list_voltage = regulator_list_voltage_linear,
215 .set_current_limit = da9211_set_current_limit,
216 .get_current_limit = da9211_get_current_limit,
217};
218
219#define DA9211_BUCK(_id) \
220{\
221 .name = #_id,\
222 .ops = &da9211_buck_ops,\
223 .type = REGULATOR_VOLTAGE,\
224 .id = DA9211_ID_##_id,\
225 .n_voltages = (DA9211_MAX_MV - DA9211_MIN_MV) / DA9211_STEP_MV + 1,\
226 .min_uV = (DA9211_MIN_MV * 1000),\
227 .uV_step = (DA9211_STEP_MV * 1000),\
228 .enable_reg = DA9211_REG_BUCKA_CONT + DA9211_ID_##_id,\
229 .enable_mask = DA9211_BUCKA_EN,\
230 .vsel_reg = DA9211_REG_VBUCKA_A + DA9211_ID_##_id * 2,\
231 .vsel_mask = DA9211_VBUCK_MASK,\
232 .owner = THIS_MODULE,\
233}
234
235static struct regulator_desc da9211_regulators[] = {
236 DA9211_BUCK(BUCKA),
237 DA9211_BUCK(BUCKB),
238};
239
James Banbf3baca2014-08-27 11:47:07 +0900240#ifdef CONFIG_OF
241static struct of_regulator_match da9211_matches[] = {
242 [DA9211_ID_BUCKA] = { .name = "BUCKA" },
243 [DA9211_ID_BUCKB] = { .name = "BUCKB" },
244 };
245
246static struct da9211_pdata *da9211_parse_regulators_dt(
247 struct device *dev)
248{
249 struct da9211_pdata *pdata;
250 struct device_node *node;
251 int i, num, n;
252
253 node = of_get_child_by_name(dev->of_node, "regulators");
254 if (!node) {
255 dev_err(dev, "regulators node not found\n");
256 return ERR_PTR(-ENODEV);
257 }
258
259 num = of_regulator_match(dev, node, da9211_matches,
260 ARRAY_SIZE(da9211_matches));
261 of_node_put(node);
262 if (num < 0) {
263 dev_err(dev, "Failed to match regulators\n");
264 return ERR_PTR(-EINVAL);
265 }
266
267 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
268 if (!pdata)
269 return ERR_PTR(-ENOMEM);
270
271 pdata->num_buck = num;
272
273 n = 0;
274 for (i = 0; i < ARRAY_SIZE(da9211_matches); i++) {
275 if (!da9211_matches[i].init_data)
276 continue;
277
278 pdata->init_data[n] = da9211_matches[i].init_data;
279
280 n++;
Fengguang Wuc2a946e2014-08-29 12:41:59 +0100281 }
James Banbf3baca2014-08-27 11:47:07 +0900282
283 return pdata;
284}
285#else
286static struct da9211_pdata *da9211_parse_regulators_dt(
287 struct device *dev)
288{
289 return ERR_PTR(-ENODEV);
290}
291#endif
292
James Ban1028a372014-07-14 13:48:45 +0900293static irqreturn_t da9211_irq_handler(int irq, void *data)
294{
295 struct da9211 *chip = data;
296 int reg_val, err, ret = IRQ_NONE;
297
298 err = regmap_read(chip->regmap, DA9211_REG_EVENT_B, &reg_val);
299 if (err < 0)
300 goto error_i2c;
301
302 if (reg_val & DA9211_E_OV_CURR_A) {
303 regulator_notifier_call_chain(chip->rdev[0],
304 REGULATOR_EVENT_OVER_CURRENT,
305 rdev_get_drvdata(chip->rdev[0]));
306
307 err = regmap_write(chip->regmap, DA9211_REG_EVENT_B,
308 DA9211_E_OV_CURR_A);
309 if (err < 0)
310 goto error_i2c;
311
312 ret = IRQ_HANDLED;
313 }
314
315 if (reg_val & DA9211_E_OV_CURR_B) {
316 regulator_notifier_call_chain(chip->rdev[1],
317 REGULATOR_EVENT_OVER_CURRENT,
318 rdev_get_drvdata(chip->rdev[1]));
319
320 err = regmap_write(chip->regmap, DA9211_REG_EVENT_B,
321 DA9211_E_OV_CURR_B);
322 if (err < 0)
323 goto error_i2c;
324
325 ret = IRQ_HANDLED;
326 }
327
328 return ret;
329
330error_i2c:
331 dev_err(chip->dev, "I2C error : %d\n", err);
332 return IRQ_NONE;
333}
334
335static int da9211_regulator_init(struct da9211 *chip)
336{
337 struct regulator_config config = { };
338 int i, ret;
339 unsigned int data;
340
341 ret = regmap_read(chip->regmap, DA9211_REG_CONFIG_E, &data);
342 if (ret < 0) {
343 dev_err(chip->dev, "Failed to read CONTROL_E reg: %d\n", ret);
Axel Lin516c1512014-07-20 19:19:35 +0800344 return ret;
James Ban1028a372014-07-14 13:48:45 +0900345 }
346
347 data &= DA9211_SLAVE_SEL;
348 /* If configuration for 1/2 bucks is different between platform data
349 * and the register, driver should exit.
350 */
351 if ((chip->pdata->num_buck == 2 && data == 0x40)
352 || (chip->pdata->num_buck == 1 && data == 0x00)) {
353 if (data == 0)
354 chip->num_regulator = 1;
355 else
356 chip->num_regulator = 2;
357 } else {
James Ban1028a372014-07-14 13:48:45 +0900358 dev_err(chip->dev, "Configuration is mismatched\n");
Axel Lin516c1512014-07-20 19:19:35 +0800359 return -EINVAL;
James Ban1028a372014-07-14 13:48:45 +0900360 }
361
362 for (i = 0; i < chip->num_regulator; i++) {
James Banbf3baca2014-08-27 11:47:07 +0900363 config.init_data = chip->pdata->init_data[i];
James Ban1028a372014-07-14 13:48:45 +0900364 config.dev = chip->dev;
365 config.driver_data = chip;
366 config.regmap = chip->regmap;
367
368 chip->rdev[i] = devm_regulator_register(chip->dev,
369 &da9211_regulators[i], &config);
370 if (IS_ERR(chip->rdev[i])) {
371 dev_err(chip->dev,
372 "Failed to register DA9211 regulator\n");
Axel Lin516c1512014-07-20 19:19:35 +0800373 return PTR_ERR(chip->rdev[i]);
James Ban1028a372014-07-14 13:48:45 +0900374 }
375
376 if (chip->chip_irq != 0) {
377 ret = regmap_update_bits(chip->regmap,
378 DA9211_REG_MASK_B, DA9211_M_OV_CURR_A << i, 1);
379 if (ret < 0) {
380 dev_err(chip->dev,
381 "Failed to update mask reg: %d\n", ret);
Axel Lin516c1512014-07-20 19:19:35 +0800382 return ret;
James Ban1028a372014-07-14 13:48:45 +0900383 }
384 }
385 }
386
387 return 0;
James Ban1028a372014-07-14 13:48:45 +0900388}
James Banbf3baca2014-08-27 11:47:07 +0900389
390static const struct i2c_device_id da9211_i2c_id[] = {
391 {"da9211", DA9211},
392 {"da9213", DA9213},
393 {},
394};
395
396#ifdef CONFIG_OF
397static const struct of_device_id da9211_dt_ids[] = {
398 { .compatible = "dlg,da9211", .data = &da9211_i2c_id[0] },
399 { .compatible = "dlg,da9213", .data = &da9211_i2c_id[1] },
400 {},
401};
402#endif
403
James Ban1028a372014-07-14 13:48:45 +0900404/*
405 * I2C driver interface functions
406 */
407static int da9211_i2c_probe(struct i2c_client *i2c,
408 const struct i2c_device_id *id)
409{
410 struct da9211 *chip;
411 int error, ret;
James Ban005547e2014-08-08 14:27:04 +0900412 unsigned int data;
James Ban1028a372014-07-14 13:48:45 +0900413
414 chip = devm_kzalloc(&i2c->dev, sizeof(struct da9211), GFP_KERNEL);
Axel Lin1d3e6a62014-08-17 18:34:48 +0800415 if (!chip)
416 return -ENOMEM;
James Ban1028a372014-07-14 13:48:45 +0900417
418 chip->dev = &i2c->dev;
419 chip->regmap = devm_regmap_init_i2c(i2c, &da9211_regmap_config);
420 if (IS_ERR(chip->regmap)) {
421 error = PTR_ERR(chip->regmap);
James Ban005547e2014-08-08 14:27:04 +0900422 dev_err(chip->dev, "Failed to allocate register map: %d\n",
James Ban1028a372014-07-14 13:48:45 +0900423 error);
424 return error;
425 }
426
427 i2c_set_clientdata(i2c, chip);
428
429 chip->pdata = i2c->dev.platform_data;
James Ban005547e2014-08-08 14:27:04 +0900430
431 ret = regmap_read(chip->regmap, DA9211_REG_DEVICE_ID, &data);
432 if (ret < 0) {
433 dev_err(chip->dev, "Failed to read DEVICE_ID reg: %d\n", ret);
434 return ret;
435 }
436
437 switch (data) {
438 case DA9211_DEVICE_ID:
439 chip->chip_id = DA9211;
440 break;
441 case DA9213_DEVICE_ID:
442 chip->chip_id = DA9213;
443 break;
444 default:
445 dev_err(chip->dev, "Unsupported device id = 0x%x.\n", data);
James Ban1028a372014-07-14 13:48:45 +0900446 return -ENODEV;
447 }
448
James Banbf3baca2014-08-27 11:47:07 +0900449 if (!chip->pdata)
450 chip->pdata = da9211_parse_regulators_dt(chip->dev);
451
452 if (IS_ERR(chip->pdata)) {
453 dev_err(chip->dev, "No regulators defined for the platform\n");
454 return PTR_ERR(chip->pdata);
455 }
456
James Ban1028a372014-07-14 13:48:45 +0900457 chip->chip_irq = i2c->irq;
458
459 if (chip->chip_irq != 0) {
460 ret = devm_request_threaded_irq(chip->dev, chip->chip_irq, NULL,
461 da9211_irq_handler,
462 IRQF_TRIGGER_LOW|IRQF_ONESHOT,
463 "da9211", chip);
464 if (ret != 0) {
465 dev_err(chip->dev, "Failed to request IRQ: %d\n",
466 chip->chip_irq);
467 return ret;
468 }
469 } else {
470 dev_warn(chip->dev, "No IRQ configured\n");
471 }
472
473 ret = da9211_regulator_init(chip);
474
475 if (ret < 0)
James Ban005547e2014-08-08 14:27:04 +0900476 dev_err(chip->dev, "Failed to initialize regulator: %d\n", ret);
James Ban1028a372014-07-14 13:48:45 +0900477
478 return ret;
479}
480
James Ban1028a372014-07-14 13:48:45 +0900481MODULE_DEVICE_TABLE(i2c, da9211_i2c_id);
482
483static struct i2c_driver da9211_regulator_driver = {
484 .driver = {
485 .name = "da9211",
486 .owner = THIS_MODULE,
487 },
488 .probe = da9211_i2c_probe,
James Ban1028a372014-07-14 13:48:45 +0900489 .id_table = da9211_i2c_id,
490};
491
492module_i2c_driver(da9211_regulator_driver);
493
494MODULE_AUTHOR("James Ban <James.Ban.opensource@diasemi.com>");
James Ban005547e2014-08-08 14:27:04 +0900495MODULE_DESCRIPTION("Regulator device driver for Dialog DA9211/DA9213");
James Ban1028a372014-07-14 13:48:45 +0900496MODULE_LICENSE("GPL v2");