2 * da9211-regulator.c - Regulator device driver for DA9211/DA9213
3 * Copyright (C) 2014 Dialog Semiconductor Ltd.
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.
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.
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>
27 #include <linux/regulator/of_regulator.h>
28 #include <linux/regulator/da9211.h>
29 #include "da9211-regulator.h"
32 #define DA9211_DEVICE_ID 0x22
33 #define DA9213_DEVICE_ID 0x23
35 #define DA9211_BUCK_MODE_SLEEP 1
36 #define DA9211_BUCK_MODE_SYNC 2
37 #define DA9211_BUCK_MODE_AUTO 3
39 /* DA9211 REGULATOR IDs */
40 #define DA9211_ID_BUCKA 0
41 #define DA9211_ID_BUCKB 1
45 struct regmap
*regmap
;
46 struct da9211_pdata
*pdata
;
47 struct regulator_dev
*rdev
[DA9211_MAX_REGULATORS
];
53 static const struct regmap_range_cfg da9211_regmap_range
[] = {
55 .selector_reg
= DA9211_REG_PAGE_CON
,
56 .selector_mask
= DA9211_REG_PAGE_MASK
,
57 .selector_shift
= DA9211_REG_PAGE_SHIFT
,
65 static const struct regmap_config da9211_regmap_config
= {
68 .max_register
= 5 * 128,
69 .ranges
= da9211_regmap_range
,
70 .num_ranges
= ARRAY_SIZE(da9211_regmap_range
),
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
78 /* Current limits for DA9211 buck (uA) indices
79 * corresponds with register values
81 static const int da9211_current_limits
[] = {
82 2000000, 2200000, 2400000, 2600000, 2800000, 3000000, 3200000, 3400000,
83 3600000, 3800000, 4000000, 4200000, 4400000, 4600000, 4800000, 5000000
85 /* Current limits for DA9213 buck (uA) indices
86 * corresponds with register values
88 static const int da9213_current_limits
[] = {
89 3000000, 3200000, 3400000, 3600000, 3800000, 4000000, 4200000, 4400000,
90 4600000, 4800000, 5000000, 5200000, 5400000, 5600000, 5800000, 6000000
93 static unsigned int da9211_buck_get_mode(struct regulator_dev
*rdev
)
95 int id
= rdev_get_id(rdev
);
96 struct da9211
*chip
= rdev_get_drvdata(rdev
);
100 ret
= regmap_read(chip
->regmap
, DA9211_REG_BUCKA_CONF
+id
, &data
);
104 switch (data
& 0x03) {
105 case DA9211_BUCK_MODE_SYNC
:
106 mode
= REGULATOR_MODE_FAST
;
108 case DA9211_BUCK_MODE_AUTO
:
109 mode
= REGULATOR_MODE_NORMAL
;
111 case DA9211_BUCK_MODE_SLEEP
:
112 mode
= REGULATOR_MODE_STANDBY
;
119 static int da9211_buck_set_mode(struct regulator_dev
*rdev
,
122 int id
= rdev_get_id(rdev
);
123 struct da9211
*chip
= rdev_get_drvdata(rdev
);
127 case REGULATOR_MODE_FAST
:
128 val
= DA9211_BUCK_MODE_SYNC
;
130 case REGULATOR_MODE_NORMAL
:
131 val
= DA9211_BUCK_MODE_AUTO
;
133 case REGULATOR_MODE_STANDBY
:
134 val
= DA9211_BUCK_MODE_SLEEP
;
138 return regmap_update_bits(chip
->regmap
, DA9211_REG_BUCKA_CONF
+id
,
142 static int da9211_set_current_limit(struct regulator_dev
*rdev
, int min
,
145 int id
= rdev_get_id(rdev
);
146 struct da9211
*chip
= rdev_get_drvdata(rdev
);
148 const int *current_limits
;
150 switch (chip
->chip_id
) {
152 current_limits
= da9211_current_limits
;
153 max_size
= ARRAY_SIZE(da9211_current_limits
)-1;
156 current_limits
= da9213_current_limits
;
157 max_size
= ARRAY_SIZE(da9213_current_limits
)-1;
163 /* search for closest to maximum */
164 for (i
= max_size
; i
>= 0; i
--) {
165 if (min
<= current_limits
[i
] &&
166 max
>= current_limits
[i
]) {
167 return regmap_update_bits(chip
->regmap
,
168 DA9211_REG_BUCK_ILIM
,
169 (0x0F << id
*4), (i
<< id
*4));
176 static int da9211_get_current_limit(struct regulator_dev
*rdev
)
178 int id
= rdev_get_id(rdev
);
179 struct da9211
*chip
= rdev_get_drvdata(rdev
);
182 const int *current_limits
;
184 switch (chip
->chip_id
) {
186 current_limits
= da9211_current_limits
;
189 current_limits
= da9213_current_limits
;
195 ret
= regmap_read(chip
->regmap
, DA9211_REG_BUCK_ILIM
, &data
);
199 /* select one of 16 values: 0000 (2000mA or 3000mA)
200 * to 1111 (5000mA or 6000mA).
202 data
= (data
>> id
*4) & 0x0F;
203 return current_limits
[data
];
206 static 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
,
219 #define DA9211_BUCK(_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,\
235 static struct regulator_desc da9211_regulators
[] = {
241 static struct of_regulator_match da9211_matches
[] = {
242 [DA9211_ID_BUCKA
] = { .name
= "BUCKA" },
243 [DA9211_ID_BUCKB
] = { .name
= "BUCKB" },
246 static struct da9211_pdata
*da9211_parse_regulators_dt(
249 struct da9211_pdata
*pdata
;
250 struct device_node
*node
;
253 node
= of_get_child_by_name(dev
->of_node
, "regulators");
255 dev_err(dev
, "regulators node not found\n");
256 return ERR_PTR(-ENODEV
);
259 num
= of_regulator_match(dev
, node
, da9211_matches
,
260 ARRAY_SIZE(da9211_matches
));
263 dev_err(dev
, "Failed to match regulators\n");
264 return ERR_PTR(-EINVAL
);
267 pdata
= devm_kzalloc(dev
, sizeof(*pdata
), GFP_KERNEL
);
269 return ERR_PTR(-ENOMEM
);
271 pdata
->num_buck
= num
;
274 for (i
= 0; i
< ARRAY_SIZE(da9211_matches
); i
++) {
275 if (!da9211_matches
[i
].init_data
)
278 pdata
->init_data
[n
] = da9211_matches
[i
].init_data
;
286 static struct da9211_pdata
*da9211_parse_regulators_dt(
289 return ERR_PTR(-ENODEV
);
293 static irqreturn_t
da9211_irq_handler(int irq
, void *data
)
295 struct da9211
*chip
= data
;
296 int reg_val
, err
, ret
= IRQ_NONE
;
298 err
= regmap_read(chip
->regmap
, DA9211_REG_EVENT_B
, ®_val
);
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]));
307 err
= regmap_write(chip
->regmap
, DA9211_REG_EVENT_B
,
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]));
320 err
= regmap_write(chip
->regmap
, DA9211_REG_EVENT_B
,
331 dev_err(chip
->dev
, "I2C error : %d\n", err
);
335 static int da9211_regulator_init(struct da9211
*chip
)
337 struct regulator_config config
= { };
341 ret
= regmap_read(chip
->regmap
, DA9211_REG_CONFIG_E
, &data
);
343 dev_err(chip
->dev
, "Failed to read CONTROL_E reg: %d\n", ret
);
347 data
&= DA9211_SLAVE_SEL
;
348 /* If configuration for 1/2 bucks is different between platform data
349 * and the register, driver should exit.
351 if ((chip
->pdata
->num_buck
== 2 && data
== 0x40)
352 || (chip
->pdata
->num_buck
== 1 && data
== 0x00)) {
354 chip
->num_regulator
= 1;
356 chip
->num_regulator
= 2;
358 dev_err(chip
->dev
, "Configuration is mismatched\n");
362 for (i
= 0; i
< chip
->num_regulator
; i
++) {
363 config
.init_data
= chip
->pdata
->init_data
[i
];
364 config
.dev
= chip
->dev
;
365 config
.driver_data
= chip
;
366 config
.regmap
= chip
->regmap
;
367 config
.of_node
= chip
->dev
->of_node
;
369 chip
->rdev
[i
] = devm_regulator_register(chip
->dev
,
370 &da9211_regulators
[i
], &config
);
371 if (IS_ERR(chip
->rdev
[i
])) {
373 "Failed to register DA9211 regulator\n");
374 return PTR_ERR(chip
->rdev
[i
]);
377 if (chip
->chip_irq
!= 0) {
378 ret
= regmap_update_bits(chip
->regmap
,
379 DA9211_REG_MASK_B
, DA9211_M_OV_CURR_A
<< i
, 0);
382 "Failed to update mask reg: %d\n", ret
);
392 * I2C driver interface functions
394 static int da9211_i2c_probe(struct i2c_client
*i2c
,
395 const struct i2c_device_id
*id
)
401 chip
= devm_kzalloc(&i2c
->dev
, sizeof(struct da9211
), GFP_KERNEL
);
405 chip
->dev
= &i2c
->dev
;
406 chip
->regmap
= devm_regmap_init_i2c(i2c
, &da9211_regmap_config
);
407 if (IS_ERR(chip
->regmap
)) {
408 error
= PTR_ERR(chip
->regmap
);
409 dev_err(chip
->dev
, "Failed to allocate register map: %d\n",
414 i2c_set_clientdata(i2c
, chip
);
416 chip
->pdata
= i2c
->dev
.platform_data
;
418 ret
= regmap_read(chip
->regmap
, DA9211_REG_DEVICE_ID
, &data
);
420 dev_err(chip
->dev
, "Failed to read DEVICE_ID reg: %d\n", ret
);
425 case DA9211_DEVICE_ID
:
426 chip
->chip_id
= DA9211
;
428 case DA9213_DEVICE_ID
:
429 chip
->chip_id
= DA9213
;
432 dev_err(chip
->dev
, "Unsupported device id = 0x%x.\n", data
);
437 chip
->pdata
= da9211_parse_regulators_dt(chip
->dev
);
439 if (IS_ERR(chip
->pdata
)) {
440 dev_err(chip
->dev
, "No regulators defined for the platform\n");
441 return PTR_ERR(chip
->pdata
);
444 chip
->chip_irq
= i2c
->irq
;
446 if (chip
->chip_irq
!= 0) {
447 ret
= devm_request_threaded_irq(chip
->dev
, chip
->chip_irq
, NULL
,
449 IRQF_TRIGGER_LOW
|IRQF_ONESHOT
,
452 dev_err(chip
->dev
, "Failed to request IRQ: %d\n",
457 dev_warn(chip
->dev
, "No IRQ configured\n");
460 ret
= da9211_regulator_init(chip
);
463 dev_err(chip
->dev
, "Failed to initialize regulator: %d\n", ret
);
468 static const struct i2c_device_id da9211_i2c_id
[] = {
473 MODULE_DEVICE_TABLE(i2c
, da9211_i2c_id
);
476 static const struct of_device_id da9211_dt_ids
[] = {
477 { .compatible
= "dlg,da9211", .data
= &da9211_i2c_id
[0] },
478 { .compatible
= "dlg,da9213", .data
= &da9211_i2c_id
[1] },
481 MODULE_DEVICE_TABLE(of
, da9211_dt_ids
);
484 static struct i2c_driver da9211_regulator_driver
= {
487 .owner
= THIS_MODULE
,
488 .of_match_table
= of_match_ptr(da9211_dt_ids
),
490 .probe
= da9211_i2c_probe
,
491 .id_table
= da9211_i2c_id
,
494 module_i2c_driver(da9211_regulator_driver
);
496 MODULE_AUTHOR("James Ban <James.Ban.opensource@diasemi.com>");
497 MODULE_DESCRIPTION("Regulator device driver for Dialog DA9211/DA9213");
498 MODULE_LICENSE("GPL v2");