2 * pv88060-regulator.c - Regulator device driver for PV88060
3 * Copyright (C) 2015 Powerventure Semiconductor Ltd.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program 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
13 * GNU General Public License for more details.
16 #include <linux/err.h>
17 #include <linux/i2c.h>
18 #include <linux/module.h>
19 #include <linux/init.h>
20 #include <linux/slab.h>
21 #include <linux/regulator/driver.h>
22 #include <linux/regulator/machine.h>
23 #include <linux/regmap.h>
24 #include <linux/irq.h>
25 #include <linux/interrupt.h>
26 #include <linux/regulator/of_regulator.h>
27 #include "pv88060-regulator.h"
29 #define PV88060_MAX_REGULATORS 14
31 /* PV88060 REGULATOR IDs */
54 struct pv88060_regulator
{
55 struct regulator_desc desc
;
56 unsigned int conf
; /* buck configuration register */
61 struct regmap
*regmap
;
62 struct regulator_dev
*rdev
[PV88060_MAX_REGULATORS
];
65 static const struct regmap_config pv88060_regmap_config
= {
70 /* Current limits array (in uA) for BUCK1
71 * Entry indexes corresponds to register values.
74 static const unsigned int pv88060_buck1_limits
[] = {
75 1496000, 2393000, 3291000, 4189000
78 static unsigned int pv88060_buck_get_mode(struct regulator_dev
*rdev
)
80 struct pv88060_regulator
*info
= rdev_get_drvdata(rdev
);
84 ret
= regmap_read(rdev
->regmap
, info
->conf
, &data
);
88 switch (data
& PV88060_BUCK_MODE_MASK
) {
89 case PV88060_BUCK_MODE_SYNC
:
90 mode
= REGULATOR_MODE_FAST
;
92 case PV88060_BUCK_MODE_AUTO
:
93 mode
= REGULATOR_MODE_NORMAL
;
95 case PV88060_BUCK_MODE_SLEEP
:
96 mode
= REGULATOR_MODE_STANDBY
;
103 static int pv88060_buck_set_mode(struct regulator_dev
*rdev
,
106 struct pv88060_regulator
*info
= rdev_get_drvdata(rdev
);
110 case REGULATOR_MODE_FAST
:
111 val
= PV88060_BUCK_MODE_SYNC
;
113 case REGULATOR_MODE_NORMAL
:
114 val
= PV88060_BUCK_MODE_AUTO
;
116 case REGULATOR_MODE_STANDBY
:
117 val
= PV88060_BUCK_MODE_SLEEP
;
123 return regmap_update_bits(rdev
->regmap
, info
->conf
,
124 PV88060_BUCK_MODE_MASK
, val
);
127 static const struct regulator_ops pv88060_buck_ops
= {
128 .get_mode
= pv88060_buck_get_mode
,
129 .set_mode
= pv88060_buck_set_mode
,
130 .enable
= regulator_enable_regmap
,
131 .disable
= regulator_disable_regmap
,
132 .is_enabled
= regulator_is_enabled_regmap
,
133 .set_voltage_sel
= regulator_set_voltage_sel_regmap
,
134 .get_voltage_sel
= regulator_get_voltage_sel_regmap
,
135 .list_voltage
= regulator_list_voltage_linear
,
136 .set_current_limit
= regulator_set_current_limit_regmap
,
137 .get_current_limit
= regulator_get_current_limit_regmap
,
140 static const struct regulator_ops pv88060_ldo_ops
= {
141 .enable
= regulator_enable_regmap
,
142 .disable
= regulator_disable_regmap
,
143 .is_enabled
= regulator_is_enabled_regmap
,
144 .set_voltage_sel
= regulator_set_voltage_sel_regmap
,
145 .get_voltage_sel
= regulator_get_voltage_sel_regmap
,
146 .list_voltage
= regulator_list_voltage_linear
,
149 static const struct regulator_ops pv88060_sw_ops
= {
150 .enable
= regulator_enable_regmap
,
151 .disable
= regulator_disable_regmap
,
152 .is_enabled
= regulator_is_enabled_regmap
,
155 #define PV88060_BUCK(chip, regl_name, min, step, max, limits_array) \
158 .id = chip##_ID_##regl_name,\
159 .name = __stringify(chip##_##regl_name),\
160 .of_match = of_match_ptr(#regl_name),\
161 .regulators_node = of_match_ptr("regulators"),\
162 .type = REGULATOR_VOLTAGE,\
163 .owner = THIS_MODULE,\
164 .ops = &pv88060_buck_ops,\
167 .n_voltages = ((max) - (min))/(step) + 1,\
168 .enable_reg = PV88060_REG_##regl_name##_CONF0,\
169 .enable_mask = PV88060_BUCK_EN, \
170 .vsel_reg = PV88060_REG_##regl_name##_CONF0,\
171 .vsel_mask = PV88060_VBUCK_MASK,\
172 .curr_table = limits_array,\
173 .n_current_limits = ARRAY_SIZE(limits_array),\
174 .csel_reg = PV88060_REG_##regl_name##_CONF1,\
175 .csel_mask = PV88060_BUCK_ILIM_MASK,\
177 .conf = PV88060_REG_##regl_name##_CONF1,\
180 #define PV88060_LDO(chip, regl_name, min, step, max) \
183 .id = chip##_ID_##regl_name,\
184 .name = __stringify(chip##_##regl_name),\
185 .of_match = of_match_ptr(#regl_name),\
186 .regulators_node = of_match_ptr("regulators"),\
187 .type = REGULATOR_VOLTAGE,\
188 .owner = THIS_MODULE,\
189 .ops = &pv88060_ldo_ops,\
192 .n_voltages = (step) ? ((max - min) / step + 1) : 1, \
193 .enable_reg = PV88060_REG_##regl_name##_CONF, \
194 .enable_mask = PV88060_LDO_EN, \
195 .vsel_reg = PV88060_REG_##regl_name##_CONF, \
196 .vsel_mask = PV88060_VLDO_MASK, \
200 #define PV88060_SW(chip, regl_name, max) \
203 .id = chip##_ID_##regl_name,\
204 .name = __stringify(chip##_##regl_name),\
205 .of_match = of_match_ptr(#regl_name),\
206 .regulators_node = of_match_ptr("regulators"),\
207 .type = REGULATOR_VOLTAGE,\
208 .owner = THIS_MODULE,\
209 .ops = &pv88060_sw_ops,\
212 .enable_reg = PV88060_REG_##regl_name##_CONF,\
213 .enable_mask = PV88060_SW_EN,\
217 static const struct pv88060_regulator pv88060_regulator_info
[] = {
218 PV88060_BUCK(PV88060
, BUCK1
, 2800000, 12500, 4387500,
219 pv88060_buck1_limits
),
220 PV88060_LDO(PV88060
, LDO1
, 1200000, 50000, 3350000),
221 PV88060_LDO(PV88060
, LDO2
, 1200000, 50000, 3350000),
222 PV88060_LDO(PV88060
, LDO3
, 1200000, 50000, 3350000),
223 PV88060_LDO(PV88060
, LDO4
, 1200000, 50000, 3350000),
224 PV88060_LDO(PV88060
, LDO5
, 1200000, 50000, 3350000),
225 PV88060_LDO(PV88060
, LDO6
, 1200000, 50000, 3350000),
226 PV88060_LDO(PV88060
, LDO7
, 1200000, 50000, 3350000),
227 PV88060_SW(PV88060
, SW1
, 5000000),
228 PV88060_SW(PV88060
, SW2
, 5000000),
229 PV88060_SW(PV88060
, SW3
, 5000000),
230 PV88060_SW(PV88060
, SW4
, 5000000),
231 PV88060_SW(PV88060
, SW5
, 5000000),
232 PV88060_SW(PV88060
, SW6
, 5000000),
235 static irqreturn_t
pv88060_irq_handler(int irq
, void *data
)
237 struct pv88060
*chip
= data
;
238 int i
, reg_val
, err
, ret
= IRQ_NONE
;
240 err
= regmap_read(chip
->regmap
, PV88060_REG_EVENT_A
, ®_val
);
244 if (reg_val
& PV88060_E_VDD_FLT
) {
245 for (i
= 0; i
< PV88060_MAX_REGULATORS
; i
++) {
246 if (chip
->rdev
[i
] != NULL
) {
247 regulator_lock(chip
->rdev
[i
]);
248 regulator_notifier_call_chain(chip
->rdev
[i
],
249 REGULATOR_EVENT_UNDER_VOLTAGE
,
251 regulator_unlock(chip
->rdev
[i
]);
255 err
= regmap_write(chip
->regmap
, PV88060_REG_EVENT_A
,
263 if (reg_val
& PV88060_E_OVER_TEMP
) {
264 for (i
= 0; i
< PV88060_MAX_REGULATORS
; i
++) {
265 if (chip
->rdev
[i
] != NULL
) {
266 regulator_lock(chip
->rdev
[i
]);
267 regulator_notifier_call_chain(chip
->rdev
[i
],
268 REGULATOR_EVENT_OVER_TEMP
,
270 regulator_unlock(chip
->rdev
[i
]);
274 err
= regmap_write(chip
->regmap
, PV88060_REG_EVENT_A
,
275 PV88060_E_OVER_TEMP
);
285 dev_err(chip
->dev
, "I2C error : %d\n", err
);
290 * I2C driver interface functions
292 static int pv88060_i2c_probe(struct i2c_client
*i2c
,
293 const struct i2c_device_id
*id
)
295 struct regulator_init_data
*init_data
= dev_get_platdata(&i2c
->dev
);
296 struct pv88060
*chip
;
297 struct regulator_config config
= { };
298 int error
, i
, ret
= 0;
300 chip
= devm_kzalloc(&i2c
->dev
, sizeof(struct pv88060
), GFP_KERNEL
);
304 chip
->dev
= &i2c
->dev
;
305 chip
->regmap
= devm_regmap_init_i2c(i2c
, &pv88060_regmap_config
);
306 if (IS_ERR(chip
->regmap
)) {
307 error
= PTR_ERR(chip
->regmap
);
308 dev_err(chip
->dev
, "Failed to allocate register map: %d\n",
313 i2c_set_clientdata(i2c
, chip
);
316 ret
= regmap_write(chip
->regmap
, PV88060_REG_MASK_A
, 0xFF);
319 "Failed to mask A reg: %d\n", ret
);
323 ret
= regmap_write(chip
->regmap
, PV88060_REG_MASK_B
, 0xFF);
326 "Failed to mask B reg: %d\n", ret
);
330 ret
= regmap_write(chip
->regmap
, PV88060_REG_MASK_C
, 0xFF);
333 "Failed to mask C reg: %d\n", ret
);
337 ret
= devm_request_threaded_irq(&i2c
->dev
, i2c
->irq
, NULL
,
339 IRQF_TRIGGER_LOW
|IRQF_ONESHOT
,
342 dev_err(chip
->dev
, "Failed to request IRQ: %d\n",
347 ret
= regmap_update_bits(chip
->regmap
, PV88060_REG_MASK_A
,
348 PV88060_M_VDD_FLT
| PV88060_M_OVER_TEMP
, 0);
351 "Failed to update mask reg: %d\n", ret
);
356 dev_warn(chip
->dev
, "No IRQ configured\n");
359 config
.dev
= chip
->dev
;
360 config
.regmap
= chip
->regmap
;
362 for (i
= 0; i
< PV88060_MAX_REGULATORS
; i
++) {
364 config
.init_data
= &init_data
[i
];
366 config
.driver_data
= (void *)&pv88060_regulator_info
[i
];
367 chip
->rdev
[i
] = devm_regulator_register(chip
->dev
,
368 &pv88060_regulator_info
[i
].desc
, &config
);
369 if (IS_ERR(chip
->rdev
[i
])) {
371 "Failed to register PV88060 regulator\n");
372 return PTR_ERR(chip
->rdev
[i
]);
379 static const struct i2c_device_id pv88060_i2c_id
[] = {
383 MODULE_DEVICE_TABLE(i2c
, pv88060_i2c_id
);
386 static const struct of_device_id pv88060_dt_ids
[] = {
387 { .compatible
= "pvs,pv88060", .data
= &pv88060_i2c_id
[0] },
390 MODULE_DEVICE_TABLE(of
, pv88060_dt_ids
);
393 static struct i2c_driver pv88060_regulator_driver
= {
396 .of_match_table
= of_match_ptr(pv88060_dt_ids
),
398 .probe
= pv88060_i2c_probe
,
399 .id_table
= pv88060_i2c_id
,
402 module_i2c_driver(pv88060_regulator_driver
);
404 MODULE_AUTHOR("James Ban <James.Ban.opensource@diasemi.com>");
405 MODULE_DESCRIPTION("Regulator device driver for Powerventure PV88060");
406 MODULE_LICENSE("GPL");