2 * da9210-regulator.c - Regulator device driver for DA9210
3 * Copyright (C) 2013 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.
15 * You should have received a copy of the GNU Library General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
21 #include <linux/err.h>
22 #include <linux/i2c.h>
23 #include <linux/module.h>
24 #include <linux/interrupt.h>
25 #include <linux/irq.h>
26 #include <linux/regulator/driver.h>
27 #include <linux/regulator/machine.h>
28 #include <linux/of_device.h>
29 #include <linux/regulator/of_regulator.h>
30 #include <linux/regmap.h>
32 #include "da9210-regulator.h"
35 struct regulator_dev
*rdev
;
36 struct regmap
*regmap
;
39 static const struct regmap_config da9210_regmap_config
= {
44 static const struct regulator_ops da9210_buck_ops
= {
45 .enable
= regulator_enable_regmap
,
46 .disable
= regulator_disable_regmap
,
47 .is_enabled
= regulator_is_enabled_regmap
,
48 .set_voltage_sel
= regulator_set_voltage_sel_regmap
,
49 .get_voltage_sel
= regulator_get_voltage_sel_regmap
,
50 .list_voltage
= regulator_list_voltage_linear
,
51 .set_current_limit
= regulator_set_current_limit_regmap
,
52 .get_current_limit
= regulator_get_current_limit_regmap
,
55 /* Default limits measured in millivolts and milliamps */
56 #define DA9210_MIN_MV 300
57 #define DA9210_MAX_MV 1570
58 #define DA9210_STEP_MV 10
60 /* Current limits for buck (uA) indices corresponds with register values */
61 static const unsigned int da9210_buck_limits
[] = {
62 1600000, 1800000, 2000000, 2200000, 2400000, 2600000, 2800000, 3000000,
63 3200000, 3400000, 3600000, 3800000, 4000000, 4200000, 4400000, 4600000
66 static const struct regulator_desc da9210_reg
= {
69 .ops
= &da9210_buck_ops
,
70 .type
= REGULATOR_VOLTAGE
,
71 .n_voltages
= ((DA9210_MAX_MV
- DA9210_MIN_MV
) / DA9210_STEP_MV
) + 1,
72 .min_uV
= (DA9210_MIN_MV
* 1000),
73 .uV_step
= (DA9210_STEP_MV
* 1000),
74 .vsel_reg
= DA9210_REG_VBUCK_A
,
75 .vsel_mask
= DA9210_VBUCK_MASK
,
76 .enable_reg
= DA9210_REG_BUCK_CONT
,
77 .enable_mask
= DA9210_BUCK_EN
,
79 .curr_table
= da9210_buck_limits
,
80 .n_current_limits
= ARRAY_SIZE(da9210_buck_limits
),
81 .csel_reg
= DA9210_REG_BUCK_ILIM
,
82 .csel_mask
= DA9210_BUCK_ILIM_MASK
,
85 static irqreturn_t
da9210_irq_handler(int irq
, void *data
)
87 struct da9210
*chip
= data
;
88 unsigned int val
, handled
= 0;
89 int error
, ret
= IRQ_NONE
;
91 error
= regmap_read(chip
->regmap
, DA9210_REG_EVENT_B
, &val
);
95 regulator_lock(chip
->rdev
);
97 if (val
& DA9210_E_OVCURR
) {
98 regulator_notifier_call_chain(chip
->rdev
,
99 REGULATOR_EVENT_OVER_CURRENT
,
101 handled
|= DA9210_E_OVCURR
;
103 if (val
& DA9210_E_NPWRGOOD
) {
104 regulator_notifier_call_chain(chip
->rdev
,
105 REGULATOR_EVENT_UNDER_VOLTAGE
,
107 handled
|= DA9210_E_NPWRGOOD
;
109 if (val
& (DA9210_E_TEMP_WARN
| DA9210_E_TEMP_CRIT
)) {
110 regulator_notifier_call_chain(chip
->rdev
,
111 REGULATOR_EVENT_OVER_TEMP
, NULL
);
112 handled
|= val
& (DA9210_E_TEMP_WARN
| DA9210_E_TEMP_CRIT
);
114 if (val
& DA9210_E_VMAX
) {
115 regulator_notifier_call_chain(chip
->rdev
,
116 REGULATOR_EVENT_REGULATION_OUT
,
118 handled
|= DA9210_E_VMAX
;
121 regulator_unlock(chip
->rdev
);
124 /* Clear handled events */
125 error
= regmap_write(chip
->regmap
, DA9210_REG_EVENT_B
, handled
);
135 dev_err(regmap_get_device(chip
->regmap
), "I2C error : %d\n", error
);
140 * I2C driver interface functions
143 static const struct of_device_id da9210_dt_ids
[] = {
144 { .compatible
= "dlg,da9210", },
147 MODULE_DEVICE_TABLE(of
, da9210_dt_ids
);
149 static int da9210_i2c_probe(struct i2c_client
*i2c
,
150 const struct i2c_device_id
*id
)
153 struct device
*dev
= &i2c
->dev
;
154 struct da9210_pdata
*pdata
= dev_get_platdata(dev
);
155 struct regulator_dev
*rdev
= NULL
;
156 struct regulator_config config
= { };
158 const struct of_device_id
*match
;
160 if (i2c
->dev
.of_node
&& !pdata
) {
161 match
= of_match_device(of_match_ptr(da9210_dt_ids
),
164 dev_err(&i2c
->dev
, "Error: No device match found\n");
169 chip
= devm_kzalloc(&i2c
->dev
, sizeof(struct da9210
), GFP_KERNEL
);
173 chip
->regmap
= devm_regmap_init_i2c(i2c
, &da9210_regmap_config
);
174 if (IS_ERR(chip
->regmap
)) {
175 error
= PTR_ERR(chip
->regmap
);
176 dev_err(&i2c
->dev
, "Failed to allocate register map: %d\n",
181 config
.dev
= &i2c
->dev
;
182 config
.init_data
= pdata
? &pdata
->da9210_constraints
:
183 of_get_regulator_init_data(dev
, dev
->of_node
, &da9210_reg
);
184 config
.driver_data
= chip
;
185 config
.regmap
= chip
->regmap
;
186 config
.of_node
= dev
->of_node
;
188 /* Mask all interrupt sources to deassert interrupt line */
189 error
= regmap_write(chip
->regmap
, DA9210_REG_MASK_A
, ~0);
191 error
= regmap_write(chip
->regmap
, DA9210_REG_MASK_B
, ~0);
193 dev_err(&i2c
->dev
, "Failed to write to mask reg: %d\n", error
);
197 rdev
= devm_regulator_register(&i2c
->dev
, &da9210_reg
, &config
);
199 dev_err(&i2c
->dev
, "Failed to register DA9210 regulator\n");
200 return PTR_ERR(rdev
);
205 error
= devm_request_threaded_irq(&i2c
->dev
, i2c
->irq
, NULL
,
208 IRQF_ONESHOT
| IRQF_SHARED
,
211 dev_err(&i2c
->dev
, "Failed to request IRQ%u: %d\n",
216 error
= regmap_update_bits(chip
->regmap
, DA9210_REG_MASK_B
,
217 DA9210_M_OVCURR
| DA9210_M_NPWRGOOD
|
219 DA9210_M_TEMP_CRIT
| DA9210_M_VMAX
, 0);
221 dev_err(&i2c
->dev
, "Failed to update mask reg: %d\n",
226 dev_warn(&i2c
->dev
, "No IRQ configured\n");
229 i2c_set_clientdata(i2c
, chip
);
234 static const struct i2c_device_id da9210_i2c_id
[] = {
239 MODULE_DEVICE_TABLE(i2c
, da9210_i2c_id
);
241 static struct i2c_driver da9210_regulator_driver
= {
244 .of_match_table
= of_match_ptr(da9210_dt_ids
),
246 .probe
= da9210_i2c_probe
,
247 .id_table
= da9210_i2c_id
,
250 module_i2c_driver(da9210_regulator_driver
);
252 MODULE_AUTHOR("S Twiss <stwiss.opensource@diasemi.com>");
253 MODULE_DESCRIPTION("Regulator device driver for Dialog DA9210");
254 MODULE_LICENSE("GPL v2");